diff --git a/README.md b/README.md
index d63a6a1..4cdd99a 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,225 @@
**University of Pennsylvania, CIS 565: GPU Programming and Architecture,
Project 1 - Flocking**
-* (TODO) YOUR NAME HERE
- * (TODO) [LinkedIn](), [personal website](), [twitter](), etc.
-* Tested on: (TODO) Windows 22, i7-2222 @ 2.22GHz 22GB, GTX 222 222MB (Moore 2222 Lab)
+* Xuntong Liang
+ * [LinkedIn](https://www.linkedin.com/in/xuntong-liang-406429181/), [GitHub](https://github.com/PacosLelouch), [twitter](https://twitter.com/XTL90234545).
+* Tested on: Windows 10, i7-10750H @ 2.60GHz 16GB, RTX 2070 Super with Max-Q 8192MB
-### (TODO: Your README)
-Include screenshots, analysis, etc. (Remember, this is public, so don't put
-anything here that you don't want to share with the world.)
+
+
+
+
+
+## Play Around
+
+First of all, let's play with 5K boids.
+
+### Play Around with 5K Boids
+
+I opened V-sync to capture the result with 5K boids. Otherwise the boids would move in crazy speed due to the extremely high frame rate.
+
+
+
+
+
+After a while, some boids went together and became clusters.
+
+
+
+
+
+### Play Around with 60K Boids
+
+The result with 60K boids also consists of the process of aggregating clusters.
+
+
+
+
+
+It seems like pouring some paints :sweat_drops:.
+
+
+
+
+
+### Play Around with 1M Boids
+
+I think the result is not so pretty because it is too crowdy! However, it turns out to run at a good frame rate even with visualization.
+
+
+
+
+
+## Tasks
+
+I manage to implement all the required method to simulate the boids flocking:
+
+1. Naive: Naively traverse all the other boids.
+2. Scattered: Create a uniform grid for searching.
+3. Coherent: Based on the uniform grid, align the scattered velocity and position attributes in memory coherently to improve the memory access.
+
+Also, I optimize the grid loop for adaptable neighbor searching in different grid cell width.
+
+Shared memory is not implemented.
+
+
+
+## Questions about Performance Analysis
+
+First of all, there are some questions and answers about the performance:
+
+* Q1: For each implementation, how does changing the number of boids affect
+ performance? Why do you think this is?
+
+* A1: Commonly, increasing the number of boids would increase the duration of each frame, thus decrease the frame rate, because this makes the average number of the neighbors of each boid increase, which increase the duration of updating velocity. For the `Scattered` and `Coherent` method, the time of sorting is also affected.
+
+
+
+* Q2: For each implementation, how does changing the block count and block size
+ affect performance? Why do you think this is?
+
+* A2: When the number of boids is small (for example, 5000), it does not affect too much because the main cost is sorting, which is independent of the block size. When the number of boids increase, the main cost gradually becomes updating velocity. When updating velocity, there exists a latency issue of accessing the memory. In this situation, containing more wraps in each block may be able to hide the latency, thus to increase the performance.
+
+
+
+* Q3: For the coherent uniform grid: did you experience any performance improvements
+ with the more coherent uniform grid? Was this the outcome you expected?
+ Why or why not?
+
+* A3: The more boids to simulate, the more improvements I experience. In my opinion, maintaining coherent uniform grids needs extra reshuffle operations, but access the memory in a better way. When the number of boids is small, the performance improvements do not appear because of the trade-off. However, when the number of boids become larger, the improvements become significant, since the cost of reshuffle operations increases a little but the strategy of memory access becomes much more important.
+
+
+
+* Q4: Did changing cell width and checking 27 vs 8 neighboring cells affect performance?
+ Why or why not? Be careful: it is insufficient (and possibly incorrect) to say
+ that 27-cell is slower simply because there are more cells to check!
+
+* A4: It does affect performance. Actually, checking 27 neighboring cells with 5.0 in width performs better than checking 8 neighboring cells with 10.0 in width. I think the performance improvements come from the fewer neighboring boids to consider, so it appears better when the number of boids is large. However, when the number of boids is small, it seems not so crowdy that the number of neighborhoods is not affected too much. Moreover, smaller grid cell width causes more grid cells, and it turns out to increase the cost of resetting `gridCellStartIndices` and `gridCellEndIndices`. It may cause another trade-off.
+
+
+
+See [further analysis](#performance-analysis).
+
+
+
+## Performance Analysis
+
+I recorded the data of each run, starting at the frame 512 and recording the 1024 consecutive frames. Then average the data per frame.
+
+First of all, analyze the performance with increasing number of boids for naive, scattered uniform grid, and coherent uniform grid, with and without visualization. These are run with the default settings of the block size and the neighboring search.
+
+
+
+### Performance with Increasing Number of Boids
+
+First check the framerate. Because the framerate of Naive is too low when the number of boids is large, I did not record the performance since I suppose the result is useless.
+
+
+
+
+
+
+
+
+
+It turns out that the performance is affected much with the number of boids. Also, the performance increases rapidly with uniform grid, and the performance is even better with coherent boids data in most cases. As the answer of [questions](#questions-about-performance-analysis) describes, I cannot tell the performance is better with coherent boids data when the number of boids is small. The duration of each event is needed.
+
+
+
+Then check the event duration:
+
+
+
+
+
+
+
+
+
+With increasing boid count, the cost of `kernUpdateVel` increases rapidly, and the cost of `thrust::sort_by_key` is also significant.
+
+The results are the same with visualization:
+
+
+
+
+
+
+
+
+
+We can see that `kernUpdateVelNeighborSearchCoherent` is faster than `kernUpdateVelNeighborSearchScattered` in all cases, but it needs to reshuffle to maintain the coherent boids data, as the answer of [questions](#questions-about-performance-analysis) describes. As a result, `Coherent` affects little in cases with very few boids, but affects much in cases with more boids.
+
+
+
+### Performance with Different Block Size
+
+Changing the block size affects the underlying behaviors of the GPU. I analyzed with `Coherent` method and 8 neighboring cells, and cases with 5K boids, 100K boids, and 1M boids respectively. Framerates are shown below.
+
+
+
+
+
+
+
+
+
+I guess that the latency issue is bigger when the number of boids is larger, so the performance increases monotonically with 1M boids, but it does not happen with 100K boids and 5K boids.
+
+Further analysis on each event shows more information.
+
+
+
+
+
+
+
+
+
+As the answer of [questions](#questions-about-performance-analysis) describes, when the number of boids is small, the main cost comes from `thrust::sort_by_key`, which is not controlled by block size, so changing the block size rarely affects the performance. When the number of boids is large, the main cost comes from `kernUpdateVelNeighborSearchCoherent`, and it produces much latency of memory access.
+
+
+
+### Performance with Different Grid Cell Width
+
+When changing grid cell width, the neighboring cells may change as well. I analyzed with `Coherent` method and 128 threads per block, and cases with 5K boids, 100K boids, and 1M boids respectively. Framerates are shown below.
+
+
+
+
+
+
+
+
+
+It turns out that in 5K boids case, the default setting performs better. In 100K and 1M cases, 5.0 width with 27 neighboring cells performs better. It can run over 100 hz without visualization even with 1M boids.
+
+I analyzed the duration of CUDA events and found that `kernUpdateVelNeighborSearchCoherent` and `kernResetIntBuffer` for each cell are affected much. Here are the statistic of them.
+
+
+
+
+
+
+
+
+
+The duration of `kernUpdateVelNeighborSearchCoherent` shows that `5.0&27` is always the best setting, while in 5K boid case, the duration of `5.0&27` is nearly equal to the duration of `10.0&8`.
+
+So what about `kernResetIntBuffer`?
+
+
+
+
+
+
+
+
+
+Generally, the duration of `kernResetIntBuffer` for each cell decreases when the grid cell width increases. I guess that even though this kernel should be execute parallel, the very large count of grid cell really matters because of the latency of starting a wrap, accessing global memory, etc. And because the cost of `kernResetIntBuffer` with `5.0&27` is higher than that with `10.0&8`, the performance of `5.0&27` is not better than the performance of `10.0&8` in 5K boids case is reasonable.
+
+
+
+- Raw data of performance analysis can be found in this repository.
+
diff --git a/images/readme/Boid1M_1.gif b/images/readme/Boid1M_1.gif
new file mode 100644
index 0000000..a6c9c8d
Binary files /dev/null and b/images/readme/Boid1M_1.gif differ
diff --git a/images/readme/Boid5K_1.gif b/images/readme/Boid5K_1.gif
new file mode 100644
index 0000000..95070ab
Binary files /dev/null and b/images/readme/Boid5K_1.gif differ
diff --git a/images/readme/Boid5K_2.gif b/images/readme/Boid5K_2.gif
new file mode 100644
index 0000000..d164ed1
Binary files /dev/null and b/images/readme/Boid5K_2.gif differ
diff --git a/images/readme/Boid60K_1.gif b/images/readme/Boid60K_1.gif
new file mode 100644
index 0000000..7a04ae4
Binary files /dev/null and b/images/readme/Boid60K_1.gif differ
diff --git a/images/readme/Boid60K_2.gif b/images/readme/Boid60K_2.gif
new file mode 100644
index 0000000..5746097
Binary files /dev/null and b/images/readme/Boid60K_2.gif differ
diff --git a/images/readme/EventDurationCoherentBoid.png b/images/readme/EventDurationCoherentBoid.png
new file mode 100644
index 0000000..312fb0b
Binary files /dev/null and b/images/readme/EventDurationCoherentBoid.png differ
diff --git a/images/readme/EventDurationCoherentBoid100KBlockSize.png b/images/readme/EventDurationCoherentBoid100KBlockSize.png
new file mode 100644
index 0000000..da3d734
Binary files /dev/null and b/images/readme/EventDurationCoherentBoid100KBlockSize.png differ
diff --git a/images/readme/EventDurationCoherentBoid1MBlockSize.png b/images/readme/EventDurationCoherentBoid1MBlockSize.png
new file mode 100644
index 0000000..1a7dc26
Binary files /dev/null and b/images/readme/EventDurationCoherentBoid1MBlockSize.png differ
diff --git a/images/readme/EventDurationCoherentBoid5KBlockSize.png b/images/readme/EventDurationCoherentBoid5KBlockSize.png
new file mode 100644
index 0000000..b88bc82
Binary files /dev/null and b/images/readme/EventDurationCoherentBoid5KBlockSize.png differ
diff --git a/images/readme/EventDurationCoherentBoidVis1.png b/images/readme/EventDurationCoherentBoidVis1.png
new file mode 100644
index 0000000..4321721
Binary files /dev/null and b/images/readme/EventDurationCoherentBoidVis1.png differ
diff --git a/images/readme/EventDurationNaiveBoid.png b/images/readme/EventDurationNaiveBoid.png
new file mode 100644
index 0000000..342d966
Binary files /dev/null and b/images/readme/EventDurationNaiveBoid.png differ
diff --git a/images/readme/EventDurationNaiveBoidVis1.png b/images/readme/EventDurationNaiveBoidVis1.png
new file mode 100644
index 0000000..c4b4017
Binary files /dev/null and b/images/readme/EventDurationNaiveBoidVis1.png differ
diff --git a/images/readme/EventDurationScatteredBoid.png b/images/readme/EventDurationScatteredBoid.png
new file mode 100644
index 0000000..b1c0684
Binary files /dev/null and b/images/readme/EventDurationScatteredBoid.png differ
diff --git a/images/readme/EventDurationScatteredBoidVis1.png b/images/readme/EventDurationScatteredBoidVis1.png
new file mode 100644
index 0000000..f90e482
Binary files /dev/null and b/images/readme/EventDurationScatteredBoidVis1.png differ
diff --git a/images/readme/FPSBoid.png b/images/readme/FPSBoid.png
new file mode 100644
index 0000000..339d9a3
Binary files /dev/null and b/images/readme/FPSBoid.png differ
diff --git a/images/readme/FPSBoidVis0Vis1.png b/images/readme/FPSBoidVis0Vis1.png
new file mode 100644
index 0000000..74375b8
Binary files /dev/null and b/images/readme/FPSBoidVis0Vis1.png differ
diff --git a/images/readme/FPSBoidVis1.png b/images/readme/FPSBoidVis1.png
new file mode 100644
index 0000000..653c645
Binary files /dev/null and b/images/readme/FPSBoidVis1.png differ
diff --git a/images/readme/FPSCoherentBoid100KBlockSize.png b/images/readme/FPSCoherentBoid100KBlockSize.png
new file mode 100644
index 0000000..d4acc21
Binary files /dev/null and b/images/readme/FPSCoherentBoid100KBlockSize.png differ
diff --git a/images/readme/FPSCoherentBoid100KGCWidthNeiCnt.png b/images/readme/FPSCoherentBoid100KGCWidthNeiCnt.png
new file mode 100644
index 0000000..819fdb9
Binary files /dev/null and b/images/readme/FPSCoherentBoid100KGCWidthNeiCnt.png differ
diff --git a/images/readme/FPSCoherentBoid1MBlockSize.png b/images/readme/FPSCoherentBoid1MBlockSize.png
new file mode 100644
index 0000000..b4dbea0
Binary files /dev/null and b/images/readme/FPSCoherentBoid1MBlockSize.png differ
diff --git a/images/readme/FPSCoherentBoid1MGCWidthNeiCnt.png b/images/readme/FPSCoherentBoid1MGCWidthNeiCnt.png
new file mode 100644
index 0000000..f230126
Binary files /dev/null and b/images/readme/FPSCoherentBoid1MGCWidthNeiCnt.png differ
diff --git a/images/readme/FPSCoherentBoid5KBlockSize.png b/images/readme/FPSCoherentBoid5KBlockSize.png
new file mode 100644
index 0000000..0a501e9
Binary files /dev/null and b/images/readme/FPSCoherentBoid5KBlockSize.png differ
diff --git a/images/readme/FPSCoherentBoid5KGCWidthNeiCnt.png b/images/readme/FPSCoherentBoid5KGCWidthNeiCnt.png
new file mode 100644
index 0000000..350bb12
Binary files /dev/null and b/images/readme/FPSCoherentBoid5KGCWidthNeiCnt.png differ
diff --git a/images/readme/KernelUpdateNeighborBoid.png b/images/readme/KernelUpdateNeighborBoid.png
new file mode 100644
index 0000000..3fc442a
Binary files /dev/null and b/images/readme/KernelUpdateNeighborBoid.png differ
diff --git a/images/readme/KernelUpdateNeighborBoidVis0Vis1.png b/images/readme/KernelUpdateNeighborBoidVis0Vis1.png
new file mode 100644
index 0000000..6df3358
Binary files /dev/null and b/images/readme/KernelUpdateNeighborBoidVis0Vis1.png differ
diff --git a/images/readme/KernelUpdateNeighborBoidVis1.png b/images/readme/KernelUpdateNeighborBoidVis1.png
new file mode 100644
index 0000000..d47dbe6
Binary files /dev/null and b/images/readme/KernelUpdateNeighborBoidVis1.png differ
diff --git a/images/readme/MainResult.png b/images/readme/MainResult.png
new file mode 100644
index 0000000..033942f
Binary files /dev/null and b/images/readme/MainResult.png differ
diff --git a/images/readme/ResetStartEndCoherentBoid100KGCWidthNeiCnt.png b/images/readme/ResetStartEndCoherentBoid100KGCWidthNeiCnt.png
new file mode 100644
index 0000000..90b5673
Binary files /dev/null and b/images/readme/ResetStartEndCoherentBoid100KGCWidthNeiCnt.png differ
diff --git a/images/readme/ResetStartEndCoherentBoid1MGCWidthNeiCnt.png b/images/readme/ResetStartEndCoherentBoid1MGCWidthNeiCnt.png
new file mode 100644
index 0000000..975054e
Binary files /dev/null and b/images/readme/ResetStartEndCoherentBoid1MGCWidthNeiCnt.png differ
diff --git a/images/readme/ResetStartEndCoherentBoid5KGCWidthNeiCnt.png b/images/readme/ResetStartEndCoherentBoid5KGCWidthNeiCnt.png
new file mode 100644
index 0000000..e33238b
Binary files /dev/null and b/images/readme/ResetStartEndCoherentBoid5KGCWidthNeiCnt.png differ
diff --git a/images/readme/UpdateVelCoherentBoid100KGCWidthNeiCnt.png b/images/readme/UpdateVelCoherentBoid100KGCWidthNeiCnt.png
new file mode 100644
index 0000000..5d5bfc2
Binary files /dev/null and b/images/readme/UpdateVelCoherentBoid100KGCWidthNeiCnt.png differ
diff --git a/images/readme/UpdateVelCoherentBoid1MGCWidthNeiCnt.png b/images/readme/UpdateVelCoherentBoid1MGCWidthNeiCnt.png
new file mode 100644
index 0000000..5febf78
Binary files /dev/null and b/images/readme/UpdateVelCoherentBoid1MGCWidthNeiCnt.png differ
diff --git a/images/readme/UpdateVelCoherentBoid5KGCWidthNeiCnt.png b/images/readme/UpdateVelCoherentBoid5KGCWidthNeiCnt.png
new file mode 100644
index 0000000..7f2e849
Binary files /dev/null and b/images/readme/UpdateVelCoherentBoid5KGCWidthNeiCnt.png differ
diff --git a/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,BinSearchGridCell.csv b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,BinSearchGridCell.csv
new file mode 100644
index 0000000..2615ea5
--- /dev/null
+++ b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,BinSearchGridCell.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-921,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,103.326,9.72096,8.68191,0.0700529,0.836468,0.00871534,0.00605706,0.0536487,0.0986527,0.104668,7.38189,0.121758
+max_1024,141.554,19.335,10.6844,0.124448,1.63782,0.049152,0.02272,0.090112,0.1272,0.440992,9.20797,0.552224
+min_1024,51.7198,7.06445,8.23971,0.065536,0.729088,0.00624,0.004192,0.050112,0.095232,0.096416,7.05683,0.112256
+512,101.006,9.90039,8.4192,0.068256,0.9032,0.008352,0.005952,0.052608,0.098176,0.09824,7.07053,0.113888
+513,104.118,9.60449,8.40477,0.069632,0.878336,0.008448,0.00512,0.05152,0.098368,0.09824,7.08048,0.114624
+514,99.6642,10.0337,9.62742,0.07136,0.887104,0.008192,0.006176,0.053216,0.097792,0.097952,8.2928,0.112832
+515,93.0994,10.7412,9.35005,0.068512,0.95232,0.009472,0.004864,0.058784,0.09632,0.098656,7.94634,0.114784
+516,100.594,9.94092,8.34506,0.069632,0.82464,0.008384,0.00464,0.055296,0.09792,0.098176,7.07222,0.114144
+517,105.16,9.50928,8.37667,0.069344,0.841728,0.007168,0.006016,0.053248,0.097952,0.097632,7.08912,0.114464
+518,102.426,9.76318,9.27539,0.06944,0.901312,0.008192,0.006144,0.055296,0.098304,0.100256,7.92381,0.11264
+519,98.1736,10.186,8.3415,0.069632,0.808992,0.008192,0.006112,0.053248,0.098336,0.098176,7.08563,0.113184
+520,106.379,9.40039,8.72906,0.068352,0.808992,0.008096,0.005856,0.0536,0.098304,0.098336,7.47312,0.1144
+521,99.3162,10.0688,8.33539,0.071616,0.804928,0.008192,0.006144,0.0544,0.096992,0.097472,7.08298,0.112672
+522,105.166,9.50879,8.37632,0.069536,0.843872,0.008192,0.006144,0.053248,0.098304,0.098304,7.08381,0.114912
+523,104.966,9.52686,9.05917,0.069568,0.871328,0.008192,0.006144,0.054944,0.096608,0.100352,7.46291,0.38912
+524,98.9515,10.106,8.30515,0.070656,0.78848,0.008224,0.006112,0.053248,0.098336,0.09952,7.0664,0.114176
+525,104.102,9.60596,8.3849,0.067968,0.864256,0.007328,0.00496,0.05328,0.097536,0.098976,7.07555,0.11504
+526,107.949,9.26367,9.568,0.069632,0.812256,0.008352,0.005824,0.05216,0.098336,0.098272,8.30995,0.113216
+527,94.3692,10.5967,8.31696,0.069632,0.786112,0.008384,0.0056,0.05392,0.104448,0.100384,7.07523,0.113248
+528,108.44,9.22168,8.31517,0.06992,0.79408,0.008096,0.005824,0.054208,0.099904,0.098784,7.06762,0.116736
+529,108.165,9.24512,8.2903,0.069632,0.767744,0.008384,0.005568,0.053376,0.096672,0.0984,7.07757,0.11296
+530,108.274,9.23584,9.27539,0.069504,0.882816,0.009344,0.005088,0.059328,0.102272,0.098208,7.93414,0.114688
+531,97.8453,10.2202,8.30765,0.070592,0.769056,0.00832,0.00496,0.053248,0.097312,0.097248,7.09222,0.114688
+532,108.809,9.19043,8.27562,0.069312,0.764224,0.008192,0.006176,0.052864,0.096608,0.098304,7.0671,0.112832
+533,107.518,9.30078,9.19962,0.073728,0.802816,0.008352,0.005984,0.055296,0.098176,0.097824,7.94262,0.114816
+534,99.3114,10.0693,8.27853,0.069312,0.7728,0.00752,0.005088,0.055072,0.098336,0.098304,7.0593,0.1128
+535,108.722,9.19775,8.27459,0.068256,0.756864,0.00832,0.004864,0.054336,0.096992,0.098176,7.07392,0.112864
+536,106.125,9.42285,9.09389,0.06832,0.835584,0.008224,0.006112,0.054816,0.098784,0.395264,7.51002,0.116768
+537,101.386,9.86328,8.3151,0.069632,0.78784,0.008224,0.005056,0.05328,0.098016,0.097632,7.08208,0.113344
+538,105.171,9.5083,10.1642,0.069536,1.06493,0.00832,0.005856,0.052736,0.097056,0.098304,8.65075,0.116736
+539,92.3604,10.8271,8.28032,0.069216,0.757632,0.008352,0.004832,0.053152,0.100352,0.098336,7.07539,0.113056
+540,108.383,9.22656,8.28438,0.06928,0.772672,0.008224,0.006112,0.05328,0.0976,0.098272,7.06413,0.114816
+541,108.148,9.24658,9.41926,0.070464,0.776192,0.008192,0.006144,0.05328,0.098272,0.100352,8.19178,0.114592
+542,96.878,10.3223,8.28086,0.068416,0.769984,0.008224,0.005952,0.05312,0.098624,0.098336,7.06467,0.113536
+543,108.572,9.21045,8.2833,0.069632,0.761696,0.008352,0.006144,0.055008,0.09664,0.09824,7.07171,0.115872
+544,100.156,9.98438,8.40704,0.07088,0.879392,0.017888,0.006272,0.053664,0.097792,0.098208,7.06989,0.113056
+545,116.06,8.61621,9.55197,0.067968,0.775872,0.00752,0.00512,0.053216,0.097856,0.098496,8.32128,0.12464
+546,94.0744,10.6299,8.36422,0.069632,0.831488,0.008416,0.00592,0.05312,0.098592,0.100192,7.08198,0.11488
+547,101.678,9.83496,8.41949,0.0688,0.894944,0.01744,0.006144,0.052416,0.097056,0.098304,7.07133,0.113056
+548,105.752,9.45605,9.50886,0.069024,1.09834,0.00832,0.006016,0.054976,0.098176,0.098368,7.96205,0.1136
+549,96.1954,10.3955,8.34899,0.069632,0.810336,0.006816,0.006144,0.053248,0.101824,0.096896,7.09011,0.113984
+550,109.396,9.14111,8.27392,0.069632,0.765312,0.006816,0.006112,0.054848,0.096736,0.098272,7.0633,0.112896
+551,103.309,9.67969,9.04845,0.069984,1.15088,0.010816,0.014496,0.071552,0.099808,0.440992,7.07379,0.116128
+552,99.7516,10.0249,8.34557,0.069632,0.8192,0.022144,0.005824,0.051904,0.098272,0.09792,7.06746,0.113216
+553,105.399,9.48779,8.79446,0.068352,0.88016,0.008352,0.005632,0.06192,0.096576,0.09968,7.45894,0.114848
+554,102.946,9.71387,8.28704,0.068448,0.769536,0.008352,0.005792,0.052896,0.098496,0.09824,7.07206,0.113216
+555,108.366,9.22803,8.30285,0.06784,0.78848,0.008192,0.006144,0.053248,0.096288,0.098272,7.07174,0.11264
+556,104.033,9.6123,8.73213,0.069216,0.82576,0.007968,0.005792,0.051936,0.099904,0.098592,7.45677,0.116192
+557,96.3719,10.3765,8.34355,0.067584,0.826656,0.008256,0.0048,0.05504,0.09648,0.09824,7.07386,0.11264
+558,108.091,9.25146,8.37043,0.069184,0.848544,0.008224,0.006112,0.054816,0.098016,0.0984,7.0736,0.113536
+559,105.502,9.47852,9.62563,0.069632,0.847872,0.008192,0.006112,0.052768,0.098816,0.09936,8.32995,0.112928
+560,91.6905,10.9062,8.40179,0.06848,0.876544,0.008288,0.006048,0.053248,0.104448,0.108384,7.06371,0.11264
+561,99.5189,10.0483,8.4929,0.069632,0.950304,0.024192,0.005696,0.051872,0.106368,0.09856,7.0697,0.116576
+562,119.382,8.37646,8.27392,0.069408,0.766176,0.008224,0.006048,0.051296,0.098272,0.098304,7.06336,0.112832
+563,105.442,9.48389,9.82051,0.068288,1.02147,0.008352,0.005568,0.05824,0.104064,0.100864,8.33728,0.116384
+564,90.8889,11.0024,8.36406,0.071584,0.857696,0.006688,0.006112,0.0512,0.098272,0.098336,7.0615,0.112672
+565,103.372,9.67383,8.67123,0.069632,0.811008,0.008352,0.005984,0.052416,0.097088,0.097856,7.41565,0.113248
+566,101.421,9.85986,8.79411,0.069632,1.27325,0.008384,0.00624,0.05728,0.100416,0.098656,7.06707,0.113184
+567,103.408,9.67041,8.32237,0.069344,0.803104,0.008192,0.006048,0.053344,0.096256,0.098304,7.07379,0.113984
+568,108.601,9.20801,8.7167,0.068544,0.822464,0.006976,0.006144,0.054752,0.098048,0.098944,7.44669,0.114144
+569,103.06,9.70312,8.32717,0.069216,0.788896,0.008416,0.00592,0.054368,0.096768,0.098176,7.09251,0.112896
+570,103.791,9.63477,8.30848,0.069664,0.787936,0.008352,0.005824,0.052896,0.09728,0.098304,7.07379,0.114432
+571,105.247,9.50146,8.81744,0.069536,0.893344,0.006624,0.006144,0.054784,0.09792,0.098752,7.45926,0.131072
+572,97.2875,10.2788,8.33539,0.07168,0.821088,0.006304,0.006144,0.055296,0.098208,0.097632,7.0663,0.112736
+573,107.653,9.28906,8.32531,0.069728,0.800768,0.008192,0.0056,0.051776,0.09776,0.098816,7.07901,0.113664
+574,106.246,9.41211,9.5833,0.06976,0.822976,0.008384,0.004992,0.055136,0.098272,0.098304,8.31222,0.113248
+575,93.9967,10.6387,8.35779,0.069024,0.821856,0.008064,0.004224,0.05328,0.096256,0.108544,7.07123,0.125312
+576,97.246,10.2832,9.67258,0.069664,0.900288,0.018368,0.006208,0.053792,0.09856,0.099744,8.31312,0.112832
+577,103.801,9.63379,8.33677,0.069632,0.812512,0.008352,0.005568,0.05216,0.097888,0.096768,7.07984,0.114048
+578,107.422,9.30908,9.18272,0.065696,0.814944,0.009248,0.00512,0.051168,0.098336,0.098272,7.92304,0.116896
+579,88.9159,11.2466,8.75114,0.069664,1.22877,0.01808,0.0056,0.05328,0.098304,0.098208,7.06608,0.113152
+580,114.394,8.7417,8.72954,0.068608,0.8248,0.008384,0.005824,0.051872,0.099648,0.098976,7.45789,0.113536
+581,98.6275,10.1392,8.35994,0.069632,0.845824,0.008192,0.00576,0.053632,0.096288,0.098304,7.06912,0.113184
+582,106.622,9.37891,8.35136,0.069664,0.843744,0.007552,0.005824,0.05216,0.09792,0.098048,7.06214,0.114304
+583,108.423,9.22314,8.73494,0.069856,0.802816,0.008192,0.006144,0.053152,0.098304,0.104416,7.47661,0.115456
+584,99.6739,10.0327,8.33536,0.069088,0.81872,0.008384,0.005056,0.053056,0.098144,0.097952,7.07226,0.112704
+585,102.048,9.79932,8.37149,0.08192,0.833536,0.008192,0.006144,0.054272,0.0992,0.098432,7.07379,0.116
+586,109.46,9.13574,9.57619,0.067776,0.806432,0.008352,0.005856,0.053856,0.098304,0.09808,8.32451,0.113024
+587,95.0701,10.5186,8.29469,0.06832,0.77824,0.007808,0.0056,0.054176,0.096288,0.098272,7.07174,0.11424
+588,104.725,9.54883,8.8023,0.069632,0.88064,0.008192,0.006144,0.065536,0.099776,0.09888,7.45677,0.116736
+589,98.637,10.1382,8.35162,0.071616,0.831552,0.008192,0.005664,0.05168,0.097664,0.098176,7.07386,0.113216
+590,98.2348,10.1797,9.49942,0.071904,1.11184,0.008128,0.006016,0.052064,0.098304,0.099808,7.93642,0.114944
+591,96.3357,10.3804,8.35869,0.068544,0.8376,0.00928,0.005088,0.054304,0.096704,0.09792,7.07597,0.11328
+592,107.863,9.271,8.71834,0.069504,0.792512,0.008384,0.005728,0.053504,0.104608,0.101984,7.46742,0.114688
+593,94.0744,10.6299,9.04848,0.07008,1.53366,0.00752,0.005024,0.053088,0.098048,0.098336,7.07008,0.11264
+594,108.177,9.24414,8.3313,0.069632,0.80896,0.008224,0.006112,0.051232,0.098272,0.098432,7.07744,0.112992
+595,107.439,9.30762,8.72038,0.069632,0.802816,0.008192,0.014336,0.05488,0.096704,0.098304,7.4607,0.114816
+596,102.073,9.79688,8.30365,0.07168,0.761856,0.008192,0.006144,0.053056,0.097696,0.10912,7.08221,0.113696
+597,107.349,9.31543,8.36064,0.070048,0.831616,0.008128,0.005568,0.055488,0.096864,0.098304,7.07283,0.121792
+598,106.489,9.39062,9.42736,0.0696,0.781248,0.008192,0.006144,0.053248,0.098304,0.100352,8.19405,0.116224
+599,97.0248,10.3066,8.30586,0.068896,0.781024,0.008288,0.005664,0.05376,0.098144,0.09808,7.07824,0.11376
+600,107.349,9.31543,8.32307,0.075808,0.802528,0.00752,0.005056,0.053216,0.098304,0.098304,7.0687,0.113632
+601,99.4996,10.0503,9.66934,0.070368,0.894976,0.008192,0.006144,0.051392,0.098112,0.108544,8.31872,0.112896
+602,101.221,9.87939,9.33478,0.069568,0.963744,0.008448,0.005856,0.055968,0.106784,0.098112,7.91162,0.114688
+603,98.5089,10.1514,8.26227,0.070016,0.747776,0.008224,0.006112,0.052416,0.097088,0.098304,7.06934,0.112992
+604,103.054,9.70361,8.43562,0.069632,0.907264,0.008192,0.006144,0.055296,0.098336,0.110048,7.06755,0.113152
+605,113.98,8.77344,9.12195,0.072704,0.762752,0.00832,0.006144,0.052928,0.098144,0.098432,7.90768,0.114848
+606,99.4609,10.0542,8.27267,0.068352,0.751616,0.008224,0.006112,0.05232,0.097216,0.099648,7.07648,0.112704
+607,107.186,9.32959,8.55859,0.0696,0.795776,0.00832,0.004896,0.052768,0.09648,0.097632,7.0841,0.349024
+608,102.084,9.7959,9.1095,0.069632,0.880288,0.00832,0.005824,0.063968,0.098368,0.387072,7.48339,0.11264
+609,99.1192,10.0889,8.27712,0.069664,0.763872,0.007904,0.005632,0.05584,0.097952,0.096896,7.06557,0.113792
+610,106.301,9.40723,8.76134,0.075776,0.84992,0.008192,0.006144,0.0512,0.098304,0.098304,7.45882,0.114688
+611,98.985,10.1025,8.6057,0.084992,1.07168,0.008448,0.005536,0.052,0.098144,0.0984,7.07386,0.11264
+612,104.245,9.59277,9.54147,0.069504,1.11219,0.024576,0.006048,0.05744,0.11792,0.111168,7.92813,0.114496
+613,95.997,10.417,9.56691,0.070336,0.81856,0.006784,0.006144,0.05328,0.096224,0.098208,8.30426,0.11312
+614,96.0961,10.4062,8.30138,0.068448,0.770048,0.00816,0.006144,0.053248,0.1024,0.103648,7.07594,0.113344
+615,81.9987,12.1953,8.40406,0.069632,0.852,0.00816,0.014336,0.055296,0.114688,0.100064,7.07376,0.116128
+616,125.306,7.98047,8.37194,0.069088,0.824256,0.023808,0.005888,0.054016,0.096512,0.116736,7.06768,0.113952
+617,108.383,9.22656,9.58954,0.068384,1.17491,0.008384,0.014688,0.051296,0.096352,0.11424,7.94608,0.1152
+618,106.789,9.36426,8.30138,0.06992,0.780704,0.00832,0.005824,0.053536,0.098304,0.098304,7.07379,0.112672
+619,107.259,9.32324,9.54726,0.069632,0.787712,0.008384,0.004832,0.05424,0.097152,0.098304,8.31283,0.114176
+620,94.7359,10.5557,8.32579,0.07008,0.81328,0.008224,0.006016,0.052672,0.09824,0.09872,7.0655,0.113056
+621,106.856,9.3584,8.34736,0.068352,0.840896,0.008352,0.0048,0.053184,0.097792,0.098208,7.06211,0.113664
+622,105.605,9.46924,9.4351,0.069312,1.05488,0.007552,0.005024,0.05312,0.098304,0.098304,7.93395,0.114656
+623,97.1537,10.293,9.62605,0.069152,0.848832,0.00816,0.00608,0.051264,0.097632,0.098208,8.33392,0.1128
+624,93.3497,10.7124,8.76304,0.075712,0.837728,0.008352,0.005824,0.059584,0.098784,0.098336,7.46451,0.114208
+625,102.467,9.75928,8.31325,0.068,0.798752,0.007712,0.005632,0.051808,0.096608,0.098304,7.07347,0.11296
+626,105.144,9.51074,8.3223,0.0688,0.80896,0.008384,0.005056,0.053024,0.098304,0.098304,7.06765,0.113824
+627,110.907,9.0166,8.70813,0.0696,0.79872,0.008352,0.004864,0.053152,0.098016,0.097824,7.45971,0.117888
+628,102.426,9.76318,8.31968,0.068128,0.807072,0.009344,0.005088,0.053152,0.098432,0.098272,7.06749,0.112704
+629,106.583,9.38232,8.29456,0.069088,0.77632,0.008384,0.005632,0.052032,0.09632,0.105504,7.06662,0.114656
+630,107.135,9.33398,9.46384,0.069632,0.803936,0.017312,0.007264,0.051168,0.099296,0.10032,8.20019,0.11472
+631,96.6494,10.3467,8.32106,0.069472,0.80784,0.008288,0.005888,0.052736,0.097056,0.098272,7.06714,0.114368
+632,107.716,9.28369,8.31478,0.06944,0.792768,0.008224,0.006112,0.053248,0.09952,0.09872,7.07216,0.114592
+633,106.423,9.39648,9.5399,0.069696,0.786688,0.007968,0.0056,0.051808,0.096416,0.098304,8.31002,0.113408
+634,95.9116,10.4263,8.67622,0.070016,0.768128,0.008448,0.005792,0.053504,0.102304,0.098368,7.45677,0.112896
+635,95.2248,10.5015,9.0545,0.06992,1.5401,0.008192,0.005984,0.05136,0.097728,0.098656,7.06992,0.11264
+636,108.005,9.25879,8.29443,0.069632,0.77824,0.008192,0.006016,0.051328,0.098304,0.09808,7.07197,0.112672
+637,106.439,9.39502,9.17504,0.069632,0.804864,0.008224,0.005952,0.053408,0.097312,0.097248,7.92342,0.114976
+638,99.0664,10.0942,8.28861,0.068224,0.784448,0.009312,0.004992,0.052576,0.098112,0.098432,7.05811,0.1144
+639,104.5,9.56934,8.76131,0.0696,0.864288,0.008192,0.006144,0.053248,0.098304,0.098304,7.44858,0.114656
+640,96.024,10.4141,9.03136,0.069792,1.51555,0.008192,0.006144,0.05328,0.097856,0.098304,7.06822,0.114016
+641,106.806,9.36279,8.29242,0.069504,0.774272,0.008192,0.005984,0.05136,0.097568,0.098176,7.07462,0.112736
+642,106.01,9.43311,8.83245,0.069344,0.9048,0.008384,0.005824,0.052064,0.099968,0.098272,7.47882,0.114976
+643,95.2204,10.502,8.3711,0.07056,0.847872,0.008192,0.005824,0.051552,0.104448,0.097984,7.07158,0.113088
+644,107.852,9.27197,8.28416,0.069504,0.770176,0.008192,0.006144,0.052288,0.097216,0.098496,7.06746,0.114688
+645,102.842,9.72363,8.41354,0.070016,0.894688,0.008096,0.005632,0.052064,0.097824,0.098432,7.07408,0.112704
+646,109.53,9.12988,9.5473,0.068128,0.788512,0.00816,0.006144,0.052896,0.097632,0.09728,8.31459,0.113952
+647,93.4477,10.7012,8.30717,0.070016,0.782432,0.00816,0.005664,0.052864,0.098432,0.098432,7.07427,0.116896
+648,108.165,9.24512,8.30736,0.068256,0.794656,0.009344,0.005088,0.053088,0.098336,0.098304,7.06765,0.11264
+649,103.346,9.67627,9.48458,0.068288,1.10589,0.008224,0.005792,0.0536,0.096224,0.098304,7.93325,0.115008
+650,97.6633,10.2393,8.29472,0.069696,0.778496,0.00816,0.006112,0.051264,0.098272,0.098304,7.07174,0.112672
+651,107.631,9.29102,8.54221,0.06944,0.782528,0.008192,0.006144,0.052544,0.09696,0.098336,7.07581,0.352256
+652,102.832,9.72461,9.03539,0.069504,0.813152,0.008256,0.00592,0.05344,0.099552,0.37888,7.49219,0.114496
+653,97.1168,10.2969,8.356,0.068896,0.844672,0.008192,0.006144,0.054336,0.096608,0.096864,7.06688,0.113408
+654,112.053,8.92432,8.71206,0.069632,0.798016,0.008352,0.005824,0.053632,0.098784,0.098304,7.46496,0.11456
+655,99.9463,10.0054,8.31107,0.068352,0.787904,0.008384,0.0056,0.05216,0.097952,0.097824,7.07869,0.114208
+656,108.699,9.19971,8.30918,0.076768,0.785664,0.00832,0.005856,0.05216,0.098016,0.09808,7.0712,0.11312
+657,106.979,9.34766,10.3155,0.066176,0.763872,0.009376,0.00496,0.053248,0.098336,0.098272,9.10691,0.114304
+658,88.612,11.2852,8.27971,0.069632,0.765952,0.00832,0.006016,0.05312,0.098144,0.09808,7.06714,0.113312
+659,106.611,9.37988,8.3359,0.07568,0.801408,0.008192,0.006144,0.058528,0.09712,0.098304,7.07702,0.113504
+660,109.431,9.13818,9.49373,0.071136,0.750112,0.008192,0.006144,0.052864,0.098368,0.098624,8.2944,0.113888
+661,95.4378,10.478,8.32106,0.069632,0.786432,0.008224,0.006112,0.055296,0.09776,0.102944,7.0736,0.121056
+662,107.988,9.26025,8.30874,0.070784,0.779136,0.008288,0.006048,0.055104,0.098496,0.100352,7.07722,0.113312
+663,107.147,9.33301,8.31926,0.069504,0.778656,0.008224,0.014528,0.054208,0.09712,0.098112,7.08621,0.112704
+664,108.59,9.20898,9.28339,0.069632,0.892896,0.008224,0.00576,0.059488,0.105792,0.10544,7.92122,0.114944
+665,97.4728,10.2593,8.2713,0.071328,0.755872,0.008352,0.005632,0.051456,0.096832,0.097536,7.07018,0.114112
+666,101.351,9.8667,8.30077,0.068448,0.78848,0.008192,0.006144,0.055104,0.097664,0.097088,7.0656,0.114048
+667,115.497,8.6582,9.15344,0.06848,0.779488,0.008064,0.005024,0.0512,0.098304,0.098304,7.9289,0.11568
+668,99.4754,10.0527,9.52323,0.069632,0.769088,0.008352,0.005088,0.053088,0.098272,0.098304,8.30874,0.112672
+669,95.8891,10.4287,8.68765,0.069024,0.760256,0.008352,0.005664,0.053728,0.0976,0.098944,7.47936,0.11472
+670,103.008,9.70801,8.2944,0.069216,0.780704,0.00928,0.005056,0.05328,0.098272,0.098304,7.06746,0.112832
+671,107.727,9.28271,8.28826,0.06928,0.7704,0.008192,0.006144,0.053024,0.096576,0.098208,7.07318,0.113248
+672,107.45,9.30664,8.74406,0.077152,0.819616,0.007488,0.005056,0.053248,0.098304,0.098368,7.47072,0.114112
+673,101.366,9.86523,8.28512,0.068544,0.763936,0.00816,0.005952,0.05472,0.097024,0.097664,7.07648,0.11264
+674,98.6845,10.1333,8.35994,0.069408,0.847712,0.008256,0.005824,0.053888,0.098304,0.097984,7.06522,0.113344
+675,116.284,8.59961,9.04192,0.069664,0.821216,0.008416,0.005952,0.054336,0.097184,0.099712,7.47994,0.405504
+676,100.768,9.92383,8.28211,0.071424,0.763936,0.008352,0.005824,0.053536,0.097696,0.097056,7.07136,0.112928
+677,108.423,9.22314,8.29453,0.068896,0.76192,0.008448,0.0048,0.055136,0.113952,0.09824,7.06845,0.114688
+678,107.716,9.28369,9.55277,0.068512,0.79664,0.00928,0.005088,0.053216,0.098304,0.098304,8.31078,0.11264
+679,95.9925,10.4175,8.28784,0.069632,0.759488,0.007488,0.00512,0.053248,0.097696,0.096864,7.08403,0.114272
+680,104.891,9.53369,9.14294,0.06624,0.779584,0.008384,0.006624,0.05328,0.09936,0.098464,7.91795,0.113056
+681,99.2777,10.0728,8.31488,0.069632,0.782336,0.008192,0.006144,0.053088,0.096416,0.098304,7.07523,0.125536
+682,101.456,9.85645,9.44566,0.069024,1.05885,0.008224,0.00608,0.05328,0.097184,0.098304,7.93779,0.116928
+683,97.3245,10.2749,8.31654,0.069344,0.799008,0.008192,0.006144,0.05264,0.096864,0.097952,7.07334,0.113056
+684,107.332,9.31689,8.55606,0.069088,0.797376,0.008192,0.006144,0.053056,0.097536,0.097248,7.07702,0.3504
+685,97.2413,10.2837,8.85142,0.069632,1.32915,0.008192,0.006176,0.055296,0.09776,0.09856,7.07312,0.113536
+686,105.269,9.49951,8.35357,0.0696,0.819232,0.024576,0.006144,0.053248,0.098304,0.098304,7.07091,0.113248
+687,107.18,9.33008,8.71814,0.069344,0.803104,0.007808,0.005664,0.051904,0.096416,0.098304,7.47056,0.11504
+688,99.1672,10.084,8.3473,0.071648,0.835616,0.007232,0.005088,0.051168,0.09824,0.0984,7.06675,0.113152
+689,107.733,9.28223,8.31226,0.068864,0.788736,0.008416,0.005568,0.052128,0.098016,0.0976,7.07888,0.114048
+690,107.903,9.26758,8.70202,0.06928,0.790944,0.008192,0.006048,0.05328,0.09952,0.09856,7.45946,0.116736
+691,100.304,9.96973,8.33085,0.071712,0.802784,0.008192,0.006144,0.053248,0.096256,0.098304,7.07994,0.114272
+692,108.383,9.22656,9.27786,0.06816,0.891776,0.008416,0.00512,0.05632,0.098368,0.09824,7.93677,0.114688
+693,97.1537,10.293,9.55802,0.070016,0.802112,0.008352,0.00464,0.053248,0.098016,0.098016,8.30931,0.114304
+694,95.5001,10.4712,8.31539,0.06832,0.787648,0.008352,0.005824,0.053824,0.10384,0.105248,7.06765,0.114688
+695,107.727,9.28271,8.28989,0.069632,0.768,0.007936,0.005632,0.051904,0.098368,0.098304,7.07379,0.11632
+696,108.521,9.21484,8.32717,0.069664,0.806592,0.008352,0.005856,0.051616,0.098304,0.098336,7.07523,0.113216
+697,106.55,9.38525,9.31482,0.068064,0.913184,0.008352,0.005632,0.059296,0.096928,0.098304,7.95037,0.114688
+698,96.622,10.3496,8.34294,0.069472,0.82096,0.008384,0.005568,0.053664,0.097792,0.097184,7.07584,0.11408
+699,104.977,9.52588,8.3288,0.068896,0.807648,0.008224,0.006112,0.052608,0.096928,0.098304,7.07581,0.114272
+700,98.7797,10.1235,9.17389,0.066048,0.773472,0.008352,0.021344,0.05248,0.09712,0.099328,7.93898,0.116768
+701,105.977,9.43604,8.35789,0.069632,0.82864,0.008352,0.0048,0.0544,0.099136,0.0984,7.08189,0.11264
+702,108.469,9.21924,8.68906,0.06896,0.782048,0.00848,0.005824,0.053824,0.098368,0.097728,7.45974,0.11408
+703,95.1098,10.5142,8.62566,0.073152,1.10854,0.008192,0.00576,0.051616,0.09728,0.09856,7.06838,0.114176
+704,99.2008,10.0806,8.41424,0.069632,0.876544,0.00784,0.005824,0.051008,0.097248,0.099296,7.09315,0.113696
+705,114.882,8.70459,10.4756,0.065536,0.82944,0.008192,0.005696,0.05168,0.098272,0.100192,9.2039,0.11264
+706,88.8889,11.25,8.26422,0.069216,0.754464,0.007776,0.005824,0.052128,0.098272,0.098304,7.06506,0.113184
+707,106.878,9.35645,8.28122,0.069632,0.763904,0.008224,0.006112,0.052992,0.097728,0.098432,7.06835,0.11584
+708,105.053,9.51904,9.53974,0.069472,0.764256,0.00816,0.00592,0.053312,0.10256,0.097952,8.32506,0.113056
+709,91.7851,10.895,8.3263,0.075776,0.802816,0.008192,0.006144,0.0512,0.098144,0.098464,7.0697,0.115872
+710,105.862,9.44629,8.33766,0.0696,0.821088,0.008384,0.006368,0.053248,0.098144,0.098464,7.06934,0.113024
+711,106.628,9.37842,8.28403,0.069632,0.763904,0.008192,0.005952,0.05344,0.097312,0.098656,7.07366,0.11328
+712,105.927,9.44043,9.25402,0.065824,0.845024,0.008384,0.02272,0.053408,0.0976,0.098496,7.9448,0.11776
+713,91.3104,10.9517,8.40294,0.069664,0.874464,0.019616,0.006016,0.053536,0.09696,0.098304,7.07133,0.113056
+714,110.214,9.07324,8.76342,0.068416,0.85824,0.008224,0.005984,0.052736,0.09696,0.098272,7.45798,0.116608
+715,101.784,9.82471,8.33946,0.067584,0.82128,0.007808,0.005696,0.051552,0.096704,0.09824,7.07722,0.113376
+716,101.633,9.83936,8.36042,0.069152,0.829472,0.023424,0.006144,0.051232,0.098272,0.098304,7.07165,0.112768
+717,108.023,9.25732,8.73667,0.069632,0.806656,0.018944,0.006144,0.053248,0.098304,0.100032,7.46938,0.114336
+718,100.289,9.97119,8.38019,0.070176,0.870432,0.00816,0.006144,0.05296,0.098624,0.098304,7.0615,0.113888
+719,98.4284,10.1597,8.37405,0.069056,0.862816,0.00816,0.006144,0.052608,0.097984,0.098752,7.06406,0.114464
+720,112.053,8.92432,9.58874,0.071456,0.835808,0.008224,0.006112,0.054912,0.098112,0.096928,8.30435,0.112832
+721,93.9191,10.6475,8.37133,0.069664,0.839296,0.008384,0.0056,0.051936,0.096256,0.098272,7.07939,0.122528
+722,105.611,9.46875,8.34704,0.069088,0.834272,0.009216,0.00512,0.053248,0.100096,0.099872,7.06224,0.113888
+723,109.618,9.12256,8.30813,0.069632,0.788448,0.008224,0.005728,0.053376,0.096544,0.098304,7.07379,0.11408
+724,102.048,9.79932,9.45562,0.069632,1.0793,0.008224,0.00608,0.052928,0.098656,0.098304,7.9271,0.115392
+725,98.136,10.1899,8.29088,0.069792,0.767712,0.008416,0.0056,0.054208,0.098112,0.098464,7.07587,0.112704
+726,109.012,9.17334,8.28621,0.069152,0.770528,0.008192,0.006176,0.05248,0.098176,0.09904,7.06778,0.114688
+727,104.049,9.61084,9.17709,0.067456,0.780416,0.008096,0.005344,0.052032,0.096352,0.100032,7.95168,0.11568
+728,96.9238,10.3174,9.6025,0.06896,0.818912,0.008352,0.005056,0.05312,0.098272,0.110016,8.32566,0.114144
+729,93.3455,10.7129,9.52496,0.069664,0.876928,0.008192,0.006144,0.052832,0.098208,0.098784,8.19818,0.116032
+730,96.9973,10.3096,8.3191,0.069088,0.80736,0.00832,0.005856,0.051584,0.098048,0.098112,7.06746,0.11328
+731,107.287,9.3208,8.30086,0.06992,0.782336,0.007936,0.0056,0.053952,0.097504,0.098976,7.06992,0.11472
+732,106.136,9.42188,9.58874,0.07104,0.834176,0.00832,0.006016,0.053248,0.098336,0.098272,8.30576,0.113568
+733,94.3301,10.6011,8.31283,0.0696,0.788544,0.00816,0.006144,0.05328,0.097856,0.104896,7.06966,0.114688
+734,108.091,9.25146,8.33946,0.069632,0.821248,0.008192,0.006144,0.05456,0.09904,0.100192,7.06765,0.1128
+735,105.736,9.45752,8.39846,0.069632,0.858144,0.00816,0.007296,0.063584,0.098176,0.098592,7.08202,0.112864
+736,100.956,9.90527,9.5007,0.069472,1.11565,0.008352,0.020992,0.055296,0.098336,0.098304,7.91958,0.11472
+737,92.3021,10.834,8.45334,0.07136,0.891136,0.007584,0.005792,0.068608,0.097984,0.127104,7.06989,0.113888
+738,114.843,8.70752,8.31715,0.067808,0.79872,0.008192,0.006144,0.0512,0.098304,0.098272,7.07494,0.113568
+739,103.88,9.62646,9.07946,0.066368,0.830464,0.008352,0.00496,0.053216,0.104448,0.410784,7.4863,0.11456
+740,99.1479,10.0859,8.4193,0.069152,0.86928,0.009376,0.015168,0.054688,0.107072,0.108544,7.07181,0.114208
+741,108.234,9.23926,8.66922,0.068864,0.764448,0.008384,0.005568,0.05184,0.098272,0.098304,7.45882,0.11472
+742,98.2678,10.1763,8.49414,0.085344,0.948352,0.00832,0.005824,0.053984,0.097696,0.098912,7.06765,0.128064
+743,108.228,9.23975,8.30621,0.069344,0.782624,0.009216,0.00512,0.055296,0.097408,0.097152,7.07587,0.114176
+744,107.755,9.28027,8.70048,0.069312,0.777088,0.007808,0.005792,0.051968,0.099424,0.0992,7.47427,0.115616
+745,99.6351,10.0366,8.2897,0.07168,0.77008,0.00816,0.005984,0.053408,0.09824,0.098368,7.0697,0.11408
+746,109.052,9.16992,8.28826,0.068896,0.770656,0.00832,0.005856,0.053248,0.102688,0.106496,7.05904,0.113056
+747,107.13,9.33447,8.6936,0.069664,0.767584,0.008352,0.0048,0.05488,0.098688,0.09968,7.47542,0.114528
+748,100.122,9.98779,8.30528,0.070176,0.790016,0.008384,0.005824,0.053888,0.098304,0.097952,7.06794,0.1128
+749,106.235,9.41309,8.31283,0.069536,0.79216,0.008064,0.004832,0.053184,0.098304,0.097664,7.0744,0.114688
+750,111.238,8.98975,9.52438,0.070976,0.76064,0.008192,0.005984,0.053056,0.097984,0.09808,8.31578,0.113696
+751,94.3605,10.5977,8.33779,0.068544,0.802816,0.008352,0.006016,0.052288,0.096896,0.106176,7.07645,0.120256
+752,108.665,9.20264,8.3271,0.069088,0.805792,0.007744,0.005824,0.054016,0.098304,0.100064,7.06995,0.11632
+753,108.832,9.18848,8.26909,0.06944,0.751744,0.007488,0.00592,0.052192,0.09808,0.098528,7.07174,0.113952
+754,108.245,9.23828,9.5647,0.068128,0.806432,0.008384,0.005824,0.051616,0.098496,0.098304,8.31283,0.114688
+755,93.0233,10.75,8.36346,0.071712,0.845728,0.008256,0.005696,0.053344,0.09664,0.098272,7.07085,0.11296
+756,108.423,9.22314,8.30669,0.068768,0.801632,0.008224,0.006016,0.053344,0.098304,0.098304,7.05869,0.113408
+757,109.029,9.17188,9.14637,0.072832,0.753536,0.007168,0.005952,0.052544,0.097152,0.099392,7.94218,0.115616
+758,91.6331,10.9131,8.4337,0.07376,0.901088,0.008192,0.014336,0.05456,0.09808,0.098272,7.07274,0.112672
+759,111.165,8.99561,8.77891,0.069504,0.833632,0.008256,0.005696,0.053632,0.09808,0.121088,7.4752,0.113824
+760,95.0348,10.5225,8.86944,0.069632,1.35728,0.008384,0.005824,0.055968,0.098304,0.098112,7.06275,0.113184
+761,104.575,9.5625,8.47475,0.067808,0.955968,0.008384,0.005696,0.053248,0.10096,0.098304,7.07152,0.112864
+762,107.693,9.28564,8.7016,0.069664,0.802112,0.008448,0.006592,0.052384,0.097248,0.098336,7.45059,0.116224
+763,101.587,9.84375,8.3313,0.06912,0.797184,0.009216,0.005152,0.053216,0.097984,0.097792,7.08854,0.113088
+764,107.614,9.29248,8.3567,0.068416,0.837632,0.007552,0.005824,0.05216,0.099424,0.099232,7.0697,0.116768
+765,107.366,9.31396,9.47814,0.069632,0.813056,0.008192,0.005696,0.05536,0.098304,0.100256,8.21296,0.114688
+766,89.9311,11.1196,8.35834,0.068192,0.841728,0.008192,0.006144,0.05232,0.097184,0.098304,7.07174,0.114528
+767,108.901,9.18262,8.71248,0.068448,0.802688,0.008192,0.006016,0.05328,0.097536,0.098912,7.46112,0.116288
+768,99.8927,10.0107,8.63181,0.067616,1.10912,0.007008,0.005856,0.05152,0.098304,0.098272,7.08118,0.112928
+769,104.335,9.58447,8.68765,0.069632,0.83152,0.00752,0.004736,0.054624,0.09696,0.098272,7.4112,0.113184
+770,107.597,9.29395,8.53552,0.069248,0.998944,0.010464,0.005824,0.056256,0.098464,0.100192,7.08195,0.114176
+771,106.984,9.34717,8.30054,0.0696,0.765248,0.008096,0.004928,0.054848,0.096704,0.098304,7.08954,0.11328
+772,105.611,9.46875,9.45328,0.069632,1.05267,0.008192,0.006176,0.055264,0.099744,0.096864,7.95034,0.1144
+773,97.8313,10.2217,9.56157,0.07104,0.780928,0.008192,0.005632,0.05312,0.09696,0.099296,8.33226,0.114144
+774,94.1436,10.6221,8.67411,0.068416,0.76928,0.008352,0.005824,0.053824,0.11296,0.09952,7.44326,0.112672
+775,100.872,9.91357,8.62506,0.072576,1.10749,0.008352,0.0056,0.053728,0.09664,0.098304,7.06963,0.112736
+776,109.07,9.16846,8.28995,0.069472,0.780608,0.008384,0.005792,0.051488,0.098368,0.09856,7.06355,0.113728
+777,99.7856,10.0215,9.1904,0.078816,0.819168,0.007488,0.004832,0.053088,0.098016,0.099936,7.91546,0.1136
+778,99.1144,10.0894,8.28211,0.06816,0.775584,0.008544,0.005824,0.051776,0.098304,0.098304,7.06266,0.11296
+779,104.256,9.5918,9.45376,0.069664,1.05274,0.00752,0.004864,0.05328,0.096224,0.10016,7.95258,0.116736
+780,100.049,9.99512,9.57027,0.068384,0.794144,0.008448,0.005824,0.053568,0.098304,0.097696,8.33005,0.113856
+781,91.1559,10.9702,8.29638,0.069248,0.762784,0.008192,0.00608,0.053344,0.101408,0.098336,7.08291,0.11408
+782,110.494,9.05029,9.56381,0.069632,0.802816,0.009248,0.005088,0.053248,0.09936,0.098656,8.31142,0.114336
+783,90.8244,11.0103,8.31328,0.068544,0.788096,0.008352,0.0056,0.05312,0.09712,0.106496,7.07174,0.114208
+784,111.177,8.99463,9.61546,0.0696,0.847872,0.008352,0.005824,0.053984,0.108544,0.100288,8.30858,0.112416
+785,93.1163,10.7393,8.33037,0.069216,0.803072,0.008352,0.005664,0.053728,0.097408,0.098336,7.08074,0.113856
+786,107.949,9.26367,8.7496,0.068448,0.833536,0.008224,0.006112,0.052704,0.098336,0.098816,7.46906,0.114368
+787,102.068,9.79736,8.34803,0.068288,0.825344,0.008224,0.005728,0.051584,0.098304,0.098336,7.07786,0.114368
+788,101.502,9.85205,8.61594,0.069632,0.763904,0.008192,0.006144,0.052864,0.09792,0.097152,7.40694,0.113184
+789,109.174,9.15967,9.0416,0.069632,0.800768,0.008096,0.0056,0.051872,0.098272,0.408992,7.48547,0.112896
+790,101.734,9.82959,8.33331,0.068736,0.809856,0.00752,0.005856,0.054208,0.098112,0.114432,7.06115,0.11344
+791,104.002,9.61523,9.24058,0.069632,0.8288,0.008352,0.0056,0.052224,0.0976,0.098368,7.96499,0.115008
+792,100.068,9.99316,8.29571,0.069408,0.766176,0.008192,0.006144,0.05312,0.097824,0.1048,7.0761,0.113952
+793,107.169,9.33105,9.55168,0.069632,0.80048,0.00848,0.00576,0.051584,0.096352,0.098208,8.30643,0.114752
+794,91.2087,10.9639,8.32928,0.070304,0.780288,0.00816,0.006176,0.053248,0.098304,0.098272,7.1016,0.112928
+795,114.625,8.72412,9.58083,0.069376,0.810912,0.008352,0.005696,0.05376,0.096672,0.098304,8.31264,0.12512
+796,92.9852,10.7544,8.34182,0.069824,0.809056,0.00832,0.005824,0.053056,0.098912,0.099552,7.08278,0.114496
+797,104.73,9.54834,9.58867,0.069472,0.825056,0.008352,0.020768,0.053248,0.098176,0.097856,8.30237,0.113376
+798,95.3489,10.4878,9.17757,0.06592,0.793728,0.008864,0.007584,0.052128,0.099584,0.100128,7.93258,0.117056
+799,98.1313,10.1904,8.33965,0.068288,0.8192,0.007648,0.0048,0.054272,0.097152,0.098272,7.07584,0.114176
+800,106.13,9.42236,8.69446,0.068288,0.782336,0.008192,0.006144,0.053248,0.098304,0.098304,7.46611,0.113536
+801,96.8047,10.3301,8.88426,0.069632,1.36806,0.008192,0.005792,0.055648,0.09776,0.09792,7.06858,0.112672
+802,108.751,9.19531,8.30518,0.067872,0.790528,0.008224,0.005952,0.054656,0.097088,0.098304,7.06966,0.112896
+803,106.945,9.35059,8.69344,0.069632,0.776224,0.009312,0.004992,0.05328,0.098272,0.098304,7.46701,0.116416
+804,102.791,9.72852,8.33562,0.06784,0.823296,0.008192,0.006112,0.05328,0.098304,0.098336,7.06733,0.112928
+805,107.259,9.32324,8.31283,0.06896,0.782496,0.006688,0.006112,0.054464,0.097088,0.098304,7.07584,0.12288
+806,107.586,9.29492,9.08851,0.069248,0.830112,0.008192,0.006016,0.055168,0.09872,0.099744,7.4551,0.466208
+807,99.6303,10.0371,8.31968,0.068288,0.804096,0.008384,0.004832,0.057216,0.097632,0.098496,7.06605,0.114688
+808,103.101,9.69922,9.4761,0.069632,1.10554,0.007552,0.00512,0.052608,0.098176,0.098656,7.92387,0.114944
+809,95.6384,10.4561,8.44534,0.069632,0.919552,0.009248,0.005088,0.054784,0.0968,0.099296,7.07686,0.11408
+810,104.575,9.5625,9.32896,0.069888,0.947968,0.008384,0.005856,0.0576,0.104352,0.097952,7.92227,0.114688
+811,97.7006,10.2354,8.28035,0.069888,0.757792,0.00768,0.005696,0.052192,0.098272,0.098304,7.07702,0.113504
+812,104.703,9.55078,8.40256,0.069088,0.84384,0.008384,0.005792,0.053856,0.124704,0.09808,7.08576,0.113056
+813,112.355,8.90039,9.13203,0.067584,0.753248,0.008352,0.006272,0.053376,0.097696,0.098784,7.92995,0.116768
+814,98.9276,10.1084,8.29213,0.079296,0.75424,0.008224,0.006112,0.053248,0.098336,0.098304,7.0815,0.112864
+815,108.211,9.24121,8.64886,0.069376,0.767936,0.006944,0.006144,0.052768,0.096736,0.0984,7.43414,0.116416
+816,105.112,9.51367,9.1553,0.06848,0.777824,0.007872,0.006304,0.053824,0.098304,0.102016,7.92771,0.11296
+817,98.7654,10.125,8.26592,0.06928,0.753856,0.007488,0.00496,0.053248,0.097568,0.097024,7.06966,0.112832
+818,110.096,9.08301,8.66883,0.0688,0.76048,0.008384,0.00624,0.053248,0.099328,0.097408,7.46074,0.114208
+819,101.206,9.88086,8.29341,0.068608,0.77824,0.008224,0.006048,0.05536,0.097408,0.098368,7.06803,0.11312
+820,84.7682,11.7969,8.39885,0.069632,0.879616,0.008384,0.006976,0.053248,0.098336,0.098272,7.07174,0.11264
+821,141.554,7.06445,8.74826,0.069664,0.829408,0.008192,0.00592,0.053472,0.098048,0.098496,7.46912,0.115936
+822,99.5528,10.0449,8.32717,0.06896,0.807616,0.00832,0.006016,0.0552,0.098208,0.098144,7.07139,0.113312
+823,109.613,9.12305,8.35584,0.069632,0.8192,0.00784,0.0056,0.053696,0.096736,0.102368,7.07994,0.120832
+824,106.456,9.39355,9.45555,0.069664,0.7816,0.006848,0.006144,0.052992,0.099584,0.100352,8.22374,0.114624
+825,94.9643,10.5303,8.34256,0.068576,0.827392,0.008192,0.006144,0.053248,0.097664,0.096992,7.07165,0.112704
+826,108.486,9.21777,8.28467,0.069248,0.760704,0.008288,0.00608,0.053248,0.100256,0.098336,7.07382,0.114688
+827,108.131,9.24805,9.52707,0.069568,0.753792,0.007936,0.005568,0.052032,0.098144,0.098336,8.3273,0.1144
+828,89.7144,11.1465,8.4079,0.068448,0.87424,0.024096,0.005088,0.05488,0.097952,0.09872,7.07184,0.11264
+829,108.844,9.1875,8.37184,0.07728,0.8352,0.008352,0.004864,0.054432,0.098208,0.098752,7.08045,0.114304
+830,108.314,9.23242,9.85926,0.067936,0.771936,0.008192,0.006144,0.053216,0.097376,0.097248,8.64374,0.113472
+831,85.4401,11.7041,9.07674,0.069632,1.13664,0.049152,0.006144,0.059072,0.1184,0.44064,7.08438,0.112672
+832,107.994,9.25977,8.32736,0.068928,0.816,0.008192,0.006144,0.052928,0.098048,0.098528,7.06525,0.113344
+833,106.644,9.37695,8.69565,0.071616,0.786528,0.00832,0.006016,0.05328,0.098272,0.09936,7.45686,0.115392
+834,94.1436,10.6221,8.89242,0.124448,1.30698,0.018304,0.005856,0.06608,0.098304,0.098304,7.06128,0.112864
+835,107.733,9.28223,8.32918,0.069632,0.8008,0.008224,0.006112,0.053248,0.098272,0.105984,7.0735,0.113408
+836,105.296,9.49707,9.56826,0.077824,0.890624,0.00832,0.005856,0.053504,0.098464,0.098336,8.22064,0.114688
+837,96.6311,10.3486,8.29123,0.068544,0.774112,0.008064,0.005568,0.053472,0.096736,0.098304,7.07302,0.113408
+838,107.18,9.33008,8.32774,0.070016,0.799392,0.00816,0.006112,0.054496,0.09856,0.098624,7.0761,0.116288
+839,106.744,9.36816,9.54915,0.069888,0.787936,0.008352,0.0056,0.0536,0.096832,0.098304,8.31488,0.11376
+840,95.0524,10.5205,8.29245,0.069632,0.78352,0.008352,0.005856,0.053344,0.098784,0.09872,7.0615,0.112736
+841,78.4614,12.7451,9.14163,0.069056,0.797024,0.008352,0.005632,0.052032,0.10032,0.09952,7.45747,0.552224
+842,121.298,8.24414,8.704,0.069632,0.85152,0.008352,0.005824,0.053056,0.09888,0.098432,7.40477,0.113536
+843,112.54,8.88574,9.06038,0.069504,0.8136,0.008192,0.00592,0.053472,0.098336,0.40752,7.48954,0.114304
+844,93.1502,10.7354,8.37085,0.068256,0.862208,0.008192,0.00608,0.053344,0.098304,0.098048,7.06355,0.112864
+845,114.824,8.70898,10.4764,0.070464,0.821248,0.008192,0.005792,0.053504,0.098368,0.098208,9.20797,0.112608
+846,86.5962,11.5479,8.33741,0.069664,0.820384,0.00832,0.005856,0.052192,0.098304,0.098112,7.0712,0.113376
+847,105.426,9.48535,9.61661,0.067136,0.851392,0.008416,0.004896,0.05328,0.09744,0.09904,8.31818,0.116832
+848,91.954,10.875,9.61088,0.070016,0.835616,0.010048,0.005824,0.055136,0.097952,0.098272,8.32413,0.113888
+849,93.6871,10.6738,9.01706,0.069632,0.827424,0.00816,0.006112,0.053312,0.098272,0.099456,7.45766,0.397024
+850,101.436,9.8584,8.3208,0.070944,0.798784,0.008352,0.005824,0.052064,0.098272,0.098304,7.07379,0.114464
+851,101.708,9.83203,9.51024,0.069056,1.13478,0.008352,0.005664,0.053056,0.097152,0.098304,7.92755,0.11632
+852,90.6275,11.0342,9.57846,0.069408,0.802848,0.008384,0.005824,0.05552,0.098208,0.09808,8.32726,0.112928
+853,102.646,9.74219,8.7089,0.068384,0.796672,0.008,0.005568,0.054016,0.09792,0.098528,7.4664,0.113408
+854,95.7636,10.4424,9.05405,0.069504,1.53242,0.007808,0.005824,0.052064,0.099328,0.098432,7.07466,0.114016
+855,106.401,9.39844,8.38317,0.068576,0.861824,0.006528,0.006144,0.054624,0.096928,0.100352,7.06973,0.118464
+856,108.142,9.24707,9.08234,0.069984,0.80896,0.008224,0.006112,0.053184,0.098208,0.100064,7.47117,0.466432
+857,98.5279,10.1494,8.34336,0.069504,0.81312,0.008256,0.005824,0.053472,0.096352,0.098304,7.08403,0.114496
+858,108.051,9.25488,8.33046,0.067584,0.80624,0.00848,0.006528,0.055296,0.098336,0.098304,7.07581,0.113888
+859,107.293,9.32031,9.53661,0.070752,0.783264,0.008352,0.005984,0.054336,0.097216,0.098304,8.30464,0.11376
+860,94.526,10.5791,8.36198,0.068992,0.840064,0.008352,0.005824,0.053696,0.09824,0.098304,7.06672,0.121792
+861,107.135,9.33398,8.32102,0.069664,0.802784,0.008192,0.006112,0.05232,0.097216,0.100032,7.06957,0.115136
+862,107.824,9.27441,8.29498,0.068448,0.776192,0.009312,0.005088,0.054688,0.0968,0.098304,7.07354,0.112608
+863,104.8,9.54199,9.34714,0.068736,0.961472,0.008224,0.005888,0.059616,0.104352,0.098432,7.92573,0.114688
+864,99.3307,10.0674,8.31446,0.070112,0.79664,0.008192,0.006176,0.054432,0.097088,0.099712,7.06829,0.113824
+865,106.522,9.3877,9.91939,0.068512,0.77728,0.008352,0.004896,0.053248,0.09808,0.097984,8.6984,0.11264
+866,90.5714,11.041,8.60554,0.069664,1.07926,0.010624,0.006016,0.055328,0.0984,0.098304,7.07379,0.114144
+867,106.767,9.36621,8.29955,0.068512,0.784384,0.008192,0.005888,0.053536,0.097312,0.098272,7.07069,0.112768
+868,107.744,9.28125,8.66899,0.06816,0.772096,0.008192,0.006112,0.052352,0.098528,0.09872,7.45062,0.114208
+869,102.023,9.80176,8.2985,0.069568,0.781408,0.00736,0.005952,0.053248,0.096224,0.098304,7.07306,0.113376
+870,108.406,9.22461,8.2945,0.06816,0.76752,0.008352,0.005856,0.053888,0.098272,0.098336,7.0799,0.114208
+871,105.654,9.46484,8.72019,0.069664,0.802784,0.008224,0.006016,0.053344,0.098304,0.098304,7.46701,0.116544
+872,104.266,9.59082,8.30259,0.069632,0.781984,0.008096,0.005824,0.054016,0.098272,0.09792,7.07421,0.11264
+873,108.567,9.21094,8.26422,0.068416,0.749536,0.008192,0.006176,0.053152,0.096352,0.098304,7.0697,0.1144
+874,110.025,9.08887,8.66678,0.069632,0.761408,0.008384,0.005568,0.052032,0.098368,0.100288,7.45386,0.117248
+875,101.668,9.83594,8.2985,0.068192,0.777696,0.008384,0.005568,0.054176,0.097408,0.098624,7.07437,0.11408
+876,107.439,9.30762,9.34298,0.069632,0.954368,0.008192,0.005824,0.055616,0.10608,0.106208,7.92237,0.114688
+877,96.4128,10.3721,8.33494,0.07168,0.80896,0.00832,0.006016,0.054912,0.096736,0.099808,7.07424,0.114272
+878,108.234,9.23926,9.54982,0.069664,0.780288,0.00816,0.006144,0.05328,0.098272,0.098336,8.32269,0.112992
+879,95.1319,10.5117,8.30333,0.068384,0.763904,0.008192,0.006144,0.053248,0.099776,0.100032,7.08902,0.114624
+880,107.778,9.27832,8.30464,0.069632,0.78832,0.008352,0.005792,0.051584,0.098272,0.097984,7.07206,0.11264
+881,106.733,9.36914,9.25434,0.069216,0.872896,0.008192,0.005984,0.056864,0.10224,0.09824,7.92614,0.11456
+882,97.5889,10.2471,8.28973,0.069664,0.76736,0.008384,0.005824,0.054016,0.097984,0.098144,7.07424,0.114112
+883,108.498,9.2168,8.27539,0.069664,0.761824,0.008352,0.005984,0.051232,0.098272,0.098304,7.06765,0.114112
+884,109.11,9.16504,9.15171,0.07168,0.761312,0.008288,0.005824,0.053824,0.098112,0.098688,7.93805,0.115936
+885,92.4021,10.8223,8.41728,0.069184,0.880384,0.008352,0.004832,0.064512,0.097088,0.098336,7.08147,0.11312
+886,111.462,8.97168,8.72851,0.069632,0.817152,0.008192,0.006176,0.052992,0.098048,0.098784,7.46294,0.114592
+887,102.236,9.78125,8.53142,0.069632,1.00458,0.010816,0.005728,0.058048,0.098016,0.09872,7.0712,0.114688
+888,104.961,9.52734,8.39888,0.069248,0.880672,0.008384,0.005792,0.053312,0.098656,0.09808,7.07206,0.112672
+889,102.094,9.79492,10.6844,0.069632,1.1295,0.007136,0.006016,0.051328,0.097728,0.098528,9.1119,0.11264
+890,87.5214,11.4258,8.29459,0.067808,0.767744,0.008352,0.005824,0.051584,0.11264,0.098304,7.0697,0.11264
+891,106.722,9.37012,8.39773,0.074656,0.835584,0.008192,0.006144,0.054432,0.09712,0.106496,7.10035,0.114752
+892,106.811,9.3623,9.6112,0.0696,0.820512,0.008416,0.005856,0.05408,0.098304,0.098304,8.34307,0.113056
+893,91.2412,10.96,8.34138,0.069312,0.815424,0.008192,0.005824,0.053568,0.098304,0.098304,7.07789,0.11456
+894,108.555,9.21191,8.33741,0.070976,0.821952,0.008192,0.006144,0.053248,0.099424,0.098784,7.06598,0.112704
+895,106.589,9.38184,8.38896,0.06928,0.854656,0.008256,0.00576,0.053664,0.098272,0.09824,7.07763,0.1232
+896,103.917,9.62305,9.23936,0.074592,0.845184,0.008384,0.005824,0.051936,0.099584,0.098752,7.94,0.115104
+897,93.6957,10.6729,8.4249,0.069632,0.876544,0.021664,0.00496,0.064512,0.105472,0.098176,7.06982,0.114112
+898,106.301,9.40723,8.77773,0.069376,0.851744,0.008416,0.005824,0.053824,0.099552,0.09712,7.4783,0.113568
+899,94.6571,10.5645,9.05952,0.070848,1.53696,0.008256,0.00608,0.052512,0.096928,0.098336,7.07587,0.113728
+900,107.338,9.31641,9.59632,0.069632,0.806912,0.008192,0.006144,0.052864,0.09808,0.098176,8.34221,0.114112
+901,93.7987,10.6611,9.60787,0.070112,0.83184,0.008288,0.006048,0.0512,0.09808,0.097984,8.33094,0.113376
+902,95.2735,10.4961,8.30573,0.069664,0.7864,0.007584,0.006592,0.05136,0.098304,0.098304,7.0656,0.12192
+903,105.873,9.44531,8.46192,0.069632,0.925696,0.008416,0.00592,0.051232,0.098112,0.100352,7.08806,0.114496
+904,107.191,9.3291,8.3368,0.06944,0.807104,0.008192,0.005856,0.055168,0.098528,0.0984,7.08003,0.11408
+905,106.489,9.39062,9.33888,0.069632,0.947264,0.007328,0.00592,0.057376,0.098272,0.098272,7.94013,0.114688
+906,97.5517,10.251,8.30874,0.069632,0.788032,0.008352,0.005824,0.053888,0.097568,0.09696,7.07584,0.11264
+907,107.461,9.30566,8.30691,0.068896,0.791456,0.008192,0.006016,0.051328,0.096224,0.09936,7.07274,0.112704
+908,106.246,9.41211,9.25312,0.076032,0.869728,0.008352,0.005824,0.051456,0.098496,0.09776,7.9303,0.115168
+909,98.8131,10.1201,8.30259,0.069632,0.776192,0.008192,0.005824,0.05488,0.096992,0.098304,7.0799,0.112672
+910,107.597,9.29395,8.70605,0.068928,0.790208,0.00832,0.005088,0.053152,0.098304,0.100352,7.46896,0.112736
+911,102.729,9.73438,9.75462,0.069632,0.987136,0.01168,0.004832,0.059296,0.099584,0.099072,8.31075,0.11264
+912,94.3518,10.5986,8.30941,0.068576,0.77824,0.00752,0.005792,0.055968,0.098144,0.098496,7.08243,0.11424
+913,106.733,9.36914,8.69581,0.069312,0.782656,0.008032,0.0056,0.05344,0.0968,0.099488,7.46374,0.116736
+914,102.451,9.76074,8.32656,0.070816,0.80576,0.00816,0.006144,0.05328,0.098272,0.098304,7.07283,0.112992
+915,107.789,9.27734,8.2975,0.069216,0.757216,0.007104,0.006048,0.053376,0.104416,0.106144,7.07824,0.115744
+916,106.026,9.43164,9.46806,0.068256,0.86416,0.007936,0.005824,0.053888,0.100352,0.099968,8.15277,0.114912
+917,98.0843,10.1953,8.29104,0.068384,0.771872,0.008352,0.0056,0.053792,0.098048,0.097696,7.07443,0.112864
+918,108.074,9.25293,8.28826,0.069632,0.768,0.008352,0.005984,0.05264,0.098912,0.098304,7.0729,0.113536
+919,103.602,9.65234,8.40797,0.069632,0.887712,0.008192,0.005984,0.05136,0.09792,0.098688,7.07584,0.11264
+920,109.659,9.11914,9.60077,0.069664,0.823296,0.008384,0.007872,0.053344,0.098048,0.098336,8.32742,0.1144
+921,93.9363,10.6455,8.29997,0.069632,0.77824,0.008192,0.005984,0.053408,0.09936,0.099296,7.07174,0.114112
+922,108.452,9.2207,8.29235,0.069632,0.77728,0.007136,0.006112,0.052864,0.098688,0.098336,7.06966,0.11264
+923,98.985,10.1025,9.56726,0.06896,1.16598,0.008288,0.006048,0.053248,0.097824,0.098624,7.9519,0.116384
+924,97.7752,10.2275,8.33536,0.069664,0.81712,0.008192,0.006144,0.053248,0.098368,0.09824,7.07174,0.11264
+925,108.302,9.2334,8.68077,0.069216,0.797088,0.008064,0.0056,0.053952,0.097952,0.098144,7.43677,0.113984
+926,103.623,9.65039,9.19974,0.068096,0.813024,0.00832,0.006016,0.055296,0.098304,0.098304,7.93984,0.112544
+927,96.5947,10.3525,8.33136,0.068352,0.796672,0.007584,0.004832,0.055168,0.097984,0.096576,7.09018,0.114016
+928,105.545,9.47461,8.70973,0.069632,0.808352,0.008352,0.005824,0.053728,0.097696,0.098784,7.45094,0.116416
+929,100.176,9.98242,8.33741,0.0696,0.815136,0.009248,0.00512,0.053216,0.098016,0.098368,7.07606,0.11264
+930,105.895,9.44336,8.36611,0.069632,0.837664,0.00816,0.006176,0.054656,0.105056,0.098304,7.07357,0.112896
+931,106.257,9.41113,9.49139,0.078752,0.84352,0.00752,0.005024,0.054304,0.097248,0.099776,8.19165,0.1136
+932,96.2225,10.3926,8.28237,0.06944,0.775072,0.008192,0.00592,0.05248,0.098368,0.098272,7.06179,0.112832
+933,107.371,9.31348,8.68538,0.069536,0.780736,0.008576,0.005696,0.05168,0.097568,0.098592,7.45661,0.116384
+934,100.313,9.96875,8.31078,0.071296,0.790048,0.008352,0.005824,0.052256,0.098304,0.098304,7.07366,0.112736
+935,107.484,9.30371,9.34416,0.069408,0.950368,0.008352,0.0056,0.055808,0.10448,0.1024,7.93366,0.11408
+936,97.5424,10.252,8.31366,0.070464,0.798496,0.008384,0.005824,0.051456,0.09744,0.098304,7.07066,0.11264
+937,108.005,9.25879,8.28,0.069632,0.75776,0.008096,0.0056,0.05184,0.097696,0.096864,7.07789,0.114624
+938,107.046,9.3418,9.21722,0.07168,0.819136,0.008256,0.00592,0.05472,0.098336,0.09808,7.94518,0.115904
+939,97.1168,10.2969,8.31283,0.069632,0.7936,0.007168,0.00608,0.054432,0.097184,0.098144,7.07334,0.113248
+940,105.829,9.44922,8.75619,0.068576,0.83968,0.008224,0.00592,0.05344,0.098336,0.104416,7.46416,0.11344
+941,103.091,9.7002,8.50906,0.071648,0.978272,0.010816,0.005664,0.055936,0.098112,0.09952,7.07478,0.114304
+942,106.379,9.40039,8.29565,0.069088,0.77264,0.008192,0.005984,0.053408,0.098304,0.099456,7.07597,0.112608
+943,104.405,9.57812,8.74083,0.082176,0.810624,0.008384,0.005632,0.053888,0.097664,0.097984,7.46973,0.114752
+944,102.308,9.77441,8.31286,0.071136,0.780832,0.008192,0.006016,0.053376,0.098304,0.09808,7.08403,0.112896
+945,108.406,9.22461,9.51296,0.069216,0.755552,0.008384,0.005632,0.0536,0.097856,0.097248,8.31082,0.114656
+946,89.1986,11.2109,9.59082,0.069632,0.843776,0.009248,0.005088,0.063488,0.098336,0.10032,8.28826,0.112672
+947,101.597,9.84277,8.30704,0.069344,0.788352,0.008352,0.004704,0.055264,0.098112,0.09792,7.07232,0.112672
+948,109.145,9.16211,8.28157,0.069664,0.757728,0.008192,0.006144,0.05328,0.098272,0.099552,7.07459,0.114144
+949,106.257,9.41113,9.59613,0.070752,0.846752,0.008192,0.005792,0.0536,0.096256,0.098304,8.30259,0.113888
+950,95.3001,10.4932,8.30608,0.069472,0.790688,0.008128,0.005952,0.051456,0.099552,0.098432,7.06832,0.11408
+951,106.711,9.37109,8.29424,0.06992,0.77824,0.008352,0.005984,0.053088,0.096448,0.098272,7.07101,0.112928
+952,108.636,9.20508,8.32595,0.068416,0.806912,0.008192,0.00608,0.053344,0.098272,0.098304,7.07328,0.113152
+953,105.242,9.50195,9.40656,0.07584,1.03834,0.009344,0.005024,0.05296,0.0976,0.097216,7.91475,0.115488
+954,89.0125,11.2344,8.47872,0.069632,0.939456,0.008384,0.005856,0.05328,0.11072,0.0984,7.07962,0.113376
+955,119.07,8.39844,8.6681,0.068544,0.804448,0.008352,0.005632,0.053152,0.09712,0.098304,7.4191,0.11344
+956,104.235,9.59375,9.0391,0.069632,0.773408,0.008352,0.005824,0.052096,0.099488,0.385888,7.53053,0.113888
+957,101.136,9.8877,8.2903,0.069632,0.770048,0.008192,0.006144,0.054304,0.0968,0.09792,7.07462,0.11264
+958,51.7198,19.335,9.04691,0.069792,0.848576,0.018464,0.004192,0.052576,0.098752,0.098496,7.46061,0.395456
+959,116.655,8.57227,8.4145,0.071616,0.894496,0.008192,0.00464,0.05312,0.097504,0.097184,7.07379,0.113952
+960,101.749,9.82812,8.37974,0.06896,0.852672,0.008288,0.006016,0.053152,0.098112,0.098368,7.07402,0.12016
+961,104.65,9.55566,9.58925,0.069472,0.8424,0.007968,0.005536,0.05408,0.09744,0.098208,8.3015,0.11264
+962,96.0781,10.4082,8.27011,0.067872,0.757312,0.008352,0.005824,0.053216,0.098176,0.098624,7.06784,0.112896
+963,99.4561,10.0547,8.41254,0.069664,0.84112,0.024416,0.004832,0.063008,0.112928,0.110784,7.07174,0.114048
+964,117.176,8.53418,8.27178,0.068256,0.763904,0.007616,0.005824,0.053632,0.097856,0.097216,7.06355,0.11392
+965,105.523,9.47656,9.44128,0.068896,1.05341,0.008192,0.006144,0.0528,0.096736,0.098272,7.92986,0.126976
+966,95.7994,10.4385,8.41917,0.069632,0.886336,0.006592,0.006144,0.052768,0.11088,0.098016,7.07565,0.113152
+967,104.714,9.5498,9.9415,0.0696,0.940352,0.008352,0.014272,0.051776,0.09808,0.317664,8.32624,0.115168
+968,88.8889,11.25,8.28006,0.069184,0.7656,0.006944,0.006144,0.052512,0.09888,0.097952,7.07018,0.112672
+969,108.475,9.21875,8.33898,0.069408,0.808736,0.008448,0.005536,0.052,0.098304,0.098304,7.08403,0.114208
+970,105.48,9.48047,8.71734,0.082048,0.78016,0.0096,0.005824,0.060352,0.098432,0.100192,7.46499,0.115744
+971,100.392,9.96094,8.37654,0.069952,0.853504,0.008384,0.0056,0.052032,0.096256,0.098304,7.07965,0.112864
+972,106.456,9.39355,8.31296,0.068832,0.79312,0.008352,0.005824,0.0536,0.104,0.09888,7.06755,0.1128
+973,107.495,9.30273,9.58275,0.079872,0.787616,0.008352,0.004832,0.053216,0.099424,0.099264,8.33738,0.1128
+974,94.4301,10.5898,8.30534,0.068288,0.782304,0.009376,0.005056,0.054432,0.09696,0.096416,7.07574,0.116768
+975,106.578,9.38281,8.43181,0.0696,0.88576,0.00816,0.015584,0.0536,0.098688,0.108288,7.07411,0.118016
+976,105.004,9.52344,8.29491,0.068512,0.7864,0.008192,0.006144,0.0512,0.098304,0.098304,7.06355,0.114304
+977,106.312,9.40625,9.78243,0.069632,0.989184,0.024416,0.005568,0.055776,0.09792,0.098336,8.32714,0.114464
+978,91.4367,10.9365,8.2832,0.071488,0.759168,0.008384,0.005856,0.052,0.098112,0.098432,7.07606,0.113696
+979,107.858,9.27148,8.6511,0.069312,0.800896,0.008352,0.004672,0.052672,0.096832,0.098336,7.40554,0.114496
+980,100.956,9.90527,8.51312,0.069728,0.984992,0.011776,0.005856,0.056096,0.098208,0.100352,7.07309,0.113024
+981,106.191,9.41699,8.29555,0.069024,0.771904,0.00704,0.006048,0.053312,0.098016,0.10672,7.06934,0.114144
+982,108.245,9.23828,8.67869,0.069632,0.770048,0.008192,0.00752,0.053216,0.099008,0.098304,7.45837,0.1144
+983,99.7079,10.0293,8.80592,0.071104,1.27165,0.008352,0.004896,0.057344,0.097952,0.098656,7.08198,0.113984
+984,106.99,9.34668,8.26752,0.06832,0.751616,0.008192,0.005952,0.052736,0.09808,0.09888,7.06941,0.114336
+985,108.062,9.25391,8.68739,0.071712,0.7864,0.008192,0.005856,0.051072,0.09776,0.098624,7.45277,0.115008
+986,102.206,9.78418,8.26371,0.069632,0.751424,0.008352,0.005824,0.0536,0.098048,0.097728,7.06643,0.112672
+987,109.671,9.11816,8.2655,0.06912,0.751776,0.00832,0.006272,0.052352,0.096768,0.096736,7.06973,0.114432
+988,108.994,9.1748,8.66054,0.069056,0.756608,0.008192,0.006048,0.053056,0.098624,0.098272,7.45475,0.115936
+989,103.696,9.64355,8.28496,0.068384,0.763904,0.008064,0.005536,0.053824,0.09792,0.098592,7.07574,0.112992
+990,105.709,9.45996,8.39325,0.06816,0.876512,0.007616,0.005856,0.054144,0.098304,0.098272,7.06355,0.120832
+991,107.147,9.33301,8.77158,0.069632,0.862208,0.00832,0.006016,0.05328,0.098272,0.099584,7.45754,0.116736
+992,91.4204,10.9385,8.53034,0.070592,0.99296,0.008064,0.005824,0.056064,0.111904,0.111328,7.05946,0.114144
+993,113.727,8.79297,8.40464,0.07328,0.864704,0.008352,0.014176,0.051232,0.098304,0.098272,7.0817,0.114624
+994,107.926,9.26562,9.50637,0.069632,0.749568,0.008032,0.005824,0.053728,0.098304,0.103712,8.30333,0.11424
+995,94.1003,10.627,8.35622,0.068384,0.822336,0.008352,0.004928,0.0512,0.101984,0.11712,7.06765,0.114272
+996,105.08,9.5166,8.56195,0.070784,1.0488,0.008384,0.005856,0.051968,0.098336,0.09984,7.06198,0.116
+997,109.378,9.14258,8.27002,0.069792,0.763488,0.008096,0.004832,0.053088,0.0976,0.09856,7.06138,0.113184
+998,103.77,9.63672,9.50272,0.069632,1.11309,0.007168,0.006144,0.0512,0.098336,0.098304,7.94416,0.114688
+999,98.1783,10.1855,8.30739,0.069472,0.789472,0.008352,0.006016,0.053024,0.098496,0.098304,7.07091,0.113344
+1000,100.817,9.91895,8.80432,0.068096,0.903168,0.008192,0.006176,0.053216,0.098304,0.098272,7.45475,0.114144
+1001,102.461,9.75977,8.55094,0.06912,1.03309,0.01168,0.004832,0.056704,0.098688,0.098272,7.06544,0.11312
+1002,105.611,9.46875,8.29123,0.068512,0.765952,0.008224,0.006112,0.05264,0.10208,0.098432,7.0761,0.113184
+1003,108.774,9.19336,8.72368,0.069504,0.80704,0.009344,0.004992,0.052256,0.097248,0.098336,7.47107,0.113888
+1004,94.6571,10.5645,9.00483,0.069696,1.49501,0.008224,0.006112,0.054592,0.09696,0.098304,7.06269,0.113248
+1005,105.763,9.45508,8.30083,0.068256,0.774144,0.008192,0.006144,0.052256,0.095232,0.11056,7.06701,0.11904
+1006,108.302,9.2334,8.71629,0.069632,0.802528,0.00832,0.0056,0.053952,0.099904,0.100416,7.4607,0.115232
+1007,101.236,9.87793,8.32102,0.07168,0.803936,0.008384,0.004832,0.053248,0.097728,0.098656,7.06992,0.11264
+1008,107.18,9.33008,8.35587,0.068928,0.850112,0.006656,0.006144,0.05328,0.098304,0.098272,7.06077,0.113408
+1009,107.214,9.32715,9.57907,0.069696,0.803328,0.008256,0.00608,0.05328,0.100352,0.098304,8.32714,0.11264
+1010,94.5522,10.5762,8.32672,0.069664,0.809152,0.008224,0.005952,0.051392,0.098336,0.098304,7.07318,0.112512
+1011,105.491,9.47949,8.32512,0.069632,0.800768,0.008192,0.005984,0.05344,0.097696,0.096832,7.07584,0.116736
+1012,108.544,9.21289,8.32432,0.068992,0.815744,0.008192,0.006144,0.053248,0.098304,0.098304,7.0615,0.113888
+1013,107.023,9.34375,9.39082,0.069472,0.80368,0.00816,0.006176,0.052608,0.096896,0.325632,7.91347,0.11472
+1014,96.3493,10.3789,8.31715,0.069856,0.800768,0.00832,0.006016,0.055232,0.098208,0.098464,7.06688,0.113408
+1015,101.779,9.8252,8.28054,0.068064,0.77152,0.008352,0.005568,0.053632,0.096864,0.098304,7.06515,0.113088
+1016,106.334,9.4043,9.17072,0.06832,0.80848,0.008256,0.005824,0.051872,0.098368,0.099552,7.91363,0.116416
+1017,99.2344,10.0771,8.30118,0.069824,0.776224,0.008384,0.005568,0.054048,0.09792,0.098688,7.07738,0.113152
+1018,107.169,9.33105,8.68576,0.068992,0.766784,0.008224,0.006112,0.054752,0.104032,0.097216,7.46643,0.113216
+1019,95.5491,10.4658,8.80701,0.070208,1.27578,0.00832,0.005664,0.057856,0.09728,0.097248,7.08192,0.112736
+1020,110.607,9.04102,8.28173,0.067936,0.776192,0.008192,0.005824,0.053376,0.098496,0.098304,7.06054,0.112864
+1021,108.971,9.17676,8.6975,0.07744,0.780928,0.009248,0.005056,0.053248,0.098272,0.098368,7.46029,0.114656
+1022,100.688,9.93164,8.30723,0.068128,0.78848,0.008192,0.006048,0.051296,0.098304,0.098144,7.07558,0.113056
+1023,109.46,9.13574,8.28746,0.069408,0.776416,0.007968,0.005568,0.053952,0.09744,0.098464,7.06435,0.113888
+1024,108.211,9.24121,8.67805,0.0696,0.770752,0.008192,0.006144,0.053248,0.099616,0.09904,7.45472,0.116736
+1025,102.185,9.78613,8.32109,0.067648,0.807968,0.00832,0.00496,0.053216,0.096448,0.098144,7.07123,0.113152
+1026,92.7872,10.7773,9.22438,0.07232,0.8704,0.008448,0.005888,0.05328,0.098272,0.1,7.89949,0.116288
+1027,98.1783,10.1855,8.36291,0.068416,0.849056,0.008384,0.004896,0.054144,0.097024,0.09664,7.07162,0.112736
+1028,99.052,10.0957,9.50477,0.069408,1.11434,0.008192,0.00592,0.053472,0.098304,0.098336,7.94211,0.114688
+1029,96.8138,10.3291,8.29827,0.069632,0.79568,0.00832,0.00496,0.053056,0.096448,0.098336,7.05846,0.113376
+1030,110.108,9.08203,9.57453,0.06816,0.792608,0.008128,0.005824,0.0528,0.097056,0.099488,8.33622,0.11424
+1031,94.9379,10.5332,8.30058,0.070944,0.782144,0.008384,0.004832,0.055296,0.098304,0.098336,7.06963,0.112704
+1032,107.507,9.30176,8.28838,0.0688,0.7784,0.006976,0.006112,0.053248,0.098304,0.098112,7.06563,0.1128
+1033,105.004,9.52344,9.47786,0.069664,1.08909,0.008352,0.005632,0.052,0.097472,0.099104,7.93936,0.117184
+1034,98.5468,10.1475,8.27398,0.069056,0.759968,0.006624,0.006144,0.05328,0.098112,0.098464,7.0697,0.11264
+1035,105.621,9.46777,8.5608,0.068608,0.80896,0.008192,0.006144,0.052448,0.097056,0.098208,7.07155,0.349632
+1036,106.158,9.41992,9.15978,0.069184,0.788256,0.008384,0.005824,0.054048,0.09984,0.099872,7.92045,0.11392
+1037,99.5044,10.0498,8.27005,0.069792,0.758272,0.008192,0.00592,0.052992,0.096736,0.098336,7.06672,0.113088
+1038,109.332,9.14648,8.66042,0.068928,0.762464,0.007488,0.004992,0.05232,0.097184,0.09824,7.4545,0.114304
+1039,95.9161,10.4258,8.98941,0.070368,1.47398,0.008416,0.005536,0.053728,0.096448,0.09776,7.0696,0.113568
+1040,108.67,9.20215,8.29034,0.069184,0.776064,0.008352,0.005824,0.051968,0.09824,0.098336,7.06973,0.11264
+1041,109.753,9.11133,8.96467,0.069504,0.760512,0.008256,0.005664,0.053184,0.0968,0.098304,7.45882,0.413632
+1042,100.088,9.99121,8.26371,0.07168,0.755584,0.00832,0.005824,0.051552,0.098272,0.097568,7.06224,0.112672
+1043,108.948,9.17871,8.37632,0.06928,0.835936,0.008256,0.007232,0.060288,0.097664,0.100992,7.08198,0.114688
+1044,106.191,9.41699,9.36685,0.069728,0.759456,0.008352,0.005824,0.05392,0.099552,0.099136,8.1551,0.115776
+1045,96.2225,10.3926,8.30259,0.07904,0.785056,0.007456,0.004992,0.052736,0.096768,0.098304,7.06499,0.113248
+1046,108.705,9.19922,8.28714,0.070496,0.761952,0.008288,0.006016,0.0512,0.098304,0.099616,7.07763,0.113632
+1047,108.005,9.25879,9.51882,0.07104,0.766272,0.008352,0.005536,0.053472,0.096736,0.097888,8.3063,0.113216
+1048,94.526,10.5791,8.34416,0.068192,0.820864,0.008352,0.005824,0.053792,0.10448,0.10432,7.0649,0.11344
+1049,104.543,9.56543,8.3719,0.07072,0.848832,0.008224,0.006112,0.05232,0.097184,0.09968,7.07418,0.114656
+1050,106.678,9.37402,8.30163,0.068832,0.795424,0.008192,0.006176,0.052576,0.098528,0.09792,7.06026,0.113728
+1051,104.854,9.53711,9.44742,0.069632,1.0752,0.00928,0.005088,0.051168,0.098208,0.098272,7.92541,0.115168
+1052,97.6726,10.2383,8.30765,0.068512,0.786432,0.008224,0.005824,0.05152,0.098272,0.098304,7.07789,0.112672
+1053,108.544,9.21289,8.51382,0.068512,0.763136,0.017184,0.005632,0.052864,0.097088,0.097376,7.06016,0.351872
+1054,103.497,9.66211,9.22397,0.069184,0.84352,0.008224,0.005824,0.054272,0.099872,0.098784,7.9296,0.114688
+1055,99.9122,10.0088,8.29354,0.069632,0.780288,0.00928,0.005056,0.053248,0.097312,0.097344,7.06755,0.113824
+1056,107.529,9.2998,8.69402,0.06848,0.787936,0.008384,0.005888,0.052864,0.09728,0.098304,7.46086,0.114016
+1057,97.3014,10.2773,8.6569,0.08192,1.1264,0.007776,0.005536,0.051456,0.096544,0.098112,7.07594,0.113216
+1058,107.473,9.30469,8.28835,0.067872,0.76576,0.008192,0.006048,0.05264,0.101088,0.098272,7.07584,0.11264
+1059,102.369,9.76855,8.81738,0.07856,0.890752,0.00832,0.02048,0.053248,0.098304,0.099744,7.44714,0.120832
+1060,99.2729,10.0732,8.3751,0.068224,0.868064,0.008352,0.005824,0.053376,0.098048,0.098848,7.06106,0.113312
+1061,108.567,9.21094,8.27517,0.069472,0.755232,0.008352,0.00592,0.064192,0.098336,0.098272,7.06141,0.113984
+1062,106.589,9.38184,9.63546,0.071168,0.8784,0.006848,0.006144,0.05328,0.099392,0.098528,8.30864,0.113056
+1063,95.5848,10.4619,8.2951,0.068256,0.780288,0.008192,0.00608,0.051264,0.097504,0.098336,7.06842,0.116768
+1064,105.938,9.43945,8.29846,0.069632,0.77824,0.009248,0.005088,0.054784,0.098944,0.09968,7.06614,0.116704
+1065,107.778,9.27832,8.32307,0.069632,0.802848,0.00816,0.006144,0.05328,0.096224,0.098304,7.07581,0.112672
+1066,106.578,9.38281,9.38224,0.068288,0.99936,0.008192,0.006144,0.056736,0.105056,0.102336,7.92173,0.1144
+1067,97.209,10.2871,8.32237,0.071488,0.808352,0.008352,0.0048,0.054464,0.097056,0.09824,7.06566,0.113952
+1068,107.631,9.29102,8.32698,0.069632,0.802144,0.017056,0.00592,0.053472,0.098144,0.098272,7.06928,0.113056
+1069,108.44,9.22168,9.15437,0.071712,0.779264,0.008352,0.004928,0.052256,0.097248,0.09792,7.92794,0.114752
+1070,95.6473,10.4551,8.47763,0.068544,0.958272,0.008064,0.005888,0.051808,0.098272,0.098304,7.07379,0.114688
+1071,109.495,9.13281,8.67638,0.06896,0.823744,0.007872,0.0048,0.052928,0.096416,0.098304,7.40915,0.114208
+1072,103.528,9.65918,9.21437,0.069312,0.821952,0.008224,0.005952,0.05344,0.099328,0.098912,7.94461,0.11264
+1073,99.1288,10.0879,9.54781,0.069088,0.788896,0.008352,0.0056,0.05216,0.09776,0.09856,8.31312,0.114272
+1074,95.2824,10.4951,8.96982,0.069632,0.774144,0.008192,0.006144,0.055328,0.099968,0.100224,7.44886,0.407328
+1075,100.837,9.91699,8.27837,0.071616,0.760256,0.008192,0.006112,0.053248,0.098112,0.098144,7.06954,0.113152
+1076,108.154,9.24609,8.36246,0.068448,0.84896,0.008384,0.005056,0.055136,0.098272,0.098304,7.0656,0.114304
+1077,107.812,9.27539,9.58874,0.069632,0.82944,0.008192,0.006144,0.052736,0.097952,0.098208,8.31379,0.11264
+1078,93.6443,10.6787,8.27424,0.06832,0.765664,0.008352,0.005824,0.053696,0.097888,0.096704,7.06467,0.11312
+1079,110.583,9.04297,8.34749,0.06928,0.820032,0.00816,0.006144,0.05328,0.09808,0.099552,7.07683,0.116128
+1080,106.811,9.3623,9.55453,0.069248,0.796928,0.008352,0.005792,0.054208,0.097792,0.098528,8.31069,0.112992
+1081,91.3878,10.9424,8.35955,0.076832,0.838592,0.008224,0.006144,0.055296,0.098208,0.0984,7.06352,0.114336
+1082,74.5758,13.4092,8.41933,0.069632,0.897024,0.019776,0.005824,0.054208,0.098144,0.098528,7.06355,0.11264
+1083,107.949,9.26367,9.63648,0.07136,0.867296,0.017408,0.00512,0.055296,0.098112,0.098464,8.3103,0.11312
+1084,94.1869,10.6172,8.2985,0.0696,0.773888,0.006592,0.005984,0.054432,0.098464,0.099008,7.06477,0.12576
+1085,108.67,9.20215,8.3577,0.06976,0.845696,0.00832,0.0056,0.053792,0.098304,0.099424,7.05942,0.117376
+1086,107.428,9.30859,8.30723,0.068128,0.802784,0.007936,0.005824,0.052864,0.098368,0.09856,7.05981,0.11296
+1087,96.6038,10.3516,9.38803,0.075744,1.0072,0.00832,0.0056,0.05824,0.104416,0.10448,7.90934,0.114688
+1088,107.801,9.27637,8.30976,0.069632,0.79248,0.00752,0.004992,0.05312,0.098304,0.098304,7.07174,0.113664
+1089,107.18,9.33008,8.30291,0.06928,0.782688,0.008512,0.005792,0.054688,0.097216,0.09808,7.07402,0.11264
+1090,105.84,9.44824,9.21395,0.072768,0.848672,0.00752,0.005088,0.053088,0.098304,0.098304,7.91347,0.116736
+1091,98.7654,10.125,8.30512,0.068288,0.78848,0.008224,0.006112,0.053248,0.098304,0.098336,7.06966,0.114464
+1092,106.901,9.35449,8.71424,0.069152,0.81968,0.008192,0.006144,0.0512,0.098304,0.098304,7.44861,0.114656
+1093,103.476,9.66406,8.71542,0.070784,0.944576,0.010688,0.00576,0.057152,0.096832,0.342016,7.07379,0.113824
+1094,103.215,9.68848,8.28006,0.07328,0.76832,0.00832,0.005888,0.051456,0.099648,0.098272,7.06179,0.113088
+1095,108.325,9.23145,8.6993,0.069632,0.794624,0.008192,0.006144,0.053248,0.097344,0.098528,7.45702,0.11456
+1096,99.2633,10.0742,8.60438,0.074464,1.08339,0.007872,0.005824,0.051872,0.098272,0.099328,7.06998,0.113376
+1097,105.829,9.44922,8.32512,0.069632,0.79872,0.008224,0.006112,0.05232,0.097184,0.098336,7.08195,0.11264
+1098,107.801,9.27637,8.75059,0.069632,0.833536,0.008192,0.006176,0.053216,0.112672,0.098272,7.45232,0.116576
+1099,100.049,9.99512,8.4009,0.068928,0.884512,0.008352,0.004864,0.053248,0.097312,0.097248,7.07341,0.113024
+1100,109.192,9.1582,8.28227,0.069792,0.755744,0.00816,0.006144,0.05232,0.103136,0.104768,7.06874,0.113472
+1101,108.983,9.17578,8.74442,0.069632,0.824672,0.008384,0.004576,0.053248,0.100224,0.114464,7.45507,0.114144
+1102,99.8927,10.0107,8.27795,0.070304,0.75984,0.00784,0.005824,0.05392,0.098208,0.098368,7.0697,0.113952
+1103,100.205,9.97949,8.32787,0.068288,0.792576,0.008288,0.006048,0.065536,0.09728,0.097312,7.07894,0.1136
+1104,115.121,8.68652,9.52346,0.07024,0.784576,0.008192,0.005824,0.053184,0.098112,0.096832,8.29238,0.114112
+1105,96.823,10.3281,8.2944,0.069632,0.776192,0.008192,0.005792,0.0536,0.097696,0.098368,7.07171,0.113216
+1106,108.234,9.23926,9.12794,0.0696,0.835616,0.009248,0.005088,0.053248,0.100352,0.099424,7.46304,0.49232
+1107,99.5431,10.0459,8.34618,0.06816,0.822528,0.008384,0.004832,0.05312,0.097856,0.097824,7.08003,0.11344
+1108,103.623,9.65039,9.45168,0.067712,1.0793,0.008192,0.006048,0.052352,0.097248,0.098304,7.92746,0.115072
+1109,98.3481,10.168,8.35802,0.069664,0.847936,0.007488,0.0048,0.052256,0.096864,0.097952,7.06829,0.112768
+1110,104.693,9.55176,8.54762,0.069632,0.78848,0.009376,0.005056,0.054752,0.096704,0.102432,7.06966,0.35152
+1111,103.917,9.62305,9.05245,0.069888,0.829504,0.009312,0.00496,0.054656,0.096896,0.392416,7.48189,0.112928
+1112,100.976,9.90332,8.27766,0.068192,0.765952,0.008192,0.006016,0.053184,0.098048,0.098432,7.06592,0.113728
+1113,104.725,9.54883,8.74086,0.069632,0.818432,0.008352,0.02032,0.058112,0.098304,0.098304,7.45472,0.114688
+1114,97.7192,10.2334,8.56275,0.07584,1.02842,0.008448,0.00608,0.05152,0.106496,0.106496,7.0648,0.114656
+1115,110.727,9.03125,8.29632,0.069184,0.770176,0.008384,0.006272,0.052544,0.096992,0.100064,7.07946,0.113248
+1116,100.887,9.91211,8.3191,0.069408,0.788448,0.01472,0.006144,0.05328,0.098272,0.099648,7.0745,0.114688
+1117,112.195,8.91309,9.57235,0.069664,0.797856,0.00832,0.004928,0.055104,0.097504,0.097152,8.32842,0.113408
+1118,95.7188,10.4473,9.13981,0.065984,0.765632,0.008352,0.006304,0.054464,0.099008,0.098304,7.92589,0.115872
+1119,98.8417,10.1172,9.55632,0.069824,0.805376,0.008,0.006336,0.052512,0.096992,0.098304,8.30464,0.114336
+1120,94.1869,10.6172,8.27584,0.069216,0.764416,0.00768,0.005824,0.05312,0.097216,0.098304,7.0656,0.114464
+1121,105.545,9.47461,8.36813,0.069408,0.847808,0.008352,0.005568,0.051936,0.097664,0.098208,7.07654,0.11264
+1122,108.578,9.20996,8.27181,0.068672,0.754656,0.00816,0.006144,0.054528,0.097056,0.099488,7.06851,0.114592
+1123,108.325,9.23145,9.24058,0.069664,0.832608,0.008352,0.006592,0.053376,0.096448,0.098272,7.95994,0.115328
+1124,97.6168,10.2441,8.28266,0.068128,0.765408,0.008352,0.005824,0.051936,0.097632,0.09808,7.07405,0.113248
+1125,99.3692,10.0635,8.7575,0.06928,0.907872,0.008192,0.006144,0.05328,0.097536,0.096992,7.40557,0.11264
+1126,112.318,8.90332,9.06125,0.06976,0.793248,0.008288,0.00592,0.051424,0.100352,0.425984,7.49322,0.113056
+1127,101.769,9.82617,8.26381,0.06848,0.748928,0.008352,0.005664,0.05216,0.097952,0.098272,7.07008,0.11392
+1128,108.017,9.25781,8.29462,0.068992,0.78896,0.008416,0.005824,0.053696,0.097856,0.098848,7.05741,0.114624
+1129,100.441,9.95605,9.65533,0.069632,0.837632,0.009312,0.005024,0.053248,0.097728,0.096832,8.37222,0.113696
+1130,98.2537,10.1777,8.30915,0.068,0.788064,0.00768,0.005056,0.053248,0.098112,0.098464,7.07382,0.116704
+1131,100.491,9.95117,8.30464,0.070656,0.769024,0.008224,0.00576,0.0536,0.106528,0.098336,7.07578,0.116736
+1132,115.212,8.67969,9.49296,0.068096,0.753632,0.008256,0.007584,0.053792,0.098016,0.096544,8.29427,0.112768
+1133,96.4763,10.3652,8.25549,0.069408,0.733248,0.007008,0.006144,0.056448,0.09824,0.09856,7.07245,0.113984
+1134,106.878,9.35645,9.48848,0.069728,0.755136,0.00832,0.005824,0.052,0.099424,0.09888,8.28653,0.11264
+1135,89.683,11.1504,8.4313,0.069632,0.900512,0.008224,0.004672,0.062496,0.097248,0.098304,7.07584,0.114368
+1136,108.751,9.19531,8.28221,0.069824,0.769376,0.008128,0.006784,0.053344,0.09808,0.098464,7.06358,0.114624
+1137,107.642,9.29004,8.26685,0.069184,0.74592,0.008192,0.005824,0.051392,0.097472,0.097216,7.07789,0.11376
+1138,105.252,9.50098,9.45763,0.068096,1.08288,0.008352,0.006336,0.0528,0.097056,0.10016,7.92749,0.114464
+1139,99.3692,10.0635,8.28307,0.068544,0.757376,0.008448,0.006272,0.0544,0.096864,0.098272,7.08026,0.11264
+1140,101.547,9.84766,8.89594,0.06944,0.970944,0.00832,0.006016,0.054368,0.09872,0.103104,7.47094,0.11408
+1141,103.215,9.68848,8.544,0.070112,1.02624,0.01024,0.006112,0.05536,0.098112,0.098144,7.06592,0.11376
+1142,107.869,9.27051,8.25142,0.069312,0.741408,0.00832,0.006336,0.052448,0.098144,0.097184,7.06544,0.112832
+1143,111.051,9.00488,8.63117,0.06848,0.729088,0.008224,0.00592,0.05344,0.098304,0.104448,7.44989,0.113376
+1144,96.8505,10.3252,8.94701,0.070784,1.43424,0.00752,0.005056,0.053248,0.098272,0.099712,7.06362,0.11456
+1145,108.544,9.21289,8.25549,0.069504,0.740832,0.008384,0.004608,0.053248,0.09728,0.098496,7.0705,0.11264
+1146,110.727,9.03125,8.65133,0.068192,0.733024,0.008192,0.006272,0.053248,0.098304,0.10848,7.45062,0.124992
+1147,102.935,9.71484,8.26288,0.069632,0.751616,0.008192,0.005888,0.051456,0.097376,0.097184,7.06765,0.113888
+1148,110.835,9.02246,8.23971,0.068192,0.733184,0.00832,0.006016,0.054816,0.096832,0.09824,7.06061,0.113504
+1149,107.035,9.34277,8.65763,0.069824,0.741856,0.008256,0.005664,0.051712,0.09728,0.109536,7.45802,0.115488
+1150,101.901,9.81348,8.27293,0.071712,0.749568,0.009312,0.005056,0.053216,0.098304,0.098304,7.07379,0.113664
+1151,109.683,9.11719,8.54835,0.069184,0.78688,0.00928,0.005056,0.053248,0.096288,0.098272,7.07789,0.352256
+1152,105.895,9.44336,10.3748,0.070912,0.745248,0.008512,0.006752,0.053312,0.099744,0.099968,9.17603,0.114336
+1153,85.9277,11.6377,8.27101,0.068704,0.75984,0.008416,0.004832,0.053248,0.096256,0.099808,7.06614,0.11376
+1154,111.353,8.98047,8.25565,0.069472,0.739648,0.008064,0.006272,0.055296,0.098304,0.099744,7.06211,0.116736
+1155,105.949,9.43848,9.52378,0.06816,0.745056,0.008352,0.005568,0.053568,0.096768,0.097824,8.33555,0.112928
+1156,96.2587,10.3887,8.26368,0.068736,0.74432,0.008192,0.007392,0.052032,0.09792,0.098464,7.07382,0.1128
+1157,107.574,9.2959,8.28826,0.069632,0.7672,0.006944,0.006144,0.0512,0.098304,0.098336,7.07786,0.11264
+1158,105.905,9.44238,8.30829,0.069664,0.802784,0.008192,0.006016,0.0512,0.097952,0.097984,7.06134,0.113152
+1159,106.246,9.41211,9.15651,0.07168,0.78848,0.00928,0.005056,0.053248,0.097728,0.098528,7.91552,0.116992
+1160,99.7079,10.0293,8.24934,0.069632,0.745472,0.008192,0.006144,0.05312,0.097856,0.098464,7.05683,0.113632
+1161,108.925,9.18066,8.5031,0.069056,0.750144,0.008224,0.005824,0.052864,0.096512,0.098048,7.06832,0.354112
+1162,106.39,9.39941,9.13818,0.069632,0.753664,0.008192,0.006144,0.053056,0.108736,0.100352,7.92496,0.11344
+1163,99.1479,10.0859,8.25958,0.069632,0.74048,0.008352,0.00688,0.054944,0.096608,0.098112,7.07114,0.11344
+1164,111.147,8.99707,8.63264,0.06848,0.732416,0.008384,0.005952,0.053536,0.09792,0.106752,7.44509,0.114112
+1165,96.8138,10.3291,8.97462,0.070112,1.44534,0.008384,0.005568,0.052128,0.098112,0.097856,7.08262,0.114496
+1166,108.211,9.24121,8.26573,0.069664,0.749504,0.008224,0.00592,0.053472,0.098304,0.098304,7.06896,0.113376
+1167,109.659,9.11914,8.67344,0.069472,0.749888,0.008256,0.006112,0.05456,0.09696,0.09936,7.47408,0.114752
+1168,103.738,9.63965,8.25754,0.069632,0.74736,0.00832,0.005824,0.051552,0.098304,0.098304,7.0656,0.11264
+1169,97.3754,10.2695,8.29645,0.069632,0.780288,0.008192,0.006144,0.052832,0.096704,0.098304,7.07165,0.112704
+1170,123.956,8.06738,8.64442,0.06832,0.742912,0.006656,0.006144,0.053248,0.099616,0.098912,7.45213,0.11648
+1171,98.6513,10.1367,8.27187,0.071712,0.753632,0.008192,0.005632,0.052928,0.096608,0.098144,7.07238,0.11264
+1172,109.954,9.09473,8.26778,0.069632,0.73728,0.00816,0.005824,0.051584,0.098304,0.098272,7.07379,0.124928
+1173,108.314,9.23242,8.66304,0.069632,0.75472,0.008352,0.004928,0.055008,0.098112,0.098816,7.45674,0.116736
+1174,97.2367,10.2842,8.36608,0.071168,0.858624,0.00816,0.005728,0.051648,0.097984,0.098624,7.06122,0.112928
+1175,114.58,8.72754,8.25757,0.069408,0.735456,0.008256,0.007168,0.055232,0.097344,0.09824,7.07174,0.11472
+1176,108.234,9.23926,9.35037,0.069632,0.747008,0.008352,0.005824,0.051904,0.098272,0.098304,8.15514,0.115936
+1177,97.8406,10.2207,8.26813,0.06944,0.745024,0.008384,0.00656,0.054624,0.097216,0.098304,7.07539,0.113184
+1178,108.983,9.17578,8.26118,0.073056,0.735552,0.006496,0.007776,0.053664,0.09952,0.098944,7.07194,0.11424
+1179,101.386,9.86328,8.50944,0.071552,0.972928,0.008192,0.00576,0.050688,0.097088,0.110656,7.07994,0.11264
+1180,115.536,8.65527,9.49654,0.06784,0.751424,0.008352,0.005856,0.053536,0.09824,0.098368,8.2985,0.114432
+1181,90.1885,11.0879,8.3769,0.069728,0.860992,0.008224,0.005856,0.053504,0.098304,0.098336,7.06557,0.116384
+1182,112.035,8.92578,8.26778,0.069152,0.756192,0.008192,0.006144,0.051008,0.09824,0.09856,7.06669,0.1136
+1183,103.591,9.65332,9.44538,0.069664,1.0727,0.008352,0.005568,0.051584,0.098496,0.097632,7.92653,0.114848
+1184,98.4521,10.1572,8.25958,0.069184,0.74592,0.008192,0.006112,0.05328,0.098304,0.098304,7.06765,0.11264
+1185,103.78,9.63574,8.25421,0.068352,0.73728,0.00928,0.005056,0.055072,0.09648,0.099456,7.07011,0.11312
+1186,114.811,8.70996,9.1103,0.066272,0.745696,0.008224,0.006112,0.052224,0.098912,0.098464,7.91987,0.114528
+1187,92.72,10.7852,9.63386,0.069024,0.852672,0.018496,0.0056,0.051136,0.100352,0.098112,8.32384,0.114624
+1188,102.451,9.76074,8.68614,0.076256,0.775392,0.008384,0.005056,0.052992,0.098304,0.113984,7.44109,0.114688
+1189,102.513,9.75488,8.27613,0.067712,0.75696,0.006944,0.006176,0.051168,0.098048,0.09856,7.07776,0.1128
+1190,110.703,9.0332,8.24938,0.069472,0.733344,0.00768,0.006624,0.051232,0.098304,0.098304,7.07104,0.113376
+1191,105.306,9.49609,8.66938,0.0696,0.757984,0.008192,0.00608,0.051296,0.097376,0.099008,7.4631,0.116736
+1192,94.0917,10.6279,8.71834,0.120704,1.1593,0.008192,0.006144,0.05296,0.096544,0.098304,7.06323,0.11296
+1193,108.809,9.19043,8.29901,0.069312,0.783104,0.008288,0.005728,0.05344,0.097504,0.097248,7.0697,0.114688
+1194,106.334,9.4043,9.5816,0.069664,0.779456,0.008416,0.005888,0.052064,0.099744,0.098144,8.35453,0.113696
+1195,89.628,11.1572,8.50058,0.069792,0.949408,0.008384,0.004608,0.055296,0.096256,0.10768,7.08285,0.126304
+1196,107.046,9.3418,8.43837,0.0776,0.917888,0.006496,0.006176,0.053248,0.099712,0.098912,7.06317,0.115168
+1197,106.689,9.37305,8.29027,0.06912,0.778208,0.00672,0.006112,0.052864,0.097824,0.098272,7.06765,0.113504
+1198,105.101,9.51465,9.84298,0.06912,1.04707,0.008096,0.005856,0.05184,0.098272,0.098304,8.34765,0.116768
+1199,91.7809,10.8955,8.3265,0.071552,0.804896,0.008288,0.005696,0.053184,0.096768,0.09808,7.07363,0.1144
+1200,103.163,9.69336,8.70035,0.06928,0.8088,0.008128,0.005088,0.053248,0.098432,0.1,7.44266,0.11472
+1201,97.4867,10.2578,8.88221,0.071136,1.35222,0.008192,0.005984,0.057504,0.09808,0.098464,7.07795,0.112672
+1202,106.578,9.38281,8.27946,0.069216,0.766368,0.008224,0.006112,0.052544,0.096992,0.098272,7.06768,0.114048
+1203,98.985,10.1025,9.01043,0.096032,1.07952,0.009248,0.005088,0.0512,0.098304,0.099328,7.4576,0.114112
+1204,105.35,9.49219,8.34442,0.068576,0.819232,0.009472,0.006112,0.054016,0.098304,0.098336,7.07702,0.113344
+1205,108.097,9.25098,8.28947,0.069216,0.772256,0.00752,0.005024,0.05328,0.098272,0.098304,7.07165,0.113952
+1206,108.509,9.21582,9.0088,0.069984,0.788416,0.008256,0.006048,0.054464,0.097344,0.101216,7.45984,0.423232
+1207,95.8084,10.4375,8.34195,0.071712,0.799104,0.008192,0.005888,0.053504,0.097408,0.103264,7.08202,0.120864
+1208,104.832,9.53906,8.30173,0.069632,0.781376,0.007104,0.006144,0.05248,0.097024,0.099328,7.07245,0.116192
+1209,104.288,9.58887,8.36403,0.076992,0.834368,0.008224,0.006112,0.053248,0.098304,0.098336,7.07494,0.113504
+1210,105.058,9.51855,9.42912,0.069664,1.02397,0.00832,0.006016,0.057344,0.106048,0.102848,7.94157,0.113344
+1211,94.2649,10.6084,8.53069,0.070336,1.01709,0.008384,0.004832,0.052864,0.096672,0.100224,7.0673,0.112992
+1212,109.966,9.09375,8.2905,0.069376,0.778688,0.00928,0.005056,0.05232,0.098816,0.098176,7.064,0.114784
+1213,105.198,9.50586,9.15197,0.069632,0.773664,0.008192,0.004608,0.053216,0.098304,0.097856,7.93235,0.114144
+1214,98.8322,10.1182,8.28794,0.069344,0.780352,0.008416,0.005824,0.05152,0.098304,0.098304,7.06291,0.11296
+1215,107.687,9.28613,8.72358,0.0696,0.786464,0.008224,0.005856,0.053504,0.104192,0.102688,7.47926,0.113792
+1216,101.296,9.87207,8.52742,0.070752,0.996256,0.011296,0.005088,0.056384,0.09856,0.09696,7.07789,0.11424
+1217,107.124,9.33496,8.30208,0.069216,0.76608,0.008416,0.005504,0.053056,0.097152,0.098304,7.07994,0.124416
+1218,103.57,9.65527,8.67402,0.068288,0.765952,0.008192,0.006112,0.051264,0.099616,0.09904,7.46083,0.11472
+1219,102.688,9.73828,8.29034,0.068128,0.777504,0.008352,0.004672,0.054816,0.096736,0.097728,7.06822,0.114176
+1220,107.608,9.29297,9.55386,0.068864,0.768768,0.007808,0.005952,0.051808,0.097856,0.097984,8.34019,0.114624
+1221,91.1681,10.9688,9.67347,0.075936,0.882944,0.008384,0.005664,0.051872,0.096224,0.09936,8.33952,0.113568
+1222,96.2587,10.3887,8.33069,0.069152,0.817664,0.007808,0.005824,0.051616,0.09792,0.0984,7.06403,0.118272
+1223,105.916,9.44141,8.34387,0.069696,0.811968,0.008384,0.005952,0.054368,0.098688,0.098848,7.08198,0.113984
+1224,108.348,9.22949,8.28813,0.069312,0.779616,0.008384,0.00512,0.052928,0.098016,0.09872,7.06147,0.11456
+1225,103.854,9.62891,9.46176,0.068864,1.04467,0.00672,0.006176,0.055296,0.098272,0.098272,7.9688,0.114688
+1226,97.431,10.2637,8.28538,0.071712,0.772064,0.008224,0.00592,0.051392,0.097792,0.098272,7.06614,0.113856
+1227,109.413,9.13965,8.28227,0.068992,0.76064,0.008416,0.005888,0.052672,0.096832,0.098304,7.07741,0.11312
+1228,106.5,9.38965,9.1441,0.066112,0.766112,0.008224,0.006112,0.053216,0.098272,0.098368,7.93395,0.113728
+1229,96.1683,10.3984,8.28826,0.069344,0.764192,0.008192,0.006144,0.051232,0.097792,0.098144,7.07987,0.113344
+1230,110.643,9.03809,8.60774,0.068896,0.739648,0.008352,0.0064,0.053248,0.104544,0.10336,7.41037,0.112928
+1231,100.098,9.99023,8.63613,0.081952,1.10589,0.010304,0.00592,0.054752,0.09696,0.098304,7.06915,0.112896
+1232,103.56,9.65625,8.32518,0.06912,0.798624,0.008064,0.005056,0.053184,0.098304,0.111936,7.06826,0.11264
+1233,108.636,9.20508,8.668,0.076288,0.752128,0.007744,0.005632,0.054144,0.097792,0.098336,7.46042,0.11552
+1234,94.7797,10.5508,9.02736,0.069728,1.5137,0.008352,0.005824,0.053824,0.098304,0.099392,7.06582,0.112416
+1235,109.355,9.14453,8.28211,0.070976,0.754016,0.008352,0.005664,0.051872,0.098304,0.106496,7.07334,0.113088
+1236,107.563,9.29688,9.02758,0.069632,0.833536,0.00928,0.005088,0.05264,0.09888,0.100256,7.45482,0.403456
+1237,96.042,10.4121,8.32246,0.071136,0.801056,0.006816,0.005472,0.051904,0.097664,0.098048,7.07667,0.113696
+1238,117.002,8.54688,8.27811,0.06768,0.749088,0.008416,0.0064,0.054688,0.098912,0.098304,7.07994,0.114688
+1239,104.139,9.60254,9.53674,0.069664,0.761824,0.008224,0.005664,0.053504,0.096448,0.098304,8.32922,0.113888
+1240,96.1322,10.4023,8.27315,0.069184,0.749856,0.008384,0.006336,0.052704,0.0968,0.099904,7.07126,0.11872
+1241,108.786,9.19238,8.26237,0.0696,0.736256,0.008192,0.006016,0.05136,0.098272,0.100352,7.07584,0.11648
+1242,104.341,9.58398,9.624,0.068032,0.899072,0.007872,0.00544,0.052224,0.098176,0.098368,8.2815,0.113312
+1243,97.8032,10.2246,8.26368,0.071072,0.737888,0.008192,0.005664,0.051552,0.096384,0.098336,7.07923,0.11536
+1244,106.611,9.37988,8.27395,0.071616,0.76192,0.008352,0.005984,0.052608,0.096896,0.099552,7.06432,0.112704
+1245,109.966,9.09375,8.26166,0.069632,0.739328,0.008192,0.006144,0.05328,0.097344,0.097184,7.07789,0.112672
+1246,107.484,9.30371,9.15456,0.0696,0.75984,0.008224,0.006112,0.053248,0.098176,0.098464,7.93597,0.124928
+1247,95.7905,10.4395,8.30256,0.069056,0.780096,0.008352,0.004736,0.055264,0.097568,0.096992,7.07709,0.113408
+1248,109.848,9.10352,8.5911,0.06896,0.741408,0.00832,0.00672,0.051168,0.099808,0.097888,7.40368,0.113152
+1249,104.586,9.56152,9.11974,0.07104,0.74816,0.008512,0.005824,0.05328,0.098272,0.10032,7.92138,0.11296
+1250,93.7987,10.6611,8.3351,0.068192,0.816256,0.008352,0.005056,0.053024,0.11264,0.098304,7.05946,0.113824
+1251,117.136,8.53711,8.65104,0.069056,0.74224,0.008224,0.005984,0.051328,0.09792,0.104192,7.45734,0.114752
+1252,90.7319,11.0215,8.2783,0.06784,0.76592,0.008288,0.00608,0.052992,0.106304,0.09824,7.05994,0.112704
+1253,109.966,9.09375,8.65526,0.06832,0.751616,0.008288,0.006048,0.05264,0.096864,0.098016,7.4591,0.114368
+1254,103.267,9.68359,10.0591,0.069728,0.958432,0.01744,0.005088,0.059392,0.10032,0.43168,8.30307,0.113952
+1255,91.16,10.9697,8.27395,0.069376,0.749824,0.009344,0.00672,0.052576,0.096576,0.097088,7.07366,0.118784
+1256,110.001,9.09082,8.24733,0.068672,0.737824,0.006624,0.007936,0.052736,0.097024,0.1,7.06182,0.114688
+1257,106.412,9.39746,9.48774,0.069056,0.741952,0.008224,0.006112,0.0512,0.097792,0.098304,8.30109,0.114016
+1258,92.7704,10.7793,8.39616,0.069504,0.880672,0.008192,0.005824,0.053632,0.09824,0.0984,7.06739,0.114304
+1259,112.268,8.90723,8.28355,0.069184,0.758592,0.008192,0.006144,0.052736,0.096768,0.09984,7.0784,0.113696
+1260,108.693,9.2002,8.2577,0.069408,0.747744,0.008384,0.00784,0.053408,0.098016,0.098464,7.06163,0.1128
+1261,106.6,9.38086,9.39424,0.069536,1.02294,0.008192,0.006144,0.054944,0.097696,0.098496,7.91834,0.117952
+1262,99.1768,10.083,8.26982,0.069312,0.749888,0.008224,0.00608,0.05328,0.097344,0.097216,7.07584,0.11264
+1263,110.214,9.07324,8.26778,0.069632,0.749568,0.009216,0.00512,0.053248,0.097504,0.09712,7.07286,0.113504
+1264,108.659,9.20312,9.12323,0.069664,0.749472,0.007584,0.005824,0.051328,0.098368,0.098496,7.92842,0.11408
+1265,93.6871,10.6738,9.53984,0.069408,0.776416,0.008384,0.005696,0.051712,0.096256,0.099552,8.31773,0.114688
+1266,96.2859,10.3857,8.65242,0.069408,0.742656,0.008352,0.006944,0.051232,0.100224,0.0984,7.45872,0.11648
+1267,102.915,9.7168,8.27341,0.069632,0.757024,0.008384,0.0048,0.053088,0.098208,0.098176,7.06995,0.114144
+1268,108.371,9.22754,8.31078,0.069664,0.781952,0.008,0.005824,0.052064,0.098304,0.098336,7.07082,0.125824
+1269,108.085,9.25195,8.67942,0.069632,0.769824,0.008352,0.005344,0.053184,0.09888,0.098656,7.45808,0.117472
+1270,100.264,9.97363,8.2761,0.070208,0.759808,0.008224,0.006112,0.053248,0.098304,0.098304,7.06765,0.11424
+1271,101.941,9.80957,8.42717,0.069056,0.887008,0.008352,0.02064,0.05136,0.098304,0.100352,7.07773,0.114368
+1272,115.732,8.64062,9.43155,0.06912,0.772992,0.009248,0.006656,0.053248,0.100448,0.098688,8.20634,0.114816
+1273,96.5764,10.3545,8.25965,0.069632,0.745056,0.008416,0.006368,0.052672,0.096896,0.098272,7.06909,0.113248
+1274,110.619,9.04004,8.25104,0.069632,0.732608,0.008352,0.0056,0.05216,0.099488,0.099072,7.06774,0.116384
+1275,108.291,9.23438,9.49888,0.069728,0.7336,0.008224,0.006112,0.053248,0.09792,0.096736,8.3201,0.113216
+1276,94.4998,10.582,8.27824,0.068352,0.75984,0.00816,0.006176,0.05312,0.09808,0.098624,7.07165,0.11424
+1277,110.679,9.03516,8.26477,0.069632,0.745376,0.008288,0.006144,0.051232,0.098272,0.098304,7.07104,0.11648
+1278,108.177,9.24414,8.25984,0.06864,0.743328,0.008256,0.006176,0.05264,0.098304,0.097952,7.07062,0.11392
+1279,109.507,9.13184,9.29504,0.068832,0.871264,0.008192,0.006144,0.055328,0.104416,0.1024,7.964,0.114464
+1280,97.654,10.2402,8.26842,0.071744,0.742272,0.008288,0.00768,0.051648,0.098272,0.098304,7.07584,0.114368
+1281,103.434,9.66797,8.38112,0.069472,0.846624,0.020544,0.006144,0.053248,0.098304,0.098304,7.07491,0.113568
+1282,114.465,8.73633,9.1129,0.067264,0.7376,0.008192,0.007648,0.051776,0.09936,0.097216,7.92781,0.116032
+1283,98.6322,10.1387,8.26224,0.069376,0.74224,0.008224,0.005792,0.053536,0.096288,0.099552,7.07254,0.114688
+1284,110.108,9.08203,8.2985,0.069152,0.786688,0.008384,0.005312,0.052096,0.098272,0.098336,7.06694,0.113312
+1285,108.463,9.21973,9.128,0.069568,0.737472,0.008384,0.00656,0.055488,0.09776,0.098848,7.94,0.11392
+1286,94.1609,10.6201,8.56864,0.068128,1.0281,0.02256,0.006112,0.053248,0.116736,0.099392,7.06042,0.113952
+1287,113.024,8.84766,8.68794,0.068448,0.750944,0.008384,0.006464,0.053376,0.103968,0.098624,7.48355,0.114176
+1288,102.247,9.78027,9.15091,0.070144,0.778144,0.008384,0.005984,0.053248,0.098272,0.098304,7.92371,0.11472
+1289,100.936,9.90723,8.25552,0.06896,0.741792,0.008384,0.005504,0.051936,0.096384,0.097856,7.07181,0.112896
+1290,107.608,9.29297,8.67517,0.06928,0.77296,0.008192,0.007584,0.051808,0.099488,0.098464,7.45133,0.116064
+1291,97.5517,10.251,8.27392,0.069248,0.763424,0.008064,0.005088,0.0512,0.097376,0.098528,7.06835,0.11264
+1292,109.989,9.0918,8.27827,0.067968,0.761504,0.008384,0.006304,0.051232,0.098272,0.098304,7.0655,0.1208
+1293,106.5,9.38965,8.7552,0.069632,0.8192,0.00768,0.014624,0.052864,0.107104,0.100352,7.45811,0.125632
+1294,102.842,9.72363,8.26368,0.071232,0.747904,0.008256,0.005952,0.05344,0.098272,0.098336,7.06765,0.11264
+1295,108.257,9.2373,8.2823,0.069344,0.760128,0.008352,0.005536,0.05312,0.097088,0.099488,7.07613,0.11312
+1296,106.511,9.38867,9.50445,0.070816,0.748384,0.008224,0.007552,0.053568,0.097824,0.098144,8.30714,0.1128
+1297,96.2949,10.3848,8.26173,0.069088,0.74352,0.008352,0.004768,0.053024,0.097792,0.096768,7.07504,0.113376
+1298,108.832,9.18848,8.26493,0.06928,0.73968,0.008448,0.007424,0.053088,0.098528,0.098752,7.07379,0.115936
+1299,94.6221,10.5684,9.50266,0.071648,0.7352,0.008192,0.005792,0.053216,0.096672,0.099296,8.31952,0.11312
+1300,106.867,9.35742,9.44976,0.068384,1.07229,0.008448,0.006752,0.053056,0.098048,0.098272,7.93034,0.114176
+1301,98.775,10.124,8.2799,0.069664,0.770016,0.008192,0.007232,0.050112,0.097568,0.098464,7.06544,0.113216
+1302,111.051,9.00488,8.2473,0.069056,0.73376,0.008224,0.005984,0.053376,0.098304,0.098304,7.06726,0.113024
+1303,108.017,9.25781,9.1551,0.065952,0.769888,0.008352,0.006496,0.05248,0.096992,0.098304,7.9399,0.116736
+1304,96.7772,10.333,8.27514,0.069312,0.757472,0.008384,0.005824,0.053376,0.096864,0.098336,7.07171,0.113856
+1305,110.285,9.06738,8.70538,0.069664,0.774112,0.008352,0.005504,0.051648,0.096704,0.101824,7.48384,0.113728
+1306,103.236,9.68652,9.00429,0.07088,0.748096,0.007488,0.005088,0.053216,0.098016,0.384864,7.52272,0.11392
+1307,92.3604,10.8271,8.49299,0.06912,0.954208,0.008416,0.0048,0.054304,0.097088,0.108544,7.08342,0.113088
+1308,115.419,8.66406,8.69648,0.068384,0.783392,0.008352,0.005088,0.05312,0.098304,0.098272,7.46086,0.120704
+1309,93.5929,10.6846,9.01472,0.069632,1.48845,0.008352,0.0056,0.053568,0.096768,0.098144,7.08115,0.113056
+1310,107.744,9.28125,8.71994,0.06944,0.814304,0.007136,0.006144,0.058496,0.097152,0.098304,7.45472,0.11424
+1311,100.422,9.95801,10.054,0.069792,1.27987,0.008352,0.004832,0.055104,0.097664,0.096896,8.32822,0.113248
+1312,94.7183,10.5576,8.27894,0.068544,0.754848,0.00832,0.006848,0.05296,0.104736,0.100352,7.06922,0.11312
+1313,109.227,9.15527,8.28416,0.069664,0.756896,0.008384,0.0048,0.053184,0.099904,0.100192,7.07645,0.114688
+1314,108.532,9.21387,8.2552,0.069216,0.739552,0.008448,0.006144,0.051264,0.09824,0.104032,7.06397,0.114336
+1315,109.413,9.13965,9.37958,0.068928,0.976992,0.008608,0.005568,0.056096,0.104416,0.10848,7.93542,0.115072
+1316,97.0892,10.2998,8.26605,0.070112,0.759808,0.008192,0.00592,0.051424,0.098304,0.098432,7.06093,0.112928
+1317,108.809,9.19043,8.25962,0.069632,0.741056,0.008512,0.005952,0.051392,0.09808,0.098464,7.07386,0.112672
+1318,105.916,9.44141,9.42925,0.068544,1.03366,0.008352,0.0056,0.053216,0.09728,0.099296,7.94899,0.114304
+1319,99.2633,10.0742,8.26714,0.069248,0.745536,0.008384,0.005568,0.052,0.097568,0.09696,7.07789,0.113984
+1320,105.101,9.51465,8.34765,0.068704,0.807712,0.02368,0.00512,0.054272,0.103456,0.098272,7.07082,0.115616
+1321,114.452,8.7373,9.11008,0.068416,0.739328,0.008192,0.006144,0.05232,0.097216,0.098272,7.92371,0.11648
+1322,98.5943,10.1426,9.50682,0.06928,0.755936,0.00832,0.005888,0.053504,0.098336,0.098272,8.30413,0.113152
+1323,89.9745,11.1143,8.78333,0.06912,0.874272,0.008384,0.00464,0.053248,0.098208,0.10624,7.4529,0.11632
+1324,103.424,9.66895,8.67078,0.086016,1.13654,0.008288,0.005888,0.051456,0.1056,0.09888,7.06387,0.11424
+1325,108.797,9.19141,8.26762,0.069504,0.742944,0.008256,0.00576,0.051936,0.098176,0.106048,7.07046,0.114528
+1326,107.236,9.3252,9.1607,0.069472,0.814976,0.008352,0.022656,0.054528,0.106624,0.100192,7.45917,0.524736
+1327,101.056,9.89551,8.26595,0.068896,0.752256,0.00832,0.006336,0.0512,0.096256,0.098336,7.07133,0.113024
+1328,110.655,9.03711,8.25514,0.069632,0.740864,0.008704,0.00592,0.053472,0.098304,0.09776,7.06618,0.114304
+1329,107.642,9.29004,8.66512,0.070112,0.764224,0.008192,0.00608,0.051232,0.099584,0.101184,7.45059,0.11392
+1330,98.4615,10.1562,8.31459,0.071488,0.782464,0.008288,0.00592,0.053184,0.11088,0.098272,7.0697,0.1144
+1331,107.914,9.2666,8.30669,0.069632,0.77824,0.008192,0.006144,0.052832,0.096672,0.099744,7.0799,0.115328
+1332,107.914,9.2666,9.49667,0.071552,0.753952,0.009376,0.005088,0.055072,0.097472,0.098528,8.29226,0.113376
+1333,93.1502,10.7354,8.35584,0.07888,0.831904,0.008384,0.005536,0.05168,0.097824,0.098304,7.06973,0.1136
+1334,109.907,9.09863,8.36518,0.069696,0.835648,0.009376,0.005056,0.053152,0.098304,0.100352,7.07552,0.11808
+1335,103.382,9.67285,8.41574,0.068128,0.889984,0.008288,0.004896,0.066944,0.096896,0.099328,7.06774,0.113536
+1336,106.434,9.39551,9.43962,0.068416,1.03773,0.008384,0.0056,0.053248,0.097216,0.114048,7.93869,0.116288
+1337,98.3009,10.1729,8.27187,0.069184,0.749632,0.00848,0.005568,0.053344,0.096832,0.098304,7.07725,0.11328
+1338,105.415,9.48633,8.63229,0.068416,0.781536,0.006944,0.006304,0.055168,0.098112,0.098464,7.40147,0.115872
+1339,105.873,9.44531,9.11485,0.069664,0.746656,0.008352,0.0064,0.05472,0.098816,0.098816,7.91754,0.113888
+1340,99.2537,10.0752,8.26301,0.0688,0.743776,0.006656,0.006112,0.052992,0.09856,0.098336,7.07376,0.114016
+1341,102.863,9.72168,8.70422,0.069376,0.79296,0.008288,0.00544,0.051904,0.097344,0.098848,7.46538,0.114688
+1342,103.801,9.63379,8.95386,0.07168,1.42678,0.00832,0.005824,0.052032,0.098336,0.098304,7.07942,0.113152
+1343,108.245,9.23828,8.30115,0.06816,0.777472,0.006912,0.006144,0.05296,0.097728,0.098464,7.07875,0.11456
+1344,110.226,9.07227,8.65075,0.069632,0.736448,0.008096,0.005152,0.05312,0.098336,0.099648,7.46698,0.113344
+1345,99.0712,10.0938,8.27971,0.071648,0.75424,0.00816,0.006144,0.055296,0.096352,0.098208,7.07584,0.113824
+1346,105.796,9.45215,8.35789,0.069408,0.811232,0.008032,0.005824,0.066016,0.099648,0.1064,7.07869,0.11264
+1347,110.072,9.08496,8.68998,0.069984,0.768352,0.008416,0.005952,0.055296,0.0976,0.099136,7.4689,0.116352
+1348,101.668,9.83594,8.27792,0.071616,0.753344,0.008384,0.005792,0.051744,0.098304,0.098304,7.0775,0.112928
+1349,110.703,9.0332,8.244,0.068416,0.733152,0.008192,0.005888,0.052832,0.096928,0.098304,7.0672,0.113088
+1350,107.62,9.29199,9.41056,0.071328,0.76208,0.00832,0.005888,0.053504,0.09792,0.100192,8.1905,0.120832
+1351,88.8503,11.2549,8.50125,0.069152,0.979072,0.00848,0.005536,0.051904,0.104416,0.100032,7.06515,0.117504
+1352,107.338,9.31641,8.35789,0.070656,0.81568,0.022976,0.006144,0.052608,0.098944,0.099936,7.07626,0.114688
+1353,108.855,9.18652,8.26125,0.068864,0.745792,0.008448,0.0056,0.053984,0.097408,0.098208,7.06864,0.114304
+1354,109.227,9.15527,9.2592,0.068384,0.860128,0.008224,0.006112,0.055296,0.103968,0.106048,7.93693,0.114112
+1355,89.028,11.2324,8.3784,0.068576,0.869728,0.00864,0.005664,0.053984,0.096288,0.09984,7.06195,0.113728
+1356,115.903,8.62793,9.90896,0.06832,0.761504,0.008384,0.005824,0.053408,0.097824,0.099104,8.70157,0.113024
+1357,89.7144,11.1465,8.90781,0.069632,1.00893,0.010656,0.010592,0.090112,0.10544,0.428736,7.07002,0.113696
+1358,104.586,9.56152,8.28099,0.068512,0.763744,0.00832,0.005888,0.051456,0.098528,0.098208,7.06502,0.121312
+1359,106.092,9.42578,8.69098,0.069632,0.776192,0.008192,0.006144,0.05264,0.096896,0.099392,7.46384,0.118048
+1360,102.124,9.79199,8.2857,0.069248,0.761344,0.00832,0.005088,0.054592,0.097984,0.11344,7.0615,0.114176
+1361,108.097,9.25098,8.27802,0.069632,0.770048,0.007904,0.005632,0.05312,0.097184,0.099456,7.0623,0.112736
+1362,109.589,9.125,8.65664,0.069664,0.749856,0.007744,0.005792,0.053728,0.098528,0.098432,7.45638,0.116512
+1363,102.063,9.79785,8.29238,0.071392,0.772384,0.008416,0.00592,0.05472,0.09792,0.097248,7.07171,0.112672
+1364,108.383,9.22656,8.30224,0.069568,0.769312,0.008352,0.005824,0.05216,0.098336,0.099872,7.08243,0.116384
+1365,107.203,9.32812,8.71194,0.069632,0.798176,0.007968,0.004864,0.05328,0.098272,0.1,7.46326,0.11648
+1366,100.807,9.91992,8.31078,0.071712,0.786336,0.008256,0.005888,0.051488,0.098272,0.098304,7.07789,0.11264
+1367,101.016,9.89941,8.67533,0.06944,0.770272,0.00832,0.005984,0.053248,0.097568,0.098752,7.45706,0.114688
+1368,108.371,9.22754,9.97782,0.06992,1.23354,0.008192,0.006176,0.057344,0.098272,0.098304,8.29235,0.113728
+1369,94.5871,10.5723,8.29645,0.069632,0.749408,0.008352,0.0072,0.05424,0.098304,0.098304,7.09632,0.114688
+1370,109.32,9.14746,8.3415,0.069344,0.820992,0.008384,0.00576,0.052992,0.098752,0.098496,7.06803,0.118752
+1371,105.09,9.51562,8.26842,0.069472,0.740032,0.008192,0.006016,0.053408,0.096256,0.099584,7.08246,0.112992
+1372,101.336,9.86816,9.57635,0.069888,1.20067,0.008224,0.006144,0.052896,0.098016,0.096896,7.92704,0.116576
+1373,97.209,10.2871,8.31514,0.069376,0.79104,0.009248,0.006432,0.053504,0.0968,0.099296,7.0768,0.11264
+1374,108.751,9.19531,8.59984,0.06944,0.745472,0.008352,0.005824,0.05184,0.09936,0.098592,7.40832,0.11264
+1375,105.339,9.49316,9.22656,0.06928,0.758432,0.00816,0.006144,0.0544,0.097184,0.104416,8.01562,0.112928
+1376,98.775,10.124,8.26195,0.068992,0.742144,0.008352,0.006176,0.053248,0.098304,0.09968,7.07245,0.112608
+1377,108.04,9.25586,8.68931,0.069664,0.74608,0.008192,0.006144,0.053248,0.097952,0.102752,7.48954,0.115744
+1378,96.7589,10.335,8.9896,0.070528,1.47661,0.008224,0.006112,0.053248,0.098304,0.098336,7.0656,0.11264
+1379,108.429,9.22266,9.51869,0.069408,0.744928,0.008352,0.004704,0.052384,0.096864,0.0976,8.31789,0.12656
+1380,92.762,10.7803,9.5727,0.069984,0.802816,0.008192,0.006176,0.054592,0.098976,0.09936,8.31936,0.113248
+1381,95.7636,10.4424,8.28374,0.069632,0.765952,0.008192,0.006144,0.053024,0.09648,0.098336,7.06557,0.120416
+1382,108.222,9.24023,8.27706,0.069632,0.753664,0.008224,0.006112,0.053248,0.09952,0.099136,7.07139,0.116128
+1383,106.912,9.35352,8.27715,0.069408,0.765792,0.007904,0.004768,0.055328,0.098272,0.099488,7.06237,0.113824
+1384,109.695,9.11621,9.37318,0.069152,0.770752,0.008192,0.006144,0.054624,0.096928,0.321536,7.9319,0.113952
+1385,95.5848,10.4619,8.3071,0.089056,0.759168,0.008352,0.004576,0.0512,0.098304,0.098048,7.08429,0.114112
+1386,110.404,9.05762,8.24797,0.068256,0.73936,0.00816,0.006144,0.053216,0.09808,0.09856,7.06355,0.11264
+1387,106.923,9.35254,9.12563,0.070848,0.75248,0.00928,0.005024,0.055296,0.098304,0.098304,7.91936,0.116736
+1388,95.952,10.4219,8.26003,0.068032,0.750944,0.008384,0.005824,0.051744,0.09856,0.098304,7.0647,0.113536
+1389,109.554,9.12793,8.65485,0.069344,0.774432,0.008192,0.006144,0.05248,0.097024,0.10608,7.42765,0.113504
+1390,103.612,9.65137,9.15782,0.070752,0.775072,0.008416,0.007808,0.052576,0.099168,0.106496,7.92368,0.113856
+1391,98.6038,10.1416,8.30445,0.068384,0.790016,0.008352,0.005664,0.051296,0.096704,0.097856,7.07245,0.113728
+1392,110.214,9.07324,8.66922,0.06912,0.754176,0.00928,0.005056,0.05296,0.097984,0.098368,7.46957,0.112704
+1393,93.7214,10.6699,8.97232,0.071616,1.45376,0.008384,0.0056,0.051936,0.097568,0.098208,7.07245,0.1128
+1394,109.836,9.10449,8.25578,0.069344,0.735104,0.008544,0.004768,0.05312,0.098304,0.097856,7.07421,0.114528
+1395,108.67,9.20215,8.66515,0.068,0.74544,0.007488,0.004832,0.053056,0.097632,0.099168,7.46906,0.12048
+1396,94.7446,10.5547,8.75395,0.119584,1.1817,0.009344,0.005088,0.053184,0.099616,0.09824,7.07456,0.11264
+1397,109.718,9.11426,8.27242,0.069536,0.746112,0.00752,0.00672,0.051328,0.098272,0.09824,7.0799,0.114784
+1398,108.624,9.20605,9.50515,0.070528,0.749568,0.008224,0.006112,0.053088,0.098272,0.09824,8.30886,0.112256
+1399,93.7386,10.668,8.38003,0.069312,0.866176,0.008384,0.004928,0.053184,0.096352,0.098272,7.06765,0.115776
+1400,111.498,8.96875,8.26986,0.069312,0.738912,0.008096,0.006464,0.052928,0.098784,0.099744,7.07466,0.12096
+1401,105.687,9.46191,9.52538,0.069664,0.755808,0.008224,0.006112,0.0512,0.102432,0.098272,8.32102,0.11264
+1402,96.7041,10.3408,8.2759,0.069632,0.749184,0.007584,0.005088,0.055296,0.098304,0.098304,7.07789,0.114624
+1403,108.486,9.21777,8.26912,0.071104,0.745248,0.008384,0.005792,0.054208,0.098304,0.098304,7.07347,0.114304
+1404,109.157,9.16113,8.28416,0.069408,0.757984,0.008192,0.006144,0.052896,0.097888,0.097024,7.08173,0.112896
+1405,106.412,9.39746,9.38669,0.068288,1.02195,0.009248,0.00512,0.051168,0.098304,0.098304,7.9191,0.1152
+1406,97.878,10.2168,8.27194,0.069632,0.74752,0.008224,0.007552,0.055264,0.096992,0.099328,7.07472,0.112704
+1407,110.202,9.07422,8.2743,0.069152,0.746368,0.008192,0.00608,0.055328,0.097792,0.100896,7.07584,0.114656
+1408,107.27,9.32227,9.10362,0.070208,0.741472,0.007712,0.005824,0.052,0.098336,0.1,7.91101,0.117056
+1409,96.9973,10.3096,8.28211,0.069632,0.759168,0.008352,0.0056,0.053472,0.097056,0.098304,7.07789,0.11264
+1410,106.423,9.39648,8.73075,0.068064,0.797856,0.008384,0.005856,0.0624,0.107616,0.098624,7.46762,0.114336
+1411,89.6908,11.1494,9.03536,0.069632,1.50925,0.00832,0.005696,0.055776,0.097888,0.098112,7.07642,0.114272
+1412,107.371,9.31348,8.80643,0.069664,0.87408,0.008384,0.006048,0.063776,0.098304,0.105984,7.4672,0.112992
+1413,105.971,9.43652,10.2041,0.068512,0.753664,0.008224,0.00608,0.055168,0.10592,0.38288,8.71072,0.112896
+1414,87.5064,11.4277,8.38557,0.069632,0.845824,0.009216,0.00512,0.05328,0.105984,0.104352,7.07846,0.113696
+1415,101.982,9.80566,8.47219,0.069568,0.941568,0.008672,0.005632,0.053728,0.100608,0.098336,7.07594,0.118144
+1416,108.555,9.21191,8.34083,0.085824,0.796896,0.008064,0.005824,0.054848,0.097152,0.098272,7.07994,0.114016
+1417,104.107,9.60547,9.4457,0.067872,1.0704,0.006848,0.006176,0.054464,0.097056,0.098304,7.92896,0.115616
+1418,97.2644,10.2812,8.31283,0.069632,0.78544,0.017376,0.006144,0.053248,0.098304,0.098336,7.07142,0.112928
+1419,109.064,9.16895,8.62208,0.069632,0.751616,0.008192,0.005952,0.05344,0.099872,0.098528,7.42147,0.113376
+1420,99.7953,10.0205,9.17507,0.069664,0.778208,0.008192,0.006144,0.05232,0.098592,0.098528,7.95075,0.112672
+1421,101.166,9.88477,8.26586,0.06848,0.74752,0.00816,0.005824,0.053536,0.097952,0.098688,7.07174,0.113952
+1422,109.075,9.16797,8.66922,0.07168,0.7536,0.00624,0.006112,0.05456,0.098976,0.0984,7.46614,0.113504
+1423,89.9982,11.1113,9.18371,0.068224,1.63782,0.01808,0.005056,0.052384,0.11056,0.098176,7.07888,0.114528
+1424,116.113,8.6123,8.28752,0.068896,0.756448,0.00784,0.004512,0.052448,0.098304,0.096992,7.07789,0.124192
+1425,102.997,9.70898,8.76138,0.069184,0.846304,0.017472,0.005088,0.055136,0.098432,0.100192,7.45619,0.113376
+1426,104.044,9.61133,8.29392,0.071232,0.763808,0.007072,0.00592,0.055136,0.097472,0.098272,7.0824,0.112608
+1427,108.486,9.21777,8.26736,0.068192,0.74544,0.008416,0.00592,0.05472,0.098528,0.098048,7.07421,0.113888
+1428,107.293,9.32031,9.56422,0.069664,0.925088,0.007264,0.00608,0.05312,0.0984,0.098336,8.19152,0.114752
+1429,97.7752,10.2275,8.28006,0.069088,0.75216,0.008192,0.006176,0.055264,0.097632,0.096928,7.08154,0.113088
+1430,108.555,9.21191,8.25754,0.069632,0.742944,0.007808,0.005056,0.054688,0.09808,0.0984,7.06624,0.114688
+1431,110.715,9.03223,8.25754,0.07152,0.739488,0.008192,0.006016,0.052896,0.096736,0.098336,7.06966,0.114688
+1432,107.676,9.28711,9.51654,0.069632,0.745088,0.00832,0.0064,0.053248,0.098304,0.098144,8.30861,0.1288
+1433,95.1496,10.5098,8.2903,0.069664,0.755168,0.008352,0.005568,0.053664,0.096768,0.098304,7.08739,0.115424
+1434,108.925,9.18066,8.28003,0.069056,0.753728,0.00816,0.006752,0.05536,0.098208,0.098048,7.07622,0.114496
+1435,100.274,9.97266,9.55802,0.069568,1.11418,0.008192,0.005792,0.053152,0.096736,0.106464,7.9872,0.116736
+1436,95.7009,10.4492,8.33523,0.069408,0.796896,0.008224,0.00608,0.054944,0.098368,0.110016,7.07258,0.11872
+1437,101.982,9.80566,8.7839,0.068288,0.856064,0.022528,0.005984,0.055392,0.106336,0.098528,7.45677,0.114016
+1438,104.972,9.52637,8.55181,0.069344,1.00973,0.010464,0.006112,0.056896,0.098208,0.098784,7.08208,0.120192
+1439,94.7885,10.5498,8.50918,0.069248,0.94864,0.007648,0.020992,0.053248,0.11264,0.098304,7.08403,0.114432
+1440,103.591,9.65332,8.69174,0.069792,0.763744,0.008192,0.006144,0.05328,0.099616,0.098592,7.47699,0.115392
+1441,109.624,9.12207,8.27421,0.06832,0.75568,0.008192,0.005952,0.053216,0.096608,0.099584,7.07242,0.11424
+1442,108.636,9.20508,8.31683,0.067904,0.780288,0.007648,0.0048,0.053088,0.098304,0.098336,7.08131,0.125152
+1443,110.691,9.03418,8.93718,0.069344,0.735328,0.008352,0.006208,0.053248,0.098304,0.099936,7.46442,0.402048
+1444,100.422,9.95801,8.28298,0.070496,0.751616,0.008224,0.005952,0.053408,0.098304,0.098112,7.08381,0.113056
+1445,108.693,9.2002,8.28109,0.069664,0.74544,0.009504,0.006688,0.05344,0.099936,0.098336,7.08358,0.114496
+1446,109.413,9.13965,8.71821,0.069824,0.790784,0.007936,0.005856,0.053664,0.099776,0.099104,7.47667,0.114592
+1447,98.2066,10.1826,8.34246,0.070624,0.835008,0.006688,0.005856,0.053216,0.096576,0.098304,7.06307,0.11312
+1448,109.577,9.12598,8.33187,0.069728,0.814976,0.008352,0.005824,0.052032,0.098272,0.104256,7.06381,0.114624
+1449,108.878,9.18457,9.38973,0.06928,0.746016,0.008416,0.005888,0.056896,0.096704,0.099584,8.192,0.114944
+1450,96.6859,10.3428,8.26938,0.068992,0.743264,0.00832,0.006848,0.053216,0.098304,0.099456,7.0783,0.112672
+1451,110.703,9.0332,8.65347,0.068512,0.737152,0.00832,0.00544,0.05392,0.098112,0.099552,7.46595,0.116512
+1452,102.226,9.78223,8.26176,0.071104,0.739424,0.008352,0.006304,0.054784,0.098304,0.101152,7.0696,0.112736
+1453,100.412,9.95898,9.52944,0.068192,1.11398,0.016384,0.005792,0.059776,0.104224,0.100032,7.94573,0.115328
+1454,104.383,9.58008,8.26813,0.069984,0.743424,0.008288,0.006048,0.05328,0.09808,0.097664,7.07866,0.112704
+1455,108.131,9.24805,8.27955,0.06944,0.755264,0.008384,0.006336,0.055008,0.0968,0.098304,7.07584,0.114176
+1456,108.188,9.24316,9.21386,0.070432,0.743296,0.00752,0.006304,0.053504,0.09872,0.098176,8.02019,0.115712
+1457,97.0892,10.2998,8.26778,0.069184,0.750016,0.008224,0.005792,0.05152,0.098304,0.098112,7.07398,0.11264
+1458,97.1076,10.2979,9.85501,0.075776,1.08902,0.008384,0.005824,0.053888,0.098272,0.098368,8.31213,0.113344
+1459,92.2606,10.8389,8.26573,0.07152,0.74768,0.007712,0.005632,0.053696,0.0968,0.097888,7.07174,0.113056
+1460,108.716,9.19824,8.2944,0.0696,0.774176,0.008224,0.006048,0.0528,0.096768,0.098304,7.06765,0.120832
+1461,105.026,9.52148,8.76544,0.07952,0.837408,0.008096,0.004896,0.055296,0.098304,0.101728,7.46358,0.116608
+1462,101.83,9.82031,8.29149,0.067744,0.763904,0.009248,0.005088,0.053248,0.099392,0.103136,7.07571,0.114016
+1463,109.542,9.12891,8.28038,0.068512,0.75776,0.008192,0.005824,0.053536,0.098048,0.09824,7.07414,0.116128
+1464,110.727,9.03125,8.94976,0.069632,0.734464,0.008352,0.004864,0.055136,0.098304,0.100352,7.47318,0.405472
+1465,100.917,9.90918,8.2728,0.070528,0.746592,0.008128,0.006368,0.053312,0.09696,0.098304,7.07984,0.112768
+1466,102.853,9.72266,8.32378,0.070336,0.808352,0.008352,0.005824,0.052,0.099968,0.098688,7.06662,0.113632
+1467,107.835,9.27344,9.52134,0.071168,0.76256,0.009216,0.00512,0.053248,0.098304,0.098304,8.31078,0.11264
+1468,94.6133,10.5693,8.27597,0.067712,0.761184,0.008352,0.005632,0.054176,0.098272,0.099648,7.06771,0.11328
+1469,100.294,9.9707,9.49661,0.069568,0.880736,0.008256,0.00608,0.054688,0.096864,0.098304,8.16742,0.114688
+1470,104.426,9.57617,8.29606,0.067904,0.784352,0.008192,0.006144,0.052288,0.097216,0.098304,7.06765,0.114016
+1471,103.153,9.69434,9.17715,0.069728,0.799328,0.008416,0.005888,0.054272,0.09728,0.102432,7.92573,0.11408
+1472,100.422,9.95801,8.2665,0.06848,0.753504,0.008192,0.006016,0.053408,0.097856,0.09872,7.0656,0.11472
+1473,103.32,9.67871,8.8617,0.083744,0.93616,0.007936,0.0056,0.052,0.112576,0.098112,7.45088,0.114688
+1474,98.1031,10.1934,8.81837,0.069632,1.29434,0.008192,0.006048,0.069728,0.098304,0.098304,7.05946,0.114368
+1475,106.956,9.34961,8.29494,0.069216,0.781056,0.008352,0.0056,0.051776,0.09792,0.098688,7.06934,0.112992
+1476,103.696,9.64355,8.76352,0.069792,0.848064,0.016768,0.005952,0.05552,0.10016,0.098464,7.45184,0.11696
+1477,99.4851,10.0518,8.47667,0.069632,0.960512,0.00816,0.0056,0.051712,0.09744,0.097216,7.07344,0.11296
+1478,110.583,9.04297,8.28422,0.068704,0.771072,0.00928,0.005024,0.05296,0.098592,0.098304,7.06707,0.113216
+1479,102.956,9.71289,9.61296,0.069632,0.8928,0.008256,0.005568,0.06208,0.09808,0.100608,8.25955,0.116384
+1480,94.5784,10.5732,8.73267,0.067584,0.823296,0.007904,0.00608,0.054688,0.1272,0.09904,7.43338,0.113504
+1481,104.076,9.6084,9.16502,0.069344,0.788384,0.008352,0.016672,0.05344,0.098272,0.100224,7.91741,0.112928
+1482,99.9805,10.002,8.27757,0.06928,0.763904,0.00832,0.005824,0.053408,0.098112,0.09824,7.06765,0.112832
+1483,108.486,9.21777,9.14336,0.069632,0.761856,0.009344,0.006752,0.053344,0.097888,0.098368,7.92835,0.117824
+1484,97.8687,10.2178,8.27187,0.069632,0.751392,0.00832,0.005792,0.053696,0.098304,0.098304,7.07306,0.113376
+1485,95.1231,10.5127,8.81267,0.069088,0.950752,0.00752,0.00496,0.052736,0.10432,0.09856,7.41005,0.114688
+1486,117.769,8.49121,9.19248,0.069664,0.829408,0.008192,0.006176,0.06112,0.098592,0.101504,7.90413,0.113696
+1487,99.5818,10.042,8.30083,0.069088,0.782848,0.008032,0.006336,0.051488,0.098336,0.098272,7.07306,0.113376
+1488,106.545,9.38574,8.7591,0.06944,0.84336,0.008352,0.005824,0.054016,0.098304,0.098336,7.46701,0.114464
+1489,96.06,10.4102,8.68976,0.087168,1.15379,0.008352,0.005664,0.051744,0.098304,0.09808,7.0735,0.113152
+1490,107.767,9.2793,8.2641,0.068,0.755712,0.008192,0.00768,0.053344,0.098432,0.097632,7.06166,0.11344
+1491,102.318,9.77344,8.68131,0.069632,0.763904,0.008224,0.006112,0.053248,0.098304,0.11056,7.45475,0.116576
+1492,109.262,9.15234,8.30717,0.06816,0.794624,0.007712,0.005824,0.052,0.097952,0.098464,7.06784,0.114592
+1493,105.993,9.43457,8.3504,0.068768,0.8272,0.007648,0.005888,0.055872,0.097664,0.09888,7.07408,0.1144
+1494,101.911,9.8125,9.25322,0.069504,0.899904,0.007968,0.015872,0.051936,0.10448,0.100352,7.46493,0.538272
+1495,104.458,9.57324,8.27242,0.069536,0.762656,0.007488,0.004896,0.053248,0.097696,0.098176,7.06429,0.114432
+1496,106.912,9.35352,8.30154,0.068576,0.791648,0.007072,0.006144,0.055296,0.098304,0.098304,7.06272,0.113472
+1497,106.912,9.35352,8.28093,0.0696,0.764928,0.008192,0.00608,0.053056,0.096544,0.098272,7.0697,0.11456
+1498,108.062,9.25391,9.54339,0.06912,0.793024,0.00752,0.005056,0.053024,0.098304,0.098304,8.29645,0.122592
+1499,89.7065,11.1475,8.5272,0.069728,1.00557,0.008192,0.006144,0.05328,0.096224,0.098432,7.07571,0.11392
+1500,109.824,9.10547,8.30454,0.068896,0.791264,0.008352,0.005984,0.054976,0.096576,0.098304,7.0656,0.114592
+1501,104.479,9.57129,9.20605,0.072032,0.811008,0.007616,0.004672,0.05328,0.096352,0.099872,7.94438,0.116832
+1502,90.6115,11.0361,9.67494,0.069088,0.914144,0.020448,0.006144,0.053184,0.103968,0.098112,8.29718,0.112672
+1503,104.298,9.58789,8.6879,0.071744,0.778304,0.008352,0.0056,0.051776,0.098112,0.098464,7.4607,0.114848
+1504,96.8047,10.3301,8.97802,0.0696,1.4623,0.008256,0.00608,0.053248,0.098304,0.098336,7.06893,0.11296
+1505,109.11,9.16504,8.28374,0.069632,0.755584,0.00832,0.0056,0.054944,0.097152,0.098432,7.07981,0.114272
+1506,107.801,9.27637,8.65949,0.06848,0.7512,0.008352,0.005824,0.051744,0.09968,0.098976,7.46086,0.114368
+1507,96.8413,10.3262,8.70195,0.085696,1.16154,0.009248,0.005088,0.054496,0.096736,0.098336,7.07818,0.11264
+1508,105.993,9.43457,8.32838,0.069248,0.8024,0.008384,0.004704,0.053248,0.098336,0.098272,7.07994,0.113856
+1509,104.5,9.56934,9.59731,0.070144,0.800672,0.008352,0.0056,0.051904,0.097312,0.098272,8.35267,0.112384
+1510,92.3854,10.8242,8.41939,0.08112,0.897184,0.008416,0.005824,0.051552,0.096736,0.099968,7.06394,0.114656
+1511,106.678,9.37402,8.50269,0.069472,0.975104,0.008224,0.00592,0.051392,0.100064,0.098624,7.0799,0.113984
+1512,106.213,9.41504,8.30803,0.070816,0.79344,0.008192,0.005984,0.05136,0.098304,0.098336,7.06762,0.113984
+1513,103.382,9.67285,9.71984,0.069632,0.868352,0.009344,0.004992,0.052992,0.096544,0.09952,8.40512,0.113344
+1514,92.0449,10.8643,8.34874,0.07168,0.821248,0.008224,0.005952,0.052896,0.097824,0.09872,7.07232,0.119872
+1515,105.252,9.50098,8.74106,0.069216,0.834048,0.00752,0.004832,0.054944,0.097632,0.099264,7.45994,0.113664
+1516,100.669,9.93359,8.82074,0.071424,1.30205,0.008352,0.005824,0.05568,0.098368,0.098432,7.06746,0.113152
+1517,107.778,9.27832,8.27306,0.069344,0.747072,0.00832,0.004832,0.05312,0.09744,0.098496,7.08061,0.113824
+1518,110.44,9.05469,8.64397,0.069632,0.73728,0.008288,0.00736,0.053984,0.098336,0.09936,7.4551,0.114624
+1519,97.7846,10.2266,8.65331,0.071936,1.13485,0.008192,0.006144,0.052288,0.097248,0.098304,7.07123,0.11312
+1520,106.423,9.39648,8.31718,0.069728,0.78864,0.007904,0.005824,0.053184,0.096928,0.1056,7.07622,0.113152
+1521,109.448,9.13672,8.66307,0.069344,0.75296,0.008384,0.004928,0.054752,0.09808,0.098624,7.45923,0.116768
+1522,101.076,9.89355,8.28208,0.068352,0.771808,0.008384,0.005824,0.051616,0.098336,0.098304,7.06554,0.11392
+1523,106.968,9.34863,8.36813,0.0696,0.845376,0.006656,0.005888,0.053472,0.097888,0.098624,7.07594,0.114688
+1524,110.775,9.02734,8.97098,0.070368,0.75568,0.008224,0.005984,0.05344,0.098336,0.099488,7.46141,0.418048
+1525,99.3114,10.0693,8.28186,0.070304,0.768,0.009408,0.00496,0.053216,0.096256,0.098144,7.06765,0.11392
+1526,102.41,9.76465,8.26816,0.069408,0.748512,0.008256,0.00608,0.05264,0.096896,0.099776,7.07136,0.115232
+1527,106.811,9.3623,9.52115,0.069216,0.755328,0.006976,0.006112,0.053248,0.097696,0.110944,8.30861,0.113024
+1528,92.981,10.7549,8.28227,0.070368,0.759968,0.008192,0.006144,0.05456,0.098144,0.0992,7.07117,0.114528
+1529,109.413,9.13965,8.30464,0.069632,0.762912,0.008416,0.006912,0.054784,0.0968,0.098304,7.09421,0.112672
+1530,108.475,9.21875,8.27187,0.069312,0.743744,0.008288,0.006048,0.05328,0.098304,0.098272,7.08122,0.113408
+1531,105.371,9.49023,9.21046,0.068416,0.82736,0.008192,0.006016,0.053376,0.098304,0.098304,7.93395,0.116544
+1532,97.5703,10.249,8.26822,0.069344,0.76208,0.008352,0.005824,0.053984,0.097984,0.097952,7.05808,0.114624
+1533,105.274,9.49902,8.69392,0.073888,0.770048,0.008192,0.005632,0.051712,0.1024,0.100384,7.46806,0.1136
+1534,103.78,9.63574,9.13424,0.06848,0.76288,0.008352,0.004992,0.053184,0.0984,0.099648,7.92429,0.114016
+1535,98.6703,10.1348,8.28563,0.069632,0.771232,0.008384,0.004768,0.053216,0.097696,0.096896,7.0697,0.114112
diff --git a/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..af23e7d
--- /dev/null
+++ b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,103.16,9.7297,8.70375,0.0697966,0.841056,0.00860906,0.00597519,0.0295964,0.0987699,0.10603,7.42524,0.118685
+max_1024,128.692,12.9639,10.9988,0.11104,3.10886,0.08192,0.034816,0.053152,0.11504,0.454656,9.26451,0.459584
+min_1024,77.1375,7.77051,8.22115,0.065536,0.730336,0.006144,0.004352,0.027648,0.096224,0.096288,7.056,0.112512
+512,116.383,8.59229,8.66995,0.066304,0.786432,0.008192,0.006048,0.028768,0.097984,0.098624,7.46291,0.114688
+513,103.148,9.69482,9.13843,0.070144,0.794336,0.00848,0.006144,0.028672,0.098304,0.097632,7.92144,0.11328
+514,99.1864,10.082,8.33539,0.069664,0.84112,0.008064,0.005888,0.02912,0.098048,0.09856,7.07187,0.113056
+515,102.508,9.75537,8.72112,0.070368,0.823296,0.008192,0.006144,0.028672,0.099488,0.0992,7.47107,0.114688
+516,93.563,10.688,9.01123,0.069024,1.51203,0.008192,0.005984,0.028832,0.097952,0.098592,7.0775,0.11312
+517,111.093,9.00146,8.6567,0.069632,0.749024,0.008032,0.004832,0.029888,0.104352,0.098688,7.47696,0.115296
+518,103.434,9.66797,9.01482,0.071136,0.784928,0.008192,0.006144,0.030176,0.106368,0.41232,7.48134,0.114208
+519,95.2647,10.4971,9.46589,0.069536,1.0999,0.008192,0.00576,0.029056,0.098304,0.098368,7.94208,0.114688
+520,99.0377,10.0972,9.3313,0.071488,0.749952,0.008032,0.005824,0.028928,0.097952,0.098592,8.15584,0.114688
+521,96.2135,10.3936,8.27245,0.068064,0.761056,0.008032,0.005056,0.030048,0.098848,0.099808,7.08675,0.114784
+522,109.771,9.10986,8.26074,0.069632,0.757376,0.008448,0.005632,0.029312,0.09952,0.099136,7.07379,0.117888
+523,107.214,9.32715,8.25386,0.069152,0.756576,0.008192,0.00576,0.028832,0.09776,0.09712,7.07574,0.11472
+524,103.822,9.63184,9.41056,0.069408,1.07542,0.008128,0.005824,0.029056,0.098144,0.097728,7.91216,0.114688
+525,98.282,10.1748,8.31488,0.071136,0.807392,0.008256,0.00592,0.028896,0.096288,0.098304,7.084,0.114688
+526,107.332,9.31689,8.31283,0.068224,0.814752,0.00816,0.005824,0.02896,0.096672,0.098304,7.07786,0.11408
+527,100.142,9.98584,9.32122,0.06944,0.975328,0.008032,0.004704,0.028704,0.103584,0.098496,7.91616,0.116768
+528,104.94,9.5293,8.2903,0.069472,0.766112,0.008288,0.006048,0.028672,0.098304,0.098304,7.10042,0.114688
+529,101.221,9.87939,8.76058,0.069632,0.880672,0.00816,0.00576,0.029056,0.09744,0.098688,7.45638,0.114784
+530,103.649,9.64795,10.4734,0.069632,0.786432,0.008192,0.006144,0.028672,0.098304,0.098304,9.26451,0.113248
+531,87.9838,11.3657,8.28346,0.075776,0.777952,0.008192,0.005568,0.029216,0.097664,0.099264,7.07526,0.11456
+532,106.473,9.39209,8.69619,0.075296,0.811232,0.008064,0.005824,0.029024,0.096864,0.098304,7.45882,0.112768
+533,99.4996,10.0503,8.63917,0.06816,1.15018,0.007296,0.005952,0.02864,0.098176,0.097984,7.06938,0.113408
+534,107.507,9.30176,8.26003,0.069696,0.762208,0.008224,0.006112,0.028704,0.100192,0.098624,7.0695,0.116768
+535,106.329,9.40479,8.33536,0.069664,0.820608,0.008096,0.0048,0.03184,0.09712,0.09824,7.09174,0.113248
+536,107.603,9.29346,9.51558,0.069408,0.862976,0.007744,0.004544,0.028672,0.098304,0.34816,7.98106,0.11472
+537,79.8098,12.5298,8.25962,0.07152,0.768192,0.008416,0.005888,0.028704,0.098272,0.098304,7.06701,0.113312
+538,97.7099,10.2344,9.94918,0.069376,0.817024,0.008352,0.005792,0.029248,0.098304,0.098176,8.70995,0.11296
+539,112.583,8.88232,9.87552,0.069728,0.79664,0.008192,0.00592,0.028896,0.097632,0.096928,8.65677,0.114816
+540,95.8084,10.4375,8.69174,0.069632,0.800256,0.008064,0.005824,0.029632,0.100032,0.098624,7.46672,0.11296
+541,101.784,9.82471,9.1607,0.069632,0.777888,0.008352,0.005568,0.02896,0.097792,0.098656,7.9592,0.114656
+542,100.191,9.98096,8.25344,0.069376,0.76624,0.008192,0.005888,0.028896,0.098304,0.098304,7.06554,0.112704
+543,101.683,9.83447,9.57066,0.065856,0.808416,0.00832,0.005568,0.029376,0.097792,0.097056,8.3456,0.112672
+544,92.9009,10.7642,8.54278,0.06816,1.05677,0.008192,0.006144,0.028704,0.098304,0.098272,7.0647,0.113536
+545,111.839,8.94141,9.1343,0.07184,0.76816,0.008192,0.005888,0.028928,0.097536,0.098336,7.94086,0.11456
+546,98.9372,10.1074,9.51914,0.070944,0.76464,0.007776,0.005824,0.02896,0.096704,0.098304,8.33331,0.112672
+547,95.8398,10.4341,8.67571,0.069152,0.754432,0.00752,0.004992,0.030112,0.096864,0.098336,7.49882,0.115488
+548,103.597,9.65283,10.3117,0.071232,0.74592,0.00816,0.005856,0.028928,0.098368,0.097728,9.14285,0.11264
+549,88.1012,11.3506,9.1249,0.069536,0.755808,0.008096,0.0056,0.02896,0.098144,0.0968,7.94563,0.11632
+550,100.644,9.93604,8.24525,0.069536,0.748864,0.00832,0.006784,0.028704,0.097856,0.098144,7.07357,0.113472
+551,107.563,9.29688,8.25437,0.068544,0.759776,0.008064,0.005568,0.028832,0.098016,0.097088,7.07379,0.114688
+552,102.61,9.74561,9.16477,0.069632,0.824544,0.00832,0.005856,0.029504,0.098432,0.100192,7.91363,0.114656
+553,99.2104,10.0796,8.28995,0.069056,0.791104,0.008224,0.005984,0.0288,0.097472,0.097152,7.07782,0.114336
+554,104.629,9.55762,9.77568,0.069632,1.04096,0.008224,0.006112,0.028768,0.098208,0.099776,8.30726,0.116736
+555,94.3692,10.5967,8.50214,0.068448,1.0112,0.008768,0.00608,0.032032,0.096992,0.098336,7.06752,0.112768
+556,108.498,9.2168,8.26413,0.068448,0.759808,0.00816,0.005824,0.029024,0.098336,0.098304,7.0737,0.122528
+557,108.861,9.18604,8.62237,0.069856,0.743744,0.008192,0.005856,0.028928,0.098336,0.098336,7.45059,0.118528
+558,98.2207,10.1812,8.91494,0.069184,1.42586,0.00768,0.005824,0.028928,0.09792,0.098496,7.068,0.113056
+559,109.297,9.14941,8.26336,0.069664,0.763296,0.008032,0.004864,0.029696,0.097248,0.098336,7.07722,0.115008
+560,108.521,9.21484,8.63674,0.069312,0.758304,0.00816,0.005856,0.028704,0.100736,0.098304,7.45395,0.113408
+561,103.169,9.69287,8.28211,0.069184,0.78656,0.008064,0.004608,0.030048,0.09808,0.097088,7.07546,0.113024
+562,107.744,9.28125,8.27635,0.076128,0.781824,0.008032,0.005824,0.02896,0.098016,0.098624,7.0641,0.114848
+563,109.607,9.12354,8.64592,0.070784,0.760704,0.008192,0.00608,0.028736,0.09776,0.098432,7.46128,0.113952
+564,102.925,9.71582,8.26813,0.06816,0.784384,0.008256,0.00608,0.028704,0.098272,0.097728,7.06208,0.114464
+565,108.028,9.25684,8.65034,0.069312,0.771808,0.00832,0.005632,0.02928,0.09664,0.098304,7.45472,0.11632
+566,103.618,9.65088,9.11974,0.069632,0.770048,0.008256,0.00608,0.02976,0.097248,0.098304,7.92749,0.112928
+567,91.6413,10.9121,9.40358,0.069344,1.05232,0.008288,0.00464,0.029984,0.097024,0.098304,7.92778,0.115904
+568,101.628,9.83984,8.26336,0.071648,0.769312,0.008064,0.005088,0.029824,0.097088,0.099456,7.06851,0.114368
+569,109.402,9.14062,9.50067,0.069664,0.745216,0.007552,0.00496,0.028672,0.098304,0.098304,8.3345,0.113504
+570,93.8287,10.6577,8.66531,0.069856,0.751168,0.00816,0.005856,0.02912,0.098624,0.098304,7.49059,0.113632
+571,106.076,9.42725,8.24528,0.06912,0.756224,0.008192,0.005568,0.029056,0.09648,0.098272,7.06906,0.113312
+572,109.215,9.15625,8.63421,0.068384,0.751648,0.008192,0.005888,0.028896,0.098336,0.098272,7.46077,0.113824
+573,98.8369,10.1177,9.11594,0.070144,0.751616,0.008192,0.006144,0.028672,0.09792,0.0984,7.94038,0.114464
+574,105.545,9.47461,8.25219,0.068448,0.751264,0.008032,0.005824,0.029024,0.098272,0.098016,7.07862,0.114688
+575,107.298,9.31982,9.09939,0.0688,0.75568,0.008384,0.004896,0.028672,0.098304,0.10016,7.91715,0.117344
+576,97.9436,10.21,8.25283,0.067936,0.759616,0.008032,0.005824,0.029088,0.098208,0.098336,7.07184,0.113952
+577,106.081,9.42676,9.23776,0.06928,0.86032,0.008128,0.0056,0.031552,0.104416,0.098112,7.94547,0.11488
+578,97.6354,10.2422,8.96227,0.069472,0.782432,0.007648,0.005024,0.02992,0.098016,0.097248,7.45677,0.415744
+579,100.274,9.97266,8.26726,0.07168,0.765952,0.008192,0.005824,0.028992,0.098304,0.106304,7.06784,0.114176
+580,109.232,9.15479,8.25254,0.069664,0.75296,0.00832,0.00592,0.02912,0.09808,0.100896,7.07174,0.11584
+581,109.361,9.14404,8.25549,0.069536,0.755232,0.008064,0.006368,0.029152,0.09632,0.099392,7.07674,0.114688
+582,108.366,9.22803,9.5144,0.069632,0.77824,0.008032,0.005696,0.02912,0.098464,0.098336,8.31222,0.114656
+583,95.97,10.4199,8.25578,0.0712,0.758464,0.00752,0.004832,0.03008,0.096896,0.099424,7.07398,0.113376
+584,108.965,9.17725,8.24144,0.068224,0.74752,0.008192,0.006144,0.028672,0.098304,0.097984,7.07206,0.114336
+585,107.45,9.30664,9.15939,0.06656,0.804224,0.008064,0.006432,0.02912,0.098336,0.098272,7.93133,0.117056
+586,97.0156,10.3076,8.43162,0.069632,0.92096,0.00832,0.005824,0.029536,0.098112,0.097792,7.08829,0.113152
+587,111.547,8.96484,8.22115,0.069216,0.73616,0.00816,0.006144,0.028672,0.097568,0.097024,7.06506,0.113152
+588,109.104,9.16553,9.11581,0.068032,0.770048,0.008224,0.007616,0.029216,0.098304,0.100352,7.91878,0.115232
+589,99.4609,10.0542,8.24435,0.0696,0.750848,0.008032,0.005056,0.028672,0.103968,0.098176,7.06589,0.114112
+590,109.56,9.12744,8.66973,0.068512,0.778208,0.008224,0.006144,0.029856,0.09712,0.1024,7.46624,0.113024
+591,103.44,9.66748,9.15434,0.069664,0.808928,0.008192,0.006144,0.0288,0.098016,0.098016,7.92211,0.114464
+592,100.427,9.95752,8.23344,0.068064,0.735232,0.008448,0.00752,0.029088,0.1024,0.099392,7.06982,0.113472
+593,106.175,9.41846,8.64461,0.06944,0.753856,0.008192,0.006016,0.0288,0.09792,0.098304,7.46736,0.11472
+594,103.707,9.64258,9.17946,0.070368,0.805056,0.008032,0.005888,0.028992,0.104576,0.112672,7.92982,0.114048
+595,99.4513,10.0552,8.25539,0.069536,0.755136,0.00672,0.006144,0.028672,0.104128,0.104864,7.06554,0.114656
+596,108.907,9.18213,8.63846,0.070848,0.746144,0.00832,0.006176,0.030016,0.099008,0.100352,7.46483,0.112768
+597,98.249,10.1782,8.65296,0.09024,1.13645,0.008064,0.005024,0.028672,0.097728,0.096832,7.07584,0.114112
+598,109.783,9.10889,8.26643,0.068416,0.774144,0.008192,0.007232,0.02928,0.098368,0.09856,7.06698,0.115264
+599,106.884,9.35596,9.01011,0.070432,0.81712,0.008288,0.005728,0.029088,0.096256,0.098304,7.4704,0.414496
+600,101.507,9.85156,8.2496,0.070528,0.74752,0.008192,0.006144,0.028672,0.098336,0.098272,7.07494,0.116992
+601,103.696,9.64355,8.30262,0.069664,0.788448,0.008224,0.006112,0.028672,0.098304,0.098304,7.08941,0.115488
+602,109.122,9.16406,9.44755,0.06944,0.745408,0.006528,0.006144,0.028672,0.102144,0.100096,7.93379,0.455328
+603,96.2994,10.3843,8.28211,0.069376,0.780576,0.00816,0.007168,0.02896,0.096992,0.099936,7.0761,0.114848
+604,96.5218,10.3604,8.35174,0.069632,0.84752,0.008032,0.005856,0.035616,0.100352,0.106592,7.06518,0.11296
+605,123.918,8.06982,8.24909,0.069088,0.754688,0.008192,0.006048,0.028704,0.106016,0.098848,7.06355,0.113952
+606,101.336,9.86816,9.41334,0.069344,1.05312,0.008096,0.005824,0.029248,0.09808,0.102688,7.93229,0.114656
+607,98.3481,10.168,8.2985,0.07168,0.780288,0.008032,0.014496,0.028704,0.097728,0.097952,7.08493,0.114688
+608,109.701,9.11572,9.48806,0.06992,0.746688,0.008128,0.005088,0.02976,0.097216,0.098304,8.31898,0.113984
+609,93.3583,10.7114,8.6385,0.071488,0.766144,0.008224,0.006048,0.028736,0.098304,0.09952,7.4473,0.112736
+610,103.34,9.67676,8.26134,0.06912,0.767968,0.008032,0.005088,0.029792,0.096992,0.098304,7.07168,0.114368
+611,108.595,9.2085,9.54938,0.066656,0.765888,0.007264,0.006016,0.028672,0.098432,0.099584,8.35965,0.117216
+612,90.0576,11.104,8.96,0.069568,1.464,0.008032,0.005792,0.031616,0.09776,0.098848,7.07088,0.113504
+613,108.653,9.20361,8.67123,0.0696,0.757792,0.008192,0.006176,0.02864,0.098304,0.099648,7.47181,0.131072
+614,95.7681,10.4419,9.18618,0.07056,0.798688,0.008192,0.005824,0.02896,0.097568,0.098464,7.96493,0.112992
+615,102.785,9.729,8.66547,0.069088,0.764864,0.008224,0.0072,0.02896,0.096928,0.116736,7.46029,0.113184
+616,102.053,9.79883,9.10541,0.069632,0.75776,0.008192,0.005952,0.028864,0.098304,0.100352,7.92371,0.11264
+617,98.4048,10.1621,8.29347,0.069632,0.796672,0.008192,0.005728,0.029088,0.097344,0.097216,7.07568,0.11392
+618,93.469,10.6987,9.23651,0.065536,0.872192,0.018688,0.005984,0.03488,0.0984,0.098336,7.92963,0.112864
+619,104.805,9.5415,9.59325,0.069152,0.846496,0.008032,0.005568,0.028992,0.098944,0.098304,8.3248,0.11296
+620,94.5696,10.5742,8.67331,0.069312,0.794272,0.008352,0.005856,0.02944,0.098336,0.098304,7.45462,0.114816
+621,99.8829,10.0117,8.79619,0.069088,1.29866,0.008096,0.005632,0.031648,0.097792,0.098592,7.07379,0.112896
+622,102.277,9.77734,9.61536,0.077824,0.84096,0.006944,0.006112,0.028672,0.098464,0.106336,8.33536,0.114688
+623,88.6964,11.2744,8.80435,0.069632,1.30048,0.008192,0.006144,0.032672,0.09744,0.098336,7.0785,0.11296
+624,110.048,9.08691,8.65891,0.070176,0.77344,0.008064,0.005024,0.02992,0.098272,0.098656,7.46115,0.114208
+625,102.175,9.78711,9.20762,0.06832,0.833472,0.008064,0.005568,0.028928,0.113152,0.09744,7.93891,0.11376
+626,98.8894,10.1123,8.33027,0.068896,0.79552,0.008032,0.006144,0.053152,0.098112,0.098592,7.07581,0.126016
+627,103.221,9.68799,8.72173,0.07072,0.82224,0.00816,0.006144,0.028672,0.108544,0.103456,7.4591,0.114688
+628,99.3837,10.062,8.66307,0.067936,1.15917,0.008096,0.005824,0.029024,0.09744,0.09728,7.08394,0.114368
+629,107.383,9.3125,8.31984,0.076576,0.809024,0.008192,0.005952,0.03296,0.1024,0.098304,7.0697,0.116736
+630,108.057,9.25439,8.66307,0.070848,0.770784,0.008,0.005824,0.029216,0.097952,0.098336,7.46944,0.112672
+631,104.176,9.59912,8.26368,0.069664,0.774112,0.008128,0.0056,0.028992,0.098208,0.098688,7.0656,0.114688
+632,105.426,9.48535,8.30442,0.06864,0.809312,0.00832,0.005824,0.029088,0.098048,0.099008,7.06966,0.116512
+633,105.507,9.47803,8.71123,0.071712,0.829216,0.008,0.0056,0.0296,0.09776,0.098144,7.45747,0.113728
+634,102.997,9.70898,9.2521,0.071712,0.882656,0.008192,0.006144,0.03184,0.103424,0.100256,7.93395,0.11392
+635,97.9482,10.2095,8.25251,0.069696,0.763904,0.008192,0.005984,0.028832,0.098304,0.098304,7.06518,0.114112
+636,108.32,9.23193,8.27885,0.068384,0.78,0.00832,0.005824,0.02896,0.097792,0.1072,7.06768,0.114688
+637,104.15,9.60156,9.15395,0.07104,0.78464,0.008096,0.0048,0.029792,0.097152,0.098336,7.94211,0.117984
+638,100.147,9.98535,8.32077,0.068352,0.839424,0.008288,0.005856,0.02912,0.098304,0.098304,7.05907,0.114048
+639,109.842,9.104,8.5663,0.069728,0.758208,0.008032,0.005632,0.028576,0.097024,0.098304,7.38419,0.116608
+640,102.92,9.71631,9.15034,0.069664,0.793984,0.008032,0.005088,0.030016,0.098784,0.101984,7.92934,0.11344
+641,96.1322,10.4023,8.32237,0.069632,0.825344,0.008192,0.005984,0.028672,0.096416,0.09824,7.0759,0.113984
+642,110.506,9.04932,8.65485,0.075776,0.763136,0.008032,0.005056,0.029824,0.09712,0.100352,7.45882,0.116736
+643,102.303,9.7749,9.17571,0.071744,0.813664,0.008,0.005536,0.02896,0.096768,0.098304,7.93965,0.113088
+644,98.0702,10.1968,8.69581,0.069632,0.798496,0.008032,0.005792,0.029312,0.099456,0.105472,7.46698,0.11264
+645,103.859,9.62842,10.3192,0.069376,0.795904,0.007296,0.006016,0.028672,0.099744,0.100992,9.09632,0.11488
+646,88.5928,11.2876,8.25754,0.069536,0.759488,0.008352,0.005856,0.029216,0.102176,0.098176,7.07005,0.114688
+647,103.649,9.64795,8.36666,0.069504,0.865856,0.007104,0.006144,0.029888,0.101216,0.1,7.07178,0.115168
+648,104.929,9.53027,8.34794,0.06848,0.8552,0.008064,0.005088,0.02992,0.098528,0.098432,7.06998,0.11424
+649,105.409,9.48682,9.46822,0.06944,1.07158,0.008192,0.0056,0.029184,0.097472,0.11552,7.95446,0.116768
+650,97.5796,10.248,8.39888,0.06768,0.914688,0.00832,0.005792,0.029312,0.098176,0.098496,7.06301,0.113408
+651,108.222,9.24023,8.6087,0.068576,0.777184,0.007296,0.006016,0.030048,0.096544,0.098304,7.41203,0.112704
+652,99.3162,10.0688,9.12589,0.071008,0.7656,0.00832,0.005088,0.030208,0.112064,0.098976,7.92173,0.112896
+653,98.2537,10.1777,8.34874,0.0688,0.840544,0.008192,0.005824,0.028992,0.098048,0.096608,7.08787,0.113856
+654,106.169,9.41895,8.66726,0.068448,0.787776,0.008128,0.005024,0.029856,0.098368,0.098784,7.45453,0.116352
+655,91.7933,10.894,9.0887,0.069632,1.18374,0.057344,0.017696,0.031456,0.097504,0.428864,7.07376,0.128704
+656,112.75,8.86914,8.3481,0.068096,0.854016,0.008192,0.005728,0.028928,0.098464,0.098304,7.07174,0.114624
+657,105.769,9.45459,8.64781,0.069632,0.765312,0.008352,0.005632,0.029184,0.096768,0.098304,7.46083,0.113792
+658,101.562,9.84619,8.26541,0.070176,0.770048,0.008064,0.005856,0.028928,0.097696,0.098336,7.07229,0.114016
+659,103.132,9.69629,8.35616,0.069216,0.864608,0.008288,0.0056,0.029056,0.09808,0.098528,7.06771,0.115072
+660,103.346,9.67627,8.4951,0.069632,0.999456,0.00816,0.006144,0.028672,0.098336,0.099776,7.07184,0.113088
+661,108.959,9.17773,9.35904,0.069664,0.997344,0.008096,0.005568,0.032864,0.100928,0.106496,7.92166,0.116416
+662,93.7471,10.667,8.3873,0.0704,0.88224,0.0168,0.00592,0.028896,0.098304,0.09824,7.07309,0.113408
+663,96.5855,10.3535,8.39651,0.069632,0.888096,0.008032,0.004992,0.038912,0.096256,0.098304,7.07789,0.1144
+664,118.945,8.40723,9.13862,0.066016,0.792544,0.008192,0.006144,0.028672,0.098336,0.098272,7.92371,0.116736
+665,100.669,9.93359,8.25549,0.069504,0.757888,0.008224,0.006112,0.028672,0.09792,0.098688,7.07498,0.113504
+666,106.318,9.40576,9.71782,0.068896,0.750304,0.00752,0.005152,0.029568,0.099072,0.100128,8.54365,0.113536
+667,95.6205,10.458,9.484,0.07136,0.759488,0.00832,0.00656,0.028768,0.098336,0.097824,8.30051,0.112832
+668,94.5871,10.5723,8.25344,0.07168,0.75088,0.008384,0.005824,0.028992,0.10208,0.105312,7.0656,0.114688
+669,110.078,9.08447,8.64771,0.0696,0.75344,0.008032,0.006592,0.02864,0.097952,0.10064,7.46707,0.115744
+670,93.7042,10.6719,9.00723,0.084384,1.50227,0.007296,0.005984,0.02864,0.098304,0.098304,7.06765,0.1144
+671,97.9482,10.2095,8.80538,0.071424,0.899328,0.008288,0.006048,0.0424,0.096832,0.098016,7.46698,0.116064
+672,111.214,8.9917,9.05219,0.06912,0.8136,0.008384,0.00592,0.036736,0.097664,0.424704,7.48339,0.112672
+673,103.132,9.69629,8.70803,0.069568,0.796736,0.008224,0.005632,0.029024,0.104576,0.10448,7.47693,0.112864
+674,90.8003,11.0132,9.13613,0.069632,0.773504,0.006816,0.006112,0.028672,0.100096,0.100224,7.93843,0.11264
+675,111.123,8.99902,8.33309,0.069536,0.837728,0.008192,0.006048,0.028768,0.097792,0.0984,7.07216,0.114464
+676,103.325,9.67822,9.15552,0.068576,0.80416,0.00832,0.005792,0.028896,0.098528,0.098784,7.92902,0.11344
+677,99.9073,10.0093,8.25139,0.069472,0.765696,0.008032,0.004704,0.02992,0.097024,0.098016,7.06486,0.113664
+678,103.137,9.6958,9.40986,0.069312,1.04438,0.007616,0.005088,0.02976,0.097216,0.09968,7.94077,0.116032
+679,92.863,10.7686,8.47882,0.06944,0.984704,0.007104,0.00608,0.028768,0.096224,0.106496,7.0656,0.1144
+680,111.353,8.98047,9.55392,0.069632,0.774144,0.007744,0.005824,0.02896,0.096736,0.098304,8.35789,0.114688
+681,96.4582,10.3672,8.6672,0.071552,0.772224,0.008192,0.00576,0.029056,0.097824,0.098272,7.47162,0.112704
+682,99.244,10.0762,8.36387,0.069056,0.877056,0.007936,0.005824,0.02912,0.096416,0.098208,7.06566,0.114592
+683,107.721,9.2832,8.75114,0.069632,0.841728,0.008224,0.006112,0.0288,0.112512,0.098336,7.46902,0.116768
+684,102.426,9.76318,8.48979,0.068416,0.991136,0.010336,0.006144,0.032512,0.09856,0.098304,7.06973,0.114656
+685,106.097,9.42529,8.75235,0.069632,0.814912,0.00832,0.005632,0.037344,0.096384,0.106464,7.49978,0.113888
+686,104.5,9.56934,9.12432,0.06992,0.761568,0.008352,0.005792,0.029088,0.098304,0.1008,7.93603,0.114464
+687,95.7054,10.4487,8.32035,0.069504,0.808192,0.008064,0.014976,0.028928,0.096416,0.104416,7.07581,0.114048
+688,109.589,9.125,9.49917,0.066112,0.763872,0.008064,0.005792,0.029152,0.098304,0.098304,8.31626,0.113312
+689,89.3036,11.1978,8.98925,0.06816,1.49094,0.008192,0.005984,0.028832,0.097376,0.097216,7.07786,0.114688
+690,106.34,9.40381,9.2448,0.071488,0.84608,0.008384,0.005792,0.0288,0.098336,0.09872,7.97034,0.116864
+691,98.4237,10.1602,8.25734,0.068288,0.763296,0.008576,0.005632,0.029184,0.09648,0.098016,7.07402,0.113856
+692,107.914,9.2666,9.3512,0.069216,0.754112,0.00816,0.006112,0.028704,0.098208,0.346208,7.92576,0.11472
+693,99.4271,10.0576,8.63437,0.070752,0.749824,0.008352,0.0048,0.030016,0.098816,0.09824,7.46054,0.113024
+694,100.098,9.99023,8.25654,0.071712,0.76128,0.008032,0.005152,0.029664,0.096992,0.098272,7.07126,0.114176
+695,108.154,9.24609,8.63875,0.069888,0.744832,0.006784,0.006144,0.028672,0.09808,0.0984,7.46918,0.116768
+696,99.6448,10.0356,8.97085,0.068192,0.752736,0.007296,0.005952,0.029696,0.097248,0.414848,7.48208,0.1128
+697,106.7,9.37207,8.6529,0.069216,0.746272,0.008192,0.006176,0.02864,0.098272,0.10448,7.47725,0.1144
+698,95.7457,10.4443,9.33421,0.069664,0.98032,0.008384,0.005824,0.02896,0.100352,0.098816,7.92778,0.114112
+699,104.389,9.57959,8.26154,0.069632,0.753504,0.008352,0.005568,0.029152,0.098176,0.098528,7.08403,0.114592
+700,101.336,9.86816,9.21226,0.065824,0.88064,0.008192,0.006144,0.030528,0.098176,0.10176,7.90624,0.114752
+701,97.7566,10.2295,8.26368,0.069536,0.752736,0.007296,0.006016,0.029856,0.096896,0.108768,7.07923,0.113344
+702,109.771,9.10986,9.39581,0.06912,1.05856,0.008064,0.004992,0.029888,0.098112,0.09728,7.91347,0.11632
+703,98.5516,10.147,8.65283,0.071712,0.759392,0.008032,0.0048,0.03008,0.096736,0.107968,7.46093,0.113184
+704,101.121,9.88916,8.28211,0.07168,0.787648,0.008256,0.004864,0.028768,0.098112,0.0984,7.06714,0.117248
+705,110.955,9.0127,8.63792,0.069664,0.753344,0.008032,0.005568,0.027648,0.098336,0.10032,7.46016,0.114848
+706,98.7369,10.1279,8.76944,0.069632,1.27715,0.00832,0.005824,0.031648,0.097856,0.098464,7.06595,0.114592
+707,102.328,9.77246,8.76765,0.069248,0.895168,0.00768,0.004928,0.029728,0.097248,0.098304,7.45062,0.11472
+708,104.272,9.59033,9.16378,0.075232,0.833824,0.00832,0.005824,0.02912,0.098304,0.098304,7.90118,0.113664
+709,103.267,9.68359,8.24886,0.069632,0.757472,0.008064,0.005568,0.02896,0.098112,0.097184,7.06966,0.114208
+710,106.13,9.42236,9.14432,0.069632,0.78848,0.008192,0.0072,0.029024,0.098944,0.098304,7.92986,0.114688
+711,91.4612,10.9336,8.29251,0.069088,0.809216,0.006592,0.006144,0.028672,0.097856,0.098272,7.06342,0.113248
+712,114.901,8.70312,9.40867,0.069056,1.06566,0.007808,0.005824,0.028992,0.098336,0.098368,7.91974,0.11488
+713,98.6227,10.1396,8.66339,0.070656,0.777824,0.008,0.004704,0.030016,0.096928,0.098304,7.46291,0.114048
+714,101.046,9.89648,8.26611,0.070976,0.766976,0.008192,0.006144,0.028672,0.096352,0.09824,7.07498,0.115584
+715,110.238,9.07129,8.65968,0.070016,0.767488,0.00832,0.004864,0.029856,0.09856,0.09888,7.46864,0.113056
+716,95.1275,10.5122,9.0361,0.06928,1.5225,0.016384,0.00608,0.028736,0.098272,0.098336,7.08198,0.114528
+717,108.983,9.17578,8.63232,0.069312,0.745248,0.008096,0.004736,0.030208,0.098016,0.098784,7.46323,0.114688
+718,102.59,9.74756,9.19347,0.06912,0.807168,0.0064,0.005984,0.030816,0.098368,0.1,7.96266,0.11296
+719,84.842,11.7866,8.77558,0.06848,0.8712,0.007072,0.02048,0.02976,0.100864,0.098752,7.46496,0.114016
+720,125.352,7.97754,9.14266,0.069664,0.755776,0.00832,0.005824,0.028896,0.098688,0.098304,7.96266,0.114528
+721,95.5447,10.4663,9.91674,0.068,0.76112,0.007936,0.005056,0.029792,0.096416,0.097024,8.73677,0.114624
+722,92.2523,10.8398,9.10131,0.069632,0.749568,0.008192,0.00608,0.028736,0.09936,0.098304,7.92874,0.112704
+723,98.6893,10.1328,8.29267,0.068928,0.799744,0.008192,0.006144,0.029856,0.096896,0.097824,7.0704,0.114688
+724,99.0904,10.0918,9.16688,0.065568,0.824384,0.007264,0.005984,0.028672,0.109664,0.09888,7.91318,0.11328
+725,107.018,9.34424,8.26726,0.069184,0.769568,0.008288,0.004928,0.029696,0.09728,0.097952,7.07619,0.114176
+726,108.832,9.18848,9.22829,0.069312,0.864576,0.008192,0.006144,0.03072,0.105536,0.101312,7.9289,0.1136
+727,98.9611,10.105,8.64256,0.071168,0.752128,0.008192,0.005856,0.02864,0.096576,0.098304,7.46874,0.11296
+728,104.661,9.55469,8.30947,0.068256,0.816864,0.00832,0.005824,0.029184,0.09824,0.09776,7.07216,0.112864
+729,106.13,9.42236,8.26573,0.069664,0.767968,0.008192,0.005664,0.029152,0.097856,0.098656,7.07312,0.115456
+730,108.803,9.19092,8.35213,0.071072,0.84064,0.008192,0.007328,0.029344,0.097504,0.097248,7.08176,0.11904
+731,104.591,9.56104,9.53757,0.069632,0.794624,0.008192,0.006144,0.028672,0.098176,0.098208,8.32054,0.113376
+732,89.6437,11.1553,8.77776,0.071168,0.901632,0.00928,0.005056,0.029792,0.097184,0.098304,7.45203,0.113312
+733,102.842,9.72363,8.60029,0.068352,1.1097,0.007584,0.004992,0.029952,0.097056,0.09824,7.06973,0.114688
+734,104.564,9.56348,9.16864,0.069696,0.821216,0.008224,0.00608,0.028736,0.098048,0.098592,7.92368,0.114368
+735,99.1527,10.0854,8.33114,0.069632,0.808672,0.008352,0.005632,0.029184,0.09648,0.098208,7.10042,0.11456
+736,100.852,9.91553,9.45971,0.071008,1.08816,0.008192,0.006112,0.028704,0.09984,0.098752,7.94378,0.115168
+737,94.8631,10.5415,8.33741,0.06848,0.847872,0.00832,0.006016,0.028672,0.098048,0.09824,7.06762,0.114144
+738,108.142,9.24707,9.32278,0.068192,0.950272,0.007968,0.005888,0.0312,0.105536,0.100928,7.93843,0.114368
+739,97.1399,10.2944,8.66669,0.069632,0.794464,0.008064,0.0056,0.028928,0.096832,0.098304,7.45203,0.112832
+740,96.2225,10.3926,8.41162,0.06784,0.896704,0.008352,0.004864,0.029888,0.098432,0.09872,7.09178,0.11504
+741,111.626,8.9585,8.68531,0.069728,0.804896,0.007552,0.004832,0.02976,0.097216,0.100384,7.45674,0.114208
+742,99.5286,10.0474,8.97229,0.069632,1.12355,0.0312,0.005728,0.031456,0.099616,0.430816,7.06765,0.11264
+743,94.7315,10.5562,8.69642,0.076224,0.808864,0.008064,0.005568,0.029152,0.097728,0.097216,7.45843,0.115168
+744,108.188,9.24316,9.18122,0.071104,0.829344,0.008064,0.005056,0.029824,0.098272,0.098144,7.92874,0.112672
+745,98.5231,10.1499,8.67744,0.06928,0.799744,0.008224,0.006112,0.02976,0.097184,0.098336,7.45472,0.11408
+746,102.405,9.76514,9.16051,0.070208,0.806464,0.00832,0.005792,0.029184,0.09824,0.098592,7.92986,0.113856
+747,99.4996,10.0503,8.28198,0.067872,0.784384,0.007616,0.004672,0.029728,0.097024,0.098528,7.07754,0.114624
+748,101.987,9.80518,9.21194,0.067392,0.835776,0.008192,0.005856,0.02896,0.1,0.100288,7.95248,0.112992
+749,98.4331,10.1592,8.28518,0.068576,0.788448,0.008064,0.005632,0.028864,0.096736,0.099808,7.07552,0.113536
+750,105.35,9.49219,9.17946,0.068928,0.792896,0.008064,0.005056,0.029856,0.099008,0.100352,7.95978,0.11552
+751,97.8687,10.2178,8.33296,0.069184,0.83616,0.008192,0.005792,0.029024,0.096256,0.098304,7.07584,0.114208
+752,108.555,9.21191,9.53958,0.069248,0.804992,0.007552,0.004992,0.030304,0.096672,0.098304,8.31411,0.113408
+753,93.1078,10.7402,8.32515,0.070784,0.827424,0.007264,0.00592,0.02864,0.098304,0.09808,7.07408,0.114656
+754,109.478,9.13428,8.276,0.069632,0.784096,0.008064,0.005856,0.029088,0.0976,0.0984,7.06982,0.11344
+755,108.108,9.25,9.15456,0.07168,0.79392,0.006848,0.006144,0.028704,0.098272,0.098304,7.93395,0.116736
+756,98.419,10.1606,8.28278,0.068224,0.795936,0.008064,0.005056,0.030304,0.096576,0.098304,7.0671,0.113216
+757,109.209,9.15674,8.62003,0.069632,0.786112,0.008032,0.005632,0.029056,0.096864,0.098304,7.40762,0.118784
+758,104.891,9.53369,9.12032,0.069408,0.782144,0.007296,0.005984,0.029824,0.0992,0.100352,7.91283,0.11328
+759,96.4173,10.3716,8.31843,0.069632,0.820736,0.007776,0.005024,0.029824,0.097152,0.098304,7.07584,0.114144
+760,108.567,9.21094,8.67754,0.06848,0.79872,0.008192,0.006112,0.028704,0.098304,0.099328,7.45517,0.114528
+761,103.413,9.66992,9.11078,0.069248,0.772224,0.008064,0.005792,0.029312,0.097536,0.097152,7.91747,0.113984
+762,95.8577,10.4321,8.41965,0.069856,0.914144,0.016352,0.006144,0.028736,0.102144,0.104672,7.06291,0.114688
+763,109.163,9.16064,8.67942,0.069664,0.784352,0.008192,0.005984,0.028832,0.09936,0.111584,7.45805,0.113408
+764,99.3692,10.0635,8.77667,0.068416,1.27587,0.008192,0.006144,0.032512,0.09808,0.098272,7.07613,0.113056
+765,107.795,9.27686,8.6593,0.069344,0.760032,0.008064,0.0048,0.030016,0.098368,0.09792,7.47606,0.114688
+766,103.413,9.66992,10.3301,0.0696,0.763936,0.009536,0.006112,0.029024,0.098048,0.09888,9.14182,0.11312
+767,88.1012,11.3506,8.29034,0.076032,0.782336,0.00784,0.005568,0.029152,0.098496,0.098496,7.07715,0.115264
+768,109.519,9.13086,8.24138,0.070208,0.749344,0.00752,0.005088,0.029856,0.097024,0.098304,7.0697,0.114336
+769,107.518,9.30078,8.26163,0.069472,0.755872,0.008096,0.005632,0.029184,0.096352,0.098464,7.08506,0.113504
+770,109.566,9.12695,9.10746,0.067232,0.751648,0.00816,0.006432,0.028736,0.098336,0.098272,7.93302,0.115616
+771,98.7559,10.126,8.30259,0.069184,0.803264,0.008224,0.00576,0.029024,0.097728,0.098848,7.07725,0.113312
+772,107.574,9.2959,8.5047,0.069664,0.755424,0.01664,0.005952,0.028864,0.098304,0.09968,7.07651,0.353664
+773,106.175,9.41846,9.14893,0.068288,0.780128,0.00816,0.006144,0.028672,0.098304,0.099392,7.94515,0.114688
+774,98.9946,10.1016,8.23453,0.069632,0.753664,0.008352,0.005984,0.030176,0.098112,0.09808,7.056,0.114528
+775,106.279,9.40918,8.78333,0.069056,0.887584,0.008192,0.006112,0.028704,0.098304,0.098304,7.47114,0.115936
+776,106.968,9.34863,9.09722,0.071488,0.755904,0.007776,0.005696,0.028992,0.0968,0.099424,7.91834,0.1128
+777,97.496,10.2568,9.53098,0.069632,0.806912,0.008192,0.006176,0.02864,0.0976,0.098976,8.29997,0.11488
+778,96.5855,10.3535,8.63712,0.069312,0.758784,0.008192,0.006112,0.028672,0.098304,0.100352,7.45434,0.113056
+779,101.855,9.81787,8.2575,0.067776,0.763808,0.008288,0.005696,0.029152,0.097952,0.097984,7.07238,0.114464
+780,108.584,9.20947,8.24934,0.07584,0.7536,0.008384,0.005952,0.028672,0.098336,0.099424,7.06445,0.114688
+781,109.854,9.10303,8.63027,0.07168,0.74336,0.00752,0.004992,0.029792,0.097024,0.098304,7.46291,0.114688
+782,101.226,9.87891,8.26877,0.070592,0.783968,0.00832,0.005824,0.029024,0.09856,0.098304,7.06086,0.113312
+783,94.8851,10.5391,8.3304,0.069632,0.817184,0.008032,0.00544,0.028992,0.09792,0.098784,7.08854,0.115872
+784,123.27,8.1123,8.31488,0.07168,0.827072,0.00832,0.005824,0.029088,0.097728,0.098496,7.06198,0.114688
+785,103.252,9.68506,9.35731,0.069248,0.774528,0.008192,0.006144,0.028672,0.098304,0.353504,7.90403,0.114688
+786,99.6739,10.0327,8.25344,0.069632,0.749568,0.008192,0.007328,0.029216,0.100384,0.100256,7.07533,0.113536
+787,102.528,9.75342,8.37718,0.075936,0.881344,0.008192,0.006144,0.028672,0.097536,0.097056,7.0689,0.113408
+788,105.231,9.50293,9.21773,0.08128,0.838272,0.008192,0.006144,0.028672,0.104032,0.09872,7.93798,0.114432
+789,101.411,9.86084,8.25574,0.068288,0.761824,0.008192,0.006016,0.0288,0.097408,0.098496,7.07245,0.114272
+790,108,9.25928,8.28038,0.068128,0.791776,0.008064,0.005056,0.029792,0.0984,0.098752,7.06576,0.114656
+791,108.211,9.24121,9.15651,0.069632,0.74752,0.008192,0.00608,0.028736,0.098176,0.098432,7.98515,0.114592
+792,87.4242,11.4385,8.2617,0.06896,0.760512,0.00816,0.005888,0.02896,0.098336,0.099552,7.07808,0.113248
+793,114.362,8.74414,9.80899,0.069664,1.0424,0.008192,0.006144,0.028672,0.098304,0.098304,8.3415,0.115808
+794,95.6205,10.458,8.53459,0.06816,1.04154,0.010752,0.005856,0.031392,0.098304,0.098464,7.06544,0.114688
+795,108.498,9.2168,8.24717,0.06928,0.751968,0.008224,0.005696,0.028928,0.098464,0.105504,7.06454,0.11456
+796,107.113,9.33594,8.78227,0.069568,0.873344,0.008192,0.016384,0.030208,0.100032,0.099136,7.4711,0.114304
+797,98.3292,10.1699,8.93997,0.068032,1.44592,0.00816,0.005632,0.02912,0.097568,0.098496,7.07235,0.114688
+798,106.856,9.3584,8.28544,0.075776,0.763904,0.008192,0.006176,0.030144,0.098656,0.112832,7.07491,0.114848
+799,110.883,9.01855,8.64448,0.070528,0.751072,0.008032,0.0048,0.029984,0.097024,0.097824,7.47155,0.113664
+800,99.8343,10.0166,8.27338,0.071168,0.761632,0.006912,0.006112,0.028672,0.098304,0.098304,7.08813,0.114144
+801,105.949,9.43848,8.30467,0.069632,0.810432,0.008032,0.004832,0.030112,0.09696,0.09824,7.06925,0.117184
+802,103.917,9.62305,9.4761,0.067616,0.800192,0.008064,0.00592,0.029088,0.098784,0.098304,7.90854,0.459584
+803,95.2027,10.5039,9.18742,0.073952,0.7768,0.007648,0.00464,0.030144,0.096992,0.10784,7.97341,0.116
+804,97.1537,10.293,9.56621,0.069632,0.894976,0.00784,0.005856,0.02896,0.098048,0.097952,7.90624,0.456704
+805,94.6133,10.5693,9.20371,0.075808,0.802784,0.008192,0.005728,0.028896,0.10464,0.098304,7.96467,0.114688
+806,94.8939,10.5381,9.62326,0.06896,0.853984,0.014816,0.005856,0.029088,0.098048,0.098752,8.34061,0.113152
+807,90.2362,11.082,8.69581,0.084,0.8,0.00688,0.006176,0.02864,0.098144,0.098464,7.45792,0.115584
+808,96.313,10.3828,8.82608,0.069408,1.33142,0.007584,0.005792,0.031488,0.100576,0.098272,7.06714,0.1144
+809,105.285,9.49805,9.1536,0.069632,0.811008,0.008064,0.005568,0.029248,0.097696,0.098848,7.9168,0.116736
+810,91.5757,10.9199,9.62486,0.069248,0.874944,0.008192,0.016384,0.028672,0.09936,0.098496,8.31568,0.113888
+811,94.5871,10.5723,9.14227,0.066656,0.78912,0.008096,0.005568,0.028992,0.096896,0.098336,7.93187,0.116736
+812,98.6322,10.1387,8.3047,0.069632,0.80448,0.008448,0.005824,0.028992,0.097504,0.109088,7.06778,0.11296
+813,102.811,9.72656,8.68579,0.068416,0.802176,0.006816,0.006112,0.030016,0.10096,0.0984,7.4583,0.114592
+814,108.291,9.23438,9.1136,0.069632,0.775744,0.00816,0.005824,0.02944,0.098336,0.098304,7.91517,0.112992
+815,96.9238,10.3174,8.26966,0.069632,0.771392,0.00688,0.006112,0.028672,0.09808,0.098528,7.07696,0.113408
+816,104.95,9.52832,8.80278,0.069408,0.921312,0.007296,0.005984,0.028736,0.099328,0.099264,7.45779,0.113664
+817,99.2056,10.0801,8.75098,0.068384,1.26157,0.008288,0.006048,0.032128,0.096896,0.098336,7.06506,0.114272
+818,106.268,9.41016,8.2944,0.06912,0.80096,0.008064,0.005888,0.029312,0.098368,0.098304,7.0697,0.114688
+819,108.809,9.19043,8.66918,0.069632,0.783936,0.008064,0.0048,0.030016,0.09888,0.100352,7.46006,0.11344
+820,94.0226,10.6357,8.98406,0.069024,1.49773,0.008384,0.005824,0.029024,0.09744,0.098592,7.06413,0.11392
+821,110.523,9.04785,8.66922,0.069312,0.764224,0.008192,0.005696,0.02912,0.097824,0.099936,7.47792,0.116992
+822,104.629,9.55762,9.10525,0.069472,0.764032,0.008224,0.00592,0.028896,0.098336,0.098304,7.91952,0.112544
+823,96.9238,10.3174,9.38614,0.069056,1.03498,0.008224,0.00608,0.028672,0.098144,0.098464,7.92726,0.115264
+824,99.7759,10.0225,8.26986,0.07168,0.765312,0.008032,0.005056,0.029824,0.104544,0.09872,7.07197,0.11472
+825,103.696,9.64355,8.28646,0.069312,0.795616,0.008128,0.005632,0.029216,0.097536,0.097056,7.0697,0.114272
+826,110.108,9.08203,9.19408,0.069472,0.815872,0.008192,0.006112,0.028704,0.098304,0.100192,7.95235,0.11488
+827,99.8051,10.0195,8.26592,0.068384,0.76704,0.00832,0.00496,0.028672,0.098272,0.097856,7.07798,0.114432
+828,108.867,9.18555,8.65875,0.069632,0.750688,0.007296,0.00592,0.030144,0.105024,0.104448,7.4711,0.114496
+829,104.107,9.60547,9.2265,0.069664,0.85424,0.008192,0.006144,0.028672,0.100288,0.099808,7.94653,0.11296
+830,94.1349,10.623,8.33891,0.067744,0.838944,0.00816,0.005056,0.029856,0.10496,0.098496,7.07171,0.113984
+831,108.498,9.2168,8.63373,0.069312,0.739968,0.007808,0.0056,0.029216,0.098272,0.098016,7.46918,0.116352
+832,103.184,9.69141,8.88934,0.068608,1.05472,0.036864,0.006144,0.032736,0.097664,0.41232,7.06714,0.113152
+833,99.1192,10.0889,9.46179,0.069632,1.10368,0.008032,0.00576,0.029248,0.096448,0.098304,7.93597,0.11472
+834,94.6483,10.5654,8.34333,0.06912,0.845728,0.006784,0.01632,0.032096,0.096992,0.099456,7.06237,0.114464
+835,107.495,9.30273,9.53347,0.069632,0.774144,0.008224,0.005696,0.029088,0.097536,0.097024,8.33741,0.11472
+836,94.1782,10.6182,8.3153,0.07008,0.800736,0.008192,0.00608,0.028736,0.108544,0.108,7.07146,0.113472
+837,96.1954,10.3955,8.40666,0.068864,0.909536,0.008128,0.004704,0.03056,0.097504,0.097248,7.07574,0.114368
+838,121.313,8.24316,9.09312,0.065568,0.751584,0.009248,0.005088,0.029856,0.098688,0.099808,7.91654,0.116736
+839,90.901,11.001,8.39952,0.068288,0.880608,0.008,0.014528,0.030496,0.102208,0.106432,7.07427,0.114688
+840,114.682,8.71973,8.71325,0.069056,0.808928,0.008064,0.004832,0.02992,0.1032,0.106208,7.46938,0.113664
+841,104.714,9.5498,9.10381,0.068384,0.753664,0.008064,0.006272,0.028672,0.09776,0.099008,7.92928,0.112704
+842,93.7214,10.6699,8.27779,0.067936,0.792608,0.008192,0.006112,0.028672,0.098336,0.098016,7.06381,0.114112
+843,108.486,9.21777,8.67808,0.068288,0.802816,0.008192,0.006048,0.028768,0.098336,0.098432,7.45194,0.115264
+844,94.8675,10.541,8.51603,0.069056,1.01834,0.008704,0.00608,0.031872,0.0984,0.099168,7.07123,0.113184
+845,110.703,9.0332,8.29235,0.069632,0.796064,0.008064,0.004832,0.030496,0.100608,0.098272,7.0697,0.114688
+846,107.903,9.26758,8.68496,0.069664,0.804864,0.00816,0.006144,0.028736,0.100288,0.099744,7.4545,0.112864
+847,92.0201,10.8672,9.06307,0.068512,1.53126,0.0208,0.0056,0.0288,0.09696,0.108576,7.08147,0.121088
+848,109.227,9.15527,8.25827,0.069472,0.75456,0.00752,0.005824,0.02944,0.09856,0.099712,7.07642,0.116768
+849,102.698,9.7373,8.42957,0.06944,0.919968,0.008192,0.005888,0.028896,0.114592,0.098432,7.06966,0.114496
+850,101.759,9.82715,9.44333,0.069664,1.09082,0.008096,0.005088,0.03024,0.098624,0.098304,7.92781,0.114688
+851,99.3307,10.0674,8.27226,0.070016,0.774208,0.008128,0.005952,0.028864,0.097888,0.098016,7.07571,0.113472
+852,107.983,9.26074,8.26957,0.068384,0.775744,0.008032,0.005856,0.02896,0.09696,0.098208,7.07363,0.113792
+853,108.913,9.18164,9.13485,0.066304,0.769536,0.008032,0.004832,0.02992,0.097024,0.100288,7.9456,0.113312
+854,98.4805,10.1543,8.28291,0.069408,0.787456,0.008192,0.005984,0.028832,0.098304,0.098304,7.07174,0.114688
+855,106.401,9.39844,9.65341,0.069568,0.900352,0.00832,0.004832,0.032736,0.101536,0.098912,8.32291,0.11424
+856,95.3179,10.4912,9.1607,0.07168,0.78848,0.008224,0.006016,0.028768,0.098144,0.098464,7.94829,0.11264
+857,96.6129,10.3506,8.34355,0.069632,0.831488,0.008224,0.005952,0.028832,0.107712,0.098208,7.07818,0.115328
+858,104.076,9.6084,8.66774,0.07024,0.774144,0.008192,0.005856,0.02896,0.098304,0.102176,7.46675,0.11312
+859,103.591,9.65332,8.31907,0.067712,0.817184,0.00816,0.006144,0.028672,0.098304,0.097856,7.08038,0.114656
+860,107.789,9.27734,8.26982,0.077824,0.769312,0.008064,0.005088,0.02992,0.098688,0.100032,7.06614,0.114752
+861,106.945,9.35059,8.30054,0.070688,0.798976,0.008064,0.00496,0.028672,0.098336,0.098048,7.07811,0.114688
+862,103.091,9.7002,9.63107,0.068928,0.874624,0.01696,0.006144,0.036864,0.098304,0.110592,8.30464,0.114016
+863,95.6205,10.458,8.30669,0.069632,0.8048,0.008032,0.005568,0.029056,0.097984,0.10272,7.07526,0.113632
+864,107.371,9.31348,8.30054,0.069632,0.806848,0.008064,0.005792,0.029056,0.097888,0.098208,7.07037,0.114688
+865,104.182,9.59863,9.4593,0.069632,1.07846,0.008064,0.005056,0.029728,0.097248,0.098304,7.95648,0.11632
+866,95.8173,10.4365,9.04746,0.069504,0.88624,0.006816,0.006144,0.028672,0.098336,0.098272,7.46237,0.391104
+867,95.2027,10.5039,8.71763,0.07168,0.829344,0.008288,0.005632,0.029056,0.097504,0.098208,7.46378,0.114144
+868,101.226,9.87891,9.19005,0.070464,0.843776,0.008192,0.006176,0.029792,0.097152,0.101952,7.9192,0.113344
+869,106.334,9.4043,8.26394,0.068,0.769216,0.00704,0.00592,0.028672,0.100448,0.098208,7.07376,0.112672
+870,107.507,9.30176,9.14381,0.067648,0.804896,0.008384,0.007936,0.028704,0.098336,0.100064,7.9127,0.115136
+871,97.5982,10.2461,8.2559,0.06928,0.760736,0.008032,0.004352,0.030688,0.09728,0.09728,7.07376,0.114496
+872,109.262,9.15234,8.65501,0.068512,0.761856,0.008224,0.00592,0.028864,0.098048,0.09856,7.47091,0.114112
+873,103.487,9.66309,9.14803,0.069952,0.763968,0.008192,0.005632,0.029152,0.104512,0.098272,7.95446,0.113888
+874,92.9473,10.7588,8.33562,0.068096,0.845856,0.008128,0.005568,0.029312,0.09792,0.098272,7.06803,0.114432
+875,116.988,8.54785,8.65488,0.069632,0.771808,0.007616,0.004992,0.02864,0.098304,0.098304,7.46086,0.11472
+876,103.247,9.68555,9.00611,0.068608,0.787648,0.008384,0.005824,0.029088,0.098272,0.09888,7.79642,0.112992
+877,101.186,9.88281,8.65114,0.069056,0.762688,0.008096,0.0056,0.02944,0.098304,0.098304,7.46637,0.11328
+878,103.77,9.63672,9.49248,0.070688,0.763968,0.008512,0.004928,0.029952,0.098848,0.099328,8.30358,0.112672
+879,93.4136,10.7051,8.29101,0.070304,0.784384,0.008192,0.006144,0.028672,0.09744,0.098624,7.08048,0.116768
+880,108.994,9.1748,8.25958,0.069472,0.766112,0.008192,0.006176,0.02864,0.099392,0.099296,7.06557,0.116736
+881,107.733,9.28223,8.28384,0.078016,0.780288,0.007776,0.0056,0.028992,0.096736,0.098048,7.07421,0.114176
+882,109.273,9.15137,9.5064,0.0696,0.76768,0.007968,0.005824,0.028832,0.098368,0.096928,8.31693,0.114272
+883,95.2381,10.5,8.26378,0.069632,0.768032,0.008256,0.00608,0.02864,0.09824,0.098368,7.07325,0.11328
+884,108.257,9.2373,8.2608,0.069632,0.761856,0.008192,0.005888,0.028928,0.098272,0.098336,7.07584,0.113856
+885,104.875,9.53516,9.37798,0.069248,1.04211,0.008128,0.005056,0.029696,0.09728,0.09792,7.91386,0.114688
+886,99.7856,10.0215,8.25226,0.068512,0.763904,0.00816,0.006048,0.028768,0.09808,0.09776,7.06637,0.114656
+887,104.33,9.58496,8.33581,0.069216,0.836448,0.008192,0.00576,0.028928,0.096416,0.097824,7.07834,0.114688
+888,113.475,8.8125,9.10954,0.069632,0.75776,0.008224,0.00592,0.028864,0.099936,0.098528,7.92576,0.114912
+889,98.3197,10.1709,9.53168,0.069088,0.813888,0.00816,0.00576,0.029024,0.097952,0.098688,8.29645,0.112672
+890,96.4763,10.3652,8.64298,0.068096,0.769184,0.007008,0.006144,0.028672,0.098304,0.099424,7.45091,0.115232
+891,102.739,9.7334,8.82893,0.069344,1.06637,0.01936,0.0056,0.03232,0.09728,0.345696,7.0783,0.114656
+892,102.318,9.77344,8.27094,0.069632,0.761856,0.008192,0.006144,0.02992,0.10464,0.102528,7.07363,0.1144
+893,108.913,9.18164,8.63318,0.06848,0.754976,0.008064,0.004928,0.028736,0.100032,0.100384,7.45395,0.113632
+894,97.1076,10.2979,8.94163,0.06944,1.44928,0.007136,0.006144,0.028672,0.097856,0.098112,7.07136,0.113632
+895,106.901,9.35449,8.35174,0.071392,0.845888,0.008352,0.005824,0.028896,0.09648,0.09952,7.08061,0.114784
+896,110.167,9.07715,8.66509,0.071456,0.784,0.008032,0.00496,0.030048,0.098496,0.098048,7.45715,0.112896
+897,100.718,9.92871,8.2743,0.070592,0.76592,0.008192,0.005824,0.028992,0.097984,0.098272,7.08438,0.114144
+898,109.192,9.1582,8.29645,0.069504,0.802944,0.008192,0.006048,0.028768,0.098304,0.10016,7.06784,0.114688
+899,106.103,9.4248,8.97462,0.069792,0.784512,0.008224,0.005984,0.0288,0.096256,0.099552,7.46166,0.41984
+900,99.8343,10.0166,8.32419,0.07168,0.815104,0.008224,0.006112,0.029888,0.09712,0.106464,7.07546,0.114144
+901,109.53,9.12988,8.28176,0.070752,0.773024,0.008192,0.00608,0.028736,0.098336,0.10176,7.08019,0.114688
+902,108.417,9.22363,8.26845,0.06832,0.778048,0.00832,0.005824,0.029024,0.100384,0.098336,7.06662,0.113568
+903,108.406,9.22461,9.34102,0.069024,0.977728,0.008192,0.005824,0.03104,0.104384,0.105632,7.92464,0.11456
+904,97.9529,10.209,8.26573,0.069632,0.75744,0.008,0.005856,0.029504,0.098048,0.098272,7.0856,0.113376
+905,106.467,9.39258,8.27043,0.069376,0.76256,0.008032,0.0056,0.02896,0.096864,0.098272,7.08614,0.114624
+906,107.721,9.2832,9.09734,0.071808,0.755296,0.008064,0.005824,0.029024,0.098304,0.098272,7.91606,0.114688
+907,87.9347,11.3721,8.38784,0.069632,0.89456,0.006592,0.006112,0.030016,0.096992,0.098304,7.07142,0.114208
+908,122.767,8.14551,8.58966,0.06896,0.775168,0.008192,0.006144,0.028672,0.098304,0.108224,7.38131,0.114688
+909,104.33,9.58496,9.13203,0.0696,0.779488,0.008544,0.005664,0.029472,0.098496,0.101344,7.92592,0.113504
+910,98.0655,10.1973,8.3175,0.068192,0.818624,0.008064,0.005824,0.029344,0.09824,0.100544,7.07402,0.114656
+911,102.023,9.80176,8.6856,0.077056,0.794848,0.008064,0.004832,0.03008,0.096832,0.099744,7.45866,0.115488
+912,106.301,9.40723,9.20374,0.069632,0.84352,0.007488,0.005088,0.02976,0.098816,0.098496,7.93786,0.113088
+913,97.5331,10.2529,8.29354,0.069216,0.790944,0.008192,0.006144,0.028672,0.097568,0.09824,7.07997,0.114592
+914,108.302,9.2334,8.65536,0.07024,0.772096,0.008192,0.006144,0.028672,0.098304,0.099968,7.45856,0.113184
+915,97.209,10.2871,8.67738,0.07104,1.17824,0.008192,0.005792,0.029024,0.097824,0.097824,7.076,0.11344
+916,110.595,9.04199,8.27594,0.069376,0.771712,0.00704,0.006144,0.028672,0.098304,0.100352,7.07958,0.114752
+917,106.622,9.37891,8.74045,0.069248,0.848672,0.008192,0.005888,0.028928,0.102304,0.097632,7.4657,0.113888
+918,102.667,9.74023,8.30877,0.067616,0.813056,0.009216,0.00512,0.030432,0.097952,0.098144,7.07386,0.113376
+919,108.44,9.22168,8.27222,0.06848,0.77616,0.008192,0.005792,0.029024,0.099392,0.098784,7.06934,0.117056
+920,107.983,9.26074,9.00954,0.069344,0.819648,0.008448,0.005856,0.028928,0.09776,0.098656,7.46925,0.411648
+921,100.609,9.93945,8.2999,0.07168,0.791776,0.008064,0.005024,0.029984,0.10432,0.103104,7.07091,0.11504
+922,108.948,9.17871,8.288,0.06928,0.776032,0.00832,0.005824,0.02896,0.099936,0.10016,7.08499,0.114496
+923,101.236,9.87793,9.1607,0.067584,0.997408,0.00816,0.006144,0.028608,0.097856,0.09824,7.45648,0.400224
+924,102.482,9.75781,9.2201,0.075392,0.856192,0.008352,0.005824,0.029056,0.098368,0.098304,7.93392,0.114688
+925,94.317,10.6025,8.38336,0.068544,0.880704,0.008192,0.005952,0.028864,0.097824,0.098336,7.08038,0.11456
+926,102.39,9.7666,8.80771,0.069568,0.888896,0.02048,0.006144,0.045056,0.098304,0.098304,7.46611,0.114848
+927,102.811,9.72656,9.15306,0.070592,0.772096,0.008192,0.00592,0.028896,0.097792,0.113152,7.94214,0.114272
+928,96.7772,10.333,8.336,0.068224,0.834816,0.008064,0.005024,0.030176,0.097984,0.097088,7.06922,0.125408
+929,108.878,9.18457,8.71274,0.069664,0.815968,0.008192,0.005824,0.02896,0.098336,0.098272,7.47114,0.116384
+930,98.8417,10.1172,8.5681,0.069376,1.06522,0.017728,0.005888,0.03168,0.098336,0.098304,7.06758,0.113984
+931,107.608,9.29297,8.27702,0.069216,0.774592,0.00816,0.005952,0.028864,0.096288,0.098272,7.07994,0.115744
+932,107.484,9.30371,8.65302,0.07024,0.775808,0.008224,0.005056,0.029952,0.098272,0.098528,7.45302,0.11392
+933,101.086,9.89258,8.34106,0.069312,0.847936,0.008064,0.0048,0.02976,0.09712,0.098432,7.07152,0.114112
+934,107.597,9.29395,8.3112,0.0696,0.81552,0.008192,0.00608,0.028736,0.098304,0.098304,7.07146,0.115008
+935,106.968,9.34863,8.69581,0.069664,0.82112,0.007488,0.004896,0.029984,0.096992,0.098304,7.45389,0.113472
+936,91.6167,10.915,8.38042,0.071712,0.874464,0.008224,0.006112,0.028672,0.098336,0.102368,7.07587,0.114656
+937,119.808,8.34668,8.28835,0.0696,0.767104,0.007296,0.00592,0.028672,0.099328,0.099328,7.09632,0.114784
+938,107.518,9.30078,8.2767,0.06832,0.783648,0.00688,0.006144,0.028672,0.098304,0.098336,7.07293,0.113472
+939,106.345,9.40332,9.33907,0.06912,0.975552,0.00752,0.005024,0.031808,0.101216,0.0984,7.93578,0.114656
+940,97.7006,10.2354,8.25955,0.071136,0.76448,0.00816,0.006144,0.028672,0.098304,0.098304,7.0697,0.114656
+941,106.334,9.4043,8.31286,0.069632,0.819232,0.00816,0.006144,0.029696,0.097056,0.097536,7.07069,0.11472
+942,109.425,9.13867,9.14371,0.067584,0.776192,0.008192,0.006048,0.028768,0.098304,0.100032,7.94234,0.116256
+943,95.8084,10.4375,8.46221,0.06912,0.956928,0.008352,0.005984,0.028704,0.098304,0.098272,7.08198,0.11456
+944,109.099,9.16602,8.72179,0.06928,0.835936,0.008192,0.006144,0.028672,0.098048,0.102336,7.46067,0.112512
+945,104.8,9.54199,9.51667,0.069632,0.767424,0.008352,0.005568,0.029088,0.098432,0.098496,8.32538,0.114304
+946,94.0485,10.6328,8.26582,0.071168,0.776576,0.00832,0.005824,0.02896,0.09744,0.097216,7.06691,0.113408
+947,108.108,9.25,8.64976,0.069184,0.764256,0.008128,0.005664,0.02912,0.097952,0.09856,7.4591,0.117792
+948,103.749,9.63867,9.02147,0.069632,0.791808,0.006912,0.006176,0.02864,0.098336,0.099488,7.80781,0.112672
+949,99.6497,10.0352,8.26022,0.068224,0.767456,0.008032,0.0048,0.029888,0.09712,0.098304,7.07171,0.114688
+950,106.867,9.35742,8.69446,0.07024,0.82096,0.006528,0.006144,0.028672,0.098272,0.099648,7.45104,0.11296
+951,99.5915,10.041,8.59373,0.071008,1.10384,0.007296,0.006016,0.028672,0.09792,0.098624,7.06746,0.112896
+952,105.829,9.44922,8.28253,0.069952,0.782432,0.008224,0.006112,0.029952,0.098112,0.09888,7.07418,0.114688
+953,106.567,9.38379,8.26928,0.07168,0.759808,0.008224,0.006112,0.028672,0.098304,0.098304,7.08403,0.114144
+954,108.867,9.18555,9.54189,0.069312,0.782432,0.008352,0.00592,0.039424,0.097984,0.098368,8.32586,0.11424
+955,94.2997,10.6045,8.33462,0.07152,0.831648,0.008192,0.006144,0.028672,0.098304,0.098336,7.07709,0.11472
+956,108.82,9.18945,8.248,0.068512,0.753664,0.007968,0.005856,0.0288,0.09824,0.098496,7.072,0.114464
+957,104.522,9.56738,9.45251,0.068576,1.11821,0.008288,0.006048,0.029824,0.097152,0.098304,7.91142,0.114688
+958,93.252,10.7236,8.32448,0.068992,0.829472,0.00784,0.005056,0.029728,0.09728,0.099584,7.07248,0.114048
+959,115.134,8.68555,8.24099,0.069344,0.747648,0.00832,0.005568,0.029216,0.097664,0.09696,7.07174,0.114528
+960,108.417,9.22363,9.13818,0.069664,0.761344,0.006624,0.006144,0.029984,0.098944,0.099584,7.94918,0.116704
+961,98.9372,10.1074,8.27632,0.069152,0.784704,0.008128,0.004672,0.029824,0.097184,0.098208,7.07136,0.113088
+962,105.752,9.45605,8.67072,0.069632,0.789568,0.008352,0.005056,0.029728,0.097088,0.098304,7.45882,0.114176
+963,102.853,9.72266,9.21002,0.069824,0.839648,0.008192,0.005952,0.028864,0.09824,0.097856,7.9488,0.11264
+964,100.728,9.92773,8.2473,0.069344,0.753952,0.00816,0.005888,0.028512,0.0984,0.098336,7.07005,0.114656
+965,108.716,9.19824,8.63846,0.069632,0.75776,0.00816,0.005856,0.028992,0.097824,0.098784,7.45677,0.114688
+966,104.171,9.59961,9.11565,0.069632,0.765088,0.007008,0.006144,0.028704,0.099616,0.098368,7.9281,0.112992
+967,99.4658,10.0537,8.25894,0.069504,0.757504,0.00832,0.005568,0.02944,0.09632,0.098112,7.07808,0.116096
+968,106.401,9.39844,8.68208,0.068192,0.80448,0.008032,0.005856,0.029536,0.098272,0.098304,7.45606,0.113344
+969,99.7565,10.0244,8.93776,0.068256,1.44349,0.00832,0.005632,0.029152,0.09648,0.098336,7.0736,0.114496
+970,108.074,9.25293,8.22154,0.068448,0.741344,0.00784,0.005824,0.029344,0.098304,0.098304,7.05741,0.11472
+971,111.015,9.00781,8.24461,0.07168,0.744512,0.007104,0.006144,0.028672,0.097792,0.096832,7.07782,0.114048
+972,107.091,9.33789,9.47491,0.068448,0.751616,0.008192,0.007168,0.029152,0.0984,0.098144,8.2991,0.114688
+973,88.5124,11.2979,8.52173,0.07072,0.975648,0.01824,0.005664,0.029184,0.11504,0.102368,7.09018,0.114688
+974,108.82,9.18945,8.34358,0.070752,0.817536,0.00832,0.005856,0.039008,0.098336,0.097952,7.09258,0.113248
+975,105.328,9.49414,9.384,0.068896,1.04032,0.008352,0.004768,0.030016,0.09696,0.098304,7.91962,0.116768
+976,98.6608,10.1357,8.32294,0.069632,0.8312,0.00832,0.00592,0.029056,0.105696,0.098976,7.06067,0.113472
+977,108.855,9.18652,8.25901,0.06944,0.753248,0.006784,0.006112,0.028672,0.098272,0.098368,7.084,0.114112
+978,109.052,9.16992,9.14746,0.069632,0.782336,0.009312,0.005056,0.030528,0.098464,0.100352,7.93549,0.116288
+979,99.0233,10.0986,8.24973,0.069024,0.758528,0.00832,0.005568,0.028928,0.096672,0.098304,7.07088,0.113504
+980,101.286,9.87305,9.85187,0.068608,1.09283,0.008032,0.005088,0.040832,0.098016,0.098656,8.32458,0.115232
+981,94.6833,10.5615,8.98666,0.069376,0.766208,0.008192,0.005856,0.02896,0.097664,0.423808,7.47392,0.112672
+982,101.901,9.81348,8.23878,0.069408,0.747744,0.008192,0.005952,0.028864,0.098304,0.099712,7.06621,0.1144
+983,104.961,9.52734,8.68208,0.069984,0.798176,0.008224,0.004864,0.02992,0.09824,0.09712,7.46205,0.113504
+984,101.638,9.83887,8.34502,0.068768,0.846688,0.008032,0.005824,0.029152,0.097792,0.098656,7.0751,0.115008
+985,108.028,9.25684,8.25018,0.068384,0.751616,0.008224,0.005664,0.02912,0.098304,0.099392,7.07469,0.114784
+986,110.096,9.08301,8.23296,0.07104,0.746112,0.008064,0.006144,0.0288,0.097696,0.098752,7.06166,0.114688
+987,104.192,9.59766,9.50422,0.069632,0.792576,0.008256,0.00608,0.028672,0.097952,0.097888,8.28902,0.114144
+988,93.32,10.7158,8.2903,0.069664,0.781536,0.020704,0.005824,0.029248,0.097984,0.09856,7.07168,0.115104
+989,103.644,9.64844,8.35952,0.069344,0.842016,0.009376,0.00496,0.030144,0.096832,0.098304,7.0791,0.12944
+990,107.091,9.33789,9.14646,0.069376,0.793952,0.007264,0.006048,0.028672,0.098336,0.098304,7.9295,0.115008
+991,99.2729,10.0732,8.30054,0.069632,0.804864,0.008064,0.005568,0.02912,0.096544,0.098304,7.0751,0.113344
+992,109.041,9.1709,8.26982,0.069312,0.780256,0.008096,0.005792,0.029184,0.097696,0.098272,7.06771,0.113504
+993,107.721,9.2832,9.1305,0.069504,0.77888,0.008192,0.00576,0.029056,0.097824,0.098784,7.92576,0.116736
+994,97.3754,10.2695,8.3184,0.069056,0.8344,0.008192,0.005856,0.02896,0.098016,0.098336,7.06173,0.113856
+995,110.931,9.01465,8.67328,0.069504,0.775744,0.008352,0.0056,0.029632,0.104448,0.099488,7.46755,0.11296
+996,102.749,9.73242,9.14368,0.069824,0.800576,0.008192,0.006144,0.028672,0.100032,0.098368,7.91786,0.114016
+997,99.6885,10.0312,8.2473,0.069664,0.759776,0.008192,0.00608,0.028736,0.098016,0.098592,7.06346,0.114784
+998,106.767,9.36621,8.65872,0.069824,0.76768,0.00832,0.005824,0.029184,0.0984,0.098304,7.46659,0.114592
+999,102.646,9.74219,9.1384,0.069152,0.784512,0.008352,0.00464,0.030048,0.096416,0.098528,7.93376,0.112992
+1000,99.9805,10.002,8.25795,0.06912,0.764832,0.008192,0.006016,0.028832,0.098272,0.09936,7.06973,0.1136
+1001,107.574,9.2959,8.67888,0.069632,0.800768,0.008192,0.006144,0.029888,0.099136,0.098336,7.45264,0.114144
+1002,95.6652,10.4531,9.01101,0.069632,1.51757,0.00816,0.005856,0.028992,0.098208,0.0984,7.0697,0.114496
+1003,110.048,9.08691,8.26915,0.0696,0.77008,0.008224,0.006112,0.0288,0.098176,0.098304,7.07379,0.116064
+1004,107.191,9.3291,8.68362,0.069632,0.806752,0.008352,0.005792,0.028896,0.098336,0.098368,7.45475,0.112736
+1005,101.729,9.83008,8.31389,0.07168,0.807136,0.007968,0.00592,0.028896,0.097344,0.097216,7.07078,0.126944
+1006,107.971,9.26172,8.30669,0.069632,0.81216,0.008192,0.004992,0.030144,0.098912,0.098272,7.0697,0.114688
+1007,107.18,9.33008,8.35789,0.069632,0.870304,0.007776,0.004608,0.028672,0.098304,0.098304,7.0656,0.114688
+1008,108.948,9.17871,9.37651,0.06832,1.01312,0.008064,0.004896,0.032768,0.10032,0.106496,7.92781,0.11472
+1009,96.8505,10.3252,8.2632,0.07136,0.760192,0.008352,0.005536,0.029088,0.098112,0.097952,7.07891,0.113696
+1010,108.878,9.18457,8.25382,0.068544,0.759008,0.008032,0.004992,0.028704,0.09824,0.098432,7.07344,0.114432
+1011,106.789,9.36426,9.15594,0.069632,0.803904,0.007104,0.007296,0.029088,0.096736,0.100032,7.92403,0.118112
+1012,98.216,10.1816,8.2561,0.068384,0.763936,0.00816,0.006144,0.028672,0.098336,0.098272,7.07085,0.113344
+1013,107.473,9.30469,8.29338,0.069632,0.79824,0.008032,0.004832,0.029856,0.097056,0.09936,7.07235,0.114016
+1014,108.28,9.23535,9.12998,0.069632,0.777856,0.008032,0.005824,0.029376,0.098112,0.10688,7.92141,0.112864
+1015,93.269,10.7217,8.26573,0.06896,0.770368,0.008352,0.004608,0.030112,0.098112,0.099008,7.07181,0.1144
+1016,108.716,9.19824,9.5273,0.069216,0.7704,0.008032,0.005824,0.029056,0.098464,0.098304,8.33328,0.11472
+1017,93.32,10.7158,9.18006,0.068544,0.825344,0.008192,0.006112,0.028672,0.098208,0.098176,7.93414,0.112672
+1018,99.2922,10.0713,8.2625,0.068448,0.770048,0.008064,0.005824,0.029024,0.0984,0.098304,7.0697,0.114688
+1019,107.903,9.26758,8.66557,0.070368,0.765088,0.00832,0.004832,0.030112,0.10496,0.098272,7.46918,0.114432
+1020,101.296,9.87207,8.2985,0.068608,0.80992,0.008032,0.005824,0.029024,0.098304,0.098496,7.0656,0.114688
+1021,109.122,9.16406,8.28826,0.069632,0.78032,0.00928,0.005024,0.028672,0.09792,0.098112,7.08256,0.116736
+1022,107.96,9.2627,8.65024,0.07168,0.7632,0.006976,0.006016,0.028832,0.099456,0.09872,7.46118,0.114176
+1023,104.107,9.60547,8.2583,0.068,0.764384,0.008192,0.005696,0.029088,0.097824,0.098176,7.07238,0.11456
+1024,103.403,9.6709,8.67162,0.068992,0.797696,0.008192,0.006176,0.02864,0.098304,0.099744,7.44819,0.11568
+1025,104.118,9.60449,8.81587,0.069152,1.05645,0.010784,0.004352,0.032768,0.098144,0.354208,7.07581,0.114208
+1026,104.961,9.52734,8.65766,0.068352,0.78032,0.00816,0.005792,0.029024,0.098304,0.098304,7.45616,0.113248
+1027,102.739,9.7334,9.18307,0.07088,0.803744,0.008192,0.005184,0.028832,0.096896,0.097984,7.95696,0.1144
+1028,88.1694,11.3418,9.93072,0.0696,0.763616,0.00832,0.005824,0.02912,0.098176,0.098496,8.74291,0.114656
+1029,99.6885,10.0312,9.1727,0.069248,0.805696,0.008192,0.006048,0.028736,0.106496,0.106432,7.92787,0.113984
+1030,100.166,9.9834,8.26602,0.069312,0.77472,0.008064,0.005824,0.02912,0.097504,0.099104,7.0633,0.119072
+1031,106.667,9.375,8.66512,0.069664,0.77616,0.008224,0.00592,0.028864,0.098336,0.102176,7.46083,0.114944
+1032,98.899,10.1113,8.78797,0.069632,1.29638,0.00832,0.006016,0.032768,0.098304,0.098304,7.06355,0.114688
+1033,107.518,9.30078,8.28925,0.068576,0.786432,0.008224,0.006112,0.028704,0.09824,0.098112,7.07971,0.115136
+1034,108.314,9.23242,8.69379,0.069664,0.819008,0.00832,0.005824,0.029024,0.097632,0.098528,7.45312,0.112672
+1035,102.791,9.72852,8.30874,0.069088,0.81136,0.007616,0.004864,0.029792,0.097152,0.098176,7.076,0.114688
+1036,106.323,9.40527,8.3512,0.069632,0.856064,0.008192,0.00608,0.028736,0.104448,0.099712,7.06384,0.114496
+1037,105.993,9.43457,8.28362,0.069568,0.788192,0.007808,0.004864,0.030048,0.096896,0.098336,7.07376,0.114144
+1038,108.417,9.22363,9.86214,0.068608,0.759456,0.00752,0.005088,0.029792,0.097216,0.098304,8.68144,0.11472
+1039,92.3688,10.8262,9.07917,0.070016,0.7528,0.007008,0.006112,0.028704,0.097344,0.097216,7.90691,0.113056
+1040,99.052,10.0957,8.25389,0.068352,0.761696,0.008,0.005824,0.029184,0.098464,0.098304,7.0697,0.114368
+1041,109.332,9.14648,9.11782,0.069088,0.766496,0.008192,0.006144,0.028672,0.098304,0.09968,7.9241,0.117152
+1042,99.3885,10.0615,8.24934,0.069632,0.759808,0.008192,0.006144,0.028672,0.098176,0.097984,7.06605,0.114688
+1043,106.301,9.40723,8.63674,0.069152,0.744224,0.00816,0.006176,0.02976,0.096704,0.098112,7.47104,0.113408
+1044,108.417,9.22363,9.09725,0.069664,0.7536,0.007904,0.005824,0.02928,0.098336,0.098336,7.92112,0.113184
+1045,98.5658,10.1455,8.26774,0.068768,0.760704,0.00816,0.005824,0.028992,0.097408,0.10688,7.07638,0.114624
+1046,106.756,9.36719,8.73882,0.07472,0.841088,0.008512,0.005824,0.029024,0.098336,0.098144,7.4633,0.119872
+1047,98.9659,10.1045,9.40051,0.068512,1.0281,0.016192,0.005632,0.02896,0.106912,0.098304,7.93395,0.113952
+1048,98.028,10.2012,8.26368,0.068832,0.764704,0.007648,0.005856,0.029024,0.098336,0.09856,7.07606,0.114656
+1049,107.507,9.30176,8.65267,0.070976,0.762272,0.008352,0.005568,0.029216,0.098432,0.096288,7.46701,0.11456
+1050,99.2633,10.0742,8.40256,0.069632,0.897056,0.008192,0.020448,0.028672,0.099392,0.098496,7.06598,0.114688
+1051,110.643,9.03809,8.28019,0.069632,0.771264,0.006976,0.006144,0.028672,0.114688,0.098304,7.0697,0.114816
+1052,104.65,9.55566,8.26573,0.07168,0.771744,0.00832,0.005824,0.02896,0.097856,0.098112,7.06861,0.114624
+1053,110.428,9.05566,9.50557,0.068352,0.781376,0.007296,0.005952,0.028672,0.09776,0.096864,8.30589,0.113408
+1054,96.1864,10.3965,8.26573,0.069632,0.773664,0.008192,0.005792,0.029216,0.098368,0.098144,7.06755,0.115168
+1055,105.285,9.49805,8.28557,0.069248,0.788384,0.00832,0.005536,0.02912,0.096704,0.098272,7.07533,0.114656
+1056,104.95,9.52832,9.44307,0.069632,1.09568,0.008192,0.005824,0.028896,0.097664,0.09904,7.92371,0.114432
+1057,99.5431,10.0459,8.25754,0.071168,0.76032,0.008192,0.006112,0.028704,0.097952,0.098304,7.07373,0.113056
+1058,107.529,9.2998,8.27514,0.069216,0.78688,0.008032,0.005824,0.028864,0.098112,0.098592,7.06563,0.113984
+1059,106.778,9.36523,9.13418,0.066816,0.76992,0.007264,0.006016,0.028672,0.098304,0.100352,7.93939,0.11744
+1060,98.1501,10.1885,8.27802,0.069504,0.790656,0.008192,0.006144,0.028672,0.098304,0.098304,7.06355,0.114688
+1061,101.718,9.83105,9.77904,0.068448,1.06275,0.008032,0.005568,0.029088,0.096736,0.098304,8.29235,0.11776
+1062,94.8499,10.543,9.044,0.069504,0.825472,0.008192,0.005952,0.028864,0.098304,0.395296,7.49926,0.113152
+1063,100.599,9.94043,8.30445,0.070816,0.805728,0.008224,0.005632,0.029088,0.097952,0.0968,7.07517,0.11504
+1064,106.29,9.4082,8.71226,0.081792,0.818816,0.00832,0.006176,0.029088,0.099584,0.099072,7.45587,0.113536
+1065,102.904,9.71777,8.26006,0.068192,0.765344,0.00832,0.004704,0.02976,0.097216,0.098304,7.07379,0.114432
+1066,107.949,9.26367,8.2391,0.069632,0.750784,0.008224,0.006624,0.028992,0.098304,0.098304,7.06355,0.114688
+1067,109.542,9.12891,8.62208,0.07072,0.752608,0.00816,0.006144,0.028704,0.09792,0.097728,7.4473,0.1128
+1068,102.564,9.75,8.34806,0.068,0.849888,0.008192,0.00608,0.028736,0.097792,0.097792,7.0784,0.113184
+1069,106.334,9.4043,8.29683,0.068352,0.79984,0.00832,0.004896,0.030432,0.097664,0.099232,7.07114,0.11696
+1070,109.73,9.11328,8.69322,0.069376,0.778368,0.006496,0.016,0.029056,0.11264,0.099808,7.46755,0.11392
+1071,99.6303,10.0371,8.28211,0.067584,0.770048,0.008192,0.006048,0.029856,0.111552,0.106464,7.06886,0.113504
+1072,108.394,9.22559,8.69347,0.069632,0.811008,0.008416,0.00592,0.030048,0.104832,0.100544,7.448,0.115072
+1073,99.6691,10.0332,8.74429,0.06928,1.2472,0.008352,0.005568,0.03152,0.097728,0.097952,7.07245,0.11424
+1074,106.522,9.3877,9.10131,0.069248,0.753056,0.007296,0.005984,0.028672,0.099584,0.098624,7.92416,0.114688
+1075,99.0808,10.0928,8.28941,0.069632,0.769344,0.006848,0.02048,0.029888,0.096928,0.098432,7.08406,0.113792
+1076,109.39,9.1416,8.24746,0.068384,0.759808,0.008192,0.006176,0.02864,0.09824,0.098304,7.06566,0.114048
+1077,108.12,9.24902,9.1127,0.069664,0.75776,0.00816,0.005696,0.029088,0.0976,0.098272,7.93226,0.114208
+1078,99.6303,10.0371,8.2489,0.069632,0.755712,0.008224,0.006112,0.028672,0.098336,0.099424,7.06858,0.114208
+1079,103.091,9.7002,8.69936,0.069664,0.810944,0.008224,0.005728,0.035104,0.096448,0.099488,7.45757,0.116192
+1080,105.08,9.5166,9.11974,0.071328,0.76128,0.007264,0.005952,0.029856,0.099008,0.098336,7.93309,0.113632
+1081,98.6227,10.1396,8.25331,0.069632,0.755712,0.008192,0.005824,0.028992,0.110496,0.0984,7.06282,0.113248
+1082,103.33,9.67773,8.84211,0.074528,0.964704,0.008224,0.006112,0.028672,0.099488,0.0992,7.4465,0.114688
+1083,102.78,9.72949,8.9951,0.06928,1.13318,0.042784,0.005728,0.03136,0.098304,0.428032,7.07344,0.112992
+1084,98.9946,10.1016,9.41466,0.069632,1.05882,0.008032,0.005824,0.029152,0.098304,0.099936,7.93149,0.113472
+1085,97.3199,10.2754,8.32122,0.069152,0.827456,0.008352,0.005664,0.029056,0.096896,0.098272,7.07174,0.114624
+1086,108.878,9.18457,9.37872,0.068512,0.78032,0.008192,0.006112,0.0288,0.103488,0.336704,7.93181,0.114784
+1087,96.5218,10.3604,8.25344,0.069632,0.757664,0.008064,0.005632,0.029056,0.102752,0.098304,7.06874,0.1136
+1088,103.33,9.67773,8.49424,0.068896,1.00426,0.008224,0.005888,0.028896,0.098272,0.098368,7.06762,0.113824
+1089,107.293,9.32031,9.13616,0.067552,0.761312,0.006752,0.007168,0.029248,0.096672,0.098304,7.95219,0.11696
+1090,98.5468,10.1475,8.25773,0.068928,0.764512,0.008032,0.005824,0.028992,0.098432,0.098624,7.0697,0.114688
+1091,110.787,9.02637,8.5519,0.068832,0.73808,0.008192,0.006048,0.028768,0.098112,0.09648,7.3912,0.116192
+1092,105.22,9.50391,9.0944,0.069312,0.752064,0.008192,0.007744,0.02912,0.099776,0.09888,7.91552,0.113792
+1093,98.7273,10.1289,8.33747,0.069152,0.84432,0.007712,0.004608,0.030176,0.0968,0.098272,7.07283,0.1136
+1094,109.006,9.17383,8.66621,0.06928,0.786784,0.008192,0.005984,0.028832,0.09936,0.09872,7.4553,0.11376
+1095,104.789,9.54297,9.08083,0.070688,0.752256,0.008032,0.00464,0.02864,0.098304,0.098304,7.9064,0.113568
+1096,98.0937,10.1943,8.31459,0.0696,0.823296,0.008096,0.006016,0.028928,0.098304,0.097824,7.06813,0.1144
+1097,109.907,9.09863,9.47766,0.06896,0.747296,0.007328,0.00592,0.028672,0.098304,0.09936,8.30717,0.114656
+1098,88.3673,11.3164,8.8615,0.067584,1.37786,0.008032,0.005824,0.031648,0.098048,0.097632,7.06038,0.114496
+1099,105.469,9.48145,8.28694,0.06944,0.78736,0.008192,0.006144,0.028672,0.10032,0.098336,7.07302,0.115456
+1100,106.744,9.36816,8.25504,0.069664,0.773536,0.008064,0.005984,0.029536,0.09792,0.097952,7.05917,0.113216
+1101,103.97,9.61816,9.50515,0.067968,0.755712,0.008192,0.005888,0.028928,0.096256,0.100032,8.32749,0.114688
+1102,100.887,9.91211,8.26368,0.069376,0.767488,0.008352,0.005824,0.029184,0.098208,0.100896,7.07088,0.113472
+1103,107.035,9.34277,8.30832,0.069344,0.806432,0.008064,0.004992,0.030304,0.099808,0.098656,7.07613,0.114592
+1104,104.341,9.58398,9.43718,0.069632,1.05882,0.008192,0.006016,0.0288,0.11264,0.098304,7.93946,0.115328
+1105,98.2631,10.1768,8.27587,0.069632,0.777664,0.008128,0.004736,0.029856,0.097152,0.098304,7.07581,0.114592
+1106,105.938,9.43945,8.60979,0.069664,0.790496,0.008224,0.006112,0.029952,0.098144,0.097216,7.3953,0.114688
+1107,105.252,9.50098,9.12086,0.069632,0.755136,0.008352,0.0056,0.028896,0.098208,0.099136,7.94227,0.113632
+1108,97.8032,10.2246,9.53942,0.080064,0.77824,0.008128,0.005824,0.029056,0.09824,0.098208,8.31507,0.126592
+1109,90.748,11.0195,8.79491,0.0696,0.90096,0.007392,0.005888,0.029696,0.097312,0.098272,7.4711,0.114688
+1110,97.0984,10.2988,8.95814,0.069664,1.46838,0.008192,0.006016,0.0288,0.098176,0.098432,7.0656,0.11488
+1111,107.001,9.3457,8.27178,0.069376,0.757984,0.008032,0.004672,0.0304,0.09776,0.098272,7.08694,0.118336
+1112,104.213,9.5957,8.30045,0.071488,0.8112,0.008192,0.006144,0.028672,0.098304,0.098336,7.06352,0.114592
+1113,108.555,9.21191,9.58467,0.069632,0.829216,0.008064,0.005632,0.029184,0.096576,0.098336,8.3345,0.113536
+1114,93.8847,10.6514,8.27779,0.069632,0.786432,0.008192,0.00608,0.028736,0.098304,0.098304,7.06765,0.114464
+1115,108.486,9.21777,8.26976,0.068896,0.770208,0.00672,0.006144,0.028672,0.098112,0.09824,7.07814,0.114624
+1116,106.312,9.40625,9.10131,0.069088,0.760192,0.008,0.005824,0.029216,0.098176,0.09856,7.91722,0.11504
+1117,91.2168,10.9629,8.27814,0.069152,0.784992,0.008192,0.005664,0.029024,0.097408,0.09712,7.0719,0.114688
+1118,117.715,8.49512,8.26778,0.069632,0.76736,0.008352,0.005824,0.029056,0.098112,0.098784,7.07699,0.113664
+1119,106.6,9.38086,9.13002,0.069664,0.773824,0.008096,0.005664,0.029472,0.09824,0.108672,7.92294,0.11344
+1120,98.1031,10.1934,8.24618,0.06848,0.768032,0.008192,0.005984,0.028736,0.098368,0.098304,7.05725,0.112832
+1121,106.578,9.38281,8.71811,0.068192,0.83968,0.008192,0.00576,0.029056,0.098304,0.098304,7.45616,0.114464
+1122,102.308,9.77441,9.16262,0.069632,0.820512,0.008064,0.005056,0.030368,0.098496,0.098368,7.91878,0.113344
+1123,100.402,9.95996,8.27334,0.06896,0.776832,0.008224,0.005632,0.029184,0.096288,0.098272,7.07584,0.114112
+1124,108.222,9.24023,8.64058,0.068928,0.760544,0.008224,0.006112,0.028672,0.098304,0.098304,7.45853,0.11296
+1125,103.907,9.62402,8.83027,0.0696,1.06842,0.010752,0.0056,0.031424,0.097504,0.366432,7.06634,0.114208
+1126,101.698,9.83301,8.28006,0.069632,0.787552,0.007104,0.005952,0.028832,0.097472,0.098784,7.07126,0.113472
+1127,106.656,9.37598,8.75677,0.070016,0.872448,0.008192,0.006144,0.028672,0.099904,0.098656,7.45859,0.114144
+1128,97.9998,10.2041,8.94518,0.069632,1.45405,0.008064,0.005824,0.029024,0.096576,0.099648,7.06816,0.114208
+1129,107.102,9.33691,8.27494,0.068544,0.767136,0.006976,0.006112,0.028704,0.098304,0.099744,7.08259,0.116832
+1130,108.809,9.19043,8.24774,0.070048,0.755328,0.008032,0.005824,0.02896,0.098496,0.09664,7.07174,0.112672
+1131,104.468,9.57227,9.61715,0.069632,0.869792,0.00816,0.004832,0.03008,0.0968,0.098336,8.32448,0.11504
+1132,94.1869,10.6172,8.3288,0.07152,0.83936,0.008064,0.005856,0.029152,0.097984,0.098944,7.06365,0.114272
+1133,107.949,9.26367,8.2721,0.069184,0.776128,0.008032,0.004992,0.028672,0.097856,0.097856,7.07597,0.113408
+1134,107.597,9.29395,9.10336,0.073728,0.765696,0.008192,0.005824,0.029216,0.098048,0.098656,7.90867,0.115328
+1135,98.3197,10.1709,8.30307,0.069952,0.807168,0.008128,0.004672,0.029728,0.09712,0.09808,7.07402,0.114208
+1136,111.365,8.97949,8.23853,0.069344,0.755392,0.00832,0.006304,0.028992,0.098112,0.098528,7.05942,0.114112
+1137,105.698,9.46094,9.13248,0.06928,0.762176,0.008352,0.005536,0.02912,0.09824,0.112544,7.93184,0.115392
+1138,98.3953,10.1631,8.29882,0.067968,0.81488,0.00752,0.006112,0.028672,0.097088,0.098304,7.06355,0.11472
+1139,107.721,9.2832,8.65738,0.068064,0.770048,0.00928,0.005056,0.028704,0.098048,0.098432,7.46509,0.114656
+1140,101.216,9.87988,9.16134,0.0704,0.814656,0.008128,0.00592,0.029088,0.096736,0.0984,7.92365,0.114368
+1141,97.2275,10.2852,8.61184,0.070688,0.805856,0.008192,0.005792,0.02896,0.09632,0.098368,7.38298,0.114688
+1142,103.049,9.7041,9.53955,0.069792,0.78928,0.008192,0.006144,0.028704,0.099744,0.098528,8.32534,0.113824
+1143,90.9091,11,8.38333,0.068416,0.898848,0.008096,0.005536,0.029088,0.0968,0.098304,7.06496,0.11328
+1144,108.751,9.19531,8.30448,0.06944,0.813344,0.008192,0.005984,0.029216,0.098496,0.099648,7.06422,0.115936
+1145,105.774,9.4541,8.31437,0.069632,0.82048,0.008416,0.005824,0.02912,0.096672,0.098304,7.0712,0.11472
+1146,106.345,9.40332,9.39827,0.069344,1.02224,0.008192,0.005984,0.032192,0.103136,0.108544,7.93398,0.114656
+1147,93.833,10.6572,8.31763,0.068288,0.823296,0.008192,0.006016,0.0288,0.097408,0.0984,7.07238,0.114848
+1148,105.285,9.49805,8.33741,0.067584,0.853856,0.008064,0.005824,0.029152,0.098048,0.0984,7.06317,0.113312
+1149,107.721,9.2832,9.18762,0.069952,0.805216,0.018368,0.006048,0.028832,0.097344,0.09888,7.948,0.114976
+1150,95.997,10.417,8.31946,0.068096,0.83056,0.00816,0.005088,0.029792,0.097184,0.098272,7.06915,0.113152
+1151,108.291,9.23438,8.67469,0.069664,0.792576,0.007808,0.0056,0.028992,0.096832,0.098304,7.46038,0.114528
+1152,102.925,9.71582,9.13571,0.069632,0.784384,0.008192,0.00608,0.028736,0.098304,0.098304,7.92896,0.11312
+1153,97.7846,10.2266,8.29238,0.069664,0.800768,0.00816,0.006048,0.028768,0.096288,0.099936,7.06954,0.113216
+1154,105.047,9.51953,8.72707,0.069792,0.850336,0.00816,0.006144,0.030304,0.09872,0.100352,7.44835,0.114912
+1155,100.946,9.90625,8.9839,0.06912,1.11843,0.035104,0.006144,0.032576,0.097568,0.430624,7.08032,0.114016
+1156,101.116,9.88965,8.29098,0.075936,0.793056,0.008192,0.006144,0.028672,0.098304,0.100192,7.06576,0.11472
+1157,104.94,9.5293,8.75488,0.07168,0.87616,0.008096,0.005664,0.028928,0.09696,0.098336,7.45606,0.112992
+1158,96.8688,10.3232,9.05834,0.0696,1.56173,0.007296,0.00592,0.030624,0.100384,0.106304,7.06176,0.11472
+1159,106.125,9.42285,8.35664,0.069568,0.862976,0.008224,0.005888,0.028896,0.09984,0.098368,7.06605,0.116832
+1160,105.242,9.50195,8.34998,0.068896,0.86528,0.008192,0.006144,0.028672,0.097984,0.098624,7.0615,0.114688
+1161,99.5528,10.0449,9.5088,0.06832,1.14077,0.007904,0.005376,0.029504,0.096448,0.099424,7.94486,0.116192
+1162,99.5044,10.0498,8.34397,0.069504,0.847968,0.008608,0.005888,0.02896,0.097376,0.097312,7.07504,0.113312
+1163,104.821,9.54004,8.70931,0.069632,0.813056,0.008192,0.00592,0.028896,0.098304,0.1024,7.46906,0.113856
+1164,104.5,9.56934,9.51184,0.070496,0.7824,0.008192,0.006144,0.028672,0.098304,0.099744,8.30525,0.11264
+1165,92.6697,10.791,8.29482,0.067616,0.807296,0.008224,0.00608,0.028704,0.098304,0.09808,7.06582,0.114688
+1166,105.004,9.52344,8.69162,0.069632,0.8048,0.008064,0.005856,0.029152,0.09952,0.100992,7.45696,0.11664
+1167,102.667,9.74023,8.88627,0.069632,1.0135,0.041248,0.006112,0.032576,0.096448,0.438272,7.07581,0.112672
+1168,99.196,10.0811,8.36627,0.076,0.866304,0.00816,0.006144,0.028672,0.098528,0.099776,7.06774,0.114944
+1169,104.383,9.58008,8.72448,0.069632,0.853216,0.008224,0.004896,0.02976,0.097184,0.098304,7.44973,0.113536
+1170,99.2825,10.0723,8.36618,0.06768,0.868352,0.00784,0.005824,0.029312,0.09792,0.09872,7.07296,0.117568
+1171,106.026,9.43164,8.30848,0.070176,0.802944,0.008192,0.005696,0.02912,0.106016,0.098816,7.07283,0.114688
+1172,105.72,9.45898,8.34205,0.069728,0.833408,0.008192,0.006016,0.029216,0.108192,0.098784,7.07539,0.11312
+1173,100.659,9.93457,9.57133,0.069408,1.16554,0.008224,0.00576,0.029024,0.0976,0.099008,7.97901,0.11776
+1174,96.2225,10.3926,8.30886,0.068896,0.818016,0.00816,0.00592,0.028896,0.098304,0.099392,7.06781,0.113472
+1175,104.961,9.52734,8.77914,0.069664,0.874176,0.008288,0.005568,0.028832,0.108256,0.102752,7.46755,0.114048
+1176,101.507,9.85156,9.15424,0.069664,0.790496,0.008192,0.006016,0.0288,0.101664,0.09904,7.936,0.114368
+1177,92.8461,10.7705,8.47258,0.069632,0.966656,0.008192,0.006144,0.028672,0.097824,0.09824,7.08253,0.114688
+1178,112.589,8.88184,8.67126,0.069632,0.782336,0.008192,0.006144,0.028672,0.099392,0.098464,7.46371,0.11472
+1179,99.1479,10.0859,9.24877,0.069152,0.854304,0.008384,0.00576,0.029024,0.097504,0.103232,7.96829,0.11312
+1180,98.9181,10.1094,8.28826,0.075712,0.785984,0.006656,0.006144,0.028768,0.09824,0.114656,7.05741,0.114688
+1181,108.394,9.22559,8.64534,0.06944,0.75632,0.00832,0.005568,0.029344,0.0984,0.098304,7.46698,0.112672
+1182,101.106,9.89062,8.24141,0.067488,0.758688,0.008192,0.005472,0.028928,0.09872,0.098304,7.06141,0.114208
+1183,107.665,9.28809,8.29168,0.067936,0.779776,0.006784,0.006016,0.028672,0.099456,0.105344,7.08147,0.116224
+1184,105.306,9.49609,8.32922,0.069312,0.821504,0.007488,0.016736,0.02912,0.11056,0.098336,7.0631,0.113056
+1185,103.476,9.66406,9.50304,0.068896,0.764928,0.008192,0.005632,0.02896,0.097632,0.0992,8.31488,0.11472
+1186,102.277,9.77734,8.26301,0.070816,0.754048,0.006624,0.007392,0.029024,0.112544,0.09888,7.06902,0.114656
+1187,106.8,9.36328,9.78758,0.069536,0.77568,0.008032,0.004864,0.029792,0.097216,0.105728,8.58138,0.11536
+1188,92.9473,10.7588,9.10669,0.069664,0.761824,0.008192,0.006144,0.028672,0.100224,0.10048,7.91757,0.11392
+1189,98.5089,10.1514,8.26624,0.06928,0.758624,0.009312,0.005024,0.02976,0.097216,0.098304,7.07491,0.123808
+1190,103.791,9.63477,8.66838,0.069088,0.79232,0.00832,0.005824,0.029152,0.09824,0.098784,7.45072,0.115936
+1191,104.437,9.5752,9.13002,0.069632,0.7696,0.008352,0.006432,0.028672,0.097664,0.098144,7.93882,0.112704
+1192,97.4125,10.2656,8.25757,0.069312,0.765696,0.00832,0.005824,0.02944,0.104448,0.098336,7.06282,0.113376
+1193,105.004,9.52344,8.78483,0.069632,0.866656,0.023104,0.006144,0.028672,0.098304,0.098432,7.48048,0.113408
+1194,98.4048,10.1621,9.0007,0.068096,1.50733,0.008192,0.005888,0.02896,0.097792,0.098784,7.07174,0.11392
+1195,107.665,9.28809,8.35789,0.069632,0.851616,0.008224,0.005568,0.029312,0.098112,0.098208,7.08048,0.116736
+1196,104.821,9.54004,8.70272,0.078592,0.81664,0.006656,0.006144,0.028672,0.098304,0.098304,7.44653,0.12288
+1197,102.349,9.77051,8.71411,0.069472,0.869792,0.008128,0.00496,0.029824,0.09712,0.098048,7.42221,0.11456
+1198,102.677,9.73926,9.19142,0.069632,0.827424,0.008,0.005824,0.029152,0.106496,0.098304,7.93194,0.114656
+1199,90.2441,11.0811,8.32922,0.0696,0.82336,0.007904,0.005632,0.029472,0.097728,0.098848,7.08349,0.113184
+1200,115.968,8.62305,9.15248,0.06624,0.814272,0.008032,0.005088,0.030368,0.098656,0.099712,7.91594,0.114176
+1201,93.7471,10.667,8.40042,0.067968,0.9032,0.00816,0.014336,0.031808,0.097216,0.098304,7.06506,0.114368
+1202,106.39,9.39941,8.6776,0.06976,0.798848,0.00816,0.006016,0.0288,0.098304,0.098304,7.45597,0.11344
+1203,104.714,9.5498,9.10128,0.070816,0.764576,0.008064,0.005632,0.02896,0.096832,0.098304,7.91536,0.112736
+1204,96.7133,10.3398,8.39475,0.069664,0.880608,0.008224,0.006112,0.029728,0.113664,0.098304,7.07376,0.114688
+1205,111.888,8.9375,8.65859,0.069632,0.78848,0.008192,0.005632,0.02912,0.097824,0.09872,7.44461,0.116384
+1206,102.4,9.76562,8.78774,0.068256,1.03626,0.010272,0.00608,0.032768,0.098368,0.35568,7.06624,0.113824
+1207,101.708,9.83203,8.28829,0.069632,0.782624,0.00816,0.005568,0.029216,0.10448,0.105792,7.06835,0.114464
+1208,108.855,9.18652,8.66509,0.071616,0.786496,0.008192,0.006176,0.02864,0.100352,0.099552,7.45114,0.112928
+1209,95.1496,10.5098,9.03872,0.06848,1.52576,0.008192,0.006112,0.028704,0.098176,0.098432,7.09181,0.113056
+1210,110.488,9.05078,8.24054,0.069632,0.743424,0.008192,0.007296,0.029216,0.098656,0.100352,7.06765,0.116128
+1211,108.994,9.1748,8.61798,0.071232,0.737728,0.008192,0.005696,0.028928,0.096448,0.098304,7.45882,0.11264
+1212,101.126,9.88867,8.39978,0.06784,0.903424,0.007712,0.004736,0.03072,0.098304,0.098304,7.06291,0.125824
+1213,106.901,9.35449,8.32272,0.069792,0.811392,0.008,0.005632,0.036864,0.098272,0.09904,7.07584,0.117888
+1214,104.213,9.5957,8.35942,0.069056,0.859904,0.00832,0.005056,0.029664,0.111392,0.09952,7.06234,0.114176
+1215,108.925,9.18066,9.32611,0.069184,0.963424,0.008256,0.020448,0.031968,0.097088,0.098112,7.92186,0.115776
+1216,92.6948,10.7881,8.38861,0.069664,0.870368,0.021856,0.005824,0.029312,0.112832,0.098304,7.06576,0.114688
+1217,104.203,9.59668,8.70422,0.068896,0.953056,0.020704,0.006176,0.02864,0.100352,0.09952,7.07594,0.350944
+1218,108.844,9.1875,9.1136,0.069568,0.765056,0.008352,0.006848,0.028768,0.09968,0.10048,7.9217,0.113152
+1219,95.0878,10.5166,8.32106,0.068608,0.823232,0.008064,0.005632,0.029088,0.096544,0.098304,7.07731,0.114272
+1220,109.18,9.15918,8.65299,0.069184,0.77888,0.008192,0.00736,0.029312,0.098304,0.100224,7.44685,0.114688
+1221,102.38,9.76758,9.15456,0.069632,0.79872,0.008096,0.005568,0.029056,0.097664,0.097184,7.91962,0.129024
+1222,94.3257,10.6016,8.3441,0.069472,0.83744,0.00704,0.006144,0.028672,0.098304,0.106528,7.07581,0.114688
+1223,105.752,9.45605,8.69338,0.069664,0.791616,0.008352,0.004864,0.02992,0.098464,0.098976,7.47722,0.114304
+1224,97.1814,10.29,8.5975,0.07168,1.10797,0.008192,0.006144,0.03072,0.097536,0.09872,7.06291,0.113632
+1225,110.835,9.02246,8.24118,0.069152,0.747904,0.008288,0.0056,0.029056,0.09776,0.098496,7.06982,0.115104
+1226,107.405,9.31055,8.63443,0.071456,0.753888,0.008192,0.00608,0.028736,0.098304,0.098304,7.45677,0.112704
+1227,93.9277,10.6465,8.3968,0.069536,0.886176,0.00832,0.004704,0.030688,0.104448,0.09984,7.0784,0.114688
+1228,111.962,8.93164,8.29213,0.067968,0.78368,0.006848,0.006144,0.028672,0.105728,0.099072,7.07786,0.11616
+1229,106.6,9.38086,8.33648,0.069664,0.843744,0.008192,0.005984,0.028832,0.097792,0.097952,7.07053,0.113792
+1230,101.891,9.81445,9.50474,0.069472,1.1327,0.008128,0.005824,0.029056,0.098336,0.098272,7.94794,0.115008
+1231,101.366,9.86523,8.28813,0.071712,0.790528,0.00816,0.006144,0.028672,0.097792,0.098176,7.07238,0.11456
+1232,106.301,9.40723,9.9369,0.069472,0.811168,0.008192,0.00608,0.028736,0.098336,0.098304,8.70342,0.113184
+1233,92.3105,10.833,9.1608,0.06944,0.78672,0.00784,0.005568,0.029312,0.096544,0.09936,7.95325,0.112768
+1234,97.9436,10.21,8.28192,0.069632,0.78848,0.00784,0.005952,0.029216,0.098304,0.098304,7.07075,0.11344
+1235,107.461,9.30566,8.67318,0.069376,0.78256,0.008192,0.005632,0.029184,0.09808,0.098912,7.46493,0.11632
+1236,103.644,9.64844,9.00506,0.069632,0.780288,0.008096,0.005952,0.02896,0.09824,0.098368,7.80288,0.11264
+1237,98.6513,10.1367,8.27427,0.069536,0.780224,0.006656,0.006144,0.028672,0.09792,0.098336,7.07149,0.115296
+1238,107.349,9.31543,8.6793,0.069792,0.792576,0.008192,0.005984,0.028832,0.098304,0.098304,7.46291,0.1144
+1239,97.3292,10.2744,8.94976,0.069472,1.45014,0.007616,0.0048,0.030048,0.0968,0.098304,7.07789,0.114688
+1240,108.406,9.22461,8.25926,0.069056,0.756608,0.008192,0.00608,0.028736,0.098304,0.099808,7.07568,0.1168
+1241,109.413,9.13965,8.25754,0.069632,0.761856,0.007648,0.005856,0.02912,0.097888,0.09904,7.07306,0.11344
+1242,106.878,9.35645,9.5048,0.069632,0.761888,0.00816,0.006144,0.028704,0.10032,0.10016,8.31507,0.11472
+1243,94.4824,10.584,8.72448,0.069472,0.820032,0.008192,0.006144,0.028672,0.097792,0.098464,7.4817,0.114016
+1244,101.336,9.86816,8.32096,0.068832,0.83024,0.008224,0.006112,0.028672,0.098304,0.098336,7.0687,0.113536
+1245,107.416,9.30957,9.10746,0.069664,0.759808,0.00816,0.006048,0.028768,0.098144,0.098176,7.924,0.114688
+1246,98.1783,10.1855,8.3087,0.068416,0.814976,0.008032,0.005824,0.029248,0.098304,0.098304,7.07158,0.114016
+1247,109.203,9.15723,8.70598,0.069536,0.804992,0.00816,0.006016,0.0288,0.097632,0.105088,7.47299,0.112768
+1248,103.309,9.67969,9.12291,0.069568,0.755104,0.00832,0.005824,0.029152,0.113024,0.100352,7.92781,0.11376
+1249,99.2825,10.0723,8.27325,0.069408,0.777536,0.00832,0.004896,0.028672,0.098336,0.098272,7.07379,0.114016
+1250,103.184,9.69141,8.71222,0.068928,0.832224,0.008192,0.006144,0.028672,0.098304,0.10032,7.45229,0.117152
+1251,102.359,9.76953,9.14656,0.069568,0.792608,0.00752,0.005056,0.028768,0.098048,0.096384,7.93398,0.114624
+1252,99.6109,10.0391,8.27805,0.069664,0.772064,0.018432,0.006144,0.028672,0.099808,0.098176,7.07155,0.113536
+1253,108.211,9.24121,8.63846,0.069632,0.761856,0.008128,0.005568,0.029248,0.098208,0.097824,7.45466,0.113344
+1254,99.4078,10.0596,8.28416,0.071712,0.78992,0.008064,0.005888,0.028832,0.097056,0.099424,7.07014,0.11312
+1255,108.36,9.22852,8.27357,0.069632,0.769728,0.008192,0.005568,0.029152,0.096672,0.099936,7.07786,0.116832
+1256,107.631,9.29102,8.64813,0.069632,0.770048,0.008064,0.005824,0.02912,0.098336,0.098304,7.45453,0.114272
+1257,102.298,9.77539,8.33098,0.068864,0.835904,0.006592,0.005536,0.029024,0.097664,0.098304,7.07469,0.1144
+1258,109.472,9.13477,8.26384,0.069792,0.763904,0.008128,0.005824,0.029088,0.099296,0.0984,7.07267,0.116736
+1259,108.82,9.18945,8.62842,0.069728,0.753056,0.007328,0.00592,0.02976,0.096544,0.098048,7.4537,0.114336
+1260,101.206,9.88086,8.26547,0.07168,0.76144,0.00832,0.005824,0.029216,0.102496,0.106464,7.0656,0.114432
+1261,108.832,9.18848,8.26618,0.069696,0.76048,0.008192,0.00592,0.028896,0.099616,0.09904,7.07981,0.114528
+1262,106.545,9.38574,8.26659,0.06848,0.774112,0.008192,0.00608,0.028736,0.099488,0.09712,7.07098,0.113408
+1263,110.847,9.02148,9.48102,0.068416,0.760864,0.007136,0.00576,0.029056,0.098304,0.098016,8.29878,0.114688
+1264,96.4763,10.3652,8.25683,0.07104,0.761696,0.00816,0.005056,0.029728,0.098496,0.098944,7.06928,0.114432
+1265,109.343,9.14551,8.27597,0.069056,0.780864,0.008288,0.006048,0.028672,0.098048,0.098112,7.07395,0.112928
+1266,107.552,9.29785,9.11158,0.067104,0.762336,0.008192,0.006144,0.028672,0.098304,0.098304,7.92774,0.114784
+1267,100.156,9.98438,8.25549,0.069664,0.759808,0.00816,0.006048,0.028736,0.098144,0.098496,7.07293,0.113504
+1268,109.064,9.16895,8.23542,0.067936,0.741376,0.008192,0.006144,0.028672,0.098336,0.098048,7.07197,0.114752
+1269,106.5,9.38965,9.15827,0.069376,0.811456,0.00816,0.005952,0.028864,0.097376,0.09872,7.92192,0.116448
+1270,98.4142,10.1611,8.37837,0.069216,0.888416,0.008032,0.00512,0.029792,0.098816,0.09856,7.06573,0.114688
+1271,107.699,9.28516,8.65293,0.069632,0.772224,0.008192,0.005952,0.028864,0.097984,0.098208,7.45846,0.113408
+1272,103.539,9.6582,9.11565,0.069664,0.767968,0.008192,0.006176,0.029728,0.099264,0.100352,7.92118,0.11312
+1273,98.6038,10.1416,8.2504,0.069568,0.759296,0.008352,0.005568,0.029024,0.096928,0.098016,7.06992,0.113728
+1274,106.767,9.36621,8.66982,0.069504,0.779008,0.008192,0.006048,0.028768,0.098336,0.09984,7.46266,0.117472
+1275,103.466,9.66504,9.1281,0.069024,0.778976,0.008192,0.006112,0.028704,0.097856,0.09856,7.92768,0.112992
+1276,98.8512,10.1162,8.26982,0.069664,0.767968,0.008224,0.006048,0.028736,0.098304,0.097728,7.07846,0.114688
+1277,105.09,9.51562,8.73885,0.069696,0.856544,0.008192,0.005664,0.029152,0.098304,0.098336,7.45878,0.114176
+1278,98.6133,10.1406,8.94701,0.069216,1.45984,0.008064,0.005056,0.029792,0.097152,0.098304,7.06538,0.114208
+1279,107.079,9.33887,8.27574,0.06896,0.775072,0.008192,0.006144,0.029696,0.097312,0.098368,7.07526,0.116736
+1280,109.53,9.12988,8.25696,0.069152,0.76448,0.008192,0.006144,0.029856,0.098624,0.09824,7.06826,0.114016
+1281,108.085,9.25195,9.48806,0.067968,0.763104,0.008032,0.005056,0.028672,0.098304,0.098336,8.30461,0.113984
+1282,95.1496,10.5098,8.2745,0.070208,0.786432,0.008192,0.005888,0.028928,0.098304,0.099872,7.06355,0.11312
+1283,109.25,9.15332,8.26269,0.069312,0.775584,0.007296,0.00592,0.029792,0.097216,0.098272,7.06557,0.113728
+1284,102.41,9.76465,9.43958,0.068544,1.10138,0.008128,0.005856,0.029056,0.098112,0.098624,7.91379,0.116096
+1285,98.5279,10.1494,8.30557,0.069824,0.811456,0.00752,0.005024,0.030272,0.097792,0.097216,7.07283,0.113632
+1286,109.706,9.11523,8.26269,0.068544,0.77824,0.008192,0.006144,0.028672,0.098336,0.098272,7.06352,0.112768
+1287,107.214,9.32715,9.12592,0.069632,0.780288,0.007808,0.005568,0.029216,0.096704,0.100352,7.92163,0.11472
+1288,98.4426,10.1582,8.27699,0.068416,0.77344,0.00832,0.005792,0.02944,0.104,0.10656,7.06787,0.113152
+1289,104.383,9.58008,9.79347,0.069632,1.07642,0.008096,0.005024,0.028704,0.097568,0.098368,8.29286,0.1168
+1290,93.4562,10.7002,9.22259,0.068448,0.84992,0.008192,0.006176,0.02864,0.098304,0.099424,7.95043,0.113056
+1291,99.4271,10.0576,8.30118,0.068384,0.79664,0.00784,0.005568,0.029408,0.096448,0.099616,7.08272,0.11456
+1292,107.36,9.31445,8.6495,0.070272,0.770208,0.008192,0.006144,0.028672,0.098336,0.100192,7.4545,0.112992
+1293,97.0156,10.3076,8.61594,0.07168,1.1135,0.008032,0.004864,0.028672,0.098304,0.098304,7.07789,0.114688
+1294,108.062,9.25391,8.31136,0.069664,0.798816,0.006816,0.005984,0.030016,0.11296,0.102784,7.06765,0.116672
+1295,107.789,9.27734,8.64304,0.069376,0.753728,0.008544,0.005568,0.029632,0.097568,0.09904,7.46496,0.114624
+1296,101.668,9.83594,8.25616,0.070304,0.755712,0.008224,0.006112,0.028672,0.106336,0.104512,7.0616,0.114688
+1297,109.168,9.16016,8.2473,0.069632,0.746976,0.00832,0.005632,0.02912,0.098784,0.100352,7.07379,0.114688
+1298,110.179,9.07617,8.25142,0.068192,0.761856,0.00752,0.006816,0.028704,0.098272,0.098304,7.06765,0.114112
+1299,108.406,9.22461,9.51622,0.069344,0.774432,0.008224,0.006112,0.028672,0.098304,0.098304,8.31843,0.1144
+1300,96.1412,10.4014,8.63837,0.069728,0.751616,0.008224,0.006112,0.028672,0.097984,0.098624,7.46413,0.11328
+1301,100.501,9.9502,8.66262,0.11104,1.1223,0.00816,0.005408,0.029024,0.096672,0.098336,7.0776,0.11408
+1302,107.926,9.26562,9.12845,0.069536,0.747232,0.00832,0.006816,0.028768,0.098304,0.101728,7.9504,0.117344
+1303,97.4125,10.2656,8.25635,0.068448,0.755712,0.008192,0.00608,0.028736,0.096256,0.098304,7.07789,0.116736
+1304,110.44,9.05469,8.64278,0.06928,0.746304,0.008096,0.0064,0.030304,0.104832,0.10144,7.46298,0.113152
+1305,104.437,9.5752,9.10435,0.068576,0.758848,0.00832,0.004928,0.028672,0.098304,0.100352,7.92336,0.112992
+1306,97.3292,10.2744,8.26848,0.068288,0.783936,0.008032,0.005824,0.029152,0.097856,0.09712,7.06506,0.113216
+1307,109.413,9.13965,8.63104,0.069824,0.748256,0.008192,0.006144,0.029888,0.09712,0.099936,7.45619,0.115488
+1308,104.33,9.58496,9.10291,0.069408,0.749984,0.008096,0.005824,0.029152,0.098176,0.098592,7.92982,0.113856
+1309,98.7083,10.1309,8.38054,0.069248,0.891072,0.008064,0.006528,0.028896,0.0992,0.097216,7.06544,0.11488
+1310,108.532,9.21387,8.62931,0.069376,0.74688,0.00848,0.005824,0.02928,0.098688,0.09824,7.45882,0.113728
+1311,92.0284,10.8662,9.12371,0.068928,1.61862,0.008192,0.006112,0.032096,0.09696,0.098304,7.07994,0.11456
+1312,114.273,8.75098,8.25958,0.06944,0.766144,0.008192,0.005856,0.028992,0.098304,0.10016,7.06781,0.114688
+1313,106.345,9.40332,8.65622,0.070848,0.780288,0.008352,0.004768,0.029952,0.097024,0.098304,7.45267,0.114016
+1314,105.004,9.52344,8.25776,0.067808,0.768,0.008192,0.006144,0.028672,0.098304,0.098112,7.06925,0.11328
+1315,108.925,9.18066,8.25347,0.06976,0.751776,0.008064,0.005568,0.029248,0.09792,0.098432,7.07626,0.116448
+1316,105.785,9.45312,8.68995,0.07136,0.799328,0.008192,0.00608,0.028736,0.098304,0.098304,7.46701,0.11264
+1317,107.124,9.33496,8.26461,0.06848,0.776224,0.008192,0.00576,0.029024,0.097344,0.099232,7.06726,0.113088
+1318,108.716,9.19824,8.26781,0.069664,0.749536,0.008224,0.006112,0.029952,0.0984,0.098816,7.09146,0.115648
+1319,109.075,9.16797,8.31693,0.069408,0.814496,0.008128,0.004992,0.028672,0.098304,0.098016,7.08131,0.1136
+1320,107.473,9.30469,9.50621,0.069632,0.771168,0.008352,0.004992,0.030272,0.098432,0.098496,8.31078,0.11408
+1321,94.6396,10.5664,8.26704,0.069632,0.771072,0.007168,0.006112,0.028704,0.09824,0.098208,7.0736,0.114304
+1322,110.25,9.07031,8.29405,0.069632,0.794624,0.008192,0.006144,0.028672,0.098336,0.098272,7.07584,0.114336
+1323,105.209,9.50488,9.40301,0.068224,1.04243,0.008192,0.005952,0.028864,0.09824,0.099456,7.9361,0.115552
+1324,98.2914,10.1738,8.31264,0.069664,0.821088,0.008032,0.005824,0.02912,0.09792,0.098848,7.06765,0.114496
+1325,109.297,9.14941,8.25709,0.069184,0.760256,0.008288,0.00608,0.02864,0.098208,0.098432,7.07376,0.11424
+1326,106.29,9.4082,9.20426,0.069696,0.833984,0.008224,0.005952,0.028864,0.098304,0.099808,7.94474,0.114688
+1327,98.1501,10.1885,8.31898,0.069632,0.824896,0.008352,0.005568,0.029216,0.096576,0.099488,7.07056,0.114688
+1328,106.878,9.35645,8.71011,0.069632,0.830752,0.00816,0.004992,0.02976,0.09872,0.098656,7.45482,0.114624
+1329,96.9146,10.3184,9.13514,0.070816,0.78064,0.008352,0.005792,0.02912,0.09856,0.098016,7.93014,0.113696
+1330,107.102,9.33691,8.25056,0.069632,0.756928,0.006976,0.006144,0.028672,0.098336,0.098272,7.07136,0.11424
+1331,109.297,9.14941,8.64573,0.068576,0.7496,0.00816,0.006144,0.028672,0.097696,0.096864,7.4752,0.114816
+1332,103.195,9.69043,9.1648,0.068928,0.825088,0.007264,0.006016,0.029824,0.097216,0.098208,7.91907,0.113184
+1333,98.3575,10.167,8.26982,0.068288,0.767648,0.008064,0.004704,0.030016,0.096864,0.098272,7.07114,0.124832
+1334,104.95,9.52832,8.69798,0.07088,0.811808,0.008192,0.006144,0.030272,0.09872,0.098368,7.46083,0.112768
+1335,95.558,10.4648,9.07798,0.069152,1.5792,0.008032,0.004544,0.029984,0.096672,0.098208,7.07811,0.11408
+1336,108.532,9.21387,8.3201,0.069632,0.811008,0.008192,0.006176,0.042976,0.098368,0.099488,7.06845,0.115808
+1337,90.4274,11.0586,8.47606,0.069632,0.96448,0.00752,0.004896,0.038912,0.09808,0.098048,7.07837,0.116128
+1338,126.467,7.90723,9.27315,0.069472,0.910592,0.007328,0.00592,0.031872,0.10496,0.102432,7.92608,0.114496
+1339,98.8417,10.1172,8.27453,0.070208,0.780288,0.009312,0.005024,0.030016,0.09696,0.098304,7.07158,0.112832
+1340,109.824,9.10547,8.26128,0.069184,0.764352,0.007648,0.005824,0.028896,0.096896,0.098304,7.07584,0.114336
+1341,105.84,9.44824,9.41968,0.068512,1.06701,0.008224,0.006112,0.029984,0.096992,0.098304,7.92986,0.114688
+1342,95.97,10.4199,8.39824,0.075456,0.88432,0.008064,0.00512,0.029792,0.102304,0.098816,7.08038,0.113984
+1343,107.035,9.34277,8.6016,0.069632,0.785472,0.008352,0.004896,0.030112,0.096864,0.098304,7.39328,0.114688
+1344,106.545,9.38574,9.11974,0.069632,0.776192,0.008192,0.006144,0.029728,0.099328,0.100288,7.91661,0.113632
+1345,99.3885,10.0615,8.28182,0.069344,0.784288,0.008064,0.00464,0.02976,0.097184,0.098304,7.07549,0.114752
+1346,107.937,9.26465,9.52128,0.069632,0.777504,0.008,0.007072,0.028672,0.099552,0.09904,8.31699,0.114816
+1347,95.4868,10.4727,9.09638,0.069344,0.743744,0.007904,0.005568,0.029088,0.096704,0.098304,7.9319,0.113824
+1348,97.4125,10.2656,8.27741,0.067968,0.776064,0.008,0.006048,0.029088,0.09808,0.098528,7.07974,0.113888
+1349,110.404,9.05762,8.63168,0.07136,0.7376,0.008224,0.006112,0.030176,0.098848,0.100352,7.46496,0.114048
+1350,97.6633,10.2393,8.61926,0.085344,1.11274,0.008032,0.005792,0.029152,0.097728,0.0984,7.06771,0.114368
+1351,107.687,9.28613,8.33549,0.069632,0.839648,0.00752,0.0048,0.028704,0.09824,0.098016,7.07408,0.114848
+1352,110.013,9.08984,8.65802,0.071456,0.778336,0.00832,0.0056,0.029088,0.097408,0.09872,7.45517,0.11392
+1353,101.618,9.84082,8.24854,0.07168,0.755648,0.008064,0.005792,0.029184,0.097792,0.098144,7.06835,0.113888
+1354,108.693,9.2002,8.27789,0.069632,0.786432,0.008192,0.005952,0.028864,0.098304,0.100224,7.06362,0.116672
+1355,91.8139,10.8916,8.53075,0.074016,1.01648,0.00816,0.00576,0.02896,0.096448,0.098208,7.08774,0.114976
+1356,128.692,7.77051,9.89728,0.069632,0.771168,0.008672,0.004576,0.02864,0.098272,0.098336,8.704,0.113984
+1357,92.5273,10.8076,9.08906,0.069856,0.743104,0.008032,0.006656,0.02864,0.098304,0.098304,7.92166,0.114496
+1358,90.3556,11.0674,8.84221,0.068608,0.935872,0.008128,0.005824,0.043424,0.098304,0.106496,7.46282,0.112736
+1359,114.67,8.7207,9.07939,0.069408,0.744288,0.008288,0.006048,0.029728,0.098368,0.098784,7.91133,0.113152
+1360,98.2254,10.1807,8.25955,0.069664,0.772064,0.008192,0.006144,0.028672,0.0984,0.098304,7.06451,0.1136
+1361,110.535,9.04688,8.65955,0.075968,0.745888,0.008288,0.007232,0.029024,0.098048,0.098816,7.47955,0.116736
+1362,103.361,9.6748,9.13811,0.071168,0.768384,0.00752,0.005056,0.029824,0.096992,0.100032,7.94451,0.114624
+1363,99.5915,10.041,8.25994,0.067968,0.763872,0.008192,0.005664,0.028928,0.09648,0.098336,7.06765,0.122848
+1364,109.425,9.13867,8.61779,0.069376,0.73792,0.00816,0.006176,0.029856,0.098432,0.09888,7.45213,0.116864
+1365,103.57,9.65527,9.00483,0.069248,0.7728,0.00816,0.006112,0.028704,0.097792,0.401504,7.50755,0.11296
+1366,101.982,9.80566,8.24397,0.068352,0.747072,0.008064,0.006688,0.029888,0.097088,0.098304,7.07379,0.11472
+1367,109.238,9.1543,8.62531,0.069632,0.74752,0.008192,0.006144,0.028672,0.098304,0.098304,7.45475,0.113792
+1368,92.3771,10.8252,9.14618,0.079872,1.60768,0.008288,0.006048,0.040448,0.098272,0.104352,7.08672,0.114496
+1369,114.222,8.75488,8.24336,0.068512,0.73728,0.00816,0.006144,0.028704,0.09824,0.100416,7.07994,0.115968
+1370,109.006,9.17383,8.89203,0.069248,0.7336,0.009248,0.006816,0.02896,0.097536,0.098112,7.44928,0.399232
+1371,100.966,9.9043,8.26326,0.071552,0.753088,0.008032,0.00496,0.029728,0.09664,0.097984,7.07882,0.122464
+1372,109.134,9.16309,8.23322,0.069824,0.737344,0.008224,0.006112,0.03008,0.098944,0.098304,7.06765,0.116736
+1373,101.276,9.87402,8.42726,0.068992,0.913216,0.008416,0.004736,0.042368,0.096864,0.098112,7.08013,0.114432
+1374,116.021,8.61914,9.5104,0.06896,0.764576,0.007872,0.005824,0.029152,0.097664,0.098208,8.32397,0.114176
+1375,94.5522,10.5762,8.24272,0.06976,0.751488,0.008192,0.005952,0.028864,0.096256,0.098304,7.0697,0.114208
+1376,110.143,9.0791,8.23552,0.06848,0.743328,0.007968,0.006368,0.029888,0.097088,0.098336,7.06966,0.1144
+1377,108.797,9.19141,9.11942,0.066624,0.75376,0.007296,0.00592,0.028672,0.098304,0.098304,7.94419,0.116352
+1378,94.5434,10.5771,8.31898,0.068608,0.82944,0.008224,0.006112,0.028672,0.098336,0.098272,7.06701,0.114304
+1379,107.304,9.31934,8.75616,0.070144,0.843904,0.008352,0.005664,0.029184,0.096384,0.098304,7.49091,0.113312
+1380,104.586,9.56152,9.10429,0.06864,0.747392,0.008192,0.006144,0.028672,0.099456,0.098784,7.93437,0.11264
+1381,89.8009,11.1357,8.57322,0.06912,1.05146,0.01776,0.004768,0.045056,0.108576,0.098304,7.06352,0.114656
+1382,120.556,8.29492,8.64851,0.069632,0.742688,0.008064,0.007008,0.028672,0.099968,0.09872,7.47926,0.114496
+1383,103.812,9.63281,9.08106,0.069856,0.741376,0.008192,0.006144,0.028672,0.098304,0.098304,7.91667,0.113536
+1384,100.56,9.94434,8.27549,0.06928,0.7704,0.008192,0.006144,0.028672,0.098304,0.098304,7.07382,0.122368
+1385,105.296,9.49707,8.73107,0.06848,0.83152,0.00816,0.006144,0.038496,0.099904,0.099168,7.46496,0.11424
+1386,99.7565,10.0244,8.7321,0.06944,1.2328,0.009696,0.005056,0.032672,0.098272,0.098304,7.07174,0.114112
+1387,106.401,9.39844,8.32333,0.067904,0.826976,0.008032,0.0048,0.030592,0.097824,0.098176,7.07363,0.115392
+1388,110.013,9.08984,8.6184,0.0704,0.738368,0.008352,0.005056,0.02848,0.098304,0.100352,7.45597,0.11312
+1389,99.3018,10.0703,8.60362,0.067584,1.10534,0.008064,0.0048,0.030176,0.096832,0.098272,7.07789,0.114656
+1390,109.93,9.09668,8.23712,0.06944,0.739584,0.008192,0.007616,0.029184,0.097856,0.100192,7.07037,0.114688
+1391,103.991,9.61621,8.66314,0.069056,0.764576,0.007744,0.005632,0.029056,0.109152,0.098176,7.46669,0.113056
+1392,101.86,9.81738,8.25344,0.071552,0.743552,0.008192,0.006048,0.028768,0.105728,0.1032,7.07171,0.114688
+1393,108.142,9.24707,8.28214,0.069632,0.776192,0.008416,0.0072,0.029408,0.098336,0.100352,7.07584,0.116768
+1394,106.856,9.3584,8.3353,0.069536,0.829536,0.008192,0.006048,0.028768,0.097856,0.098688,7.08205,0.114624
+1395,106.004,9.43359,9.3759,0.068544,1.0199,0.008192,0.006144,0.028672,0.098304,0.098304,7.9337,0.114144
+1396,97.034,10.3057,8.28128,0.071488,0.76944,0.008064,0.005056,0.029824,0.098784,0.09856,7.08608,0.113984
+1397,108.257,9.2373,8.2513,0.069664,0.747488,0.007968,0.005568,0.028928,0.0968,0.098304,7.08198,0.114592
+1398,106.534,9.38672,9.11894,0.069088,0.75392,0.008064,0.005824,0.028992,0.105024,0.0984,7.93597,0.113664
+1399,96.3674,10.377,8.3305,0.077824,0.826656,0.00688,0.006144,0.028672,0.097344,0.098944,7.07411,0.11392
+1400,102.441,9.76172,8.78605,0.069312,0.894496,0.00816,0.005088,0.030656,0.103488,0.10544,7.45674,0.112672
+1401,107.733,9.28223,9.15046,0.071104,0.778848,0.008192,0.006112,0.028672,0.099904,0.100384,7.94403,0.113216
+1402,98.4331,10.1592,8.33008,0.068448,0.83456,0.0072,0.006144,0.038528,0.09856,0.0984,7.0656,0.11264
+1403,105.382,9.48926,9.55613,0.06928,0.80704,0.016736,0.006016,0.028864,0.097952,0.098624,8.31693,0.114688
+1404,89.5418,11.168,8.99037,0.069632,1.4889,0.008192,0.006144,0.028672,0.098336,0.098272,7.07789,0.114336
+1405,110.404,9.05762,8.22944,0.068224,0.730336,0.008064,0.00496,0.029824,0.097184,0.099776,7.07638,0.114688
+1406,109.064,9.16895,8.63437,0.069632,0.73872,0.008064,0.00688,0.028672,0.098304,0.098304,7.47258,0.113216
+1407,91.9705,10.873,8.42704,0.071104,0.903776,0.00816,0.005664,0.029184,0.110592,0.106496,7.0769,0.115168
+1408,116.1,8.61328,8.24944,0.069632,0.759136,0.008096,0.006304,0.029152,0.098432,0.10192,7.06198,0.114784
+1409,109.472,9.13477,8.24656,0.069536,0.75136,0.008064,0.0048,0.029792,0.096992,0.0976,7.07437,0.114048
+1410,108.555,9.21191,9.49658,0.069216,0.745888,0.008192,0.006144,0.02848,0.096448,0.098336,8.32918,0.114688
+1411,96.0871,10.4072,8.25824,0.070336,0.757216,0.00832,0.0056,0.02896,0.096928,0.098336,7.07898,0.113568
+1412,104.972,9.52637,8.25958,0.068864,0.774944,0.00816,0.006144,0.028864,0.098112,0.098208,7.06304,0.113248
+1413,106.945,9.35059,9.13818,0.06704,0.76432,0.008032,0.005664,0.029088,0.10816,0.098496,7.94064,0.116736
+1414,98.4331,10.1592,8.31494,0.068384,0.79872,0.008032,0.02064,0.028672,0.098304,0.099488,7.07875,0.113952
+1415,110.943,9.01367,8.56269,0.069472,0.74128,0.008384,0.006208,0.028704,0.098272,0.098304,7.3985,0.113568
+1416,104.575,9.5625,9.0849,0.069024,0.744352,0.008224,0.006144,0.029696,0.098336,0.1008,7.91398,0.114336
+1417,97.4217,10.2646,8.2744,0.068096,0.784352,0.008192,0.005824,0.028992,0.097536,0.097056,7.06966,0.114688
+1418,108.716,9.19824,8.66806,0.068512,0.790528,0.00752,0.005824,0.02912,0.098112,0.098208,7.45722,0.113024
+1419,104.044,9.61133,9.09565,0.068448,0.748832,0.008064,0.00496,0.028672,0.09808,0.097952,7.92634,0.114304
+1420,97.034,10.3057,8.4768,0.069632,0.9728,0.00928,0.005056,0.029984,0.096992,0.098336,7.06906,0.125664
+1421,110.919,9.01562,8.62413,0.069632,0.741376,0.008032,0.006304,0.028672,0.098336,0.102176,7.45475,0.114848
+1422,103.728,9.64062,9.01533,0.069664,0.763392,0.008352,0.006464,0.044064,0.09728,0.42576,7.48768,0.112672
+1423,98.1689,10.1865,8.34509,0.069632,0.837184,0.006752,0.006144,0.028672,0.098304,0.098304,7.08403,0.116064
+1424,110.025,9.08887,8.61786,0.071136,0.734816,0.007136,0.006112,0.028672,0.098304,0.099424,7.4577,0.11456
+1425,90.0853,11.1006,8.86346,0.068864,1.34627,0.00816,0.005664,0.029088,0.098432,0.106496,7.08563,0.114848
+1426,99.4948,10.0508,8.55158,0.069632,1.0415,0.007072,0.006144,0.029728,0.098464,0.109376,7.07578,0.113888
+1427,110.143,9.0791,9.89798,0.069632,0.763904,0.008192,0.005696,0.02912,0.0976,0.098144,8.70691,0.118784
+1428,88.9429,11.2432,9.16064,0.085472,0.783328,0.008224,0.00592,0.028864,0.099488,0.09872,7.93763,0.112992
+1429,99.3307,10.0674,8.24934,0.069152,0.745952,0.007616,0.0048,0.029824,0.097024,0.098336,7.08368,0.11296
+1430,108.085,9.25195,8.64502,0.069568,0.76208,0.00752,0.005056,0.029952,0.09904,0.098304,7.45882,0.114688
+1431,91.5921,10.918,9.4016,0.067776,1.06893,0.008032,0.0056,0.029536,0.096256,0.098272,7.91347,0.113728
+1432,109.285,9.15039,8.26026,0.068384,0.768,0.008192,0.006144,0.028672,0.098304,0.098304,7.0697,0.11456
+1433,108.097,9.25098,8.67155,0.069984,0.77808,0.008064,0.005632,0.029472,0.098144,0.097952,7.47126,0.11296
+1434,97.6726,10.2383,8.97245,0.077888,1.46646,0.007744,0.005824,0.029056,0.097888,0.097056,7.07734,0.113184
+1435,107.721,9.2832,8.24733,0.069408,0.749664,0.007488,0.004928,0.029888,0.09712,0.099552,7.07366,0.115616
+1436,105.155,9.50977,8.27904,0.068544,0.782336,0.008192,0.00608,0.029792,0.09856,0.09888,7.07395,0.112704
+1437,108.832,9.18848,9.92624,0.069088,0.750144,0.008192,0.006144,0.028672,0.098304,0.098304,8.75315,0.11424
+1438,90.7319,11.0215,9.10387,0.069408,0.76016,0.008032,0.005792,0.029184,0.09664,0.099456,7.92189,0.113312
+1439,77.1375,12.9639,10.9988,0.068608,3.10886,0.008192,0.00592,0.028896,0.098304,0.102176,7.46509,0.112736
+1440,102.688,9.73828,9.10957,0.069632,1.20013,0.032768,0.034816,0.04032,0.096896,0.454656,7.06752,0.112832
+1441,100.738,9.92676,8.33741,0.069632,0.833536,0.007712,0.0048,0.029696,0.100288,0.098656,7.07782,0.115264
+1442,96.9055,10.3193,8.43162,0.07168,0.899072,0.008192,0.006144,0.04096,0.098304,0.098304,7.07789,0.131072
+1443,117.404,8.51758,9.5273,0.069632,0.788416,0.007552,0.0048,0.02976,0.097056,0.098464,8.31811,0.113504
+1444,93.8847,10.6514,8.3665,0.070144,0.866208,0.008192,0.006144,0.030048,0.096928,0.098304,7.07696,0.113568
+1445,107.687,9.28613,8.36243,0.06832,0.847808,0.008064,0.005568,0.0288,0.09792,0.098784,7.09274,0.114432
+1446,105.785,9.45312,9.11565,0.066624,0.762816,0.008192,0.006048,0.028768,0.098304,0.099776,7.92019,0.124928
+1447,95.7725,10.4414,8.31878,0.069632,0.810016,0.007296,0.005984,0.028672,0.10448,0.108512,7.0697,0.114496
+1448,108.302,9.2334,8.72205,0.0688,0.81408,0.009216,0.005088,0.028672,0.098336,0.106464,7.47843,0.11296
+1449,103.78,9.63574,9.12499,0.069632,0.761856,0.008192,0.005664,0.029056,0.097472,0.099232,7.94013,0.11376
+1450,90.4194,11.0596,8.40538,0.074112,0.912768,0.008096,0.005152,0.029952,0.097888,0.099008,7.06506,0.113344
+1451,111.681,8.9541,8.72362,0.069088,0.815648,0.008448,0.005888,0.028672,0.098304,0.098432,7.48262,0.116512
+1452,104.725,9.54883,9.14211,0.069632,0.783392,0.008352,0.004992,0.030336,0.097888,0.097024,7.93779,0.112704
+1453,97.1537,10.293,8.42134,0.069536,0.918048,0.008192,0.005952,0.028864,0.098304,0.098208,7.0793,0.114944
+1454,107.983,9.26074,8.64934,0.071392,0.76272,0.008064,0.006336,0.028672,0.098304,0.098304,7.46291,0.11264
+1455,99.3885,10.0615,8.32717,0.069344,0.826912,0.008352,0.004704,0.030272,0.096704,0.097984,7.0793,0.1136
+1456,109.227,9.15527,8.2313,0.069344,0.744096,0.008192,0.00592,0.028896,0.098304,0.098304,7.06355,0.114688
+1457,108.89,9.18359,8.65408,0.069824,0.782336,0.008224,0.005632,0.029088,0.096352,0.098272,7.45066,0.113696
+1458,101.537,9.84863,8.3248,0.069056,0.827552,0.00832,0.005792,0.02896,0.09664,0.098272,7.07117,0.11904
+1459,109.11,9.16504,8.27565,0.068288,0.758656,0.007136,0.006112,0.028704,0.098304,0.100256,7.07798,0.130208
+1460,105.133,9.51172,8.98218,0.069632,0.79872,0.008192,0.006016,0.0288,0.098336,0.099584,7.45341,0.419488
+1461,99.2248,10.0781,9.40781,0.07168,1.03805,0.00752,0.005056,0.028672,0.098016,0.098592,7.9441,0.116128
+1462,96.6767,10.3438,8.328,0.069536,0.824224,0.018432,0.006144,0.028672,0.101568,0.098496,7.06624,0.114688
+1463,104.245,9.59277,8.82093,0.06912,0.99808,0.006144,0.006144,0.029824,0.097088,0.106592,7.39325,0.114688
+1464,106.478,9.3916,9.13059,0.069248,0.756672,0.008224,0.006048,0.028736,0.100256,0.100288,7.94848,0.11264
+1465,95.5491,10.4658,8.38042,0.069632,0.876224,0.008032,0.004576,0.032768,0.097792,0.09696,7.08106,0.113376
+1466,105.263,9.5,8.84925,0.0688,0.958432,0.00704,0.006144,0.028672,0.102016,0.098656,7.46294,0.116544
+1467,102.605,9.74609,9.14307,0.069696,0.803584,0.00816,0.006144,0.030336,0.098464,0.097888,7.91613,0.112672
+1468,98.3292,10.1699,8.25875,0.069632,0.765664,0.007616,0.00512,0.029824,0.098112,0.098848,7.06966,0.114272
+1469,107.733,9.28223,8.71018,0.069696,0.823296,0.00816,0.006144,0.029888,0.09856,0.100256,7.46067,0.113504
+1470,96.4673,10.3662,8.97901,0.068128,1.49091,0.008224,0.00592,0.028896,0.09808,0.098528,7.0671,0.113216
+1471,96.069,10.4092,8.7921,0.069632,0.888832,0.009248,0.005088,0.047104,0.098304,0.098304,7.46022,0.11536
+1472,114.785,8.71191,9.17302,0.06912,0.806912,0.00848,0.005824,0.02896,0.098656,0.098304,7.94214,0.114624
+1473,97.9342,10.2109,9.13862,0.069344,0.78048,0.00816,0.005696,0.029376,0.098208,0.104512,7.9272,0.115648
+1474,99.9317,10.0068,8.23654,0.069216,0.751872,0.00816,0.005824,0.028576,0.098208,0.098208,7.06237,0.114112
+1475,101.739,9.8291,8.67331,0.069248,0.869856,0.008256,0.00496,0.028672,0.098176,0.098208,7.38246,0.113472
+1476,105.938,9.43945,9.12803,0.069312,0.760608,0.008192,0.006144,0.028672,0.099616,0.09904,7.94214,0.114304
+1477,98.8608,10.1152,8.26144,0.069152,0.762368,0.00816,0.006176,0.02864,0.097952,0.098336,7.07616,0.114496
+1478,107.608,9.29297,8.65747,0.070208,0.769504,0.008032,0.0048,0.029792,0.098624,0.098208,7.46557,0.112736
+1479,96.2949,10.3848,9.24579,0.069632,0.862208,0.008128,0.0056,0.043616,0.098304,0.098304,7.94624,0.11376
+1480,107.068,9.33984,8.28611,0.06912,0.788992,0.008416,0.00592,0.029792,0.098592,0.098464,7.06403,0.122784
+1481,106.379,9.40039,8.6569,0.069664,0.771808,0.007584,0.00496,0.030016,0.099008,0.100096,7.45907,0.114688
+1482,101.587,9.84375,8.86371,0.06944,0.962752,0.08192,0.006144,0.034816,0.098112,0.436416,7.05946,0.114656
+1483,105.361,9.49121,9.12976,0.06704,0.75344,0.008032,0.005024,0.028672,0.097472,0.09712,7.95645,0.116512
+1484,98.899,10.1113,8.62733,0.068832,0.7464,0.008192,0.006144,0.028704,0.098304,0.098048,7.45904,0.113664
+1485,102.114,9.79297,8.27731,0.07168,0.761856,0.008192,0.006112,0.028736,0.097664,0.100768,7.08627,0.116032
+1486,107.971,9.26172,8.24653,0.069632,0.751392,0.00832,0.00624,0.029888,0.099136,0.100352,7.06669,0.11488
+1487,109.601,9.12402,8.24938,0.069664,0.74544,0.008192,0.006144,0.028672,0.097728,0.09888,7.08134,0.113312
+1488,108.89,9.18359,9.32864,0.069504,0.741536,0.00816,0.007712,0.030176,0.09728,0.098336,8.16125,0.114688
+1489,97.1076,10.2979,8.2519,0.069952,0.749952,0.008064,0.006464,0.028672,0.097952,0.098144,7.0783,0.1144
+1490,106.956,9.34961,8.29238,0.069216,0.808704,0.00688,0.006112,0.028704,0.098144,0.098208,7.06352,0.112896
+1491,105.133,9.51172,9.18368,0.072128,0.819104,0.007776,0.00464,0.02992,0.097024,0.098304,7.93978,0.115008
+1492,88.8889,11.25,8.46851,0.068992,0.948384,0.018048,0.005056,0.030144,0.104672,0.106752,7.0729,0.113568
+1493,118.711,8.42383,8.65507,0.069056,0.836352,0.00752,0.0048,0.029984,0.09696,0.098304,7.39699,0.115104
+1494,106.301,9.40723,9.10067,0.069664,0.74544,0.008192,0.006144,0.028672,0.100384,0.10032,7.92781,0.114048
+1495,99.8245,10.0176,8.28624,0.069664,0.798464,0.00752,0.004992,0.0288,0.097472,0.098048,7.06851,0.112768
+1496,108.463,9.21973,8.63283,0.069344,0.755552,0.007264,0.007904,0.0288,0.098336,0.098304,7.44832,0.119008
+1497,99.3114,10.0693,9.13798,0.06832,0.776064,0.008192,0.005888,0.028928,0.097632,0.096928,7.94214,0.113888
+1498,96.3674,10.377,8.34179,0.067872,0.83904,0.008064,0.005088,0.03008,0.098176,0.098848,7.07994,0.114688
+1499,111.196,8.99316,8.6281,0.069632,0.73632,0.008352,0.006496,0.029056,0.098368,0.098272,7.46704,0.11456
+1500,89.5575,11.166,9.37616,0.067968,1.8633,0.008576,0.005824,0.03104,0.106496,0.098304,7.08147,0.113184
+1501,114.516,8.73242,8.23501,0.069536,0.741472,0.008192,0.006144,0.028704,0.098272,0.098304,7.06938,0.115008
+1502,106.235,9.41309,8.71014,0.069632,0.834976,0.008288,0.005824,0.028992,0.097856,0.097248,7.45446,0.112864
+1503,103.413,9.66992,8.28586,0.06864,0.780704,0.00672,0.005888,0.028896,0.097696,0.098624,7.072,0.126688
+1504,109.601,9.12402,8.24704,0.069632,0.747136,0.008032,0.005728,0.029216,0.09872,0.100352,7.07078,0.11744
+1505,96.7681,10.334,9.19965,0.069216,1.01418,0.016384,0.006144,0.028672,0.100096,0.102656,7.47235,0.389952
+1506,106.191,9.41699,9.52733,0.071648,1.04579,0.008064,0.005056,0.029952,0.096992,0.113856,8.04125,0.11472
+1507,98.6988,10.1318,8.2424,0.069024,0.74608,0.008192,0.00592,0.028896,0.096288,0.098272,7.07549,0.11424
+1508,109.017,9.17285,8.24304,0.069056,0.744416,0.008224,0.005632,0.02912,0.098272,0.098368,7.07587,0.11408
+1509,108.774,9.19336,9.09107,0.069664,0.740352,0.007168,0.005984,0.0288,0.098208,0.098432,7.92573,0.116736
+1510,98.4237,10.1602,8.28205,0.06816,0.77728,0.00832,0.00512,0.030112,0.097888,0.111424,7.0697,0.114048
+1511,110.452,9.05371,8.65034,0.069632,0.740544,0.008352,0.004832,0.029792,0.097152,0.105984,7.47978,0.114272
+1512,104.458,9.57324,9.09798,0.069728,0.746144,0.008192,0.007424,0.029216,0.098464,0.100448,7.92518,0.113184
+1513,97.5424,10.252,8.37795,0.069568,0.878688,0.00816,0.006144,0.028672,0.09744,0.097152,7.07709,0.11504
+1514,110.108,9.08203,8.72861,0.075776,0.820384,0.00832,0.005056,0.030144,0.098688,0.09968,7.47702,0.113536
+1515,103.717,9.6416,9.11088,0.07152,0.75088,0.007264,0.007104,0.029088,0.096736,0.098272,7.93597,0.114048
+1516,99.2056,10.0801,8.63222,0.069728,0.745376,0.008192,0.00608,0.028736,0.099552,0.105248,7.45661,0.112704
+1517,104.661,9.55469,9.47357,0.07136,0.745792,0.008192,0.006144,0.029696,0.09728,0.099552,8.30134,0.114208
+1518,94.0485,10.6328,8.24717,0.06848,0.755744,0.008192,0.006112,0.030112,0.098208,0.098528,7.06816,0.113632
+1519,110.357,9.06152,8.2391,0.069632,0.7368,0.00832,0.005568,0.029024,0.09824,0.096928,7.0799,0.114688
+1520,108.728,9.19727,8.62278,0.070112,0.741536,0.00768,0.00672,0.028704,0.098272,0.098304,7.45859,0.112864
+1521,91.1437,10.9717,8.43366,0.07168,0.9216,0.008256,0.00608,0.029696,0.103424,0.103776,7.07446,0.114688
+1522,118.368,8.44824,8.23712,0.069696,0.74752,0.007936,0.0064,0.028672,0.100352,0.100352,7.06269,0.113504
+1523,104.288,9.58887,8.32883,0.069664,0.815072,0.008192,0.005664,0.02912,0.097824,0.098176,7.09002,0.115104
+1524,101.006,9.90039,9.51098,0.075424,1.09178,0.00832,0.005824,0.028992,0.11408,0.098976,7.97398,0.1136
+1525,99.0712,10.0938,8.2985,0.069632,0.787936,0.008032,0.0048,0.02976,0.097216,0.114688,7.07168,0.114752
+1526,100.936,9.90723,8.7711,0.06912,0.883328,0.008192,0.006144,0.029824,0.10656,0.097216,7.45664,0.11408
+1527,103.696,9.64355,9.12902,0.07152,0.776384,0.00816,0.0072,0.029664,0.098304,0.100352,7.92371,0.113728
+1528,96.1593,10.3994,9.51296,0.069664,0.75712,0.008032,0.005088,0.0296,0.107424,0.100064,8.32237,0.1136
+1529,97.2275,10.2852,8.62406,0.069664,0.733152,0.008192,0.005952,0.028864,0.096256,0.101632,7.46752,0.112832
+1530,99.961,10.0039,8.74106,0.068832,1.24413,0.008192,0.006144,0.032352,0.098208,0.098208,7.07235,0.11264
+1531,101.386,9.86328,8.2575,0.069184,0.75616,0.008352,0.005984,0.028672,0.099584,0.098976,7.07315,0.11744
+1532,108.325,9.23145,8.70138,0.070784,0.827712,0.008224,0.005824,0.028864,0.098112,0.09712,7.45062,0.114112
+1533,103.549,9.65723,8.28006,0.068832,0.764288,0.008192,0.005568,0.029056,0.096864,0.098304,7.08198,0.126976
+1534,95.988,10.418,8.55658,0.069632,1.04246,0.023776,0.005088,0.030528,0.099584,0.099072,7.06966,0.116768
+1535,120.047,8.33008,8.28998,0.070144,0.796576,0.008064,0.005792,0.029312,0.098304,0.098272,7.06963,0.113888
diff --git a/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_2000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,BinSearchGridCell.csv b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_2000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,BinSearchGridCell.csv
new file mode 100644
index 0000000..b602fe5
--- /dev/null
+++ b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_2000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,BinSearchGridCell.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-921,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,34.5779,28.9449,27.3605,0.131613,1.46838,0.00889434,0.00614594,0.139566,0.190345,0.190993,24.9983,0.226256
+max_1024,39.9314,32.0078,29.3297,0.169984,2.77827,0.06784,0.02272,0.158784,0.610336,0.515232,26.9394,0.589888
+min_1024,31.2424,25.043,26.6159,0.127232,1.32582,0.006752,0.004128,0.133952,0.185056,0.186528,24.3855,0.220992
+512,34.8881,28.6631,28.2665,0.12864,1.70957,0.008352,0.004832,0.137216,0.187968,0.197056,25.6691,0.223808
+513,35.5198,28.1533,27.1504,0.130816,1.44957,0.008288,0.0048,0.139104,0.194624,0.190016,24.8117,0.221408
+514,34.1459,29.2861,26.6586,0.131104,1.34064,0.00832,0.005792,0.139584,0.188192,0.188864,24.433,0.223104
+515,33.195,30.125,28.1553,0.130624,1.6031,0.008448,0.004768,0.139264,0.188416,0.189856,25.6681,0.222784
+516,36.3598,27.5029,26.7041,0.131808,1.3745,0.008384,0.005952,0.137216,0.189568,0.188576,24.4354,0.23264
+517,34.6696,28.8438,28.2723,0.132832,1.69706,0.00832,0.004992,0.149504,0.1864,0.189728,25.674,0.22944
+518,32.3805,30.8828,28.0371,0.130336,1.49578,0.007424,0.004864,0.140896,0.18816,0.189088,25.6574,0.2232
+519,35.3506,28.2881,26.8259,0.13088,1.51776,0.008192,0.006016,0.138432,0.187328,0.18992,24.4249,0.222528
+520,35.0781,28.5078,26.8159,0.131072,1.48998,0.00832,0.004928,0.140416,0.188672,0.189056,24.4405,0.223008
+521,35.0697,28.5146,28.0686,0.13136,1.50499,0.00832,0.0048,0.138432,0.190496,0.190528,25.6777,0.221984
+522,33.8557,29.5371,26.8102,0.13488,1.46589,0.00864,0.005696,0.148224,0.188128,0.188128,24.4455,0.225152
+523,34.6156,28.8887,26.843,0.130432,1.52029,0.008192,0.006112,0.139264,0.19456,0.188416,24.4285,0.227168
+524,35.3128,28.3184,28.1293,0.131072,1.47866,0.009216,0.011264,0.138912,0.186752,0.188384,25.7618,0.223232
+525,33.1789,30.1396,26.7531,0.130816,1.44819,0.008192,0.00608,0.13728,0.192512,0.189856,24.4179,0.22224
+526,35.0829,28.5039,27.6193,0.145408,1.39418,0.008576,0.005696,0.141888,0.196192,0.190592,25.3151,0.221664
+527,34.3095,29.1465,27.9869,0.131456,1.42566,0.00832,0.005632,0.139488,0.18688,0.190272,25.6756,0.223648
+528,33.9365,29.4668,26.8141,0.131072,1.49459,0.008288,0.006016,0.141248,0.188,0.187328,24.4304,0.227168
+529,34.22,29.2227,27.2876,0.129024,1.59862,0.017248,0.005952,0.137408,0.187808,0.188128,24.7999,0.223488
+530,33.6909,29.6816,28.8584,0.131104,2.28944,0.018336,0.005664,0.137984,0.188448,0.189408,25.6748,0.223232
+531,34.9333,28.626,26.7653,0.131072,1.44794,0.008192,0.006048,0.137344,0.189888,0.191008,24.4321,0.221696
+532,35.2787,28.3457,26.794,0.132384,1.47053,0.008608,0.005632,0.140032,0.191744,0.189184,24.434,0.22192
+533,35.4804,28.1846,27.9306,0.130976,1.32928,0.008192,0.006016,0.13936,0.186368,0.192064,25.7145,0.22384
+534,33.95,29.4551,26.7132,0.131296,1.36579,0.009248,0.005088,0.139264,0.188448,0.189408,24.4562,0.228416
+535,35.2338,28.3818,26.7612,0.131072,1.45197,0.008288,0.0056,0.13568,0.18784,0.188096,24.4274,0.22528
+536,33.8322,29.5576,28.1477,0.131072,1.58656,0.008352,0.005632,0.137824,0.186752,0.188416,25.6814,0.221664
+537,34.6684,28.8447,28.0716,0.130688,1.51136,0.00832,0.005568,0.141504,0.187104,0.190464,25.6737,0.222848
+538,33.772,29.6104,26.8032,0.131072,1.4761,0.008288,0.005824,0.135904,0.187808,0.187008,24.4469,0.224288
+539,35.3225,28.3105,28.0044,0.13312,1.4192,0.008256,0.006016,0.138528,0.186528,0.187072,25.698,0.227648
+540,34.1322,29.2979,26.6991,0.130304,1.38934,0.00816,0.00608,0.13648,0.1872,0.188384,24.4224,0.230752
+541,34.9822,28.5859,27.9943,0.129376,1.40877,0.008128,0.005568,0.137952,0.1864,0.188384,25.7065,0.223232
+542,33.7219,29.6543,27.9201,0.13056,1.35219,0.008192,0.006176,0.1368,0.19248,0.194976,25.6758,0.222976
+543,33.8255,29.5635,26.7094,0.131296,1.38752,0.00832,0.0048,0.14272,0.19072,0.18864,24.4287,0.226688
+544,34.6215,28.8838,26.8473,0.13312,1.5088,0.008288,0.014656,0.13536,0.188384,0.190272,24.4447,0.223648
+545,34.8714,28.6768,28.0038,0.132832,1.43434,0.008416,0.00592,0.139264,0.186368,0.189856,25.6805,0.226368
+546,34.7767,28.7549,26.6801,0.131008,1.35197,0.008288,0.0056,0.137696,0.186912,0.188448,24.4428,0.227328
+547,35.0361,28.542,26.6553,0.129568,1.34349,0.008192,0.005248,0.136096,0.188384,0.1896,24.433,0.221696
+548,33.4444,29.9004,28.2441,0.129408,1.66198,0.01824,0.005056,0.139232,0.200064,0.188544,25.6794,0.222208
+549,36.0589,27.7324,26.6661,0.14336,1.32678,0.00832,0.0056,0.14208,0.188416,0.190112,24.4391,0.222304
+550,34.9012,28.6523,27.941,0.130976,1.37882,0.00832,0.0056,0.139936,0.188416,0.192512,25.6717,0.224768
+551,33.4684,29.8789,28.129,0.132896,1.58461,0.008352,0.004832,0.136704,0.18688,0.188416,25.6591,0.227168
+552,34.0731,29.3486,26.8022,0.130176,1.50326,0.008352,0.004928,0.137184,0.188352,0.18832,24.4184,0.223232
+553,34.7826,28.75,27.1703,0.129472,1.45408,0.008192,0.005856,0.143648,0.194464,0.188512,24.8238,0.222272
+554,34.7649,28.7646,27.9556,0.133728,1.37379,0.008288,0.00576,0.137888,0.189984,0.190592,25.6922,0.22336
+555,33.9017,29.4971,26.7644,0.132928,1.43379,0.008416,0.00592,0.141056,0.186624,0.18976,24.4225,0.243488
+556,35.1733,28.4307,26.7121,0.13312,1.37974,0.008448,0.005696,0.137024,0.18736,0.188448,24.449,0.223232
+557,35.0397,28.5391,27.914,0.131072,1.35734,0.008448,0.005568,0.1392,0.186752,0.188,25.6741,0.223456
+558,34.0426,29.375,26.741,0.13056,1.42211,0.008192,0.006016,0.139328,0.18816,0.188512,24.4349,0.223232
+559,35.4301,28.2246,26.717,0.129888,1.4128,0.008448,0.0056,0.137824,0.187424,0.18736,24.4244,0.223232
+560,35.3079,28.3223,27.9218,0.131072,1.34144,0.008256,0.00608,0.137216,0.208896,0.1896,25.6766,0.22256
+561,33.8333,29.5566,28.0996,0.144384,1.50323,0.019552,0.005024,0.14336,0.189728,0.189152,25.6737,0.231424
+562,33.762,29.6191,26.8172,0.133504,1.45178,0.008288,0.004608,0.140288,0.187392,0.188064,24.4801,0.223232
+563,34.7072,28.8125,28.3525,0.133184,1.76736,0.008192,0.006176,0.153568,0.187904,0.191008,25.6768,0.228288
+564,32.3028,30.957,26.9476,0.131072,1.62752,0.00784,0.019072,0.143712,0.188,0.186816,24.422,0.221664
+565,37.3396,26.7812,26.7838,0.129536,1.44707,0.008288,0.004832,0.141088,0.19408,0.19712,24.4389,0.22288
+566,34.4688,29.0117,29.0837,0.130368,1.66774,0.008224,0.005664,0.137696,0.200704,0.188416,26.5212,0.22368
+567,32.6781,30.6016,26.8147,0.133184,1.48947,0.008192,0.005664,0.139744,0.187424,0.18736,24.4388,0.224832
+568,35.1769,28.4277,26.7664,0.132096,1.44077,0.008224,0.006112,0.139264,0.187968,0.187936,24.4372,0.226848
+569,34.9751,28.5918,27.9372,0.129632,1.39366,0.00832,0.004768,0.138592,0.186816,0.198752,25.6548,0.22176
+570,33.6731,29.6973,26.7563,0.130336,1.44227,0.008288,0.005568,0.135936,0.188512,0.18832,24.4347,0.222368
+571,35.119,28.4746,26.7991,0.1304,1.49318,0.00848,0.005568,0.135968,0.189632,0.189248,24.4241,0.222592
+572,35.0949,28.4941,28.0777,0.145408,1.48653,0.008288,0.005728,0.139264,0.189088,0.19216,25.6781,0.23312
+573,33.8781,29.5176,27.1384,0.131488,1.43971,0.008224,0.006112,0.138336,0.186656,0.188544,24.8151,0.224256
+574,34.1835,29.2539,27.6136,0.130976,1.52419,0.020352,0.0056,0.139936,0.610336,0.515232,24.443,0.223968
+575,35.0205,28.5547,27.9144,0.129376,1.37194,0.008224,0.005664,0.137248,0.186592,0.18816,25.6655,0.221664
+576,33.1864,30.1328,26.8744,0.129536,1.55238,0.009312,0.005024,0.139104,0.188608,0.190432,24.4363,0.22368
+577,34.0109,29.4023,28.3287,0.14416,1.72458,0.007776,0.004512,0.147424,0.190624,0.193696,25.6923,0.223648
+578,32.5038,30.7656,28.0953,0.133728,1.47011,0.00832,0.005696,0.13808,0.18784,0.188608,25.7335,0.229376
+579,36.1505,27.6621,26.8108,0.12944,1.4848,0.008224,0.006112,0.137216,0.187456,0.188544,24.443,0.226048
+580,35.0157,28.5586,26.7708,0.131072,1.44522,0.0232,0.006144,0.13824,0.195264,0.188512,24.4199,0.223264
+581,35.1842,28.4219,29.1515,0.139872,1.35168,0.008352,0.005984,0.141184,0.186656,0.190304,26.9046,0.222912
+582,31.7401,31.5059,26.9012,0.13168,1.59677,0.008352,0.004896,0.141216,0.188064,0.188256,24.4181,0.223872
+583,33.1735,30.1445,27.369,0.134304,2.03632,0.008288,0.01456,0.139264,0.187648,0.188736,24.4328,0.22704
+584,36.5767,27.3398,28.0356,0.129696,1.47658,0.008352,0.005984,0.139264,0.188224,0.188608,25.6758,0.223072
+585,33.6289,29.7363,26.8024,0.12928,1.48992,0.008288,0.004928,0.139264,0.188256,0.190272,24.4302,0.221984
+586,35.1238,28.4707,27.898,0.129984,1.71622,0.008224,0.006112,0.13856,0.189152,0.190464,25.2966,0.222656
+587,34.236,29.209,28.0414,0.130944,1.44765,0.00832,0.004736,0.14128,0.188064,0.188384,25.7069,0.22512
+588,33.2597,30.0664,26.952,0.130624,1.59965,0.008256,0.020992,0.139296,0.18816,0.18816,24.4454,0.231424
+589,34.7519,28.7754,28.0608,0.130496,1.51373,0.008224,0.005632,0.138144,0.187744,0.18704,25.6673,0.22256
+590,33.7442,29.6348,28.1113,0.13088,1.54282,0.009504,0.00496,0.138912,0.188192,0.188928,25.6858,0.221312
+591,32.7701,30.5156,26.8659,0.131296,1.53155,0.00832,0.0056,0.140032,0.188096,0.202464,24.4251,0.233472
+592,36.5427,27.3652,26.8022,0.133152,1.48067,0.008192,0.005984,0.137376,0.1864,0.188416,24.4387,0.223328
+593,34.944,28.6172,28.0494,0.131072,1.4848,0.008192,0.006144,0.136384,0.187168,0.194592,25.6737,0.227328
+594,33.9388,29.4648,26.7564,0.13088,1.44813,0.008288,0.006048,0.137216,0.188416,0.188416,24.426,0.22304
+595,35.4792,28.1855,26.7735,0.130784,1.47075,0.008192,0.006112,0.136384,0.18688,0.18848,24.4242,0.221728
+596,34.1242,29.3047,28.1047,0.131072,1.4616,0.008352,0.005728,0.138144,0.19664,0.190432,25.7454,0.227328
+597,33.932,29.4707,26.9046,0.131776,1.36822,0.008416,0.00592,0.140832,0.188896,0.190432,24.6306,0.23952
+598,35.252,28.3672,27.6932,0.132864,1.4217,0.00832,0.006016,0.147424,0.189728,0.189152,25.3727,0.22528
+599,33.8916,29.5059,28.0576,0.131072,1.51664,0.00832,0.004896,0.137216,0.188416,0.188448,25.659,0.223552
+600,33.2922,30.0371,27.0151,0.13072,1.69846,0.016384,0.006144,0.137216,0.188416,0.188512,24.4264,0.22288
+601,35.235,28.3809,26.8244,0.130752,1.48922,0.008192,0.00608,0.138912,0.188128,0.18912,24.4511,0.222912
+602,35.0709,28.5137,28.9062,0.14544,1.44173,0.008384,0.00576,0.138016,0.190144,0.206528,26.5461,0.224064
+603,32.5969,30.6777,26.8268,0.133088,1.48688,0.008384,0.005952,0.141312,0.188256,0.189824,24.4478,0.225344
+604,34.9631,28.6016,26.9466,0.130528,1.63421,0.008288,0.005856,0.136032,0.18816,0.18864,24.4296,0.22528
+605,35.1214,28.4727,27.9593,0.134592,1.39936,0.008192,0.005792,0.137056,0.196672,0.188864,25.6512,0.237568
+606,33.5122,29.8398,26.8452,0.130976,1.52586,0.008096,0.0056,0.139904,0.188416,0.188416,24.4367,0.221216
+607,33.9275,29.4746,27.0074,0.139424,1.66736,0.008224,0.022496,0.139264,0.197664,0.190912,24.4209,0.221184
+608,36.7183,27.2344,27.911,0.130112,1.3535,0.008384,0.005952,0.149344,0.188576,0.192448,25.6595,0.223232
+609,33.8826,29.5137,26.6785,0.131072,1.37421,0.008192,0.006112,0.136896,0.18672,0.188416,24.4219,0.224992
+610,35.0637,28.5195,28.0498,0.133536,1.4848,0.007264,0.005024,0.137248,0.18752,0.190496,25.6787,0.22528
+611,34.5899,28.9102,27.9333,0.13104,1.36874,0.008192,0.005888,0.13952,0.187968,0.197056,25.6737,0.221216
+612,34.0765,29.3457,26.6957,0.131072,1.36755,0.008288,0.005696,0.135584,0.187968,0.189312,24.4481,0.222112
+613,34.4248,29.0488,27.9327,0.130496,1.38298,0.008352,0.005984,0.13904,0.18848,0.189664,25.6656,0.222144
+614,35.0469,28.5332,26.683,0.131168,1.34342,0.008192,0.006112,0.138624,0.19024,0.189248,24.445,0.231008
+615,35.4007,28.248,26.6755,0.132352,1.3527,0.008192,0.006144,0.141312,0.186368,0.188416,24.4367,0.223232
+616,34.7472,28.7793,28.1682,0.13312,1.55853,0.009216,0.00512,0.146496,0.18736,0.188384,25.7106,0.229376
+617,33.7887,29.5957,27.149,0.129696,1.44986,0.008288,0.005664,0.139168,0.186208,0.18848,24.8184,0.223232
+618,34.404,29.0664,27.5279,0.130912,2.20246,0.008192,0.005824,0.137408,0.188288,0.188672,24.4388,0.227328
+619,35.4571,28.2031,27.9144,0.131072,1.3616,0.00832,0.005568,0.135904,0.187552,0.189312,25.6732,0.221888
+620,34.0652,29.3555,26.7223,0.130816,1.40515,0.008224,0.005856,0.139552,0.190368,0.190336,24.43,0.221952
+621,35.2326,28.3828,27.949,0.131072,1.37734,0.008288,0.00496,0.139104,0.18864,0.190208,25.6855,0.223904
+622,34.0312,29.3848,28.0189,0.132544,1.43744,0.008448,0.004864,0.139264,0.18768,0.187104,25.6963,0.225344
+623,32.6406,30.6367,27.3713,0.130688,2.04224,0.008192,0.005824,0.136832,0.197344,0.194112,24.4331,0.222976
+624,36.0767,27.7188,26.8248,0.131072,1.5007,0.008352,0.005984,0.139744,0.188416,0.188416,24.4406,0.221472
+625,35.0997,28.4902,27.9928,0.129824,1.43757,0.008224,0.005728,0.13968,0.188288,0.188544,25.6737,0.221216
+626,33.9703,29.4375,26.6935,0.131264,1.35373,0.008416,0.00592,0.141312,0.189824,0.188256,24.4452,0.229632
+627,35.3933,28.2539,26.7795,0.13312,1.46186,0.008288,0.005568,0.140032,0.186304,0.188608,24.4306,0.22512
+628,34.944,28.6172,28.0906,0.133376,1.53498,0.008288,0.005024,0.138368,0.187232,0.187808,25.6693,0.226208
+629,33.5672,29.791,27.2218,0.13104,1.52787,0.00928,0.005024,0.137216,0.187424,0.188416,24.8125,0.223008
+630,34.5946,28.9062,27.05,0.132736,1.7289,0.008224,0.006112,0.140448,0.187264,0.189408,24.4348,0.222112
+631,35.2714,28.3516,27.929,0.142848,1.35261,0.00832,0.007104,0.13568,0.186656,0.188576,25.684,0.2232
+632,34.0448,29.373,26.7256,0.130912,1.37776,0.008288,0.004736,0.153568,0.188416,0.19232,24.4472,0.222432
+633,35.2205,28.3926,27.9491,0.132416,1.40339,0.00832,0.005664,0.135712,0.187584,0.188992,25.6628,0.22416
+634,33.8088,29.5781,27.9326,0.130688,1.39475,0.008288,0.005728,0.139904,0.188,0.187872,25.6534,0.223968
+635,33.8222,29.5664,26.6912,0.130048,1.38944,0.008288,0.005664,0.137728,0.18784,0.192992,24.4158,0.223328
+636,35.4276,28.2266,26.8079,0.131072,1.49616,0.00832,0.004928,0.143328,0.188,0.188864,24.4237,0.223552
+637,35.0925,28.4961,28.0143,0.131072,1.45734,0.008288,0.004832,0.14336,0.188416,0.190112,25.6679,0.222912
+638,33.7442,29.6348,26.8247,0.132192,1.49187,0.008192,0.005664,0.140896,0.187264,0.18992,24.4328,0.235936
+639,35.4669,28.1953,26.6815,0.132544,1.36829,0.008352,0.005568,0.139424,0.186624,0.18896,24.4265,0.22528
+640,35.0709,28.5137,28.051,0.134912,1.45434,0.008192,0.005664,0.137696,0.187744,0.19728,25.6963,0.228896
+641,33.8401,29.5508,27.1738,0.129856,1.46643,0.008224,0.006112,0.138624,0.186944,0.188384,24.8274,0.221792
+642,33.8244,29.5645,27.5049,0.130336,2.18624,0.007168,0.005088,0.136384,0.188576,0.18704,24.4408,0.223232
+643,35.4301,28.2246,28.0453,0.130656,1.48522,0.008224,0.006112,0.140672,0.187008,0.190112,25.6753,0.222048
+644,34.0607,29.3594,26.6911,0.13136,1.38221,0.008352,0.00576,0.137472,0.190592,0.189696,24.4227,0.222944
+645,35.1673,28.4355,27.9846,0.131424,1.4463,0.008256,0.005632,0.137376,0.186752,0.196608,25.6471,0.225184
+646,33.9163,29.4844,28.0095,0.130432,1.4609,0.00944,0.004896,0.139232,0.188416,0.18784,25.666,0.222304
+647,32.5493,30.7227,26.8749,0.130272,1.56854,0.0072,0.00544,0.13728,0.196864,0.194816,24.4117,0.222784
+648,35.9955,27.7812,27.9011,0.13056,1.36653,0.008192,0.006144,0.138592,0.187072,0.188416,25.6532,0.222368
+649,34.7166,28.8047,26.7058,0.131072,1.39613,0.008352,0.005664,0.138144,0.189856,0.191104,24.4224,0.223072
+650,35.5457,28.1328,27.474,0.127712,1.3312,0.008224,0.005984,0.137344,0.188416,0.192192,25.2584,0.224544
+651,33.5628,29.7949,28.0084,0.13312,1.43488,0.00832,0.0048,0.139296,0.198304,0.18848,25.6739,0.227328
+652,33.9635,29.4434,26.6874,0.129632,1.3937,0.008288,0.004992,0.137216,0.187552,0.1888,24.4143,0.222976
+653,35.3055,28.3242,26.7282,0.131072,1.42509,0.008288,0.0056,0.137984,0.186368,0.197888,24.413,0.222976
+654,34.5736,28.9238,29.2278,0.129792,1.76742,0.008192,0.005856,0.139584,0.188448,0.190304,26.5641,0.234048
+655,32.5493,30.7227,26.7676,0.133248,1.45213,0.00816,0.005984,0.139424,0.186368,0.188416,24.4306,0.223232
+656,34.9966,28.5742,26.8288,0.130912,1.50893,0.008288,0.00576,0.139872,0.188032,0.188256,24.4335,0.22528
+657,35.8518,27.8926,27.8856,0.131072,1.34323,0.00832,0.0056,0.139936,0.187488,0.188416,25.6439,0.237568
+658,34.1288,29.3008,26.7699,0.139776,1.43155,0.009472,0.004928,0.141024,0.188,0.187008,24.4449,0.223232
+659,35.2666,28.3555,26.8052,0.130016,1.4889,0.008192,0.00608,0.138976,0.187904,0.205696,24.4173,0.222112
+660,35.672,28.0332,27.9028,0.129824,1.34758,0.008192,0.006144,0.144672,0.189152,0.189888,25.6516,0.23568
+661,33.3247,30.0078,27.9532,0.13088,1.41126,0.008224,0.006112,0.141312,0.190464,0.188448,25.6548,0.221728
+662,33.9793,29.4297,26.6916,0.135168,1.37168,0.008288,0.006272,0.139168,0.18672,0.189952,24.4285,0.225792
+663,34.9536,28.6094,28.0366,0.130848,1.4887,0.008352,0.005632,0.137088,0.195488,0.188256,25.6575,0.224768
+664,33.609,29.7539,26.7794,0.12928,1.44154,0.008192,0.005984,0.135328,0.188256,0.20496,24.4429,0.222976
+665,35.1311,28.4648,26.7571,0.131072,1.45344,0.008288,0.004672,0.140416,0.188416,0.188352,24.421,0.22144
+666,35.1987,28.4102,29.0345,0.129056,1.65274,0.008192,0.006048,0.1392,0.18832,0.190208,26.4968,0.223936
+667,32.0782,31.1738,26.7331,0.133376,1.4216,0.008192,0.006176,0.139232,0.187552,0.18928,24.4237,0.224
+668,35.1576,28.4434,26.9865,0.131072,1.66301,0.0184,0.006144,0.139136,0.187744,0.188416,24.4249,0.227712
+669,34.3532,29.1094,27.97,0.129952,1.42339,0.009312,0.005056,0.139232,0.187968,0.188864,25.6635,0.222784
+670,33.7909,29.5938,26.9339,0.129696,1.6095,0.008288,0.015968,0.13776,0.188128,0.1888,24.4325,0.223232
+671,36.4128,27.4629,26.7173,0.130368,1.41754,0.008288,0.005664,0.137984,0.188128,0.188736,24.4183,0.222304
+672,35.5432,28.1348,27.9452,0.130816,1.39482,0.008384,0.0056,0.14,0.189568,0.189312,25.6606,0.226144
+673,33.9568,29.4492,26.7244,0.131072,1.4023,0.00832,0.005664,0.138144,0.187552,0.1888,24.4392,0.223296
+674,35.5728,28.1113,27.9696,0.132,1.39408,0.00832,0.00576,0.13808,0.188416,0.188448,25.6876,0.226944
+675,33.1821,30.1367,28.1516,0.130464,1.6041,0.008352,0.005568,0.137888,0.186368,0.188416,25.6688,0.221632
+676,33.5188,29.834,26.7656,0.129472,1.43146,0.00816,0.014336,0.137216,0.188416,0.189632,24.4437,0.223232
+677,34.4851,28.998,27.9215,0.13072,1.3593,0.00832,0.004928,0.139232,0.188416,0.190464,25.6778,0.222336
+678,34.686,28.8301,28.0018,0.131072,1.43363,0.008192,0.006112,0.145408,0.194592,0.188384,25.6696,0.224736
+679,34.0245,29.3906,26.7315,0.130016,1.42336,0.008384,0.005952,0.150816,0.18688,0.188384,24.4114,0.226336
+680,35.342,28.2949,26.6668,0.130656,1.35786,0.008288,0.005728,0.1376,0.18784,0.188352,24.4246,0.225824
+681,35.3445,28.293,27.9744,0.12976,1.41645,0.008288,0.004736,0.147424,0.187456,0.187424,25.6716,0.221248
+682,32.2499,31.0078,28.1009,0.12928,2.77827,0.008352,0.004896,0.139168,0.190464,0.192352,24.4369,0.221184
+683,35.2132,28.3984,28.035,0.131072,1.48672,0.008352,0.0056,0.139776,0.187808,0.191072,25.6613,0.223328
+684,34.0788,29.3438,26.7551,0.13312,1.44998,0.008192,0.006144,0.139264,0.188448,0.188416,24.4162,0.22528
+685,35.2666,28.3555,26.7578,0.12976,1.44179,0.008416,0.00592,0.1408,0.186368,0.188896,24.4283,0.227552
+686,35.4472,28.2109,29.1836,0.131072,1.3944,0.00832,0.005664,0.139904,0.18752,0.188448,26.9054,0.222848
+687,32.6011,30.6738,26.6547,0.129952,1.35971,0.009216,0.00512,0.135168,0.187904,0.190464,24.4145,0.22272
+688,35.5013,28.168,26.6898,0.132704,1.37901,0.008384,0.005952,0.139296,0.190336,0.19056,24.422,0.221536
+689,35.0517,28.5293,28.0353,0.129376,1.48278,0.008256,0.00608,0.141248,0.18848,0.191904,25.6634,0.22384
+690,33.8759,29.5195,26.812,0.132896,1.51158,0.008256,0.005792,0.137568,0.188256,0.188448,24.4143,0.224864
+691,35.3713,28.2715,26.7899,0.131072,1.4807,0.008192,0.00576,0.137024,0.186944,0.188544,24.4259,0.225792
+692,35.3811,28.2637,28.0433,0.131008,1.45766,0.008288,0.005696,0.140192,0.187744,0.188864,25.702,0.221792
+693,33.5144,29.8379,27.9831,0.130368,1.43398,0.008288,0.0056,0.141344,0.187104,0.188416,25.6654,0.222624
+694,34.0902,29.334,26.665,0.130976,1.36045,0.008416,0.00592,0.139264,0.190144,0.190624,24.4164,0.222816
+695,35.2617,28.3594,28.1027,0.129984,1.54154,0.006752,0.006112,0.141312,0.18816,0.192096,25.6724,0.224384
+696,33.4378,29.9062,26.6961,0.131232,1.38803,0.00832,0.004928,0.14096,0.187872,0.188768,24.4207,0.22528
+697,36.0107,27.7695,26.6694,0.13104,1.36842,0.009312,0.005024,0.135168,0.187904,0.18688,24.4204,0.22528
+698,35.2132,28.3984,29.2827,0.12944,1.50118,0.008192,0.006144,0.137088,0.187712,0.188448,26.9027,0.221792
+699,32.0842,31.168,26.7302,0.130752,1.43597,0.008352,0.006016,0.139232,0.188416,0.189984,24.4096,0.221888
+700,35.5432,28.1348,28.0844,0.130528,1.51587,0.008288,0.005728,0.141024,0.18944,0.192512,25.6778,0.223232
+701,33.8088,29.5781,27.2115,0.13312,1.52371,0.008288,0.006048,0.139168,0.186464,0.188416,24.8008,0.225408
+702,34.7826,28.75,27.5824,0.132128,1.41821,0.00928,0.005056,0.137216,0.187904,0.18816,25.2751,0.229312
+703,34.3302,29.1289,27.9897,0.131072,1.4231,0.01664,0.006144,0.137216,0.186432,0.189472,25.6767,0.222912
+704,33.9253,29.4766,26.7053,0.130656,1.38208,0.007968,0.005056,0.139264,0.19024,0.18864,24.4381,0.223296
+705,35.6844,28.0234,27.8897,0.13024,1.35008,0.008384,0.005664,0.139936,0.188256,0.189856,25.6551,0.222144
+706,34.1288,29.3008,27.9424,0.132608,1.37392,0.00832,0.004896,0.1408,0.190848,0.188448,25.6771,0.225504
+707,33.9815,29.4277,26.7346,0.13312,1.4336,0.009248,0.005088,0.138464,0.186688,0.188,24.4171,0.223296
+708,35.4816,28.1836,26.7712,0.130272,1.48301,0.008256,0.004896,0.136768,0.18672,0.188032,24.4064,0.22688
+709,35.2787,28.3457,27.9941,0.131072,1.44762,0.008288,0.005568,0.139968,0.186464,0.189984,25.6637,0.221504
+710,34.2911,29.1621,26.6978,0.131008,1.35594,0.008192,0.006144,0.139264,0.189952,0.203264,24.4423,0.22176
+711,34.6555,28.8555,26.7832,0.131072,1.50323,0.008192,0.00576,0.135456,0.186464,0.190336,24.3997,0.223008
+712,35.6025,28.0879,27.8998,0.130752,1.34115,0.00832,0.004736,0.14064,0.188928,0.18848,25.6732,0.223616
+713,33.6953,29.6777,27.8932,0.131424,1.34758,0.008288,0.006048,0.139264,0.186368,0.190464,25.6593,0.22448
+714,33.8423,29.5488,26.6609,0.131072,1.35693,0.008352,0.004992,0.140992,0.18656,0.188416,24.4178,0.225728
+715,35.1142,28.4785,28.115,0.130304,1.55478,0.008544,0.016544,0.137152,0.187456,0.187392,25.6717,0.221184
+716,34.0697,29.3516,26.7039,0.131072,1.38646,0.008224,0.005856,0.1448,0.188576,0.18912,24.4265,0.223232
+717,35.303,28.3262,26.6711,0.131072,1.38979,0.00832,0.0048,0.138272,0.187328,0.189792,24.3985,0.223232
+718,33.7664,29.6152,29.1317,0.129984,1.74592,0.00832,0.004992,0.139296,0.190432,0.190464,26.4989,0.223328
+719,34.3118,29.1445,26.6404,0.13312,1.34349,0.008192,0.006016,0.139392,0.186496,0.188288,24.4118,0.223584
+720,35.6372,28.0605,26.6968,0.131264,1.37757,0.008288,0.00576,0.136,0.186496,0.188288,24.4384,0.224736
+721,35.3177,28.3145,27.9736,0.131072,1.39264,0.008192,0.006144,0.138624,0.187008,0.188448,25.698,0.22352
+722,33.2835,30.0449,26.7506,0.13104,1.44496,0.00832,0.004928,0.139264,0.187808,0.19312,24.4182,0.222912
+723,35.8619,27.8848,26.7356,0.129984,1.40432,0.008288,0.004608,0.144736,0.211616,0.188416,24.4204,0.223232
+724,35.0997,28.4902,27.9477,0.12976,1.39389,0.00832,0.004992,0.13808,0.188928,0.188864,25.6717,0.223168
+725,33.9703,29.4375,26.6628,0.131296,1.36246,0.008192,0.005984,0.139424,0.1896,0.191328,24.4122,0.2224
+726,35.5013,28.168,27.5285,0.131168,1.36928,0.008288,0.004736,0.140672,0.187008,0.190176,25.2726,0.224576
+727,34.038,29.3789,28.2664,0.13136,1.71616,0.008288,0.005632,0.137824,0.188128,0.188608,25.6654,0.22496
+728,33.1177,30.1953,26.7998,0.130784,1.48509,0.008416,0.00592,0.140992,0.187776,0.18736,24.4303,0.223136
+729,36.2042,27.6211,26.7351,0.129568,1.4192,0.008224,0.00576,0.139296,0.190816,0.199776,24.4192,0.223232
+730,34.9679,28.5977,28.1087,0.130848,1.53971,0.008288,0.004608,0.1448,0.188416,0.197216,25.6736,0.221248
+731,33.0536,30.2539,26.7891,0.130688,1.46038,0.008416,0.005568,0.156288,0.190016,0.189024,24.4265,0.222208
+732,36.2966,27.5508,26.7938,0.132128,1.46736,0.008192,0.006048,0.1392,0.188288,0.188704,24.4204,0.24352
+733,35.5728,28.1113,27.9206,0.131424,1.37888,0.008192,0.006144,0.13904,0.190688,0.188416,25.6512,0.226592
+734,33.6444,29.7227,26.9336,0.1296,1.58218,0.018208,0.005184,0.142624,0.195136,0.18832,24.443,0.229344
+735,35.0901,28.498,26.766,0.129632,1.45405,0.008224,0.00576,0.135264,0.198944,0.190496,24.4203,0.223264
+736,35.16,28.4414,28.0393,0.129184,1.46432,0.008192,0.005792,0.138848,0.187168,0.18768,25.6965,0.2216
+737,34.3302,29.1289,27.3695,0.130624,1.3767,0.008192,0.005824,0.139456,0.188544,0.188416,24.7966,0.535104
+738,34.7496,28.7773,26.7177,0.134624,1.3704,0.007808,0.006048,0.14,0.190336,0.191872,24.4536,0.223008
+739,35.1262,28.4688,28.0474,0.13216,1.51018,0.008288,0.005696,0.139264,0.188928,0.190048,25.6475,0.22528
+740,34.2063,29.2344,26.6734,0.13104,1.35408,0.008224,0.006112,0.141056,0.187936,0.188896,24.4308,0.225184
+741,35.4989,28.1699,27.9341,0.13136,1.39437,0.007936,0.004832,0.140608,0.187072,0.187776,25.6556,0.224544
+742,33.9815,29.4277,27.9748,0.131072,1.43558,0.008256,0.005792,0.139488,0.186496,0.188416,25.6573,0.222368
+743,33.9365,29.4668,26.7324,0.131072,1.40698,0.008192,0.005824,0.139584,0.188096,0.19696,24.4326,0.223072
+744,35.5358,28.1406,26.6814,0.130752,1.37408,0.00848,0.005728,0.13792,0.188384,0.191648,24.4209,0.22352
+745,35.3958,28.252,27.9204,0.131072,1.36397,0.008384,0.005952,0.141312,0.189536,0.190496,25.6562,0.233504
+746,33.9095,29.4902,26.7662,0.131616,1.44986,0.008416,0.005792,0.141504,0.186816,0.188416,24.4306,0.223232
+747,35.235,28.3809,26.7376,0.134112,1.43293,0.00832,0.00464,0.137216,0.187648,0.189088,24.4204,0.223264
+748,35.9223,27.8379,27.9155,0.131072,1.36016,0.008192,0.006112,0.137216,0.188416,0.188416,25.6716,0.224288
+749,34.0992,29.3262,26.6569,0.130176,1.36621,0.00832,0.0048,0.141216,0.186368,0.188416,24.406,0.225376
+750,35.5902,28.0977,27.9291,0.13072,1.3791,0.008192,0.005888,0.13904,0.18688,0.188384,25.6695,0.221344
+751,33.137,30.1777,28.4921,0.130528,1.9376,0.008352,0.005664,0.138176,0.189568,0.18912,25.6669,0.226176
+752,33.7865,29.5977,26.7549,0.132928,1.43789,0.008224,0.006112,0.137248,0.188384,0.188416,24.4319,0.223808
+753,35.1914,28.416,27.2507,0.134592,1.55475,0.008288,0.0056,0.137408,0.18688,0.18944,24.8099,0.223872
+754,34.8631,28.6836,28.7071,0.131488,1.34803,0.00832,0.006016,0.137216,0.186496,0.189504,26.4775,0.222528
+755,33.3268,30.0059,26.6742,0.130912,1.36822,0.008384,0.005952,0.145408,0.188352,0.18848,24.4163,0.222208
+756,35.6248,28.0703,26.6651,0.130528,1.36682,0.008256,0.005664,0.143488,0.188704,0.18848,24.4101,0.223008
+757,35.3225,28.3105,28.0135,0.129984,1.46822,0.008384,0.01584,0.135712,0.188448,0.188512,25.6571,0.221344
+758,33.7553,29.625,26.7559,0.13136,1.4441,0.00832,0.005696,0.137376,0.190496,0.201088,24.4122,0.22528
+759,35.4964,28.1719,26.7694,0.131072,1.47046,0.009216,0.00512,0.140896,0.186784,0.198656,24.4052,0.222048
+760,35.5333,28.1426,27.9737,0.13296,1.4241,0.00832,0.005568,0.139968,0.188256,0.186528,25.6594,0.228608
+761,33.7976,29.5879,26.7722,0.129792,1.48192,0.008096,0.005024,0.137216,0.186368,0.188192,24.4103,0.22528
+762,35.5951,28.0938,27.9306,0.130624,1.38221,0.008288,0.004768,0.140384,0.187168,0.18832,25.6671,0.221728
+763,33.941,29.4629,27.9096,0.131072,1.3865,0.008192,0.005952,0.141056,0.186848,0.190432,25.6369,0.222688
+764,33.7241,29.6523,26.7059,0.131104,1.40461,0.00832,0.005728,0.136896,0.190912,0.188992,24.4173,0.222016
+765,35.4841,28.1816,26.7547,0.131552,1.44778,0.008352,0.005632,0.137696,0.190208,0.188704,24.4173,0.227456
+766,35.325,28.3086,27.9817,0.133152,1.47462,0.00816,0.006048,0.139104,0.187936,0.188768,25.6179,0.225984
+767,33.8088,29.5781,26.7837,0.13104,1.4664,0.008224,0.006016,0.139296,0.186432,0.188448,24.4303,0.227616
+768,35.4203,28.2324,26.7534,0.129984,1.43974,0.008224,0.006112,0.1392,0.18784,0.18816,24.4253,0.2288
+769,35.4301,28.2246,27.9593,0.130944,1.41034,0.00832,0.004864,0.138688,0.186912,0.188064,25.6694,0.221728
+770,33.8401,29.5508,27.9223,0.130656,1.37904,0.008352,0.005984,0.136512,0.188512,0.189024,25.6614,0.222816
+771,33.8512,29.541,26.7437,0.13168,1.44147,0.008256,0.004704,0.139264,0.190592,0.190336,24.4153,0.222144
+772,34.8655,28.6816,28.0182,0.132256,1.47523,0.00784,0.004672,0.137184,0.18816,0.188576,25.6592,0.225088
+773,34.3325,29.127,26.7612,0.131072,1.45331,0.008288,0.005952,0.13808,0.18784,0.188192,24.4209,0.227616
+774,35.2035,28.4062,27.2233,0.129024,1.51888,0.008352,0.005728,0.139232,0.188576,0.18864,24.8204,0.224512
+775,33.9973,29.4141,28.5933,0.131072,2.06643,0.008192,0.00608,0.1448,0.186944,0.188512,25.6382,0.22304
+776,33.9433,29.4609,26.8304,0.13104,1.49901,0.00832,0.005696,0.141792,0.190432,0.192128,24.4388,0.223232
+777,35.3006,28.3281,26.7288,0.13072,1.44243,0.008192,0.006144,0.137344,0.188096,0.192736,24.4009,0.222176
+778,35.0349,28.543,28.0089,0.131232,1.47536,0.008192,0.00592,0.138816,0.187072,0.188384,25.6483,0.225632
+779,31.4574,31.7891,27.1039,0.12992,1.82272,0.007616,0.004704,0.139232,0.187392,0.187392,24.3999,0.225056
+780,37.881,26.3984,26.6737,0.129568,1.3753,0.008288,0.004992,0.13904,0.186528,0.188416,24.4163,0.22528
+781,35.6596,28.043,27.9515,0.129408,1.4049,0.008192,0.006144,0.139264,0.186368,0.18832,25.6651,0.223808
+782,33.7442,29.6348,26.7203,0.12976,1.39242,0.009344,0.004992,0.141312,0.188224,0.189856,24.4414,0.222912
+783,34.9679,28.5977,27.7184,0.14416,1.53514,0.008256,0.004896,0.139264,0.190016,0.192064,25.2828,0.221824
+784,34.4851,28.998,27.9654,0.131104,1.41923,0.008192,0.006176,0.14064,0.18704,0.188416,25.6594,0.22528
+785,34.0426,29.375,26.68,0.130944,1.3791,0.008288,0.006048,0.136896,0.186688,0.189696,24.4166,0.225664
+786,35.489,28.1777,27.0706,0.130304,1.3847,0.008704,0.005568,0.139136,0.187072,0.190272,24.8015,0.223328
+787,34.9154,28.6406,28.0758,0.130688,1.55008,0.010784,0.0056,0.146272,0.18784,0.188448,25.6333,0.222784
+788,34.1607,29.2734,26.6776,0.130656,1.37901,0.008192,0.005952,0.137408,0.188192,0.18864,24.4177,0.221856
+789,35.2544,28.3652,26.7431,0.129408,1.44726,0.008384,0.005568,0.140192,0.188416,0.188512,24.4142,0.221184
+790,35.2666,28.3555,28.0039,0.14336,1.4232,0.00832,0.00576,0.13968,0.188416,0.192288,25.6576,0.245312
+791,32.7617,30.5234,26.7653,0.131104,1.48272,0.007744,0.0056,0.13616,0.186368,0.188064,24.4043,0.223232
+792,36.3947,27.4766,26.7658,0.133632,1.46022,0.008192,0.006144,0.137216,0.188384,0.188448,24.4183,0.22528
+793,35.7018,28.0098,27.9124,0.135264,1.39251,0.00832,0.005632,0.139232,0.187072,0.188416,25.6287,0.227328
+794,33.9996,29.4121,26.7214,0.130688,1.42378,0.008288,0.00576,0.139648,0.188384,0.18752,24.4148,0.222528
+795,35.4915,28.1758,27.7485,0.12976,1.36954,0.008352,0.0056,0.138176,0.186368,0.411648,25.2764,0.222656
+796,33.8647,29.5293,27.9871,0.131072,1.44384,0.008192,0.006144,0.139264,0.188416,0.188448,25.659,0.222784
+797,33.9793,29.4297,26.6936,0.131296,1.37194,0.008256,0.00608,0.138272,0.18736,0.188416,24.4224,0.239616
+798,35.4767,28.1875,27.937,0.132992,1.39974,0.008192,0.006112,0.138944,0.186752,0.188384,25.6492,0.226752
+799,34.0697,29.3516,27.9174,0.130432,1.38026,0.007904,0.00512,0.139264,0.188256,0.188608,25.6546,0.222944
+800,33.3247,30.0078,26.7363,0.131104,1.42938,0.008288,0.005696,0.139392,0.186688,0.188544,24.4255,0.221728
+801,36.0716,27.7227,26.7409,0.129824,1.43539,0.008288,0.005664,0.143776,0.19072,0.190016,24.4146,0.222592
+802,35.2253,28.3887,28.0738,0.130432,1.50934,0.006944,0.013888,0.15344,0.188768,0.188608,25.659,0.22336
+803,33.1241,30.1895,26.8868,0.129664,1.58515,0.008192,0.006144,0.139264,0.188416,0.192544,24.4158,0.221632
+804,36.3172,27.5352,26.719,0.13168,1.3928,0.00816,0.006144,0.14048,0.189216,0.189632,24.4233,0.2376
+805,35.2205,28.3926,28.0564,0.131776,1.46781,0.008352,0.01504,0.139328,0.187968,0.188672,25.6917,0.225824
+806,33.9478,29.457,26.6613,0.129504,1.34931,0.00832,0.005728,0.139808,0.18752,0.18736,24.426,0.22784
+807,35.2229,28.3906,28.1231,0.130624,1.45075,0.00816,0.006144,0.139264,0.187488,0.18928,25.7885,0.222912
+808,33.0985,30.2129,28.0516,0.129728,1.49283,0.008192,0.005888,0.13952,0.189888,0.188992,25.6737,0.222816
+809,33.7108,29.6641,26.8375,0.131168,1.50163,0.008192,0.006144,0.139264,0.186368,0.19568,24.4377,0.231424
+810,35.4743,28.1895,27.1012,0.132992,1.40096,0.008192,0.006144,0.137216,0.188416,0.188416,24.8152,0.223616
+811,35.0493,28.5312,28.7877,0.133728,1.42109,0.008288,0.00464,0.139264,0.186368,0.188416,26.4839,0.222016
+812,33.1542,30.1621,26.7056,0.131008,1.38054,0.008224,0.006112,0.140352,0.187328,0.207904,24.4211,0.222976
+813,35.4423,28.2148,26.6714,0.131168,1.36592,0.008704,0.005632,0.158336,0.186368,0.189824,24.4026,0.222912
+814,35.3567,28.2832,28.0175,0.131168,1.47738,0.008192,0.006144,0.137056,0.18832,0.188704,25.6591,0.221504
+815,33.6488,29.7188,26.7777,0.131456,1.48832,0.008288,0.004832,0.138752,0.190624,0.1888,24.4039,0.222656
+816,34.6344,28.873,26.7407,0.14336,1.41722,0.008224,0.006112,0.139264,0.188416,0.189632,24.4245,0.224
+817,36.3018,27.5469,27.939,0.133312,1.38995,0.00832,0.004608,0.141312,0.18752,0.189312,25.6573,0.227328
+818,33.7241,29.6523,26.8238,0.131072,1.51142,0.008416,0.00592,0.138656,0.186976,0.189792,24.4251,0.2264
+819,35.4203,28.2324,27.9403,0.130496,1.39536,0.008256,0.00608,0.139296,0.188,0.188832,25.6614,0.222528
+820,34.188,29.25,27.8939,0.131072,1.34326,0.008288,0.00592,0.139776,0.18848,0.188416,25.6655,0.2232
+821,33.0985,30.2129,26.8493,0.137056,1.52182,0.014432,0.00592,0.141536,0.190048,0.188736,24.4266,0.2232
+822,35.2666,28.3555,28.0568,0.13296,1.50339,0.008192,0.005888,0.140672,0.187264,0.188416,25.6646,0.225376
+823,33.959,29.4473,27.9039,0.129728,1.37629,0.00816,0.006016,0.141088,0.186432,0.188416,25.6445,0.2232
+824,33.7486,29.6309,26.8177,0.131072,1.48026,0.00832,0.0056,0.139904,0.200928,0.188416,24.4405,0.222624
+825,35.0181,28.5566,26.827,0.13088,1.52205,0.008128,0.005568,0.139424,0.18688,0.190464,24.422,0.221568
+826,35.4816,28.1836,27.9613,0.13104,1.40496,0.008192,0.006048,0.140608,0.189216,0.189728,25.6683,0.223232
+827,33.7998,29.5859,26.7448,0.132256,1.43242,0.008192,0.006048,0.13936,0.187872,0.190528,24.4059,0.24224
+828,35.0445,28.5352,26.9169,0.131136,1.60685,0.008448,0.00576,0.139328,0.187232,0.188384,24.4159,0.233824
+829,35.189,28.418,28.0907,0.131136,1.50253,0.008416,0.015072,0.138464,0.187008,0.188288,25.6924,0.227328
+830,33.753,29.627,27.1831,0.131104,1.49485,0.008288,0.005792,0.13872,0.187328,0.188416,24.8052,0.22336
+831,34.1812,29.2559,27.4041,0.129184,2.10109,0.008192,0.006144,0.141312,0.187488,0.189344,24.4183,0.223072
+832,35.0853,28.502,28.0863,0.131072,1.54982,0.008288,0.00592,0.136928,0.187296,0.191552,25.6533,0.222112
+833,33.6223,29.7422,26.8349,0.132768,1.54454,0.009664,0.004672,0.138912,0.18672,0.188416,24.4058,0.223456
+834,35.3591,28.2812,27.9552,0.134624,1.4024,0.00832,0.004992,0.137216,0.188416,0.188416,25.6614,0.229376
+835,33.1714,30.1465,28.1826,0.130176,1.64547,0.008288,0.006048,0.137216,0.186368,0.188512,25.6588,0.221696
+836,32.599,30.6758,26.8738,0.131072,1.55034,0.008288,0.00608,0.14128,0.188512,0.190368,24.4347,0.2232
+837,36.2581,27.5801,26.7426,0.130336,1.43539,0.008352,0.00496,0.142912,0.189856,0.191488,24.4163,0.223008
+838,34.4202,29.0527,27.9923,0.131456,1.43974,0.008288,0.006048,0.139264,0.188544,0.190368,25.6614,0.227168
+839,33.682,29.6895,28.0257,0.129888,1.4807,0.008192,0.006144,0.138496,0.186336,0.1888,25.666,0.221216
+840,33.8199,29.5684,26.8614,0.130464,1.5441,0.008384,0.004896,0.153472,0.192096,0.1888,24.4163,0.222944
+841,34.9012,28.6523,27.9968,0.129696,1.45731,0.008416,0.00576,0.13952,0.187104,0.190368,25.657,0.221664
+842,33.5518,29.8047,26.6772,0.131296,1.36189,0.008192,0.005952,0.140864,0.189056,0.190464,24.4265,0.222944
+843,36.0716,27.7227,27.046,0.131584,1.37834,0.024576,0.006144,0.141312,0.188128,0.188736,24.7635,0.223712
+844,35.2593,28.3613,28.7394,0.13312,1.3599,0.00816,0.006176,0.140352,0.187072,0.18864,26.4868,0.229152
+845,33.195,30.125,26.6648,0.131072,1.37216,0.009504,0.004832,0.141312,0.187584,0.188864,24.4063,0.223232
+846,35.7193,27.9961,26.6629,0.131072,1.35696,0.00832,0.004896,0.1392,0.187808,0.186976,24.4255,0.222176
+847,35.6745,28.0312,27.9046,0.130048,1.35734,0.008288,0.005632,0.149696,0.187072,0.188416,25.6571,0.220992
+848,34.0539,29.3652,26.6527,0.130304,1.3504,0.008192,0.005792,0.149536,0.188768,0.188384,24.4094,0.22192
+849,35.5704,28.1133,26.6506,0.129312,1.35984,0.008192,0.006144,0.137344,0.188256,0.190496,24.4091,0.221888
+850,35.4227,28.2305,27.9511,0.130944,1.40282,0.008384,0.0056,0.141152,0.189216,0.19184,25.6552,0.225952
+851,33.3877,29.9512,27.9636,0.131584,1.41894,0.007648,0.00496,0.138528,0.187104,0.190016,25.6578,0.226976
+852,34.7637,28.7656,26.678,0.129728,1.36352,0.00832,0.00576,0.13792,0.187744,0.188256,24.4292,0.227456
+853,34.6414,28.8672,28.0628,0.131072,1.49021,0.023264,0.00576,0.1496,0.20256,0.188928,25.649,0.222368
+854,34.7684,28.7617,26.6956,0.13056,1.38118,0.00816,0.00608,0.141408,0.18832,0.188512,24.4283,0.223168
+855,35.2544,28.3652,27.9798,0.130816,1.44,0.008192,0.006144,0.141312,0.188,0.188832,25.6546,0.221888
+856,33.8916,29.5059,27.947,0.130944,1.38048,0.008192,0.016384,0.138304,0.191232,0.194752,25.6634,0.22336
+857,34.2635,29.1855,26.6568,0.1344,1.3464,0.008256,0.0056,0.136832,0.187392,0.190336,24.4224,0.225152
+858,35.3591,28.2812,26.7611,0.135328,1.44765,0.006752,0.006144,0.137216,0.18816,0.188672,24.4247,0.226464
+859,34.275,29.1758,28.0269,0.131072,1.49709,0.008416,0.00592,0.138656,0.186976,0.18816,25.6489,0.221664
+860,33.6886,29.6836,26.6749,0.131072,1.38621,0.008288,0.005728,0.135168,0.187008,0.18992,24.4086,0.222976
+861,33.7375,29.6406,26.7404,0.130816,1.42566,0.008384,0.005952,0.137216,0.188416,0.190464,24.4318,0.221632
+862,36.9622,27.0547,28.0638,0.13888,1.50061,0.008384,0.004992,0.139136,0.19152,0.190688,25.6674,0.222208
+863,33.7887,29.5957,27.2015,0.134336,1.52246,0.008224,0.005728,0.138912,0.186624,0.18832,24.7932,0.22368
+864,35.1842,28.4219,27.5396,0.133408,1.34349,0.00832,0.00576,0.144064,0.188416,0.190368,25.297,0.228768
+865,34.2521,29.1953,27.9354,0.129696,1.38646,0.008192,0.006112,0.13856,0.186752,0.188768,25.6687,0.22208
+866,33.9478,29.457,26.7428,0.131072,1.42336,0.009248,0.00512,0.14128,0.188416,0.189472,24.4316,0.223232
+867,34.9345,28.625,27.6992,0.130976,1.71632,0.008256,0.00608,0.137216,0.18768,0.189152,24.7972,0.526304
+868,34.8134,28.7246,28.0054,0.133472,1.43597,0.008288,0.00576,0.139872,0.190464,0.190176,25.6781,0.223264
+869,33.9185,29.4824,26.7032,0.133184,1.40288,0.008352,0.005984,0.140864,0.186336,0.188768,24.412,0.224832
+870,35.3933,28.2539,26.7598,0.13488,1.46125,0.00832,0.005984,0.140576,0.187136,0.189536,24.4083,0.22384
+871,35.6174,28.0762,27.9267,0.131104,1.38848,0.008288,0.005632,0.135808,0.1864,0.188384,25.6596,0.22304
+872,33.9973,29.4141,26.7076,0.130912,1.41475,0.008288,0.005696,0.138144,0.186368,0.188416,24.4122,0.222816
+873,35.2593,28.3613,26.7613,0.130176,1.43613,0.00832,0.005728,0.140032,0.198656,0.18944,24.4309,0.221856
+874,35.6596,28.043,27.9301,0.131072,1.39264,0.00928,0.005056,0.13824,0.187392,0.188096,25.6552,0.223104
+875,34.0493,29.3691,26.6872,0.131072,1.3983,0.008288,0.005632,0.138112,0.18976,0.192352,24.4007,0.222912
+876,35.3323,28.3027,27.6439,0.127232,1.4784,0.008416,0.005952,0.137184,0.188544,0.192384,25.2818,0.224032
+877,34.4364,29.0391,28.0248,0.133088,1.43978,0.008192,0.006144,0.138432,0.197216,0.18864,25.686,0.227328
+878,33.9568,29.4492,26.6793,0.131104,1.38237,0.008224,0.00592,0.139456,0.188416,0.187904,24.4106,0.22528
+879,35.2084,28.4023,27.2007,0.13104,1.51674,0.008512,0.004672,0.139232,0.186368,0.188416,24.8027,0.222976
+880,32.8859,30.4082,28.646,0.129696,2.12378,0.008192,0.00592,0.139488,0.188064,0.1888,25.6408,0.221344
+881,35.1745,28.4297,26.7592,0.129216,1.45594,0.008416,0.00592,0.141312,0.18816,0.191872,24.417,0.221312
+882,34.9631,28.6016,26.7944,0.130912,1.49354,0.008192,0.005952,0.137408,0.187936,0.18688,24.4201,0.223488
+883,35.5803,28.1055,27.9558,0.13376,1.41107,0.008192,0.00608,0.136928,0.18672,0.188448,25.6585,0.226144
+884,34.0539,29.3652,26.6852,0.131072,1.37402,0.008288,0.005728,0.138816,0.187328,0.188384,24.4235,0.228064
+885,35.5309,28.1445,26.7039,0.13088,1.41299,0.008288,0.005632,0.139904,0.186464,0.188192,24.4077,0.223808
+886,35.2205,28.3926,28.0014,0.131072,1.44947,0.00832,0.00448,0.141312,0.18816,0.18848,25.6678,0.222368
+887,34.3855,29.082,27.0766,0.129792,1.37162,0.008352,0.0048,0.139168,0.188224,0.188608,24.8238,0.22224
+888,35.0397,28.5391,26.6681,0.130464,1.36662,0.008192,0.006112,0.139296,0.188416,0.189952,24.4164,0.222624
+889,35.6124,28.0801,27.9117,0.141696,1.3656,0.008288,0.005568,0.136096,0.190464,0.190432,25.6389,0.234656
+890,33.9433,29.4609,26.6676,0.13168,1.37142,0.008288,0.004768,0.14128,0.188032,0.188064,24.4106,0.223392
+891,34.6672,28.8457,27.9429,0.132928,1.41709,0.00832,0.0056,0.14,0.1864,0.189856,25.6374,0.22528
+892,34.8228,28.7168,27.9327,0.130752,1.40493,0.00832,0.005984,0.144864,0.187296,0.188384,25.6389,0.223232
+893,34.1015,29.3242,26.716,0.131072,1.40458,0.00832,0.005408,0.138176,0.2048,0.18864,24.4118,0.223168
+894,35.2423,28.375,26.7816,0.13072,1.47229,0.00832,0.005728,0.138144,0.188448,0.188384,24.4262,0.22336
+895,35.4472,28.2109,27.9951,0.1304,1.45818,0.00832,0.0048,0.136992,0.186432,0.190432,25.6567,0.222912
+896,33.923,29.4785,26.7735,0.132992,1.45946,0.008128,0.005056,0.139264,0.19168,0.18832,24.4254,0.223232
+897,35.3738,28.2695,26.6993,0.131264,1.40797,0.008288,0.004864,0.137152,0.18608,0.18848,24.4101,0.225088
+898,35.0517,28.5293,28.0447,0.132288,1.49338,0.008288,0.00576,0.141344,0.187232,0.188416,25.6587,0.229344
+899,33.9433,29.4609,27.9394,0.130688,1.40592,0.008192,0.005888,0.13952,0.188224,0.18832,25.6494,0.223232
+900,33.9253,29.4766,26.703,0.130848,1.38784,0.00832,0.004992,0.13904,0.188,0.18896,24.422,0.233024
+901,33.2209,30.1016,28.0677,0.131072,1.53395,0.008192,0.005984,0.13888,0.186944,0.190432,25.6492,0.223104
+902,35.6869,28.0215,26.7961,0.13232,1.46515,0.008192,0.006144,0.137248,0.18832,0.188512,24.4275,0.242656
+903,34.785,28.748,27.1626,0.13312,1.47869,0.009248,0.005056,0.140384,0.1872,0.188384,24.7963,0.224256
+904,34.7189,28.8027,28.8379,0.1312,1.4519,0.008224,0.005792,0.137536,0.187552,0.189056,26.5034,0.223232
+905,32.5886,30.6855,26.796,0.130528,1.50582,0.008192,0.00576,0.139232,0.186784,0.190144,24.4063,0.223232
+906,35.189,28.418,26.7573,0.130784,1.42998,0.026016,0.00608,0.139968,0.18944,0.18944,24.4224,0.223232
+907,34.8631,28.6836,27.9961,0.129728,1.4408,0.00832,0.02128,0.141376,0.189888,0.1904,25.6512,0.223072
+908,33.3442,29.9902,26.8376,0.135744,1.52576,0.008192,0.005856,0.139488,0.188,0.188384,24.4201,0.226048
+909,35.5432,28.1348,26.7652,0.130528,1.46618,0.008352,0.004736,0.14336,0.198656,0.18944,24.396,0.227872
+910,34.1766,29.2598,28.1539,0.136736,1.57334,0.008192,0.005856,0.137504,0.18944,0.187392,25.6937,0.221696
+911,34.0607,29.3594,26.8329,0.13072,1.52202,0.009344,0.005024,0.14128,0.188416,0.190368,24.4236,0.222112
+912,35.1311,28.4648,28.1047,0.142368,1.53907,0.009248,0.005088,0.141312,0.189984,0.190976,25.6491,0.237568
+913,33.7775,29.6055,28.0094,0.132096,1.46982,0.00832,0.0056,0.138176,0.186368,0.192512,25.6506,0.225952
+914,33.1477,30.168,26.7366,0.13008,1.39162,0.024544,0.006176,0.158784,0.18832,0.187392,24.4218,0.227968
+915,35.8418,27.9004,26.8818,0.130688,1.59702,0.008288,0.0048,0.140864,0.18624,0.189024,24.4018,0.223136
+916,35.0901,28.498,28.0003,0.130368,1.42403,0.008224,0.005824,0.139584,0.198464,0.19408,25.6777,0.221952
+917,33.2792,30.0488,26.7685,0.131072,1.4695,0.008544,0.004832,0.151424,0.189984,0.190944,24.3997,0.222496
+918,34.7992,28.7363,26.7863,0.131584,1.47456,0.008192,0.005984,0.140512,0.201696,0.189472,24.4049,0.229376
+919,35.3762,28.2676,28.0791,0.132224,1.49216,0.008288,0.0048,0.137088,0.186368,0.188416,25.7024,0.227328
+920,33.8356,29.5547,27.2425,0.13072,1.5343,0.018432,0.006144,0.139008,0.187712,0.188448,24.812,0.22576
+921,34.8394,28.7031,26.966,0.13088,1.63427,0.010496,0.00592,0.149696,0.186368,0.18976,24.4365,0.222144
+922,35.107,28.4844,27.9958,0.13088,1.40483,0.00832,0.0056,0.143392,0.191168,0.188512,25.7003,0.222816
+923,33.3833,29.9551,26.7874,0.130976,1.4809,0.00832,0.005664,0.139776,0.19456,0.190464,24.4142,0.222528
+924,32.9939,30.3086,27.9252,0.137376,1.37846,0.008288,0.005792,0.138144,0.188416,0.190464,25.6533,0.224928
+925,34.0335,29.3828,27.9454,0.129824,1.38035,0.009344,0.005024,0.137216,0.186368,0.189472,25.6849,0.22288
+926,33.51,29.8418,26.7223,0.132384,1.41389,0.00816,0.006144,0.139264,0.188448,0.189792,24.4228,0.221472
+927,33.3703,29.9668,26.8564,0.131424,1.5447,0.008352,0.014048,0.139552,0.188448,0.194016,24.4142,0.221664
+928,37.6443,26.5645,28.0269,0.131072,1.48646,0.008288,0.005792,0.139904,0.189632,0.19248,25.65,0.223232
+929,34.0697,29.3516,26.6159,0.1312,1.33322,0.008192,0.00592,0.136736,0.185056,0.189536,24.402,0.224
+930,34.9846,28.584,26.774,0.1312,1.45082,0.008416,0.016128,0.141344,0.187744,0.18704,24.4224,0.228864
+931,34.7119,28.8086,28.0999,0.131072,1.51347,0.008192,0.016096,0.137088,0.186784,0.188416,25.6962,0.222592
+932,33.2554,30.0703,27.2351,0.129856,1.55648,0.008192,0.006144,0.140704,0.189056,0.191584,24.7912,0.221888
+933,33.2403,30.084,26.9762,0.13296,1.62221,0.0184,0.00592,0.140544,0.189408,0.204096,24.441,0.221664
+934,36.514,27.3867,28.0603,0.130976,1.49558,0.008256,0.00576,0.139456,0.192864,0.188448,25.6737,0.22528
+935,33.6975,29.6758,26.8181,0.131072,1.51552,0.00928,0.005056,0.140512,0.18512,0.200704,24.4019,0.228928
+936,35.4227,28.2305,26.738,0.130944,1.42323,0.008288,0.017952,0.139648,0.187904,0.188512,24.4147,0.226912
+937,34.8465,28.6973,29.2015,0.129216,1.56858,0.008224,0.005664,0.14384,0.187872,0.407744,26.5277,0.222656
+938,33.1671,30.1504,26.6823,0.129984,1.36602,0.008256,0.00608,0.139264,0.190432,0.191872,24.4272,0.223232
+939,33.9365,29.4668,26.8227,0.130944,1.52378,0.008256,0.005664,0.14528,0.186304,0.188704,24.4102,0.22352
+940,35.9349,27.8281,27.9534,0.133504,1.36637,0.008192,0.006176,0.137184,0.198272,0.188064,25.6882,0.227424
+941,33.2922,30.0371,26.8837,0.130944,1.56928,0.026176,0.0056,0.148416,0.187872,0.188448,24.4024,0.224576
+942,34.6438,28.8652,26.734,0.131072,1.37936,0.023712,0.016192,0.139264,0.203968,0.189248,24.4285,0.222688
+943,33.2489,30.0762,28.4771,0.130944,1.94566,0.008288,0.005952,0.135328,0.188416,0.190464,25.6492,0.22288
+944,33.107,30.2051,28.1723,0.131232,1.60042,0.008288,0.02272,0.139936,0.188416,0.188416,25.6696,0.223232
+945,35.8318,27.9082,26.8001,0.131072,1.51722,0.008288,0.0056,0.136192,0.186144,0.188448,24.3998,0.227328
+946,34.1743,29.2617,28.3558,0.130784,1.76771,0.008192,0.016064,0.137536,0.189472,0.194784,25.6881,0.2232
+947,34.3509,29.1113,26.9046,0.13072,1.59917,0.008384,0.005664,0.136224,0.193824,0.189088,24.4194,0.222112
+948,35.1987,28.4102,26.8186,0.131104,1.50042,0.008288,0.00576,0.13824,0.190304,0.188576,24.4326,0.223232
+949,35.4399,28.2168,28.663,0.128384,1.33798,0.008192,0.006144,0.137216,0.190496,0.190464,26.4394,0.224736
+950,32.7282,30.5547,26.725,0.131008,1.43363,0.008288,0.005568,0.138016,0.18832,0.188608,24.4074,0.224128
+951,35.6695,28.0352,26.6396,0.130848,1.32733,0.008224,0.006112,0.139264,0.188384,0.188448,24.4244,0.226496
+952,35.1094,28.4824,28.0462,0.129888,1.44726,0.008288,0.004672,0.139008,0.193888,0.190976,25.709,0.223232
+953,32.0943,31.1582,27.0332,0.130432,1.71411,0.023296,0.005664,0.147264,0.188864,0.192576,24.4078,0.223136
+954,36.1301,27.6777,26.7787,0.133056,1.47619,0.008288,0.005568,0.140192,0.190464,0.190464,24.4101,0.224352
+955,35.2617,28.3594,27.9938,0.130784,1.41981,0.008192,0.006176,0.13824,0.187072,0.192064,25.6868,0.224672
+956,33.8624,29.5312,26.7396,0.132,1.42746,0.009376,0.004992,0.139232,0.188416,0.189472,24.4252,0.223488
+957,35.1721,28.4316,27.9226,0.12976,1.37939,0.008288,0.00496,0.139264,0.188096,0.196928,25.6451,0.230816
+958,33.8557,29.5371,27.9601,0.12992,1.37408,0.008416,0.00592,0.14096,0.1944,0.203264,25.6819,0.221216
+959,33.3833,29.9551,26.6388,0.131104,1.35642,0.008192,0.00592,0.139488,0.190464,0.19264,24.3932,0.22128
+960,32.3969,30.8672,28.4206,0.131616,1.8471,0.00832,0.0144,0.139264,0.188416,0.188416,25.6778,0.22528
+961,36.4698,27.4199,27.9593,0.132448,1.3872,0.00816,0.006112,0.137248,0.188416,0.188448,25.688,0.223232
+962,33.7264,29.6504,26.7674,0.131104,1.45405,0.008352,0.005984,0.138496,0.188288,0.193408,24.4244,0.223232
+963,35.1383,28.459,26.8191,0.129696,1.53571,0.008288,0.005856,0.136608,0.186624,0.189088,24.4059,0.22128
+964,35.3884,28.2578,27.9036,0.131072,1.37421,0.008224,0.006112,0.137216,0.188352,0.188544,25.647,0.222784
+965,33.6444,29.7227,26.65,0.131136,1.34874,0.00832,0.004864,0.139264,0.191616,0.189312,24.4142,0.22256
+966,34.5759,28.9219,26.8029,0.13184,1.49453,0.00832,0.005568,0.139264,0.187328,0.188416,24.4241,0.223584
+967,35.5481,28.1309,27.9988,0.13296,1.4632,0.008192,0.006144,0.139264,0.186368,0.188352,25.6505,0.223904
+968,33.5914,29.7695,27.1244,0.129696,1.43568,0.00816,0.006144,0.141312,0.188416,0.188416,24.8044,0.222208
+969,34.5083,28.9785,27.2383,0.1304,1.93398,0.009248,0.005088,0.144544,0.187168,0.189536,24.4152,0.223168
+970,35.6645,28.0391,27.9252,0.129696,1.40083,0.008096,0.005568,0.137696,0.188608,0.18944,25.642,0.223232
+971,34.1903,29.248,26.6204,0.130048,1.32899,0.00832,0.005664,0.137696,0.190592,0.190336,24.406,0.22272
+972,35.235,28.3809,27.9657,0.131808,1.43565,0.008192,0.005728,0.139104,0.188512,0.188896,25.6428,0.224992
+973,32.9303,30.3672,28.149,0.132992,1.5705,0.016832,0.005632,0.139616,0.187872,0.18912,25.682,0.224384
+974,34.6227,28.8828,26.7866,0.129856,1.49299,0.008192,0.006048,0.13936,0.186464,0.191456,24.411,0.221216
+975,35.2569,28.3633,26.7346,0.130336,1.44253,0.008192,0.00592,0.141536,0.188288,0.188576,24.4073,0.221856
+976,35.252,28.3672,28.0254,0.129632,1.46224,0.008192,0.006016,0.139392,0.197984,0.191136,25.6676,0.223232
+977,33.4991,29.8516,26.849,0.131232,1.52323,0.008288,0.005568,0.140224,0.188352,0.18848,24.4285,0.235104
+978,35.3445,28.293,26.7837,0.132864,1.46784,0.008352,0.0048,0.139232,0.18784,0.188736,24.4307,0.22336
+979,35.2787,28.3457,27.9488,0.133376,1.41402,0.008288,0.004896,0.139264,0.186368,0.188448,25.6462,0.227936
+980,31.8428,31.4043,27.4524,0.13056,1.74336,0.018432,0.006112,0.137248,0.189728,0.18832,24.8158,0.222912
+981,33.7375,29.6406,27.4709,0.130304,2.1687,0.008288,0.004896,0.143232,0.188448,0.189856,24.4148,0.2224
+982,37.4707,26.6875,27.9634,0.131072,1.4001,0.008288,0.004736,0.141312,0.18832,0.19056,25.6758,0.223232
+983,33.6223,29.7422,26.6998,0.132128,1.39978,0.008192,0.00608,0.139328,0.186368,0.189824,24.4161,0.222048
+984,35.4718,28.1914,26.7569,0.133632,1.44486,0.00832,0.004992,0.140768,0.186944,0.189536,24.4233,0.224576
+985,35.0541,28.5273,27.9483,0.139392,1.41299,0.008352,0.005984,0.139264,0.186368,0.18944,25.6399,0.226528
+986,33.6466,29.7207,26.763,0.13088,1.45814,0.008288,0.005728,0.139264,0.188608,0.186912,24.4222,0.223008
+987,35.9273,27.834,26.6691,0.129472,1.36714,0.00832,0.004896,0.140672,0.186944,0.190528,24.4183,0.222848
+988,35.6323,28.0645,27.888,0.129664,1.34454,0.00832,0.00496,0.138752,0.199168,0.192128,25.6475,0.223008
+989,33.1757,30.1426,26.8734,0.13312,1.5479,0.00832,0.020416,0.141312,0.188832,0.192416,24.4199,0.221152
+990,35.8619,27.8848,26.7185,0.131232,1.39581,0.017344,0.006112,0.139264,0.188608,0.19232,24.4259,0.221888
+991,35.5778,28.1074,27.8844,0.131904,1.34317,0.008288,0.005568,0.137568,0.190816,0.18976,25.652,0.22528
+992,33.9725,29.4355,26.7469,0.132608,1.44435,0.008192,0.00592,0.139488,0.188416,0.188096,24.4145,0.22528
+993,34.9536,28.6094,28.0039,0.130784,1.44621,0.00752,0.006016,0.13776,0.186592,0.188416,25.6778,0.222752
+994,33.8289,29.5605,27.929,0.129568,1.38022,0.008224,0.005664,0.136896,0.2056,0.189472,25.6501,0.223232
+995,33.7086,29.666,26.774,0.141824,1.4705,0.008288,0.006016,0.139264,0.188416,0.191808,24.4047,0.223264
+996,35.9399,27.8242,26.658,0.131072,1.33878,0.008352,0.005728,0.140032,0.190464,0.192416,24.4287,0.222368
+997,35.1721,28.4316,28.9286,0.127584,1.49296,0.008288,0.006048,0.138816,0.19088,0.198688,26.54,0.22528
+998,32.8605,30.4316,26.7776,0.131104,1.47658,0.00928,0.005088,0.14032,0.189376,0.188416,24.4118,0.225664
+999,35.3933,28.2539,26.7152,0.130944,1.42941,0.00832,0.005632,0.139168,0.186624,0.188096,24.402,0.225024
+1000,35.0421,28.5371,27.929,0.12944,1.38842,0.008288,0.00592,0.138976,0.188256,0.191136,25.6553,0.223232
+1001,33.3964,29.9434,26.8247,0.139264,1.51347,0.008224,0.005792,0.139584,0.188448,0.19168,24.4164,0.221888
+1002,35.2108,28.4004,26.8022,0.131136,1.4799,0.008288,0.004928,0.140128,0.189152,0.190304,24.435,0.223296
+1003,35.386,28.2598,28.0146,0.133024,1.42755,0.008192,0.005696,0.137536,0.186496,0.1896,25.7033,0.223232
+1004,33.4837,29.8652,28.0094,0.130016,1.45613,0.008192,0.014336,0.141312,0.188,0.188512,25.6612,0.221792
+1005,33.9568,29.4492,26.6568,0.13088,1.35597,0.00832,0.006016,0.137216,0.186368,0.192544,24.4183,0.221184
+1006,33.3333,30,28.0289,0.130144,1.45296,0.008192,0.005952,0.1456,0.196608,0.18992,25.6764,0.2232
+1007,36.0056,27.7734,26.7668,0.131072,1.48378,0.008288,0.005024,0.139264,0.190464,0.192288,24.3938,0.222752
+1008,34.5316,28.959,28.0487,0.131008,1.48384,0.008288,0.005024,0.140768,0.186912,0.19248,25.6758,0.224576
+1009,34.6813,28.834,27.962,0.132032,1.44707,0.008288,0.004864,0.139264,0.187872,0.187968,25.6294,0.225248
+1010,33.7486,29.6309,26.8616,0.131072,1.53299,0.007456,0.022176,0.139264,0.186368,0.18992,24.4291,0.223232
+1011,35.0829,28.5039,26.6958,0.13312,1.40288,0.008192,0.006048,0.13936,0.187584,0.207424,24.3899,0.221344
+1012,34.6063,28.8965,28.1498,0.130976,1.58528,0.00816,0.016384,0.147072,0.1888,0.188416,25.6614,0.223232
+1013,34.3855,29.082,26.7369,0.1312,1.44998,0.008224,0.005728,0.139392,0.19072,0.189728,24.4006,0.221312
+1014,35.3958,28.252,26.7491,0.131232,1.44179,0.008192,0.006144,0.138816,0.190912,0.190336,24.4184,0.223232
+1015,35.1552,28.4453,27.8607,0.131104,1.3496,0.008192,0.006016,0.137312,0.1864,0.188416,25.6282,0.225408
+1016,33.2792,30.0488,27.2261,0.13104,1.52989,0.018336,0.0056,0.146048,0.187616,0.187168,24.7952,0.22528
+1017,34.7307,28.793,27.0275,0.130816,1.69398,0.03872,0.00432,0.146592,0.187072,0.1984,24.4064,0.221184
+1018,35.0085,28.5645,28.1316,0.129984,1.58518,0.008192,0.006048,0.139328,0.188352,0.189664,25.662,0.222816
+1019,32.4317,30.834,26.8844,0.130752,1.58694,0.025408,0.006016,0.14144,0.190464,0.190464,24.3897,0.223136
+1020,37.0773,26.9707,28.0612,0.132192,1.46115,0.008192,0.005856,0.13904,0.190912,0.18848,25.7106,0.224768
+1021,33.914,29.4863,27.9858,0.133696,1.44787,0.00816,0.005632,0.13744,0.186752,0.188448,25.6489,0.228896
+1022,34.1675,29.2676,26.6541,0.130944,1.3399,0.00832,0.005984,0.136672,0.187104,0.189888,24.4228,0.232544
+1023,35.2374,28.3789,26.635,0.129824,1.35373,0.008416,0.00592,0.139296,0.187424,0.191424,24.3969,0.22208
+1024,35.3836,28.2617,27.9822,0.12944,1.43152,0.008224,0.005824,0.14336,0.193952,0.18896,25.6577,0.223232
+1025,33.3724,29.9648,26.8437,0.129824,1.55418,0.008416,0.0056,0.140832,0.189312,0.19264,24.3999,0.22304
+1026,35.9626,27.8066,26.6377,0.130912,1.34371,0.008192,0.006112,0.140288,0.19088,0.189056,24.4058,0.222752
+1027,35.4423,28.2148,28.0716,0.131072,1.45146,0.008352,0.0056,0.141312,0.188448,0.188672,25.7317,0.224992
+1028,33.5079,29.8438,27.169,0.131648,1.47043,0.008192,0.006144,0.138944,0.198976,0.188416,24.7992,0.22704
+1029,35.1431,28.4551,27.5393,0.12912,1.37949,0.008384,0.004768,0.138976,0.186656,0.189952,25.279,0.223008
+1030,34.441,29.0352,27.993,0.129984,1.42707,0.008544,0.005888,0.137472,0.188416,0.208736,25.6636,0.223232
+1031,33.6444,29.7227,26.6738,0.133664,1.36714,0.00832,0.004928,0.14128,0.188416,0.192256,24.4165,0.221312
+1032,34.1083,29.3184,28.1582,0.130752,1.56317,0.02464,0.006176,0.143328,0.189536,0.19744,25.68,0.223232
+1033,34.7213,28.8008,28.0247,0.130976,1.44842,0.008288,0.006048,0.155296,0.190816,0.189984,25.6696,0.225312
+1034,34.1174,29.3105,26.7268,0.130848,1.41789,0.008192,0.016384,0.14112,0.18784,0.189184,24.4101,0.22528
+1035,35.4841,28.1816,26.7162,0.130048,1.4233,0.00928,0.005056,0.137216,0.18752,0.188576,24.4139,0.221312
+1036,34.5293,28.9609,27.9883,0.129856,1.41882,0.016288,0.00464,0.137248,0.197664,0.198656,25.6626,0.22256
+1037,34.3187,29.1387,26.8141,0.144576,1.51635,0.008192,0.006176,0.139232,0.188416,0.191648,24.3966,0.222912
+1038,35.342,28.2949,26.7524,0.131136,1.4519,0.008256,0.005632,0.139808,0.188672,0.192128,24.4121,0.222848
+1039,35.1963,28.4121,28.0142,0.131072,1.49507,0.009184,0.00512,0.14064,0.187072,0.188384,25.6328,0.224928
+1040,33.2403,30.084,26.717,0.1312,1.41142,0.016576,0.005696,0.137664,0.187968,0.187104,24.4134,0.225952
+1041,36.0741,27.7207,27.9483,0.130912,1.39709,0.008192,0.00576,0.137024,0.186176,0.189184,25.6714,0.222592
+1042,33.4903,29.8594,27.94,0.130688,1.39485,0.008288,0.005632,0.139904,0.198656,0.188416,25.6492,0.224448
+1043,33.753,29.627,26.7233,0.132384,1.43149,0.008288,0.004832,0.13904,0.188608,0.192512,24.404,0.222208
+1044,35.4743,28.1895,27.0409,0.132768,1.50259,0.008288,0.005024,0.137216,0.192384,0.188448,24.6285,0.245728
+1045,34.6954,28.8223,28.9406,0.13248,1.47731,0.008288,0.0056,0.139904,0.186496,0.189504,26.5754,0.225568
+1046,33.4553,29.8906,26.6854,0.131072,1.39469,0.008224,0.006144,0.14064,0.187008,0.18816,24.4043,0.225248
+1047,35.526,28.1484,26.7334,0.12992,1.44579,0.007808,0.005856,0.139072,0.189408,0.188448,24.405,0.222144
+1048,35.4669,28.1953,27.9176,0.130848,1.37155,0.008384,0.00496,0.13904,0.188416,0.200672,25.6523,0.221408
+1049,33.849,29.543,26.6387,0.129504,1.36723,0.008288,0.004864,0.14064,0.187008,0.190432,24.3889,0.221792
+1050,34.513,28.9746,26.8102,0.131168,1.49094,0.008192,0.005696,0.139712,0.192288,0.190688,24.4283,0.223264
+1051,35.7767,27.9512,28.0265,0.131232,1.50864,0.008416,0.004576,0.14336,0.188416,0.190144,25.6269,0.224736
+1052,33.713,29.6621,27.1534,0.131168,1.47136,0.007936,0.0056,0.137888,0.187968,0.188224,24.7954,0.22784
+1053,35.1311,28.4648,27.5389,0.131104,1.40438,0.00832,0.005632,0.138112,0.18768,0.189024,25.2518,0.222848
+1054,34.3348,29.125,27.9906,0.129728,1.43901,0.006752,0.005888,0.139296,0.18864,0.206592,25.6514,0.223232
+1055,33.811,29.5762,26.8084,0.130688,1.5159,0.008192,0.005696,0.140864,0.188864,0.19024,24.4067,0.221216
+1056,35.4031,28.2461,27.8996,0.131296,1.50323,0.008288,0.0056,0.13728,0.190592,0.190912,25.1425,0.589888
+1057,33.7775,29.6055,28.0495,0.131168,1.51514,0.00832,0.005632,0.137984,0.188416,0.189696,25.6454,0.227776
+1058,32.012,31.2383,26.8288,0.131072,1.52288,0.00832,0.0048,0.140416,0.189312,0.188416,24.4163,0.22736
+1059,37.5532,26.6289,26.8281,0.130432,1.54278,0.008192,0.00608,0.137312,0.186336,0.19008,24.404,0.222912
+1060,35.2132,28.3984,28.0725,0.1296,1.50528,0.008192,0.00576,0.1376,0.200704,0.191552,25.6705,0.223296
+1061,34.0358,29.3809,26.6704,0.132352,1.37926,0.008192,0.006144,0.139264,0.188416,0.190144,24.4037,0.222912
+1062,34.1743,29.2617,26.7496,0.131712,1.44384,0.009344,0.004992,0.138304,0.187328,0.188416,24.4101,0.23552
+1063,35.0062,28.5664,27.904,0.13264,1.364,0.008288,0.0056,0.139808,0.18672,0.18944,25.6519,0.225632
+1064,33.092,30.2188,27.2425,0.147456,1.52781,0.008192,0.005856,0.139552,0.188416,0.188416,24.8115,0.22528
+1065,35.8996,27.8555,27.2604,0.130688,1.61216,0.036864,0.00592,0.145536,0.524416,0.19248,24.3896,0.222656
+1066,34.8015,28.7344,28.0063,0.130528,1.46102,0.008192,0.006144,0.140864,0.190912,0.189824,25.6559,0.22288
+1067,33.8043,29.582,26.7758,0.13056,1.48899,0.008544,0.005568,0.140128,0.190592,0.191552,24.3983,0.221536
+1068,35.5062,28.1641,27.8761,0.131424,1.348,0.008192,0.006144,0.140512,0.1888,0.19088,25.638,0.224192
+1069,34.1129,29.3145,27.8505,0.132352,1.32582,0.008192,0.005792,0.139616,0.187808,0.189024,25.6348,0.227168
+1070,33.9613,29.4453,26.667,0.130624,1.37056,0.00928,0.005056,0.139264,0.189504,0.18864,24.4062,0.227904
+1071,34.7189,28.8027,26.9879,0.12928,1.68326,0.008288,0.020544,0.139264,0.187936,0.188896,24.4077,0.222752
+1072,35.7467,27.9746,28.06,0.130656,1.47328,0.008192,0.016416,0.139232,0.222208,0.18944,25.6588,0.22176
+1073,33.8781,29.5176,26.6631,0.139552,1.368,0.008192,0.006112,0.137248,0.189824,0.191104,24.4014,0.221728
+1074,35.4203,28.2324,26.7152,0.131072,1.41312,0.008192,0.005792,0.139616,0.191968,0.191008,24.4114,0.223008
+1075,33.9793,29.4297,28.1646,0.131168,1.62781,0.00832,0.005824,0.137184,0.201632,0.189504,25.6392,0.223968
+1076,34.4967,28.9883,26.8274,0.1312,1.51568,0.018496,0.006016,0.139776,0.188352,0.187968,24.4127,0.227232
+1077,35.5728,28.1113,27.9682,0.130912,1.45494,0.008192,0.00608,0.138304,0.18672,0.19728,25.6246,0.221184
+1078,33.959,29.4473,27.945,0.131232,1.40886,0.008448,0.005888,0.14656,0.18864,0.189088,25.643,0.223232
+1079,33.7709,29.6113,26.7143,0.130592,1.42384,0.008288,0.005664,0.140128,0.190464,0.19152,24.4009,0.222912
+1080,35.7392,27.9805,26.6732,0.131072,1.3592,0.008288,0.004672,0.141184,0.191872,0.190976,24.4227,0.223232
+1081,35.5679,28.1152,27.9368,0.132352,1.3873,0.00816,0.006144,0.139264,0.19024,0.190208,25.6595,0.223616
+1082,33.6621,29.707,26.7151,0.132864,1.42509,0.008288,0.0056,0.135424,0.187136,0.188416,24.4072,0.22512
+1083,35.6075,28.084,26.7037,0.131072,1.38854,0.008,0.005632,0.143712,0.186752,0.188384,24.4262,0.225408
+1084,35.6496,28.0508,27.9162,0.130848,1.356,0.008224,0.006112,0.137216,0.188032,0.188448,25.6782,0.223104
+1085,33.6731,29.6973,27.1141,0.129696,1.43139,0.00816,0.005728,0.135776,0.196608,0.196032,24.7875,0.223232
+1086,33.1477,30.168,27.4734,0.131072,2.1873,0.00816,0.006144,0.139264,0.188416,0.1896,24.4007,0.22272
+1087,36.3972,27.4746,28.0331,0.131264,1.47773,0.008256,0.004768,0.139264,0.189856,0.191232,25.6654,0.225312
+1088,33.8333,29.5566,26.7571,0.134336,1.4631,0.008192,0.006144,0.140896,0.186816,0.188384,24.404,0.22528
+1089,35.1311,28.4648,26.7655,0.132352,1.4735,0.008192,0.00576,0.135584,0.187712,0.189088,24.4079,0.225408
+1090,34.5806,28.918,29.3085,0.130912,1.51078,0.00832,0.004768,0.139264,0.188128,0.18832,26.9152,0.222816
+1091,32.5472,30.7246,26.6404,0.1352,1.33936,0.008352,0.005984,0.1384,0.189248,0.191904,24.41,0.221888
+1092,34.8252,28.7148,26.9066,0.131072,1.61155,0.008288,0.00576,0.137248,0.190944,0.190016,24.4085,0.223232
+1093,35.2811,28.3438,28.007,0.131328,1.4825,0.00832,0.004832,0.13664,0.196352,0.188896,25.6331,0.225088
+1094,34.0154,29.3984,26.6691,0.13104,1.35376,0.008192,0.006144,0.136192,0.187424,0.189824,24.4292,0.227328
+1095,35.4989,28.1699,26.7139,0.131072,1.41424,0.00832,0.004896,0.14064,0.187008,0.188448,24.4099,0.229344
+1096,35.6347,28.0625,27.9472,0.130816,1.3697,0.024544,0.0048,0.138624,0.187008,0.188416,25.681,0.222336
+1097,33.4095,29.9316,27.2676,0.130592,1.58522,0.008288,0.015136,0.137216,0.188352,0.18848,24.791,0.223232
+1098,34.693,28.8242,27.007,0.169984,1.66707,0.008224,0.00576,0.142784,0.189344,0.190368,24.4119,0.221504
+1099,35.6075,28.084,27.9511,0.130784,1.40077,0.00832,0.005568,0.138048,0.189664,0.192768,25.6621,0.223072
+1100,34.0607,29.3594,26.8126,0.13248,1.4937,0.008192,0.005792,0.139616,0.188416,0.188416,24.4322,0.22384
+1101,35.2277,28.3867,27.1623,0.130912,1.48291,0.008192,0.006144,0.135296,0.187776,0.188928,24.7971,0.225056
+1102,34.8205,28.7188,28.7703,0.130848,1.40701,0.008384,0.005824,0.137536,0.188384,0.18832,26.4808,0.223264
+1103,32.9472,30.3516,26.7768,0.130528,1.49722,0.008352,0.005664,0.135904,0.188448,0.189664,24.3982,0.22288
+1104,35.408,28.2422,26.6984,0.130816,1.3976,0.008192,0.006144,0.141312,0.189696,0.190464,24.4109,0.223264
+1105,35.2714,28.3516,27.9348,0.131072,1.38854,0.008192,0.006144,0.14112,0.188608,0.191936,25.6559,0.223264
+1106,33.9613,29.4453,26.7709,0.13312,1.47866,0.008224,0.006144,0.14128,0.188416,0.187744,24.4039,0.22336
+1107,35.1673,28.4355,26.839,0.131072,1.5401,0.008416,0.00592,0.139264,0.186368,0.189856,24.4148,0.223232
+1108,34.8394,28.7031,28.0409,0.131072,1.52125,0.008256,0.0056,0.14,0.187552,0.187392,25.6366,0.223168
+1109,33.8714,29.5234,27.9122,0.131072,1.38243,0.009344,0.00496,0.138944,0.201024,0.190464,25.6318,0.22208
+1110,33.9658,29.4414,26.81,0.131072,1.50234,0.008288,0.004896,0.136224,0.188768,0.190688,24.4228,0.224864
+1111,35.4227,28.2305,27.9198,0.1312,1.39046,0.008192,0.005728,0.13968,0.190304,0.191872,25.6377,0.224704
+1112,34.0041,29.4082,26.6997,0.1328,1.39296,0.008192,0.006144,0.137216,0.188448,0.190464,24.4195,0.224064
+1113,35.1455,28.4531,28.0602,0.131072,1.54061,0.008192,0.006112,0.138496,0.18672,0.188736,25.6328,0.227456
+1114,33.8177,29.5703,28.0387,0.130848,1.49936,0.008448,0.00592,0.138848,0.186752,0.18976,25.6559,0.22288
+1115,33.3964,29.9434,26.8616,0.131072,1.56467,0.008448,0.005888,0.138976,0.186656,0.190464,24.4123,0.223072
+1116,35.4203,28.2324,26.7303,0.131072,1.42336,0.008192,0.006144,0.141312,0.191808,0.19088,24.4145,0.223072
+1117,35.1866,28.4199,27.9536,0.13072,1.41738,0.008288,0.004608,0.141312,0.188128,0.192192,25.6476,0.223296
+1118,33.8244,29.5645,26.8084,0.130912,1.50093,0.008384,0.004768,0.141152,0.186528,0.18816,24.4223,0.225312
+1119,35.6919,28.0176,26.6528,0.13072,1.35952,0.008288,0.004896,0.14032,0.187392,0.188384,24.408,0.225312
+1120,35.6894,28.0195,27.9224,0.13056,1.37853,0.008288,0.0056,0.141984,0.188352,0.188576,25.6588,0.22176
+1121,33.6488,29.7188,27.134,0.129984,1.4377,0.009248,0.0152,0.153248,0.187936,0.190912,24.7873,0.222496
+1122,34.5293,28.9609,27.4081,0.130944,2.10342,0.009344,0.004992,0.138976,0.188704,0.190304,24.4197,0.221664
+1123,35.4374,28.2188,27.9388,0.130176,1.4161,0.00816,0.006144,0.137216,0.188288,0.189952,25.6396,0.223232
+1124,34.2842,29.168,26.7329,0.131424,1.40285,0.008192,0.005984,0.141056,0.188832,0.18944,24.4255,0.239616
+1125,35.5013,28.168,28.1212,0.131808,1.49501,0.008192,0.006144,0.139136,0.186592,0.189664,25.7394,0.22528
+1126,33.416,29.9258,28.0139,0.12912,1.46358,0.008288,0.004896,0.138112,0.18736,0.187936,25.6722,0.222368
+1127,33.4772,29.8711,26.9517,0.130368,1.65936,0.00832,0.005568,0.13744,0.186816,0.190464,24.4093,0.224064
+1128,35.0205,28.5547,26.8044,0.1304,1.48563,0.008192,0.00592,0.13744,0.188416,0.18944,24.437,0.221952
+1129,35.3298,28.3047,27.984,0.137312,1.40086,0.008192,0.00592,0.145504,0.188512,0.190464,25.6758,0.231424
+1130,33.9793,29.4297,26.7181,0.131488,1.41526,0.009248,0.00512,0.137184,0.188256,0.188736,24.4202,0.222656
+1131,35.5654,28.1172,26.6775,0.133088,1.39846,0.00832,0.004832,0.137216,0.187616,0.188576,24.3959,0.22352
+1132,35.2084,28.4023,27.961,0.135168,1.4007,0.008288,0.005696,0.139744,0.188192,0.18864,25.6651,0.229472
+1133,33.0835,30.2266,27.2296,0.131072,1.53514,0.008448,0.004832,0.138624,0.193056,0.190432,24.8054,0.222656
+1134,34.3901,29.0781,27.2292,0.131072,1.91898,0.008384,0.005952,0.14336,0.189696,0.193312,24.4162,0.222272
+1135,36.3121,27.5391,27.9063,0.129888,1.36771,0.008384,0.005632,0.137888,0.188288,0.189952,25.6552,0.223296
+1136,33.9613,29.4453,26.6933,0.133152,1.3777,0.008352,0.0056,0.138144,0.190592,0.191712,24.4246,0.223392
+1137,35.6001,28.0898,26.6957,0.131072,1.38381,0.014976,0.006144,0.1472,0.18864,0.188352,24.4042,0.231328
+1138,35.3787,28.2656,27.9978,0.132736,1.44422,0.008192,0.006144,0.139264,0.188416,0.188288,25.6636,0.22688
+1139,33.8401,29.5508,26.7406,0.129184,1.4449,0.008288,0.00496,0.136672,0.188,0.189344,24.4112,0.228096
+1140,34.3348,29.125,27.0047,0.131072,1.68755,0.008192,0.006144,0.141312,0.1896,0.188384,24.4285,0.223968
+1141,36.3172,27.5352,27.8936,0.130816,1.37187,0.008288,0.005632,0.138176,0.186368,0.189536,25.6398,0.223104
+1142,33.277,30.0508,26.7115,0.131072,1.42704,0.008288,0.005568,0.138144,0.190432,0.189568,24.3987,0.222688
+1143,35.2811,28.3438,26.6691,0.131072,1.38986,0.00832,0.0048,0.1392,0.188256,0.18976,24.3961,0.221696
+1144,35.8142,27.9219,28.1025,0.131072,1.5297,0.008352,0.005728,0.141696,0.188448,0.19232,25.6816,0.223552
+1145,33.782,29.6016,28.0494,0.132128,1.50422,0.008192,0.006144,0.139264,0.187904,0.18864,25.6591,0.22384
+1146,33.7197,29.6562,26.6547,0.130752,1.35517,0.008288,0.004992,0.137216,0.187648,0.187072,24.4201,0.22352
+1147,34.9154,28.6406,28.2131,0.130912,1.61974,0.018176,0.0048,0.146912,0.200576,0.189088,25.6799,0.223008
+1148,33.8401,29.5508,26.6937,0.131072,1.39059,0.008192,0.006176,0.14128,0.190464,0.190496,24.4075,0.227872
+1149,34.6039,28.8984,27.9662,0.129792,1.44384,0.008288,0.00608,0.140864,0.188832,0.190464,25.6363,0.221792
+1150,34.404,29.0664,28.0432,0.13312,1.44179,0.008224,0.006016,0.138688,0.18672,0.188,25.7154,0.225216
+1151,33.7553,29.625,26.7855,0.131072,1.48685,0.008192,0.015744,0.139072,0.18656,0.188416,24.4046,0.22496
+1152,34.9918,28.5781,26.8924,0.130752,1.5671,0.008192,0.01568,0.139008,0.189376,0.20464,24.4159,0.22176
+1153,35.4915,28.1758,27.9974,0.130144,1.40579,0.008256,0.005728,0.138944,0.187104,0.189792,25.7088,0.222848
+1154,33.9478,29.457,26.712,0.13104,1.392,0.00832,0.004768,0.140416,0.190848,0.19248,24.429,0.223136
+1155,35.2909,28.3359,26.7257,0.131104,1.42525,0.008288,0.005568,0.139872,0.190464,0.188512,24.414,0.22256
+1156,35.4374,28.2188,27.9388,0.131072,1.38826,0.008352,0.005568,0.13952,0.186848,0.188384,25.6655,0.225312
+1157,34.0064,29.4062,27.9632,0.130816,1.41904,0.008288,0.004832,0.141312,0.186368,0.189568,25.6599,0.223072
+1158,33.0707,30.2383,26.7459,0.131168,1.44208,0.00832,0.005632,0.143904,0.188192,0.189088,24.4163,0.221216
+1159,35.5161,28.1562,27.9416,0.12976,1.40678,0.008288,0.005568,0.137664,0.18656,0.188512,25.6572,0.221248
+1160,33.8669,29.5273,26.7571,0.131104,1.45728,0.00832,0.004992,0.139136,0.190464,0.188384,24.416,0.221408
+1161,35.4571,28.2031,26.9415,0.131616,1.40816,0.008288,0.004896,0.140576,0.18912,0.189856,24.6258,0.2432
+1162,35.1697,28.4336,29.1472,0.132256,1.40176,0.00816,0.006144,0.139264,0.188448,0.188384,26.8593,0.223424
+1163,32.4379,30.8281,26.799,0.1312,1.51629,0.008192,0.006048,0.137312,0.187424,0.188672,24.402,0.221824
+1164,35.7942,27.9375,26.7082,0.130304,1.38042,0.008512,0.004768,0.140224,0.187392,0.198112,24.4352,0.223232
+1165,35.2277,28.3867,27.9798,0.131008,1.43981,0.007936,0.0056,0.136,0.188384,0.190496,25.6586,0.221952
+1166,33.7064,29.668,26.8042,0.132704,1.47882,0.008288,0.00576,0.141056,0.191264,0.191712,24.4314,0.223232
+1167,35.1842,28.4219,26.7756,0.131072,1.47661,0.008224,0.006112,0.141312,0.190176,0.188704,24.3992,0.234176
+1168,35.5605,28.1211,27.9281,0.132288,1.35853,0.00832,0.0056,0.138784,0.188416,0.189248,25.6801,0.226816
+1169,34.0743,29.3477,27.0305,0.130208,1.34944,0.008288,0.006048,0.139136,0.186304,0.188608,24.7945,0.227968
+1170,34.7637,28.7656,27.6205,0.130624,1.45971,0.008288,0.004992,0.13888,0.18848,0.188704,25.2785,0.222336
+1171,34.3855,29.082,27.9962,0.131072,1.43974,0.009216,0.00512,0.14336,0.192512,0.190144,25.6636,0.221376
+1172,33.5518,29.8047,26.9237,0.129696,1.60563,0.008192,0.00592,0.137344,0.190464,0.204896,24.4183,0.223232
+1173,35.408,28.2422,27.9519,0.131104,1.44778,0.008288,0.004928,0.139264,0.200704,0.190496,25.6056,0.223744
+1174,34.029,29.3867,27.9403,0.131072,1.39597,0.00832,0.004768,0.139232,0.187616,0.187168,25.6614,0.224704
+1175,33.9253,29.4766,26.7034,0.130336,1.41795,0.008192,0.006048,0.137248,0.186432,0.188448,24.4053,0.223424
+1176,34.7732,28.7578,27.0911,0.130976,1.75933,0.008192,0.006144,0.137216,0.192064,0.201056,24.4338,0.222304
+1177,35.4178,28.2344,27.9556,0.129376,1.44093,0.006944,0.00528,0.13744,0.187072,0.188448,25.638,0.22208
+1178,32.3069,30.9531,26.7121,0.131072,1.39469,0.009408,0.004928,0.140992,0.19216,0.19056,24.425,0.223232
+1179,36.9835,27.0391,26.8055,0.130976,1.4911,0.008224,0.006112,0.14336,0.188416,0.188416,24.4081,0.2408
+1180,35.3152,28.3164,27.9491,0.13312,1.40288,0.008192,0.006144,0.139264,0.188192,0.18864,25.6564,0.22624
+1181,34.188,29.25,26.6752,0.129216,1.37014,0.00928,0.005024,0.1352,0.188192,0.188608,24.4224,0.227168
+1182,35.364,28.2773,28.0105,0.13104,1.46986,0.00832,0.005792,0.13808,0.188448,0.188032,25.6597,0.221216
+1183,34.0109,29.4023,27.9613,0.131072,1.41069,0.00832,0.005664,0.14,0.196128,0.188896,25.6594,0.221184
+1184,33.7642,29.6172,26.7076,0.130688,1.38662,0.008288,0.005568,0.139712,0.190368,0.192256,24.4311,0.222944
+1185,35.325,28.3086,26.7103,0.131008,1.42781,0.008192,0.006176,0.140896,0.189856,0.188928,24.3959,0.221568
+1186,35.605,28.0859,27.9569,0.132416,1.38464,0.008288,0.005792,0.13552,0.190912,0.188064,25.6863,0.224928
+1187,33.6179,29.7461,26.7411,0.132512,1.45088,0.008192,0.016384,0.138752,0.18688,0.188448,24.3937,0.225312
+1188,35.4964,28.1719,26.7537,0.1296,1.44349,0.008288,0.00624,0.137504,0.188448,0.189568,24.4212,0.229376
+1189,35.1455,28.4531,28.0195,0.129792,1.46432,0.008224,0.005856,0.137216,0.187648,0.188864,25.6743,0.223232
+1190,33.2943,30.0352,27.2348,0.130944,1.53277,0.008224,0.006112,0.139264,0.188448,0.190464,24.8156,0.222976
+1191,33.7064,29.668,27.003,0.13056,1.69869,0.008192,0.005984,0.138784,0.188096,0.192576,24.4171,0.22304
+1192,35.5951,28.0938,28.1161,0.132512,1.55424,0.008352,0.004736,0.141312,0.187712,0.18816,25.6726,0.226432
+1193,33.6754,29.6953,26.7729,0.130176,1.4775,0.008192,0.006144,0.139264,0.187712,0.187072,24.408,0.228768
+1194,34.4781,29.0039,26.8265,0.131072,1.51142,0.008192,0.016384,0.139264,0.197952,0.188992,24.41,0.2232
+1195,35.8845,27.8672,29.2345,0.131072,1.49299,0.008288,0.00608,0.139232,0.507904,0.194496,26.5319,0.222528
+1196,32.181,31.0742,26.7839,0.132864,1.46458,0.008192,0.006144,0.141312,0.195872,0.18816,24.4122,0.234624
+1197,34.8157,28.7227,26.8416,0.131456,1.54672,0.008288,0.005632,0.138752,0.186912,0.188896,24.4115,0.223392
+1198,35.1118,28.4805,28.1464,0.131072,1.57776,0.00816,0.006144,0.139264,0.187488,0.187296,25.6816,0.22768
+1199,32.6364,30.6406,26.9426,0.13104,1.64218,0.008352,0.005664,0.137888,0.186368,0.200096,24.4082,0.222816
+1200,35.9702,27.8008,26.9067,0.13056,1.5896,0.008352,0.005664,0.140864,0.187296,0.188416,24.4326,0.223264
+1201,34.9727,28.5938,28.0585,0.129888,1.51296,0.00848,0.005664,0.137792,0.188128,0.188832,25.6646,0.22208
+1202,33.8848,29.5117,26.6924,0.131776,1.37411,0.008288,0.0056,0.137696,0.190272,0.188832,24.4285,0.227328
+1203,35.7342,27.9844,27.9424,0.132384,1.4057,0.00816,0.00608,0.138784,0.186912,0.188416,25.6512,0.224736
+1204,33.8088,29.5781,27.9952,0.130816,1.42566,0.009344,0.005024,0.140352,0.188768,0.189024,25.6819,0.224352
+1205,34.4179,29.0547,26.7757,0.129344,1.46842,0.008192,0.00592,0.139488,0.1864,0.188416,24.4265,0.223072
+1206,35.364,28.2773,26.749,0.130304,1.44054,0.00816,0.006144,0.137216,0.201952,0.190688,24.4127,0.221216
+1207,34.8964,28.6562,29.182,0.13104,1.78179,0.009216,0.00512,0.137088,0.187904,0.189152,26.5106,0.230048
+1208,33.1606,30.1562,26.6957,0.131232,1.38003,0.008352,0.005792,0.137568,0.188224,0.188256,24.433,0.223232
+1209,35.4276,28.2266,26.6923,0.133472,1.40525,0.007808,0.005632,0.136064,0.188128,0.188288,24.3961,0.23152
+1210,34.506,28.9805,28.0289,0.132352,1.47891,0.00832,0.005792,0.139872,0.187776,0.189184,25.6626,0.224128
+1211,34.7732,28.7578,26.7067,0.130016,1.42643,0.00832,0.0048,0.137216,0.187552,0.188544,24.3976,0.226208
+1212,35.4964,28.1719,26.6862,0.12976,1.37955,0.00832,0.004768,0.137216,0.188416,0.188416,24.4261,0.223584
+1213,35.7292,27.9883,27.9381,0.130848,1.38877,0.008192,0.006144,0.138944,0.186688,0.188448,25.6676,0.222496
+1214,33.7508,29.6289,27.9791,0.130528,1.4239,0.008192,0.006112,0.141088,0.188672,0.190144,25.6679,0.22256
+1215,33.9073,29.4922,26.7659,0.131552,1.45734,0.00832,0.00496,0.139232,0.186368,0.189504,24.4109,0.237696
+1216,34.2612,29.1875,28.0459,0.131648,1.47155,0.008544,0.014944,0.140352,0.18736,0.188384,25.6758,0.227328
+1217,33.5298,29.8242,26.8113,0.129984,1.52166,0.008224,0.006112,0.137216,0.18816,0.188704,24.4019,0.229376
+1218,36.2298,27.6016,27.1679,0.13056,1.472,0.008288,0.005024,0.139264,0.188416,0.188448,24.813,0.222912
+1219,34.3118,29.1445,28.6517,0.129632,1.73997,0.06784,0.008768,0.144768,0.51776,0.19104,25.6301,0.221856
+1220,33.4466,29.8984,26.794,0.13216,1.47763,0.009568,0.004736,0.141152,0.188544,0.189888,24.4102,0.240128
+1221,35.4915,28.1758,26.7199,0.132736,1.41661,0.00832,0.00496,0.148672,0.18864,0.189024,24.4076,0.223328
+1222,35.6347,28.0625,28.0559,0.133248,1.40515,0.009216,0.00512,0.145152,0.18832,0.1888,25.7487,0.232192
+1223,33.6931,29.6797,26.6813,0.131072,1.36938,0.008288,0.0048,0.137152,0.188128,0.188704,24.43,0.22384
+1224,35.0733,28.5117,26.7703,0.129984,1.47446,0.008288,0.00608,0.136896,0.18784,0.188768,24.4147,0.223232
+1225,35.6645,28.0391,27.9587,0.131072,1.39629,0.00832,0.0056,0.139808,0.186688,0.188416,25.6809,0.221568
+1226,33.8669,29.5273,26.7064,0.129728,1.41722,0.008224,0.006112,0.137216,0.188416,0.188416,24.4075,0.223552
+1227,35.3445,28.293,27.6275,0.14272,1.44378,0.008288,0.004704,0.139264,0.189952,0.191008,25.2846,0.223232
+1228,34.4086,29.0625,27.9813,0.131168,1.43978,0.00816,0.006144,0.136416,0.188288,0.189152,25.6574,0.224832
+1229,33.9568,29.4492,26.6445,0.131136,1.35373,0.008192,0.006144,0.137216,0.188416,0.188416,24.406,0.22528
+1230,35.1938,28.4141,27.9306,0.129792,1.36605,0.00816,0.006144,0.138336,0.186944,0.188768,25.684,0.2224
+1231,33.2424,30.082,28.1387,0.130496,1.59597,0.007776,0.0056,0.139904,0.187744,0.196832,25.652,0.222368
+1232,34.5899,28.9102,26.7405,0.130912,1.42736,0.00832,0.005792,0.139936,0.190464,0.190464,24.4224,0.224832
+1233,35.2909,28.3359,26.7226,0.131008,1.42627,0.008192,0.005728,0.13968,0.190016,0.191936,24.4081,0.221632
+1234,35.2326,28.3828,28.0412,0.132896,1.48614,0.008384,0.013024,0.139264,0.188416,0.188416,25.6594,0.22528
+1235,33.8624,29.5312,26.8136,0.132128,1.50422,0.008192,0.005888,0.13936,0.18656,0.189728,24.4211,0.226496
+1236,35.4178,28.2344,26.6899,0.129184,1.38448,0.00816,0.006048,0.137312,0.188416,0.189888,24.4168,0.229536
+1237,34.6649,28.8477,27.995,0.12992,1.46022,0.009216,0.00512,0.139264,0.187936,0.18848,25.6536,0.221216
+1238,34.7119,28.8086,26.7037,0.13136,1.40317,0.008192,0.005984,0.137376,0.188416,0.188448,24.4183,0.222496
+1239,35.0541,28.5273,27.8454,0.130048,1.67718,0.008192,0.006144,0.138336,0.188608,0.190848,25.2829,0.223136
+1240,34.3855,29.082,28.0494,0.131072,1.48195,0.00832,0.004768,0.140576,0.18864,0.19296,25.6779,0.223232
+1241,33.8893,29.5078,26.7264,0.131104,1.43965,0.008256,0.005696,0.139712,0.187488,0.188416,24.4025,0.223552
+1242,35.2035,28.4062,28.0166,0.130688,1.46675,0.009312,0.005024,0.139264,0.188096,0.186752,25.6675,0.223232
+1243,33.5342,29.8203,28.1702,0.129088,1.58099,0.008288,0.006048,0.139264,0.188096,0.203072,25.6942,0.221184
+1244,34.188,29.25,26.6734,0.12944,1.36141,0.008352,0.006016,0.139552,0.190016,0.188896,24.4281,0.221568
+1245,35.5556,28.125,26.6773,0.134624,1.37731,0.008192,0.005888,0.141536,0.188448,0.190592,24.4093,0.22144
+1246,35.2374,28.3789,27.9658,0.129408,1.43917,0.00832,0.0056,0.139936,0.188864,0.190368,25.6409,0.223232
+1247,34.0245,29.3906,26.6822,0.133088,1.38278,0.008352,0.005568,0.136032,0.186368,0.188416,24.4183,0.223264
+1248,35.5704,28.1133,26.6916,0.135168,1.38035,0.008384,0.005984,0.14128,0.187488,0.187296,24.4216,0.224064
+1249,35.3298,28.3047,27.9982,0.131072,1.45613,0.007296,0.004992,0.13856,0.186944,0.188544,25.6614,0.223232
+1250,33.7553,29.625,27.2343,0.130784,1.53219,0.009248,0.005088,0.139264,0.188448,0.2048,24.8033,0.221184
+1251,34.2338,29.2109,27.3338,0.131072,2.03347,0.008416,0.005696,0.143776,0.188416,0.19184,24.4087,0.222368
+1252,35.2909,28.3359,27.9523,0.14096,1.37251,0.008384,0.005952,0.139264,0.190496,0.19168,25.6655,0.237536
+1253,33.9703,29.4375,26.6996,0.1312,1.41082,0.00848,0.005824,0.137536,0.188416,0.188416,24.4054,0.22352
+1254,35.4031,28.2461,27.9914,0.134688,1.39517,0.009472,0.004896,0.139232,0.187872,0.186912,25.7024,0.230752
+1255,33.5606,29.7969,27.9817,0.12992,1.42746,0.008192,0.00608,0.137248,0.186528,0.190304,25.6737,0.222208
+1256,34.106,29.3203,26.7352,0.12976,1.4329,0.00832,0.005568,0.140288,0.188416,0.188448,24.4183,0.223232
+1257,35.6546,28.0469,26.6949,0.130944,1.40096,0.008192,0.005728,0.137632,0.186592,0.190016,24.4124,0.222432
+1258,35.462,28.1992,27.9143,0.131008,1.37792,0.008352,0.0056,0.138048,0.188448,0.189728,25.6538,0.221408
+1259,34.1288,29.3008,26.6604,0.131072,1.36806,0.008192,0.005856,0.139552,0.189792,0.190176,24.4029,0.224864
+1260,35.3006,28.3281,26.7091,0.133152,1.38186,0.008288,0.0056,0.139328,0.197088,0.188832,24.4306,0.224384
+1261,34.147,29.2852,28.0291,0.133664,1.46461,0.00928,0.005056,0.137248,0.188416,0.188384,25.6758,0.226688
+1262,35.1503,28.4492,27.1173,0.131104,1.42947,0.008192,0.006144,0.137216,0.188416,0.188416,24.8033,0.225056
+1263,35.1166,28.4766,27.51,0.131072,1.35782,0.008256,0.00608,0.140512,0.186624,0.187072,25.2701,0.222496
+1264,34.5806,28.918,27.9771,0.129408,1.39245,0.008,0.00576,0.13984,0.188416,0.190144,25.7007,0.222432
+1265,33.8177,29.5703,26.6909,0.131296,1.38013,0.008224,0.00592,0.138944,0.188928,0.192512,24.4204,0.22464
+1266,35.2617,28.3594,27.9466,0.132128,1.42435,0.008192,0.005824,0.139296,0.190752,0.190464,25.6284,0.227168
+1267,33.9118,29.4883,27.9306,0.134752,1.39658,0.008288,0.005632,0.137984,0.186592,0.188416,25.6445,0.227904
+1268,33.521,29.832,26.8317,0.129952,1.50925,0.008192,0.006176,0.137184,0.188416,0.189632,24.4396,0.223264
+1269,35.8142,27.9219,26.854,0.130592,1.54042,0.008288,0.0048,0.138848,0.186688,0.198624,24.4224,0.223328
+1270,34.7543,28.7734,28.1698,0.131072,1.58512,0.008224,0.016384,0.139072,0.188608,0.188416,25.69,0.222816
+1271,33.3203,30.0117,26.8274,0.129824,1.52966,0.008256,0.005728,0.13968,0.188576,0.195872,24.4081,0.221696
+1272,35.9904,27.7852,26.7448,0.13232,1.40368,0.008192,0.006144,0.149504,0.190112,0.188768,24.4261,0.239968
+1273,35.3836,28.2617,27.9116,0.13232,1.36378,0.00832,0.00496,0.137248,0.186464,0.188352,25.6655,0.224672
+1274,34.0652,29.3555,26.6881,0.129728,1.35725,0.008288,0.004736,0.141152,0.188416,0.188416,24.4423,0.227776
+1275,35.3738,28.2695,27.9735,0.130976,1.40451,0.00832,0.0056,0.133952,0.187712,0.188608,25.692,0.221824
+1276,33.565,29.793,28.1517,0.130176,1.58605,0.008192,0.006144,0.137216,0.188448,0.189792,25.6836,0.222016
+1277,33.4816,29.8672,26.721,0.131776,1.41104,0.008192,0.005888,0.137024,0.196736,0.190112,24.4187,0.221504
+1278,35.4718,28.1914,26.7121,0.131424,1.37629,0.00816,0.008032,0.140512,0.188416,0.187328,24.4255,0.246368
+1279,34.9631,28.6016,27.9634,0.1352,1.36598,0.008192,0.005952,0.137056,0.186752,0.190432,25.7055,0.22832
+1280,33.6886,29.6836,26.7638,0.131104,1.4423,0.008288,0.006048,0.139296,0.188416,0.188416,24.4341,0.225824
+1281,35.3006,28.3281,26.6273,0.130592,1.35984,0.00832,0.005568,0.138176,0.187968,0.188864,24.3855,0.222464
+1282,35.6397,28.0586,28.0036,0.13104,1.42896,0.00832,0.018304,0.135744,0.188544,0.200576,25.6692,0.22288
+1283,33.9883,29.4219,26.6923,0.129632,1.38656,0.008192,0.006144,0.139424,0.1944,0.191552,24.4148,0.2216
+1284,35.3787,28.2656,27.5534,0.128064,1.39363,0.008224,0.00608,0.137216,0.190464,0.190464,25.2764,0.222816
+1285,34.4967,28.9883,27.9102,0.131072,1.34915,0.008256,0.005632,0.136096,0.188416,0.189568,25.6785,0.22352
+1286,33.7731,29.6094,26.7689,0.131072,1.46621,0.008352,0.00576,0.135328,0.18768,0.189376,24.4173,0.227808
+1287,35.0733,28.5117,27.2564,0.130944,1.5648,0.008192,0.005952,0.141344,0.186528,0.188448,24.8071,0.223072
+1288,34.404,29.0664,28.9463,0.130528,1.52016,0.009248,0.005088,0.139296,0.2,0.193216,26.5257,0.223072
+1289,33.2857,30.043,26.7539,0.129824,1.46022,0.008192,0.00592,0.139488,0.191776,0.18912,24.4076,0.221664
+1290,34.8821,28.668,26.7918,0.131296,1.47837,0.008288,0.005568,0.139808,0.188416,0.188256,24.4284,0.223424
+1291,35.0685,28.5156,28.0079,0.131232,1.43766,0.008224,0.005664,0.139392,0.18672,0.188384,25.682,0.22864
+1292,33.3637,29.9727,26.9639,0.133152,1.64835,0.016384,0.0056,0.141792,0.188128,0.189024,24.4173,0.224192
+1293,35.3982,28.25,26.7444,0.130336,1.46262,0.008288,0.005632,0.140064,0.188256,0.188576,24.3978,0.222816
+1294,35.4718,28.1914,28.1083,0.130368,1.55309,0.009376,0.006688,0.136768,0.200768,0.191168,25.6573,0.222688
+1295,34.0833,29.3398,26.6793,0.143328,1.37424,0.008288,0.005568,0.139232,0.189088,0.190592,24.4061,0.222848
+1296,35.2617,28.3594,27.5232,0.128096,1.36694,0.008192,0.005728,0.137632,0.192416,0.1904,25.2636,0.230176
+1297,34.441,29.0352,27.9451,0.132448,1.38112,0.008192,0.006144,0.141312,0.186432,0.189728,25.6744,0.22528
+1298,33.8311,29.5586,26.7959,0.130272,1.46925,0.00816,0.006144,0.137216,0.188416,0.188416,24.4388,0.229248
+1299,35.1262,28.4688,28.0171,0.129504,1.46022,0.009216,0.00512,0.136352,0.187232,0.188416,25.6778,0.223232
+1300,32.9769,30.3242,28.0376,0.12976,1.50528,0.008192,0.006016,0.137056,0.188512,0.190144,25.6497,0.223008
+1301,34.5946,28.9062,26.8032,0.131104,1.50234,0.008288,0.004864,0.14096,0.190816,0.192032,24.4106,0.22224
+1302,35.0301,28.5469,26.8235,0.132128,1.52765,0.008288,0.0056,0.13984,0.18832,0.188544,24.4095,0.223616
+1303,35.0973,28.4922,28.0828,0.134816,1.54922,0.008192,0.005952,0.136448,0.18704,0.189824,25.6454,0.225856
+1304,33.8983,29.5,26.7162,0.130304,1.4057,0.008192,0.00608,0.139328,0.187872,0.188288,24.4251,0.22528
+1305,35.1214,28.4727,27.9772,0.13072,1.40733,0.008192,0.005824,0.140704,0.187296,0.18848,25.6856,0.223008
+1306,34.1333,29.2969,26.687,0.130656,1.38867,0.008288,0.00576,0.137792,0.188416,0.190464,24.4142,0.222784
+1307,34.5666,28.9297,27.2269,0.129888,1.51139,0.024128,0.006048,0.13904,0.189184,0.190464,24.8147,0.222112
+1308,35.8543,27.8906,27.9065,0.130688,1.36186,0.008288,0.004992,0.142592,0.18912,0.190432,25.6566,0.221984
+1309,33.8848,29.5117,26.708,0.132512,1.41728,0.008128,0.0048,0.138144,0.187392,0.190208,24.4042,0.22528
+1310,35.364,28.2773,26.7674,0.13088,1.45222,0.008192,0.006048,0.137248,0.187744,0.188288,24.4315,0.225312
+1311,35.1455,28.4531,27.9675,0.131104,1.38646,0.008192,0.021824,0.14368,0.186432,0.188384,25.6782,0.223232
+1312,33.4553,29.8906,26.7527,0.130816,1.42579,0.00832,0.005792,0.137792,0.192512,0.19456,24.4342,0.222944
+1313,35.0781,28.5078,26.8095,0.13104,1.52374,0.008192,0.005888,0.138688,0.1872,0.19024,24.402,0.222496
+1314,35.2374,28.3789,28.0431,0.13472,1.44429,0.008288,0.006048,0.141312,0.190464,0.192224,25.7006,0.22512
+1315,33.7197,29.6562,27.13,0.133376,1.45408,0.008192,0.006112,0.138624,0.187072,0.19024,24.7869,0.225344
+1316,34.5666,28.9297,27.607,0.131072,1.42237,0.008384,0.004928,0.140896,0.186752,0.188416,25.2959,0.22832
+1317,34.298,29.1562,28.0285,0.129536,1.48416,0.008288,0.00464,0.14304,0.186656,0.188608,25.6612,0.222304
+1318,33.7775,29.6055,26.7755,0.130592,1.46474,0.00832,0.00592,0.141536,0.189568,0.18864,24.4231,0.223072
+1319,34.9679,28.5977,26.8213,0.13088,1.49546,0.008288,0.014592,0.137344,0.190464,0.192512,24.4299,0.22192
+1320,34.8394,28.7031,28.8398,0.129024,1.45408,0.008384,0.005952,0.141024,0.188704,0.188416,26.4966,0.227552
+1321,33.0323,30.2734,26.7296,0.131072,1.43974,0.008416,0.00592,0.139264,0.188,0.189984,24.4018,0.225376
+1322,35.0733,28.5117,26.7483,0.131072,1.44998,0.008192,0.006048,0.13936,0.188032,0.188576,24.4144,0.222592
+1323,32.3518,30.9102,28.266,0.129248,1.6911,0.00832,0.005536,0.141856,0.195104,0.189536,25.6828,0.222528
+1324,36.6972,27.25,26.7919,0.137248,1.47248,0.009248,0.005088,0.140448,0.189312,0.190432,24.4265,0.221184
+1325,35.0205,28.5547,26.7625,0.130944,1.4665,0.008224,0.006112,0.138336,0.188448,0.189312,24.4115,0.223136
+1326,35.0781,28.5078,27.9554,0.132928,1.37251,0.008224,0.006016,0.13936,0.188416,0.188448,25.6942,0.22528
+1327,33.9838,29.4258,27.9222,0.129824,1.32701,0.008256,0.005632,0.139776,0.186368,0.188416,25.7147,0.222208
+1328,33.4116,29.9297,26.7874,0.129376,1.45744,0.008576,0.005696,0.144064,0.188032,0.188928,24.4423,0.222976
+1329,33.7375,29.6406,28.2355,0.130528,1.61869,0.008192,0.014336,0.139264,0.196608,0.206624,25.6985,0.22272
+1330,34.4456,29.0312,26.7756,0.1312,1.44576,0.008192,0.005856,0.139552,0.198432,0.188,24.4353,0.223296
+1331,35.5506,28.1289,27.9937,0.133664,1.41459,0.01712,0.006016,0.139264,0.186368,0.189568,25.6664,0.24064
+1332,33.3377,29.9961,27.9162,0.130784,1.36835,0.009312,0.005024,0.141088,0.188608,0.18848,25.6613,0.223232
+1333,33.7197,29.6562,26.768,0.129664,1.49872,0.00832,0.005664,0.137984,0.188256,0.190336,24.3876,0.221504
+1334,35.364,28.2773,26.8023,0.130656,1.49766,0.008192,0.00608,0.139136,0.190336,0.190528,24.4165,0.223232
+1335,35.4227,28.2305,28.0612,0.14544,1.4697,0.008672,0.005568,0.141312,0.18912,0.191776,25.6716,0.238048
+1336,33.8088,29.5781,26.7932,0.13312,1.49814,0.008416,0.004864,0.139264,0.188256,0.188512,24.4092,0.223424
+1337,35.3347,28.3008,26.7651,0.132992,1.47219,0.00832,0.004704,0.141312,0.187712,0.18912,24.3978,0.23088
+1338,35.462,28.1992,27.9655,0.13296,1.43098,0.00832,0.004736,0.138528,0.187104,0.188256,25.6473,0.227328
+1339,32.1568,31.0977,27.2968,0.130048,1.59894,0.008288,0.005632,0.140096,0.186464,0.190304,24.8154,0.2216
+1340,34.0199,29.3945,27.5712,0.133824,2.26131,0.009472,0.004864,0.14336,0.188416,0.19216,24.4145,0.223264
+1341,32.6239,30.6523,28.011,0.131936,1.45997,0.02464,0.006144,0.139136,0.198784,0.18848,25.6368,0.225088
+1342,36.2452,27.5898,26.794,0.130816,1.48682,0.008288,0.00576,0.13968,0.187584,0.18736,24.4176,0.23008
+1343,35.3006,28.3281,26.7902,0.129472,1.48454,0.008288,0.005536,0.137888,0.186336,0.1896,24.4212,0.22736
+1344,35.2811,28.3438,29.0163,0.130624,1.42349,0.008288,0.005568,0.13776,0.186848,0.407552,26.4929,0.223232
+1345,32.6906,30.5898,26.7603,0.131648,1.46358,0.008352,0.004928,0.141312,0.19168,0.190368,24.4063,0.222144
+1346,35.218,28.3945,26.7744,0.131968,1.43536,0.00832,0.00576,0.145952,0.188416,0.188448,24.4285,0.241664
+1347,34.4503,29.0273,28.2399,0.13312,1.69514,0.00832,0.004576,0.144544,0.186368,0.18928,25.6528,0.22576
+1348,32.6489,30.6289,26.9352,0.130624,1.61219,0.008224,0.015808,0.139808,0.187616,0.18848,24.4273,0.225152
+1349,35.8393,27.9023,26.8025,0.129504,1.4881,0.007136,0.00592,0.15712,0.186976,0.1896,24.4164,0.22176
+1350,35.2084,28.4023,28.046,0.12976,1.49843,0.008448,0.005664,0.140096,0.188416,0.189952,25.662,0.223232
+1351,33.6931,29.6797,26.7346,0.131168,1.43354,0.008288,0.006048,0.138496,0.189152,0.190464,24.4159,0.221568
+1352,34.9297,28.6289,28.0726,0.132064,1.49194,0.008288,0.004704,0.13728,0.188352,0.188416,25.6963,0.22528
+1353,33.3507,29.9844,28.1634,0.130688,1.64301,0.007904,0.00576,0.137888,0.188416,0.19376,25.6336,0.222368
+1354,32.5741,30.6992,26.8938,0.131072,1.57674,0.007616,0.004896,0.142688,0.188768,0.190784,24.4224,0.228864
+1355,36.6028,27.3203,26.7737,0.130944,1.47875,0.008256,0.005664,0.139648,0.188416,0.189856,24.4108,0.22144
+1356,35.2957,28.332,28.0793,0.130656,1.48045,0.008352,0.005984,0.140032,0.190048,0.190752,25.6916,0.24144
+1357,32.3723,30.8906,26.8493,0.132704,1.53642,0.016032,0.0056,0.13984,0.186624,0.188512,24.42,0.22352
+1358,37.1985,26.8828,26.7511,0.13488,1.44781,0.008352,0.0056,0.137952,0.186464,0.189696,24.4169,0.223424
+1359,35.3933,28.2539,27.988,0.13312,1.44509,0.00832,0.0048,0.14128,0.187808,0.189024,25.6532,0.22528
+1360,33.277,30.0508,26.7489,0.131104,1.43357,0.008192,0.006144,0.145408,0.188416,0.192512,24.4204,0.223232
+1361,35.2035,28.4062,26.7864,0.129856,1.47456,0.008192,0.006144,0.149504,0.187712,0.188672,24.4203,0.221536
+1362,34.5852,28.9141,28.3894,0.14064,1.80906,0.008416,0.00592,0.146464,0.189344,0.189888,25.6785,0.221216
+1363,32.6281,30.6484,28.0822,0.131072,1.51901,0.008288,0.00464,0.137216,0.187552,0.188864,25.6816,0.223936
+1364,35.3982,28.25,26.7787,0.131072,1.46832,0.008288,0.005696,0.135168,0.186816,0.188416,24.4279,0.227008
+1365,35.325,28.3086,27.9848,0.129952,1.44998,0.00928,0.005088,0.140288,0.186752,0.189056,25.6512,0.223232
+1366,33.5474,29.8086,26.9233,0.13072,1.59002,0.008384,0.005952,0.139264,0.188416,0.190464,24.4484,0.221632
+1367,34.3486,29.1133,28.4611,0.130496,1.89907,0.008192,0.020192,0.138976,0.189024,0.190432,25.6614,0.223232
+1368,32.2743,30.9844,28.0294,0.130848,1.49574,0.007712,0.00608,0.139008,0.188384,0.188544,25.6469,0.226208
+1369,36.1735,27.6445,26.7118,0.1296,1.40282,0.00832,0.006016,0.135136,0.186368,0.190048,24.4269,0.226592
+1370,35.2471,28.3711,26.754,0.129952,1.45606,0.008256,0.005792,0.139456,0.187744,0.188352,24.4131,0.225312
+1371,35.1842,28.4219,29.3297,0.130688,1.50998,0.008192,0.005984,0.137376,0.188448,0.188416,26.9394,0.221216
+1372,32.1689,31.0859,26.758,0.131168,1.46307,0.008192,0.006144,0.140704,0.188448,0.192224,24.4048,0.223232
+1373,33.6399,29.7266,26.7472,0.133824,1.44704,0.007008,0.005408,0.137632,0.186688,0.188384,24.4161,0.22512
+1374,34.8584,28.6875,28.0161,0.13072,1.45382,0.008352,0.00576,0.140096,0.188416,0.188416,25.6773,0.223264
+1375,33.3724,29.9648,26.9785,0.130784,1.68579,0.009312,0.005024,0.137152,0.187904,0.188992,24.4122,0.221344
+1376,35.9551,27.8125,26.7264,0.130784,1.41955,0.008192,0.006112,0.137248,0.187808,0.189056,24.4244,0.223296
+1377,34.8347,28.707,28.1009,0.129312,1.536,0.008192,0.00592,0.13744,0.189664,0.19088,25.6659,0.237568
+1378,33.8445,29.5469,27.1196,0.132992,1.42093,0.00832,0.00576,0.137984,0.188416,0.188416,24.8135,0.223264
+1379,35.0397,28.5391,27.5887,0.131584,1.42058,0.008288,0.0048,0.13824,0.187328,0.189408,25.2815,0.226976
+1380,34.0426,29.375,27.9709,0.129184,1.41091,0.008192,0.006048,0.137216,0.188192,0.188256,25.6803,0.222624
+1381,33.565,29.793,26.7246,0.130656,1.4321,0.008288,0.0056,0.137536,0.18768,0.189376,24.4117,0.221664
+1382,34.987,28.582,27.1482,0.130752,1.45046,0.00816,0.006048,0.136384,0.189344,0.190464,24.8136,0.222976
+1383,33.8445,29.5469,28.414,0.129536,1.87347,0.008352,0.0056,0.139808,0.203008,0.18944,25.64,0.224864
+1384,32.2703,30.9883,26.8436,0.131104,1.53677,0.008192,0.005952,0.139456,0.188352,0.198304,24.4064,0.229088
+1385,37.8474,26.4219,26.722,0.130912,1.42579,0.008192,0.006176,0.139232,0.187584,0.188928,24.4063,0.228896
+1386,35.0733,28.5117,28.0448,0.130432,1.50093,0.00832,0.00496,0.139072,0.18752,0.188768,25.6621,0.222752
+1387,33.8088,29.5781,26.703,0.130752,1.41757,0.00816,0.006144,0.135168,0.188416,0.188512,24.4059,0.222368
+1388,35.4767,28.1875,26.7969,0.129856,1.49098,0.008384,0.00592,0.136288,0.188608,0.189056,24.4265,0.22128
+1389,35.5013,28.168,27.9515,0.142336,1.34762,0.00816,0.006144,0.139264,0.188416,0.192352,25.6862,0.240992
+1390,33.6399,29.7266,27.209,0.132992,1.4952,0.009184,0.00512,0.1384,0.187232,0.188416,24.8279,0.224512
+1391,35.5605,28.1211,28.7322,0.133408,1.33933,0.00832,0.005664,0.138112,0.188416,0.190336,26.5053,0.223264
+1392,32.5534,30.7188,26.8008,0.129984,1.49418,0.008128,0.004864,0.139264,0.204096,0.189056,24.408,0.2232
+1393,34.9584,28.6055,26.8412,0.130688,1.53638,0.008192,0.006048,0.136512,0.187168,0.190208,24.4245,0.221408
+1394,34.404,29.0664,28.0404,0.130848,1.47274,0.008224,0.006112,0.141312,0.188416,0.190464,25.6791,0.223232
+1395,34.7401,28.7852,26.7679,0.131104,1.47104,0.008288,0.006016,0.137216,0.188096,0.188736,24.4101,0.22736
+1396,35.4571,28.2031,26.773,0.13344,1.46022,0.008224,0.006112,0.1536,0.187808,0.189024,24.4101,0.224416
+1397,35.521,28.1523,27.9033,0.134688,1.35408,0.00832,0.005568,0.137568,0.186336,0.188416,25.6591,0.229184
+1398,33.4684,29.8789,27.9338,0.13088,1.36605,0.008352,0.005824,0.137536,0.18832,0.188512,25.6757,0.232576
+1399,33.8311,29.5586,26.6746,0.14112,1.37421,0.00832,0.005568,0.137856,0.188224,0.190304,24.4064,0.222656
+1400,35.0253,28.5508,28.0177,0.144576,1.40086,0.00832,0.004928,0.138592,0.195072,0.190464,25.69,0.244832
+1401,33.4466,29.8984,26.9445,0.159744,1.61587,0.009504,0.004832,0.141312,0.187424,0.189024,24.4125,0.224288
+1402,31.2424,32.0078,27.218,0.131232,1.48291,0.008192,0.016352,0.141344,0.188416,0.188448,24.8337,0.227456
+1403,39.9314,25.043,28.7995,0.129536,1.41718,0.009216,0.00512,0.141312,0.187872,0.1888,26.4989,0.221504
+1404,32.6822,30.5977,26.8802,0.130976,1.58096,0.008352,0.005728,0.138944,0.189344,0.190272,24.4124,0.223232
+1405,34.2155,29.2266,26.7601,0.135264,1.46102,0.018336,0.005696,0.143904,0.190496,0.190464,24.3916,0.223232
+1406,35.9097,27.8477,28.0915,0.132608,1.44845,0.008192,0.005952,0.14128,0.190688,0.19456,25.7372,0.232544
+1407,33.028,30.2773,26.7308,0.129632,1.43894,0.008288,0.0048,0.139072,0.186592,0.188384,24.4079,0.2272
+1408,33.3637,29.9727,28.2624,0.131008,1.71834,0.008192,0.005728,0.143424,0.18672,0.188416,25.6573,0.223264
+1409,34.188,29.25,26.634,0.129632,1.34326,0.008192,0.005856,0.139552,0.187424,0.189408,24.4078,0.222848
+1410,36.462,27.4258,26.7573,0.129696,1.46202,0.008256,0.00608,0.137216,0.18944,0.189344,24.4122,0.22304
+1411,35.6298,28.0664,28.8266,0.128448,1.40512,0.008288,0.005664,0.137824,0.188576,0.191744,26.5367,0.224256
+1412,32.8838,30.4102,26.7407,0.13312,1.43152,0.008224,0.00576,0.137056,0.188448,0.188928,24.422,0.225664
+1413,35.5407,28.1367,26.6629,0.131072,1.36602,0.008192,0.00592,0.139168,0.186688,0.188448,24.4101,0.22736
+1414,34.9822,28.5859,27.8877,0.130816,1.36272,0.008192,0.006144,0.139264,0.187808,0.188256,25.6417,0.222784
+1415,33.9253,29.4766,26.8061,0.131072,1.51555,0.008192,0.006048,0.13728,0.188416,0.18992,24.4066,0.223104
+1416,35.3738,28.2695,26.7003,0.1296,1.39878,0.00816,0.006144,0.140416,0.188736,0.188864,24.4164,0.223232
+1417,35.218,28.3945,27.9675,0.130688,1.42989,0.008288,0.006048,0.139264,0.189696,0.190208,25.6502,0.2232
+1418,33.5079,29.8438,27.1258,0.132128,1.43603,0.00832,0.00576,0.13808,0.187968,0.188384,24.8052,0.223872
+1419,35.0685,28.5156,27.5706,0.130752,1.39949,0.008416,0.005952,0.137216,0.1864,0.189952,25.2841,0.22832
+1420,34.5759,28.9219,27.8839,0.130336,1.34656,0.008224,0.006048,0.136864,0.187936,0.188544,25.6581,0.221312
+1421,34.0019,29.4102,26.6568,0.13056,1.36563,0.008544,0.0048,0.144672,0.186944,0.188416,24.4052,0.222016
+1422,35.3347,28.3008,26.7864,0.129824,1.47251,0.009312,0.005024,0.138688,0.188096,0.18896,24.4323,0.221632
+1423,35.0685,28.5156,29.0764,0.12992,1.71126,0.00832,0.004864,0.139232,0.188416,0.190464,26.4806,0.223232
+1424,32.8922,30.4023,26.746,0.134816,1.43315,0.00832,0.004768,0.13904,0.187712,0.1888,24.4249,0.224544
+1425,35.2714,28.3516,26.7051,0.132832,1.40931,0.008192,0.006144,0.136288,0.18704,0.188384,24.4104,0.226464
+1426,35.1938,28.4141,27.943,0.12976,1.41923,0.008192,0.006144,0.139264,0.188448,0.189888,25.6395,0.222592
+1427,32.4667,30.8008,27.0314,0.130976,1.73475,0.008192,0.006112,0.139296,0.189888,0.190368,24.4087,0.223104
+1428,36.6605,27.2773,26.801,0.129888,1.51504,0.008352,0.00576,0.136,0.187744,0.189088,24.4058,0.223328
+1429,35.0062,28.5664,28.0492,0.131104,1.46816,0.008288,0.0056,0.138976,0.188608,0.20112,25.672,0.235328
+1430,33.6267,29.7383,26.8145,0.132608,1.50534,0.00832,0.0056,0.13808,0.188416,0.18816,24.4247,0.223264
+1431,35.6001,28.0898,27.9236,0.134656,1.37274,0.008224,0.006112,0.138816,0.186816,0.188416,25.6445,0.243264
+1432,33.3899,29.9492,27.9909,0.129952,1.44381,0.008192,0.006144,0.139264,0.187968,0.18864,25.6637,0.223232
+1433,33.3899,29.9492,26.6877,0.131328,1.39878,0.009216,0.00512,0.137216,0.188448,0.190432,24.4051,0.222144
+1434,34.0154,29.3984,27.2877,0.135168,1.58925,0.008448,0.015552,0.13984,0.190464,0.193568,24.7941,0.221344
+1435,35.9349,27.8281,27.9941,0.130848,1.49731,0.008192,0.006144,0.139008,0.187712,0.188608,25.6124,0.223872
+1436,33.6975,29.6758,26.6732,0.130976,1.37395,0.00832,0.005696,0.139136,0.189216,0.189664,24.4081,0.228128
+1437,35.1938,28.4141,26.6795,0.13056,1.38467,0.008288,0.0056,0.135328,0.188032,0.189248,24.4118,0.225952
+1438,35.9147,27.8438,27.9736,0.130496,1.38915,0.008288,0.006048,0.136544,0.18704,0.188416,25.7044,0.2232
+1439,32.4873,30.7812,27.0656,0.130496,1.76512,0.008448,0.012864,0.137216,0.194592,0.190048,24.4041,0.22272
+1440,36.2966,27.5508,26.7101,0.131072,1.39194,0.00832,0.004768,0.139168,0.188416,0.190464,24.4326,0.223328
+1441,35.2132,28.3984,28.013,0.130496,1.40163,0.008192,0.005952,0.150784,0.189408,0.200608,25.7025,0.223424
+1442,34.1926,29.2461,26.6609,0.13312,1.35072,0.008384,0.00496,0.141152,0.186432,0.18976,24.4211,0.22528
+1443,35.3201,28.3125,27.976,0.132064,1.42541,0.008192,0.00608,0.139328,0.18656,0.189504,25.6612,0.22768
+1444,33.9343,29.4688,27.9409,0.130944,1.41453,0.00832,0.005792,0.135488,0.18704,0.188416,25.6471,0.223232
+1445,34.4086,29.0625,26.751,0.131072,1.44922,0.00832,0.004768,0.143328,0.190496,0.188416,24.4101,0.22528
+1446,34.8015,28.7344,26.7266,0.141312,1.42675,0.008352,0.004736,0.139168,0.188416,0.190464,24.4058,0.221568
+1447,35.5062,28.1641,28.0616,0.141184,1.50944,0.008288,0.0056,0.13568,0.188416,0.190464,25.6594,0.223072
+1448,33.6002,29.7617,26.733,0.131552,1.42131,0.008224,0.006112,0.137216,0.187744,0.188416,24.4272,0.22528
+1449,35.8493,27.8945,26.6636,0.133056,1.37926,0.00816,0.006144,0.139264,0.187936,0.188192,24.3975,0.224
+1450,35.7842,27.9453,27.9148,0.131968,1.37373,0.00832,0.005728,0.136992,0.187552,0.189472,25.6538,0.227264
+1451,34.1607,29.2734,27.8874,0.13104,1.35334,0.008352,0.005632,0.135936,0.187392,0.188416,25.6556,0.221696
+1452,33.8088,29.5781,26.868,0.130624,1.5463,0.018944,0.005696,0.13984,0.196288,0.188576,24.4205,0.221216
+1453,35.1166,28.4766,28.1377,0.130816,1.58163,0.009504,0.004832,0.140512,0.188544,0.190464,25.6683,0.223104
+1454,33.2986,30.0312,26.7305,0.13088,1.42349,0.008256,0.005696,0.139712,0.190464,0.189536,24.4192,0.223232
+1455,34.7448,28.7812,27.7938,0.131424,1.44784,0.008288,0.0056,0.139808,0.188288,0.188544,25.1166,0.567392
+1456,35.3689,28.2734,28.0945,0.13328,1.47434,0.008256,0.005632,0.137728,0.193664,0.202976,25.7145,0.224192
+1457,33.7775,29.6055,26.7415,0.129824,1.46432,0.008288,0.006048,0.137056,0.186528,0.189824,24.3978,0.221824
+1458,35.6149,28.0781,26.7116,0.130816,1.37651,0.008192,0.006176,0.141184,0.188,0.212576,24.425,0.2232
+1459,33.4116,29.9297,28.0433,0.131072,1.51142,0.008192,0.005824,0.139584,0.18768,0.189184,25.6481,0.222208
+1460,35.4031,28.2461,26.681,0.131072,1.37834,0.00816,0.006144,0.141152,0.190624,0.190112,24.4125,0.22288
+1461,35.5506,28.1289,26.6992,0.131168,1.38579,0.00832,0.0048,0.140192,0.190464,0.189056,24.4248,0.224576
+1462,35.462,28.1992,27.9205,0.131104,1.37475,0.008192,0.005824,0.136928,0.18848,0.188256,25.662,0.22496
+1463,33.9163,29.4844,27.8755,0.129664,1.35773,0.008192,0.006144,0.135168,0.188416,0.188416,25.6385,0.223264
+1464,33.7954,29.5898,26.7495,0.129984,1.44784,0.008192,0.006048,0.138624,0.187104,0.19456,24.4142,0.222912
+1465,34.9154,28.6406,28.1497,0.129152,1.60701,0.008288,0.0048,0.145184,0.190528,0.189664,25.652,0.223136
+1466,34.2429,29.2031,26.8378,0.130304,1.53085,0.008288,0.004928,0.13904,0.189888,0.191136,24.4204,0.22304
+1467,35.2471,28.3711,28.0011,0.129888,1.48461,0.00832,0.005664,0.137728,0.189696,0.191008,25.6307,0.223488
+1468,33.2813,30.0469,27.9994,0.130464,1.45059,0.008192,0.006144,0.139264,0.18768,0.188224,25.662,0.22688
+1469,34.632,28.875,26.7318,0.131104,1.42538,0.009312,0.005024,0.139264,0.189696,0.189216,24.4198,0.222944
+1470,35.3836,28.2617,26.7588,0.130432,1.47114,0.008192,0.00608,0.13856,0.187168,0.188384,24.406,0.22288
+1471,35.2277,28.3867,27.9517,0.130848,1.4039,0.008224,0.006112,0.137216,0.200576,0.188544,25.6532,0.223008
+1472,33.0664,30.2422,26.824,0.134656,1.52218,0.009216,0.005152,0.138528,0.190496,0.19072,24.4117,0.221312
+1473,36.2093,27.6172,26.7086,0.130752,1.42,0.008288,0.0056,0.139968,0.188416,0.191904,24.4025,0.221184
+1474,35.2617,28.3594,28.0043,0.132384,1.45882,0.008288,0.005824,0.138688,0.187264,0.188448,25.6594,0.225184
+1475,33.9973,29.4141,26.6752,0.130816,1.38003,0.008288,0.0056,0.147584,0.187296,0.189408,24.4009,0.22528
+1476,35.325,28.3086,27.9859,0.130592,1.42899,0.008352,0.004992,0.1392,0.189472,0.18736,25.6737,0.223232
+1477,33.7153,29.6602,27.9624,0.130688,1.41878,0.008256,0.004896,0.149504,0.192512,0.189504,25.6453,0.222912
+1478,32.2296,31.0273,27.1054,0.140224,1.79408,0.007296,0.00496,0.138592,0.191168,0.192,24.4147,0.222432
+1479,36.5767,27.3398,27.0235,0.131488,1.4944,0.00832,0.00464,0.140864,0.186784,0.188416,24.6435,0.225088
+1480,35.1648,28.4375,28.8604,0.132896,1.4625,0.00832,0.006016,0.137216,0.19456,0.188416,26.5011,0.229376
+1481,32.7115,30.5703,26.7853,0.129376,1.50522,0.008192,0.005824,0.137536,0.188416,0.190464,24.3972,0.223072
+1482,35.6894,28.0195,26.6597,0.129888,1.3449,0.00832,0.00576,0.13968,0.186848,0.200192,24.4209,0.223232
+1483,35.1214,28.4727,27.9883,0.129312,1.51757,0.008192,0.00592,0.135392,0.188288,0.189632,25.5928,0.221184
+1484,33.7865,29.5977,26.8513,0.131072,1.55238,0.009248,0.005088,0.139264,0.192512,0.189824,24.4097,0.222208
+1485,35.1022,28.4883,26.8186,0.1312,1.50915,0.008288,0.005632,0.137728,0.188416,0.193856,24.4026,0.241664
+1486,35.218,28.3945,27.8936,0.133216,1.36806,0.008192,0.005824,0.137312,0.187776,0.187232,25.6404,0.2256
+1487,33.9343,29.4688,26.6958,0.129312,1.39248,0.008224,0.006112,0.139104,0.186528,0.188416,24.4173,0.228352
+1488,35.1842,28.4219,28.1377,0.130656,1.53453,0.008192,0.005952,0.1456,0.187808,0.189024,25.7139,0.222016
+1489,33.4335,29.9102,28.158,0.129216,1.62797,0.008384,0.005952,0.137216,0.188416,0.190144,25.6474,0.223232
+1490,34.2888,29.1641,26.6393,0.130208,1.34042,0.00832,0.00496,0.142656,0.18832,0.192128,24.411,0.221248
+1491,35.0637,28.5195,27.8138,0.131072,1.44794,0.008192,0.006144,0.13648,0.187136,0.188416,25.135,0.573376
+1492,34.5993,28.9023,27.9102,0.135264,1.34349,0.008192,0.006144,0.136992,0.188576,0.188352,25.6692,0.233984
+1493,33.355,29.9805,26.7653,0.130592,1.46691,0.00832,0.005568,0.136128,0.187296,0.188768,24.4189,0.22288
+1494,35.8996,27.8555,26.6568,0.131072,1.35504,0.008352,0.004992,0.136928,0.188064,0.196928,24.4137,0.221728
+1495,35.4129,28.2383,27.941,0.129568,1.35987,0.024576,0.006144,0.137216,0.202752,0.188544,25.6674,0.224928
+1496,33.849,29.543,26.7332,0.129696,1.4295,0.008192,0.006144,0.140512,0.190272,0.190496,24.4167,0.221696
+1497,35.1311,28.4648,26.7276,0.132256,1.42422,0.008192,0.00608,0.142688,0.188736,0.192256,24.4108,0.222432
+1498,33.152,30.1641,28.0392,0.13216,1.4609,0.008288,0.006048,0.1416,0.187712,0.1888,25.6879,0.22576
+1499,36.0462,27.7422,27.1597,0.131072,1.49277,0.008256,0.005632,0.137312,0.186944,0.190144,24.7791,0.228512
+1500,34.8252,28.7148,27.6456,0.13104,1.43162,0.00816,0.006112,0.140672,0.18704,0.188416,25.329,0.223584
+1501,34.2109,29.2305,27.9868,0.12992,1.41011,0.00832,0.004928,0.143264,0.188256,0.19024,25.6898,0.221984
+1502,33.9883,29.4219,26.7377,0.131328,1.42794,0.008384,0.00576,0.137696,0.190272,0.192608,24.4204,0.223232
+1503,35.2471,28.3711,27.0978,0.13168,1.40416,0.008288,0.004832,0.140992,0.188704,0.190464,24.7869,0.241696
+1504,34.7307,28.793,28.0307,0.134944,1.49354,0.009216,0.00512,0.137216,0.187552,0.188384,25.646,0.228768
+1505,33.8356,29.5547,26.7938,0.13024,1.52048,0.00816,0.006144,0.137216,0.187552,0.188288,24.3906,0.225152
+1506,35.5852,28.1016,26.6713,0.130624,1.37702,0.00928,0.005056,0.139136,0.188544,0.188256,24.4035,0.229888
+1507,35.3103,28.3203,28.0119,0.131104,1.48682,0.00816,0.004128,0.137216,0.186368,0.189472,25.6458,0.22288
+1508,32.9727,30.3281,27.0313,0.131072,1.69574,0.00928,0.005056,0.139264,0.200704,0.198048,24.4289,0.223296
+1509,35.8242,27.9141,26.7718,0.135488,1.47251,0.008192,0.006112,0.139296,0.189536,0.190528,24.4084,0.22176
+1510,35.6347,28.0625,27.9917,0.131072,1.41216,0.008288,0.00496,0.145088,0.190784,0.189568,25.6865,0.22336
+1511,34.0652,29.3555,26.6426,0.133248,1.35373,0.008416,0.00592,0.138752,0.18624,0.188992,24.4033,0.224
+1512,35.0829,28.5039,28.0169,0.131744,1.4113,0.00816,0.006144,0.137216,0.187936,0.201184,25.7085,0.224704
+1513,33.7731,29.6094,27.9489,0.131072,1.40902,0.008416,0.005952,0.137184,0.202752,0.188608,25.6428,0.223104
+1514,34.4595,29.0195,26.6591,0.13088,1.36902,0.008032,0.00576,0.135456,0.18864,0.189568,24.409,0.222752
+1515,35.1359,28.4609,26.7571,0.13056,1.47712,0.008192,0.005728,0.137632,0.188448,0.190432,24.3974,0.2216
+1516,34.8157,28.7227,28.0492,0.145408,1.47866,0.008192,0.006144,0.1408,0.188928,0.19152,25.658,0.231616
+1517,34.8442,28.6992,26.6548,0.132768,1.36227,0.008192,0.00576,0.139648,0.187744,0.18864,24.406,0.223744
+1518,35.6149,28.0781,26.6895,0.134048,1.39469,0.008192,0.005792,0.137568,0.187936,0.188416,24.4085,0.224288
+1519,34.4317,29.043,28.0522,0.131808,1.53088,0.00832,0.004992,0.139008,0.186624,0.188416,25.6403,0.221888
+1520,34.4921,28.9922,26.811,0.130784,1.52259,0.008288,0.006048,0.141056,0.188352,0.188352,24.4023,0.223232
+1521,35.3884,28.2578,26.7756,0.12912,1.49424,0.008256,0.0048,0.141312,0.188416,0.19456,24.3931,0.221856
+1522,34.2292,29.2148,27.9998,0.130176,1.48979,0.008288,0.00608,0.137184,0.188416,0.188448,25.6286,0.222848
+1523,34.7166,28.8047,27.1789,0.13136,1.50045,0.008352,0.0048,0.14096,0.190304,0.19088,24.789,0.222848
+1524,34.6978,28.8203,26.7764,0.131104,1.4671,0.008192,0.006144,0.139264,0.188416,0.188416,24.4237,0.224032
+1525,35.6248,28.0703,27.8706,0.132384,1.35584,0.008288,0.004704,0.140288,0.1872,0.188576,25.6278,0.225472
+1526,34.0335,29.3828,26.6658,0.129888,1.35171,0.00816,0.00592,0.13744,0.188192,0.18832,24.4283,0.227904
+1527,35.0685,28.5156,28.0166,0.130912,1.46858,0.008192,0.005984,0.136992,0.186752,0.188416,25.6686,0.222176
+1528,33.9253,29.4766,27.99,0.130688,1.46061,0.008192,0.006112,0.139296,0.188416,0.18992,25.6448,0.221984
+1529,33.8804,29.5156,26.667,0.130272,1.37914,0.008384,0.005952,0.139264,0.1896,0.18928,24.4039,0.221248
+1530,35.364,28.2773,26.7121,0.132448,1.40355,0.008192,0.00592,0.13744,0.190464,0.19008,24.4161,0.22784
+1531,35.2763,28.3477,28.0016,0.133056,1.49309,0.008192,0.006112,0.137216,0.18832,0.188512,25.6205,0.226624
+1532,33.7642,29.6172,26.7878,0.130016,1.49594,0.008416,0.004928,0.14096,0.187744,0.187392,24.4019,0.23056
+1533,35.2569,28.3633,26.6885,0.130016,1.39658,0.008288,0.005632,0.135744,0.188416,0.188416,24.4097,0.225696
+1534,35.3055,28.3242,27.9636,0.129568,1.42336,0.008192,0.005888,0.138688,0.187232,0.188384,25.6594,0.222912
+1535,33.8624,29.5312,27.1554,0.130016,1.46957,0.008416,0.004832,0.14048,0.188128,0.18944,24.8013,0.223232
diff --git a/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_2000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_2000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..26cb68c
--- /dev/null
+++ b/profile/Vis_0/BinSearchComp/CIS565Proj1,Boid_2000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,34.7328,28.8117,27.2427,0.131276,1.44989,0.00901469,0.00613306,0.0538176,0.190726,0.190362,24.9862,0.225268
+max_1024,38.0443,31.9473,29.3254,0.151552,2.93824,0.069632,0.022432,0.072224,0.556832,0.239968,26.8943,0.554208
+min_1024,31.3016,26.2852,26.5248,0.127104,1.31517,0.00656,0.004096,0.051776,0.185216,0.186656,24.3845,0.220768
+512,36.9275,27.0801,26.6917,0.127104,1.47866,0.008256,0.00608,0.053248,0.189856,0.186976,24.4175,0.224064
+513,35.7754,27.9521,27.817,0.130784,1.36426,0.008192,0.00576,0.053632,0.186368,0.188448,25.6565,0.223104
+514,34.1424,29.2891,26.6367,0.130496,1.39363,0.008192,0.006144,0.053248,0.188416,0.188416,24.4444,0.223808
+515,35.2241,28.3896,27.7023,0.129504,1.6369,0.008384,0.005984,0.053216,0.187808,0.189056,25.2682,0.223232
+516,34.3751,29.0908,27.8998,0.130272,1.4303,0.009376,0.006176,0.053376,0.191168,0.189792,25.6662,0.223168
+517,33.8692,29.5254,26.7225,0.13328,1.48685,0.008192,0.005984,0.053024,0.186464,0.188704,24.4345,0.22544
+518,35.6558,28.0459,27.0308,0.135168,1.41312,0.008192,0.006144,0.05328,0.187968,0.188832,24.8115,0.22656
+519,34.5689,28.9277,28.3996,0.13088,1.94339,0.008352,0.005632,0.056,0.186368,0.189568,25.6577,0.22176
+520,33.9298,29.4727,26.6714,0.12928,1.42336,0.008288,0.006048,0.053248,0.187872,0.18848,24.453,0.221792
+521,35.4952,28.1729,26.6589,0.131328,1.42666,0.008352,0.004736,0.054464,0.186752,0.188864,24.4326,0.225152
+522,35.6323,28.0645,27.8435,0.130016,1.37418,0.008192,0.006144,0.053248,0.18944,0.197056,25.6631,0.222112
+523,34.1983,29.2412,26.5824,0.131072,1.34963,0.008192,0.006144,0.053248,0.18976,0.18912,24.4326,0.222592
+524,34.1629,29.2715,26.7268,0.131488,1.47043,0.008224,0.006016,0.053216,0.188608,0.18944,24.4377,0.241664
+525,36.574,27.3418,27.9033,0.131104,1.43325,0.008384,0.0136,0.05328,0.186848,0.188192,25.6641,0.224576
+526,34.2223,29.2207,27.0022,0.129088,1.38029,0.008192,0.006176,0.053184,0.1864,0.189472,24.8202,0.229216
+527,34.2383,29.207,27.3081,0.129504,2.08006,0.008352,0.00464,0.053248,0.1864,0.188384,24.4347,0.22288
+528,35.473,28.1904,27.8784,0.130048,1.38237,0.008192,0.021536,0.052192,0.188352,0.196672,25.677,0.222048
+529,34.0098,29.4033,26.6977,0.129056,1.47862,0.008192,0.005728,0.05312,0.187968,0.189408,24.424,0.221664
+530,35.7205,27.9951,27.8589,0.145408,1.37626,0.00928,0.005088,0.053216,0.189696,0.1904,25.6559,0.233696
+531,34.2292,29.2148,27.8323,0.13104,1.3681,0.008224,0.006112,0.053248,0.187424,0.187456,25.6671,0.223648
+532,33.6765,29.6943,26.7901,0.130752,1.54038,0.008448,0.005824,0.053248,0.186688,0.188416,24.4487,0.22768
+533,35.2217,28.3916,26.5955,0.130944,1.3559,0.008192,0.00576,0.053248,0.190848,0.19456,24.4276,0.228512
+534,36.217,27.6113,27.8344,0.130912,1.36186,0.008352,0.005568,0.053184,0.186912,0.188512,25.6773,0.22176
+535,34.1333,29.2969,26.6026,0.130816,1.36832,0.008192,0.006144,0.053248,0.202368,0.188448,24.4228,0.222304
+536,35.4117,28.2393,26.6211,0.129056,1.38144,0.008384,0.00608,0.052,0.188416,0.188384,24.4445,0.222848
+537,35.5395,28.1377,27.9117,0.130688,1.44627,0.008192,0.005856,0.053216,0.186688,0.18976,25.6697,0.221408
+538,34.1163,29.3115,26.6732,0.131072,1.41517,0.009344,0.00512,0.05424,0.189344,0.191488,24.4552,0.222144
+539,35.4031,28.2461,27.5499,0.133664,1.47597,0.008384,0.005568,0.052224,0.189568,0.189312,25.2719,0.223264
+540,33.8132,29.5742,27.9648,0.13312,1.4889,0.008192,0.006144,0.053216,0.1864,0.188384,25.6736,0.226848
+541,34.7507,28.7764,26.6179,0.12912,1.37571,0.008384,0.0056,0.05312,0.1864,0.188352,24.4434,0.227744
+542,35.5951,28.0938,27.0133,0.129216,1.40288,0.008192,0.006144,0.05328,0.188256,0.188576,24.8135,0.223232
+543,34.6555,28.8555,27.9449,0.129024,1.47866,0.009312,0.014624,0.053664,0.200224,0.188704,25.6492,0.221504
+544,33.8692,29.5254,26.6463,0.137408,1.39725,0.008224,0.006112,0.053248,0.188416,0.192512,24.4388,0.22432
+545,35.1818,28.4238,26.724,0.13104,1.49197,0.00848,0.0048,0.054656,0.189056,0.189792,24.4308,0.223456
+546,35.189,28.418,28.0209,0.131168,1.52992,0.008384,0.005888,0.052992,0.188704,0.188288,25.692,0.223552
+547,33.0739,30.2354,26.7623,0.131104,1.52349,0.020672,0.005728,0.053088,0.194112,0.18928,24.4163,0.228512
+548,36.2953,27.5518,26.6992,0.130176,1.43859,0.008192,0.00608,0.053152,0.192672,0.189504,24.4535,0.227296
+549,34.5316,28.959,28.0035,0.140544,1.52573,0.008352,0.012928,0.053248,0.186368,0.188416,25.6653,0.222528
+550,34.3003,29.1543,26.7157,0.129024,1.47018,0.008352,0.005888,0.053408,0.18864,0.188448,24.449,0.222784
+551,33.4848,29.8643,27.8475,0.129888,1.37421,0.00928,0.005056,0.069632,0.188448,0.190432,25.6585,0.222112
+552,36.5976,27.3242,27.7863,0.131072,1.3353,0.007648,0.005856,0.052032,0.189952,0.198432,25.6417,0.22432
+553,33.968,29.4395,26.7387,0.131104,1.48886,0.008192,0.00592,0.054976,0.186912,0.188416,24.4504,0.223904
+554,35.0541,28.5273,27.999,0.130016,1.54365,0.008512,0.005888,0.053216,0.20112,0.18848,25.645,0.223104
+555,34.4595,29.0195,27.8395,0.130048,1.37373,0.008352,0.0056,0.05216,0.18768,0.189024,25.6696,0.223232
+556,34.2257,29.2178,26.6199,0.131072,1.37424,0.00816,0.006144,0.053248,0.188416,0.188416,24.447,0.223232
+557,35.2035,28.4062,26.5905,0.129024,1.35776,0.008256,0.005728,0.053184,0.187968,0.189344,24.4358,0.223392
+558,35.998,27.7793,27.8467,0.130432,1.38304,0.009344,0.005088,0.05328,0.189312,0.19072,25.653,0.232416
+559,34.1995,29.2402,27.7996,0.131328,1.35757,0.008192,0.005888,0.053504,0.18832,0.188512,25.643,0.223232
+560,33.9703,29.4375,26.5923,0.131072,1.33715,0.008384,0.005888,0.053216,0.20304,0.192544,24.4347,0.226336
+561,35.0133,28.5605,27.9994,0.129184,1.53155,0.008352,0.0056,0.052896,0.186432,0.196672,25.6655,0.223136
+562,34.2475,29.1992,26.6732,0.131072,1.41926,0.008192,0.006176,0.053216,0.190464,0.203808,24.4377,0.223232
+563,35.2739,28.3496,26.6517,0.13856,1.42202,0.008064,0.005632,0.053344,0.186944,0.189504,24.4233,0.224288
+564,35.6223,28.0723,27.8494,0.129728,1.40224,0.008352,0.005856,0.053184,0.187168,0.188416,25.6512,0.223232
+565,34.0086,29.4043,26.7039,0.13024,1.47699,0.008384,0.005568,0.053056,0.18944,0.190464,24.4282,0.221568
+566,35.3933,28.2539,26.7203,0.132192,1.47344,0.008224,0.005888,0.052672,0.19072,0.188192,24.4457,0.223232
+567,35.5704,28.1133,27.8356,0.13104,1.38845,0.008352,0.005632,0.052992,0.186592,0.188544,25.6477,0.226336
+568,33.8222,29.5664,27.0349,0.130592,1.40336,0.008192,0.006144,0.05328,0.188032,0.18784,24.8288,0.22864
+569,33.8311,29.5586,27.4725,0.129728,2.24867,0.008192,0.00608,0.053312,0.186368,0.188416,24.4285,0.223232
+570,35.8996,27.8555,27.8798,0.129408,1.39466,0.008384,0.005952,0.053248,0.188064,0.204256,25.6726,0.223232
+571,33.8893,29.5078,26.7001,0.129824,1.47466,0.008192,0.006144,0.053216,0.188448,0.189856,24.4266,0.223136
+572,35.4767,28.1875,26.7193,0.131104,1.47661,0.008192,0.007488,0.053152,0.189216,0.192288,24.4384,0.222784
+573,35.5038,28.166,28.7465,0.127552,1.48835,0.008416,0.004704,0.054592,0.189088,0.189472,26.4602,0.224128
+574,33.1499,30.166,26.6875,0.131072,1.4377,0.008416,0.00592,0.054336,0.187328,0.188032,24.4412,0.233472
+575,35.4276,28.2266,26.7267,0.129312,1.48275,0.008192,0.006144,0.059328,0.186304,0.194688,24.4303,0.229632
+576,34.3601,29.1035,28.3177,0.130112,1.79706,0.009216,0.01536,0.052896,0.186688,0.18816,25.6884,0.249856
+577,34.4109,29.0605,26.6466,0.12912,1.39878,0.008416,0.00592,0.053248,0.188416,0.190496,24.449,0.223232
+578,35.3006,28.3281,26.7102,0.130528,1.4385,0.008192,0.006144,0.06672,0.18928,0.202752,24.4446,0.223456
+579,35.4571,28.2031,27.9073,0.13104,1.43069,0.008352,0.004736,0.054752,0.18864,0.190784,25.6614,0.236864
+580,33.7709,29.6113,26.6715,0.131968,1.44179,0.00832,0.006016,0.053248,0.188224,0.194784,24.4224,0.2248
+581,35.7842,27.9453,27.8483,0.13328,1.38416,0.008448,0.005632,0.05312,0.186272,0.188288,25.6623,0.226752
+582,34.1151,29.3125,27.853,0.143488,1.38458,0.008384,0.005856,0.053056,0.187008,0.188416,25.6606,0.221568
+583,34.0675,29.3535,26.6178,0.129536,1.37418,0.008384,0.005952,0.053248,0.2008,0.190368,24.4306,0.224736
+584,35.1479,28.4512,27.9532,0.130272,1.49187,0.00832,0.005984,0.053248,0.188256,0.188576,25.6635,0.223232
+585,33.8333,29.5566,27.8886,0.129984,1.43974,0.008192,0.006144,0.053248,0.188416,0.189888,25.6514,0.2216
+586,34.0493,29.3691,26.7389,0.133152,1.48861,0.008384,0.005856,0.0536,0.18768,0.187296,24.4485,0.225856
+587,35.6422,28.0566,26.6343,0.133344,1.41296,0.008384,0.0056,0.053152,0.186272,0.189216,24.4204,0.225024
+588,35.3055,28.3242,27.9005,0.129568,1.44179,0.008192,0.006048,0.053344,0.187712,0.188128,25.6624,0.223264
+589,34.0584,29.3613,26.6242,0.129184,1.39469,0.008192,0.005856,0.053536,0.187648,0.18864,24.4343,0.222112
+590,35.3909,28.2559,26.6754,0.129184,1.41926,0.009312,0.005088,0.053248,0.199968,0.191136,24.4449,0.223232
+591,35.0325,28.5449,27.8731,0.129632,1.41517,0.009504,0.004864,0.053248,0.188384,0.190464,25.6594,0.222432
+592,34.5782,28.9199,26.7633,0.130464,1.5056,0.008352,0.005568,0.053472,0.190976,0.19248,24.4527,0.223648
+593,35.4546,28.2051,27.4211,0.12736,1.35373,0.008192,0.005984,0.053152,0.188672,0.189984,25.2708,0.223232
+594,34.5829,28.916,27.9453,0.131584,1.47251,0.008192,0.006144,0.053184,0.186496,0.190112,25.6699,0.2272
+595,34.0516,29.3672,26.6131,0.131072,1.35987,0.008192,0.005888,0.053504,0.186368,0.189696,24.4436,0.234848
+596,34.7472,28.7793,26.7571,0.130624,1.49958,0.008288,0.022432,0.053152,0.186464,0.188448,24.444,0.224096
+597,35.5753,28.1094,29.0528,0.129024,1.40493,0.00832,0.006016,0.053248,0.1864,0.189728,26.852,0.223072
+598,32.032,31.2188,27.0278,0.130016,1.76131,0.008192,0.006112,0.053248,0.19216,0.203104,24.449,0.22464
+599,35.8343,27.9062,26.5769,0.131104,1.35158,0.008256,0.005792,0.053344,0.186624,0.18992,24.416,0.234304
+600,35.1914,28.416,27.8774,0.13312,1.41312,0.008224,0.006112,0.053248,0.188416,0.188416,25.6614,0.225344
+601,34.0992,29.3262,26.6863,0.129856,1.44346,0.008384,0.005632,0.052064,0.188128,0.188544,24.4404,0.22976
+602,35.0565,28.5254,26.667,0.129824,1.40614,0.017216,0.006176,0.053088,0.198784,0.197696,24.4275,0.230592
+603,35.8543,27.8906,27.8344,0.129184,1.37178,0.008352,0.0056,0.05312,0.187104,0.188416,25.669,0.221792
+604,34.1652,29.2695,27.8505,0.130944,1.38573,0.008384,0.005856,0.05344,0.188448,0.18864,25.6661,0.223008
+605,34.0629,29.3574,26.6097,0.130528,1.40883,0.008352,0.004736,0.053184,0.191712,0.189216,24.4013,0.22176
+606,35.4031,28.2461,27.8938,0.131136,1.40493,0.008192,0.006144,0.053248,0.190464,0.190496,25.6839,0.22528
+607,34.188,29.25,26.6541,0.131072,1.44554,0.007968,0.004672,0.054432,0.186752,0.188896,24.4101,0.224672
+608,35.5383,28.1387,27.0203,0.131072,1.38035,0.008192,0.00608,0.053088,0.187808,0.187232,24.84,0.226496
+609,34.441,29.0352,28.4076,0.129696,1.99469,0.008256,0.005696,0.055744,0.1864,0.18944,25.6133,0.224384
+610,34.0154,29.3984,26.6097,0.131072,1.37622,0.008256,0.005696,0.053344,0.188672,0.18848,24.4347,0.223232
+611,35.7317,27.9863,26.5962,0.129856,1.37158,0.00864,0.0056,0.05312,0.187168,0.190624,24.4276,0.222016
+612,35.4227,28.2305,27.9012,0.130464,1.42986,0.008384,0.005824,0.053152,0.188512,0.1888,25.6737,0.222496
+613,33.7241,29.6523,26.7837,0.131072,1.53357,0.008576,0.005664,0.05344,0.18784,0.188704,24.4324,0.242464
+614,34.7873,28.7461,26.6383,0.131104,1.40899,0.008192,0.006144,0.053248,0.188416,0.188416,24.4285,0.22528
+615,36.0462,27.7422,28.0103,0.133408,1.55821,0.008352,0.0056,0.052928,0.18544,0.188384,25.649,0.22896
+616,33.95,29.4551,27.9369,0.129152,1.48682,0.009248,0.005088,0.053248,0.188416,0.188416,25.6551,0.22144
+617,34.0584,29.3613,26.6355,0.130496,1.40704,0.008384,0.004416,0.053248,0.187936,0.19024,24.4308,0.222944
+618,35.6496,28.0508,27.8997,0.129344,1.40906,0.00816,0.006144,0.053248,0.188416,0.188128,25.6945,0.222688
+619,33.8826,29.5137,26.7244,0.130528,1.50506,0.016928,0.0056,0.053344,0.190528,0.188672,24.4105,0.223232
+620,35.6919,28.0176,26.6325,0.131392,1.39472,0.00816,0.006144,0.05328,0.189824,0.1928,24.4326,0.223584
+621,35.5827,28.1035,28.6564,0.129888,1.39674,0.008448,0.005888,0.053248,0.188416,0.190336,26.4541,0.229312
+622,33.2792,30.0488,26.6293,0.129088,1.39043,0.008352,0.005856,0.053344,0.18656,0.189632,24.4355,0.23056
+623,35.7043,28.0078,26.6102,0.129568,1.3737,0.00832,0.0056,0.052128,0.18784,0.188736,24.439,0.22528
+624,35.7442,27.9766,27.8132,0.129024,1.3495,0.00832,0.005952,0.052992,0.186816,0.188256,25.6698,0.222592
+625,34.0335,29.3828,26.5978,0.129472,1.37174,0.008512,0.0056,0.05344,0.190912,0.188416,24.4265,0.223232
+626,35.6521,28.0488,26.6353,0.129792,1.40416,0.008352,0.00512,0.054176,0.187424,0.18832,24.4265,0.231424
+627,35.7342,27.9844,27.8352,0.12992,1.39059,0.00816,0.006144,0.052992,0.18768,0.190688,25.6475,0.2216
+628,33.2705,30.0566,26.8694,0.130624,1.61018,0.00928,0.005088,0.065408,0.198752,0.191968,24.4352,0.22288
+629,36.1327,27.6758,27.8089,0.13072,1.37677,0.008192,0.005824,0.052896,0.188192,0.18896,25.6331,0.224256
+630,34.1151,29.3125,27.8426,0.132288,1.37082,0.00832,0.005952,0.053216,0.186592,0.188416,25.6676,0.229376
+631,33.8199,29.5684,26.6697,0.129696,1.44528,0.008384,0.005568,0.052192,0.188,0.188448,24.4289,0.223232
+632,35.6347,28.0625,26.6056,0.13024,1.3648,0.008192,0.006144,0.053248,0.187968,0.1888,24.4429,0.223232
+633,35.4325,28.2227,27.8933,0.130912,1.41942,0.008224,0.005888,0.053472,0.198304,0.188768,25.6652,0.223136
+634,33.9365,29.4668,26.6853,0.145632,1.43939,0.008384,0.005856,0.05344,0.188704,0.192096,24.4286,0.223136
+635,34.5339,28.957,26.665,0.130784,1.44355,0.008416,0.0056,0.0536,0.190016,0.191456,24.4194,0.222144
+636,35.9727,27.7988,27.9288,0.130816,1.45843,0.008384,0.005856,0.053216,0.190816,0.188416,25.667,0.225856
+637,33.8222,29.5664,27.1191,0.134368,1.49376,0.008224,0.005792,0.052864,0.186176,0.189344,24.8218,0.226784
+638,34.6625,28.8496,27.21,0.129376,1.97952,0.008384,0.00592,0.056096,0.187808,0.188896,24.4307,0.223264
+639,34.7779,28.7539,28.0277,0.129888,1.52586,0.008096,0.006144,0.052544,0.191168,0.19024,25.7006,0.223232
+640,34.1766,29.2598,26.6486,0.129312,1.42874,0.008448,0.005856,0.053216,0.188928,0.188736,24.4215,0.223808
+641,34.8276,28.7129,27.9122,0.13872,1.44029,0.009248,0.005088,0.053248,0.190464,0.190464,25.6615,0.2232
+642,33.7442,29.6348,28.0105,0.133152,1.46634,0.008352,0.005984,0.053248,0.188416,0.188352,25.7373,0.229376
+643,34.122,29.3066,26.6565,0.130592,1.43994,0.008384,0.0056,0.052992,0.187264,0.188416,24.4163,0.22704
+644,35.2884,28.3379,26.7416,0.129856,1.51552,0.008192,0.006144,0.053248,0.188416,0.188416,24.4285,0.223264
+645,35.4227,28.2305,27.9136,0.129376,1.46227,0.008192,0.006048,0.053248,0.186208,0.192768,25.6532,0.22224
+646,33.941,29.4629,26.6964,0.129824,1.45613,0.008192,0.006144,0.053248,0.188416,0.190208,24.4403,0.223872
+647,35.605,28.0859,26.6044,0.139488,1.38512,0.008192,0.005856,0.053248,0.188192,0.190976,24.41,0.223296
+648,34.4781,29.0039,27.8956,0.131072,1.42541,0.009216,0.005152,0.053312,0.190368,0.192512,25.6635,0.225024
+649,33.6311,29.7344,27.0991,0.132128,1.50131,0.008544,0.00464,0.053216,0.186368,0.188416,24.7992,0.22528
+650,36.2298,27.6016,27.4161,0.130816,1.4441,0.009408,0.015168,0.053248,0.474624,0.239968,24.8199,0.228864
+651,34.9417,28.6191,27.8333,0.130016,1.39059,0.008192,0.00608,0.053216,0.186464,0.188416,25.6483,0.222112
+652,33.9883,29.4219,26.5913,0.129376,1.36806,0.008192,0.006176,0.053376,0.188288,0.188416,24.4244,0.225024
+653,35.7867,27.9434,26.6023,0.129856,1.38646,0.008416,0.00592,0.053248,0.187456,0.187328,24.4217,0.221888
+654,34.7001,28.8184,28.1479,0.12928,1.67936,0.008352,0.006016,0.053216,0.19248,0.189664,25.6664,0.223168
+655,33.7597,29.6211,26.6816,0.131392,1.44509,0.008352,0.005792,0.052384,0.191648,0.191136,24.4323,0.22352
+656,35.8594,27.8867,26.6015,0.131072,1.36704,0.008448,0.005088,0.054944,0.186528,0.188384,24.4347,0.22528
+657,35.5457,28.1328,27.8314,0.13312,1.38835,0.008352,0.005632,0.053568,0.186592,0.188416,25.6406,0.226784
+658,34.1333,29.2969,26.6143,0.1296,1.37782,0.008352,0.005856,0.053216,0.18688,0.188064,24.4351,0.22944
+659,35.4301,28.2246,26.6616,0.12976,1.45206,0.008192,0.006112,0.052864,0.186752,0.188448,24.4075,0.229888
+660,35.677,28.0293,27.8262,0.129184,1.37117,0.008352,0.00512,0.053056,0.188416,0.188416,25.6594,0.223136
+661,33.9951,29.416,27.857,0.129408,1.39891,0.00928,0.005088,0.053216,0.188192,0.188672,25.6614,0.222816
+662,33.968,29.4395,26.668,0.130144,1.42192,0.008512,0.005888,0.053504,0.191776,0.189152,24.4441,0.223008
+663,35.6372,28.0605,27.8589,0.131072,1.41277,0.008416,0.0056,0.051872,0.190464,0.190464,25.6447,0.223584
+664,34.2406,29.2051,26.6221,0.131104,1.38618,0.008384,0.005888,0.053536,0.188512,0.188416,24.4347,0.225408
+665,35.7043,28.0078,26.6138,0.1352,1.38013,0.008384,0.0056,0.053248,0.186304,0.189024,24.4306,0.22528
+666,35.7018,28.0098,29.0435,0.129824,1.39872,0.008224,0.005888,0.053376,0.187616,0.189056,26.8494,0.221376
+667,32.0983,31.1543,26.6039,0.129344,1.37626,0.008224,0.005728,0.05328,0.188448,0.188736,24.4302,0.22368
+668,36.3249,27.5293,26.6465,0.130272,1.42595,0.007616,0.00512,0.053056,0.189632,0.18928,24.4224,0.223232
+669,35.16,28.4414,27.8427,0.12976,1.42122,0.008288,0.005696,0.05328,0.188832,0.190464,25.6226,0.222592
+670,33.1327,30.1816,28.5512,0.131072,1.52781,0.008384,0.005984,0.053216,0.188416,0.1896,26.2192,0.227552
+671,33.5057,29.8457,27.3838,0.13088,2.15469,0.008192,0.006176,0.053216,0.186368,0.188416,24.4296,0.22624
+672,34.4781,29.0039,28.2684,0.12992,1.79405,0.008192,0.015712,0.05312,0.19296,0.206592,25.6457,0.22224
+673,34.5316,28.959,27.8775,0.130048,1.35123,0.008352,0.0056,0.053216,0.187232,0.191552,25.7279,0.222304
+674,34.2315,29.2129,26.5892,0.131104,1.33834,0.008384,0.00512,0.054112,0.189312,0.188544,24.4399,0.2344
+675,34.441,29.0352,27.8108,0.131072,1.32448,0.008352,0.0056,0.05216,0.198688,0.192352,25.6739,0.224288
+676,34.856,28.6895,26.6554,0.129696,1.4271,0.008352,0.005856,0.053312,0.186784,0.188128,24.4279,0.228256
+677,34.7708,28.7598,26.6327,0.129824,1.41264,0.008416,0.0056,0.062208,0.186368,0.188416,24.4142,0.224992
+678,34.9417,28.6191,28.0811,0.132032,1.6097,0.008192,0.006176,0.056864,0.187872,0.18736,25.6696,0.223232
+679,33.9523,29.4531,26.8506,0.13056,1.62048,0.008224,0.014304,0.06272,0.187168,0.190464,24.4134,0.223296
+680,35.563,28.1191,26.6429,0.129536,1.41446,0.008352,0.005824,0.053408,0.190432,0.19104,24.4267,0.223232
+681,35.5013,28.168,27.7755,0.129504,1.33648,0.008352,0.0048,0.0544,0.190592,0.195328,25.6322,0.223776
+682,33.9748,29.4336,26.6936,0.133664,1.41926,0.018656,0.00592,0.053248,0.188288,0.200832,24.4483,0.225504
+683,35.5284,28.1465,26.5855,0.131648,1.3776,0.008416,0.0056,0.052224,0.1864,0.188384,24.4097,0.225568
+684,35.5432,28.1348,27.7996,0.130976,1.35178,0.008224,0.006016,0.053344,0.188416,0.189568,25.6472,0.224032
+685,33.4466,29.8984,26.9292,0.130656,1.71613,0.008256,0.005632,0.053248,0.187328,0.188416,24.4178,0.221696
+686,33.6776,29.6934,27.9265,0.129024,1.45613,0.00736,0.018624,0.053888,0.194592,0.188384,25.6564,0.222112
+687,36.0082,27.7715,27.8915,0.141344,1.43875,0.008544,0.004704,0.054304,0.18736,0.192288,25.6204,0.243712
+688,34.275,29.1758,26.5789,0.132672,1.3416,0.008352,0.005856,0.053152,0.188064,0.188256,24.4372,0.223744
+689,35.7118,28.002,26.5561,0.132544,1.33798,0.008192,0.006048,0.052832,0.186432,0.188864,24.4183,0.224864
+690,34.987,28.582,27.8907,0.13184,1.36832,0.009248,0.005088,0.053248,0.186368,0.198656,25.7122,0.225696
+691,33.782,29.6016,26.6568,0.129024,1.42131,0.008224,0.005856,0.06784,0.188352,0.18848,24.4242,0.223456
+692,34.3601,29.1035,26.7079,0.129632,1.4848,0.008256,0.00608,0.053248,0.188416,0.188448,24.4256,0.223392
+693,36.6526,27.2832,27.9263,0.129312,1.45203,0.008416,0.005888,0.063488,0.194144,0.196544,25.6556,0.220896
+694,33.8602,29.5332,26.708,0.144768,1.46326,0.008192,0.005888,0.053504,0.188448,0.196384,24.4246,0.222912
+695,35.8267,27.9121,26.5462,0.131072,1.32486,0.008352,0.005632,0.053472,0.188736,0.190464,24.4219,0.221696
+696,35.489,28.1777,27.8876,0.130656,1.38285,0.0184,0.006144,0.053248,0.190464,0.190496,25.6917,0.223648
+697,33.9568,29.4492,26.5603,0.1336,1.33053,0.008352,0.0056,0.052224,0.192512,0.201952,24.4109,0.224608
+698,34.1926,29.2461,28.2702,0.133696,1.78941,0.016704,0.005856,0.055552,0.18672,0.190368,25.6688,0.223104
+699,33.6355,29.7305,28.1416,0.130752,1.68944,0.008384,0.005472,0.054176,0.1864,0.188416,25.6564,0.222144
+700,33.5672,29.791,26.878,0.137248,1.62797,0.008352,0.005888,0.067936,0.190368,0.190464,24.4265,0.223232
+701,36.3275,27.5273,27.8991,0.131104,1.45568,0.007904,0.006592,0.05312,0.1888,0.193696,25.6375,0.224736
+702,33.5364,29.8184,26.8329,0.13456,1.61818,0.008352,0.006048,0.05344,0.186464,0.188416,24.4122,0.22528
+703,35.3396,28.2969,26.8604,0.131904,1.64198,0.008384,0.0056,0.053408,0.186496,0.18896,24.4176,0.226048
+704,34.987,28.582,27.8898,0.129472,1.44323,0.014944,0.006144,0.053248,0.187904,0.186912,25.6446,0.223328
+705,33.5166,29.8359,26.8419,0.129248,1.59971,0.008544,0.01536,0.053632,0.195168,0.200736,24.4118,0.227648
+706,35.4301,28.2246,27.8797,0.12928,1.42736,0.008192,0.00592,0.053024,0.188736,0.188672,25.6571,0.221376
+707,33.3724,29.9648,27.9511,0.147136,1.50093,0.008352,0.005632,0.053504,0.18704,0.197984,25.6273,0.2232
+708,34.7755,28.7559,26.5932,0.131072,1.37421,0.008224,0.006048,0.059488,0.190048,0.186752,24.4122,0.225216
+709,35.4571,28.2031,27.1076,0.130048,1.48842,0.008384,0.005632,0.060128,0.200704,0.190464,24.7972,0.226688
+710,34.7025,28.8164,28.3321,0.130848,1.89805,0.008352,0.005856,0.055968,0.187712,0.19872,25.6252,0.221472
+711,33.5232,29.8301,26.6962,0.129536,1.46634,0.01824,0.005664,0.060064,0.188,0.188864,24.4163,0.223232
+712,35.7442,27.9766,26.5585,0.129024,1.3263,0.008352,0.005856,0.053376,0.189248,0.189824,24.4344,0.22208
+713,34.8086,28.7285,28.1648,0.129696,1.67907,0.008352,0.013792,0.053248,0.197312,0.191968,25.6497,0.241664
+714,33.4706,29.877,26.8189,0.131424,1.59498,0.018016,0.006272,0.061568,0.188992,0.189504,24.4049,0.223264
+715,35.5728,28.1113,26.7889,0.131232,1.5768,0.008192,0.006144,0.053248,0.1864,0.188384,24.4137,0.2248
+716,35.4423,28.2148,27.9445,0.13056,1.45699,0.008224,0.006112,0.06688,0.187072,0.189888,25.6743,0.224416
+717,33.8871,29.5098,26.6447,0.129248,1.42458,0.008352,0.004768,0.053312,0.202688,0.188352,24.4102,0.223264
+718,35.8192,27.918,27.7511,0.129632,1.39392,0.008,0.006304,0.054048,0.425024,0.197568,25.3153,0.22128
+719,33.8468,29.5449,27.8446,0.130272,1.36464,0.020576,0.005632,0.05296,0.187232,0.190464,25.6711,0.221792
+720,34.0086,29.4043,26.5685,0.133312,1.3257,0.009312,0.00512,0.054176,0.187424,0.188352,24.4406,0.224576
+721,33.0643,30.2441,27.1131,0.131264,1.48266,0.008384,0.0056,0.051936,0.196448,0.188608,24.813,0.2352
+722,36.816,27.1621,28.5144,0.130848,1.6776,0.069632,0.00608,0.057024,0.556832,0.188352,25.6048,0.2232
+723,33.609,29.7539,26.5455,0.13072,1.31517,0.008192,0.00608,0.053216,0.204416,0.188896,24.4163,0.222528
+724,35.4743,28.1895,26.5979,0.130048,1.37213,0.008352,0.005984,0.053248,0.188416,0.190208,24.4268,0.222752
+725,35.4301,28.2246,27.8539,0.129632,1.40438,0.008416,0.0048,0.053248,0.188416,0.190464,25.6529,0.221664
+726,33.9253,29.4766,26.6117,0.132128,1.3832,0.008384,0.0056,0.05344,0.188768,0.192448,24.4256,0.222112
+727,34.1424,29.2891,26.8943,0.131072,1.67677,0.008384,0.0056,0.062336,0.188448,0.189824,24.4087,0.223232
+728,33.8289,29.5605,27.8897,0.133088,1.43773,0.008064,0.005856,0.053024,0.187104,0.191744,25.6457,0.227392
+729,36.3611,27.502,27.0809,0.129184,1.4777,0.008352,0.004896,0.065056,0.192992,0.188288,24.7912,0.223232
+730,34.4665,29.0137,26.7674,0.129504,1.52989,0.008352,0.0056,0.05312,0.190464,0.203232,24.424,0.223168
+731,35.3884,28.2578,27.8978,0.130752,1.44618,0.008224,0.00576,0.052768,0.187232,0.18944,25.6543,0.223136
+732,33.8333,29.5566,26.681,0.131072,1.41312,0.014336,0.006144,0.053248,0.190464,0.192288,24.4472,0.233152
+733,35.0949,28.4941,27.8568,0.130496,1.42803,0.008192,0.006144,0.053248,0.187456,0.19056,25.6275,0.225216
+734,33.6621,29.707,28.0128,0.129792,1.5247,0.008416,0.014784,0.053184,0.18848,0.18672,25.6837,0.22304
+735,33.8535,29.5391,26.6044,0.129536,1.39315,0.008224,0.00608,0.053248,0.186368,0.188416,24.416,0.223424
+736,35.5358,28.1406,26.7141,0.130496,1.46285,0.008192,0.006144,0.063328,0.202144,0.188928,24.4298,0.22224
+737,34.9631,28.6016,27.9196,0.129248,1.4663,0.008192,0.006112,0.05312,0.186528,0.190496,25.6573,0.22224
+738,33.9725,29.4355,27.9306,0.130528,1.4711,0.008192,0.006144,0.053248,0.188192,0.190688,25.6593,0.2232
+739,33.4684,29.8789,26.6473,0.131232,1.42816,0.009472,0.004832,0.053216,0.190464,0.199808,24.4049,0.22528
+740,36.1072,27.6953,27.9572,0.13312,1.49622,0.008448,0.005888,0.053408,0.188128,0.189408,25.6532,0.229376
+741,33.6112,29.752,26.6689,0.129376,1.46419,0.008288,0.005728,0.053248,0.186688,0.188416,24.4102,0.222752
+742,34.9226,28.6348,26.7715,0.130784,1.53594,0.008416,0.005856,0.053664,0.190464,0.189696,24.4312,0.22544
+743,35.1673,28.4355,28.0371,0.130688,1.60397,0.008288,0.006048,0.053248,0.187808,0.189056,25.6348,0.223232
+744,33.7709,29.6113,26.6547,0.131072,1.41706,0.008352,0.006144,0.053248,0.200096,0.188992,24.4158,0.233952
+745,34.9966,28.5742,26.6649,0.132896,1.4543,0.008192,0.006112,0.052928,0.186464,0.18848,24.4115,0.224
+746,33.0301,30.2754,27.8893,0.131008,1.44755,0.008384,0.005824,0.05792,0.188416,0.188288,25.637,0.224928
+747,36.2504,27.5859,26.5948,0.129056,1.35782,0.008224,0.006112,0.053248,0.206816,0.190496,24.4183,0.224736
+748,35.2884,28.3379,26.5603,0.129408,1.33699,0.008352,0.005856,0.053088,0.187008,0.19456,24.4224,0.222624
+749,33.8848,29.5117,28.1963,0.12928,1.74694,0.018432,0.006144,0.053248,0.187936,0.188896,25.6423,0.223136
+750,32.6427,30.6348,26.8001,0.130944,1.56259,0.017568,0.00512,0.059136,0.19072,0.190016,24.4208,0.223232
+751,37.7832,26.4668,27.9658,0.131424,1.52141,0.008352,0.005632,0.053312,0.186912,0.188416,25.6464,0.223968
+752,33.6576,29.7109,27.9697,0.129728,1.53181,0.008256,0.00592,0.053248,0.186592,0.188384,25.6422,0.223552
+753,34.0177,29.3965,26.6036,0.12944,1.39018,0.008416,0.0056,0.052224,0.187456,0.188192,24.4187,0.223424
+754,35.4399,28.2168,26.567,0.129824,1.33322,0.008192,0.006112,0.052928,0.19696,0.194592,24.4218,0.223424
+755,35.4644,28.1973,27.9104,0.129248,1.46227,0.008192,0.006176,0.053152,0.186432,0.18976,25.654,0.221184
+756,33.521,29.832,26.6029,0.131072,1.37437,0.018432,0.00608,0.05312,0.188608,0.190496,24.4183,0.222432
+757,33.8804,29.5156,26.9435,0.131072,1.73616,0.008384,0.005632,0.06192,0.186144,0.189024,24.4012,0.223936
+758,36.3791,27.4883,27.9112,0.133152,1.44995,0.024576,0.006144,0.05296,0.188128,0.18848,25.6406,0.227264
+759,34.0019,29.4102,27.0201,0.129856,1.43978,0.008352,0.005984,0.053248,0.186368,0.189728,24.7826,0.224224
+760,34.1356,29.2949,27.3933,0.130688,2.1303,0.00928,0.005088,0.069088,0.211296,0.188576,24.4183,0.23072
+761,35.1866,28.4199,27.9195,0.13008,1.47952,0.00832,0.006144,0.053248,0.187488,0.189344,25.6424,0.223008
+762,33.7508,29.6289,26.6892,0.131072,1.43978,0.00816,0.006144,0.053248,0.204224,0.18896,24.4338,0.223776
+763,35.1818,28.4238,26.5892,0.138976,1.37245,0.008192,0.006144,0.05328,0.186368,0.188384,24.4117,0.223712
+764,34.298,29.1562,29.2475,0.13312,1.55238,0.008192,0.006144,0.053152,0.188128,0.1888,26.8943,0.223264
+765,31.3016,31.9473,26.7514,0.129312,1.51261,0.023392,0.006144,0.053248,0.206016,0.193344,24.404,0.22336
+766,37.6775,26.541,26.659,0.130688,1.44032,0.00928,0.005088,0.054656,0.188192,0.189024,24.4196,0.222112
+767,35.364,28.2773,27.7834,0.129824,1.34349,0.009248,0.005088,0.053248,0.192512,0.189472,25.6392,0.221344
+768,34.0924,29.332,26.7204,0.131488,1.45136,0.008736,0.005856,0.05328,0.20736,0.190464,24.4489,0.22288
+769,35.6149,28.0781,26.5922,0.131744,1.37651,0.009248,0.005088,0.053248,0.18816,0.188672,24.407,0.232448
+770,35.3958,28.252,27.901,0.131072,1.41235,0.00864,0.014656,0.053248,0.19824,0.188832,25.6676,0.226336
+771,33.1349,30.1797,26.9562,0.129376,1.75306,0.008256,0.005696,0.053664,0.187744,0.188768,24.4043,0.225312
+772,35.7792,27.9492,27.9096,0.1304,1.44246,0.008192,0.006144,0.053184,0.187808,0.188192,25.6701,0.223072
+773,33.9298,29.4727,27.9757,0.130368,1.50717,0.008512,0.00464,0.054464,0.1872,0.190464,25.6714,0.221504
+774,33.4422,29.9023,26.7305,0.13136,1.4912,0.008352,0.014336,0.05328,0.190432,0.190464,24.4158,0.2352
+775,35.7667,27.959,26.5626,0.131008,1.32922,0.008352,0.005984,0.053248,0.198176,0.18864,24.4197,0.228192
+776,35.1335,28.4629,27.8079,0.132448,1.3361,0.009376,0.005088,0.05312,0.187808,0.188448,25.6678,0.227648
+777,34.1129,29.3145,26.6029,0.129184,1.38646,0.008224,0.006112,0.053248,0.186368,0.189536,24.4169,0.226816
+778,35.8744,27.875,26.5601,0.130432,1.35206,0.008448,0.005952,0.053504,0.187776,0.188544,24.408,0.225408
+779,32.9833,30.3184,27.9631,0.130592,1.5119,0.008192,0.006112,0.053024,0.18656,0.18848,25.653,0.225184
+780,36.4257,27.4531,27.7074,0.13008,1.3809,0.008352,0.005888,0.05328,0.186912,0.1896,25.529,0.22336
+781,34.4688,29.0117,26.5994,0.130976,1.38682,0.008416,0.005824,0.053248,0.188736,0.192544,24.4101,0.222752
+782,35.4964,28.1719,27.8333,0.132224,1.37715,0.008192,0.006144,0.053248,0.190464,0.189472,25.6522,0.224256
+783,34.3049,29.1504,26.5633,0.133568,1.33885,0.008384,0.004768,0.053248,0.186368,0.190496,24.4224,0.22528
+784,35.7692,27.957,26.6117,0.13312,1.38352,0.008352,0.005088,0.053024,0.188416,0.188416,24.4265,0.22528
+785,34.6508,28.8594,27.9532,0.134688,1.51398,0.00816,0.015968,0.053664,0.1864,0.189696,25.6212,0.229376
+786,34.3601,29.1035,26.7018,0.13056,1.4873,0.008256,0.005984,0.053024,0.187936,0.188832,24.4167,0.223232
+787,35.3836,28.2617,26.571,0.129856,1.34467,0.008416,0.004736,0.053248,0.188416,0.203904,24.4146,0.2232
+788,34.9536,28.6094,27.851,0.129664,1.40691,0.008224,0.017536,0.053888,0.18848,0.18864,25.6348,0.22288
+789,34.5899,28.9102,26.5248,0.131008,1.32083,0.008352,0.005632,0.053312,0.188896,0.190464,24.404,0.222304
+790,35.4595,28.2012,27.8692,0.131072,1.40698,0.008192,0.006144,0.053248,0.191744,0.189184,25.6592,0.223456
+791,34.038,29.3789,27.7893,0.13312,1.35373,0.008192,0.00608,0.05328,0.1864,0.188448,25.6327,0.227328
+792,33.7731,29.6094,26.6509,0.129248,1.4329,0.008352,0.005888,0.053216,0.1872,0.187648,24.4182,0.228192
+793,33.9275,29.4746,27.0003,0.131072,1.42336,0.008192,0.006016,0.053056,0.186304,0.1888,24.7805,0.223008
+794,36.9675,27.0508,27.7894,0.13072,1.3664,0.00816,0.006144,0.05328,0.188,0.19904,25.6158,0.221856
+795,34.097,29.3281,26.6661,0.129024,1.44998,0.008192,0.00592,0.053472,0.188416,0.189856,24.4189,0.222368
+796,35.1769,28.4277,26.663,0.129056,1.44714,0.008352,0.005856,0.053408,0.189184,0.190496,24.4162,0.223296
+797,35.4866,28.1797,27.8344,0.130528,1.40957,0.008288,0.006048,0.053248,0.188448,0.190368,25.6262,0.221664
+798,34.0132,29.4004,26.5756,0.131808,1.34339,0.00832,0.006048,0.053312,0.188128,0.186656,24.4326,0.22528
+799,34.875,28.6738,26.9414,0.130528,1.73232,0.008544,0.0056,0.052224,0.186496,0.189376,24.4084,0.227968
+800,35.5976,28.0918,27.9265,0.13104,1.4111,0.008224,0.006112,0.053248,0.188032,0.194944,25.7124,0.221408
+801,33.8692,29.5254,26.6534,0.129408,1.41712,0.008416,0.005632,0.053184,0.207648,0.192512,24.4163,0.223232
+802,35.8042,27.9297,27.7791,0.130432,1.34211,0.00816,0.006176,0.053216,0.188448,0.188384,25.6407,0.221408
+803,34.3486,29.1133,27.793,0.1424,1.33594,0.008384,0.0056,0.053184,0.200832,0.198432,25.6253,0.222912
+804,34.0222,29.3926,26.5917,0.131264,1.36867,0.008288,0.006048,0.053248,0.188416,0.188416,24.42,0.22736
+805,35.5926,28.0957,26.5416,0.132256,1.33536,0.008352,0.004736,0.053248,0.186368,0.18992,24.4077,0.223648
+806,35.6496,28.0508,27.8357,0.132896,1.392,0.008384,0.005824,0.052192,0.188224,0.188608,25.6244,0.243104
+807,33.9635,29.4434,26.576,0.129024,1.36774,0.008352,0.0056,0.053184,0.187136,0.188416,24.4101,0.226432
+808,35.3518,28.2871,26.6316,0.131072,1.39245,0.008384,0.005856,0.053184,0.198304,0.199136,24.4185,0.224672
+809,34.6978,28.8203,27.8898,0.129152,1.45206,0.007968,0.004288,0.053088,0.20464,0.188704,25.6267,0.223232
+810,34.1379,29.293,27.8457,0.131072,1.38592,0.008416,0.005856,0.05296,0.188768,0.188992,25.6611,0.222592
+811,34.2567,29.1914,26.5728,0.131072,1.32915,0.009344,0.004992,0.053248,0.192544,0.190048,24.4309,0.231456
+812,35.8518,27.8926,27.7609,0.130016,1.33939,0.008192,0.006144,0.053248,0.188416,0.189696,25.6212,0.224544
+813,33.811,29.5762,26.69,0.135328,1.47027,0.00816,0.00464,0.053248,0.186368,0.188416,24.4162,0.227424
+814,35.4227,28.2305,26.6506,0.13024,1.42419,0.018336,0.005632,0.05296,0.187296,0.188384,24.4142,0.229376
+815,35.2108,28.4004,27.9455,0.129568,1.4737,0.008352,0.0048,0.05328,0.186368,0.188128,25.6798,0.221472
+816,33.9298,29.4727,26.7336,0.131104,1.49706,0.008192,0.014368,0.053312,0.188416,0.189856,24.427,0.224288
+817,34.7189,28.8027,26.7796,0.130112,1.55658,0.008512,0.00464,0.063488,0.188416,0.190464,24.4142,0.223232
+818,35.7267,27.9902,27.8652,0.130784,1.39334,0.008352,0.005888,0.053504,0.190496,0.192544,25.667,0.223264
+819,33.3594,29.9766,26.6588,0.134592,1.44413,0.008384,0.005632,0.052992,0.187232,0.188416,24.4139,0.223616
+820,35.1335,28.4629,28.3382,0.135168,1.87187,0.008224,0.006112,0.05328,0.192544,0.204736,25.6428,0.223424
+821,33.2575,30.0684,27.8774,0.129088,1.42922,0.008384,0.005568,0.059936,0.186496,0.190496,25.6471,0.221184
+822,34.6978,28.8203,26.5626,0.1304,1.34416,0.008352,0.005984,0.053248,0.189536,0.190496,24.4172,0.223232
+823,35.6323,28.0645,26.5529,0.131456,1.34986,0.008352,0.005984,0.05328,0.188032,0.190176,24.4026,0.223232
+824,35.7917,27.9395,28.6165,0.139264,1.34256,0.008384,0.005056,0.053024,0.190464,0.190464,26.4643,0.223072
+825,33.4116,29.9297,26.5672,0.133664,1.34496,0.008352,0.0056,0.05216,0.187392,0.18944,24.4204,0.22528
+826,35.303,28.3262,26.65,0.134368,1.4017,0.0184,0.005888,0.053216,0.192832,0.188416,24.4296,0.225536
+827,35.672,28.0332,27.8162,0.130592,1.37696,0.008192,0.006048,0.05328,0.186432,0.188416,25.6386,0.22768
+828,34.3509,29.1113,27.7832,0.129696,1.3449,0.008384,0.005856,0.05312,0.187232,0.188416,25.643,0.22256
+829,33.8692,29.5254,26.7831,0.12912,1.56598,0.008352,0.004704,0.053216,0.192,0.19104,24.4161,0.222592
+830,35.6596,28.043,27.8259,0.129216,1.39469,0.008448,0.005888,0.053248,0.190048,0.190656,25.6309,0.222752
+831,34.0199,29.3945,26.6959,0.13104,1.4673,0.008192,0.005824,0.053408,0.189792,0.191296,24.4244,0.224576
+832,35.3713,28.2715,26.6523,0.131104,1.43562,0.008224,0.006112,0.053184,0.188256,0.18864,24.4154,0.225824
+833,35.4595,28.2012,29.1369,0.13312,1.49626,0.008352,0.004768,0.054688,0.186976,0.188416,26.8409,0.223456
+834,32.8268,30.4629,26.6015,0.131072,1.38035,0.008384,0.005952,0.053248,0.187744,0.188768,24.4227,0.223232
+835,35.1335,28.4629,26.6834,0.130368,1.44045,0.008192,0.005824,0.052992,0.195136,0.205856,24.4213,0.223232
+836,35.7118,28.002,27.9337,0.130784,1.47213,0.00816,0.005888,0.053952,0.186624,0.190144,25.6638,0.22224
+837,33.8692,29.5254,26.7593,0.129824,1.55018,0.00832,0.005664,0.053024,0.18912,0.192096,24.4084,0.222624
+838,34.7236,28.7988,27.478,0.132256,1.39965,0.008224,0.006112,0.05296,0.18848,0.188672,25.2782,0.223456
+839,34.0041,29.4082,27.9368,0.132128,1.44675,0.016512,0.006144,0.062656,0.186624,0.188992,25.6716,0.225376
+840,33.9388,29.4648,26.6499,0.130112,1.39565,0.008192,0.016064,0.053024,0.197152,0.18816,24.4387,0.222816
+841,33.6975,29.6758,26.866,0.129408,1.64448,0.008224,0.01536,0.05952,0.196928,0.188832,24.4002,0.223072
+842,36.1429,27.668,28.0141,0.13232,1.56957,0.008192,0.006144,0.053248,0.191712,0.189056,25.6408,0.22304
+843,33.6488,29.7188,26.6883,0.131104,1.47126,0.008192,0.006144,0.053248,0.187424,0.189408,24.3999,0.241664
+844,33.4881,29.8613,27.9269,0.136736,1.45498,0.008192,0.006144,0.060832,0.187008,0.198624,25.6502,0.224224
+845,35.4718,28.1914,26.9251,0.129024,1.34554,0.009312,0.005024,0.053248,0.186368,0.188448,24.7847,0.223424
+846,34.4364,29.0391,27.2516,0.12992,2.00701,0.008224,0.006112,0.053056,0.204992,0.191808,24.4284,0.221984
+847,35.1311,28.4648,27.8275,0.130336,1.40566,0.009248,0.005088,0.053248,0.1864,0.188384,25.6262,0.22288
+848,34.2681,29.1816,26.7387,0.130528,1.52378,0.008384,0.005856,0.053056,0.1904,0.191328,24.4121,0.223232
+849,35.521,28.1523,26.5544,0.129152,1.34336,0.008256,0.00608,0.053248,0.188416,0.190464,24.4122,0.223232
+850,35.4743,28.1895,27.9417,0.131488,1.48717,0.008192,0.005856,0.0536,0.206848,0.188192,25.63,0.230368
+851,33.2511,30.0742,26.8094,0.130336,1.58179,0.008224,0.00608,0.061152,0.186688,0.1896,24.4171,0.228448
+852,35.667,28.0371,26.6397,0.129024,1.39571,0.008384,0.005088,0.053088,0.188448,0.188384,24.4347,0.236928
+853,35.4644,28.1973,27.8005,0.129664,1.3479,0.008224,0.006048,0.052864,0.186848,0.190432,25.6573,0.221184
+854,33.932,29.4707,26.6139,0.130368,1.39488,0.008416,0.005856,0.053312,0.18848,0.18864,24.4202,0.223744
+855,34.7873,28.7461,27.9511,0.130272,1.45869,0.020768,0.006144,0.053248,0.187456,0.189376,25.6819,0.223232
+856,34.7637,28.7656,27.8528,0.130688,1.40634,0.0072,0.006112,0.053248,0.188416,0.19248,25.6451,0.223232
+857,34.1174,29.3105,26.594,0.131744,1.35539,0.008352,0.0056,0.053568,0.188864,0.190176,24.435,0.225312
+858,35.0901,28.498,26.7491,0.132416,1.50397,0.016352,0.006144,0.053056,0.18784,0.18896,24.4349,0.225408
+859,35.9879,27.7871,29.0275,0.130976,1.37226,0.008192,0.006144,0.052992,0.187776,0.189312,26.8575,0.222368
+860,32.9197,30.377,26.5565,0.129216,1.33715,0.008352,0.005888,0.052832,0.188352,0.18912,24.4225,0.223168
+861,35.4915,28.1758,26.6036,0.130624,1.38899,0.008192,0.006144,0.053152,0.186464,0.190368,24.4183,0.221376
+862,34.5083,28.9785,28.113,0.12992,1.68506,0.018016,0.006656,0.053216,0.1888,0.191552,25.6167,0.223072
+863,33.1542,30.1621,26.9015,0.131104,1.65571,0.016416,0.006112,0.060928,0.18896,0.20272,24.4153,0.224256
+864,37.1337,26.9297,26.5979,0.13344,1.38685,0.008384,0.005856,0.053152,0.18816,0.1928,24.4044,0.224768
+865,35.3664,28.2754,27.8938,0.13312,1.41901,0.014624,0.006112,0.053248,0.185984,0.188768,25.6646,0.228256
+866,34.0199,29.3945,26.6486,0.131072,1.40653,0.008384,0.005856,0.053216,0.186944,0.188416,24.4388,0.229376
+867,35.1166,28.4766,27.9341,0.13008,1.4735,0.009408,0.004928,0.054272,0.186784,0.188864,25.6636,0.222592
+868,34.0448,29.373,27.866,0.129792,1.42262,0.008352,0.005856,0.052224,0.196416,0.190688,25.6385,0.221536
+869,34.0177,29.3965,26.6405,0.1312,1.41216,0.022912,0.006016,0.053344,0.190752,0.189856,24.4127,0.221632
+870,35.4154,28.2363,27.8644,0.131104,1.41722,0.008192,0.014336,0.054304,0.1976,0.188416,25.6282,0.224992
+871,33.2079,30.1133,27.8072,0.130592,1.36064,0.008288,0.006048,0.053248,0.1864,0.188384,25.6486,0.224992
+872,35.1818,28.4238,26.5892,0.142752,1.35229,0.008192,0.00608,0.05296,0.18672,0.188448,24.4279,0.223808
+873,35.1286,28.4668,26.6363,0.130048,1.38752,0.008192,0.005856,0.052928,0.190624,0.200544,24.4373,0.223232
+874,35.7892,27.9414,27.7911,0.130368,1.34214,0.008352,0.005984,0.054272,0.19968,0.188416,25.6387,0.223168
+875,33.9028,29.4961,27.9144,0.135328,1.44179,0.016384,0.005792,0.052896,0.188288,0.191296,25.6449,0.23776
+876,34.072,29.3496,26.5715,0.131616,1.35354,0.008416,0.005856,0.053056,0.188064,0.188544,24.419,0.22336
+877,35.1793,28.4258,27.9096,0.134432,1.4488,0.008224,0.006112,0.053248,0.186336,0.198688,25.6451,0.228672
+878,33.6355,29.7305,26.666,0.12992,1.44979,0.00848,0.006016,0.053376,0.188256,0.187872,24.4162,0.226048
+879,35.882,27.8691,26.624,0.129024,1.42131,0.008256,0.00608,0.053248,0.186368,0.190464,24.404,0.225248
+880,35.4154,28.2363,27.9292,0.1296,1.46835,0.008256,0.005984,0.053312,0.188032,0.188704,25.6614,0.225568
+881,34.3118,29.1445,26.5749,0.130368,1.35846,0.008288,0.005696,0.0536,0.187488,0.188928,24.4188,0.223264
+882,35.4841,28.1816,26.7139,0.129344,1.4889,0.009248,0.00512,0.053216,0.189664,0.189216,24.4265,0.222656
+883,35.6894,28.0195,27.8363,0.142528,1.37446,0.008352,0.005632,0.052128,0.188416,0.190464,25.6492,0.22512
+884,33.8736,29.5215,26.7203,0.132416,1.4671,0.008256,0.006048,0.053248,0.188448,0.188384,24.4527,0.223616
+885,35.2156,28.3965,27.8747,0.13264,1.37619,0.008352,0.004896,0.053248,0.188,0.18784,25.6932,0.2304
+886,34.0132,29.4004,27.8548,0.130656,1.3903,0.008352,0.005856,0.052192,0.188224,0.188064,25.668,0.223232
+887,33.8043,29.582,26.6333,0.1304,1.42115,0.008416,0.004704,0.053248,0.186464,0.190304,24.4154,0.223232
+888,35.7243,27.9922,26.6193,0.130208,1.39555,0.008192,0.006144,0.053248,0.188416,0.188448,24.4256,0.223456
+889,35.2544,28.3652,28.9124,0.129824,1.6343,0.008192,0.006144,0.053248,0.188416,0.190464,26.4804,0.22144
+890,33.0771,30.2324,26.6303,0.133664,1.42246,0.008384,0.005824,0.052224,0.18848,0.188352,24.408,0.222912
+891,35.4129,28.2383,26.5969,0.130432,1.40147,0.008384,0.0056,0.051904,0.18768,0.188384,24.3977,0.225312
+892,35.5679,28.1152,27.8939,0.13264,1.39981,0.008224,0.006144,0.053248,0.188352,0.18816,25.6875,0.229856
+893,33.914,29.4863,26.6815,0.129472,1.48694,0.00816,0.006048,0.05312,0.186592,0.188416,24.3978,0.224896
+894,35.6025,28.0879,26.6367,0.12944,1.4225,0.008384,0.005824,0.052192,0.188416,0.188416,24.4196,0.221888
+895,35.7143,28,27.8093,0.130752,1.34995,0.008288,0.006048,0.053184,0.1864,0.202784,25.6492,0.22272
+896,34.3141,29.1426,26.5838,0.129728,1.35082,0.008416,0.005888,0.052224,0.188416,0.189504,24.4348,0.224
+897,35.7218,27.9941,27.8095,0.1296,1.37421,0.009344,0.004992,0.053248,0.188416,0.190496,25.6384,0.220768
+898,34.0493,29.3691,27.902,0.131616,1.44378,0.008352,0.015616,0.053152,0.189376,0.189568,25.646,0.224608
+899,33.9906,29.4199,26.7093,0.132128,1.47555,0.008192,0.01552,0.053152,0.18528,0.189856,24.4246,0.224992
+900,35.0877,28.5,26.7604,0.130208,1.54445,0.008352,0.005856,0.05328,0.188128,0.18736,24.4142,0.228544
+901,36.1837,27.6367,28.9833,0.130112,1.36288,0.008192,0.006144,0.053248,0.186368,0.189888,26.8245,0.221984
+902,32.8395,30.4512,26.5933,0.130944,1.36413,0.00816,0.006176,0.053216,0.188448,0.189568,24.4294,0.223232
+903,35.3982,28.25,26.5513,0.129024,1.3513,0.008416,0.005568,0.053376,0.187008,0.190432,24.4037,0.222464
+904,35.5087,28.1621,27.8835,0.145408,1.37421,0.022528,0.005984,0.053184,0.20432,0.191104,25.6513,0.23552
+905,34.3601,29.1035,27.832,0.131072,1.39792,0.008512,0.00464,0.059424,0.186336,0.188416,25.6319,0.223776
+906,34.2521,29.1953,26.5582,0.131072,1.34554,0.008192,0.006144,0.053248,0.18832,0.188032,24.4106,0.227104
+907,34.4456,29.0312,27.9543,0.129056,1.50234,0.008384,0.004768,0.064704,0.199488,0.188416,25.6348,0.222368
+908,34.9321,28.627,26.5881,0.12912,1.37485,0.008192,0.006144,0.053248,0.18752,0.189344,24.4162,0.223424
+909,35.3128,28.3184,26.6301,0.129024,1.43155,0.008192,0.005952,0.05344,0.192544,0.190432,24.3958,0.2232
+910,35.5556,28.125,27.8032,0.130592,1.36854,0.008224,0.006112,0.053216,0.188448,0.19456,25.6319,0.2216
+911,34.097,29.3281,26.6035,0.129024,1.38854,0.008224,0.006112,0.05328,0.190432,0.2048,24.3999,0.223232
+912,35.5136,28.1582,26.6281,0.130752,1.41293,0.008352,0.005856,0.053248,0.187424,0.193856,24.4127,0.223008
+913,35.5309,28.1445,27.9039,0.130912,1.44106,0.008352,0.004832,0.054304,0.18736,0.190304,25.6555,0.23136
+914,33.5386,29.8164,27.8856,0.130592,1.42592,0.00928,0.005088,0.057376,0.188352,0.18768,25.6579,0.223424
+915,33.6842,29.6875,26.6566,0.1304,1.45066,0.008256,0.00608,0.053248,0.186368,0.190464,24.4081,0.223072
+916,36.0335,27.752,27.8692,0.129088,1.40698,0.008192,0.006176,0.053056,0.194272,0.198208,25.65,0.223232
+917,33.7798,29.6035,26.5549,0.12944,1.35574,0.008256,0.00576,0.05328,0.186784,0.191584,24.4007,0.223328
+918,36.097,27.7031,26.6068,0.14688,1.37683,0.00832,0.006016,0.05328,0.190304,0.189696,24.4128,0.222752
+919,34.999,28.5723,27.9189,0.129632,1.46746,0.008352,0.004896,0.053248,0.188448,0.193568,25.6515,0.221888
+920,34.618,28.8867,26.558,0.13296,1.34176,0.008192,0.006144,0.053248,0.186368,0.189888,24.4148,0.22464
+921,34.4967,28.9883,26.7512,0.137376,1.52381,0.00928,0.005056,0.053248,0.1864,0.189888,24.4188,0.227328
+922,35.489,28.1777,27.9913,0.130752,1.5447,0.008192,0.006144,0.053248,0.187648,0.187136,25.6512,0.222304
+923,34.0811,29.3418,26.6342,0.129312,1.41418,0.00848,0.0048,0.053248,0.1864,0.20032,24.4146,0.222912
+924,35.4644,28.1973,27.8861,0.131008,1.43562,0.00816,0.005856,0.053568,0.19488,0.189952,25.6439,0.223232
+925,34.2383,29.207,27.8154,0.145408,1.35987,0.008,0.005632,0.053056,0.189312,0.192192,25.629,0.232928
+926,33.8804,29.5156,26.6782,0.129984,1.45613,0.008352,0.005984,0.054592,0.18816,0.187328,24.4238,0.223904
+927,35.7292,27.9883,26.581,0.133152,1.37728,0.00832,0.00496,0.053248,0.187904,0.188928,24.404,0.223232
+928,35.5556,28.125,27.7996,0.133152,1.35165,0.008224,0.00608,0.053088,0.187648,0.189376,25.642,0.228352
+929,33.7887,29.5957,26.656,0.129024,1.44726,0.008448,0.0056,0.05216,0.186368,0.188032,24.4104,0.228704
+930,35.1914,28.416,26.6103,0.129952,1.39472,0.00832,0.006016,0.053248,0.188416,0.188448,24.4179,0.223296
+931,36.0082,27.7715,27.8327,0.12944,1.40448,0.008384,0.005664,0.052128,0.186176,0.188416,25.6368,0.221184
+932,34.122,29.3066,26.5851,0.129184,1.37149,0.008352,0.005856,0.05312,0.188928,0.190592,24.4143,0.223232
+933,35.0301,28.5469,27.862,0.129888,1.78394,0.009408,0.004896,0.053312,0.188352,0.19248,25.2775,0.222208
+934,34.4526,29.0254,27.9711,0.131072,1.53114,0.008384,0.004704,0.053216,0.187584,0.1872,25.643,0.2248
+935,33.9433,29.4609,26.5836,0.129824,1.37408,0.009312,0.005024,0.053248,0.186368,0.188416,24.4101,0.227264
+936,34.9822,28.5859,26.7796,0.130496,1.5625,0.008384,0.006176,0.053216,0.18688,0.188448,24.4142,0.229376
+937,35.8569,27.8887,27.8756,0.129664,1.40906,0.00832,0.005664,0.053504,0.187808,0.18896,25.6699,0.222688
+938,33.9545,29.4512,26.6425,0.129216,1.43152,0.009216,0.00512,0.053248,0.188416,0.190464,24.4119,0.22336
+939,35.3396,28.2969,26.6576,0.129856,1.45942,0.008384,0.004704,0.053248,0.18768,0.189152,24.4019,0.223232
+940,35.6596,28.043,27.8186,0.12992,1.38182,0.008352,0.005856,0.053024,0.188736,0.18896,25.639,0.222944
+941,34.0109,29.4023,26.5733,0.131264,1.3736,0.008352,0.0048,0.053248,0.190464,0.190176,24.3981,0.223264
+942,35.4743,28.1895,27.8797,0.13104,1.42995,0.008128,0.005312,0.053376,0.189024,0.188576,25.6491,0.22528
+943,33.682,29.6895,28.0652,0.130272,1.62282,0.008192,0.006016,0.053408,0.18752,0.189056,25.6452,0.222752
+944,33.6864,29.6855,26.8105,0.129952,1.56259,0.017728,0.005856,0.068576,0.198656,0.192512,24.4112,0.223424
+945,35.4669,28.1953,26.5748,0.129024,1.3783,0.008192,0.006144,0.053248,0.187456,0.187328,24.404,0.221184
+946,35.1769,28.4277,28.895,0.130272,1.59408,0.00832,0.00592,0.053472,0.198656,0.190048,26.487,0.2272
+947,33.1886,30.1309,26.5595,0.133152,1.34144,0.009216,0.005088,0.053248,0.18816,0.188672,24.4156,0.224896
+948,34.3601,29.1035,26.5996,0.129152,1.38035,0.008192,0.004096,0.053248,0.18864,0.1872,24.423,0.225664
+949,35.6546,28.0469,27.8545,0.129696,1.42128,0.008192,0.006144,0.053056,0.18656,0.188416,25.6387,0.222496
+950,33.4073,29.9336,26.6334,0.129024,1.41699,0.007904,0.006624,0.05328,0.1864,0.190432,24.4183,0.22448
+951,36.3456,27.5137,26.615,0.131072,1.38854,0.008224,0.00576,0.053536,0.202624,0.18864,24.4138,0.222752
+952,35.5852,28.1016,27.8052,0.130848,1.37568,0.008384,0.004704,0.053248,0.188416,0.19024,25.6309,0.222784
+953,34.1835,29.2539,26.5869,0.130752,1.38067,0.008224,0.005728,0.05296,0.188544,0.191008,24.4058,0.2232
+954,35.6969,28.0137,27.4896,0.127136,1.42067,0.00832,0.005856,0.053216,0.189216,0.192544,25.2539,0.238816
+955,34.6297,28.877,27.8071,0.132832,1.36986,0.008384,0.0056,0.05216,0.188352,0.188416,25.6379,0.223616
+956,34.147,29.2852,26.6527,0.13088,1.42106,0.008384,0.005184,0.054176,0.187136,0.188416,24.4305,0.226912
+957,35.1938,28.4141,27.1699,0.129152,1.55853,0.008224,0.005888,0.05328,0.186304,0.188672,24.8115,0.228352
+958,34.3187,29.1387,28.6679,0.130688,2.19171,0.008064,0.005856,0.055744,0.188192,0.204256,25.6602,0.223232
+959,33.6665,29.7031,26.6987,0.13824,1.5073,0.009344,0.004992,0.053248,0.188416,0.190464,24.3845,0.222176
+960,35.1214,28.4727,26.6507,0.131008,1.43962,0.008352,0.005856,0.053568,0.190496,0.189568,24.4101,0.222112
+961,35.5926,28.0957,27.7911,0.131104,1.36189,0.008224,0.005888,0.053024,0.190912,0.190464,25.6259,0.223648
+962,34.0539,29.3652,26.5958,0.131552,1.38032,0.008224,0.006016,0.052928,0.188448,0.188832,24.4142,0.22528
+963,34.8584,28.6875,26.6568,0.131072,1.43914,0.00832,0.005632,0.052192,0.194272,0.188736,24.4115,0.225952
+964,34.5993,28.9023,28.0625,0.129792,1.61133,0.008352,0.005856,0.053408,0.197056,0.188416,25.645,0.223264
+965,35.1094,28.4824,27.0664,0.129024,1.46432,0.00832,0.006016,0.053248,0.200704,0.18992,24.7932,0.221632
+966,35.0469,28.5332,26.6035,0.129024,1.36397,0.008224,0.006112,0.053248,0.188416,0.188576,24.4427,0.223232
+967,35.2471,28.3711,27.906,0.130592,1.4113,0.016672,0.005728,0.05312,0.18688,0.190464,25.6791,0.232192
+968,34.2429,29.2031,26.5789,0.131104,1.34544,0.008256,0.005952,0.053248,0.18864,0.189888,24.4207,0.23568
+969,35.3298,28.3047,27.8335,0.131072,1.39059,0.008192,0.00592,0.052928,0.186816,0.19264,25.6383,0.227104
+970,33.2403,30.084,28.1518,0.13024,1.63245,0.008832,0.01536,0.053824,0.187872,0.191072,25.7102,0.221984
+971,33.5079,29.8438,26.6609,0.130464,1.4383,0.008192,0.005856,0.052992,0.194496,0.197216,24.412,0.221312
+972,36.7104,27.2402,26.6824,0.130208,1.46285,0.00848,0.006048,0.053344,0.187552,0.188512,24.4211,0.224256
+973,35.7018,28.0098,27.8193,0.130272,1.39344,0.008192,0.006016,0.053312,0.187616,0.18928,25.6284,0.222688
+974,34.2704,29.1797,26.6015,0.131072,1.37216,0.008416,0.005952,0.053216,0.190464,0.191616,24.4253,0.223232
+975,35.6223,28.0723,26.6133,0.130528,1.40547,0.008192,0.00592,0.053376,0.19056,0.190464,24.406,0.222784
+976,35.6199,28.0742,27.7632,0.131072,1.32989,0.008224,0.006112,0.05328,0.188416,0.19248,25.6307,0.22304
+977,34.1447,29.2871,26.9414,0.131104,1.35123,0.008384,0.005632,0.053472,0.18688,0.1896,24.7919,0.223232
+978,34.8418,28.7012,27.5055,0.12992,1.42746,0.008224,0.006112,0.053248,0.188448,0.188416,25.2759,0.227808
+979,34.5572,28.9375,27.8612,0.129216,1.41853,0.008352,0.004672,0.05328,0.186464,0.190336,25.6471,0.223232
+980,34.0607,29.3594,26.5752,0.129408,1.35779,0.008192,0.006176,0.053216,0.188352,0.18848,24.4217,0.22192
+981,35.3836,28.2617,26.5805,0.13008,1.37523,0.008224,0.00608,0.05328,0.18784,0.190048,24.4029,0.226816
+982,35.8017,27.9316,27.8383,0.130464,1.38637,0.008384,0.005824,0.05344,0.188544,0.18896,25.6543,0.221984
+983,34.1858,29.252,26.6073,0.131072,1.38662,0.008416,0.00592,0.053248,0.188416,0.190464,24.4114,0.231712
+984,34.837,28.7051,26.6692,0.133088,1.44774,0.00752,0.006304,0.053312,0.18704,0.189792,24.4208,0.223616
+985,36.235,27.5977,27.8098,0.132992,1.3825,0.008352,0.004864,0.053216,0.186368,0.189824,25.6251,0.226592
+986,34.072,29.3496,26.6647,0.129344,1.43936,0.008384,0.005856,0.052992,0.187136,0.18992,24.4209,0.23088
+987,35.3933,28.2539,27.8504,0.129408,1.42336,0.008192,0.005824,0.05344,0.186336,0.188576,25.6328,0.222496
+988,33.8938,29.5039,27.8637,0.129632,1.43709,0.008352,0.005952,0.05296,0.188768,0.18864,25.6301,0.222144
+989,34.1721,29.2637,26.6128,0.131072,1.39648,0.008352,0.005568,0.053344,0.188992,0.19152,24.4132,0.22432
+990,35.4939,28.1738,26.6547,0.130656,1.42784,0.008224,0.006016,0.05328,0.191776,0.189248,24.4237,0.224
+991,35.6298,28.0664,28.6386,0.128864,1.39114,0.009504,0.004832,0.053248,0.188416,0.192032,26.4455,0.22512
+992,33.1886,30.1309,26.6568,0.13024,1.43238,0.008192,0.006144,0.05328,0.18768,0.188352,24.4227,0.227872
+993,35.6496,28.0508,26.6313,0.13088,1.4144,0.008352,0.004896,0.053248,0.188192,0.188672,24.4121,0.23056
+994,34.9131,28.6426,28.2375,0.129056,1.74266,0.018656,0.006112,0.053248,0.18832,0.188544,25.688,0.222848
+995,33.8759,29.5195,26.6164,0.1296,1.41504,0.008352,0.0056,0.053312,0.188096,0.190848,24.4023,0.223264
+996,35.2641,28.3574,26.7269,0.129568,1.49091,0.008224,0.01552,0.053632,0.188864,0.190464,24.4266,0.223104
+997,35.3689,28.2734,27.9362,0.129216,1.4848,0.009248,0.01328,0.053248,0.190176,0.190784,25.6424,0.22304
+998,33.6798,29.6914,26.7141,0.132704,1.48426,0.008352,0.004896,0.053248,0.188416,0.189504,24.4292,0.223584
+999,35.5679,28.1152,27.8405,0.131072,1.39619,0.00848,0.0056,0.053408,0.186944,0.18848,25.6451,0.22528
+1000,33.9996,29.4121,27.8676,0.12944,1.40291,0.008192,0.006112,0.053248,0.188064,0.186848,25.6695,0.223232
+1001,34.0403,29.377,26.624,0.130688,1.42912,0.008448,0.005728,0.052128,0.188064,0.188768,24.3978,0.223232
+1002,35.1094,28.4824,27.4395,0.129632,1.52698,0.006976,0.006144,0.053248,0.188416,0.188416,24.83,0.509696
+1003,34.6625,28.8496,27.8774,0.131488,1.42131,0.008192,0.00608,0.053312,0.190496,0.189408,25.6539,0.223168
+1004,33.7753,29.6074,26.6818,0.133312,1.46864,0.008192,0.006176,0.053216,0.188096,0.186752,24.4134,0.224
+1005,35.1576,28.4434,26.626,0.131072,1.40429,0.008416,0.005632,0.053408,0.186784,0.188768,24.4101,0.237568
+1006,34.9297,28.6289,27.9231,0.129728,1.47046,0.008224,0.006112,0.053248,0.188416,0.187872,25.6574,0.221632
+1007,33.9523,29.4531,26.626,0.130304,1.41978,0.008448,0.005664,0.052864,0.187232,0.190432,24.4081,0.223232
+1008,34.2521,29.1953,26.7207,0.12992,1.50326,0.008192,0.006112,0.054368,0.188736,0.189024,24.4176,0.223488
+1009,36.4076,27.4668,27.9859,0.130304,1.5409,0.008384,0.00592,0.053248,0.187904,0.190016,25.646,0.2232
+1010,34.0629,29.3574,26.9218,0.131072,1.36682,0.008224,0.00608,0.053216,0.188352,0.18832,24.7543,0.225408
+1011,35.3152,28.3164,27.4186,0.1328,1.37453,0.009344,0.004992,0.053248,0.187808,0.188224,25.2424,0.22528
+1012,34.1538,29.2793,27.8938,0.130432,1.46598,0.008352,0.005088,0.05312,0.188288,0.188064,25.6312,0.223232
+1013,33.9883,29.4219,26.6033,0.129056,1.38205,0.00848,0.0056,0.053248,0.186976,0.194464,24.4195,0.223936
+1014,35.5778,28.1074,27.0478,0.129856,1.43718,0.008384,0.005888,0.05376,0.196704,0.188448,24.8033,0.224288
+1015,33.9523,29.4531,27.8351,0.129056,1.4264,0.008288,0.006048,0.05328,0.186336,0.190464,25.6123,0.222912
+1016,35.2035,28.4062,26.6936,0.131072,1.47866,0.008224,0.006112,0.053248,0.188416,0.192288,24.4124,0.223232
+1017,35.1455,28.4531,26.8309,0.130784,1.61206,0.019584,0.005024,0.054432,0.1872,0.188416,24.404,0.229472
+1018,34.7543,28.7734,28.0434,0.135456,1.55443,0.008192,0.015488,0.052128,0.196096,0.188608,25.6638,0.229216
+1019,33.2144,30.1074,26.7674,0.130752,1.53542,0.01728,0.005728,0.063904,0.190464,0.188416,24.4117,0.223712
+1020,36.1889,27.6328,26.5942,0.129952,1.364,0.009824,0.005888,0.052928,0.186688,0.187008,24.434,0.223904
+1021,35.5186,28.1543,27.828,0.129056,1.37213,0.008224,0.006112,0.053248,0.1864,0.206848,25.6447,0.221312
+1022,34.1995,29.2402,26.9906,0.130016,1.38426,0.008352,0.005952,0.053344,0.188,0.188928,24.8085,0.2232
+1023,34.9655,28.5996,26.5729,0.132992,1.36806,0.008352,0.005568,0.05344,0.188864,0.192544,24.3998,0.223232
+1024,35.6794,28.0273,27.7805,0.131104,1.35274,0.008416,0.005856,0.05376,0.190304,0.188352,25.6274,0.222624
+1025,34.0086,29.4043,26.5856,0.132832,1.36275,0.008256,0.00608,0.05328,0.186336,0.189536,24.4223,0.224224
+1026,35.3689,28.2734,27.8625,0.13312,1.44112,0.008352,0.005856,0.053248,0.188416,0.188832,25.6165,0.227008
+1027,33.1714,30.1465,27.9127,0.129536,1.48224,0.007776,0.005024,0.053248,0.1864,0.188512,25.6386,0.22144
+1028,34.9846,28.584,26.6263,0.12928,1.41104,0.008192,0.006144,0.053248,0.188448,0.188384,24.4183,0.223232
+1029,35.6596,28.043,26.5918,0.12976,1.37827,0.008352,0.005984,0.053248,0.188256,0.1904,24.4158,0.221728
+1030,35.6347,28.0625,27.8118,0.130592,1.39648,0.008384,0.005824,0.05328,0.189248,0.190368,25.6162,0.221504
+1031,34.3164,29.1406,26.5523,0.131104,1.35158,0.008256,0.0056,0.053184,0.189088,0.1904,24.4013,0.221696
+1032,35.0085,28.5645,26.6777,0.130976,1.45392,0.00832,0.015008,0.053216,0.194528,0.190048,24.4078,0.223872
+1033,33.9095,29.4902,28.1682,0.151552,1.66461,0.018432,0.004512,0.053248,0.194112,0.188864,25.6696,0.223232
+1034,34.7779,28.7539,26.9885,0.130304,1.39126,0.008288,0.006144,0.053152,0.188512,0.18992,24.7977,0.223232
+1035,34.2796,29.1719,27.3633,0.130656,2.16515,0.008192,0.006144,0.053184,0.187808,0.1968,24.3934,0.221952
+1036,35.5309,28.1445,27.8623,0.131104,1.4272,0.008384,0.005856,0.052896,0.188672,0.188864,25.6368,0.222464
+1037,34.1561,29.2773,26.6031,0.130144,1.39568,0.008192,0.006112,0.05328,0.188288,0.192128,24.4057,0.223648
+1038,35.0038,28.5684,26.8976,0.131072,1.67526,0.009344,0.005088,0.063424,0.189504,0.187296,24.4081,0.228544
+1039,35.5827,28.1035,27.8393,0.131904,1.4127,0.008352,0.0056,0.052128,0.187616,0.189024,25.6267,0.22528
+1040,33.8423,29.5488,26.6469,0.129376,1.42038,0.008384,0.015072,0.053248,0.188,0.188736,24.4141,0.229568
+1041,35.2593,28.3613,26.6445,0.130208,1.42832,0.008288,0.006048,0.053184,0.186432,0.189856,24.416,0.226176
+1042,35.4203,28.2324,27.8412,0.129664,1.37395,0.008384,0.005856,0.053024,0.186944,0.188352,25.6717,0.223232
+1043,34.0947,29.3301,26.5642,0.129376,1.32915,0.008416,0.00592,0.053248,0.188,0.20096,24.4261,0.223008
+1044,35.4399,28.2168,26.626,0.130848,1.42154,0.008192,0.006176,0.053216,0.188416,0.189984,24.4042,0.223488
+1045,35.5902,28.0977,27.8057,0.130752,1.35405,0.008192,0.006144,0.053248,0.188384,0.190592,25.6327,0.241664
+1046,33.7108,29.6641,27.873,0.132768,1.4193,0.008512,0.00592,0.053248,0.187872,0.187136,25.6512,0.227072
+1047,32.8795,30.4141,27.89,0.1296,1.45411,0.024,0.004992,0.053248,0.187552,0.189216,25.6257,0.221568
+1048,34.374,29.0918,26.6424,0.131072,1.42746,0.00928,0.005056,0.053248,0.19856,0.188512,24.406,0.223232
+1049,36.1378,27.6719,26.6509,0.129344,1.46224,0.008352,0.005984,0.053248,0.186368,0.189984,24.3934,0.221984
+1050,35.3469,28.291,27.8671,0.130048,1.4121,0.008192,0.006144,0.06048,0.18928,0.190144,25.6486,0.222144
+1051,33.6953,29.6777,27.9634,0.130912,1.49459,0.008384,0.012704,0.053248,0.188512,0.190368,25.6608,0.22384
+1052,33.9095,29.4902,26.7058,0.13312,1.46179,0.008384,0.005792,0.053312,0.198688,0.201248,24.4163,0.227232
+1053,35.6645,28.0391,27.798,0.129536,1.37213,0.008224,0.005856,0.054784,0.187136,0.189472,25.6276,0.223232
+1054,33.9635,29.4434,26.6588,0.12944,1.43971,0.008192,0.006144,0.053248,0.188416,0.189472,24.4208,0.223424
+1055,35.6695,28.0352,26.7223,0.146432,1.48064,0.008288,0.005728,0.053184,0.194208,0.197312,24.4143,0.22224
+1056,35.1721,28.4316,28.0804,0.130304,1.66352,0.008416,0.005888,0.052928,0.189152,0.18848,25.6201,0.221536
+1057,34.3855,29.082,26.581,0.131104,1.35949,0.008032,0.004704,0.053376,0.19024,0.192512,24.4183,0.223232
+1058,35.7093,28.0039,26.5939,0.13104,1.38035,0.008384,0.00592,0.053216,0.190368,0.192608,24.4087,0.223232
+1059,35.5654,28.1172,27.7668,0.131072,1.3353,0.008192,0.006144,0.053248,0.188448,0.19248,25.6284,0.223552
+1060,34.0109,29.4023,26.5834,0.133344,1.37498,0.008416,0.00592,0.053216,0.187968,0.188896,24.406,0.224704
+1061,35.5284,28.1465,26.5982,0.133984,1.39674,0.009248,0.005088,0.053248,0.186368,0.18816,24.4001,0.225216
+1062,35.4792,28.1855,27.762,0.13072,1.33155,0.008192,0.006144,0.053248,0.188096,0.188768,25.632,0.22336
+1063,34.2773,29.1738,26.5591,0.129632,1.36195,0.00816,0.005568,0.053568,0.186496,0.188544,24.4019,0.223232
+1064,35.6124,28.0801,27.8482,0.131072,1.41312,0.008192,0.006112,0.053088,0.188416,0.188608,25.6363,0.223328
+1065,33.95,29.4551,27.7914,0.131072,1.38413,0.008352,0.005568,0.051936,0.188416,0.190176,25.6105,0.221184
+1066,34.0947,29.3301,26.6159,0.13088,1.40586,0.008256,0.006112,0.053216,0.18944,0.18848,24.4029,0.230816
+1067,35.7267,27.9902,26.6056,0.130496,1.38918,0.008352,0.0176,0.053792,0.186496,0.188448,24.4019,0.229376
+1068,35.6075,28.084,27.8094,0.13152,1.36579,0.008352,0.00592,0.053088,0.186784,0.188416,25.643,0.226464
+1069,34.2269,29.2168,26.5826,0.130368,1.37491,0.008192,0.006144,0.053248,0.1864,0.189824,24.4066,0.226912
+1070,35.558,28.123,26.6627,0.130048,1.42432,0.008256,0.005984,0.053248,0.188576,0.188416,24.4337,0.230144
+1071,35.4816,28.1836,27.807,0.130368,1.3831,0.008192,0.005888,0.053504,0.187936,0.188896,25.6265,0.222592
+1072,34.3256,29.1328,26.6201,0.129472,1.38586,0.008384,0.005824,0.051968,0.206848,0.189888,24.4189,0.222944
+1073,35.1359,28.4609,27.7673,0.130016,1.73638,0.008416,0.0056,0.053056,0.1872,0.190176,25.2336,0.222848
+1074,34.7378,28.7871,27.8461,0.139232,1.36736,0.008384,0.006016,0.053216,0.189312,0.19168,25.6499,0.241024
+1075,33.9185,29.4824,26.6274,0.131168,1.42531,0.009248,0.005088,0.05328,0.187424,0.188576,24.4027,0.224544
+1076,35.8067,27.9277,27.7811,0.13312,1.34554,0.008256,0.00608,0.053248,0.188064,0.188224,25.6333,0.22528
+1077,34.275,29.1758,27.7811,0.130784,1.36374,0.008512,0.005568,0.05344,0.186944,0.190464,25.6198,0.221888
+1078,34.0471,29.3711,26.6139,0.129152,1.41107,0.008192,0.006144,0.053248,0.187968,0.188416,24.4065,0.223232
+1079,35.4792,28.1855,26.7285,0.129024,1.49626,0.008384,0.004736,0.053248,0.204192,0.189024,24.4223,0.221344
+1080,35.2982,28.3301,27.9257,0.130976,1.42096,0.008384,0.005856,0.053216,0.186944,0.190048,25.7063,0.223008
+1081,33.9973,29.4141,26.6353,0.130752,1.43504,0.00848,0.004736,0.054336,0.189376,0.192448,24.3958,0.22432
+1082,35.4767,28.1875,26.6771,0.131104,1.46022,0.008192,0.006144,0.053216,0.190336,0.190624,24.4134,0.223808
+1083,35.0181,28.5566,27.9187,0.131616,1.47392,0.00848,0.0056,0.053632,0.186592,0.188192,25.6446,0.22608
+1084,33.7108,29.6641,27.0396,0.129504,1.43485,0.008512,0.005856,0.052032,0.188352,0.188384,24.8054,0.226752
+1085,35.3518,28.2871,27.3113,0.130304,1.39696,0.008384,0.0056,0.05312,0.498688,0.190464,24.8054,0.2224
+1086,34.5502,28.9434,28.0412,0.129536,1.5824,0.00832,0.005856,0.052032,0.206464,0.188384,25.6453,0.222912
+1087,33.8266,29.5625,26.722,0.14544,1.4921,0.008384,0.004768,0.053248,0.188416,0.190592,24.4161,0.223008
+1088,35.6571,28.0449,26.5658,0.132128,1.34627,0.008384,0.005888,0.053024,0.1904,0.191072,24.4142,0.224448
+1089,35.0757,28.5098,28.6597,0.128128,1.42016,0.00928,0.005056,0.053248,0.188416,0.192512,26.4392,0.223776
+1090,33.6223,29.7422,26.5921,0.129888,1.36579,0.008384,0.005856,0.053184,0.18784,0.187328,24.4279,0.22592
+1091,35.6174,28.0762,26.5869,0.1304,1.38442,0.008384,0.00464,0.053216,0.188416,0.189696,24.3986,0.229152
+1092,34.6367,28.8711,28.1637,0.130496,1.71014,0.006912,0.006144,0.053248,0.188064,0.188192,25.6579,0.222592
+1093,33.011,30.293,26.6834,0.130112,1.48275,0.008352,0.004896,0.053248,0.188416,0.190432,24.403,0.222144
+1094,36.9728,27.0469,26.6752,0.130624,1.4504,0.008224,0.005984,0.053312,0.188512,0.18976,24.4252,0.223232
+1095,34.9512,28.6113,27.9299,0.1456,1.44134,0.018272,0.004704,0.05456,0.187232,0.192384,25.6421,0.243712
+1096,34.1812,29.2559,26.6179,0.132544,1.40666,0.008384,0.005856,0.053568,0.186976,0.187808,24.4108,0.22528
+1097,35.3689,28.2734,27.7934,0.135104,1.36531,0.008384,0.004672,0.053248,0.187488,0.18896,25.6229,0.22736
+1098,33.9861,29.4238,27.8364,0.131072,1.3919,0.008384,0.005888,0.052,0.188416,0.188416,25.6471,0.223232
+1099,34.2063,29.2344,26.5892,0.13008,1.38291,0.007648,0.00512,0.053248,0.198048,0.19312,24.397,0.221984
+1100,35.5877,28.0996,26.7012,0.129056,1.472,0.008384,0.005824,0.053312,0.188512,0.188864,24.432,0.223232
+1101,34.7496,28.7773,28.922,0.129376,1.68054,0.008384,0.004768,0.053248,0.188416,0.1896,26.4445,0.223072
+1102,32.9451,30.3535,26.6425,0.133152,1.41923,0.008288,0.006048,0.053248,0.188416,0.188416,24.4223,0.22336
+1103,34.7661,28.7637,26.5462,0.130976,1.32515,0.026624,0.006176,0.055296,0.186336,0.188416,24.4019,0.225312
+1104,35.8468,27.8965,27.9772,0.130368,1.49187,0.008192,0.006144,0.069632,0.202048,0.195296,25.6512,0.222464
+1105,33.7998,29.5859,26.621,0.135136,1.39869,0.008224,0.005568,0.064064,0.187616,0.195456,24.404,0.222304
+1106,35.2641,28.3574,26.6916,0.131072,1.4889,0.008192,0.006144,0.053024,0.18864,0.188416,24.404,0.223232
+1107,35.1624,28.4395,27.8999,0.1304,1.40678,0.008448,0.004736,0.054272,0.189088,0.1904,25.6943,0.221472
+1108,33.4204,29.9219,27.9839,0.13232,1.53885,0.018432,0.006144,0.053248,0.19456,0.188448,25.6286,0.223296
+1109,32.9812,30.3203,26.7965,0.130752,1.59546,0.008384,0.004704,0.054464,0.186784,0.1888,24.3999,0.227328
+1110,35.4939,28.1738,27.9307,0.12912,1.47818,0.008672,0.014336,0.054272,0.187424,0.188384,25.6487,0.2216
+1111,34.6016,28.9004,26.6836,0.130336,1.48115,0.008352,0.0056,0.052928,0.186784,0.189024,24.406,0.223456
+1112,35.662,28.041,26.6058,0.12928,1.38138,0.008384,0.005088,0.053088,0.19008,0.1888,24.4265,0.223232
+1113,34.7095,28.8105,28.9794,0.145632,1.72595,0.008352,0.005568,0.052224,0.189984,0.190848,26.4388,0.222016
+1114,33.1929,30.127,26.6056,0.133152,1.36394,0.008192,0.006176,0.053216,0.187936,0.188576,24.4387,0.225664
+1115,35.6447,28.0547,26.5997,0.13344,1.38608,0.00656,0.006144,0.053024,0.18624,0.198912,24.4041,0.22528
+1116,35.4792,28.1855,27.8511,0.130944,1.41347,0.008352,0.005856,0.05312,0.18688,0.1904,25.6368,0.22528
+1117,33.8961,29.502,26.6486,0.13024,1.44058,0.008192,0.005888,0.053056,0.192288,0.188672,24.4064,0.223232
+1118,35.1987,28.4102,26.6809,0.141312,1.42666,0.008384,0.005856,0.053888,0.202144,0.188544,24.4293,0.224832
+1119,35.7143,28,27.8172,0.129024,1.36147,0.008416,0.0056,0.05312,0.1872,0.188512,25.6611,0.222784
+1120,34.0516,29.3672,27.8296,0.130944,1.36614,0.008416,0.005952,0.053216,0.190496,0.19248,25.6532,0.228672
+1121,33.6931,29.6797,26.5468,0.133824,1.34346,0.00832,0.006016,0.053248,0.18752,0.187264,24.4037,0.22352
+1122,34.0811,29.3418,28.2533,0.1344,1.78432,0.007968,0.005856,0.053248,0.188192,0.196704,25.6582,0.224416
+1123,34.0448,29.373,26.5759,0.130816,1.36147,0.008384,0.004608,0.053376,0.188,0.188672,24.418,0.222496
+1124,36.6683,27.2715,26.5366,0.129632,1.31584,0.008384,0.005088,0.053088,0.188384,0.188256,24.4246,0.223264
+1125,35.5383,28.1387,28.7764,0.147232,1.47888,0.009344,0.004992,0.057344,0.202784,0.190368,26.4582,0.227328
+1126,32.36,30.9023,26.5974,0.132288,1.368,0.008384,0.005856,0.052192,0.188416,0.188416,24.4224,0.231424
+1127,34.9727,28.5938,26.7151,0.131808,1.51376,0.008192,0.006144,0.053088,0.186528,0.190208,24.4001,0.22528
+1128,34.9775,28.5898,27.8106,0.13104,1.37706,0.00928,0.005088,0.053216,0.188256,0.188576,25.6328,0.22528
+1129,33.9073,29.4922,26.627,0.129856,1.41514,0.00832,0.005664,0.053248,0.186848,0.188416,24.4179,0.221632
+1130,34.6086,28.8945,26.6525,0.135168,1.40701,0.00816,0.006144,0.053248,0.19856,0.192608,24.4285,0.22304
+1131,36.2966,27.5508,27.851,0.12928,1.39984,0.008384,0.004896,0.053248,0.188416,0.190464,25.6545,0.221952
+1132,34.3026,29.1523,27.6948,0.129664,1.33245,0.008416,0.005888,0.053568,0.188896,0.192192,25.5406,0.243072
+1133,33.6311,29.7344,26.6588,0.139136,1.43987,0.008352,0.005984,0.056672,0.187072,0.18976,24.408,0.223968
+1134,33.4859,29.8633,28.1833,0.132896,1.64336,0.008032,0.005856,0.053152,0.187136,0.188224,25.7393,0.225344
+1135,35.6794,28.0273,26.6124,0.129728,1.39875,0.008192,0.006144,0.053184,0.186432,0.188416,24.4183,0.223296
+1136,35.218,28.3945,26.6936,0.129024,1.47008,0.00832,0.005856,0.053248,0.186944,0.191488,24.4249,0.223776
+1137,35.6844,28.0234,27.8856,0.130752,1.4503,0.008224,0.006112,0.055296,0.198496,0.189984,25.6244,0.221984
+1138,33.8401,29.5508,26.6986,0.142208,1.45411,0.00816,0.006144,0.053248,0.19024,0.190592,24.4307,0.223232
+1139,35.5407,28.1367,26.6011,0.131072,1.3783,0.009248,0.00512,0.053216,0.189568,0.19248,24.4191,0.222976
+1140,34.8916,28.6602,28.011,0.130848,1.55658,0.008352,0.005888,0.053312,0.187328,0.194112,25.6496,0.22496
+1141,33.6665,29.7031,26.6978,0.131072,1.4807,0.018432,0.005696,0.053216,0.190944,0.190464,24.4021,0.22512
+1142,35.2714,28.3516,26.6951,0.130912,1.47619,0.008384,0.005856,0.051872,0.189728,0.187104,24.4163,0.228768
+1143,34.6414,28.8672,28.0147,0.129088,1.57901,0.008192,0.006144,0.053248,0.187776,0.18848,25.6409,0.221824
+1144,34.7307,28.793,26.5389,0.130912,1.32717,0.008352,0.005984,0.053248,0.18784,0.188416,24.4145,0.222464
+1145,34.8347,28.707,27.7279,0.129024,1.68339,0.008288,0.005664,0.053056,0.188256,0.190624,25.2476,0.221984
+1146,34.2796,29.1719,27.8344,0.132128,1.37725,0.00832,0.006016,0.053248,0.188352,0.188352,25.6554,0.22528
+1147,32.6032,30.6719,27.0181,0.144256,1.77536,0.017728,0.005056,0.053248,0.186304,0.202272,24.4066,0.22736
+1148,35.8293,27.9102,27.1116,0.129408,1.52368,0.008192,0.006048,0.053184,0.186528,0.188416,24.793,0.223232
+1149,33.9973,29.4141,28.4869,0.130176,2.07555,0.009216,0.00512,0.053248,0.188416,0.188448,25.6135,0.2232
+1150,33.7241,29.6523,26.6756,0.131488,1.45555,0.008736,0.005856,0.053376,0.189792,0.190784,24.4168,0.223232
+1151,35.1359,28.4609,26.6609,0.130944,1.43222,0.026816,0.015456,0.053504,0.186848,0.19008,24.4003,0.224736
+1152,35.3055,28.3242,27.8575,0.132768,1.42224,0.009408,0.005024,0.053152,0.189504,0.18736,25.6307,0.227392
+1153,33.7419,29.6367,26.6813,0.129056,1.45773,0.008352,0.005632,0.0536,0.186784,0.200704,24.4156,0.223936
+1154,35.5309,28.1445,26.6506,0.130688,1.41318,0.008352,0.005856,0.053184,0.188928,0.188416,24.4384,0.223648
+1155,35.4718,28.1914,27.7857,0.12944,1.33734,0.008416,0.005952,0.053216,0.187648,0.19328,25.642,0.228384
+1156,33.6886,29.6836,26.937,0.138368,1.33008,0.008256,0.006048,0.053248,0.1896,0.189312,24.7992,0.22288
+1157,33.4772,29.8711,27.8405,0.13424,1.39357,0.008384,0.005984,0.053216,0.190464,0.195808,25.6356,0.223264
+1158,33.6355,29.7305,26.8036,0.13312,1.54624,0.008192,0.014368,0.063456,0.189472,0.195584,24.4265,0.226656
+1159,36.4309,27.4492,26.6034,0.130656,1.40064,0.008512,0.0056,0.052032,0.188032,0.1888,24.4013,0.227808
+1160,35.1987,28.4102,27.885,0.129344,1.45408,0.008448,0.00592,0.053216,0.187936,0.188352,25.6354,0.222336
+1161,34.0788,29.3438,26.6033,0.130624,1.40947,0.008224,0.006112,0.053216,0.186432,0.189888,24.3973,0.222016
+1162,35.3982,28.25,26.6399,0.130816,1.41341,0.00816,0.006144,0.053248,0.188448,0.190048,24.4269,0.22272
+1163,35.6397,28.0586,27.8162,0.129248,1.36954,0.008352,0.005568,0.052224,0.188384,0.190208,25.6494,0.223232
+1164,33.4116,29.9297,27.8816,0.1312,1.41875,0.008384,0.005856,0.052896,0.187328,0.188416,25.6635,0.22528
+1165,33.5738,29.7852,26.63,0.130336,1.4137,0.008352,0.005568,0.053504,0.186816,0.189664,24.413,0.229152
+1166,33.4859,29.8633,28.3505,0.129664,1.89846,0.0184,0.005856,0.053568,0.188224,0.188608,25.645,0.222688
+1167,35.0925,28.4961,26.6118,0.129344,1.41517,0.008192,0.006112,0.05328,0.188256,0.190656,24.3978,0.22304
+1168,35.0157,28.5586,26.708,0.13296,1.47792,0.008352,0.00592,0.053312,0.189344,0.192256,24.4247,0.223232
+1169,35.4276,28.2266,28.5631,0.12848,1.3457,0.008416,0.005568,0.05312,0.188256,0.191488,26.4186,0.223456
+1170,33.0792,30.2305,26.6156,0.130784,1.37587,0.008352,0.005856,0.052032,0.188416,0.188256,24.4383,0.227712
+1171,35.0541,28.5273,26.626,0.12992,1.3967,0.008192,0.014336,0.06144,0.187552,0.188768,24.4139,0.22512
+1172,33.6311,29.7344,28.0238,0.129888,1.55238,0.008192,0.006176,0.055264,0.193536,0.19728,25.6597,0.221312
+1173,35.9702,27.8008,26.6531,0.129376,1.4575,0.008352,0.0048,0.054112,0.188608,0.189248,24.3998,0.221248
+1174,35.3836,28.2617,26.6193,0.130784,1.38595,0.008736,0.00592,0.05296,0.197344,0.18848,24.4258,0.22336
+1175,35.0925,28.4961,27.8614,0.131104,1.42893,0.008352,0.004736,0.053216,0.190112,0.190816,25.6164,0.237728
+1176,33.8445,29.5469,26.5727,0.13136,1.3576,0.008352,0.006528,0.053248,0.187776,0.18704,24.4162,0.224608
+1177,35.6199,28.0742,26.587,0.133024,1.38646,0.008416,0.005568,0.05296,0.18688,0.18848,24.3999,0.225344
+1178,34.9727,28.5938,27.7873,0.134176,1.33974,0.008352,0.005824,0.052032,0.188384,0.188416,25.6469,0.223456
+1179,34.4688,29.0117,26.708,0.129024,1.48278,0.00816,0.006048,0.063168,0.186784,0.188448,24.4195,0.224064
+1180,35.4423,28.2148,27.8796,0.129216,1.44314,0.008352,0.006112,0.05328,0.188256,0.18864,25.6394,0.223232
+1181,33.4859,29.8633,27.9489,0.129184,1.48189,0.008352,0.00464,0.053472,0.188192,0.190464,25.6691,0.223616
+1182,34.3026,29.1523,26.5797,0.131008,1.33789,0.008416,0.005952,0.053248,0.188192,0.18816,24.4265,0.240352
+1183,35.3787,28.2656,26.5624,0.132672,1.3553,0.008352,0.004864,0.053248,0.1864,0.190016,24.4078,0.223744
+1184,33.7464,29.6328,27.9984,0.132512,1.53277,0.00928,0.005024,0.053312,0.20064,0.201984,25.6367,0.226176
+1185,33.5254,29.8281,26.9554,0.129472,1.76106,0.008064,0.005632,0.053088,0.1864,0.188768,24.4005,0.2224
+1186,36.4413,27.4414,26.7183,0.13024,1.48781,0.008288,0.006048,0.05328,0.201696,0.18944,24.4184,0.223168
+1187,35.4325,28.2227,27.8693,0.12912,1.43126,0.008352,0.005632,0.052928,0.18736,0.190464,25.643,0.221184
+1188,34.0426,29.375,26.6301,0.131072,1.40627,0.008384,0.005856,0.053184,0.190368,0.19248,24.4193,0.223232
+1189,33.8983,29.5,27.7608,0.127488,1.64368,0.008512,0.012832,0.054624,0.190624,0.188928,25.3102,0.223936
+1190,34.726,28.7969,27.8897,0.129024,1.41722,0.008192,0.006144,0.053248,0.188352,0.197856,25.6664,0.223232
+1191,31.7697,31.4766,28.1692,0.130048,2.93824,0.008672,0.0056,0.053344,0.194784,0.190816,24.4245,0.223264
+1192,34.9107,28.6445,27.8396,0.131072,1.4641,0.008352,0.005568,0.053536,0.190816,0.192512,25.5687,0.22496
+1193,34.5386,28.9531,27.8508,0.133024,1.39072,0.00816,0.006144,0.053248,0.187648,0.197376,25.6492,0.22528
+1194,34.4595,29.0195,26.9373,0.131072,1.32714,0.008288,0.006016,0.053248,0.188448,0.189824,24.806,0.227328
+1195,35.1407,28.457,27.3906,0.129696,1.33504,0.008352,0.005568,0.053344,0.186816,0.188544,25.2614,0.221824
+1196,34.6789,28.8359,27.8118,0.130304,1.35011,0.008352,0.006272,0.053248,0.188416,0.204832,25.6489,0.22144
+1197,33.9568,29.4492,26.565,0.129408,1.35987,0.008192,0.006176,0.053216,0.188,0.190656,24.4062,0.2232
+1198,35.1503,28.4492,26.8241,0.144608,1.6,0.008352,0.005856,0.053344,0.19056,0.190656,24.4081,0.222656
+1199,35.8543,27.8906,27.8322,0.129632,1.35075,0.008448,0.0048,0.054272,0.1888,0.192128,25.6805,0.22288
+1200,33.7197,29.6562,27.093,0.133024,1.48608,0.008416,0.005824,0.053568,0.187008,0.188416,24.8068,0.223872
+1201,35.2326,28.3828,27.4248,0.130752,1.36019,0.009664,0.004704,0.053216,0.188128,0.188704,25.2641,0.22528
+1202,34.6133,28.8906,27.8589,0.130272,1.40714,0.008352,0.005856,0.053344,0.188192,0.189248,25.655,0.221568
+1203,33.8401,29.5508,26.6189,0.130624,1.41152,0.008192,0.00608,0.05312,0.186592,0.190208,24.4103,0.222208
+1204,33.2857,30.043,28.0386,0.13008,1.60435,0.007648,0.005088,0.053024,0.189856,0.191072,25.6346,0.222848
+1205,35.6347,28.0625,28.0289,0.131104,1.5023,0.007136,0.006048,0.053248,0.186368,0.188448,25.729,0.22528
+1206,33.1778,30.1406,26.5933,0.130816,1.39424,0.008352,0.005888,0.053376,0.18704,0.189536,24.3982,0.225824
+1207,36.0056,27.7734,26.6793,0.130688,1.46675,0.008256,0.00608,0.053248,0.186368,0.188416,24.4142,0.225312
+1208,35.6298,28.0664,29.0509,0.130624,1.42522,0.008448,0.005856,0.052896,0.187424,0.188384,26.8288,0.223232
+1209,32.3723,30.8906,26.6312,0.131136,1.42624,0.008192,0.006016,0.053408,0.189856,0.191072,24.4019,0.22336
+1210,35.1359,28.4609,26.6095,0.131072,1.3903,0.008352,0.005856,0.053248,0.192,0.190688,24.4149,0.22304
+1211,35.2957,28.332,27.9689,0.130432,1.48947,0.008352,0.0056,0.053184,0.187136,0.18944,25.6788,0.2264
+1212,33.7597,29.6211,26.6216,0.130112,1.3977,0.008192,0.006144,0.053248,0.187872,0.18848,24.4208,0.228992
+1213,35.2909,28.3359,26.5892,0.131072,1.36397,0.008192,0.005984,0.0616,0.187808,0.188704,24.4166,0.225248
+1214,35.5309,28.1445,27.9368,0.130144,1.48125,0.008352,0.005856,0.05376,0.188416,0.199872,25.6474,0.221696
+1215,33.587,29.7734,26.659,0.129344,1.42746,0.0216,0.005024,0.053248,0.187904,0.19216,24.4186,0.223648
+1216,35.7292,27.9883,27.7646,0.130272,1.67379,0.008384,0.005856,0.053568,0.188416,0.189856,25.2868,0.22768
+1217,34.4967,28.9883,27.8057,0.131072,1.36125,0.008352,0.004608,0.054336,0.187328,0.192512,25.6426,0.223648
+1218,33.9163,29.4844,26.6281,0.13248,1.40355,0.009408,0.005088,0.053056,0.188448,0.188384,24.4224,0.22528
+1219,35.9551,27.8125,26.9365,0.136416,1.332,0.008192,0.005856,0.053088,0.186912,0.189824,24.7992,0.225024
+1220,35.2909,28.3359,28.6065,0.130528,1.35021,0.00816,0.006176,0.053056,0.188192,0.188736,26.4595,0.221984
+1221,33.1263,30.1875,26.5583,0.14528,1.34186,0.008192,0.006144,0.053248,0.191616,0.189344,24.3998,0.222784
+1222,35.7292,27.9883,26.6043,0.129696,1.39072,0.008192,0.006176,0.053184,0.188448,0.189664,24.4161,0.222144
+1223,35.2471,28.3711,27.8343,0.130336,1.3761,0.008192,0.004992,0.053248,0.188416,0.190368,25.6595,0.223168
+1224,33.9118,29.4883,26.6117,0.131072,1.39469,0.008192,0.006112,0.052992,0.190752,0.189696,24.4166,0.221632
+1225,35.6894,28.0195,26.5995,0.131104,1.36806,0.008224,0.005824,0.053184,0.186752,0.189792,24.4204,0.236128
+1226,34.7637,28.7656,27.8958,0.131072,1.45949,0.008352,0.005856,0.053184,0.187296,0.198656,25.6266,0.22528
+1227,34.1698,29.2656,27.1156,0.130464,1.50739,0.008352,0.0056,0.052128,0.186368,0.195744,24.8042,0.225408
+1228,35.6199,28.0742,27.4391,0.130784,1.36016,0.008192,0.006048,0.052896,0.186816,0.188416,25.2846,0.221216
+1229,34.4086,29.0625,27.8808,0.129152,1.4336,0.00928,0.005056,0.053248,0.192512,0.190208,25.6451,0.222624
+1230,33.7686,29.6133,26.698,0.129632,1.46227,0.008192,0.006144,0.053248,0.190464,0.190208,24.4345,0.22336
+1231,35.4031,28.2461,27.8958,0.130368,1.45238,0.008384,0.005568,0.053248,0.19024,0.189376,25.643,0.2232
+1232,33.9253,29.4766,27.9189,0.133536,1.45821,0.008288,0.005856,0.053408,0.186656,0.188416,25.6551,0.229408
+1233,34.0019,29.4102,26.7016,0.129248,1.4863,0.008352,0.0056,0.052128,0.187808,0.189024,24.4122,0.231008
+1234,35.4423,28.2148,26.6767,0.130528,1.46458,0.008352,0.005856,0.052864,0.1872,0.188064,24.416,0.2232
+1235,34.6649,28.8477,27.9081,0.130592,1.3583,0.008416,0.00592,0.053248,0.196576,0.189696,25.7432,0.222112
+1236,33.9793,29.4297,26.7844,0.129824,1.5544,0.007584,0.0048,0.053152,0.190464,0.202752,24.4183,0.223104
+1237,35.3982,28.25,26.6425,0.130912,1.43795,0.008192,0.006144,0.053248,0.188416,0.192512,24.4019,0.223232
+1238,35.5654,28.1172,27.8712,0.136928,1.41869,0.008384,0.005856,0.053216,0.191328,0.188576,25.6429,0.225312
+1239,34.1972,29.2422,26.6682,0.131072,1.45149,0.008384,0.005536,0.05216,0.188416,0.18976,24.4168,0.224576
+1240,35.7792,27.9492,27.8242,0.131072,1.35987,0.008192,0.006144,0.053248,0.188352,0.18848,25.6586,0.23024
+1241,33.9883,29.4219,27.8912,0.129568,1.43562,0.00832,0.006016,0.053248,0.187616,0.188864,25.6597,0.22224
+1242,33.5738,29.7852,26.7745,0.140256,1.55005,0.008384,0.005888,0.053056,0.188448,0.193024,24.4121,0.223296
+1243,35.7143,28,26.9599,0.131008,1.3617,0.008352,0.0056,0.053344,0.188704,0.189824,24.7995,0.221888
+1244,34.9297,28.6289,27.944,0.13312,1.47661,0.008192,0.006144,0.053248,0.191648,0.18928,25.6614,0.224288
+1245,33.7108,29.6641,26.6752,0.133024,1.47053,0.008448,0.005664,0.053216,0.186848,0.188608,24.404,0.224832
+1246,35.0877,28.5,26.6629,0.132448,1.42938,0.008416,0.01456,0.057696,0.187808,0.186976,24.4183,0.227328
+1247,35.9097,27.8477,27.7895,0.129184,1.34554,0.008224,0.006112,0.053216,0.1864,0.189504,25.6496,0.221728
+1248,33.609,29.7539,26.824,0.129248,1.60902,0.008352,0.005888,0.053632,0.192928,0.198656,24.4039,0.222304
+1249,35.5753,28.1094,26.6158,0.13072,1.3905,0.008384,0.0056,0.053568,0.186848,0.18992,24.427,0.223232
+1250,35.4129,28.2383,27.8692,0.130464,1.4176,0.008352,0.005856,0.053504,0.188064,0.188512,25.6547,0.222144
+1251,33.9568,29.4492,26.6793,0.130912,1.47584,0.008448,0.004768,0.053248,0.190528,0.190208,24.4036,0.221728
+1252,35.7243,27.9922,27.4493,0.137216,1.37421,0.009312,0.005088,0.053184,0.191648,0.19056,25.2649,0.223232
+1253,34.4086,29.0625,27.8692,0.1424,1.42227,0.008192,0.005856,0.053248,0.186688,0.188384,25.6328,0.229344
+1254,33.8535,29.5391,26.5842,0.131104,1.35555,0.008384,0.005856,0.052704,0.187232,0.188384,24.4265,0.228448
+1255,35.4227,28.2305,27.0044,0.130176,1.4264,0.008192,0.005952,0.053056,0.186528,0.188608,24.7829,0.22256
+1256,34.5572,28.9375,28.3746,0.130912,1.92528,0.008192,0.006176,0.056352,0.188704,0.188256,25.6479,0.222816
+1257,33.733,29.6445,26.6485,0.130816,1.44438,0.008192,0.006112,0.05328,0.190336,0.190592,24.4019,0.222848
+1258,35.2035,28.4062,26.7203,0.131104,1.50934,0.008192,0.006016,0.053088,0.190752,0.188448,24.4101,0.223264
+1259,35.9046,27.8516,27.7934,0.131072,1.34758,0.008224,0.005824,0.052864,0.18704,0.1896,25.6476,0.223552
+1260,33.5782,29.7812,26.8149,0.13088,1.56147,0.008224,0.006112,0.059424,0.188384,0.190368,24.4422,0.227776
+1261,32.9049,30.3906,28.2542,0.130592,1.75562,0.008192,0.005856,0.065824,0.19616,0.188864,25.6817,0.221376
+1262,35.107,28.4844,26.6262,0.13104,1.41315,0.008192,0.006144,0.053152,0.188064,0.188672,24.4161,0.221696
+1263,36.5036,27.3945,26.6055,0.129632,1.40493,0.008192,0.00576,0.053056,0.186944,0.189792,24.4046,0.222592
+1264,35.189,28.418,28.9505,0.129024,1.6855,0.008288,0.006048,0.053248,0.190464,0.190464,26.4657,0.221792
+1265,33.3507,29.9844,26.5724,0.134944,1.34557,0.008384,0.0056,0.053216,0.186944,0.19024,24.4226,0.224928
+1266,35.5013,28.168,26.5851,0.133152,1.35478,0.008352,0.00512,0.054272,0.187168,0.190464,24.4265,0.225248
+1267,35.1503,28.4492,27.9827,0.129984,1.50278,0.00864,0.0056,0.053312,0.186848,0.188416,25.684,0.223072
+1268,31.7264,31.5195,26.6698,0.12976,1.39878,0.018048,0.005984,0.072224,0.2048,0.188416,24.4285,0.223232
+1269,38.0443,26.2852,26.5821,0.129088,1.34547,0.008288,0.006048,0.053248,0.187616,0.189216,24.4399,0.2232
+1270,35.1697,28.4336,27.8461,0.130848,1.41306,0.008352,0.005856,0.053568,0.18848,0.189728,25.6334,0.222816
+1271,34.2155,29.2266,26.5482,0.130464,1.34,0.008192,0.006016,0.053376,0.196608,0.192512,24.3991,0.221984
+1272,35.3982,28.25,27.8789,0.131072,1.41926,0.008352,0.005984,0.053248,0.192352,0.18864,25.6552,0.224768
+1273,34.1835,29.2539,27.7681,0.130688,1.34182,0.008192,0.00592,0.053504,0.186336,0.188064,25.627,0.22656
+1274,34.3256,29.1328,26.59,0.129888,1.3537,0.00944,0.005088,0.053184,0.188288,0.198176,24.4262,0.226016
+1275,34.8205,28.7188,26.6358,0.135232,1.40493,0.014432,0.006048,0.053248,0.1864,0.188416,24.4224,0.224736
+1276,33.4684,29.8789,28.2829,0.130656,1.81216,0.008576,0.005856,0.062048,0.188352,0.188672,25.6633,0.223232
+1277,35.5902,28.0977,26.561,0.131232,1.34909,0.008352,0.004768,0.053408,0.188288,0.19248,24.4113,0.22208
+1278,35.4964,28.1719,26.5884,0.130464,1.35446,0.008192,0.02048,0.062496,0.191392,0.188,24.4085,0.224384
+1279,35.5605,28.1211,27.9052,0.131072,1.46227,0.008192,0.005856,0.053024,0.190976,0.190464,25.6389,0.224448
+1280,34.0426,29.375,27.88,0.133696,1.40685,0.00832,0.013472,0.053472,0.188096,0.188896,25.6599,0.227328
+1281,33.7419,29.6367,26.757,0.130048,1.5616,0.008192,0.005824,0.053184,0.186752,0.202144,24.3859,0.22336
+1282,34.2842,29.168,28.1114,0.129568,1.63222,0.02048,0.006144,0.053248,0.20048,0.192736,25.6544,0.22208
+1283,34.8347,28.707,26.6998,0.138496,1.48138,0.008288,0.005696,0.053408,0.188672,0.191648,24.409,0.223232
+1284,35.2132,28.3984,26.7429,0.130976,1.51933,0.008512,0.01488,0.05312,0.189856,0.1912,24.4114,0.22368
+1285,34.9631,28.6016,29.0859,0.131104,1.44598,0.02448,0.005632,0.053376,0.188896,0.189632,26.8214,0.225344
+1286,32.926,30.3711,26.6044,0.129856,1.37216,0.008192,0.006144,0.053248,0.188416,0.196608,24.4224,0.227296
+1287,35.2132,28.3984,26.7387,0.13008,1.52803,0.008352,0.004736,0.053248,0.18768,0.189152,24.4142,0.223232
+1288,35.7492,27.9727,27.8345,0.130272,1.40176,0.008352,0.005984,0.053248,0.188416,0.188416,25.636,0.222048
+1289,34.2292,29.2148,26.5738,0.130208,1.36074,0.008192,0.005984,0.053024,0.188384,0.190368,24.4139,0.223008
+1290,35.5951,28.0938,26.5871,0.129024,1.35987,0.008192,0.006048,0.053152,0.188608,0.189856,24.4291,0.223264
+1291,35.0014,28.5703,27.8805,0.139168,1.43296,0.00864,0.005568,0.053696,0.18848,0.190816,25.622,0.2392
+1292,33.7375,29.6406,28.0635,0.132672,1.6081,0.008224,0.006016,0.053088,0.187936,0.187136,25.6512,0.229152
+1293,34.2338,29.2109,26.6745,0.130592,1.4769,0.008384,0.005568,0.053472,0.186272,0.188864,24.3974,0.227104
+1294,35.218,28.3945,27.9513,0.129888,1.49299,0.008224,0.006112,0.053248,0.188416,0.189568,25.6598,0.22304
+1295,33.2684,30.0586,26.7428,0.129408,1.52304,0.018912,0.006016,0.05344,0.188032,0.199168,24.4018,0.222976
+1296,35.6496,28.0508,27.9255,0.130496,1.46698,0.008384,0.005952,0.053216,0.190304,0.188576,25.6585,0.223136
+1297,34.2429,29.2031,27.8337,0.131072,1.36301,0.008384,0.004864,0.053248,0.188,0.188832,25.6717,0.22464
+1298,33.9028,29.4961,26.6332,0.131072,1.39878,0.00832,0.006048,0.053216,0.188416,0.188416,24.4322,0.226816
+1299,34.1424,29.2891,26.6895,0.130304,1.47731,0.008256,0.005568,0.051776,0.188,0.188832,24.4132,0.226272
+1300,36.4672,27.4219,27.8979,0.131072,1.46432,0.008192,0.00608,0.053312,0.188416,0.188416,25.6364,0.221696
+1301,33.3942,29.9453,26.625,0.129376,1.41789,0.008192,0.005984,0.053408,0.187968,0.188992,24.4114,0.221856
+1302,35.9349,27.8281,26.7058,0.12912,1.47866,0.008192,0.006144,0.053216,0.18848,0.190112,24.4286,0.223296
+1303,35.3542,28.2852,27.8897,0.141312,1.41926,0.008256,0.00608,0.053248,0.188448,0.190432,25.6545,0.22816
+1304,34.0879,29.3359,27.8221,0.132672,1.37984,0.008352,0.00512,0.053152,0.188288,0.188416,25.641,0.22528
+1305,34.0697,29.3516,26.624,0.130528,1.40957,0.008192,0.006144,0.053248,0.187392,0.188672,24.4129,0.227328
+1306,35.5951,28.0938,27.8791,0.130144,1.41776,0.008416,0.005856,0.053408,0.186656,0.188416,25.6655,0.222944
+1307,33.9163,29.4844,26.6424,0.130368,1.41696,0.008384,0.004864,0.05328,0.200128,0.192288,24.415,0.221184
+1308,35.5605,28.1211,27.8856,0.130272,1.39962,0.00928,0.005088,0.053184,0.188448,0.1896,25.688,0.222112
+1309,33.9568,29.4492,27.8228,0.12976,1.41459,0.008352,0.0056,0.053344,0.189312,0.191808,25.6068,0.223264
+1310,33.8266,29.5625,26.7226,0.133088,1.49738,0.008192,0.006048,0.052896,0.187936,0.188832,24.4246,0.223616
+1311,35.4767,28.1875,26.6163,0.130752,1.41805,0.008192,0.006144,0.052992,0.1864,0.188288,24.4002,0.22528
+1312,35.6001,28.0898,27.8241,0.132352,1.37293,0.008192,0.006176,0.053216,0.188416,0.188416,25.6471,0.227328
+1313,34.1379,29.293,26.63,0.129024,1.42954,0.009376,0.004928,0.053248,0.186368,0.189728,24.4038,0.223936
+1314,35.8895,27.8633,26.6053,0.129344,1.38243,0.00816,0.006144,0.053248,0.188416,0.188416,24.4262,0.222976
+1315,35.6794,28.0273,27.7852,0.130336,1.34832,0.008224,0.00608,0.053216,0.186464,0.188416,25.6425,0.221696
+1316,34.2612,29.1875,26.5687,0.129856,1.35168,0.008192,0.006144,0.053248,0.189504,0.18928,24.4181,0.222624
+1317,35.3445,28.293,27.7667,0.129536,1.70186,0.008192,0.006144,0.053248,0.188288,0.189952,25.2668,0.222624
+1318,34.4688,29.0117,27.8341,0.131072,1.39194,0.008416,0.00592,0.05312,0.188576,0.19248,25.6376,0.224992
+1319,34.3763,29.0898,26.5503,0.13312,1.32646,0.008384,0.005568,0.052224,0.187776,0.189056,24.4224,0.22528
+1320,35.8042,27.9297,26.9312,0.131072,1.33507,0.008352,0.005856,0.052896,0.187104,0.188416,24.7972,0.225248
+1321,35.3347,28.3008,28.5636,0.131136,1.33094,0.008352,0.0056,0.051968,0.187872,0.188992,26.4376,0.221184
+1322,33.3377,29.9961,26.5851,0.130752,1.36214,0.008288,0.00592,0.053344,0.191904,0.200928,24.4086,0.223232
+1323,35.7642,27.9609,26.582,0.129184,1.34947,0.008192,0.006144,0.053248,0.204032,0.189184,24.4204,0.222208
+1324,35.6993,28.0117,27.8671,0.13024,1.42218,0.009312,0.005088,0.053152,0.188416,0.189888,25.6469,0.22192
+1325,33.8088,29.5781,26.6199,0.131104,1.4081,0.00848,0.004704,0.054272,0.18944,0.192544,24.408,0.223232
+1326,35.5704,28.1133,26.6077,0.130496,1.3824,0.008352,0.005856,0.06752,0.191296,0.188416,24.4101,0.223232
+1327,34.5432,28.9492,28.0921,0.131104,1.61587,0.02048,0.006144,0.053248,0.186368,0.190016,25.6639,0.224928
+1328,33.7642,29.6172,27.8759,0.14032,1.41712,0.008288,0.006048,0.053248,0.187392,0.187392,25.6532,0.222816
+1329,32.7827,30.5039,26.7919,0.130144,1.56765,0.008224,0.006112,0.053248,0.192512,0.190368,24.4204,0.223232
+1330,36.8398,27.1445,27.8231,0.140576,1.36035,0.008352,0.005856,0.053184,0.1888,0.19648,25.6472,0.222304
+1331,33.7419,29.6367,26.5605,0.131008,1.35162,0.00832,0.005632,0.053312,0.198336,0.192768,24.3963,0.223232
+1332,36.0767,27.7188,26.5752,0.129984,1.35373,0.008192,0.006144,0.053248,0.200704,0.190464,24.4101,0.222656
+1333,35.5309,28.1445,29.006,0.128608,1.39526,0.008192,0.005824,0.053248,0.190816,0.190304,26.808,0.22576
+1334,32.8374,30.4531,26.6037,0.129184,1.39043,0.008384,0.005856,0.053088,0.188832,0.188416,24.4142,0.225312
+1335,35.3836,28.2617,26.6849,0.129024,1.44352,0.008352,0.0056,0.05312,0.186848,0.188768,24.4444,0.225312
+1336,35.4571,28.2031,27.831,0.129824,1.4111,0.00832,0.005984,0.053344,0.188352,0.1976,25.6133,0.2232
+1337,34.1197,29.3086,26.5912,0.130784,1.38883,0.008288,0.006048,0.053248,0.188416,0.189952,24.4024,0.223232
+1338,35.5062,28.1641,26.583,0.130304,1.36678,0.008192,0.006048,0.053056,0.188704,0.188448,24.4197,0.221792
+1339,35.2811,28.3438,27.8183,0.130656,1.35674,0.00816,0.006144,0.053248,0.196224,0.190848,25.6328,0.243488
+1340,34.1242,29.3047,27.7625,0.133152,1.3448,0.008384,0.005824,0.052096,0.18816,0.18848,25.6157,0.225888
+1341,33.4204,29.9219,26.9621,0.133248,1.74826,0.008416,0.005632,0.057344,0.190976,0.188864,24.4034,0.22592
+1342,35.8996,27.8555,27.8303,0.130912,1.35798,0.008224,0.006112,0.053248,0.188416,0.188416,25.6752,0.221728
+1343,34.188,29.25,26.5493,0.130432,1.34003,0.008192,0.006144,0.053248,0.18752,0.189344,24.4101,0.224256
+1344,35.5704,28.1133,26.6045,0.129952,1.37744,0.008352,0.0048,0.053248,0.190048,0.188256,24.4291,0.223296
+1345,34.7732,28.7578,29.3254,0.12912,1.71526,0.008352,0.004896,0.054336,0.187328,0.190464,26.8116,0.224
+1346,32.9388,30.3594,26.5526,0.130624,1.33728,0.008384,0.005856,0.053344,0.187232,0.188224,24.4164,0.225184
+1347,35.4816,28.1836,26.6534,0.133024,1.44874,0.008352,0.005984,0.053248,0.186432,0.189472,24.4047,0.223456
+1348,35.6844,28.0234,27.8037,0.131008,1.34563,0.008192,0.00592,0.053024,0.188864,0.18816,25.6596,0.223232
+1349,33.416,29.9258,26.5848,0.130368,1.35238,0.008288,0.00608,0.053216,0.186368,0.208704,24.4164,0.222912
+1350,35.7093,28.0039,26.6775,0.12928,1.45594,0.008352,0.006176,0.053216,0.188416,0.188416,24.4244,0.223264
+1351,35.5309,28.1445,27.8991,0.130816,1.45638,0.008384,0.005952,0.053248,0.18832,0.18976,25.6437,0.22256
+1352,34.1151,29.3125,27.0686,0.130432,1.4631,0.009312,0.005088,0.053184,0.191648,0.191392,24.8012,0.223232
+1353,35.1938,28.4141,26.5605,0.1344,1.35213,0.008384,0.005632,0.053824,0.190528,0.190368,24.4034,0.221856
+1354,35.7442,27.9766,27.8086,0.131424,1.36032,0.008192,0.005888,0.05312,0.1888,0.190208,25.6468,0.223872
+1355,34.0199,29.3945,26.5687,0.131072,1.35773,0.00832,0.005632,0.053728,0.186368,0.188416,24.4122,0.22528
+1356,34.944,28.6172,27.9348,0.129184,1.44589,0.00944,0.00512,0.053024,0.188416,0.188448,25.692,0.223264
+1357,34.2017,29.2383,27.8932,0.130784,1.43152,0.008416,0.0056,0.053216,0.190304,0.201184,25.6495,0.222656
+1358,33.9163,29.4844,26.6568,0.13312,1.43731,0.008256,0.005984,0.053728,0.18976,0.18912,24.4163,0.223232
+1359,35.3445,28.293,26.7252,0.129888,1.50934,0.008352,0.005984,0.053248,0.190464,0.192768,24.4119,0.223232
+1360,35.6199,28.0742,27.902,0.131104,1.42128,0.009344,0.005024,0.053216,0.190464,0.190368,25.6795,0.221696
+1361,34.0019,29.4102,26.6887,0.13424,1.4632,0.009248,0.005088,0.053344,0.18768,0.188544,24.4219,0.225408
+1362,35.3542,28.2852,26.6941,0.131584,1.48074,0.00816,0.006144,0.053248,0.188256,0.188608,24.4118,0.225568
+1363,34.8157,28.7227,27.978,0.130368,1.52397,0.008352,0.004736,0.054272,0.1872,0.188096,25.6599,0.221152
+1364,33.7241,29.6523,26.6527,0.130496,1.44032,0.008224,0.006016,0.052992,0.188512,0.188704,24.4142,0.223232
+1365,34.9202,28.6367,27.9226,0.129216,1.82019,0.008384,0.005632,0.053056,0.187328,0.189888,25.3074,0.221568
+1366,33.9928,29.418,27.9123,0.1312,1.42746,0.008192,0.006144,0.053248,0.189696,0.191232,25.6811,0.224064
+1367,33.8445,29.5469,26.7238,0.13264,1.50576,0.008192,0.006144,0.062624,0.187136,0.188512,24.4072,0.225632
+1368,34.8299,28.7109,27.2824,0.130016,1.67325,0.008192,0.006144,0.05328,0.188384,0.188416,24.8115,0.223232
+1369,34.2475,29.1992,29.1049,0.1296,1.7367,0.008192,0.006144,0.067328,0.198944,0.20048,26.5359,0.221632
+1370,33.1606,30.1562,26.6851,0.130752,1.46067,0.009312,0.00512,0.054208,0.188704,0.191168,24.4224,0.222752
+1371,35.0685,28.5156,26.694,0.129984,1.46637,0.008192,0.006144,0.053248,0.18752,0.189312,24.4141,0.239168
+1372,35.7892,27.9414,27.7975,0.131072,1.36397,0.008192,0.006144,0.053248,0.188416,0.188416,25.6318,0.22624
+1373,34.2567,29.1914,26.597,0.130496,1.38298,0.008192,0.006144,0.053248,0.186368,0.189504,24.4122,0.227936
+1374,35.325,28.3086,26.6445,0.130816,1.41328,0.008288,0.005984,0.053216,0.187616,0.18736,24.4302,0.22768
+1375,35.4767,28.1875,27.9161,0.129312,1.45005,0.00816,0.006144,0.053152,0.186208,0.188672,25.6717,0.222752
+1376,33.9208,29.4805,26.6876,0.129568,1.46992,0.008704,0.005856,0.053312,0.188672,0.189824,24.4189,0.222848
+1377,34.9393,28.6211,27.7868,0.130496,1.71475,0.008192,0.006144,0.053216,0.188448,0.189984,25.2728,0.222784
+1378,34.3578,29.1055,27.8513,0.131104,1.39123,0.008352,0.005984,0.053248,0.19216,0.188768,25.6553,0.225152
+1379,33.9208,29.4805,26.5759,0.131488,1.36253,0.008448,0.005888,0.053248,0.187392,0.189344,24.4123,0.22528
+1380,35.4767,28.1875,27.8833,0.130272,1.43795,0.008352,0.005888,0.053376,0.18816,0.187136,25.6486,0.223584
+1381,33.6709,29.6992,27.884,0.129536,1.43965,0.008288,0.005664,0.067264,0.186368,0.189216,25.6359,0.222176
+1382,33.9073,29.4922,26.6154,0.130464,1.39264,0.008352,0.005856,0.062176,0.190112,0.189792,24.4124,0.223616
+1383,34.9059,28.6484,26.7677,0.130976,1.53853,0.008192,0.005792,0.05312,0.190496,0.190848,24.4266,0.223232
+1384,35.5506,28.1289,27.91,0.130592,1.46685,0.009344,0.005088,0.053152,0.190176,0.192,25.6391,0.223712
+1385,34.1197,29.3086,26.6974,0.13696,1.45987,0.008224,0.004704,0.065056,0.186752,0.18848,24.4224,0.22496
+1386,35.6546,28.0469,26.6259,0.130752,1.39315,0.008448,0.005856,0.053472,0.18864,0.188416,24.4303,0.22688
+1387,35.7442,27.9766,27.7852,0.130336,1.36,0.008672,0.0056,0.053536,0.186784,0.188384,25.6287,0.223232
+1388,33.9118,29.4883,27.8909,0.13024,1.44685,0.008416,0.00592,0.053248,0.189728,0.187264,25.6469,0.222304
+1389,34.2292,29.2148,26.598,0.129728,1.38646,0.008224,0.006112,0.053248,0.188384,0.190464,24.4136,0.221856
+1390,34.5666,28.9297,27.9278,0.130976,1.46816,0.008384,0.005856,0.053696,0.188416,0.189952,25.6598,0.22256
+1391,34.4735,29.0078,26.6272,0.131072,1.4255,0.009184,0.005056,0.053248,0.18784,0.189024,24.4019,0.224352
+1392,35.4227,28.2305,26.9895,0.132,1.39059,0.008384,0.005984,0.053216,0.188352,0.18848,24.7992,0.223264
+1393,35.218,28.3945,28.674,0.13312,1.37965,0.008352,0.00464,0.053248,0.186368,0.18992,26.4975,0.221248
+1394,32.7449,30.5391,26.6063,0.129856,1.3785,0.008224,0.00608,0.053248,0.193984,0.199104,24.4143,0.223008
+1395,35.8242,27.9141,27.821,0.129952,1.36806,0.008192,0.006144,0.053216,0.1864,0.19008,25.6567,0.222176
+1396,33.6532,29.7148,27.0182,0.130048,1.41251,0.008384,0.005888,0.053152,0.191136,0.191552,24.8023,0.223232
+1397,35.2423,28.375,26.5991,0.133056,1.3744,0.008192,0.00608,0.05312,0.186528,0.189472,24.4081,0.240192
+1398,35.5457,28.1328,27.8323,0.13296,1.36618,0.008192,0.006016,0.052832,0.188288,0.188896,25.6647,0.224256
+1399,33.9253,29.4766,26.6155,0.12928,1.39056,0.008192,0.006144,0.053248,0.18784,0.188992,24.4224,0.2288
+1400,35.325,28.3086,27.8813,0.129248,1.45408,0.008192,0.006144,0.053184,0.186464,0.188448,25.6327,0.222816
+1401,34.3394,29.1211,27.8385,0.130176,1.38333,0.008192,0.006144,0.053056,0.196384,0.194976,25.6404,0.225792
+1402,33.5122,29.8398,26.6281,0.130496,1.39139,0.008256,0.00608,0.053248,0.190464,0.190496,24.4347,0.223008
+1403,35.2811,28.3438,26.6015,0.131104,1.39027,0.00848,0.005728,0.053056,0.191072,0.190464,24.4081,0.223232
+1404,35.3445,28.293,27.892,0.131104,1.45286,0.008224,0.006112,0.05904,0.188768,0.188416,25.6318,0.225696
+1405,34.1333,29.2969,26.6298,0.13728,1.42336,0.00928,0.005056,0.053248,0.1864,0.189568,24.4002,0.225376
+1406,35.5407,28.1367,26.6238,0.130208,1.38531,0.009344,0.005024,0.054496,0.187136,0.18768,24.4369,0.227712
+1407,35.3347,28.3008,27.9791,0.12928,1.52781,0.008192,0.005952,0.053312,0.186432,0.18848,25.6571,0.222528
+1408,33.6842,29.6875,27.0535,0.129056,1.45981,0.008352,0.005856,0.053152,0.188384,0.189024,24.7972,0.222688
+1409,34.2383,29.207,27.3293,0.12896,2.1144,0.009312,0.005024,0.053248,0.188416,0.19232,24.416,0.221632
+1410,35.605,28.0859,27.8812,0.130528,1.36166,0.008352,0.005856,0.053344,0.191104,0.190656,25.7147,0.224992
+1411,33.7375,29.6406,26.6569,0.133504,1.44618,0.009344,0.004992,0.054784,0.19712,0.189984,24.396,0.22496
+1412,35.6695,28.0352,26.579,0.134592,1.35363,0.00848,0.005856,0.053088,0.188832,0.190016,24.4192,0.22528
+1413,35.364,28.2773,27.8657,0.130656,1.42435,0.008192,0.00592,0.052896,0.186176,0.188864,25.6454,0.223232
+1414,34.1197,29.3086,26.607,0.130368,1.40144,0.008352,0.005824,0.05296,0.187232,0.188384,24.4092,0.223232
+1415,35.5704,28.1133,26.5756,0.129856,1.36806,0.008192,0.006144,0.053152,0.186464,0.19456,24.406,0.223136
+1416,35.4915,28.1758,27.931,0.129408,1.46122,0.008448,0.005024,0.054528,0.189024,0.188416,25.6717,0.223232
+1417,34.0426,29.375,27.858,0.136704,1.37885,0.00816,0.006016,0.053344,0.187936,0.191008,25.6523,0.243616
+1418,34.0516,29.3672,26.6076,0.13264,1.38902,0.008192,0.006144,0.053248,0.189856,0.188192,24.4165,0.223808
+1419,35.462,28.1992,27.7868,0.131424,1.35987,0.008288,0.006048,0.053248,0.186368,0.189536,25.6248,0.2272
+1420,34.0335,29.3828,26.6652,0.130304,1.44797,0.008352,0.00512,0.053024,0.188384,0.188416,24.4143,0.229344
+1421,33.9793,29.4297,27.007,0.129024,1.41018,0.007072,0.00608,0.052832,0.186464,0.188544,24.8036,0.223264
+1422,36.561,27.3516,28.7396,0.130496,1.44032,0.008192,0.006144,0.053248,0.188416,0.188416,26.5011,0.223232
+1423,32.9176,30.3789,26.6424,0.131072,1.4295,0.009312,0.005024,0.053248,0.190464,0.192544,24.4093,0.221952
+1424,35.5062,28.1641,26.6852,0.131072,1.45994,0.00848,0.005824,0.053344,0.18864,0.191776,24.4231,0.222976
+1425,35.2084,28.4023,27.9283,0.130848,1.46288,0.008352,0.005952,0.053248,0.187872,0.196384,25.6581,0.224608
+1426,34.0426,29.375,26.5851,0.131072,1.39056,0.008224,0.006048,0.053024,0.188256,0.190112,24.3925,0.225312
+1427,35.0685,28.5156,26.731,0.129536,1.53373,0.008352,0.0056,0.053632,0.18672,0.1896,24.3986,0.22528
+1428,34.632,28.875,27.988,0.130848,1.50733,0.008416,0.005824,0.053344,0.188576,0.18848,25.6837,0.221472
+1429,34.4967,28.9883,26.6796,0.129376,1.46842,0.008192,0.006144,0.053152,0.186464,0.190464,24.4135,0.223936
+1430,35.1842,28.4219,27.8841,0.129632,1.75514,0.008192,0.006144,0.053248,0.188448,0.190432,25.3309,0.221952
+1431,34.4086,29.0625,27.8364,0.131104,1.34678,0.02288,0.0056,0.068544,0.188448,0.190432,25.657,0.225632
+1432,33.9073,29.4922,26.6208,0.132,1.41504,0.00832,0.005952,0.05328,0.187648,0.187296,24.405,0.226304
+1433,35.5605,28.1211,27.8031,0.129408,1.37014,0.008192,0.006016,0.052864,0.195072,0.190464,25.6287,0.22224
+1434,33.8624,29.5312,27.9488,0.129536,1.50528,0.008192,0.006176,0.053216,0.188416,0.188416,25.6471,0.222496
+1435,34.4595,29.0195,26.5871,0.129024,1.39469,0.008192,0.005856,0.05312,0.188448,0.190848,24.3949,0.222048
+1436,35.252,28.3672,26.6568,0.131072,1.45549,0.008384,0.005856,0.052064,0.190336,0.188448,24.4019,0.223264
+1437,35.325,28.3086,27.8871,0.131072,1.43766,0.008224,0.00576,0.053248,0.1888,0.194144,25.6447,0.223488
+1438,34.1015,29.3242,26.5851,0.132416,1.37699,0.00816,0.006176,0.053216,0.186368,0.188416,24.4101,0.2232
+1439,35.5852,28.1016,26.5974,0.13312,1.38886,0.00832,0.005856,0.053024,0.186848,0.18976,24.4062,0.225472
+1440,35.4276,28.2266,27.8917,0.132512,1.46083,0.008192,0.006144,0.053024,0.188288,0.18816,25.6307,0.223904
+1441,34.404,29.0664,26.9557,0.1304,1.37462,0.008352,0.0056,0.052992,0.186624,0.188896,24.784,0.22416
+1442,35.3298,28.3047,27.392,0.129024,1.35344,0.008352,0.005888,0.05312,0.18688,0.188352,25.2453,0.221632
+1443,34.2934,29.1602,27.9035,0.129024,1.47414,0.008416,0.005568,0.053024,0.186912,0.190208,25.6348,0.221408
+1444,33.9883,29.4219,26.6608,0.130848,1.4391,0.008384,0.005824,0.053696,0.191008,0.188448,24.4203,0.2232
+1445,35.5605,28.1211,27.7217,0.132608,1.41568,0.008192,0.006144,0.053248,0.189888,0.190208,25.4998,0.225984
+1446,34.0199,29.3945,27.8731,0.131072,1.42954,0.00816,0.006144,0.05328,0.188416,0.188416,25.6448,0.2232
+1447,33.1177,30.1953,26.7104,0.129824,1.50285,0.007904,0.004928,0.053248,0.186528,0.190304,24.4115,0.223328
+1448,36.405,27.4688,26.6699,0.12976,1.44605,0.009216,0.00512,0.05328,0.188352,0.188448,24.4265,0.223232
+1449,35.462,28.1992,27.8426,0.130976,1.40701,0.008256,0.005728,0.052928,0.200864,0.190688,25.6249,0.221216
+1450,33.8177,29.5703,26.621,0.14688,1.38093,0.008192,0.006144,0.053248,0.190464,0.190464,24.422,0.222752
+1451,35.8594,27.8867,26.5711,0.12992,1.36093,0.008384,0.004896,0.053248,0.188448,0.19232,24.4103,0.222656
+1452,35.6993,28.0117,27.8174,0.131072,1.36573,0.008384,0.005856,0.05344,0.18992,0.192704,25.647,0.223296
+1453,34.2338,29.2109,26.9446,0.13312,1.36806,0.008192,0.006144,0.053248,0.186464,0.190368,24.7747,0.224352
+1454,35.3103,28.3203,27.414,0.132256,1.35437,0.00832,0.005888,0.053024,0.186944,0.188416,25.2576,0.227264
+1455,34.5246,28.9648,27.7977,0.129504,1.37622,0.008224,0.005728,0.052992,0.187072,0.190464,25.6245,0.222976
+1456,33.9118,29.4883,26.6691,0.13104,1.43104,0.008736,0.006112,0.05328,0.192512,0.200704,24.4237,0.221984
+1457,35.61,28.082,26.9836,0.129056,1.40243,0.00832,0.005632,0.053376,0.187072,0.190464,24.7849,0.222368
+1458,34.1607,29.2734,28.5951,0.129696,2.16704,0.00832,0.005984,0.053248,0.190208,0.19072,25.6196,0.230272
+1459,34.321,29.1367,26.6163,0.131072,1.39747,0.008192,0.006144,0.053248,0.187392,0.189312,24.4143,0.229152
+1460,35.605,28.0859,26.6258,0.131744,1.39597,0.00848,0.005856,0.051968,0.188416,0.1896,24.4294,0.224384
+1461,35.7292,27.9883,27.8972,0.131424,1.35741,0.008544,0.0056,0.053088,0.18656,0.189024,25.7385,0.227072
+1462,34.0516,29.3672,26.5948,0.130688,1.38893,0.008224,0.006112,0.053248,0.187904,0.18688,24.404,0.228832
+1463,35.526,28.1484,26.6283,0.129184,1.42938,0.007968,0.0056,0.053312,0.1872,0.18944,24.4009,0.225312
+1464,35.3787,28.2656,27.8746,0.130912,1.42355,0.008192,0.006112,0.053248,0.188416,0.188416,25.6532,0.222528
+1465,34.2338,29.2109,26.6056,0.130816,1.41133,0.008256,0.00608,0.053248,0.186368,0.188416,24.3992,0.221856
+1466,35.364,28.2773,27.701,0.13072,1.63846,0.008384,0.005856,0.052864,0.189056,0.188608,25.2652,0.221888
+1467,34.6227,28.8828,27.7767,0.129312,1.3511,0.008768,0.0056,0.053152,0.191104,0.190464,25.6225,0.224704
+1468,33.8983,29.5,26.6406,0.13344,1.42128,0.008224,0.005984,0.053088,0.188256,0.188544,24.4165,0.22528
+1469,34.4874,28.9961,28.1082,0.131392,1.66416,0.00832,0.0048,0.053248,0.186368,0.190016,25.6476,0.222304
+1470,33.7686,29.6133,26.9224,0.13312,1.69062,0.008384,0.005088,0.054208,0.194912,0.204672,24.4084,0.22304
+1471,35.5358,28.1406,26.6568,0.130048,1.45101,0.008192,0.005824,0.053408,0.18656,0.188384,24.4112,0.222144
+1472,35.605,28.0859,27.824,0.129184,1.35971,0.008352,0.005984,0.053248,0.189504,0.202912,25.652,0.223104
+1473,34.0064,29.4062,26.5644,0.130944,1.34877,0.00848,0.0048,0.053248,0.189952,0.189088,24.4161,0.223008
+1474,35.5013,28.168,27.4555,0.128992,1.3631,0.008352,0.005856,0.053408,0.19072,0.189024,25.2928,0.223232
+1475,34.4317,29.043,27.8206,0.132,1.37216,0.008192,0.006144,0.053248,0.187392,0.187392,25.6447,0.229408
+1476,33.9568,29.4492,26.665,0.129696,1.42742,0.008192,0.006144,0.053248,0.188096,0.188736,24.4347,0.228768
+1477,35.6447,28.0547,26.9397,0.12992,1.35786,0.00816,0.006144,0.05312,0.186496,0.188416,24.7882,0.221472
+1478,34.8916,28.6602,28.5222,0.13024,1.40576,0.008192,0.006144,0.053152,0.4952,0.190976,26.0096,0.222976
+1479,33.329,30.0039,26.5933,0.131104,1.37622,0.008192,0.006112,0.05328,0.189824,0.192224,24.4151,0.221184
+1480,35.7093,28.0039,26.5933,0.13056,1.36653,0.008,0.005856,0.053728,0.190272,0.18992,24.4252,0.223232
+1481,35.6248,28.0703,27.8235,0.131072,1.38445,0.008192,0.006144,0.053248,0.190464,0.190464,25.6348,0.224608
+1482,33.7153,29.6602,26.7653,0.135168,1.53162,0.008384,0.01648,0.054592,0.187072,0.188416,24.4183,0.22528
+1483,35.5358,28.1406,26.6807,0.13104,1.47011,0.008352,0.005696,0.053696,0.186592,0.190496,24.4072,0.227456
+1484,35.3933,28.2539,27.8712,0.131008,1.43488,0.008352,0.005856,0.05216,0.188,0.188032,25.6397,0.223232
+1485,34.1379,29.293,26.6855,0.12912,1.46557,0.008352,0.004672,0.053248,0.20624,0.188992,24.406,0.223232
+1486,34.944,28.6172,27.8339,0.129056,1.76061,0.008448,0.005888,0.051968,0.188352,0.189728,25.2771,0.22272
+1487,34.8869,28.6641,27.8232,0.130976,1.34973,0.008224,0.006112,0.053248,0.187808,0.191072,25.6526,0.243424
+1488,33.6223,29.7422,26.6587,0.13312,1.43923,0.00832,0.005856,0.05296,0.188928,0.18816,24.4188,0.22336
+1489,35.3542,28.2852,27.0728,0.132992,1.4641,0.008352,0.00496,0.053248,0.186368,0.18992,24.808,0.224864
+1490,35.2423,28.375,28.6537,0.130688,1.37286,0.00832,0.006016,0.053248,0.188416,0.188288,26.4828,0.222976
+1491,32.5907,30.6836,26.6615,0.129664,1.4719,0.008384,0.005568,0.0536,0.188064,0.189408,24.3917,0.223264
+1492,36.0665,27.7266,26.6865,0.130592,1.47069,0.008384,0.005856,0.052992,0.187008,0.188416,24.4196,0.22304
+1493,35.462,28.1992,27.8248,0.129504,1.40099,0.008288,0.006048,0.053248,0.188416,0.190464,25.6265,0.221312
+1494,34.2521,29.1953,26.6159,0.130912,1.40918,0.008192,0.006048,0.05328,0.18832,0.19248,24.4055,0.221952
+1495,35.8895,27.8633,26.568,0.131456,1.34749,0.008256,0.005664,0.052896,0.189248,0.190528,24.4194,0.223072
+1496,35.8042,27.9297,27.7843,0.131072,1.33939,0.008192,0.006176,0.053216,0.18976,0.188576,25.6436,0.22432
+1497,33.7241,29.6523,26.6894,0.131168,1.48208,0.008512,0.0056,0.053344,0.185216,0.190112,24.4081,0.225312
+1498,35.5161,28.1562,27.889,0.130528,1.41162,0.009312,0.00512,0.053248,0.188416,0.189888,25.6783,0.22256
+1499,33.8848,29.5117,27.979,0.129216,1.54794,0.008544,0.004096,0.054528,0.187136,0.198688,25.6266,0.22224
+1500,34.0743,29.3477,26.6075,0.129728,1.3865,0.008192,0.006176,0.053216,0.188416,0.190464,24.4204,0.22448
+1501,35.521,28.1523,26.7167,0.143328,1.49712,0.008352,0.0056,0.05328,0.188992,0.191936,24.4067,0.221344
+1502,35.2471,28.3711,28.7606,0.127168,1.49542,0.008352,0.005984,0.053248,0.190464,0.189664,26.4662,0.224096
+1503,32.7617,30.5234,26.6804,0.130304,1.47075,0.008384,0.005568,0.05216,0.18832,0.188416,24.4101,0.226368
+1504,35.8946,27.8594,26.5607,0.130208,1.33226,0.00816,0.006144,0.053248,0.188128,0.188512,24.4226,0.231392
+1505,35.4767,28.1875,27.8792,0.12976,1.46842,0.008192,0.005952,0.05344,0.1864,0.188416,25.6164,0.22224
+1506,33.6355,29.7305,26.7243,0.13008,1.51408,0.008576,0.005824,0.053152,0.188576,0.188672,24.4122,0.2232
+1507,35.7742,27.9531,26.5789,0.130176,1.37421,0.008352,0.004864,0.053216,0.187936,0.188896,24.4073,0.224
+1508,35.3103,28.3203,27.8794,0.13072,1.42374,0.008256,0.00608,0.053216,0.189536,0.190688,25.654,0.2232
+1509,33.8804,29.5156,26.7,0.131008,1.48918,0.008192,0.006112,0.05328,0.1864,0.188384,24.4031,0.234368
+1510,35.3006,28.3281,27.8062,0.131584,1.36806,0.008256,0.00608,0.053248,0.19456,0.188032,25.6311,0.22528
+1511,33.8088,29.5781,27.8615,0.136832,1.44058,0.014368,0.006112,0.053248,0.187552,0.188768,25.6123,0.22176
+1512,33.7553,29.625,26.7228,0.129856,1.48486,0.016384,0.00608,0.053312,0.194464,0.188544,24.4244,0.224928
+1513,35.0685,28.5156,26.6999,0.130784,1.49942,0.008192,0.006144,0.05328,0.188224,0.189792,24.4018,0.222272
+1514,35.2666,28.3555,28.9382,0.12976,1.6871,0.008352,0.005888,0.051936,0.190208,0.190656,26.4513,0.223008
+1515,32.7533,30.5312,26.6609,0.131712,1.46022,0.009312,0.005024,0.053248,0.186368,0.190208,24.3998,0.224992
+1516,35.5556,28.125,26.5646,0.130528,1.37597,0.008384,0.005856,0.052128,0.188416,0.18816,24.3889,0.22624
+1517,35.3787,28.2656,27.8712,0.138816,1.43814,0.009344,0.004992,0.053248,0.187936,0.188896,25.6281,0.221728
+1518,32.6739,30.6055,26.8511,0.130112,1.6185,0.031104,0.005664,0.06192,0.188416,0.188416,24.4038,0.223168
+1519,35.3006,28.3281,26.71,0.130752,1.51162,0.00832,0.0056,0.053184,0.187008,0.190528,24.3996,0.223328
+1520,36.0056,27.7734,27.9941,0.141312,1.45408,0.008192,0.006144,0.053248,0.19024,0.194784,25.7059,0.240224
+1521,33.5826,29.7773,27.0476,0.13312,1.45203,0.025632,0.00512,0.053216,0.188416,0.189472,24.7767,0.223904
+1522,35.4472,28.2109,27.3986,0.131456,1.32851,0.008352,0.005856,0.051968,0.188256,0.188448,25.2602,0.235552
+1523,34.5107,28.9766,27.7587,0.130176,1.31526,0.008352,0.005632,0.052224,0.187456,0.188736,25.6497,0.221184
+1524,33.7642,29.6172,26.6026,0.130176,1.38083,0.008352,0.005856,0.053056,0.189152,0.188416,24.4244,0.222336
+1525,34.3026,29.1523,27.1401,0.130208,1.54915,0.008192,0.006144,0.053248,0.188288,0.20288,24.7801,0.22192
+1526,34.6789,28.8359,28.5018,0.137632,1.99475,0.022528,0.006176,0.053216,0.200704,0.192096,25.67,0.22464
+1527,34.2796,29.1719,26.5606,0.130624,1.35424,0.008416,0.005952,0.053216,0.187968,0.188864,24.406,0.22528
+1528,35.4669,28.1953,26.5642,0.131072,1.35373,0.008224,0.006112,0.053248,0.197984,0.188864,24.398,0.226944
+1529,35.6397,28.0586,27.7915,0.12976,1.37123,0.008384,0.004832,0.053216,0.18752,0.189088,25.6239,0.223552
+1530,33.6488,29.7188,26.6352,0.129728,1.42285,0.008096,0.005088,0.05312,0.188416,0.188416,24.4163,0.223264
+1531,33.6886,29.6836,26.9762,0.130144,1.77645,0.015744,0.004832,0.053248,0.18784,0.189024,24.3957,0.2232
+1532,37.123,26.9375,27.9568,0.130272,1.47926,0.008352,0.005856,0.053088,0.18832,0.189024,25.6796,0.222944
+1533,33.5122,29.8398,27.007,0.129984,1.46986,0.008384,0.005632,0.053248,0.187296,0.189984,24.4084,0.554208
+1534,35.0109,28.5625,27.5104,0.13312,1.40675,0.008352,0.005888,0.052992,0.186944,0.188448,25.3022,0.225664
+1535,34.5852,28.9141,27.7637,0.130496,1.33382,0.008192,0.006048,0.053056,0.186656,0.18848,25.6327,0.224288
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..1766805
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,604.379,1.72455,1.23613,0.00957925,0.255016,0.00609478,0.00518403,0.00783619,0.0153011,0.0164329,0.906734,0.0139565
+max_1024,1460.25,3.92944,2.80925,0.039328,1.99862,0.043008,0.020896,0.023968,0.073376,0.032736,1.69981,0.297184
+min_1024,254.489,0.684814,0.968864,0.008192,0.219136,0.004192,0.004064,0.006336,0.013312,0.014336,0.67072,0.010368
+512,1105.23,0.904785,1.15075,0.008768,0.403392,0.005632,0.00464,0.007808,0.015776,0.01536,0.677568,0.011808
+513,599.619,1.66772,1.01754,0.009952,0.25424,0.006144,0.0056,0.006688,0.015488,0.015232,0.691296,0.012896
+514,535.25,1.86829,0.989824,0.01088,0.22848,0.004992,0.00544,0.008192,0.01504,0.01568,0.688832,0.012288
+515,721.635,1.38574,0.979968,0.009056,0.225216,0.0056,0.004864,0.008192,0.014336,0.015744,0.684672,0.012288
+516,704.325,1.4198,1.3799,0.009984,0.24736,0.004864,0.005568,0.006656,0.015808,0.014912,1.06291,0.01184
+517,544.464,1.83667,1.2984,0.010112,0.255808,0.005664,0.004896,0.008192,0.014368,0.0184,0.683776,0.297184
+518,528.687,1.89148,0.968864,0.01168,0.226048,0.006144,0.005216,0.007072,0.015552,0.0152,0.67072,0.011232
+519,718.975,1.39087,0.989312,0.00832,0.225248,0.006016,0.005504,0.006912,0.015424,0.015296,0.694272,0.01232
+520,694.355,1.44019,1.23478,0.009408,0.226112,0.005952,0.004288,0.007584,0.014944,0.03072,0.68608,0.249696
+521,521.352,1.91809,0.984928,0.008832,0.226816,0.005664,0.005056,0.00784,0.018784,0.01616,0.682208,0.013568
+522,763.894,1.30908,1.65206,0.009408,0.465632,0.037152,0.005792,0.007616,0.015264,0.015808,1.0832,0.012192
+523,497.873,2.00854,0.9728,0.008864,0.226528,0.004896,0.00592,0.00752,0.015136,0.015968,0.675456,0.012512
+524,742.365,1.34705,0.985088,0.009952,0.22352,0.006144,0.004096,0.008192,0.015424,0.015296,0.690176,0.012288
+525,647.691,1.54395,0.980704,0.008448,0.223232,0.006144,0.005952,0.007584,0.01504,0.016096,0.684416,0.013792
+526,711.605,1.40527,1.82272,0.010176,0.22944,0.006176,0.004064,0.008192,0.014368,0.016032,1.51994,0.014336
+527,441.332,2.26587,0.998912,0.010016,0.225504,0.006144,0.0056,0.007872,0.015104,0.032736,0.683136,0.0128
+528,726.628,1.37622,0.969056,0.008544,0.223232,0.00576,0.00448,0.008192,0.016032,0.014752,0.675776,0.012288
+529,712.534,1.40344,1.16144,0.00896,0.4056,0.005632,0.004672,0.008192,0.01584,0.015904,0.683008,0.013632
+530,595.392,1.67957,0.978528,0.01008,0.229536,0.006144,0.00512,0.007168,0.014528,0.016192,0.6776,0.01216
+531,440.596,2.26965,1.00874,0.012096,0.256224,0.006016,0.005536,0.006848,0.015744,0.014976,0.677888,0.013408
+532,729.41,1.37097,0.972192,0.01024,0.229376,0.005856,0.004384,0.008032,0.015712,0.015168,0.671168,0.012256
+533,756.278,1.32227,1.33773,0.008544,0.22528,0.005632,0.004608,0.008192,0.014368,0.016192,1.04259,0.01232
+534,562.328,1.77832,0.978112,0.009792,0.229088,0.004864,0.005568,0.006688,0.015968,0.014752,0.679008,0.012384
+535,508.536,1.96643,1.03434,0.010656,0.26416,0.00592,0.005504,0.007008,0.015488,0.023424,0.689216,0.01296
+536,756.487,1.3219,0.997248,0.010048,0.225472,0.005792,0.004448,0.007968,0.01456,0.028672,0.688064,0.012224
+537,706.755,1.41492,1.23085,0.008192,0.224544,0.004896,0.005888,0.00784,0.014688,0.027904,0.693184,0.243712
+538,597.825,1.67273,0.993888,0.0088,0.227328,0.006144,0.005152,0.007136,0.015552,0.01712,0.695648,0.011008
+539,703.901,1.42065,1.67894,0.009312,0.461728,0.038912,0.005728,0.007584,0.01536,0.016032,1.11187,0.012416
+540,494.537,2.02209,1.00557,0.010016,0.22544,0.005664,0.00464,0.007776,0.01472,0.016032,0.708992,0.012288
+541,348.373,2.87048,1.01402,0.008704,0.249856,0.005792,0.005504,0.007136,0.015584,0.01632,0.69296,0.01216
+542,990.568,1.00952,1.03904,0.008928,0.267296,0.005056,0.00544,0.006848,0.01584,0.01488,0.702464,0.012288
+543,537.533,1.86035,1.20074,0.01088,0.42336,0.004672,0.006144,0.007616,0.014912,0.016384,0.704064,0.012704
+544,652.593,1.53235,0.980992,0.010016,0.226848,0.004864,0.0056,0.00816,0.014848,0.014336,0.684032,0.012288
+545,702.151,1.42419,0.99328,0.009696,0.228928,0.005088,0.006112,0.007616,0.014592,0.01472,0.693984,0.012544
+546,613.495,1.63,0.971168,0.008608,0.22528,0.005728,0.004512,0.007808,0.01472,0.016064,0.677216,0.011232
+547,680.286,1.46997,1.85629,0.008992,0.261536,0.004864,0.005984,0.007872,0.014624,0.015776,1.52182,0.014816
+548,452.597,2.20947,1.00093,0.01024,0.229376,0.00608,0.00416,0.008192,0.016224,0.016064,0.698624,0.011968
+549,707.243,1.41394,1.0199,0.009408,0.243968,0.004896,0.00592,0.00768,0.014656,0.028128,0.69296,0.012288
+550,452.422,2.21033,1.01069,0.009216,0.223136,0.020256,0.004384,0.00784,0.014688,0.015424,0.703456,0.012288
+551,1022.21,0.978271,1.86179,0.00832,0.270336,0.006016,0.005504,0.006912,0.015552,0.0152,1.51958,0.014368
+552,454.606,2.19971,0.999424,0.01024,0.23552,0.005888,0.004352,0.007872,0.014656,0.016,0.692608,0.012288
+553,709.141,1.41016,0.987136,0.008192,0.229152,0.0056,0.004864,0.008064,0.014464,0.016032,0.68848,0.012288
+554,713.092,1.40234,1.17594,0.0088,0.405184,0.005664,0.004832,0.007584,0.01504,0.016288,0.700192,0.012352
+555,667.481,1.49817,1.66026,0.01008,0.227488,0.005344,0.004896,0.008192,0.015456,0.015296,1.35741,0.016096
+556,480.047,2.08313,1.01802,0.0096,0.2504,0.005632,0.0048,0.007456,0.014656,0.014784,0.698368,0.01232
+557,705.113,1.41821,0.98496,0.009504,0.225056,0.005056,0.005952,0.007648,0.015072,0.015904,0.688256,0.012512
+558,726.177,1.37708,1.34749,0.009504,0.223232,0.00688,0.004096,0.00816,0.014368,0.016192,1.05286,0.012192
+559,568.849,1.75793,1.01805,0.008384,0.251904,0.006112,0.005472,0.008288,0.014656,0.01584,0.695104,0.012288
+560,464.821,2.15137,1.09498,0.011968,0.308736,0.00496,0.005536,0.00672,0.026624,0.030624,0.687456,0.012352
+561,807.173,1.23889,0.983872,0.009056,0.226304,0.005088,0.006016,0.007584,0.01488,0.016256,0.6864,0.012288
+562,742.567,1.34668,0.983872,0.009024,0.225024,0.00592,0.004576,0.008032,0.014496,0.016384,0.68944,0.010976
+563,614.185,1.62817,1.00147,0.009312,0.222112,0.006144,0.006144,0.007744,0.014784,0.01568,0.707104,0.012448
+564,712.782,1.40295,1.78714,0.010016,0.229408,0.005664,0.004544,0.006368,0.016032,0.014688,1.4848,0.015616
+565,450.283,2.22083,1.00963,0.009056,0.231456,0.006144,0.005568,0.00832,0.014656,0.015584,0.70544,0.013408
+566,697.845,1.43298,0.997888,0.010112,0.223552,0.005632,0.004832,0.007712,0.01488,0.015808,0.70304,0.01232
+567,676.969,1.47717,1.00848,0.009024,0.222848,0.0056,0.005056,0.008032,0.014464,0.015872,0.715264,0.01232
+568,650.779,1.53662,1.70598,0.00992,0.24096,0.00512,0.005344,0.006944,0.015744,0.016,1.38957,0.016384
+569,294.655,3.3938,1.04448,0.009664,0.26272,0.006144,0.005728,0.007616,0.014624,0.01504,0.710272,0.012672
+570,1190.18,0.84021,0.98672,0.009632,0.231424,0.004864,0.0056,0.007616,0.015072,0.014592,0.685664,0.012256
+571,636.964,1.56995,0.996992,0.00992,0.226656,0.005088,0.006144,0.008192,0.01536,0.015328,0.697408,0.012896
+572,691.717,1.44568,1.83926,0.008352,0.233472,0.006144,0.004096,0.008192,0.014336,0.016384,1.53322,0.015072
+573,440.999,2.26758,0.991552,0.00848,0.225024,0.005632,0.004864,0.008096,0.014432,0.015776,0.696928,0.01232
+574,694.885,1.43909,0.993504,0.009568,0.225664,0.005632,0.004832,0.007488,0.01472,0.014944,0.698368,0.012288
+575,672.523,1.48694,1.00765,0.010048,0.224864,0.004896,0.005952,0.008192,0.015392,0.01536,0.710624,0.01232
+576,660.272,1.51453,1.85344,0.009792,0.2296,0.005632,0.004832,0.007584,0.024736,0.014784,1.54186,0.014624
+577,444.131,2.25159,0.993824,0.00896,0.227168,0.005632,0.004768,0.008032,0.014496,0.016384,0.695776,0.012608
+578,522.716,1.91309,1.03834,0.010272,0.261696,0.005632,0.0048,0.007648,0.014976,0.014464,0.70656,0.012288
+579,1082.88,0.923462,1.17514,0.008192,0.405472,0.005664,0.004608,0.008192,0.015776,0.014944,0.69968,0.012608
+580,637.51,1.5686,0.977824,0.00912,0.22528,0.006048,0.004192,0.008192,0.014336,0.016384,0.681984,0.012288
+581,627.355,1.59399,1.18992,0.011808,0.42032,0.00592,0.005536,0.006976,0.016032,0.014688,0.69632,0.01232
+582,616.914,1.62097,1.00355,0.009376,0.224096,0.006144,0.005376,0.006912,0.015552,0.015168,0.708608,0.01232
+583,720.619,1.3877,1.3312,0.010048,0.225472,0.006176,0.005568,0.00672,0.015392,0.015296,1.03219,0.014336
+584,561.288,1.78162,1.00342,0.009824,0.23136,0.005664,0.004832,0.007648,0.014656,0.014816,0.702432,0.012192
+585,508.283,1.96741,0.993632,0.010976,0.230656,0.004896,0.00608,0.007808,0.01472,0.01584,0.690016,0.01264
+586,714.647,1.39929,1.02266,0.008928,0.243712,0.006112,0.004096,0.008192,0.015488,0.015232,0.708608,0.012288
+587,685.58,1.45862,1.01376,0.009344,0.226048,0.005632,0.004736,0.007584,0.014752,0.026112,0.707328,0.012224
+588,507.685,1.96973,1.05638,0.01024,0.278528,0.005632,0.004608,0.008192,0.015456,0.015264,0.706432,0.012032
+589,937.407,1.06677,1.83491,0.008192,0.234624,0.004992,0.006144,0.007616,0.014848,0.016448,1.52701,0.01504
+590,442.142,2.26172,0.995456,0.009504,0.228224,0.005952,0.004256,0.008192,0.014464,0.016256,0.695904,0.012704
+591,721.889,1.38525,1.03357,0.01024,0.223232,0.006048,0.005536,0.006848,0.014336,0.016416,0.737248,0.013664
+592,692.067,1.44495,1.1945,0.008832,0.405056,0.005696,0.0048,0.007616,0.015104,0.01584,0.71936,0.012192
+593,602.043,1.66101,1.6937,0.009568,0.229536,0.005696,0.005056,0.008192,0.015712,0.01504,1.38973,0.015168
+594,486.808,2.0542,0.99168,0.009728,0.228288,0.006144,0.004096,0.008192,0.014336,0.016096,0.692512,0.012288
+595,708.651,1.41113,1.01875,0.009024,0.223328,0.006112,0.005632,0.007872,0.014656,0.027136,0.712704,0.012288
+596,693.415,1.44214,1.4129,0.00864,0.261376,0.004992,0.00528,0.006848,0.0144,0.016096,1.08346,0.011808
+597,530.433,1.88525,1.05478,0.024768,0.229408,0.020576,0.006016,0.007936,0.014592,0.015616,0.72272,0.013152
+598,453.7,2.2041,1.01178,0.01232,0.23344,0.006144,0.004096,0.008192,0.014336,0.016224,0.706016,0.011008
+599,697.488,1.43372,1.01782,0.00992,0.2256,0.006144,0.005888,0.008384,0.0144,0.016128,0.718656,0.012704
+600,680.568,1.46936,1.37968,0.01024,0.23904,0.004672,0.004096,0.008192,0.014336,0.015648,1.07142,0.012032
+601,566.607,1.76489,1.70611,0.0088,0.228832,0.005632,0.00512,0.007968,0.01456,0.01584,1.4033,0.016064
+602,469.402,2.13037,1.03014,0.0096,0.23104,0.005152,0.00528,0.006976,0.014336,0.016384,0.730304,0.011072
+603,712.596,1.40332,1.01376,0.009696,0.222944,0.004928,0.006144,0.00752,0.014784,0.015616,0.719456,0.012672
+604,704.628,1.41919,1.40182,0.009216,0.223008,0.005664,0.004768,0.008192,0.014368,0.026592,1.09776,0.012256
+605,498.934,2.00427,1.06314,0.009056,0.266176,0.005632,0.004768,0.018432,0.014336,0.016128,0.715008,0.0136
+606,498.236,2.00708,1.03549,0.01216,0.231328,0.005632,0.004832,0.007616,0.014912,0.016128,0.730816,0.012064
+607,623.82,1.60303,1.0151,0.009376,0.227808,0.005664,0.00496,0.008128,0.014432,0.015808,0.715296,0.013632
+608,693.18,1.44263,1.38035,0.009792,0.223712,0.006112,0.00576,0.007936,0.014368,0.014944,1.08544,0.012288
+609,554.938,1.802,1.70598,0.00944,0.228128,0.005792,0.004448,0.008224,0.014304,0.016128,1.40438,0.015136
+610,479.822,2.08411,1.00944,0.009472,0.224064,0.006176,0.004064,0.008192,0.014336,0.016096,0.714944,0.012096
+611,702.452,1.42358,1.01971,0.009984,0.22144,0.006144,0.005536,0.006752,0.015968,0.016192,0.724864,0.012832
+612,694.59,1.4397,1.34384,0.008544,0.22528,0.006144,0.004096,0.008192,0.014336,0.016416,1.04598,0.014848
+613,562.792,1.77686,1.03392,0.009248,0.22416,0.005632,0.004672,0.008192,0.014336,0.03056,0.72432,0.0128
+614,416.981,2.39819,1.02237,0.01168,0.238592,0.005792,0.004448,0.007936,0.014592,0.016384,0.710656,0.012288
+615,701.43,1.42566,1.01376,0.008192,0.223168,0.005632,0.004672,0.008192,0.014336,0.026272,0.711008,0.012288
+616,554.075,1.80481,1.48442,0.008768,0.274432,0.006112,0.004128,0.008192,0.02384,0.020608,1.11645,0.021888
+617,581.24,1.72046,1.7695,0.009408,0.23216,0.0056,0.004736,0.008192,0.014368,0.016256,1.46237,0.016416
+618,456.939,2.18848,1.04128,0.009088,0.227264,0.0056,0.004704,0.007968,0.01456,0.016256,0.743552,0.012288
+619,697.191,1.43433,1.02781,0.008576,0.22464,0.004896,0.005888,0.007712,0.014688,0.028896,0.718848,0.013664
+620,657.781,1.52026,1.31779,0.009152,0.511968,0.00576,0.00448,0.007936,0.015744,0.015232,0.735232,0.012288
+621,600.366,1.66565,1.7327,0.008288,0.228544,0.004928,0.006144,0.007712,0.014816,0.015776,1.43014,0.016352
+622,470.642,2.12476,1.02189,0.00976,0.22512,0.004896,0.005568,0.007584,0.014784,0.016064,0.725888,0.012224
+623,697.37,1.43396,1.03629,0.008192,0.227328,0.006144,0.005888,0.007616,0.015104,0.01568,0.738016,0.01232
+624,648.923,1.54102,1.37824,0.008768,0.222496,0.004864,0.005568,0.006688,0.015904,0.014816,1.08666,0.01248
+625,536.196,1.86499,1.33955,0.009792,0.239264,0.004928,0.006112,0.007744,0.014784,0.016224,0.99344,0.047264
+626,514.056,1.94531,1.03062,0.008672,0.230592,0.004928,0.005504,0.00832,0.014848,0.015552,0.72992,0.012288
+627,677.697,1.47559,1.04243,0.009792,0.221632,0.005632,0.004608,0.008192,0.014432,0.032288,0.733568,0.012288
+628,694.649,1.43958,1.35232,0.008832,0.221184,0.005152,0.0048,0.007872,0.014848,0.024704,1.05053,0.0144
+629,528.618,1.89172,1.06058,0.008192,0.257824,0.006368,0.005824,0.007648,0.014752,0.022336,0.725024,0.012608
+630,624.914,1.60022,1.25338,0.036864,0.433824,0.004544,0.005536,0.00768,0.015136,0.015904,0.7216,0.012288
+631,629.476,1.58862,1.05677,0.009888,0.2472,0.005056,0.005728,0.00768,0.01488,0.026816,0.727072,0.012448
+632,691.658,1.4458,1.01626,0.008672,0.22464,0.004864,0.005568,0.007648,0.015168,0.015584,0.72288,0.011232
+633,613.174,1.63086,1.01536,0.009792,0.22144,0.005952,0.004576,0.009216,0.015264,0.015744,0.720608,0.012768
+634,408.232,2.44958,1.67072,0.01024,0.454304,0.005984,0.004064,0.006688,0.032768,0.015584,1.12899,0.012096
+635,958.465,1.04333,1.03565,0.009408,0.22608,0.005632,0.00464,0.008192,0.014336,0.016,0.737696,0.013664
+636,699.274,1.43005,1.0281,0.010048,0.223424,0.006112,0.004128,0.008128,0.0144,0.016032,0.735072,0.010752
+637,612.211,1.63342,1.03174,0.0096,0.221824,0.006144,0.00576,0.007616,0.014912,0.028736,0.72448,0.012672
+638,702.392,1.42371,1.85139,0.010144,0.22128,0.006144,0.004096,0.00816,0.014368,0.016384,1.55578,0.01504
+639,432.068,2.31445,1.03846,0.008352,0.249184,0.004896,0.005984,0.007968,0.01456,0.016288,0.718944,0.012288
+640,696.776,1.43518,1.03971,0.008576,0.224224,0.00512,0.005344,0.006944,0.016064,0.030368,0.731296,0.011776
+641,698.559,1.43152,1.20211,0.009376,0.404288,0.005632,0.00464,0.008192,0.015616,0.015104,0.72656,0.012704
+642,620.888,1.6106,1.72086,0.008736,0.22704,0.005664,0.004768,0.008288,0.014336,0.016384,1.41926,0.016384
+643,468.864,2.13281,1.03299,0.00896,0.224736,0.004864,0.00592,0.007872,0.014656,0.01584,0.737824,0.01232
+644,688.288,1.45288,1.03206,0.008992,0.22528,0.005824,0.004416,0.007968,0.014592,0.016,0.73696,0.012032
+645,706.633,1.41516,1.39469,0.0096,0.227136,0.004928,0.005664,0.006624,0.016128,0.015744,1.09661,0.012256
+646,539.302,1.85425,1.32762,0.008704,0.229408,0.005728,0.00448,0.007968,0.01456,0.01632,1.01542,0.025024
+647,514.185,1.94482,1.05232,0.009504,0.226048,0.006112,0.005984,0.007616,0.014944,0.015584,0.75376,0.012768
+648,712.844,1.40283,0.999424,0.01024,0.223232,0.006144,0.005184,0.007104,0.015392,0.015328,0.7056,0.0112
+649,671.861,1.4884,1.3759,0.008672,0.241696,0.006112,0.005696,0.007648,0.014848,0.016064,1.05962,0.015552
+650,566.098,1.76648,1.04691,0.008512,0.225248,0.005696,0.004544,0.007616,0.014784,0.015904,0.753792,0.010816
+651,457.781,2.18445,1.04038,0.011744,0.237184,0.005024,0.006112,0.007648,0.014848,0.015552,0.729888,0.012384
+652,694.178,1.44055,1.0527,0.010208,0.222464,0.004896,0.005536,0.006752,0.014336,0.028672,0.747296,0.012544
+653,580.047,1.724,1.36266,0.009088,0.229184,0.005632,0.004832,0.008192,0.016096,0.014624,1.06054,0.014464
+654,586.819,1.7041,1.3312,0.009728,0.229568,0.005632,0.004832,0.007584,0.01504,0.015616,0.998144,0.045056
+655,507.182,1.97168,1.03178,0.008768,0.226912,0.005632,0.005024,0.008128,0.0144,0.01632,0.733248,0.013344
+656,687.133,1.45532,1.02931,0.009888,0.221024,0.004864,0.005568,0.006464,0.016384,0.024576,0.728352,0.012192
+657,707.06,1.41431,1.34528,0.009344,0.223648,0.005632,0.005056,0.007552,0.015008,0.024576,1.04038,0.01408
+658,566.96,1.76379,1.03677,0.008672,0.223104,0.005632,0.004736,0.007648,0.014912,0.02864,0.731136,0.012288
+659,454.152,2.2019,1.04832,0.012032,0.227584,0.005984,0.004256,0.007936,0.014592,0.016,0.747264,0.012672
+660,689.911,1.44946,1.04214,0.008704,0.223232,0.006176,0.004064,0.008192,0.014336,0.026624,0.739136,0.01168
+661,677.417,1.4762,1.32778,0.009024,0.222592,0.004864,0.005952,0.007712,0.01488,0.026368,1.02224,0.014144
+662,581.653,1.71924,1.04858,0.01024,0.222336,0.004992,0.005472,0.007872,0.01472,0.025184,0.745472,0.012288
+663,472.161,2.11792,1.73261,0.009952,0.502048,0.008064,0.004224,0.008192,0.015456,0.023456,1.15008,0.011136
+664,598.699,1.67029,1.04666,0.00848,0.23536,0.00592,0.00432,0.008128,0.0144,0.016288,0.741472,0.012288
+665,709.879,1.40869,1.36499,0.00944,0.245792,0.004896,0.005952,0.007584,0.014848,0.030976,1.03126,0.01424
+666,574.716,1.73999,1.03178,0.008448,0.2232,0.006144,0.004096,0.008192,0.014368,0.016256,0.737376,0.013696
+667,646.057,1.54785,1.92726,0.008992,0.231424,0.005856,0.005536,0.021376,0.016032,0.01472,1.60765,0.01568
+668,436.534,2.29077,1.04979,0.009472,0.22368,0.005632,0.004768,0.007616,0.014848,0.030304,0.741376,0.012096
+669,669.445,1.49377,1.29261,0.008512,0.223232,0.006144,0.0056,0.006688,0.015776,0.0248,0.98864,0.013216
+670,608.573,1.64319,1.04195,0.009408,0.222016,0.005952,0.004288,0.007968,0.014496,0.02672,0.739232,0.011872
+671,602.309,1.66028,1.23757,0.0112,0.43008,0.006144,0.005504,0.006784,0.016128,0.015648,0.733696,0.012384
+672,496.816,2.01282,1.08749,0.024352,0.250112,0.006112,0.004096,0.008192,0.015456,0.015264,0.751648,0.012256
+673,762.117,1.31213,1.07181,0.008864,0.263936,0.005632,0.004864,0.008192,0.014336,0.016032,0.737632,0.01232
+674,630.493,1.58606,1.03424,0.009504,0.236256,0.005696,0.004544,0.00784,0.014688,0.015776,0.727648,0.012288
+675,676.801,1.47754,1.8473,0.00976,0.231232,0.004896,0.006016,0.00768,0.014848,0.016416,1.54211,0.014336
+676,441.189,2.2666,1.01786,0.010016,0.225472,0.005632,0.00464,0.007712,0.014784,0.014464,0.722848,0.012288
+677,698.678,1.43127,1.03312,0.009056,0.224672,0.004864,0.006144,0.007616,0.014912,0.016128,0.736832,0.012896
+678,624.2,1.60205,1.03018,0.009568,0.223904,0.006144,0.004096,0.008192,0.014336,0.016384,0.735232,0.01232
+679,459.889,2.17444,1.7408,0.008192,0.226976,0.005632,0.00496,0.008128,0.0144,0.016288,1.43984,0.016384
+680,725.405,1.37854,1.02867,0.008768,0.227328,0.005888,0.004352,0.008064,0.014464,0.016384,0.731136,0.012288
+681,463.768,2.15625,1.04934,0.009024,0.231488,0.005824,0.004064,0.006432,0.014368,0.030688,0.734816,0.01264
+682,1211.66,0.825317,1.19197,0.0096,0.40528,0.005024,0.005408,0.006848,0.015968,0.014784,0.717888,0.011168
+683,618.544,1.6167,1.75514,0.009856,0.225664,0.005696,0.004544,0.009632,0.014944,0.016256,1.45216,0.016384
+684,469.806,2.12854,1.02669,0.008832,0.227328,0.005664,0.004576,0.007744,0.014784,0.015712,0.72976,0.012288
+685,683.35,1.46338,1.02605,0.009664,0.221792,0.006112,0.005472,0.007904,0.014944,0.015936,0.731648,0.012576
+686,701.25,1.42603,1.39821,0.00944,0.220128,0.006112,0.005248,0.00704,0.015648,0.015104,1.10736,0.012128
+687,550.501,1.81653,1.78429,0.00864,0.226656,0.004864,0.006048,0.007872,0.014656,0.016384,1.48275,0.016416
+688,446.382,2.24023,1.04867,0.009536,0.221888,0.00608,0.00416,0.008192,0.014336,0.030336,0.74304,0.011104
+689,682.78,1.4646,1.03478,0.009056,0.224288,0.00512,0.006048,0.007648,0.01456,0.014752,0.740704,0.012608
+690,715.458,1.39771,1.39686,0.009952,0.222624,0.004992,0.005408,0.00688,0.015456,0.015264,1.1049,0.011392
+691,539.231,1.85449,1.32637,0.00848,0.2376,0.005728,0.00448,0.008192,0.014336,0.016128,1.01571,0.015712
+692,511.712,1.95422,1.01622,0.008576,0.22528,0.006144,0.004096,0.008192,0.014336,0.016224,0.72208,0.011296
+693,710.988,1.40649,1.04038,0.0096,0.22592,0.005344,0.004896,0.008192,0.01536,0.01536,0.743424,0.012288
+694,671.365,1.4895,1.37421,0.009952,0.226624,0.005088,0.005152,0.007136,0.016,0.016096,1.07309,0.015072
+695,554,1.80505,1.03101,0.009056,0.2248,0.005664,0.005056,0.008032,0.014528,0.015552,0.736,0.01232
+696,580.458,1.72278,1.23805,0.011584,0.428768,0.005888,0.004352,0.008192,0.015456,0.015264,0.736352,0.012192
+697,630.251,1.58667,1.04899,0.009088,0.227392,0.00608,0.005504,0.006848,0.015424,0.015296,0.750752,0.012608
+698,689.853,1.44958,1.03424,0.01024,0.223264,0.006112,0.004096,0.008192,0.014464,0.016256,0.741248,0.010368
+699,578.858,1.72754,1.03846,0.008352,0.225248,0.005952,0.005504,0.008192,0.015104,0.015616,0.742208,0.012288
+700,254.489,3.92944,2.80925,0.00976,1.99862,0.008096,0.004736,0.007584,0.015104,0.016256,0.736992,0.012096
+701,1168.45,0.855835,1.05693,0.008352,0.24576,0.006144,0.005728,0.007616,0.014752,0.016,0.740288,0.012288
+702,483.304,2.06909,1.31072,0.009824,0.452544,0.005632,0.014496,0.006976,0.028672,0.015776,0.766432,0.010368
+703,791.88,1.26282,1.86371,0.009888,0.229696,0.006208,0.004064,0.008192,0.014336,0.015424,1.56106,0.014848
+704,381.858,2.61877,1.03149,0.01024,0.234784,0.004864,0.0056,0.00672,0.015808,0.015968,0.723872,0.013632
+705,778.929,1.28381,1.08493,0.008192,0.25568,0.005664,0.004896,0.008128,0.0144,0.016224,0.759168,0.012576
+706,624.2,1.60205,1.06682,0.010048,0.233664,0.005888,0.004352,0.008032,0.014496,0.016288,0.761952,0.012096
+707,673.684,1.48438,1.91158,0.009024,0.261536,0.004896,0.005984,0.007616,0.014912,0.01584,1.57555,0.016224
+708,411.907,2.42773,1.07507,0.010176,0.262208,0.006144,0.004096,0.008256,0.016352,0.016352,0.739328,0.01216
+709,604.219,1.65503,1.06086,0.010272,0.23344,0.00592,0.005504,0.007008,0.016064,0.01584,0.754528,0.012288
+710,631.952,1.5824,1.07907,0.010016,0.254016,0.005632,0.004768,0.007424,0.015104,0.015744,0.754304,0.012064
+711,760.914,1.31421,1.37862,0.008512,0.239648,0.005888,0.005504,0.007008,0.01568,0.01504,1.06893,0.012416
+712,490.245,2.03979,1.06621,0.010272,0.2408,0.004928,0.005568,0.00672,0.01568,0.01504,0.755232,0.011968
+713,714.336,1.3999,1.03837,0.008192,0.229376,0.005984,0.005504,0.006944,0.015648,0.015104,0.739072,0.012544
+714,687.825,1.45386,1.22675,0.009792,0.403904,0.006144,0.004096,0.008192,0.015456,0.015264,0.751616,0.012288
+715,601.115,1.66357,1.32909,0.009888,0.22768,0.005664,0.004576,0.008192,0.015424,0.015296,1.00147,0.040896
+716,491.864,2.03308,1.05267,0.010176,0.23968,0.005664,0.004576,0.00784,0.014688,0.016384,0.741376,0.012288
+717,529.404,1.88892,1.03226,0.008256,0.22528,0.005696,0.005632,0.007104,0.015744,0.015008,0.736992,0.012544
+718,940.744,1.06299,1.38854,0.01024,0.249408,0.005632,0.004832,0.007648,0.01504,0.015488,1.06797,0.012288
+719,551.947,1.81177,1.324,0.00896,0.228608,0.005088,0.006048,0.007584,0.014784,0.01584,1.01642,0.020672
+720,511.489,1.95508,1.03235,0.00896,0.22704,0.005632,0.004896,0.008192,0.015616,0.015136,0.733152,0.013728
+721,701.67,1.42517,1.0608,0.008864,0.22256,0.004864,0.006048,0.007776,0.014784,0.02864,0.753664,0.0136
+722,674.683,1.48218,1.40045,0.01024,0.224448,0.00496,0.005824,0.007648,0.014848,0.028608,1.08944,0.014432
+723,561.673,1.7804,1.05978,0.009056,0.249248,0.004896,0.006048,0.007808,0.01472,0.016384,0.739328,0.012288
+724,466.727,2.14258,1.0671,0.011168,0.22672,0.004864,0.005568,0.00656,0.015936,0.016032,0.76816,0.012096
+725,685.523,1.45874,1.00698,0.008224,0.223232,0.005728,0.004512,0.008192,0.015616,0.023296,0.704512,0.013664
+726,723.675,1.38184,1.24707,0.008992,0.223136,0.005632,0.004672,0.007936,0.014592,0.015904,0.9528,0.013408
+727,586.819,1.7041,1.07053,0.008192,0.243072,0.004864,0.006016,0.008192,0.014336,0.016384,0.755808,0.013664
+728,639.401,1.56396,1.69213,0.00896,0.446048,0.041344,0.004096,0.008192,0.015808,0.014912,1.1401,0.012672
+729,495.344,2.0188,1.06499,0.009664,0.229856,0.005632,0.004704,0.008192,0.014336,0.016384,0.763904,0.01232
+730,663.105,1.50806,1.06234,0.010272,0.222784,0.005824,0.0048,0.007712,0.014848,0.028672,0.747168,0.020256
+731,612.303,1.63318,1.03018,0.009696,0.225728,0.005632,0.004704,0.008192,0.014336,0.016384,0.733184,0.01232
+732,648.05,1.54309,1.92867,0.009472,0.248,0.004864,0.005568,0.007584,0.014784,0.014912,1.6087,0.014784
+733,407.036,2.45679,1.08806,0.009248,0.249824,0.021824,0.0048,0.008192,0.014336,0.020032,0.747136,0.012672
+734,732.868,1.3645,1.03085,0.009024,0.22528,0.005952,0.004288,0.008128,0.0144,0.015584,0.736032,0.01216
+735,605.738,1.65088,1.06758,0.009152,0.243712,0.006144,0.005472,0.006816,0.016192,0.014528,0.752736,0.012832
+736,587.914,1.70093,1.67286,0.009792,0.476864,0.006912,0.00528,0.007008,0.016128,0.015776,1.12304,0.012064
+737,542.876,1.84204,1.03379,0.008672,0.225184,0.005664,0.00464,0.008192,0.015456,0.015264,0.73728,0.01344
+738,642.711,1.55591,1.05696,0.009376,0.244192,0.004896,0.005536,0.006528,0.015808,0.016032,0.743488,0.011104
+739,662.676,1.50903,1.05475,0.009408,0.223456,0.004864,0.005984,0.008192,0.015584,0.015136,0.759808,0.01232
+740,685.925,1.45789,1.88624,0.009728,0.223744,0.006144,0.004096,0.008192,0.01552,0.0152,1.58925,0.014368
+741,423.6,2.36072,1.05946,0.009088,0.25312,0.004928,0.006144,0.007648,0.01456,0.014656,0.736448,0.012864
+742,696.125,1.43652,1.05062,0.01024,0.222656,0.004896,0.005568,0.007584,0.014944,0.015808,0.75664,0.012288
+743,660.219,1.51465,1.2329,0.009568,0.408224,0.005696,0.014464,0.008064,0.014784,0.015936,0.743584,0.012576
+744,637.014,1.56982,1.3353,0.010208,0.22656,0.004896,0.005568,0.00672,0.015616,0.016256,1.00851,0.04096
+745,354.985,2.81702,1.09158,0.01008,0.26336,0.005088,0.006048,0.007648,0.01488,0.015744,0.74416,0.024576
+746,1301.56,0.768311,1.06397,0.009472,0.252224,0.005632,0.0048,0.007616,0.014624,0.014912,0.742784,0.011904
+747,671.696,1.48877,1.23485,0.009696,0.405824,0.005632,0.004832,0.008192,0.015488,0.015232,0.757056,0.012896
+748,583.808,1.71289,1.77757,0.009568,0.230368,0.006144,0.005184,0.007104,0.015616,0.015104,1.47206,0.016416
+749,461.028,2.16907,1.02922,0.008288,0.227328,0.006144,0.005984,0.008192,0.014496,0.015872,0.7296,0.013312
+750,667.536,1.49805,1.04448,0.009728,0.22352,0.005664,0.0048,0.007648,0.01488,0.016128,0.749824,0.012288
+751,702.031,1.42444,1.46419,0.009408,0.254784,0.006112,0.00544,0.00688,0.014336,0.016288,1.13795,0.012992
+752,519.632,1.92444,1.77642,0.008928,0.227296,0.005824,0.004416,0.008192,0.014336,0.01632,1.47568,0.015424
+753,459.889,2.17444,1.04448,0.009216,0.228352,0.006144,0.005536,0.008512,0.014656,0.016352,0.743424,0.012288
+754,600.41,1.66553,1.0407,0.009216,0.23504,0.005664,0.004768,0.007584,0.015008,0.014528,0.736928,0.011968
+755,778.115,1.28516,1.21789,0.008224,0.40752,0.005824,0.005472,0.007136,0.016384,0.01616,0.737504,0.013664
+756,622.114,1.60742,1.78589,0.009536,0.225696,0.0056,0.0048,0.00752,0.015008,0.014496,1.48682,0.016416
+757,446.139,2.24146,1.03251,0.008512,0.22528,0.005792,0.00448,0.00816,0.014368,0.016352,0.736736,0.012832
+758,699.752,1.42908,1.03277,0.008768,0.225152,0.005632,0.004736,0.007712,0.014784,0.016224,0.73744,0.01232
+759,704.809,1.41882,1.39878,0.009536,0.225536,0.0056,0.005088,0.007776,0.01472,0.015808,1.10243,0.012288
+760,530.983,1.8833,1.3224,0.009984,0.225536,0.005728,0.004512,0.008192,0.015584,0.015136,1.02195,0.015776
+761,515.415,1.94019,1.03216,0.009888,0.225376,0.005632,0.004864,0.008192,0.014336,0.016384,0.734816,0.012672
+762,630.979,1.58484,1.08544,0.009952,0.24592,0.005632,0.004736,0.00768,0.014848,0.01632,0.767456,0.012896
+763,704.931,1.41858,1.3984,0.00992,0.223392,0.005632,0.0048,0.008192,0.015552,0.015136,1.10141,0.014368
+764,569.284,1.75659,1.40672,0.01024,0.225152,0.005664,0.004704,0.007712,0.014816,0.015872,1.10845,0.014112
+765,459.27,2.17737,1.02214,0.008416,0.226528,0.004864,0.006144,0.008192,0.014368,0.015936,0.725408,0.012288
+766,739.083,1.35303,1.02848,0.009088,0.22528,0.005824,0.004384,0.008192,0.015776,0.014944,0.733088,0.011904
+767,678.708,1.47339,1.32915,0.009856,0.223616,0.006144,0.005664,0.006624,0.015584,0.015264,1.03232,0.01408
+768,562.676,1.77722,1.07315,0.009824,0.229792,0.005856,0.004384,0.008,0.030912,0.015872,0.757344,0.011168
+769,461.938,2.16479,1.04858,0.012288,0.23552,0.00576,0.004544,0.008128,0.015712,0.015008,0.738976,0.01264
+770,693.18,1.44263,1.02218,0.009216,0.222976,0.005664,0.004448,0.007616,0.015296,0.021792,0.723136,0.012032
+771,683.35,1.46338,1.2841,0.009536,0.221888,0.006144,0.005632,0.006656,0.01536,0.01536,0.991072,0.012448
+772,596.997,1.67505,1.04163,0.009792,0.22096,0.004864,0.005568,0.007936,0.015072,0.029824,0.735872,0.011744
+773,572.827,1.74573,1.74416,0.01024,0.470048,0.007136,0.005152,0.007136,0.073376,0.014688,1.14278,0.0136
+774,483.675,2.0675,1.05472,0.009824,0.257664,0.004896,0.005536,0.006752,0.015552,0.015168,0.72704,0.012288
+775,709.264,1.40991,1.30662,0.008192,0.225056,0.005632,0.004832,0.00816,0.014368,0.016288,1.01107,0.013024
+776,581.529,1.7196,1.02794,0.008672,0.229056,0.005632,0.0048,0.007936,0.014752,0.015744,0.729312,0.012032
+777,672.247,1.48755,1.75514,0.009504,0.48816,0.033856,0.020896,0.006688,0.016384,0.015776,1.15158,0.012288
+778,453.147,2.20679,1.07725,0.00976,0.23088,0.00512,0.005344,0.006944,0.015936,0.020544,0.770432,0.012288
+779,676.019,1.47925,1.24458,0.009312,0.223136,0.00512,0.006048,0.007904,0.01472,0.01584,0.948768,0.013728
+780,558.533,1.79041,1.03562,0.010176,0.233088,0.005632,0.0048,0.00752,0.015168,0.014464,0.732736,0.012032
+781,711.791,1.40491,1.69578,0.00928,0.447424,0.032384,0.00448,0.008192,0.016096,0.015712,1.14989,0.01232
+782,413.529,2.41821,1.05782,0.009824,0.260512,0.006144,0.004096,0.008192,0.015584,0.015168,0.726432,0.011872
+783,676.41,1.47839,1.33734,0.008192,0.241664,0.006144,0.005632,0.006656,0.015712,0.015008,1.02586,0.01248
+784,594.917,1.68091,1.0263,0.008544,0.2328,0.004864,0.0056,0.007616,0.014528,0.015104,0.72496,0.012288
+785,668.189,1.49658,1.68326,0.0096,0.457344,0.01552,0.00496,0.00816,0.015456,0.015296,1.14416,0.012768
+786,467.42,2.1394,1.05267,0.010208,0.227392,0.006112,0.00528,0.007008,0.016352,0.015968,0.752064,0.012288
+787,723.164,1.38281,1.04547,0.009024,0.224704,0.004896,0.006048,0.007744,0.014784,0.015904,0.749984,0.012384
+788,612.578,1.63245,1.05008,0.01024,0.222944,0.005632,0.0048,0.007744,0.01488,0.016384,0.755648,0.011808
+789,654.261,1.52844,1.66826,0.008192,0.464896,0.016384,0.005888,0.007648,0.015136,0.016384,1.12026,0.013472
+790,477.195,2.09558,1.03014,0.00992,0.237888,0.006016,0.004224,0.00816,0.014368,0.015872,0.722464,0.011232
+791,700.47,1.42761,1.0384,0.008256,0.229408,0.006112,0.005952,0.007584,0.014848,0.015744,0.73792,0.012576
+792,645.293,1.54968,1.04637,0.008896,0.228512,0.00496,0.005376,0.006912,0.01616,0.01584,0.74624,0.013472
+793,663.051,1.50818,1.80227,0.009728,0.231712,0.005632,0.004832,0.008192,0.014336,0.016192,1.49523,0.016416
+794,455.364,2.19604,1.04858,0.009824,0.225696,0.006144,0.004096,0.008192,0.014336,0.016032,0.751968,0.012288
+795,650.365,1.5376,1.05261,0.008416,0.228704,0.004896,0.005984,0.007904,0.014592,0.015808,0.753568,0.012736
+796,714.522,1.39954,1.20454,0.008544,0.405504,0.005728,0.004512,0.007904,0.015808,0.0152,0.729088,0.012256
+797,613.955,1.62878,1.76749,0.008256,0.22848,0.004992,0.006144,0.007616,0.014784,0.015712,1.46624,0.015264
+798,457.603,2.1853,1.04102,0.008832,0.24288,0.004928,0.005536,0.006752,0.015392,0.015328,0.730432,0.010944
+799,684.378,1.46118,1.05549,0.00896,0.225216,0.0056,0.004672,0.009344,0.014816,0.014752,0.759808,0.01232
+800,670.431,1.49158,1.39942,0.00992,0.236064,0.004704,0.005536,0.006528,0.016384,0.015488,1.09248,0.01232
+801,484.104,2.06567,1.41469,0.008256,0.24288,0.004896,0.006112,0.007744,0.014816,0.015552,1.10058,0.013856
+802,553.775,1.80579,1.05184,0.010272,0.233344,0.005632,0.004704,0.00768,0.014848,0.015808,0.747808,0.011744
+803,704.143,1.42017,1.05514,0.009056,0.228736,0.004896,0.006144,0.008,0.014528,0.015936,0.755296,0.012544
+804,647.64,1.54407,1.35994,0.009568,0.224,0.005824,0.004384,0.007968,0.01456,0.016384,1.06496,0.012288
+805,572.827,1.74573,1.40845,0.010112,0.2288,0.004864,0.00608,0.007776,0.014752,0.015936,1.10637,0.01376
+806,493.227,2.02747,1.03152,0.01024,0.227328,0.006144,0.005248,0.00704,0.015648,0.015072,0.732416,0.012384
+807,669.828,1.49292,1.03613,0.010144,0.225312,0.006144,0.006016,0.007584,0.014848,0.015744,0.737952,0.012384
+808,725.469,1.37842,1.41853,0.010048,0.22896,0.004864,0.005568,0.007968,0.014976,0.016032,1.09808,0.032032
+809,523.317,1.91089,1.06496,0.009504,0.247872,0.004864,0.006048,0.00784,0.014688,0.015712,0.745504,0.012928
+810,570.315,1.75342,1.67734,0.010048,0.446656,0.043008,0.004096,0.008192,0.015872,0.014848,1.1223,0.01232
+811,545.333,1.83374,1.06646,0.009632,0.23808,0.005632,0.004704,0.008192,0.014336,0.016352,0.756768,0.012768
+812,681.417,1.46753,1.40227,0.009536,0.231616,0.005632,0.0048,0.00816,0.014688,0.016128,1.09597,0.015744
+813,533.16,1.87561,1.08954,0.009536,0.251744,0.00496,0.006144,0.008192,0.014336,0.016352,0.765568,0.012704
+814,472.297,2.11731,1.0775,0.011072,0.265472,0.004896,0.005568,0.006688,0.015904,0.014816,0.74128,0.011808
+815,703.78,1.4209,1.06429,0.010112,0.232832,0.004896,0.006112,0.007616,0.014912,0.015776,0.758368,0.013664
+816,666.775,1.49976,1.42746,0.01024,0.236992,0.004864,0.005952,0.007712,0.014816,0.015968,1.11658,0.014336
+817,516.943,1.93445,1.07517,0.009824,0.250304,0.005792,0.005504,0.007104,0.014368,0.016352,0.75328,0.01264
+818,481.967,2.07483,1.07107,0.010656,0.247264,0.004864,0.005568,0.007616,0.015232,0.015968,0.751744,0.01216
+819,707.61,1.41321,1.05443,0.008192,0.226688,0.004864,0.006016,0.007968,0.01456,0.016064,0.75744,0.01264
+820,653.061,1.53125,1.43587,0.009536,0.254336,0.004864,0.005568,0.007648,0.014848,0.015744,1.10874,0.014592
+821,545.225,1.83411,1.09984,0.00848,0.249344,0.005632,0.00512,0.008,0.014528,0.016096,0.779936,0.012704
+822,469.698,2.12903,1.05507,0.010656,0.23344,0.005888,0.00432,0.008096,0.014464,0.016352,0.749568,0.012288
+823,701.31,1.4259,1.04477,0.008512,0.229248,0.005632,0.004704,0.008,0.014528,0.015968,0.745728,0.012448
+824,663.212,1.50781,1.3824,0.01008,0.227104,0.0056,0.004832,0.00784,0.01488,0.016032,1.0817,0.014336
+825,533.229,1.87537,1.05267,0.008192,0.227104,0.005632,0.004832,0.008192,0.015456,0.015264,0.755712,0.012288
+826,580.828,1.72168,1.26627,0.031584,0.42176,0.005344,0.004832,0.007616,0.015104,0.016192,0.751808,0.012032
+827,617.984,1.61816,1.05677,0.009824,0.239968,0.005632,0.004672,0.008192,0.014368,0.01632,0.74544,0.012352
+828,699.394,1.42981,1.33939,0.009888,0.229376,0.005632,0.0048,0.007424,0.014912,0.014688,1.03936,0.013312
+829,566.999,1.76367,1.04403,0.008736,0.233088,0.005632,0.004992,0.008192,0.015424,0.015328,0.739296,0.013344
+830,678.202,1.47449,1.68189,0.008704,0.459968,0.014976,0.004256,0.00816,0.01568,0.015072,1.14278,0.012288
+831,495.644,2.01758,1.05763,0.009056,0.226304,0.00512,0.005664,0.00768,0.014656,0.01504,0.761824,0.012288
+832,670.102,1.49231,1.06422,0.01024,0.22528,0.005984,0.004256,0.007808,0.01472,0.015872,0.768096,0.011968
+833,632.685,1.58057,1.06291,0.009248,0.226304,0.006112,0.005632,0.00672,0.015968,0.015872,0.764768,0.012288
+834,674.738,1.48206,1.88739,0.009504,0.226016,0.005792,0.004448,0.00784,0.014688,0.015904,1.58768,0.01552
+835,434.543,2.30127,1.06291,0.008192,0.235008,0.004864,0.005888,0.007872,0.014688,0.016256,0.757344,0.0128
+836,513.348,1.948,1.04454,0.008992,0.2376,0.006112,0.004096,0.008192,0.015616,0.015104,0.735232,0.0136
+837,906.295,1.10339,1.06496,0.010016,0.230688,0.005056,0.005792,0.008192,0.014688,0.015616,0.762592,0.01232
+838,639.65,1.56335,1.81178,0.009696,0.239424,0.004928,0.005504,0.006784,0.01568,0.015072,1.49824,0.016448
+839,463.401,2.15796,1.04442,0.00944,0.231296,0.005024,0.006112,0.007648,0.014912,0.015744,0.741408,0.012832
+840,687.191,1.4552,1.06877,0.009632,0.22384,0.005984,0.004256,0.007968,0.01456,0.016384,0.77408,0.012064
+841,638.952,1.56506,1.22925,0.008672,0.405024,0.005696,0.004992,0.008096,0.014464,0.016352,0.753504,0.012448
+842,637.262,1.56921,1.40445,0.008736,0.23456,0.005024,0.00544,0.006848,0.015552,0.015168,1.09914,0.013984
+843,494.179,2.02356,1.04656,0.009952,0.231744,0.006112,0.005824,0.007648,0.014944,0.014752,0.743264,0.01232
+844,660.006,1.51514,1.0527,0.010048,0.2288,0.004864,0.005568,0.00672,0.015776,0.014944,0.755104,0.01088
+845,698.44,1.43176,1.44595,0.00912,0.257088,0.005024,0.004096,0.008192,0.015776,0.014944,1.11968,0.012032
+846,491.894,2.03296,1.85875,0.01024,0.260096,0.006144,0.004096,0.008192,0.014336,0.01632,1.52378,0.015552
+847,444.059,2.25195,1.04243,0.009984,0.228992,0.004896,0.005984,0.008192,0.014368,0.016352,0.74128,0.012384
+848,707.366,1.4137,1.04042,0.009888,0.227712,0.005856,0.004384,0.008,0.014528,0.016352,0.741408,0.012288
+849,496.906,2.01245,1.22314,0.008672,0.403456,0.006144,0.005696,0.00768,0.015296,0.015872,0.747872,0.012448
+850,953.112,1.04919,1.82272,0.01024,0.240736,0.005024,0.00544,0.006848,0.016,0.014752,1.5087,0.014976
+851,444.444,2.25,1.06227,0.009408,0.231488,0.004896,0.006112,0.007776,0.014752,0.016192,0.757952,0.013696
+852,682.894,1.46436,1.04858,0.010208,0.225216,0.005632,0.004704,0.008192,0.014336,0.016384,0.753088,0.010816
+853,684.95,1.45996,1.38621,0.009984,0.22144,0.006176,0.005856,0.007584,0.0152,0.015648,1.09197,0.012352
+854,542.876,1.84204,1.79165,0.009888,0.229728,0.006144,0.004096,0.008192,0.014368,0.016352,1.48685,0.016032
+855,463.926,2.15552,1.06038,0.009824,0.227264,0.005632,0.005088,0.008192,0.014368,0.016352,0.759808,0.013856
+856,686.097,1.45752,1.05677,0.009504,0.22192,0.005856,0.004384,0.007424,0.014848,0.014624,0.76592,0.012288
+857,667.753,1.49756,1.41213,0.009824,0.223168,0.005664,0.005056,0.007936,0.014592,0.016064,1.11648,0.013344
+858,546.862,1.82861,1.38189,0.009376,0.222048,0.005696,0.004544,0.008192,0.015712,0.015008,1.08749,0.013824
+859,497.812,2.00879,1.03613,0.00864,0.222272,0.005056,0.005984,0.007456,0.014624,0.014944,0.743424,0.013728
+860,684.035,1.46191,1.05062,0.010144,0.22128,0.006144,0.005248,0.00704,0.015424,0.015296,0.757824,0.012224
+861,647.589,1.54419,1.41293,0.009888,0.223584,0.006176,0.0056,0.006688,0.015872,0.015968,1.11638,0.012768
+862,577.064,1.73291,1.78995,0.009408,0.221984,0.005632,0.00464,0.007712,0.014816,0.016256,1.49418,0.015328
+863,453.147,2.20679,1.07152,0.009024,0.229344,0.006144,0.00592,0.007584,0.015072,0.015776,0.770464,0.012192
+864,640.701,1.56079,1.03549,0.009888,0.235872,0.005888,0.004352,0.007968,0.01456,0.016384,0.72864,0.011936
+865,733.13,1.36401,1.41075,0.008224,0.223264,0.006112,0.005408,0.00688,0.015648,0.015072,1.11808,0.012064
+866,533.194,1.87549,1.39472,0.009504,0.229888,0.005664,0.0048,0.007712,0.014848,0.015552,1.09235,0.0144
+867,488.084,2.04883,1.05795,0.009536,0.227616,0.005632,0.005024,0.008032,0.014528,0.01568,0.758432,0.013472
+868,688.056,1.45337,1.0353,0.009664,0.224864,0.005088,0.005344,0.006944,0.01536,0.015392,0.740768,0.011872
+869,641.705,1.55835,1.41517,0.009664,0.25248,0.005696,0.004544,0.008192,0.02256,0.015648,1.08413,0.012256
+870,498.357,2.00659,1.40752,0.008736,0.230656,0.004864,0.005568,0.00672,0.016192,0.01456,1.10589,0.014336
+871,493.494,2.02637,1.08915,0.008832,0.258048,0.006144,0.005504,0.006784,0.015616,0.015104,0.759808,0.013312
+872,665.908,1.50171,1.05658,0.010144,0.227424,0.006144,0.005376,0.006912,0.016,0.014752,0.757728,0.012096
+873,618.544,1.6167,1.43008,0.008992,0.239616,0.006144,0.005792,0.007648,0.015232,0.016384,1.11763,0.01264
+874,586.232,1.70581,1.05885,0.008928,0.231424,0.006176,0.004064,0.00816,0.0144,0.016352,0.757536,0.011808
+875,465.666,2.14746,1.05885,0.012288,0.229408,0.006112,0.005728,0.00656,0.015456,0.015264,0.755616,0.012416
+876,688.172,1.45312,1.02605,0.009632,0.22592,0.006112,0.004096,0.00816,0.014368,0.015904,0.73072,0.011136
+877,696.125,1.43652,1.42746,0.008192,0.230624,0.004928,0.006112,0.007744,0.014656,0.015648,1.12726,0.012288
+878,531.327,1.88208,1.32051,0.00848,0.23248,0.005088,0.005856,0.007744,0.015072,0.015392,1.01475,0.015648
+879,514.638,1.94312,1.06058,0.009376,0.22752,0.004864,0.006048,0.007776,0.014752,0.01616,0.761568,0.012512
+880,681.531,1.46729,1.04243,0.009376,0.224128,0.005952,0.004256,0.008192,0.01536,0.015328,0.747552,0.012288
+881,663.427,1.50732,1.40902,0.00992,0.225632,0.006112,0.005216,0.007072,0.014368,0.016352,1.11002,0.014336
+882,556.068,1.79834,1.08682,0.010144,0.237568,0.006176,0.00512,0.007136,0.015648,0.015072,0.777888,0.012064
+883,508.946,1.96484,1.05882,0.011968,0.23152,0.005632,0.004832,0.008192,0.014336,0.016384,0.753216,0.012736
+884,703.297,1.42188,1.03565,0.00944,0.227744,0.004864,0.005504,0.00656,0.016128,0.01616,0.737088,0.01216
+885,649.849,1.53882,1.2529,0.008416,0.229376,0.005792,0.005504,0.007168,0.015456,0.015232,0.95232,0.013632
+886,616.867,1.62109,1.04448,0.01024,0.22672,0.004864,0.005568,0.00656,0.015584,0.015136,0.748672,0.011136
+887,696.599,1.43555,1.6639,0.008992,0.472704,0.007712,0.005088,0.008032,0.014496,0.016384,1.11821,0.012288
+888,471.672,2.12012,1.04099,0.008832,0.22864,0.004896,0.005568,0.006624,0.015968,0.016224,0.741984,0.012256
+889,684.721,1.46045,1.04326,0.009024,0.22528,0.006144,0.005792,0.007616,0.014848,0.014752,0.74752,0.012288
+890,652.229,1.5332,1.04227,0.009504,0.228064,0.006144,0.004096,0.008192,0.014368,0.016032,0.743744,0.012128
+891,700.53,1.42749,1.77373,0.009984,0.229632,0.005728,0.004512,0.008192,0.015872,0.01488,1.46864,0.016288
+892,450.704,2.21875,1.04899,0.008608,0.227328,0.006144,0.004096,0.008192,0.016384,0.014368,0.752672,0.0112
+893,671.916,1.48828,1.05418,0.009728,0.227072,0.004864,0.006048,0.007616,0.01472,0.015744,0.754592,0.013792
+894,711.605,1.40527,1.23261,0.008544,0.405504,0.005888,0.004352,0.008064,0.014464,0.016384,0.757504,0.011904
+895,582.812,1.71582,1.88419,0.00944,0.22592,0.00592,0.004544,0.008128,0.014368,0.016352,1.58499,0.014528
+896,440.193,2.27173,1.06406,0.009472,0.229536,0.004896,0.005536,0.006784,0.015648,0.014976,0.765312,0.011904
+897,665.908,1.50171,1.04656,0.009696,0.221728,0.006144,0.005728,0.007616,0.014784,0.01488,0.753664,0.01232
+898,663.965,1.5061,1.2247,0.010176,0.405184,0.005632,0.0048,0.007616,0.015104,0.016288,0.749088,0.010816
+899,616.403,1.62231,1.92925,0.009984,0.235776,0.006144,0.00592,0.007616,0.014336,0.015136,1.61997,0.014368
+900,414.953,2.40991,1.02912,0.009216,0.228672,0.004864,0.005536,0.00848,0.014624,0.016352,0.72912,0.012256
+901,688.635,1.45215,1.05616,0.009248,0.224224,0.006144,0.005856,0.00752,0.01488,0.016288,0.758304,0.013696
+902,674.794,1.48193,1.26336,0.009984,0.420096,0.00576,0.00448,0.007904,0.014656,0.016192,0.771456,0.012832
+903,601.557,1.66235,1.8824,0.008512,0.225024,0.0056,0.004864,0.008192,0.014336,0.016384,1.58515,0.014336
+904,433.485,2.30688,1.03846,0.00832,0.224864,0.005632,0.004832,0.007552,0.015168,0.01568,0.744128,0.012288
+905,658.415,1.5188,1.04346,0.00992,0.225056,0.004864,0.005856,0.00768,0.014816,0.016064,0.745888,0.013312
+906,686.557,1.45654,1.26365,0.00928,0.406336,0.005632,0.004768,0.007616,0.014912,0.016384,0.786432,0.012288
+907,605.917,1.65039,1.78794,0.009728,0.222848,0.004992,0.006112,0.007648,0.014912,0.015648,1.48963,0.016416
+908,457.654,2.18506,1.0752,0.01024,0.223232,0.006144,0.005248,0.00704,0.014336,0.030304,0.767904,0.010752
+909,595.522,1.6792,1.10429,0.008832,0.239456,0.005952,0.014656,0.008192,0.014336,0.029856,0.759712,0.023296
+910,594.054,1.68335,1.08384,0.00864,0.249696,0.005664,0.004736,0.007648,0.01488,0.015776,0.76576,0.01104
+911,727.015,1.37549,1.79421,0.008384,0.23344,0.006144,0.005536,0.006752,0.015872,0.014848,1.48685,0.016384
+912,446.187,2.24121,1.06426,0.00944,0.244512,0.00576,0.00448,0.007936,0.014592,0.016,0.749504,0.012032
+913,677.809,1.47534,1.05843,0.010112,0.225408,0.0056,0.00464,0.008192,0.014336,0.016224,0.760992,0.012928
+914,685.408,1.45898,1.2153,0.009024,0.404768,0.004864,0.0056,0.006656,0.016384,0.016096,0.739616,0.012288
+915,630.93,1.58496,1.80547,0.008288,0.232544,0.005024,0.006112,0.008224,0.014336,0.016384,1.49827,0.016288
+916,441.094,2.26709,1.03821,0.00896,0.226752,0.004864,0.005344,0.008224,0.014784,0.014464,0.742592,0.012224
+917,693.532,1.44189,1.0248,0.008992,0.223008,0.00576,0.004704,0.007712,0.014752,0.01568,0.731904,0.012288
+918,482.393,2.073,1.39869,0.01008,0.233632,0.006144,0.004096,0.008192,0.015456,0.015264,1.09341,0.012416
+919,813.829,1.22876,1.0752,0.009536,0.262624,0.005632,0.004832,0.008192,0.014368,0.016128,0.741376,0.012512
+920,499.695,2.00122,1.06848,0.012288,0.24288,0.004928,0.005536,0.006752,0.015968,0.014784,0.753216,0.012128
+921,702.935,1.42261,1.04448,0.009888,0.225632,0.00576,0.005504,0.007168,0.015456,0.015296,0.7472,0.012576
+922,635.531,1.57349,1.41085,0.010176,0.223168,0.005632,0.004736,0.007712,0.014816,0.016192,1.11635,0.012064
+923,558.723,1.78979,1.04125,0.009024,0.229088,0.005632,0.004928,0.008128,0.0144,0.016192,0.741568,0.012288
+924,477.612,2.09375,1.0575,0.010976,0.23104,0.005632,0.0048,0.007392,0.0144,0.015264,0.755744,0.012256
+925,670.925,1.49048,1.04845,0.010048,0.223424,0.005984,0.005504,0.006944,0.015456,0.015264,0.753088,0.012736
+926,678.37,1.47412,1.4177,0.008544,0.224544,0.004864,0.005568,0.006688,0.015744,0.014976,1.12563,0.011136
+927,401.529,2.49048,1.11821,0.00944,0.277056,0.005632,0.004832,0.008192,0.014336,0.016128,0.770304,0.012288
+928,581.818,1.71875,1.13907,0.010848,0.302208,0.004992,0.00544,0.006848,0.01584,0.01488,0.765888,0.012128
+929,702.212,1.42407,1.0672,0.02208,0.232064,0.005728,0.004512,0.008192,0.014336,0.028544,0.739456,0.012288
+930,620.23,1.6123,1.47475,0.008864,0.241312,0.004416,0.004096,0.008192,0.014336,0.024576,1.1567,0.012256
+931,533.264,1.87524,1.79405,0.00928,0.232384,0.006144,0.00592,0.00752,0.014944,0.016,1.48678,0.015072
+932,481.599,2.07642,1.06874,0.009952,0.225056,0.00496,0.005472,0.007552,0.014752,0.03104,0.757984,0.011968
+933,643.418,1.5542,1.03296,0.00896,0.222368,0.00496,0.005824,0.007616,0.015104,0.01552,0.740032,0.012576
+934,706.572,1.41528,1.22694,0.00944,0.406336,0.005632,0.004736,0.007648,0.014912,0.016352,0.749472,0.012416
+935,598.306,1.67139,1.7752,0.008192,0.24304,0.004864,0.006048,0.008032,0.014496,0.016288,1.45818,0.016064
+936,432.889,2.31006,1.09069,0.009376,0.261056,0.005856,0.004384,0.008,0.014528,0.01616,0.759424,0.011904
+937,702.452,1.42358,1.04854,0.009376,0.234336,0.005824,0.005504,0.007104,0.014336,0.016384,0.742944,0.012736
+938,655.15,1.52637,1.2473,0.009408,0.438464,0.004864,0.005536,0.00672,0.016352,0.015488,0.738176,0.012288
+939,602.442,1.65991,1.03014,0.009344,0.23552,0.004992,0.006144,0.007584,0.014944,0.01632,0.724032,0.011264
+940,488.724,2.04614,1.05398,0.012288,0.230816,0.004704,0.005248,0.00704,0.015936,0.014784,0.749568,0.0136
+941,678.033,1.47485,1.06291,0.009248,0.226272,0.006144,0.0056,0.006688,0.016064,0.015872,0.764576,0.012448
+942,661.392,1.51196,1.40266,0.00992,0.2256,0.005824,0.004416,0.00784,0.014688,0.016384,1.10589,0.012096
+943,555.767,1.79932,1.31878,0.00944,0.2272,0.005024,0.006112,0.007616,0.01456,0.01472,1.01078,0.023328
+944,515.22,1.94092,1.05866,0.00992,0.2256,0.006048,0.004192,0.008192,0.014368,0.015904,0.762176,0.012256
+945,508.315,1.96729,1.06294,0.00976,0.245952,0.005632,0.004896,0.008032,0.014496,0.016384,0.745472,0.01232
+946,1000.24,0.999756,1.41277,0.010176,0.229024,0.005632,0.0048,0.007616,0.014912,0.015616,1.10896,0.016032
+947,533.194,1.87549,1.03629,0.008192,0.230688,0.004864,0.006112,0.007552,0.014432,0.015968,0.736192,0.012288
+948,483.418,2.0686,1.06045,0.011904,0.231808,0.006112,0.004128,0.008192,0.014368,0.016128,0.755232,0.012576
+949,672.026,1.48804,1.05488,0.008384,0.227296,0.006144,0.0056,0.006688,0.015712,0.015008,0.75776,0.012288
+950,689.446,1.45044,1.3865,0.009792,0.227648,0.005632,0.004736,0.008192,0.014336,0.016384,1.08506,0.01472
+951,558.799,1.78955,1.05283,0.008384,0.227296,0.00576,0.00448,0.008192,0.016256,0.015744,0.754272,0.012448
+952,487.155,2.05273,1.05507,0.010912,0.233472,0.005824,0.004416,0.008032,0.014496,0.016,0.749952,0.011968
+953,690.842,1.44751,1.06221,0.009312,0.226208,0.006144,0.005696,0.007616,0.01488,0.014816,0.764992,0.012544
+954,663.427,1.50732,1.32285,0.009536,0.227104,0.005024,0.005952,0.007456,0.014912,0.015776,1.02269,0.0144
+955,597.172,1.67456,1.0327,0.008704,0.237184,0.005632,0.004992,0.008192,0.015392,0.01536,0.72448,0.012768
+956,675.35,1.48071,1.81658,0.009952,0.229056,0.004832,0.005568,0.007648,0.014752,0.014912,1.51347,0.016384
+957,447.846,2.23291,1.0793,0.008192,0.26112,0.00512,0.006016,0.007648,0.01472,0.015808,0.748384,0.012288
+958,669.062,1.49463,1.30301,0.008672,0.228416,0.005056,0.004096,0.008192,0.01568,0.01504,1.00352,0.014336
+959,586.819,1.7041,1.05712,0.008576,0.226592,0.004864,0.00608,0.007648,0.01456,0.01472,0.761792,0.012288
+960,645.344,1.54956,1.69373,0.008928,0.454656,0.027808,0.00496,0.007584,0.014944,0.016384,1.14618,0.012288
+961,481.656,2.07617,1.0567,0.009952,0.229184,0.005632,0.005088,0.008032,0.014496,0.016384,0.7552,0.012736
+962,679.721,1.47119,1.05414,0.01024,0.227136,0.005632,0.004672,0.007616,0.01504,0.015776,0.755584,0.012448
+963,598.218,1.67163,1.04797,0.008576,0.228544,0.004928,0.006144,0.007808,0.01472,0.015872,0.748032,0.013344
+964,687.364,1.45483,1.91574,0.009056,0.243712,0.006144,0.005248,0.00704,0.015776,0.014944,1.59891,0.014912
+965,433.393,2.30737,1.05866,0.009728,0.22736,0.005632,0.005088,0.008032,0.014496,0.016064,0.759552,0.012704
+966,679.721,1.47119,1.03645,0.009408,0.22416,0.006016,0.005344,0.007008,0.014592,0.016192,0.7424,0.011328
+967,612.349,1.63306,1.04019,0.0096,0.223872,0.005632,0.004608,0.008192,0.014336,0.016384,0.744672,0.012896
+968,707.304,1.41382,1.85754,0.01024,0.225056,0.005632,0.0048,0.007616,0.01488,0.015456,1.55898,0.01488
+969,435.328,2.29712,1.07549,0.00848,0.251456,0.005632,0.005056,0.008096,0.014432,0.015904,0.753984,0.012448
+970,662.569,1.50928,1.05389,0.009504,0.226016,0.006144,0.004096,0.008192,0.014368,0.016352,0.756928,0.012288
+971,632.099,1.58203,1.0593,0.008896,0.223232,0.005664,0.004576,0.008192,0.014368,0.01568,0.765792,0.012896
+972,685.753,1.45825,1.7656,0.008448,0.228896,0.005632,0.004832,0.007584,0.014976,0.015744,1.46435,0.015136
+973,452.247,2.21118,1.05251,0.008832,0.231328,0.005632,0.004704,0.008192,0.014368,0.015968,0.749952,0.013536
+974,677.473,1.47607,1.06365,0.00896,0.245504,0.005632,0.004576,0.0064,0.016224,0.01584,0.748224,0.012288
+975,647.077,1.54541,1.22518,0.008672,0.405152,0.005632,0.00496,0.00816,0.015712,0.015072,0.749536,0.012288
+976,612.623,1.63232,1.80419,0.009344,0.228288,0.005824,0.004416,0.008,0.014528,0.016384,1.50118,0.016224
+977,459.45,2.17651,1.06086,0.009408,0.226112,0.005728,0.004512,0.008192,0.0144,0.01632,0.763904,0.012288
+978,657.992,1.51978,1.05242,0.00944,0.225664,0.005632,0.004576,0.007712,0.015104,0.014496,0.75776,0.012032
+979,671.255,1.48975,1.22883,0.009664,0.411744,0.0056,0.00512,0.008032,0.015552,0.015328,0.745472,0.01232
+980,632.099,1.58203,1.80634,0.010048,0.226592,0.005024,0.00592,0.008,0.014752,0.016224,1.5047,0.015072
+981,452.697,2.20898,1.06426,0.009536,0.22736,0.004896,0.006016,0.00784,0.014656,0.024608,0.755712,0.013632
+982,575.443,1.73779,1.06301,0.01008,0.239232,0.005664,0.0048,0.007648,0.015104,0.015776,0.753856,0.010848
+983,806.141,1.24048,1.228,0.009984,0.40496,0.004896,0.006144,0.007712,0.014848,0.016288,0.751168,0.012
+984,609.705,1.64014,1.04416,0.009696,0.22992,0.006144,0.004096,0.008192,0.014368,0.016352,0.743424,0.011968
+985,461.365,2.16748,1.07114,0.010752,0.235488,0.005632,0.00464,0.008192,0.014336,0.015968,0.763584,0.012544
+986,676.354,1.47852,1.05715,0.008608,0.224864,0.005632,0.0048,0.007584,0.015072,0.015488,0.762816,0.012288
+987,647.18,1.54517,1.41901,0.009472,0.223296,0.004896,0.006048,0.00768,0.014816,0.016128,1.12464,0.012032
+988,559.181,1.78833,1.36179,0.009536,0.223744,0.005632,0.0048,0.007488,0.01488,0.014656,1.06685,0.014208
+989,502.762,1.98901,1.04848,0.008896,0.22528,0.006144,0.005984,0.008128,0.01456,0.016128,0.749856,0.013504
+990,652.541,1.53247,1.04211,0.009664,0.227744,0.005632,0.004768,0.007648,0.01488,0.015904,0.743712,0.01216
+991,522.249,1.91479,1.4417,0.008192,0.245472,0.005632,0.004896,0.008192,0.014336,0.016384,1.12586,0.012736
+992,735.368,1.35986,1.3824,0.00976,0.229344,0.005632,0.004832,0.007616,0.015104,0.015968,1.08128,0.012864
+993,501.776,1.99292,1.04934,0.009024,0.23072,0.004896,0.005856,0.007712,0.014752,0.015904,0.74768,0.0128
+994,656.621,1.52295,1.03568,0.009824,0.22528,0.005632,0.0048,0.007616,0.014624,0.01488,0.739296,0.013728
+995,693.415,1.44214,1.4328,0.009856,0.225664,0.005696,0.004544,0.008192,0.014368,0.016352,1.13254,0.015584
+996,539.231,1.85449,1.38445,0.01024,0.229376,0.006144,0.00544,0.007904,0.014976,0.014688,1.08134,0.014336
+997,496.485,2.01416,1.04314,0.009056,0.227392,0.005824,0.005504,0.008416,0.014752,0.014752,0.744672,0.012768
+998,691.775,1.44556,1.04694,0.008608,0.224768,0.005632,0.004832,0.007616,0.0152,0.015872,0.752128,0.012288
+999,671.696,1.48877,1.32259,0.008192,0.22704,0.005632,0.004896,0.007936,0.014496,0.01552,1.02486,0.014016
+1000,582.978,1.71533,1.03712,0.009024,0.225088,0.005632,0.0048,0.007616,0.014912,0.016256,0.741504,0.012288
+1001,686.212,1.45728,1.90054,0.009856,0.231808,0.006144,0.005984,0.007616,0.014784,0.015808,1.59398,0.01456
+1002,439.249,2.27661,1.0545,0.009472,0.22816,0.006144,0.005472,0.006816,0.015936,0.014816,0.755648,0.012032
+1003,661.392,1.51196,1.42205,0.008896,0.223264,0.006112,0.005792,0.007584,0.014912,0.014784,1.1263,0.0144
+1004,546.279,1.83057,1.04029,0.01024,0.221216,0.006112,0.004096,0.009216,0.013312,0.01616,0.747744,0.012192
+1005,604.754,1.65356,1.26032,0.011008,0.420992,0.005024,0.005888,0.007616,0.015136,0.015808,0.766528,0.01232
+1006,589.607,1.69604,1.03987,0.009856,0.221568,0.006144,0.005312,0.00864,0.01472,0.01584,0.745696,0.012096
+1007,693.297,1.44238,1.0497,0.010016,0.222592,0.00496,0.006144,0.007488,0.01488,0.016032,0.755776,0.011808
+1008,611.161,1.63623,1.03667,0.008608,0.225024,0.005632,0.004832,0.007616,0.014912,0.01616,0.7416,0.012288
+1009,653.791,1.52954,1.69574,0.009824,0.474848,0.006848,0.006016,0.007584,0.015072,0.015648,1.14765,0.012256
+1010,475.615,2.10254,1.04877,0.009472,0.228032,0.005632,0.004832,0.007904,0.016032,0.015008,0.749568,0.012288
+1011,702.091,1.42432,1.0487,0.00832,0.223232,0.006144,0.005536,0.006752,0.01584,0.016064,0.754304,0.012512
+1012,621.453,1.60913,1.04989,0.009984,0.23504,0.004896,0.005568,0.008704,0.014336,0.016256,0.741504,0.0136
+1013,668.844,1.49512,1.8905,0.008384,0.224288,0.005056,0.00608,0.007392,0.014272,0.015264,1.59517,0.014592
+1014,431.84,2.31567,1.09363,0.009472,0.252672,0.006176,0.005152,0.007136,0.01536,0.015328,0.770048,0.012288
+1015,661.926,1.51074,1.0407,0.00896,0.22528,0.006144,0.005728,0.007584,0.014688,0.015008,0.744448,0.012864
+1016,631.709,1.58301,1.04858,0.01024,0.224992,0.005632,0.004832,0.007584,0.014816,0.014528,0.753504,0.012448
+1017,668.735,1.49536,1.90342,0.009024,0.22528,0.006016,0.005504,0.006912,0.014336,0.016416,1.6056,0.014336
+1018,437.467,2.28589,1.0569,0.008736,0.227328,0.006144,0.004096,0.008192,0.01552,0.0152,0.759776,0.011904
+1019,651.71,1.53442,1.06086,0.010016,0.231648,0.005824,0.005472,0.007136,0.014336,0.016352,0.757792,0.012288
+1020,497.51,2.01001,1.07101,0.008864,0.225248,0.006144,0.005344,0.006944,0.016384,0.015968,0.774112,0.012
+1021,629.669,1.58813,1.88362,0.008608,0.22528,0.006144,0.005792,0.00816,0.01472,0.014368,1.58512,0.015424
+1022,444.927,2.24756,1.05181,0.009824,0.227072,0.004864,0.005568,0.008096,0.014528,0.01472,0.754976,0.01216
+1023,691.541,1.44604,1.04742,0.008992,0.225408,0.00592,0.005504,0.007008,0.014336,0.015776,0.751904,0.012576
+1024,598.044,1.67212,1.05274,0.00928,0.224224,0.005728,0.004512,0.007936,0.014592,0.016032,0.758144,0.012288
+1025,650.985,1.53613,1.70256,0.008992,0.47104,0.00784,0.005504,0.007136,0.016192,0.015968,1.15683,0.013056
+1026,486.403,2.05591,1.03014,0.00992,0.227648,0.005696,0.004544,0.007904,0.014624,0.016384,0.731136,0.012288
+1027,687.364,1.45483,1.05002,0.008192,0.22528,0.00576,0.004544,0.008128,0.015392,0.015328,0.753664,0.013728
+1028,604.665,1.65381,1.05267,0.01024,0.23472,0.005984,0.004832,0.007616,0.01488,0.015872,0.74624,0.012288
+1029,680.173,1.47021,1.38422,0.009856,0.245792,0.005632,0.00496,0.008192,0.014336,0.016032,1.06534,0.01408
+1030,502.084,1.9917,1.05514,0.008768,0.229376,0.006144,0.004096,0.008224,0.015616,0.015072,0.755008,0.012832
+1031,671.365,1.4895,1.04381,0.008384,0.223232,0.005888,0.005504,0.00704,0.015424,0.015328,0.749536,0.013472
+1032,681.531,1.46729,1.24787,0.00896,0.405472,0.006144,0.004096,0.008192,0.016032,0.01472,0.772064,0.012192
+1033,573.991,1.74219,1.4592,0.008192,0.249856,0.006176,0.005728,0.007552,0.014336,0.01536,1.13664,0.01536
+1034,494.686,2.02148,1.04214,0.009472,0.229696,0.00592,0.004832,0.007584,0.01504,0.014464,0.74304,0.012096
+1035,691.075,1.44702,1.02678,0.00896,0.225248,0.005792,0.004448,0.008192,0.014336,0.01632,0.732512,0.010976
+1036,663.212,1.50781,1.43136,0.010112,0.221312,0.006144,0.004096,0.008,0.014528,0.015872,1.13917,0.012128
+1037,493.672,2.02563,1.09373,0.008992,0.233504,0.006048,0.005504,0.006848,0.015584,0.015136,0.78848,0.013632
+1038,466.409,2.14404,1.08845,0.011232,0.24784,0.006112,0.004096,0.008192,0.015616,0.015104,0.768,0.012256
+1039,662.998,1.5083,1.0665,0.009856,0.22976,0.006144,0.005664,0.006624,0.015648,0.015104,0.765152,0.012544
+1040,695.77,1.43726,1.21706,0.0088,0.403456,0.006144,0.004096,0.008192,0.01584,0.01488,0.743424,0.012224
+1041,624.01,1.60254,1.4184,0.00976,0.225568,0.005632,0.0048,0.008128,0.0144,0.016192,1.12013,0.013792
+1042,484.676,2.06323,1.06563,0.009152,0.22528,0.006144,0.005248,0.00704,0.014336,0.016064,0.770368,0.012
+1043,674.683,1.48218,1.0801,0.009024,0.221152,0.006144,0.00576,0.006528,0.015552,0.015168,0.78848,0.012288
+1044,676.577,1.47803,1.43066,0.009792,0.221184,0.005632,0.0048,0.007648,0.015136,0.015456,1.13898,0.012032
+1045,539.515,1.85352,1.38448,0.008256,0.231392,0.006144,0.005568,0.00672,0.015808,0.014944,1.08285,0.0128
+1046,465.772,2.14697,1.08192,0.009856,0.2416,0.00512,0.005344,0.006944,0.016384,0.016096,0.768288,0.012288
+1047,737.088,1.35669,1.05728,0.008704,0.22272,0.004864,0.005888,0.007968,0.01456,0.01632,0.763808,0.012448
+1048,671.035,1.49023,1.44765,0.010144,0.220512,0.004864,0.005312,0.006976,0.01552,0.0152,1.15418,0.014944
+1049,532.017,1.87964,1.39821,0.009856,0.223616,0.006016,0.005472,0.008736,0.014592,0.016256,1.0999,0.01376
+1050,487.155,2.05273,1.1032,0.009984,0.248064,0.006144,0.004096,0.008128,0.0144,0.016256,0.784224,0.011904
+1051,673.131,1.4856,1.06093,0.008256,0.225248,0.005664,0.004608,0.008192,0.014336,0.016384,0.765952,0.012288
+1052,660.752,1.51343,1.44691,0.009216,0.221056,0.006016,0.004352,0.009312,0.015104,0.015584,1.15194,0.014336
+1053,540.013,1.85181,1.06701,0.009792,0.22368,0.006144,0.005664,0.006624,0.015808,0.014912,0.771936,0.012448
+1054,480.3,2.08203,1.04973,0.011744,0.229376,0.004864,0.0056,0.006592,0.015776,0.014976,0.7488,0.012
+1055,457.092,2.18774,1.05782,0.009696,0.22992,0.006144,0.00592,0.007616,0.015008,0.015744,0.754432,0.013344
+1056,1033.04,0.968018,1.43936,0.01024,0.23344,0.005632,0.00464,0.007776,0.014784,0.015744,1.13277,0.014336
+1057,588.929,1.698,1.07827,0.00976,0.231904,0.00608,0.005536,0.006816,0.015936,0.014848,0.77408,0.013312
+1058,473.417,2.1123,1.08163,0.011744,0.248,0.004864,0.005568,0.007616,0.01504,0.01616,0.760352,0.012288
+1059,670.376,1.4917,1.0904,0.009088,0.249408,0.005632,0.005024,0.008064,0.014464,0.016288,0.76992,0.012512
+1060,641.805,1.55811,1.48205,0.00992,0.24608,0.006144,0.00512,0.007168,0.015392,0.01536,1.16256,0.014304
+1061,535.215,1.86841,1.09568,0.009856,0.258432,0.005856,0.005504,0.007072,0.014336,0.016384,0.765952,0.012288
+1062,469.24,2.1311,1.09962,0.011104,0.253952,0.006144,0.004096,0.008192,0.015552,0.015168,0.773504,0.011904
+1063,564.498,1.77148,1.11885,0.008832,0.28672,0.006176,0.005568,0.006688,0.016032,0.014688,0.761856,0.012288
+1064,568.968,1.75757,1.46637,0.00992,0.26656,0.006176,0.006112,0.008192,0.01584,0.01488,1.1264,0.012288
+1065,619.386,1.6145,1.0848,0.009856,0.244096,0.006176,0.00576,0.007552,0.014688,0.014976,0.76912,0.012576
+1066,433.852,2.30493,1.11258,0.01088,0.25584,0.006176,0.004064,0.008192,0.014336,0.016192,0.784576,0.01232
+1067,667.753,1.49756,1.07062,0.008352,0.228576,0.004896,0.006048,0.008192,0.014336,0.016384,0.770048,0.013792
+1068,660.752,1.51343,1.23277,0.009024,0.403456,0.006144,0.005312,0.006976,0.015776,0.014976,0.759008,0.012096
+1069,621.171,1.60986,1.43837,0.008864,0.247424,0.005632,0.004992,0.008096,0.014432,0.016096,1.1185,0.014336
+1070,478.505,2.08984,1.09203,0.008608,0.249856,0.006144,0.004096,0.008192,0.014368,0.01632,0.772128,0.01232
+1071,647.794,1.5437,1.07485,0.00928,0.225216,0.00512,0.006048,0.007584,0.01504,0.01616,0.777568,0.012832
+1072,679.383,1.47192,1.43155,0.01024,0.228512,0.00496,0.005472,0.006816,0.016032,0.015872,1.13251,0.011136
+1073,416.26,2.40234,1.43974,0.008192,0.251552,0.005696,0.004896,0.008192,0.014336,0.016384,1.11606,0.014432
+1074,647.487,1.54443,1.07382,0.00896,0.229376,0.006144,0.005344,0.006944,0.015936,0.01584,0.773088,0.012192
+1075,680.738,1.46899,1.06557,0.008832,0.224768,0.0056,0.00512,0.007744,0.014752,0.016,0.770464,0.012288
+1076,677.809,1.47534,1.42131,0.008576,0.229376,0.005792,0.004448,0.008192,0.014368,0.016352,1.12221,0.012
+1077,528.175,1.89331,1.85754,0.008192,0.226816,0.004864,0.005888,0.008032,0.014496,0.015808,1.55706,0.016384
+1078,444.976,2.24731,1.07498,0.008864,0.23552,0.006048,0.00416,0.008192,0.014336,0.01632,0.769504,0.012032
+1079,677.025,1.47705,1.06064,0.009504,0.226048,0.00608,0.005472,0.006848,0.015488,0.015232,0.763232,0.012736
+1080,691.892,1.44531,1.24173,0.00896,0.405504,0.005728,0.004512,0.007904,0.014624,0.016384,0.765952,0.01216
+1081,587.156,1.70312,1.83066,0.0096,0.22592,0.006144,0.005984,0.007584,0.01488,0.01664,1.52778,0.016128
+1082,431.294,2.3186,1.0727,0.01024,0.236672,0.004992,0.00544,0.006848,0.015616,0.015104,0.765792,0.012
+1083,692.828,1.44336,1.05677,0.0096,0.22592,0.006144,0.005632,0.006656,0.014336,0.016352,0.75984,0.012288
+1084,674.905,1.48169,1.23501,0.010112,0.404864,0.004896,0.005568,0.006688,0.016384,0.016384,0.758976,0.011136
+1085,557.355,1.79419,1.44794,0.009728,0.229888,0.00576,0.00448,0.008192,0.014336,0.01616,1.14301,0.016384
+1086,496.605,2.01367,1.0793,0.009632,0.25456,0.005728,0.004512,0.007968,0.01456,0.016384,0.753664,0.012288
+1087,677.809,1.47534,1.05328,0.0088,0.2272,0.0056,0.004768,0.00816,0.014368,0.016128,0.755392,0.012864
+1088,687.248,1.45508,1.42826,0.009024,0.227296,0.00512,0.004576,0.006688,0.015968,0.016128,1.13117,0.012288
+1089,519.336,1.92554,1.84528,0.00976,0.227328,0.005632,0.005088,0.007904,0.014624,0.014336,1.54419,0.016416
+1090,455.162,2.19702,1.07683,0.010176,0.228576,0.004992,0.005472,0.006784,0.01584,0.01488,0.765952,0.02416
+1091,578.123,1.72974,1.12042,0.008736,0.253952,0.016384,0.005984,0.007616,0.014848,0.01456,0.785536,0.0128
+1092,678.146,1.47461,1.23149,0.008832,0.405504,0.005792,0.004448,0.008064,0.014496,0.016352,0.755712,0.012288
+1093,599.268,1.6687,1.86586,0.009344,0.248736,0.005888,0.005504,0.007008,0.015584,0.015136,1.54419,0.014464
+1094,445.944,2.24243,1.04435,0.010208,0.22496,0.005632,0.0048,0.008288,0.0144,0.01616,0.747744,0.01216
+1095,674.239,1.48315,1.06256,0.008256,0.222784,0.005632,0.005056,0.007936,0.014592,0.01616,0.7696,0.012544
+1096,665.151,1.50342,1.22256,0.009504,0.405504,0.004864,0.0056,0.006688,0.016352,0.015552,0.74624,0.012256
+1097,590.287,1.69409,1.85859,0.00912,0.225056,0.005632,0.004864,0.008224,0.014336,0.016352,1.56058,0.014432
+1098,442.715,2.25879,1.08445,0.009952,0.245344,0.004864,0.005568,0.006688,0.016064,0.015712,0.768032,0.012224
+1099,654.209,1.52856,1.07702,0.009248,0.222176,0.00592,0.005344,0.007168,0.015392,0.015328,0.784288,0.01216
+1100,614.83,1.62646,1.25341,0.00944,0.405664,0.004864,0.005568,0.006592,0.016192,0.01568,0.777088,0.01232
+1101,634.252,1.57666,1.41107,0.008224,0.221152,0.006016,0.005504,0.006912,0.015552,0.0152,1.11818,0.014336
+1102,496.605,2.01367,1.0849,0.009408,0.227328,0.004992,0.004096,0.008192,0.015712,0.015008,0.78816,0.012
+1103,650.675,1.53687,1.0672,0.008704,0.223232,0.005664,0.004576,0.008192,0.014336,0.01632,0.773216,0.01296
+1104,673.906,1.48389,1.24691,0.00944,0.403488,0.005024,0.005408,0.00688,0.015968,0.014752,0.773952,0.012
+1105,583.725,1.71313,1.85654,0.00976,0.223136,0.004864,0.005952,0.022528,0.015584,0.015136,1.54419,0.015392
+1106,450.209,2.22119,1.07187,0.00896,0.223232,0.00528,0.0048,0.007616,0.014912,0.014528,0.780256,0.012288
+1107,675.128,1.4812,1.06461,0.009312,0.221504,0.004864,0.005984,0.007712,0.014816,0.015712,0.77072,0.013984
+1108,691.775,1.44556,1.25363,0.0096,0.403776,0.004864,0.0056,0.007648,0.015232,0.015648,0.778944,0.01232
+1109,569.284,1.75659,1.82829,0.008192,0.22272,0.005632,0.00512,0.008192,0.014336,0.016416,1.53187,0.015808
+1110,454.152,2.2019,1.05872,0.00992,0.221056,0.005664,0.0048,0.00752,0.014816,0.015808,0.766944,0.012192
+1111,591.993,1.68921,1.10182,0.009888,0.259712,0.004864,0.006112,0.00768,0.01472,0.015936,0.770624,0.012288
+1112,678.933,1.4729,1.27779,0.01024,0.43008,0.006144,0.004096,0.008192,0.01552,0.0152,0.776192,0.012128
+1113,574.313,1.74121,1.85549,0.009472,0.223392,0.004864,0.005984,0.007904,0.014624,0.015904,1.55901,0.014336
+1114,456.43,2.19092,1.07194,0.009024,0.228832,0.006464,0.00432,0.00816,0.015488,0.015264,0.772096,0.012288
+1115,655.78,1.5249,1.0776,0.008544,0.223232,0.006112,0.005536,0.008064,0.014912,0.016192,0.78272,0.012288
+1116,670.706,1.49097,1.252,0.008672,0.405056,0.004864,0.005568,0.007648,0.01536,0.016,0.776544,0.012288
+1117,592.336,1.68823,1.42122,0.008992,0.221184,0.005792,0.005504,0.007136,0.015424,0.015328,1.12781,0.014048
+1118,492.13,2.03198,1.08125,0.009824,0.221856,0.006176,0.004064,0.008192,0.014336,0.016096,0.788736,0.011968
+1119,672.137,1.48779,1.05082,0.008384,0.221184,0.005856,0.005504,0.007072,0.015488,0.015264,0.759776,0.012288
+1120,349.578,2.8606,1.60154,0.01024,0.290272,0.021024,0.00576,0.006528,0.014336,0.014368,1.22672,0.012288
+1121,1117.9,0.894531,1.88826,0.009664,0.270912,0.006144,0.005664,0.016864,0.015456,0.01696,1.53222,0.014368
+1122,449.715,2.22363,1.06701,0.010144,0.225152,0.005632,0.0048,0.007648,0.014912,0.016,0.770432,0.012288
+1123,690.376,1.44849,1.07677,0.008608,0.221184,0.00576,0.00448,0.008192,0.014368,0.016352,0.784384,0.01344
+1124,643.823,1.55322,1.05226,0.009504,0.220064,0.005824,0.004416,0.008,0.014528,0.016384,0.761504,0.012032
+1125,600.851,1.66431,1.82477,0.0096,0.219776,0.006144,0.005792,0.007712,0.014848,0.01584,1.53046,0.014592
+1126,477.111,2.09595,1.06906,0.009152,0.221056,0.005664,0.004704,0.008192,0.014336,0.01552,0.778304,0.012128
+1127,703.176,1.42212,1.08614,0.008896,0.221184,0.005696,0.004544,0.008192,0.014368,0.016352,0.794624,0.012288
+1128,628.703,1.59058,1.24982,0.00896,0.4096,0.006144,0.004096,0.008192,0.015904,0.015936,0.768352,0.01264
+1129,598.044,1.67212,1.92858,0.009216,0.22016,0.006176,0.00592,0.007392,0.014752,0.014944,1.63427,0.015744
+1130,372.025,2.68799,1.11958,0.009856,0.250144,0.0056,0.004736,0.007712,0.014624,0.01456,0.799776,0.012576
+1131,737.885,1.35522,1.08694,0.009376,0.24048,0.005856,0.005504,0.007072,0.01536,0.01536,0.77424,0.013696
+1132,620.324,1.61206,1.05882,0.009696,0.223776,0.006144,0.004096,0.008192,0.014368,0.016352,0.763904,0.012288
+1133,523.451,1.9104,1.5177,0.008544,0.26624,0.006176,0.005792,0.016704,0.028672,0.018304,1.1511,0.01616
+1134,560.865,1.78296,1.10218,0.009632,0.243776,0.004992,0.005472,0.006816,0.015392,0.015328,0.789536,0.011232
+1135,691.425,1.44629,1.08275,0.009632,0.22384,0.006176,0.005568,0.006688,0.015392,0.01536,0.7864,0.013696
+1136,650.262,1.53784,1.06547,0.008672,0.222272,0.005056,0.00592,0.007712,0.014944,0.01552,0.773056,0.01232
+1137,639.6,1.56348,1.83558,0.008768,0.22064,0.005632,0.00512,0.007904,0.014624,0.016064,1.54163,0.0152
+1138,445.653,2.2439,1.08502,0.009376,0.222144,0.005728,0.004512,0.007712,0.014624,0.016,0.792832,0.012096
+1139,528.448,1.89233,1.15722,0.008288,0.301024,0.005632,0.00464,0.008192,0.014336,0.023776,0.77904,0.012288
+1140,655.57,1.52539,1.05568,0.009184,0.223264,0.006112,0.005248,0.00704,0.016032,0.014688,0.761856,0.012256
+1141,592.079,1.68896,1.80182,0.008608,0.512,0.032768,0.006144,0.007744,0.014816,0.024544,1.1817,0.013504
+1142,493.019,2.02832,1.07174,0.009024,0.221184,0.005888,0.004352,0.008032,0.014496,0.015968,0.780704,0.012096
+1143,690.842,1.44751,1.04794,0.009664,0.219712,0.005792,0.005504,0.007136,0.014336,0.016064,0.757056,0.012672
+1144,622.966,1.60522,1.06909,0.010208,0.219168,0.006016,0.004224,0.008192,0.014336,0.016224,0.7784,0.01232
+1145,662.247,1.51001,1.90259,0.009824,0.219552,0.006144,0.005888,0.007584,0.014912,0.014624,1.60973,0.014336
+1146,435.977,2.2937,1.03939,0.009824,0.225184,0.005632,0.005088,0.007392,0.014752,0.015872,0.743488,0.01216
+1147,681.758,1.4668,1.06896,0.00864,0.221184,0.006016,0.005504,0.006912,0.015392,0.015328,0.771168,0.018816
+1148,476.279,2.09961,1.17939,0.009504,0.324096,0.006528,0.005312,0.006944,0.014336,0.024224,0.776256,0.012192
+1149,680.851,1.46875,1.87027,0.008608,0.24576,0.005888,0.005472,0.007072,0.01536,0.01536,1.55219,0.01456
+1150,452.247,2.21118,1.11002,0.00992,0.2512,0.00512,0.005376,0.006912,0.015904,0.014816,0.789888,0.01088
+1151,676.913,1.47729,1.08627,0.008992,0.223232,0.006048,0.005504,0.00688,0.01536,0.01536,0.792576,0.01232
+1152,590.372,1.69385,1.056,0.010048,0.221376,0.006144,0.004096,0.008192,0.014368,0.015904,0.763872,0.012
+1153,613.633,1.62964,1.79789,0.008416,0.526336,0.034816,0.005952,0.018624,0.028672,0.015904,1.14662,0.012544
+1154,478.058,2.0918,1.06541,0.00864,0.227136,0.005664,0.004768,0.007616,0.014624,0.014624,0.771104,0.011232
+1155,690.26,1.44873,1.0809,0.008416,0.221184,0.00592,0.00432,0.008192,0.0144,0.01632,0.790336,0.011808
+1156,623.82,1.60303,1.05267,0.010144,0.220384,0.004992,0.00544,0.006848,0.015488,0.015232,0.761856,0.012288
+1157,468.489,2.13452,1.49718,0.008192,0.280576,0.006144,0.005568,0.00672,0.01568,0.01504,1.14483,0.014432
+1158,569.839,1.75488,1.09104,0.010176,0.240704,0.00512,0.005312,0.006976,0.015424,0.015328,0.78,0.012
+1159,615.57,1.62451,1.12051,0.008576,0.257696,0.00448,0.005984,0.008192,0.014496,0.016224,0.792576,0.012288
+1160,619.667,1.61377,1.07222,0.01024,0.247808,0.00576,0.00448,0.007904,0.014624,0.016288,0.753184,0.011936
+1161,686.787,1.45605,1.72032,0.010176,0.51184,0.007744,0.004768,0.008192,0.014336,0.016384,1.13437,0.012512
+1162,469.779,2.12866,1.09283,0.009376,0.22816,0.005664,0.004704,0.007552,0.014784,0.014656,0.795904,0.012032
+1163,620.042,1.61279,1.06144,0.008768,0.223232,0.005888,0.005536,0.007008,0.014368,0.016352,0.768,0.012288
+1164,607.445,1.64624,1.09142,0.009984,0.246016,0.005728,0.004512,0.007904,0.014624,0.016384,0.774144,0.012128
+1165,731.69,1.3667,1.85962,0.009952,0.227616,0.006176,0.005984,0.007616,0.01504,0.015872,1.55664,0.01472
+1166,430.207,2.32446,1.08134,0.009888,0.233824,0.006144,0.004096,0.008192,0.014464,0.016256,0.776192,0.012288
+1167,681.531,1.46729,1.11552,0.009856,0.23744,0.004864,0.005888,0.007936,0.014624,0.015552,0.805664,0.013696
+1168,579.022,1.72705,1.10531,0.009472,0.226304,0.00608,0.00416,0.008192,0.014336,0.016384,0.808416,0.011968
+1169,699.454,1.42969,1.9224,0.008192,0.228576,0.004896,0.006144,0.007584,0.01472,0.015712,1.62086,0.015712
+1170,428.273,2.33496,1.08307,0.009472,0.22384,0.005632,0.0048,0.007552,0.015008,0.015712,0.789056,0.012
+1171,668.735,1.49536,1.05517,0.00864,0.222272,0.005056,0.005632,0.006656,0.015776,0.016288,0.76256,0.012288
+1172,618.638,1.61646,1.08528,0.009536,0.220128,0.005984,0.004256,0.008224,0.015328,0.01536,0.7944,0.012064
+1173,650.882,1.53638,1.89658,0.00832,0.22272,0.005696,0.005056,0.008,0.014528,0.01584,1.60211,0.014304
+1174,338.708,2.95239,1.15901,0.01024,0.29056,0.005632,0.0048,0.023968,0.014816,0.014592,0.782016,0.012384
+1175,1053.5,0.949219,1.07075,0.008224,0.2264,0.005024,0.006112,0.007552,0.014912,0.015648,0.774976,0.011904
+1176,594.312,1.68262,1.09882,0.009696,0.221472,0.005632,0.0048,0.007648,0.014944,0.015616,0.806944,0.012064
+1177,487.387,2.05176,1.9415,0.00864,0.245312,0.005632,0.005024,0.008096,0.014432,0.024128,1.61536,0.01488
+1178,524.657,1.90601,1.10685,0.00912,0.231424,0.006144,0.00512,0.007168,0.0144,0.01632,0.806112,0.01104
+1179,670.267,1.49194,1.36774,0.008224,0.224384,0.004992,0.005952,0.007488,0.01472,0.014848,1.07114,0.016
+1180,548.474,1.82324,1.06192,0.01024,0.219136,0.006144,0.004096,0.008192,0.015424,0.015296,0.77152,0.011872
+1181,636.717,1.57056,1.77408,0.008736,0.46896,0.034304,0.012128,0.006816,0.016256,0.015616,1.19898,0.012288
+1182,491.245,2.03564,1.09158,0.00992,0.221504,0.00592,0.00432,0.008096,0.014464,0.016288,0.798784,0.012288
+1183,375.092,2.66602,1.44582,0.00832,0.27648,0.00576,0.005536,0.007136,0.014368,0.016352,1.09568,0.016192
+1184,1376.34,0.726562,1.09773,0.009376,0.225888,0.005632,0.004832,0.007584,0.014976,0.016096,0.801056,0.012288
+1185,436.953,2.28857,1.09098,0.011392,0.225632,0.004864,0.00592,0.008192,0.014336,0.016384,0.791552,0.012704
+1186,687.018,1.45557,1.11018,0.009408,0.22336,0.00496,0.005984,0.007904,0.014784,0.015712,0.816864,0.0112
+1187,657.358,1.52124,1.49878,0.008192,0.223232,0.006144,0.005984,0.007648,0.014912,0.015744,1.20227,0.014656
+1188,518.481,1.92871,1.07389,0.009152,0.2208,0.0056,0.004832,0.007424,0.014784,0.01488,0.784384,0.012032
+1189,534.865,1.86963,1.10838,0.010688,0.230944,0.005632,0.005056,0.008096,0.014432,0.016288,0.80496,0.012288
+1190,465.878,2.14648,1.06691,0.010016,0.221408,0.006144,0.005184,0.007104,0.015552,0.015168,0.774144,0.012192
+1191,1171.96,0.853271,1.36822,0.008352,0.22256,0.004864,0.006048,0.007584,0.014944,0.015936,1.0736,0.014336
+1192,384.782,2.59888,1.18374,0.009568,0.314016,0.006144,0.004096,0.013728,0.01488,0.015488,0.793568,0.012256
+1193,558.799,1.78955,1.11616,0.011936,0.231776,0.006144,0.0056,0.006688,0.015872,0.01488,0.810976,0.012288
+1194,659.794,1.51562,1.09773,0.009952,0.223456,0.005632,0.004672,0.007744,0.014784,0.01584,0.804448,0.0112
+1195,646.363,1.54712,1.41731,0.008896,0.222208,0.00512,0.005728,0.007648,0.01488,0.014784,1.12432,0.013728
+1196,542.732,1.84253,1.07197,0.009088,0.2232,0.006144,0.005376,0.006912,0.015584,0.015136,0.77824,0.012288
+1197,488.142,2.04858,1.08765,0.01104,0.22528,0.00608,0.005504,0.00816,0.01504,0.015744,0.787072,0.013728
+1198,671.916,1.48828,1.09773,0.00944,0.223168,0.00496,0.005472,0.006816,0.015904,0.014848,0.804832,0.012288
+1199,671.806,1.48853,1.43946,0.00992,0.223552,0.005952,0.005504,0.006976,0.014336,0.015904,1.14528,0.012032
+1200,511.616,1.95459,1.8432,0.010016,0.22144,0.005984,0.004224,0.007904,0.014624,0.015648,1.54816,0.0152
+1201,433.577,2.3064,1.0792,0.008416,0.229152,0.005632,0.004832,0.008192,0.015648,0.015072,0.779456,0.0128
+1202,681.304,1.46777,1.09568,0.009536,0.225824,0.0056,0.004832,0.008256,0.016032,0.01584,0.797568,0.012192
+1203,690.027,1.44922,1.27245,0.009056,0.405504,0.006144,0.005792,0.007616,0.015296,0.016128,0.794112,0.0128
+1204,527.903,1.89429,1.94627,0.008864,0.275712,0.004864,0.005568,0.018208,0.031488,0.016,1.57088,0.014688
+1205,441.998,2.26245,1.09072,0.009312,0.222112,0.006144,0.005728,0.00656,0.015648,0.015072,0.796672,0.013472
+1206,671.255,1.48975,1.08096,0.01008,0.221344,0.005632,0.004608,0.007808,0.01472,0.016032,0.788832,0.011904
+1207,689.795,1.44971,1.2663,0.008832,0.405504,0.005728,0.004512,0.008192,0.015552,0.0152,0.790496,0.012288
+1208,552.394,1.8103,1.83814,0.010016,0.222496,0.005056,0.00544,0.006848,0.014336,0.016384,1.54195,0.015616
+1209,464.241,2.15405,1.0744,0.00976,0.220768,0.005024,0.006112,0.00752,0.014752,0.015712,0.782688,0.012064
+1210,587.83,1.70117,1.1369,0.008448,0.243136,0.004896,0.005568,0.007552,0.015328,0.028672,0.811008,0.012288
+1211,722.654,1.38379,1.29024,0.009792,0.403904,0.006144,0.005664,0.006624,0.016192,0.015712,0.81392,0.012288
+1212,568.336,1.75952,1.84515,0.009504,0.223232,0.004864,0.0056,0.006656,0.015712,0.01504,1.54826,0.016288
+1213,441.094,2.26709,1.07149,0.008544,0.22448,0.004896,0.006144,0.00768,0.014624,0.015904,0.7768,0.012416
+1214,690.842,1.44751,1.08688,0.010176,0.223168,0.0056,0.004576,0.006336,0.01584,0.015968,0.793024,0.012192
+1215,556.673,1.79639,1.1223,0.009888,0.243936,0.005664,0.004704,0.008192,0.022528,0.028672,0.786432,0.012288
+1216,655.78,1.5249,1.9449,0.0096,0.231584,0.005664,0.004832,0.007616,0.01472,0.015968,1.63923,0.01568
+1217,416.429,2.40137,1.0752,0.009664,0.227904,0.005664,0.004576,0.008192,0.014336,0.016384,0.776192,0.012288
+1218,600.498,1.66528,1.09798,0.00864,0.222464,0.004896,0.005568,0.00672,0.016096,0.015968,0.805472,0.01216
+1219,677.361,1.47632,1.08394,0.009056,0.227328,0.006144,0.005952,0.007904,0.014816,0.016384,0.783776,0.012576
+1220,597.52,1.67358,1.80634,0.010272,0.5304,0.007392,0.004832,0.007616,0.014976,0.016384,1.20218,0.012288
+1221,467.207,2.14038,1.09427,0.008864,0.226368,0.005024,0.006112,0.00816,0.0144,0.020448,0.792352,0.012544
+1222,683.122,1.46387,1.06906,0.009984,0.22272,0.004896,0.00512,0.007136,0.015456,0.015264,0.777696,0.010784
+1223,580.993,1.72119,1.09827,0.008736,0.223232,0.006144,0.005664,0.006624,0.016384,0.015584,0.803392,0.012512
+1224,621.925,1.60791,1.74016,0.01024,0.486944,0.007648,0.0048,0.007616,0.015232,0.015904,1.17939,0.012384
+1225,466.462,2.1438,1.04851,0.010048,0.226752,0.004896,0.006112,0.00784,0.014688,0.016,0.74944,0.012736
+1226,686.212,1.45728,1.07709,0.008704,0.23056,0.00496,0.005376,0.006912,0.015744,0.015008,0.778144,0.01168
+1227,438.967,2.27808,1.09158,0.009824,0.225632,0.005632,0.004672,0.00928,0.01488,0.014784,0.794592,0.012288
+1228,981.078,1.01929,1.90781,0.009728,0.238112,0.006112,0.004096,0.008192,0.015456,0.015264,1.59539,0.015456
+1229,429.936,2.32593,1.12384,0.008672,0.23488,0.004864,0.005984,0.008192,0.014368,0.016352,0.817152,0.013376
+1230,630.736,1.58545,1.38454,0.008928,0.227328,0.005888,0.004352,0.008192,0.014336,0.016384,1.08339,0.015744
+1231,561.48,1.78101,1.0793,0.009536,0.22096,0.005024,0.006112,0.007904,0.014656,0.0144,0.788416,0.012288
+1232,549.872,1.8186,1.81046,0.00864,0.504864,0.034688,0.0048,0.007616,0.015072,0.02656,1.1961,0.012128
+1233,517.695,1.93164,1.09738,0.009824,0.227744,0.005632,0.004608,0.008192,0.014336,0.016416,0.797824,0.0128
+1234,677.025,1.47705,1.37261,0.009184,0.246816,0.005056,0.005408,0.00688,0.015488,0.015232,1.05382,0.01472
+1235,581.901,1.71851,1.10973,0.008288,0.228352,0.005056,0.006144,0.008192,0.014368,0.016352,0.810176,0.0128
+1236,353.134,2.83179,1.76742,0.009472,0.441088,0.008192,0.004096,0.008,0.014528,0.02048,1.24928,0.012288
+1237,1099.3,0.909668,1.13085,0.008544,0.228768,0.004864,0.005984,0.008192,0.01552,0.0152,0.831296,0.01248
+1238,639.301,1.56421,1.46227,0.01024,0.224928,0.005632,0.004832,0.007488,0.01488,0.014656,1.1647,0.014912
+1239,526.343,1.8999,1.11894,0.008928,0.233216,0.005632,0.004864,0.008,0.014528,0.016352,0.815104,0.01232
+1240,457.705,2.18481,1.11293,0.011104,0.231424,0.006144,0.005216,0.007072,0.01584,0.014912,0.808928,0.012288
+1241,650.262,1.53784,1.11133,0.008192,0.241664,0.006144,0.005568,0.00672,0.015936,0.014816,0.798688,0.0136
+1242,631.417,1.58374,1.47251,0.010272,0.224704,0.004864,0.005568,0.008544,0.014368,0.016352,1.17251,0.015328
+1243,512.898,1.94971,1.13664,0.009888,0.267936,0.004864,0.00608,0.007744,0.014784,0.015968,0.797088,0.012288
+1244,454.253,2.20142,1.09648,0.01104,0.237568,0.006144,0.005152,0.007136,0.014336,0.01632,0.786496,0.012288
+1245,687.018,1.45557,1.07286,0.008928,0.227296,0.005952,0.005504,0.006976,0.014336,0.016384,0.774144,0.013344
+1246,611.8,1.63452,1.2663,0.008832,0.403456,0.006144,0.005184,0.007104,0.02368,0.015232,0.784384,0.012288
+1247,568.179,1.76001,1.43459,0.009088,0.23152,0.006144,0.005536,0.00784,0.01488,0.014784,1.13046,0.014336
+1248,485.768,2.05859,1.09232,0.008992,0.228416,0.005024,0.00544,0.006848,0.015616,0.015104,0.794624,0.012256
+1249,658.839,1.51782,1.10829,0.009184,0.225056,0.005632,0.004832,0.022528,0.01536,0.015264,0.796768,0.013664
+1250,644.329,1.552,1.46045,0.009056,0.272512,0.006016,0.004096,0.008064,0.014464,0.016384,1.11776,0.012096
+1251,502.084,1.9917,1.8561,0.0088,0.247808,0.006144,0.005984,0.007584,0.015104,0.016192,1.53414,0.014336
+1252,460.794,2.17017,1.09498,0.01024,0.230464,0.005056,0.005408,0.00688,0.015584,0.015136,0.794112,0.012096
+1253,677.249,1.47656,1.07507,0.009248,0.226272,0.006112,0.005376,0.006944,0.015488,0.015264,0.777504,0.012864
+1254,645.548,1.54907,1.28016,0.010144,0.4056,0.006112,0.004128,0.008192,0.015616,0.015136,0.803872,0.01136
+1255,601.115,1.66357,1.8497,0.008512,0.233472,0.0056,0.00464,0.008192,0.014336,0.016384,1.54384,0.01472
+1256,442.142,2.26172,1.0992,0.009408,0.230304,0.006144,0.00528,0.007008,0.014336,0.016384,0.798272,0.012064
+1257,630.251,1.58667,1.0783,0.009376,0.222048,0.006144,0.004096,0.008192,0.014336,0.016256,0.784512,0.013344
+1258,656.41,1.52344,1.27386,0.009856,0.40384,0.006144,0.004096,0.008192,0.015552,0.015168,0.798752,0.012256
+1259,621.077,1.61011,1.45411,0.008352,0.230752,0.004864,0.006048,0.008192,0.014368,0.016352,1.14893,0.016256
+1260,467.633,2.13843,1.11482,0.008896,0.229376,0.005952,0.004288,0.008224,0.015328,0.01536,0.815104,0.012288
+1261,655.99,1.52441,1.09686,0.008288,0.222944,0.005632,0.004864,0.008192,0.014336,0.016192,0.803008,0.013408
+1262,668.626,1.49561,1.26966,0.010112,0.403584,0.006144,0.004096,0.008192,0.016032,0.015776,0.777152,0.028576
+1263,588.675,1.69873,1.90989,0.008384,0.229184,0.006176,0.005824,0.007584,0.014976,0.016032,1.60624,0.015488
+1264,392.262,2.54932,1.14253,0.010208,0.243328,0.016512,0.004384,0.008192,0.030656,0.015776,0.80144,0.012032
+1265,626.108,1.59717,1.09174,0.008384,0.229344,0.006144,0.005824,0.007584,0.014912,0.014688,0.792576,0.012288
+1266,669.172,1.49438,1.09414,0.00912,0.228352,0.005088,0.005376,0.006912,0.015744,0.015008,0.796512,0.012032
+1267,652.541,1.53247,1.90707,0.008544,0.23552,0.00592,0.005504,0.007008,0.014336,0.016384,1.59949,0.014368
+1268,421.183,2.37427,1.09859,0.009056,0.233312,0.005632,0.004768,0.007648,0.01488,0.015584,0.795424,0.012288
+1269,660.432,1.51416,1.08099,0.00928,0.22624,0.006144,0.005952,0.00816,0.015648,0.015296,0.781536,0.012736
+1270,606.007,1.65015,1.08134,0.01024,0.22528,0.005856,0.004384,0.008064,0.014464,0.015712,0.785088,0.012256
+1271,650.779,1.53662,1.95222,0.0088,0.231424,0.006144,0.005568,0.00672,0.015552,0.015168,1.64829,0.01456
+1272,402.634,2.48364,1.09773,0.01024,0.25504,0.005056,0.00544,0.006848,0.015872,0.016544,0.7704,0.012288
+1273,677.249,1.47656,1.12618,0.009376,0.267104,0.00576,0.004544,0.008128,0.014368,0.016352,0.788032,0.012512
+1274,570.633,1.75244,1.11411,0.010176,0.235584,0.006144,0.005184,0.007104,0.01584,0.01488,0.80816,0.01104
+1275,669.5,1.49365,1.8801,0.008224,0.256,0.005984,0.005504,0.006944,0.01552,0.0152,1.55194,0.014784
+1276,446.139,2.24146,1.1049,0.009056,0.227328,0.006144,0.004096,0.008192,0.015808,0.014944,0.807968,0.01136
+1277,659.794,1.51562,1.38336,0.009024,0.231264,0.005632,0.004768,0.008192,0.015456,0.015264,1.07725,0.016512
+1278,554.188,1.80444,1.08758,0.008448,0.227296,0.005696,0.004544,0.00784,0.014688,0.016256,0.790656,0.01216
+1279,661.285,1.51221,1.71402,0.00944,0.4616,0.00816,0.005504,0.006816,0.016224,0.015616,1.17776,0.012896
+1280,473.198,2.11328,1.0881,0.008864,0.229376,0.006144,0.004096,0.008192,0.015712,0.015008,0.78848,0.012224
+1281,374.748,2.66846,1.80403,0.009472,0.617216,0.005824,0.005504,0.007104,0.01536,0.015392,1.11203,0.016128
+1282,895.105,1.11719,1.13517,0.008768,0.259776,0.005664,0.004832,0.007872,0.01472,0.016384,0.806016,0.011136
+1283,368.611,2.71289,1.12682,0.01024,0.256416,0.005376,0.004864,0.007968,0.01456,0.016192,0.798496,0.012704
+1284,679.158,1.47241,1.10138,0.009536,0.236256,0.005664,0.004704,0.00816,0.014368,0.016384,0.794432,0.011872
+1285,619.949,1.61304,1.28003,0.009344,0.404352,0.006144,0.005568,0.00672,0.016384,0.015584,0.803584,0.012352
+1286,552.99,1.80835,1.88234,0.009472,0.258336,0.004896,0.006048,0.00768,0.014848,0.015936,1.55078,0.014336
+1287,443.77,2.25342,1.10541,0.009568,0.23824,0.005856,0.005504,0.007072,0.015712,0.01504,0.795872,0.012544
+1288,653.791,1.52954,1.08982,0.008544,0.232832,0.004896,0.005568,0.007616,0.014848,0.014752,0.78976,0.011008
+1289,479.85,2.08398,1.12579,0.009952,0.243168,0.004928,0.006144,0.007648,0.014464,0.016192,0.810624,0.012672
+1290,897.852,1.11377,1.46448,0.009376,0.264928,0.0056,0.004832,0.007616,0.014976,0.015392,1.12646,0.015296
+1291,480.808,2.07983,1.13869,0.009664,0.232,0.006144,0.00576,0.007616,0.015104,0.015648,0.834048,0.012704
+1292,687.018,1.45557,1.08832,0.009056,0.226976,0.005664,0.0048,0.00816,0.014528,0.015968,0.790912,0.012256
+1293,620.324,1.61206,1.09034,0.00896,0.223232,0.005984,0.005344,0.007104,0.014336,0.01616,0.796896,0.01232
+1294,668.735,1.49536,1.86938,0.009984,0.234784,0.005088,0.005376,0.006912,0.016192,0.015712,1.56045,0.01488
+1295,432.159,2.31396,1.11325,0.010208,0.231456,0.006048,0.005504,0.00688,0.015744,0.016032,0.807904,0.013472
+1296,660.539,1.51392,1.11901,0.010016,0.227776,0.004864,0.005568,0.007744,0.015168,0.015872,0.820768,0.011232
+1297,611.708,1.63477,1.07962,0.008512,0.22896,0.005632,0.005024,0.008064,0.014464,0.015968,0.780416,0.012576
+1298,650.572,1.53711,1.44998,0.009632,0.229984,0.005696,0.004544,0.007872,0.014656,0.016032,1.14637,0.0152
+1299,427.915,2.33691,1.13702,0.008576,0.275488,0.005088,0.006048,0.007584,0.014848,0.015904,0.7912,0.012288
+1300,649.643,1.53931,1.09773,0.0096,0.244064,0.005632,0.0048,0.007712,0.014912,0.015392,0.784544,0.011072
+1301,636.717,1.57056,1.06893,0.00928,0.230368,0.006144,0.005856,0.006464,0.015584,0.015104,0.767136,0.012992
+1302,670.596,1.49121,1.85498,0.010016,0.228608,0.005088,0.005344,0.006944,0.015808,0.014944,1.5536,0.014624
+1303,433.302,2.30786,1.06499,0.00992,0.229696,0.00576,0.00448,0.008192,0.014368,0.016128,0.764128,0.01232
+1304,684.492,1.46094,1.09779,0.009824,0.225184,0.005632,0.004832,0.007616,0.01504,0.016224,0.802336,0.011104
+1305,610.705,1.63745,1.0824,0.01024,0.22528,0.005792,0.004448,0.008192,0.014336,0.015872,0.784896,0.013344
+1306,650.056,1.53833,1.44589,0.00992,0.233536,0.005632,0.00464,0.007424,0.01504,0.014656,1.14035,0.014688
+1307,332.63,3.00635,1.16813,0.00896,0.28672,0.006208,0.00608,0.007808,0.01472,0.024512,0.800736,0.012384
+1308,1460.25,0.684814,1.08266,0.00976,0.2312,0.004896,0.005536,0.006656,0.015808,0.014912,0.781472,0.012416
+1309,646.873,1.5459,1.2657,0.010016,0.40528,0.005632,0.005056,0.008064,0.015776,0.015104,0.788448,0.01232
+1310,575.039,1.73901,1.44954,0.010176,0.229472,0.006112,0.004096,0.008192,0.015552,0.015168,1.14483,0.015936
+1311,490.656,2.03809,1.09488,0.009696,0.229824,0.005632,0.004704,0.008192,0.016128,0.015904,0.791264,0.013536
+1312,659.581,1.51611,1.08602,0.008768,0.2248,0.005632,0.0048,0.008256,0.01456,0.016032,0.79088,0.012288
+1313,645.853,1.54834,1.27411,0.008448,0.405504,0.006144,0.0056,0.006688,0.016032,0.014688,0.79824,0.012768
+1314,609.161,1.6416,1.87581,0.009024,0.233152,0.005696,0.004832,0.007616,0.014912,0.015552,1.5696,0.015424
+1315,425.073,2.35254,1.10224,0.008704,0.236672,0.004992,0.006144,0.008192,0.014336,0.016384,0.7944,0.012416
+1316,526.478,1.89941,1.08202,0.008864,0.2512,0.005824,0.0048,0.007648,0.0152,0.01616,0.760064,0.012256
+1317,833.537,1.19971,1.26947,0.00864,0.405504,0.006016,0.005504,0.006912,0.015776,0.014944,0.792576,0.0136
+1318,604.308,1.65479,1.86477,0.01008,0.231424,0.005632,0.004768,0.007648,0.01488,0.016256,1.55853,0.015552
+1319,445.217,2.24609,1.12026,0.008192,0.230976,0.005632,0.005056,0.008032,0.014496,0.015776,0.819552,0.012544
+1320,631.417,1.58374,1.08384,0.008608,0.224416,0.00496,0.005504,0.008224,0.014912,0.015456,0.78944,0.01232
+1321,653.791,1.52954,1.0936,0.008672,0.225312,0.006112,0.00528,0.007008,0.014336,0.016384,0.797824,0.012672
+1322,616.218,1.6228,1.47661,0.010016,0.225504,0.006144,0.004096,0.008192,0.01568,0.015072,1.17552,0.016384
+1323,485.768,2.05859,1.09459,0.009056,0.225152,0.005632,0.004864,0.00816,0.014368,0.016256,0.798784,0.01232
+1324,662.676,1.50903,1.09734,0.009376,0.22192,0.005632,0.0048,0.007648,0.01488,0.016224,0.804832,0.012032
+1325,632.001,1.58228,1.28957,0.01024,0.40448,0.005152,0.020448,0.00784,0.014688,0.025824,0.78864,0.012256
+1326,549.577,1.81958,1.88211,0.009376,0.238432,0.005824,0.004416,0.008192,0.016064,0.015904,1.56886,0.01504
+1327,434.312,2.30249,1.10496,0.00944,0.230176,0.00592,0.005504,0.007008,0.01536,0.015328,0.802848,0.013376
+1328,656.515,1.52319,1.07939,0.00944,0.225248,0.005024,0.005408,0.00688,0.015616,0.015136,0.784352,0.012288
+1329,626.971,1.59497,1.08762,0.00832,0.22288,0.005664,0.004896,0.008192,0.014368,0.016128,0.794848,0.01232
+1330,645.039,1.55029,1.89395,0.008512,0.243712,0.005952,0.004288,0.008192,0.016032,0.01472,1.57693,0.015616
+1331,435.143,2.2981,1.09568,0.009952,0.225568,0.005952,0.005536,0.006944,0.015744,0.016032,0.797664,0.012288
+1332,668.626,1.49561,1.07597,0.00896,0.221184,0.005952,0.004256,0.008192,0.014368,0.016224,0.784512,0.01232
+1333,621.737,1.6084,1.12083,0.0088,0.228896,0.005632,0.005056,0.008192,0.014336,0.016384,0.811008,0.022528
+1334,542.445,1.84351,1.95789,0.01024,0.243744,0.00592,0.004288,0.008128,0.014432,0.016192,1.64051,0.014432
+1335,427.201,2.34082,1.11856,0.008544,0.253216,0.004864,0.006112,0.007744,0.014528,0.024864,0.786112,0.012576
+1336,695.534,1.43774,1.39568,0.009184,0.229408,0.006112,0.005248,0.00704,0.01616,0.0248,1.08134,0.016384
+1337,544.898,1.83521,1.08966,0.00832,0.223232,0.005696,0.004544,0.008192,0.014368,0.016256,0.796768,0.012288
+1338,652.022,1.53369,2.0175,0.008512,0.245696,0.006112,0.004096,0.008192,0.014368,0.016352,1.69981,0.014368
+1339,411.782,2.42847,1.10781,0.00832,0.246816,0.005088,0.006048,0.008224,0.0144,0.016384,0.78976,0.012768
+1340,655.675,1.52515,1.47866,0.010112,0.225184,0.006368,0.004096,0.008192,0.015456,0.0152,1.17939,0.014656
+1341,534.935,1.86938,1.0623,0.009344,0.22208,0.005664,0.004576,0.007712,0.014816,0.015744,0.770336,0.012032
+1342,469.563,2.12964,1.09978,0.012288,0.236992,0.004896,0.005568,0.007584,0.015008,0.015968,0.788928,0.012544
+1343,613.725,1.62939,1.12048,0.008416,0.24576,0.006144,0.005664,0.006624,0.016,0.015808,0.803616,0.012448
+1344,661.285,1.51221,1.47456,0.010112,0.223168,0.0056,0.004832,0.007424,0.015136,0.015968,1.18003,0.012288
+1345,509.516,1.96265,1.45408,0.008224,0.229344,0.005664,0.004576,0.008192,0.0144,0.016032,1.1513,0.016352
+1346,493.078,2.02808,1.07904,0.008672,0.229184,0.005632,0.0048,0.007648,0.01488,0.015552,0.780832,0.01184
+1347,673.906,1.48389,1.1039,0.009536,0.225696,0.005632,0.004928,0.007936,0.014592,0.016352,0.806912,0.01232
+1348,664.719,1.50439,1.47427,0.009824,0.227776,0.006112,0.004096,0.008192,0.014368,0.016064,1.17581,0.012032
+1349,509.579,1.9624,1.85958,0.009504,0.231392,0.004864,0.006144,0.007776,0.014752,0.015872,1.55472,0.01456
+1350,442.046,2.26221,1.10893,0.009152,0.226784,0.004864,0.0056,0.007744,0.015104,0.015616,0.8128,0.011264
+1351,264.685,3.77808,1.11229,0.008416,0.241664,0.006144,0.00592,0.007552,0.014848,0.01472,0.80016,0.012864
+1352,996.594,1.00342,1.13626,0.008736,0.276288,0.005952,0.004288,0.008128,0.0144,0.016384,0.790304,0.011776
+1353,477.946,2.09229,1.10426,0.010624,0.251392,0.004864,0.005888,0.008,0.015872,0.015072,0.780032,0.012512
+1354,674.794,1.48193,1.13882,0.00912,0.261952,0.00576,0.004672,0.007712,0.024288,0.016128,0.797248,0.011936
+1355,648.409,1.54224,1.25747,0.009632,0.405152,0.005056,0.00608,0.007584,0.015008,0.015904,0.780768,0.012288
+1356,607.535,1.646,1.43565,0.010144,0.235616,0.005696,0.004544,0.008192,0.014368,0.016096,1.1264,0.014592
+1357,452.247,2.21118,1.11206,0.009248,0.2304,0.006048,0.005504,0.007968,0.014848,0.014784,0.8104,0.012864
+1358,712.596,1.40332,1.08134,0.01024,0.227328,0.005952,0.004288,0.007936,0.014592,0.015648,0.783072,0.012288
+1359,656.621,1.52295,1.48467,0.008224,0.224992,0.0056,0.004928,0.008192,0.014368,0.016224,1.1896,0.012544
+1360,366.762,2.72656,1.47181,0.00976,0.2336,0.005632,0.004832,0.007552,0.015104,0.015904,1.14717,0.032256
+1361,692.477,1.44409,1.09773,0.009472,0.23424,0.006144,0.005952,0.007648,0.015104,0.02864,0.778208,0.01232
+1362,715.334,1.39795,1.06669,0.009632,0.2256,0.005568,0.00496,0.007584,0.014976,0.015712,0.770688,0.011968
+1363,687.364,1.45483,1.2777,0.009568,0.447392,0.0056,0.004672,0.008192,0.015904,0.014816,0.75776,0.013792
+1364,538.664,1.85645,1.4193,0.009344,0.238496,0.006144,0.004096,0.008192,0.015584,0.015136,1.10698,0.015328
+1365,486.23,2.05664,1.09341,0.009632,0.242272,0.005664,0.004576,0.008192,0.014368,0.025792,0.770272,0.01264
+1366,633.663,1.57812,1.08954,0.010176,0.236672,0.005056,0.005376,0.00816,0.015136,0.022528,0.774144,0.012288
+1367,659.475,1.51636,1.44998,0.009344,0.254848,0.00528,0.00496,0.008192,0.014336,0.017728,1.12301,0.012288
+1368,557.734,1.79297,1.07584,0.009184,0.229344,0.005632,0.00464,0.007776,0.014752,0.015776,0.7768,0.011936
+1369,472.216,2.11768,1.10198,0.011552,0.240512,0.006112,0.005536,0.006784,0.015808,0.014912,0.782336,0.018432
+1370,669.062,1.49463,1.09363,0.01024,0.233216,0.005632,0.0048,0.007616,0.014912,0.0144,0.790528,0.012288
+1371,648.923,1.54102,1.27146,0.010176,0.41376,0.005888,0.005504,0.00704,0.016224,0.014496,0.78544,0.012928
+1372,585.896,1.70679,1.42758,0.008864,0.231424,0.006144,0.005216,0.007072,0.01584,0.014944,1.12333,0.014752
+1373,475.284,2.104,1.12154,0.009408,0.234304,0.00608,0.005504,0.006848,0.015552,0.015168,0.815104,0.013568
+1374,672.578,1.48682,1.07722,0.00896,0.22528,0.005664,0.004576,0.007616,0.014912,0.01616,0.78176,0.012288
+1375,600.763,1.66455,1.51965,0.008224,0.273664,0.006336,0.004672,0.008192,0.01568,0.01504,1.17555,0.012288
+1376,520.855,1.91992,1.52045,0.009056,0.266208,0.006016,0.004224,0.018432,0.034816,0.016384,1.15027,0.01504
+1377,292.948,3.41357,1.15043,0.009376,0.279392,0.005728,0.004512,0.008192,0.014528,0.016192,0.800288,0.012224
+1378,1201.53,0.832275,1.44365,0.009664,0.264224,0.00576,0.0048,0.007616,0.014752,0.01472,1.09334,0.028768
+1379,454.606,2.19971,1.1201,0.00992,0.235776,0.020544,0.006144,0.008192,0.014336,0.016384,0.796096,0.012704
+1380,470.372,2.12598,1.1223,0.011968,0.251424,0.004896,0.005568,0.00672,0.015392,0.015328,0.799776,0.011232
+1381,688.866,1.45166,1.07715,0.008224,0.224576,0.004896,0.005664,0.007616,0.014752,0.01488,0.783648,0.012896
+1382,671.365,1.4895,1.46026,0.009504,0.226304,0.005728,0.004512,0.008192,0.014336,0.016384,1.15917,0.016128
+1383,526.681,1.89868,1.08787,0.008544,0.227328,0.005952,0.005504,0.006976,0.015552,0.0152,0.790464,0.012352
+1384,533.889,1.87305,1.30909,0.039328,0.423936,0.00576,0.00448,0.007872,0.014752,0.016128,0.784544,0.012288
+1385,630.445,1.58618,1.09773,0.010016,0.227424,0.0056,0.004768,0.008192,0.015488,0.015232,0.798336,0.012672
+1386,524.725,1.90576,1.54218,0.009504,0.316128,0.006144,0.004096,0.008192,0.014464,0.016288,1.15222,0.015136
+1387,485.193,2.06104,1.0896,0.008992,0.239616,0.005664,0.004576,0.008192,0.014464,0.016256,0.77824,0.0136
+1388,528.857,1.89087,1.09744,0.011616,0.264288,0.005024,0.005664,0.006656,0.016032,0.014688,0.761472,0.012
+1389,709.756,1.40894,1.07725,0.009536,0.231904,0.005632,0.004832,0.008192,0.015488,0.015232,0.774144,0.012288
+1390,683.35,1.46338,1.43165,0.00944,0.226208,0.006112,0.004096,0.008192,0.014528,0.016192,1.13459,0.012288
+1391,507.37,1.97095,1.07168,0.008768,0.236864,0.004864,0.00608,0.007648,0.01488,0.016192,0.763904,0.01248
+1392,482.791,2.07129,1.0752,0.012224,0.239648,0.005664,0.004608,0.007712,0.014816,0.01552,0.76272,0.012288
+1393,698.618,1.4314,1.07968,0.008576,0.22736,0.006112,0.005824,0.007648,0.015008,0.014656,0.78192,0.012576
+1394,585.896,1.70679,1.43536,0.008832,0.23696,0.004704,0.004096,0.008192,0.014336,0.015584,1.13053,0.012128
+1395,557.886,1.79248,1.10349,0.0096,0.252096,0.005632,0.005056,0.008096,0.014432,0.015424,0.780416,0.012736
+1396,493.791,2.02515,1.10182,0.012224,0.241728,0.00576,0.00448,0.008,0.014528,0.016064,0.786752,0.012288
+1397,653.061,1.53125,1.07933,0.009536,0.24032,0.005856,0.005504,0.007072,0.014336,0.016224,0.76816,0.01232
+1398,668.626,1.49561,1.47315,0.008832,0.261728,0.004512,0.004096,0.008096,0.014432,0.016384,1.14282,0.012256
+1399,496.967,2.01221,1.48355,0.009024,0.298976,0.006144,0.005952,0.007584,0.014752,0.01472,1.1119,0.014496
+1400,489.016,2.04492,1.06832,0.009984,0.229632,0.006144,0.005216,0.007072,0.015456,0.015264,0.767328,0.012224
+1401,691.308,1.44653,1.08339,0.008192,0.226304,0.00512,0.006048,0.00816,0.014464,0.01632,0.786336,0.012448
+1402,674.35,1.48291,1.2864,0.00848,0.437824,0.005632,0.0048,0.007584,0.015168,0.01584,0.778784,0.012288
+1403,420.016,2.38086,1.11008,0.00832,0.265568,0.004864,0.006048,0.007872,0.014656,0.016,0.773824,0.012928
+1404,637.808,1.56787,1.0793,0.012288,0.24784,0.006048,0.00416,0.008192,0.016384,0.015904,0.756192,0.012288
+1405,680.399,1.46973,1.08602,0.0088,0.227136,0.005632,0.004768,0.008192,0.014336,0.01632,0.787936,0.012896
+1406,685.753,1.45825,1.4319,0.008544,0.227232,0.004192,0.005216,0.008544,0.014816,0.014432,1.1377,0.011232
+1407,527.699,1.89502,1.84294,0.010016,0.233472,0.005696,0.004768,0.008192,0.014368,0.015808,1.5345,0.016128
+1408,446.723,2.23853,1.07027,0.010144,0.228384,0.005088,0.005376,0.006912,0.015616,0.015104,0.77168,0.011968
+1409,678.258,1.47437,1.06486,0.008864,0.226336,0.005088,0.004096,0.008192,0.014336,0.016256,0.768128,0.013568
+1410,657.464,1.521,1.24685,0.009664,0.405152,0.005024,0.00544,0.006848,0.016256,0.015872,0.770688,0.011904
+1411,597.869,1.67261,1.43974,0.009536,0.23152,0.004864,0.005984,0.008032,0.014528,0.016352,1.13386,0.015072
+1412,400.43,2.49731,1.09158,0.009568,0.232096,0.006144,0.004096,0.008192,0.014368,0.01616,0.788672,0.012288
+1413,856.366,1.16772,1.08525,0.009984,0.227584,0.005632,0.004608,0.008192,0.015552,0.0152,0.785728,0.012768
+1414,653.374,1.53052,1.3521,0.009696,0.517056,0.006144,0.004096,0.008192,0.015584,0.015136,0.763904,0.012288
+1415,558.342,1.79102,1.0793,0.008192,0.251904,0.00592,0.005536,0.006976,0.015424,0.015296,0.75776,0.012288
+1416,451.898,2.21289,1.1016,0.01232,0.25136,0.005632,0.0048,0.007584,0.014912,0.01472,0.778176,0.012096
+1417,674.461,1.48267,1.07664,0.009824,0.229792,0.00608,0.005472,0.00688,0.015584,0.015136,0.774144,0.013728
+1418,673.02,1.48584,1.24362,0.008992,0.405504,0.005664,0.004576,0.007808,0.014752,0.016352,0.767328,0.01264
+1419,600.41,1.66553,1.41267,0.01024,0.227168,0.005632,0.004768,0.008192,0.01584,0.016,1.1089,0.015936
+1420,486.923,2.05371,1.04682,0.009152,0.227264,0.005632,0.004672,0.008224,0.015424,0.015264,0.748992,0.012192
+1421,705.356,1.41772,1.08246,0.008192,0.224992,0.005632,0.004896,0.007968,0.01456,0.01632,0.786496,0.013408
+1422,613.541,1.62988,1.45466,0.00896,0.22864,0.004864,0.005568,0.006848,0.015776,0.014784,1.15693,0.012288
+1423,554.863,1.80225,1.39411,0.008544,0.226496,0.004896,0.006144,0.007712,0.014784,0.015456,1.09574,0.014336
+1424,484.275,2.06494,1.0864,0.009152,0.232672,0.004928,0.005568,0.006688,0.015776,0.014944,0.784384,0.012288
+1425,682.098,1.46606,1.06938,0.008896,0.22528,0.006144,0.005824,0.007712,0.01504,0.015872,0.771712,0.012896
+1426,675.128,1.4812,1.4383,0.008768,0.224256,0.00512,0.005152,0.007136,0.014336,0.01584,1.14538,0.01232
+1427,505.055,1.97998,1.08099,0.00848,0.225216,0.005632,0.004672,0.008192,0.014336,0.015456,0.7864,0.012608
+1428,489.25,2.04395,1.0752,0.012288,0.234976,0.004864,0.005568,0.007552,0.015232,0.015872,0.767648,0.0112
+1429,688.982,1.45142,1.06294,0.008736,0.224896,0.005632,0.004992,0.007968,0.01456,0.015936,0.767424,0.0128
+1430,659.475,1.51636,1.40586,0.009152,0.2232,0.005792,0.004448,0.007872,0.014656,0.016352,1.1121,0.012288
+1431,545.188,1.83423,1.09158,0.008192,0.237088,0.005632,0.005088,0.009312,0.01472,0.015008,0.783616,0.012928
+1432,476.501,2.09863,1.05904,0.01184,0.229376,0.004896,0.005568,0.008608,0.014336,0.016256,0.755872,0.012288
+1433,693.649,1.44165,1.06406,0.008288,0.229376,0.005568,0.004672,0.008192,0.015584,0.015168,0.763872,0.013344
+1434,651.503,1.53491,1.42246,0.01024,0.226496,0.004928,0.0056,0.006688,0.015904,0.014816,1.12557,0.012224
+1435,546.644,1.82935,1.40915,0.00832,0.227328,0.00608,0.005504,0.006848,0.015456,0.015264,1.11002,0.014336
+1436,489.601,2.04248,1.07245,0.009632,0.235328,0.004896,0.004096,0.008192,0.014336,0.015936,0.7664,0.013632
+1437,655.675,1.52515,1.05638,0.008704,0.228928,0.005632,0.005056,0.008064,0.014464,0.016,0.756096,0.01344
+1438,691.775,1.44556,1.4513,0.01024,0.22528,0.00592,0.00432,0.008128,0.0144,0.015488,1.15187,0.015648
+1439,506.116,1.97583,1.06899,0.008928,0.226784,0.004896,0.005888,0.008032,0.014368,0.016032,0.770528,0.013536
+1440,449.616,2.22412,1.13107,0.011232,0.272384,0.006176,0.004064,0.015424,0.029632,0.016416,0.763648,0.012096
+1441,661.392,1.51196,1.09773,0.008288,0.242624,0.005088,0.00608,0.00752,0.020448,0.015136,0.77968,0.012864
+1442,660.432,1.51416,1.44707,0.010272,0.23744,0.005664,0.004672,0.007712,0.014592,0.015648,1.13914,0.011936
+1443,545.116,1.83447,1.42013,0.009056,0.231424,0.005984,0.005504,0.006944,0.015712,0.015008,1.11616,0.014336
+1444,493.791,2.02515,1.07955,0.008448,0.22496,0.005632,0.0048,0.007584,0.014976,0.015584,0.785056,0.012512
+1445,681.191,1.46802,1.04838,0.008352,0.222624,0.004864,0.005984,0.007744,0.01456,0.015712,0.755872,0.012672
+1446,667.645,1.4978,1.44992,0.010048,0.228736,0.004928,0.005504,0.006784,0.01584,0.016096,1.14976,0.012224
+1447,530.089,1.88647,1.05898,0.008544,0.228928,0.0056,0.005056,0.008192,0.014336,0.016384,0.759808,0.012128
+1448,390.058,2.56372,1.06109,0.011744,0.23824,0.005632,0.004704,0.007712,0.014816,0.016096,0.749696,0.012448
+1449,935.801,1.0686,1.05258,0.00928,0.232384,0.005792,0.005504,0.007136,0.014368,0.01632,0.749152,0.01264
+1450,635.729,1.573,1.41104,0.00912,0.223232,0.006144,0.004096,0.007968,0.01456,0.015616,1.11811,0.012192
+1451,543.885,1.83862,1.41312,0.010048,0.240832,0.00512,0.006048,0.007616,0.014656,0.014688,1.09978,0.014336
+1452,507.245,1.97144,1.07728,0.01008,0.227488,0.005856,0.004384,0.008192,0.015616,0.015104,0.778112,0.012448
+1453,675.796,1.47974,1.05373,0.008192,0.222528,0.004896,0.005984,0.00768,0.014848,0.01568,0.760576,0.013344
+1454,636.222,1.57178,1.43181,0.009568,0.225472,0.004864,0.005632,0.006624,0.016192,0.016064,1.13514,0.012256
+1455,560.328,1.78467,1.05875,0.00944,0.240416,0.006016,0.005504,0.006912,0.014496,0.016224,0.74752,0.012224
+1456,478.561,2.0896,1.07306,0.011104,0.229376,0.006144,0.004096,0.008192,0.014336,0.016384,0.77136,0.012064
+1457,663.105,1.50806,1.05882,0.009696,0.225856,0.006112,0.006048,0.007616,0.01456,0.01488,0.760768,0.01328
+1458,575.281,1.73828,1.48637,0.009536,0.262336,0.00464,0.005984,0.007616,0.021184,0.03072,1.13248,0.011872
+1459,561.096,1.78223,1.87402,0.00832,0.232992,0.005664,0.005024,0.008128,0.0144,0.016384,1.56867,0.014432
+1460,444.155,2.25146,1.06339,0.008672,0.232448,0.00512,0.00528,0.007008,0.015488,0.015264,0.761824,0.012288
+1461,673.906,1.48389,1.05507,0.0088,0.22528,0.005728,0.004512,0.008192,0.014336,0.016384,0.759328,0.012512
+1462,619.949,1.61304,1.2568,0.010112,0.421408,0.00608,0.004768,0.007616,0.014912,0.01616,0.763648,0.012096
+1463,598.218,1.67163,1.49939,0.008512,0.260096,0.00576,0.005536,0.017376,0.032096,0.015008,1.13869,0.01632
+1464,476.445,2.09888,1.0808,0.009504,0.22768,0.020448,0.004512,0.007936,0.014592,0.016064,0.768256,0.011808
+1465,692.594,1.44385,1.05267,0.008192,0.22528,0.006144,0.00592,0.007584,0.015168,0.015936,0.75616,0.012288
+1466,648.306,1.54248,1.24054,0.009504,0.412384,0.006144,0.004096,0.008192,0.015744,0.014976,0.757408,0.012096
+1467,568.573,1.75879,1.43514,0.008192,0.257056,0.00512,0.006048,0.007616,0.014976,0.016096,1.10419,0.01584
+1468,487.793,2.05005,1.06899,0.009088,0.229344,0.0056,0.004672,0.007712,0.014816,0.016,0.769824,0.011936
+1469,669.281,1.49414,1.04035,0.008192,0.22528,0.006048,0.005504,0.00688,0.014368,0.016352,0.745472,0.012256
+1470,642.812,1.55566,1.41229,0.009824,0.225696,0.005984,0.004256,0.007488,0.014656,0.015872,1.11661,0.011904
+1471,586.904,1.70386,1.42726,0.009536,0.2256,0.005856,0.004768,0.008192,0.014368,0.016352,1.1264,0.016192
+1472,481.486,2.0769,1.092,0.00864,0.234688,0.004896,0.005536,0.015968,0.01536,0.015744,0.779936,0.011232
+1473,640,1.5625,1.04784,0.008192,0.223264,0.005888,0.005536,0.006976,0.014336,0.016384,0.753664,0.0136
+1474,651.192,1.53564,1.42131,0.0096,0.244064,0.005632,0.0048,0.007648,0.014976,0.01536,1.10694,0.012288
+1475,570.394,1.75317,1.07725,0.009696,0.244256,0.005792,0.005504,0.007136,0.014368,0.016352,0.75328,0.020864
+1476,545.769,1.83228,1.3273,0.026464,0.484288,0.005472,0.004768,0.007584,0.014944,0.016384,0.755392,0.012
+1477,633.369,1.57886,1.04653,0.009472,0.226048,0.006144,0.005984,0.00768,0.014944,0.015456,0.748512,0.012288
+1478,660.858,1.51318,1.43104,0.008544,0.229376,0.005632,0.004608,0.007616,0.014784,0.01552,1.12944,0.01552
+1479,518.219,1.92969,1.04966,0.009728,0.22992,0.006112,0.00576,0.007584,0.014944,0.015968,0.746272,0.013376
+1480,731.167,1.36768,1.69325,0.009952,0.461056,0.00736,0.0048,0.007584,0.015104,0.015936,1.15946,0.012
+1481,481.996,2.07471,1.06925,0.008352,0.227296,0.005664,0.004608,0.00816,0.0144,0.015936,0.772512,0.01232
+1482,660.219,1.51465,1.43347,0.009024,0.224352,0.005024,0.005408,0.00816,0.014912,0.016128,1.13504,0.015424
+1483,541.871,1.84546,1.02637,0.008736,0.226752,0.004896,0.00592,0.007776,0.014624,0.015936,0.727616,0.014112
+1484,473.91,2.11011,1.06906,0.01232,0.241632,0.006176,0.004064,0.008192,0.014336,0.016384,0.753664,0.012288
+1485,676.354,1.47852,1.06352,0.0088,0.225056,0.005632,0.004832,0.008192,0.01552,0.0152,0.768,0.012288
+1486,678.033,1.47485,1.4401,0.0088,0.22448,0.004896,0.005568,0.008288,0.014784,0.016384,1.14179,0.015104
+1487,503.441,1.98633,1.09773,0.008608,0.253664,0.005632,0.004896,0.008192,0.015552,0.016448,0.771936,0.0128
+1488,496.004,2.01611,1.05472,0.012288,0.235488,0.005632,0.00464,0.007776,0.014752,0.015968,0.745888,0.012288
+1489,692.945,1.44312,1.0601,0.009632,0.223136,0.004864,0.00608,0.007616,0.014912,0.016288,0.764,0.013568
+1490,651.296,1.5354,1.43936,0.00944,0.224064,0.005792,0.004448,0.008192,0.014368,0.016352,1.14074,0.015968
+1491,532.432,1.87817,1.12726,0.009024,0.284384,0.005632,0.004928,0.008192,0.02256,0.022496,0.75744,0.012608
+1492,450.011,2.22217,1.04848,0.011712,0.22992,0.005632,0.004704,0.007712,0.014784,0.015776,0.74608,0.01216
+1493,707.304,1.41382,1.04906,0.008672,0.225248,0.005536,0.004736,0.008096,0.015488,0.015328,0.753664,0.012288
+1494,636.717,1.57056,1.47632,0.008704,0.231392,0.005824,0.004416,0.008192,0.016,0.016224,1.16995,0.015616
+1495,520.855,1.91992,1.09568,0.009952,0.250176,0.006112,0.005792,0.007616,0.015264,0.016384,0.772064,0.01232
+1496,534.586,1.87061,1.96982,0.01024,0.300416,0.004896,0.005568,0.007648,0.0152,0.015808,1.59542,0.014624
+1497,510.469,1.95898,1.08195,0.009152,0.234624,0.004992,0.006144,0.008192,0.014336,0.015936,0.775904,0.012672
+1498,663.105,1.50806,1.25674,0.010112,0.413824,0.00576,0.00448,0.007936,0.014592,0.016384,0.771616,0.012032
+1499,468.114,2.13623,1.53142,0.01648,0.331776,0.005664,0.004768,0.008192,0.015872,0.016,1.11872,0.013952
+1500,582.232,1.71753,1.0568,0.00976,0.233952,0.005984,0.004256,0.00816,0.0144,0.016096,0.751872,0.01232
+1501,692.243,1.44458,1.04858,0.009792,0.224864,0.00496,0.005856,0.00768,0.014688,0.014816,0.75328,0.01264
+1502,621.642,1.60864,1.48995,0.01024,0.26624,0.006144,0.005152,0.007136,0.020256,0.028896,1.13261,0.01328
+1503,398.56,2.50903,1.11616,0.009216,0.271104,0.005856,0.00464,0.008192,0.015456,0.016352,0.773056,0.012288
+1504,539.302,1.85425,1.09754,0.011872,0.266656,0.006144,0.004096,0.008192,0.015552,0.015168,0.75776,0.012096
+1505,641.705,1.55835,1.07709,0.008896,0.241088,0.004864,0.005952,0.007968,0.014592,0.015712,0.764544,0.013472
+1506,642.006,1.55762,1.06394,0.00912,0.241632,0.0056,0.004672,0.007744,0.014784,0.01616,0.753088,0.011136
+1507,714.46,1.39966,1.83958,0.008672,0.23552,0.005856,0.005472,0.007104,0.015552,0.015168,1.52989,0.016352
+1508,446.771,2.23828,1.05677,0.00944,0.230176,0.00592,0.00432,0.008192,0.015712,0.014976,0.755744,0.012288
+1509,660.752,1.51343,1.05648,0.008192,0.224736,0.004896,0.005888,0.008,0.014528,0.01552,0.761888,0.012832
+1510,678.933,1.4729,1.23904,0.01024,0.405312,0.005664,0.004768,0.007648,0.014912,0.030176,0.749248,0.011072
+1511,617.146,1.62036,1.39498,0.00848,0.229376,0.006144,0.00592,0.00768,0.014912,0.014528,1.0936,0.014336
+1512,418.343,2.39038,1.05238,0.00992,0.23792,0.006048,0.00416,0.008032,0.014496,0.016224,0.743584,0.012
+1513,877.276,1.13989,1.05792,0.009344,0.224128,0.005952,0.005504,0.006976,0.014336,0.016384,0.761856,0.01344
+1514,661.072,1.5127,1.43907,0.008512,0.251872,0.005824,0.005632,0.006976,0.015552,0.0152,1.11728,0.012224
+1515,548.18,1.82422,1.81414,0.009344,0.224032,0.005632,0.004704,0.008192,0.014336,0.016192,1.51571,0.016
+1516,447.064,2.23682,1.07427,0.00944,0.245696,0.00496,0.005472,0.006816,0.015808,0.016256,0.758016,0.011808
+1517,676.131,1.479,1.03856,0.008416,0.225024,0.005632,0.004864,0.008128,0.0144,0.015968,0.743392,0.012736
+1518,667.862,1.49731,1.27606,0.009536,0.438784,0.005632,0.0048,0.007616,0.015072,0.015616,0.767776,0.011232
+1519,610.159,1.63892,1.4336,0.009696,0.223776,0.00592,0.00432,0.008192,0.014336,0.016288,1.13802,0.013056
+1520,485.021,2.06177,1.04787,0.008352,0.22528,0.006144,0.004096,0.008224,0.014304,0.016384,0.752992,0.012096
+1521,473.636,2.11133,1.08445,0.008192,0.257184,0.00496,0.006144,0.00816,0.014368,0.016384,0.755712,0.013344
+1522,1023.74,0.976807,1.41171,0.008832,0.2232,0.006144,0.004096,0.008192,0.015488,0.015232,1.11824,0.012288
+1523,580.993,1.72119,1.42298,0.008192,0.23088,0.004864,0.00592,0.007968,0.01456,0.015936,1.11866,0.016
+1524,479.064,2.0874,1.05066,0.01024,0.223264,0.006112,0.004096,0.008192,0.015456,0.015264,0.755712,0.01232
+1525,685.982,1.45776,1.02205,0.009056,0.220224,0.005056,0.00576,0.006528,0.015488,0.015232,0.731136,0.013568
+1526,710.618,1.40723,1.42336,0.009632,0.221792,0.005728,0.004512,0.007744,0.014784,0.015712,1.1281,0.01536
+1527,525.465,1.90308,1.08336,0.008288,0.23344,0.006144,0.005856,0.007616,0.014432,0.015104,0.77984,0.01264
+1528,593.365,1.6853,1.24803,0.01104,0.421664,0.004576,0.005536,0.007616,0.015104,0.015584,0.754624,0.012288
+1529,606.725,1.64819,1.06416,0.008224,0.221152,0.005664,0.004576,0.008064,0.014464,0.016,0.77248,0.013536
+1530,654,1.52905,1.32189,0.00912,0.221152,0.005632,0.00464,0.008192,0.015456,0.015264,1.02966,0.012768
+1531,419.285,2.38501,1.39891,0.008352,0.225024,0.005632,0.0048,0.009216,0.021408,0.015808,1.0943,0.014368
+1532,512.064,1.95288,1.09818,0.008704,0.265248,0.00512,0.00528,0.008096,0.015072,0.015968,0.762464,0.012224
+1533,680.851,1.46875,1.0711,0.010048,0.223424,0.00592,0.00432,0.008192,0.014368,0.016352,0.775392,0.013088
+1534,634.252,1.57666,1.41517,0.009888,0.223584,0.006144,0.005472,0.006816,0.015552,0.015168,1.1215,0.01104
+1535,556.068,1.79834,1.44918,0.024032,0.236064,0.006144,0.005824,0.007648,0.01488,0.015744,1.12454,0.014304
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..cfd0886
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,613.832,1.69437,1.2314,0.00880319,0.268922,0.00576794,0.00497991,0.007329,0.0135608,0.0146943,0.895376,0.0119631
+max_1024,1264,4.00232,1.95226,0.052416,0.726336,0.059392,0.02864,0.047744,0.04112,0.071616,1.62118,0.314336
+min_1024,249.855,0.791138,0.958464,0.006656,0.220128,0.004064,0.004064,0.006144,0.012256,0.0128,0.667648,0.008416
+512,491.245,2.03564,0.97504,0.008384,0.234976,0.00464,0.005152,0.007072,0.013408,0.014336,0.676832,0.01024
+513,654.313,1.52832,0.978944,0.00816,0.24784,0.00592,0.00432,0.007584,0.012928,0.014304,0.668864,0.009024
+514,700.051,1.42847,1.3817,0.008416,0.240672,0.004864,0.004096,0.008192,0.014336,0.014336,1.0744,0.012384
+515,538.912,1.85559,0.979264,0.008512,0.24176,0.0056,0.00464,0.007296,0.013184,0.014368,0.67376,0.010144
+516,738.218,1.35461,1.61382,0.009632,0.457312,0.03264,0.004224,0.007744,0.013792,0.014688,1.06355,0.01024
+517,494.806,2.021,0.976064,0.009376,0.227936,0.004352,0.00544,0.006848,0.01344,0.014656,0.684256,0.00976
+518,695.948,1.43689,0.970848,0.00832,0.227296,0.005248,0.004864,0.006272,0.014304,0.014304,0.68,0.01024
+519,684.32,1.4613,0.972032,0.008192,0.227168,0.004256,0.005536,0.006752,0.013664,0.01456,0.68224,0.009664
+520,689.098,1.45117,1.59578,0.008576,0.47312,0.006496,0.005472,0.006816,0.014272,0.0144,1.05581,0.010816
+521,522.516,1.91382,0.968544,0.00832,0.231296,0.005696,0.004544,0.00736,0.013024,0.014432,0.673792,0.01008
+522,716.46,1.39575,0.965664,0.008192,0.227328,0.004096,0.005856,0.006432,0.014144,0.014368,0.675776,0.009472
+523,730.125,1.36963,1.34298,0.009664,0.224896,0.004928,0.004224,0.007744,0.012736,0.014336,1.05408,0.010368
+524,539.16,1.85474,1.80838,0.009248,0.22944,0.004928,0.004192,0.00784,0.01264,0.014336,1.51347,0.012288
+525,390.858,2.55847,0.98304,0.007904,0.24016,0.005792,0.004448,0.007552,0.012928,0.014336,0.679936,0.009984
+526,924.918,1.08118,0.9856,0.008,0.238272,0.005664,0.004576,0.007392,0.01312,0.014304,0.684032,0.01024
+527,714.522,1.39954,1.34669,0.009568,0.237376,0.004928,0.004128,0.007776,0.012704,0.014336,1.04573,0.010144
+528,571.668,1.74927,0.972832,0.009696,0.231008,0.004896,0.004256,0.00768,0.0128,0.014336,0.677888,0.010272
+529,506.586,1.974,0.973152,0.010624,0.229344,0.005888,0.004352,0.007584,0.012896,0.014336,0.679392,0.008736
+530,656.621,1.52295,1.00157,0.008192,0.251936,0.005248,0.004832,0.006272,0.014368,0.014336,0.687712,0.008672
+531,766.539,1.30457,0.965792,0.008544,0.230048,0.005248,0.004832,0.006304,0.013792,0.014432,0.673632,0.00896
+532,648.871,1.54114,0.96992,0.009344,0.23344,0.004928,0.004192,0.007744,0.012736,0.014336,0.67344,0.00976
+533,668.08,1.49683,1.59712,0.00832,0.452608,0.023744,0.004928,0.007776,0.013792,0.014592,1.06106,0.010304
+534,511.52,1.95496,0.992064,0.006976,0.236896,0.004768,0.004096,0.008064,0.013664,0.014528,0.692832,0.01024
+535,518.809,1.92749,1.03242,0.008736,0.288768,0.005216,0.004832,0.006368,0.013888,0.01472,0.679968,0.00992
+536,934.626,1.06995,0.976928,0.009568,0.236192,0.004096,0.006144,0.00736,0.01312,0.014336,0.67584,0.010272
+537,652.074,1.53357,1.70013,0.008832,0.240704,0.004896,0.004256,0.007904,0.012576,0.015648,1.39133,0.013984
+538,495.824,2.01685,0.97264,0.008192,0.235296,0.00432,0.00544,0.006848,0.013824,0.014304,0.674336,0.01008
+539,723.355,1.38245,0.997376,0.008256,0.260288,0.0048,0.00528,0.007008,0.013408,0.014688,0.673888,0.00976
+540,733.59,1.36316,1.34499,0.00864,0.229376,0.005536,0.004704,0.006176,0.014112,0.014432,1.05181,0.010208
+541,543.524,1.83984,0.972736,0.008864,0.235296,0.004544,0.005248,0.00704,0.012288,0.015488,0.674016,0.009952
+542,549.393,1.82019,0.976032,0.012096,0.235712,0.005728,0.004512,0.007552,0.012928,0.014336,0.673472,0.009696
+543,701.01,1.42651,0.971104,0.00832,0.228192,0.005376,0.004832,0.008224,0.013728,0.0144,0.678208,0.009824
+544,732.213,1.36572,0.989504,0.008672,0.235104,0.004864,0.004096,0.007968,0.012512,0.014432,0.692096,0.00976
+545,564.849,1.77039,0.9856,0.009728,0.251712,0.00496,0.004256,0.007648,0.01424,0.013184,0.670688,0.009184
+546,581.199,1.72058,1.61382,0.008192,0.452448,0.03088,0.005536,0.006752,0.01424,0.014432,1.0711,0.01024
+547,574.514,1.7406,0.97728,0.008096,0.240096,0.004096,0.005696,0.006592,0.013824,0.01424,0.6744,0.01024
+548,729.02,1.3717,0.974528,0.008192,0.2312,0.00432,0.005472,0.006816,0.013472,0.0144,0.680736,0.00992
+549,626.252,1.5968,0.9704,0.008192,0.230624,0.004896,0.004096,0.008096,0.012384,0.014336,0.677888,0.009888
+550,734.313,1.36182,1.69878,0.008448,0.2424,0.00576,0.00448,0.007456,0.013024,0.014336,1.38854,0.014336
+551,477.473,2.09436,0.9744,0.008192,0.23456,0.004928,0.004224,0.00768,0.0128,0.014336,0.677888,0.009792
+552,700.65,1.42725,0.971744,0.00864,0.231008,0.004928,0.004224,0.00768,0.0128,0.015552,0.676672,0.01024
+553,669.281,1.49414,1.38195,0.008512,0.25968,0.004512,0.004096,0.008192,0.012288,0.015456,1.05882,0.0104
+554,574.998,1.73914,1.81005,0.009408,0.230208,0.005568,0.004672,0.007296,0.013184,0.014336,1.51347,0.011904
+555,442.213,2.26135,0.970752,0.008192,0.233472,0.00592,0.00432,0.00768,0.0128,0.01552,0.672608,0.01024
+556,706.694,1.41504,0.970752,0.008224,0.23344,0.005856,0.004384,0.007552,0.012928,0.014336,0.673792,0.01024
+557,773.268,1.29321,1.33766,0.008512,0.224928,0.004448,0.005376,0.006912,0.013664,0.014464,1.04912,0.01024
+558,570.513,1.75281,1.80634,0.00928,0.242624,0.004096,0.005472,0.006848,0.013824,0.014272,1.49763,0.012288
+559,448.877,2.22778,0.972224,0.009376,0.226144,0.005152,0.004832,0.0064,0.014048,0.014624,0.681888,0.00976
+560,723.292,1.38257,0.968736,0.008448,0.223232,0.005856,0.004384,0.00752,0.01296,0.014336,0.681984,0.010016
+561,727.402,1.37476,0.964,0.008512,0.225216,0.004128,0.0056,0.006688,0.013536,0.014592,0.675936,0.009792
+562,730.255,1.36938,0.97376,0.00864,0.223392,0.004448,0.005344,0.006944,0.012384,0.014368,0.689216,0.009024
+563,711.543,1.4054,0.964448,0.008192,0.224832,0.004544,0.005248,0.007072,0.013856,0.01456,0.676064,0.01008
+564,733.327,1.36365,0.96352,0.00864,0.223744,0.00544,0.0048,0.007872,0.012608,0.014336,0.67584,0.01024
+565,579.472,1.72571,0.981728,0.008416,0.250368,0.00576,0.00448,0.007456,0.013056,0.014304,0.667648,0.01024
+566,911.032,1.09766,0.98384,0.008576,0.241792,0.004384,0.005408,0.00688,0.013856,0.014688,0.678016,0.01024
+567,714.897,1.3988,0.971872,0.008288,0.231328,0.005632,0.004608,0.007456,0.013024,0.015936,0.67568,0.00992
+568,727.466,1.37463,0.962464,0.008608,0.227808,0.005696,0.004512,0.007392,0.01312,0.014464,0.671328,0.009536
+569,743.848,1.34436,0.958464,0.008224,0.2232,0.004096,0.005696,0.006592,0.013664,0.014496,0.672256,0.01024
+570,724.635,1.38,0.981312,0.008672,0.223584,0.004096,0.00576,0.006528,0.014336,0.014336,0.694272,0.009728
+571,721.571,1.38586,0.970688,0.008192,0.22688,0.004544,0.005248,0.006912,0.01248,0.01536,0.680896,0.010176
+572,718.975,1.39087,0.964608,0.009376,0.228192,0.005248,0.004896,0.007744,0.012832,0.014336,0.67312,0.008864
+573,726.37,1.37671,0.972096,0.008192,0.22528,0.005184,0.004864,0.008352,0.013472,0.014592,0.6824,0.00976
+574,734.577,1.36133,0.969216,0.008672,0.224864,0.004512,0.005312,0.006912,0.0136,0.0144,0.680672,0.010272
+575,722.845,1.38342,0.974336,0.008352,0.225376,0.004096,0.005792,0.006496,0.013824,0.014368,0.686432,0.0096
+576,719.101,1.39062,0.964608,0.008192,0.223232,0.005792,0.004448,0.008192,0.014176,0.014432,0.677728,0.008416
+577,681.871,1.46655,0.98368,0.008352,0.248288,0.004096,0.005696,0.006592,0.013504,0.01456,0.673728,0.008864
+578,709.94,1.40857,1.01795,0.008384,0.264192,0.005184,0.004928,0.006336,0.014048,0.01456,0.690176,0.010144
+579,714.772,1.39905,0.99328,0.008192,0.255744,0.00544,0.004864,0.008032,0.01264,0.0144,0.674784,0.009184
+580,726.434,1.37659,0.976544,0.009312,0.227648,0.004704,0.004096,0.008032,0.012608,0.015232,0.685024,0.009888
+581,723.164,1.38281,0.985184,0.008384,0.229152,0.004896,0.004096,0.007936,0.012544,0.014336,0.694208,0.009632
+582,721.571,1.38586,0.987328,0.008544,0.228416,0.004928,0.00544,0.006976,0.013856,0.0144,0.694688,0.01008
+583,708.099,1.41223,0.97008,0.008256,0.22528,0.0056,0.00464,0.008192,0.013696,0.014368,0.680256,0.009792
+584,737.686,1.35559,0.968864,0.008704,0.223712,0.004096,0.006016,0.006304,0.014048,0.014272,0.68192,0.009792
+585,723.739,1.38171,0.9728,0.009856,0.221568,0.004096,0.006144,0.00736,0.013152,0.014304,0.68608,0.01024
+586,723.739,1.38171,0.962592,0.008224,0.224704,0.004672,0.00592,0.006368,0.014048,0.014624,0.675264,0.008768
+587,726.499,1.37646,0.967552,0.008736,0.22528,0.004384,0.005696,0.006592,0.014016,0.014656,0.679232,0.00896
+588,709.571,1.4093,0.979584,0.008704,0.2296,0.00592,0.00432,0.008192,0.013984,0.0144,0.684352,0.010112
+589,719.038,1.39075,0.980128,0.008192,0.227328,0.005792,0.004448,0.00752,0.01296,0.014336,0.689632,0.00992
+590,716.648,1.39539,0.966848,0.008224,0.227488,0.004096,0.005728,0.00656,0.012288,0.014336,0.677888,0.01024
+591,726.306,1.37683,0.96656,0.009728,0.222752,0.004896,0.004288,0.008192,0.013696,0.01456,0.678304,0.010144
+592,731.951,1.36621,0.989824,0.008416,0.223712,0.005856,0.004384,0.007712,0.012768,0.014336,0.702464,0.010176
+593,616.357,1.62244,1.01104,0.008288,0.264128,0.004064,0.005888,0.0064,0.014336,0.014368,0.683808,0.00976
+594,711.235,1.40601,1.01619,0.008512,0.260384,0.00576,0.00448,0.00752,0.01296,0.014336,0.692224,0.010016
+595,698.559,1.43152,0.989184,0.008192,0.24304,0.004768,0.004096,0.008032,0.012448,0.014336,0.685216,0.009056
+596,687.999,1.45349,0.98304,0.008192,0.241664,0.004096,0.005792,0.006528,0.01408,0.016608,0.67584,0.01024
+597,783.474,1.27637,0.993088,0.019968,0.236064,0.00576,0.004448,0.007488,0.012992,0.014336,0.681984,0.010048
+598,706.694,1.41504,0.987136,0.009632,0.227936,0.004096,0.005856,0.006432,0.014272,0.014432,0.694272,0.010208
+599,736.956,1.35693,0.976832,0.00816,0.225312,0.005728,0.004384,0.006272,0.014336,0.014368,0.688096,0.010176
+600,718.03,1.3927,0.989184,0.008192,0.222912,0.004416,0.005216,0.007104,0.013568,0.014368,0.704864,0.008544
+601,712.348,1.40381,0.973568,0.008768,0.22256,0.004896,0.00416,0.007872,0.012608,0.015424,0.68704,0.01024
+602,720.366,1.38818,0.985088,0.009248,0.222176,0.005728,0.004512,0.00752,0.013024,0.015424,0.698272,0.009184
+603,716.46,1.39575,0.9704,0.008192,0.222304,0.0048,0.005504,0.006912,0.013536,0.014656,0.684608,0.009888
+604,598.349,1.67126,1.00166,0.008384,0.251424,0.004576,0.005184,0.007072,0.01232,0.015552,0.688096,0.009056
+605,707.916,1.4126,1.0056,0.008192,0.243712,0.005152,0.004896,0.006336,0.013696,0.01456,0.700064,0.008992
+606,768.913,1.30054,0.982912,0.009568,0.227936,0.00416,0.005632,0.006656,0.014112,0.014304,0.690432,0.010112
+607,707.304,1.41382,0.974944,0.008288,0.227328,0.005312,0.004928,0.007936,0.012544,0.014432,0.685568,0.008608
+608,721.19,1.3866,0.96832,0.008416,0.22736,0.005632,0.004576,0.007232,0.013248,0.014336,0.677888,0.009632
+609,668.353,1.49622,0.977504,0.0088,0.233504,0.005184,0.004928,0.00624,0.014176,0.014496,0.680992,0.009184
+610,694.708,1.43945,1.00147,0.008192,0.2376,0.005664,0.004544,0.00736,0.01312,0.014336,0.700416,0.01024
+611,770.939,1.29712,0.975744,0.008864,0.223264,0.004096,0.005792,0.006496,0.01408,0.014592,0.6896,0.00896
+612,701.01,1.42651,1.00147,0.009248,0.251968,0.00496,0.00416,0.007712,0.012768,0.015744,0.68576,0.009152
+613,734.972,1.3606,0.99136,0.008352,0.223232,0.00592,0.00432,0.007488,0.01296,0.026656,0.692224,0.010208
+614,721,1.38696,0.983744,0.008672,0.22448,0.00512,0.00528,0.007008,0.01344,0.01424,0.695264,0.01024
+615,663.911,1.50623,0.98304,0.008192,0.241664,0.004096,0.00576,0.006528,0.01376,0.014528,0.67968,0.008832
+616,767.041,1.30371,0.978944,0.008224,0.229344,0.005632,0.004608,0.006176,0.013984,0.014176,0.68656,0.01024
+617,658.256,1.51917,1.0279,0.008192,0.24576,0.005568,0.004672,0.007744,0.012768,0.014336,0.718816,0.010048
+618,741.693,1.34827,0.974144,0.00832,0.226368,0.00496,0.00416,0.008192,0.013536,0.014208,0.68464,0.00976
+619,734.643,1.36121,0.988672,0.009248,0.220128,0.005312,0.0048,0.006304,0.014112,0.026816,0.692128,0.009824
+620,684.664,1.46057,0.973824,0.008608,0.223808,0.005216,0.004864,0.006304,0.014144,0.014048,0.688128,0.008704
+621,745.608,1.34119,0.96672,0.008288,0.220608,0.00464,0.004096,0.00752,0.01296,0.014496,0.685088,0.009024
+622,678.764,1.47327,1.00966,0.009472,0.244512,0.005824,0.004384,0.007552,0.012928,0.014336,0.702016,0.00864
+623,707.61,1.41321,0.98048,0.008256,0.226592,0.004832,0.004096,0.007968,0.012512,0.014336,0.692064,0.009824
+624,735.302,1.35999,0.982304,0.009472,0.221952,0.0056,0.00464,0.007296,0.013184,0.03072,0.679904,0.009536
+625,654.313,1.52832,1.00096,0.009376,0.24256,0.005632,0.004576,0.007936,0.012544,0.014464,0.694112,0.00976
+626,681.417,1.46753,0.9968,0.00864,0.245312,0.004544,0.005248,0.00704,0.013504,0.013312,0.68976,0.00944
+627,686.385,1.45691,1.00486,0.008384,0.24336,0.004416,0.005344,0.006944,0.013344,0.014752,0.698528,0.009792
+628,735.236,1.36011,0.991264,0.008224,0.22528,0.005472,0.004352,0.00656,0.014208,0.014464,0.702464,0.01024
+629,684.378,1.46118,0.97456,0.008192,0.229312,0.00416,0.0056,0.006688,0.012288,0.01536,0.683008,0.009952
+630,641.654,1.55847,1.25238,0.008224,0.260032,0.004128,0.005632,0.006656,0.013728,0.014336,0.692736,0.246912
+631,604.843,1.65332,1.01782,0.008288,0.261824,0.005472,0.004832,0.0064,0.01392,0.014496,0.69248,0.010112
+632,637.708,1.56812,1.68704,0.008192,0.47104,0.059392,0.0056,0.006688,0.014336,0.01424,1.09782,0.009728
+633,508.157,1.9679,0.9816,0.00832,0.229472,0.00448,0.005312,0.006944,0.013408,0.0144,0.689024,0.01024
+634,723.419,1.38232,0.976896,0.008192,0.230848,0.004672,0.005312,0.006976,0.013344,0.014368,0.682944,0.01024
+635,653.895,1.5293,0.997728,0.00864,0.243712,0.00592,0.00432,0.007648,0.012832,0.014368,0.690144,0.010144
+636,648.204,1.54272,1.78797,0.008256,0.28384,0.004928,0.004096,0.00784,0.01264,0.014336,1.4377,0.014336
+637,423.951,2.35876,1.03779,0.007968,0.289344,0.005408,0.0048,0.007264,0.013216,0.014336,0.685664,0.009792
+638,692.828,1.44336,0.99344,0.008288,0.23968,0.00576,0.00448,0.007488,0.012992,0.014336,0.690176,0.01024
+639,653.061,1.53125,0.994528,0.009728,0.23808,0.00528,0.004864,0.00624,0.014048,0.014496,0.692192,0.0096
+640,678.202,1.47449,1.636,0.009856,0.448896,0.032768,0.005728,0.00656,0.014336,0.014336,1.09338,0.010144
+641,510.596,1.9585,0.989536,0.008544,0.233472,0.005216,0.005024,0.0072,0.01328,0.014336,0.692224,0.01024
+642,680.738,1.46899,0.981696,0.008032,0.236352,0.005312,0.004832,0.00624,0.013696,0.014368,0.684064,0.0088
+643,712.038,1.40442,1.37421,0.009792,0.23392,0.005248,0.004832,0.007776,0.012864,0.014336,1.0752,0.01024
+644,580.705,1.72205,1.82614,0.008448,0.23344,0.006144,0.00512,0.00704,0.013568,0.014752,1.52614,0.011488
+645,412.259,2.42566,1.0025,0.007136,0.24288,0.004896,0.004128,0.007808,0.012672,0.015648,0.697056,0.010272
+646,763.04,1.31055,1.02125,0.008192,0.251904,0.0056,0.00464,0.007328,0.013152,0.014336,0.70656,0.009536
+647,677.473,1.47607,1.408,0.009344,0.260992,0.004096,0.005792,0.006496,0.014336,0.014336,1.0825,0.010112
+648,520.656,1.92065,1.04243,0.008224,0.280544,0.005312,0.004928,0.007584,0.012896,0.014336,0.6984,0.010208
+649,556.976,1.79541,1.02195,0.011744,0.247808,0.00464,0.00512,0.007136,0.01232,0.01552,0.707424,0.01024
+650,715.209,1.39819,0.997376,0.008128,0.2328,0.004832,0.004096,0.007872,0.012608,0.014336,0.702496,0.010208
+651,673.463,1.48486,0.98304,0.0096,0.23136,0.0048,0.004096,0.008032,0.012448,0.014336,0.689216,0.009152
+652,648.204,1.54272,0.987008,0.008544,0.233504,0.005408,0.0048,0.006368,0.014112,0.014272,0.690112,0.009888
+653,486.49,2.05554,0.989184,0.012096,0.23328,0.00448,0.005312,0.006976,0.01232,0.015808,0.688832,0.01008
+654,461.365,2.16748,0.984512,0.00832,0.228768,0.004576,0.005216,0.007072,0.012352,0.015616,0.692928,0.009664
+655,982.019,1.01831,1.04838,0.008224,0.294048,0.004928,0.004096,0.007744,0.012736,0.014336,0.692256,0.010016
+656,704.749,1.41895,1.00352,0.008192,0.233248,0.00432,0.005472,0.006816,0.013632,0.014272,0.708672,0.008896
+657,691.717,1.44568,1.63965,0.008192,0.460032,0.027392,0.006144,0.007232,0.013248,0.014336,1.0928,0.010272
+658,489.806,2.04163,0.995168,0.009248,0.233856,0.004704,0.0056,0.006688,0.013536,0.014272,0.697184,0.01008
+659,704.506,1.41943,0.979424,0.008512,0.227712,0.005344,0.004864,0.006304,0.014208,0.014272,0.688192,0.010016
+660,696.836,1.43506,1.16758,0.008416,0.406944,0.004704,0.00512,0.007072,0.014208,0.014304,0.69808,0.008736
+661,624.533,1.6012,1.82272,0.008192,0.241664,0.005664,0.004576,0.007392,0.013088,0.014336,1.51552,0.012288
+662,451.499,2.21484,0.99328,0.008192,0.231424,0.004096,0.005792,0.007648,0.013184,0.014336,0.698368,0.01024
+663,686.097,1.45752,1.00352,0.008192,0.231424,0.005728,0.004512,0.007488,0.012992,0.014336,0.708608,0.01024
+664,642.308,1.55688,1.3783,0.008192,0.245376,0.00448,0.004096,0.00624,0.013536,0.013024,1.07312,0.01024
+665,613.679,1.62952,1.74822,0.008192,0.2432,0.004608,0.005184,0.007104,0.012288,0.014336,1.43882,0.014496
+666,439.32,2.27625,0.996096,0.008736,0.237696,0.005664,0.004576,0.00736,0.01312,0.014336,0.695712,0.008896
+667,744.457,1.34326,0.989216,0.008192,0.231424,0.005504,0.004736,0.007936,0.013696,0.01472,0.692736,0.010272
+668,727.854,1.3739,1.37165,0.008352,0.229216,0.005536,0.004704,0.007264,0.013248,0.014304,1.07693,0.012096
+669,536.934,1.86243,1.85514,0.008192,0.251904,0.004096,0.005888,0.0064,0.01408,0.014304,1.53834,0.011936
+670,447.699,2.23364,0.995328,0.008192,0.235424,0.004192,0.005568,0.00672,0.0136,0.014336,0.697056,0.01024
+671,717.275,1.39417,0.999424,0.008288,0.230816,0.004608,0.005184,0.007072,0.0136,0.014816,0.7048,0.01024
+672,692.418,1.44421,1.3792,0.008704,0.229536,0.005248,0.004864,0.006304,0.014304,0.014368,1.08458,0.011296
+673,434.589,2.30103,1.77011,0.008512,0.272704,0.004096,0.00576,0.00656,0.013504,0.014496,1.43014,0.014336
+674,572.307,1.74731,1.01686,0.008416,0.260896,0.004928,0.004288,0.00816,0.013504,0.014176,0.692928,0.009568
+675,731.821,1.36646,1.00352,0.009248,0.234368,0.004192,0.005664,0.006624,0.012288,0.014336,0.707936,0.008864
+676,696.658,1.43542,1.37539,0.009536,0.23008,0.0056,0.00464,0.007904,0.013696,0.014624,1.07725,0.012064
+677,550.575,1.81628,1.7471,0.00848,0.230752,0.004928,0.004288,0.007648,0.012832,0.014336,1.4497,0.014144
+678,460.976,2.16931,0.997376,0.009312,0.234464,0.005888,0.004288,0.008192,0.012288,0.014336,0.698368,0.01024
+679,482.962,2.07056,0.99328,0.008192,0.227008,0.004416,0.005504,0.006784,0.0136,0.014464,0.703072,0.01024
+680,1264,0.791138,1.3784,0.008288,0.229088,0.004384,0.005152,0.007136,0.013568,0.014592,1.08496,0.011232
+681,551.576,1.81299,1.00733,0.008736,0.241664,0.004256,0.005536,0.006752,0.0136,0.014656,0.702432,0.009696
+682,461.157,2.16846,1.02902,0.0112,0.263584,0.004672,0.00512,0.007136,0.01232,0.015424,0.700512,0.009056
+683,751.284,1.33105,0.98496,0.008192,0.227328,0.005536,0.004704,0.007328,0.01312,0.014368,0.694272,0.010112
+684,675.406,1.48059,1.2329,0.008192,0.232544,0.004928,0.004192,0.008224,0.01408,0.014432,0.702592,0.243712
+685,632.685,1.58057,1.00464,0.008224,0.237536,0.005792,0.004448,0.007456,0.013056,0.014304,0.704064,0.00976
+686,478.114,2.09155,1.01456,0.011168,0.24352,0.004288,0.005504,0.006784,0.013632,0.012992,0.706496,0.010176
+687,718.344,1.39209,1.00762,0.009344,0.230272,0.005568,0.004672,0.007168,0.012736,0.01488,0.712736,0.01024
+688,700.89,1.42676,0.99792,0.008576,0.23296,0.004768,0.005664,0.006624,0.01392,0.014784,0.70144,0.009184
+689,644.38,1.55188,1.00147,0.008192,0.224864,0.004512,0.00528,0.007008,0.01392,0.014464,0.712992,0.01024
+690,647.64,1.54407,1.83574,0.008768,0.23568,0.004096,0.005824,0.006464,0.014144,0.0144,1.53411,0.012256
+691,468.489,2.13452,1.00237,0.007072,0.230848,0.00464,0.005152,0.00688,0.012544,0.014336,0.710656,0.01024
+692,677.193,1.47668,1.00461,0.008192,0.245504,0.004352,0.00544,0.006848,0.01392,0.014496,0.696096,0.00976
+693,709.387,1.40967,1.16611,0.008928,0.405536,0.004256,0.0056,0.006688,0.014176,0.014528,0.696288,0.010112
+694,635.137,1.57446,1.72627,0.008416,0.237568,0.005312,0.004864,0.006304,0.01424,0.014336,1.4208,0.014432
+695,465.164,2.14978,0.998272,0.008704,0.233856,0.005664,0.004576,0.00736,0.013088,0.01424,0.701568,0.009216
+696,690.783,1.44763,1.04448,0.009344,0.25792,0.004928,0.004288,0.00784,0.013856,0.015008,0.721056,0.01024
+697,699.573,1.42944,1.37648,0.008416,0.235552,0.004064,0.005856,0.006432,0.013952,0.01472,1.07725,0.01024
+698,564.304,1.77209,1.75885,0.008192,0.2376,0.005248,0.004864,0.00624,0.014336,0.014368,1.45344,0.01456
+699,460.251,2.17273,0.996128,0.008192,0.232224,0.005696,0.004544,0.007456,0.013024,0.014336,0.701504,0.009152
+700,693.063,1.44287,0.997472,0.008256,0.229376,0.006144,0.004096,0.008224,0.013952,0.014368,0.70416,0.008896
+701,547.484,1.82654,1.42963,0.009792,0.272832,0.005696,0.004544,0.007424,0.013088,0.015328,1.08966,0.011264
+702,672.468,1.48706,1.75389,0.008672,0.233792,0.004096,0.0056,0.006688,0.013984,0.01424,1.4537,0.01312
+703,467.527,2.13892,1.00538,0.008672,0.23264,0.00496,0.004096,0.007872,0.012608,0.015616,0.70896,0.009952
+704,717.024,1.39465,0.999104,0.008416,0.227296,0.004096,0.005856,0.006432,0.014016,0.014688,0.708576,0.009728
+705,715.521,1.39758,1.38406,0.009248,0.230304,0.005408,0.004832,0.006336,0.014048,0.014432,1.08717,0.012288
+706,542.768,1.84241,1.7503,0.009312,0.2344,0.004096,0.00576,0.006528,0.014048,0.014208,1.44778,0.014176
+707,462.302,2.16309,1.00262,0.00944,0.231808,0.004512,0.00528,0.007008,0.0136,0.014656,0.706592,0.009728
+708,695.298,1.43823,1.00518,0.009472,0.228096,0.005792,0.004448,0.007456,0.013024,0.014336,0.712672,0.009888
+709,718.786,1.39124,1.24291,0.008928,0.233056,0.004512,0.00528,0.00704,0.012256,0.014336,0.71232,0.245184
+710,249.855,4.00232,1.02403,0.009472,0.250656,0.005888,0.00432,0.007584,0.012896,0.014368,0.708576,0.010272
+711,886.388,1.12817,1.07747,0.010528,0.294208,0.0048,0.004096,0.007968,0.012512,0.014336,0.718848,0.010176
+712,693.415,1.44214,1.03363,0.009632,0.252544,0.006112,0.004096,0.007968,0.012512,0.014368,0.716768,0.009632
+713,692.184,1.4447,1.03632,0.008192,0.266336,0.006048,0.004096,0.0072,0.013312,0.014304,0.707712,0.00912
+714,674.961,1.48157,1.37418,0.00928,0.234048,0.00448,0.004096,0.008064,0.013536,0.0144,1.07402,0.012256
+715,589.31,1.6969,1.01242,0.008576,0.241984,0.004096,0.005472,0.006816,0.013632,0.01472,0.70688,0.01024
+716,674.294,1.48303,0.995328,0.008192,0.228832,0.00464,0.005152,0.007136,0.013632,0.014528,0.70432,0.008896
+717,732.606,1.36499,1.3936,0.008864,0.225568,0.005312,0.004864,0.006208,0.01424,0.014336,1.10192,0.012288
+718,557.772,1.79285,1.33578,0.008544,0.234048,0.005472,0.004768,0.007968,0.012512,0.014336,1.03424,0.013888
+719,475.892,2.10132,1.03222,0.008192,0.251456,0.004544,0.005248,0.00704,0.013856,0.014816,0.7168,0.010272
+720,752.388,1.3291,0.997376,0.009632,0.225888,0.004096,0.005728,0.00656,0.01392,0.014336,0.706976,0.01024
+721,693.473,1.44202,1.24109,0.008192,0.224448,0.004928,0.004096,0.007968,0.012512,0.014368,0.953696,0.01088
+722,601.38,1.66284,0.987136,0.008064,0.227456,0.005184,0.004864,0.006336,0.014112,0.014016,0.698176,0.008928
+723,524.59,1.90625,1.01203,0.01088,0.235456,0.005376,0.004864,0.006304,0.01376,0.01456,0.710848,0.009984
+724,701.31,1.4259,1.0079,0.00832,0.227328,0.005568,0.004672,0.00752,0.01296,0.015424,0.717472,0.00864
+725,698.738,1.43115,1.00182,0.008448,0.229536,0.00544,0.0048,0.007744,0.012736,0.014336,0.708608,0.010176
+726,704.325,1.4198,1.1937,0.01024,0.405504,0.005152,0.004992,0.006272,0.014304,0.014336,0.722944,0.009952
+727,601.292,1.66309,1.68566,0.008768,0.516256,0.016384,0.005728,0.00656,0.014336,0.014336,1.09296,0.010336
+728,475.836,2.10156,0.997376,0.009536,0.23008,0.005536,0.004704,0.008224,0.014176,0.014176,0.701984,0.00896
+729,659.9,1.51538,1.03581,0.009376,0.246624,0.005216,0.004864,0.006304,0.01408,0.014624,0.72496,0.00976
+730,638.952,1.56506,1.30291,0.008576,0.527392,0.004992,0.004192,0.007744,0.014048,0.014336,0.712704,0.008928
+731,618.031,1.61804,1.8529,0.01008,0.241312,0.004608,0.005184,0.01472,0.012864,0.015744,1.53664,0.011744
+732,436.674,2.29004,1.00576,0.008448,0.234112,0.004096,0.005728,0.00656,0.014176,0.0144,0.708576,0.009664
+733,674.461,1.48267,1.008,0.008672,0.234848,0.004928,0.004192,0.007808,0.012704,0.0144,0.71056,0.009888
+734,679.665,1.47131,1.39222,0.008256,0.23136,0.00544,0.0048,0.007424,0.013056,0.01536,1.096,0.010528
+735,578.245,1.72937,1.75718,0.009248,0.234464,0.0056,0.00464,0.007296,0.019328,0.014368,1.4479,0.014336
+736,457.398,2.18628,1.01619,0.008576,0.243712,0.004096,0.005696,0.006592,0.013568,0.014304,0.710496,0.009152
+737,683.407,1.46326,1.01043,0.008768,0.229568,0.005664,0.004576,0.007392,0.01312,0.014464,0.71664,0.01024
+738,606.321,1.64929,1.38659,0.009792,0.234112,0.005856,0.004192,0.007168,0.013312,0.014336,1.08749,0.010336
+739,594.183,1.68298,1.85142,0.009312,0.238496,0.00576,0.00448,0.00752,0.014784,0.01456,1.54541,0.011104
+740,436.557,2.29065,1.01683,0.008352,0.23536,0.00512,0.004864,0.007616,0.01312,0.014336,0.7184,0.009664
+741,700.231,1.4281,1.01654,0.008736,0.22944,0.00448,0.005344,0.006944,0.013312,0.014368,0.723936,0.009984
+742,628.414,1.59131,1.24733,0.009632,0.460896,0.00464,0.005216,0.007072,0.014144,0.014304,0.722784,0.00864
+743,652.801,1.53186,1.86042,0.008416,0.236128,0.004096,0.005728,0.00656,0.01424,0.014432,1.55981,0.011008
+744,430.682,2.3219,1.00941,0.009376,0.232288,0.005472,0.004768,0.007872,0.012608,0.014336,0.712704,0.009984
+745,696.243,1.43628,1.00867,0.008192,0.230688,0.004832,0.004096,0.007968,0.012512,0.014336,0.716416,0.009632
+746,665.151,1.50342,1.39059,0.008224,0.230784,0.004704,0.004096,0.00784,0.0144,0.013696,1.09661,0.01024
+747,575.685,1.73706,1.32112,0.009312,0.238528,0.0056,0.004608,0.007328,0.013152,0.014336,0.71392,0.314336
+748,491.186,2.03589,1.01414,0.008608,0.235488,0.004096,0.00576,0.006528,0.014112,0.01424,0.716736,0.008576
+749,729.345,1.37109,1.00762,0.008192,0.231424,0.005696,0.004544,0.00736,0.01312,0.014336,0.712704,0.01024
+750,699.991,1.42859,1.38954,0.008672,0.231936,0.005888,0.004352,0.00768,0.0128,0.014336,1.09162,0.012256
+751,542.768,1.84241,1.28614,0.008256,0.235136,0.004416,0.005344,0.006944,0.0136,0.01424,0.709376,0.288832
+752,504.092,1.98376,1.0281,0.011968,0.241696,0.004384,0.005408,0.00688,0.013536,0.014496,0.719616,0.010112
+753,708.405,1.41162,0.995328,0.008192,0.228928,0.004544,0.005248,0.00704,0.012288,0.01536,0.7048,0.008928
+754,684.606,1.46069,1.24317,0.009472,0.22784,0.004352,0.00544,0.006848,0.01392,0.014336,0.950688,0.010272
+755,606.86,1.64783,1.02982,0.008416,0.2312,0.005216,0.004864,0.016544,0.014336,0.014304,0.725024,0.00992
+756,423.578,2.36084,1.06701,0.012256,0.26832,0.00432,0.005632,0.006432,0.013984,0.014464,0.732416,0.009184
+757,709.817,1.40881,1.03834,0.008192,0.253248,0.0048,0.005568,0.00672,0.0136,0.014304,0.722816,0.009088
+758,713.713,1.40112,1.01357,0.008224,0.247136,0.004736,0.004096,0.007968,0.012512,0.014336,0.704544,0.010016
+759,590.117,1.69458,1.03238,0.008736,0.243648,0.004352,0.005408,0.00688,0.013824,0.0144,0.72544,0.009696
+760,456.176,2.19214,1.03312,0.0112,0.237536,0.005408,0.004832,0.006336,0.014144,0.014336,0.729088,0.01024
+761,663.535,1.50708,0.996672,0.008256,0.230816,0.004704,0.004096,0.008032,0.01376,0.015104,0.702144,0.00976
+762,719.543,1.38977,1.02352,0.008256,0.233472,0.005472,0.004768,0.00736,0.01312,0.014336,0.72704,0.009696
+763,651.71,1.53442,1.0032,0.00832,0.229184,0.00416,0.005632,0.006656,0.013888,0.014496,0.710912,0.009952
+764,656.726,1.52271,1.65382,0.009824,0.448928,0.032768,0.00784,0.006496,0.014336,0.014336,1.10941,0.009888
+765,476.778,2.09741,1.03814,0.008128,0.233824,0.004128,0.005632,0.006656,0.013728,0.014528,0.741792,0.009728
+766,546.862,1.82861,1.01808,0.008416,0.243744,0.005632,0.004576,0.00736,0.01312,0.014208,0.712416,0.008608
+767,885.334,1.12952,1.19539,0.009664,0.405312,0.004864,0.004096,0.008,0.013984,0.01472,0.724832,0.00992
+768,573.549,1.74353,1.76845,0.008192,0.263712,0.004576,0.005184,0.007104,0.013376,0.01456,1.43638,0.01536
+769,449.394,2.22522,1.05472,0.008192,0.258048,0.005824,0.004416,0.007552,0.012928,0.014336,0.733184,0.01024
+770,683.863,1.46228,1.04035,0.009312,0.258656,0.004416,0.005376,0.006912,0.014336,0.014368,0.716768,0.010208
+771,649.386,1.53992,1.18346,0.008256,0.411296,0.004448,0.005408,0.00688,0.014336,0.014272,0.708672,0.009888
+772,668.462,1.49597,1.8536,0.008352,0.238752,0.00496,0.00544,0.006848,0.013728,0.014848,1.54976,0.010912
+773,437.981,2.2832,1.00576,0.008448,0.231168,0.004096,0.005696,0.006592,0.014016,0.014336,0.712384,0.009024
+774,681.701,1.46692,1.00352,0.008192,0.229408,0.005856,0.004352,0.008192,0.013792,0.014432,0.71024,0.009056
+775,663.374,1.50745,1.4087,0.00944,0.244512,0.005312,0.004832,0.006304,0.01392,0.014528,1.09904,0.010816
+776,518.35,1.9292,1.6943,0.0088,0.517984,0.006304,0.005696,0.006592,0.014336,0.015488,1.10886,0.01024
+777,485.049,2.06165,1.01379,0.00832,0.230912,0.004928,0.00416,0.008192,0.014048,0.014528,0.718944,0.00976
+778,740.888,1.34973,1.00995,0.008672,0.23072,0.00496,0.004096,0.007808,0.012672,0.014336,0.7168,0.009888
+779,667.264,1.49866,1.39386,0.008224,0.230784,0.004704,0.004096,0.008352,0.013952,0.014592,1.09878,0.010368
+780,552.17,1.81104,1.8616,0.008704,0.235264,0.004512,0.005792,0.006496,0.01392,0.0144,1.56093,0.011584
+781,434.704,2.30042,1.03014,0.008192,0.258048,0.005152,0.004864,0.006368,0.013472,0.013152,0.710656,0.01024
+782,728.437,1.3728,1.00797,0.008512,0.228832,0.00464,0.00512,0.00704,0.012416,0.015456,0.71568,0.010272
+783,675.908,1.47949,1.37789,0.009248,0.22544,0.004768,0.004256,0.007968,0.012544,0.014144,1.08918,0.010336
+784,519.731,1.92407,1.31478,0.008768,0.265472,0.004896,0.004256,0.007552,0.012928,0.014336,0.711936,0.28464
+785,517.139,1.93372,1.01008,0.011712,0.234464,0.004096,0.005792,0.006496,0.013824,0.014752,0.708704,0.01024
+786,744.524,1.34314,1.02269,0.008608,0.243648,0.00448,0.005312,0.006976,0.013568,0.014304,0.716928,0.008864
+787,699.573,1.42944,1.37984,0.008192,0.229376,0.005344,0.004864,0.006304,0.014208,0.014368,1.08518,0.012
+788,553.738,1.80591,1.77507,0.008192,0.230816,0.004704,0.004096,0.008064,0.012416,0.015456,1.4769,0.014432
+789,433.921,2.30457,1.05882,0.008192,0.266112,0.004224,0.005344,0.006944,0.012384,0.01552,0.729856,0.01024
+790,687.479,1.45459,1.02301,0.008384,0.242912,0.004704,0.004096,0.008064,0.012416,0.015584,0.717376,0.009472
+791,700.111,1.42834,1.39264,0.009248,0.234208,0.004352,0.00544,0.006848,0.013504,0.014496,1.09226,0.012288
+792,531.914,1.88,1.78122,0.008288,0.254304,0.005504,0.004736,0.0072,0.01328,0.014336,1.45818,0.015392
+793,467.233,2.14026,1.01174,0.008192,0.230464,0.004896,0.004256,0.00752,0.012992,0.014304,0.720032,0.009088
+794,702.392,1.42371,1.01046,0.008,0.224192,0.005568,0.004672,0.007264,0.013248,0.014304,0.724032,0.009184
+795,444.831,2.24805,1.4263,0.008864,0.253184,0.004896,0.004288,0.00768,0.0128,0.014336,1.10931,0.010944
+796,872.975,1.14551,1.3729,0.008576,0.284064,0.004928,0.004224,0.007776,0.012704,0.014336,1.02192,0.014368
+797,498.873,2.00452,1.03648,0.008384,0.253152,0.004896,0.004096,0.00784,0.01264,0.014368,0.722112,0.008992
+798,671.751,1.48865,1.0097,0.008224,0.229376,0.005344,0.004864,0.00624,0.014208,0.014368,0.716832,0.01024
+799,719.733,1.3894,1.39709,0.008544,0.231232,0.004288,0.005504,0.006784,0.013536,0.014464,1.10048,0.012256
+800,538.699,1.85632,1.33744,0.008,0.233728,0.005216,0.004864,0.006304,0.014336,0.014144,1.0015,0.049344
+801,499.847,2.00061,1.016,0.008352,0.230624,0.004896,0.004096,0.007904,0.012576,0.015616,0.72304,0.008896
+802,697.132,1.43445,1.02387,0.009728,0.242176,0.005792,0.004448,0.00752,0.01296,0.014336,0.7168,0.010112
+803,714.024,1.40051,1.24435,0.008192,0.227328,0.005344,0.004864,0.006176,0.014368,0.014336,0.952288,0.011456
+804,581.24,1.72046,0.999552,0.008192,0.230848,0.004672,0.004096,0.008032,0.012608,0.015328,0.706944,0.008832
+805,431.158,2.31934,1.06122,0.01168,0.279488,0.004096,0.005856,0.006432,0.014336,0.014368,0.71472,0.01024
+806,673.241,1.48535,1.05059,0.008384,0.264096,0.004192,0.0056,0.006688,0.013664,0.014272,0.72368,0.010016
+807,618.171,1.61768,1.33642,0.008192,0.321536,0.004096,0.005824,0.006464,0.014176,0.014528,0.95024,0.01136
+808,609.025,1.64197,1.02691,0.008736,0.24528,0.004896,0.004096,0.007904,0.012576,0.014496,0.720256,0.008672
+809,424.874,2.35364,1.05683,0.01168,0.266912,0.004096,0.005856,0.006464,0.013728,0.014336,0.72352,0.01024
+810,678.09,1.47473,1.0249,0.008672,0.246176,0.00592,0.00432,0.00768,0.012832,0.014304,0.714752,0.01024
+811,710.063,1.40833,1.44102,0.009472,0.26496,0.00576,0.00448,0.007616,0.012864,0.014336,1.10912,0.012416
+812,507.559,1.97021,1.3312,0.008224,0.239584,0.005312,0.004864,0.00624,0.014304,0.014336,1.00966,0.028672
+813,428.116,2.33582,1.03635,0.0088,0.251808,0.004224,0.005536,0.006752,0.013472,0.01456,0.721312,0.009888
+814,829.318,1.20581,1.05056,0.008224,0.270336,0.005248,0.004832,0.006272,0.014368,0.014304,0.7168,0.010176
+815,671.31,1.48962,1.26736,0.009536,0.250592,0.005664,0.004544,0.007392,0.01312,0.014304,0.950272,0.011936
+816,617.146,1.62036,1.0623,0.009664,0.272832,0.004224,0.005568,0.00672,0.013632,0.014432,0.7256,0.009632
+817,529.062,1.89014,1.24717,0.0328,0.433696,0.004608,0.006144,0.007744,0.014048,0.0144,0.723616,0.010112
+818,646.567,1.54663,1.02198,0.008192,0.232608,0.004928,0.004128,0.007904,0.012672,0.014336,0.728288,0.008928
+819,600.147,1.66626,1.04307,0.008768,0.24912,0.004896,0.004096,0.008192,0.013472,0.015104,0.73024,0.009184
+820,586.064,1.7063,1.05267,0.009664,0.258624,0.005728,0.004512,0.007392,0.01312,0.014304,0.729088,0.01024
+821,445.266,2.24585,1.02896,0.011072,0.244896,0.004928,0.004128,0.007872,0.01376,0.01456,0.718656,0.009088
+822,632.636,1.58069,1.04829,0.008192,0.239616,0.004096,0.00576,0.006528,0.014304,0.014368,0.745472,0.009952
+823,733.656,1.36304,1.03629,0.008192,0.243712,0.004096,0.005856,0.006432,0.013952,0.014336,0.729504,0.010208
+824,600.366,1.66565,1.04858,0.008416,0.263104,0.004896,0.00416,0.00784,0.014528,0.014496,0.721952,0.009184
+825,456.023,2.19287,1.04144,0.011264,0.25376,0.004288,0.005504,0.006784,0.013728,0.014048,0.721792,0.010272
+826,681.587,1.46716,1.02605,0.008512,0.233344,0.004224,0.005568,0.00672,0.014112,0.0144,0.729248,0.00992
+827,709.879,1.40869,1.00973,0.008288,0.233376,0.004192,0.0056,0.007744,0.013152,0.014048,0.71312,0.010208
+828,630.639,1.58569,1.02029,0.008448,0.231424,0.004096,0.006144,0.007168,0.013344,0.014336,0.726656,0.008672
+829,658.998,1.51746,1.67069,0.009248,0.447456,0.034816,0.021824,0.006848,0.014144,0.014528,1.11184,0.009984
+830,503.813,1.98486,1.02992,0.009504,0.238304,0.005376,0.004864,0.007296,0.013216,0.014304,0.72704,0.010016
+831,650.572,1.53711,1.01786,0.008256,0.234624,0.004896,0.004128,0.007904,0.012576,0.014336,0.72208,0.009056
+832,705.113,1.41821,1.19043,0.008672,0.405408,0.004256,0.005568,0.00672,0.014208,0.014368,0.722272,0.00896
+833,621.595,1.60876,1.80224,0.009568,0.24192,0.004512,0.005248,0.00704,0.013856,0.014752,1.49277,0.012576
+834,410.524,2.43591,1.03469,0.008512,0.237696,0.005536,0.004704,0.0072,0.01328,0.014336,0.734208,0.009216
+835,681.814,1.46667,1.08384,0.008448,0.288992,0.00576,0.004448,0.007488,0.012992,0.015584,0.729888,0.01024
+836,619.433,1.61438,1.188,0.007776,0.405312,0.004864,0.004096,0.008032,0.013728,0.014304,0.719648,0.01024
+837,667.753,1.49756,1.87622,0.008128,0.244,0.005856,0.004384,0.007616,0.012864,0.014368,1.56794,0.011072
+838,420.793,2.37646,1.02179,0.009472,0.238176,0.004256,0.005504,0.00784,0.01328,0.014336,0.718848,0.01008
+839,729.865,1.37012,1.04643,0.008352,0.259168,0.004896,0.004224,0.007712,0.012768,0.014368,0.72496,0.009984
+840,708.712,1.41101,1.21158,0.008352,0.417376,0.004512,0.005312,0.006976,0.013888,0.014496,0.731168,0.009504
+841,584.475,1.71094,1.3304,0.008224,0.247776,0.004096,0.005792,0.006496,0.014016,0.014272,1.01619,0.013536
+842,507.653,1.96985,1.01555,0.009376,0.233824,0.004608,0.005792,0.006528,0.013856,0.014016,0.717568,0.009984
+843,655.36,1.52588,1.05507,0.008896,0.263712,0.004832,0.004096,0.008192,0.013792,0.014144,0.727744,0.009664
+844,714.46,1.39966,1.4081,0.008192,0.232864,0.004704,0.004096,0.008032,0.013504,0.014656,1.11008,0.011968
+845,535.95,1.86584,1.33251,0.008064,0.245024,0.004928,0.004128,0.00784,0.01264,0.014336,1.00336,0.032192
+846,490.451,2.03894,1.05248,0.009696,0.262688,0.00416,0.005696,0.006528,0.014336,0.014336,0.724992,0.010048
+847,683.578,1.46289,1.04048,0.008768,0.241664,0.005664,0.004576,0.00736,0.013152,0.014304,0.7352,0.009792
+848,681.758,1.4668,1.43427,0.00864,0.241696,0.004288,0.005472,0.006816,0.024576,0.015776,1.11584,0.011168
+849,390.933,2.55798,1.36227,0.008192,0.233632,0.004288,0.005504,0.007808,0.013344,0.014304,1.06394,0.011264
+850,781.307,1.27991,1.03411,0.008192,0.233472,0.005504,0.004736,0.006144,0.014336,0.014336,0.73728,0.010112
+851,707.549,1.41333,1.00941,0.008192,0.22736,0.005376,0.004832,0.007456,0.013024,0.014368,0.718816,0.009984
+852,577.308,1.73218,1.28707,0.009088,0.26208,0.004192,0.00592,0.006368,0.01408,0.014592,0.960256,0.010496
+853,647.077,1.54541,1.0265,0.008544,0.237376,0.004352,0.005472,0.006816,0.013696,0.014528,0.726528,0.009184
+854,687.652,1.45422,1.66365,0.007968,0.455072,0.032672,0.00672,0.007808,0.014048,0.014112,1.11501,0.01024
+855,473.937,2.10999,1.03203,0.008672,0.235776,0.005408,0.004832,0.007904,0.012672,0.014304,0.732512,0.009952
+856,684.835,1.46021,1.04518,0.008096,0.234272,0.005184,0.005056,0.006336,0.014144,0.014336,0.749248,0.008512
+857,587.156,1.70312,1.02208,0.00832,0.233472,0.005792,0.004448,0.007488,0.013024,0.014304,0.726112,0.00912
+858,634.744,1.57544,1.65699,0.00928,0.46512,0.006912,0.005088,0.00704,0.01392,0.014496,1.12474,0.0104
+859,492.663,2.02979,1.03219,0.008192,0.235072,0.004544,0.005792,0.006496,0.01392,0.014656,0.734592,0.008928
+860,691.425,1.44629,1.01629,0.008608,0.229376,0.005504,0.004736,0.007264,0.013216,0.014368,0.724576,0.00864
+861,541.727,1.84595,1.03424,0.009472,0.24448,0.004096,0.005792,0.006496,0.013792,0.01488,0.72608,0.009152
+862,806.299,1.24023,1.75398,0.007072,0.563104,0.00624,0.005728,0.006528,0.014336,0.014176,1.12656,0.01024
+863,462.616,2.16162,1.0111,0.008224,0.232416,0.004928,0.004288,0.007648,0.012832,0.015456,0.715552,0.00976
+864,718.344,1.39209,1.03453,0.00848,0.243712,0.005728,0.004512,0.007424,0.013056,0.014336,0.72704,0.01024
+865,692.828,1.44336,1.19658,0.008736,0.40544,0.004128,0.005728,0.00656,0.014368,0.014304,0.728384,0.008928
+866,603.685,1.65649,1.76947,0.008192,0.233472,0.006112,0.004128,0.007872,0.012672,0.015424,1.46726,0.014336
+867,434.773,2.30005,1.06029,0.008448,0.258048,0.004096,0.005856,0.006432,0.014048,0.014304,0.739328,0.009728
+868,718.849,1.39111,1.0511,0.008672,0.233568,0.00544,0.0048,0.006368,0.014112,0.014336,0.753664,0.010144
+869,681.191,1.46802,1.23878,0.009376,0.44096,0.00432,0.005504,0.006784,0.01424,0.014368,0.733248,0.009984
+870,587.914,1.70093,1.89235,0.009312,0.252832,0.005536,0.004704,0.007168,0.013312,0.014336,1.57389,0.011264
+871,419.887,2.38159,1.01782,0.008736,0.233632,0.005344,0.004864,0.006208,0.014304,0.014336,0.720608,0.009792
+872,679.158,1.47241,1.01766,0.008192,0.229376,0.00544,0.0048,0.006144,0.014336,0.014336,0.724992,0.010048
+873,693.884,1.44116,1.20515,0.007104,0.405472,0.005792,0.004448,0.007584,0.012896,0.015392,0.736224,0.01024
+874,608.98,1.64209,1.86166,0.0088,0.231648,0.005152,0.004832,0.0064,0.014112,0.01408,1.56512,0.01152
+875,437.047,2.28809,1.03722,0.008448,0.230048,0.005568,0.004672,0.007456,0.013024,0.014336,0.743424,0.01024
+876,668.516,1.49585,1.0192,0.008192,0.2288,0.004672,0.004096,0.008064,0.013856,0.01424,0.727744,0.009536
+877,715.959,1.39673,1.38525,0.008992,0.229472,0.005664,0.004128,0.006496,0.013984,0.014528,1.09174,0.01024
+878,560.865,1.78296,1.70835,0.008512,0.507616,0.028992,0.005536,0.00672,0.014304,0.014304,1.11318,0.009184
+879,377.094,2.65186,1.03834,0.008192,0.255136,0.004896,0.00416,0.00784,0.014048,0.014368,0.719456,0.01024
+880,974.542,1.02612,1.07789,0.008672,0.283808,0.005024,0.00416,0.007872,0.012608,0.015552,0.72992,0.010272
+881,671.145,1.48999,1.42954,0.008256,0.26384,0.004352,0.00544,0.006912,0.012288,0.015392,1.10282,0.01024
+882,550.02,1.81812,1.81453,0.008416,0.259872,0.00512,0.004864,0.0064,0.014016,0.014656,1.48819,0.012992
+883,445.653,2.2439,1.02006,0.007872,0.232,0.004096,0.00576,0.006528,0.014144,0.014528,0.724992,0.010144
+884,711.853,1.40479,1.01418,0.008608,0.229376,0.005536,0.004704,0.008192,0.01424,0.014432,0.719968,0.00912
+885,679.834,1.47095,1.31072,0.008192,0.513024,0.004992,0.004224,0.007488,0.01408,0.014336,0.734144,0.01024
+886,580.334,1.72314,1.84733,0.008192,0.234816,0.0048,0.004096,0.00816,0.013408,0.014464,1.54819,0.0112
+887,452.697,2.20898,1.03683,0.00848,0.2296,0.005536,0.004672,0.00736,0.013184,0.014304,0.744704,0.008992
+888,682.212,1.46582,1.04858,0.008192,0.231424,0.005216,0.004864,0.007904,0.012736,0.014336,0.753664,0.01024
+889,622.209,1.60718,1.4273,0.008576,0.26624,0.005536,0.004288,0.00784,0.013056,0.014336,1.09693,0.010496
+890,554.863,1.80225,1.8247,0.008224,0.268256,0.00512,0.004864,0.006432,0.014016,0.014656,1.48886,0.014272
+891,423.053,2.36377,1.0608,0.00816,0.260224,0.005312,0.004832,0.00624,0.014368,0.014336,0.737248,0.01008
+892,750.733,1.33203,1.04038,0.008416,0.239424,0.00544,0.004768,0.007232,0.013248,0.014336,0.738624,0.008896
+893,706.207,1.41602,1.23539,0.008672,0.440288,0.005152,0.004864,0.006368,0.014336,0.014336,0.731136,0.01024
+894,601.468,1.6626,1.86586,0.008832,0.2368,0.004864,0.004096,0.007872,0.012608,0.015392,1.56362,0.011776
+895,426.756,2.34326,1.02013,0.008416,0.231296,0.004224,0.005568,0.008384,0.012672,0.014336,0.726208,0.009024
+896,716.334,1.396,1.04694,0.008032,0.229344,0.004704,0.004096,0.008,0.013536,0.01328,0.757152,0.0088
+897,644.126,1.55249,1.46637,0.009568,0.291488,0.005376,0.004864,0.007712,0.012768,0.014336,1.11002,0.01024
+898,488.9,2.04541,1.8537,0.008736,0.266272,0.0056,0.004608,0.007328,0.013184,0.014304,1.52093,0.012736
+899,454.253,2.20142,1.03168,0.008224,0.23184,0.00576,0.00448,0.008192,0.014144,0.014528,0.734912,0.0096
+900,657.992,1.51978,1.01738,0.009696,0.22992,0.00528,0.004832,0.006272,0.01424,0.014464,0.722912,0.00976
+901,741.357,1.34888,1.204,0.008192,0.404896,0.004704,0.005376,0.006912,0.014368,0.014304,0.735232,0.010016
+902,634.154,1.5769,1.8656,0.00944,0.234272,0.005696,0.004544,0.007328,0.013184,0.01424,1.56477,0.012128
+903,438.638,2.27979,1.05546,0.008032,0.250656,0.005216,0.004864,0.006304,0.013824,0.014304,0.743296,0.00896
+904,668.844,1.49512,1.02173,0.008192,0.231424,0.00512,0.004864,0.007808,0.012928,0.014336,0.72704,0.010016
+905,679.045,1.47266,1.19734,0.008416,0.40528,0.00528,0.004864,0.006304,0.014272,0.014336,0.728768,0.009824
+906,652.333,1.53296,1.8769,0.008704,0.233888,0.005536,0.004704,0.008,0.01248,0.014336,1.5785,0.010752
+907,403.626,2.47754,1.02259,0.00848,0.2376,0.004416,0.005408,0.00688,0.013536,0.01472,0.721344,0.010208
+908,751.836,1.33008,1.02352,0.00944,0.229952,0.00432,0.005504,0.006784,0.014176,0.014496,0.729088,0.00976
+909,679.721,1.47119,1.40186,0.009216,0.242464,0.00432,0.005536,0.006528,0.012512,0.014368,1.09565,0.011264
+910,544.681,1.83594,1.85261,0.008192,0.231424,0.005632,0.004608,0.00736,0.01312,0.014336,1.55645,0.011488
+911,435.42,2.29663,1.01555,0.007872,0.22896,0.004928,0.00544,0.00688,0.013728,0.01488,0.723008,0.009856
+912,685.867,1.45801,1.04586,0.008192,0.255776,0.00432,0.005472,0.006816,0.013728,0.014496,0.727232,0.009824
+913,697.429,1.43384,1.24288,0.008352,0.445792,0.004608,0.005216,0.007104,0.014016,0.014624,0.733184,0.009984
+914,602.353,1.66016,1.79194,0.008192,0.228448,0.004928,0.004192,0.007712,0.012768,0.014336,1.49821,0.013152
+915,459.863,2.17456,1.04038,0.0096,0.231392,0.004768,0.004096,0.008192,0.01408,0.014496,0.74464,0.00912
+916,449.024,2.22705,1.06336,0.008576,0.254016,0.005376,0.004864,0.007232,0.013248,0.014336,0.745472,0.01024
+917,1143.81,0.874268,1.40224,0.00928,0.238528,0.006144,0.004096,0.007744,0.012736,0.015424,1.09811,0.010176
+918,532.848,1.87671,1.85901,0.008192,0.231456,0.005792,0.004416,0.007488,0.012992,0.014368,1.56259,0.011712
+919,453.7,2.2041,1.044,0.00944,0.231936,0.004384,0.005376,0.008384,0.012864,0.014368,0.747456,0.009792
+920,705.234,1.41797,1.01389,0.00832,0.227328,0.005344,0.004864,0.006304,0.014016,0.01424,0.724544,0.008928
+921,708.038,1.41235,1.24717,0.008192,0.442112,0.004384,0.005472,0.006784,0.01424,0.014432,0.741376,0.010176
+922,593.881,1.68384,1.78,0.008288,0.229024,0.004608,0.004096,0.008192,0.013504,0.014592,1.48333,0.014368
+923,457.245,2.18701,1.03424,0.009568,0.233344,0.004896,0.004096,0.00784,0.012736,0.01424,0.73728,0.01024
+924,638.305,1.56665,1.06483,0.008352,0.249696,0.005696,0.004544,0.00736,0.013152,0.014304,0.751616,0.010112
+925,716.334,1.396,1.40288,0.008192,0.2328,0.004768,0.004096,0.007968,0.0136,0.01472,1.1065,0.01024
+926,557.052,1.79517,1.89046,0.008352,0.233152,0.004416,0.005376,0.006912,0.012288,0.014336,1.59469,0.010944
+927,437.934,2.28345,1.03427,0.00848,0.23184,0.005792,0.004448,0.00816,0.013504,0.014592,0.737696,0.00976
+928,684.95,1.45996,1.03421,0.008416,0.230848,0.004672,0.005152,0.007136,0.013952,0.014048,0.74,0.009984
+929,652.333,1.53296,1.42806,0.00832,0.253984,0.004544,0.004096,0.007968,0.012512,0.015712,1.11069,0.01024
+930,540.869,1.84888,1.7999,0.008256,0.232768,0.0048,0.004096,0.007936,0.012544,0.014368,1.50115,0.013984
+931,455.82,2.19385,1.02454,0.008736,0.23488,0.004736,0.004096,0.008032,0.012448,0.015616,0.72704,0.00896
+932,700.291,1.42798,1.03014,0.008608,0.233408,0.004672,0.005152,0.006752,0.012672,0.014336,0.734816,0.009728
+933,665.151,1.50342,1.4089,0.008192,0.235136,0.00416,0.004416,0.00816,0.013728,0.014432,1.11043,0.01024
+934,472.107,2.11816,1.81568,0.009568,0.276896,0.004352,0.00544,0.006848,0.013568,0.014208,1.46931,0.015488
+935,527.563,1.89551,1.07802,0.007136,0.257888,0.004256,0.005536,0.007904,0.013216,0.014304,0.75776,0.010016
+936,633.467,1.57861,1.02554,0.008192,0.233088,0.00448,0.005312,0.006976,0.014304,0.0144,0.729056,0.009728
+937,736.558,1.35767,1.21408,0.008224,0.419104,0.0048,0.004096,0.008224,0.013888,0.01456,0.731328,0.009856
+938,615.385,1.625,1.76794,0.008672,0.234944,0.004704,0.004096,0.008,0.01248,0.01536,1.46534,0.014336
+939,461.729,2.16577,1.02605,0.008192,0.235552,0.005152,0.004864,0.008,0.012672,0.014496,0.72688,0.01024
+940,685.294,1.45923,1.04042,0.008192,0.232864,0.004704,0.004096,0.008192,0.014016,0.014432,0.745152,0.008768
+941,697.429,1.43384,1.40934,0.007136,0.230624,0.004864,0.004096,0.00816,0.01232,0.014336,1.11616,0.011648
+942,525.802,1.90186,1.78806,0.008352,0.23552,0.005856,0.004384,0.007936,0.013568,0.014432,1.48362,0.0144
+943,392.412,2.54834,1.09312,0.008192,0.290464,0.004448,0.005312,0.006976,0.01376,0.014496,0.739744,0.009728
+944,889.468,1.12427,1.02992,0.008192,0.231424,0.005248,0.004896,0.00624,0.014336,0.014368,0.7352,0.010016
+945,619.012,1.61548,1.3985,0.00816,0.229888,0.005536,0.004704,0.006144,0.014144,0.014368,1.10525,0.010304
+946,594.657,1.68164,1.33939,0.009504,0.238304,0.005184,0.004832,0.00784,0.012736,0.014336,1.00774,0.038912
+947,507.811,1.96924,1.0272,0.008192,0.233408,0.00416,0.0056,0.006688,0.01408,0.014528,0.730752,0.009792
+948,673.463,1.48486,1.04378,0.009504,0.23344,0.0048,0.004096,0.008192,0.01424,0.014432,0.745472,0.0096
+949,683.692,1.46265,1.4176,0.00832,0.23168,0.005856,0.004384,0.007648,0.012928,0.014272,1.12026,0.012256
+950,544.247,1.8374,1.3616,0.009632,0.245824,0.00464,0.00592,0.006368,0.013632,0.01424,1.04938,0.011968
+951,487.387,2.05176,1.06342,0.008768,0.26032,0.00416,0.0056,0.006688,0.0136,0.014528,0.739872,0.009888
+952,677.473,1.47607,1.04128,0.008896,0.23776,0.005248,0.004864,0.006336,0.01392,0.01424,0.741088,0.008928
+953,687.364,1.45483,1.4296,0.008288,0.253088,0.004896,0.00416,0.008192,0.01344,0.014656,1.11062,0.012256
+954,525.6,1.90259,1.34675,0.008192,0.24128,0.00448,0.005312,0.006976,0.013632,0.014272,1.0017,0.050912
+955,487.619,2.05078,1.04448,0.008192,0.236704,0.004928,0.004128,0.008192,0.013984,0.014592,0.74352,0.01024
+956,732.475,1.36523,1.02598,0.008576,0.235488,0.004096,0.005728,0.00656,0.013952,0.014496,0.727264,0.009824
+957,694.944,1.43896,1.2575,0.008416,0.244,0.004544,0.005248,0.00704,0.01392,0.0144,0.948576,0.01136
+958,548.694,1.82251,1.05677,0.008192,0.24912,0.004768,0.00416,0.007904,0.0136,0.013312,0.745504,0.010208
+959,426.223,2.34619,1.06442,0.011808,0.247552,0.004832,0.004096,0.007936,0.012544,0.015552,0.750272,0.009824
+960,730.385,1.36914,1.03779,0.00832,0.239488,0.004224,0.0056,0.006688,0.014304,0.014368,0.73504,0.00976
+961,671.586,1.48901,1.25747,0.008192,0.239264,0.004448,0.005312,0.006976,0.01344,0.014592,0.954656,0.010592
+962,580.663,1.72217,1.03197,0.00784,0.242592,0.005504,0.004736,0.007232,0.013248,0.015552,0.725696,0.009568
+963,599.268,1.6687,1.65709,0.008608,0.457888,0.0152,0.005888,0.007648,0.013088,0.015552,1.12301,0.010208
+964,537.674,1.85986,1.04912,0.008704,0.241632,0.004224,0.005568,0.00672,0.014016,0.01392,0.74416,0.010176
+965,698.857,1.43091,1.01811,0.009248,0.230368,0.00512,0.004864,0.0064,0.01392,0.014752,0.724512,0.008928
+966,613.174,1.63086,1.03174,0.009568,0.24176,0.004672,0.004096,0.008192,0.014272,0.0144,0.724992,0.009792
+967,654.209,1.52856,1.65478,0.00832,0.448384,0.032768,0.005664,0.006624,0.014336,0.014336,1.11411,0.01024
+968,494.03,2.02417,1.03024,0.008544,0.2336,0.005824,0.004416,0.008192,0.013472,0.014496,0.73184,0.009856
+969,705.113,1.41821,1.04541,0.008864,0.229632,0.005344,0.004832,0.00624,0.01424,0.014432,0.75264,0.009184
+970,600.059,1.6665,1.04448,0.009408,0.242496,0.004096,0.005664,0.006624,0.014336,0.014336,0.73728,0.01024
+971,381.378,2.62207,1.8089,0.008128,0.258432,0.004288,0.00528,0.007008,0.013504,0.014304,1.48387,0.01408
+972,931.756,1.07324,1.03408,0.008192,0.236896,0.004608,0.004096,0.007392,0.013248,0.014368,0.735392,0.009888
+973,734.05,1.3623,1.03219,0.007616,0.231552,0.004544,0.004096,0.007904,0.012576,0.014528,0.739136,0.01024
+974,697.31,1.43408,1.01789,0.008192,0.225024,0.004192,0.00416,0.00624,0.01344,0.014464,0.731936,0.01024
+975,693.297,1.44238,1.03405,0.007648,0.231232,0.004832,0.004096,0.007232,0.013248,0.014368,0.741344,0.010048
+976,684.95,1.45996,1.25731,0.007872,0.24624,0.004192,0.00432,0.006208,0.013824,0.0128,0.950272,0.011584
+977,636.222,1.57178,1.02979,0.008384,0.235968,0.00576,0.00448,0.007456,0.013024,0.014336,0.730688,0.009696
+978,688.403,1.45264,1.02774,0.00832,0.227296,0.005184,0.004864,0.006368,0.014304,0.014336,0.73728,0.009792
+979,663.535,1.50708,1.01645,0.008864,0.231456,0.005152,0.004832,0.0064,0.014016,0.014368,0.721184,0.010176
+980,703.055,1.42236,1.77357,0.008384,0.235328,0.005216,0.004864,0.007808,0.013888,0.01472,1.47034,0.013024
+981,352.556,2.83643,1.06157,0.008,0.267136,0.005536,0.004704,0.00752,0.01296,0.014336,0.731136,0.01024
+982,725.469,1.37842,1.25747,0.00832,0.241536,0.004096,0.005792,0.006496,0.013856,0.014496,0.952256,0.010624
+983,568.652,1.75854,1.0591,0.00848,0.262144,0.005408,0.004832,0.0072,0.013056,0.014208,0.734656,0.00912
+984,614.369,1.62769,1.67786,0.008096,0.453376,0.03072,0.0056,0.006688,0.014272,0.014432,1.13456,0.010112
+985,525.061,1.90454,1.05043,0.008832,0.236992,0.004864,0.004096,0.007904,0.012576,0.01536,0.749888,0.00992
+986,654.731,1.52734,1.02605,0.008192,0.239616,0.005504,0.004736,0.007232,0.01328,0.014304,0.724064,0.00912
+987,634.35,1.57642,1.04048,0.008288,0.237568,0.005824,0.004416,0.007552,0.012928,0.014336,0.739328,0.01024
+988,646.669,1.54639,1.70058,0.008896,0.4424,0.007456,0.004704,0.018432,0.04112,0.014304,1.15302,0.01024
+989,483.818,2.06689,1.02851,0.008608,0.235424,0.004192,0.005568,0.00672,0.014272,0.014272,0.729376,0.01008
+990,420.103,2.38037,1.16445,0.018272,0.35024,0.004224,0.006112,0.006304,0.014208,0.022272,0.732928,0.009888
+991,1102.56,0.906982,1.0519,0.008192,0.239616,0.00576,0.00448,0.00752,0.014688,0.01408,0.747712,0.009856
+992,687.71,1.4541,1.32509,0.008224,0.233472,0.00576,0.00448,0.007296,0.013184,0.014336,1.01718,0.021152
+993,502.7,1.98926,1.04854,0.008192,0.251936,0.005248,0.004864,0.007424,0.012992,0.014368,0.733312,0.010208
+994,642.51,1.5564,1.0711,0.0096,0.282368,0.004928,0.00416,0.00784,0.013984,0.014208,0.723776,0.01024
+995,677.361,1.47632,1.2001,0.008192,0.405984,0.005536,0.004704,0.007264,0.013216,0.014336,0.731072,0.009792
+996,623.63,1.60352,1.04637,0.008224,0.247744,0.004128,0.006144,0.007328,0.013152,0.014336,0.735232,0.01008
+997,658.521,1.51855,1.6815,0.008288,0.45056,0.034848,0.005888,0.007808,0.014016,0.013216,1.13664,0.01024
+998,470.696,2.12451,1.0447,0.008416,0.237344,0.00432,0.005408,0.00688,0.013792,0.014688,0.743616,0.01024
+999,389.206,2.56934,1.42915,0.008512,0.241632,0.005728,0.004512,0.008224,0.013856,0.014272,1.12218,0.01024
+1000,1037.49,0.963867,1.05267,0.00928,0.250816,0.005472,0.004768,0.007488,0.012992,0.014336,0.73728,0.01024
+1001,398.948,2.50659,1.09046,0.0112,0.290816,0.005536,0.004672,0.0072,0.01312,0.014496,0.733216,0.010208
+1002,715.709,1.39722,1.05859,0.007936,0.24,0.005824,0.004416,0.007584,0.021088,0.030304,0.731584,0.009856
+1003,584.391,1.71118,1.06243,0.009504,0.25264,0.005536,0.004704,0.007328,0.013152,0.02048,0.739168,0.00992
+1004,696.836,1.43506,1.87805,0.009408,0.234304,0.005664,0.004576,0.007424,0.013056,0.014336,1.57805,0.011232
+1005,446.139,2.24146,1.03219,0.008192,0.23472,0.004896,0.004096,0.007936,0.012544,0.014336,0.735232,0.01024
+1006,637.311,1.56909,1.07712,0.008192,0.264192,0.004096,0.005728,0.00656,0.016448,0.030656,0.731136,0.010112
+1007,661.285,1.51221,1.04717,0.008928,0.24112,0.004736,0.004096,0.008032,0.012512,0.015328,0.742368,0.010048
+1008,450.952,2.21753,1.94189,0.008576,0.289344,0.0056,0.004608,0.00736,0.013152,0.014336,1.58717,0.011744
+1009,576.333,1.73511,1.07629,0.009248,0.27104,0.004384,0.005376,0.006912,0.01392,0.014464,0.74112,0.009824
+1010,635.039,1.57471,1.05638,0.008288,0.256,0.00544,0.0048,0.006144,0.014368,0.014336,0.737248,0.00976
+1011,629.089,1.5896,1.07146,0.008512,0.272384,0.00528,0.004832,0.006304,0.013888,0.01424,0.737056,0.00896
+1012,701.73,1.42505,1.03974,0.008192,0.249728,0.004224,0.0056,0.006688,0.014336,0.014336,0.72688,0.00976
+1013,652.229,1.5332,1.67574,0.008992,0.44976,0.035456,0.012448,0.008032,0.013824,0.014208,1.1231,0.00992
+1014,469.187,2.13135,1.05632,0.008192,0.251904,0.005504,0.004736,0.00736,0.01312,0.015424,0.740288,0.009792
+1015,708.896,1.41064,1.19856,0.008672,0.4048,0.0048,0.004096,0.007968,0.013984,0.014656,0.730592,0.008992
+1016,604.754,1.65356,1.90413,0.008224,0.242688,0.004928,0.004256,0.007712,0.012768,0.014336,1.59747,0.011744
+1017,411.328,2.43115,1.05462,0.008736,0.251936,0.005856,0.004384,0.007552,0.012928,0.014336,0.739072,0.009824
+1018,692.945,1.44312,1.03619,0.0096,0.23616,0.005536,0.004704,0.007296,0.013184,0.014368,0.735232,0.010112
+1019,671.145,1.48999,1.21373,0.008192,0.405504,0.005696,0.005568,0.007072,0.01424,0.014528,0.743072,0.009856
+1020,321.381,3.11157,1.06086,0.012192,0.256096,0.005312,0.004864,0.006304,0.014208,0.014368,0.738592,0.008928
+1021,696.007,1.43677,1.03834,0.00944,0.232224,0.004096,0.005792,0.006496,0.013856,0.014624,0.741568,0.01024
+1022,695.416,1.43799,1.24518,0.008192,0.228416,0.004896,0.004256,0.008,0.013888,0.014336,0.950912,0.012288
+1023,575.604,1.7373,1.04038,0.008192,0.232544,0.004928,0.004192,0.007936,0.012544,0.014464,0.746752,0.008832
+1024,504.558,1.98193,1.23085,0.011872,0.4384,0.005568,0.004896,0.006304,0.01424,0.014336,0.726368,0.008864
+1025,609.524,1.64062,1.03184,0.008704,0.23552,0.005664,0.004576,0.007424,0.012992,0.0144,0.732544,0.010016
+1026,656.2,1.52393,1.30048,0.008192,0.241664,0.005792,0.004448,0.00752,0.01296,0.014336,0.994784,0.010784
+1027,590.372,1.69385,1.03885,0.008736,0.243616,0.00464,0.005184,0.007104,0.013376,0.013344,0.733088,0.00976
+1028,699.215,1.43018,1.83091,0.008128,0.243776,0.004096,0.005696,0.006592,0.013856,0.014464,1.52198,0.01232
+1029,441.379,2.26562,1.03488,0.008256,0.23616,0.005408,0.004832,0.007264,0.013216,0.014336,0.735232,0.010176
+1030,700.89,1.42676,1.02579,0.008608,0.233568,0.00416,0.0056,0.00672,0.013696,0.01472,0.72864,0.01008
+1031,613.909,1.62891,1.02982,0.008192,0.231328,0.004192,0.0056,0.00672,0.013408,0.014656,0.735808,0.00992
+1032,655.57,1.52539,1.69696,0.008352,0.449952,0.037312,0.00544,0.00688,0.01408,0.014304,1.15085,0.009792
+1033,472.107,2.11816,1.05472,0.008192,0.256,0.004096,0.005696,0.006592,0.01344,0.014848,0.735648,0.010208
+1034,691.075,1.44702,1.02771,0.007904,0.234304,0.004096,0.005824,0.006464,0.014144,0.014272,0.730944,0.00976
+1035,537.321,1.86108,1.06496,0.0096,0.272896,0.004224,0.005568,0.00672,0.013728,0.014976,0.727008,0.01024
+1036,814.962,1.22705,1.81997,0.008192,0.262144,0.005504,0.004736,0.007296,0.013184,0.014336,1.49094,0.013632
+1037,454.757,2.19897,1.02419,0.008064,0.233632,0.005728,0.004512,0.007616,0.012864,0.014336,0.728544,0.008896
+1038,704.749,1.41895,1.03584,0.009408,0.234336,0.005408,0.0048,0.007264,0.01312,0.014432,0.737152,0.00992
+1039,679.834,1.47095,1.19821,0.008896,0.404928,0.004896,0.004096,0.007936,0.01376,0.01504,0.728928,0.009728
+1040,592.85,1.68677,1.81178,0.009248,0.2424,0.004352,0.00544,0.006848,0.013728,0.014336,1.50179,0.013632
+1041,451.898,2.21289,1.04448,0.008192,0.235488,0.004128,0.005664,0.00784,0.01312,0.014336,0.745472,0.01024
+1042,696.125,1.43652,1.03472,0.008576,0.237344,0.004416,0.005504,0.006784,0.013632,0.014432,0.733792,0.01024
+1043,628.414,1.59131,1.23085,0.008256,0.420608,0.005728,0.00464,0.00736,0.01312,0.014336,0.74704,0.00976
+1044,383.485,2.60767,1.10579,0.008576,0.310304,0.004896,0.004288,0.007744,0.012736,0.01456,0.73296,0.009728
+1045,645.446,1.54932,1.04634,0.012128,0.247264,0.0048,0.004096,0.008064,0.012416,0.014336,0.733184,0.010048
+1046,688.635,1.45215,1.05062,0.008192,0.239616,0.004096,0.005824,0.006464,0.014336,0.014336,0.748736,0.009024
+1047,692.477,1.44409,1.22544,0.00896,0.405472,0.006144,0.005472,0.006848,0.014272,0.014272,0.75376,0.01024
+1048,598.044,1.67212,1.88621,0.008192,0.239616,0.005472,0.004768,0.007392,0.013088,0.014464,1.58224,0.010976
+1049,436.302,2.29199,1.04448,0.008192,0.245792,0.005248,0.004864,0.006304,0.014272,0.014368,0.7352,0.01024
+1050,686.442,1.45679,1.04035,0.008256,0.235552,0.005088,0.004896,0.006368,0.014336,0.014368,0.741344,0.010144
+1051,693.063,1.44287,1.2111,0.009024,0.407072,0.004576,0.005312,0.007008,0.014016,0.014368,0.739584,0.010144
+1052,594.398,1.68237,1.83603,0.008704,0.241696,0.004576,0.005216,0.00704,0.01344,0.014592,1.52797,0.0128
+1053,419.414,2.38428,1.05974,0.007168,0.254944,0.004928,0.004192,0.007712,0.012768,0.014432,0.744672,0.008928
+1054,681.758,1.4668,1.04477,0.008416,0.23536,0.004704,0.004096,0.008192,0.013376,0.014336,0.746432,0.009856
+1055,703.297,1.42188,1.20013,0.008416,0.40528,0.006144,0.004096,0.008192,0.014048,0.014144,0.729568,0.01024
+1056,584.558,1.71069,1.41706,0.008192,0.267744,0.00464,0.005152,0.007072,0.013536,0.014496,1.0841,0.012128
+1057,493.494,2.02637,1.06294,0.00928,0.260128,0.004928,0.004192,0.007712,0.012768,0.014336,0.740416,0.009184
+1058,696.007,1.43677,1.03219,0.009312,0.231424,0.005024,0.004096,0.008224,0.014304,0.014336,0.735232,0.01024
+1059,656.2,1.52393,1.40378,0.008768,0.233344,0.004544,0.005184,0.006944,0.01248,0.01424,1.10803,0.01024
+1060,561.943,1.77954,1.37626,0.008192,0.240704,0.004928,0.004224,0.007776,0.013888,0.014336,1.07104,0.011168
+1061,495.045,2.02002,1.04794,0.007904,0.237952,0.005824,0.004416,0.007616,0.012864,0.014336,0.747264,0.00976
+1062,457.654,2.18506,1.08518,0.00864,0.264224,0.005472,0.004768,0.007264,0.013216,0.01552,0.756192,0.009888
+1063,1011.11,0.989014,1.45654,0.008256,0.270816,0.004192,0.0056,0.00784,0.013184,0.014336,1.1223,0.010016
+1064,570.633,1.75244,1.34774,0.008352,0.258048,0.00544,0.0048,0.007392,0.01312,0.014304,1.00352,0.032768
+1065,501.285,1.99487,1.05267,0.009312,0.236448,0.005504,0.004736,0.006144,0.014368,0.014336,0.751584,0.01024
+1066,714.585,1.39941,1.04176,0.008192,0.233472,0.005536,0.004704,0.007232,0.013248,0.014336,0.74528,0.00976
+1067,654.522,1.52783,1.43338,0.008608,0.24512,0.004736,0.004096,0.008096,0.013632,0.014272,1.12317,0.011648
+1068,544.826,1.83545,1.04832,0.008192,0.245696,0.00416,0.005632,0.006656,0.014016,0.014528,0.739456,0.009984
+1069,448.533,2.22949,1.06186,0.0112,0.257376,0.004768,0.004096,0.008032,0.012448,0.014336,0.74048,0.00912
+1070,693.18,1.44263,1.04086,0.008704,0.235488,0.004096,0.00576,0.006528,0.01408,0.014624,0.74288,0.008704
+1071,700.53,1.42749,1.44221,0.008064,0.246528,0.00416,0.005792,0.006464,0.013856,0.01456,1.13066,0.012128
+1072,511.106,1.95654,1.34922,0.007936,0.243968,0.005312,0.004928,0.007712,0.014656,0.014336,1.01139,0.038976
+1073,496.726,2.01318,1.0495,0.008736,0.239104,0.00496,0.004096,0.007808,0.012672,0.014336,0.748896,0.008896
+1074,701.971,1.42456,1.04941,0.00896,0.238976,0.0048,0.004096,0.008224,0.0136,0.01456,0.747136,0.009056
+1075,687.364,1.45483,1.42749,0.008928,0.235232,0.00464,0.005184,0.007104,0.012288,0.015776,1.12627,0.012064
+1076,537.462,1.8606,1.05699,0.008416,0.249184,0.004768,0.004096,0.008096,0.01344,0.0144,0.745504,0.009088
+1077,586.988,1.70361,1.27101,0.038944,0.421856,0.005792,0.005536,0.007072,0.013632,0.014656,0.75392,0.0096
+1078,616.96,1.62085,1.03446,0.008416,0.23264,0.004896,0.004128,0.008224,0.013824,0.014464,0.739168,0.008704
+1079,648.204,1.54272,1.29638,0.008352,0.23056,0.004768,0.004288,0.007808,0.012672,0.014336,1.00147,0.012128
+1080,610.159,1.63892,1.04054,0.008288,0.237472,0.004096,0.005856,0.006432,0.014368,0.014304,0.7408,0.008928
+1081,528.38,1.89258,1.67731,0.00976,0.452256,0.027456,0.005728,0.00656,0.014336,0.014368,1.13664,0.010208
+1082,550.168,1.81763,1.0672,0.008544,0.256416,0.004192,0.0056,0.006688,0.013696,0.014464,0.747872,0.009728
+1083,619.855,1.61328,1.06566,0.008352,0.26032,0.004576,0.005216,0.007072,0.013568,0.014496,0.741984,0.01008
+1084,677.473,1.47607,1.06573,0.008192,0.262016,0.004928,0.005408,0.006944,0.014336,0.014336,0.741152,0.008416
+1085,648.306,1.54248,1.93114,0.008384,0.264832,0.005696,0.004544,0.007456,0.013024,0.014336,1.60154,0.011328
+1086,409.395,2.44263,1.06496,0.008096,0.256224,0.004128,0.005632,0.006656,0.013888,0.014336,0.74592,0.01008
+1087,719.101,1.39062,1.27757,0.009888,0.252256,0.005632,0.004608,0.007392,0.01312,0.014304,0.958464,0.011904
+1088,566.137,1.76636,1.07453,0.009568,0.264896,0.005248,0.004864,0.006336,0.01424,0.014336,0.745472,0.009568
+1089,579.431,1.72583,1.7105,0.008608,0.45056,0.032096,0.012992,0.00768,0.012864,0.014336,1.16112,0.01024
+1090,507.37,1.97095,1.0655,0.008672,0.251936,0.005184,0.004896,0.006304,0.014336,0.014336,0.751104,0.008736
+1091,690.376,1.44849,1.31686,0.008224,0.241344,0.004384,0.005536,0.006752,0.014048,0.014656,1.01101,0.010912
+1092,569.205,1.75684,1.04454,0.00848,0.24368,0.005888,0.004352,0.007584,0.012896,0.014336,0.73728,0.010048
+1093,628.317,1.59155,1.8985,0.008224,0.26176,0.004448,0.005408,0.00688,0.013312,0.01456,1.57363,0.010272
+1094,443.482,2.25488,1.04166,0.008192,0.238624,0.004928,0.004256,0.007808,0.012672,0.015392,0.740192,0.0096
+1095,690.609,1.448,1.25024,0.008448,0.23824,0.004128,0.005664,0.006624,0.01344,0.014272,0.949184,0.01024
+1096,589.692,1.6958,1.07318,0.009632,0.262752,0.0056,0.00464,0.007488,0.012992,0.014368,0.746976,0.008736
+1097,676.131,1.479,1.74784,0.008256,0.505696,0.009184,0.024576,0.022528,0.014368,0.014304,1.13872,0.010208
+1098,466.727,2.14258,1.0487,0.00832,0.23296,0.004608,0.005184,0.00704,0.013408,0.013504,0.75344,0.01024
+1099,603.329,1.65747,1.34374,0.008288,0.28048,0.004544,0.005216,0.007072,0.013664,0.014592,0.999008,0.01088
+1100,583.559,1.71362,1.0472,0.010368,0.241856,0.004448,0.005312,0.006976,0.013664,0.014368,0.74,0.010208
+1101,441.855,2.26318,1.0752,0.01168,0.266272,0.004672,0.004096,0.008192,0.01392,0.014464,0.741664,0.01024
+1102,709.51,1.40942,1.0545,0.008192,0.247424,0.00448,0.005888,0.0064,0.014144,0.014528,0.743424,0.010016
+1103,696.125,1.43652,1.30048,0.009504,0.233824,0.00448,0.005312,0.006976,0.013312,0.013312,1.00259,0.011168
+1104,551.501,1.81323,1.06349,0.00848,0.24208,0.005824,0.004416,0.007616,0.012864,0.014336,0.75776,0.010112
+1105,685.638,1.4585,1.75005,0.008224,0.501728,0.007232,0.005056,0.007744,0.014144,0.035456,1.16054,0.00992
+1106,471.998,2.11865,1.0425,0.008256,0.235552,0.005536,0.004672,0.008,0.01248,0.014336,0.7448,0.008864
+1107,665.692,1.5022,1.04064,0.008448,0.233536,0.004096,0.00576,0.006528,0.014048,0.014528,0.74352,0.010176
+1108,563.334,1.77515,1.16522,0.008288,0.344992,0.004896,0.00432,0.00768,0.0128,0.014336,0.75776,0.010144
+1109,602.707,1.65918,1.95226,0.008704,0.280608,0.005376,0.004864,0.006304,0.014208,0.015584,1.60454,0.012064
+1110,432.341,2.31299,1.07958,0.00848,0.274432,0.005952,0.004288,0.007744,0.012736,0.014336,0.741376,0.01024
+1111,705.963,1.4165,1.44042,0.0088,0.243456,0.004416,0.005344,0.006944,0.012288,0.014368,1.13251,0.012288
+1112,510.087,1.96045,1.0649,0.026624,0.241056,0.004704,0.004096,0.008064,0.012544,0.015296,0.742336,0.010176
+1113,566.45,1.76538,1.25792,0.034848,0.424416,0.005568,0.00496,0.00768,0.0128,0.015584,0.742176,0.009888
+1114,653.165,1.53101,1.05101,0.008672,0.239264,0.004896,0.004096,0.007968,0.013664,0.014336,0.748416,0.009696
+1115,691.425,1.44629,1.06467,0.008608,0.237568,0.004096,0.005792,0.006528,0.013792,0.014592,0.763872,0.009824
+1116,571.508,1.74976,1.0896,0.008256,0.27184,0.00464,0.00512,0.007136,0.012448,0.014208,0.756736,0.009216
+1117,544.03,1.83813,1.79814,0.01024,0.543904,0.007008,0.005696,0.006592,0.030656,0.038976,1.14483,0.01024
+1118,472.434,2.1167,1.07139,0.00848,0.260128,0.005824,0.004384,0.007584,0.012928,0.014336,0.748608,0.00912
+1119,695.416,1.43799,1.32899,0.009632,0.255808,0.004896,0.004096,0.008,0.01408,0.014336,1.00602,0.012128
+1120,569.839,1.75488,1.06461,0.008192,0.251904,0.004096,0.005856,0.006432,0.014368,0.014304,0.749568,0.009888
+1121,557.431,1.79395,1.29616,0.052416,0.430592,0.005568,0.004992,0.007616,0.012864,0.015584,0.75648,0.010048
+1122,605.828,1.65063,1.06061,0.009792,0.239712,0.004448,0.005344,0.006944,0.013568,0.014976,0.75584,0.009984
+1123,657.253,1.52148,1.06,0.008192,0.236704,0.004928,0.004128,0.007904,0.013792,0.014752,0.759872,0.009728
+1124,622.492,1.60645,1.05875,0.009696,0.245824,0.004576,0.005216,0.007072,0.013472,0.014592,0.748128,0.010176
+1125,675.908,1.47949,1.3816,0.008192,0.247808,0.005504,0.004736,0.007264,0.013216,0.014336,1.06906,0.011488
+1126,447.308,2.2356,1.08746,0.008768,0.274656,0.0056,0.004608,0.007328,0.013152,0.014336,0.749408,0.0096
+1127,711.235,1.40601,1.10592,0.00976,0.274912,0.00528,0.004832,0.006304,0.014304,0.014272,0.76736,0.008896
+1128,583.476,1.71387,1.10819,0.008384,0.292864,0.00528,0.004896,0.006272,0.014208,0.014432,0.75296,0.008896
+1129,611.8,1.63452,1.45126,0.008192,0.278528,0.005568,0.004672,0.018432,0.014272,0.020192,1.07965,0.02176
+1130,469.779,2.12866,1.10835,0.008832,0.286336,0.004864,0.004096,0.008192,0.013504,0.014592,0.758336,0.0096
+1131,693.18,1.44263,1.06259,0.00928,0.25696,0.005888,0.004352,0.007776,0.012704,0.015392,0.74032,0.00992
+1132,599.883,1.66699,1.05654,0.008192,0.243712,0.005664,0.004576,0.007456,0.014272,0.014464,0.748192,0.010016
+1133,674.017,1.48364,1.8432,0.009504,0.254688,0.005632,0.004608,0.007392,0.013088,0.014336,1.52166,0.012288
+1134,407.968,2.45117,1.10576,0.008512,0.292864,0.005376,0.004864,0.006176,0.014304,0.014336,0.749536,0.009792
+1135,404.264,2.47363,1.08989,0.008512,0.261504,0.004736,0.004096,0.008192,0.01392,0.014784,0.763872,0.010272
+1136,1098.12,0.910645,1.07754,0.008512,0.251872,0.005632,0.004608,0.007616,0.012864,0.014336,0.76304,0.009056
+1137,620.418,1.61182,1.82656,0.008192,0.544256,0.006656,0.0056,0.006688,0.014336,0.071616,1.15923,0.009984
+1138,450.704,2.21875,1.0585,0.008544,0.246976,0.004928,0.004096,0.007936,0.013696,0.014528,0.748032,0.00976
+1139,697.31,1.43408,1.29866,0.008288,0.231392,0.004256,0.005504,0.006784,0.0136,0.014624,1.00192,0.012288
+1140,583.808,1.71289,1.04154,0.008192,0.23552,0.00528,0.004864,0.006272,0.014304,0.014336,0.7432,0.009568
+1141,560.328,1.78467,1.73232,0.008192,0.454656,0.006144,0.011648,0.047744,0.013984,0.014112,1.16589,0.009952
+1142,531.672,1.88086,1.03683,0.00864,0.235488,0.004224,0.005568,0.007968,0.013088,0.014336,0.738784,0.008736
+1143,633.467,1.57861,1.31482,0.008192,0.23872,0.004992,0.005312,0.006976,0.013664,0.014176,1.01219,0.010592
+1144,612.349,1.63306,1.05277,0.007904,0.23936,0.004736,0.004096,0.007968,0.013632,0.013216,0.751616,0.01024
+1145,471.944,2.1189,1.70189,0.009888,0.455008,0.026624,0.006144,0.007488,0.012992,0.015808,1.1577,0.01024
+1146,589.692,1.6958,1.0793,0.008192,0.264224,0.005152,0.004864,0.006336,0.014272,0.014304,0.751712,0.01024
+1147,646.567,1.54663,1.33997,0.008768,0.248896,0.004928,0.005568,0.006848,0.014048,0.014496,1.0256,0.010816
+1148,566.293,1.76587,1.06717,0.008096,0.262368,0.004096,0.005984,0.006304,0.014176,0.01424,0.7432,0.008704
+1149,658.627,1.51831,1.70541,0.008224,0.44432,0.026624,0.02864,0.00992,0.013856,0.014656,1.14918,0.009984
+1150,464.031,2.15503,1.06906,0.008384,0.247648,0.005504,0.004704,0.007296,0.013088,0.014432,0.759168,0.008832
+1151,636.222,1.57178,1.36285,0.008352,0.269024,0.005312,0.004864,0.006304,0.014208,0.014368,1.02963,0.010784
+1152,579.513,1.72559,1.07693,0.008288,0.243712,0.00512,0.004864,0.006432,0.014304,0.014336,0.770048,0.009824
+1153,640.4,1.56152,1.70179,0.009376,0.449024,0.039264,0.006144,0.007584,0.013952,0.014656,1.15165,0.010144
+1154,412.238,2.42578,1.08576,0.008512,0.2744,0.004128,0.005664,0.006624,0.014048,0.014368,0.747776,0.01024
+1155,708.528,1.41138,1.45818,0.008192,0.259136,0.004928,0.004224,0.00768,0.0128,0.014336,1.13459,0.012288
+1156,522.782,1.91284,1.10634,0.007968,0.268896,0.004096,0.005856,0.006432,0.014016,0.01408,0.776096,0.008896
+1157,594.14,1.68311,1.70781,0.008384,0.455872,0.04064,0.005056,0.007744,0.013952,0.0144,1.15174,0.010016
+1158,489.191,2.04419,1.06086,0.008192,0.249888,0.005536,0.004672,0.00736,0.01312,0.014368,0.748608,0.00912
+1159,590.883,1.69238,1.45613,0.008192,0.25808,0.00512,0.004832,0.0064,0.014144,0.014528,1.13459,0.01024
+1160,596.563,1.67627,1.91082,0.008224,0.239168,0.004544,0.005216,0.007072,0.012288,0.014336,1.6089,0.011072
+1161,416.981,2.39819,1.07318,0.008384,0.239424,0.00512,0.004864,0.0064,0.01408,0.014432,0.770208,0.010272
+1162,521.85,1.91626,1.08275,0.007904,0.268384,0.004608,0.005184,0.007072,0.01232,0.014336,0.753088,0.009856
+1163,864.135,1.15723,1.21856,0.008192,0.406976,0.004672,0.005184,0.007072,0.013696,0.014464,0.748064,0.01024
+1164,565.59,1.76807,1.92512,0.008224,0.255968,0.004096,0.005824,0.006464,0.013792,0.01488,1.60483,0.01104
+1165,440.335,2.271,1.05318,0.008384,0.234048,0.005536,0.004704,0.007232,0.01328,0.014304,0.755712,0.009984
+1166,666.45,1.50049,1.05997,0.007968,0.231648,0.00544,0.0048,0.0072,0.01328,0.014336,0.765632,0.009664
+1167,657.886,1.52002,1.24944,0.009664,0.404032,0.005408,0.004832,0.006144,0.014336,0.014336,0.78176,0.008928
+1168,523.517,1.91016,1.67904,0.00832,0.46784,0.007104,0.00416,0.008192,0.014336,0.014336,1.14467,0.01008
+1169,538.027,1.85864,1.05952,0.008864,0.23696,0.004768,0.004064,0.00928,0.013248,0.014336,0.75776,0.01024
+1170,640.1,1.56226,1.05917,0.008448,0.230816,0.0048,0.004096,0.008,0.012576,0.015488,0.764704,0.01024
+1171,588.76,1.69849,1.21917,0.008768,0.405344,0.004288,0.005536,0.00672,0.013984,0.0144,0.75136,0.008768
+1172,766.467,1.30469,1.84982,0.007904,0.239552,0.004896,0.004128,0.008224,0.013792,0.01456,1.54448,0.012288
+1173,444.107,2.25171,1.05882,0.008192,0.23552,0.005568,0.004672,0.007296,0.013184,0.013696,0.76208,0.008608
+1174,680.06,1.47046,1.07904,0.009888,0.235232,0.004736,0.005184,0.007072,0.01344,0.014304,0.7792,0.009984
+1175,666.125,1.50122,1.28582,0.009408,0.45344,0.006048,0.004192,0.007776,0.013888,0.01456,0.766592,0.00992
+1176,575.847,1.73657,1.81491,0.008448,0.237568,0.005536,0.004704,0.007264,0.013216,0.015392,1.50982,0.01296
+1177,451.101,2.2168,1.0551,0.008,0.237376,0.004864,0.004096,0.007872,0.012608,0.014336,0.756736,0.009216
+1178,690.376,1.44849,1.05066,0.008256,0.229344,0.004096,0.005856,0.006432,0.014208,0.014464,0.759104,0.008896
+1179,672.357,1.4873,1.4593,0.008352,0.25776,0.004224,0.006144,0.007584,0.012576,0.0144,1.13818,0.01008
+1180,427.245,2.34058,1.83405,0.008192,0.255328,0.004768,0.004096,0.008064,0.013504,0.013248,1.51312,0.013728
+1181,568.1,1.76025,1.06758,0.008576,0.231616,0.005312,0.004864,0.007232,0.013344,0.014304,0.77312,0.009216
+1182,654.313,1.52832,1.05427,0.008192,0.229376,0.004096,0.005696,0.006592,0.01376,0.014048,0.76272,0.009792
+1183,684.149,1.46167,1.2376,0.007328,0.409408,0.005632,0.004608,0.007328,0.013152,0.014336,0.765952,0.009856
+1184,616.403,1.62231,1.92307,0.008192,0.23888,0.004832,0.004096,0.007936,0.012608,0.014336,1.62118,0.011008
+1185,420.189,2.37988,1.0528,0.008,0.227648,0.005568,0.004672,0.007232,0.013248,0.014336,0.763232,0.008864
+1186,672.357,1.4873,1.0535,0.008512,0.225792,0.004096,0.005728,0.00656,0.013952,0.014304,0.765664,0.008896
+1187,694.355,1.44019,1.23712,0.008288,0.405504,0.004224,0.005632,0.006528,0.014336,0.014368,0.769088,0.009152
+1188,582.314,1.71729,1.84934,0.009376,0.26096,0.005248,0.004864,0.006336,0.014144,0.0144,1.52138,0.01264
+1189,413.32,2.41943,1.07738,0.00832,0.244992,0.004864,0.004096,0.007968,0.012512,0.015456,0.768928,0.01024
+1190,448.778,2.22827,1.06733,0.008512,0.239488,0.004224,0.005568,0.006752,0.014048,0.01456,0.76512,0.009056
+1191,1262.64,0.791992,1.23498,0.008704,0.405632,0.005504,0.004736,0.006144,0.014336,0.014336,0.76576,0.009824
+1192,610.159,1.63892,1.93869,0.008416,0.253056,0.004768,0.004096,0.008032,0.013536,0.015072,1.61994,0.011776
+1193,439.485,2.27539,1.06704,0.008256,0.227296,0.005568,0.004672,0.007904,0.012576,0.014336,0.776192,0.01024
+1194,657.675,1.52051,1.05718,0.008608,0.226592,0.004832,0.004096,0.007936,0.013664,0.014432,0.76784,0.009184
+1195,548.841,1.82202,1.23126,0.008896,0.405664,0.006016,0.004224,0.007712,0.014176,0.014432,0.760064,0.01008
+1196,757.536,1.32007,1.74573,0.008416,0.522848,0.00784,0.004448,0.00752,0.012992,0.01584,1.15562,0.010208
+1197,467.9,2.13721,1.06544,0.008128,0.227872,0.005696,0.004544,0.007968,0.012512,0.015424,0.774112,0.009184
+1198,610.887,1.63696,1.09418,0.008736,0.257344,0.0048,0.004096,0.007968,0.012512,0.014336,0.774144,0.01024
+1199,667.862,1.49731,1.23642,0.008192,0.405504,0.005312,0.004864,0.006208,0.014336,0.014336,0.768,0.009664
+1200,641.906,1.55786,1.83091,0.009312,0.2344,0.005376,0.004864,0.0072,0.013312,0.014304,1.52938,0.012768
+1201,428.004,2.33643,1.09366,0.008192,0.253632,0.004416,0.005216,0.007008,0.012384,0.015904,0.778016,0.008896
+1202,684.035,1.46191,1.0543,0.009504,0.228064,0.00592,0.00432,0.007616,0.012864,0.014336,0.761856,0.009824
+1203,695.77,1.43726,1.23091,0.008864,0.405824,0.005504,0.004736,0.007264,0.013216,0.014336,0.76144,0.009728
+1204,612.623,1.63232,1.80061,0.008608,0.233504,0.0056,0.004608,0.007296,0.013216,0.014336,1.50019,0.013248
+1205,446.431,2.23999,1.04829,0.008192,0.231424,0.00592,0.00432,0.007424,0.013088,0.014304,0.753664,0.009952
+1206,683.921,1.46216,1.07165,0.008704,0.236032,0.005536,0.004704,0.008032,0.012448,0.015776,0.770656,0.00976
+1207,523.584,1.90991,1.48624,0.008192,0.27648,0.005984,0.004256,0.007648,0.012832,0.01568,1.14502,0.010144
+1208,654.627,1.52759,1.87187,0.008352,0.271776,0.004544,0.005248,0.00704,0.01344,0.013184,1.536,0.012288
+1209,440.572,2.26978,1.06291,0.009536,0.238272,0.005344,0.004832,0.00624,0.014208,0.014432,0.761184,0.008864
+1210,693.884,1.44116,1.06339,0.008448,0.227808,0.005792,0.004448,0.007712,0.0128,0.015424,0.770976,0.009984
+1211,647.794,1.5437,1.23994,0.008896,0.413632,0.004352,0.005504,0.006784,0.014144,0.014496,0.763008,0.00912
+1212,614.738,1.62671,1.91354,0.008576,0.24608,0.004096,0.00576,0.006528,0.01392,0.01456,1.60173,0.012288
+1213,430.342,2.32373,1.0655,0.00848,0.237216,0.004704,0.004096,0.008192,0.014208,0.014464,0.763904,0.01024
+1214,664.288,1.50537,1.05459,0.008512,0.229376,0.005408,0.004832,0.006144,0.014272,0.0144,0.761856,0.009792
+1215,711.111,1.40625,1.25536,0.007104,0.406816,0.004832,0.004096,0.016384,0.014336,0.014336,0.777792,0.009664
+1216,521.319,1.91821,1.9415,0.009408,0.260928,0.005984,0.004256,0.00768,0.0128,0.014336,1.61533,0.010784
+1217,440.999,2.26758,1.05677,0.009536,0.233376,0.0048,0.004192,0.007712,0.012768,0.015648,0.758496,0.01024
+1218,700.051,1.42847,1.06477,0.008704,0.22736,0.005824,0.004416,0.007456,0.013024,0.014336,0.774048,0.0096
+1219,607.625,1.64575,1.06003,0.00832,0.229248,0.00592,0.00432,0.00816,0.013632,0.014624,0.766272,0.009536
+1220,666.992,1.49927,1.89203,0.008224,0.23344,0.005888,0.004352,0.007584,0.014176,0.014432,1.59194,0.012
+1221,435.374,2.29688,1.07104,0.008768,0.239552,0.00416,0.006048,0.006368,0.014208,0.014336,0.767936,0.009664
+1222,686.557,1.45654,1.05606,0.009312,0.226208,0.004096,0.005792,0.006496,0.01392,0.014624,0.765984,0.009632
+1223,667.21,1.49878,1.24221,0.008192,0.405504,0.005664,0.004576,0.007392,0.01424,0.014688,0.77232,0.009632
+1224,582.066,1.71802,1.70525,0.009568,0.446816,0.040672,0.004704,0.007264,0.014368,0.014496,1.1575,0.009856
+1225,469.402,2.13037,1.06291,0.008192,0.23264,0.004928,0.004096,0.007872,0.012608,0.014496,0.76912,0.00896
+1226,657.042,1.52197,1.0567,0.00944,0.229344,0.004928,0.004096,0.00784,0.01264,0.014336,0.763904,0.010176
+1227,667.21,1.49878,1.23341,0.006656,0.407552,0.00528,0.004864,0.00624,0.014336,0.014336,0.763904,0.01024
+1228,628.125,1.59204,1.91389,0.009632,0.232032,0.005536,0.004704,0.007232,0.013248,0.014336,1.61565,0.01152
+1229,429.575,2.32788,1.06534,0.008576,0.233472,0.00544,0.0048,0.006144,0.014336,0.014336,0.769376,0.008864
+1230,652.957,1.53149,1.06726,0.00848,0.226624,0.004768,0.004096,0.007968,0.0136,0.014528,0.77696,0.01024
+1231,674.461,1.48267,1.24038,0.008192,0.405504,0.005536,0.004704,0.007296,0.013184,0.014336,0.772032,0.0096
+1232,567.628,1.76172,1.91293,0.007968,0.233792,0.004096,0.006144,0.007456,0.013024,0.014336,1.61517,0.010944
+1233,451.549,2.2146,1.05898,0.008768,0.230816,0.004832,0.004096,0.008,0.01248,0.014368,0.765856,0.00976
+1234,590.457,1.6936,1.09968,0.009952,0.260384,0.004096,0.00576,0.006528,0.014176,0.014496,0.774176,0.010112
+1235,671.696,1.48877,1.25008,0.008544,0.405824,0.004224,0.005632,0.006688,0.014176,0.0144,0.780352,0.01024
+1236,583.31,1.71436,1.87597,0.008192,0.268288,0.0056,0.00464,0.007328,0.013152,0.014336,1.54214,0.012288
+1237,449.665,2.22388,1.06867,0.00832,0.23312,0.00432,0.005472,0.006816,0.012288,0.015392,0.773088,0.009856
+1238,692.594,1.44385,1.06896,0.008192,0.233472,0.005728,0.004512,0.007296,0.013184,0.014336,0.772096,0.010144
+1239,641.202,1.55957,1.0647,0.00848,0.231456,0.004192,0.005664,0.006528,0.013696,0.01456,0.770272,0.009856
+1240,613.909,1.62891,1.69987,0.008192,0.45056,0.026624,0.005472,0.006848,0.014016,0.0144,1.16458,0.009184
+1241,496.786,2.01294,1.06141,0.008256,0.231744,0.004224,0.005568,0.00672,0.013408,0.014304,0.766912,0.010272
+1242,665.692,1.5022,1.0632,0.00848,0.227328,0.005536,0.004704,0.006304,0.014176,0.014368,0.772064,0.01024
+1243,443.434,2.25513,1.24723,0.008672,0.406848,0.004832,0.004064,0.008128,0.013728,0.014496,0.776704,0.00976
+1244,938.159,1.06592,1.93747,0.008256,0.26832,0.005408,0.0048,0.007232,0.01472,0.014784,1.60323,0.01072
+1245,389.576,2.56689,1.15328,0.009536,0.317792,0.004448,0.005344,0.006944,0.013728,0.0144,0.772064,0.009024
+1246,591.737,1.68994,1.12746,0.008256,0.288704,0.005472,0.004768,0.018432,0.014144,0.020256,0.757824,0.0096
+1247,609.978,1.6394,1.06701,0.01024,0.23552,0.005888,0.004352,0.008064,0.013472,0.014688,0.766016,0.008768
+1248,649.128,1.54053,1.70752,0.008192,0.45056,0.026624,0.004096,0.008064,0.01392,0.014464,1.17152,0.01008
+1249,489.894,2.04126,1.0759,0.008256,0.234336,0.004096,0.005856,0.006432,0.013984,0.014464,0.778464,0.010016
+1250,676.242,1.47876,1.06291,0.008,0.230848,0.004864,0.004096,0.007936,0.012544,0.015584,0.769984,0.009056
+1251,624.2,1.60205,1.0728,0.008192,0.229376,0.005408,0.004832,0.00624,0.013952,0.014432,0.78048,0.009888
+1252,626.204,1.59692,1.86029,0.008576,0.244064,0.005696,0.004512,0.007456,0.013024,0.014336,1.54995,0.012672
+1253,429.981,2.32568,1.09325,0.00832,0.25744,0.004864,0.006144,0.007264,0.013248,0.014272,0.771904,0.009792
+1254,689.33,1.45068,1.07949,0.008384,0.228608,0.004864,0.004096,0.007744,0.012768,0.014304,0.789536,0.009184
+1255,620.042,1.61279,1.05984,0.008128,0.22848,0.004928,0.004224,0.007584,0.012896,0.014336,0.768,0.011264
+1256,598.393,1.67114,1.68758,0.00848,0.458784,0.01552,0.004864,0.006304,0.014336,0.014304,1.15507,0.00992
+1257,522.516,1.91382,1.0672,0.00832,0.232832,0.004768,0.004096,0.008192,0.013344,0.01456,0.772256,0.008832
+1258,682.212,1.46582,1.08531,0.008384,0.2496,0.00416,0.0056,0.006688,0.014016,0.014368,0.772384,0.010112
+1259,662.89,1.50854,1.24048,0.008192,0.406688,0.00496,0.004096,0.007808,0.014272,0.01472,0.77008,0.009664
+1260,554.263,1.8042,1.7248,0.008608,0.466624,0.031008,0.005344,0.006944,0.014144,0.014144,1.16774,0.01024
+1261,416.345,2.40186,1.08042,0.009376,0.24048,0.005664,0.004576,0.00736,0.013152,0.014336,0.775456,0.010016
+1262,778.559,1.28442,1.04749,0.008928,0.227552,0.005312,0.004864,0.006208,0.014368,0.014336,0.756864,0.009056
+1263,695.416,1.43799,1.25066,0.008192,0.405504,0.005632,0.004608,0.007328,0.01328,0.015456,0.781024,0.009632
+1264,604.13,1.65527,1.8993,0.008832,0.23776,0.00544,0.0048,0.007584,0.012896,0.014336,1.59539,0.012256
+1265,434.22,2.30298,1.07149,0.008544,0.231424,0.005888,0.004352,0.008224,0.01344,0.014432,0.776256,0.008928
+1266,653.165,1.53101,1.0585,0.008352,0.226304,0.004928,0.004288,0.007584,0.012896,0.014336,0.770048,0.00976
+1267,659.369,1.5166,1.26378,0.008352,0.406592,0.015008,0.005824,0.006752,0.014176,0.014528,0.782304,0.01024
+1268,599.532,1.66797,1.89792,0.008512,0.233408,0.00416,0.005632,0.006656,0.014048,0.014176,1.59958,0.011744
+1269,424.104,2.35791,1.05462,0.008448,0.22912,0.005696,0.004544,0.008064,0.012416,0.015712,0.76048,0.010144
+1270,683.692,1.46265,1.07885,0.008352,0.245568,0.004288,0.005504,0.006784,0.01392,0.014496,0.770016,0.00992
+1271,611.983,1.63403,1.05882,0.008224,0.229344,0.005952,0.004288,0.007648,0.012832,0.014336,0.767232,0.00896
+1272,326.245,3.06519,1.59085,0.00816,0.726336,0.00688,0.004096,0.008064,0.013952,0.0144,0.799168,0.009792
+1273,921.07,1.08569,1.04666,0.00832,0.228416,0.004928,0.004224,0.008192,0.013376,0.014464,0.754496,0.01024
+1274,713.589,1.40137,1.05648,0.009248,0.222176,0.005664,0.004576,0.006176,0.014048,0.014592,0.769952,0.010048
+1275,590.457,1.6936,1.05411,0.00944,0.223552,0.004576,0.005216,0.00704,0.01232,0.014336,0.76784,0.009792
+1276,449.517,2.22461,1.06704,0.012192,0.227424,0.00576,0.00448,0.007648,0.012928,0.015424,0.77248,0.008704
+1277,675.573,1.48022,1.06202,0.009344,0.224128,0.00576,0.00448,0.00752,0.01296,0.014336,0.77392,0.009568
+1278,690.143,1.44897,1.05072,0.009376,0.224096,0.004096,0.005728,0.00656,0.013984,0.014336,0.763872,0.008672
+1279,562.715,1.7771,1.06454,0.009568,0.225696,0.004352,0.005408,0.00688,0.01408,0.014304,0.774432,0.009824
+1280,445.993,2.24219,1.05981,0.0112,0.23552,0.004096,0.005824,0.006464,0.014048,0.014368,0.758016,0.010272
+1281,673.463,1.48486,1.05907,0.008128,0.224096,0.005504,0.004736,0.007744,0.012736,0.014336,0.771936,0.009856
+1282,696.007,1.43677,1.05882,0.009376,0.221184,0.004928,0.004128,0.00768,0.0128,0.014336,0.775488,0.008896
+1283,625.248,1.59937,1.05309,0.008576,0.221216,0.005472,0.004768,0.006144,0.014112,0.014464,0.769312,0.009024
+1284,629.186,1.58936,1.68346,0.008416,0.45648,0.008064,0.004224,0.007744,0.014464,0.016736,1.15709,0.01024
+1285,507.811,1.96924,1.05472,0.009696,0.221728,0.004096,0.00576,0.007712,0.01312,0.0144,0.767968,0.01024
+1286,667.862,1.49731,1.06717,0.008704,0.223392,0.004256,0.005536,0.006752,0.013824,0.014432,0.780704,0.009568
+1287,679.947,1.4707,1.24061,0.009312,0.410144,0.00448,0.005952,0.006336,0.014336,0.014336,0.765888,0.009824
+1288,464.452,2.15308,1.70752,0.008192,0.479232,0.007296,0.004864,0.006272,0.014336,0.014336,1.16285,0.010144
+1289,567.077,1.76343,1.06701,0.008192,0.227136,0.004288,0.005472,0.006816,0.013408,0.01456,0.776896,0.01024
+1290,710.618,1.40723,1.06032,0.008224,0.2224,0.004896,0.004096,0.007968,0.012512,0.01536,0.775104,0.00976
+1291,660.006,1.51514,1.23699,0.008192,0.407456,0.004192,0.005632,0.006656,0.014112,0.01456,0.765984,0.010208
+1292,625.153,1.59961,1.94173,0.008608,0.2728,0.005344,0.004896,0.007232,0.013248,0.014336,1.60352,0.011744
+1293,419.371,2.38452,1.06083,0.008224,0.225248,0.005184,0.004832,0.006368,0.014336,0.014336,0.772096,0.010208
+1294,683.921,1.46216,1.07117,0.008256,0.222624,0.004704,0.004096,0.007968,0.013824,0.015072,0.784384,0.01024
+1295,640.701,1.56079,1.23085,0.008192,0.405504,0.005152,0.004832,0.0064,0.014336,0.014368,0.7632,0.008864
+1296,624.676,1.60083,1.89606,0.00832,0.229248,0.004096,0.005792,0.006496,0.013984,0.014464,1.60176,0.011904
+1297,376.229,2.65796,1.32947,0.008544,0.493536,0.005472,0.004768,0.007584,0.012896,0.014336,0.772288,0.010048
+1298,652.437,1.53271,1.07418,0.009216,0.2304,0.005472,0.004768,0.007168,0.013312,0.014368,0.779808,0.009664
+1299,647.794,1.5437,1.06701,0.009632,0.22704,0.004992,0.004096,0.007488,0.012896,0.014464,0.777856,0.008544
+1300,674.794,1.48193,1.91866,0.007968,0.2352,0.004896,0.00416,0.008128,0.013728,0.01424,1.61869,0.011648
+1301,416.726,2.39966,1.05965,0.008768,0.228928,0.004864,0.005504,0.006784,0.013376,0.014496,0.766752,0.010176
+1302,661.072,1.5127,1.05821,0.009216,0.226304,0.005344,0.004864,0.006304,0.013888,0.014432,0.768224,0.009632
+1303,648.82,1.54126,1.05677,0.008224,0.2232,0.005792,0.004448,0.00752,0.01296,0.014336,0.770048,0.01024
+1304,675.908,1.47949,1.71472,0.008672,0.46112,0.022432,0.004192,0.007744,0.014432,0.014496,1.17165,0.009984
+1305,480.357,2.08179,1.05882,0.008192,0.227328,0.004096,0.005696,0.007776,0.01296,0.01456,0.7696,0.008608
+1306,662.783,1.50879,1.0735,0.008544,0.233504,0.005696,0.004512,0.008192,0.013504,0.014432,0.775968,0.009152
+1307,673.131,1.4856,1.23702,0.007936,0.40576,0.004224,0.005728,0.006432,0.014336,0.014208,0.769312,0.009088
+1308,589.437,1.69653,1.90643,0.008384,0.230816,0.004704,0.004096,0.00816,0.01344,0.013216,1.61178,0.01184
+1309,431.158,2.31934,1.06086,0.0096,0.227872,0.004192,0.005568,0.00672,0.014336,0.014336,0.768,0.01024
+1310,670.157,1.49219,1.05683,0.008192,0.227328,0.005824,0.004416,0.007872,0.012608,0.014336,0.767648,0.008608
+1311,718.975,1.39087,1.24109,0.008192,0.405184,0.004416,0.005408,0.00688,0.014176,0.014528,0.773216,0.009088
+1312,586.064,1.7063,1.89446,0.008256,0.229376,0.006144,0.004096,0.007872,0.012608,0.015552,1.59984,0.01072
+1313,435.837,2.29443,1.06291,0.009472,0.232192,0.005376,0.004704,0.006304,0.013728,0.014464,0.766432,0.01024
+1314,667.971,1.49707,1.05472,0.00944,0.230144,0.004128,0.005632,0.006656,0.013824,0.014528,0.760128,0.01024
+1315,572.867,1.74561,1.23526,0.008256,0.402848,0.004992,0.005088,0.007072,0.013696,0.014688,0.769472,0.009152
+1316,667.862,1.49731,1.40902,0.008288,0.257984,0.00528,0.004864,0.006272,0.014272,0.014368,1.08541,0.012288
+1317,503.565,1.98584,1.0576,0.008736,0.235808,0.005696,0.004576,0.007456,0.012992,0.014336,0.75904,0.00896
+1318,684.492,1.46094,1.06438,0.00928,0.225728,0.004608,0.005184,0.007104,0.013408,0.013216,0.776192,0.009664
+1319,677.697,1.47559,1.44003,0.008032,0.227776,0.004096,0.005504,0.006784,0.013632,0.01488,1.14909,0.01024
+1320,533.82,1.87329,1.8993,0.008608,0.234912,0.004896,0.004288,0.00768,0.0128,0.014336,1.60118,0.010592
+1321,430.342,2.32373,1.06259,0.008192,0.231424,0.005344,0.004864,0.006208,0.014208,0.014048,0.768384,0.00992
+1322,697.548,1.43359,1.06083,0.008192,0.229024,0.004448,0.005344,0.006944,0.01344,0.013312,0.76992,0.010208
+1323,685.064,1.45972,1.24512,0.008192,0.407328,0.00432,0.00528,0.007008,0.013888,0.014304,0.774624,0.010176
+1324,479.12,2.08716,1.91158,0.008448,0.258368,0.00432,0.00544,0.006848,0.013696,0.014112,1.58973,0.010624
+1325,519.336,1.92554,1.07203,0.008768,0.229248,0.004576,0.005216,0.007072,0.013344,0.01472,0.778848,0.01024
+1326,670.376,1.4917,1.05888,0.008864,0.227328,0.004096,0.005728,0.00656,0.014016,0.014592,0.768064,0.009632
+1327,671.365,1.4895,1.23661,0.008192,0.405408,0.004192,0.005664,0.006624,0.014336,0.014368,0.767936,0.009888
+1328,625.534,1.59863,1.88358,0.008224,0.2304,0.005056,0.004128,0.007808,0.012672,0.016384,1.5872,0.011712
+1329,423.228,2.36279,1.06256,0.009536,0.246464,0.005824,0.004416,0.007648,0.012832,0.014336,0.751616,0.009888
+1330,694.944,1.43896,1.05869,0.008192,0.227008,0.004416,0.005344,0.006944,0.013824,0.014816,0.768032,0.010112
+1331,683.921,1.46216,1.2648,0.008192,0.439936,0.00448,0.005344,0.006944,0.013856,0.014432,0.761696,0.00992
+1332,586.148,1.70605,1.83306,0.008288,0.2312,0.00432,0.005472,0.006816,0.01376,0.014528,1.53622,0.012448
+1333,362.093,2.76172,1.07853,0.009504,0.241568,0.004928,0.004096,0.008192,0.013376,0.014784,0.772416,0.009664
+1334,679.834,1.47095,1.05869,0.009568,0.229888,0.004256,0.005504,0.006784,0.013888,0.014464,0.764224,0.010112
+1335,651.607,1.53467,1.04989,0.009344,0.228,0.00432,0.005216,0.00704,0.013344,0.014496,0.7584,0.009728
+1336,618.451,1.61694,1.69248,0.008448,0.471616,0.006272,0.005728,0.006432,0.015424,0.013248,1.15658,0.008736
+1337,501.899,1.99243,1.06086,0.008192,0.229408,0.005536,0.004672,0.006368,0.01392,0.01456,0.767968,0.01024
+1338,674.128,1.4834,1.05882,0.009408,0.228,0.004256,0.005536,0.006752,0.013856,0.014528,0.76624,0.01024
+1339,676.577,1.47803,1.24342,0.008704,0.405184,0.00448,0.005344,0.006944,0.013792,0.01424,0.774784,0.009952
+1340,624.295,1.60181,1.90464,0.008544,0.237344,0.00544,0.004864,0.006272,0.014336,0.01424,1.60163,0.011968
+1341,422.573,2.36646,1.06077,0.008736,0.229472,0.004192,0.005568,0.00672,0.013728,0.014496,0.76784,0.010016
+1342,664.719,1.50439,1.0673,0.007904,0.236128,0.005856,0.004352,0.007584,0.012896,0.014336,0.769056,0.009184
+1343,669.39,1.4939,1.25987,0.007104,0.405504,0.004288,0.005568,0.00656,0.014304,0.014336,0.792416,0.009792
+1344,591.822,1.6897,1.87805,0.008384,0.234848,0.004768,0.004096,0.007968,0.01376,0.014464,1.57763,0.012128
+1345,436.813,2.28931,1.08246,0.008256,0.253952,0.005344,0.004832,0.006304,0.014208,0.014272,0.765248,0.010048
+1346,668.189,1.49658,1.0689,0.008512,0.235296,0.00432,0.00544,0.006848,0.013952,0.014272,0.770496,0.00976
+1347,713.092,1.40234,1.24317,0.008192,0.405504,0.006048,0.004192,0.007872,0.01408,0.0144,0.774112,0.008768
+1348,595.089,1.68042,1.85344,0.008192,0.233472,0.005312,0.004864,0.00624,0.014272,0.014304,1.55408,0.012704
+1349,437.747,2.28442,1.05517,0.00864,0.234848,0.004768,0.004096,0.008,0.012672,0.015424,0.757824,0.008896
+1350,690.842,1.44751,1.0553,0.008672,0.226496,0.004896,0.004224,0.008192,0.014368,0.014304,0.763904,0.01024
+1351,481.712,2.07593,1.33997,0.008448,0.483648,0.00512,0.004864,0.0064,0.014368,0.014304,0.792576,0.01024
+1352,805.031,1.24219,1.9319,0.008608,0.276672,0.004128,0.005664,0.006624,0.01408,0.0144,1.5905,0.011232
+1353,432.752,2.31079,1.06374,0.008416,0.231712,0.004416,0.005376,0.006912,0.01344,0.014912,0.76832,0.01024
+1354,678.146,1.47461,1.06128,0.008096,0.229696,0.004288,0.005504,0.006816,0.013824,0.014464,0.768352,0.01024
+1355,674.461,1.48267,1.23526,0.00848,0.411648,0.005248,0.004864,0.007872,0.013984,0.014528,0.759712,0.008928
+1356,461.469,2.16699,1.87024,0.008704,0.256288,0.004096,0.005792,0.006528,0.01408,0.014176,1.548,0.012576
+1357,532.501,1.87793,1.06147,0.008544,0.235104,0.004928,0.004224,0.007744,0.012768,0.014304,0.763904,0.009952
+1358,696.48,1.43579,1.05718,0.008704,0.222304,0.004928,0.004192,0.007168,0.013248,0.0144,0.772096,0.010144
+1359,681.078,1.46826,1.25261,0.008192,0.4096,0.005536,0.004704,0.006336,0.014144,0.014336,0.77984,0.00992
+1360,373.893,2.67456,1.93126,0.008192,0.264224,0.005472,0.004736,0.007232,0.013248,0.015552,1.60035,0.012256
+1361,703.176,1.42212,1.07677,0.009728,0.244256,0.00512,0.004864,0.007392,0.013312,0.014368,0.767488,0.01024
+1362,647.896,1.54346,1.07664,0.008544,0.251872,0.005888,0.004352,0.007584,0.012928,0.014304,0.761408,0.00976
+1363,605.917,1.65039,1.11309,0.009632,0.291424,0.005216,0.004864,0.006336,0.014304,0.014336,0.757216,0.00976
+1364,658.415,1.5188,1.90736,0.008448,0.239392,0.004736,0.004096,0.008096,0.012416,0.014432,1.60448,0.011264
+1365,428.183,2.33545,1.06374,0.009024,0.233472,0.005504,0.004736,0.007296,0.013056,0.018048,0.763744,0.008864
+1366,682.439,1.46533,1.06086,0.00944,0.227136,0.004896,0.004288,0.008,0.01248,0.016,0.769632,0.008992
+1367,627.932,1.59253,1.06218,0.008192,0.224864,0.004512,0.00528,0.007008,0.01248,0.01536,0.774464,0.010016
+1368,676.466,1.47827,1.70355,0.009536,0.483808,0.006368,0.0056,0.006688,0.014272,0.014336,1.15277,0.010176
+1369,448.877,2.22778,1.06227,0.008576,0.237568,0.004096,0.005824,0.007712,0.01312,0.014304,0.761312,0.00976
+1370,716.585,1.39551,1.07094,0.009472,0.230176,0.00576,0.004448,0.007264,0.013216,0.014336,0.776192,0.01008
+1371,667.645,1.4978,1.24483,0.008736,0.403456,0.00576,0.00448,0.00752,0.013024,0.014272,0.777856,0.009728
+1372,592.507,1.68774,1.74909,0.008672,0.525856,0.006656,0.005312,0.006944,0.013728,0.014944,1.15674,0.01024
+1373,456.481,2.19067,1.06102,0.008352,0.229376,0.005216,0.004864,0.006304,0.014016,0.014496,0.76928,0.00912
+1374,691.541,1.44604,1.05542,0.008672,0.225504,0.004096,0.00576,0.006528,0.014112,0.014464,0.767456,0.008832
+1375,633.076,1.57959,1.24518,0.008192,0.405216,0.004384,0.00544,0.006848,0.014048,0.014624,0.777472,0.00896
+1376,643.014,1.55518,1.90259,0.009536,0.229824,0.004352,0.005536,0.006752,0.013568,0.014336,1.6064,0.012288
+1377,423.447,2.36157,1.05267,0.009696,0.227872,0.00592,0.00432,0.006304,0.013984,0.014528,0.76112,0.008928
+1378,521.717,1.91675,1.06621,0.00944,0.23632,0.00592,0.00432,0.008224,0.013856,0.014272,0.764192,0.009664
+1379,923.563,1.08276,1.23699,0.008192,0.405504,0.005728,0.004512,0.007968,0.013696,0.01456,0.767872,0.00896
+1380,585.729,1.70728,1.8408,0.008352,0.237024,0.00464,0.005152,0.00704,0.012416,0.014464,1.53789,0.013824
+1381,451.449,2.21509,1.05142,0.008736,0.22912,0.004768,0.004096,0.007808,0.012672,0.015424,0.75872,0.01008
+1382,681.985,1.46631,1.05971,0.008864,0.22704,0.004608,0.005152,0.007008,0.013568,0.015232,0.768,0.01024
+1383,666.667,1.5,1.25133,0.008192,0.407328,0.00432,0.005504,0.006784,0.014336,0.014336,0.780288,0.01024
+1384,610.069,1.63916,1.90486,0.008672,0.22944,0.005312,0.004864,0.006208,0.014208,0.014048,1.61018,0.011936
+1385,428.99,2.33105,1.06909,0.008192,0.23552,0.005312,0.004864,0.008256,0.013632,0.014816,0.769536,0.00896
+1386,672.247,1.48755,1.06906,0.008288,0.230304,0.004928,0.004288,0.008192,0.014016,0.0144,0.776032,0.008608
+1387,578.94,1.72729,1.24154,0.008704,0.401376,0.005984,0.004256,0.00768,0.013856,0.014336,0.775168,0.010176
+1388,664.18,1.50562,1.84307,0.008288,0.2416,0.005632,0.004576,0.007392,0.013088,0.014368,1.53517,0.01296
+1389,445.121,2.24658,1.07469,0.008384,0.23328,0.00576,0.00448,0.00752,0.01296,0.014336,0.77824,0.009728
+1390,685.753,1.45825,1.05018,0.008448,0.22912,0.005856,0.004384,0.007712,0.012768,0.014336,0.75776,0.009792
+1391,706.329,1.41577,1.23904,0.008448,0.405088,0.004512,0.005312,0.006976,0.014112,0.014368,0.77024,0.009984
+1392,587.24,1.70288,1.8265,0.008256,0.233152,0.004352,0.00544,0.006848,0.013536,0.014304,1.52659,0.014016
+1393,449.074,2.22681,1.05472,0.008192,0.22736,0.005824,0.004384,0.007584,0.012896,0.0144,0.76384,0.01024
+1394,687.479,1.45459,1.06563,0.008704,0.227456,0.005248,0.004864,0.006272,0.01408,0.014432,0.775424,0.009152
+1395,644.025,1.55273,1.44019,0.008768,0.243552,0.004128,0.004608,0.006304,0.013504,0.014304,1.13494,0.01008
+1396,495.224,2.01929,1.4465,0.00832,0.24736,0.00496,0.00416,0.007872,0.012608,0.014336,1.13459,0.012288
+1397,492.544,2.03027,1.06387,0.00816,0.23376,0.0048,0.004096,0.008,0.01248,0.0144,0.767936,0.01024
+1398,722.526,1.38403,1.06886,0.008192,0.233472,0.005632,0.004608,0.007936,0.012544,0.014464,0.771968,0.010048
+1399,666.125,1.50122,1.44218,0.00832,0.25216,0.005248,0.004992,0.006176,0.01424,0.014432,1.1264,0.010208
+1400,549.872,1.8186,1.90259,0.008192,0.235008,0.004608,0.005152,0.007072,0.0136,0.014464,1.60346,0.01104
+1401,429.981,2.32568,1.0609,0.009504,0.230112,0.005632,0.004608,0.007392,0.013088,0.014336,0.767264,0.00896
+1402,685.638,1.4585,1.06291,0.009664,0.229984,0.004064,0.005856,0.006432,0.013952,0.01424,0.770048,0.008672
+1403,678.258,1.47437,1.22848,0.008448,0.40336,0.004192,0.005664,0.006624,0.01424,0.01424,0.76192,0.009792
+1404,597.433,1.67383,1.8903,0.008192,0.233248,0.00432,0.005408,0.00688,0.013632,0.014144,1.59376,0.01072
+1405,415.669,2.40576,1.07066,0.008192,0.241728,0.005856,0.00432,0.007648,0.012832,0.014336,0.76576,0.009984
+1406,647.077,1.54541,1.06368,0.008928,0.229184,0.004288,0.005472,0.006816,0.013568,0.014368,0.770784,0.010272
+1407,707.549,1.41333,1.23814,0.008224,0.405472,0.005184,0.004864,0.006336,0.014368,0.014304,0.769408,0.009984
+1408,609.796,1.63989,1.89757,0.008544,0.229888,0.005248,0.004896,0.00624,0.014336,0.014336,1.60333,0.010752
+1409,435.559,2.2959,1.06554,0.008064,0.227008,0.004928,0.004288,0.007648,0.012832,0.014336,0.776192,0.01024
+1410,665.259,1.50317,1.06301,0.008288,0.223232,0.005472,0.004704,0.006208,0.014112,0.014272,0.777952,0.008768
+1411,669.062,1.49463,1.23293,0.008128,0.404928,0.004768,0.004064,0.008096,0.014016,0.014592,0.764096,0.01024
+1412,600.586,1.66504,1.93424,0.008704,0.256416,0.00528,0.004832,0.006336,0.014112,0.014272,1.612,0.012288
+1413,428.183,2.33545,1.07469,0.00816,0.247264,0.004672,0.004096,0.00784,0.01264,0.014336,0.765952,0.009728
+1414,669.828,1.49292,1.0529,0.008544,0.229376,0.005792,0.004448,0.007552,0.012928,0.014336,0.759808,0.010112
+1415,699.693,1.4292,1.24221,0.007296,0.409472,0.005568,0.004672,0.007296,0.013184,0.014336,0.771456,0.008928
+1416,583.143,1.71484,1.91555,0.007168,0.24576,0.004096,0.00576,0.006528,0.014368,0.014304,1.60563,0.011936
+1417,437.093,2.28784,1.05008,0.008256,0.222304,0.004896,0.00416,0.007776,0.012704,0.0144,0.765888,0.009696
+1418,625.917,1.59766,1.06339,0.00864,0.237568,0.004096,0.005696,0.006592,0.013728,0.014272,0.763904,0.008896
+1419,684.492,1.46094,1.26368,0.008256,0.413696,0.02048,0.004096,0.008032,0.01392,0.023104,0.761856,0.01024
+1420,598.393,1.67114,1.73654,0.008544,0.485472,0.007456,0.004832,0.023584,0.013312,0.014336,1.1689,0.010112
+1421,463.978,2.15527,1.06339,0.007968,0.24208,0.004384,0.005408,0.00688,0.013984,0.014656,0.757824,0.010208
+1422,692.477,1.44409,1.05843,0.009504,0.223136,0.004928,0.004096,0.007648,0.012832,0.014336,0.772096,0.009856
+1423,431.476,2.31763,1.23699,0.00816,0.402976,0.014624,0.00432,0.008,0.01392,0.014176,0.761632,0.009184
+1424,1051.87,0.950684,1.83299,0.008256,0.242784,0.004896,0.004192,0.007776,0.012704,0.014336,1.52554,0.012512
+1425,440.904,2.26807,1.09101,0.009312,0.25696,0.005344,0.004896,0.00736,0.01312,0.014304,0.769856,0.009856
+1426,678.595,1.47363,1.0623,0.008192,0.231424,0.005664,0.004576,0.007552,0.012928,0.014336,0.768,0.009632
+1427,681.304,1.46777,1.23619,0.008,0.403552,0.004224,0.005696,0.006592,0.014336,0.014368,0.769664,0.00976
+1428,528.039,1.8938,1.40189,0.009664,0.241664,0.004672,0.0056,0.006688,0.013664,0.014368,1.09184,0.013728
+1429,538.381,1.85742,1.06902,0.008192,0.232608,0.004928,0.004128,0.007584,0.012896,0.014336,0.774144,0.010208
+1430,675.462,1.48047,1.06467,0.008192,0.229376,0.004096,0.004096,0.008032,0.012448,0.014336,0.774144,0.009952
+1431,672.357,1.4873,1.46083,0.008256,0.256544,0.005664,0.004576,0.008096,0.012384,0.014336,1.14074,0.01024
+1432,496.425,2.0144,1.86982,0.009952,0.246048,0.004128,0.005792,0.006464,0.014336,0.014336,1.55648,0.012288
+1433,466.09,2.14551,1.05085,0.008768,0.23312,0.004544,0.005248,0.00704,0.013376,0.014528,0.754432,0.009792
+1434,642.711,1.55591,1.0688,0.008288,0.227232,0.005472,0.004768,0.006464,0.014016,0.014176,0.778432,0.009952
+1435,696.362,1.43604,1.23488,0.008192,0.403456,0.005728,0.004512,0.007424,0.013056,0.015712,0.766624,0.010176
+1436,609.161,1.6416,1.88506,0.008672,0.229728,0.00416,0.0056,0.006688,0.013984,0.014336,1.59066,0.011232
+1437,429.575,2.32788,1.07933,0.008192,0.230848,0.004672,0.004096,0.008096,0.012384,0.015392,0.785376,0.010272
+1438,681.758,1.4668,1.04653,0.00944,0.224032,0.004096,0.005696,0.006592,0.014048,0.0144,0.759456,0.008768
+1439,675.573,1.48022,1.24451,0.008384,0.405472,0.004192,0.005632,0.006592,0.014368,0.014336,0.77552,0.010016
+1440,592.079,1.68896,1.89091,0.00864,0.233632,0.00544,0.0048,0.006336,0.014144,0.014336,1.59133,0.012256
+1441,433.669,2.30591,1.0711,0.008192,0.235136,0.00448,0.005312,0.006976,0.013536,0.014528,0.77392,0.009024
+1442,645.039,1.55029,1.05014,0.008192,0.229408,0.004064,0.005856,0.006432,0.013888,0.01408,0.758464,0.00976
+1443,717.589,1.39355,1.23974,0.008352,0.404,0.00576,0.00448,0.007488,0.014112,0.013216,0.772096,0.01024
+1444,606.995,1.64746,1.82272,0.00832,0.233344,0.005952,0.004288,0.007584,0.012896,0.014368,1.52368,0.012288
+1445,438.403,2.28101,1.07728,0.009536,0.252608,0.005696,0.004544,0.007424,0.013056,0.014336,0.76112,0.00896
+1446,707.06,1.41431,1.05632,0.008256,0.23136,0.004096,0.005728,0.00656,0.014336,0.014336,0.761856,0.009792
+1447,649.849,1.53882,1.24685,0.009568,0.426656,0.005856,0.004384,0.007456,0.013024,0.014336,0.75568,0.009888
+1448,617.612,1.61914,1.88179,0.00944,0.230176,0.005216,0.004864,0.006304,0.014336,0.014368,1.58512,0.011968
+1449,436.907,2.28882,1.06909,0.007936,0.231424,0.004608,0.00544,0.006848,0.01344,0.014304,0.775072,0.010016
+1450,564.966,1.77002,1.06701,0.009312,0.248736,0.005504,0.004736,0.006176,0.014208,0.014432,0.754912,0.008992
+1451,785.879,1.27246,1.25338,0.009536,0.423904,0.004832,0.004096,0.007904,0.013984,0.014944,0.765056,0.00912
+1452,619.761,1.61353,1.88979,0.00832,0.23472,0.004768,0.004096,0.007936,0.012544,0.014336,1.5913,0.011776
+1453,435.745,2.29492,1.05962,0.00848,0.227616,0.00432,0.00544,0.006848,0.013568,0.014496,0.770208,0.00864
+1454,671.696,1.48877,1.05875,0.009664,0.229952,0.004096,0.006144,0.00736,0.01312,0.014496,0.763744,0.010176
+1455,662.033,1.5105,1.28576,0.008288,0.454656,0.005824,0.004416,0.007552,0.014112,0.0152,0.765888,0.009824
+1456,591.053,1.69189,1.89117,0.00704,0.229248,0.004224,0.005568,0.00672,0.013344,0.014464,1.59834,0.012224
+1457,435.745,2.29492,1.04243,0.009472,0.225152,0.004896,0.004192,0.008064,0.012416,0.014464,0.753536,0.01024
+1458,697.429,1.43384,1.05677,0.00944,0.229824,0.004448,0.005824,0.006464,0.014176,0.0144,0.763072,0.00912
+1459,642.51,1.5564,1.26976,0.00928,0.433088,0.00592,0.00432,0.007648,0.013952,0.014368,0.770944,0.01024
+1460,575.766,1.73682,1.8903,0.008256,0.26208,0.005728,0.004512,0.00736,0.01312,0.014336,1.56262,0.012288
+1461,428.901,2.33154,1.0585,0.00864,0.237632,0.005856,0.00432,0.007616,0.012864,0.014336,0.757216,0.010016
+1462,721.889,1.38525,1.0552,0.007936,0.23216,0.005312,0.004928,0.007648,0.012832,0.014336,0.759808,0.01024
+1463,679.496,1.47168,1.22563,0.008384,0.40416,0.005472,0.004768,0.007232,0.013248,0.015488,0.757856,0.009024
+1464,600.234,1.66602,1.89235,0.009504,0.234208,0.005152,0.004864,0.006368,0.01392,0.014336,1.59328,0.01072
+1465,428.094,2.33594,1.05472,0.008192,0.229376,0.005888,0.004352,0.007648,0.012832,0.015904,0.761472,0.009056
+1466,692.711,1.4436,1.04118,0.008576,0.225664,0.005792,0.004448,0.008096,0.012384,0.014336,0.753248,0.00864
+1467,703.78,1.4209,1.26029,0.0088,0.436384,0.005344,0.004864,0.006304,0.014208,0.014336,0.75984,0.010208
+1468,576.739,1.73389,1.89219,0.008192,0.233472,0.0056,0.00464,0.00736,0.01312,0.014336,1.59334,0.012128
+1469,433.623,2.30615,1.05098,0.007008,0.227328,0.005344,0.004864,0.0072,0.013216,0.014112,0.762144,0.00976
+1470,606.545,1.64868,1.07315,0.00944,0.2456,0.00496,0.004192,0.007808,0.012704,0.015776,0.763808,0.008864
+1471,741.626,1.34839,1.2329,0.009632,0.404064,0.005792,0.004448,0.007648,0.012832,0.014336,0.763904,0.01024
+1472,607.175,1.64697,1.80701,0.008672,0.237088,0.004768,0.004096,0.007968,0.013568,0.013376,1.50518,0.012288
+1473,444.011,2.2522,1.06701,0.009408,0.232256,0.005248,0.004864,0.006272,0.014336,0.014336,0.770048,0.01024
+1474,667.536,1.49805,1.04701,0.008608,0.229536,0.005472,0.004736,0.008192,0.013984,0.014432,0.751872,0.010176
+1475,689.911,1.44946,1.42714,0.008352,0.237824,0.005152,0.004096,0.007136,0.013536,0.014784,1.12589,0.010368
+1476,541.656,1.84619,1.82528,0.008672,0.241728,0.005664,0.004544,0.007424,0.013056,0.014336,1.5175,0.012352
+1477,447.015,2.23706,1.052,0.008192,0.228704,0.004768,0.004096,0.007968,0.012512,0.0144,0.7616,0.00976
+1478,688.751,1.4519,1.05315,0.008672,0.224704,0.004672,0.00512,0.007072,0.013568,0.014656,0.764448,0.01024
+1479,492.485,2.03052,1.2329,0.009824,0.40592,0.00528,0.004864,0.006304,0.014272,0.014336,0.762944,0.009152
+1480,740.821,1.34985,1.88413,0.008576,0.27776,0.004864,0.004096,0.007904,0.014496,0.014304,1.53821,0.01392
+1481,442.907,2.25781,1.06448,0.008192,0.24352,0.004288,0.005504,0.006784,0.013504,0.014816,0.75808,0.009792
+1482,697.785,1.43311,1.06291,0.008192,0.23888,0.004768,0.00416,0.007936,0.012544,0.015584,0.760608,0.01024
+1483,645.446,1.54932,1.23155,0.008768,0.405632,0.005792,0.004448,0.007584,0.012896,0.014336,0.762912,0.009184
+1484,651.089,1.53589,1.89082,0.007968,0.237472,0.004896,0.004096,0.007872,0.012608,0.014336,1.59085,0.01072
+1485,438.826,2.27881,1.05501,0.008448,0.23136,0.00416,0.0056,0.006688,0.013568,0.014464,0.761504,0.009216
+1486,702.573,1.42334,1.0439,0.008192,0.22528,0.005728,0.004512,0.006144,0.01392,0.014368,0.756096,0.009664
+1487,647.077,1.54541,1.24822,0.00832,0.424096,0.004768,0.004192,0.008,0.01392,0.014176,0.76048,0.010272
+1488,499.33,2.00269,1.85933,0.008224,0.243712,0.00544,0.004704,0.006272,0.014304,0.014336,1.5495,0.012832
+1489,471.184,2.12231,1.05459,0.008288,0.231744,0.004192,0.0056,0.006688,0.013728,0.014944,0.759808,0.0096
+1490,824.145,1.21338,1.04704,0.008448,0.231776,0.00512,0.004864,0.008128,0.012576,0.014336,0.751616,0.010176
+1491,683.921,1.46216,1.4295,0.008192,0.241664,0.004096,0.006144,0.006176,0.013504,0.014816,1.12467,0.01024
+1492,540.94,1.84863,1.82406,0.008384,0.237568,0.005504,0.004736,0.006176,0.014048,0.014336,1.51987,0.01344
+1493,449.418,2.2251,1.04723,0.008352,0.227872,0.004096,0.006144,0.008096,0.012384,0.015616,0.754432,0.01024
+1494,682.212,1.46582,1.04189,0.008192,0.223232,0.005728,0.004512,0.007424,0.013056,0.014336,0.755584,0.009824
+1495,686.672,1.4563,1.26835,0.008768,0.446528,0.00576,0.00448,0.007456,0.013024,0.01552,0.757632,0.009184
+1496,577.064,1.73291,1.87264,0.008672,0.231424,0.004384,0.005376,0.006912,0.013472,0.013152,1.57846,0.010784
+1497,410.874,2.43384,1.0655,0.008832,0.243712,0.005184,0.004864,0.006336,0.013856,0.014656,0.75792,0.010144
+1498,736.558,1.35767,1.03341,0.009728,0.225792,0.005728,0.004512,0.007392,0.013088,0.014336,0.743424,0.009408
+1499,683.806,1.4624,1.41322,0.00816,0.225312,0.00576,0.00448,0.007456,0.013056,0.014304,1.12435,0.010336
+1500,551.056,1.8147,1.88586,0.008416,0.230752,0.004544,0.005248,0.007072,0.013312,0.014336,1.59024,0.011936
+1501,435.652,2.29541,1.04278,0.008032,0.231936,0.004096,0.005856,0.008288,0.01248,0.015392,0.746464,0.01024
+1502,668.298,1.49634,1.05088,0.00848,0.224928,0.004416,0.005376,0.006912,0.01392,0.014528,0.763232,0.009088
+1503,687.133,1.45532,1.22576,0.008416,0.40528,0.005184,0.004864,0.006336,0.014336,0.014336,0.757184,0.009824
+1504,627.259,1.59424,1.89235,0.009632,0.225888,0.005728,0.004512,0.007456,0.013024,0.014336,1.60083,0.010944
+1505,426.934,2.34229,1.03219,0.008192,0.223136,0.004192,0.005504,0.006784,0.013376,0.014944,0.747168,0.008896
+1506,635.433,1.57373,1.04042,0.009312,0.229312,0.004896,0.004288,0.007616,0.012864,0.015424,0.747776,0.008928
+1507,749.908,1.3335,1.21971,0.008128,0.405472,0.005568,0.004672,0.00784,0.013952,0.014848,0.749408,0.009824
+1508,601.645,1.66211,1.82262,0.008288,0.22928,0.005152,0.004672,0.006592,0.013984,0.014016,1.52746,0.013184
+1509,446.139,2.24146,1.04131,0.00832,0.224032,0.004096,0.005856,0.006432,0.013856,0.014304,0.755424,0.008992
+1510,679.496,1.47168,1.04291,0.008512,0.2248,0.004544,0.005248,0.00704,0.013536,0.014304,0.756,0.008928
+1511,657.675,1.52051,1.44122,0.008352,0.253376,0.00464,0.004128,0.008192,0.012288,0.014336,1.12435,0.011552
+1512,554.563,1.80322,1.88122,0.008352,0.226912,0.004352,0.00544,0.006848,0.014176,0.014496,1.58912,0.01152
+1513,441.474,2.26514,1.04976,0.009312,0.230048,0.004352,0.0056,0.00672,0.013728,0.014304,0.755968,0.009728
+1514,660.113,1.51489,1.05866,0.008128,0.225824,0.005184,0.016544,0.006944,0.0136,0.014432,0.7584,0.0096
+1515,649.231,1.54028,1.26243,0.00896,0.44656,0.005952,0.00544,0.00704,0.013984,0.014656,0.75072,0.00912
+1516,605.648,1.65112,1.87043,0.008672,0.229152,0.004768,0.004096,0.007968,0.012512,0.014336,1.57699,0.011936
+1517,448.484,2.22974,1.05194,0.00832,0.227328,0.004096,0.005792,0.006496,0.013728,0.014816,0.761376,0.009984
+1518,686.903,1.45581,1.04448,0.008256,0.224736,0.004576,0.005184,0.007072,0.0136,0.014464,0.757664,0.008928
+1519,685.867,1.45801,1.26534,0.008096,0.438496,0.004192,0.005664,0.00656,0.014368,0.014336,0.763808,0.009824
+1520,553.14,1.80786,1.88624,0.008192,0.231456,0.00512,0.004864,0.006368,0.014336,0.014272,1.59078,0.010848
+1521,454.505,2.2002,1.04646,0.008448,0.228736,0.00448,0.005312,0.006976,0.014368,0.014304,0.753664,0.010176
+1522,712.472,1.40356,1.04822,0.008224,0.227296,0.004096,0.005728,0.007808,0.013088,0.014336,0.75776,0.009888
+1523,641.403,1.55908,1.40822,0.008192,0.223232,0.00528,0.00432,0.006784,0.013536,0.01456,1.12083,0.011488
+1524,384.782,2.59888,1.88422,0.009312,0.261024,0.005632,0.004608,0.007264,0.013216,0.014368,1.55645,0.012352
+1525,694.944,1.43896,1.05968,0.008448,0.229984,0.004096,0.005856,0.007808,0.01296,0.014336,0.767168,0.009024
+1526,682.667,1.46484,1.0431,0.008736,0.231584,0.00544,0.004768,0.007584,0.012896,0.014336,0.74752,0.01024
+1527,663.857,1.50635,1.21651,0.009888,0.403808,0.005152,0.004896,0.006336,0.014336,0.014368,0.748544,0.009184
+1528,643.924,1.55298,1.872,0.008192,0.22528,0.00592,0.00432,0.007808,0.012672,0.015584,1.5816,0.010624
+1529,431.658,2.31665,1.04045,0.007968,0.229056,0.004704,0.005248,0.00704,0.013408,0.014528,0.749376,0.00912
+1530,673.906,1.48389,1.04499,0.008096,0.225888,0.004096,0.005696,0.008064,0.012864,0.014336,0.755744,0.010208
+1531,461.625,2.16626,1.03142,0.008416,0.22304,0.0056,0.004608,0.007232,0.013248,0.014336,0.745344,0.0096
+1532,630.93,1.58496,1.69712,0.008192,0.479232,0.007232,0.004864,0.006368,0.014304,0.01408,1.15126,0.011584
+1533,478.393,2.09033,1.05322,0.00704,0.229152,0.00432,0.005472,0.006816,0.013568,0.014368,0.762592,0.009888
+1534,668.08,1.49683,1.0504,0.008224,0.241024,0.004704,0.005152,0.00704,0.012384,0.014336,0.74752,0.010016
+1535,630.445,1.58618,1.03814,0.008448,0.223776,0.005696,0.004544,0.007904,0.012576,0.014336,0.750976,0.009888
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..188b0aa
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,626.038,1.66722,1.17496,0.00903784,0.254323,0.00526884,0.00493809,0.00719547,0.0135848,0.0148636,0.850916,0.0148317
+max_1024,1494.62,3.41821,2.09741,0.034176,0.58528,0.045056,0.02224,0.022528,0.051168,0.059808,1.7847,0.342656
+min_1024,292.551,0.669067,0.940768,0.007008,0.21728,0.004064,0.004064,0.006144,0.012256,0.012832,0.650432,0.008576
+512,726.628,1.37622,0.944128,0.008288,0.22928,0.004128,0.005664,0.006592,0.014336,0.014336,0.652832,0.008672
+513,749.497,1.33423,0.946176,0.009696,0.223776,0.004096,0.005728,0.00656,0.014112,0.014048,0.658944,0.009216
+514,711.358,1.40576,1.82077,0.008288,0.237056,0.004608,0.004096,0.008032,0.013536,0.014624,1.51824,0.012288
+515,420.988,2.37537,0.945696,0.008192,0.226912,0.004512,0.005152,0.007136,0.013568,0.014464,0.656,0.00976
+516,753.911,1.32642,0.96848,0.009408,0.219968,0.004096,0.006144,0.007232,0.013248,0.027904,0.670464,0.010016
+517,733.787,1.36279,0.952864,0.00896,0.219168,0.005824,0.005568,0.007008,0.012288,0.026656,0.657376,0.010016
+518,690.492,1.44824,1.72483,0.008608,0.22928,0.004192,0.005472,0.006816,0.013696,0.014336,1.4281,0.014336
+519,461.313,2.16772,1.3127,0.008736,0.223552,0.004128,0.005536,0.006752,0.013856,0.014624,1.02419,0.011328
+520,601.292,1.66309,0.958784,0.008512,0.222976,0.004352,0.005248,0.00704,0.01376,0.028704,0.657952,0.01024
+521,719.923,1.38904,0.984864,0.009408,0.248224,0.004512,0.004096,0.00736,0.012928,0.0144,0.67392,0.010016
+522,721.826,1.38538,0.949376,0.009568,0.231968,0.004224,0.00544,0.006848,0.013664,0.014368,0.653536,0.00976
+523,469.967,2.12781,1.00352,0.02176,0.275136,0.00416,0.005504,0.006784,0.013536,0.014464,0.653216,0.00896
+524,723.611,1.38196,0.966752,0.008288,0.247776,0.004128,0.005536,0.006752,0.014336,0.015488,0.654208,0.01024
+525,720.239,1.38843,0.964544,0.00928,0.237632,0.004896,0.004192,0.007584,0.012928,0.014304,0.663552,0.010176
+526,736.823,1.35718,0.96256,0.008192,0.223264,0.005216,0.0048,0.006336,0.01408,0.014272,0.676288,0.010112
+527,661.499,1.51172,1.59734,0.009728,0.446976,0.040928,0.005568,0.006752,0.014336,0.014336,1.04835,0.010368
+528,490.069,2.04053,1.17251,0.009056,0.436384,0.005824,0.004416,0.007392,0.014176,0.014624,0.670368,0.010272
+529,674.072,1.48352,0.952544,0.008416,0.231424,0.004096,0.005728,0.008224,0.012672,0.015488,0.656288,0.010208
+530,727.337,1.37488,0.953952,0.010112,0.228544,0.004832,0.00432,0.00752,0.012992,0.014304,0.661312,0.010016
+531,681.531,1.46729,0.964608,0.009824,0.241344,0.004832,0.004096,0.00784,0.01264,0.014336,0.659488,0.010208
+532,738.351,1.35437,2.09741,0.008544,0.245216,0.004864,0.004288,0.00752,0.013024,0.015424,1.7847,0.013824
+533,374.594,2.66956,0.975776,0.008064,0.246752,0.005536,0.004704,0.006144,0.014336,0.014336,0.666976,0.008928
+534,738.617,1.35388,0.982496,0.008544,0.245408,0.00448,0.016,0.00656,0.015552,0.019264,0.656864,0.009824
+535,680.229,1.47009,0.9656,0.008096,0.252928,0.004096,0.005664,0.006624,0.014144,0.014144,0.651008,0.008896
+536,491.54,2.03442,1.32301,0.010304,0.245632,0.00416,0.005504,0.006784,0.0136,0.014336,1.01043,0.012256
+537,602.486,1.65979,0.953888,0.008352,0.22528,0.005312,0.0048,0.006272,0.013888,0.014432,0.665728,0.009824
+538,708.222,1.41199,0.949728,0.009376,0.228192,0.004096,0.005792,0.006496,0.01408,0.014272,0.657664,0.00976
+539,636.272,1.57166,0.988512,0.008352,0.25968,0.004512,0.005152,0.007168,0.012256,0.014336,0.667328,0.009728
+540,782.575,1.27783,1.5873,0.008512,0.478464,0.006912,0.004096,0.007968,0.014112,0.0144,1.04278,0.010048
+541,472.189,2.1178,0.952448,0.00832,0.23296,0.004608,0.005184,0.007008,0.012416,0.015584,0.65744,0.008928
+542,748.401,1.33618,0.95136,0.008192,0.221184,0.005408,0.0048,0.007488,0.013056,0.014304,0.667296,0.009632
+543,556.597,1.79663,1.3047,0.008512,0.58528,0.004544,0.00512,0.007072,0.012384,0.014336,0.657408,0.010048
+544,552.878,1.80872,1.66502,0.008192,0.52416,0.006304,0.005728,0.00656,0.014304,0.01568,1.07386,0.01024
+545,412.197,2.42603,0.972032,0.008288,0.245632,0.004224,0.005632,0.006656,0.013824,0.0144,0.66352,0.009856
+546,779.596,1.28271,0.958496,0.009312,0.236448,0.00528,0.00496,0.006144,0.014304,0.014368,0.657408,0.010272
+547,817.728,1.2229,0.966592,0.008608,0.232704,0.004864,0.004096,0.008224,0.01376,0.014464,0.669856,0.010016
+548,694.708,1.43945,1.78995,0.008192,0.238816,0.004896,0.004096,0.00784,0.012672,0.014304,1.48685,0.012288
+549,460.07,2.17358,1.12442,0.0072,0.405472,0.005888,0.004352,0.00752,0.01296,0.015872,0.655392,0.00976
+550,658.574,1.51843,0.941536,0.008192,0.222496,0.004832,0.005248,0.00704,0.014336,0.014336,0.65536,0.009696
+551,747.104,1.3385,0.940768,0.008928,0.222528,0.0048,0.004096,0.007744,0.012736,0.014336,0.65536,0.01024
+552,658.151,1.51941,1.6288,0.008864,0.245536,0.004288,0.00528,0.007008,0.013472,0.014464,1.31667,0.013216
+553,497.419,2.01038,1.32598,0.009024,0.235616,0.004096,0.005696,0.006592,0.013568,0.014208,1.02675,0.010432
+554,577.308,1.73218,0.952416,0.008608,0.229376,0.005376,0.004832,0.007232,0.01328,0.014336,0.659488,0.009888
+555,741.089,1.34937,0.942944,0.00864,0.225696,0.005184,0.0048,0.006368,0.013856,0.014144,0.653984,0.010272
+556,751.422,1.33081,0.948224,0.008224,0.225248,0.005312,0.0048,0.006304,0.01424,0.014176,0.661024,0.008896
+557,514.508,1.9436,0.963136,0.010816,0.237568,0.005184,0.0048,0.0064,0.0136,0.014464,0.660064,0.01024
+558,679.778,1.47107,0.944288,0.00848,0.231296,0.005696,0.004544,0.007296,0.013184,0.014336,0.650432,0.009024
+559,746.356,1.33984,0.96,0.008704,0.223232,0.004096,0.0056,0.006688,0.013344,0.014528,0.67264,0.011168
+560,736.492,1.35779,0.946176,0.008192,0.221184,0.005792,0.004448,0.007232,0.013248,0.014336,0.661504,0.01024
+561,707.793,1.41284,1.64134,0.008928,0.229536,0.005728,0.004512,0.007264,0.012896,0.014592,1.34355,0.014336
+562,456.633,2.18994,1.35581,0.009024,0.24752,0.005408,0.004736,0.006496,0.014176,0.014176,1.04291,0.01136
+563,591.096,1.69177,0.958048,0.009376,0.231968,0.004416,0.004096,0.007616,0.012864,0.014336,0.663552,0.009824
+564,723.867,1.38147,0.958496,0.008224,0.227296,0.00528,0.0048,0.006304,0.013888,0.014368,0.669696,0.00864
+565,627.98,1.59241,0.990304,0.009568,0.245504,0.004896,0.004224,0.00768,0.0128,0.014336,0.681536,0.00976
+566,484.132,2.06555,1.34218,0.010976,0.243008,0.0048,0.004096,0.007872,0.013856,0.01456,1.03072,0.012288
+567,657.992,1.51978,0.949376,0.008192,0.227328,0.00576,0.00448,0.007328,0.013152,0.014336,0.65904,0.00976
+568,745.337,1.34167,0.969376,0.00864,0.224672,0.004832,0.004192,0.007552,0.014272,0.014336,0.68064,0.01024
+569,638.155,1.56702,0.957568,0.008288,0.234944,0.004576,0.004128,0.008,0.012448,0.014336,0.661152,0.009696
+570,832.267,1.20154,1.57299,0.008288,0.464896,0.007872,0.004416,0.007456,0.014112,0.01456,1.04112,0.010272
+571,483.076,2.07007,0.951744,0.008192,0.2232,0.004128,0.005536,0.006752,0.013408,0.014368,0.666496,0.009664
+572,559.601,1.78699,0.95232,0.009536,0.233856,0.004416,0.005248,0.00704,0.013792,0.012832,0.65536,0.01024
+573,1046.77,0.955322,0.95872,0.008448,0.231424,0.004128,0.00576,0.006496,0.013856,0.014336,0.664032,0.01024
+574,720.112,1.38867,1.64045,0.009344,0.230304,0.005792,0.004416,0.007424,0.013056,0.0144,1.34291,0.0128
+575,480.3,2.08203,1.34134,0.009728,0.231456,0.004576,0.004096,0.007776,0.012704,0.014336,1.04595,0.01072
+576,567.195,1.76306,0.94912,0.008544,0.223616,0.004256,0.005408,0.00688,0.013856,0.01472,0.662816,0.009024
+577,742.163,1.34741,0.94416,0.008224,0.221184,0.005344,0.004896,0.00736,0.013152,0.014304,0.659456,0.01024
+578,694.473,1.43994,0.9728,0.008512,0.24576,0.0056,0.00464,0.00752,0.01296,0.014336,0.663552,0.00992
+579,508.063,1.96826,0.984512,0.010336,0.234688,0.004832,0.004096,0.007712,0.012768,0.015584,0.684768,0.009728
+580,629.815,1.58777,0.940928,0.00864,0.22128,0.004448,0.005248,0.00704,0.014112,0.014336,0.655616,0.010208
+581,733.524,1.36328,0.974912,0.008928,0.235488,0.004192,0.00608,0.006272,0.014272,0.014272,0.675584,0.009824
+582,499.786,2.00085,1.00698,0.009632,0.256608,0.005856,0.004384,0.013472,0.013152,0.024544,0.669088,0.01024
+583,1173.47,0.852173,1.7847,0.008928,0.235648,0.00576,0.00448,0.00736,0.01312,0.014336,1.48275,0.01232
+584,442.261,2.26111,0.960512,0.00944,0.228128,0.00528,0.004832,0.006272,0.01424,0.014432,0.667648,0.01024
+585,714.834,1.39893,0.951744,0.009888,0.221536,0.005248,0.0048,0.008288,0.012448,0.015328,0.664512,0.009696
+586,740.687,1.3501,0.956896,0.008544,0.219264,0.005792,0.00448,0.007936,0.013856,0.014592,0.673376,0.009056
+587,738.018,1.35498,1.63174,0.009472,0.22592,0.004224,0.00528,0.006912,0.012448,0.015648,1.33802,0.013824
+588,479.457,2.08569,1.32742,0.009088,0.2232,0.004128,0.005536,0.006752,0.01344,0.013184,1.0415,0.010592
+589,577.511,1.73157,0.945504,0.008256,0.221024,0.004288,0.005856,0.006432,0.013888,0.014752,0.661408,0.0096
+590,725.984,1.37744,0.968192,0.008192,0.237024,0.00464,0.004096,0.008032,0.01376,0.014528,0.668192,0.009728
+591,709.571,1.4093,0.958272,0.009824,0.223424,0.00432,0.005312,0.007008,0.013568,0.01472,0.670048,0.010048
+592,405.806,2.46423,1.36979,0.012128,0.241824,0.004096,0.005792,0.006496,0.013792,0.014272,1.06064,0.010752
+593,561.48,1.78101,0.945152,0.008896,0.223552,0.004096,0.005664,0.006624,0.01408,0.014592,0.65888,0.008768
+594,781.978,1.27881,0.95584,0.009376,0.221184,0.004864,0.004192,0.007584,0.012896,0.014368,0.671424,0.009952
+595,734.577,1.36133,0.95232,0.00944,0.221056,0.004832,0.004288,0.007584,0.012896,0.014336,0.667648,0.01024
+596,499.908,2.00037,0.96432,0.01072,0.231424,0.005792,0.004448,0.007424,0.013056,0.014336,0.667232,0.009888
+597,642.964,1.5553,0.963872,0.009824,0.22304,0.004704,0.004096,0.007936,0.01424,0.014496,0.675808,0.009728
+598,716.021,1.39661,0.954368,0.009408,0.21792,0.0056,0.00464,0.007776,0.013984,0.014816,0.669984,0.01024
+599,765.25,1.30676,0.968096,0.0096,0.219392,0.00448,0.005568,0.00672,0.01344,0.025472,0.673504,0.00992
+600,702.814,1.42285,1.76966,0.008384,0.221216,0.00528,0.004832,0.007712,0.012864,0.014336,1.48275,0.012288
+601,458.987,2.17871,1.15661,0.007296,0.408288,0.004288,0.005504,0.006784,0.014048,0.014496,0.686112,0.009792
+602,481.967,2.07483,1.01987,0.008384,0.267648,0.004736,0.004096,0.007936,0.022784,0.026528,0.667744,0.010016
+603,933.136,1.07166,0.970752,0.009376,0.228192,0.005888,0.004352,0.007488,0.012992,0.014368,0.666816,0.02128
+604,725.726,1.37793,1.64045,0.008192,0.22736,0.004096,0.005728,0.006528,0.013856,0.014336,1.34714,0.013216
+605,458.319,2.18188,1.35171,0.009728,0.22784,0.005184,0.004768,0.006464,0.013536,0.014336,1.05958,0.010272
+606,602.707,1.65918,0.972032,0.00928,0.22144,0.0048,0.004096,0.007808,0.0144,0.028992,0.671456,0.00976
+607,733.524,1.36328,0.963136,0.008896,0.21728,0.005696,0.004544,0.007936,0.0136,0.021472,0.673792,0.00992
+608,679.721,1.47119,0.977728,0.008832,0.24192,0.005536,0.004704,0.006144,0.014336,0.014368,0.671712,0.010176
+609,481.769,2.07568,1.35594,0.011328,0.234432,0.004096,0.005824,0.006464,0.0136,0.014368,1.05338,0.012448
+610,559.219,1.78821,1.01946,0.00848,0.237568,0.005344,0.0048,0.00736,0.013216,0.024384,0.70848,0.009824
+611,713.154,1.40222,0.958304,0.008192,0.223264,0.005312,0.004832,0.006208,0.013952,0.014592,0.667776,0.014176
+612,651.296,1.5354,0.987264,0.008288,0.245024,0.004832,0.004096,0.007744,0.012736,0.014336,0.681216,0.008992
+613,514.993,1.94177,0.975072,0.010592,0.236896,0.004736,0.004096,0.007872,0.012608,0.014336,0.673792,0.010144
+614,649.695,1.53918,0.969216,0.008768,0.229376,0.005376,0.0048,0.00624,0.014176,0.0144,0.675904,0.010176
+615,712.596,1.40332,0.956192,0.009248,0.22192,0.004352,0.005312,0.006976,0.013888,0.014784,0.669696,0.010016
+616,729.67,1.37048,0.95232,0.008192,0.220448,0.004832,0.004096,0.007808,0.012672,0.014592,0.669472,0.010208
+617,701.01,1.42651,1.6896,0.009312,0.232352,0.005376,0.004864,0.007424,0.013088,0.014304,1.3897,0.013184
+618,484.676,2.06323,1.14688,0.009728,0.403968,0.00544,0.0048,0.006176,0.014304,0.014336,0.677888,0.01024
+619,655.885,1.52466,0.96944,0.008896,0.219168,0.004096,0.005792,0.006496,0.013504,0.01472,0.687872,0.008896
+620,717.212,1.39429,0.964416,0.00928,0.22544,0.004896,0.004096,0.00768,0.0128,0.014336,0.67584,0.010048
+621,730.125,1.36963,0.980064,0.008192,0.226944,0.00448,0.005184,0.00704,0.012352,0.014336,0.663264,0.038272
+622,459.141,2.17798,1.34282,0.011328,0.234432,0.005504,0.004736,0.006144,0.014368,0.014304,1.03834,0.013664
+623,558.114,1.79175,0.95568,0.008416,0.22736,0.005216,0.004832,0.006304,0.013824,0.014464,0.6656,0.009664
+624,763.325,1.31006,0.95616,0.008192,0.223232,0.005856,0.004384,0.007872,0.012608,0.014336,0.669696,0.009984
+625,744.524,1.34314,0.966688,0.00992,0.223552,0.005728,0.004512,0.008096,0.012384,0.015648,0.678016,0.008832
+626,454.959,2.198,0.993408,0.011552,0.242272,0.004224,0.00544,0.00688,0.0136,0.01488,0.685664,0.008896
+627,636.717,1.57056,0.965984,0.00832,0.222656,0.004672,0.004096,0.007936,0.012544,0.030528,0.665504,0.009728
+628,738.683,1.35376,0.974848,0.008224,0.219104,0.005152,0.0048,0.006432,0.014144,0.027872,0.67888,0.01024
+629,697.904,1.43286,0.962752,0.008448,0.220256,0.004864,0.004256,0.007584,0.012928,0.014304,0.666624,0.023488
+630,682.553,1.46509,1.8585,0.008672,0.231872,0.004192,0.005472,0.006816,0.014272,0.0144,1.56058,0.012224
+631,365.796,2.73376,1.16083,0.008128,0.420416,0.005792,0.004416,0.007424,0.013056,0.014368,0.677696,0.009536
+632,740.888,1.34973,0.972256,0.009536,0.235232,0.004896,0.004288,0.007264,0.013216,0.014336,0.67376,0.009728
+633,703.599,1.42126,0.9728,0.009888,0.22768,0.004096,0.00576,0.006528,0.0136,0.015008,0.681568,0.008672
+634,722.399,1.38428,1.77459,0.008192,0.228704,0.004096,0.004256,0.006208,0.012736,0.014336,1.48422,0.01184
+635,388.431,2.57446,0.981024,0.008192,0.23904,0.004672,0.004096,0.008032,0.012448,0.014464,0.679808,0.010272
+636,793.03,1.26099,0.98304,0.009536,0.249792,0.004864,0.004096,0.007776,0.012704,0.014336,0.670976,0.00896
+637,718.723,1.39136,0.978816,0.008288,0.231424,0.004096,0.005664,0.006624,0.01344,0.014496,0.684544,0.01024
+638,724.571,1.38013,1.71248,0.008544,0.24576,0.006016,0.004224,0.007584,0.012928,0.014304,1.39878,0.014336
+639,475.45,2.10327,1.34573,0.008416,0.230688,0.0048,0.006016,0.006304,0.013888,0.013792,1.05139,0.010432
+640,366.123,2.73132,1.06118,0.022464,0.313248,0.004544,0.005152,0.006976,0.0136,0.023424,0.661504,0.010272
+641,1135.41,0.880737,0.9712,0.00864,0.239008,0.004704,0.004096,0.00784,0.01264,0.014336,0.669728,0.010208
+642,659.475,1.51636,1.75946,0.008416,0.253952,0.004096,0.005792,0.006496,0.014048,0.014208,1.43811,0.014336
+643,477.417,2.0946,1.14246,0.008032,0.40528,0.004608,0.004096,0.008064,0.01424,0.014368,0.673984,0.009792
+644,672.578,1.48682,0.977216,0.008512,0.233472,0.005632,0.004608,0.006144,0.0136,0.01312,0.683008,0.00912
+645,798.518,1.25232,0.966208,0.008352,0.22704,0.004384,0.00528,0.007008,0.013376,0.013408,0.677696,0.009664
+646,658.733,1.51807,0.982496,0.00832,0.239168,0.004544,0.004096,0.008192,0.013984,0.014368,0.680096,0.009728
+647,574.676,1.74011,0.97856,0.012192,0.233568,0.004096,0.0056,0.006688,0.01408,0.014336,0.678144,0.009856
+648,635.877,1.57263,0.95392,0.0096,0.22544,0.004576,0.004096,0.008064,0.012416,0.014336,0.6656,0.009792
+649,710.31,1.40784,0.982816,0.00832,0.224608,0.004768,0.004096,0.009344,0.013088,0.014432,0.694272,0.009888
+650,637.659,1.56824,0.99312,0.01024,0.25136,0.00464,0.00528,0.007008,0.013472,0.01456,0.67648,0.01008
+651,712.286,1.40393,0.988576,0.009312,0.252224,0.004704,0.004096,0.007872,0.01264,0.015328,0.672736,0.009664
+652,493.583,2.026,1.15715,0.011488,0.404256,0.005888,0.004352,0.007616,0.013952,0.014624,0.684704,0.010272
+653,756.977,1.32104,0.96464,0.008192,0.228512,0.004864,0.004192,0.007712,0.012768,0.014336,0.673792,0.010272
+654,741.827,1.34802,0.966688,0.008192,0.223104,0.004224,0.005408,0.00688,0.013408,0.014752,0.681856,0.008864
+655,611.846,1.6344,0.9728,0.00944,0.23392,0.004448,0.005216,0.007072,0.013856,0.014816,0.673792,0.01024
+656,506.586,1.974,1.35133,0.01088,0.242816,0.004864,0.004192,0.007712,0.012768,0.014336,1.04038,0.013376
+657,572.227,1.74756,0.981024,0.008064,0.223424,0.004064,0.005696,0.006592,0.013632,0.014144,0.695168,0.01024
+658,727.273,1.375,0.985216,0.00832,0.226368,0.004864,0.004288,0.00752,0.01296,0.014336,0.69632,0.01024
+659,705.599,1.41724,0.956544,0.00832,0.227328,0.004096,0.005536,0.008096,0.013024,0.014304,0.6656,0.01024
+660,439.744,2.27405,1.36397,0.012288,0.25712,0.005024,0.004096,0.007776,0.012704,0.014336,1.03824,0.012384
+661,535.25,1.86829,0.989184,0.009696,0.241184,0.004832,0.004384,0.007776,0.012704,0.014336,0.685152,0.00912
+662,778.929,1.28381,0.989216,0.008192,0.240928,0.004832,0.004096,0.007776,0.012704,0.015424,0.684992,0.010272
+663,646.465,1.54688,0.96304,0.008672,0.22304,0.004288,0.005696,0.006592,0.013696,0.014368,0.67808,0.008608
+664,850.675,1.17554,1.6096,0.008608,0.467104,0.006144,0.004096,0.008,0.014144,0.0144,1.07555,0.011552
+665,470.94,2.12341,0.961056,0.00864,0.226624,0.004864,0.004128,0.00768,0.012832,0.014304,0.673056,0.008928
+666,742.096,1.34753,0.961056,0.008576,0.221344,0.004096,0.006144,0.006144,0.014368,0.014304,0.67584,0.01024
+667,723.164,1.38281,0.958016,0.008224,0.220992,0.004256,0.005376,0.006912,0.013472,0.014688,0.674304,0.009792
+668,700.71,1.42712,0.976256,0.009312,0.230048,0.004352,0.005216,0.007008,0.0136,0.014336,0.6824,0.009984
+669,443.53,2.25464,1.34237,0.011168,0.236736,0.004832,0.004192,0.007552,0.0128,0.014464,1.03821,0.012416
+670,774.364,1.29138,0.988608,0.008192,0.24576,0.005184,0.004832,0.0064,0.013408,0.013184,0.681984,0.009664
+671,692.126,1.44482,0.964832,0.008416,0.22528,0.005504,0.004736,0.006144,0.01424,0.014112,0.676192,0.010208
+672,732.606,1.36499,0.983072,0.008192,0.228736,0.004736,0.004096,0.007872,0.012608,0.01584,0.69072,0.010272
+673,483.418,2.0686,0.973024,0.011648,0.231808,0.004576,0.005152,0.00704,0.012384,0.014336,0.67584,0.01024
+674,644.735,1.55103,0.978208,0.008192,0.229376,0.00512,0.0048,0.006464,0.014016,0.014688,0.685824,0.009728
+675,723.1,1.38293,0.964608,0.009632,0.223264,0.004672,0.005152,0.006784,0.01264,0.014336,0.679296,0.008832
+676,724.123,1.38098,0.970752,0.008192,0.220704,0.004576,0.00512,0.00688,0.013664,0.014368,0.68816,0.009088
+677,686.845,1.45593,1.7961,0.009728,0.221696,0.005184,0.0048,0.0064,0.01392,0.014656,1.50742,0.012288
+678,456.811,2.18909,1.14893,0.009824,0.40592,0.005696,0.004544,0.007264,0.013216,0.014336,0.677888,0.01024
+679,450.11,2.22168,0.974848,0.009632,0.227168,0.004864,0.004096,0.008192,0.0136,0.014656,0.683552,0.009088
+680,1494.62,0.669067,0.986624,0.008192,0.227328,0.005216,0.004832,0.006336,0.013984,0.014368,0.69664,0.009728
+681,702.874,1.42273,0.956896,0.008672,0.226592,0.004832,0.004096,0.00784,0.01264,0.014336,0.668896,0.008992
+682,492.93,2.02869,1.32275,0.010336,0.225056,0.004224,0.00544,0.006848,0.013952,0.014528,1.0297,0.012672
+683,579.472,1.72571,0.962848,0.008096,0.221536,0.005184,0.00464,0.00656,0.013664,0.014528,0.678368,0.010272
+684,728.631,1.37244,0.969216,0.008704,0.221184,0.004096,0.00576,0.006528,0.013824,0.014432,0.68448,0.010208
+685,719.417,1.39001,0.967712,0.008416,0.222688,0.004416,0.005248,0.00704,0.014016,0.014304,0.681856,0.009728
+686,497.722,2.00916,0.968704,0.01168,0.22544,0.004544,0.00512,0.007072,0.012384,0.014336,0.679168,0.00896
+687,620.7,1.61108,0.980992,0.009376,0.22352,0.004672,0.004096,0.007904,0.01376,0.014752,0.693696,0.009216
+688,710.186,1.40808,0.96384,0.008448,0.221088,0.004192,0.005504,0.006784,0.013856,0.014112,0.680096,0.00976
+689,631.417,1.58374,0.976896,0.009664,0.22896,0.004832,0.004352,0.007488,0.013024,0.014336,0.685088,0.009152
+690,747.445,1.33789,1.60973,0.009472,0.46352,0.014432,0.00528,0.007008,0.01408,0.014336,1.07136,0.01024
+691,490.951,2.03687,1.15395,0.007072,0.405312,0.004288,0.00544,0.006848,0.014272,0.014368,0.686112,0.01024
+692,658.309,1.51904,0.982816,0.008608,0.2192,0.005568,0.00464,0.006144,0.014304,0.014272,0.700096,0.009984
+693,727.273,1.375,0.963424,0.008896,0.221344,0.005408,0.0048,0.006176,0.013792,0.014112,0.679872,0.009024
+694,715.084,1.39844,1.69373,0.009536,0.22336,0.004672,0.004096,0.007744,0.012736,0.014336,1.40406,0.013184
+695,480.103,2.08289,1.34234,0.009024,0.221216,0.005376,0.0048,0.006208,0.013984,0.014368,1.05683,0.010528
+696,554.3,1.80408,0.986912,0.00944,0.223072,0.004832,0.004352,0.0184,0.014368,0.014208,0.688224,0.010016
+697,730.125,1.36963,0.980896,0.008096,0.219264,0.004608,0.004096,0.007968,0.012512,0.027872,0.686784,0.009696
+698,714.086,1.40039,0.999392,0.009024,0.243776,0.005472,0.004768,0.007488,0.012992,0.014368,0.691776,0.009728
+699,549.983,1.81824,0.978464,0.011648,0.234144,0.005664,0.004544,0.00736,0.013088,0.0144,0.677472,0.010144
+700,651.918,1.53394,0.993088,0.008416,0.223328,0.004096,0.005792,0.006496,0.013568,0.031328,0.69024,0.009824
+701,723.164,1.38281,0.97408,0.008192,0.221184,0.004096,0.006144,0.006144,0.014208,0.021728,0.682592,0.009792
+702,738.883,1.35339,0.981024,0.009408,0.218016,0.00576,0.004384,0.007776,0.013984,0.02528,0.687584,0.008832
+703,718.344,1.39209,1.6855,0.008192,0.223232,0.005344,0.004768,0.008096,0.012512,0.01552,1.3935,0.014336
+704,451.549,2.2146,1.19747,0.009344,0.441056,0.004256,0.005472,0.006816,0.014304,0.014368,0.69216,0.009696
+705,639.75,1.56311,0.981184,0.008224,0.223168,0.00432,0.005184,0.007104,0.012288,0.029696,0.682176,0.009024
+706,736.161,1.3584,0.989184,0.009344,0.220032,0.005568,0.004672,0.007808,0.013696,0.028704,0.690624,0.008736
+707,728.178,1.37329,0.970848,0.008096,0.222112,0.0056,0.00464,0.0072,0.013024,0.014272,0.68608,0.009824
+708,480.3,2.08203,1.29101,0.011008,0.28672,0.005504,0.004736,0.006176,0.0144,0.021856,0.694816,0.245792
+709,655.412,1.52576,0.991232,0.008192,0.229376,0.004096,0.005792,0.006496,0.01344,0.01424,0.69936,0.01024
+710,706.207,1.41602,0.995104,0.008512,0.224768,0.004608,0.004096,0.007968,0.012512,0.015648,0.707296,0.009696
+711,712.1,1.4043,0.984224,0.008288,0.22464,0.00464,0.005728,0.00656,0.014336,0.014336,0.695936,0.00976
+712,727.466,1.37463,1.6728,0.008576,0.512096,0.007488,0.0048,0.006144,0.014336,0.014336,1.09363,0.011392
+713,444.589,2.24927,0.987136,0.009536,0.223872,0.00416,0.005504,0.006784,0.013632,0.014176,0.700256,0.009216
+714,722.781,1.38354,0.96944,0.008576,0.221632,0.004096,0.005632,0.006656,0.01424,0.014336,0.684128,0.010144
+715,746.288,1.33997,0.974848,0.008224,0.220896,0.004352,0.00528,0.006944,0.012352,0.01536,0.6912,0.01024
+716,697.785,1.43311,1.80803,0.009504,0.221952,0.00576,0.004448,0.00768,0.013856,0.01328,1.51955,0.012
+717,370.427,2.69958,1.3801,0.008704,0.234976,0.00464,0.004096,0.007968,0.012512,0.014336,1.0793,0.013568
+718,764.964,1.30725,0.985664,0.008512,0.225536,0.00528,0.0048,0.006304,0.014336,0.014368,0.697824,0.008704
+719,697.667,1.43335,0.969696,0.00864,0.223648,0.005216,0.0048,0.006368,0.013504,0.014464,0.684096,0.00896
+720,717.652,1.39343,0.979968,0.008512,0.223936,0.005472,0.004768,0.00768,0.0128,0.014336,0.692224,0.01024
+721,556.408,1.79724,1.36189,0.012288,0.223232,0.005728,0.004512,0.008,0.01248,0.015552,1.06752,0.012576
+722,558.495,1.79053,0.99728,0.008224,0.223232,0.005536,0.004704,0.006176,0.014336,0.014304,0.710656,0.010112
+723,711.853,1.40479,0.987136,0.008192,0.224576,0.0048,0.004096,0.008192,0.014208,0.014304,0.698656,0.010112
+724,714.211,1.40015,0.9752,0.008512,0.225184,0.004224,0.005408,0.00688,0.012288,0.015456,0.688224,0.009024
+725,539.444,1.85376,1.20592,0.01024,0.437856,0.005568,0.005088,0.007456,0.014144,0.01424,0.70144,0.009888
+726,519.007,1.92676,0.99872,0.0096,0.223872,0.005248,0.004832,0.006304,0.014336,0.026624,0.698112,0.009792
+727,612.898,1.63159,0.97808,0.008192,0.229376,0.005504,0.004736,0.006144,0.014336,0.014336,0.68576,0.009696
+728,747.718,1.3374,0.984128,0.008192,0.23104,0.00448,0.005248,0.006976,0.012416,0.014272,0.691744,0.00976
+729,663.212,1.50781,1.62714,0.009408,0.473696,0.006368,0.006112,0.006176,0.014336,0.014368,1.08042,0.016256
+730,488.52,2.047,0.978464,0.008352,0.226496,0.004864,0.00416,0.007712,0.012768,0.014336,0.690048,0.009728
+731,711.976,1.40454,0.981664,0.008832,0.22496,0.004416,0.005216,0.00688,0.01264,0.015264,0.6944,0.009056
+732,711.667,1.40515,0.982528,0.008192,0.225088,0.004288,0.005376,0.006912,0.013696,0.01424,0.695008,0.009728
+733,725.148,1.37903,1.71862,0.008768,0.228896,0.004576,0.004128,0.007968,0.01248,0.014336,1.42301,0.014464
+734,448.901,2.22766,1.36186,0.0096,0.2352,0.004832,0.00432,0.00768,0.0128,0.014336,1.06262,0.010464
+735,604.442,1.65442,0.973888,0.00832,0.224416,0.004832,0.004096,0.007744,0.012736,0.014336,0.687744,0.009664
+736,715.521,1.39758,0.985472,0.008576,0.224896,0.00448,0.005184,0.007072,0.013472,0.014304,0.698432,0.009056
+737,697.845,1.43298,1.00147,0.009504,0.241408,0.004864,0.00432,0.007488,0.012992,0.014336,0.697632,0.008928
+738,455.896,2.19348,1.38858,0.0104,0.243552,0.005152,0.004768,0.006464,0.013952,0.01456,1.07744,0.012288
+739,556.182,1.79797,0.991232,0.0096,0.22784,0.004224,0.005408,0.008064,0.013152,0.014336,0.698368,0.01024
+740,737.287,1.35632,0.98736,0.008448,0.22464,0.004704,0.004096,0.007872,0.013728,0.014336,0.699328,0.010208
+741,709.756,1.40894,0.99952,0.008256,0.23088,0.00464,0.006144,0.007392,0.013088,0.014368,0.7056,0.009152
+742,464.794,2.15149,0.991392,0.0104,0.233472,0.0056,0.00464,0.007232,0.01328,0.014304,0.693408,0.009056
+743,636.519,1.57104,0.989152,0.008704,0.225248,0.004096,0.0056,0.008032,0.012992,0.014336,0.700416,0.009728
+744,729.995,1.36987,0.978624,0.009504,0.223968,0.005472,0.004768,0.008064,0.013728,0.014624,0.688576,0.00992
+745,687.825,1.45386,0.989568,0.008576,0.224928,0.004448,0.00528,0.007008,0.013312,0.014336,0.702656,0.009024
+746,544.572,1.8363,1.64707,0.008672,0.49344,0.006272,0.005632,0.006656,0.014336,0.014368,1.08746,0.01024
+747,572.787,1.74585,0.99328,0.009344,0.228256,0.005184,0.0048,0.006368,0.014176,0.014272,0.70064,0.01024
+748,701.31,1.4259,0.990464,0.009536,0.225344,0.004736,0.004096,0.007616,0.012864,0.014336,0.702176,0.00976
+749,717.338,1.39404,0.967744,0.008384,0.224128,0.004832,0.00432,0.007424,0.013056,0.014336,0.681536,0.009728
+750,730.32,1.36926,0.989664,0.008576,0.226976,0.004544,0.00512,0.00704,0.013536,0.014432,0.699232,0.010208
+751,534.726,1.87012,1.36422,0.011232,0.230432,0.004864,0.00432,0.00752,0.012992,0.014304,1.06611,0.012448
+752,571.07,1.7511,0.983136,0.008352,0.223136,0.004096,0.005632,0.006656,0.013792,0.014496,0.698016,0.00896
+753,730.125,1.36963,0.99232,0.009856,0.2216,0.005664,0.004544,0.007456,0.013024,0.014336,0.706208,0.009632
+754,685.007,1.45984,0.98544,0.008544,0.224832,0.004544,0.00512,0.006848,0.012608,0.015936,0.697984,0.009024
+755,713.589,1.40137,1.62778,0.009856,0.463232,0.006176,0.006112,0.006144,0.014336,0.014336,1.0967,0.01088
+756,441.047,2.26733,1.00291,0.008544,0.24576,0.005184,0.004768,0.006432,0.014336,0.014336,0.693824,0.009728
+757,713.278,1.40198,0.988736,0.009248,0.230368,0.005568,0.004672,0.007168,0.0128,0.014112,0.695008,0.009792
+758,696.007,1.43677,1.03094,0.0088,0.250048,0.005568,0.004672,0.008128,0.013536,0.014464,0.715488,0.01024
+759,561.827,1.77991,1.67322,0.009376,0.5024,0.0184,0.005984,0.006592,0.020448,0.014336,1.08538,0.010304
+760,515.479,1.93994,0.984832,0.0096,0.232096,0.004064,0.006144,0.00736,0.01312,0.014368,0.687776,0.010304
+761,745.541,1.34131,0.978976,0.00864,0.22048,0.0048,0.005536,0.006752,0.013376,0.021472,0.688096,0.009824
+762,692.301,1.44446,1.0281,0.024576,0.251904,0.004096,0.006144,0.008064,0.013536,0.014336,0.6952,0.01024
+763,696.243,1.43628,1.71114,0.008416,0.233216,0.004128,0.005504,0.006784,0.0136,0.014368,1.41094,0.014176
+764,458.781,2.17969,1.42131,0.008192,0.272384,0.00592,0.00432,0.007936,0.013984,0.014656,1.08371,0.010208
+765,365.894,2.73303,1.04288,0.00864,0.29872,0.004864,0.004192,0.007616,0.012896,0.014304,0.681792,0.009856
+766,1260.5,0.793335,1.01139,0.009408,0.23024,0.005856,0.004352,0.02048,0.014368,0.014304,0.702464,0.00992
+767,659.051,1.51733,1.81658,0.008288,0.22928,0.004096,0.005824,0.006464,0.013664,0.014208,1.52246,0.012288
+768,431.589,2.31702,1.1656,0.00848,0.403456,0.005152,0.0048,0.006432,0.014336,0.014336,0.699904,0.008704
+769,646.873,1.5459,1.00458,0.009376,0.224096,0.005312,0.0048,0.006304,0.013792,0.014432,0.71664,0.009824
+770,714.585,1.39941,0.992416,0.008192,0.223232,0.004096,0.00544,0.006848,0.01392,0.026976,0.694016,0.009696
+771,636.222,1.57178,1.33558,0.008448,0.243712,0.00528,0.0048,0.006304,0.01408,0.014592,1.00061,0.03776
+772,545.733,1.8324,1.3824,0.009408,0.229472,0.004832,0.004096,0.007712,0.012768,0.014336,1.08954,0.01024
+773,557.81,1.79272,0.9936,0.008192,0.221536,0.005472,0.004736,0.006208,0.01408,0.02608,0.697056,0.01024
+774,733.196,1.36389,0.99568,0.008544,0.22096,0.00432,0.005984,0.006304,0.014016,0.02288,0.702432,0.01024
+775,507.465,1.97058,1.03222,0.00864,0.265952,0.004416,0.005248,0.006976,0.013536,0.014592,0.703072,0.009792
+776,538.204,1.85803,1.38522,0.010848,0.231424,0.00544,0.0048,0.00624,0.014272,0.014304,1.08749,0.0104
+777,563.799,1.77368,1.00966,0.009568,0.225952,0.005568,0.004672,0.007872,0.012608,0.014336,0.72,0.009088
+778,691.892,1.44531,1.00291,0.009344,0.223424,0.0048,0.004096,0.00784,0.012672,0.014432,0.716672,0.009632
+779,683.692,1.46265,1.33533,0.008192,0.22528,0.005312,0.0048,0.006272,0.013888,0.025024,0.703904,0.342656
+780,487.126,2.05286,1.3824,0.009792,0.249376,0.004896,0.004224,0.008064,0.013792,0.014144,1.06582,0.012288
+781,595.176,1.68018,0.991232,0.008128,0.225344,0.00576,0.004512,0.00784,0.012608,0.014336,0.703616,0.009088
+782,709.694,1.40906,0.990624,0.008224,0.2232,0.005632,0.004608,0.008192,0.013536,0.014208,0.703232,0.009792
+783,661.072,1.5127,1.04246,0.008384,0.263328,0.004768,0.00544,0.006848,0.014336,0.028672,0.701824,0.008864
+784,523.986,1.90845,1.31206,0.011328,0.506208,0.004704,0.005632,0.006656,0.022368,0.028832,0.7168,0.009536
+785,547.337,1.82703,1.00586,0.00848,0.234912,0.004704,0.004096,0.008096,0.02464,0.014272,0.696448,0.010208
+786,738.284,1.35449,1.00982,0.008352,0.247424,0.00448,0.005152,0.007136,0.013888,0.014496,0.698656,0.01024
+787,687.999,1.45349,0.993792,0.008704,0.22848,0.004832,0.004256,0.007616,0.012896,0.014336,0.703616,0.009056
+788,715.146,1.39832,1.83056,0.00944,0.239488,0.004896,0.004224,0.00752,0.01296,0.014336,1.52554,0.01216
+789,423.797,2.35962,1.00147,0.00928,0.22624,0.004096,0.00576,0.006528,0.013504,0.014144,0.71168,0.01024
+790,693.18,1.44263,0.994272,0.008608,0.221792,0.005664,0.004544,0.006144,0.014336,0.014336,0.70976,0.009088
+791,725.984,1.37744,0.9976,0.008096,0.227648,0.004096,0.005792,0.006496,0.01408,0.014592,0.70656,0.01024
+792,703.116,1.42224,1.79978,0.008192,0.22736,0.00528,0.0048,0.006304,0.013888,0.014272,1.50781,0.011872
+793,370.863,2.69641,1.19235,0.008608,0.405504,0.00512,0.0048,0.006464,0.014368,0.014304,0.72416,0.009024
+794,784.524,1.27466,1.01984,0.008512,0.23552,0.004096,0.005664,0.006624,0.013952,0.01472,0.720896,0.009856
+795,711.111,1.40625,0.995712,0.008544,0.229376,0.005536,0.004704,0.006176,0.01392,0.014304,0.70288,0.010272
+796,658.415,1.5188,1.75917,0.008256,0.249856,0.005376,0.0048,0.00624,0.014304,0.014336,1.44141,0.014592
+797,457.935,2.18372,1.22662,0.009568,0.44416,0.004992,0.004128,0.007776,0.01472,0.014368,0.716608,0.010304
+798,639.5,1.56372,1.01296,0.008192,0.22528,0.005312,0.004768,0.007744,0.012896,0.014336,0.724704,0.009728
+799,710.741,1.40698,0.999584,0.008352,0.229376,0.005184,0.004768,0.007584,0.013184,0.014336,0.707968,0.008832
+800,691.892,1.44531,1.30614,0.009696,0.225824,0.005792,0.004448,0.008032,0.013952,0.014304,1.01024,0.013856
+801,520.59,1.9209,1.38016,0.00816,0.225024,0.0048,0.00528,0.007008,0.013728,0.014496,1.08909,0.012576
+802,564.11,1.77271,1.024,0.009312,0.223584,0.004672,0.004096,0.00784,0.01264,0.01552,0.736096,0.01024
+803,575.888,1.73645,1.00765,0.00976,0.231328,0.004672,0.004096,0.007936,0.012544,0.014336,0.713984,0.008992
+804,713.03,1.40247,0.999328,0.008512,0.228832,0.00464,0.004096,0.007936,0.012544,0.0144,0.708512,0.009856
+805,457.909,2.18384,1.40829,0.010272,0.239584,0.005248,0.0048,0.006336,0.015424,0.014816,1.09939,0.012416
+806,565.355,1.7688,1.01126,0.009568,0.227808,0.004288,0.005376,0.006912,0.013472,0.014496,0.71936,0.009984
+807,694.708,1.43945,0.98416,0.008288,0.2232,0.004128,0.005536,0.006752,0.013504,0.014368,0.69872,0.009664
+808,637.014,1.56982,1.01011,0.008576,0.233376,0.004288,0.005568,0.008384,0.012672,0.014368,0.712672,0.010208
+809,518.579,1.92834,1.00768,0.010784,0.239456,0.004256,0.005376,0.006912,0.013344,0.01328,0.704512,0.00976
+810,619.667,1.61377,1.02195,0.008192,0.227328,0.004096,0.005728,0.012736,0.014304,0.014336,0.724992,0.01024
+811,724.443,1.38037,1.00557,0.008192,0.222816,0.004512,0.004128,0.007744,0.012704,0.028672,0.70656,0.01024
+812,584.141,1.71191,1.02778,0.009312,0.25488,0.00576,0.00448,0.007296,0.013184,0.014336,0.708608,0.00992
+813,730.581,1.36877,1.64842,0.008448,0.472096,0.006272,0.00496,0.007648,0.012832,0.01552,1.11014,0.010496
+814,471.238,2.12207,0.99616,0.009152,0.231392,0.00544,0.0048,0.006144,0.014336,0.014368,0.700384,0.010144
+815,721.953,1.38513,1.01222,0.008704,0.22528,0.004096,0.005664,0.006624,0.013472,0.014496,0.725216,0.008672
+816,707.916,1.4126,0.99936,0.008576,0.221344,0.004416,0.005888,0.0064,0.014336,0.014368,0.7144,0.009632
+817,709.264,1.40991,1.82496,0.008192,0.229376,0.004096,0.005792,0.006496,0.013856,0.014432,1.53133,0.011392
+818,436.86,2.28906,1.2104,0.00944,0.42064,0.005536,0.004704,0.007776,0.013952,0.01424,0.725248,0.008864
+819,624.485,1.60132,1.0105,0.008928,0.223264,0.00416,0.005536,0.006752,0.013536,0.014176,0.723904,0.01024
+820,709.817,1.40881,1.00669,0.008192,0.222624,0.004704,0.00576,0.006528,0.014016,0.014656,0.720544,0.009664
+821,694.237,1.44043,1.01014,0.008672,0.227328,0.005408,0.0048,0.007776,0.012736,0.014464,0.70848,0.02048
+822,433.141,2.30872,1.39469,0.010592,0.252416,0.005696,0.004544,0.007264,0.013216,0.014368,1.07517,0.011424
+823,576.861,1.73352,0.996928,0.009568,0.225952,0.005312,0.004704,0.0064,0.012448,0.01568,0.707072,0.009792
+824,704.385,1.41968,0.994784,0.008192,0.222304,0.004864,0.004256,0.008192,0.013376,0.013376,0.710496,0.009728
+825,692.828,1.44336,1.72675,0.008448,0.223136,0.004192,0.00544,0.006848,0.012448,0.014176,1.4377,0.014368
+826,450.878,2.2179,1.38899,0.008704,0.231424,0.005216,0.004704,0.006496,0.01424,0.0144,1.09334,0.010464
+827,586.148,1.70605,0.995232,0.008256,0.223168,0.005728,0.004512,0.007328,0.012992,0.014432,0.708672,0.010144
+828,711.667,1.40515,0.995104,0.008736,0.221184,0.00544,0.00464,0.006304,0.014336,0.014368,0.710272,0.009824
+829,679.045,1.47266,1.32694,0.008416,0.250912,0.004864,0.00432,0.00736,0.013088,0.014368,0.984672,0.038944
+830,514.444,1.94385,1.27626,0.008544,0.231712,0.004128,0.005632,0.006624,0.013952,0.014176,0.969248,0.02224
+831,531.051,1.88306,1.00973,0.008256,0.227328,0.006048,0.004192,0.007776,0.012704,0.014336,0.72,0.009088
+832,724.699,1.37988,1.01853,0.00848,0.223584,0.02048,0.005152,0.006976,0.013632,0.013152,0.718144,0.008928
+833,717.967,1.39282,1.03405,0.008704,0.23552,0.018432,0.006144,0.006144,0.01424,0.014304,0.720832,0.009728
+834,438.614,2.27991,1.24109,0.011904,0.233856,0.00544,0.0048,0.006176,0.014304,0.014272,0.704576,0.24576
+835,631.368,1.58386,0.994912,0.00832,0.224832,0.004512,0.005184,0.007136,0.013664,0.014496,0.70704,0.009728
+836,674.794,1.48193,1.01536,0.008544,0.241664,0.005536,0.004704,0.006176,0.014304,0.014336,0.710304,0.009792
+837,698.38,1.43188,1.01366,0.008128,0.25488,0.005408,0.0048,0.006176,0.014176,0.014496,0.69584,0.00976
+838,708.896,1.41064,1.72022,0.008256,0.234912,0.00464,0.004096,0.008,0.01248,0.014336,1.41926,0.01424
+839,431.453,2.31775,1.03219,0.009472,0.262656,0.004352,0.005664,0.006624,0.013984,0.01424,0.704672,0.010528
+840,610.432,1.63818,1.04038,0.008192,0.274464,0.004064,0.0056,0.006688,0.014016,0.014432,0.70272,0.010208
+841,735.963,1.35876,1.00147,0.009792,0.231424,0.004544,0.004096,0.008,0.01248,0.01536,0.705536,0.01024
+842,692.535,1.44397,1.88477,0.008608,0.260288,0.005216,0.004768,0.0064,0.014336,0.014464,1.55942,0.011264
+843,416.302,2.4021,1.03168,0.008224,0.239584,0.00576,0.00448,0.007424,0.013088,0.014304,0.729056,0.00976
+844,697.845,1.43298,1.02605,0.008256,0.224384,0.004864,0.004224,0.007648,0.012832,0.014336,0.7248,0.024704
+845,626.3,1.59668,1.01376,0.008192,0.241664,0.005248,0.004832,0.007776,0.012864,0.014368,0.708576,0.01024
+846,700.47,1.42761,1.85859,0.008224,0.265952,0.004352,0.00592,0.006368,0.014336,0.014368,1.52765,0.011424
+847,425.051,2.35266,1.00061,0.008192,0.231424,0.005152,0.0048,0.006432,0.013536,0.014528,0.70512,0.011424
+848,704.143,1.42017,1.0144,0.008736,0.227392,0.004096,0.005536,0.006752,0.013952,0.01392,0.723744,0.010272
+849,415.437,2.4071,1.07286,0.009664,0.29264,0.004864,0.004128,0.00768,0.013888,0.014912,0.715136,0.009952
+850,1263.61,0.791382,1.89466,0.00864,0.260608,0.005824,0.004416,0.00752,0.01296,0.014336,1.56877,0.011584
+851,407.684,2.45288,1.01651,0.008032,0.242496,0.004096,0.005632,0.006656,0.013536,0.014816,0.710976,0.010272
+852,742.702,1.34644,1.00349,0.008192,0.234528,0.005056,0.004128,0.007648,0.012832,0.014336,0.70656,0.010208
+853,699.633,1.42932,1.00147,0.009696,0.229312,0.004704,0.0056,0.00672,0.013376,0.013216,0.708608,0.01024
+854,643.924,1.55298,1.29837,0.008416,0.241344,0.004416,0.005248,0.007008,0.013696,0.014656,0.710528,0.293056
+855,515.837,1.9386,1.39933,0.010752,0.255072,0.004864,0.004256,0.006144,0.013984,0.01456,1.07946,0.01024
+856,535.25,1.86829,1.07114,0.0096,0.278624,0.00464,0.02048,0.007232,0.013248,0.014368,0.712704,0.01024
+857,712.286,1.40393,1.016,0.008896,0.233568,0.004096,0.005664,0.006624,0.013856,0.01472,0.718944,0.009632
+858,485.251,2.06079,1.01914,0.008192,0.232512,0.004864,0.004288,0.007584,0.012896,0.014336,0.724672,0.009792
+859,579.472,1.72571,1.22086,0.010688,0.44032,0.00576,0.00448,0.00736,0.013216,0.01536,0.713632,0.010048
+860,645.395,1.54944,1.00733,0.00944,0.231712,0.004608,0.004096,0.008064,0.013856,0.0144,0.7112,0.009952
+861,705.477,1.41748,1.00147,0.00864,0.231584,0.00576,0.00448,0.008128,0.012384,0.014304,0.706528,0.009664
+862,701.851,1.4248,1.32931,0.009248,0.232416,0.005216,0.0048,0.006368,0.01392,0.014432,1.00384,0.039072
+863,502.885,1.98853,1.24067,0.009472,0.232192,0.00528,0.0048,0.006336,0.014112,0.014208,0.710976,0.243296
+864,616.775,1.62134,0.99952,0.008256,0.229376,0.005312,0.004704,0.0064,0.014112,0.014176,0.706912,0.010272
+865,698.618,1.4314,1.03424,0.008416,0.248608,0.004864,0.004352,0.007552,0.012928,0.014336,0.722944,0.01024
+866,713.34,1.40186,1.00874,0.008352,0.233312,0.005856,0.004384,0.007424,0.013056,0.014336,0.712192,0.009824
+867,677.473,1.47607,1.64374,0.009344,0.465792,0.015904,0.004576,0.008032,0.014272,0.014208,1.10128,0.010336
+868,432.889,2.31006,1.0184,0.008608,0.237728,0.005216,0.004768,0.006368,0.014144,0.014176,0.718528,0.008864
+869,727.531,1.37451,1.01962,0.009888,0.23792,0.004096,0.0056,0.006688,0.013664,0.01488,0.716928,0.009952
+870,730.125,1.36963,1.01347,0.009536,0.232128,0.005536,0.004704,0.006336,0.014176,0.014304,0.7168,0.009952
+871,706.572,1.41528,1.77152,0.008192,0.239616,0.004096,0.005632,0.006656,0.013472,0.0144,1.46493,0.014528
+872,455.769,2.19409,1.17338,0.009376,0.405472,0.004928,0.00416,0.00768,0.01408,0.014368,0.7032,0.010112
+873,653.895,1.5293,0.99568,0.008672,0.227456,0.004128,0.005504,0.006784,0.0136,0.014592,0.704992,0.009952
+874,696.836,1.43506,1.00966,0.008192,0.229376,0.005792,0.004448,0.007328,0.013152,0.014368,0.718144,0.008864
+875,692.36,1.44434,1.74224,0.008192,0.237568,0.005696,0.004544,0.007328,0.013152,0.014336,1.4368,0.014624
+876,467.954,2.13696,1.38381,0.008384,0.235328,0.00544,0.004768,0.006176,0.014368,0.014272,1.08342,0.011648
+877,483.818,2.06689,1.03792,0.008384,0.249856,0.004096,0.005728,0.00656,0.014208,0.014016,0.725152,0.00992
+878,852.445,1.1731,1.02182,0.009472,0.23424,0.005568,0.004672,0.006144,0.014336,0.014336,0.722944,0.010112
+879,653.478,1.53027,1.2969,0.008928,0.23984,0.005312,0.0048,0.006272,0.014144,0.014368,0.710816,0.292416
+880,518.284,1.92944,1.40528,0.010976,0.241312,0.004448,0.005248,0.007008,0.013344,0.013408,1.09706,0.01248
+881,565.433,1.76855,1.00445,0.008928,0.227264,0.004352,0.00528,0.007008,0.012288,0.014336,0.715968,0.009024
+882,684.606,1.46069,0.999776,0.008576,0.231392,0.004128,0.005536,0.006752,0.013632,0.014176,0.705376,0.010208
+883,701.971,1.42456,1.01594,0.009408,0.232224,0.004128,0.005536,0.006752,0.013472,0.0144,0.72112,0.008896
+884,504.993,1.98022,1.24685,0.011936,0.239968,0.005856,0.004384,0.007392,0.013088,0.014336,0.709696,0.240192
+885,627.932,1.59253,1.00816,0.008992,0.229152,0.004512,0.004192,0.008,0.012416,0.014304,0.7168,0.009792
+886,677.025,1.47705,1.00352,0.008192,0.233472,0.005184,0.0048,0.0064,0.013952,0.014176,0.708192,0.009152
+887,671.806,1.48853,1.024,0.009728,0.235744,0.004384,0.005248,0.008128,0.013088,0.014336,0.724544,0.0088
+888,624.676,1.60083,1.86368,0.008192,0.241664,0.005248,0.0048,0.006336,0.01536,0.014816,1.55645,0.010816
+889,429.305,2.32935,1.01558,0.008064,0.23552,0.004864,0.004128,0.007776,0.012736,0.014432,0.718208,0.009856
+890,718.47,1.39185,1.01786,0.008192,0.228544,0.004864,0.00416,0.007584,0.014176,0.014592,0.725504,0.01024
+891,692.477,1.44409,1.00707,0.008544,0.232736,0.00448,0.005184,0.007104,0.014176,0.01408,0.711008,0.00976
+892,684.149,1.46167,1.87357,0.00944,0.240352,0.004384,0.005824,0.006464,0.01408,0.014144,1.56691,0.011968
+893,419.973,2.3811,1.00771,0.008192,0.233472,0.004096,0.005824,0.006464,0.013504,0.01424,0.713088,0.008832
+894,674.572,1.48242,1.02406,0.008576,0.231456,0.00544,0.004768,0.006208,0.014304,0.014336,0.729088,0.009888
+895,733.919,1.36255,1.02566,0.009632,0.23392,0.004256,0.005408,0.006912,0.013536,0.014592,0.727552,0.009856
+896,693.297,1.44238,1.76992,0.00864,0.234048,0.005408,0.0048,0.007328,0.013184,0.014336,1.46637,0.015808
+897,446.285,2.24072,1.19632,0.007968,0.404256,0.004288,0.005568,0.00672,0.014368,0.014304,0.72864,0.010208
+898,637.907,1.56763,1.02643,0.008544,0.233664,0.004416,0.005248,0.007008,0.01376,0.014304,0.729728,0.00976
+899,722.909,1.3833,1.00173,0.008448,0.22528,0.00544,0.0048,0.006144,0.014336,0.014368,0.712704,0.010208
+900,683.008,1.46411,1.33798,0.008608,0.23552,0.004608,0.005184,0.007008,0.013792,0.014944,1.0015,0.046816
+901,510.214,1.95996,1.38813,0.00976,0.231008,0.004864,0.004224,0.00768,0.0128,0.014336,1.09098,0.01248
+902,558.495,1.79053,1.00147,0.008192,0.226944,0.00448,0.005184,0.007008,0.013504,0.014304,0.712832,0.009024
+903,707.427,1.41357,1.01488,0.009472,0.229152,0.004864,0.00432,0.007456,0.013056,0.014304,0.722496,0.00976
+904,692.477,1.44409,1.01418,0.008576,0.233056,0.004544,0.005792,0.006496,0.013568,0.014336,0.717568,0.01024
+905,690.26,1.44873,1.63126,0.009216,0.455424,0.021984,0.004896,0.00768,0.014048,0.014496,1.09334,0.010176
+906,399.181,2.50513,1.10512,0.009536,0.326368,0.006112,0.004096,0.007712,0.012768,0.014336,0.714368,0.009824
+907,718.344,1.39209,1.02291,0.008928,0.255968,0.004384,0.00528,0.00704,0.013472,0.014336,0.703296,0.010208
+908,560.712,1.78345,1.07664,0.008192,0.294912,0.006144,0.006144,0.008032,0.013664,0.014688,0.7152,0.009664
+909,792.263,1.26221,1.70832,0.008512,0.519584,0.008672,0.005568,0.006816,0.014368,0.014336,1.12022,0.01024
+910,425.161,2.35205,1.05165,0.008512,0.26672,0.00432,0.005312,0.006976,0.01392,0.014432,0.72224,0.009216
+911,716.334,1.396,0.990272,0.008224,0.229056,0.004416,0.005248,0.00704,0.012288,0.014336,0.699808,0.009856
+912,720.493,1.38794,1.00538,0.008192,0.22672,0.004704,0.004096,0.007872,0.012608,0.014336,0.7168,0.010048
+913,703.659,1.42114,1.82371,0.008896,0.237856,0.005536,0.004704,0.006144,0.01424,0.014432,1.51955,0.012352
+914,427.557,2.33887,1.01168,0.00848,0.233824,0.005824,0.004416,0.007392,0.013088,0.014336,0.714688,0.009632
+915,710.864,1.40674,0.998784,0.00848,0.225248,0.005696,0.004544,0.007296,0.013184,0.014336,0.71008,0.00992
+916,711.235,1.40601,1.01494,0.008192,0.230464,0.004896,0.004256,0.00752,0.01296,0.0144,0.722496,0.00976
+917,688.519,1.45239,1.73331,0.008896,0.233792,0.00512,0.004832,0.006432,0.012288,0.015584,1.43203,0.014336
+918,459.553,2.17603,1.18467,0.008736,0.405888,0.0056,0.00464,0.006144,0.014336,0.015456,0.714784,0.009088
+919,478.114,2.09155,1.02819,0.008224,0.25392,0.005248,0.004864,0.006272,0.014144,0.014528,0.712192,0.0088
+920,1010.36,0.989746,1.0376,0.008288,0.255104,0.004864,0.004224,0.007584,0.012896,0.014336,0.720736,0.009568
+921,654.731,1.52734,1.32301,0.008448,0.274176,0.005568,0.004672,0.0072,0.01328,0.01552,0.706752,0.287392
+922,520.061,1.92285,1.41597,0.011008,0.2392,0.004544,0.00512,0.00704,0.012416,0.015424,1.11098,0.01024
+923,544.536,1.83643,1.01184,0.008576,0.235488,0.004128,0.005536,0.006752,0.013408,0.0144,0.713568,0.009984
+924,703.901,1.42065,1.0025,0.009472,0.22608,0.005696,0.004512,0.007264,0.013216,0.014336,0.712288,0.009632
+925,681.531,1.46729,1.00886,0.00944,0.234208,0.00416,0.005472,0.006816,0.012352,0.015488,0.711392,0.009536
+926,447.699,2.23364,1.40064,0.011936,0.239968,0.004128,0.005696,0.00656,0.013856,0.014528,1.0929,0.011072
+927,566.45,1.76538,1.00966,0.008352,0.224672,0.004544,0.005248,0.006912,0.012416,0.015552,0.72176,0.010208
+928,709.018,1.4104,1.00771,0.008192,0.224576,0.00464,0.004256,0.00752,0.012992,0.015392,0.721504,0.00864
+929,622.114,1.60742,1.09773,0.0096,0.309184,0.0048,0.005184,0.00704,0.012352,0.015456,0.723872,0.01024
+930,483.932,2.06641,1.40771,0.010944,0.245568,0.004352,0.005312,0.006976,0.013408,0.014528,1.09395,0.012672
+931,536.828,1.86279,1.00563,0.008256,0.228832,0.00464,0.004096,0.007968,0.012512,0.014336,0.714752,0.01024
+932,753.218,1.32764,1.0097,0.008224,0.226272,0.004864,0.004352,0.007488,0.013024,0.014304,0.722304,0.008864
+933,698.857,1.43091,1.03014,0.009568,0.242336,0.004096,0.005632,0.007744,0.013248,0.014368,0.722912,0.01024
+934,477.389,2.09473,1.25965,0.01152,0.243488,0.004832,0.004352,0.00752,0.01408,0.014656,0.948608,0.010592
+935,615.385,1.625,0.999424,0.008192,0.227328,0.004096,0.00576,0.006528,0.01392,0.014464,0.71008,0.009056
+936,709.633,1.40918,1.00144,0.009408,0.222016,0.004096,0.005824,0.006496,0.014272,0.0144,0.71472,0.010208
+937,721,1.38696,1.00646,0.008896,0.22544,0.005472,0.004768,0.006144,0.013824,0.014048,0.719072,0.0088
+938,643.115,1.55493,1.74877,0.009312,0.244064,0.004672,0.004096,0.007776,0.013952,0.0144,1.43642,0.01408
+939,446.82,2.23804,1.03242,0.00816,0.254944,0.00512,0.0048,0.006432,0.01424,0.014432,0.7144,0.009888
+940,706.694,1.41504,1.01603,0.008416,0.22528,0.005216,0.0048,0.0064,0.013984,0.014272,0.728672,0.008992
+941,713.589,1.40137,1.00662,0.00976,0.227808,0.005504,0.004736,0.006176,0.01408,0.014528,0.71424,0.009792
+942,715.458,1.39771,1.81501,0.008672,0.227328,0.005344,0.004832,0.008032,0.013856,0.01472,1.52112,0.011104
+943,441.427,2.26538,1.18755,0.008672,0.405472,0.004096,0.005824,0.006464,0.014336,0.014336,0.718336,0.010016
+944,623.25,1.60449,1.01149,0.00832,0.228384,0.004832,0.004352,0.007456,0.013056,0.014304,0.720864,0.00992
+945,706.085,1.41626,1.0001,0.008864,0.22736,0.005376,0.0048,0.007296,0.01312,0.014304,0.709792,0.009184
+946,649.54,1.53955,1.3255,0.008608,0.231424,0.005184,0.0048,0.007776,0.01296,0.014336,0.714464,0.325952
+947,400,2.5,1.39162,0.00896,0.233536,0.004288,0.005376,0.006944,0.014112,0.014464,1.0937,0.01024
+948,787.087,1.27051,1.00374,0.008416,0.231232,0.004288,0.005408,0.00688,0.013664,0.014304,0.709312,0.01024
+949,707.06,1.41431,1.02186,0.008608,0.249792,0.004256,0.00528,0.006976,0.013504,0.014304,0.70944,0.009696
+950,704.749,1.41895,1.00525,0.008448,0.237568,0.00576,0.00448,0.007424,0.013056,0.014336,0.704512,0.009664
+951,612.99,1.63135,1.45613,0.034176,0.422272,0.005536,0.00496,0.007712,0.014208,0.01424,0.712704,0.24032
+952,515.22,1.94092,0.99632,0.009184,0.229376,0.005792,0.004448,0.007552,0.012928,0.014368,0.702432,0.01024
+953,754.745,1.32495,1.01747,0.008192,0.237248,0.004416,0.005248,0.007008,0.01232,0.014336,0.718848,0.009856
+954,705.356,1.41772,1.00627,0.008576,0.226656,0.004864,0.00432,0.007232,0.013248,0.014336,0.71808,0.00896
+955,662.14,1.51025,1.75309,0.00976,0.237184,0.004832,0.004224,0.007616,0.012896,0.014304,1.44794,0.014336
+956,438.45,2.28076,1.01149,0.00944,0.232224,0.005472,0.004768,0.006176,0.014336,0.014304,0.714752,0.010016
+957,620.606,1.61133,1.03786,0.01024,0.264224,0.00512,0.004768,0.006464,0.013952,0.0144,0.708928,0.00976
+958,685.064,1.45972,1.04061,0.008416,0.249504,0.004448,0.005216,0.00704,0.018144,0.022432,0.715168,0.01024
+959,652.957,1.53149,1.65843,0.008224,0.44032,0.007328,0.00496,0.010272,0.051168,0.014336,1.11181,0.010016
+960,447.993,2.23218,1.01926,0.009344,0.229824,0.004544,0.004096,0.008032,0.01392,0.014336,0.725408,0.00976
+961,697.548,1.43359,0.998976,0.008192,0.221664,0.005888,0.004352,0.007424,0.013088,0.014304,0.714368,0.009696
+962,671.475,1.48926,1.00979,0.008192,0.233344,0.004224,0.00544,0.006848,0.013696,0.01424,0.71488,0.008928
+963,746.356,1.33984,1.75565,0.008608,0.243968,0.004096,0.005632,0.006656,0.014112,0.014592,1.44371,0.014272
+964,464.294,2.15381,1.18784,0.008192,0.405088,0.004512,0.005216,0.00704,0.013984,0.014368,0.7192,0.01024
+965,607.805,1.64526,1.00227,0.008288,0.225984,0.005536,0.004704,0.006144,0.014048,0.014144,0.713184,0.01024
+966,728.437,1.3728,1.00291,0.008192,0.230816,0.004704,0.005376,0.006912,0.013888,0.0144,0.70896,0.009664
+967,704.506,1.41943,1.29837,0.009632,0.231136,0.004864,0.004224,0.007616,0.012864,0.014336,0.708608,0.305088
+968,494.387,2.02271,1.23856,0.010368,0.235392,0.004096,0.005632,0.006656,0.014336,0.014336,0.70656,0.241184
+969,625.439,1.59888,1.02986,0.008224,0.233216,0.00432,0.005984,0.006304,0.013696,0.014976,0.733184,0.009952
+970,702.212,1.42407,1.01856,0.008512,0.225344,0.004416,0.005248,0.006944,0.012384,0.014336,0.73216,0.009216
+971,692.594,1.44385,1.00198,0.008704,0.226688,0.004736,0.004096,0.007872,0.012608,0.014336,0.714112,0.008832
+972,687.71,1.4541,1.73619,0.008192,0.520192,0.045056,0.009376,0.007008,0.014368,0.014336,1.10774,0.00992
+973,433.577,2.3064,1.01376,0.009856,0.22944,0.004416,0.00528,0.007008,0.012288,0.014336,0.722176,0.00896
+974,661.392,1.51196,1.0169,0.0096,0.230016,0.005664,0.004576,0.008,0.013664,0.014272,0.721376,0.009728
+975,717.464,1.3938,1.00554,0.008832,0.233312,0.004256,0.005408,0.006912,0.013504,0.014528,0.70896,0.009824
+976,483.646,2.06763,1.86368,0.00928,0.271296,0.005408,0.0048,0.00624,0.014304,0.014304,1.52576,0.012288
+977,581.901,1.71851,1.00352,0.008192,0.236576,0.004864,0.00432,0.007232,0.01328,0.014304,0.704512,0.01024
+978,707.793,1.41284,1.00755,0.008352,0.228704,0.004768,0.004096,0.008192,0.013824,0.0144,0.7152,0.010016
+979,690.609,1.448,1.00259,0.009344,0.227264,0.004864,0.004288,0.00752,0.01296,0.014336,0.71232,0.009696
+980,688.866,1.45166,1.78586,0.009568,0.235936,0.004352,0.00528,0.007008,0.013728,0.014464,1.48118,0.014336
+981,448.238,2.23096,1.19021,0.009504,0.40448,0.005792,0.004448,0.007392,0.013088,0.014336,0.72224,0.008928
+982,633.467,1.57861,1.01395,0.008352,0.227232,0.004192,0.005472,0.006816,0.01344,0.0144,0.723808,0.01024
+983,705.72,1.41699,1.00762,0.009792,0.227008,0.004864,0.004096,0.007808,0.013792,0.014688,0.715328,0.01024
+984,679.947,1.4707,1.32003,0.008192,0.232704,0.004864,0.004096,0.008224,0.014336,0.014304,1.01958,0.013728
+985,513.798,1.94629,1.39354,0.008864,0.229728,0.005376,0.004768,0.006272,0.014016,0.014272,1.09795,0.012288
+986,531.534,1.88135,1.02218,0.008416,0.247808,0.005312,0.0048,0.006272,0.014336,0.014336,0.710656,0.01024
+987,707.549,1.41333,1.01581,0.009472,0.236288,0.005312,0.0048,0.006272,0.013792,0.014208,0.715552,0.010112
+988,682.326,1.46558,1.00646,0.008704,0.22768,0.00544,0.0048,0.00752,0.01296,0.014336,0.71616,0.008864
+989,501.899,1.99243,1.26362,0.012288,0.231008,0.004512,0.005184,0.007008,0.012384,0.014368,0.966208,0.010656
+990,603.151,1.65796,1.02198,0.01024,0.227328,0.004096,0.005664,0.006624,0.014016,0.014112,0.731008,0.008896
+991,691.541,1.44604,0.999456,0.009792,0.225568,0.004256,0.006016,0.007392,0.013248,0.014304,0.708608,0.010272
+992,687.018,1.45557,1.03424,0.008192,0.230912,0.004608,0.004096,0.008,0.013984,0.029216,0.724992,0.01024
+993,692.945,1.44312,1.82506,0.0088,0.229376,0.005888,0.004352,0.007488,0.012896,0.014432,1.52986,0.011968
+994,415.037,2.40942,1.01379,0.008192,0.231424,0.005536,0.004704,0.007232,0.013248,0.014336,0.719936,0.009184
+995,643.115,1.55493,1.0439,0.008448,0.268288,0.004096,0.005568,0.00672,0.013696,0.014336,0.713024,0.009728
+996,711.235,1.40601,1.00186,0.00864,0.22768,0.00416,0.005504,0.006784,0.013536,0.014176,0.711616,0.00976
+997,696.954,1.43481,1.82294,0.008864,0.231552,0.004096,0.005696,0.006592,0.0136,0.014624,1.52621,0.011712
+998,422.094,2.36914,1.00246,0.008512,0.225984,0.00576,0.004448,0.007808,0.0128,0.014208,0.712704,0.01024
+999,703.055,1.42236,1.00762,0.009312,0.226208,0.004096,0.005728,0.00656,0.01344,0.01424,0.718912,0.00912
+1000,666.667,1.5,1.04448,0.009216,0.24256,0.004224,0.00544,0.00688,0.014016,0.014624,0.72704,0.02048
+1001,711.976,1.40454,1.71264,0.00896,0.527904,0.0064,0.005568,0.006944,0.014048,0.014432,1.1184,0.009984
+1002,466.621,2.14307,1.19603,0.009696,0.405792,0.004352,0.005248,0.007008,0.014144,0.01456,0.724992,0.01024
+1003,605.738,1.65088,1.00403,0.008384,0.223552,0.004096,0.005696,0.006624,0.014016,0.014336,0.717088,0.01024
+1004,680.964,1.46851,1.01581,0.008224,0.23344,0.004096,0.0056,0.00672,0.014144,0.014528,0.718816,0.01024
+1005,724.059,1.3811,1.31366,0.008192,0.229344,0.004864,0.004256,0.007648,0.012832,0.014336,0.712736,0.319456
+1006,517.564,1.93213,1.3767,0.008608,0.229824,0.005824,0.004384,0.007648,0.012832,0.014336,1.08282,0.010432
+1007,557.431,1.79395,0.998976,0.008384,0.227168,0.005152,0.0048,0.0064,0.013536,0.014432,0.709312,0.009792
+1008,707.427,1.41357,1.00454,0.008192,0.22528,0.004096,0.0056,0.006688,0.014336,0.014336,0.716384,0.009632
+1009,689.562,1.4502,1.31741,0.008736,0.233472,0.005888,0.004352,0.008192,0.012288,0.015488,0.713568,0.315424
+1010,517.76,1.9314,1.24285,0.009312,0.227424,0.004864,0.00416,0.007648,0.012832,0.014336,0.950272,0.012
+1011,609.978,1.6394,1.01584,0.009312,0.226208,0.005568,0.004672,0.0072,0.013088,0.01456,0.726336,0.008896
+1012,685.867,1.45801,1.00026,0.00864,0.223616,0.004096,0.005728,0.00656,0.013536,0.014752,0.713088,0.01024
+1013,718.219,1.39233,1.01629,0.00864,0.223264,0.004096,0.005632,0.006656,0.013632,0.014624,0.729504,0.01024
+1014,470.318,2.12622,1.73162,0.008192,0.501024,0.006528,0.004448,0.007872,0.01424,0.059808,1.11939,0.010112
+1015,617.053,1.62061,0.999712,0.008448,0.2304,0.004864,0.004352,0.008128,0.01248,0.014208,0.706688,0.010144
+1016,720.239,1.38843,1.00598,0.008768,0.223072,0.004256,0.00544,0.006848,0.01408,0.014368,0.719072,0.01008
+1017,710.248,1.40796,1.01498,0.009504,0.223968,0.00528,0.0048,0.006304,0.013792,0.014208,0.727456,0.009664
+1018,679.496,1.47168,1.83901,0.009376,0.23232,0.005696,0.004512,0.007392,0.01312,0.014304,1.5401,0.012192
+1019,440.667,2.26929,1.19034,0.00864,0.406688,0.00496,0.004096,0.00784,0.014112,0.014208,0.719552,0.01024
+1020,460.121,2.17334,1.01862,0.008608,0.233344,0.004576,0.004096,0.007904,0.013664,0.0144,0.723392,0.00864
+1021,705.234,1.41797,1.00538,0.008384,0.22528,0.005344,0.0048,0.006272,0.013792,0.014112,0.717536,0.009856
+1022,650.262,1.53784,1.82989,0.008704,0.229376,0.004608,0.004096,0.008064,0.014208,0.014368,1.53552,0.010944
+1023,450.506,2.21973,1.00781,0.008064,0.232,0.005536,0.004704,0.006336,0.014176,0.01408,0.712928,0.009984
+1024,678.033,1.47485,0.999872,0.008512,0.225472,0.005248,0.0048,0.006304,0.014176,0.014496,0.710656,0.010208
+1025,688.403,1.45264,1.00947,0.008704,0.22528,0.005312,0.004768,0.006304,0.013856,0.01424,0.721216,0.009792
+1026,753.634,1.3269,1.82918,0.008544,0.231808,0.004096,0.0056,0.00672,0.01392,0.014464,1.53216,0.011872
+1027,428.766,2.33228,1.18061,0.007104,0.405504,0.005536,0.004704,0.006144,0.014336,0.014336,0.712736,0.010208
+1028,639.5,1.56372,1.00109,0.008192,0.231104,0.004416,0.005248,0.00704,0.012384,0.01424,0.708608,0.009856
+1029,457.858,2.18408,1.03472,0.008672,0.247808,0.004096,0.00576,0.006528,0.013728,0.0144,0.72272,0.011008
+1030,1131.18,0.884033,1.80205,0.008448,0.2736,0.004768,0.004256,0.007552,0.012928,0.014336,1.46218,0.013984
+1031,459.502,2.17627,1.18701,0.007456,0.404192,0.005184,0.0048,0.0064,0.014336,0.014336,0.72048,0.009824
+1032,635.63,1.57324,1.00762,0.00976,0.227456,0.004448,0.005248,0.00704,0.013696,0.014208,0.716608,0.009152
+1033,694.944,1.43896,1.01162,0.008864,0.228864,0.004608,0.005664,0.006656,0.013312,0.014336,0.719424,0.009888
+1034,637.51,1.5686,1.34045,0.008352,0.25584,0.005856,0.004384,0.007456,0.013024,0.014336,0.714752,0.316448
+1035,520.325,1.92188,1.39264,0.008224,0.235424,0.00416,0.005504,0.006784,0.013792,0.014624,1.09184,0.012288
+1036,580.006,1.72412,1.00214,0.008608,0.2296,0.005184,0.0048,0.0064,0.01424,0.014432,0.70976,0.00912
+1037,712.596,1.40332,1.01366,0.009472,0.223136,0.004864,0.004192,0.007936,0.012544,0.014336,0.72704,0.010144
+1038,673.573,1.48462,1.03245,0.009504,0.255968,0.004864,0.004352,0.007328,0.013152,0.014336,0.714016,0.008928
+1039,620.136,1.61255,1.90874,0.009696,0.460416,0.017344,0.00608,0.00624,0.014272,0.014336,1.36602,0.014336
+1040,459.296,2.17725,1.00874,0.00976,0.237056,0.004864,0.00432,0.007552,0.012928,0.014336,0.708288,0.009632
+1041,716.961,1.39478,1.00323,0.008608,0.23344,0.004128,0.005504,0.006784,0.012288,0.014496,0.708448,0.009536
+1042,692.711,1.4436,1.02128,0.008192,0.240736,0.004832,0.004288,0.007552,0.012928,0.014336,0.718752,0.009664
+1043,659.369,1.5166,1.63341,0.009856,0.45264,0.018784,0.006144,0.006176,0.014304,0.014336,1.10157,0.0096
+1044,492.485,2.03052,1.00179,0.008896,0.229376,0.005504,0.004736,0.007392,0.013088,0.014336,0.708608,0.009856
+1045,688.056,1.45337,1.02426,0.00848,0.249856,0.005504,0.004736,0.0072,0.012928,0.01472,0.710624,0.010208
+1046,702.452,1.42358,1.03414,0.008192,0.247392,0.004512,0.004096,0.007712,0.012768,0.014336,0.724992,0.010144
+1047,643.115,1.55493,1.75373,0.008096,0.238304,0.005408,0.004768,0.00624,0.014304,0.014336,1.4479,0.014368
+1048,449.418,2.2251,1.19398,0.010272,0.415712,0.004096,0.005728,0.00656,0.014368,0.014304,0.714336,0.008608
+1049,678.146,1.47461,1.00496,0.008384,0.229152,0.00432,0.005344,0.006944,0.013952,0.014592,0.712416,0.009856
+1050,675.128,1.4812,1.0193,0.008192,0.230912,0.004608,0.004096,0.008032,0.013664,0.014176,0.725984,0.009632
+1051,675.573,1.48022,1.34403,0.008672,0.260032,0.004224,0.005536,0.006784,0.013504,0.015136,1.01722,0.012928
+1052,523.451,1.9104,1.38877,0.008576,0.227904,0.005504,0.004736,0.006144,0.014336,0.0144,1.09562,0.011552
+1053,521.584,1.91724,1.04774,0.008192,0.243712,0.005376,0.004832,0.006272,0.01408,0.014528,0.741056,0.009696
+1054,704.385,1.41968,0.999456,0.008416,0.226784,0.00464,0.004096,0.007808,0.013984,0.01456,0.70912,0.010048
+1055,670.706,1.49097,1.02269,0.00896,0.228768,0.004896,0.004128,0.022528,0.013696,0.014464,0.715264,0.009984
+1056,556.824,1.7959,2.0687,0.008832,0.480576,0.034592,0.0048,0.006368,0.018432,0.01536,1.48787,0.011872
+1057,354.816,2.81836,1.06966,0.00864,0.266432,0.005824,0.004352,0.018368,0.014368,0.014368,0.728192,0.00912
+1058,1382.38,0.723389,1.00058,0.008192,0.227328,0.00576,0.00448,0.00736,0.013152,0.014304,0.709952,0.010048
+1059,662.89,1.50854,1.33907,0.008224,0.25392,0.00512,0.004832,0.006432,0.014208,0.014304,1.00368,0.028352
+1060,521.717,1.91675,1.24928,0.009408,0.230048,0.004256,0.005408,0.006912,0.013792,0.01456,0.954528,0.010368
+1061,621.925,1.60791,1.01366,0.009536,0.225952,0.004128,0.005472,0.006816,0.013632,0.014144,0.72384,0.010144
+1062,696.717,1.4353,1.0247,0.008896,0.22528,0.005824,0.004416,0.007488,0.012992,0.014336,0.735264,0.010208
+1063,682.098,1.46606,1.0199,0.008192,0.22672,0.004704,0.004096,0.00784,0.01264,0.014336,0.731168,0.010208
+1064,615.385,1.625,1.21158,0.01024,0.42336,0.004704,0.005696,0.006592,0.014304,0.014336,0.72272,0.009632
+1065,541.226,1.84766,1.00819,0.008768,0.226944,0.00448,0.005152,0.006784,0.012704,0.014432,0.718688,0.01024
+1066,699.693,1.4292,1.00173,0.008448,0.229376,0.00528,0.004832,0.006272,0.013824,0.014336,0.710496,0.008864
+1067,617.612,1.61914,1.02669,0.008672,0.240896,0.004864,0.004096,0.007744,0.01408,0.01504,0.7224,0.008896
+1068,793.952,1.25952,1.72954,0.008672,0.231968,0.004096,0.005632,0.006656,0.013984,0.0144,1.42979,0.014336
+1069,458.114,2.18286,1.21267,0.008032,0.434624,0.004672,0.004128,0.008032,0.014208,0.014208,0.715136,0.009632
+1070,618.078,1.61792,1.01603,0.008576,0.22928,0.004256,0.005408,0.006784,0.013536,0.014304,0.723872,0.010016
+1071,715.209,1.39819,1.01136,0.009664,0.223808,0.004096,0.005728,0.00656,0.013888,0.014368,0.72336,0.009888
+1072,652.749,1.53198,1.02096,0.022048,0.23504,0.004864,0.004288,0.007616,0.012896,0.015392,0.709056,0.00976
+1073,492.722,2.02954,1.40083,0.011552,0.23424,0.005632,0.004576,0.007232,0.013248,0.014336,1.0977,0.01232
+1074,560.482,1.78418,1.00755,0.009376,0.227712,0.004576,0.004096,0.007968,0.013632,0.0144,0.715616,0.010176
+1075,692.945,1.44312,1.00762,0.008256,0.225216,0.005216,0.0048,0.006368,0.014112,0.01424,0.720512,0.008896
+1076,715.834,1.39697,1.02214,0.008416,0.235136,0.004448,0.004096,0.007872,0.013696,0.014336,0.723904,0.01024
+1077,366.729,2.72681,1.1959,0.012288,0.404704,0.004896,0.004096,0.007712,0.014336,0.014816,0.722944,0.010112
+1078,646.261,1.54736,1.01386,0.009568,0.229152,0.004864,0.004224,0.007616,0.01392,0.01328,0.722336,0.008896
+1079,676.913,1.47729,1.03232,0.008576,0.226912,0.004512,0.005152,0.006976,0.012448,0.014336,0.743424,0.009984
+1080,684.263,1.46143,1.31888,0.008576,0.235296,0.004896,0.004096,0.008064,0.01344,0.01456,1.01658,0.013376
+1081,515.479,1.93994,1.39286,0.008096,0.227648,0.005728,0.004512,0.007392,0.013024,0.0144,1.09978,0.012288
+1082,550.39,1.81689,1.02438,0.00848,0.22528,0.005408,0.004832,0.006176,0.014208,0.014432,0.736672,0.008896
+1083,689.678,1.44995,1.00378,0.00864,0.223488,0.005216,0.0048,0.006368,0.013856,0.014752,0.716864,0.009792
+1084,720.239,1.38843,1.01162,0.008192,0.231296,0.004224,0.005536,0.006752,0.013696,0.014752,0.717024,0.010144
+1085,475.56,2.10278,1.03286,0.011936,0.234464,0.005856,0.004384,0.007424,0.013024,0.0144,0.732736,0.00864
+1086,645.039,1.55029,1.01994,0.008192,0.231456,0.004064,0.006144,0.006144,0.014336,0.014336,0.724992,0.010272
+1087,702.693,1.4231,1.0177,0.008256,0.228704,0.004768,0.004096,0.00768,0.0128,0.014368,0.727008,0.010016
+1088,687.018,1.45557,1.00525,0.008448,0.231424,0.004096,0.005696,0.006592,0.013888,0.0144,0.71104,0.009664
+1089,702.332,1.42383,1.82573,0.008928,0.227552,0.005312,0.004928,0.007808,0.012672,0.014336,1.5319,0.012288
+1090,426.489,2.34473,1.01786,0.009856,0.23136,0.004544,0.00512,0.007008,0.013856,0.01424,0.722848,0.009024
+1091,689.911,1.44946,1.0199,0.009568,0.227456,0.00464,0.004096,0.007968,0.012512,0.014336,0.730208,0.00912
+1092,707.06,1.41431,1.01738,0.009376,0.226144,0.005632,0.004608,0.006144,0.014144,0.014528,0.727008,0.009792
+1093,695.298,1.43823,1.83466,0.008192,0.231168,0.004352,0.005312,0.006976,0.012288,0.014336,1.54,0.012032
+1094,408.009,2.45093,1.02224,0.00832,0.227328,0.005344,0.004832,0.007936,0.01376,0.014464,0.731328,0.008928
+1095,635.039,1.57471,1.04723,0.008224,0.256544,0.004192,0.005504,0.006784,0.01344,0.014464,0.729184,0.008896
+1096,713.092,1.40234,1.02064,0.008672,0.22672,0.004832,0.004192,0.007648,0.012832,0.014336,0.732576,0.008832
+1097,692.126,1.44482,1.34896,0.00848,0.261248,0.004864,0.004192,0.007584,0.012896,0.014336,1.00352,0.03184
+1098,515.609,1.93945,1.39062,0.008224,0.229408,0.00576,0.004448,0.007488,0.012992,0.014336,1.09725,0.01072
+1099,543.958,1.83838,1.00858,0.008224,0.230304,0.005472,0.004768,0.006176,0.014304,0.014336,0.71584,0.009152
+1100,721.889,1.38525,1.01376,0.008192,0.229376,0.005408,0.0048,0.006208,0.014336,0.014304,0.720896,0.01024
+1101,686.442,1.45679,1.32742,0.008928,0.2296,0.005152,0.0048,0.006432,0.01344,0.013344,1.00282,0.042912
+1102,481.203,2.07812,1.40672,0.008544,0.239264,0.004832,0.004096,0.007776,0.012768,0.014272,1.10288,0.012288
+1103,583.393,1.71411,1.04352,0.008352,0.227168,0.0056,0.00464,0.007744,0.012736,0.014336,0.753184,0.00976
+1104,684.035,1.46191,1.0288,0.008544,0.22544,0.004544,0.00512,0.007008,0.012448,0.0144,0.741312,0.009984
+1105,641.504,1.55884,1.04986,0.009696,0.250272,0.004224,0.00544,0.006848,0.01344,0.015104,0.735136,0.009696
+1106,635.827,1.57275,1.94771,0.008448,0.452224,0.032224,0.00464,0.006528,0.014208,0.014112,1.40118,0.014144
+1107,448.975,2.22729,1.01328,0.008192,0.235168,0.004448,0.005312,0.006976,0.012448,0.015328,0.715616,0.009792
+1108,721.381,1.38623,1.02234,0.008576,0.230528,0.004832,0.00528,0.007104,0.01344,0.01456,0.727776,0.01024
+1109,634.744,1.57544,1.05571,0.008896,0.262112,0.004416,0.005216,0.00704,0.01232,0.014496,0.732512,0.008704
+1110,438.92,2.27832,1.42746,0.011392,0.256896,0.0056,0.00464,0.007232,0.013248,0.014336,1.10182,0.012288
+1111,560.175,1.78516,1.01997,0.008064,0.230624,0.004864,0.004288,0.007488,0.012992,0.014368,0.727008,0.010272
+1112,679.158,1.47241,1.03165,0.009536,0.224992,0.004832,0.016544,0.00624,0.014016,0.014464,0.731328,0.009696
+1113,709.387,1.40967,1.02557,0.008288,0.233376,0.005216,0.0048,0.006368,0.013568,0.014496,0.729696,0.00976
+1114,471.835,2.11938,1.26832,0.010848,0.247744,0.00416,0.005504,0.006816,0.013472,0.0144,0.955136,0.01024
+1115,617.984,1.61816,1.02899,0.007072,0.239072,0.00464,0.004096,0.008192,0.012288,0.015648,0.727776,0.010208
+1116,682.78,1.4646,1.02403,0.008608,0.228768,0.004832,0.004288,0.008032,0.013632,0.01328,0.732768,0.009824
+1117,708.528,1.41138,1.01219,0.008928,0.227424,0.00512,0.0048,0.008192,0.012608,0.014464,0.720768,0.009888
+1118,666.775,1.49976,1.71869,0.008608,0.537984,0.006272,0.0048,0.006272,0.01424,0.014336,1.11562,0.01056
+1119,448.042,2.23193,1.02038,0.008928,0.231136,0.004576,0.004096,0.007776,0.012704,0.014368,0.727008,0.009792
+1120,710.125,1.4082,1.01139,0.008192,0.22528,0.005152,0.0048,0.006432,0.014016,0.01424,0.722976,0.010304
+1121,698.023,1.43262,1.0135,0.008768,0.228576,0.004864,0.004128,0.007712,0.012768,0.014336,0.722464,0.009888
+1122,686.903,1.45581,1.76278,0.008192,0.23712,0.004544,0.005152,0.006976,0.015872,0.014432,1.45594,0.01456
+1123,428.407,2.33423,1.20832,0.008192,0.407552,0.004096,0.005696,0.006592,0.014336,0.014336,0.73872,0.0088
+1124,643.014,1.55518,1.03978,0.00944,0.248608,0.005728,0.004512,0.007552,0.012928,0.014336,0.726912,0.00976
+1125,688.172,1.45312,1.00966,0.00944,0.22944,0.004832,0.005472,0.006816,0.01344,0.01456,0.71552,0.010144
+1126,704.385,1.41968,1.7537,0.008576,0.226624,0.004864,0.004256,0.008192,0.013696,0.0144,1.45875,0.014336
+1127,419.586,2.3833,1.21466,0.008,0.41984,0.00448,0.005216,0.006976,0.01392,0.01472,0.732288,0.009216
+1128,677.361,1.47632,1.01133,0.008192,0.22288,0.004448,0.005216,0.00816,0.013248,0.014368,0.72496,0.009856
+1129,710.988,1.40649,1.02573,0.008224,0.227296,0.005792,0.004448,0.00736,0.013024,0.014464,0.7352,0.00992
+1130,692.594,1.44385,1.78096,0.009312,0.228256,0.005344,0.004896,0.00624,0.014016,0.014368,1.48499,0.013536
+1131,444.782,2.24829,1.38922,0.008608,0.226624,0.004736,0.00416,0.007648,0.012832,0.014336,1.09978,0.010496
+1132,447.015,2.23706,1.09917,0.009728,0.25856,0.005792,0.004448,0.007424,0.023328,0.02992,0.75024,0.009728
+1133,942.259,1.06128,1.04579,0.008192,0.253952,0.005664,0.004576,0.00752,0.01296,0.014336,0.7288,0.009792
+1134,706.085,1.41626,1.32643,0.008192,0.229376,0.005312,0.004928,0.007456,0.013024,0.014336,1.01171,0.032096
+1135,503.441,1.98633,1.40093,0.008032,0.230976,0.0048,0.004096,0.008192,0.013632,0.014464,1.10445,0.012288
+1136,552.394,1.8103,1.03094,0.008992,0.229344,0.005472,0.004768,0.007712,0.012768,0.014336,0.738592,0.00896
+1137,671.145,1.48999,1.0199,0.00944,0.225568,0.004608,0.004096,0.008032,0.012448,0.014336,0.73216,0.009216
+1138,628.51,1.59106,1.03197,0.008544,0.223424,0.005344,0.018208,0.007136,0.013888,0.014624,0.731232,0.009568
+1139,637.411,1.56885,2.0472,0.017984,0.44272,0.040416,0.02224,0.00704,0.014304,0.014112,1.47629,0.012096
+1140,421.877,2.37036,1.01974,0.009536,0.225952,0.004128,0.005536,0.006752,0.013504,0.014656,0.7296,0.01008
+1141,701.851,1.4248,1.02061,0.008928,0.221472,0.004096,0.0056,0.006688,0.0136,0.014304,0.736,0.00992
+1142,643.519,1.55396,1.33018,0.008608,0.227936,0.00512,0.004832,0.006464,0.01408,0.014496,1.00358,0.045056
+1143,511.106,1.95654,1.29661,0.008416,0.233472,0.00576,0.00448,0.007392,0.01312,0.014208,0.99952,0.01024
+1144,606.455,1.64893,1.03709,0.008544,0.223744,0.005824,0.004416,0.007424,0.013056,0.014336,0.749568,0.010176
+1145,682.212,1.46582,1.05062,0.008192,0.246976,0.004864,0.00416,0.007648,0.012864,0.01552,0.741536,0.008864
+1146,627.355,1.59399,1.05264,0.00864,0.257888,0.004288,0.005792,0.006528,0.01424,0.014272,0.731232,0.00976
+1147,658.839,1.51782,1.22678,0.012256,0.423168,0.004896,0.006144,0.006144,0.014336,0.015616,0.73504,0.009184
+1148,590.712,1.69287,1.02093,0.008544,0.230048,0.005152,0.004832,0.007584,0.01312,0.014368,0.727008,0.010272
+1149,655.57,1.52539,1.02278,0.008928,0.226592,0.004864,0.004288,0.007776,0.012672,0.014336,0.733184,0.010144
+1150,746.764,1.33911,1.01997,0.008608,0.22976,0.00528,0.00496,0.007904,0.012576,0.014336,0.726912,0.009632
+1151,538.876,1.85571,1.78102,0.009312,0.230048,0.004352,0.005312,0.006976,0.012288,0.01584,1.48307,0.013824
+1152,543.741,1.83911,1.20669,0.008704,0.405504,0.005504,0.004736,0.006336,0.014144,0.014336,0.73728,0.010144
+1153,618.638,1.61646,1.03341,0.008352,0.231136,0.004352,0.00528,0.007008,0.012288,0.014336,0.740928,0.009728
+1154,706.329,1.41577,1.02109,0.008192,0.22528,0.005184,0.0048,0.007744,0.012992,0.014336,0.732768,0.009792
+1155,610.887,1.63696,1.06698,0.00864,0.25984,0.004352,0.005344,0.006944,0.012288,0.014432,0.745376,0.00976
+1156,644.836,1.55078,2.03706,0.008352,0.4648,0.00624,0.005504,0.006784,0.013952,0.014304,1.50525,0.011872
+1157,438.685,2.27954,1.02928,0.008192,0.231424,0.005728,0.004512,0.007296,0.013184,0.014336,0.734816,0.009792
+1158,698.142,1.43237,1.02496,0.008576,0.227424,0.004576,0.004096,0.008064,0.013472,0.01456,0.735104,0.009088
+1159,650.262,1.53784,1.36192,0.009312,0.256928,0.00512,0.0048,0.006464,0.014048,0.014304,1.01408,0.036864
+1160,387.072,2.5835,1.43462,0.008608,0.242272,0.004096,0.005728,0.00656,0.014208,0.014464,1.1264,0.012288
+1161,746.9,1.33887,1.07536,0.008,0.266336,0.004832,0.004096,0.007744,0.013984,0.014752,0.745856,0.00976
+1162,707.427,1.41357,1.05341,0.00864,0.243552,0.004544,0.00512,0.007104,0.013568,0.014272,0.747584,0.009024
+1163,624.581,1.60107,1.05056,0.008736,0.259488,0.004704,0.004096,0.007872,0.012608,0.014336,0.729024,0.009696
+1164,469.886,2.12817,1.42864,0.010336,0.259136,0.004864,0.004192,0.00768,0.0128,0.014336,1.10314,0.01216
+1165,586.904,1.70386,1.04675,0.008384,0.242688,0.004864,0.004352,0.00752,0.01296,0.014336,0.741376,0.010272
+1166,683.578,1.46289,1.02925,0.00944,0.228128,0.005696,0.004544,0.007168,0.013344,0.014304,0.736928,0.009696
+1167,673.573,1.48462,1.40678,0.008288,0.269344,0.004864,0.00432,0.007424,0.013088,0.014304,1.07315,0.012
+1168,500.305,1.99878,1.41379,0.008512,0.22928,0.004544,0.00512,0.00704,0.012512,0.015552,1.11894,0.012288
+1169,372.093,2.6875,1.05274,0.009856,0.241056,0.005088,0.004096,0.007904,0.012576,0.014368,0.747552,0.01024
+1170,1070.85,0.933838,1.02621,0.009248,0.228192,0.004224,0.006048,0.00624,0.01424,0.01424,0.734848,0.008928
+1171,654,1.52905,1.05744,0.018592,0.250368,0.004096,0.005664,0.006624,0.013856,0.014784,0.734336,0.00912
+1172,808.847,1.23633,2.06438,0.009312,0.4608,0.031648,0.005376,0.00688,0.014368,0.014144,1.51088,0.010976
+1173,397.786,2.51392,1.05242,0.009344,0.246656,0.005568,0.004672,0.006144,0.01392,0.014688,0.74144,0.009984
+1174,701.61,1.42529,1.02752,0.009536,0.223776,0.004256,0.00544,0.006848,0.013472,0.014496,0.739904,0.009792
+1175,693.532,1.44189,1.34758,0.009248,0.227776,0.00464,0.004096,0.007936,0.012544,0.015712,1.05254,0.013088
+1176,493.851,2.0249,1.31891,0.00928,0.224192,0.004096,0.005536,0.006752,0.013792,0.014464,1.02989,0.010912
+1177,580.006,1.72412,1.03197,0.00928,0.220096,0.005824,0.004416,0.007392,0.013088,0.014336,0.74752,0.010016
+1178,719.986,1.38892,1.03696,0.00912,0.221216,0.005696,0.004512,0.006176,0.014176,0.0144,0.75168,0.009984
+1179,546.644,1.82935,1.04282,0.008576,0.245056,0.0048,0.004096,0.008192,0.013472,0.014432,0.735488,0.008704
+1180,580.006,1.72412,1.03872,0.010624,0.229376,0.00576,0.00448,0.00736,0.013152,0.014304,0.744544,0.00912
+1181,613.449,1.63013,1.02794,0.008832,0.224576,0.0048,0.004096,0.007904,0.012576,0.015584,0.739712,0.009856
+1182,718.219,1.39233,1.03107,0.008512,0.219712,0.005536,0.004704,0.006208,0.014272,0.015456,0.747904,0.008768
+1183,697.667,1.43335,1.02157,0.008832,0.219136,0.005472,0.004768,0.006176,0.01392,0.014688,0.738848,0.009728
+1184,607.175,1.64697,1.65075,0.008576,0.444672,0.033792,0.004832,0.006432,0.014336,0.014368,1.11347,0.010272
+1185,523.384,1.91064,1.22061,0.008128,0.407232,0.00448,0.00528,0.007008,0.014208,0.014464,0.749568,0.01024
+1186,629.863,1.58765,1.02666,0.008512,0.220832,0.004736,0.004096,0.007872,0.013664,0.01472,0.743232,0.008992
+1187,718.849,1.39111,1.0192,0.00992,0.220736,0.004864,0.004096,0.00736,0.01312,0.014336,0.735008,0.00976
+1188,664.504,1.50488,1.3143,0.008704,0.2224,0.004832,0.004096,0.008192,0.014368,0.014304,1.02355,0.013856
+1189,519.072,1.92651,1.40698,0.008192,0.227328,0.0056,0.00464,0.008192,0.013952,0.014496,1.11229,0.012288
+1190,406.107,2.4624,1.01734,0.008448,0.222976,0.005792,0.004448,0.007456,0.013056,0.014304,0.731072,0.009792
+1191,1243.85,0.803955,1.02598,0.009536,0.221888,0.00544,0.0048,0.006144,0.014112,0.014592,0.739296,0.010176
+1192,669.281,1.49414,1.30867,0.0096,0.223488,0.00448,0.005184,0.006784,0.012608,0.014336,1.00906,0.023136
+1193,530.914,1.88354,1.25056,0.008192,0.235168,0.004448,0.005216,0.006976,0.012384,0.014336,0.95232,0.01152
+1194,603.062,1.6582,1.02813,0.009664,0.23104,0.004864,0.004288,0.007552,0.01296,0.014304,0.733184,0.010272
+1195,693.649,1.44165,1.03658,0.00848,0.223232,0.005792,0.004448,0.00736,0.01296,0.014496,0.750848,0.00896
+1196,711.482,1.40552,1.03536,0.008192,0.223264,0.005792,0.004416,0.007488,0.012992,0.014368,0.748928,0.00992
+1197,636.42,1.57129,1.64864,0.008192,0.464896,0.006144,0.005664,0.006656,0.014304,0.014304,1.11824,0.01024
+1198,446.431,2.23999,1.05472,0.009856,0.233888,0.005184,0.005024,0.007392,0.013088,0.014336,0.755712,0.01024
+1199,717.212,1.39429,1.03699,0.008896,0.227328,0.004096,0.005536,0.006752,0.014304,0.014368,0.746528,0.009184
+1200,700.41,1.42773,1.04243,0.0096,0.230016,0.004096,0.005728,0.00656,0.013792,0.014912,0.747488,0.01024
+1201,707.793,1.41284,1.8473,0.00992,0.225312,0.004384,0.00528,0.007008,0.01232,0.015424,1.55536,0.012288
+1202,417.533,2.39502,1.04685,0.00848,0.22688,0.004544,0.00512,0.007008,0.013664,0.014368,0.756512,0.010272
+1203,669.5,1.49365,1.04122,0.0088,0.223264,0.004352,0.005312,0.007008,0.013472,0.014816,0.754016,0.010176
+1204,689.795,1.44971,1.03005,0.008192,0.2224,0.004832,0.004192,0.007648,0.012832,0.014336,0.745472,0.010144
+1205,643.721,1.55347,1.77731,0.00864,0.2296,0.005696,0.004512,0.007264,0.013216,0.014336,1.47866,0.015392
+1206,475.284,2.104,1.21251,0.008832,0.404896,0.004704,0.004096,0.008192,0.013984,0.014688,0.743424,0.009696
+1207,557.734,1.79297,1.03872,0.008576,0.231456,0.005696,0.004512,0.007328,0.013184,0.014336,0.743392,0.01024
+1208,724.956,1.37939,1.02374,0.008192,0.226688,0.004736,0.004096,0.008192,0.014272,0.014368,0.733216,0.009984
+1209,678.033,1.47485,1.77283,0.008448,0.230432,0.004864,0.004288,0.008192,0.0136,0.014336,1.47325,0.015424
+1210,460.328,2.17236,1.44365,0.009504,0.256736,0.005248,0.0048,0.006368,0.014048,0.01456,1.12179,0.010592
+1211,548.62,1.82275,1.024,0.009568,0.225824,0.004224,0.005472,0.006816,0.013376,0.013248,0.735232,0.01024
+1212,695.298,1.43823,1.03994,0.009472,0.225376,0.004768,0.004096,0.007808,0.012672,0.014336,0.751616,0.009792
+1213,647.589,1.54419,1.76742,0.008096,0.225376,0.005792,0.004448,0.00736,0.012672,0.014304,1.47507,0.014304
+1214,470.048,2.12744,1.28323,0.009344,0.459648,0.005344,0.0048,0.006272,0.014304,0.014336,0.759424,0.00976
+1215,586.315,1.70557,1.04195,0.008128,0.223808,0.005152,0.004768,0.006496,0.013408,0.013184,0.757376,0.009632
+1216,519.467,1.92505,1.07558,0.008544,0.264192,0.005376,0.004192,0.006816,0.013856,0.014336,0.74928,0.008992
+1217,963.311,1.03809,1.77994,0.00864,0.23472,0.004864,0.004128,0.007744,0.012736,0.014368,1.47795,0.014784
+1218,435.05,2.29858,1.43363,0.009856,0.254368,0.004064,0.005632,0.006656,0.013472,0.014272,1.11507,0.01024
+1219,565.433,1.76855,1.03526,0.00896,0.226912,0.004768,0.004096,0.00784,0.01264,0.014336,0.745472,0.01024
+1220,702.814,1.42285,1.04192,0.008192,0.222272,0.004864,0.004288,0.00752,0.01296,0.014336,0.75776,0.009728
+1221,703.297,1.42188,1.35395,0.008448,0.259776,0.004384,0.005312,0.007008,0.013408,0.014336,1.02838,0.012896
+1222,497.389,2.0105,1.41437,0.009248,0.224224,0.005664,0.004576,0.007232,0.013248,0.014336,1.12374,0.012096
+1223,546.133,1.83105,1.05091,0.008704,0.222816,0.004512,0.005152,0.007072,0.012448,0.014464,0.765728,0.010016
+1224,702.452,1.42358,1.03834,0.008192,0.22528,0.004096,0.005664,0.006624,0.014336,0.014336,0.749568,0.01024
+1225,643.721,1.55347,1.39875,0.008448,0.22528,0.004096,0.005632,0.006656,0.013376,0.014656,1.10806,0.012544
+1226,502.638,1.9895,1.43917,0.008576,0.231424,0.005248,0.0048,0.006336,0.014016,0.014656,1.14195,0.01216
+1227,527.631,1.89526,1.0712,0.008288,0.244832,0.004864,0.004256,0.007552,0.012928,0.014336,0.76512,0.009024
+1228,690.143,1.44897,1.03834,0.009248,0.221376,0.004864,0.004128,0.007712,0.012768,0.0144,0.7536,0.01024
+1229,651.089,1.53589,1.38045,0.009344,0.223968,0.004256,0.005408,0.00688,0.013472,0.014496,1.09184,0.010784
+1230,513.605,1.94702,1.31642,0.008352,0.233472,0.004096,0.005632,0.006656,0.01424,0.014432,1.01786,0.01168
+1231,584.725,1.71021,1.04448,0.008192,0.224576,0.0048,0.004096,0.008192,0.014368,0.014336,0.756864,0.009056
+1232,678.146,1.47461,1.05654,0.009344,0.2344,0.00544,0.004768,0.007648,0.013888,0.014432,0.756608,0.010016
+1233,706.207,1.41602,1.04678,0.008448,0.2272,0.004224,0.00544,0.006848,0.013344,0.014496,0.757856,0.008928
+1234,490.245,2.03979,1.05517,0.010688,0.228864,0.004608,0.004096,0.008032,0.013568,0.01456,0.76192,0.008832
+1235,373.314,2.67871,1.10182,0.009376,0.29776,0.00416,0.006112,0.00624,0.014272,0.014208,0.740768,0.008928
+1236,710.988,1.40649,1.04058,0.008256,0.2264,0.004832,0.004288,0.007552,0.012928,0.014336,0.753216,0.008768
+1237,629.089,1.5896,1.10992,0.009792,0.286272,0.004736,0.004352,0.006144,0.012288,0.015744,0.760448,0.010144
+1238,463.034,2.15967,1.41898,0.011584,0.242368,0.004096,0.005536,0.006752,0.01424,0.014432,1.1095,0.010464
+1239,498.357,2.00659,1.07114,0.008192,0.229376,0.004128,0.005664,0.006592,0.013568,0.014368,0.778976,0.010272
+1240,764.179,1.30859,1.03942,0.008224,0.227328,0.005216,0.0048,0.006368,0.01424,0.014432,0.749024,0.009792
+1241,699.932,1.42871,1.33734,0.009408,0.24864,0.005408,0.0048,0.006208,0.01376,0.0144,1.02358,0.011136
+1242,513.026,1.94922,1.42362,0.008448,0.251936,0.005472,0.004736,0.007296,0.013184,0.014368,1.10794,0.01024
+1243,382.518,2.61426,1.13459,0.008416,0.335648,0.005792,0.004448,0.00736,0.013056,0.014304,0.73664,0.008928
+1244,880.671,1.1355,1.04038,0.009632,0.233344,0.004832,0.004096,0.007776,0.012704,0.014496,0.743264,0.01024
+1245,530.501,1.88501,1.09635,0.008864,0.262176,0.00512,0.0048,0.006432,0.016384,0.030368,0.753024,0.009184
+1246,641.805,1.55811,1.44019,0.010784,0.273472,0.004864,0.004288,0.007424,0.013184,0.014208,1.10147,0.010496
+1247,577.145,1.73267,1.03936,0.008192,0.227328,0.005696,0.004544,0.007232,0.012928,0.014208,0.7496,0.009632
+1248,694.944,1.43896,1.04368,0.009344,0.227936,0.004384,0.00608,0.006336,0.014208,0.014368,0.751264,0.00976
+1249,681.871,1.46655,1.76746,0.008192,0.226752,0.004672,0.004096,0.008032,0.012512,0.014272,1.47456,0.014368
+1250,448.189,2.2312,1.41424,0.01024,0.232768,0.0048,0.004096,0.008192,0.013728,0.014272,1.11587,0.010272
+1251,565.98,1.76685,1.03629,0.008192,0.224736,0.00464,0.005568,0.00672,0.013664,0.014208,0.74832,0.01024
+1252,507.496,1.97046,1.05581,0.009312,0.24464,0.004096,0.0056,0.006688,0.014016,0.014688,0.747136,0.009632
+1253,1060.32,0.943115,1.37683,0.008768,0.239232,0.00448,0.004096,0.007936,0.013664,0.0144,1.07197,0.012288
+1254,483.019,2.07031,1.42403,0.008864,0.23552,0.004096,0.005568,0.00672,0.014048,0.014624,1.1223,0.012288
+1255,555.239,1.80103,1.03853,0.008736,0.22528,0.005216,0.0048,0.006368,0.013632,0.01472,0.749824,0.009952
+1256,685.523,1.45874,1.0361,0.008192,0.223232,0.005376,0.006016,0.00704,0.012352,0.014272,0.749568,0.010048
+1257,696.362,1.43604,1.37866,0.008608,0.22896,0.004736,0.004096,0.008192,0.013632,0.01472,1.08371,0.012
+1258,488.026,2.04907,1.42541,0.008192,0.229216,0.004256,0.005408,0.00688,0.014368,0.014176,1.13062,0.012288
+1259,553.364,1.80713,1.03126,0.008192,0.223232,0.005152,0.005088,0.007232,0.013216,0.014144,0.745408,0.0096
+1260,694.12,1.44067,1.05683,0.008256,0.221184,0.00544,0.0048,0.007744,0.012736,0.014368,0.772064,0.01024
+1261,631.222,1.58423,1.0544,0.00944,0.238368,0.005216,0.005024,0.007456,0.013024,0.014336,0.742752,0.018784
+1262,418.044,2.39209,1.40038,0.010432,0.231456,0.00512,0.0048,0.006432,0.014368,0.014304,1.10182,0.011648
+1263,556.144,1.7981,1.04858,0.00832,0.223104,0.004096,0.0056,0.006688,0.012352,0.014272,0.763904,0.01024
+1264,686.097,1.45752,1.04653,0.009376,0.223264,0.004864,0.00416,0.007712,0.012768,0.014336,0.759808,0.01024
+1265,615.015,1.62598,1.34349,0.008224,0.2232,0.005408,0.0048,0.0072,0.012672,0.0144,1.0553,0.012288
+1266,554.788,1.80249,1.42096,0.0096,0.227968,0.004096,0.005728,0.00656,0.014336,0.014336,1.12611,0.012224
+1267,539.8,1.85254,1.0441,0.008192,0.221184,0.005344,0.004832,0.00624,0.014208,0.01424,0.76,0.009856
+1268,701.49,1.42554,1.0415,0.009504,0.21936,0.004608,0.004096,0.008,0.01248,0.015648,0.758112,0.009696
+1269,582.397,1.71704,1.09514,0.008672,0.259488,0.020224,0.004928,0.007296,0.013184,0.014336,0.757376,0.009632
+1270,776.052,1.28857,1.94605,0.00864,0.478976,0.006272,0.004192,0.007712,0.013984,0.014816,1.3967,0.014752
+1271,416.218,2.40259,1.04326,0.008096,0.238496,0.004096,0.005792,0.006496,0.013664,0.0144,0.741984,0.01024
+1272,683.236,1.46362,1.04042,0.008192,0.23552,0.005184,0.004768,0.006432,0.014336,0.014336,0.741376,0.010272
+1273,646.567,1.54663,1.03475,0.0088,0.233472,0.004096,0.005792,0.006496,0.014272,0.014432,0.737248,0.010144
+1274,514.767,1.94263,1.32058,0.010752,0.239616,0.00576,0.00448,0.007424,0.01424,0.014432,1.01248,0.011392
+1275,592.85,1.68677,1.04243,0.008192,0.22704,0.004384,0.00528,0.006912,0.012384,0.014336,0.754848,0.009056
+1276,688.866,1.45166,1.0241,0.008352,0.222208,0.004864,0.004352,0.00752,0.01296,0.014336,0.739328,0.010176
+1277,685.179,1.45947,1.0287,0.008896,0.224864,0.004768,0.004096,0.007616,0.012864,0.014336,0.741376,0.009888
+1278,660.432,1.51416,1.67674,0.00864,0.470816,0.00752,0.004768,0.006176,0.014304,0.015744,1.13859,0.010176
+1279,459.966,2.17407,1.03302,0.0088,0.228768,0.004864,0.00416,0.007552,0.01296,0.014272,0.742752,0.008896
+1280,670.486,1.49146,1.06102,0.00912,0.245472,0.004384,0.005312,0.006976,0.013504,0.014272,0.752384,0.0096
+1281,677.473,1.47607,1.04771,0.008192,0.24736,0.004544,0.00512,0.007008,0.01376,0.01424,0.737888,0.0096
+1282,618.731,1.61621,1.77398,0.008608,0.235776,0.004352,0.00528,0.007008,0.013344,0.014432,1.47075,0.014432
+1283,460.535,2.17139,1.05267,0.009792,0.235968,0.004096,0.005632,0.006656,0.013472,0.01472,0.753248,0.009088
+1284,691.775,1.44556,1.03424,0.008192,0.227232,0.004192,0.005472,0.006816,0.01408,0.014176,0.74496,0.00912
+1285,690.492,1.44824,1.05491,0.008416,0.232992,0.004544,0.005152,0.007136,0.013568,0.014304,0.759872,0.008928
+1286,681.078,1.46826,1.35379,0.008256,0.229408,0.00576,0.004448,0.007328,0.013152,0.015776,1.05741,0.012256
+1287,491.658,2.03394,1.41126,0.008384,0.230624,0.004864,0.005344,0.006976,0.014336,0.014368,1.11613,0.01024
+1288,559.105,1.78857,1.03837,0.008192,0.226624,0.0048,0.004096,0.007744,0.012736,0.014432,0.75056,0.009184
+1289,551.873,1.81201,1.08611,0.008928,0.247872,0.004096,0.005376,0.006912,0.013664,0.014112,0.77504,0.010112
+1290,805.982,1.24072,1.07933,0.009376,0.258912,0.005856,0.004384,0.008032,0.013472,0.015008,0.754048,0.01024
+1291,422.094,2.36914,1.47046,0.01232,0.271776,0.004672,0.004096,0.006144,0.014336,0.014368,1.13251,0.01024
+1292,567.156,1.76318,1.08294,0.009472,0.248576,0.005312,0.0048,0.006304,0.01392,0.014432,0.770336,0.009792
+1293,687.133,1.45532,1.04896,0.008576,0.237568,0.005376,0.0048,0.007232,0.01328,0.0144,0.747488,0.01024
+1294,717.715,1.39331,1.81082,0.00864,0.231904,0.005504,0.004736,0.0072,0.013312,0.014336,1.51139,0.013792
+1295,435.004,2.29883,1.2167,0.008384,0.405504,0.005184,0.0048,0.0064,0.014368,0.014304,0.74752,0.01024
+1296,624.295,1.60181,1.0463,0.008352,0.221184,0.005216,0.004832,0.006336,0.014336,0.014336,0.761856,0.009856
+1297,693.532,1.44189,1.03597,0.008224,0.221152,0.00512,0.0048,0.006464,0.013792,0.014048,0.752448,0.00992
+1298,687.133,1.45532,1.38838,0.009632,0.233728,0.004448,0.005216,0.007072,0.014176,0.014496,1.08749,0.012128
+1299,493.791,2.02515,1.41088,0.008192,0.233472,0.004096,0.005664,0.008416,0.012544,0.014496,1.1137,0.010304
+1300,541.871,1.84546,1.0425,0.008384,0.229376,0.00544,0.0048,0.007328,0.0152,0.014336,0.74752,0.010112
+1301,645.548,1.54907,1.08749,0.009696,0.262688,0.005632,0.004608,0.007168,0.013248,0.01424,0.76128,0.008928
+1302,696.717,1.4353,1.04458,0.008608,0.237344,0.0048,0.004096,0.008192,0.013824,0.01456,0.743424,0.009728
+1303,477.946,2.09229,1.4336,0.011712,0.236096,0.005632,0.004608,0.007264,0.013024,0.01424,1.12874,0.012288
+1304,529.815,1.88745,1.03238,0.009088,0.22016,0.004832,0.004352,0.00736,0.01312,0.014336,0.749568,0.009568
+1305,697.429,1.43384,1.03869,0.008544,0.22288,0.004448,0.005792,0.006496,0.014176,0.014496,0.751616,0.01024
+1306,726.37,1.37671,1.3783,0.009408,0.229344,0.004832,0.004224,0.007488,0.012992,0.014368,1.08502,0.010624
+1307,318.68,3.13794,1.35638,0.0088,0.227328,0.00544,0.0048,0.006144,0.013984,0.014496,1.04829,0.027104
+1308,1016.38,0.983887,1.05472,0.009056,0.259296,0.004832,0.00416,0.007648,0.012832,0.014336,0.732832,0.009728
+1309,763.609,1.30957,1.03446,0.008896,0.241216,0.004544,0.004096,0.008,0.01248,0.014336,0.731136,0.00976
+1310,700.89,1.42676,1.04506,0.008576,0.229184,0.0048,0.004096,0.007808,0.012672,0.014336,0.753664,0.00992
+1311,451.052,2.21704,1.40618,0.011584,0.232128,0.004096,0.005568,0.00672,0.013568,0.014752,1.10531,0.012448
+1312,561.634,1.78052,1.02554,0.009504,0.223072,0.004608,0.00448,0.007328,0.013152,0.014368,0.739296,0.009728
+1313,682.212,1.46582,1.02979,0.008384,0.22032,0.004768,0.00544,0.006848,0.012288,0.015552,0.746304,0.009888
+1314,683.806,1.4624,1.04333,0.008704,0.221248,0.004416,0.005248,0.007008,0.013504,0.014176,0.758784,0.01024
+1315,476.058,2.10059,1.32506,0.012288,0.236704,0.004864,0.004192,0.00768,0.0128,0.014368,1.02109,0.011072
+1316,570.871,1.75171,1.02211,0.008384,0.2232,0.005696,0.004544,0.007328,0.013152,0.0144,0.735168,0.01024
+1317,595.176,1.68018,1.1072,0.009248,0.283648,0.005632,0.004576,0.017664,0.013056,0.014336,0.749312,0.009728
+1318,692.711,1.4436,1.04858,0.008256,0.229312,0.004096,0.0056,0.006688,0.014336,0.014336,0.755712,0.01024
+1319,624.485,1.60132,2.0584,0.008352,0.480512,0.006912,0.0056,0.006688,0.014336,0.014336,1.50938,0.012288
+1320,411.658,2.4292,1.02608,0.009888,0.223584,0.004096,0.0056,0.006688,0.013792,0.014208,0.739136,0.009088
+1321,674.017,1.48364,1.0281,0.0096,0.221824,0.005792,0.004448,0.007232,0.013248,0.014368,0.741344,0.01024
+1322,671.255,1.48975,1.09296,0.009408,0.277184,0.004224,0.00544,0.006848,0.01344,0.014528,0.75216,0.009728
+1323,483.247,2.06934,1.45219,0.011072,0.23344,0.005472,0.004768,0.006272,0.013952,0.014016,1.15114,0.012064
+1324,541.226,1.84766,1.04243,0.009824,0.223648,0.004096,0.005696,0.006624,0.020192,0.014272,0.74784,0.01024
+1325,682.326,1.46558,1.02816,0.008288,0.230592,0.004864,0.004128,0.00768,0.0128,0.014336,0.736768,0.008704
+1326,616.96,1.62085,1.05162,0.008576,0.241536,0.004864,0.004096,0.007712,0.0128,0.014304,0.74752,0.010208
+1327,470.372,2.12598,1.43366,0.010304,0.24512,0.004736,0.004096,0.007712,0.0128,0.014304,1.12349,0.011104
+1328,546.061,1.8313,1.04634,0.008672,0.227328,0.005408,0.004832,0.00624,0.01424,0.014336,0.755584,0.009696
+1329,697.548,1.43359,1.04243,0.010016,0.227552,0.005728,0.004512,0.008064,0.012416,0.015584,0.74832,0.01024
+1330,687.018,1.45557,1.04234,0.009344,0.234368,0.004096,0.005568,0.006752,0.014304,0.014336,0.743424,0.010144
+1331,461.938,2.16479,1.44106,0.011616,0.242336,0.004096,0.005568,0.00672,0.014336,0.014368,1.12979,0.012224
+1332,442.237,2.26123,1.09168,0.008512,0.271456,0.004832,0.004288,0.007584,0.012896,0.015456,0.75664,0.010016
+1333,773.56,1.29272,1.04304,0.008896,0.235808,0.005408,0.0048,0.006176,0.013888,0.014624,0.743584,0.009856
+1334,672.688,1.48657,1.03798,0.008192,0.23472,0.004864,0.004128,0.007808,0.012672,0.014336,0.741376,0.009888
+1335,541.155,1.8479,2.03552,0.008384,0.468992,0.008064,0.005536,0.00688,0.014048,0.014624,1.49709,0.011904
+1336,498.176,2.00732,1.04653,0.009856,0.227712,0.004096,0.005792,0.006496,0.013888,0.01424,0.755872,0.008576
+1337,675.796,1.47974,1.04262,0.008352,0.230656,0.004704,0.004096,0.007872,0.012608,0.014336,0.751072,0.008928
+1338,660.326,1.5144,1.39674,0.008544,0.237088,0.004576,0.005216,0.007072,0.0136,0.014144,1.09456,0.011936
+1339,504.869,1.98071,1.4295,0.008192,0.23456,0.005056,0.005152,0.006976,0.012448,0.014336,1.1305,0.012288
+1340,528.653,1.8916,1.04448,0.008192,0.230624,0.004864,0.004128,0.00768,0.0128,0.014336,0.751616,0.01024
+1341,694.002,1.44092,1.056,0.009536,0.246464,0.005696,0.004544,0.007296,0.014592,0.014688,0.743488,0.009696
+1342,693.532,1.44189,1.04877,0.008384,0.234656,0.004864,0.004192,0.007648,0.012832,0.015392,0.75056,0.01024
+1343,453.75,2.20386,1.43974,0.011776,0.236064,0.005824,0.004384,0.007392,0.013088,0.014368,1.13456,0.012288
+1344,453.248,2.2063,1.06022,0.009632,0.24432,0.004096,0.005696,0.007744,0.014272,0.013248,0.751488,0.009728
+1345,997.322,1.00269,1.04368,0.009472,0.226048,0.005472,0.004768,0.006144,0.013888,0.014784,0.753376,0.009728
+1346,676.913,1.47729,1.03629,0.008224,0.23344,0.005792,0.004448,0.007392,0.013088,0.014368,0.740512,0.009024
+1347,492.9,2.02881,1.33376,0.010752,0.243712,0.005536,0.004704,0.007584,0.012896,0.014336,1.02381,0.010432
+1348,596.824,1.67554,1.03014,0.00976,0.22576,0.005728,0.004512,0.00736,0.01312,0.014336,0.740736,0.008832
+1349,689.678,1.44995,1.03014,0.009344,0.225568,0.004704,0.004096,0.008064,0.013728,0.01408,0.741504,0.009056
+1350,670.925,1.49048,1.04669,0.008608,0.229504,0.005248,0.0048,0.006336,0.014336,0.014336,0.753664,0.009856
+1351,668.516,1.49585,1.84451,0.008192,0.257216,0.004896,0.004128,0.007744,0.013856,0.01456,1.51635,0.017568
+1352,406.955,2.45728,1.0752,0.008192,0.249856,0.005696,0.004544,0.007264,0.013248,0.014304,0.762944,0.009152
+1353,665.043,1.50366,1.04858,0.009632,0.225888,0.005504,0.004736,0.006336,0.013856,0.014496,0.758976,0.009152
+1354,674.35,1.48291,1.05267,0.008192,0.24528,0.004576,0.004096,0.007968,0.012512,0.015616,0.744192,0.01024
+1355,587.156,1.70312,1.72461,0.008928,0.5184,0.006144,0.005952,0.006336,0.014336,0.0144,1.13862,0.011488
+1356,490.363,2.03931,1.0511,0.008608,0.228864,0.004864,0.004128,0.007712,0.012768,0.014336,0.759808,0.010016
+1357,680.625,1.46924,1.03267,0.00896,0.224448,0.004864,0.00432,0.007456,0.01296,0.014432,0.74544,0.009792
+1358,694.473,1.43994,1.02819,0.008672,0.228448,0.004864,0.004256,0.007616,0.012864,0.014336,0.73728,0.009856
+1359,675.573,1.48022,1.86112,0.00976,0.23968,0.004512,0.005184,0.00704,0.013504,0.014368,1.5553,0.011776
+1360,334.504,2.9895,1.05082,0.008544,0.234944,0.004832,0.004128,0.00752,0.01296,0.015648,0.752352,0.009888
+1361,1241.21,0.805664,1.0457,0.008192,0.233472,0.004096,0.005728,0.007616,0.01296,0.01424,0.749664,0.009728
+1362,678.483,1.47388,1.05027,0.009536,0.234176,0.005792,0.004448,0.008224,0.013888,0.014752,0.749568,0.009888
+1363,555.39,1.80054,1.85315,0.008544,0.258048,0.004096,0.005664,0.006624,0.01344,0.013184,1.52986,0.013696
+1364,462.929,2.16016,1.04448,0.008192,0.23552,0.005632,0.004608,0.007168,0.013312,0.014336,0.745472,0.01024
+1365,698.738,1.43115,1.04858,0.009312,0.233408,0.004832,0.004352,0.00752,0.012992,0.014304,0.751616,0.01024
+1366,675.35,1.48071,1.04038,0.008224,0.227296,0.004096,0.005696,0.006592,0.013696,0.014112,0.750496,0.010176
+1367,683.35,1.46338,1.35776,0.009408,0.238048,0.004448,0.005216,0.007072,0.014016,0.01424,1.05309,0.012224
+1368,491.717,2.03369,1.42659,0.008288,0.241664,0.006016,0.004224,0.007872,0.0144,0.014432,1.11939,0.010304
+1369,550.76,1.81567,1.04941,0.008896,0.23136,0.004288,0.005376,0.006944,0.013504,0.01472,0.75408,0.01024
+1370,695.416,1.43799,1.04208,0.008192,0.231072,0.004448,0.005216,0.00688,0.01248,0.014528,0.749376,0.009888
+1371,677.025,1.47705,1.86317,0.009824,0.237984,0.005312,0.0048,0.006272,0.014336,0.014368,1.55754,0.012736
+1372,380.634,2.6272,1.21926,0.008928,0.40752,0.004288,0.0056,0.006496,0.014368,0.014304,0.74752,0.01024
+1373,712.1,1.4043,1.04678,0.008608,0.239584,0.005344,0.0048,0.006272,0.01392,0.01472,0.743424,0.010112
+1374,731.821,1.36646,1.05267,0.009504,0.236256,0.004096,0.005728,0.00656,0.014208,0.014112,0.752,0.010208
+1375,652.645,1.53223,1.41312,0.008192,0.260096,0.004096,0.005664,0.006624,0.013536,0.014528,1.08979,0.010592
+1376,490.539,2.03857,1.42419,0.008992,0.231232,0.004288,0.005376,0.006912,0.01392,0.014144,1.12906,0.010272
+1377,541.369,1.84717,1.04464,0.008352,0.235264,0.004352,0.005312,0.006976,0.013568,0.01488,0.745696,0.01024
+1378,704.506,1.41943,1.03738,0.008192,0.231424,0.005472,0.004768,0.008064,0.012416,0.014368,0.743072,0.0096
+1379,685.179,1.45947,1.33005,0.008672,0.23184,0.004096,0.00576,0.006528,0.01424,0.014336,1.00976,0.034816
+1380,502.207,1.99121,1.43491,0.008192,0.241184,0.004576,0.004096,0.008096,0.012384,0.014496,1.12979,0.012096
+1381,496.304,2.01489,1.06701,0.008192,0.256,0.005312,0.004832,0.00624,0.014048,0.014656,0.748576,0.009152
+1382,783.174,1.27686,1.05459,0.008512,0.229376,0.005824,0.004416,0.007968,0.014304,0.014496,0.759904,0.009792
+1383,676.019,1.47925,1.05894,0.00864,0.253312,0.004736,0.004096,0.007872,0.012608,0.014336,0.743424,0.00992
+1384,654.522,1.52783,1.97446,0.008384,0.453856,0.02128,0.005472,0.006816,0.014304,0.0144,1.43677,0.013184
+1385,420.577,2.37769,1.04038,0.009408,0.229824,0.00448,0.005312,0.006976,0.012416,0.015232,0.747584,0.009152
+1386,682.78,1.4646,1.0408,0.008608,0.227264,0.004128,0.005504,0.006784,0.013632,0.014336,0.750272,0.010272
+1387,673.573,1.48462,1.05965,0.00864,0.24352,0.004672,0.004096,0.007872,0.012608,0.014336,0.753664,0.01024
+1388,479.625,2.08496,1.33939,0.011616,0.23808,0.004256,0.005408,0.00688,0.014208,0.014336,1.03402,0.010592
+1389,555.014,1.80176,1.05798,0.008192,0.257248,0.004736,0.004256,0.007584,0.012896,0.014336,0.738912,0.009824
+1390,726.112,1.3772,1.02752,0.009504,0.228064,0.005728,0.004512,0.00736,0.01312,0.014336,0.735104,0.009792
+1391,654.941,1.52686,1.05514,0.008576,0.249856,0.005696,0.004544,0.007616,0.012896,0.014304,0.742656,0.008992
+1392,617.146,1.62036,1.74694,0.0096,0.539264,0.006144,0.005216,0.007072,0.014016,0.014688,1.1407,0.01024
+1393,454.606,2.19971,1.05069,0.008288,0.247776,0.004096,0.00576,0.006528,0.014208,0.014048,0.739744,0.01024
+1394,696.48,1.43579,1.03219,0.009248,0.225856,0.004512,0.005152,0.007072,0.013536,0.013248,0.743328,0.01024
+1395,704.991,1.41846,1.04653,0.009696,0.231744,0.00432,0.005312,0.006784,0.01248,0.014336,0.752832,0.009024
+1396,625.248,1.59937,1.90464,0.008224,0.266176,0.004128,0.005536,0.006752,0.013728,0.014464,1.57456,0.011072
+1397,405.264,2.46753,1.05315,0.008672,0.251616,0.004384,0.00528,0.007008,0.012288,0.014336,0.74064,0.008928
+1398,679.496,1.47168,1.05946,0.00864,0.254016,0.004224,0.005216,0.007008,0.013472,0.014432,0.74336,0.009088
+1399,684.149,1.46167,1.03229,0.008608,0.225248,0.004096,0.005664,0.006624,0.013568,0.014272,0.744256,0.009952
+1400,557.203,1.79468,1.92822,0.010144,0.388864,0.004448,0.005184,0.007008,0.013568,0.014656,1.47085,0.013504
+1401,419.371,2.38452,1.068,0.009152,0.249184,0.004768,0.004096,0.007904,0.01376,0.014496,0.755712,0.008928
+1402,678.37,1.47412,1.04038,0.008192,0.235552,0.005248,0.0048,0.006336,0.014208,0.014464,0.742784,0.0088
+1403,739.484,1.35229,1.02512,0.009216,0.232448,0.005824,0.005856,0.006752,0.013632,0.014208,0.727392,0.009792
+1404,674.239,1.48315,1.8432,0.008192,0.241664,0.005664,0.004576,0.007168,0.013312,0.014368,1.53597,0.012288
+1405,411.7,2.42896,1.04038,0.009952,0.228768,0.004832,0.004256,0.007712,0.0128,0.014304,0.74752,0.01024
+1406,694.237,1.44043,1.03834,0.008224,0.2232,0.005504,0.004768,0.00752,0.012928,0.014336,0.751616,0.01024
+1407,694.355,1.44019,1.04198,0.009504,0.22192,0.005504,0.004736,0.006144,0.014368,0.014304,0.755552,0.009952
+1408,607.175,1.64697,1.67098,0.009408,0.469824,0.006144,0.005408,0.00688,0.01392,0.014176,1.13469,0.010528
+1409,494.268,2.02319,1.03424,0.008352,0.229216,0.004096,0.005536,0.006752,0.013664,0.01456,0.743104,0.00896
+1410,638.703,1.56567,1.0553,0.008768,0.241088,0.004672,0.0056,0.006688,0.01408,0.014112,0.751104,0.009184
+1411,724.059,1.3811,1.05267,0.008192,0.231424,0.00512,0.004768,0.006496,0.013952,0.0144,0.75808,0.01024
+1412,668.516,1.49585,1.84394,0.008608,0.231264,0.004576,0.004096,0.008,0.01248,0.014336,1.54976,0.010816
+1413,429.26,2.32959,1.20874,0.008032,0.40544,0.004832,0.004096,0.007904,0.013952,0.014016,0.74032,0.010144
+1414,630.251,1.58667,1.04758,0.009568,0.221856,0.004096,0.005792,0.006496,0.013888,0.014464,0.761696,0.009728
+1415,686.097,1.45752,1.02675,0.00816,0.223072,0.004832,0.0056,0.006848,0.012416,0.015424,0.74016,0.01024
+1416,673.573,1.48462,1.38854,0.009696,0.252448,0.004096,0.005664,0.006624,0.013984,0.01408,1.07107,0.01088
+1417,493.019,2.02832,1.44662,0.008928,0.269792,0.004384,0.004352,0.00736,0.01312,0.014336,1.11344,0.010912
+1418,543.813,1.83887,1.0359,0.008544,0.22432,0.004864,0.004288,0.00752,0.01296,0.014336,0.74944,0.009632
+1419,543.958,1.83838,1.05062,0.009312,0.239872,0.004768,0.004096,0.00784,0.01264,0.015744,0.747296,0.009056
+1420,886.005,1.12866,1.39651,0.008192,0.261504,0.004736,0.004096,0.007904,0.012704,0.014208,1.0711,0.012064
+1421,501.653,1.99341,1.42349,0.00832,0.231424,0.00544,0.004704,0.00624,0.01392,0.01472,1.12829,0.010432
+1422,546.644,1.82935,1.03219,0.008192,0.231392,0.00416,0.0056,0.006656,0.013664,0.014464,0.737824,0.01024
+1423,671.365,1.4895,1.03178,0.00944,0.224032,0.005856,0.004384,0.007424,0.012896,0.014528,0.743392,0.009824
+1424,689.446,1.45044,1.3824,0.009664,0.232032,0.005312,0.004896,0.007552,0.012928,0.014368,1.0849,0.010752
+1425,493.019,2.02832,1.43488,0.009792,0.240096,0.005376,0.004832,0.006272,0.013952,0.014336,1.12797,0.012256
+1426,539.657,1.85303,1.0367,0.008608,0.229376,0.005344,0.0048,0.007488,0.013088,0.014336,0.743424,0.01024
+1427,690.143,1.44897,1.03491,0.008864,0.223008,0.004288,0.005376,0.008448,0.0128,0.014336,0.74752,0.010272
+1428,680.625,1.46924,1.06371,0.008512,0.248128,0.004256,0.005472,0.006816,0.013504,0.01312,0.753664,0.01024
+1429,478.505,2.08984,1.45146,0.011936,0.256352,0.00544,0.0048,0.006144,0.014368,0.014304,1.12579,0.01232
+1430,543.885,1.83862,1.03834,0.008192,0.229376,0.005248,0.0048,0.007776,0.012896,0.014336,0.745472,0.01024
+1431,695.298,1.43823,1.04141,0.00896,0.227232,0.004416,0.005248,0.007008,0.012352,0.014464,0.751456,0.010272
+1432,663.642,1.50684,1.03818,0.008352,0.233472,0.00576,0.00448,0.008192,0.01376,0.014464,0.739776,0.00992
+1433,613.633,1.62964,1.52566,0.012288,0.421888,0.0056,0.00464,0.007936,0.014144,0.014176,1.02461,0.020384
+1434,529.404,1.88892,1.04771,0.0096,0.231712,0.004448,0.005216,0.00688,0.01248,0.0144,0.753184,0.009792
+1435,672.688,1.48657,1.03837,0.008192,0.227296,0.004128,0.005504,0.006784,0.013504,0.014336,0.749728,0.008896
+1436,689.33,1.45068,1.0247,0.0088,0.223616,0.005472,0.00464,0.006272,0.013664,0.01456,0.737728,0.009952
+1437,638.802,1.56543,1.66022,0.00976,0.463328,0.006144,0.006144,0.007456,0.014144,0.01424,1.12742,0.011584
+1438,461.729,2.16577,1.04278,0.00864,0.243072,0.004736,0.004096,0.007808,0.012672,0.014368,0.737248,0.010144
+1439,692.828,1.44336,1.03802,0.00864,0.227264,0.004192,0.005504,0.006784,0.013376,0.01472,0.747904,0.009632
+1440,664.504,1.50488,1.04038,0.008192,0.237568,0.005632,0.004608,0.007232,0.013248,0.014304,0.74048,0.00912
+1441,662.569,1.50928,1.89235,0.009856,0.267744,0.004864,0.004256,0.007648,0.012832,0.014336,1.56026,0.01056
+1442,426.978,2.34204,1.03834,0.009568,0.231296,0.004864,0.004128,0.00768,0.0128,0.014336,0.744608,0.009056
+1443,680.286,1.46997,1.02237,0.008608,0.228864,0.004608,0.005664,0.006624,0.013824,0.014016,0.731104,0.009056
+1444,700.171,1.42822,1.05142,0.00864,0.231776,0.005696,0.004544,0.008192,0.013536,0.013088,0.757088,0.008864
+1445,672.799,1.48633,1.78794,0.008192,0.231456,0.005568,0.00464,0.008192,0.012288,0.014336,1.48883,0.014432
+1446,456.582,2.19019,1.21917,0.008544,0.405376,0.00448,0.005248,0.007008,0.013472,0.014528,0.751328,0.009184
+1447,423.753,2.35986,1.0769,0.009376,0.269152,0.005472,0.004768,0.006176,0.01424,0.0144,0.743424,0.009888
+1448,746.628,1.33936,1.03219,0.00832,0.2272,0.004096,0.005632,0.006656,0.013984,0.014016,0.742048,0.01024
+1449,660.113,1.51489,1.86563,0.008192,0.239616,0.005376,0.0048,0.006272,0.013888,0.014112,1.56118,0.012192
+1450,408.171,2.44995,1.03629,0.00928,0.229696,0.004736,0.004096,0.008192,0.01424,0.014464,0.742912,0.008672
+1451,694.708,1.43945,1.03443,0.008416,0.224896,0.004448,0.00528,0.006976,0.01232,0.014336,0.74752,0.01024
+1452,691.191,1.44678,1.02842,0.008544,0.225248,0.004096,0.00576,0.006528,0.014016,0.014688,0.74064,0.008896
+1453,620.136,1.61255,1.67027,0.008448,0.466688,0.006144,0.006144,0.00624,0.01424,0.014336,1.13664,0.011392
+1454,483.361,2.06885,1.03277,0.00864,0.227328,0.005184,0.0048,0.006432,0.013952,0.014144,0.743392,0.008896
+1455,684.606,1.46069,1.0351,0.008576,0.225088,0.004768,0.005472,0.006816,0.012288,0.015488,0.746368,0.01024
+1456,563.179,1.77563,1.05552,0.008576,0.244128,0.006144,0.004096,0.008032,0.014176,0.013984,0.74624,0.010144
+1457,875.588,1.14209,1.78381,0.008384,0.232896,0.00448,0.005824,0.006464,0.013664,0.014528,1.48326,0.014304
+1458,453.047,2.20728,1.21872,0.008416,0.40544,0.00416,0.005568,0.00672,0.013952,0.01424,0.750048,0.010176
+1459,603.418,1.65723,1.03955,0.008192,0.227328,0.005568,0.004672,0.007232,0.01328,0.014336,0.74912,0.009824
+1460,688.172,1.45312,1.0337,0.008224,0.226528,0.004864,0.004096,0.007712,0.012768,0.014336,0.745376,0.009792
+1461,694.355,1.44019,1.32781,0.008608,0.229664,0.005472,0.004768,0.007648,0.016928,0.014336,1.01091,0.029472
+1462,506.931,1.97266,1.4095,0.008672,0.229376,0.004096,0.005664,0.006624,0.01392,0.0144,1.11446,0.012288
+1463,556.749,1.79614,1.03059,0.008032,0.225216,0.004768,0.004096,0.008096,0.012416,0.01536,0.742368,0.01024
+1464,710.618,1.40723,1.03117,0.008576,0.223872,0.00512,0.004832,0.006464,0.013952,0.014176,0.745088,0.009088
+1465,670.816,1.49072,1.04099,0.00816,0.230016,0.005728,0.004512,0.0072,0.01328,0.014272,0.74864,0.009184
+1466,510.787,1.95776,1.64659,0.021952,0.422016,0.004544,0.005312,0.006976,0.01392,0.014336,1.1463,0.011232
+1467,518.219,1.92969,1.03357,0.009504,0.228064,0.005824,0.004416,0.007456,0.013024,0.015552,0.739968,0.00976
+1468,678.146,1.47461,1.02458,0.008672,0.22288,0.004512,0.005152,0.006976,0.012448,0.014336,0.74048,0.00912
+1469,688.635,1.45215,1.02982,0.009728,0.223744,0.005248,0.0048,0.006368,0.0136,0.01456,0.741856,0.00992
+1470,471.781,2.11963,1.25133,0.012,0.231712,0.005856,0.004384,0.007424,0.013056,0.015648,0.950944,0.010304
+1471,621.453,1.60913,1.04563,0.009824,0.229376,0.004512,0.005248,0.00704,0.013792,0.013888,0.75168,0.010272
+1472,700.291,1.42798,1.02979,0.008768,0.227392,0.005504,0.004704,0.007168,0.013216,0.014368,0.738944,0.009728
+1473,714.211,1.40015,1.02576,0.008192,0.225248,0.004128,0.005536,0.006752,0.013952,0.014304,0.737696,0.009952
+1474,655.78,1.5249,1.73754,0.008576,0.53712,0.007936,0.004352,0.007392,0.014144,0.014464,1.13136,0.012192
+1475,445.702,2.24365,1.02486,0.009056,0.231424,0.005408,0.0048,0.006272,0.014048,0.01424,0.730624,0.008992
+1476,676.242,1.47876,1.03424,0.008544,0.231616,0.00576,0.00448,0.007904,0.012576,0.014336,0.7392,0.009824
+1477,694.59,1.4397,1.02061,0.00896,0.229376,0.005696,0.004544,0.006144,0.014176,0.014496,0.72704,0.010176
+1478,699.095,1.43042,1.83123,0.008512,0.231424,0.004096,0.005568,0.00672,0.013856,0.014752,1.53402,0.012288
+1479,424.06,2.35815,1.03059,0.008512,0.231168,0.004352,0.00528,0.007008,0.013408,0.014784,0.737152,0.008928
+1480,664.073,1.50586,1.04989,0.008192,0.236672,0.004992,0.004096,0.007712,0.014016,0.014432,0.750048,0.009728
+1481,700.89,1.42676,1.03248,0.00848,0.224864,0.004512,0.005152,0.008448,0.013024,0.014176,0.7448,0.009024
+1482,693.532,1.44189,1.32141,0.008576,0.228928,0.004608,0.004096,0.007968,0.012576,0.015424,1.0039,0.035328
+1483,495.224,2.01929,1.41107,0.008224,0.232896,0.00464,0.004096,0.014336,0.014336,0.013888,1.10797,0.010688
+1484,494.387,2.02271,1.06339,0.008576,0.253376,0.004768,0.004096,0.007776,0.012704,0.015424,0.746432,0.01024
+1485,740.687,1.3501,1.04938,0.00864,0.237792,0.004224,0.00544,0.006848,0.014336,0.014336,0.74752,0.01024
+1486,708.405,1.41162,1.2991,0.008672,0.233632,0.005152,0.004832,0.0064,0.014176,0.014048,0.999648,0.012544
+1487,292.551,3.41821,1.04426,0.008512,0.236992,0.004672,0.004096,0.007936,0.013664,0.013472,0.745216,0.009696
+1488,652.229,1.5332,1.04256,0.008512,0.229312,0.00416,0.005536,0.006752,0.013664,0.01456,0.750016,0.010048
+1489,672.247,1.48755,1.03142,0.008192,0.22912,0.004352,0.005344,0.006944,0.01408,0.014592,0.739136,0.009664
+1490,451.499,2.21484,1.35562,0.011904,0.231424,0.00448,0.005152,0.007008,0.01392,0.014656,1.05251,0.01456
+1491,567.392,1.76245,1.03242,0.008,0.227072,0.004832,0.004096,0.007744,0.012736,0.01552,0.74224,0.010176
+1492,676.466,1.47827,1.02166,0.009408,0.225184,0.004864,0.004256,0.007552,0.012928,0.014368,0.733152,0.009952
+1493,680.512,1.46948,1.03386,0.00816,0.24352,0.004896,0.005536,0.006752,0.012384,0.01424,0.728576,0.009792
+1494,697.429,1.43384,1.65978,0.008672,0.44064,0.006176,0.004064,0.007968,0.014016,0.014336,1.15357,0.010336
+1495,436.255,2.29224,1.02454,0.008608,0.227072,0.004448,0.005216,0.007008,0.012352,0.014368,0.7352,0.010272
+1496,700.53,1.42749,1.03552,0.008192,0.22528,0.005632,0.004608,0.0072,0.013216,0.0144,0.747264,0.009728
+1497,705.599,1.41724,1.02557,0.008192,0.227072,0.004352,0.005312,0.006976,0.013376,0.01344,0.737088,0.00976
+1498,650.882,1.53638,1.83981,0.008576,0.231456,0.004384,0.005312,0.006976,0.013568,0.014336,1.5449,0.010304
+1499,414.743,2.41113,1.02614,0.007008,0.231424,0.004128,0.005664,0.006592,0.013376,0.01456,0.733664,0.009728
+1500,648.923,1.54102,1.024,0.008192,0.229376,0.005216,0.0048,0.006368,0.014208,0.014016,0.732672,0.009152
+1501,714.46,1.39966,1.04221,0.008896,0.233024,0.004576,0.005504,0.006784,0.013376,0.013248,0.747072,0.009728
+1502,606.186,1.64966,1.85139,0.008192,0.257216,0.004896,0.004128,0.007616,0.012896,0.014304,1.53142,0.01072
+1503,420.275,2.37939,1.04675,0.008128,0.239904,0.005824,0.004416,0.008032,0.012448,0.015552,0.742208,0.01024
+1504,713.962,1.40063,1.03114,0.008704,0.229856,0.00528,0.0048,0.006304,0.014368,0.014176,0.738688,0.00896
+1505,655.885,1.52466,1.02198,0.00928,0.230336,0.005312,0.004832,0.00624,0.013728,0.014592,0.727392,0.010272
+1506,663.212,1.50781,1.72026,0.009568,0.525984,0.007168,0.004096,0.007776,0.013824,0.015008,1.12608,0.010752
+1507,427.245,2.34058,1.03354,0.008384,0.236736,0.004736,0.004096,0.00784,0.01264,0.014336,0.735072,0.009696
+1508,717.212,1.39429,1.01584,0.008192,0.22528,0.005472,0.004768,0.006176,0.014304,0.014368,0.727008,0.010272
+1509,665.043,1.50366,1.01789,0.008192,0.227328,0.005344,0.0048,0.006304,0.014016,0.014144,0.72896,0.0088
+1510,699.454,1.42969,1.83309,0.008768,0.23152,0.004352,0.005344,0.006944,0.014336,0.01424,1.53562,0.011968
+1511,400.94,2.49414,1.21139,0.009248,0.406496,0.005504,0.004736,0.0072,0.01328,0.014336,0.740704,0.009888
+1512,656.41,1.52344,1.06906,0.008192,0.260096,0.005664,0.004576,0.007264,0.013216,0.014336,0.745472,0.01024
+1513,696.599,1.43555,1.03206,0.008832,0.233472,0.005664,0.004576,0.007904,0.012576,0.014336,0.735072,0.009632
+1514,678.483,1.47388,1.76294,0.00928,0.244672,0.005856,0.004384,0.007392,0.013088,0.014336,1.44934,0.014592
+1515,457.551,2.18555,1.23373,0.008096,0.430816,0.004288,0.0056,0.006688,0.014368,0.014304,0.739328,0.01024
+1516,621.359,1.60938,1.04208,0.008416,0.235296,0.00432,0.005344,0.006816,0.012416,0.014368,0.745344,0.00976
+1517,694.59,1.4397,1.03738,0.009344,0.228128,0.004192,0.005472,0.006816,0.014336,0.014336,0.745248,0.009504
+1518,678.595,1.47363,1.73878,0.008192,0.239616,0.0056,0.00464,0.0072,0.01328,0.01424,1.43146,0.01456
+1519,453.901,2.20312,1.46566,0.010144,0.30016,0.004864,0.00432,0.007488,0.012992,0.014368,1.10083,0.010496
+1520,404.463,2.47241,1.07312,0.009088,0.274432,0.005696,0.004544,0.00752,0.01296,0.014368,0.734816,0.009696
+1521,901.607,1.10913,1.03827,0.008192,0.24576,0.005344,0.0048,0.00624,0.01408,0.014528,0.729152,0.010176
+1522,660.219,1.51465,1.77683,0.008224,0.253504,0.004544,0.004096,0.008,0.012576,0.01424,1.4576,0.014048
+1523,463.873,2.15576,1.21242,0.008192,0.405504,0.004192,0.005568,0.006624,0.014304,0.014368,0.744832,0.008832
+1524,608.528,1.64331,1.05302,0.009216,0.256,0.004096,0.005696,0.007808,0.013152,0.014336,0.732992,0.009728
+1525,669.938,1.49268,1.06291,0.009504,0.256064,0.004768,0.004096,0.008192,0.012288,0.015392,0.742368,0.01024
+1526,674.461,1.48267,1.75562,0.008672,0.258464,0.00512,0.004832,0.006432,0.014208,0.01424,1.42896,0.014688
+1527,467.42,2.1394,1.22154,0.008832,0.421376,0.004608,0.00512,0.007072,0.01408,0.014272,0.737216,0.00896
+1528,622.492,1.60645,1.02403,0.008192,0.234784,0.004832,0.005504,0.006784,0.013856,0.014592,0.72656,0.008928
+1529,664.504,1.50488,1.02755,0.009504,0.23216,0.004096,0.00576,0.006528,0.01392,0.014176,0.731616,0.009792
+1530,550.316,1.81714,1.04042,0.009728,0.249632,0.004832,0.004096,0.008064,0.0136,0.014464,0.726912,0.009088
+1531,462.042,2.16431,1.2368,0.010688,0.438112,0.005152,0.004832,0.0064,0.014336,0.014336,0.733088,0.009856
+1532,618.638,1.61646,1.04755,0.0088,0.239488,0.00464,0.004096,0.007872,0.012768,0.01552,0.744128,0.01024
+1533,731.167,1.36768,1.03312,0.008192,0.224128,0.004096,0.005568,0.006752,0.013536,0.014336,0.747584,0.008928
+1534,642.611,1.55615,1.76653,0.02048,0.257664,0.00448,0.004096,0.008096,0.013536,0.014784,1.4279,0.015488
+1535,455.313,2.19629,1.25219,0.008928,0.456896,0.005344,0.004896,0.007552,0.014752,0.013952,0.729696,0.010176
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..52e8267
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,572.472,1.80524,1.29645,0.0125859,0.264067,0.00605313,0.00542856,0.0110258,0.0140428,0.0168203,0.953126,0.0132968
+max_1024,1227.63,3.38379,2.04816,0.067776,0.558464,0.063488,0.028064,0.045056,0.065952,0.03344,1.61766,0.282624
+min_1024,295.527,0.814575,1.07725,0.010656,0.2168,0.004096,0.004096,0.009248,0.011968,0.01488,0.77216,0.01056
+512,511.648,1.95447,1.13178,0.012288,0.275712,0.004864,0.005696,0.010688,0.014048,0.016384,0.779808,0.012288
+513,630.348,1.58643,1.3135,0.014048,0.451552,0.005312,0.00496,0.01024,0.016352,0.016416,0.782336,0.012288
+514,523.651,1.90967,1.35578,0.012288,0.496544,0.005408,0.0048,0.01024,0.014336,0.016384,0.783488,0.012288
+515,686.845,1.45593,1.40762,0.01088,0.239616,0.005408,0.004832,0.01024,0.013376,0.01648,1.0945,0.012288
+516,453.072,2.20715,1.0855,0.012576,0.234112,0.005856,0.004384,0.01152,0.013056,0.016384,0.77536,0.012256
+517,543.777,1.83899,1.08787,0.014048,0.232064,0.005696,0.004576,0.011296,0.013248,0.016416,0.778208,0.01232
+518,685.466,1.45886,1.08339,0.01232,0.230752,0.004736,0.005728,0.010656,0.013984,0.016448,0.77648,0.012288
+519,666.179,1.5011,1.40666,0.011904,0.229632,0.004416,0.006144,0.01024,0.013856,0.016768,1.10134,0.012352
+520,551.204,1.81421,1.08368,0.01216,0.225568,0.004768,0.005728,0.010656,0.013472,0.015392,0.783616,0.01232
+521,510.532,1.95874,1.09398,0.014368,0.2344,0.00528,0.005024,0.01024,0.013504,0.016928,0.78192,0.01232
+522,676.633,1.47791,1.07971,0.012064,0.227488,0.004576,0.006144,0.010272,0.014336,0.016352,0.776192,0.012288
+523,630.93,1.58496,1.41245,0.012288,0.230432,0.005088,0.005376,0.010848,0.012448,0.016384,1.10717,0.012416
+524,515.577,1.93958,1.08541,0.012192,0.232704,0.00496,0.005376,0.010752,0.013568,0.016384,0.777216,0.012256
+525,731.494,1.36707,1.66672,0.011808,0.46688,0.006816,0.005888,0.010496,0.01616,0.016384,1.11971,0.012576
+526,489.513,2.04285,1.08022,0.011168,0.230464,0.005024,0.005664,0.01072,0.014144,0.016192,0.774528,0.01232
+527,639.95,1.56262,1.40902,0.012288,0.228448,0.005024,0.00544,0.010656,0.012576,0.016384,1.10592,0.012288
+528,562.135,1.77893,1.08749,0.012448,0.235296,0.005248,0.005056,0.01024,0.014272,0.016352,0.776288,0.012288
+529,483.104,2.06995,1.10224,0.014432,0.243104,0.005024,0.005472,0.010912,0.012288,0.016384,0.782336,0.012288
+530,677.081,1.47693,1.08544,0.01232,0.225152,0.005312,0.005024,0.01136,0.013216,0.016384,0.784384,0.012288
+531,664.504,1.50488,1.39933,0.011968,0.225696,0.004544,0.005888,0.010496,0.01344,0.01632,1.09843,0.012544
+532,356.608,2.8042,1.42954,0.012288,0.558464,0.004736,0.005504,0.01088,0.013696,0.014976,0.796704,0.012288
+533,583.268,1.71448,1.09978,0.014336,0.241696,0.006112,0.005312,0.010592,0.012768,0.016384,0.780288,0.012288
+534,689.562,1.4502,1.08099,0.012288,0.227008,0.005824,0.004736,0.010304,0.014272,0.016384,0.777792,0.012384
+535,675.796,1.47974,1.26307,0.012192,0.40496,0.004736,0.005792,0.010592,0.015936,0.016512,0.780128,0.012224
+536,587.619,1.70178,1.42115,0.012288,0.231424,0.005664,0.004576,0.011264,0.013344,0.016096,1.11027,0.016224
+537,483.846,2.06677,1.08752,0.011904,0.227712,0.006144,0.005216,0.010688,0.012768,0.016384,0.784384,0.01232
+538,667.699,1.49768,1.08883,0.012128,0.227488,0.005824,0.004416,0.01136,0.013216,0.016384,0.78576,0.012256
+539,656.358,1.52356,1.2744,0.01184,0.416672,0.00528,0.005024,0.01024,0.016416,0.016352,0.780288,0.012288
+540,602.663,1.6593,1.08627,0.011168,0.2272,0.005696,0.004544,0.01136,0.013216,0.016128,0.78464,0.01232
+541,429.463,2.32849,1.11158,0.015648,0.25456,0.005248,0.00512,0.01024,0.013472,0.016608,0.7784,0.012288
+542,704.143,1.42017,1.09277,0.012288,0.229376,0.005696,0.004544,0.010304,0.014272,0.029888,0.774048,0.012352
+543,629.476,1.58862,1.2575,0.011968,0.40592,0.005728,0.004512,0.011392,0.015232,0.016352,0.77408,0.01232
+544,610.796,1.63721,1.08954,0.012288,0.227328,0.005408,0.004832,0.01024,0.014368,0.016352,0.786432,0.012288
+545,436.093,2.29309,1.09507,0.01456,0.235168,0.004512,0.005952,0.010432,0.012288,0.016384,0.783424,0.012352
+546,702.332,1.42383,1.08512,0.01232,0.228,0.005408,0.004832,0.01024,0.014336,0.016384,0.781344,0.012256
+547,670.541,1.49133,1.26362,0.012128,0.405664,0.005536,0.004704,0.01024,0.016384,0.016384,0.781376,0.0112
+548,590.755,1.69275,1.08746,0.012128,0.231168,0.0048,0.005664,0.010112,0.012896,0.016384,0.781888,0.012416
+549,462.302,2.16309,1.09123,0.014112,0.233888,0.005568,0.004672,0.011488,0.01264,0.016512,0.780064,0.012288
+550,682.894,1.46436,1.08285,0.012256,0.223264,0.005984,0.005632,0.010848,0.0144,0.016384,0.781856,0.012224
+551,653.113,1.53113,1.43443,0.011072,0.264192,0.005952,0.00432,0.01024,0.013856,0.0168,1.09571,0.012288
+552,543.669,1.83936,1.0777,0.012064,0.230048,0.005696,0.004544,0.01024,0.014336,0.01632,0.77216,0.012288
+553,519.204,1.92603,1.08762,0.014272,0.229568,0.006144,0.00528,0.010464,0.012896,0.016384,0.781344,0.011264
+554,677.305,1.47644,1.08752,0.012288,0.22528,0.00592,0.00432,0.011552,0.01312,0.016288,0.786432,0.01232
+555,669.828,1.49292,1.39997,0.011936,0.226912,0.005024,0.00544,0.010688,0.012544,0.016384,1.09773,0.013312
+556,540.369,1.85059,1.09232,0.012256,0.230176,0.006112,0.005312,0.010624,0.012736,0.016384,0.786432,0.012288
+557,658.309,1.51904,1.67741,0.01232,0.470272,0.00688,0.00576,0.010624,0.015872,0.016704,1.12659,0.012384
+558,482.564,2.07227,1.08339,0.012064,0.229728,0.005536,0.004704,0.011616,0.013088,0.016256,0.778112,0.012288
+559,662.408,1.50964,1.42054,0.012288,0.224896,0.00448,0.005984,0.0104,0.012288,0.017504,1.11914,0.013568
+560,432.684,2.31116,1.12026,0.01232,0.26384,0.004416,0.006112,0.010272,0.014336,0.015968,0.780704,0.012288
+561,483.218,2.06946,1.11027,0.01424,0.250208,0.005568,0.004672,0.010304,0.013888,0.016448,0.782656,0.012288
+562,733.13,1.36401,1.08899,0.012192,0.231136,0.004544,0.005952,0.010432,0.014208,0.016416,0.781824,0.012288
+563,670.322,1.49182,1.26918,0.012288,0.404672,0.004928,0.005632,0.010656,0.016,0.01664,0.786592,0.011776
+564,585.394,1.70825,1.08445,0.012288,0.229376,0.005952,0.004288,0.011616,0.01296,0.016384,0.77824,0.013344
+565,456.201,2.19202,1.12486,0.013312,0.262144,0.005472,0.004768,0.010304,0.013696,0.016512,0.786336,0.01232
+566,675.016,1.48145,1.08208,0.012128,0.226176,0.005312,0.004928,0.01024,0.014208,0.016448,0.780352,0.012288
+567,667.808,1.49744,1.40752,0.012032,0.229312,0.00496,0.005504,0.010624,0.012544,0.016416,1.10384,0.012288
+568,542.229,1.84424,1.43363,0.012288,0.233504,0.005472,0.004736,0.010304,0.01424,0.016352,1.12221,0.014528
+569,478.784,2.08862,1.0793,0.011872,0.229824,0.00608,0.005184,0.010656,0.012864,0.016384,0.774144,0.012288
+570,669.226,1.49426,1.09158,0.012288,0.229376,0.005824,0.004416,0.011424,0.01328,0.016256,0.786432,0.012288
+571,647.18,1.54517,1.43357,0.011808,0.250848,0.006144,0.005984,0.010016,0.012544,0.016512,1.10704,0.012672
+572,564.849,1.77039,1.07725,0.012288,0.223264,0.005376,0.004832,0.01024,0.014208,0.016416,0.778336,0.012288
+573,451.35,2.21558,1.09773,0.014336,0.235328,0.004288,0.006144,0.011904,0.012672,0.016384,0.784384,0.012288
+574,668.68,1.49548,1.08954,0.012288,0.224832,0.004544,0.005984,0.0104,0.014144,0.016288,0.788768,0.012288
+575,660.539,1.51392,1.26438,0.011136,0.404832,0.004608,0.00592,0.010496,0.016096,0.01664,0.782336,0.01232
+576,614.277,1.62793,1.08339,0.01232,0.223072,0.00528,0.005088,0.01024,0.014208,0.016192,0.784704,0.012288
+577,499.756,2.00098,1.09795,0.014208,0.235872,0.00528,0.00496,0.01152,0.012928,0.016384,0.784512,0.012288
+578,680.738,1.46899,1.09568,0.013408,0.238496,0.005696,0.005952,0.010656,0.013888,0.016288,0.779008,0.012288
+579,648.717,1.5415,1.40083,0.012192,0.22672,0.0048,0.004352,0.011456,0.012864,0.016416,1.09926,0.012768
+580,558.266,1.79126,1.08378,0.01232,0.223552,0.006144,0.005216,0.01072,0.01376,0.016704,0.78304,0.01232
+581,439.768,2.27393,1.10182,0.014336,0.243712,0.005376,0.004864,0.01024,0.014336,0.016384,0.780288,0.012288
+582,762.188,1.31201,1.08301,0.01232,0.227296,0.005824,0.004416,0.012064,0.012768,0.016128,0.78,0.012192
+583,646.159,1.54761,1.40493,0.012288,0.22528,0.006016,0.004352,0.012128,0.01232,0.016416,1.10314,0.012992
+584,600.586,1.66504,1.08282,0.012352,0.22288,0.004768,0.005696,0.01056,0.013472,0.015328,0.785472,0.012288
+585,666.179,1.5011,1.6737,0.011968,0.467648,0.007488,0.004832,0.010208,0.016384,0.016384,1.1264,0.012384
+586,471.265,2.12195,1.08877,0.012288,0.229376,0.005664,0.004576,0.01152,0.013056,0.016384,0.783616,0.012288
+587,682.098,1.46606,1.40438,0.01232,0.223232,0.005888,0.005408,0.010656,0.012832,0.016384,1.10387,0.013792
+588,550.316,1.81714,1.09002,0.013056,0.226496,0.004928,0.005536,0.01072,0.013568,0.015232,0.788192,0.012288
+589,623.44,1.604,1.71466,0.012,0.44928,0.046208,0.013088,0.01136,0.01536,0.016384,1.13869,0.012288
+590,488.433,2.04736,1.08035,0.01232,0.224544,0.0048,0.005664,0.010464,0.013728,0.0152,0.781312,0.01232
+591,672.799,1.48633,1.39686,0.011296,0.2232,0.005568,0.004672,0.010272,0.013664,0.016576,1.09818,0.01344
+592,556.219,1.79785,1.08858,0.012256,0.222304,0.005056,0.00544,0.010528,0.012704,0.016384,0.791616,0.012288
+593,638.802,1.56543,1.69651,0.01104,0.491488,0.007776,0.004512,0.011392,0.015232,0.016384,1.12618,0.012512
+594,324.346,3.08313,1.11542,0.01216,0.249312,0.005056,0.005408,0.012,0.013312,0.016416,0.788448,0.013312
+595,842.538,1.18689,1.272,0.011584,0.406016,0.00448,0.006144,0.010272,0.016192,0.015808,0.789216,0.012288
+596,592.293,1.68835,1.48291,0.0112,0.249856,0.005536,0.004704,0.01024,0.014176,0.016288,1.15533,0.015584
+597,470.264,2.12646,1.10259,0.01104,0.237216,0.004448,0.00528,0.009248,0.01312,0.016672,0.79328,0.012288
+598,661.445,1.51184,1.08976,0.01216,0.223776,0.0056,0.004672,0.01024,0.01392,0.015808,0.79264,0.010944
+599,711.482,1.40552,1.36192,0.010656,0.23328,0.00432,0.005664,0.010016,0.01232,0.01616,1.05354,0.015968
+600,561.442,1.78113,1.10957,0.012288,0.246848,0.005056,0.005568,0.010816,0.014336,0.016384,0.785952,0.01232
+601,381.698,2.61987,1.1168,0.01408,0.250752,0.005824,0.004416,0.01152,0.012832,0.01616,0.788928,0.012288
+602,846.281,1.18164,1.09523,0.012128,0.229824,0.005984,0.004256,0.011584,0.014656,0.016032,0.788512,0.012256
+603,590.457,1.6936,1.26566,0.012288,0.405504,0.005632,0.004608,0.011296,0.015328,0.016384,0.782336,0.012288
+604,663.481,1.5072,1.08957,0.01232,0.231392,0.005376,0.004864,0.01024,0.014144,0.016032,0.78288,0.01232
+605,602.53,1.65967,1.32573,0.021504,0.421888,0.00608,0.005184,0.011264,0.015904,0.016576,0.814912,0.012416
+606,570.116,1.75403,1.09376,0.0112,0.231264,0.005952,0.004288,0.011552,0.013024,0.016384,0.787776,0.01232
+607,603.507,1.65698,1.40611,0.012288,0.224992,0.00448,0.005984,0.010304,0.013984,0.016352,1.10541,0.01232
+608,620.23,1.6123,1.09075,0.01232,0.23072,0.004768,0.005792,0.010592,0.01376,0.01632,0.784224,0.012256
+609,395.883,2.526,1.11478,0.01424,0.250464,0.004512,0.005952,0.010432,0.013376,0.015296,0.78816,0.012352
+610,714.273,1.40002,1.09418,0.012384,0.225856,0.006048,0.004192,0.011616,0.01296,0.016384,0.792384,0.012352
+611,636.865,1.57019,1.2744,0.012128,0.404128,0.006112,0.005216,0.010624,0.016128,0.016384,0.79136,0.01232
+612,610.478,1.63806,1.09011,0.012448,0.22336,0.004384,0.005856,0.01056,0.013888,0.01648,0.790848,0.012288
+613,397.072,2.51843,1.20362,0.014336,0.333824,0.005952,0.00432,0.011776,0.012768,0.016416,0.791904,0.01232
+614,755.65,1.32336,1.10186,0.012288,0.23664,0.005024,0.00544,0.010656,0.013792,0.015168,0.790528,0.01232
+615,654.052,1.52893,1.27312,0.012192,0.405664,0.005984,0.00432,0.011584,0.014976,0.017792,0.788352,0.012256
+616,446.893,2.23767,1.43069,0.012288,0.22912,0.004352,0.006112,0.010272,0.013984,0.015968,1.12291,0.01568
+617,625.582,1.59851,1.10957,0.012064,0.244,0.004576,0.005888,0.010496,0.012288,0.016416,0.792128,0.011712
+618,562.869,1.77661,1.17094,0.012064,0.291264,0.005824,0.004384,0.011456,0.02336,0.020512,0.789824,0.012256
+619,662.837,1.50867,1.28934,0.01216,0.420096,0.005376,0.004864,0.01024,0.016384,0.016384,0.791552,0.012288
+620,587.493,1.70215,1.43853,0.012192,0.228224,0.00576,0.00448,0.011584,0.012992,0.016384,1.13229,0.014624
+621,477.528,2.09412,1.10048,0.011008,0.235456,0.005984,0.00432,0.011552,0.01264,0.016352,0.79088,0.012288
+622,672.412,1.48718,1.09216,0.012064,0.22608,0.005536,0.004704,0.011456,0.01312,0.016384,0.790528,0.012288
+623,670.541,1.49133,1.2727,0.011136,0.405472,0.005312,0.00496,0.011584,0.016064,0.016608,0.78928,0.012288
+624,498.085,2.00769,1.43968,0.012288,0.22848,0.004992,0.005472,0.010656,0.012576,0.016352,1.13414,0.01472
+625,552.506,1.80994,1.12045,0.011872,0.25168,0.004928,0.005536,0.010688,0.012448,0.016384,0.794624,0.012288
+626,667.047,1.49915,1.0903,0.012864,0.224992,0.00464,0.005824,0.01056,0.013824,0.016224,0.78912,0.012256
+627,639.6,1.56348,1.28448,0.011168,0.405504,0.006144,0.005248,0.010688,0.016,0.015264,0.802304,0.01216
+628,610.796,1.63721,1.43738,0.01264,0.224864,0.00448,0.005984,0.0104,0.013984,0.016192,1.13309,0.015744
+629,477.974,2.09216,1.08592,0.011904,0.225664,0.004576,0.00592,0.010464,0.012288,0.016384,0.786432,0.012288
+630,673.297,1.48523,1.10394,0.012224,0.237152,0.00464,0.006144,0.011584,0.012992,0.016384,0.790528,0.012288
+631,644.177,1.55237,1.4193,0.012288,0.234976,0.00464,0.00608,0.010304,0.01248,0.016352,1.10986,0.01232
+632,564.771,1.77063,1.4351,0.01232,0.225248,0.005504,0.004736,0.011424,0.013152,0.016384,1.1305,0.01584
+633,476.806,2.09729,1.10893,0.0112,0.225216,0.005248,0.005088,0.010208,0.013312,0.016736,0.809632,0.012288
+634,656.937,1.52222,1.09363,0.012288,0.224832,0.004544,0.00592,0.010464,0.014208,0.016032,0.793056,0.012288
+635,649.901,1.5387,1.45478,0.010944,0.253952,0.006016,0.005888,0.010144,0.012768,0.016384,1.12592,0.012768
+636,554.413,1.80371,1.09578,0.012256,0.225408,0.006144,0.005696,0.010624,0.014176,0.016192,0.792992,0.012288
+637,443.242,2.2561,1.10371,0.014208,0.227552,0.005312,0.004928,0.011424,0.012992,0.016544,0.798496,0.012256
+638,485.366,2.0603,1.15101,0.012352,0.276448,0.006144,0.005376,0.010656,0.01408,0.024352,0.789312,0.012288
+639,1026.95,0.973755,1.27683,0.011168,0.405504,0.00608,0.005216,0.01072,0.015904,0.015328,0.794624,0.012288
+640,595.565,1.67908,1.09981,0.01232,0.23344,0.005536,0.004704,0.01024,0.014368,0.016192,0.790688,0.01232
+641,461.183,2.16833,1.09459,0.013312,0.228512,0.004896,0.005568,0.010688,0.012416,0.016384,0.790528,0.012288
+642,670.431,1.49158,1.10182,0.012288,0.223232,0.005856,0.00576,0.010784,0.014048,0.028672,0.788896,0.012288
+643,610.523,1.63794,1.28464,0.011968,0.410464,0.006112,0.005216,0.010656,0.015936,0.015328,0.796672,0.012288
+644,593.924,1.68372,1.10749,0.013408,0.22416,0.006016,0.004224,0.011552,0.013024,0.016384,0.8064,0.01232
+645,503.658,1.98547,1.1016,0.014048,0.23184,0.004256,0.006176,0.011296,0.012864,0.016672,0.792192,0.012256
+646,615.107,1.62573,1.09622,0.012064,0.226048,0.00528,0.00496,0.01024,0.014336,0.016416,0.794592,0.012288
+647,590.074,1.6947,1.51782,0.011008,0.306464,0.0048,0.006144,0.01024,0.012384,0.016448,1.13792,0.012416
+648,566.568,1.76501,1.1065,0.012064,0.228128,0.00528,0.00496,0.010304,0.02656,0.016416,0.790528,0.012256
+649,510.341,1.95947,1.12435,0.014272,0.247808,0.00528,0.005024,0.010272,0.013536,0.015104,0.800768,0.012288
+650,684.035,1.46191,1.096,0.012544,0.225088,0.004352,0.006144,0.01024,0.014336,0.016416,0.794592,0.012288
+651,636.025,1.57227,1.44998,0.011904,0.243168,0.005024,0.00544,0.010656,0.012576,0.019616,1.12931,0.012288
+652,478.309,2.0907,1.13107,0.0272,0.247264,0.00464,0.005856,0.010528,0.0136,0.016288,0.793408,0.012288
+653,481.09,2.07861,1.11213,0.014048,0.23792,0.006144,0.005856,0.010528,0.013472,0.016416,0.795456,0.012288
+654,669.445,1.49377,1.10339,0.012288,0.227328,0.006144,0.004096,0.011616,0.01296,0.016384,0.800256,0.01232
+655,598.568,1.67065,1.28509,0.011264,0.405472,0.00576,0.00448,0.011424,0.0152,0.017536,0.801664,0.012288
+656,529.165,1.88977,1.47382,0.012224,0.246048,0.005536,0.004704,0.010304,0.014304,0.016352,1.14893,0.015424
+657,527.597,1.89539,1.10643,0.012032,0.232192,0.005792,0.005824,0.010688,0.012512,0.016416,0.798688,0.012288
+658,622.398,1.60669,1.11411,0.01232,0.24096,0.004768,0.005696,0.010656,0.014144,0.016512,0.796768,0.012288
+659,608.844,1.64246,1.09341,0.012384,0.219424,0.005888,0.004352,0.011584,0.012992,0.016416,0.798016,0.012352
+660,633.516,1.57849,1.49856,0.012288,0.253152,0.004896,0.005568,0.010816,0.013952,0.031104,1.15226,0.014528
+661,474.733,2.10645,1.10842,0.012,0.232256,0.005376,0.004864,0.01024,0.013536,0.016576,0.801248,0.01232
+662,663.266,1.50769,1.10595,0.013344,0.232416,0.00576,0.00448,0.011296,0.01328,0.016384,0.796672,0.01232
+663,635.285,1.5741,1.28768,0.012288,0.405504,0.005568,0.004704,0.010336,0.016256,0.016416,0.804288,0.01232
+664,583.06,1.71509,1.44829,0.012416,0.225504,0.005408,0.004832,0.01024,0.014176,0.016384,1.1447,0.014624
+665,416.662,2.40002,1.1633,0.011872,0.287136,0.004384,0.00608,0.010304,0.012288,0.016384,0.802432,0.012416
+666,735.632,1.35938,1.10845,0.012032,0.225984,0.005408,0.004832,0.010304,0.014272,0.016384,0.806912,0.01232
+667,547.557,1.82629,1.11616,0.012288,0.243712,0.005248,0.005024,0.010208,0.013824,0.016448,0.79712,0.012288
+668,684.149,1.46167,1.13894,0.012032,0.235392,0.004992,0.005472,0.010784,0.013792,0.03344,0.810816,0.012224
+669,507.025,1.97229,1.10912,0.014336,0.229376,0.006144,0.00528,0.0104,0.012992,0.016416,0.801856,0.01232
+670,646.873,1.5459,1.12333,0.012192,0.238784,0.005024,0.005408,0.010752,0.014464,0.01648,0.808032,0.012192
+671,636.816,1.57031,1.28819,0.012224,0.407264,0.004448,0.00608,0.010304,0.01632,0.01632,0.802944,0.012288
+672,577.593,1.73132,1.50992,0.012096,0.254688,0.005728,0.004512,0.011296,0.014336,0.015328,1.17555,0.016384
+673,445.121,2.24658,1.1465,0.012096,0.247488,0.004896,0.005568,0.010496,0.012608,0.02256,0.8184,0.012384
+674,566.646,1.76477,1.16202,0.027008,0.268704,0.005376,0.004864,0.01024,0.014368,0.015936,0.803232,0.012288
+675,613.541,1.62988,1.10323,0.012288,0.22528,0.005568,0.004704,0.010208,0.013952,0.016192,0.802816,0.012224
+676,647.282,1.54492,1.81072,0.01232,0.230976,0.0048,0.005664,0.01072,0.01344,0.016576,1.50189,0.014336
+677,440.359,2.27087,1.11136,0.011776,0.232224,0.005824,0.004384,0.011456,0.013056,0.016448,0.802816,0.013376
+678,657.569,1.52075,1.10771,0.012288,0.223232,0.005504,0.004736,0.01024,0.014368,0.02208,0.803232,0.012032
+679,424.258,2.35706,1.13344,0.011136,0.258048,0.005792,0.00448,0.01152,0.01296,0.016096,0.80112,0.012288
+680,1227.63,0.814575,1.82429,0.01232,0.231392,0.005728,0.004512,0.011328,0.013248,0.016384,1.51347,0.015904
+681,446.65,2.23889,1.11136,0.012032,0.223488,0.004352,0.00608,0.010304,0.013408,0.016448,0.811872,0.013376
+682,494.955,2.02039,1.23088,0.01232,0.339968,0.00592,0.00432,0.011456,0.02336,0.02048,0.801792,0.011264
+683,587.535,1.70203,1.11178,0.012288,0.237472,0.00528,0.005056,0.01024,0.013408,0.017056,0.798656,0.01232
+684,707.854,1.41272,1.8287,0.012352,0.225408,0.005792,0.004448,0.011488,0.013088,0.016384,1.52576,0.013984
+685,446.431,2.23999,1.11536,0.012128,0.230816,0.004864,0.005632,0.010592,0.012448,0.016384,0.810144,0.012352
+686,652.125,1.53345,1.42336,0.01216,0.22336,0.006112,0.006176,0.01024,0.014336,0.016384,1.12131,0.01328
+687,550.982,1.81494,1.10528,0.01184,0.22192,0.00608,0.005344,0.01072,0.012672,0.016384,0.807936,0.012384
+688,511.776,1.95398,1.74538,0.012096,0.45328,0.046848,0.018144,0.010656,0.016064,0.026496,1.1495,0.012288
+689,548.584,1.82288,1.11597,0.011968,0.23008,0.006048,0.005184,0.010688,0.012864,0.016384,0.810976,0.011776
+690,664.935,1.50391,1.42995,0.01248,0.222656,0.004928,0.005344,0.010912,0.013856,0.016032,1.12941,0.014336
+691,480.808,2.07983,1.12605,0.012128,0.234848,0.004928,0.005536,0.010848,0.013824,0.016704,0.814976,0.012256
+692,574.837,1.73962,1.34349,0.045088,0.423584,0.004416,0.006112,0.010304,0.022496,0.016384,0.802816,0.012288
+693,655.78,1.5249,1.11062,0.011008,0.230816,0.004704,0.005728,0.010656,0.012288,0.017632,0.80544,0.012352
+694,580.334,1.72314,1.45501,0.011168,0.242784,0.005024,0.00544,0.010656,0.013824,0.023328,1.1297,0.013088
+695,595.479,1.67932,1.10858,0.01088,0.22864,0.0048,0.006144,0.01024,0.013696,0.016416,0.805472,0.012288
+696,433.485,2.30688,1.12845,0.014336,0.235456,0.00528,0.005024,0.01168,0.012896,0.016384,0.815104,0.012288
+697,622.634,1.60608,1.12435,0.012032,0.243232,0.004832,0.005632,0.010688,0.012352,0.016384,0.806912,0.012288
+698,646.975,1.54565,1.47046,0.012288,0.249216,0.004736,0.006144,0.012256,0.020544,0.016352,1.13664,0.012288
+699,543.344,1.84045,1.11734,0.012288,0.221216,0.005728,0.00448,0.011392,0.013088,0.028416,0.808352,0.012384
+700,373.365,2.67834,1.22992,0.016384,0.321536,0.006144,0.00528,0.020576,0.021248,0.016384,0.809088,0.01328
+701,861.59,1.16064,1.11632,0.012416,0.232736,0.004832,0.005664,0.010624,0.012416,0.017408,0.807904,0.01232
+702,625.153,1.59961,1.2976,0.012288,0.407552,0.005472,0.004768,0.01024,0.016384,0.016384,0.81216,0.012352
+703,594.96,1.68079,1.46022,0.012288,0.22528,0.005888,0.004352,0.011616,0.012928,0.016256,1.15728,0.014336
+704,468.65,2.13379,1.11648,0.012832,0.231424,0.005504,0.004736,0.010272,0.014304,0.016416,0.808768,0.012224
+705,664.557,1.50476,1.11002,0.01232,0.225248,0.0056,0.004672,0.010208,0.013856,0.016544,0.80928,0.012288
+706,658.151,1.51941,1.29514,0.012288,0.40544,0.00496,0.005568,0.010688,0.015744,0.016352,0.811808,0.012288
+707,578.572,1.72839,1.4705,0.011968,0.227648,0.005856,0.004384,0.011456,0.013088,0.016448,1.16518,0.014464
+708,435.861,2.29431,1.12598,0.012288,0.23552,0.005696,0.004544,0.012288,0.013728,0.016832,0.8128,0.012288
+709,696.836,1.43506,1.12842,0.01232,0.233376,0.00528,0.005024,0.01024,0.013728,0.016736,0.819456,0.012256
+710,649.695,1.53918,1.29181,0.012256,0.407168,0.004576,0.005952,0.010432,0.015744,0.015072,0.808416,0.012192
+711,612.669,1.6322,1.4848,0.012288,0.230432,0.005088,0.005376,0.010656,0.01264,0.016384,1.17702,0.014912
+712,460.742,2.17041,1.13098,0.012416,0.245408,0.0048,0.005664,0.01072,0.014336,0.016224,0.80912,0.012288
+713,674.627,1.4823,1.10832,0.012032,0.222016,0.005728,0.004512,0.010336,0.01408,0.016544,0.810752,0.01232
+714,635.531,1.57349,1.30659,0.012288,0.414976,0.004864,0.006144,0.01024,0.01584,0.01488,0.815104,0.012256
+715,583.975,1.7124,1.11616,0.012128,0.228896,0.004736,0.00576,0.010624,0.012288,0.016384,0.813056,0.012288
+716,400.763,2.49524,1.14355,0.014432,0.24,0.004352,0.022528,0.011616,0.01296,0.01824,0.807104,0.01232
+717,552.431,1.81018,1.44589,0.012096,0.268,0.004576,0.005888,0.010496,0.01344,0.016288,1.10006,0.01504
+718,562.406,1.77808,1.12861,0.012224,0.231424,0.004864,0.005536,0.010848,0.014368,0.016288,0.8208,0.012256
+719,606.186,1.64966,1.85549,0.012288,0.241696,0.005888,0.00432,0.011552,0.012672,0.016544,1.53786,0.012672
+720,460.121,2.17334,1.12438,0.01232,0.23344,0.005728,0.004512,0.01136,0.013216,0.016384,0.815104,0.01232
+721,612.669,1.6322,1.43619,0.010784,0.24336,0.004448,0.006016,0.0104,0.013888,0.016672,1.11629,0.014336
+722,581.405,1.71997,1.11011,0.012384,0.223264,0.005696,0.004512,0.010368,0.01424,0.016384,0.810976,0.012288
+723,616.96,1.62085,1.75718,0.012288,0.487424,0.026624,0.005728,0.026432,0.016416,0.016352,1.15363,0.012288
+724,439.414,2.27576,1.16794,0.012192,0.278944,0.004608,0.005888,0.010496,0.014336,0.022304,0.806912,0.012256
+725,465.27,2.14929,1.51712,0.01232,0.280544,0.005984,0.004352,0.01152,0.017056,0.030016,1.14144,0.013888
+726,773.998,1.29199,1.12074,0.011904,0.236064,0.004416,0.006016,0.010368,0.014112,0.016096,0.809472,0.012288
+727,454.757,2.19897,1.13459,0.014336,0.24576,0.006144,0.005216,0.010592,0.012864,0.016416,0.810976,0.012288
+728,659.104,1.51721,1.11094,0.0112,0.228448,0.004992,0.005536,0.010752,0.013568,0.0152,0.80896,0.012288
+729,650.314,1.53772,1.33939,0.01232,0.454624,0.00592,0.00432,0.011552,0.015168,0.017408,0.805792,0.012288
+730,556.182,1.79797,1.11824,0.013536,0.2296,0.004672,0.005792,0.010592,0.013792,0.016256,0.81168,0.01232
+731,573.549,1.74353,1.35344,0.052896,0.421952,0.004384,0.006112,0.010272,0.016416,0.016352,0.812512,0.012544
+732,596.172,1.67737,1.12733,0.012288,0.233728,0.004736,0.005824,0.010464,0.013888,0.016192,0.817888,0.01232
+733,657.042,1.52197,1.43549,0.01232,0.227296,0.005856,0.004384,0.011424,0.012864,0.016352,1.13251,0.01248
+734,504.371,1.98267,1.13037,0.012288,0.239456,0.00528,0.00512,0.010272,0.014336,0.016288,0.815072,0.012256
+735,612.715,1.63208,1.70189,0.011936,0.466976,0.006464,0.006144,0.01024,0.016384,0.016384,1.15462,0.012736
+736,493.821,2.02502,1.12877,0.011296,0.237088,0.004544,0.00592,0.011904,0.012896,0.016384,0.81648,0.012256
+737,649.386,1.53992,1.3337,0.011968,0.444224,0.005056,0.00544,0.010688,0.016,0.016448,0.811584,0.012288
+738,517.596,1.93201,1.12784,0.01232,0.24368,0.00528,0.00496,0.01024,0.014368,0.016352,0.808928,0.011712
+739,651.918,1.53394,1.70381,0.011968,0.457024,0.014336,0.005888,0.010496,0.016416,0.016352,1.1585,0.012832
+740,489.338,2.04358,1.15894,0.01216,0.268416,0.005472,0.004768,0.01024,0.014336,0.016384,0.814944,0.012224
+741,619.808,1.6134,1.29638,0.012288,0.406592,0.005056,0.00544,0.010656,0.015872,0.015136,0.813056,0.012288
+742,604.174,1.65515,1.13514,0.012256,0.238176,0.005344,0.004896,0.010272,0.014304,0.017536,0.820096,0.012256
+743,421.031,2.37512,1.14896,0.014112,0.256064,0.004384,0.006144,0.01024,0.01408,0.016352,0.815232,0.012352
+744,724.379,1.38049,1.11821,0.012288,0.230848,0.004672,0.00592,0.010464,0.013856,0.01664,0.811232,0.012288
+745,647.282,1.54492,1.29827,0.011872,0.405792,0.004576,0.005952,0.010432,0.01568,0.016128,0.815488,0.012352
+746,598.306,1.67139,1.1168,0.012352,0.23168,0.004416,0.006048,0.011552,0.01312,0.016384,0.80896,0.012288
+747,428.474,2.33386,1.13664,0.014336,0.243712,0.005472,0.004768,0.01024,0.014176,0.01648,0.815168,0.012288
+748,662.408,1.50964,1.11341,0.012288,0.229376,0.006144,0.005216,0.010656,0.012832,0.016352,0.808288,0.012256
+749,642.661,1.55603,1.2969,0.012,0.404288,0.005792,0.004448,0.011456,0.015168,0.016384,0.815104,0.012256
+750,488.2,2.04834,1.49606,0.011488,0.248608,0.0056,0.00464,0.01232,0.014304,0.016384,1.16736,0.01536
+751,545.333,1.83374,1.12845,0.01216,0.231552,0.00528,0.00496,0.01024,0.014112,0.016544,0.821312,0.012288
+752,637.609,1.56836,1.12518,0.012224,0.231712,0.004672,0.005824,0.01056,0.013952,0.016352,0.8176,0.012288
+753,613.679,1.62952,1.11856,0.011936,0.227264,0.004832,0.005632,0.010656,0.012384,0.017696,0.81584,0.01232
+754,650.159,1.53809,1.47424,0.012064,0.244096,0.005888,0.004352,0.011264,0.013312,0.016384,1.15098,0.015904
+755,456.404,2.19104,1.12317,0.0112,0.237472,0.006016,0.00432,0.01152,0.0128,0.016544,0.812032,0.011264
+756,696.007,1.43677,1.11866,0.012192,0.229184,0.0048,0.005696,0.010688,0.013952,0.016352,0.813472,0.01232
+757,635.433,1.57373,1.29814,0.012224,0.405088,0.004576,0.00592,0.010464,0.015968,0.01664,0.815008,0.012256
+758,532.64,1.87744,1.48192,0.01232,0.240928,0.0048,0.005696,0.010624,0.013664,0.01616,1.16218,0.015552
+759,506.273,1.97522,1.14483,0.012288,0.259392,0.0048,0.005664,0.010752,0.012256,0.016384,0.811008,0.012288
+760,660.379,1.51428,1.12726,0.012288,0.23024,0.006048,0.004192,0.01152,0.013056,0.018144,0.819488,0.012288
+761,649.231,1.54028,1.29402,0.011872,0.405952,0.005344,0.004992,0.010208,0.01632,0.016192,0.81088,0.012256
+762,575.483,1.73767,1.12829,0.01232,0.23488,0.004704,0.005856,0.01056,0.013888,0.016096,0.817696,0.012288
+763,449.665,2.22388,1.13664,0.014336,0.243616,0.00528,0.005056,0.01024,0.01376,0.016544,0.81552,0.012288
+764,633.614,1.57825,1.12458,0.01232,0.233664,0.005312,0.004992,0.01024,0.013888,0.01616,0.815712,0.012288
+765,661.712,1.51123,1.29229,0.01216,0.405632,0.006048,0.004352,0.011488,0.016,0.0168,0.80752,0.012288
+766,580.211,1.72351,1.47251,0.012288,0.23472,0.004896,0.005536,0.010656,0.013696,0.01632,1.15962,0.014784
+767,452.422,2.21033,1.11955,0.01232,0.23296,0.004576,0.005888,0.011808,0.013024,0.016224,0.810496,0.012256
+768,701.37,1.42578,1.11299,0.01248,0.225952,0.00528,0.004992,0.011552,0.013024,0.016384,0.811008,0.01232
+769,627.259,1.59424,1.29949,0.01232,0.407008,0.004608,0.005952,0.010432,0.015872,0.01632,0.814752,0.012224
+770,552.282,1.81067,1.48931,0.012224,0.242144,0.005376,0.004864,0.010272,0.014336,0.016352,1.1689,0.014848
+771,490.745,2.03772,1.1239,0.012032,0.231808,0.006048,0.005184,0.01072,0.012832,0.01744,0.815616,0.012224
+772,667.862,1.49731,1.1191,0.011168,0.227296,0.005504,0.004736,0.011264,0.013344,0.016352,0.817152,0.012288
+773,637.559,1.56848,1.29843,0.012064,0.405728,0.006144,0.00512,0.010688,0.016,0.01648,0.81392,0.012288
+774,579.472,1.72571,1.47805,0.012288,0.233472,0.005344,0.004896,0.01024,0.014368,0.016224,1.16544,0.015776
+775,418.194,2.39124,1.16685,0.012096,0.275968,0.0048,0.005664,0.010656,0.014432,0.016384,0.814528,0.01232
+776,638.305,1.56665,1.14138,0.012416,0.242208,0.006112,0.00528,0.010752,0.013728,0.015296,0.823296,0.012288
+777,659.263,1.51685,1.16707,0.01232,0.26528,0.005024,0.00544,0.010688,0.012544,0.016384,0.827008,0.012384
+778,587.788,1.70129,1.14698,0.012288,0.245792,0.006016,0.004192,0.011648,0.012928,0.016384,0.825344,0.012384
+779,459.915,2.17432,1.15376,0.013024,0.262144,0.00528,0.004992,0.01024,0.01376,0.016512,0.81552,0.012288
+780,749.908,1.3335,1.13149,0.0112,0.23552,0.0056,0.00464,0.0104,0.014176,0.016384,0.821248,0.01232
+781,579.924,1.72437,1.11914,0.0112,0.23344,0.00528,0.004992,0.011424,0.012768,0.01664,0.811104,0.012288
+782,399.59,2.50256,1.49094,0.01216,0.239072,0.004768,0.005696,0.012032,0.012992,0.016384,1.17325,0.014592
+783,836.174,1.19592,1.13568,0.012288,0.241664,0.00608,0.00432,0.012128,0.013344,0.016384,0.817216,0.012256
+784,579.924,1.72437,1.14077,0.012224,0.241024,0.004832,0.005728,0.010528,0.013568,0.015232,0.825344,0.012288
+785,688.693,1.45203,1.12445,0.011104,0.23488,0.004576,0.00592,0.010464,0.012288,0.016384,0.816448,0.012384
+786,568.376,1.7594,1.49955,0.011968,0.256032,0.0048,0.005664,0.010656,0.013792,0.016384,1.16592,0.014336
+787,516.52,1.93604,1.1329,0.012704,0.24336,0.004576,0.005888,0.010496,0.01344,0.016352,0.813824,0.012256
+788,628.076,1.59216,1.13862,0.012256,0.235552,0.005504,0.004736,0.012032,0.01392,0.016256,0.826112,0.012256
+789,463.926,2.15552,1.12781,0.012256,0.23264,0.00496,0.005504,0.010656,0.012512,0.016384,0.820736,0.01216
+790,852.357,1.17322,1.48851,0.012288,0.238944,0.004768,0.005728,0.010688,0.012352,0.016288,1.17299,0.014464
+791,450.308,2.2207,1.12298,0.012032,0.232064,0.004352,0.006112,0.010304,0.013312,0.016416,0.816064,0.01232
+792,591.48,1.69067,1.13104,0.011168,0.23504,0.004448,0.005984,0.011424,0.013344,0.016352,0.821056,0.012224
+793,771.52,1.29614,1.13875,0.01264,0.231104,0.004928,0.005568,0.010688,0.012416,0.016416,0.832736,0.012256
+794,615.57,1.62451,1.12992,0.012288,0.231232,0.004288,0.006144,0.01024,0.014336,0.016192,0.82288,0.01232
+795,644.481,1.55164,1.13485,0.011872,0.228,0.005344,0.004896,0.011488,0.013088,0.016352,0.83152,0.012288
+796,565.16,1.76941,1.13414,0.012288,0.23504,0.004576,0.005952,0.011904,0.012864,0.016384,0.822848,0.012288
+797,789.971,1.26587,1.44944,0.011744,0.23008,0.005664,0.004576,0.011264,0.013024,0.016608,1.14285,0.013632
+798,556.068,1.79834,1.13936,0.012128,0.2384,0.005824,0.004416,0.012288,0.01424,0.016096,0.82368,0.012288
+799,622.161,1.6073,1.8704,0.01184,0.2304,0.005856,0.004384,0.011488,0.013024,0.016256,1.56282,0.014336
+800,418.835,2.38757,1.14282,0.01232,0.243168,0.004608,0.00592,0.010464,0.013952,0.016288,0.823776,0.01232
+801,568.612,1.75867,1.31514,0.011808,0.416544,0.006144,0.005312,0.010688,0.016064,0.016448,0.81984,0.012288
+802,641.353,1.5592,1.16141,0.01232,0.262272,0.005408,0.004832,0.01024,0.014336,0.016416,0.823264,0.01232
+803,426.756,2.34326,1.15917,0.014336,0.251168,0.004832,0.005632,0.010688,0.012352,0.016448,0.831456,0.012256
+804,722.08,1.38489,1.13869,0.013568,0.235616,0.004768,0.005696,0.010656,0.013664,0.016736,0.825696,0.012288
+805,678.202,1.47449,1.31312,0.01184,0.404256,0.006144,0.00528,0.010688,0.015808,0.016448,0.830368,0.012288
+806,561.981,1.77942,1.17139,0.01232,0.261536,0.004672,0.005824,0.01056,0.014304,0.016256,0.833632,0.012288
+807,535.53,1.86731,1.37373,0.048736,0.422304,0.006112,0.005184,0.010816,0.016128,0.016448,0.835744,0.012256
+808,403.865,2.47607,1.1441,0.01232,0.237536,0.005984,0.005312,0.010688,0.012864,0.017504,0.829664,0.012224
+809,625.869,1.59778,1.13869,0.01232,0.239584,0.006144,0.005248,0.010688,0.012672,0.016448,0.823296,0.012288
+810,529.131,1.88989,1.89843,0.012288,0.241664,0.005504,0.004736,0.010336,0.01424,0.016384,1.57901,0.014272
+811,432.204,2.31372,1.15306,0.012288,0.255552,0.004544,0.00592,0.010464,0.012288,0.016384,0.823296,0.01232
+812,811.571,1.23218,1.1657,0.012416,0.256224,0.00528,0.004992,0.01024,0.013536,0.016352,0.834368,0.012288
+813,625.63,1.59839,1.13459,0.012128,0.231584,0.00576,0.00448,0.01136,0.012928,0.01664,0.827424,0.012288
+814,655.885,1.52466,1.14691,0.012288,0.246976,0.004928,0.005536,0.010848,0.014336,0.016416,0.824832,0.010752
+815,657.147,1.52173,1.14118,0.0112,0.231392,0.005888,0.004352,0.011488,0.013056,0.016416,0.835072,0.01232
+816,646.159,1.54761,1.12835,0.012256,0.225216,0.0056,0.00464,0.011328,0.013248,0.016384,0.827392,0.012288
+817,648.409,1.54224,1.1223,0.012288,0.223232,0.006144,0.005248,0.011136,0.012384,0.01744,0.823168,0.011264
+818,660.432,1.51416,1.12438,0.012288,0.224608,0.004768,0.005664,0.01072,0.013568,0.016384,0.824064,0.01232
+819,614.277,1.62793,1.13437,0.012,0.229696,0.005504,0.004736,0.010208,0.013696,0.016544,0.829728,0.012256
+820,689.446,1.45044,1.13642,0.012,0.233536,0.004896,0.005568,0.010688,0.0136,0.0152,0.82864,0.012288
+821,638.603,1.56592,1.41558,0.011744,0.226144,0.0056,0.004672,0.01024,0.013664,0.016416,1.11376,0.013344
+822,549.872,1.8186,1.13696,0.012512,0.222528,0.004896,0.005568,0.010592,0.013952,0.016192,0.838432,0.012288
+823,641.906,1.55786,1.85702,0.011872,0.227776,0.006144,0.005248,0.011104,0.01232,0.016384,1.55238,0.013792
+824,440.904,2.26807,1.1295,0.012256,0.225312,0.005856,0.004384,0.011424,0.013152,0.016384,0.828416,0.01232
+825,599.795,1.66724,1.45053,0.011904,0.228224,0.005696,0.004544,0.01024,0.013728,0.0168,1.1465,0.012896
+826,533.611,1.87402,1.13258,0.012288,0.22848,0.004992,0.005472,0.010912,0.013952,0.01632,0.82784,0.01232
+827,541.226,1.84766,1.33997,0.014432,0.421888,0.004928,0.005568,0.010656,0.01616,0.016768,0.837248,0.01232
+828,600.147,1.66626,1.16867,0.012384,0.253856,0.005728,0.004512,0.01136,0.013248,0.016352,0.83888,0.012352
+829,662.676,1.50903,1.44666,0.0112,0.227136,0.006144,0.005184,0.010688,0.012672,0.016512,1.14422,0.012896
+830,559.792,1.78638,1.13427,0.012064,0.231296,0.004576,0.006016,0.010368,0.014176,0.016256,0.827168,0.012352
+831,563.179,1.77563,1.33424,0.014592,0.422144,0.004576,0.005952,0.010432,0.016416,0.016352,0.831488,0.012288
+832,584.225,1.71167,1.12499,0.012416,0.223328,0.0048,0.005664,0.010656,0.013504,0.01632,0.826016,0.012288
+833,639.301,1.56421,1.45181,0.011936,0.225504,0.004384,0.00608,0.010336,0.012256,0.017472,1.14989,0.013952
+834,536.055,1.86548,1.12483,0.01216,0.22528,0.005088,0.005408,0.010752,0.01376,0.016448,0.823584,0.012352
+835,560.405,1.78442,1.35584,0.014176,0.443776,0.00496,0.005568,0.010656,0.016256,0.016352,0.831808,0.012288
+836,570.712,1.7522,1.13773,0.012288,0.226688,0.004736,0.005824,0.01056,0.013856,0.01648,0.833984,0.013312
+837,632.294,1.58154,1.4639,0.011968,0.237984,0.00544,0.0048,0.01024,0.01344,0.016288,1.14992,0.013824
+838,523.584,1.90991,1.13382,0.012384,0.221088,0.006144,0.005312,0.011072,0.013536,0.015168,0.836928,0.012192
+839,673.463,1.48486,1.84685,0.012224,0.223296,0.005536,0.004704,0.01024,0.013728,0.029088,1.53395,0.01408
+840,445.556,2.24438,1.13005,0.012288,0.228544,0.004928,0.0056,0.010688,0.013856,0.016128,0.825696,0.01232
+841,422.225,2.36841,1.45059,0.011904,0.222176,0.004096,0.00576,0.010144,0.012768,0.016384,1.15507,0.012288
+842,500,2,1.15507,0.01232,0.24128,0.004448,0.006016,0.010368,0.014272,0.016416,0.837664,0.012288
+843,812.698,1.23047,1.15693,0.014368,0.2496,0.00432,0.006144,0.01024,0.013536,0.016416,0.829984,0.01232
+844,642.308,1.55688,1.15331,0.012192,0.239552,0.004544,0.005952,0.010432,0.014336,0.016384,0.837632,0.012288
+845,661.819,1.51099,1.46016,0.012288,0.230432,0.005088,0.00416,0.011424,0.012736,0.016384,1.15514,0.012512
+846,523.986,1.90845,1.13459,0.012064,0.229376,0.00432,0.006112,0.010272,0.014336,0.016032,0.831264,0.010816
+847,437.981,2.2832,1.15098,0.014304,0.241728,0.00592,0.00432,0.01152,0.013056,0.016448,0.831392,0.012288
+848,563.799,1.77368,1.15552,0.01232,0.244224,0.004416,0.006048,0.010368,0.013792,0.016224,0.835808,0.01232
+849,544.608,1.83618,1.31309,0.011872,0.406144,0.005376,0.004992,0.01024,0.016256,0.016512,0.829408,0.012288
+850,949.687,1.05298,1.50442,0.012288,0.234592,0.005024,0.00544,0.010752,0.013792,0.016192,1.19082,0.01552
+851,452.197,2.21143,1.16109,0.012096,0.257024,0.005952,0.00432,0.011552,0.01296,0.016384,0.828512,0.012288
+852,645.446,1.54932,1.13261,0.012352,0.23024,0.005728,0.004512,0.011424,0.014368,0.015168,0.826592,0.012224
+853,660.326,1.5144,1.31482,0.012288,0.405312,0.005344,0.005088,0.01024,0.016416,0.016288,0.831584,0.012256
+854,556.976,1.79541,1.14528,0.012128,0.239456,0.004864,0.005696,0.010688,0.01424,0.016096,0.829824,0.012288
+855,456.531,2.19043,1.15712,0.014336,0.2496,0.004352,0.006144,0.01024,0.013472,0.016288,0.8304,0.012288
+856,576.09,1.73584,1.16339,0.012096,0.256288,0.005344,0.004896,0.01024,0.014336,0.016384,0.831488,0.01232
+857,606.905,1.64771,1.17149,0.01232,0.263424,0.004832,0.0056,0.010784,0.012288,0.016384,0.833536,0.01232
+858,687.364,1.45483,1.50576,0.012352,0.246144,0.005376,0.004896,0.010272,0.014304,0.01632,1.1816,0.014496
+859,455.061,2.19751,1.1752,0.012256,0.269344,0.00512,0.005312,0.010656,0.01264,0.016448,0.831168,0.012256
+860,616.311,1.62256,1.16531,0.012288,0.245472,0.004384,0.006112,0.010272,0.014336,0.016416,0.843744,0.012288
+861,599.619,1.66772,1.14211,0.012256,0.233408,0.005312,0.005024,0.01024,0.013536,0.016416,0.833664,0.012256
+862,663.105,1.50806,1.51142,0.012288,0.239584,0.005248,0.00496,0.010304,0.013568,0.016128,1.19466,0.014688
+863,437.747,2.28442,1.14227,0.012288,0.231424,0.005376,0.004864,0.01024,0.013856,0.016416,0.835424,0.012384
+864,668.407,1.49609,1.13722,0.011904,0.227424,0.00496,0.004096,0.01152,0.013056,0.016384,0.835584,0.012288
+865,497.027,2.01196,1.15098,0.012064,0.235744,0.00544,0.0048,0.01024,0.014336,0.016384,0.839712,0.012256
+866,816.424,1.22485,1.50531,0.012288,0.2408,0.00496,0.005504,0.010688,0.01376,0.016384,1.18598,0.014944
+867,469.94,2.12793,1.14486,0.012288,0.23552,0.006144,0.005248,0.011136,0.012288,0.016384,0.833536,0.01232
+868,677.697,1.47559,1.14074,0.012288,0.233088,0.00448,0.006048,0.010336,0.014176,0.016256,0.831776,0.012288
+869,595.782,1.67847,1.14253,0.01232,0.234752,0.004832,0.005664,0.010592,0.012448,0.016352,0.833344,0.012224
+870,619.105,1.61523,1.51843,0.011296,0.237536,0.005824,0.004416,0.011424,0.013152,0.016384,1.20384,0.01456
+871,471.075,2.1228,1.14675,0.012288,0.234816,0.0048,0.005696,0.010688,0.013888,0.016672,0.83568,0.012224
+872,658.309,1.51904,1.13146,0.011232,0.22528,0.005728,0.004512,0.010304,0.01424,0.016416,0.831456,0.012288
+873,590.032,1.69482,1.1305,0.012288,0.224416,0.00496,0.005536,0.010848,0.013568,0.016544,0.830048,0.012288
+874,628.221,1.5918,1.88416,0.012288,0.241472,0.00448,0.005952,0.010272,0.014336,0.016352,1.56576,0.013248
+875,446.674,2.23877,1.13792,0.01184,0.228928,0.005024,0.005472,0.010688,0.012512,0.016384,0.834816,0.012256
+876,581.984,1.71826,1.13789,0.012,0.231872,0.005408,0.004832,0.011744,0.012864,0.016352,0.830496,0.01232
+877,618.825,1.61597,1.13584,0.012064,0.233696,0.005952,0.004352,0.01152,0.012864,0.016512,0.82656,0.01232
+878,630.057,1.58716,1.85139,0.012384,0.230336,0.005088,0.005344,0.010688,0.013856,0.016352,1.54506,0.012288
+879,449.123,2.22656,1.13459,0.012288,0.232928,0.00464,0.005824,0.01056,0.012384,0.016352,0.827392,0.012224
+880,561.866,1.77979,1.43213,0.01232,0.231968,0.005888,0.004352,0.011552,0.013024,0.016384,1.12234,0.014304
+881,625.344,1.59912,1.14074,0.01232,0.230464,0.005024,0.00544,0.010656,0.012576,0.016384,0.835584,0.012288
+882,584.809,1.70996,1.73648,0.01232,0.446432,0.04416,0.00704,0.011456,0.015168,0.016384,1.17062,0.012896
+883,500.305,1.99878,1.14138,0.011968,0.228128,0.004256,0.006144,0.01024,0.013696,0.016192,0.838464,0.012288
+884,646.363,1.54712,1.41837,0.012288,0.223232,0.005952,0.00448,0.011168,0.013216,0.016384,1.11616,0.015488
+885,498.115,2.00757,1.14109,0.011168,0.231264,0.005536,0.004704,0.011296,0.012928,0.016736,0.835136,0.01232
+886,644.228,1.55225,1.87299,0.012288,0.258176,0.00576,0.004448,0.011392,0.013184,0.016384,1.53805,0.013312
+887,462.302,2.16309,1.13152,0.011296,0.228896,0.004608,0.005984,0.010336,0.013472,0.016384,0.828256,0.012288
+888,656.41,1.52344,1.45302,0.012416,0.224096,0.00608,0.005184,0.010592,0.01296,0.016384,1.15302,0.012288
+889,531.603,1.8811,1.13651,0.012096,0.228352,0.005344,0.004896,0.01024,0.013568,0.016352,0.833344,0.01232
+890,466.727,2.14258,1.14803,0.014336,0.236768,0.004896,0.005536,0.010848,0.014272,0.016288,0.8328,0.012288
+891,657.569,1.52075,1.12662,0.01104,0.223008,0.00432,0.006144,0.01024,0.013696,0.01664,0.829312,0.012224
+892,619.105,1.61523,1.45267,0.012224,0.221696,0.004352,0.005184,0.01056,0.01296,0.016352,1.15616,0.013184
+893,562.097,1.77905,1.14755,0.011296,0.224512,0.004832,0.005632,0.010752,0.012384,0.017344,0.848864,0.011936
+894,422.617,2.36621,1.21658,0.014656,0.29552,0.005984,0.004256,0.01168,0.012896,0.016416,0.84288,0.012288
+895,679.383,1.47192,1.14483,0.012288,0.227296,0.005824,0.004448,0.011328,0.013152,0.016512,0.841696,0.012288
+896,639.7,1.56323,1.3272,0.012064,0.405632,0.004928,0.006112,0.010272,0.015712,0.0152,0.844896,0.012384
+897,569.284,1.75659,1.50627,0.011264,0.225248,0.005792,0.004448,0.011456,0.012704,0.016224,1.20454,0.014592
+898,466.355,2.14429,1.14435,0.012064,0.229248,0.004864,0.0056,0.010656,0.01392,0.016416,0.839296,0.012288
+899,650.159,1.53809,1.13334,0.012064,0.223328,0.005024,0.00528,0.010656,0.012736,0.016384,0.835584,0.012288
+900,638.802,1.56543,1.32528,0.011936,0.405088,0.005088,0.005568,0.010656,0.015904,0.016288,0.842464,0.012288
+901,579.186,1.72656,1.13203,0.01232,0.223232,0.006112,0.005344,0.010656,0.012704,0.016352,0.832992,0.01232
+902,360.563,2.77344,1.20477,0.01488,0.279616,0.005056,0.005408,0.010656,0.016416,0.02896,0.831488,0.012288
+903,1113.35,0.898193,1.15584,0.012,0.233888,0.004704,0.00576,0.010592,0.01232,0.016576,0.84768,0.01232
+904,620.512,1.61157,1.3184,0.01232,0.406592,0.005024,0.005504,0.010688,0.015712,0.0152,0.83504,0.01232
+905,564.888,1.77026,1.49491,0.013376,0.22624,0.005248,0.006464,0.010816,0.012288,0.016384,1.18934,0.014752
+906,476.889,2.09692,1.14771,0.012384,0.226016,0.006112,0.005184,0.010592,0.012928,0.016384,0.845824,0.012288
+907,650.779,1.53662,1.13843,0.011936,0.224,0.005248,0.004992,0.01024,0.013536,0.016384,0.839808,0.012288
+908,602.353,1.66016,1.12998,0.012448,0.22288,0.005856,0.004832,0.010304,0.014272,0.01632,0.830784,0.012288
+909,643.014,1.55518,1.83504,0.011968,0.222912,0.004768,0.005728,0.010592,0.012352,0.016384,1.536,0.014336
+910,438.497,2.28052,1.13699,0.012416,0.223808,0.00592,0.00432,0.01024,0.014336,0.024576,0.828992,0.012384
+911,496.124,2.01562,1.13418,0.012288,0.22112,0.005248,0.005056,0.01024,0.013632,0.022592,0.831776,0.012224
+912,613.449,1.63013,1.20077,0.01232,0.281184,0.005504,0.004768,0.010272,0.016352,0.022528,0.835552,0.012288
+913,808.049,1.23755,1.83706,0.01216,0.227488,0.006048,0.005216,0.010624,0.012832,0.016064,1.53229,0.014336
+914,444.348,2.25049,1.14074,0.01232,0.229344,0.005664,0.004576,0.011328,0.013248,0.016384,0.835584,0.012288
+915,650.056,1.53833,1.13686,0.011168,0.223232,0.005504,0.004736,0.01024,0.014144,0.016544,0.839712,0.011584
+916,531.741,1.88062,1.14502,0.012256,0.221408,0.006144,0.005376,0.010208,0.013088,0.016384,0.847872,0.012288
+917,632.294,1.58154,1.85072,0.012032,0.223488,0.006112,0.005184,0.010592,0.012928,0.016416,1.5503,0.013664
+918,441.712,2.26392,1.1391,0.011904,0.226144,0.005984,0.004256,0.011616,0.01296,0.01648,0.83744,0.01232
+919,647.384,1.54468,1.44138,0.01232,0.221152,0.005824,0.004416,0.011776,0.0128,0.024576,1.1344,0.014112
+920,426.622,2.34399,1.20406,0.012672,0.27568,0.00496,0.005472,0.015008,0.028672,0.018144,0.831136,0.01232
+921,888.118,1.12598,1.73312,0.011936,0.478048,0.007872,0.004416,0.011456,0.016288,0.016448,1.17434,0.01232
+922,463.086,2.15942,1.14243,0.012096,0.223968,0.005568,0.004672,0.010272,0.014304,0.023584,0.835712,0.012256
+923,655.99,1.52441,1.47046,0.012288,0.223168,0.005248,0.005056,0.01024,0.013824,0.016896,1.17101,0.012736
+924,528.243,1.89307,1.14182,0.012288,0.221184,0.00608,0.005248,0.010656,0.012832,0.028288,0.832928,0.01232
+925,457.092,2.18774,1.14915,0.014048,0.225792,0.005376,0.004864,0.01024,0.014336,0.03072,0.831488,0.012288
+926,654.941,1.52686,1.13597,0.012064,0.225056,0.004544,0.006144,0.011328,0.013248,0.016384,0.835232,0.011968
+927,646.057,1.54785,1.46371,0.01232,0.237536,0.00544,0.0048,0.010272,0.013696,0.016736,1.15043,0.01248
+928,533.681,1.87378,1.13261,0.01232,0.221248,0.00528,0.00496,0.01024,0.014368,0.016352,0.83552,0.01232
+929,449.172,2.22632,1.24928,0.014336,0.311168,0.005856,0.004512,0.02,0.012768,0.029728,0.838624,0.012288
+930,685.753,1.45825,1.15101,0.012288,0.22528,0.005568,0.004672,0.010336,0.01424,0.028576,0.837728,0.01232
+931,635.729,1.573,1.4729,0.011968,0.22176,0.018432,0.006112,0.010272,0.0136,0.016288,1.16205,0.012416
+932,547.667,1.82593,1.13258,0.012288,0.22528,0.005664,0.004576,0.011264,0.013312,0.016384,0.831488,0.01232
+933,465.243,2.14941,1.14054,0.014208,0.22752,0.00544,0.0048,0.01024,0.014016,0.01664,0.835392,0.012288
+934,639.7,1.56323,1.13728,0.011168,0.22304,0.004288,0.006112,0.010272,0.014112,0.022752,0.833216,0.01232
+935,637.609,1.56836,1.31846,0.012064,0.405312,0.004512,0.006016,0.0104,0.015808,0.016352,0.835712,0.012288
+936,581.24,1.72046,1.52442,0.012128,0.232288,0.005344,0.004896,0.01024,0.014336,0.016384,1.21446,0.014336
+937,462.198,2.16357,1.1448,0.012288,0.223168,0.00528,0.005024,0.011648,0.012928,0.016384,0.845824,0.012256
+938,426.667,2.34375,1.21037,0.019488,0.291808,0.00528,0.00496,0.01024,0.014336,0.016384,0.82944,0.018432
+939,937.729,1.06641,1.32717,0.011904,0.416512,0.0056,0.00464,0.010368,0.016256,0.016384,0.833152,0.012352
+940,557.886,1.79248,1.53392,0.01232,0.245312,0.004928,0.005472,0.010688,0.014112,0.016672,1.20957,0.014848
+941,462.825,2.16064,1.14323,0.012,0.230112,0.006048,0.00432,0.011744,0.012704,0.016384,0.837632,0.012288
+942,664.827,1.50415,1.14077,0.012288,0.227328,0.005792,0.004448,0.011392,0.013184,0.016384,0.837632,0.01232
+943,560.098,1.7854,1.14026,0.012128,0.226976,0.005856,0.004928,0.010208,0.013632,0.016192,0.838016,0.01232
+944,627.259,1.59424,1.89235,0.012288,0.255968,0.00528,0.004992,0.01024,0.014144,0.016256,1.55885,0.014336
+945,441.474,2.26514,1.13773,0.012128,0.227488,0.005984,0.004352,0.011584,0.012928,0.016384,0.834624,0.012256
+946,542.876,1.84204,1.44006,0.012384,0.231424,0.005376,0.005056,0.010272,0.014304,0.016384,1.1305,0.014368
+947,570.871,1.75171,1.16861,0.012064,0.256064,0.004256,0.006016,0.010368,0.012288,0.017568,0.837664,0.01232
+948,721.762,1.3855,1.85648,0.011296,0.233408,0.005472,0.004768,0.010272,0.014304,0.01632,1.54835,0.012288
+949,435.42,2.29663,1.15798,0.011232,0.24896,0.004864,0.0056,0.010784,0.013824,0.016352,0.83408,0.012288
+950,643.115,1.55493,1.46227,0.01232,0.235488,0.006144,0.005312,0.011072,0.013952,0.01632,1.14867,0.012992
+951,501.961,1.99219,1.14736,0.012032,0.238304,0.005568,0.004672,0.01024,0.013984,0.016192,0.83408,0.012288
+952,415.332,2.40771,1.14893,0.0144,0.233376,0.00528,0.004992,0.01024,0.014336,0.016256,0.837728,0.01232
+953,637.014,1.56982,1.13891,0.011936,0.222816,0.005056,0.005408,0.010624,0.012672,0.016352,0.841728,0.01232
+954,663.965,1.5061,1.35514,0.012288,0.41328,0.004512,0.006048,0.010336,0.01568,0.016064,0.86448,0.012448
+955,538.735,1.8562,1.50605,0.01104,0.23056,0.004928,0.005536,0.010848,0.013664,0.01632,1.19882,0.014336
+956,465.56,2.14795,1.14682,0.012288,0.22912,0.004352,0.006112,0.010272,0.013952,0.016224,0.842112,0.012384
+957,635.137,1.57446,1.14013,0.012288,0.223232,0.005952,0.00432,0.011584,0.012576,0.016768,0.84112,0.012288
+958,593.193,1.68579,1.15917,0.01232,0.235488,0.005792,0.004448,0.011488,0.013088,0.016384,0.847872,0.012288
+959,609.705,1.64014,1.53299,0.011232,0.240928,0.004832,0.005632,0.010688,0.013824,0.016512,1.20877,0.020576
+960,461.573,2.1665,1.152,0.012384,0.233376,0.006144,0.004096,0.011488,0.013088,0.016384,0.841728,0.013312
+961,654.731,1.52734,1.13645,0.012032,0.222176,0.006144,0.005824,0.01056,0.013344,0.016512,0.837504,0.012352
+962,561.48,1.78101,1.14157,0.018976,0.221472,0.00544,0.0048,0.01024,0.014336,0.016384,0.837632,0.012288
+963,636.717,1.57056,1.12707,0.011936,0.223392,0.00496,0.005504,0.010432,0.012736,0.016416,0.829408,0.012288
+964,437.093,2.28784,1.14851,0.014336,0.231232,0.004288,0.006144,0.01024,0.014336,0.016288,0.839232,0.012416
+965,663.32,1.50757,1.14278,0.012288,0.227264,0.00528,0.005056,0.01152,0.012896,0.016512,0.840736,0.011232
+966,608.076,1.64453,1.13254,0.012288,0.222816,0.004512,0.005952,0.010432,0.014368,0.015872,0.834016,0.012288
+967,649.231,1.54028,1.82787,0.012288,0.223136,0.005248,0.005088,0.01024,0.013472,0.016288,1.52838,0.013728
+968,444.927,2.24756,1.14416,0.012288,0.22496,0.004416,0.006048,0.010336,0.014112,0.016256,0.843456,0.012288
+969,565.433,1.76855,1.13283,0.012032,0.221728,0.005504,0.004768,0.010208,0.01376,0.0168,0.835744,0.012288
+970,575.362,1.73804,1.13459,0.012288,0.221184,0.005888,0.004352,0.011552,0.013088,0.01632,0.837632,0.012288
+971,641.504,1.55884,1.84694,0.012288,0.226464,0.00496,0.005536,0.010656,0.01248,0.016384,1.54419,0.013984
+972,424.896,2.35352,1.18349,0.01232,0.247328,0.004544,0.005952,0.018624,0.030144,0.016384,0.835904,0.012288
+973,592.678,1.68726,1.47661,0.012128,0.239776,0.006144,0.005184,0.010752,0.012736,0.016384,1.16058,0.012928
+974,583.476,1.71387,1.14506,0.012128,0.234272,0.006144,0.005344,0.010624,0.013888,0.016448,0.833888,0.01232
+975,604.576,1.65405,1.72934,0.01104,0.4704,0.006784,0.005824,0.01056,0.016384,0.016384,1.17933,0.01264
+976,479.232,2.08667,1.1425,0.01216,0.226432,0.00512,0.005408,0.010624,0.01264,0.016384,0.841504,0.012224
+977,648.409,1.54224,1.45818,0.012288,0.223232,0.005664,0.004576,0.01024,0.01392,0.016672,1.1593,0.012288
+978,385.833,2.5918,1.16643,0.014112,0.237792,0.006144,0.005312,0.010688,0.012672,0.016512,0.850912,0.012288
+979,741.626,1.34839,1.73299,0.011872,0.447264,0.034816,0.005952,0.010432,0.016416,0.016352,1.17763,0.012256
+980,572.227,1.74756,1.15254,0.012256,0.231584,0.00576,0.004448,0.011872,0.013888,0.01648,0.843968,0.012288
+981,584.308,1.71143,1.59949,0.012288,0.368288,0.004448,0.006112,0.011424,0.013088,0.01648,1.15507,0.012288
+982,517.237,1.93335,1.50694,0.012224,0.225344,0.005664,0.004576,0.011328,0.013248,0.01744,1.20269,0.014432
+983,475.229,2.10425,1.14515,0.012,0.229024,0.005056,0.005312,0.010656,0.012704,0.016384,0.841728,0.012288
+984,656.41,1.52344,1.14035,0.01232,0.225248,0.005792,0.004448,0.011328,0.013248,0.016384,0.83936,0.012224
+985,549.356,1.82031,1.14317,0.01184,0.221984,0.005408,0.004864,0.010208,0.01392,0.016512,0.846112,0.01232
+986,644.329,1.552,1.8407,0.01232,0.225248,0.005856,0.00464,0.010272,0.014304,0.016384,1.53782,0.013856
+987,410.174,2.43799,1.16755,0.01184,0.252544,0.005568,0.004672,0.010368,0.01408,0.016544,0.839648,0.012288
+988,688.635,1.45215,1.14928,0.01216,0.23776,0.00464,0.005856,0.01056,0.012256,0.016384,0.837408,0.012256
+989,531.81,1.88037,1.13587,0.011904,0.225568,0.00528,0.005056,0.01024,0.013568,0.016384,0.835552,0.01232
+990,606.725,1.64819,1.8735,0.012256,0.237504,0.00464,0.005856,0.010528,0.014336,0.016288,1.55866,0.01344
+991,445.556,2.24438,1.14813,0.01184,0.233344,0.0048,0.005632,0.010624,0.012416,0.016384,0.84144,0.011648
+992,659.9,1.51538,1.46038,0.01184,0.223648,0.004288,0.00608,0.010304,0.014208,0.016128,1.16061,0.01328
+993,537.462,1.8606,1.13238,0.012192,0.222496,0.004928,0.005536,0.010688,0.012448,0.016384,0.835456,0.012256
+994,628.703,1.59058,1.73261,0.012288,0.454528,0.028256,0.00464,0.010368,0.016256,0.016384,1.17763,0.012256
+995,472.216,2.11768,1.14077,0.012,0.221504,0.005984,0.00432,0.011776,0.012736,0.016384,0.843776,0.012288
+996,521.385,1.91797,1.49094,0.013344,0.258272,0.004864,0.005632,0.010784,0.014144,0.016512,1.15498,0.012416
+997,502.823,1.98877,1.16182,0.010848,0.24576,0.00528,0.00496,0.01024,0.013728,0.01648,0.84224,0.012288
+998,585.143,1.70898,1.14874,0.014048,0.23424,0.006144,0.005344,0.010656,0.012672,0.016384,0.83712,0.012128
+999,656.515,1.52319,1.13658,0.0112,0.225248,0.005792,0.004448,0.011456,0.012864,0.016416,0.835808,0.013344
+1000,592.079,1.68896,1.48211,0.012416,0.232352,0.005088,0.005376,0.010976,0.013728,0.016224,1.17334,0.012608
+1001,559.257,1.78809,1.15088,0.012288,0.231136,0.004384,0.00608,0.010304,0.013344,0.015328,0.845664,0.012352
+1002,503.009,1.98804,1.14976,0.014496,0.233312,0.004928,0.00608,0.010304,0.013536,0.016384,0.838432,0.012288
+1003,656.2,1.52393,1.14278,0.01216,0.227456,0.005824,0.004416,0.01024,0.0136,0.016352,0.841856,0.01088
+1004,613.082,1.6311,1.4905,0.012064,0.229856,0.006144,0.005472,0.010912,0.01376,0.01616,1.17565,0.02048
+1005,481.146,2.07837,1.19635,0.011008,0.274432,0.006144,0.005216,0.010752,0.012704,0.016416,0.841632,0.018048
+1006,442.285,2.26099,1.17939,0.015552,0.25888,0.005568,0.004672,0.010336,0.01424,0.016384,0.841568,0.012192
+1007,637.311,1.56909,1.16928,0.011968,0.241984,0.004544,0.00592,0.010464,0.013472,0.0168,0.836032,0.028096
+1008,539.8,1.85254,1.13814,0.012288,0.221056,0.00528,0.005088,0.01024,0.013952,0.016128,0.841856,0.012256
+1009,525.398,1.90332,1.58534,0.01184,0.283264,0.005472,0.004768,0.010272,0.016064,0.02896,1.21037,0.014336
+1010,511.936,1.95337,1.13869,0.012288,0.227168,0.00528,0.00512,0.01024,0.014368,0.016224,0.835712,0.012288
+1011,649.643,1.53931,1.43232,0.01088,0.223008,0.00432,0.006144,0.01024,0.013472,0.016256,1.13354,0.014464
+1012,548.767,1.82227,1.13866,0.012224,0.223776,0.005824,0.004384,0.01152,0.013088,0.016288,0.839232,0.01232
+1013,506.805,1.97314,1.79197,0.012288,0.466144,0.039776,0.022144,0.010592,0.016352,0.025824,1.18662,0.012224
+1014,539.373,1.854,1.14486,0.012288,0.232704,0.004864,0.0056,0.010688,0.013792,0.016352,0.836256,0.01232
+1015,646.873,1.5459,1.45597,0.011904,0.226176,0.005376,0.004864,0.01024,0.01392,0.016384,1.15344,0.013664
+1016,532.571,1.87769,1.13936,0.01216,0.219936,0.006144,0.005216,0.010688,0.012768,0.016384,0.843776,0.012288
+1017,607.085,1.64722,1.72778,0.011968,0.469408,0.007456,0.004832,0.010272,0.016352,0.016416,1.17866,0.012416
+1018,480.244,2.08228,1.16214,0.025344,0.225568,0.005856,0.005696,0.010752,0.013856,0.016448,0.8464,0.012224
+1019,635.236,1.57422,1.45408,0.012224,0.220928,0.004416,0.00608,0.010336,0.013536,0.016384,1.15738,0.0128
+1020,404.903,2.46973,1.8824,0.012192,0.21984,0.006144,0.005248,0.010624,0.012896,0.016416,1.5847,0.014336
+1021,430.297,2.32397,1.13466,0.012,0.223584,0.005568,0.004672,0.011264,0.01296,0.016448,0.835872,0.012288
+1022,630.736,1.58545,1.14461,0.012128,0.229696,0.004672,0.005792,0.01056,0.01376,0.016672,0.837952,0.013376
+1023,525.87,1.90161,1.13168,0.012224,0.221312,0.005312,0.004928,0.01024,0.016384,0.016384,0.832608,0.012288
+1024,608.799,1.64258,1.54035,0.01232,0.241952,0.004768,0.005696,0.010688,0.013824,0.015968,1.21949,0.015648
+1025,459.09,2.17822,1.14051,0.012288,0.222848,0.00448,0.00592,0.010464,0.013408,0.016544,0.842272,0.012288
+1026,640.701,1.56079,1.4639,0.01232,0.229696,0.005344,0.004928,0.01024,0.014336,0.016256,1.15725,0.013536
+1027,534.796,1.86987,1.14269,0.011936,0.222816,0.004928,0.005568,0.010624,0.01248,0.016384,0.8456,0.012352
+1028,568.1,1.76025,1.33725,0.014336,0.421888,0.005952,0.004288,0.011584,0.01504,0.016384,0.835392,0.012384
+1029,574.474,1.74072,1.13085,0.011136,0.222208,0.005056,0.006048,0.010336,0.013408,0.01632,0.834016,0.01232
+1030,623.915,1.60278,1.48909,0.012352,0.22064,0.004768,0.0056,0.01056,0.013664,0.016608,1.18237,0.022528
+1031,401.49,2.49072,1.20394,0.012448,0.286112,0.004704,0.00576,0.010624,0.014336,0.017664,0.83984,0.012448
+1032,828.647,1.20679,1.76333,0.013344,0.447456,0.063488,0.005696,0.010656,0.015872,0.015936,1.17859,0.012288
+1033,493.553,2.02612,1.14486,0.01232,0.23344,0.006144,0.005632,0.010752,0.012288,0.016384,0.835584,0.01232
+1034,610.614,1.6377,1.48909,0.011872,0.252384,0.004224,0.005568,0.010816,0.014016,0.01616,1.16176,0.012288
+1035,538.239,1.85791,1.51149,0.012032,0.223488,0.006144,0.00528,0.010528,0.012864,0.016384,1.21037,0.0144
+1036,455.364,2.19604,1.1423,0.012256,0.226368,0.005088,0.005184,0.010464,0.013024,0.016384,0.841312,0.012224
+1037,642.51,1.5564,1.13574,0.011808,0.222784,0.005024,0.00544,0.010592,0.01264,0.016384,0.83888,0.012192
+1038,642.611,1.55615,1.37216,0.011968,0.4216,0.004704,0.005824,0.01056,0.03072,0.016384,0.858112,0.012288
+1039,524.859,1.90527,1.17507,0.012096,0.23776,0.005888,0.004352,0.011552,0.02688,0.026496,0.837728,0.01232
+1040,461.417,2.16724,1.37011,0.014336,0.44032,0.005504,0.004736,0.010272,0.016352,0.027968,0.838336,0.012288
+1041,666.233,1.50098,1.13453,0.011168,0.223232,0.006112,0.005184,0.010656,0.012832,0.016384,0.835584,0.013376
+1042,585.729,1.70728,1.13798,0.012192,0.223424,0.006112,0.004128,0.01168,0.013984,0.016512,0.837696,0.012256
+1043,571.987,1.74829,1.88707,0.011104,0.2376,0.005888,0.022752,0.012064,0.012512,0.023936,1.54688,0.014336
+1044,461.469,2.16699,1.14189,0.012288,0.222656,0.004672,0.005824,0.010464,0.013664,0.01632,0.843776,0.012224
+1045,636.321,1.57153,1.13107,0.011968,0.220032,0.005536,0.004704,0.01024,0.013888,0.016608,0.837312,0.010784
+1046,607.265,1.64673,1.13658,0.012288,0.219136,0.00592,0.00432,0.011296,0.01328,0.016384,0.8416,0.012352
+1047,625.534,1.59863,1.86778,0.012,0.235808,0.005472,0.004768,0.01024,0.014016,0.016352,1.55645,0.012672
+1048,435.977,2.2937,1.1617,0.011232,0.226528,0.004896,0.005568,0.010624,0.013888,0.014976,0.861248,0.012736
+1049,519.731,1.92407,1.52166,0.012288,0.296896,0.005312,0.004992,0.018432,0.014336,0.02032,1.13475,0.014336
+1050,592.421,1.68799,1.16134,0.01248,0.236192,0.005792,0.004416,0.01232,0.022336,0.016064,0.839584,0.01216
+1051,624.01,1.60254,1.74598,0.011936,0.480928,0.01264,0.004448,0.011392,0.016256,0.015424,1.18093,0.012032
+1052,469.671,2.12915,1.13526,0.012288,0.220128,0.005664,0.004608,0.01136,0.013184,0.016384,0.839392,0.012256
+1053,641.403,1.55908,1.45888,0.01088,0.22272,0.004608,0.005856,0.010528,0.01232,0.01792,1.16173,0.01232
+1054,534.238,1.87183,1.14506,0.02224,0.219744,0.006048,0.004192,0.01024,0.014336,0.016384,0.839616,0.012256
+1055,634.94,1.57495,1.77424,0.011008,0.511968,0.008192,0.00544,0.010752,0.015936,0.016608,1.18202,0.01232
+1056,456.633,2.18994,1.15091,0.012288,0.22096,0.00432,0.006144,0.010304,0.029696,0.015296,0.83968,0.012224
+1057,670.486,1.49146,1.48144,0.011264,0.223104,0.00528,0.005088,0.01024,0.013312,0.01664,1.18397,0.012544
+1058,435.328,2.29712,1.23731,0.012288,0.297792,0.00576,0.00448,0.01136,0.025152,0.020096,0.84816,0.012224
+1059,489.601,2.04248,1.15296,0.014336,0.23552,0.00528,0.004992,0.010208,0.013728,0.016384,0.840192,0.01232
+1060,645.141,1.55005,1.1368,0.012064,0.219936,0.006144,0.005376,0.010656,0.013856,0.016256,0.840224,0.012288
+1061,572.787,1.74585,1.15728,0.011808,0.227968,0.006048,0.005216,0.010656,0.011968,0.015264,0.841728,0.026624
+1062,620.042,1.61279,1.88832,0.012288,0.22048,0.004864,0.0056,0.010688,0.013824,0.016352,1.58989,0.014336
+1063,435.513,2.29614,1.18634,0.0128,0.245792,0.005664,0.00576,0.010656,0.012736,0.016384,0.851424,0.02512
+1064,620.982,1.61035,1.14416,0.012224,0.221248,0.005856,0.004384,0.011424,0.013152,0.016384,0.8472,0.012288
+1065,525.196,1.90405,1.14502,0.010848,0.220864,0.004416,0.006048,0.010112,0.012512,0.016416,0.851456,0.012352
+1066,335.38,2.98169,1.93766,0.01248,0.241216,0.004608,0.005856,0.010528,0.014016,0.018432,1.61766,0.012864
+1067,960.15,1.0415,1.15325,0.01184,0.228032,0.005728,0.004544,0.010208,0.013888,0.016256,0.850368,0.012384
+1068,647.077,1.54541,1.45434,0.012192,0.222784,0.004864,0.0056,0.010688,0.013888,0.016192,1.15488,0.013248
+1069,502.084,1.9917,1.1497,0.012032,0.230368,0.005408,0.004832,0.01024,0.013568,0.016608,0.84432,0.01232
+1070,642.611,1.55615,1.74899,0.026048,0.468736,0.006976,0.005664,0.010624,0.015904,0.01616,1.18659,0.012288
+1071,477,2.09644,1.14115,0.011776,0.22016,0.00608,0.005152,0.01072,0.012832,0.016384,0.845728,0.01232
+1072,603.24,1.65771,1.46192,0.012288,0.2168,0.004384,0.005952,0.010432,0.014048,0.022816,1.16262,0.012576
+1073,542.373,1.84375,1.48947,0.01088,0.222816,0.005504,0.005088,0.01024,0.013312,0.01648,1.19062,0.014528
+1074,474.349,2.10815,1.15306,0.012288,0.224928,0.004448,0.006144,0.01024,0.014304,0.016288,0.841856,0.02256
+1075,497.208,2.01123,1.20157,0.011968,0.277184,0.005344,0.005952,0.010656,0.012864,0.016384,0.848928,0.012288
+1076,609.705,1.64014,1.16941,0.012288,0.243712,0.005536,0.004704,0.011648,0.01296,0.02416,0.842112,0.012288
+1077,624.581,1.60107,1.5319,0.012,0.2512,0.005088,0.005408,0.010624,0.01264,0.016384,1.20528,0.01328
+1078,501.899,1.99243,1.152,0.012288,0.22592,0.004448,0.006016,0.010368,0.014272,0.016288,0.85008,0.01232
+1079,635.236,1.57422,1.14675,0.012288,0.22528,0.005664,0.004576,0.011264,0.01296,0.016224,0.84624,0.012256
+1080,604.041,1.65552,1.13987,0.012288,0.221184,0.005344,0.004896,0.01024,0.014304,0.016352,0.843712,0.011552
+1081,593.968,1.68359,1.52301,0.012288,0.241152,0.004608,0.005824,0.010592,0.013728,0.016448,1.20413,0.01424
+1082,485.711,2.05884,1.16893,0.013376,0.24672,0.005376,0.004864,0.01024,0.014368,0.016352,0.845344,0.012288
+1083,642.409,1.55664,1.14522,0.011808,0.223456,0.004736,0.005728,0.010592,0.012352,0.016384,0.847872,0.012288
+1084,471.509,2.12085,1.19309,0.012288,0.272384,0.005376,0.004864,0.01024,0.014368,0.016352,0.844928,0.012288
+1085,711.111,1.40625,1.15773,0.010848,0.240736,0.005024,0.005472,0.010688,0.012512,0.016384,0.845504,0.01056
+1086,485.308,2.06055,1.16102,0.015552,0.23328,0.00512,0.005344,0.01104,0.013856,0.01632,0.848224,0.012288
+1087,654.418,1.52808,1.14022,0.012288,0.22528,0.005984,0.00432,0.01168,0.012832,0.016384,0.83968,0.011776
+1088,595.955,1.67798,1.14118,0.012256,0.219936,0.006144,0.005184,0.01072,0.0128,0.016352,0.8456,0.012192
+1089,623.25,1.60449,1.87059,0.011104,0.251808,0.005472,0.004768,0.012256,0.01232,0.017408,1.54112,0.014336
+1090,442.572,2.25952,1.14688,0.012288,0.22736,0.006112,0.00528,0.010592,0.0128,0.016384,0.843776,0.012288
+1091,645.344,1.54956,1.1448,0.011904,0.224,0.00576,0.00448,0.010464,0.013984,0.016416,0.845472,0.01232
+1092,444.637,2.24902,1.20832,0.012288,0.28432,0.004672,0.00592,0.01024,0.014368,0.016352,0.847872,0.012288
+1093,710.371,1.40771,1.89466,0.011936,0.264288,0.004608,0.005824,0.010592,0.012256,0.016384,1.55555,0.013216
+1094,406.551,2.45972,1.16944,0.012224,0.247424,0.004576,0.005856,0.010528,0.014368,0.015936,0.84624,0.012288
+1095,705.963,1.4165,1.47786,0.012288,0.227328,0.005728,0.004512,0.01136,0.012864,0.016416,1.17382,0.013536
+1096,478.002,2.09204,1.15907,0.012192,0.223616,0.004704,0.005888,0.010496,0.028672,0.016384,0.844832,0.012288
+1097,496.124,2.01562,1.50106,0.067776,0.520832,0.005248,0.005024,0.01024,0.016416,0.016352,0.846848,0.01232
+1098,596.389,1.67676,1.17062,0.012288,0.239616,0.006144,0.005344,0.010688,0.013696,0.016608,0.853952,0.012288
+1099,623.155,1.60474,1.33139,0.01168,0.406304,0.004224,0.00608,0.010304,0.016384,0.016224,0.847808,0.012384
+1100,560.405,1.78442,1.26365,0.012288,0.337952,0.006112,0.005344,0.010624,0.013856,0.016544,0.848608,0.01232
+1101,455.516,2.19531,1.16941,0.014336,0.241696,0.005504,0.004704,0.010336,0.01424,0.016384,0.84992,0.012288
+1102,647.589,1.54419,1.14666,0.012224,0.225792,0.004288,0.006144,0.01024,0.01424,0.01648,0.84496,0.012288
+1103,597.869,1.67261,1.14429,0.012064,0.2232,0.004576,0.00592,0.010464,0.013888,0.016672,0.845248,0.012256
+1104,637.113,1.56958,1.52995,0.012064,0.237888,0.005504,0.004736,0.0104,0.014176,0.016384,1.21421,0.014592
+1105,459.811,2.1748,1.14077,0.011872,0.22576,0.005824,0.004384,0.011424,0.013056,0.01648,0.83968,0.012288
+1106,640,1.5625,1.16077,0.012288,0.221472,0.00432,0.006144,0.018432,0.01424,0.016448,0.855168,0.012256
+1107,601.468,1.6626,1.14278,0.01232,0.221152,0.00528,0.00496,0.01024,0.013568,0.016416,0.84656,0.012288
+1108,416.133,2.40308,1.22675,0.012288,0.290816,0.006112,0.004128,0.024384,0.014048,0.016064,0.846624,0.012288
+1109,651.089,1.53589,1.17504,0.013728,0.244512,0.005728,0.004512,0.011392,0.013088,0.016288,0.85344,0.012352
+1110,667.21,1.49878,1.15302,0.012288,0.22528,0.005376,0.004864,0.01024,0.014368,0.016192,0.852128,0.012288
+1111,536.406,1.86426,1.15437,0.011936,0.233248,0.004896,0.005568,0.010752,0.012352,0.016544,0.846784,0.012288
+1112,620.982,1.61035,1.87187,0.012288,0.22736,0.005696,0.005728,0.01072,0.013696,0.025568,1.55648,0.014336
+1113,438.638,2.27979,1.14557,0.010976,0.225088,0.004288,0.006144,0.010272,0.013696,0.016384,0.846432,0.012288
+1114,628.125,1.59204,1.4377,0.012288,0.220192,0.005088,0.00592,0.010496,0.014272,0.016,1.1391,0.014336
+1115,549.651,1.81934,1.16125,0.012288,0.220224,0.005056,0.005376,0.010752,0.012544,0.016384,0.866304,0.01232
+1116,411.452,2.43042,2.04816,0.012096,0.356224,0.004576,0.00592,0.010464,0.01952,0.023488,1.59942,0.016448
+1117,536.196,1.86499,1.1591,0.011904,0.23184,0.006016,0.004352,0.011488,0.012928,0.016352,0.851936,0.012288
+1118,669.5,1.49365,1.33574,0.012256,0.40416,0.00608,0.005408,0.01056,0.014752,0.017696,0.852288,0.012544
+1119,572.147,1.7478,1.14736,0.011168,0.227328,0.005888,0.004352,0.011296,0.013056,0.016576,0.845408,0.012288
+1120,450.456,2.21997,1.17376,0.014592,0.238944,0.004768,0.005728,0.010624,0.013664,0.015168,0.857984,0.012288
+1121,629.283,1.58911,1.15648,0.011744,0.230208,0.00528,0.005024,0.01024,0.013344,0.01696,0.851776,0.011904
+1122,631.319,1.58398,1.3312,0.012288,0.40656,0.005088,0.005504,0.010688,0.015584,0.015328,0.847872,0.012288
+1123,544.536,1.83643,1.53021,0.011872,0.243936,0.00464,0.005856,0.010528,0.012288,0.017952,1.20883,0.014304
+1124,484.562,2.06372,1.15098,0.012288,0.22528,0.005408,0.004832,0.010272,0.014304,0.016064,0.850208,0.01232
+1125,639.6,1.56348,1.15171,0.011136,0.227168,0.006144,0.005248,0.010496,0.01296,0.016352,0.84992,0.012288
+1126,563.411,1.7749,1.14672,0.01232,0.226304,0.005088,0.005376,0.010656,0.014208,0.016064,0.844416,0.012288
+1127,648.204,1.54272,1.55002,0.01232,0.253472,0.004544,0.00592,0.010496,0.013312,0.016448,1.21904,0.014464
+1128,457.807,2.18433,1.16403,0.012352,0.234176,0.005408,0.004832,0.01024,0.014336,0.016416,0.853984,0.012288
+1129,653.27,1.53076,1.15056,0.01232,0.226336,0.005056,0.005408,0.010624,0.01264,0.016416,0.849504,0.012256
+1130,556.824,1.7959,1.14262,0.012224,0.222016,0.00592,0.00432,0.011616,0.01296,0.016384,0.844832,0.012352
+1131,643.823,1.55322,1.51162,0.01184,0.223136,0.004832,0.005632,0.010688,0.012352,0.016448,1.21235,0.014336
+1132,449.418,2.2251,1.15606,0.012448,0.227744,0.004512,0.006144,0.010272,0.014304,0.016384,0.851968,0.012288
+1133,671.145,1.48999,1.14899,0.011936,0.224736,0.005056,0.005408,0.010464,0.0128,0.016448,0.851424,0.01072
+1134,549.062,1.82129,1.15712,0.012288,0.223232,0.005408,0.004832,0.01024,0.014336,0.016096,0.852256,0.018432
+1135,569.601,1.75562,1.89197,0.012288,0.249856,0.005408,0.004832,0.01024,0.01392,0.016704,1.56474,0.013984
+1136,439.91,2.27319,1.16736,0.012288,0.23552,0.006112,0.005184,0.010624,0.012896,0.017728,0.85472,0.012288
+1137,693.18,1.44263,1.45408,0.012288,0.227328,0.00592,0.004352,0.011584,0.012768,0.016576,1.14896,0.014304
+1138,544.608,1.83618,1.15258,0.01232,0.22256,0.004736,0.005792,0.01056,0.01344,0.015296,0.85552,0.012352
+1139,623.155,1.60474,1.77261,0.012288,0.48496,0.00656,0.017792,0.01088,0.016288,0.01632,1.19533,0.012192
+1140,462.825,2.16064,1.15917,0.012,0.22336,0.00528,0.00512,0.01024,0.014336,0.01632,0.860224,0.012288
+1141,599.093,1.66919,1.48685,0.012032,0.22144,0.005984,0.00432,0.011456,0.012992,0.016384,1.18989,0.012352
+1142,546.935,1.82837,1.15235,0.01232,0.223296,0.0056,0.00464,0.011712,0.012992,0.016256,0.853312,0.012224
+1143,409.354,2.44287,1.16128,0.014336,0.228192,0.005472,0.0048,0.010208,0.014048,0.016672,0.8552,0.012352
+1144,616.682,1.62158,1.14688,0.012288,0.222816,0.004512,0.005696,0.01072,0.014016,0.016576,0.848992,0.011264
+1145,655.046,1.52661,1.34963,0.012288,0.4048,0.0048,0.005696,0.010688,0.015456,0.015264,0.868352,0.012288
+1146,545.479,1.83325,1.15104,0.012352,0.223232,0.0056,0.00464,0.010304,0.014272,0.016384,0.851968,0.012288
+1147,426.223,2.34619,1.20877,0.014176,0.272736,0.00432,0.006144,0.010272,0.014048,0.016224,0.8496,0.021248
+1148,637.311,1.56909,1.15763,0.012096,0.221888,0.005536,0.004704,0.01024,0.014368,0.016352,0.86016,0.012288
+1149,559.639,1.78687,1.15728,0.012,0.221216,0.004512,0.005952,0.010432,0.012288,0.016384,0.854016,0.02048
+1150,295.527,3.38379,1.63226,0.023648,0.322464,0.005408,0.018432,0.010976,0.013824,0.016256,1.20691,0.014336
+1151,862.497,1.15942,1.18445,0.012064,0.256992,0.006144,0.005472,0.010912,0.012288,0.017504,0.850784,0.012288
+1152,642.51,1.5564,1.46816,0.012288,0.227328,0.005408,0.004832,0.01024,0.013408,0.015264,1.16634,0.013056
+1153,436.116,2.29297,1.15971,0.011872,0.232416,0.006112,0.005184,0.011232,0.012416,0.016384,0.85184,0.012256
+1154,494.746,2.02124,1.18374,0.014336,0.251328,0.004672,0.005792,0.010592,0.014336,0.016384,0.855072,0.011232
+1155,707.916,1.4126,1.16931,0.012288,0.231424,0.005856,0.005824,0.010848,0.013696,0.01648,0.860544,0.012352
+1156,630.542,1.58594,1.35168,0.012224,0.405216,0.004864,0.005664,0.010752,0.015616,0.016128,0.868832,0.012384
+1157,558.495,1.79053,1.5401,0.012288,0.239552,0.005344,0.00496,0.01024,0.013824,0.016384,1.2232,0.014304
+1158,458.936,2.17896,1.17507,0.013344,0.232448,0.006112,0.005312,0.010624,0.012768,0.016352,0.865792,0.01232
+1159,635.334,1.57397,1.15504,0.012288,0.225312,0.005888,0.00544,0.011072,0.012384,0.016384,0.853888,0.012384
+1160,520.193,1.92236,1.16755,0.012256,0.228928,0.004768,0.005664,0.010656,0.01344,0.015296,0.864256,0.012288
+1161,586.315,1.70557,1.1616,0.0112,0.23344,0.006016,0.00432,0.011552,0.012896,0.016448,0.853984,0.011744
+1162,519.336,1.92554,1.19821,0.014944,0.26256,0.005952,0.004288,0.01152,0.013056,0.016384,0.857216,0.012288
+1163,673.463,1.48486,1.1641,0.011136,0.229344,0.00544,0.0048,0.01024,0.013984,0.016512,0.860256,0.012384
+1164,543.597,1.8396,1.16739,0.012288,0.222912,0.004416,0.00608,0.010304,0.014112,0.016064,0.868896,0.01232
+1165,627.451,1.59375,1.89034,0.012096,0.225184,0.004384,0.00608,0.010304,0.013632,0.016416,1.58787,0.014368
+1166,425.78,2.34863,1.17555,0.012288,0.23552,0.006144,0.00528,0.011104,0.01408,0.01664,0.862208,0.012288
+1167,648.306,1.54248,1.46432,0.012288,0.227328,0.00592,0.004352,0.011552,0.012992,0.016384,1.15917,0.014336
+1168,535.775,1.86646,1.15939,0.012512,0.225088,0.00432,0.006112,0.010272,0.014304,0.016448,0.858048,0.012288
+1169,624.2,1.60205,1.77971,0.01232,0.443616,0.03968,0.0224,0.010368,0.016416,0.016352,1.20627,0.012288
+1170,457.347,2.18652,1.15712,0.012288,0.224864,0.004512,0.005952,0.010432,0.01392,0.01616,0.856704,0.012288
+1171,640.601,1.56104,1.46973,0.012032,0.221696,0.005952,0.00432,0.010208,0.014272,0.016448,1.17146,0.013344
+1172,537.745,1.85962,1.15917,0.012288,0.221184,0.005536,0.004704,0.011584,0.01312,0.016256,0.862208,0.012288
+1173,399.688,2.50195,1.18771,0.026624,0.231456,0.005984,0.004352,0.011744,0.012704,0.016384,0.866112,0.012352
+1174,350.985,2.84912,1.22835,0.012288,0.261568,0.004672,0.005792,0.010592,0.013792,0.01616,0.881408,0.02208
+1175,920.243,1.08667,1.18579,0.024544,0.236736,0.00496,0.005536,0.010656,0.01248,0.016384,0.862208,0.012288
+1176,623.63,1.60352,1.89942,0.012288,0.229504,0.004896,0.005568,0.010656,0.013728,0.016288,1.59341,0.013088
+1177,447.895,2.23267,1.16781,0.012064,0.223936,0.006112,0.005312,0.010624,0.012768,0.016352,0.868352,0.012288
+1178,634.154,1.5769,1.45917,0.011232,0.221216,0.005536,0.004672,0.01024,0.014176,0.016224,1.16154,0.014336
+1179,434.128,2.30347,1.19866,0.011936,0.248256,0.004576,0.005888,0.022208,0.012864,0.016416,0.864224,0.012288
+1180,677.473,1.47607,1.81987,0.012288,0.468992,0.059392,0.005472,0.010688,0.015648,0.01536,1.21853,0.013504
+1181,404.703,2.47095,1.17354,0.011968,0.231744,0.005984,0.00432,0.011552,0.01296,0.016416,0.866272,0.01232
+1182,809.966,1.23462,1.49293,0.012352,0.232,0.005728,0.004512,0.012032,0.013824,0.016224,1.18371,0.012544
+1183,520.193,1.92236,1.52902,0.012288,0.232544,0.005024,0.005408,0.010432,0.012832,0.016288,1.21971,0.014496
+1184,448.631,2.229,1.17763,0.012192,0.229664,0.005504,0.004736,0.01024,0.014336,0.016128,0.872576,0.012256
+1185,654.627,1.52759,1.16614,0.011072,0.226944,0.00448,0.005984,0.0104,0.012288,0.016416,0.866272,0.012288
+1186,598.918,1.66968,1.34694,0.01232,0.405344,0.005376,0.004992,0.01024,0.016288,0.016288,0.863872,0.012224
+1187,577.715,1.73096,1.8736,0.010944,0.228544,0.004896,0.00576,0.010624,0.012288,0.016384,1.57021,0.013952
+1188,438.309,2.28149,1.16806,0.012384,0.225888,0.006144,0.00528,0.010656,0.012864,0.016256,0.866304,0.012288
+1189,647.384,1.54468,1.16534,0.012224,0.225024,0.004416,0.006016,0.010368,0.013312,0.016416,0.866528,0.01104
+1190,384.276,2.60229,1.23555,0.012096,0.285536,0.005696,0.004544,0.01136,0.013216,0.017888,0.872832,0.012384
+1191,1070.29,0.934326,1.57082,0.01232,0.247584,0.004288,0.006176,0.010208,0.013408,0.015296,1.2472,0.014336
+1192,440.525,2.27002,1.19469,0.01232,0.237248,0.005088,0.005376,0.010656,0.014016,0.016768,0.880928,0.012288
+1193,644.228,1.55225,1.46672,0.011168,0.224256,0.00512,0.005344,0.01072,0.012608,0.016384,1.16694,0.014176
+1194,542.373,1.84375,1.16736,0.012224,0.223296,0.005504,0.004736,0.010272,0.014304,0.01616,0.868576,0.012288
+1195,377.477,2.64917,1.83507,0.012352,0.457152,0.007264,0.004672,0.030528,0.065952,0.016288,1.22909,0.011776
+1196,761.48,1.31323,1.19194,0.012288,0.237568,0.005696,0.004544,0.01024,0.014368,0.016352,0.878592,0.012288
+1197,652.229,1.5332,1.48675,0.01184,0.228064,0.006016,0.00432,0.01152,0.012992,0.01632,1.18362,0.012064
+1198,502.577,1.98975,1.18986,0.012288,0.239296,0.004416,0.00608,0.010304,0.014304,0.016064,0.874752,0.012352
+1199,360.817,2.77148,1.20422,0.014368,0.26416,0.006144,0.005216,0.010688,0.012768,0.016384,0.862272,0.012224
+1200,754.606,1.3252,1.1776,0.01216,0.23568,0.006016,0.004192,0.01168,0.012896,0.016384,0.866304,0.012288
+1201,723.547,1.38208,1.34365,0.011744,0.405632,0.004672,0.005856,0.010528,0.016032,0.016352,0.860544,0.012288
+1202,583.393,1.71411,1.55443,0.012288,0.233472,0.005632,0.004608,0.011936,0.013856,0.016288,1.24202,0.014336
+1203,453.85,2.20337,1.17974,0.012192,0.231872,0.005344,0.004896,0.01024,0.013888,0.016672,0.872384,0.012256
+1204,643.924,1.55298,1.16458,0.012288,0.224832,0.004544,0.00592,0.010464,0.013824,0.016416,0.864,0.012288
+1205,574.877,1.7395,1.16816,0.011072,0.227296,0.005984,0.00528,0.010656,0.012896,0.016384,0.866304,0.012288
+1206,640.2,1.56201,1.17843,0.01232,0.230144,0.006144,0.005568,0.010656,0.013632,0.01632,0.871328,0.01232
+1207,492.544,2.03027,1.18051,0.01312,0.233152,0.004416,0.006048,0.010336,0.013856,0.016192,0.871072,0.01232
+1208,542.66,1.84277,1.17357,0.012352,0.231456,0.005952,0.004256,0.011552,0.013024,0.016384,0.86736,0.011232
+1209,580.581,1.72241,1.17213,0.012032,0.22752,0.0048,0.005664,0.010656,0.012352,0.016384,0.8704,0.01232
+1210,604.754,1.65356,1.9176,0.012192,0.244704,0.005888,0.004352,0.012256,0.014368,0.016416,1.59331,0.014112
+1211,429.485,2.32837,1.20221,0.012,0.255968,0.004448,0.006016,0.010368,0.01344,0.016352,0.871328,0.012288
+1212,653.895,1.5293,1.50224,0.013376,0.25696,0.005824,0.004416,0.012192,0.013568,0.016256,1.16429,0.01536
+1213,492.9,2.02881,1.19571,0.01184,0.242688,0.005696,0.004512,0.012288,0.012288,0.017664,0.876384,0.012352
+1214,597.869,1.67261,1.75677,0.012288,0.458944,0.016448,0.005632,0.010688,0.01584,0.016032,1.20883,0.012064
+1215,499.451,2.0022,1.18214,0.011744,0.232224,0.004288,0.006144,0.01024,0.013568,0.016864,0.874784,0.012288
+1216,600.586,1.66504,1.49222,0.012288,0.22736,0.005408,0.0048,0.01024,0.014304,0.016416,1.18787,0.013536
+1217,391.176,2.5564,1.1823,0.010912,0.232736,0.004768,0.005696,0.010688,0.012288,0.016384,0.876544,0.012288
+1218,540.084,1.85156,1.21827,0.015648,0.26288,0.005696,0.004544,0.011296,0.01328,0.016384,0.876224,0.01232
+1219,662.89,1.50854,1.1696,0.012128,0.227776,0.004576,0.005888,0.010496,0.012288,0.017696,0.8664,0.012352
+1220,575.119,1.73877,1.35744,0.01216,0.404128,0.005792,0.005728,0.010688,0.014656,0.016384,0.87568,0.012224
+1221,550.908,1.81519,1.17459,0.011936,0.235008,0.00496,0.005472,0.01072,0.01248,0.016384,0.866112,0.01152
+1222,519.863,1.92358,1.1799,0.014592,0.2416,0.00528,0.005024,0.01024,0.014336,0.016416,0.860128,0.012288
+1223,629.283,1.58911,1.1735,0.01232,0.227296,0.006144,0.00528,0.010944,0.012448,0.016384,0.8704,0.012288
+1224,429.846,2.32642,1.17763,0.012128,0.233696,0.004896,0.005568,0.010816,0.013952,0.016256,0.868064,0.012256
+1225,590.032,1.69482,1.55853,0.012288,0.233472,0.005728,0.004512,0.012224,0.012352,0.016416,1.24723,0.014304
+1226,683.692,1.46265,1.19622,0.012128,0.245472,0.004736,0.005728,0.010464,0.013696,0.016256,0.875456,0.012288
+1227,588.929,1.698,1.1705,0.01232,0.229344,0.006144,0.00544,0.01072,0.012512,0.016384,0.866304,0.011328
+1228,461.157,2.16846,1.17981,0.012224,0.231648,0.005856,0.004384,0.011552,0.013024,0.016384,0.872448,0.012288
+1229,854.401,1.17041,1.91984,0.011104,0.255712,0.004384,0.00608,0.010304,0.012288,0.016384,1.59107,0.012512
+1230,401.215,2.49243,1.18061,0.0112,0.236992,0.004672,0.005792,0.010592,0.014016,0.016192,0.868864,0.012288
+1231,669.5,1.49365,1.50394,0.012064,0.258912,0.00528,0.004992,0.01024,0.013824,0.016512,1.16778,0.014336
+1232,527.224,1.89673,1.17478,0.012288,0.229376,0.00576,0.00448,0.011392,0.013184,0.016384,0.869632,0.012288
+1233,619.667,1.61377,1.92662,0.012288,0.269696,0.004736,0.00576,0.010624,0.013568,0.016576,1.57958,0.013792
+1234,385.76,2.59229,1.20954,0.012288,0.243776,0.006112,0.005152,0.010656,0.01392,0.016544,0.888832,0.012256
+1235,685.753,1.45825,1.17696,0.011808,0.227328,0.004768,0.005792,0.010592,0.012288,0.016384,0.875648,0.012352
+1236,569.205,1.75684,1.17472,0.012288,0.229408,0.0056,0.004608,0.011264,0.013312,0.016384,0.8696,0.012256
+1237,736.823,1.35718,1.19386,0.012288,0.241376,0.004384,0.00608,0.010304,0.013408,0.01632,0.877376,0.01232
+1238,501.469,1.99414,1.18384,0.012064,0.239872,0.005312,0.004992,0.01024,0.014336,0.016,0.868736,0.012288
+1239,807.571,1.23828,1.4856,0.011168,0.238656,0.005056,0.005472,0.01072,0.01248,0.01744,1.17014,0.014464
+1240,505.118,1.97974,1.17962,0.012288,0.231936,0.00448,0.005696,0.010496,0.013632,0.016512,0.872256,0.01232
+1241,570.951,1.75146,1.86016,0.011968,0.258592,0.004448,0.006048,0.010368,0.013408,0.016544,1.2705,0.268288
+1242,377.86,2.64648,1.19194,0.012288,0.243712,0.00592,0.00432,0.011552,0.013024,0.016384,0.872448,0.012288
+1243,749.36,1.33447,1.18579,0.01216,0.235648,0.005824,0.004416,0.012288,0.012288,0.016416,0.874464,0.012288
+1244,687.364,1.45483,1.18378,0.012192,0.22912,0.005664,0.004928,0.011552,0.013024,0.016384,0.878592,0.01232
+1245,570.156,1.75391,1.22125,0.010848,0.273536,0.004992,0.005504,0.010656,0.012512,0.017792,0.87312,0.012288
+1246,671.475,1.48926,1.1849,0.012288,0.235136,0.00448,0.005952,0.010432,0.014336,0.016224,0.873824,0.012224
+1247,592.164,1.68872,1.49293,0.012064,0.227552,0.005248,0.005024,0.010208,0.013728,0.01648,1.1897,0.012928
+1248,545.551,1.83301,1.18992,0.012288,0.239584,0.004128,0.006144,0.011392,0.013184,0.016384,0.874496,0.01232
+1249,528.789,1.89111,1.7655,0.011904,0.459264,0.015648,0.004864,0.010208,0.016384,0.017504,1.21744,0.012288
+1250,493.791,2.02515,1.18022,0.012224,0.232128,0.005856,0.004384,0.011488,0.013088,0.016384,0.872384,0.012288
+1251,676.466,1.47827,1.40086,0.012,0.446592,0.004288,0.006144,0.010272,0.016352,0.016384,0.876544,0.012288
+1252,505.929,1.97656,1.19949,0.011808,0.2504,0.004256,0.006144,0.012064,0.014112,0.016256,0.872032,0.012416
+1253,524.523,1.90649,1.18416,0.014752,0.232832,0.004704,0.005728,0.011744,0.012928,0.016416,0.872736,0.01232
+1254,639.101,1.5647,1.17091,0.01232,0.224256,0.005088,0.005376,0.010592,0.012704,0.016384,0.871936,0.012256
+1255,606.905,1.64771,1.37174,0.012,0.420192,0.004544,0.005984,0.010432,0.016352,0.016096,0.873824,0.01232
+1256,486.808,2.0542,1.23085,0.012288,0.241664,0.005312,0.004928,0.026624,0.015776,0.016512,0.895456,0.012288
+1257,562.02,1.7793,1.78077,0.011168,0.449728,0.045888,0.00528,0.010688,0.016,0.016384,1.21462,0.011008
+1258,497.329,2.01074,1.21683,0.012064,0.262752,0.00544,0.0048,0.01024,0.014368,0.016352,0.878496,0.01232
+1259,677.585,1.47583,1.18989,0.01232,0.236896,0.004736,0.005728,0.010656,0.012288,0.016384,0.878592,0.012288
+1260,482.62,2.07202,1.56861,0.012288,0.239616,0.005344,0.004896,0.01024,0.014304,0.016288,1.25126,0.014368
+1261,502.7,1.98926,1.18374,0.012288,0.237568,0.005792,0.004448,0.011424,0.012992,0.016544,0.8704,0.012288
+1262,719.101,1.39062,1.18973,0.01232,0.243712,0.006112,0.005216,0.010592,0.012864,0.016512,0.870272,0.012128
+1263,466.621,2.14307,1.20403,0.01104,0.253952,0.006112,0.005248,0.01072,0.012736,0.016384,0.875552,0.012288
+1264,676.131,1.479,1.56467,0.01232,0.241216,0.004512,0.005952,0.010432,0.013792,0.016448,1.24538,0.014624
+1265,455.465,2.19556,1.19987,0.011904,0.248416,0.005824,0.004416,0.011456,0.012736,0.01632,0.87648,0.01232
+1266,592.936,1.68652,1.49072,0.012288,0.231008,0.004512,0.005824,0.01056,0.014336,0.016288,1.18179,0.014112
+1267,472.706,2.11548,1.20006,0.012288,0.226688,0.004736,0.019648,0.011072,0.012384,0.017504,0.875328,0.020416
+1268,568.336,1.75952,1.75962,0.011232,0.466944,0.008192,0.005312,0.011072,0.016416,0.016384,1.21168,0.012384
+1269,533.333,1.875,1.16813,0.011008,0.232544,0.004992,0.005472,0.010688,0.012544,0.016352,0.862208,0.01232
+1270,579.759,1.72485,1.50122,0.01184,0.231008,0.004992,0.006048,0.011872,0.012896,0.017536,1.19274,0.012288
+1271,574.393,1.74097,1.16829,0.011168,0.229376,0.006112,0.004128,0.011584,0.01296,0.016416,0.864256,0.012288
+1272,544.391,1.83691,1.77971,0.012224,0.442624,0.02864,0.028064,0.012928,0.016288,0.016416,1.21008,0.012448
+1273,504.496,1.98218,1.1681,0.010976,0.22736,0.005984,0.004352,0.011552,0.012928,0.016352,0.866304,0.012288
+1274,625.057,1.59985,1.34954,0.011968,0.404288,0.005984,0.004256,0.011584,0.01504,0.016384,0.867776,0.012256
+1275,515.739,1.93896,1.56275,0.011232,0.229344,0.0056,0.00464,0.011328,0.013024,0.016352,1.25709,0.014144
+1276,473.91,2.11011,1.19158,0.012288,0.24576,0.005408,0.004832,0.01024,0.014336,0.016352,0.870016,0.012352
+1277,626.491,1.59619,1.17555,0.011872,0.225696,0.005376,0.004864,0.010272,0.013664,0.016608,0.874912,0.012288
+1278,548.253,1.82397,1.18672,0.01248,0.241408,0.005088,0.005376,0.010976,0.0144,0.016352,0.868352,0.012288
+1279,676.801,1.47754,1.90186,0.01184,0.231872,0.006144,0.005248,0.010592,0.012832,0.016384,1.59318,0.01376
+1280,434.036,2.30396,1.18666,0.012256,0.232096,0.00432,0.006144,0.01024,0.014048,0.016576,0.878688,0.012288
+1281,628.028,1.59229,1.47766,0.011264,0.226304,0.00512,0.005344,0.010688,0.01264,0.016384,1.17555,0.014368
+1282,527.767,1.89478,1.1655,0.012288,0.223808,0.005568,0.00464,0.01024,0.014336,0.016416,0.865856,0.012352
+1283,638.205,1.56689,1.77702,0.012256,0.476992,0.007424,0.005088,0.01024,0.016416,0.016352,1.22013,0.012128
+1284,459.966,2.17407,1.16941,0.012288,0.223232,0.005632,0.004608,0.011296,0.01328,0.016384,0.8704,0.012288
+1285,549.062,1.82129,1.51862,0.017984,0.238016,0.005568,0.004672,0.01024,0.013344,0.016512,1.19894,0.013344
+1286,571.827,1.74878,1.17763,0.012288,0.227328,0.005312,0.004928,0.011264,0.013312,0.016384,0.874496,0.01232
+1287,607.085,1.64722,1.7624,0.011264,0.45056,0.030816,0.006048,0.01024,0.016384,0.016384,1.2096,0.011104
+1288,451.997,2.2124,1.18784,0.01232,0.225248,0.005728,0.004512,0.0104,0.014176,0.016416,0.886752,0.012288
+1289,639.201,1.56445,1.35827,0.011936,0.404256,0.005408,0.004832,0.01024,0.016384,0.016384,0.876544,0.012288
+1290,559.639,1.78687,1.19808,0.012288,0.233472,0.006112,0.005184,0.01056,0.01296,0.016384,0.87584,0.02528
+1291,485.193,2.06104,1.18102,0.014112,0.22736,0.00432,0.006144,0.011584,0.013024,0.016352,0.875808,0.01232
+1292,619.855,1.61328,1.16118,0.012288,0.222432,0.004896,0.005568,0.010688,0.013856,0.016416,0.862784,0.012256
+1293,633.369,1.57886,1.39267,0.012288,0.405504,0.02176,0.004864,0.01024,0.026304,0.02288,0.876512,0.01232
+1294,410.956,2.43335,1.23203,0.012288,0.269664,0.004768,0.005472,0.019104,0.014336,0.032416,0.861728,0.012256
+1295,546.644,1.82935,1.18173,0.014272,0.234624,0.005088,0.005344,0.010688,0.01264,0.016384,0.8704,0.012288
+1296,624.2,1.60205,1.1735,0.012288,0.229376,0.005344,0.004896,0.01024,0.014368,0.016352,0.868352,0.012288
+1297,615.57,1.62451,1.17616,0.011168,0.227328,0.006144,0.005248,0.01072,0.012704,0.016384,0.874144,0.01232
+1298,625.344,1.59912,1.87808,0.01232,0.227296,0.005632,0.004608,0.01024,0.014336,0.016384,1.57258,0.014688
+1299,417.533,2.39502,1.1776,0.01232,0.229344,0.005824,0.004416,0.010272,0.013952,0.016576,0.872608,0.012288
+1300,652.749,1.53198,1.47088,0.012064,0.223904,0.005792,0.004416,0.011552,0.013216,0.017376,1.16813,0.014432
+1301,536.477,1.86401,1.16736,0.012288,0.222304,0.005024,0.00528,0.010624,0.0128,0.016352,0.8704,0.012288
+1302,529.473,1.88867,1.91594,0.01232,0.241632,0.005664,0.004576,0.010432,0.01536,0.016384,1.59526,0.014304
+1303,488.9,2.04541,1.17446,0.011232,0.227296,0.006144,0.005216,0.010656,0.0128,0.016384,0.872448,0.012288
+1304,628.317,1.59155,1.48566,0.012128,0.222208,0.006112,0.005184,0.010688,0.012832,0.016384,1.18704,0.013088
+1305,520.788,1.92017,1.18787,0.011936,0.221568,0.00608,0.005184,0.010752,0.01296,0.029856,0.877216,0.01232
+1306,428.721,2.33252,1.18451,0.01472,0.237984,0.005632,0.004576,0.01024,0.014368,0.016352,0.868352,0.012288
+1307,641.102,1.55981,1.16621,0.011104,0.221184,0.005984,0.00432,0.011744,0.012768,0.016384,0.8704,0.01232
+1308,597.259,1.67432,1.3601,0.012192,0.411776,0.005376,0.005024,0.01024,0.016384,0.016384,0.8704,0.01232
+1309,554.713,1.80273,1.84627,0.011264,0.221184,0.005824,0.004448,0.011424,0.012736,0.016544,1.28022,0.282624
+1310,449.517,2.22461,1.1776,0.01232,0.224768,0.004576,0.005984,0.0104,0.013952,0.015904,0.877408,0.012288
+1311,623.44,1.604,1.18374,0.012192,0.235616,0.005408,0.004832,0.01024,0.014048,0.016576,0.872544,0.012288
+1312,520.127,1.92261,1.21882,0.01232,0.24032,0.019744,0.00512,0.01024,0.01408,0.023968,0.879456,0.013568
+1313,610.887,1.63696,1.91693,0.01232,0.255264,0.0048,0.005792,0.010592,0.012288,0.017504,1.58403,0.014336
+1314,429.44,2.32861,1.18989,0.012288,0.22528,0.00592,0.00432,0.021792,0.014816,0.024864,0.86832,0.012288
+1315,637.907,1.56763,1.46842,0.01232,0.221152,0.005952,0.004288,0.011872,0.012704,0.016384,1.16938,0.014368
+1316,517.826,1.93115,1.1649,0.012288,0.219136,0.00528,0.00496,0.01024,0.014144,0.016064,0.870528,0.012256
+1317,568.81,1.75806,1.22886,0.011136,0.280384,0.005952,0.00432,0.011584,0.012992,0.016352,0.870176,0.015968
+1318,404.423,2.47266,1.21798,0.014336,0.264032,0.00528,0.00512,0.01024,0.014272,0.016384,0.875968,0.012352
+1319,587.914,1.70093,1.36304,0.011872,0.405952,0.005472,0.004768,0.02048,0.01744,0.016544,0.868256,0.012256
+1320,397.4,2.51636,1.1935,0.012288,0.24784,0.006112,0.005216,0.010624,0.01296,0.016256,0.869856,0.012352
+1321,677.697,1.47559,1.18864,0.014208,0.244224,0.00448,0.005984,0.0104,0.01344,0.01632,0.867264,0.01232
+1322,673.352,1.48511,1.1711,0.012288,0.228608,0.004864,0.005568,0.010624,0.014048,0.016512,0.866304,0.012288
+1323,550.316,1.81714,1.18115,0.011872,0.235968,0.005696,0.005728,0.01072,0.01264,0.016384,0.869888,0.012256
+1324,600.41,1.66553,1.91021,0.012288,0.261312,0.004928,0.005536,0.010528,0.012608,0.016416,1.57274,0.013856
+1325,443.626,2.25415,1.16941,0.012288,0.227328,0.005856,0.004416,0.011456,0.012896,0.016416,0.866464,0.012288
+1326,642.51,1.5564,1.47456,0.01232,0.226432,0.00496,0.005632,0.010656,0.013856,0.016384,1.16998,0.014336
+1327,527.631,1.89526,1.16534,0.012288,0.222752,0.004576,0.005856,0.010528,0.012288,0.016384,0.868352,0.01232
+1328,598.918,1.66968,1.816,0.012288,0.517632,0.018944,0.005792,0.010624,0.016,0.016416,1.20614,0.01216
+1329,461.885,2.16504,1.17962,0.012288,0.231424,0.006144,0.005312,0.010656,0.012704,0.016416,0.872352,0.01232
+1330,622.209,1.60718,1.4848,0.012288,0.225248,0.005408,0.004864,0.01024,0.014336,0.016192,1.18314,0.013088
+1331,535.285,1.86816,1.17994,0.011904,0.219936,0.006144,0.005248,0.0104,0.013024,0.016384,0.88448,0.012416
+1332,521.186,1.9187,1.96077,0.011104,0.304448,0.004768,0.0056,0.010688,0.01392,0.016192,1.57971,0.014336
+1333,451.101,2.2168,1.18016,0.011968,0.234208,0.00528,0.005056,0.01024,0.0136,0.0168,0.87072,0.012288
+1334,629.96,1.5874,1.35347,0.012608,0.405344,0.005376,0.005024,0.010272,0.016032,0.016352,0.870208,0.012256
+1335,566.215,1.76611,1.53194,0.011136,0.227328,0.005696,0.004544,0.010368,0.013888,0.01648,1.22813,0.014368
+1336,460.276,2.17261,1.16774,0.01232,0.225632,0.00592,0.00432,0.011488,0.013088,0.016384,0.866304,0.012288
+1337,630.833,1.58521,1.16419,0.0112,0.223232,0.006112,0.005184,0.010752,0.012768,0.016352,0.866304,0.012288
+1338,550.168,1.81763,1.16563,0.012512,0.220992,0.004384,0.006112,0.010272,0.014208,0.016192,0.868832,0.012128
+1339,496.545,2.01392,1.22502,0.011968,0.270976,0.005536,0.004704,0.010304,0.01376,0.016608,0.87008,0.021088
+1340,586.315,1.70557,1.17472,0.014272,0.231008,0.004608,0.005984,0.010368,0.013888,0.016384,0.865856,0.012352
+1341,633.663,1.57812,1.17053,0.012288,0.223104,0.00528,0.005088,0.01024,0.013568,0.016416,0.872256,0.012288
+1342,530.021,1.88672,1.16541,0.012224,0.221664,0.005344,0.004896,0.010272,0.014304,0.016384,0.868096,0.012224
+1343,581.984,1.71826,1.90592,0.012288,0.247808,0.00528,0.00496,0.01024,0.013536,0.02272,1.57552,0.013568
+1344,443.963,2.25244,1.16122,0.012288,0.222368,0.00496,0.005408,0.010656,0.012608,0.016384,0.864256,0.012288
+1345,603.329,1.65747,1.49315,0.01184,0.221792,0.006144,0.00528,0.010624,0.012768,0.01632,1.1961,0.012288
+1346,549.062,1.82129,1.1735,0.021824,0.221312,0.004672,0.005792,0.010592,0.013632,0.016288,0.867008,0.012384
+1347,629.669,1.58813,1.79174,0.012288,0.439936,0.022912,0.022368,0.028128,0.016352,0.029408,1.20832,0.012032
+1348,452.947,2.20776,1.18422,0.011968,0.23744,0.004992,0.005472,0.01008,0.01312,0.016384,0.872448,0.01232
+1349,601.557,1.66235,1.48205,0.012288,0.219136,0.004096,0.006144,0.011296,0.012544,0.016448,1.18752,0.012576
+1350,536.828,1.86279,1.54624,0.01232,0.221184,0.0056,0.004608,0.011328,0.013248,0.016384,1.24723,0.014336
+1351,356.143,2.80786,1.24122,0.011872,0.277056,0.005472,0.004768,0.014336,0.013792,0.033312,0.868256,0.012352
+1352,783.024,1.2771,1.17498,0.012288,0.227008,0.004416,0.006048,0.010336,0.01392,0.016288,0.872384,0.012288
+1353,481.09,2.07861,1.2655,0.01184,0.299776,0.019872,0.00496,0.016096,0.012544,0.016384,0.871712,0.01232
+1354,637.014,1.56982,1.93536,0.01232,0.260064,0.005888,0.004352,0.011648,0.014016,0.019392,1.59312,0.01456
+1355,445.605,2.24414,1.16464,0.012,0.2256,0.006144,0.005184,0.0112,0.012288,0.016416,0.86352,0.012288
+1356,633.565,1.57837,1.48173,0.011296,0.222368,0.004928,0.005536,0.010624,0.013568,0.015328,1.18579,0.012288
+1357,537.533,1.86035,1.1632,0.011072,0.221152,0.006144,0.005376,0.010752,0.012544,0.016384,0.867456,0.01232
+1358,622.871,1.60547,1.78586,0.01232,0.485344,0.008128,0.016448,0.010368,0.016288,0.016352,1.20835,0.012256
+1359,451.3,2.21582,1.16944,0.012288,0.22656,0.004864,0.0056,0.010752,0.01232,0.016384,0.86832,0.012352
+1360,370.478,2.69922,1.55981,0.012288,0.292864,0.006144,0.004096,0.01168,0.012896,0.016384,1.18989,0.013568
+1361,879.725,1.13672,1.2063,0.01232,0.26368,0.004576,0.00592,0.010464,0.012288,0.016384,0.868384,0.012288
+1362,600.498,1.66528,1.76349,0.012192,0.456288,0.025472,0.005216,0.01072,0.01488,0.016288,1.21024,0.012192
+1363,496.184,2.01538,1.18019,0.012384,0.229824,0.005664,0.004576,0.011968,0.012608,0.016384,0.874496,0.012288
+1364,585.896,1.70679,1.17706,0.012192,0.229824,0.005984,0.004256,0.011488,0.013088,0.016384,0.871584,0.012256
+1365,588.929,1.698,1.5831,0.012,0.259872,0.004608,0.005856,0.010528,0.012288,0.016416,1.2472,0.014336
+1366,458.166,2.18262,1.17795,0.012224,0.237088,0.004992,0.005472,0.010656,0.013728,0.01648,0.865024,0.012288
+1367,634.645,1.57568,1.17933,0.011872,0.231648,0.004416,0.00608,0.010304,0.014048,0.016512,0.872608,0.01184
+1368,580.006,1.72412,1.18787,0.012288,0.247808,0.005984,0.004256,0.011616,0.01296,0.016384,0.864256,0.01232
+1369,568.415,1.75928,1.60026,0.011136,0.272288,0.006112,0.005312,0.010656,0.012704,0.016384,1.25133,0.014336
+1370,458.371,2.18164,1.18429,0.012352,0.239808,0.004384,0.006112,0.010272,0.013568,0.01616,0.869344,0.012288
+1371,641.202,1.55957,1.48461,0.011872,0.229088,0.004928,0.005536,0.010848,0.013344,0.015328,1.17949,0.014176
+1372,511.872,1.95361,1.19635,0.01232,0.255488,0.004896,0.005632,0.010656,0.013696,0.01648,0.864896,0.012288
+1373,599.619,1.66772,1.76029,0.011968,0.474848,0.006752,0.00592,0.010464,0.016416,0.016352,1.20422,0.013344
+1374,454.858,2.19849,1.19814,0.012256,0.244,0.005472,0.004864,0.011488,0.013088,0.016416,0.87824,0.01232
+1375,592.85,1.68677,1.51555,0.012032,0.250528,0.005344,0.004896,0.01024,0.013536,0.016352,1.19027,0.012352
+1376,476.445,2.09888,1.26778,0.012352,0.317152,0.004416,0.00608,0.01024,0.014368,0.016352,0.874496,0.01232
+1377,576.82,1.73364,1.77718,0.011872,0.463168,0.00656,0.00608,0.010304,0.016352,0.016384,1.23293,0.013536
+1378,495.344,2.0188,1.20557,0.012288,0.26,0.004192,0.006048,0.010336,0.01424,0.015904,0.870688,0.011872
+1379,572.707,1.74609,1.18064,0.011232,0.238592,0.005088,0.005312,0.01104,0.012512,0.017216,0.867328,0.01232
+1380,609.071,1.64185,1.20378,0.01232,0.255488,0.004576,0.00592,0.010464,0.013952,0.016096,0.87312,0.01184
+1381,474.623,2.10693,1.20662,0.01488,0.25136,0.004928,0.005568,0.01056,0.012544,0.017568,0.876832,0.012384
+1382,649.952,1.53857,1.17965,0.012288,0.231424,0.006144,0.005408,0.01056,0.014048,0.016288,0.8712,0.012288
+1383,528.653,1.8916,1.17334,0.012288,0.233472,0.005568,0.004704,0.011264,0.012928,0.016416,0.864384,0.01232
+1384,613.357,1.63037,1.58944,0.0112,0.25904,0.005056,0.005408,0.010592,0.013696,0.01536,1.25501,0.01408
+1385,443.915,2.25269,1.20675,0.012064,0.264448,0.004512,0.005984,0.010432,0.012256,0.016384,0.868352,0.01232
+1386,630.251,1.58667,1.4905,0.012288,0.23552,0.006112,0.005184,0.011232,0.013984,0.016352,1.17581,0.014016
+1387,514.702,1.94287,1.20243,0.012096,0.254368,0.00592,0.00432,0.011552,0.013024,0.016384,0.872448,0.01232
+1388,585.477,1.70801,1.92883,0.012448,0.264416,0.00432,0.006144,0.01024,0.014112,0.016448,1.58736,0.013344
+1389,431.567,2.31714,1.18307,0.012224,0.243776,0.005632,0.004608,0.012224,0.012352,0.016384,0.86352,0.012352
+1390,583.227,1.7146,1.53187,0.012096,0.271648,0.005024,0.006048,0.010336,0.014112,0.016608,1.18374,0.012256
+1391,537.815,1.85938,1.19795,0.012224,0.253856,0.004256,0.006144,0.01024,0.014336,0.01632,0.868224,0.012352
+1392,397.94,2.51294,1.78128,0.011968,0.47568,0.007424,0.00512,0.01024,0.016384,0.01632,1.22477,0.013376
+1393,714.709,1.39917,1.21101,0.0112,0.269408,0.004896,0.0056,0.01072,0.012352,0.016416,0.868032,0.012384
+1394,547.594,1.82617,1.22243,0.01232,0.27696,0.00608,0.005216,0.010624,0.012896,0.016384,0.869568,0.012384
+1395,614.83,1.62646,1.59334,0.012288,0.261216,0.005024,0.00544,0.010656,0.012576,0.016384,1.25651,0.013248
+1396,445.75,2.24341,1.20653,0.012192,0.265792,0.004896,0.00544,0.010688,0.013792,0.016256,0.865184,0.012288
+1397,608.709,1.64282,1.18602,0.010816,0.247808,0.00528,0.00496,0.01024,0.013312,0.017248,0.864032,0.01232
+1398,499.939,2.00024,1.2127,0.012,0.268288,0.004672,0.00576,0.010624,0.014016,0.016704,0.868352,0.012288
+1399,349.19,2.86377,1.37907,0.02736,0.423968,0.005888,0.004352,0.01152,0.015104,0.016384,0.862208,0.012288
+1400,313.918,3.18555,1.26141,0.013376,0.32048,0.0056,0.004608,0.01024,0.014368,0.016256,0.864192,0.012288
+1401,1046.5,0.955566,1.21075,0.012032,0.266112,0.004864,0.005632,0.01072,0.01232,0.016608,0.870176,0.012288
+1402,540.94,1.84863,1.98115,0.012224,0.301664,0.004448,0.005952,0.01024,0.02368,0.016352,1.59373,0.012864
+1403,437.607,2.28516,1.19341,0.012288,0.251392,0.004608,0.005888,0.010496,0.012288,0.016384,0.867776,0.012288
+1404,602.176,1.66064,1.41504,0.012384,0.454528,0.004576,0.006016,0.010368,0.019904,0.029248,0.865664,0.012352
+1405,527.156,1.89697,1.19197,0.028,0.234144,0.005856,0.004384,0.011456,0.01312,0.016384,0.866336,0.012288
+1406,540.512,1.8501,1.76742,0.012288,0.473088,0.00816,0.005216,0.010752,0.014784,0.016384,1.21437,0.012384
+1407,480.921,2.07935,1.23712,0.011904,0.297472,0.006112,0.005184,0.011232,0.012288,0.016384,0.86576,0.010784
+1408,519.665,1.92432,1.22973,0.01232,0.286624,0.005088,0.005472,0.010624,0.012576,0.016384,0.868352,0.012288
+1409,591.993,1.68921,1.89066,0.011968,0.244448,0.00528,0.005088,0.01024,0.01344,0.016736,1.56835,0.015104
+1410,424.764,2.35425,1.18246,0.01248,0.24224,0.00528,0.00496,0.01024,0.014368,0.016352,0.864256,0.012288
+1411,653.061,1.53125,1.50102,0.011904,0.237952,0.005888,0.004352,0.012288,0.01344,0.016544,1.18605,0.012608
+1412,482.564,2.07227,1.17606,0.012736,0.234624,0.005056,0.00544,0.010688,0.013952,0.016128,0.865152,0.012288
+1413,473.855,2.11035,1.78422,0.012704,0.446656,0.007936,0.004352,0.045056,0.025856,0.01696,1.21261,0.012096
+1414,601.027,1.66382,1.20003,0.012288,0.243712,0.005856,0.005696,0.01072,0.013856,0.016256,0.879392,0.012256
+1415,594.312,1.68262,1.34918,0.012288,0.403456,0.00544,0.0048,0.010272,0.016352,0.016192,0.868096,0.012288
+1416,555.164,1.80127,1.20509,0.012608,0.259648,0.005088,0.005376,0.010848,0.013536,0.016384,0.869312,0.012288
+1417,448.975,2.22729,1.21667,0.013088,0.26624,0.005664,0.004576,0.010432,0.014144,0.016384,0.873888,0.012256
+1418,603.151,1.65796,1.20355,0.012288,0.258048,0.005632,0.004608,0.01024,0.015456,0.016384,0.868672,0.012224
+1419,522.782,1.91284,1.18592,0.011936,0.246272,0.005824,0.004384,0.011424,0.012576,0.016928,0.864288,0.012288
+1420,654.104,1.52881,1.18579,0.012288,0.243712,0.005408,0.004832,0.01024,0.014336,0.016416,0.867712,0.010848
+1421,423.841,2.35938,1.19456,0.014304,0.25456,0.005984,0.00432,0.01152,0.012768,0.016608,0.863232,0.011264
+1422,620.042,1.61279,1.49914,0.012288,0.24576,0.006016,0.004224,0.011712,0.012864,0.017984,1.17395,0.014336
+1423,529.131,1.88989,1.19648,0.011744,0.25824,0.004896,0.005568,0.010592,0.012512,0.016384,0.864256,0.012288
+1424,462.825,2.16064,1.91162,0.012192,0.27536,0.005472,0.004768,0.011808,0.013824,0.016992,1.55853,0.012672
+1425,512.833,1.94995,1.21446,0.012032,0.271872,0.004864,0.0056,0.010688,0.0136,0.016512,0.867008,0.012288
+1426,593.365,1.6853,1.38397,0.012288,0.44368,0.004832,0.005664,0.01072,0.015712,0.016256,0.862432,0.012384
+1427,474.404,2.10791,1.20045,0.011808,0.264992,0.006112,0.005216,0.010656,0.0128,0.016384,0.86016,0.01232
+1428,656.41,1.52344,1.796,0.011264,0.449856,0.040704,0.004896,0.01024,0.016384,0.01632,1.23296,0.013376
+1429,471.835,2.11938,1.1873,0.011968,0.24608,0.0056,0.00464,0.0104,0.013952,0.016544,0.865792,0.01232
+1430,478.169,2.09131,1.19597,0.012256,0.257888,0.004288,0.006144,0.01024,0.014368,0.016352,0.862144,0.012288
+1431,694.708,1.43945,1.92717,0.011872,0.270784,0.005472,0.004736,0.011424,0.013184,0.016352,1.57901,0.014336
+1432,421.616,2.37183,1.19411,0.012,0.246176,0.005856,0.004384,0.011392,0.013184,0.016384,0.872448,0.012288
+1433,555.315,1.80078,1.52483,0.011936,0.266336,0.004448,0.006016,0.010368,0.012352,0.017376,1.18269,0.013312
+1434,490.715,2.03784,1.21053,0.012192,0.263552,0.00496,0.005312,0.010688,0.014272,0.01632,0.870912,0.01232
+1435,625.344,1.59912,1.92618,0.011808,0.270848,0.006112,0.005248,0.010688,0.012768,0.016384,1.57856,0.01376
+1436,424.588,2.35522,1.19962,0.012224,0.25136,0.004704,0.00576,0.010624,0.014272,0.016448,0.871808,0.012416
+1437,600.322,1.66577,1.37184,0.01216,0.40608,0.005344,0.004992,0.01024,0.01616,0.016288,0.888224,0.012352
+1438,489.191,2.04419,1.21235,0.012448,0.270656,0.005728,0.00448,0.01136,0.01328,0.01632,0.865696,0.012384
+1439,599.006,1.66943,1.76835,0.011168,0.456544,0.028256,0.004672,0.010336,0.016288,0.016384,1.21242,0.012288
+1440,467.1,2.14087,1.21418,0.01248,0.270176,0.005728,0.00448,0.011392,0.014368,0.016544,0.86672,0.012288
+1441,541.871,1.84546,1.2096,0.01232,0.26752,0.004832,0.0056,0.010688,0.012416,0.016352,0.86752,0.012352
+1442,603.685,1.65649,1.92685,0.012352,0.26432,0.006144,0.00528,0.01072,0.013824,0.016512,1.58387,0.013824
+1443,406.228,2.46167,1.19702,0.0112,0.25776,0.004384,0.00608,0.010304,0.014208,0.016512,0.864256,0.01232
+1444,635.334,1.57397,1.52851,0.01216,0.265024,0.006144,0.005248,0.010688,0.012864,0.016256,1.18784,0.012288
+1445,398.909,2.50684,1.21763,0.01184,0.278944,0.00528,0.004992,0.010272,0.013472,0.016384,0.864064,0.012384
+1446,755.72,1.32324,1.77885,0.012288,0.443488,0.007072,0.015904,0.04144,0.016032,0.016288,1.2143,0.012032
+1447,458.319,2.18188,1.19779,0.011936,0.258592,0.005376,0.004864,0.01024,0.014272,0.016416,0.86368,0.012416
+1448,623.155,1.60474,1.20918,0.012256,0.26464,0.004512,0.005952,0.010432,0.013952,0.016384,0.868736,0.01232
+1449,580.417,1.7229,1.1991,0.011264,0.26624,0.005344,0.004928,0.01024,0.013824,0.016704,0.858272,0.012288
+1450,551.724,1.8125,1.75578,0.012128,0.454912,0.019136,0.005824,0.01056,0.016288,0.016448,1.20813,0.012352
+1451,491.304,2.0354,1.20627,0.012288,0.268096,0.004288,0.006144,0.010272,0.013408,0.015232,0.864256,0.012288
+1452,537.321,1.86108,1.18006,0.012576,0.23536,0.004384,0.006112,0.010272,0.014336,0.01616,0.868576,0.012288
+1453,577.064,1.73291,1.93734,0.011712,0.264992,0.005376,0.004864,0.01024,0.013792,0.016416,1.59712,0.012832
+1454,420.448,2.37842,1.20182,0.012064,0.258944,0.005664,0.004544,0.011392,0.013184,0.016384,0.866304,0.013344
+1455,481.373,2.07739,1.52816,0.011232,0.270336,0.005696,0.004544,0.011296,0.013088,0.016576,1.18288,0.012512
+1456,589.862,1.69531,1.25747,0.01232,0.317408,0.005888,0.004352,0.011552,0.014752,0.01616,0.862752,0.012288
+1457,518.809,1.92749,1.78554,0.011872,0.46928,0.04064,0.005088,0.01024,0.016416,0.016352,1.20355,0.012096
+1458,526.478,1.89941,1.2039,0.012096,0.262816,0.005376,0.004864,0.01024,0.014368,0.016352,0.865568,0.012224
+1459,511.68,1.95435,1.18781,0.012224,0.249536,0.00448,0.005984,0.016352,0.01248,0.016416,0.858048,0.012288
+1460,606.815,1.64795,1.22118,0.01216,0.280832,0.00464,0.005856,0.010528,0.013856,0.016064,0.865024,0.012224
+1461,502.947,1.98828,1.18989,0.014304,0.253504,0.004576,0.005888,0.010496,0.013408,0.016768,0.858656,0.012288
+1462,633.859,1.57764,1.20013,0.012192,0.262208,0.00528,0.004992,0.01024,0.014368,0.016224,0.862336,0.012288
+1463,509.516,1.96265,1.21242,0.012032,0.259744,0.004704,0.005728,0.011936,0.013088,0.016352,0.869472,0.01936
+1464,589.098,1.69751,1.19642,0.012192,0.258368,0.004512,0.005952,0.010464,0.014016,0.016384,0.86224,0.012288
+1465,442.189,2.26147,1.22106,0.014272,0.284736,0.004544,0.00592,0.010464,0.013536,0.01648,0.858816,0.012288
+1466,721.762,1.3855,1.4889,0.012288,0.24688,0.005024,0.005504,0.010688,0.013792,0.016192,1.16419,0.014336
+1467,520.325,1.92188,1.1712,0.011808,0.237696,0.0048,0.005664,0.010656,0.013408,0.01552,0.859232,0.012416
+1468,570.474,1.75293,1.83334,0.012032,0.504416,0.007456,0.004832,0.026624,0.048512,0.01632,1.20051,0.01264
+1469,455.364,2.19604,1.21171,0.01232,0.276,0.004544,0.005888,0.010496,0.01232,0.016352,0.861472,0.01232
+1470,620.512,1.61157,1.50662,0.012384,0.255328,0.004928,0.005536,0.010656,0.013856,0.016416,1.17418,0.013344
+1471,473.198,2.11328,1.19219,0.011968,0.258912,0.00576,0.00448,0.011392,0.012864,0.01616,0.858368,0.012288
+1472,416.811,2.39917,1.20752,0.014336,0.26624,0.005952,0.004288,0.011552,0.013056,0.016352,0.86336,0.012384
+1473,645.548,1.54907,1.18285,0.012288,0.247808,0.006048,0.004192,0.011456,0.012864,0.016512,0.85936,0.01232
+1474,502.762,1.98901,1.1696,0.012256,0.233664,0.006048,0.004192,0.011712,0.012864,0.016384,0.86016,0.01232
+1475,646.261,1.54736,1.55443,0.012288,0.2376,0.005984,0.00432,0.01152,0.01296,0.016416,1.23901,0.014336
+1476,439.391,2.27588,1.18784,0.012288,0.249856,0.006048,0.004192,0.01168,0.014688,0.016352,0.860448,0.012288
+1477,651.814,1.53418,1.50726,0.011136,0.256,0.00608,0.005184,0.010656,0.012896,0.016384,1.17555,0.013376
+1478,450.407,2.22021,1.18557,0.01328,0.254912,0.005728,0.004512,0.011392,0.013184,0.016384,0.853856,0.01232
+1479,732.868,1.3645,1.89885,0.011904,0.240352,0.00592,0.004352,0.011552,0.013024,0.016352,1.58211,0.01328
+1480,384.348,2.60181,1.19814,0.01232,0.265984,0.00512,0.005344,0.01072,0.012608,0.016384,0.857344,0.01232
+1481,696.125,1.43652,1.3407,0.012064,0.40368,0.006112,0.005184,0.010688,0.01488,0.016288,0.859488,0.01232
+1482,553.513,1.80664,1.19168,0.012512,0.258432,0.006112,0.005312,0.010624,0.013824,0.015296,0.85728,0.012288
+1483,563.024,1.77612,1.74621,0.012,0.461088,0.008192,0.005248,0.010688,0.015968,0.016256,1.20317,0.0136
+1484,499.086,2.00366,1.17437,0.011136,0.245472,0.00432,0.00592,0.010464,0.01392,0.01632,0.854496,0.01232
+1485,547.667,1.82593,1.17155,0.012,0.240096,0.00528,0.005056,0.010208,0.013504,0.016288,0.856864,0.012256
+1486,624.676,1.60083,1.89722,0.012288,0.23424,0.005376,0.004864,0.010272,0.014304,0.016416,1.58666,0.0128
+1487,431.931,2.31519,1.16224,0.01216,0.225408,0.005984,0.00432,0.01152,0.012992,0.016032,0.861536,0.012288
+1488,642.006,1.55762,1.4593,0.012288,0.223232,0.005952,0.004288,0.01168,0.012896,0.016384,1.15712,0.015456
+1489,439.249,2.27661,1.17066,0.012192,0.23888,0.004928,0.005536,0.01088,0.013536,0.016288,0.856128,0.012288
+1490,813.182,1.22974,1.88858,0.01232,0.23952,0.00448,0.005984,0.0104,0.013952,0.01632,1.57309,0.012512
+1491,437.327,2.28662,1.15683,0.011936,0.22912,0.004832,0.005696,0.010624,0.012384,0.016352,0.8536,0.012288
+1492,644.633,1.55127,1.47661,0.01232,0.226528,0.004864,0.0056,0.010688,0.0136,0.016256,1.17242,0.014336
+1493,529.678,1.88794,1.15232,0.012288,0.223232,0.005888,0.004352,0.011424,0.013152,0.016416,0.853312,0.012256
+1494,617.612,1.61914,1.75254,0.012224,0.474272,0.007072,0.005568,0.010656,0.015872,0.016096,1.19699,0.013792
+1495,471.998,2.11865,1.16669,0.012288,0.232832,0.004736,0.006144,0.01024,0.013664,0.016448,0.857984,0.012352
+1496,605.648,1.65112,1.47683,0.012288,0.225024,0.004864,0.006144,0.011424,0.013088,0.015936,1.1752,0.012864
+1497,412.654,2.42334,1.18771,0.011808,0.237984,0.004672,0.005824,0.01056,0.012288,0.016384,0.87584,0.012352
+1498,842.798,1.18652,1.74646,0.01232,0.475104,0.007616,0.004672,0.010368,0.016256,0.016384,1.19098,0.012768
+1499,489.542,2.04272,1.18582,0.012288,0.260096,0.005728,0.004544,0.012192,0.012352,0.016384,0.84992,0.01232
+1500,642.51,1.5564,1.33533,0.012288,0.404832,0.004768,0.005728,0.010656,0.015584,0.016448,0.852704,0.01232
+1501,580.663,1.72217,1.54419,0.012192,0.227424,0.005344,0.004928,0.010208,0.013664,0.016544,1.23955,0.014336
+1502,395.329,2.52954,1.16566,0.012448,0.239744,0.00528,0.005024,0.011456,0.01312,0.016384,0.84992,0.012288
+1503,778.559,1.28442,1.15834,0.012288,0.228896,0.004576,0.005888,0.010528,0.012256,0.016384,0.855648,0.011872
+1504,592.678,1.68726,1.1543,0.012288,0.22528,0.006144,0.005216,0.010752,0.013952,0.0152,0.85312,0.012352
+1505,643.115,1.55493,1.5319,0.011232,0.229344,0.00608,0.005184,0.010656,0.012768,0.01648,1.22474,0.015424
+1506,443.915,2.25269,1.1592,0.012288,0.23072,0.0048,0.005632,0.010688,0.013472,0.015264,0.854016,0.01232
+1507,663.857,1.50635,1.15837,0.01232,0.229344,0.005376,0.004864,0.01024,0.01376,0.016352,0.853824,0.012288
+1508,554.188,1.80444,1.15571,0.012192,0.227072,0.005088,0.00544,0.010656,0.013856,0.016192,0.852928,0.012288
+1509,619.761,1.61353,1.52563,0.012128,0.22672,0.004864,0.0056,0.010624,0.014144,0.016544,1.22,0.015008
+1510,462.668,2.16138,1.16726,0.012352,0.228032,0.0056,0.00464,0.01024,0.014336,0.016416,0.86336,0.012288
+1511,642.409,1.55664,1.15302,0.012,0.22608,0.004288,0.006176,0.01024,0.013856,0.016576,0.851744,0.012064
+1512,512.448,1.95142,1.16387,0.011968,0.235968,0.004544,0.00592,0.010464,0.013728,0.01616,0.8528,0.01232
+1513,628.51,1.59106,1.86426,0.011232,0.23552,0.005568,0.004672,0.010368,0.013824,0.016544,1.5537,0.012832
+1514,426.711,2.34351,1.17498,0.012288,0.238752,0.00496,0.005504,0.01088,0.014336,0.016384,0.859616,0.012256
+1515,657.253,1.52148,1.47299,0.011936,0.229824,0.00448,0.005984,0.0104,0.012288,0.016448,1.16928,0.012352
+1516,529.131,1.88989,1.16109,0.012096,0.227392,0.004608,0.005952,0.010432,0.014176,0.016096,0.858048,0.012288
+1517,597.607,1.67334,1.75466,0.012288,0.443744,0.006816,0.020256,0.03504,0.016352,0.016416,1.19158,0.01216
+1518,480.808,2.07983,1.15258,0.012288,0.227328,0.00608,0.005216,0.010368,0.013152,0.016416,0.84944,0.012288
+1519,650.779,1.53662,1.47542,0.011136,0.225248,0.005536,0.004736,0.010272,0.01376,0.016672,1.17578,0.012288
+1520,505.741,1.97729,1.18966,0.012352,0.233888,0.004384,0.00608,0.012,0.012768,0.016256,0.878592,0.013344
+1521,624.867,1.60034,1.74323,0.01184,0.459584,0.016384,0.006112,0.010272,0.01632,0.016384,1.19402,0.01232
+1522,481.203,2.07812,1.16621,0.011104,0.229376,0.006144,0.005184,0.010464,0.013024,0.016384,0.862208,0.01232
+1523,632.88,1.58008,1.33056,0.011968,0.405824,0.005568,0.004672,0.010336,0.01632,0.016384,0.847296,0.012192
+1524,577.96,1.73022,1.15491,0.012192,0.22912,0.004576,0.005888,0.010496,0.01376,0.016416,0.850176,0.012288
+1525,414.491,2.4126,1.16736,0.014336,0.237568,0.00592,0.00432,0.01152,0.0128,0.016096,0.852544,0.012256
+1526,643.721,1.55347,1.14947,0.012096,0.226016,0.006112,0.00528,0.01088,0.013824,0.015104,0.847872,0.012288
+1527,594.83,1.68115,1.14896,0.012288,0.229152,0.00432,0.006144,0.01024,0.013376,0.016544,0.844576,0.01232
+1528,641.705,1.55835,1.51437,0.012416,0.226144,0.005504,0.004736,0.011488,0.013088,0.016384,1.21037,0.01424
+1529,466.249,2.14478,1.15354,0.011872,0.228256,0.005696,0.004544,0.011328,0.012928,0.016224,0.8504,0.012288
+1530,646.669,1.54639,1.14483,0.01232,0.225248,0.005952,0.004288,0.011296,0.01328,0.016384,0.843776,0.012288
+1531,426.578,2.34424,1.1553,0.011968,0.231456,0.004608,0.005824,0.01056,0.013824,0.01632,0.848448,0.012288
+1532,594.83,1.68115,1.78586,0.012288,0.518144,0.00768,0.004608,0.0104,0.016224,0.016384,1.18784,0.012288
+1533,469.94,2.12793,1.15318,0.011872,0.232,0.006144,0.005824,0.01056,0.012288,0.016384,0.845824,0.012288
+1534,643.014,1.55518,1.47194,0.012288,0.228448,0.005024,0.005504,0.01088,0.013696,0.016448,1.16589,0.01376
+1535,532.225,1.87891,1.15578,0.011168,0.232736,0.004832,0.005664,0.01072,0.013376,0.015296,0.849664,0.01232
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..ec40add
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,634.096,1.63288,1.15786,0.00918981,0.25665,0.00548972,0.00501459,0.00748159,0.0139968,0.0154857,0.830335,0.0142138
+max_1024,1249.54,3.04297,2.07875,0.024576,0.74128,0.05712,0.02112,0.03536,0.0768,0.032128,1.61334,0.325632
+min_1024,328.626,0.800293,0.9216,0.007264,0.217856,0.004064,0.004064,0.006144,0.012256,0.012512,0.630752,0.008992
+512,745.948,1.34058,0.933888,0.009888,0.223616,0.005792,0.004416,0.007648,0.012896,0.01552,0.64384,0.010272
+513,700.53,1.42749,0.935936,0.009472,0.224,0.004096,0.0056,0.00672,0.014176,0.014464,0.647168,0.01024
+514,720.493,1.38794,0.947328,0.008352,0.225184,0.005184,0.004832,0.007552,0.013184,0.026592,0.646464,0.009984
+515,722.144,1.38477,1.80842,0.00832,0.241536,0.005472,0.004768,0.007296,0.013184,0.014336,1.50118,0.01232
+516,438.544,2.28027,0.936,0.008256,0.233376,0.004192,0.00544,0.007904,0.01328,0.014336,0.638976,0.01024
+517,565.863,1.76721,1.14278,0.01024,0.419648,0.004288,0.00544,0.018624,0.01488,0.014304,0.64512,0.01024
+518,781.679,1.2793,0.92784,0.009408,0.229824,0.004576,0.004224,0.009184,0.013216,0.015616,0.631584,0.010208
+519,734.379,1.36169,1.75843,0.009792,0.229824,0.005472,0.004768,0.00784,0.013696,0.01328,1.46141,0.012352
+520,461.807,2.16541,0.942112,0.00928,0.224192,0.0056,0.00464,0.007424,0.013056,0.014336,0.6544,0.009184
+521,725.212,1.37891,1.3153,0.00832,0.241216,0.004896,0.004096,0.007872,0.012608,0.016384,1.00762,0.012288
+522,561.711,1.78027,0.940128,0.009536,0.22752,0.004608,0.004192,0.009408,0.021216,0.015776,0.63856,0.009312
+523,751.491,1.33069,0.94208,0.008256,0.23136,0.005792,0.004448,0.007936,0.013632,0.014752,0.645664,0.01024
+524,506.931,1.97266,0.948768,0.010816,0.23344,0.00576,0.00448,0.00768,0.0128,0.016064,0.647488,0.01024
+525,728.696,1.37231,0.934816,0.008256,0.227584,0.004704,0.00416,0.008128,0.013376,0.0144,0.643968,0.01024
+526,665.962,1.50159,0.9672,0.008736,0.229376,0.005152,0.0048,0.006432,0.014336,0.014336,0.673632,0.0104
+527,625.01,1.59998,0.948,0.008288,0.232128,0.005792,0.004448,0.007584,0.022784,0.01472,0.642208,0.010048
+528,748.949,1.33521,1.54771,0.009472,0.455424,0.018272,0.004256,0.00784,0.014688,0.014336,1.01171,0.011712
+529,504.744,1.9812,0.933888,0.009728,0.22784,0.005472,0.004768,0.0072,0.013184,0.014432,0.641024,0.01024
+530,746.832,1.33899,1.13869,0.009408,0.420672,0.00576,0.00448,0.007616,0.014048,0.014976,0.651488,0.01024
+531,648.717,1.5415,0.927744,0.00944,0.223488,0.00464,0.004096,0.008192,0.013856,0.014528,0.639264,0.01024
+532,653.53,1.53015,0.964608,0.009984,0.260224,0.004224,0.005568,0.00672,0.014144,0.014528,0.638976,0.01024
+533,588.337,1.69971,0.93856,0.010816,0.228352,0.004864,0.004352,0.008192,0.014048,0.014624,0.643072,0.01024
+534,719.227,1.39038,0.961376,0.008736,0.2256,0.004096,0.005824,0.006464,0.026688,0.024192,0.649536,0.01024
+535,591.779,1.68982,0.923872,0.008416,0.227328,0.005472,0.004768,0.007264,0.013216,0.014368,0.6328,0.01024
+536,783.923,1.27563,0.946016,0.00928,0.221984,0.004256,0.005408,0.00688,0.013952,0.014272,0.65984,0.010144
+537,674.85,1.48181,1.65613,0.009952,0.5,0.045056,0.005888,0.006432,0.014304,0.015392,1.04864,0.010464
+538,480.019,2.08325,0.946112,0.010048,0.22544,0.005664,0.004544,0.008192,0.013632,0.01504,0.653312,0.01024
+539,740.018,1.35132,1.1264,0.01024,0.409376,0.00432,0.005408,0.00688,0.014368,0.014336,0.651232,0.01024
+540,669.719,1.49316,0.932256,0.00864,0.221184,0.005408,0.0048,0.007232,0.013248,0.0144,0.647104,0.01024
+541,725.148,1.37903,0.950848,0.008768,0.229376,0.0056,0.00464,0.00752,0.01296,0.014368,0.657344,0.010272
+542,494.059,2.02405,0.941504,0.012064,0.236032,0.004096,0.0056,0.006688,0.014272,0.0144,0.63808,0.010272
+543,747.65,1.33752,0.937984,0.008192,0.22288,0.004448,0.005728,0.00656,0.014336,0.014336,0.651264,0.01024
+544,642.863,1.55554,0.927712,0.00864,0.22112,0.004096,0.005632,0.006656,0.014336,0.014336,0.642464,0.010432
+545,695.593,1.43762,0.949952,0.008672,0.227328,0.005184,0.0048,0.0064,0.014336,0.022528,0.650656,0.010048
+546,761.905,1.3125,1.61382,0.01024,0.482528,0.006368,0.004672,0.007552,0.014144,0.015168,1.06243,0.01072
+547,446.017,2.24207,0.966304,0.018432,0.239648,0.005408,0.004768,0.007296,0.013248,0.014304,0.652992,0.010208
+548,678.146,1.47461,0.949696,0.009888,0.231776,0.004096,0.005696,0.006592,0.01408,0.014624,0.652672,0.010272
+549,730.776,1.36841,0.938336,0.008416,0.225184,0.004192,0.005472,0.006816,0.013568,0.01472,0.650656,0.009312
+550,705.659,1.41711,1.78528,0.008512,0.259424,0.004768,0.004096,0.007936,0.013728,0.017248,1.45613,0.01344
+551,453.147,2.20679,0.936256,0.008544,0.233472,0.005504,0.004736,0.008192,0.013504,0.014752,0.63728,0.010272
+552,711.791,1.40491,1.34256,0.010016,0.25008,0.004096,0.005984,0.007936,0.01424,0.014816,1.02403,0.01136
+553,606.95,1.64758,0.92544,0.008832,0.22128,0.005824,0.004416,0.008128,0.013472,0.014752,0.638656,0.01008
+554,625.057,1.59985,1.65773,0.009056,0.24784,0.006144,0.004096,0.008192,0.014016,0.014688,1.33936,0.014336
+555,518.809,1.92749,0.946784,0.0088,0.2328,0.004768,0.005536,0.006752,0.014304,0.014368,0.649216,0.01024
+556,627.259,1.59424,1.32301,0.009344,0.250784,0.005696,0.004544,0.007424,0.013024,0.015904,1.0033,0.012992
+557,655.36,1.52588,0.939072,0.009696,0.229248,0.004768,0.004096,0.008192,0.01408,0.014624,0.644064,0.010304
+558,713.962,1.40063,0.937984,0.009408,0.229632,0.004672,0.004096,0.008096,0.012384,0.015584,0.643872,0.01024
+559,497.691,2.00928,0.943424,0.011872,0.23184,0.005536,0.004704,0.00736,0.013152,0.014304,0.64432,0.010336
+560,720.049,1.38879,0.935552,0.008736,0.223232,0.005376,0.004736,0.00752,0.013088,0.015776,0.646944,0.010144
+561,696.717,1.4353,0.951232,0.0088,0.225472,0.004256,0.005408,0.00688,0.013856,0.028928,0.647392,0.01024
+562,716.147,1.39636,0.964448,0.008192,0.233472,0.005216,0.004704,0.006464,0.014304,0.014368,0.667648,0.01008
+563,699.693,1.4292,1.58902,0.008288,0.44304,0.038976,0.014112,0.006368,0.015584,0.014496,1.03789,0.010272
+564,505.305,1.979,0.924224,0.008768,0.225248,0.005504,0.004736,0.007264,0.013248,0.014304,0.634464,0.010688
+565,746.084,1.34033,1.3271,0.009696,0.221728,0.004096,0.005632,0.006656,0.013504,0.014592,1.04067,0.010528
+566,518.875,1.92725,0.959392,0.009088,0.239392,0.004384,0.00528,0.007008,0.013568,0.014496,0.655968,0.010208
+567,839.861,1.19067,0.936064,0.0088,0.23152,0.005408,0.004768,0.007232,0.013312,0.014336,0.640544,0.010144
+568,497.994,2.00806,0.94416,0.011776,0.22992,0.004096,0.005632,0.006656,0.014016,0.014656,0.647168,0.01024
+569,748.743,1.33557,0.925696,0.008192,0.227328,0.005536,0.004704,0.007936,0.012544,0.01536,0.633856,0.01024
+570,643.772,1.55334,0.931168,0.0096,0.223872,0.005344,0.0048,0.006432,0.014176,0.014304,0.642176,0.010464
+571,728.955,1.37183,0.9216,0.008224,0.222912,0.004384,0.005248,0.00704,0.013632,0.01456,0.635328,0.010272
+572,625.344,1.59912,1.56262,0.009632,0.468736,0.022976,0.004512,0.007552,0.014144,0.014848,1.00966,0.01056
+573,584.642,1.71045,0.93184,0.009248,0.22736,0.004704,0.004448,0.007392,0.013088,0.014336,0.641024,0.01024
+574,749.908,1.3335,1.14445,0.00832,0.435904,0.004384,0.005248,0.00704,0.014368,0.014304,0.644448,0.010432
+575,623.013,1.6051,0.929344,0.009856,0.223232,0.00448,0.005184,0.007104,0.01376,0.01456,0.641152,0.010016
+576,584.85,1.70984,0.95216,0.008704,0.245792,0.005408,0.004768,0.007296,0.013216,0.015648,0.641088,0.01024
+577,575.523,1.73755,0.936672,0.010976,0.231104,0.004416,0.005216,0.007072,0.013696,0.01488,0.6392,0.010112
+578,688.23,1.453,0.964992,0.009056,0.241696,0.005184,0.004768,0.007936,0.012928,0.015552,0.657728,0.010144
+579,668.844,1.49512,0.921888,0.008416,0.227392,0.005344,0.0048,0.006208,0.014112,0.014592,0.630752,0.010272
+580,762.543,1.3114,0.924864,0.009312,0.222112,0.004096,0.005696,0.006592,0.013952,0.014624,0.638368,0.010112
+581,601.204,1.66333,1.13766,0.01904,0.420224,0.006144,0.005408,0.00688,0.014368,0.0144,0.640928,0.010272
+582,685.753,1.45825,0.935488,0.008608,0.229376,0.00576,0.00448,0.007488,0.012992,0.014336,0.642176,0.010272
+583,700.89,1.42676,1.31866,0.009824,0.229632,0.004256,0.005408,0.00688,0.013472,0.014272,1.02403,0.01088
+584,583.767,1.71301,0.943936,0.009504,0.23616,0.004192,0.005472,0.006816,0.014336,0.014336,0.64288,0.01024
+585,773.268,1.29321,0.95232,0.008192,0.228864,0.004608,0.004096,0.00816,0.013344,0.014336,0.660608,0.010112
+586,456.43,2.19092,0.991232,0.011936,0.272736,0.004096,0.005792,0.006496,0.014368,0.014304,0.65232,0.009184
+587,789.743,1.26624,1.29229,0.00976,0.225824,0.005824,0.004352,0.00624,0.01424,0.014368,0.999392,0.012288
+588,585.854,1.70691,0.937984,0.008192,0.231424,0.005664,0.004576,0.007456,0.013024,0.014336,0.643072,0.01024
+589,739.217,1.35278,0.952832,0.008768,0.233024,0.004544,0.004096,0.008192,0.013568,0.014368,0.656096,0.010176
+590,506.304,1.9751,0.964512,0.012224,0.243776,0.005216,0.004832,0.006368,0.014304,0.014336,0.653216,0.01024
+591,747.786,1.33728,0.966336,0.009792,0.223648,0.004128,0.005536,0.006752,0.013728,0.031328,0.661376,0.010048
+592,707.06,1.41431,1.12698,0.009088,0.405632,0.005664,0.004608,0.007648,0.014496,0.014656,0.654912,0.010272
+593,663.32,1.50757,0.940032,0.00944,0.225344,0.004832,0.004096,0.007904,0.012576,0.015392,0.650208,0.01024
+594,723.611,1.38196,1.61402,0.008384,0.227328,0.00528,0.004768,0.0064,0.014272,0.014336,1.06499,0.268256
+595,484.82,2.06262,0.957248,0.008832,0.251584,0.004608,0.004096,0.00768,0.0128,0.015872,0.641536,0.01024
+596,613.265,1.63062,1.41501,0.008928,0.319072,0.004512,0.005152,0.007136,0.013504,0.014528,1.03078,0.011392
+597,596.346,1.67688,0.945152,0.008256,0.225728,0.004416,0.005248,0.00704,0.013792,0.014464,0.656864,0.009344
+598,723.419,1.38232,1.62381,0.008352,0.226624,0.00464,0.004096,0.00816,0.013696,0.014592,1.0753,0.268352
+599,496.214,2.01526,0.956192,0.008384,0.227328,0.004096,0.00576,0.008032,0.012832,0.015552,0.664128,0.01008
+600,733.721,1.36292,0.934816,0.009088,0.221216,0.005728,0.004512,0.007232,0.013248,0.014336,0.649184,0.010272
+601,641.604,1.55859,0.957856,0.008224,0.227296,0.005664,0.004576,0.007328,0.013152,0.028672,0.652768,0.010176
+602,727.144,1.37524,0.943776,0.00864,0.223232,0.00544,0.0048,0.008192,0.013632,0.019008,0.65072,0.010112
+603,685.81,1.45813,1.59898,0.008192,0.474528,0.045664,0.005344,0.006944,0.01584,0.014848,1.01738,0.01024
+604,515.999,1.93799,0.945344,0.00832,0.224384,0.004864,0.004224,0.008032,0.012448,0.015456,0.657472,0.010144
+605,754.328,1.32568,1.12688,0.008672,0.40512,0.00448,0.005248,0.00704,0.014368,0.014304,0.657408,0.01024
+606,599.093,1.66919,0.968704,0.009696,0.244704,0.004096,0.005536,0.006784,0.013952,0.014304,0.659232,0.0104
+607,686.327,1.45703,1.72502,0.008768,0.270336,0.005568,0.004672,0.00768,0.014048,0.01472,1.38486,0.014368
+608,497.51,2.01001,0.968704,0.009664,0.240192,0.005472,0.004768,0.007264,0.013216,0.015648,0.66224,0.01024
+609,726.628,1.37622,1.3263,0.008256,0.22512,0.004192,0.005472,0.006816,0.013952,0.014336,1.03667,0.011488
+610,563.528,1.77454,0.955744,0.009728,0.223744,0.004096,0.00608,0.007328,0.013216,0.028352,0.653024,0.010176
+611,700.231,1.4281,0.997824,0.008672,0.258048,0.005664,0.004576,0.00752,0.01296,0.014336,0.675584,0.010464
+612,425.337,2.35107,0.966656,0.01232,0.239488,0.004192,0.00544,0.006848,0.024576,0.014336,0.649216,0.01024
+613,795.803,1.25659,1.29933,0.0088,0.22528,0.00432,0.005312,0.006976,0.013888,0.014816,1.00496,0.014976
+614,592.979,1.6864,0.95776,0.009856,0.223616,0.005856,0.004384,0.007648,0.014336,0.029216,0.652672,0.010176
+615,547.96,1.82495,0.98784,0.008448,0.281248,0.005568,0.004672,0.007424,0.013056,0.014336,0.642336,0.010752
+616,535.915,1.86597,1.05622,0.011808,0.33136,0.004832,0.004352,0.007744,0.012768,0.015968,0.657184,0.010208
+617,701.67,1.42517,0.947296,0.008288,0.234592,0.004832,0.004192,0.008,0.01248,0.01584,0.648896,0.010176
+618,657.147,1.52173,0.961856,0.010176,0.243776,0.005664,0.004576,0.007488,0.013024,0.01536,0.651584,0.010208
+619,728.048,1.37354,0.948224,0.009312,0.229696,0.004704,0.004096,0.008096,0.012384,0.01584,0.653856,0.01024
+620,738.617,1.35388,1.59142,0.008928,0.47104,0.006176,0.004256,0.008,0.014336,0.014336,1.05267,0.01168
+621,522.382,1.91431,0.940448,0.008288,0.22736,0.004288,0.005376,0.006912,0.013664,0.014432,0.649792,0.010336
+622,754.606,1.3252,1.13424,0.008672,0.405472,0.005632,0.004608,0.007456,0.014304,0.014848,0.663008,0.01024
+623,622.824,1.60559,0.935456,0.008448,0.223232,0.005792,0.004448,0.007648,0.01392,0.01504,0.646816,0.010112
+624,749.771,1.33374,1.35942,0.009984,0.227136,0.004544,0.005248,0.00704,0.014048,0.014624,1.06291,0.013888
+625,438.028,2.28296,0.968256,0.008352,0.245952,0.005504,0.004736,0.00736,0.013024,0.014112,0.659008,0.010208
+626,882.568,1.13306,0.944128,0.009984,0.225536,0.004096,0.005696,0.006592,0.014304,0.014368,0.653312,0.01024
+627,630.202,1.58679,0.939648,0.00832,0.2208,0.004864,0.004224,0.008192,0.01344,0.014912,0.65472,0.010176
+628,728.242,1.37317,0.935008,0.01024,0.221216,0.004064,0.005728,0.00656,0.015776,0.014752,0.646496,0.010176
+629,721.317,1.38635,1.57523,0.008704,0.45584,0.019008,0.004384,0.008192,0.014336,0.014336,1.03968,0.010752
+630,524.557,1.90637,0.940032,0.00976,0.223712,0.005696,0.004576,0.008096,0.0136,0.014656,0.649696,0.01024
+631,686.615,1.45642,1.12499,0.008032,0.418496,0.004192,0.005536,0.006752,0.014336,0.015488,0.64192,0.01024
+632,627.355,1.59399,0.980992,0.009856,0.239008,0.004864,0.00432,0.00768,0.022176,0.027488,0.647072,0.018528
+633,783.848,1.27576,1.62816,0.008192,0.22464,0.004736,0.005568,0.008,0.013056,0.014336,1.3353,0.014336
+634,450.184,2.22131,0.95984,0.009376,0.24048,0.005152,0.0048,0.006432,0.014368,0.015392,0.653632,0.010208
+635,521.02,1.91931,1.42131,0.009952,0.311584,0.005376,0.0048,0.007296,0.015296,0.028672,1.02573,0.012608
+636,799.531,1.25073,0.954112,0.00864,0.22912,0.004128,0.006016,0.00752,0.013088,0.01552,0.659936,0.010144
+637,703.116,1.42224,1.62282,0.008992,0.229344,0.005696,0.004544,0.00752,0.01296,0.015456,1.07206,0.26624
+638,486.086,2.05725,0.948416,0.008352,0.229376,0.004096,0.00576,0.007936,0.012928,0.015392,0.654304,0.010272
+639,743.106,1.3457,0.950272,0.008416,0.2248,0.004352,0.005248,0.00704,0.013664,0.01472,0.661792,0.01024
+640,614.001,1.62866,0.941632,0.008608,0.226368,0.004864,0.004288,0.007936,0.012512,0.014336,0.65264,0.01008
+641,762.259,1.31189,0.933216,0.008544,0.224704,0.004672,0.004096,0.008096,0.012384,0.015872,0.644864,0.009984
+642,654.47,1.52795,1.1448,0.011936,0.420096,0.0056,0.004736,0.007296,0.013184,0.015936,0.655808,0.010208
+643,631.855,1.58264,0.957984,0.00944,0.240416,0.00528,0.0048,0.006336,0.014304,0.014336,0.65296,0.010112
+644,719.417,1.39001,1.34758,0.009792,0.223488,0.004288,0.005248,0.00704,0.01392,0.01472,1.04042,0.028672
+645,489.133,2.04443,1.01178,0.024576,0.257664,0.00448,0.005408,0.012544,0.030496,0.01504,0.651264,0.010304
+646,718.03,1.3927,1.68093,0.009984,0.229632,0.005664,0.004576,0.007456,0.013024,0.015456,1.38058,0.01456
+647,485.855,2.05823,0.963872,0.008288,0.227296,0.004096,0.005536,0.006752,0.013728,0.014944,0.673088,0.010144
+648,737.287,1.35632,1.33622,0.00912,0.222848,0.00448,0.005152,0.007168,0.014304,0.014336,1.04784,0.010976
+649,583.6,1.7135,0.948224,0.009344,0.2216,0.004576,0.005536,0.006752,0.014368,0.014304,0.661504,0.01024
+650,702.995,1.42249,1.61872,0.0088,0.221344,0.00544,0.0048,0.007232,0.013184,0.014432,1.07312,0.270368
+651,494.626,2.02173,0.962016,0.009664,0.22176,0.005312,0.004704,0.007552,0.013152,0.028,0.661824,0.010048
+652,733.13,1.36401,0.956032,0.009568,0.223808,0.004192,0.00592,0.006368,0.014368,0.015552,0.665984,0.010272
+653,622.492,1.60645,0.93232,0.008672,0.221184,0.005824,0.004416,0.007648,0.012832,0.014336,0.647168,0.01024
+654,766.109,1.3053,0.946432,0.008448,0.2208,0.004512,0.004288,0.007968,0.013888,0.028128,0.64816,0.01024
+655,534.9,1.86951,1.67219,0.009408,0.454912,0.006624,0.004192,0.008192,0.0768,0.019232,1.08157,0.011264
+656,508.409,1.96692,1.00166,0.008384,0.26832,0.005696,0.004512,0.007488,0.012992,0.024576,0.659456,0.01024
+657,716.961,1.39478,0.956576,0.008192,0.228608,0.004832,0.00416,0.007712,0.012736,0.014336,0.666624,0.009376
+658,735.963,1.35876,0.963744,0.010208,0.221088,0.004224,0.00592,0.006368,0.013856,0.025056,0.666848,0.010176
+659,588.802,1.69836,1.80838,0.009728,0.241632,0.00464,0.004096,0.00816,0.012352,0.015328,1.50016,0.012288
+660,502.361,1.9906,0.941056,0.009248,0.227296,0.005152,0.0048,0.006432,0.014336,0.014336,0.649216,0.01024
+661,729.02,1.3717,1.17248,0.008192,0.456704,0.004096,0.005792,0.006496,0.014336,0.014336,0.652384,0.010144
+662,634.645,1.57568,0.951456,0.009408,0.221472,0.00464,0.005856,0.006432,0.01392,0.014624,0.66496,0.010144
+663,735.434,1.35974,0.956416,0.009568,0.2296,0.004544,0.00512,0.007168,0.013632,0.014848,0.661696,0.01024
+664,402.654,2.48352,1.08675,0.01232,0.347584,0.00464,0.004096,0.008192,0.014336,0.02048,0.664896,0.010208
+665,878.876,1.13782,1.32106,0.008352,0.239008,0.004704,0.004096,0.007904,0.012576,0.015744,1.01235,0.01632
+666,572.627,1.74634,0.954368,0.009856,0.225664,0.005472,0.004768,0.007264,0.013216,0.015872,0.662016,0.01024
+667,697.726,1.43323,0.957728,0.008544,0.226752,0.00432,0.005344,0.006976,0.013472,0.015168,0.666976,0.010176
+668,559.984,1.78577,0.941632,0.012288,0.225152,0.004224,0.005408,0.00688,0.014336,0.01424,0.64896,0.010144
+669,727.854,1.3739,0.950272,0.00832,0.223104,0.005152,0.004832,0.0064,0.014208,0.014496,0.66352,0.01024
+670,672.081,1.48792,0.958656,0.009088,0.227072,0.004416,0.005472,0.006816,0.014048,0.026944,0.654656,0.010144
+671,731.625,1.36682,0.940032,0.008192,0.227328,0.005504,0.004736,0.007296,0.013184,0.014336,0.649216,0.01024
+672,696.836,1.43506,1.81382,0.009696,0.228896,0.004864,0.004352,0.007968,0.013888,0.014688,1.51738,0.012096
+673,456.074,2.19263,0.945088,0.0088,0.225632,0.005376,0.0048,0.006304,0.01424,0.014336,0.654976,0.010624
+674,502.546,1.98987,1.17549,0.009824,0.447456,0.004096,0.005696,0.006592,0.014336,0.022528,0.654368,0.010592
+675,820.595,1.21863,0.964608,0.00976,0.22928,0.004672,0.004096,0.007968,0.012512,0.015424,0.670656,0.01024
+676,759.221,1.31714,1.79638,0.008544,0.227328,0.006144,0.005152,0.007136,0.013504,0.014432,1.50189,0.012256
+677,443.866,2.25293,0.961824,0.008224,0.22448,0.004864,0.004128,0.008192,0.013696,0.027264,0.660672,0.010304
+678,725.598,1.37817,1.33664,0.009408,0.23152,0.004832,0.004096,0.007936,0.013696,0.014592,1.03898,0.011584
+679,412.633,2.42346,0.9544,0.00832,0.221184,0.005664,0.004576,0.007488,0.012992,0.015584,0.668448,0.010144
+680,1249.54,0.800293,0.997984,0.0088,0.251072,0.004832,0.004192,0.007712,0.012768,0.01552,0.682848,0.01024
+681,537.956,1.85889,0.959488,0.011936,0.231232,0.00464,0.005632,0.006656,0.013824,0.014368,0.659968,0.011232
+682,745.269,1.3418,0.96256,0.009856,0.22976,0.005952,0.004288,0.007648,0.013888,0.029664,0.651264,0.01024
+683,460.432,2.17188,0.964864,0.008576,0.223296,0.00464,0.01792,0.006912,0.01408,0.014336,0.664896,0.010208
+684,1179.38,0.8479,0.995776,0.00864,0.247808,0.00544,0.004768,0.017504,0.013248,0.028672,0.659456,0.01024
+685,718.093,1.39258,1.58982,0.008288,0.461632,0.028672,0.005984,0.0064,0.01424,0.01584,1.03837,0.0104
+686,497.873,2.00854,0.967008,0.008512,0.224672,0.004704,0.00544,0.006848,0.013824,0.027136,0.665504,0.010368
+687,732.475,1.36523,1.12573,0.008256,0.405536,0.005312,0.0048,0.007296,0.013312,0.014336,0.656704,0.010176
+688,655.203,1.52625,0.958176,0.008192,0.2232,0.004128,0.006144,0.007392,0.013088,0.024608,0.661024,0.0104
+689,686.615,1.45642,1.76538,0.009248,0.22592,0.004448,0.005216,0.007072,0.013696,0.014976,1.47251,0.012288
+690,461.105,2.1687,0.970752,0.010048,0.224928,0.00464,0.00576,0.006528,0.014208,0.0288,0.6656,0.01024
+691,659.316,1.51672,1.32282,0.008384,0.223392,0.004096,0.005632,0.008448,0.012576,0.016128,1.03146,0.012704
+692,611.526,1.63525,0.958432,0.00832,0.224384,0.004864,0.005376,0.006912,0.01424,0.014432,0.669696,0.010208
+693,509.136,1.96411,1.01958,0.00928,0.254912,0.019904,0.004704,0.007776,0.012672,0.024576,0.675776,0.009984
+694,469.967,2.12781,0.967392,0.010944,0.246912,0.004832,0.004256,0.00784,0.013888,0.014784,0.653664,0.010272
+695,746.9,1.33887,1.35315,0.009248,0.230368,0.0056,0.00464,0.008,0.013792,0.01408,1.05571,0.011712
+696,601.38,1.66284,0.948352,0.008864,0.221152,0.005728,0.004512,0.007456,0.013024,0.015392,0.66224,0.009984
+697,684.721,1.46045,0.9664,0.008192,0.230624,0.004864,0.004128,0.007936,0.013664,0.014592,0.672096,0.010304
+698,485.394,2.06018,0.952192,0.01232,0.231424,0.005248,0.0048,0.006304,0.014336,0.014368,0.653152,0.01024
+699,749.017,1.33508,1.35962,0.008288,0.22544,0.00544,0.0048,0.006144,0.014048,0.0144,1.06726,0.013792
+700,532.917,1.87646,0.987136,0.009248,0.237696,0.004896,0.00416,0.007808,0.02288,0.028704,0.661504,0.01024
+701,760.561,1.31482,0.956416,0.008256,0.229568,0.004768,0.004096,0.007968,0.012512,0.014336,0.664672,0.01024
+702,442.907,2.25781,1.04848,0.011648,0.276256,0.018944,0.004448,0.008032,0.014016,0.018912,0.68608,0.010144
+703,946.286,1.05676,0.945856,0.008256,0.227168,0.00448,0.005152,0.007136,0.014304,0.0144,0.654848,0.010112
+704,685.294,1.45923,0.964608,0.009312,0.228256,0.005824,0.004416,0.008192,0.013664,0.014688,0.670016,0.01024
+705,716.899,1.3949,0.950336,0.008384,0.221088,0.005376,0.0048,0.006336,0.014144,0.028736,0.6512,0.010272
+706,736.889,1.35706,1.80019,0.009856,0.228864,0.004992,0.004096,0.008224,0.014304,0.014336,1.50323,0.012288
+707,445.484,2.24475,0.976736,0.008448,0.229408,0.0056,0.004608,0.007488,0.012992,0.015488,0.682752,0.009952
+708,711.976,1.40454,1.16154,0.008832,0.417728,0.00416,0.005536,0.006752,0.014368,0.01568,0.678336,0.010144
+709,637.014,1.56982,0.964896,0.008704,0.219584,0.00608,0.00416,0.007872,0.012608,0.028672,0.667104,0.010112
+710,757.817,1.31958,1.70794,0.009696,0.227264,0.004704,0.005632,0.006656,0.01408,0.014528,1.41078,0.014592
+711,460.742,2.17041,0.957504,0.008192,0.227328,0.005792,0.004448,0.008192,0.014336,0.014336,0.664704,0.010176
+712,577.552,1.73145,1.35008,0.008704,0.260096,0.005312,0.004896,0.0072,0.01328,0.014336,1.0233,0.01296
+713,652.437,1.53271,0.974208,0.008192,0.239616,0.005152,0.0048,0.006432,0.01408,0.020736,0.664704,0.010496
+714,732.082,1.36597,0.963648,0.009056,0.229472,0.005344,0.0048,0.00784,0.012768,0.014336,0.669664,0.010368
+715,498.267,2.00696,0.9568,0.010624,0.233472,0.005216,0.0048,0.0064,0.014304,0.01536,0.656384,0.01024
+716,700.83,1.42688,0.950432,0.008224,0.2232,0.005664,0.004608,0.008064,0.013888,0.014464,0.662976,0.009344
+717,703.417,1.42163,0.957568,0.008224,0.226496,0.004832,0.00416,0.007296,0.013184,0.026624,0.656736,0.010016
+718,730.19,1.36951,0.954656,0.00848,0.22048,0.0048,0.004096,0.008,0.012672,0.02848,0.657408,0.01024
+719,738.218,1.35461,1.60819,0.008704,0.463968,0.025664,0.005984,0.007424,0.01456,0.014912,1.05642,0.01056
+720,485.567,2.05945,0.980864,0.00864,0.223072,0.005504,0.004768,0.006272,0.014336,0.026624,0.681408,0.01024
+721,726.757,1.37598,1.33338,0.008512,0.220192,0.004736,0.004224,0.006368,0.012288,0.026144,1.04003,0.01088
+722,557.962,1.79224,0.968512,0.00896,0.231424,0.005344,0.0048,0.006304,0.014304,0.014304,0.671744,0.011328
+723,732.606,1.36499,1.64096,0.00832,0.23088,0.004832,0.00416,0.007744,0.012768,0.015648,1.34333,0.01328
+724,489.63,2.04236,0.956448,0.01024,0.223264,0.004064,0.00576,0.006528,0.014368,0.014304,0.667648,0.010272
+725,756.138,1.32251,1.32438,0.00848,0.22288,0.004448,0.00576,0.006528,0.014336,0.014336,1.03424,0.013376
+726,555.54,1.80005,0.957216,0.008992,0.221184,0.005824,0.004416,0.007648,0.014208,0.014848,0.669856,0.01024
+727,739.751,1.35181,0.95936,0.009056,0.224448,0.004864,0.00416,0.007968,0.012512,0.014432,0.671648,0.010272
+728,563.334,1.77515,0.970176,0.012288,0.227264,0.00416,0.005504,0.007936,0.013184,0.015744,0.673728,0.010368
+729,713.03,1.40247,0.948704,0.008672,0.22528,0.004096,0.005568,0.00672,0.014272,0.014432,0.659424,0.01024
+730,734.379,1.36169,1.16659,0.008416,0.423712,0.00432,0.005792,0.006528,0.015712,0.027264,0.664672,0.010176
+731,651.814,1.53418,0.944128,0.0096,0.223808,0.00416,0.005888,0.006432,0.014336,0.014304,0.655392,0.010208
+732,608.663,1.64294,0.993888,0.008928,0.26192,0.004192,0.00544,0.006848,0.013888,0.014784,0.667648,0.01024
+733,431.68,2.31653,0.996704,0.011808,0.27696,0.00528,0.0048,0.007328,0.013344,0.014304,0.652672,0.010208
+734,763.609,1.30957,1.15674,0.00944,0.42064,0.00544,0.004768,0.007296,0.013216,0.015616,0.670208,0.010112
+735,632.196,1.58179,0.976224,0.008416,0.227104,0.005408,0.0048,0.007232,0.013248,0.0144,0.685472,0.010144
+736,661.392,1.51196,1.0281,0.01008,0.260288,0.005376,0.0048,0.015712,0.029376,0.015552,0.676672,0.01024
+737,564.615,1.77112,0.987136,0.01024,0.231168,0.004352,0.005312,0.006976,0.028928,0.015648,0.672128,0.012384
+738,692.067,1.44495,1.3313,0.008512,0.231424,0.004096,0.005536,0.006752,0.014336,0.014368,1.0335,0.012768
+739,565.199,1.76929,0.95232,0.00928,0.224288,0.00576,0.004384,0.0072,0.01328,0.014336,0.663552,0.01024
+740,666.233,1.50098,0.96256,0.00928,0.23008,0.004352,0.00528,0.007008,0.013728,0.0144,0.668192,0.01024
+741,421.898,2.37024,0.9992,0.010912,0.265696,0.00464,0.005728,0.00656,0.014016,0.01456,0.666816,0.010272
+742,766.109,1.3053,0.993888,0.008768,0.258048,0.005504,0.004736,0.00736,0.014432,0.01488,0.669888,0.010272
+743,603.284,1.65759,0.97536,0.008704,0.24576,0.005216,0.0048,0.0064,0.014304,0.014336,0.6656,0.01024
+744,663.857,1.50635,0.960512,0.010048,0.226944,0.004672,0.004096,0.008224,0.013568,0.014304,0.668416,0.01024
+745,889.951,1.12366,1.61382,0.009312,0.467936,0.007264,0.00496,0.007616,0.014336,0.014848,1.07728,0.010272
+746,500.825,1.9967,0.961312,0.008992,0.22848,0.004864,0.004224,0.008192,0.01392,0.014752,0.667648,0.01024
+747,703.357,1.42175,1.15094,0.009568,0.405344,0.004896,0.00416,0.007936,0.014176,0.014368,0.680288,0.010208
+748,652.333,1.53296,0.954816,0.008576,0.224416,0.004864,0.005312,0.00704,0.014112,0.014592,0.666592,0.009312
+749,699.334,1.42993,1.64688,0.00896,0.227328,0.00528,0.0048,0.0064,0.01424,0.014336,1.3511,0.014432
+750,488.142,2.04858,0.956128,0.01024,0.227328,0.004096,0.005728,0.00656,0.014336,0.014336,0.663552,0.009952
+751,698.857,1.43091,1.32749,0.008864,0.23152,0.005568,0.004672,0.007328,0.013152,0.014336,1.0281,0.013952
+752,603.329,1.65747,0.966688,0.008352,0.227232,0.005376,0.0048,0.006176,0.014368,0.01568,0.674464,0.01024
+753,714.211,1.40015,0.9648,0.008384,0.227328,0.005184,0.0048,0.0064,0.014336,0.014432,0.673664,0.010272
+754,548.18,1.82422,0.980992,0.010848,0.251936,0.004064,0.005792,0.006496,0.014016,0.014656,0.662848,0.010336
+755,715.209,1.39819,0.968192,0.008352,0.226784,0.00448,0.005472,0.006816,0.01392,0.027008,0.665184,0.010176
+756,660.272,1.51453,0.962464,0.008896,0.228352,0.004928,0.004288,0.007712,0.012768,0.014336,0.670816,0.010368
+757,740.419,1.35059,0.967168,0.008704,0.224384,0.004832,0.005312,0.007136,0.013344,0.02896,0.66528,0.009216
+758,646.567,1.54663,1.87619,0.008672,0.259136,0.004864,0.004288,0.007776,0.013888,0.02528,1.54026,0.012032
+759,457.858,2.18408,0.963168,0.009088,0.227424,0.005184,0.0048,0.0064,0.014336,0.014336,0.671296,0.010304
+760,720.556,1.38782,1.13869,0.009696,0.405056,0.004928,0.004256,0.007712,0.014208,0.01472,0.667872,0.01024
+761,610.842,1.63708,0.970784,0.00944,0.238336,0.004128,0.005632,0.006656,0.0136,0.014336,0.668384,0.010272
+762,740.888,1.34973,1.65123,0.008672,0.23152,0.005152,0.004832,0.006368,0.014336,0.014368,1.35274,0.013248
+763,485.136,2.06128,0.957792,0.008512,0.22528,0.005248,0.0048,0.006496,0.014112,0.014432,0.668768,0.010144
+764,702.151,1.42419,1.33939,0.009696,0.221664,0.00416,0.005504,0.008512,0.013856,0.014688,1.04864,0.012672
+765,576.739,1.73389,0.962944,0.008256,0.222976,0.004672,0.004128,0.007904,0.012544,0.031776,0.660448,0.01024
+766,736.757,1.3573,0.95856,0.008704,0.224544,0.004864,0.005472,0.007008,0.013824,0.014688,0.668992,0.010464
+767,458.55,2.18079,0.98688,0.010304,0.24784,0.005152,0.005056,0.007264,0.013216,0.014368,0.673312,0.010368
+768,734.116,1.36218,0.962112,0.00832,0.22304,0.004288,0.005344,0.006944,0.013984,0.028768,0.661312,0.010112
+769,639.7,1.56323,0.968768,0.008352,0.222816,0.004416,0.005248,0.00704,0.013472,0.014752,0.682432,0.01024
+770,731.69,1.3667,0.951744,0.009952,0.22064,0.004864,0.00416,0.007904,0.012576,0.015456,0.666144,0.010048
+771,571.987,1.74829,1.62822,0.009056,0.466912,0.044672,0.00448,0.008192,0.014176,0.014528,1.05587,0.010336
+772,538.77,1.85608,0.956896,0.009024,0.22736,0.005344,0.004768,0.00624,0.014336,0.015456,0.664192,0.010176
+773,657.358,1.52124,1.1696,0.008288,0.415488,0.004896,0.00416,0.007872,0.014208,0.014784,0.68944,0.010464
+774,597.215,1.67444,1.03062,0.009056,0.24176,0.005312,0.004768,0.006368,0.014336,0.025664,0.698336,0.025024
+775,650.623,1.53699,1.63834,0.008192,0.4608,0.05712,0.00432,0.008192,0.014336,0.014368,1.06083,0.010176
+776,496.274,2.01501,0.980992,0.00944,0.246112,0.004544,0.00512,0.007168,0.013472,0.014688,0.670368,0.01008
+777,738.085,1.35486,1.20726,0.0088,0.458176,0.004896,0.004256,0.007744,0.014112,0.014784,0.684256,0.01024
+778,643.216,1.55469,0.955104,0.008992,0.221184,0.0056,0.00464,0.007872,0.013984,0.014752,0.667872,0.010208
+779,676.857,1.47742,1.79725,0.008192,0.232896,0.004672,0.004096,0.013856,0.012768,0.027936,1.47926,0.013568
+780,456.557,2.19031,0.970816,0.00992,0.235424,0.004512,0.005152,0.007136,0.01392,0.014752,0.669824,0.010176
+781,714.897,1.3988,1.35117,0.008288,0.229344,0.00544,0.0048,0.007872,0.01264,0.01568,1.05334,0.01376
+782,548.657,1.82263,0.977536,0.008704,0.237472,0.004192,0.005536,0.006752,0.01392,0.014528,0.676064,0.010368
+783,746.22,1.34009,0.960768,0.008448,0.229376,0.005344,0.0048,0.007584,0.012992,0.015744,0.66624,0.01024
+784,495.764,2.01709,0.975104,0.012128,0.236096,0.004096,0.006144,0.00768,0.0128,0.01552,0.670464,0.010176
+785,687.768,1.45398,0.977312,0.008416,0.231424,0.005728,0.004512,0.007488,0.012992,0.014336,0.683072,0.009344
+786,664.342,1.50525,0.972384,0.009856,0.227104,0.004704,0.005472,0.006816,0.014176,0.014336,0.679776,0.010144
+787,735.83,1.35901,0.956416,0.009216,0.224256,0.005568,0.004704,0.0072,0.013248,0.014432,0.667552,0.01024
+788,685.58,1.45862,1.61376,0.008704,0.464352,0.006336,0.004416,0.007616,0.014304,0.014752,1.08154,0.011744
+789,508.725,1.9657,0.974464,0.008192,0.237152,0.004544,0.005088,0.007168,0.01408,0.014592,0.673152,0.010496
+790,593.924,1.68372,1.15712,0.009696,0.410144,0.00544,0.0048,0.007296,0.01472,0.014848,0.679936,0.01024
+791,728.307,1.37305,1.00147,0.009536,0.259936,0.004864,0.004192,0.007904,0.013888,0.014656,0.676256,0.01024
+792,762.969,1.31067,1.65683,0.009376,0.236,0.00448,0.005536,0.006752,0.01392,0.014592,1.35286,0.013312
+793,486.259,2.05652,0.985088,0.008192,0.231424,0.005728,0.004512,0.008192,0.014112,0.01456,0.688128,0.01024
+794,716.397,1.39587,1.3409,0.00992,0.227648,0.004096,0.005632,0.006656,0.014368,0.01536,1.04342,0.013792
+795,575.483,1.73767,0.96848,0.009664,0.22752,0.00448,0.005792,0.006496,0.01408,0.014624,0.675552,0.010272
+796,712.534,1.40344,0.993312,0.009472,0.258944,0.005792,0.004448,0.008192,0.013632,0.014784,0.667872,0.010176
+797,490.099,2.04041,0.991232,0.011648,0.238112,0.004192,0.005472,0.006816,0.013824,0.014848,0.68608,0.01024
+798,715.021,1.39856,0.979328,0.008832,0.231424,0.005632,0.004608,0.007456,0.013024,0.014336,0.683872,0.010144
+799,637.163,1.56946,0.993728,0.00864,0.227328,0.005728,0.004512,0.007616,0.012864,0.014336,0.702496,0.010208
+800,715.896,1.39685,0.978976,0.008192,0.223232,0.004096,0.005632,0.006656,0.014336,0.014336,0.692224,0.010272
+801,547.52,1.82642,1.72851,0.009792,0.240064,0.004096,0.00608,0.007296,0.013216,0.014368,1.41904,0.01456
+802,574.958,1.73926,0.980672,0.010112,0.2336,0.004096,0.005792,0.006496,0.014272,0.0144,0.681792,0.010112
+803,719.543,1.38977,1.17562,0.008288,0.4056,0.004544,0.005184,0.007104,0.014176,0.014432,0.706016,0.010272
+804,640.3,1.56177,0.97952,0.008832,0.229344,0.005408,0.004768,0.007232,0.01328,0.014368,0.686048,0.01024
+805,729.67,1.37048,1.80845,0.0088,0.22528,0.005504,0.004736,0.007328,0.013184,0.014304,1.51738,0.011936
+806,423.731,2.35999,1.00445,0.00912,0.249856,0.005472,0.004768,0.007232,0.013248,0.014336,0.690176,0.01024
+807,639.051,1.56482,1.16486,0.009568,0.424608,0.004096,0.005632,0.006656,0.014336,0.014336,0.6752,0.010432
+808,690.609,1.448,0.97088,0.00832,0.223232,0.005344,0.0048,0.008,0.013632,0.01328,0.684032,0.01024
+809,726.434,1.37659,1.63235,0.008736,0.225184,0.004192,0.00544,0.006848,0.014112,0.01456,1.33853,0.014752
+810,475.671,2.10229,0.98496,0.010048,0.222816,0.004704,0.004096,0.008064,0.013888,0.014912,0.680992,0.02544
+811,644.38,1.55188,1.35459,0.008288,0.232192,0.00512,0.0048,0.007872,0.012928,0.014336,1.0567,0.012352
+812,573.669,1.74316,0.982112,0.009216,0.224288,0.005632,0.004576,0.007456,0.013056,0.014336,0.693472,0.01008
+813,709.08,1.41028,1.63226,0.009408,0.226112,0.00512,0.004832,0.00752,0.013248,0.014336,1.33843,0.013248
+814,486.403,2.05591,0.991232,0.008192,0.222912,0.004416,0.005184,0.007008,0.0136,0.029504,0.690176,0.01024
+815,631.271,1.58411,1.34576,0.008736,0.224736,0.00464,0.005536,0.006752,0.013952,0.01472,1.05267,0.014016
+816,574.797,1.73975,0.98496,0.008544,0.220608,0.004672,0.005184,0.007104,0.014176,0.028832,0.685824,0.010016
+817,708.405,1.41162,0.963744,0.008192,0.223232,0.004096,0.005664,0.006624,0.013984,0.014304,0.677504,0.010144
+818,468.838,2.13293,0.976544,0.012288,0.233472,0.005664,0.004576,0.00752,0.01296,0.015872,0.674016,0.010176
+819,781.679,1.2793,0.98848,0.008384,0.2248,0.004576,0.006144,0.007744,0.012736,0.032128,0.682304,0.009664
+820,588.633,1.69885,0.976064,0.008352,0.220256,0.004864,0.00416,0.007776,0.012672,0.026624,0.681024,0.010336
+821,747.855,1.33716,0.983104,0.008448,0.221088,0.0048,0.005344,0.006944,0.014144,0.022752,0.689216,0.010368
+822,611.663,1.63489,1.19446,0.010976,0.431488,0.004736,0.005664,0.006624,0.014336,0.014336,0.696192,0.010112
+823,620.7,1.61108,0.989184,0.010016,0.223456,0.005472,0.004768,0.007552,0.012928,0.028672,0.68608,0.01024
+824,724.187,1.38086,1.42582,0.008864,0.299008,0.005504,0.004736,0.007328,0.013152,0.014336,1.06086,0.012032
+825,541.584,1.84644,0.97696,0.008256,0.221088,0.004192,0.0056,0.006688,0.014176,0.014528,0.692192,0.01024
+826,707.977,1.41248,1.78998,0.009504,0.233888,0.004448,0.005216,0.007072,0.014144,0.014528,1.4889,0.012288
+827,435.953,2.29382,1.03376,0.009248,0.277472,0.004096,0.0056,0.006688,0.013728,0.014944,0.69152,0.010464
+828,689.853,1.44958,1.36368,0.00832,0.223168,0.005344,0.0048,0.006272,0.014048,0.014016,1.07578,0.011936
+829,592.507,1.68774,0.984608,0.017824,0.222912,0.004864,0.004256,0.007968,0.013664,0.0152,0.687872,0.010048
+830,731.886,1.36633,1.71027,0.009216,0.224608,0.004736,0.004096,0.00944,0.013088,0.015584,1.41552,0.013984
+831,465.19,2.14966,0.973568,0.008512,0.225088,0.004736,0.004096,0.00816,0.013632,0.01456,0.684544,0.01024
+832,725.534,1.3783,1.35706,0.009472,0.225056,0.004864,0.004352,0.007552,0.012896,0.01584,1.06346,0.013568
+833,577.064,1.73291,0.971744,0.009024,0.222304,0.004896,0.004288,0.007712,0.012768,0.015776,0.685664,0.009312
+834,698.083,1.4325,0.963424,0.008736,0.223296,0.00432,0.005312,0.008,0.013312,0.014336,0.675648,0.010464
+835,472.597,2.11597,0.989088,0.010688,0.241504,0.004704,0.004096,0.007968,0.014048,0.014848,0.68096,0.010272
+836,712.286,1.40393,0.968192,0.009952,0.224608,0.004864,0.004288,0.007776,0.012704,0.015392,0.678464,0.010144
+837,663.427,1.50732,0.976896,0.008288,0.226944,0.004384,0.005792,0.006528,0.01424,0.014336,0.686144,0.01024
+838,727.402,1.37476,0.960512,0.009632,0.221792,0.005472,0.004768,0.00624,0.01424,0.014336,0.673792,0.01024
+839,733.721,1.36292,1.61856,0.008768,0.46704,0.006176,0.005376,0.006912,0.014368,0.015456,1.08349,0.010976
+840,480.582,2.08081,0.966176,0.009728,0.221696,0.005472,0.004768,0.0072,0.01328,0.014336,0.67936,0.010336
+841,721.762,1.3855,1.15098,0.008192,0.405504,0.005216,0.0048,0.006368,0.014368,0.015488,0.6808,0.01024
+842,632.929,1.57996,0.966272,0.008352,0.223232,0.004096,0.005568,0.00672,0.014336,0.014336,0.679456,0.010176
+843,728.955,1.37183,1.79392,0.0088,0.22496,0.00464,0.004096,0.008192,0.014304,0.014368,1.5024,0.01216
+844,453.323,2.20593,0.970752,0.010016,0.223264,0.004288,0.005376,0.006912,0.014016,0.014656,0.681984,0.01024
+845,696.776,1.43518,1.36106,0.009664,0.233856,0.004288,0.005376,0.017152,0.013984,0.014688,1.04858,0.013472
+846,584.35,1.7113,0.96976,0.009216,0.226752,0.004672,0.004096,0.00928,0.01328,0.014336,0.678944,0.009184
+847,698.499,1.43164,1.65802,0.010016,0.237792,0.005344,0.004896,0.007808,0.012672,0.014336,1.35107,0.01408
+848,489.952,2.04102,0.9824,0.009568,0.225152,0.004864,0.004128,0.007872,0.012608,0.01584,0.692192,0.010176
+849,501.408,1.99438,0.968544,0.008384,0.225088,0.00544,0.0048,0.008,0.014176,0.014688,0.677792,0.010176
+850,1007.87,0.992188,0.976544,0.008352,0.222432,0.004864,0.004096,0.008192,0.014336,0.014336,0.677888,0.022048
+851,720.239,1.38843,0.966656,0.008192,0.223136,0.004224,0.00544,0.006816,0.01376,0.014688,0.68016,0.01024
+852,666.396,1.50061,1.59949,0.009568,0.459424,0.006144,0.005248,0.007072,0.014336,0.01536,1.0721,0.01024
+853,523.25,1.91113,0.964608,0.008288,0.227232,0.005408,0.0048,0.00736,0.013152,0.014336,0.673792,0.01024
+854,493.019,2.02832,1.16531,0.01024,0.403456,0.005408,0.0048,0.007232,0.01456,0.014496,0.69488,0.01024
+855,1034.6,0.966553,0.980352,0.008384,0.227328,0.00544,0.0048,0.006144,0.014368,0.014304,0.689344,0.01024
+856,742.567,1.34668,1.7975,0.010048,0.225472,0.005216,0.0048,0.006432,0.014304,0.014304,1.50442,0.012512
+857,447.21,2.23608,0.9632,0.0088,0.224704,0.0048,0.004096,0.008192,0.013696,0.014784,0.673952,0.010176
+858,738.75,1.35364,1.35088,0.008352,0.223072,0.005152,0.004704,0.006528,0.01424,0.014432,1.06291,0.011488
+859,579.063,1.72693,0.974848,0.009728,0.223744,0.005824,0.004416,0.007552,0.01296,0.014336,0.687168,0.00912
+860,693.943,1.44104,1.62461,0.008896,0.22416,0.004864,0.004288,0.007776,0.012704,0.015648,1.33194,0.014336
+861,494.656,2.02161,0.974144,0.008192,0.227264,0.00416,0.005504,0.006784,0.014144,0.01456,0.68336,0.010176
+862,732.672,1.36487,1.356,0.008512,0.22528,0.005504,0.004736,0.008032,0.013856,0.014432,1.06141,0.01424
+863,547.85,1.82532,0.981056,0.008544,0.226336,0.004864,0.004288,0.007808,0.012672,0.015488,0.690656,0.0104
+864,641.353,1.5592,1.05654,0.00944,0.293664,0.005696,0.004544,0.00752,0.014368,0.014752,0.696352,0.010208
+865,434.658,2.30066,1.03482,0.011232,0.279584,0.004832,0.00432,0.007776,0.012704,0.015584,0.688736,0.010048
+866,926.697,1.0791,1.00803,0.00912,0.24896,0.004832,0.004256,0.007776,0.013952,0.014944,0.69408,0.010112
+867,621.171,1.60986,0.974208,0.008384,0.22512,0.005376,0.0048,0.007808,0.012704,0.016096,0.683456,0.010464
+868,750.802,1.33191,0.971392,0.008832,0.223232,0.004096,0.00576,0.006528,0.014208,0.014464,0.684032,0.01024
+869,676.242,1.47876,1.6856,0.008416,0.503808,0.040256,0.0048,0.007808,0.014496,0.014592,1.08118,0.01024
+870,487.358,2.05188,0.980256,0.009888,0.225664,0.005504,0.004704,0.007872,0.012704,0.01616,0.687808,0.009952
+871,707.06,1.41431,1.15507,0.008192,0.406624,0.00496,0.00416,0.00784,0.0144,0.014656,0.684,0.01024
+872,638.205,1.56689,0.962848,0.00848,0.221184,0.005472,0.004768,0.007264,0.014368,0.015232,0.67584,0.01024
+873,724.763,1.37976,1.7985,0.008512,0.221184,0.005792,0.004448,0.00784,0.012704,0.015584,1.51011,0.01232
+874,425.514,2.3501,1.01808,0.008416,0.258016,0.00544,0.0048,0.007264,0.013216,0.015552,0.695104,0.010272
+875,686.04,1.45764,1.38154,0.008192,0.270176,0.004256,0.004096,0.008192,0.01408,0.014592,1.04653,0.011424
+876,582.48,1.7168,0.978784,0.009728,0.229472,0.004512,0.00512,0.007168,0.013376,0.014688,0.684416,0.010304
+877,696.362,1.43604,1.00966,0.008192,0.26128,0.004864,0.004192,0.00784,0.01264,0.014336,0.68608,0.01024
+878,482.677,2.07178,0.995584,0.011808,0.246656,0.004128,0.005536,0.006784,0.014304,0.014336,0.681984,0.010048
+879,741.559,1.34851,1.35168,0.009664,0.225888,0.005824,0.004384,0.008096,0.01344,0.014656,1.0569,0.012832
+880,569.245,1.75671,0.975872,0.00912,0.225376,0.00528,0.004832,0.006272,0.014368,0.014336,0.686048,0.01024
+881,699.752,1.42908,0.992864,0.008224,0.23552,0.005728,0.004512,0.008128,0.012352,0.01568,0.692576,0.010144
+882,551.167,1.81433,0.988032,0.011104,0.227328,0.005696,0.004544,0.008192,0.01408,0.014624,0.692192,0.010272
+883,660.379,1.51428,0.993344,0.009344,0.23792,0.004704,0.004096,0.008128,0.013696,0.01504,0.690176,0.01024
+884,688.809,1.45178,0.98032,0.0096,0.233376,0.004832,0.005344,0.006944,0.014272,0.014432,0.681344,0.010176
+885,713.278,1.40198,0.9768,0.008736,0.22464,0.004736,0.004096,0.008096,0.01344,0.01488,0.687968,0.010208
+886,736.757,1.3573,1.80365,0.008192,0.227328,0.004096,0.005632,0.00784,0.013152,0.014336,1.51078,0.012288
+887,449.962,2.22241,1.00122,0.00832,0.233056,0.004416,0.00592,0.006368,0.013888,0.014688,0.704416,0.010144
+888,702.332,1.42383,1.15712,0.008192,0.403456,0.005696,0.004544,0.007552,0.014176,0.014624,0.68864,0.01024
+889,633.271,1.5791,0.97392,0.009824,0.223264,0.00448,0.005184,0.007072,0.01232,0.015584,0.684832,0.01136
+890,676.187,1.47888,1.70246,0.008768,0.232512,0.004864,0.004288,0.007872,0.012736,0.015424,1.40282,0.013184
+891,491.363,2.03516,0.98208,0.00832,0.230816,0.004576,0.004096,0.008224,0.012256,0.015584,0.688064,0.010144
+892,732.999,1.36426,1.35168,0.009568,0.221856,0.004096,0.006144,0.007616,0.01408,0.014976,1.06048,0.012864
+893,550.464,1.81665,0.973856,0.009664,0.225888,0.005344,0.0048,0.007264,0.013184,0.014464,0.682976,0.010272
+894,719.986,1.38892,0.989184,0.009344,0.230272,0.004096,0.00576,0.006528,0.014304,0.014368,0.694272,0.01024
+895,520.226,1.92224,0.989184,0.012,0.231712,0.004096,0.0056,0.006688,0.014016,0.014688,0.690144,0.01024
+896,723.931,1.38135,0.974848,0.009344,0.22208,0.005792,0.005888,0.006752,0.014176,0.014528,0.686048,0.01024
+897,646.771,1.54614,0.977184,0.008704,0.220864,0.004416,0.005216,0.007072,0.013792,0.01456,0.69248,0.01008
+898,728.955,1.37183,0.982528,0.010016,0.220928,0.004576,0.005376,0.006912,0.014208,0.014464,0.69568,0.010368
+899,664.504,1.50488,1.61779,0.009568,0.474848,0.011232,0.005632,0.006624,0.014336,0.01552,1.06918,0.010848
+900,516.845,1.93481,0.977536,0.008832,0.221216,0.004064,0.00576,0.006656,0.01424,0.026272,0.680256,0.01024
+901,721.19,1.3866,1.20832,0.008288,0.45456,0.005248,0.0048,0.0064,0.015328,0.014464,0.688992,0.01024
+902,637.361,1.56897,0.991872,0.008832,0.22112,0.00416,0.005536,0.006752,0.014336,0.022528,0.696224,0.012384
+903,663.535,1.50708,0.978688,0.008544,0.238912,0.0048,0.005536,0.006752,0.01392,0.014432,0.67552,0.010272
+904,557.355,1.79419,0.97696,0.01232,0.222944,0.004352,0.005312,0.006976,0.01376,0.014944,0.686048,0.010304
+905,721.254,1.38647,0.981088,0.008256,0.221184,0.005888,0.004352,0.008192,0.013696,0.014816,0.694432,0.010272
+906,614.047,1.62854,0.986624,0.008608,0.222624,0.004704,0.00512,0.007168,0.013504,0.029504,0.685344,0.010048
+907,720.302,1.38831,0.978144,0.009696,0.221088,0.004736,0.005344,0.006944,0.014368,0.014336,0.690144,0.011488
+908,663.051,1.50818,1.65888,0.009952,0.454176,0.040704,0.02112,0.020576,0.014624,0.014336,1.07315,0.01024
+909,507.559,1.97021,0.993344,0.008352,0.223168,0.004064,0.00576,0.006528,0.013824,0.029184,0.692224,0.01024
+910,684.664,1.46057,1.15389,0.009056,0.40864,0.004928,0.004224,0.007808,0.014624,0.014464,0.679904,0.01024
+911,588.125,1.70032,0.99536,0.009472,0.236288,0.005504,0.004736,0.007232,0.013248,0.014336,0.694272,0.010272
+912,710.125,1.4082,1.76074,0.008352,0.241056,0.00464,0.004096,0.008192,0.013984,0.014688,1.45158,0.014144
+913,466.993,2.14136,0.989184,0.009376,0.228192,0.00528,0.0048,0.008352,0.013472,0.014624,0.694848,0.01024
+914,672.247,1.48755,1.15037,0.01024,0.404512,0.004928,0.004256,0.007744,0.014784,0.014336,0.6792,0.010368
+915,661.766,1.51111,0.967136,0.0088,0.226944,0.004544,0.004096,0.008192,0.013344,0.014784,0.675968,0.010464
+916,724.956,1.37939,1.79792,0.008736,0.228512,0.004864,0.004288,0.008192,0.013536,0.014688,1.50163,0.013472
+917,427.758,2.33777,1.00294,0.00928,0.246048,0.004768,0.004096,0.008192,0.013472,0.025216,0.681504,0.010368
+918,772.175,1.29504,1.35603,0.008448,0.222208,0.004896,0.005472,0.00704,0.01376,0.014944,1.06698,0.012288
+919,565.004,1.7699,0.99904,0.008672,0.223232,0.004128,0.006112,0.007392,0.013152,0.02656,0.69952,0.010272
+920,707.671,1.41309,0.983136,0.010048,0.2296,0.005504,0.004704,0.007392,0.01312,0.015328,0.687104,0.010336
+921,471.346,2.12158,1.00995,0.011136,0.23344,0.005344,0.0048,0.00624,0.028512,0.014496,0.683424,0.02256
+922,483.275,2.06921,1.41994,0.008768,0.276224,0.004448,0.005216,0.007072,0.021824,0.014944,1.06915,0.012288
+923,641.755,1.55823,1.0145,0.0088,0.254112,0.005792,0.004416,0.00784,0.01264,0.014336,0.69632,0.01024
+924,719.227,1.39038,1.72355,0.009824,0.2376,0.00448,0.005152,0.007136,0.014048,0.014592,1.41638,0.014336
+925,470.372,2.12598,1.00416,0.008832,0.233184,0.004384,0.005248,0.00704,0.012288,0.015968,0.706976,0.01024
+926,673.518,1.48474,1.35578,0.010048,0.231264,0.004448,0.005216,0.007072,0.014016,0.014272,1.05683,0.012608
+927,603.107,1.65808,0.991232,0.009568,0.225952,0.005376,0.0048,0.006368,0.013984,0.014528,0.700448,0.010208
+928,710.741,1.40698,0.984,0.008704,0.225728,0.004096,0.005696,0.007744,0.013184,0.014336,0.694272,0.01024
+929,559.984,1.78577,0.98736,0.010464,0.233376,0.004192,0.005472,0.006816,0.013632,0.014944,0.688224,0.01024
+930,707.671,1.41309,0.995776,0.008864,0.223232,0.005504,0.004736,0.007584,0.012928,0.015712,0.706912,0.010304
+931,614.83,1.62646,1.00896,0.009792,0.248256,0.00528,0.0048,0.006336,0.014336,0.014304,0.695616,0.01024
+932,751.905,1.32996,0.988096,0.009216,0.23104,0.004448,0.005216,0.007072,0.013952,0.014528,0.69232,0.010304
+933,665.529,1.50256,1.67869,0.009536,0.538304,0.014848,0.004608,0.007968,0.01456,0.015776,1.06147,0.011616
+934,496.004,2.01611,0.9888,0.008192,0.230784,0.004736,0.004096,0.00816,0.013856,0.014624,0.694272,0.01008
+935,725.148,1.37903,1.3545,0.0088,0.227328,0.005504,0.0048,0.007264,0.013024,0.014624,1.06291,0.01024
+936,549.725,1.81909,0.99344,0.008672,0.23552,0.005376,0.0048,0.00752,0.013024,0.01568,0.692736,0.010112
+937,702.814,1.42285,1.70458,0.008256,0.232032,0.005312,0.0048,0.0064,0.014208,0.014304,1.40493,0.014336
+938,477.445,2.09448,1.02336,0.009984,0.256224,0.004128,0.005504,0.006784,0.014176,0.014496,0.701824,0.01024
+939,714.897,1.3988,1.36781,0.009792,0.225728,0.005536,0.004704,0.007328,0.013152,0.014336,1.07648,0.010752
+940,539.586,1.85327,0.996608,0.009952,0.229664,0.004096,0.005728,0.00656,0.014304,0.014368,0.701728,0.010208
+941,553.513,1.80664,2.07875,0.009504,0.578272,0.005728,0.004512,0.007808,0.012672,0.01536,1.43034,0.01456
+942,429.936,2.32593,1.04054,0.00976,0.279168,0.005984,0.004256,0.007744,0.014208,0.014432,0.694752,0.01024
+943,695.889,1.43701,1.17146,0.009312,0.406048,0.005504,0.00464,0.006624,0.015424,0.01504,0.699712,0.009152
+944,686.097,1.45752,0.999872,0.008608,0.247328,0.00432,0.004256,0.0064,0.01376,0.014048,0.69088,0.010272
+945,694.826,1.43921,0.999424,0.009216,0.242688,0.00512,0.00512,0.008192,0.012448,0.014208,0.692192,0.01024
+946,407.279,2.45532,1.00902,0.010592,0.262144,0.00544,0.004768,0.007296,0.013248,0.014304,0.679936,0.011296
+947,890.435,1.12305,1.36397,0.008192,0.229376,0.005664,0.004576,0.008096,0.012384,0.015776,1.06762,0.012288
+948,613.082,1.6311,0.987136,0.008192,0.233056,0.004512,0.00512,0.007168,0.013536,0.014592,0.69072,0.01024
+949,697.785,1.43311,1.01984,0.008224,0.25392,0.004096,0.006144,0.007456,0.013024,0.014368,0.702432,0.010176
+950,407.562,2.45361,1.02195,0.012288,0.25552,0.004576,0.004096,0.008192,0.014112,0.01456,0.698368,0.01024
+951,1036.18,0.965088,1.00282,0.009696,0.243872,0.00448,0.005408,0.00688,0.014336,0.014336,0.690176,0.013632
+952,500.489,1.99805,1.056,0.009696,0.28112,0.005856,0.004384,0.007616,0.016992,0.027872,0.692384,0.01008
+953,790.581,1.26489,0.987936,0.008832,0.233632,0.004288,0.005856,0.008096,0.012672,0.015968,0.68848,0.010112
+954,599.883,1.66699,1.69987,0.009824,0.501888,0.040512,0.008768,0.008352,0.014336,0.014368,1.09158,0.01024
+955,495.644,2.01758,1.00058,0.008192,0.23904,0.004672,0.004128,0.008064,0.012384,0.01552,0.697184,0.011392
+956,831.169,1.20312,0.989024,0.008928,0.238784,0.004864,0.00416,0.007872,0.01408,0.014464,0.685664,0.010208
+957,772.976,1.2937,0.988384,0.009728,0.238112,0.005472,0.004736,0.007872,0.012608,0.014336,0.685344,0.010176
+958,678.258,1.47437,1.01158,0.008736,0.243712,0.005728,0.004512,0.007552,0.012928,0.015936,0.702304,0.010176
+959,725.212,1.37891,0.999776,0.008768,0.22528,0.0056,0.00464,0.007424,0.013056,0.014336,0.71056,0.010112
+960,714.585,1.39941,0.986336,0.008352,0.222656,0.004544,0.00512,0.007168,0.013696,0.014592,0.700032,0.010176
+961,637.411,1.56885,0.994688,0.00848,0.237568,0.005344,0.004768,0.007936,0.012672,0.014496,0.693376,0.010048
+962,703.417,1.42163,0.980768,0.009504,0.230112,0.004096,0.005632,0.006656,0.014336,0.014336,0.68592,0.010176
+963,721.889,1.38525,1.64723,0.008832,0.483328,0.006208,0.00608,0.007424,0.014464,0.014688,1.09549,0.01072
+964,486.461,2.05566,0.982688,0.009792,0.23184,0.004128,0.005536,0.006752,0.01248,0.015616,0.686208,0.010336
+965,718.344,1.39209,1.22458,0.009376,0.460896,0.004864,0.004096,0.008032,0.014208,0.014624,0.698368,0.010112
+966,618.078,1.61792,0.977344,0.00864,0.223232,0.005344,0.004736,0.006304,0.014336,0.014368,0.690144,0.01024
+967,721.635,1.38574,1.74339,0.008736,0.231008,0.004512,0.004256,0.008032,0.013472,0.01488,1.44416,0.014336
+968,463.244,2.15869,1.0048,0.008352,0.22528,0.005344,0.004864,0.007296,0.013184,0.014336,0.715968,0.010176
+969,711.976,1.40454,1.35171,0.009536,0.221888,0.005408,0.004768,0.007616,0.012928,0.014336,1.06246,0.012768
+970,456.531,2.19043,1.00707,0.008384,0.249696,0.005472,0.004768,0.007296,0.013184,0.014336,0.6936,0.010336
+971,895.105,1.11719,1.01786,0.009504,0.264928,0.004096,0.005568,0.00672,0.014208,0.014464,0.688128,0.01024
+972,485.538,2.05957,1.00762,0.012288,0.238848,0.004864,0.004096,0.008192,0.01424,0.014432,0.700384,0.010272
+973,696.243,1.43628,0.997376,0.008192,0.249856,0.005248,0.0048,0.006432,0.014272,0.014304,0.684032,0.01024
+974,628.317,1.59155,0.990016,0.009024,0.225312,0.00576,0.004448,0.007584,0.012896,0.014336,0.700448,0.010208
+975,727.015,1.37549,0.991296,0.008256,0.22528,0.005536,0.004704,0.00736,0.01312,0.014336,0.703712,0.008992
+976,496.124,2.01562,1.0031,0.011616,0.244384,0.004128,0.005568,0.006688,0.014336,0.014336,0.691872,0.010176
+977,707.06,1.41431,0.985888,0.0088,0.227264,0.004352,0.005632,0.006656,0.014208,0.014464,0.694272,0.01024
+978,645.344,1.54956,0.979072,0.009376,0.225376,0.004864,0.004096,0.008192,0.013952,0.014432,0.68944,0.009344
+979,720.112,1.38867,0.99328,0.009312,0.22816,0.004192,0.00576,0.006528,0.013952,0.014752,0.700384,0.01024
+980,683.806,1.4624,1.7881,0.008384,0.23552,0.00512,0.004768,0.006496,0.014048,0.014656,1.48634,0.012768
+981,448.14,2.23145,1.01552,0.009568,0.251776,0.004864,0.00416,0.007936,0.012544,0.01568,0.698848,0.010144
+982,723.419,1.38232,1.19811,0.010016,0.431584,0.004864,0.004096,0.008064,0.0144,0.014432,0.700384,0.010272
+983,612.349,1.63306,0.986304,0.008384,0.227328,0.006144,0.005216,0.007072,0.013536,0.014592,0.694208,0.009824
+984,715.959,1.39673,1.70195,0.009088,0.227104,0.004384,0.00528,0.00704,0.013728,0.01488,1.40618,0.014272
+985,464.083,2.15479,0.996192,0.009088,0.23136,0.004256,0.005408,0.00688,0.013632,0.014464,0.700864,0.01024
+986,730.906,1.36816,1.3561,0.008512,0.223232,0.004096,0.006144,0.007584,0.012896,0.015776,1.06557,0.012288
+987,570.315,1.75342,0.987616,0.0088,0.223648,0.005248,0.004992,0.007552,0.012928,0.015424,0.698848,0.010176
+988,486.114,2.05713,1.05264,0.008544,0.301056,0.004128,0.005696,0.00656,0.01552,0.01456,0.685824,0.010752
+989,878.404,1.13843,1.69859,0.00832,0.469664,0.011328,0.020896,0.03536,0.014336,0.015584,1.11286,0.01024
+990,531.81,1.88037,1.36602,0.010016,0.231648,0.005408,0.0048,0.007232,0.01328,0.014464,1.06643,0.012736
+991,567.47,1.76221,1.01427,0.0088,0.229728,0.004096,0.006144,0.007648,0.012832,0.01568,0.719168,0.010176
+992,683.578,1.46289,0.987232,0.00832,0.231392,0.004096,0.005856,0.006432,0.014176,0.014528,0.692192,0.01024
+993,553.439,1.80688,0.989984,0.011008,0.231424,0.004096,0.0056,0.006688,0.014048,0.014624,0.692224,0.010272
+994,700.41,1.42773,0.996704,0.01008,0.22544,0.005152,0.0048,0.006432,0.014336,0.014336,0.705952,0.010176
+995,667.536,1.49805,0.987136,0.009536,0.229152,0.004864,0.004288,0.007712,0.012736,0.015744,0.692864,0.01024
+996,715.084,1.39844,0.97904,0.008352,0.22112,0.005408,0.0048,0.006208,0.014304,0.014336,0.695392,0.00912
+997,725.598,1.37817,1.78995,0.009792,0.233568,0.004448,0.005216,0.007072,0.013792,0.014784,1.48896,0.01232
+998,438.967,2.27808,0.99408,0.008992,0.23552,0.004096,0.0056,0.006688,0.013984,0.014688,0.694272,0.01024
+999,711.482,1.40552,1.17773,0.008192,0.417792,0.005632,0.00464,0.007392,0.014208,0.0144,0.695104,0.010368
+1000,633.467,1.57861,0.989376,0.008192,0.229024,0.004448,0.005216,0.007072,0.013984,0.014592,0.697536,0.009312
+1001,694.002,1.44092,1.76496,0.009696,0.243872,0.00448,0.00528,0.007008,0.013984,0.014688,1.45139,0.01456
+1002,457.041,2.18799,0.991264,0.01008,0.229536,0.00544,0.0048,0.007232,0.013248,0.01536,0.695296,0.010272
+1003,677.473,1.47607,1.35286,0.009568,0.229504,0.00464,0.004096,0.008192,0.01392,0.014752,1.05677,0.011424
+1004,574.232,1.74146,0.98304,0.009504,0.226016,0.005184,0.0048,0.0064,0.01424,0.014432,0.691968,0.010496
+1005,704.991,1.41846,1.28144,0.008384,0.230848,0.004832,0.00416,0.007904,0.013728,0.01456,0.705184,0.29184
+1006,506.116,1.97583,1.02605,0.012,0.258368,0.005472,0.004736,0.007296,0.013184,0.015424,0.699328,0.01024
+1007,593.881,1.68384,1.00147,0.009312,0.250048,0.004832,0.004096,0.008192,0.01376,0.01456,0.686432,0.01024
+1008,715.959,1.39673,1.00739,0.009408,0.258656,0.00432,0.005408,0.00688,0.013824,0.014784,0.684032,0.01008
+1009,689.795,1.44971,1.01325,0.008288,0.241536,0.004224,0.005856,0.007968,0.0128,0.015488,0.706944,0.010144
+1010,657.675,1.52051,1.61824,0.008512,0.454432,0.030944,0.00528,0.00704,0.014304,0.01424,1.07312,0.010368
+1011,506.304,1.9751,0.985152,0.008352,0.234432,0.004896,0.004288,0.007744,0.013888,0.014816,0.686496,0.01024
+1012,661.072,1.5127,0.995488,0.008352,0.233504,0.005792,0.004416,0.007584,0.012896,0.01552,0.697184,0.01024
+1013,694.944,1.43896,0.981056,0.0088,0.231136,0.004768,0.004096,0.008192,0.014112,0.01456,0.685184,0.010208
+1014,748.538,1.33594,1.76499,0.009408,0.229984,0.00432,0.00544,0.006848,0.014208,0.01456,1.46621,0.014016
+1015,453.85,2.20337,1.00515,0.009664,0.238144,0.005504,0.004736,0.007392,0.014528,0.014944,0.700032,0.010208
+1016,710.618,1.40723,1.20214,0.008608,0.438272,0.0056,0.00464,0.007456,0.01424,0.014784,0.6984,0.010144
+1017,588.506,1.69922,0.995328,0.00976,0.243424,0.004864,0.004128,0.00816,0.013696,0.014976,0.68608,0.01024
+1018,691.775,1.44556,1.0009,0.008448,0.243712,0.004224,0.005696,0.006464,0.014336,0.014336,0.693376,0.010304
+1019,450.853,2.21802,1.05677,0.011648,0.272704,0.004416,0.005248,0.00704,0.013568,0.015008,0.716896,0.01024
+1020,473.307,2.11279,0.995328,0.009984,0.229632,0.004096,0.005664,0.006624,0.014336,0.014336,0.700416,0.01024
+1021,686.557,1.45654,1.00022,0.008832,0.229536,0.004096,0.00576,0.007648,0.013248,0.014304,0.70656,0.01024
+1022,707.427,1.41357,1.28957,0.008224,0.241632,0.004096,0.005792,0.006496,0.014272,0.01424,0.70672,0.288096
+1023,502.947,1.98828,0.99488,0.010464,0.23104,0.00448,0.005184,0.007136,0.01392,0.01472,0.697664,0.010272
+1024,660.006,1.51514,1.37917,0.009056,0.256,0.005632,0.004608,0.007488,0.014176,0.014912,1.0568,0.010496
+1025,587.493,1.70215,0.991552,0.008352,0.233472,0.006144,0.004096,0.007872,0.012608,0.014464,0.6952,0.009344
+1026,659.794,1.51562,1.77427,0.00864,0.250112,0.005824,0.004416,0.007712,0.012864,0.01552,1.45485,0.014336
+1027,462.094,2.16406,1.0049,0.008192,0.23552,0.004096,0.005568,0.00672,0.013856,0.01456,0.704768,0.011616
+1028,701.851,1.4248,1.36355,0.009344,0.231744,0.004672,0.004128,0.008096,0.013568,0.015168,1.06496,0.011872
+1029,566.215,1.76611,0.989472,0.008384,0.228672,0.0048,0.005216,0.007072,0.013472,0.014432,0.697088,0.010336
+1030,673.131,1.4856,1.75104,0.010016,0.25568,0.00464,0.004096,0.008192,0.014112,0.014592,1.42541,0.014304
+1031,474.623,2.10693,0.979232,0.008736,0.231424,0.005728,0.004512,0.00752,0.01296,0.014368,0.683968,0.010016
+1032,720.493,1.38794,1.3648,0.009024,0.229376,0.005152,0.0048,0.006464,0.014016,0.014656,1.06829,0.013024
+1033,569.126,1.75708,1.00147,0.00832,0.228832,0.004512,0.00544,0.006848,0.013984,0.014688,0.70864,0.010208
+1034,668.953,1.49487,0.993728,0.00864,0.235104,0.004512,0.005152,0.007136,0.013856,0.014816,0.694272,0.01024
+1035,505.866,1.97681,1.07693,0.01184,0.307648,0.005184,0.0048,0.0064,0.01408,0.014304,0.702528,0.010144
+1036,720.239,1.38843,0.988768,0.008384,0.23952,0.004192,0.0056,0.006688,0.01408,0.01456,0.685312,0.010432
+1037,633.174,1.57935,1.00451,0.0088,0.243136,0.005024,0.005312,0.006976,0.013792,0.013952,0.6984,0.00912
+1038,735.5,1.35962,0.997376,0.009632,0.23408,0.004192,0.005664,0.007872,0.013024,0.014368,0.698304,0.01024
+1039,660.858,1.51318,1.81344,0.0088,0.241632,0.00448,0.005184,0.007104,0.013344,0.014816,1.50582,0.012256
+1040,465.296,2.14917,1.00381,0.00848,0.231328,0.004192,0.005472,0.006816,0.013952,0.014752,0.708576,0.01024
+1041,654.522,1.52783,0.982688,0.008768,0.22528,0.004096,0.005696,0.006624,0.014144,0.014496,0.693376,0.010208
+1042,686.787,1.45605,0.985824,0.008896,0.2272,0.004224,0.00544,0.006848,0.014144,0.014528,0.694272,0.010272
+1043,711.235,1.40601,1.82886,0.009824,0.233888,0.00576,0.00448,0.007552,0.012928,0.014464,1.52768,0.012288
+1044,438.685,2.27954,1.02909,0.008768,0.256416,0.005696,0.004544,0.007552,0.013024,0.015744,0.707104,0.01024
+1045,702.332,1.42383,1.17965,0.009696,0.404,0.005536,0.004704,0.00736,0.014496,0.01472,0.708896,0.01024
+1046,645.141,1.55005,0.979968,0.009728,0.226912,0.004832,0.00432,0.00816,0.01392,0.014752,0.68608,0.011264
+1047,699.812,1.42896,1.71418,0.009728,0.223744,0.005856,0.004384,0.00768,0.012928,0.014208,1.42131,0.014336
+1048,457.5,2.18579,1.01984,0.010176,0.251968,0.005536,0.004704,0.007392,0.013088,0.015456,0.701344,0.010176
+1049,707.06,1.41431,1.34349,0.008192,0.227328,0.005472,0.004768,0.007424,0.013056,0.014336,1.05046,0.012448
+1050,566.528,1.76514,0.99792,0.008768,0.224736,0.004736,0.004096,0.008064,0.014048,0.014752,0.708384,0.010336
+1051,696.125,1.43652,1.0201,0.0088,0.253248,0.004832,0.004192,0.007872,0.012608,0.015552,0.702784,0.010208
+1052,530.021,1.88672,0.993568,0.010528,0.231424,0.004096,0.005664,0.006624,0.014336,0.014336,0.696352,0.010208
+1053,730.515,1.3689,1.00762,0.009536,0.227552,0.004576,0.00512,0.007168,0.013696,0.014464,0.715264,0.01024
+1054,393.581,2.54077,1.51149,0.008352,0.74128,0.004096,0.0056,0.006688,0.01376,0.014912,0.70656,0.01024
+1055,1006.39,0.993652,1.00512,0.008544,0.232704,0.004864,0.004096,0.007936,0.012544,0.01568,0.70864,0.010112
+1056,665.151,1.50342,1.6425,0.00976,0.467424,0.006144,0.004096,0.008032,0.014496,0.014336,1.10797,0.01024
+1057,497.691,2.00928,1.23926,0.008384,0.228608,0.004864,0.004128,0.008192,0.014336,0.014336,0.711936,0.24448
+1058,617.984,1.61816,0.987104,0.008864,0.222944,0.004352,0.005312,0.006976,0.014016,0.014656,0.699936,0.010048
+1059,710.125,1.4082,0.999328,0.008832,0.224352,0.004864,0.004256,0.008192,0.013728,0.014688,0.710336,0.01008
+1060,440.288,2.27124,1.03424,0.012288,0.262144,0.004096,0.005824,0.006464,0.014208,0.014464,0.704512,0.01024
+1061,723.931,1.38135,1.016,0.008576,0.22528,0.005664,0.004576,0.007424,0.013056,0.014336,0.72688,0.010208
+1062,642.51,1.5564,1.0135,0.008672,0.227328,0.005312,0.004768,0.008352,0.014208,0.014464,0.720128,0.010272
+1063,684.835,1.46021,0.989056,0.008192,0.226432,0.004896,0.004192,0.00784,0.013952,0.014592,0.698848,0.010112
+1064,719.354,1.39014,1.70506,0.008192,0.231424,0.005376,0.0048,0.007328,0.013248,0.014304,1.40493,0.015456
+1065,466.355,2.14429,1.00966,0.008192,0.231424,0.005216,0.004768,0.0064,0.014304,0.0144,0.71472,0.01024
+1066,692.945,1.44312,1.17533,0.008512,0.403776,0.0056,0.00464,0.007424,0.014688,0.014784,0.705792,0.010112
+1067,630.057,1.58716,0.997376,0.009376,0.234112,0.00432,0.005344,0.006944,0.013888,0.014752,0.6984,0.01024
+1068,710.371,1.40771,0.988448,0.00928,0.230336,0.004096,0.005536,0.006752,0.014208,0.014464,0.693536,0.01024
+1069,546.425,1.83008,1.0049,0.012096,0.231488,0.004224,0.00544,0.006848,0.014048,0.014624,0.705952,0.010176
+1070,710.002,1.40845,1.22893,0.00832,0.224256,0.004832,0.004416,0.00768,0.012832,0.015744,0.710688,0.24016
+1071,584.725,1.71021,1.00339,0.009344,0.224128,0.0056,0.00464,0.008096,0.01344,0.014592,0.71344,0.010112
+1072,710.864,1.40674,1.02925,0.009312,0.26464,0.004576,0.004256,0.008032,0.01392,0.014752,0.699648,0.010112
+1073,685.982,1.45776,1.61936,0.008576,0.464224,0.0064,0.004512,0.008192,0.014368,0.014304,1.08749,0.011296
+1074,496.184,2.01538,0.992032,0.008992,0.233472,0.005344,0.0048,0.007296,0.01328,0.014336,0.694112,0.0104
+1075,684.378,1.46118,0.997376,0.008192,0.23136,0.00416,0.005472,0.006816,0.013664,0.014784,0.702688,0.01024
+1076,709.756,1.40894,0.996928,0.009696,0.223776,0.0056,0.00464,0.007808,0.012672,0.01536,0.707232,0.010144
+1077,684.492,1.46094,1.65046,0.008512,0.512,0.007232,0.005056,0.007776,0.01424,0.01456,1.06934,0.011744
+1078,489.25,2.04395,1.01376,0.009984,0.225312,0.004352,0.005408,0.006848,0.014304,0.0144,0.722912,0.01024
+1079,693.415,1.44214,1.21216,0.0088,0.45264,0.00592,0.00432,0.00768,0.014656,0.014528,0.69344,0.010176
+1080,623.725,1.60327,0.989184,0.008352,0.223072,0.0056,0.00464,0.007488,0.012992,0.014336,0.702464,0.01024
+1081,703.659,1.42114,1.70682,0.008608,0.223648,0.005856,0.004384,0.007872,0.012608,0.014496,1.41478,0.01456
+1082,464.61,2.15234,1.03021,0.00912,0.251712,0.004288,0.005376,0.006912,0.014336,0.014336,0.712704,0.011424
+1083,658.839,1.51782,1.03296,0.0088,0.259616,0.004704,0.004096,0.008064,0.013632,0.014688,0.709088,0.010272
+1084,712.596,1.40332,0.999328,0.01024,0.227104,0.00432,0.005312,0.006976,0.013792,0.014912,0.70608,0.010592
+1085,705.234,1.41797,0.997856,0.008672,0.226944,0.00448,0.005536,0.006752,0.014368,0.014304,0.70656,0.01024
+1086,714.585,1.39941,0.994208,0.008672,0.2248,0.004864,0.004256,0.007584,0.012896,0.01552,0.705376,0.01024
+1087,711.605,1.40527,1.00147,0.009376,0.227584,0.004704,0.005536,0.00672,0.013632,0.01488,0.7088,0.01024
+1088,697.548,1.43359,0.997376,0.009312,0.22624,0.004064,0.005664,0.006624,0.022528,0.015744,0.69696,0.01024
+1089,718.219,1.39233,0.989312,0.00848,0.222944,0.004864,0.004288,0.007712,0.012768,0.01584,0.702304,0.010112
+1090,706.085,1.41626,0.992896,0.008608,0.222272,0.004832,0.004288,0.008192,0.01392,0.014784,0.70592,0.01008
+1091,709.264,1.40991,1.00694,0.009376,0.236384,0.005664,0.004576,0.007488,0.013024,0.014304,0.704512,0.011616
+1092,707.671,1.41309,1.00518,0.008192,0.223264,0.005504,0.004704,0.00736,0.01312,0.01536,0.717536,0.010144
+1093,696.243,1.43628,0.99392,0.0088,0.220896,0.004416,0.005248,0.00704,0.0136,0.014624,0.709056,0.01024
+1094,662.462,1.50952,1.01635,0.008832,0.249088,0.004864,0.004096,0.007968,0.013728,0.014592,0.70304,0.010144
+1095,684.263,1.46143,1.01354,0.00992,0.228768,0.015264,0.004096,0.008032,0.013632,0.014848,0.708928,0.010048
+1096,718.344,1.39209,0.993952,0.008704,0.226784,0.004864,0.004288,0.007616,0.013056,0.015904,0.702208,0.010528
+1097,712.968,1.40259,1.01763,0.008448,0.224576,0.004544,0.004288,0.007936,0.012352,0.015552,0.729792,0.010144
+1098,698.261,1.43213,0.989184,0.009536,0.221888,0.005856,0.004384,0.00768,0.0128,0.015456,0.701344,0.01024
+1099,712.1,1.4043,0.98896,0.00944,0.224064,0.00576,0.004448,0.007648,0.012832,0.014336,0.700192,0.01024
+1100,698.738,1.43115,1.02317,0.009696,0.227872,0.004096,0.005664,0.006624,0.014112,0.01456,0.730368,0.010176
+1101,636.816,1.57031,1.02694,0.00832,0.253696,0.004864,0.004352,0.007712,0.012768,0.014336,0.710656,0.01024
+1102,758.8,1.31787,1.0199,0.008384,0.243392,0.004224,0.005856,0.006464,0.014304,0.014336,0.712704,0.01024
+1103,707.793,1.41284,1.01376,0.008224,0.227296,0.004096,0.005696,0.006624,0.013312,0.014528,0.72368,0.010304
+1104,705.356,1.41772,0.99808,0.008896,0.221184,0.005344,0.0048,0.007328,0.013248,0.014336,0.712704,0.01024
+1105,700.051,1.42847,1.0056,0.008416,0.230912,0.004608,0.004224,0.007904,0.012448,0.015552,0.711168,0.010368
+1106,713.962,1.40063,1.00291,0.009248,0.223456,0.004832,0.004128,0.007936,0.012544,0.015776,0.71472,0.010272
+1107,708.651,1.41113,0.99936,0.008224,0.225248,0.00528,0.004768,0.0064,0.013696,0.014912,0.710656,0.010176
+1108,718.219,1.39233,0.999968,0.008736,0.22256,0.004768,0.004096,0.007968,0.012672,0.015296,0.713632,0.01024
+1109,704.264,1.41992,0.994304,0.00912,0.22128,0.004096,0.005632,0.006688,0.014112,0.014496,0.70864,0.01024
+1110,716.71,1.39526,1.00352,0.009248,0.222144,0.004128,0.005504,0.006784,0.014336,0.014336,0.7168,0.01024
+1111,704.143,1.42017,0.996256,0.008288,0.222016,0.005248,0.0048,0.006336,0.014368,0.014304,0.710656,0.01024
+1112,713.713,1.40112,0.980992,0.008192,0.220832,0.004448,0.00528,0.007008,0.01376,0.01472,0.696512,0.01024
+1113,724.187,1.38086,0.995328,0.00944,0.22192,0.005472,0.0048,0.007296,0.013248,0.014304,0.70864,0.010208
+1114,706.694,1.41504,0.998912,0.008576,0.220768,0.00448,0.005312,0.006976,0.013632,0.014368,0.714656,0.010144
+1115,707.916,1.4126,1.00714,0.008736,0.223232,0.004096,0.0056,0.00672,0.014016,0.01456,0.720128,0.010048
+1116,709.879,1.40869,1.0023,0.009024,0.221056,0.004224,0.00544,0.006848,0.013568,0.01472,0.717184,0.01024
+1117,707.182,1.41406,0.994976,0.008352,0.221184,0.004096,0.005632,0.006656,0.013888,0.014816,0.710368,0.009984
+1118,716.084,1.39648,0.996416,0.009312,0.220064,0.004096,0.0056,0.006688,0.014272,0.0144,0.71184,0.010144
+1119,700.65,1.42725,1.00147,0.00832,0.221056,0.005824,0.004416,0.007648,0.012864,0.017824,0.71328,0.01024
+1120,712.472,1.40356,0.997728,0.008512,0.221184,0.004096,0.005664,0.007808,0.013152,0.014368,0.712672,0.010272
+1121,714.959,1.39868,0.995328,0.009504,0.221536,0.00448,0.005472,0.006816,0.014016,0.014656,0.708608,0.01024
+1122,592.164,1.68872,1.0223,0.008512,0.231424,0.004096,0.005792,0.006496,0.014336,0.016224,0.725152,0.010272
+1123,854.401,1.17041,0.997504,0.008288,0.22528,0.005312,0.0048,0.008256,0.0136,0.01472,0.708064,0.009184
+1124,712.72,1.40308,1.00963,0.00864,0.223072,0.005472,0.004768,0.007296,0.013216,0.015456,0.721536,0.010176
+1125,708.16,1.41211,0.992832,0.009216,0.2216,0.004704,0.004096,0.008192,0.013504,0.014656,0.706688,0.010176
+1126,707.304,1.41382,0.999424,0.009376,0.222048,0.004096,0.005664,0.006624,0.014336,0.014336,0.712704,0.01024
+1127,716.585,1.39551,0.996544,0.009984,0.222912,0.004672,0.004096,0.008192,0.014144,0.01456,0.707744,0.01024
+1128,712.596,1.40332,1.01504,0.009248,0.221248,0.004864,0.004256,0.007872,0.012608,0.015712,0.729056,0.010176
+1129,697.31,1.43408,1.01171,0.008192,0.237056,0.004608,0.004096,0.008192,0.013504,0.014176,0.711648,0.01024
+1130,715.209,1.39819,1.00474,0.00928,0.22144,0.0048,0.004096,0.008224,0.014304,0.014336,0.718112,0.010144
+1131,711.976,1.40454,1.00451,0.009056,0.221184,0.005568,0.004704,0.007392,0.013056,0.014336,0.718848,0.010368
+1132,703.417,1.42163,0.998816,0.009504,0.221184,0.004832,0.005472,0.006816,0.013888,0.014784,0.712096,0.01024
+1133,615.477,1.62476,1.00368,0.009504,0.228064,0.004192,0.005664,0.006528,0.014336,0.014336,0.710656,0.0104
+1134,758.518,1.31836,1.0463,0.008672,0.264192,0.005696,0.004544,0.007456,0.013024,0.015584,0.716704,0.010432
+1135,699.454,1.42969,1.01107,0.009344,0.23232,0.00544,0.004768,0.007264,0.013248,0.014336,0.714368,0.009984
+1136,722.654,1.38379,1.01171,0.008512,0.224992,0.004064,0.00576,0.006528,0.013952,0.01472,0.722976,0.010208
+1137,704.506,1.41943,0.997984,0.008352,0.22368,0.004096,0.005536,0.006752,0.013696,0.014656,0.710976,0.01024
+1138,713.589,1.40137,0.995488,0.008352,0.223232,0.00528,0.004768,0.006336,0.014368,0.014304,0.708608,0.01024
+1139,699.454,1.42969,1.01334,0.009824,0.2272,0.00464,0.00528,0.007008,0.013728,0.014944,0.720384,0.010336
+1140,705.477,1.41748,1.01376,0.00928,0.221728,0.004512,0.005152,0.007136,0.01376,0.014848,0.727104,0.01024
+1141,701.49,1.42554,1.00381,0.008512,0.220768,0.00448,0.005376,0.006912,0.013792,0.014752,0.719008,0.010208
+1142,708.773,1.41089,1.00352,0.00992,0.222688,0.004864,0.004192,0.007712,0.012768,0.014336,0.716832,0.010208
+1143,708.773,1.41089,1.00058,0.008192,0.223232,0.004096,0.005664,0.006624,0.01392,0.014464,0.7144,0.009984
+1144,469.994,2.12769,1.03094,0.008992,0.233312,0.004256,0.005376,0.006912,0.014336,0.015776,0.731744,0.01024
+1145,1221.23,0.818848,1.03283,0.008832,0.2432,0.004608,0.00576,0.006528,0.01424,0.014432,0.725024,0.010208
+1146,691.191,1.44678,1.00557,0.010048,0.227552,0.005696,0.004512,0.007584,0.01296,0.01584,0.706912,0.014464
+1147,687.941,1.45361,1.19808,0.009728,0.406016,0.005568,0.004672,0.007424,0.014688,0.020896,0.718848,0.01024
+1148,564.966,1.77002,1.01382,0.008832,0.237568,0.005792,0.004448,0.007584,0.012896,0.01536,0.711296,0.010048
+1149,781.978,1.27881,1.75853,0.009472,0.23424,0.005632,0.004608,0.007456,0.013024,0.014464,1.45501,0.014624
+1150,455.212,2.19678,1.03206,0.008608,0.250848,0.004832,0.00432,0.007552,0.014208,0.01504,0.71648,0.010176
+1151,701.971,1.42456,1.18784,0.009728,0.406016,0.005216,0.004768,0.006432,0.014368,0.014272,0.7168,0.01024
+1152,612.166,1.63354,0.999392,0.009792,0.225024,0.0048,0.004096,0.008064,0.013728,0.01472,0.708576,0.010592
+1153,678.258,1.47437,1.74518,0.00848,0.229376,0.004096,0.005632,0.00784,0.013152,0.014336,1.44794,0.014336
+1154,467.954,2.13696,1.00915,0.009376,0.242144,0.004608,0.004096,0.00816,0.013696,0.014752,0.702016,0.010304
+1155,697.667,1.43335,1.36074,0.009056,0.226304,0.004864,0.004352,0.00768,0.0128,0.01568,1.06963,0.010368
+1156,564.654,1.771,1.02944,0.01008,0.22544,0.005824,0.004416,0.00768,0.0128,0.014336,0.738752,0.010112
+1157,669.5,1.49365,1.77971,0.009504,0.25664,0.004192,0.00544,0.006848,0.01376,0.014784,1.45414,0.0144
+1158,465.825,2.14673,1.01133,0.010016,0.22752,0.004128,0.005536,0.006784,0.013792,0.014848,0.718592,0.010112
+1159,699.215,1.43018,1.38944,0.008256,0.227584,0.004672,0.00416,0.008096,0.0136,0.014816,1.09571,0.012544
+1160,554.863,1.80225,1.00486,0.009696,0.223776,0.004096,0.005792,0.006496,0.014336,0.015456,0.715008,0.010208
+1161,719.733,1.3894,1.75104,0.008384,0.234304,0.004864,0.004352,0.00816,0.013504,0.014976,1.44816,0.014336
+1162,454.606,2.19971,1.03254,0.008864,0.24944,0.004512,0.005152,0.007136,0.01408,0.01424,0.719136,0.009984
+1163,519.007,1.92676,1.38454,0.008288,0.237568,0.004096,0.005568,0.00672,0.014336,0.015424,1.08026,0.012288
+1164,790.581,1.26489,1.00634,0.00896,0.229248,0.004224,0.00544,0.006848,0.014016,0.01456,0.7128,0.01024
+1165,606.455,1.64893,1.03222,0.009472,0.227936,0.004256,0.014336,0.00784,0.020832,0.014336,0.722944,0.010272
+1166,531.672,1.88086,1.02195,0.011776,0.241824,0.00448,0.005184,0.008544,0.012864,0.014336,0.712704,0.01024
+1167,692.126,1.44482,1.24739,0.008352,0.2288,0.004672,0.004128,0.008,0.013632,0.014912,0.954048,0.010848
+1168,603.774,1.65625,1.00109,0.009408,0.224064,0.005856,0.004384,0.007808,0.012672,0.015616,0.711104,0.010176
+1169,725.212,1.37891,0.996064,0.008928,0.224704,0.004672,0.005376,0.006912,0.01376,0.01456,0.706816,0.010336
+1170,679.947,1.4707,1.64659,0.009472,0.442208,0.027552,0.013984,0.0184,0.014688,0.0144,1.09565,0.01024
+1171,474.568,2.10718,1.02557,0.0096,0.241408,0.004832,0.004256,0.007616,0.012864,0.015392,0.719584,0.010016
+1172,668.08,1.49683,1.03837,0.009664,0.225088,0.004864,0.004096,0.007872,0.013696,0.014752,0.748064,0.010272
+1173,620.7,1.61108,1.03504,0.008768,0.235744,0.00608,0.00416,0.007904,0.0136,0.015008,0.733536,0.01024
+1174,725.084,1.37915,1.70394,0.009568,0.520864,0.007264,0.004768,0.0064,0.014336,0.01584,1.11466,0.01024
+1175,475.395,2.10352,1.02253,0.008768,0.229088,0.004416,0.00528,0.006976,0.013856,0.014496,0.729408,0.01024
+1176,672.578,1.48682,1.21651,0.008384,0.405312,0.005152,0.004768,0.006464,0.014336,0.01568,0.746176,0.01024
+1177,623.25,1.60449,1.00758,0.008704,0.223104,0.004224,0.005408,0.00688,0.013728,0.014272,0.721248,0.010016
+1178,701.37,1.42578,1.83891,0.008704,0.22448,0.004864,0.004128,0.007968,0.013664,0.015232,1.5473,0.012576
+1179,439.863,2.27344,1.00717,0.009632,0.225728,0.004256,0.005408,0.007936,0.01312,0.0144,0.716672,0.010016
+1180,665.367,1.50293,1.36192,0.009344,0.218016,0.00512,0.004736,0.006496,0.014368,0.014112,1.07926,0.010464
+1181,577.797,1.73071,1.03165,0.009248,0.2488,0.004096,0.005664,0.006624,0.013984,0.014688,0.71824,0.010304
+1182,580.417,1.7229,1.35782,0.008192,0.26624,0.0056,0.00464,0.007776,0.012704,0.014368,0.712672,0.325632
+1183,583.808,1.71289,1.01488,0.008192,0.229376,0.004096,0.005728,0.00656,0.01424,0.014432,0.722144,0.010112
+1184,696.243,1.43628,1.4176,0.008576,0.227328,0.004096,0.005568,0.007872,0.013184,0.014336,1.12438,0.012256
+1185,539.373,1.854,1.01949,0.009536,0.221888,0.005728,0.004512,0.007488,0.012992,0.014336,0.7328,0.010208
+1186,631.709,1.58301,1.7696,0.008288,0.22672,0.004704,0.004096,0.008192,0.013664,0.014496,1.47622,0.013216
+1187,481.09,2.07861,1.02099,0.00944,0.232224,0.005184,0.0048,0.006432,0.014304,0.014336,0.724096,0.010176
+1188,707.671,1.41309,1.39606,0.008352,0.22448,0.004768,0.004096,0.008064,0.013728,0.015072,1.1039,0.0136
+1189,553.364,1.80713,1.01594,0.00832,0.225312,0.005536,0.004672,0.007424,0.013056,0.014336,0.72704,0.01024
+1190,476.334,2.09937,1.30253,0.009856,0.225664,0.005664,0.004576,0.007456,0.013024,0.015392,0.704512,0.316384
+1191,654.104,1.52881,1.03181,0.01024,0.239616,0.00528,0.0048,0.0064,0.01424,0.014336,0.726752,0.010144
+1192,816.261,1.2251,1.23389,0.009088,0.227264,0.004256,0.005408,0.00688,0.014336,0.014368,0.710624,0.241664
+1193,623.82,1.60303,1.01414,0.0088,0.223552,0.004192,0.005536,0.007776,0.013312,0.014336,0.726432,0.010208
+1194,679.947,1.4707,1.00346,0.009696,0.22992,0.00416,0.005664,0.006592,0.014304,0.014336,0.708448,0.010336
+1195,687.594,1.45435,1.63597,0.00832,0.47104,0.006144,0.005984,0.0064,0.015552,0.01488,1.09699,0.010656
+1196,498.782,2.00488,1.03222,0.009824,0.250272,0.005216,0.004832,0.0064,0.014272,0.014336,0.7168,0.010272
+1197,634.547,1.57593,1.01654,0.008416,0.2256,0.004288,0.005376,0.006912,0.01424,0.014432,0.72704,0.01024
+1198,702.573,1.42334,1.0265,0.00864,0.22528,0.005632,0.004608,0.008192,0.01376,0.014912,0.735232,0.01024
+1199,656.515,1.52319,1.83501,0.008192,0.230752,0.004768,0.004128,0.008,0.013792,0.014976,1.53811,0.012288
+1200,449.566,2.22437,1.03258,0.008544,0.22528,0.00544,0.0048,0.007232,0.01328,0.014304,0.743424,0.010272
+1201,656.937,1.52222,1.196,0.009344,0.404224,0.005472,0.0048,0.0064,0.014336,0.015616,0.725216,0.010592
+1202,650.882,1.53638,1.03536,0.009824,0.247584,0.004736,0.004096,0.007584,0.012896,0.01568,0.722816,0.010144
+1203,650.779,1.53662,1.85491,0.008352,0.245312,0.004448,0.005184,0.007104,0.014336,0.014336,1.54317,0.012672
+1204,444.782,2.24829,1.04435,0.008896,0.247776,0.005312,0.004832,0.0064,0.014176,0.014336,0.732352,0.010272
+1205,720.493,1.38794,1.20589,0.009664,0.40544,0.004736,0.004096,0.008096,0.014272,0.014496,0.734944,0.010144
+1206,594.744,1.6814,1.00307,0.009952,0.223456,0.00416,0.005536,0.006752,0.014336,0.015744,0.71232,0.010816
+1207,710.864,1.40674,1.83818,0.008256,0.226784,0.00464,0.004096,0.008192,0.01376,0.014848,1.5456,0.012
+1208,447.162,2.23633,1.02349,0.009728,0.22784,0.00512,0.0048,0.007872,0.012928,0.015712,0.729376,0.010112
+1209,638.902,1.56519,1.38445,0.009568,0.223488,0.004512,0.005152,0.007168,0.012256,0.01568,1.09629,0.010336
+1210,573.348,1.74414,1.04448,0.009504,0.256736,0.004096,0.00576,0.006528,0.014336,0.014336,0.722944,0.01024
+1211,625.248,1.59937,1.83216,0.009344,0.23232,0.005344,0.004832,0.00624,0.01424,0.0144,1.53312,0.01232
+1212,466.037,2.14575,1.02195,0.009888,0.229728,0.005856,0.004384,0.00768,0.012928,0.015744,0.725504,0.01024
+1213,682.78,1.4646,1.40486,0.00928,0.23648,0.006144,0.005792,0.007616,0.013216,0.014336,1.10099,0.011008
+1214,567.077,1.76343,1.02611,0.008352,0.226464,0.004832,0.004096,0.007968,0.013632,0.014816,0.73568,0.010272
+1215,684.492,1.46094,1.77347,0.009184,0.226016,0.00432,0.005312,0.008064,0.013248,0.014368,1.47862,0.014336
+1216,459.038,2.17847,1.04685,0.00896,0.247776,0.005408,0.004864,0.007904,0.013824,0.014784,0.733184,0.010144
+1217,684.606,1.46069,1.4529,0.008832,0.305504,0.005824,0.004416,0.007616,0.012864,0.014336,1.08282,0.010688
+1218,534.796,1.86987,1.024,0.008192,0.222656,0.004672,0.004096,0.008096,0.0136,0.014784,0.737696,0.010208
+1219,560.789,1.7832,1.87168,0.008192,0.235552,0.005728,0.00448,0.007616,0.012864,0.014336,1.57078,0.012128
+1220,516.585,1.93579,1.02406,0.008256,0.228896,0.004576,0.004096,0.008192,0.014176,0.014272,0.73136,0.01024
+1221,675.573,1.48022,1.21037,0.00976,0.413696,0.004576,0.00512,0.007168,0.014368,0.015904,0.729536,0.01024
+1222,619.105,1.61523,1.00544,0.008736,0.22128,0.004096,0.005568,0.00672,0.014208,0.013984,0.720736,0.010112
+1223,565.277,1.76904,1.88298,0.008832,0.252064,0.00416,0.005504,0.006784,0.014304,0.014368,1.56467,0.012288
+1224,505.118,1.97974,1.02602,0.009504,0.228064,0.005824,0.004416,0.008192,0.014048,0.014656,0.731104,0.010208
+1225,657.253,1.52148,1.38854,0.009216,0.225856,0.004544,0.005792,0.007968,0.012864,0.014016,1.09802,0.010272
+1226,576.009,1.73608,1.03565,0.00992,0.229376,0.004448,0.005344,0.006912,0.013536,0.014496,0.739968,0.011648
+1227,642.409,1.55664,1.8719,0.009664,0.225856,0.00528,0.0048,0.006432,0.014144,0.0144,1.57872,0.012608
+1228,436.488,2.29102,1.02608,0.008672,0.229152,0.004096,0.005696,0.007904,0.013056,0.014432,0.732928,0.010144
+1229,719.101,1.39062,1.20637,0.008288,0.413696,0.005888,0.004352,0.007584,0.014304,0.014784,0.727232,0.01024
+1230,611.708,1.63477,1.0199,0.008384,0.222048,0.004864,0.00432,0.007648,0.012928,0.015296,0.734176,0.01024
+1231,671.365,1.4895,1.31757,0.0088,0.223616,0.005504,0.004704,0.007584,0.012896,0.015552,1.02483,0.01408
+1232,504.496,1.98218,1.05658,0.009344,0.250816,0.004192,0.005696,0.006496,0.014336,0.014496,0.741024,0.010176
+1233,692.126,1.44482,1.40698,0.008192,0.226912,0.004512,0.005152,0.007136,0.013728,0.014944,1.11411,0.012288
+1234,552.17,1.81104,1.03181,0.009664,0.22336,0.004544,0.005184,0.007104,0.01344,0.014976,0.743168,0.010368
+1235,710.002,1.40845,1.3271,0.008512,0.229376,0.005824,0.004448,0.007808,0.013824,0.014976,1.02819,0.014144
+1236,498.843,2.00464,1.02605,0.009728,0.225792,0.004096,0.00576,0.006528,0.014336,0.014336,0.735232,0.01024
+1237,505.242,1.97925,1.25357,0.008384,0.237568,0.005792,0.004448,0.007616,0.012864,0.014336,0.952096,0.010464
+1238,807.89,1.23779,1.024,0.009248,0.226272,0.00528,0.00496,0.007776,0.01392,0.014336,0.731968,0.01024
+1239,579.022,1.72705,1.04403,0.009504,0.25248,0.004256,0.0056,0.006688,0.014336,0.014336,0.726816,0.010016
+1240,561.327,1.78149,1.03837,0.012096,0.232416,0.004096,0.005792,0.006496,0.014112,0.01456,0.738752,0.010048
+1241,695.18,1.43848,1.02435,0.008608,0.22528,0.004096,0.005536,0.006752,0.01392,0.014688,0.735296,0.010176
+1242,666.341,1.50073,1.0199,0.009568,0.22752,0.004576,0.004224,0.007968,0.012384,0.01584,0.727584,0.01024
+1243,718.344,1.39209,1.01814,0.00848,0.231424,0.004192,0.005696,0.006496,0.01424,0.014464,0.722912,0.01024
+1244,644.228,1.55225,1.69779,0.00992,0.520512,0.006144,0.00576,0.00656,0.014304,0.015616,1.10874,0.01024
+1245,508.378,1.96704,1.02643,0.0088,0.227488,0.006144,0.004128,0.00816,0.014208,0.014496,0.732768,0.01024
+1246,675.35,1.48071,1.20365,0.008576,0.403424,0.004128,0.005568,0.00672,0.014336,0.015616,0.735136,0.010144
+1247,612.074,1.63379,1.03152,0.009568,0.231168,0.004864,0.004256,0.007808,0.012704,0.015808,0.734784,0.01056
+1248,675.239,1.48096,1.75411,0.009088,0.226688,0.004832,0.004128,0.007904,0.012576,0.015776,1.45843,0.014688
+1249,464.346,2.15356,1.01341,0.008448,0.227104,0.00448,0.005184,0.007104,0.013376,0.014592,0.72304,0.01008
+1250,659.794,1.51562,1.39043,0.010208,0.227264,0.004192,0.005472,0.007872,0.01328,0.015776,1.09578,0.010592
+1251,590.372,1.69385,1.04381,0.009728,0.225792,0.005344,0.0048,0.006272,0.014272,0.014368,0.752768,0.010464
+1252,668.08,1.49683,1.76211,0.008896,0.225408,0.005632,0.004608,0.007456,0.012992,0.015552,1.46717,0.0144
+1253,463.034,2.15967,1.06534,0.00832,0.250688,0.004096,0.005696,0.006592,0.014336,0.014336,0.751232,0.010048
+1254,679.27,1.47217,1.39062,0.009472,0.224,0.00576,0.00448,0.007424,0.013248,0.015712,1.09821,0.01232
+1255,555.917,1.79883,1.03632,0.008384,0.222976,0.00416,0.005504,0.006784,0.014336,0.014336,0.749568,0.010272
+1256,479.794,2.08423,1.3353,0.009312,0.248032,0.0048,0.005664,0.006624,0.014336,0.01456,1.00125,0.03072
+1257,710.125,1.4082,1.03264,0.008928,0.239584,0.005856,0.004384,0.007648,0.012832,0.014336,0.729088,0.009984
+1258,717.715,1.39331,1.40973,0.008768,0.227456,0.005568,0.00464,0.007456,0.014112,0.014816,1.11466,0.012256
+1259,537.956,1.85889,1.0417,0.008416,0.22528,0.005408,0.004768,0.00736,0.01312,0.014336,0.752928,0.01008
+1260,602.353,1.66016,1.3777,0.009984,0.23312,0.004704,0.004096,0.008128,0.013856,0.0144,1.07706,0.012352
+1261,545.188,1.83423,1.01258,0.008832,0.229056,0.00464,0.005216,0.008288,0.01312,0.014368,0.718816,0.01024
+1262,710.988,1.40649,1.24147,0.008768,0.223232,0.005408,0.0048,0.007232,0.01328,0.014336,0.95232,0.012096
+1263,590.627,1.69312,1.02125,0.00848,0.22528,0.005536,0.004704,0.007232,0.012992,0.014624,0.731104,0.011296
+1264,687.594,1.45435,1.02605,0.009568,0.221696,0.004256,0.005376,0.006944,0.014144,0.014496,0.739328,0.01024
+1265,700.291,1.42798,1.65814,0.008416,0.463968,0.006336,0.004832,0.007712,0.01456,0.014592,1.12646,0.011264
+1266,455.769,2.19409,1.03427,0.009568,0.252576,0.005248,0.0048,0.0064,0.014272,0.01536,0.715776,0.010272
+1267,667.862,1.49731,1.03389,0.008192,0.235232,0.004416,0.005216,0.007072,0.01376,0.014688,0.735264,0.010048
+1268,696.599,1.43555,1.0281,0.009248,0.228128,0.004288,0.005376,0.006912,0.01408,0.014592,0.735232,0.01024
+1269,698.857,1.43091,1.7191,0.008832,0.540256,0.006304,0.004704,0.007872,0.014016,0.014528,1.1121,0.010496
+1270,454.505,2.2002,1.03014,0.010144,0.22688,0.00464,0.004192,0.007936,0.013664,0.014784,0.737664,0.01024
+1271,692.477,1.44409,1.19123,0.009792,0.405888,0.00416,0.005568,0.007904,0.014304,0.014464,0.718944,0.010208
+1272,616.496,1.62207,1.03053,0.008576,0.223232,0.00544,0.0048,0.007232,0.013248,0.014336,0.743424,0.01024
+1273,649.128,1.54053,1.83709,0.008416,0.226912,0.004288,0.005504,0.006784,0.014304,0.014368,1.54419,0.01232
+1274,450.704,2.21875,1.02813,0.008352,0.228928,0.004544,0.005184,0.007104,0.014336,0.014336,0.7352,0.010144
+1275,673.684,1.48438,1.22211,0.008384,0.407328,0.004128,0.0056,0.006688,0.014336,0.014336,0.750752,0.01056
+1276,617.518,1.61938,1.02774,0.009952,0.229504,0.004256,0.005408,0.00688,0.014368,0.014304,0.732768,0.010304
+1277,668.407,1.49609,1.80838,0.008384,0.261952,0.004096,0.005792,0.006496,0.014368,0.014304,1.47814,0.014848
+1278,451.449,2.21509,1.05648,0.00976,0.25648,0.004096,0.005792,0.006496,0.014176,0.015616,0.734112,0.009952
+1279,668.407,1.49609,1.30867,0.008288,0.49072,0.0048,0.004096,0.008032,0.014496,0.014336,0.753664,0.01024
+1280,615.94,1.62354,1.0248,0.008992,0.228608,0.004832,0.004128,0.007808,0.013888,0.014592,0.731712,0.01024
+1281,643.924,1.55298,1.05072,0.008352,0.251104,0.004896,0.004096,0.007904,0.013952,0.015008,0.735232,0.010176
+1282,471.618,2.12036,1.04038,0.012288,0.241184,0.004576,0.004096,0.008192,0.013504,0.01488,0.731424,0.01024
+1283,683.008,1.46411,1.3824,0.009888,0.22768,0.004096,0.005664,0.006624,0.014048,0.014656,1.0895,0.01024
+1284,558.114,1.79175,1.03629,0.00944,0.23632,0.005536,0.004704,0.007392,0.013088,0.014336,0.735232,0.01024
+1285,686.097,1.45752,1.76125,0.0088,0.235008,0.004672,0.004096,0.008096,0.012384,0.015456,1.45706,0.01568
+1286,420.361,2.37891,1.09789,0.008448,0.286016,0.0048,0.004096,0.008032,0.014144,0.014688,0.747392,0.010272
+1287,695.062,1.43872,1.38931,0.008832,0.234912,0.004832,0.004096,0.008064,0.012416,0.014336,1.09158,0.01024
+1288,538.239,1.85791,1.04781,0.009664,0.225856,0.005312,0.0048,0.00752,0.013088,0.01568,0.755616,0.010272
+1289,708.651,1.41113,1.86163,0.008192,0.233472,0.005504,0.004736,0.007296,0.013056,0.014464,1.56266,0.012256
+1290,438.591,2.28003,1.02675,0.0088,0.224544,0.004832,0.004096,0.007936,0.012672,0.01552,0.73904,0.009312
+1291,712.472,1.40356,1.20627,0.009248,0.406496,0.005312,0.0048,0.0064,0.015424,0.014624,0.733728,0.01024
+1292,596.563,1.67627,1.01312,0.009536,0.21984,0.00528,0.004832,0.0064,0.014208,0.01552,0.727488,0.010016
+1293,596.65,1.67603,1.78067,0.007264,0.243552,0.005376,0.004864,0.007616,0.013888,0.01488,1.4688,0.014432
+1294,501.776,1.99292,1.02506,0.009632,0.227552,0.00448,0.005184,0.007104,0.013632,0.01472,0.731456,0.011296
+1295,680.06,1.47046,1.37686,0.0088,0.223456,0.00544,0.0048,0.007264,0.013216,0.014336,1.0889,0.010656
+1296,561.173,1.78198,1.00739,0.009888,0.22112,0.004512,0.00512,0.007168,0.013536,0.014944,0.720832,0.010272
+1297,705.477,1.41748,1.32086,0.008192,0.226368,0.004896,0.004256,0.007808,0.012672,0.014336,1.0281,0.01424
+1298,507.182,1.97168,1.02253,0.008864,0.227168,0.004256,0.005376,0.008288,0.012992,0.014432,0.730752,0.0104
+1299,700.77,1.427,1.40003,0.00832,0.227296,0.004128,0.005504,0.006784,0.013856,0.014688,1.10605,0.013408
+1300,565.355,1.7688,1.01581,0.00976,0.223072,0.004736,0.005888,0.006464,0.014304,0.016032,0.725312,0.01024
+1301,691.892,1.44531,1.30691,0.008384,0.222816,0.004608,0.004096,0.008032,0.012448,0.014368,1.01782,0.014336
+1302,393.166,2.54346,1.08858,0.00976,0.285152,0.005472,0.004768,0.007264,0.013216,0.014336,0.7384,0.010208
+1303,1074.78,0.93042,1.29885,0.008608,0.228576,0.004864,0.004128,0.007776,0.012704,0.01536,1.0057,0.011136
+1304,581.57,1.71948,1.02531,0.009408,0.225824,0.00448,0.005152,0.007072,0.013504,0.014848,0.73504,0.009984
+1305,700.051,1.42847,1.01946,0.009504,0.221312,0.004704,0.00416,0.008128,0.013472,0.014592,0.733376,0.010208
+1306,437.56,2.2854,1.03635,0.01184,0.225376,0.004896,0.00416,0.007872,0.013632,0.014976,0.743616,0.009984
+1307,715.334,1.39795,1.0265,0.008608,0.22528,0.005792,0.004448,0.008192,0.013504,0.01424,0.736192,0.01024
+1308,597.172,1.67456,1.02496,0.009088,0.221184,0.005472,0.004832,0.00752,0.01296,0.014336,0.739328,0.01024
+1309,691.892,1.44531,1.01558,0.00832,0.221216,0.004384,0.00528,0.007008,0.0136,0.014976,0.730368,0.010432
+1310,594.485,1.68213,1.22179,0.011488,0.420736,0.005728,0.004512,0.007552,0.01424,0.01456,0.7328,0.010176
+1311,603.418,1.65723,1.03469,0.008928,0.224288,0.004896,0.004288,0.007776,0.012704,0.014336,0.746976,0.010496
+1312,643.216,1.55469,1.22762,0.008928,0.405376,0.004352,0.005376,0.006912,0.014336,0.016064,0.756032,0.01024
+1313,626.971,1.59497,1.03837,0.008416,0.223008,0.005376,0.0048,0.007296,0.01328,0.014304,0.751616,0.010272
+1314,676.242,1.47876,1.77206,0.008736,0.221184,0.005312,0.004768,0.007872,0.012768,0.01568,1.48141,0.014336
+1315,453.75,2.20386,1.0375,0.009568,0.247488,0.004864,0.00432,0.008192,0.01376,0.014944,0.724256,0.010112
+1316,693.532,1.44189,1.28832,0.009088,0.488672,0.004928,0.004128,0.007872,0.014656,0.014336,0.734336,0.010304
+1317,595.262,1.67993,1.0199,0.008192,0.220736,0.004544,0.004096,0.00816,0.0136,0.014848,0.73504,0.010688
+1318,703.538,1.42139,1.86778,0.010048,0.223456,0.005184,0.0048,0.006368,0.014336,0.014336,1.57696,0.012288
+1319,438.403,2.28101,1.02378,0.009984,0.225568,0.005184,0.004768,0.0064,0.013824,0.014816,0.732864,0.010368
+1320,668.626,1.49561,1.40922,0.009408,0.219776,0.00448,0.005216,0.007072,0.014368,0.01408,1.12442,0.0104
+1321,328.626,3.04297,1.03424,0.009856,0.237952,0.005664,0.004576,0.007424,0.013056,0.014368,0.731104,0.01024
+1322,608.166,1.64429,1.93987,0.008608,0.261824,0.004448,0.005248,0.007008,0.014016,0.014656,1.61334,0.01072
+1323,569.126,1.75708,1.03008,0.008288,0.236864,0.0048,0.005216,0.007072,0.013952,0.014752,0.728896,0.01024
+1324,706.816,1.41479,1.0351,0.009056,0.229376,0.005632,0.004608,0.00816,0.013472,0.014432,0.740128,0.01024
+1325,684.378,1.46118,1.04141,0.008256,0.227168,0.004192,0.00544,0.008032,0.013152,0.014336,0.749568,0.011264
+1326,607.175,1.64697,1.03366,0.009312,0.234432,0.005504,0.004704,0.00736,0.013152,0.014336,0.73456,0.010304
+1327,753.357,1.32739,1.02467,0.0088,0.227168,0.00432,0.005344,0.006944,0.013824,0.014624,0.733408,0.01024
+1328,694.826,1.43921,1.3968,0.00944,0.221984,0.005344,0.004768,0.007296,0.013344,0.015616,1.1087,0.010304
+1329,566.764,1.7644,1.02326,0.009632,0.227936,0.004096,0.005728,0.007904,0.012992,0.014336,0.73056,0.01008
+1330,552.543,1.80981,1.13226,0.008672,0.309248,0.004096,0.005696,0.006592,0.022528,0.030272,0.735008,0.010144
+1331,470.696,2.12451,1.04838,0.010784,0.243488,0.00432,0.005344,0.006944,0.014336,0.014336,0.73872,0.010112
+1332,694.12,1.44067,1.41888,0.008448,0.251136,0.004864,0.005184,0.007104,0.014336,0.014336,1.10182,0.011648
+1333,542.229,1.84424,1.04054,0.008448,0.247584,0.004576,0.004096,0.008096,0.013504,0.014464,0.729216,0.01056
+1334,712.224,1.40405,1.84282,0.009856,0.225664,0.005184,0.005056,0.007296,0.013184,0.01584,1.54877,0.011968
+1335,431.067,2.31982,1.0255,0.008288,0.227264,0.00416,0.005376,0.006944,0.013792,0.014848,0.73456,0.010272
+1336,676.354,1.47852,1.22291,0.00848,0.423904,0.005664,0.004576,0.00752,0.014624,0.01472,0.733184,0.01024
+1337,630.833,1.58521,1.03594,0.009632,0.222912,0.004864,0.004256,0.007712,0.012768,0.014336,0.749216,0.01024
+1338,708.773,1.41089,1.76538,0.009984,0.225536,0.005184,0.0048,0.006432,0.014272,0.014368,1.47046,0.014336
+1339,428.676,2.33276,1.02896,0.008832,0.233376,0.004416,0.00512,0.007168,0.013408,0.014432,0.731968,0.01024
+1340,664.935,1.50391,1.40902,0.009664,0.248384,0.005856,0.004384,0.007808,0.012672,0.015552,1.09405,0.010656
+1341,562.174,1.77881,1.04854,0.00896,0.241504,0.004256,0.005408,0.00688,0.013696,0.014784,0.742912,0.010144
+1342,611.891,1.63428,1.77469,0.008192,0.2232,0.004128,0.005568,0.00672,0.014112,0.01456,1.48275,0.015456
+1343,490.128,2.04028,1.02003,0.008352,0.2232,0.004096,0.0056,0.007744,0.01328,0.01536,0.73216,0.01024
+1344,709.51,1.40942,1.3737,0.009632,0.219744,0.005504,0.004256,0.006624,0.0136,0.014048,1.08851,0.011776
+1345,553.813,1.80566,1.00835,0.008384,0.21968,0.005408,0.0048,0.007232,0.01328,0.014336,0.724992,0.01024
+1346,698.142,1.43237,1.7449,0.00992,0.221344,0.004256,0.005376,0.006912,0.013632,0.014592,1.45453,0.014336
+1347,468.864,2.13281,1.02605,0.008192,0.22528,0.004096,0.005664,0.006688,0.013984,0.014624,0.73728,0.01024
+1348,458.525,2.18091,1.46842,0.009952,0.2952,0.00544,0.0048,0.007776,0.02704,0.014336,1.09309,0.010784
+1349,755.441,1.32373,1.03037,0.008384,0.221216,0.005824,0.004384,0.008,0.01248,0.01568,0.744128,0.010272
+1350,682.326,1.46558,1.80176,0.009664,0.238144,0.004096,0.005792,0.006496,0.014336,0.014336,1.49466,0.01424
+1351,452.097,2.21191,1.0135,0.008256,0.221184,0.004096,0.005728,0.00656,0.013728,0.014976,0.7288,0.010176
+1352,697.548,1.43359,1.25482,0.00944,0.465696,0.004096,0.005664,0.006624,0.014336,0.015456,0.723328,0.010176
+1353,621.077,1.61011,1.0209,0.0088,0.21952,0.00528,0.00496,0.007552,0.012928,0.015584,0.736032,0.01024
+1354,668.516,1.49585,1.73094,0.008832,0.220576,0.004704,0.005312,0.006976,0.014144,0.014528,1.44144,0.014432
+1355,469.24,2.1311,1.03459,0.008288,0.243968,0.005664,0.004576,0.008032,0.013792,0.014528,0.725504,0.01024
+1356,722.399,1.38428,1.39629,0.008416,0.22128,0.005792,0.004352,0.007648,0.012832,0.014368,1.10899,0.012608
+1357,504.061,1.98389,1.01994,0.009856,0.223616,0.005952,0.004288,0.008064,0.01248,0.016032,0.729376,0.010272
+1358,676.801,1.47754,1.74042,0.00944,0.221984,0.004096,0.005696,0.006592,0.014368,0.014304,1.44794,0.016
+1359,474.184,2.10889,1.0448,0.00896,0.2456,0.004256,0.00544,0.008576,0.01264,0.015424,0.733664,0.01024
+1360,463.663,2.15674,1.3783,0.008192,0.223008,0.00432,0.006048,0.007328,0.013248,0.014336,1.08954,0.012288
+1361,942.91,1.06055,1.02339,0.008384,0.220896,0.004384,0.005312,0.006976,0.01424,0.014432,0.73856,0.010208
+1362,606.366,1.64917,1.40902,0.009728,0.23776,0.004416,0.019712,0.006944,0.014112,0.014528,1.0793,0.022528
+1363,525.532,1.90283,1.01885,0.0088,0.225664,0.005728,0.004512,0.008192,0.01392,0.014752,0.72704,0.01024
+1364,717.841,1.39307,1.39197,0.00992,0.221504,0.005728,0.004544,0.007648,0.0128,0.01584,1.10032,0.013664
+1365,569.443,1.7561,1.00474,0.010112,0.220512,0.004896,0.004096,0.008,0.013504,0.014656,0.718816,0.010144
+1366,364.024,2.74707,1.0711,0.01024,0.239616,0.004096,0.016384,0.007872,0.024928,0.014368,0.726976,0.026624
+1367,858.7,1.16455,1.03872,0.010528,0.232448,0.004864,0.004352,0.008192,0.013696,0.015008,0.739296,0.010336
+1368,704.022,1.42041,1.41926,0.01024,0.241664,0.004096,0.005536,0.008032,0.013056,0.014432,1.10992,0.012288
+1369,542.588,1.84302,1.01718,0.008224,0.22048,0.0048,0.004096,0.008128,0.013408,0.015136,0.732768,0.010144
+1370,649.128,1.54053,1.75466,0.010048,0.222976,0.004544,0.004288,0.02384,0.0144,0.014816,1.44384,0.015904
+1371,474.788,2.1062,1.02016,0.008416,0.230944,0.004576,0.005216,0.007072,0.013696,0.014688,0.72528,0.010272
+1372,712.224,1.40405,1.39878,0.009632,0.221248,0.00464,0.004096,0.007776,0.014016,0.013216,1.11187,0.012288
+1373,555.39,1.80054,1.00762,0.008384,0.220544,0.004544,0.00512,0.007136,0.013952,0.014688,0.723008,0.01024
+1374,607.355,1.64648,1.38003,0.009728,0.239936,0.004288,0.005376,0.006912,0.014112,0.01456,1.0728,0.01232
+1375,331.338,3.01807,1.13027,0.009888,0.30528,0.00432,0.005344,0.006944,0.022528,0.028288,0.73728,0.0104
+1376,1117.9,0.894531,1.40701,0.009888,0.231008,0.004864,0.004096,0.01232,0.022528,0.016224,1.09571,0.010368
+1377,582.314,1.71729,1.0199,0.008416,0.230848,0.004448,0.005216,0.007072,0.014336,0.014368,0.72496,0.01024
+1378,713.589,1.40137,1.33325,0.010016,0.248032,0.005856,0.004384,0.007712,0.012832,0.014368,1.01571,0.014336
+1379,514.056,1.94531,1.01171,0.009696,0.225248,0.004672,0.004096,0.008192,0.013408,0.014656,0.721504,0.01024
+1380,708.038,1.41235,1.40874,0.008512,0.221184,0.005472,0.004768,0.007776,0.012704,0.015488,1.1191,0.013728
+1381,551.427,1.81348,1.00147,0.009472,0.217856,0.0056,0.00464,0.007328,0.013152,0.014336,0.718848,0.01024
+1382,659.369,1.5166,1.36419,0.022848,0.241568,0.004096,0.005664,0.006624,0.014176,0.014496,1.04038,0.014336
+1383,526.749,1.89844,1.04896,0.008448,0.24512,0.004864,0.004096,0.008192,0.014272,0.0144,0.739328,0.01024
+1384,414.701,2.41138,1.28918,0.009152,0.27024,0.004192,0.005344,0.006944,0.013984,0.01472,0.952288,0.01232
+1385,818.382,1.22192,1.09514,0.009632,0.277088,0.005408,0.004832,0.007232,0.019392,0.028672,0.7328,0.01008
+1386,751.008,1.33154,1.04918,0.009088,0.245888,0.005824,0.004416,0.007552,0.012928,0.014336,0.738944,0.010208
+1387,602.353,1.66016,1.22947,0.010624,0.423776,0.004608,0.006144,0.007328,0.014368,0.014528,0.737856,0.01024
+1388,629.379,1.58887,1.02806,0.009728,0.246272,0.005184,0.004768,0.006432,0.014336,0.014336,0.7168,0.010208
+1389,650.985,1.53613,1.04192,0.008192,0.248864,0.004864,0.00432,0.00752,0.01296,0.014336,0.73072,0.010144
+1390,675.35,1.48071,1.0392,0.009088,0.24288,0.004864,0.004128,0.007904,0.01376,0.0144,0.731936,0.01024
+1391,648.614,1.54175,1.6351,0.0088,0.47024,0.006336,0.004736,0.007776,0.014752,0.014336,1.09773,0.0104
+1392,521.783,1.9165,1.02237,0.008608,0.228384,0.004864,0.00432,0.00752,0.01296,0.015392,0.73008,0.01024
+1393,656.305,1.52368,1.19661,0.008768,0.4048,0.0048,0.004096,0.008192,0.013952,0.01472,0.727072,0.010208
+1394,577.471,1.73169,1.07709,0.008704,0.260096,0.005824,0.004416,0.015808,0.029248,0.016384,0.726528,0.01008
+1395,672.688,1.48657,1.34144,0.009376,0.25792,0.004928,0.004256,0.00784,0.01264,0.014336,1.01741,0.012736
+1396,512.833,1.94995,1.05277,0.01024,0.253952,0.005248,0.004992,0.007744,0.012736,0.01536,0.73216,0.010336
+1397,665.259,1.50317,1.37862,0.008512,0.22528,0.004096,0.00576,0.00656,0.01392,0.01472,1.08902,0.010752
+1398,592.507,1.68774,1.01478,0.009376,0.224096,0.005216,0.0048,0.008192,0.013824,0.014656,0.72336,0.011264
+1399,636.42,1.57129,1.74755,0.0088,0.223232,0.005664,0.004576,0.007488,0.013024,0.014304,1.4561,0.014368
+1400,489.542,2.04272,1.01786,0.00976,0.220896,0.004864,0.004096,0.008,0.01264,0.015872,0.731488,0.01024
+1401,717.338,1.39404,1.39878,0.00944,0.219936,0.005792,0.005536,0.007104,0.01376,0.014496,1.11043,0.012288
+1402,543.741,1.83911,1.00186,0.008896,0.219072,0.00416,0.005504,0.006784,0.01392,0.014752,0.718752,0.010016
+1403,363.604,2.75024,1.0656,0.008832,0.247872,0.005824,0.004352,0.007712,0.02432,0.015072,0.739328,0.012288
+1404,1204.71,0.830078,1.0392,0.01232,0.235328,0.004864,0.004224,0.00784,0.012832,0.01536,0.736064,0.010368
+1405,686.557,1.45654,1.38733,0.008832,0.223488,0.004096,0.005792,0.00784,0.012992,0.014336,1.09715,0.0128
+1406,550.76,1.81567,1.03379,0.008352,0.225088,0.004128,0.005536,0.006752,0.014112,0.014528,0.745184,0.010112
+1407,682.439,1.46533,1.01786,0.009792,0.229824,0.004096,0.005664,0.006624,0.013824,0.014752,0.72304,0.01024
+1408,467.74,2.13794,1.06499,0.012288,0.25568,0.004416,0.005248,0.007072,0.01376,0.014336,0.74192,0.010272
+1409,692.36,1.44434,1.39059,0.008192,0.221184,0.004096,0.005696,0.006592,0.014336,0.014336,1.10323,0.012928
+1410,557.81,1.79272,0.999424,0.009952,0.219424,0.005824,0.004416,0.008192,0.013504,0.01504,0.712832,0.01024
+1411,639.101,1.5647,1.03987,0.008256,0.224544,0.004832,0.0176,0.006976,0.014112,0.01456,0.738688,0.010304
+1412,429.71,2.32715,1.24109,0.012096,0.427392,0.004928,0.005472,0.006816,0.014368,0.023872,0.735904,0.01024
+1413,994.416,1.00562,1.24678,0.008512,0.229088,0.004384,0.005248,0.00704,0.014272,0.014432,0.95216,0.011648
+1414,616.775,1.62134,1.02595,0.009216,0.226336,0.005312,0.0048,0.006496,0.014272,0.015328,0.734048,0.010144
+1415,686.442,1.45679,1.00954,0.009472,0.223616,0.00448,0.005184,0.007104,0.013728,0.014944,0.720832,0.010176
+1416,714.211,1.40015,1.65974,0.009056,0.45648,0.026848,0.004096,0.008192,0.014336,0.01568,1.11469,0.010368
+1417,481.826,2.07544,1.04042,0.008224,0.243616,0.004192,0.005408,0.00688,0.014176,0.014464,0.733216,0.01024
+1418,616.125,1.62305,1.01786,0.009952,0.219424,0.005312,0.0048,0.0064,0.014208,0.015424,0.732096,0.01024
+1419,611.891,1.63428,1.00758,0.008352,0.22176,0.00544,0.0048,0.0072,0.01328,0.014336,0.722176,0.01024
+1420,633.859,1.57764,1.83891,0.008384,0.253728,0.004128,0.005312,0.007008,0.014304,0.014368,1.51757,0.014112
+1421,472.652,2.11572,1.0359,0.008576,0.25152,0.00448,0.00576,0.00656,0.014112,0.01456,0.719936,0.0104
+1422,542.301,1.84399,1.04118,0.008672,0.25568,0.004768,0.004128,0.008,0.013504,0.014848,0.721376,0.010208
+1423,740.687,1.3501,1.04195,0.010048,0.22752,0.005152,0.004832,0.007904,0.012832,0.015584,0.747776,0.010304
+1424,677.585,1.47583,1.77734,0.00832,0.243008,0.004768,0.004064,0.008032,0.013792,0.01472,1.46595,0.014688
+1425,463.663,2.15674,1.0281,0.008352,0.227168,0.005568,0.004672,0.007328,0.013152,0.015392,0.736224,0.01024
+1426,694.002,1.44092,1.20422,0.009568,0.404128,0.004096,0.005664,0.006624,0.014336,0.015424,0.734144,0.01024
+1427,588.337,1.69971,1.01584,0.008384,0.22176,0.005792,0.004448,0.008192,0.01392,0.014656,0.728448,0.01024
+1428,709.141,1.41016,1.85402,0.008896,0.229376,0.00576,0.00448,0.007552,0.014048,0.014848,1.55638,0.012672
+1429,452.147,2.21167,1.03149,0.008352,0.230688,0.004832,0.004096,0.008032,0.013696,0.014816,0.7368,0.010176
+1430,656.621,1.52295,1.24826,0.00928,0.445376,0.004096,0.00576,0.006528,0.014336,0.015552,0.737152,0.010176
+1431,453.7,2.2041,1.09658,0.00832,0.283392,0.004096,0.005664,0.018912,0.013952,0.01472,0.738336,0.009184
+1432,1083.88,0.922607,1.83805,0.009184,0.2376,0.005824,0.004384,0.007552,0.012928,0.014336,1.53395,0.012288
+1433,429.62,2.32764,1.04355,0.009536,0.253824,0.004864,0.00416,0.008192,0.013952,0.014752,0.723968,0.010304
+1434,700.53,1.42749,1.39088,0.008608,0.24512,0.004608,0.00512,0.007168,0.014336,0.014336,1.08125,0.010336
+1435,559.945,1.78589,1.04355,0.008192,0.24704,0.004864,0.004096,0.007904,0.012704,0.015936,0.732608,0.010208
+1436,699.095,1.43042,1.86141,0.00992,0.251712,0.004608,0.00512,0.007168,0.014208,0.014464,1.54198,0.012224
+1437,425.337,2.35107,1.0489,0.008544,0.253952,0.005504,0.004704,0.007392,0.013024,0.014432,0.731104,0.01024
+1438,690.027,1.44922,1.1992,0.009504,0.403968,0.00432,0.005504,0.006784,0.022432,0.014432,0.72192,0.010336
+1439,644.836,1.55078,1.05021,0.008288,0.245344,0.004416,0.005216,0.008256,0.013152,0.014336,0.741024,0.010176
+1440,557.886,1.79248,1.41728,0.009504,0.287648,0.005216,0.004864,0.0064,0.014304,0.015744,1.06131,0.012288
+1441,509.199,1.96387,1.0241,0.010016,0.228896,0.0048,0.004096,0.008,0.01248,0.015552,0.72992,0.010336
+1442,673.131,1.4856,1.38166,0.009408,0.23216,0.004384,0.005984,0.007776,0.014048,0.013152,1.08339,0.01136
+1443,566.842,1.76416,1.02275,0.009088,0.228512,0.004864,0.00432,0.00816,0.014016,0.014656,0.728832,0.010304
+1444,705.113,1.41821,1.32874,0.009408,0.229408,0.004896,0.004096,0.007968,0.01456,0.014336,1.02986,0.014208
+1445,502.638,1.9895,1.04403,0.008192,0.251904,0.0056,0.004576,0.007232,0.013088,0.014464,0.728736,0.01024
+1446,689.098,1.45117,1.39469,0.0096,0.22592,0.005664,0.004576,0.00752,0.01424,0.014656,1.10013,0.012384
+1447,551.873,1.81201,1.01379,0.008224,0.223232,0.005856,0.004384,0.007584,0.012896,0.015392,0.725984,0.01024
+1448,725.855,1.37769,1.33933,0.008352,0.2392,0.004512,0.005152,0.008512,0.01296,0.014464,1.00474,0.04144
+1449,481.996,2.07471,1.0281,0.008256,0.23136,0.005792,0.004448,0.007616,0.01424,0.01504,0.731104,0.01024
+1450,734.84,1.36084,1.2391,0.009312,0.224,0.004256,0.005376,0.006912,0.014336,0.014368,0.949888,0.010656
+1451,593.193,1.68579,1.01712,0.010048,0.222656,0.004864,0.004128,0.007872,0.01392,0.014656,0.7288,0.010176
+1452,713.713,1.40112,1.01376,0.008192,0.223232,0.005408,0.0048,0.00752,0.012992,0.015744,0.725632,0.01024
+1453,625.344,1.59912,1.21651,0.011904,0.421344,0.005024,0.005888,0.0064,0.014336,0.015552,0.725824,0.01024
+1454,617.891,1.61841,1.01987,0.00912,0.22528,0.005536,0.004704,0.007168,0.013312,0.015776,0.729024,0.009952
+1455,675.128,1.4812,1.21434,0.00832,0.407136,0.00448,0.005216,0.007072,0.014336,0.014464,0.743104,0.010208
+1456,607.896,1.64502,1.00339,0.009888,0.221376,0.004256,0.005376,0.006912,0.014336,0.014336,0.716768,0.010144
+1457,707.793,1.41284,1.78634,0.008256,0.226144,0.005696,0.004544,0.008192,0.013888,0.01472,1.49091,0.013984
+1458,465.455,2.14844,1.01117,0.009312,0.22384,0.004416,0.005216,0.007072,0.01408,0.01456,0.722656,0.010016
+1459,668.189,1.49658,1.3711,0.008256,0.22624,0.005984,0.004224,0.007872,0.01392,0.014912,1.07946,0.01024
+1460,583.143,1.71484,1.02195,0.009504,0.224,0.0056,0.004608,0.007744,0.013792,0.014848,0.731616,0.01024
+1461,647.999,1.54321,1.35213,0.008544,0.251872,0.005664,0.004576,0.00752,0.01296,0.0144,1.02589,0.020704
+1462,447.895,2.23267,1.06733,0.009216,0.267328,0.004864,0.004288,0.007744,0.012736,0.015552,0.735424,0.010176
+1463,783.623,1.27612,1.39894,0.008384,0.231168,0.004864,0.00416,0.00816,0.01424,0.014464,1.09978,0.013728
+1464,533.681,1.87378,1.01968,0.0088,0.228992,0.00448,0.005184,0.007104,0.014304,0.0144,0.726144,0.010272
+1465,710.248,1.40796,1.78096,0.009312,0.260992,0.004128,0.005504,0.006784,0.013888,0.014816,1.44995,0.015584
+1466,450.803,2.21826,1.0249,0.009088,0.227392,0.004096,0.005728,0.00656,0.014336,0.014368,0.733152,0.010176
+1467,684.149,1.46167,1.38442,0.008384,0.224096,0.004864,0.00432,0.007168,0.013312,0.014336,1.09514,0.0128
+1468,535.635,1.86694,1.00723,0.008384,0.222528,0.004608,0.004096,0.008064,0.01392,0.014688,0.7208,0.010144
+1469,639.6,1.56348,1.3337,0.00864,0.246816,0.004864,0.00432,0.007744,0.012768,0.014304,0.994464,0.039776
+1470,548.988,1.82153,1.00307,0.008192,0.232768,0.0048,0.004096,0.007968,0.012544,0.015424,0.707072,0.010208
+1471,444.252,2.25098,1.45206,0.008224,0.26416,0.005504,0.004736,0.007232,0.022784,0.015072,1.10902,0.015328
+1472,699.095,1.43042,1.0503,0.008384,0.270144,0.005408,0.004832,0.0072,0.01328,0.014336,0.716576,0.010144
+1473,719.354,1.39014,1.83699,0.008288,0.257984,0.005632,0.004576,0.007456,0.013024,0.014336,1.51142,0.014272
+1474,457.347,2.18652,1.02387,0.008512,0.229376,0.005344,0.0048,0.006272,0.014304,0.014336,0.730688,0.01024
+1475,722.399,1.38428,1.36413,0.008352,0.223232,0.005664,0.004576,0.007424,0.013056,0.015392,1.07619,0.01024
+1476,569.601,1.75562,1.02406,0.008704,0.2232,0.00544,0.0048,0.007328,0.013152,0.014336,0.736896,0.010208
+1477,659.794,1.51562,1.34355,0.008256,0.227808,0.005664,0.004576,0.007232,0.01328,0.014304,0.999424,0.063008
+1478,497.933,2.0083,1.0369,0.0088,0.249856,0.004096,0.005696,0.006592,0.014048,0.014624,0.722944,0.01024
+1479,698.38,1.43188,1.24282,0.008192,0.227328,0.005568,0.004672,0.008128,0.013888,0.014752,0.94832,0.011968
+1480,494.865,2.02075,1.04698,0.00864,0.25952,0.004672,0.005184,0.007104,0.01376,0.01696,0.720896,0.01024
+1481,816.913,1.22412,1.03066,0.008416,0.243808,0.004288,0.005376,0.006912,0.014336,0.014368,0.722944,0.010208
+1482,487.561,2.05103,1.03424,0.011584,0.24032,0.005184,0.0048,0.0064,0.014336,0.014336,0.72704,0.01024
+1483,693.532,1.44189,1.24726,0.008256,0.227264,0.004128,0.005536,0.006784,0.013856,0.014432,0.955872,0.011136
+1484,585.31,1.7085,1.00797,0.009184,0.220832,0.004448,0.005568,0.00672,0.013888,0.01472,0.722176,0.010432
+1485,756.557,1.32178,1.00147,0.008192,0.221184,0.004096,0.005664,0.006624,0.014336,0.015456,0.71568,0.01024
+1486,657.569,1.52075,1.64922,0.008768,0.447968,0.032448,0.0048,0.006304,0.015488,0.015072,1.10813,0.01024
+1487,495.824,2.01685,1.01776,0.008256,0.229312,0.005504,0.004736,0.00736,0.01312,0.014336,0.724896,0.01024
+1488,651.089,1.53589,1.00304,0.00928,0.224192,0.004096,0.005664,0.006624,0.014176,0.014496,0.714304,0.010208
+1489,666.775,1.49976,1.01171,0.00992,0.223552,0.005408,0.0048,0.007296,0.013216,0.015776,0.722624,0.00912
+1490,592.593,1.6875,1.87216,0.00848,0.253536,0.004512,0.005152,0.007136,0.013728,0.014944,1.55238,0.012288
+1491,451.599,2.21436,1.05827,0.009504,0.256416,0.004416,0.005216,0.007104,0.013664,0.014752,0.737216,0.009984
+1492,628.51,1.59106,1.02672,0.008864,0.224256,0.004864,0.004352,0.007744,0.01392,0.014752,0.737728,0.01024
+1493,655.36,1.52588,1.01197,0.008192,0.222528,0.0048,0.004096,0.008192,0.013376,0.015104,0.726272,0.009408
+1494,703.297,1.42188,1.82832,0.008352,0.255968,0.005728,0.004512,0.007872,0.013728,0.0144,1.5041,0.013664
+1495,445.944,2.24243,1.00582,0.008768,0.226688,0.004832,0.004352,0.007808,0.012672,0.01552,0.714944,0.01024
+1496,696.243,1.43628,1.20067,0.008736,0.405504,0.005696,0.004544,0.016384,0.014336,0.015936,0.719296,0.01024
+1497,644.735,1.55103,1.00291,0.00864,0.221152,0.004096,0.005728,0.00656,0.01392,0.014688,0.71696,0.011168
+1498,678.146,1.47461,1.75398,0.009088,0.227328,0.00576,0.00448,0.008192,0.01408,0.014464,1.44192,0.028672
+1499,399.142,2.50537,1.0455,0.00912,0.262144,0.005248,0.0048,0.006432,0.014368,0.015424,0.717728,0.01024
+1500,745.676,1.34106,1.18506,0.009536,0.405568,0.004736,0.00416,0.008096,0.013856,0.014816,0.714048,0.01024
+1501,628.028,1.59229,1.01488,0.00928,0.234432,0.005792,0.004448,0.00768,0.0128,0.015392,0.713792,0.011264
+1502,685.179,1.45947,1.75939,0.008352,0.231424,0.004096,0.005664,0.006624,0.014336,0.014336,1.46022,0.014336
+1503,455.972,2.19312,1.01296,0.009504,0.22784,0.00432,0.005344,0.008416,0.012864,0.015552,0.717632,0.011488
+1504,614.001,1.62866,1.35782,0.008384,0.222464,0.004672,0.004096,0.00768,0.0128,0.024576,1.06291,0.01024
+1505,611.617,1.63501,1.00355,0.008352,0.2272,0.005248,0.004992,0.007616,0.012864,0.015392,0.711648,0.01024
+1506,666.125,1.50122,1.32621,0.010016,0.233696,0.004096,0.005632,0.006656,0.014336,0.014336,0.712704,0.324736
+1507,518.547,1.92847,1.01178,0.008608,0.225728,0.005472,0.004768,0.007456,0.013024,0.014368,0.722112,0.01024
+1508,559.563,1.78711,1.39581,0.00944,0.248608,0.004096,0.005568,0.00672,0.013888,0.014784,1.0793,0.013408
+1509,609.342,1.64111,1.0375,0.009216,0.26112,0.005472,0.004768,0.007232,0.013248,0.014336,0.711936,0.010176
+1510,700.291,1.42798,1.05437,0.010048,0.270048,0.004576,0.004096,0.008192,0.013728,0.014944,0.718592,0.010144
+1511,623.44,1.604,1.63798,0.009472,0.4472,0.036896,0.006144,0.007328,0.013152,0.015392,1.09197,0.010432
+1512,511.552,1.95483,1.41107,0.00976,0.252384,0.00544,0.004768,0.006176,0.014336,0.014336,1.09139,0.01248
+1513,558.799,1.78955,1.02406,0.008192,0.241664,0.004128,0.005632,0.006624,0.013824,0.014432,0.719264,0.010304
+1514,696.717,1.4353,1.31891,0.01008,0.229536,0.004128,0.00576,0.006496,0.014336,0.014336,1.01581,0.018432
+1515,503.751,1.98511,1.0281,0.009504,0.254688,0.00512,0.0048,0.008128,0.01408,0.014368,0.707168,0.01024
+1516,696.243,1.43628,1.26976,0.009344,0.254848,0.00592,0.00432,0.007744,0.012736,0.01552,0.94704,0.012288
+1517,444.734,2.24854,1.06938,0.008896,0.287008,0.00528,0.0048,0.0064,0.014016,0.012512,0.720224,0.01024
+1518,1024.77,0.97583,1.01376,0.008384,0.226336,0.004864,0.004128,0.007936,0.013664,0.014752,0.723456,0.01024
+1519,622.871,1.60547,1.20874,0.010656,0.423776,0.005568,0.004832,0.007776,0.014752,0.014336,0.7168,0.01024
+1520,634.35,1.57642,1.00794,0.008512,0.229376,0.005376,0.0048,0.007264,0.01328,0.014336,0.71488,0.010112
+1521,692.945,1.44312,1.2041,0.0088,0.413632,0.004448,0.005696,0.006592,0.014336,0.024576,0.715936,0.01008
+1522,599.971,1.66675,1.01754,0.00864,0.229312,0.005472,0.004768,0.007744,0.012736,0.015488,0.722912,0.010464
+1523,687.364,1.45483,1.81872,0.008352,0.239584,0.005312,0.004832,0.007904,0.01264,0.014336,1.51347,0.012288
+1524,447.944,2.23242,1.01581,0.009664,0.228928,0.004896,0.00432,0.008192,0.013952,0.014688,0.720928,0.01024
+1525,711.605,1.40527,1.18666,0.00832,0.405408,0.004896,0.004128,0.008032,0.014112,0.01472,0.71648,0.01056
+1526,613.174,1.63086,0.995232,0.009376,0.224096,0.004128,0.005536,0.007904,0.013152,0.015616,0.70528,0.010144
+1527,466.621,2.14307,1.02861,0.008672,0.241088,0.004672,0.012288,0.008192,0.024512,0.014432,0.70448,0.010272
+1528,858.34,1.16504,1.66307,0.00832,0.491456,0.006176,0.00512,0.007136,0.014336,0.014336,1.10592,0.010272
+1529,521.916,1.91602,1.41459,0.009536,0.252448,0.00544,0.00496,0.00768,0.012544,0.014048,1.09622,0.011712
+1530,567.47,1.76221,1.01683,0.010144,0.225312,0.00416,0.005504,0.007936,0.013184,0.0144,0.726176,0.010016
+1531,485.653,2.05908,1.64704,0.008832,0.471136,0.006272,0.005344,0.007008,0.014304,0.014336,1.10899,0.010816
+1532,496.004,2.01611,1.0056,0.009504,0.234016,0.004288,0.005376,0.006912,0.013824,0.014848,0.70656,0.010272
+1533,690.376,1.44849,1.19786,0.008352,0.405344,0.00576,0.00448,0.007552,0.014592,0.014336,0.727264,0.010176
+1534,625.726,1.59814,0.997184,0.010144,0.225376,0.005536,0.004704,0.0072,0.01328,0.015584,0.705024,0.010336
+1535,687.941,1.45361,1.77971,0.008192,0.25712,0.004864,0.004256,0.007936,0.012576,0.015584,1.45488,0.014304
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..3f85eeb
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_100000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,624.505,1.68708,1.20134,0.00999206,0.257175,0.00548569,0.00522962,0.00808094,0.0136827,0.0148853,0.876113,0.0106968
+max_1024,1359.89,4.03149,2.55898,0.049472,1.49779,0.046048,0.034816,0.047488,0.071648,0.05392,2.25053,0.286848
+min_1024,248.047,0.735352,0.97136,0.008512,0.219136,0.004096,0.004064,0.006528,0.012256,0.012672,0.681888,0.008448
+512,668.516,1.49585,0.983232,0.008992,0.22736,0.006016,0.005952,0.008384,0.013792,0.014464,0.688544,0.009728
+513,826.556,1.20984,0.97744,0.008736,0.227328,0.006016,0.004224,0.008192,0.014016,0.01456,0.685184,0.009184
+514,729.28,1.37122,0.987136,0.011296,0.221184,0.005056,0.004128,0.008192,0.013824,0.01472,0.699904,0.008832
+515,710.618,1.40723,0.97136,0.009888,0.222144,0.004096,0.005984,0.007872,0.012768,0.015488,0.68288,0.01024
+516,718.66,1.39148,0.987168,0.01024,0.224928,0.004448,0.005632,0.007968,0.013024,0.014336,0.69632,0.010272
+517,705.295,1.41785,0.9856,0.00896,0.224992,0.004384,0.005824,0.00784,0.012864,0.014432,0.69632,0.009984
+518,719.859,1.38916,0.997376,0.01024,0.225248,0.004128,0.00592,0.007808,0.012896,0.014464,0.706464,0.010208
+519,713.9,1.40076,0.977696,0.00896,0.22528,0.005248,0.00496,0.007424,0.013088,0.014304,0.689472,0.00896
+520,728.502,1.37268,0.978336,0.010176,0.22336,0.0056,0.00464,0.008032,0.013504,0.01328,0.6896,0.010144
+521,715.084,1.39844,0.978272,0.009504,0.224032,0.004224,0.005824,0.008128,0.012672,0.014336,0.68992,0.009632
+522,624.628,1.60095,0.985088,0.00992,0.23344,0.004896,0.004288,0.008,0.014336,0.015808,0.684608,0.009792
+523,679.327,1.47205,0.995648,0.00912,0.23552,0.005856,0.004384,0.008192,0.013472,0.014368,0.69504,0.009696
+524,737.487,1.35596,0.986624,0.009952,0.227616,0.005632,0.004608,0.0096,0.012928,0.014336,0.692224,0.009728
+525,718.03,1.3927,0.97744,0.008704,0.228928,0.004544,0.005504,0.007872,0.01312,0.014272,0.684224,0.010272
+526,727.337,1.37488,0.978944,0.010272,0.2232,0.005536,0.004736,0.007776,0.012768,0.015296,0.690656,0.008704
+527,713.278,1.40198,0.978688,0.00992,0.225472,0.004224,0.005824,0.00848,0.012416,0.015328,0.68704,0.009984
+528,723.931,1.38135,0.9728,0.00992,0.225632,0.00528,0.00496,0.008096,0.01376,0.014496,0.681888,0.008768
+529,732.017,1.36609,0.978944,0.009568,0.223904,0.005696,0.004576,0.008096,0.012352,0.015424,0.690464,0.008864
+530,716.147,1.39636,0.98336,0.010112,0.223648,0.004448,0.0056,0.007872,0.013184,0.014304,0.694272,0.00992
+531,710.31,1.40784,0.97856,0.01024,0.228896,0.004576,0.005504,0.008096,0.013024,0.014336,0.684032,0.009856
+532,718.281,1.39221,0.978944,0.010048,0.22448,0.005024,0.00416,0.008192,0.013792,0.014432,0.690112,0.008704
+533,573.228,1.74451,1.01046,0.009056,0.251808,0.004096,0.005984,0.007904,0.012736,0.015712,0.694112,0.009056
+534,802.429,1.24622,0.976832,0.008608,0.224832,0.004544,0.005536,0.006752,0.014336,0.014368,0.688096,0.00976
+535,728.437,1.3728,0.977408,0.009824,0.223872,0.004352,0.005728,0.00784,0.013056,0.014336,0.6896,0.0088
+536,727.919,1.37378,0.982944,0.01024,0.22432,0.005056,0.00416,0.008128,0.014176,0.014336,0.692384,0.010144
+537,710.988,1.40649,0.978944,0.009728,0.225728,0.00416,0.00592,0.008416,0.013376,0.0144,0.688,0.009216
+538,719.227,1.39038,0.973536,0.008928,0.225312,0.005696,0.004512,0.00816,0.013472,0.0144,0.682816,0.01024
+539,727.208,1.37512,0.987264,0.01024,0.22528,0.005312,0.004928,0.008128,0.013536,0.014688,0.696288,0.008864
+540,710.679,1.4071,0.984064,0.009216,0.223168,0.00416,0.005888,0.007616,0.01312,0.014336,0.697568,0.008992
+541,722.335,1.3844,0.980768,0.009824,0.2232,0.004544,0.005536,0.008256,0.012832,0.014336,0.692224,0.010016
+542,718.47,1.39185,0.997472,0.008864,0.227328,0.0056,0.00464,0.008192,0.014368,0.014304,0.704448,0.009728
+543,706.755,1.41492,0.990784,0.010112,0.223392,0.005536,0.004672,0.014368,0.01376,0.014144,0.695008,0.009792
+544,581.984,1.71826,0.999648,0.00976,0.2416,0.004832,0.005216,0.007072,0.013856,0.014304,0.69376,0.009248
+545,894.812,1.11755,0.982304,0.01024,0.228768,0.004704,0.005408,0.008288,0.012928,0.014336,0.688064,0.009568
+546,732.213,1.36572,0.985568,0.010176,0.227744,0.004512,0.006144,0.00784,0.01264,0.014336,0.692224,0.009952
+547,717.338,1.39404,0.98288,0.010112,0.228544,0.005056,0.00416,0.008128,0.01408,0.014624,0.688096,0.01008
+548,714.834,1.39893,0.986016,0.00912,0.228896,0.004576,0.005504,0.008288,0.012832,0.014368,0.692192,0.01024
+549,728.372,1.37292,0.982816,0.010176,0.225024,0.004416,0.005664,0.007808,0.013152,0.014368,0.692192,0.010016
+550,721.953,1.38513,0.976576,0.0096,0.224256,0.005344,0.004896,0.007872,0.014112,0.01408,0.68672,0.009696
+551,716.397,1.39587,0.98784,0.008896,0.227328,0.005184,0.004992,0.008256,0.012416,0.014272,0.696256,0.01024
+552,702.212,1.42407,0.97904,0.009888,0.227776,0.004096,0.005952,0.007872,0.0128,0.014336,0.68608,0.01024
+553,736.757,1.3573,0.971936,0.009664,0.225088,0.004864,0.005216,0.007072,0.013568,0.014176,0.682624,0.009664
+554,717.715,1.39331,0.979392,0.010496,0.222752,0.004736,0.005344,0.007072,0.014208,0.014336,0.69152,0.008928
+555,556.786,1.79602,1.00966,0.01024,0.243712,0.005344,0.004896,0.007744,0.012736,0.015872,0.700064,0.009056
+556,842.452,1.18701,1.02605,0.01024,0.260128,0.005248,0.00496,0.007904,0.012608,0.016288,0.698432,0.01024
+557,706.451,1.41553,1.00038,0.009152,0.23552,0.005824,0.004416,0.008192,0.013376,0.014432,0.700576,0.008896
+558,724.507,1.38025,0.99104,0.009792,0.224864,0.00496,0.00528,0.007008,0.014272,0.014336,0.70048,0.010048
+559,699.513,1.42957,0.979776,0.00912,0.224896,0.004384,0.005632,0.007904,0.013088,0.014336,0.690176,0.01024
+560,717.212,1.39429,0.98304,0.01024,0.224416,0.00496,0.00512,0.007168,0.014336,0.014336,0.693344,0.00912
+561,713.962,1.40063,0.991904,0.0088,0.22528,0.00608,0.00416,0.008192,0.013792,0.01456,0.7024,0.00864
+562,707.182,1.41406,0.995936,0.00912,0.23536,0.004224,0.005824,0.00784,0.01296,0.014336,0.69632,0.009952
+563,711.729,1.40503,0.980992,0.0096,0.22512,0.004896,0.005184,0.007104,0.014016,0.0144,0.691712,0.00896
+564,717.715,1.39331,1.01254,0.00912,0.225152,0.005376,0.004896,0.007936,0.01376,0.014432,0.722912,0.00896
+565,699.394,1.42981,0.987168,0.010144,0.225376,0.004096,0.005984,0.007648,0.012992,0.014336,0.69744,0.009152
+566,469.24,2.1311,1.02064,0.010144,0.245696,0.005088,0.00416,0.00816,0.01408,0.014272,0.708928,0.010112
+567,1261.86,0.79248,1.01907,0.0096,0.260736,0.0056,0.00464,0.008128,0.012352,0.014336,0.694176,0.009504
+568,624.724,1.60071,0.98512,0.010016,0.225536,0.005568,0.00464,0.008192,0.013504,0.014464,0.694272,0.008928
+569,720.936,1.38708,0.981984,0.009184,0.226656,0.004768,0.005312,0.008416,0.012928,0.014304,0.691424,0.008992
+570,695.593,1.43762,0.98896,0.009888,0.226912,0.004864,0.005216,0.007072,0.01408,0.01456,0.696352,0.010016
+571,718.407,1.39197,0.991232,0.009792,0.227168,0.004704,0.005376,0.007072,0.013888,0.014656,0.69968,0.008896
+572,718.344,1.39209,1.692,0.009888,0.225952,0.005696,0.004544,0.007808,0.012672,0.014336,1.39674,0.014368
+573,381.52,2.62109,1.00099,0.010176,0.235584,0.005856,0.004384,0.008224,0.014304,0.014336,0.698368,0.00976
+574,707.549,1.41333,0.981664,0.009088,0.226112,0.005088,0.004128,0.00816,0.014272,0.014432,0.691648,0.008736
+575,718.281,1.39221,0.987456,0.008928,0.225216,0.00416,0.005888,0.007936,0.0128,0.014336,0.698368,0.009824
+576,637.46,1.56873,2.03162,0.010272,0.442336,0.007616,0.004704,0.008096,0.013824,0.014816,1.51766,0.012288
+577,414.533,2.41235,1.00541,0.009344,0.248832,0.005312,0.004928,0.007808,0.012672,0.014368,0.692192,0.009952
+578,713.216,1.4021,0.99952,0.009888,0.24224,0.005664,0.004576,0.008128,0.013664,0.014144,0.691104,0.010112
+579,718.344,1.39209,0.997344,0.009088,0.227328,0.005664,0.005664,0.007104,0.01392,0.014624,0.704288,0.009664
+580,645.192,1.54993,2.0009,0.009696,0.440864,0.008,0.004288,0.008192,0.014304,0.014368,1.4889,0.012288
+581,434.197,2.3031,0.975488,0.008832,0.226336,0.005056,0.00416,0.00816,0.013408,0.014816,0.686112,0.008608
+582,731.69,1.3667,0.98352,0.00976,0.22416,0.005664,0.004576,0.007968,0.012512,0.014336,0.695616,0.008928
+583,702.031,1.42444,0.987168,0.008608,0.223136,0.005792,0.004448,0.009664,0.012864,0.014336,0.698368,0.009952
+584,716.334,1.396,2.16822,0.01024,0.223232,0.005504,0.004736,0.008224,0.014304,0.014336,1.87392,0.013728
+585,382.983,2.61108,0.995552,0.009728,0.225408,0.004704,0.005344,0.006944,0.014176,0.014528,0.70592,0.0088
+586,689.214,1.45093,0.99328,0.01024,0.227328,0.005824,0.004416,0.008224,0.014304,0.014336,0.698368,0.01024
+587,749.086,1.33496,0.978976,0.00992,0.222656,0.004992,0.005632,0.007968,0.013056,0.014304,0.691296,0.009152
+588,714.709,1.39917,0.987104,0.009984,0.226304,0.0056,0.00464,0.008128,0.013472,0.014464,0.694272,0.01024
+589,507.15,1.9718,0.99344,0.012256,0.2232,0.00432,0.005728,0.00656,0.014016,0.014656,0.702656,0.010048
+590,727.337,1.37488,0.993248,0.009792,0.221472,0.00432,0.006112,0.007872,0.01376,0.027552,0.692224,0.010144
+591,730.32,1.36926,0.991488,0.009536,0.221344,0.00496,0.004096,0.008192,0.01392,0.014688,0.704576,0.010176
+592,696.362,1.43604,1.0017,0.0096,0.221184,0.004928,0.00512,0.007168,0.014144,0.028032,0.702816,0.008704
+593,636.272,1.57166,1.62243,0.012256,0.422016,0.004736,0.005952,0.007584,0.014464,0.05392,1.09158,0.00992
+594,488.055,2.04895,1.00352,0.010048,0.220832,0.00464,0.005408,0.008128,0.013088,0.028,0.703136,0.01024
+595,704.628,1.41919,1.00659,0.01024,0.221184,0.005504,0.004736,0.008128,0.01344,0.027328,0.706464,0.009568
+596,708.957,1.41052,1.00298,0.00976,0.21936,0.004768,0.005216,0.007072,0.014144,0.0248,0.708352,0.009504
+597,711.296,1.40588,2.18931,0.010112,0.225408,0.00592,0.00432,0.008192,0.013344,0.014656,1.89507,0.012288
+598,376.557,2.65564,1.00147,0.01024,0.228608,0.004864,0.005184,0.008544,0.012896,0.014336,0.706592,0.010208
+599,729.085,1.37158,0.99328,0.010176,0.220608,0.004736,0.005984,0.007808,0.012928,0.022432,0.699712,0.008896
+600,728.826,1.37207,0.990624,0.009728,0.219552,0.004224,0.006144,0.007968,0.012576,0.024416,0.696256,0.00976
+601,681.758,1.4668,1.76429,0.009152,0.233472,0.005312,0.004928,0.008096,0.012448,0.015296,1.4625,0.013088
+602,420.577,2.37769,0.995424,0.00896,0.2232,0.004096,0.006016,0.00768,0.012928,0.014336,0.708608,0.0096
+603,720.429,1.38806,0.976896,0.009824,0.2216,0.005824,0.004416,0.008192,0.013664,0.0144,0.688736,0.01024
+604,692.535,1.44397,0.983424,0.009088,0.22528,0.00544,0.0048,0.007776,0.012704,0.014336,0.694208,0.009792
+605,728.437,1.3728,0.988256,0.009376,0.223328,0.004864,0.005216,0.007104,0.013504,0.014656,0.70064,0.009568
+606,474.239,2.10864,1.02416,0.011968,0.244192,0.005152,0.004992,0.007808,0.013824,0.014336,0.711648,0.01024
+607,660.698,1.51355,1.01046,0.008992,0.23552,0.005728,0.004512,0.008192,0.013376,0.014464,0.710848,0.008832
+608,714.024,1.40051,0.99776,0.00992,0.225984,0.005344,0.004928,0.007872,0.0144,0.0144,0.704672,0.01024
+609,726.241,1.37695,1.00163,0.009408,0.224224,0.006048,0.005824,0.007648,0.013216,0.014368,0.71184,0.009056
+610,703.297,1.42188,2.02752,0.009984,0.444672,0.007392,0.004896,0.007744,0.013856,0.014528,1.5135,0.010944
+611,401.825,2.48865,0.997312,0.009856,0.22368,0.00512,0.005024,0.007776,0.0128,0.014464,0.70848,0.010112
+612,722.399,1.38428,0.997376,0.01024,0.223232,0.004192,0.005664,0.007776,0.013088,0.014336,0.708608,0.01024
+613,683.065,1.46399,0.98304,0.01024,0.22528,0.005856,0.004384,0.008192,0.013312,0.0144,0.691136,0.01024
+614,690.842,1.44751,1.99274,0.009984,0.442368,0.006464,0.00608,0.008096,0.013984,0.014272,1.48077,0.01072
+615,430.659,2.32202,0.995328,0.009536,0.227744,0.004384,0.005696,0.007872,0.013056,0.014336,0.702464,0.01024
+616,689.795,1.44971,0.99648,0.010112,0.22288,0.004704,0.005376,0.006912,0.014336,0.014336,0.708096,0.009728
+617,687.825,1.45386,1.00515,0.009664,0.225952,0.004096,0.005984,0.007648,0.012992,0.014336,0.714752,0.009728
+618,681.247,1.4679,1.73373,0.010144,0.227424,0.005472,0.004768,0.008192,0.013984,0.014016,1.4353,0.014432
+619,429.26,2.32959,0.99328,0.00992,0.2256,0.005728,0.004544,0.008128,0.012352,0.014304,0.702464,0.01024
+620,707.671,1.41309,0.995328,0.010144,0.223328,0.004096,0.005984,0.007648,0.012992,0.015424,0.705472,0.01024
+621,732.999,1.36426,1.00406,0.008704,0.224736,0.00464,0.006144,0.007968,0.012512,0.014336,0.714752,0.010272
+622,680.455,1.4696,0.997376,0.009888,0.22688,0.004896,0.005184,0.007104,0.014048,0.01408,0.705056,0.01024
+623,470.156,2.12695,1.00224,0.01232,0.228032,0.004096,0.006016,0.00832,0.013632,0.014304,0.705248,0.010272
+624,663.696,1.50671,0.988864,0.010016,0.22144,0.00592,0.004288,0.009312,0.013216,0.014368,0.700384,0.00992
+625,756.417,1.32202,1.01005,0.00912,0.223072,0.005152,0.004992,0.007808,0.012768,0.03072,0.70656,0.009856
+626,467.1,2.14087,1.07251,0.01024,0.259872,0.00432,0.005728,0.007744,0.013152,0.014336,0.747392,0.009728
+627,1143.5,0.874512,2.04608,0.009856,0.44288,0.007296,0.004992,0.008032,0.014528,0.014304,1.5319,0.012288
+628,410.874,2.43384,1.01088,0.009824,0.235936,0.005856,0.004384,0.008192,0.013728,0.01424,0.708832,0.009888
+629,689.504,1.45032,1.00762,0.010048,0.222752,0.004768,0.005312,0.006976,0.014048,0.026912,0.70656,0.01024
+630,717.275,1.39417,1.0097,0.01024,0.222368,0.00496,0.004192,0.008096,0.014144,0.03024,0.705184,0.010272
+631,590.244,1.69421,2.08256,0.01024,0.458752,0.007552,0.004736,0.008192,0.014336,0.014336,1.55238,0.012032
+632,439.273,2.27649,0.993408,0.009184,0.225248,0.004128,0.006144,0.008224,0.013856,0.01424,0.70256,0.009824
+633,724.315,1.38062,1.00352,0.01024,0.221184,0.005792,0.004448,0.008192,0.013344,0.025088,0.704992,0.01024
+634,701.43,1.42566,0.985088,0.010144,0.219232,0.005312,0.004736,0.00752,0.013184,0.014304,0.701792,0.008864
+635,669.226,1.49426,2.07062,0.010208,0.443008,0.008,0.005536,0.007136,0.014336,0.015392,1.55514,0.011872
+636,404.124,2.47449,1.01453,0.008928,0.23552,0.006048,0.004192,0.008192,0.013696,0.014464,0.71456,0.008928
+637,719.354,1.39014,1.02986,0.009728,0.256544,0.00528,0.00496,0.007872,0.012576,0.014336,0.708608,0.009952
+638,702.693,1.4231,1,0.008864,0.229376,0.005344,0.004896,0.00784,0.01264,0.0144,0.706496,0.010144
+639,694.414,1.44006,1.78624,0.008608,0.253024,0.004992,0.004224,0.008064,0.013824,0.014304,1.46486,0.014336
+640,420.901,2.37585,0.989824,0.010176,0.225248,0.004832,0.005248,0.00704,0.014208,0.014496,0.698336,0.01024
+641,714.336,1.3999,0.994528,0.009536,0.223936,0.005376,0.004864,0.008096,0.012416,0.014304,0.704512,0.011488
+642,703.297,1.42188,0.993696,0.00976,0.221536,0.004608,0.005472,0.006816,0.014336,0.014368,0.707648,0.009152
+643,698.618,1.4314,1.7527,0.0096,0.22512,0.004896,0.005152,0.007136,0.013984,0.0144,1.45763,0.014784
+644,423.929,2.35889,1.00512,0.01024,0.22704,0.004384,0.005728,0.007776,0.01312,0.014368,0.712672,0.009792
+645,684.492,1.46094,1.00371,0.009504,0.22432,0.005984,0.00416,0.008192,0.013952,0.014496,0.712928,0.010176
+646,711.482,1.40552,0.995136,0.009696,0.22352,0.004608,0.005472,0.006816,0.014144,0.01408,0.707008,0.009792
+647,703.055,1.42236,1.27229,0.009856,0.223936,0.004256,0.005792,0.007552,0.01328,0.014368,0.7064,0.286848
+648,487.126,2.05286,1.00355,0.011904,0.229152,0.004704,0.005376,0.006912,0.014336,0.014336,0.708096,0.008736
+649,712.41,1.40369,0.997664,0.0096,0.223456,0.0048,0.005696,0.007808,0.01312,0.014336,0.708608,0.01024
+650,714.897,1.3988,1.00877,0.00992,0.2256,0.00512,0.004992,0.00768,0.012928,0.014336,0.718624,0.009568
+651,686.04,1.45764,1.00592,0.008864,0.22272,0.004608,0.005504,0.007008,0.014112,0.014336,0.718848,0.00992
+652,713.34,1.40186,2.03581,0.010176,0.445024,0.00816,0.004128,0.008192,0.014304,0.030752,1.50307,0.012
+653,388.246,2.57568,1.00336,0.010272,0.227296,0.005152,0.005024,0.007744,0.0128,0.014336,0.710656,0.01008
+654,415.184,2.40857,1.08685,0.010144,0.257696,0.004544,0.005536,0.016992,0.03072,0.014336,0.737152,0.009728
+655,1084.46,0.922119,0.999904,0.008672,0.227328,0.005312,0.004928,0.007968,0.012512,0.014336,0.708608,0.01024
+656,549.246,1.82068,2.08896,0.01024,0.44144,0.0064,0.004448,0.008064,0.018176,0.014592,1.57459,0.011008
+657,481.033,2.07886,1.00074,0.009536,0.225824,0.004256,0.005856,0.00784,0.01296,0.014336,0.710528,0.0096
+658,713.154,1.40222,1.04038,0.01024,0.22528,0.005152,0.019264,0.008192,0.012448,0.026176,0.723392,0.01024
+659,707.549,1.41333,1.00618,0.008896,0.225184,0.005344,0.004896,0.008224,0.013664,0.014368,0.71648,0.00912
+660,631.028,1.58472,2.09386,0.010464,0.465632,0.008064,0.019776,0.00832,0.012992,0.015904,1.54058,0.012128
+661,414.177,2.41443,1.01056,0.00912,0.223264,0.005728,0.005728,0.008096,0.013184,0.026272,0.70896,0.010208
+662,666.45,1.50049,1.01603,0.009888,0.245504,0.004896,0.005152,0.007136,0.014176,0.014336,0.704672,0.010272
+663,425.293,2.35132,1.03821,0.008832,0.222496,0.0048,0.018432,0.008192,0.028352,0.014496,0.722976,0.009632
+664,1022.72,0.977783,2.07888,0.009984,0.458176,0.046048,0.027968,0.007904,0.01328,0.014336,1.4889,0.012288
+665,442.357,2.26062,1.01766,0.008864,0.227328,0.005472,0.004768,0.007808,0.012672,0.014336,0.726656,0.00976
+666,683.407,1.46326,1.01376,0.00976,0.223136,0.004672,0.005376,0.006912,0.014336,0.03072,0.708608,0.01024
+667,715.146,1.39832,0.99664,0.01024,0.221184,0.005184,0.004992,0.007552,0.012992,0.014336,0.710624,0.009536
+668,696.066,1.43665,2.06051,0.008704,0.44352,0.007072,0.005184,0.007072,0.023904,0.014912,1.53814,0.012
+669,404.064,2.47485,1.00202,0.008736,0.224832,0.004544,0.005568,0.007904,0.013152,0.014368,0.712704,0.010208
+670,719.796,1.38928,1.00765,0.00992,0.22144,0.00416,0.006144,0.007904,0.012576,0.015488,0.719744,0.010272
+671,693.473,1.44202,1.00762,0.01008,0.222656,0.004832,0.005216,0.007072,0.01408,0.014432,0.720608,0.00864
+672,661.819,1.51099,2.18989,0.010432,0.22384,0.005216,0.004992,0.007936,0.012576,0.015744,1.89632,0.012832
+673,389.724,2.56592,1.01718,0.009824,0.22592,0.00608,0.00416,0.008192,0.01248,0.015264,0.725568,0.009696
+674,684.32,1.4613,1.00854,0.010368,0.22608,0.005376,0.004864,0.007744,0.012736,0.014336,0.7168,0.01024
+675,711.111,1.40625,1.00966,0.009568,0.227392,0.004704,0.005376,0.006912,0.01424,0.0144,0.718144,0.008928
+676,693.826,1.44128,2.05414,0.009984,0.491584,0.006464,0.006016,0.008192,0.013824,0.014176,1.49162,0.012288
+677,403.368,2.47913,1.01376,0.009856,0.231808,0.005856,0.004384,0.008192,0.013568,0.014944,0.716,0.009152
+678,702.031,1.42444,1.00867,0.01024,0.22272,0.005632,0.004992,0.007776,0.012832,0.014368,0.720672,0.00944
+679,486.576,2.05518,0.995456,0.009536,0.221472,0.00464,0.00544,0.007008,0.013984,0.01456,0.709984,0.008832
+680,1050.93,0.951538,1.74109,0.008896,0.2368,0.004864,0.005216,0.007072,0.01408,0.014496,1.4352,0.014464
+681,348.893,2.86621,1.10656,0.010176,0.291552,0.005472,0.019072,0.008192,0.013856,0.02416,0.725056,0.009024
+682,954.445,1.04773,1.00557,0.01024,0.229152,0.00432,0.00576,0.007584,0.01328,0.014368,0.710624,0.01024
+683,713.962,1.40063,1.0265,0.00864,0.224832,0.004544,0.005536,0.008,0.013088,0.026656,0.72608,0.00912
+684,670.376,1.4917,2.19997,0.010432,0.229088,0.004608,0.005344,0.006976,0.013952,0.014304,1.90278,0.01248
+685,387.146,2.58301,1.00438,0.009056,0.227168,0.004256,0.005696,0.007744,0.012992,0.014432,0.7128,0.01024
+686,703.055,1.42236,1.01712,0.01024,0.22224,0.005056,0.004128,0.008224,0.013952,0.029024,0.714304,0.009952
+687,704.264,1.41992,1.01213,0.008608,0.225248,0.004128,0.00592,0.00784,0.012864,0.014336,0.724,0.009184
+688,691.25,1.44666,1.7345,0.01024,0.229376,0.005504,0.004736,0.007968,0.013664,0.014784,1.43363,0.014592
+689,423.731,2.35999,1.01997,0.009088,0.223232,0.006016,0.004224,0.008192,0.013536,0.014336,0.731776,0.009568
+690,710.248,1.40796,1.02054,0.010144,0.2216,0.004416,0.006144,0.007968,0.013568,0.027616,0.720544,0.008544
+691,623.203,1.60461,1.01171,0.01024,0.233472,0.00512,0.005024,0.007616,0.012992,0.014304,0.714016,0.008928
+692,702.151,1.42419,1.7607,0.010176,0.227392,0.005504,0.004736,0.00784,0.01264,0.014336,1.46429,0.013792
+693,416.896,2.39868,1.00922,0.008576,0.230816,0.004672,0.005408,0.00688,0.013952,0.014432,0.71504,0.00944
+694,701.67,1.42517,1.00787,0.008736,0.22512,0.004256,0.005792,0.007808,0.013024,0.014336,0.718848,0.009952
+695,717.024,1.39465,1.00922,0.009824,0.222656,0.005088,0.005408,0.007104,0.013856,0.014496,0.720992,0.009792
+696,671.42,1.48938,1.31229,0.00992,0.237952,0.00592,0.00432,0.008192,0.0136,0.014656,1.00538,0.012352
+697,432.113,2.31421,1.02358,0.01008,0.22544,0.005984,0.004256,0.008192,0.014304,0.0144,0.731104,0.009824
+698,702.452,1.42358,1.01363,0.01024,0.223264,0.005696,0.0056,0.007104,0.013952,0.022912,0.714752,0.010112
+699,711.667,1.40515,1.00614,0.008768,0.222304,0.005024,0.004288,0.008,0.013984,0.01472,0.720032,0.009024
+700,532.605,1.87756,1.06906,0.024576,0.26368,0.004608,0.005472,0.007008,0.014144,0.014336,0.724992,0.01024
+701,437.7,2.28467,1.04352,0.012032,0.24192,0.00576,0.00448,0.008192,0.014208,0.014496,0.732704,0.009728
+702,712.906,1.40271,1.02646,0.01024,0.227392,0.0048,0.00528,0.007008,0.01424,0.014464,0.733152,0.009888
+703,686.097,1.45752,1.00915,0.01024,0.223232,0.005344,0.004896,0.008192,0.013888,0.014272,0.71936,0.009728
+704,709.141,1.41016,1.02269,0.008928,0.22528,0.005248,0.004992,0.008192,0.013888,0.014784,0.732736,0.00864
+705,502.731,1.98914,1.60918,0.024576,0.423936,0.005632,0.004608,0.008192,0.014432,0.01536,1.10218,0.010272
+706,513.38,1.94788,1.02886,0.008928,0.223232,0.00576,0.00448,0.008192,0.0136,0.030656,0.725024,0.008992
+707,711.42,1.40564,1.0359,0.009536,0.221216,0.004768,0.00528,0.008064,0.01328,0.014336,0.749408,0.010016
+708,695.357,1.43811,1.01533,0.01024,0.222304,0.005024,0.00416,0.008224,0.01424,0.014336,0.72704,0.00976
+709,464.557,2.15259,2.09552,0.008608,0.444416,0.007936,0.012544,0.043008,0.018432,0.03072,1.51875,0.011104
+710,547.191,1.82751,1.02061,0.010144,0.22608,0.005984,0.004224,0.009248,0.01328,0.014336,0.72704,0.010272
+711,696.243,1.43628,1.03459,0.009856,0.22416,0.005312,0.004928,0.008192,0.01344,0.01328,0.745376,0.010048
+712,677.865,1.47522,1.02195,0.010112,0.223392,0.005344,0.004896,0.007936,0.012512,0.014336,0.733216,0.010208
+713,635.729,1.573,1.62672,0.010848,0.435264,0.005056,0.0056,0.006784,0.014272,0.014464,1.12419,0.01024
+714,490.598,2.03833,1.01744,0.010176,0.231136,0.005664,0.004928,0.008192,0.014016,0.014048,0.719456,0.009824
+715,688.346,1.45276,1.01078,0.009984,0.222848,0.004736,0.005344,0.006944,0.013792,0.014432,0.722816,0.009888
+716,700.47,1.42761,1.01683,0.010272,0.225248,0.005344,0.004896,0.008192,0.01392,0.0144,0.725024,0.009536
+717,596.389,1.67676,1.86573,0.0096,0.244352,0.005216,0.004992,0.007616,0.014944,0.014336,1.55197,0.012704
+718,342.919,2.91614,1.05482,0.009824,0.246272,0.005504,0.004736,0.014336,0.014336,0.01424,0.736544,0.009024
+719,1185.19,0.84375,1.01715,0.009984,0.225536,0.005952,0.004288,0.008192,0.01344,0.014624,0.72544,0.009696
+720,691.541,1.44604,1.02566,0.01024,0.230816,0.004704,0.004096,0.008192,0.013856,0.014432,0.729472,0.009856
+721,692.77,1.44348,1.76624,0.008928,0.229376,0.005984,0.004256,0.008192,0.013472,0.014752,1.46685,0.014432
+722,416.007,2.40381,1.03222,0.009856,0.227136,0.004992,0.004224,0.008064,0.013984,0.014656,0.73936,0.009952
+723,638.603,1.56592,1.02678,0.008928,0.231424,0.005344,0.004896,0.008192,0.013984,0.014112,0.730688,0.009216
+724,673.352,1.48511,1.024,0.009952,0.227648,0.005856,0.004384,0.00816,0.013408,0.014656,0.729696,0.01024
+725,639.451,1.56384,1.79382,0.008864,0.264224,0.005728,0.00448,0.008192,0.012352,0.015392,1.4591,0.015488
+726,415.69,2.40564,1.024,0.01024,0.23552,0.005824,0.004416,0.008192,0.01408,0.0144,0.721088,0.01024
+727,732.213,1.36572,1.01974,0.01008,0.22544,0.005472,0.004768,0.008064,0.013952,0.014848,0.72704,0.01008
+728,405.123,2.46838,1.03616,0.01024,0.249632,0.00432,0.005664,0.007872,0.01312,0.014304,0.720896,0.010112
+729,413.216,2.42004,1.10304,0.028,0.293568,0.005536,0.004672,0.007968,0.012512,0.014336,0.726592,0.009856
+730,718.975,1.39087,1.05123,0.0088,0.249856,0.005952,0.004288,0.008192,0.014336,0.014336,0.736448,0.009024
+731,697.488,1.43372,1.03155,0.009792,0.235968,0.005408,0.004832,0.008032,0.01264,0.01552,0.72976,0.0096
+732,653.165,1.53101,1.03178,0.00992,0.234048,0.005824,0.004416,0.008192,0.01376,0.01456,0.731136,0.00992
+733,714.772,1.39905,2.05357,0.01024,0.442368,0.008064,0.005536,0.00688,0.015584,0.014752,1.53837,0.011776
+734,428.923,2.33142,1.0215,0.009952,0.230016,0.005856,0.004384,0.008224,0.013856,0.014784,0.7248,0.009632
+735,701.61,1.42529,1.03248,0.009792,0.227776,0.005952,0.004288,0.008192,0.013984,0.014688,0.73888,0.008928
+736,525.128,1.9043,1.02838,0.009888,0.233376,0.004832,0.005248,0.00704,0.014048,0.0144,0.729312,0.01024
+737,802.115,1.2467,1.77011,0.008832,0.2576,0.004544,0.005536,0.006752,0.014112,0.014336,1.4439,0.014496
+738,406.975,2.45715,1.03923,0.009088,0.25168,0.005664,0.0048,0.007744,0.012736,0.014336,0.724128,0.009056
+739,680.851,1.46875,1.02563,0.008736,0.232608,0.00496,0.00576,0.007552,0.013312,0.014336,0.728704,0.009664
+740,844.884,1.18359,1.0377,0.009728,0.237632,0.004544,0.005504,0.007872,0.013248,0.014336,0.735232,0.0096
+741,641.102,1.55981,2.26346,0.008704,0.268192,0.004192,0.005888,0.00784,0.012896,0.014016,1.92906,0.012672
+742,378.331,2.64319,1.03424,0.01024,0.236704,0.00496,0.004352,0.009696,0.013824,0.0144,0.729824,0.01024
+743,697.31,1.43408,1.02211,0.009472,0.228096,0.004192,0.005888,0.007776,0.01296,0.014336,0.730528,0.008864
+744,691.541,1.44604,1.0287,0.0088,0.231424,0.005536,0.004704,0.008192,0.013408,0.014528,0.731872,0.01024
+745,655.622,1.52527,2.05498,0.010176,0.443264,0.008032,0.005536,0.008128,0.014336,0.014464,1.54032,0.01072
+746,403.249,2.47986,1.03427,0.009152,0.251872,0.004096,0.005952,0.00768,0.012992,0.014336,0.718656,0.009536
+747,674.794,1.48193,1.05376,0.01024,0.262144,0.005888,0.004352,0.008192,0.01344,0.014528,0.72528,0.009696
+748,706.755,1.41492,1.02477,0.00896,0.233184,0.004384,0.005664,0.007808,0.013152,0.014368,0.727008,0.01024
+749,645.243,1.5498,2.08656,0.00944,0.496,0.006592,0.006112,0.00784,0.0144,0.014624,1.51955,0.012
+750,401.372,2.49146,1.04403,0.00976,0.258176,0.004672,0.005408,0.00688,0.014048,0.014272,0.7208,0.010016
+751,718.723,1.39136,1.03229,0.008864,0.23664,0.005024,0.004192,0.009248,0.013184,0.015456,0.729984,0.009696
+752,698.083,1.4325,1.02205,0.01024,0.227328,0.00528,0.00496,0.008192,0.013888,0.014272,0.728768,0.00912
+753,668.516,1.49585,1.79699,0.009088,0.244768,0.005088,0.004128,0.00816,0.01424,0.014464,1.48387,0.013184
+754,378.366,2.64294,1.03878,0.010176,0.25152,0.004992,0.004224,0.008064,0.014272,0.013952,0.721344,0.01024
+755,701.25,1.42603,1.03197,0.009952,0.23584,0.006016,0.004224,0.00816,0.0136,0.014432,0.729728,0.010016
+756,745.608,1.34119,1.05459,0.009056,0.241536,0.004224,0.005792,0.007872,0.01296,0.014336,0.749088,0.009728
+757,641.403,1.55908,1.82061,0.01024,0.256,0.00544,0.0048,0.008128,0.012352,0.014336,1.49638,0.012928
+758,376.142,2.65857,1.03059,0.0104,0.239904,0.00432,0.005728,0.00768,0.013216,0.014336,0.725024,0.009984
+759,707.977,1.41248,1.0281,0.010176,0.229152,0.004384,0.005664,0.006624,0.013632,0.014784,0.734496,0.009184
+760,683.293,1.4635,1.03376,0.009792,0.231616,0.004384,0.006144,0.00784,0.013792,0.01424,0.736224,0.009728
+761,647.231,1.54504,2.05187,0.008832,0.452608,0.008032,0.005536,0.00704,0.015584,0.014592,1.5279,0.011744
+762,418.13,2.3916,1.04848,0.010016,0.235744,0.0056,0.00464,0.007808,0.013728,0.014368,0.746432,0.010144
+763,563.915,1.77332,1.04275,0.009856,0.250304,0.004352,0.005728,0.00784,0.013088,0.014304,0.728128,0.009152
+764,832.267,1.20154,1.03616,0.01024,0.236768,0.004896,0.005152,0.008256,0.013216,0.014336,0.733184,0.010112
+765,685.408,1.45898,2.11965,0.010272,0.502784,0.007136,0.005664,0.007712,0.01456,0.014944,1.54432,0.012256
+766,397.805,2.51379,1.03018,0.009856,0.23968,0.004448,0.005632,0.008,0.012992,0.014336,0.724992,0.01024
+767,698.44,1.43176,1.0368,0.008672,0.233152,0.004416,0.00592,0.007872,0.012832,0.014336,0.739328,0.010272
+768,677.753,1.47546,1.04205,0.009888,0.229824,0.005632,0.004576,0.008192,0.014112,0.01424,0.745792,0.009792
+769,681.985,1.46631,2.24438,0.009984,0.245952,0.00416,0.005888,0.007808,0.01456,0.01456,1.92864,0.012832
+770,376.401,2.65674,1.03213,0.009024,0.232928,0.00464,0.00544,0.008896,0.014016,0.014304,0.733344,0.009536
+771,696.303,1.43616,1.02605,0.009856,0.227104,0.004704,0.005632,0.007936,0.013056,0.014336,0.733184,0.01024
+772,462.825,2.16064,1.04573,0.01024,0.235296,0.00432,0.00576,0.007744,0.01312,0.014336,0.745024,0.009888
+773,1142.86,0.875,2.09715,0.010144,0.453984,0.006912,0.005888,0.007616,0.014496,0.0144,1.57142,0.012288
+774,405.886,2.46375,1.0527,0.010016,0.254176,0.00528,0.00496,0.007776,0.012704,0.014496,0.734432,0.008864
+775,674.627,1.4823,1.02195,0.009952,0.231712,0.005792,0.004448,0.008192,0.012288,0.014336,0.724992,0.01024
+776,713.216,1.4021,1.0281,0.010208,0.231456,0.005984,0.004288,0.00816,0.013952,0.014496,0.729344,0.010208
+777,657.675,1.52051,2.02208,0.008896,0.443648,0.006912,0.005856,0.007808,0.014496,0.014432,1.50883,0.0112
+778,418.557,2.38916,1.03014,0.01024,0.238848,0.004864,0.005216,0.008448,0.01296,0.014336,0.72656,0.008672
+779,677.641,1.47571,1.05472,0.009984,0.255744,0.004608,0.006112,0.008224,0.0136,0.014624,0.731584,0.01024
+780,694.12,1.44067,1.02006,0.009888,0.224224,0.005536,0.004672,0.008192,0.013536,0.014176,0.730048,0.009792
+781,621.878,1.60803,2.24845,0.008576,0.241568,0.005248,0.004992,0.007776,0.012704,0.014336,1.94061,0.01264
+782,395.386,2.52917,1.02541,0.009984,0.233728,0.005504,0.004736,0.008096,0.013664,0.014208,0.725888,0.0096
+783,707.671,1.41309,1.03267,0.009056,0.228864,0.004608,0.005664,0.008128,0.012832,0.014336,0.739328,0.009856
+784,690.085,1.4491,1.03242,0.009728,0.230112,0.005952,0.004288,0.008192,0.013888,0.014368,0.736736,0.009152
+785,647.845,1.54358,2.2177,0.00864,0.236768,0.004896,0.005184,0.007104,0.01392,0.01472,1.91286,0.0136
+786,379.435,2.6355,1.02288,0.009088,0.23664,0.005024,0.004096,0.008192,0.014112,0.01408,0.722848,0.0088
+787,694.885,1.43909,1.02198,0.01024,0.227328,0.005216,0.004992,0.007744,0.012768,0.014336,0.729088,0.010272
+788,707.427,1.41357,1.03987,0.009792,0.230208,0.004096,0.005952,0.007488,0.013184,0.014336,0.745184,0.009632
+789,611.708,1.63477,2.06813,0.01024,0.444416,0.007936,0.005536,0.00704,0.015456,0.014528,1.55104,0.011936
+790,405.786,2.46436,1.06906,0.01024,0.276224,0.004352,0.005696,0.007904,0.013024,0.015808,0.726816,0.008992
+791,728.826,1.37207,1.0296,0.009856,0.22976,0.0056,0.00464,0.008192,0.014048,0.014592,0.733216,0.009696
+792,686.96,1.45569,1.03837,0.010432,0.237376,0.005152,0.004992,0.007936,0.01264,0.01536,0.73536,0.00912
+793,641.353,1.5592,2.0567,0.010432,0.442496,0.006464,0.006016,0.00816,0.014368,0.014336,1.54336,0.011072
+794,416.705,2.39978,1.03622,0.01024,0.2376,0.005216,0.004992,0.008192,0.013888,0.014304,0.731616,0.010176
+795,675.685,1.47998,1.04858,0.01008,0.240832,0.005088,0.004096,0.008224,0.01392,0.014592,0.741504,0.01024
+796,644.481,1.55164,1.04339,0.009152,0.243712,0.00608,0.00416,0.008192,0.014048,0.014272,0.735104,0.008672
+797,687.941,1.45361,2.23405,0.01024,0.253952,0.005312,0.004928,0.007776,0.012704,0.014336,1.912,0.0128
+798,381.822,2.61902,1.07923,0.010144,0.25424,0.00416,0.00592,0.007744,0.01296,0.014368,0.759712,0.009984
+799,448.066,2.23181,1.32714,0.009536,0.500672,0.00608,0.00416,0.008192,0.013824,0.014752,0.759904,0.010016
+800,947.709,1.05518,1.04403,0.009888,0.23408,0.005216,0.005024,0.007648,0.012832,0.014336,0.745472,0.009536
+801,653.113,1.53113,2.18854,0.0096,0.231104,0.005056,0.005472,0.008128,0.013056,0.014048,1.88851,0.013568
+802,368.478,2.71387,1.06115,0.009952,0.248672,0.005536,0.004704,0.007872,0.012608,0.014336,0.74752,0.009952
+803,677.697,1.47559,1.04045,0.01024,0.227328,0.005888,0.004352,0.008192,0.013696,0.01456,0.747328,0.008864
+804,684.664,1.46057,1.30064,0.00992,0.236,0.005536,0.004704,0.00928,0.013248,0.014336,0.995104,0.012512
+805,449.986,2.22229,1.04858,0.008736,0.233472,0.005376,0.004864,0.007968,0.012512,0.015488,0.750464,0.009696
+806,687.652,1.45422,1.03488,0.010144,0.22944,0.004768,0.00528,0.007008,0.014336,0.015424,0.739392,0.009088
+807,690.842,1.44751,1.02605,0.009984,0.22512,0.004512,0.005504,0.006784,0.013952,0.01456,0.736928,0.008704
+808,592.036,1.68909,1.05123,0.009184,0.245344,0.004512,0.005664,0.007776,0.013184,0.014336,0.741376,0.009856
+809,616.821,1.62122,1.61792,0.012288,0.438272,0.005536,0.004704,0.008192,0.014336,0.014368,1.10998,0.01024
+810,528.38,1.89258,1.03613,0.009056,0.237312,0.004352,0.005696,0.007776,0.013152,0.014336,0.734752,0.009696
+811,681.021,1.46838,1.0289,0.008992,0.226944,0.00448,0.0056,0.00784,0.013024,0.014176,0.737632,0.010208
+812,707.549,1.41333,1.03731,0.01072,0.22912,0.004896,0.005216,0.007072,0.014272,0.014304,0.742976,0.008736
+813,653.27,1.53076,2.12109,0.01024,0.507904,0.007872,0.005568,0.00704,0.015392,0.015104,1.54026,0.011712
+814,408.375,2.44873,1.04688,0.009856,0.232032,0.004224,0.005856,0.00848,0.014176,0.014496,0.747712,0.010048
+815,663.911,1.50623,1.0441,0.008608,0.234656,0.004928,0.005152,0.007136,0.014016,0.014592,0.74544,0.009568
+816,684.378,1.46118,1.05472,0.01024,0.23312,0.004448,0.005632,0.008416,0.01264,0.014272,0.755712,0.01024
+817,674.85,1.48181,2.25981,0.009088,0.229344,0.005376,0.004896,0.008,0.012448,0.014336,1.95994,0.016384
+818,376.315,2.65735,1.03629,0.01024,0.235552,0.005632,0.004576,0.008192,0.014336,0.014368,0.733152,0.01024
+819,675.517,1.48035,1.03837,0.008608,0.22928,0.005152,0.005056,0.007936,0.012576,0.014336,0.745472,0.009952
+820,697.251,1.4342,1.04394,0.010016,0.2296,0.00608,0.004192,0.00816,0.01376,0.014368,0.747936,0.009824
+821,609.252,1.64136,2.07981,0.01024,0.442368,0.007584,0.004704,0.008224,0.014304,0.01552,1.56506,0.011808
+822,429.395,2.32886,1.03728,0.009184,0.227296,0.005952,0.004288,0.009248,0.01328,0.014336,0.743424,0.010272
+823,707.916,1.4126,1.04486,0.009856,0.223552,0.00464,0.00544,0.00832,0.012896,0.014304,0.755712,0.010144
+824,635.433,1.57373,1.04237,0.009088,0.233504,0.005248,0.00496,0.007744,0.012928,0.015456,0.74384,0.0096
+825,680.964,1.46851,2.224,0.009888,0.256544,0.004224,0.005856,0.00784,0.012928,0.014368,1.89846,0.013888
+826,359.204,2.78394,1.06266,0.01024,0.264192,0.005536,0.004704,0.008128,0.013408,0.014336,0.732128,0.009984
+827,758.168,1.31897,1.03837,0.010048,0.233664,0.005824,0.004416,0.008192,0.013344,0.01328,0.740352,0.009248
+828,667.808,1.49744,1.03558,0.01024,0.230528,0.004992,0.004192,0.008096,0.01408,0.014208,0.739712,0.009536
+829,661.766,1.51111,2.0521,0.009568,0.4424,0.006656,0.005536,0.00704,0.014176,0.02048,1.5351,0.011136
+830,413.905,2.41602,1.03498,0.008992,0.227328,0.005216,0.00496,0.007488,0.013056,0.014336,0.743424,0.010176
+831,675.072,1.48132,1.0311,0.009152,0.229312,0.00416,0.00592,0.007872,0.012832,0.014336,0.738464,0.009056
+832,692.009,1.44507,1.04653,0.010144,0.227168,0.004352,0.005728,0.007808,0.013088,0.014336,0.754976,0.008928
+833,695.239,1.43835,2.10995,0.009888,0.490176,0.006336,0.004064,0.008224,0.014272,0.01392,1.55082,0.012256
+834,391.774,2.55249,1.07181,0.009024,0.246848,0.005056,0.00416,0.008128,0.013824,0.014496,0.76016,0.010112
+835,549.209,1.8208,1.07158,0.008896,0.263968,0.00528,0.00496,0.007808,0.012672,0.015584,0.74336,0.009056
+836,754.675,1.32507,1.07523,0.010176,0.267936,0.004512,0.006144,0.007936,0.012544,0.014368,0.742912,0.008704
+837,561.904,1.77966,2.11776,0.009856,0.510336,0.011936,0.005536,0.007104,0.014336,0.014336,1.53325,0.011072
+838,441.379,2.26562,1.0312,0.009664,0.233792,0.004384,0.005696,0.007904,0.013024,0.014336,0.732608,0.009792
+839,708.283,1.41187,1.03824,0.008992,0.224928,0.004448,0.0056,0.007744,0.013152,0.014336,0.749408,0.009632
+840,662.89,1.50854,1.03414,0.01024,0.227232,0.004192,0.00608,0.007968,0.012608,0.014304,0.741376,0.010144
+841,634.007,1.57727,2.05571,0.009472,0.463488,0.006432,0.005984,0.008096,0.014432,0.014336,1.52166,0.011808
+842,428.071,2.33606,1.06438,0.009792,0.248256,0.005312,0.004928,0.007808,0.012672,0.014336,0.751616,0.009664
+843,690.027,1.44922,1.04822,0.008768,0.229344,0.004128,0.005952,0.007872,0.012832,0.014304,0.755424,0.0096
+844,473.581,2.11157,1.06109,0.009696,0.242112,0.004416,0.005632,0.007744,0.013216,0.014368,0.753664,0.01024
+845,966.266,1.03491,2.06752,0.009952,0.452416,0.006624,0.006144,0.007936,0.014592,0.014336,1.54381,0.011712
+846,419.973,2.3811,1.03414,0.009632,0.227872,0.004544,0.005504,0.006784,0.014336,0.014368,0.741344,0.00976
+847,673.795,1.48413,1.04499,0.009856,0.238048,0.00464,0.00544,0.007008,0.014144,0.014368,0.741376,0.010112
+848,670.267,1.49194,1.06349,0.010432,0.23424,0.005696,0.004576,0.009568,0.01296,0.014304,0.761856,0.009856
+849,425.912,2.3479,2.05005,0.0096,0.4696,0.007232,0.005088,0.008192,0.014368,0.014304,1.50941,0.012256
+850,627.643,1.59326,1.03424,0.010176,0.235104,0.004576,0.005472,0.006816,0.014304,0.0144,0.733152,0.01024
+851,674.239,1.48315,1.05181,0.009568,0.224,0.005824,0.004384,0.008224,0.01344,0.0144,0.762496,0.009472
+852,695.18,1.43848,1.02886,0.00896,0.22528,0.005888,0.005696,0.006848,0.014144,0.014336,0.73872,0.008992
+853,492.9,2.02881,1.62659,0.012288,0.448992,0.005184,0.005056,0.008192,0.014336,0.014336,1.10797,0.01024
+854,593.623,1.68457,1.07514,0.01024,0.251904,0.005728,0.004512,0.008192,0.013504,0.014208,0.756672,0.010176
+855,689.33,1.45068,1.01891,0.00992,0.225632,0.005248,0.00496,0.00768,0.0128,0.014336,0.728672,0.009664
+856,697.429,1.43384,1.05267,0.00976,0.22576,0.005888,0.004352,0.008192,0.013568,0.014336,0.760576,0.01024
+857,655.885,1.52466,2.06474,0.008672,0.442176,0.007616,0.004672,0.008192,0.014336,0.014336,1.55366,0.011072
+858,409.109,2.44434,1.0263,0.009888,0.22736,0.004864,0.005216,0.007072,0.014336,0.014336,0.733184,0.010048
+859,708.16,1.41211,1.04294,0.008704,0.22512,0.004224,0.006144,0.008192,0.012288,0.015456,0.752544,0.010272
+860,665.367,1.50293,1.04243,0.01024,0.223232,0.005344,0.004896,0.007616,0.012864,0.014336,0.75472,0.009184
+861,697.073,1.43457,2.08506,0.009888,0.489024,0.007136,0.005632,0.008064,0.014464,0.014656,1.52394,0.012256
+862,355.834,2.8103,1.07725,0.009984,0.262368,0.004288,0.005824,0.007808,0.012832,0.014336,0.750944,0.008864
+863,779.003,1.28369,1.06934,0.009024,0.237344,0.00432,0.005696,0.007872,0.013056,0.014368,0.767968,0.009696
+864,679.834,1.47095,1.03837,0.009536,0.228064,0.004096,0.005952,0.008384,0.013696,0.014752,0.7448,0.009088
+865,661.712,1.51123,1.30605,0.01024,0.23296,0.004608,0.005472,0.006816,0.014336,0.014336,1.0056,0.01168
+866,445.75,2.24341,1.04778,0.012128,0.233632,0.005408,0.004864,0.007872,0.013792,0.01424,0.746304,0.009536
+867,695.062,1.43872,1.05117,0.008768,0.225248,0.005312,0.004928,0.008192,0.01392,0.014048,0.761728,0.009024
+868,665.367,1.50293,1.04979,0.010272,0.237536,0.005952,0.004288,0.008192,0.013824,0.014752,0.74544,0.009536
+869,666.667,1.5,1.83091,0.010112,0.228896,0.004704,0.005344,0.008512,0.012768,0.014336,1.53395,0.012288
+870,406.753,2.4585,1.04038,0.00992,0.22752,0.00448,0.005856,0.007904,0.012864,0.014368,0.747488,0.009984
+871,528.516,1.89209,1.05062,0.010112,0.23936,0.00448,0.0056,0.007904,0.01312,0.014336,0.742688,0.013024
+872,713.465,1.40161,1.07882,0.010272,0.266176,0.004128,0.005984,0.007744,0.012896,0.018432,0.743424,0.00976
+873,679.383,1.47192,1.34509,0.01024,0.24784,0.005184,0.004992,0.007776,0.012736,0.014336,1.03014,0.01184
+874,409.191,2.44385,1.0752,0.01232,0.263712,0.004544,0.005504,0.00784,0.01328,0.014368,0.743392,0.01024
+875,734.577,1.36133,1.03162,0.010048,0.2296,0.005696,0.004512,0.008192,0.014336,0.014336,0.735136,0.00976
+876,712.224,1.40405,1.03219,0.01024,0.223232,0.005696,0.004544,0.008192,0.013472,0.014368,0.743456,0.008992
+877,568.731,1.7583,1.35238,0.008896,0.258048,0.006048,0.004192,0.008192,0.014112,0.014592,1.00758,0.03072
+878,498.479,2.0061,1.04768,0.01024,0.241664,0.00544,0.0048,0.007936,0.014592,0.014368,0.73904,0.0096
+879,702.452,1.42358,1.03997,0.009472,0.234336,0.005792,0.004416,0.008192,0.01344,0.014816,0.739744,0.00976
+880,668.735,1.49536,1.0367,0.009952,0.225728,0.004352,0.005536,0.007808,0.01328,0.014336,0.746528,0.009184
+881,594.485,1.68213,1.37648,0.009504,0.24672,0.005248,0.004992,0.008064,0.013632,0.014656,1.06266,0.011008
+882,481.429,2.07715,1.03757,0.009984,0.229632,0.006016,0.004224,0.009664,0.01392,0.014656,0.73968,0.009792
+883,640,1.5625,1.04627,0.010176,0.238016,0.004096,0.006144,0.008192,0.013568,0.014784,0.741536,0.00976
+884,714.959,1.39868,1.04826,0.010176,0.222528,0.004864,0.005216,0.007264,0.014144,0.014336,0.759808,0.00992
+885,497.389,2.0105,1.36272,0.009088,0.232352,0.005056,0.00416,0.008192,0.013696,0.014272,1.06362,0.012288
+886,547.887,1.8252,1.04602,0.01024,0.233472,0.005536,0.004704,0.008128,0.013568,0.014368,0.746272,0.009728
+887,704.749,1.41895,1.0281,0.01024,0.22528,0.006016,0.004256,0.008192,0.01344,0.014272,0.73616,0.01024
+888,696.007,1.43677,1.04653,0.01024,0.223232,0.005312,0.004928,0.007808,0.012704,0.0144,0.758976,0.008928
+889,631.222,1.58423,1.03712,0.009152,0.231424,0.005664,0.004608,0.008,0.012512,0.015584,0.740064,0.010112
+890,633.663,1.57812,2.07005,0.009888,0.469408,0.00832,0.00528,0.007008,0.014336,0.014336,1.52941,0.012064
+891,445.944,2.24243,1.06086,0.01024,0.233472,0.005536,0.004704,0.007968,0.013888,0.01472,0.760096,0.01024
+892,655.78,1.5249,1.04867,0.00976,0.24224,0.00608,0.00416,0.008192,0.013664,0.014016,0.74032,0.01024
+893,628.125,1.59204,1.04109,0.008928,0.23344,0.0056,0.00464,0.00816,0.013664,0.014528,0.741888,0.01024
+894,683.806,1.4624,2.07053,0.01024,0.468768,0.006464,0.005792,0.007744,0.012992,0.015392,1.53232,0.010816
+895,421.269,2.37378,1.03658,0.008608,0.231296,0.00528,0.00496,0.009248,0.013312,0.014304,0.739328,0.01024
+896,674.35,1.48291,1.04842,0.008864,0.22528,0.005344,0.004896,0.007936,0.013568,0.01456,0.758368,0.0096
+897,592.593,1.6875,1.03101,0.009056,0.222976,0.004352,0.005824,0.007872,0.012832,0.014432,0.74448,0.009184
+898,635.827,1.57275,2.1241,0.010176,0.450944,0.00624,0.005696,0.030176,0.071648,0.014656,1.52227,0.012288
+899,404.064,2.47485,1.11642,0.009056,0.304288,0.00496,0.00512,0.007168,0.013824,0.01488,0.747488,0.009632
+900,739.083,1.35303,1.03424,0.00992,0.225184,0.004512,0.005568,0.013088,0.014112,0.014368,0.738848,0.00864
+901,668.189,1.49658,1.03683,0.008864,0.229248,0.006144,0.004128,0.00816,0.013472,0.014592,0.741984,0.01024
+902,655.78,1.5249,2.44058,0.01232,0.471008,0.012288,0.005408,0.00688,0.014368,0.014304,1.8903,0.013696
+903,360.659,2.77271,1.04979,0.009984,0.229152,0.004576,0.005504,0.006816,0.014112,0.0144,0.755584,0.009664
+904,653.27,1.53076,1.05322,0.010176,0.25024,0.004288,0.005664,0.006624,0.014336,0.015648,0.735968,0.010272
+905,692.36,1.44434,1.85866,0.01024,0.233504,0.005216,0.004992,0.00768,0.0128,0.014496,1.55632,0.013408
+906,404.983,2.46924,1.04922,0.009056,0.227104,0.006016,0.004224,0.008192,0.013856,0.014304,0.757472,0.008992
+907,647.691,1.54395,1.04842,0.008832,0.241216,0.004544,0.005408,0.00688,0.014336,0.014336,0.742976,0.009888
+908,636.816,1.57031,1.0793,0.010144,0.264256,0.004128,0.005952,0.007616,0.013056,0.015712,0.748192,0.01024
+909,695.652,1.4375,1.04538,0.009088,0.232576,0.004992,0.004192,0.008096,0.013792,0.014432,0.747968,0.01024
+910,450.704,2.21875,1.06525,0.011936,0.252544,0.005856,0.004384,0.008192,0.014112,0.014592,0.744544,0.009088
+911,689.446,1.45044,1.03424,0.009632,0.22592,0.00576,0.004448,0.008192,0.01344,0.013184,0.743424,0.01024
+912,699.334,1.42993,1.04125,0.009056,0.227296,0.004128,0.005792,0.008128,0.012704,0.014336,0.751008,0.0088
+913,691.892,1.44531,1.04448,0.009984,0.23168,0.005472,0.0048,0.00816,0.014304,0.014368,0.746752,0.00896
+914,448.926,2.22754,1.56262,0.034816,0.71168,0.00512,0.004128,0.02352,0.013312,0.014336,0.745472,0.01024
+915,614.461,1.62744,1.04886,0.00912,0.238624,0.004992,0.004224,0.00928,0.014176,0.014912,0.74384,0.009696
+916,675.908,1.47949,1.06061,0.010208,0.253088,0.004992,0.004192,0.008096,0.014144,0.01424,0.741664,0.009984
+917,693.063,1.44287,1.10234,0.009856,0.270368,0.00496,0.004096,0.008192,0.013984,0.014496,0.766144,0.01024
+918,411.741,2.42871,1.04614,0.01232,0.239584,0.00592,0.00432,0.008192,0.013664,0.014016,0.738272,0.009856
+919,651.814,1.53418,1.06842,0.009696,0.259936,0.0048,0.005312,0.006976,0.01392,0.014208,0.743616,0.009952
+920,705.113,1.41821,1.06496,0.010336,0.245056,0.004704,0.005376,0.00704,0.01424,0.014304,0.753664,0.01024
+921,672.357,1.4873,1.06838,0.00992,0.258272,0.005664,0.004672,0.008224,0.0136,0.014336,0.744128,0.009568
+922,564.032,1.77295,1.70602,0.010176,0.507968,0.008192,0.004128,0.008192,0.014304,0.014336,1.12845,0.010272
+923,551.65,1.81274,1.04634,0.010144,0.23168,0.004576,0.005472,0.007904,0.013248,0.014336,0.749568,0.009408
+924,682.553,1.46509,1.04109,0.00912,0.222336,0.004768,0.00528,0.008256,0.013088,0.014336,0.753664,0.01024
+925,690.26,1.44873,1.04042,0.01024,0.22512,0.004256,0.005792,0.007872,0.01296,0.014336,0.750848,0.008992
+926,634.842,1.5752,2.06912,0.008832,0.454336,0.006464,0.005952,0.007872,0.0128,0.014336,1.54624,0.012288
+927,413.278,2.41968,1.052,0.009536,0.231936,0.004576,0.005408,0.00816,0.013088,0.014304,0.755168,0.009824
+928,694.708,1.43945,1.03914,0.010144,0.222208,0.005632,0.004576,0.008192,0.013568,0.014496,0.750176,0.010144
+929,674.017,1.48364,1.05709,0.008608,0.23136,0.005984,0.004224,0.008192,0.014272,0.014432,0.760864,0.009152
+930,671.035,1.49023,1.8001,0.009984,0.230144,0.005728,0.004512,0.008192,0.013888,0.014336,1.49958,0.013728
+931,404.783,2.47046,1.04646,0.00864,0.234624,0.004992,0.004096,0.008192,0.014176,0.014496,0.74752,0.009728
+932,692.945,1.44312,1.03446,0.009856,0.226016,0.00608,0.00416,0.008192,0.013824,0.01424,0.741984,0.010112
+933,694.12,1.44067,1.0425,0.008832,0.22528,0.006048,0.004192,0.008192,0.012288,0.015424,0.752544,0.009696
+934,668.189,1.49658,2.24278,0.009152,0.23344,0.004096,0.005984,0.007712,0.012928,0.014336,1.93946,0.01568
+935,323.488,3.09131,1.03834,0.009984,0.231296,0.00448,0.005568,0.008448,0.012608,0.015488,0.740224,0.01024
+936,951.01,1.05151,1.03645,0.010176,0.229824,0.005408,0.004832,0.008064,0.013856,0.014144,0.740128,0.010016
+937,663.105,1.50806,1.05488,0.009504,0.23232,0.004096,0.005952,0.00768,0.013024,0.014304,0.75776,0.01024
+938,696.48,1.43579,2.13254,0.008768,0.503648,0.006464,0.00576,0.008,0.01408,0.01456,1.56026,0.011008
+939,390.802,2.55884,1.04448,0.009152,0.230944,0.004576,0.005536,0.006848,0.01408,0.014528,0.749248,0.009568
+940,614.461,1.62744,1.04723,0.010176,0.229248,0.00496,0.004224,0.008064,0.01408,0.014208,0.75312,0.009152
+941,715.084,1.39844,1.05546,0.008928,0.230912,0.004608,0.00544,0.006848,0.013856,0.014624,0.761408,0.008832
+942,681.758,1.4668,2.06522,0.009024,0.444416,0.00752,0.004768,0.008064,0.014464,0.014144,1.55053,0.012288
+943,396.592,2.52148,1.05034,0.01008,0.229536,0.005696,0.004544,0.008224,0.012256,0.014336,0.755712,0.009952
+944,684.149,1.46167,1.04026,0.009888,0.22544,0.00432,0.00576,0.007712,0.013152,0.014336,0.749568,0.01008
+945,665.367,1.50293,1.05898,0.008704,0.231424,0.006112,0.004128,0.0096,0.01296,0.014304,0.761856,0.009888
+946,643.519,1.55396,2.2768,0.01024,0.235488,0.004128,0.005952,0.007776,0.012896,0.014336,1.97325,0.012736
+947,251.52,3.97583,1.03629,0.00992,0.229696,0.005408,0.004832,0.008,0.013568,0.014336,0.741664,0.008864
+948,616.867,1.62109,1.03664,0.009792,0.225824,0.004352,0.006144,0.008096,0.013504,0.014464,0.74432,0.010144
+949,671.806,1.48853,2.07869,0.008608,0.44784,0.034688,0.00816,0.006944,0.014336,0.014336,1.5319,0.011872
+950,393.922,2.53857,1.0337,0.009984,0.227616,0.00544,0.004768,0.008192,0.013728,0.014464,0.739744,0.00976
+951,710.002,1.40845,1.03219,0.009888,0.223584,0.005472,0.004768,0.007936,0.012544,0.014336,0.744832,0.008832
+952,682.212,1.46582,1.06554,0.008832,0.249472,0.004416,0.005664,0.008,0.01296,0.014368,0.752928,0.008896
+953,630.348,1.58643,2.07389,0.00944,0.450784,0.022528,0.024864,0.008608,0.014336,0.014336,1.51738,0.011616
+954,408.579,2.44751,1.04413,0.009824,0.229696,0.004192,0.005888,0.008064,0.012864,0.015168,0.748544,0.009888
+955,708.16,1.41211,1.05971,0.009088,0.249792,0.00416,0.005888,0.008448,0.01376,0.0144,0.743936,0.01024
+956,649.849,1.53882,1.06096,0.01008,0.248064,0.0056,0.004672,0.008096,0.01344,0.014848,0.747072,0.009088
+957,511.489,1.95508,1.51574,0.01232,0.67808,0.006016,0.004256,0.00816,0.014368,0.014304,0.769248,0.008992
+958,633.859,1.57764,1.04182,0.01024,0.228736,0.004736,0.005312,0.006976,0.016384,0.014336,0.745088,0.010016
+959,650.262,1.53784,1.03472,0.009856,0.225888,0.004352,0.005728,0.007744,0.013152,0.014336,0.744768,0.008896
+960,695.062,1.43872,1.02992,0.01024,0.22496,0.004416,0.005664,0.007872,0.013088,0.014336,0.739328,0.010016
+961,692.945,1.44312,1.80858,0.009568,0.22928,0.004992,0.004192,0.008128,0.013408,0.014656,1.51178,0.012576
+962,407.076,2.45654,1.06586,0.009408,0.237408,0.005664,0.004544,0.008192,0.013728,0.014208,0.762592,0.010112
+963,680.286,1.46997,1.03731,0.009824,0.225248,0.004544,0.005536,0.00784,0.013088,0.01424,0.747264,0.009728
+964,648.614,1.54175,1.0329,0.009056,0.22704,0.004384,0.005696,0.007744,0.013184,0.014368,0.741344,0.01008
+965,698.618,1.4314,1.84774,0.008992,0.25376,0.004288,0.005824,0.007872,0.012928,0.014336,1.52576,0.013984
+966,414.072,2.41504,1.04602,0.009856,0.233536,0.004416,0.005536,0.006752,0.013792,0.014592,0.747456,0.01008
+967,692.945,1.44312,1.04224,0.009856,0.228032,0.004224,0.0056,0.007904,0.01312,0.014336,0.749504,0.009664
+968,670.267,1.49194,1.04272,0.010144,0.22576,0.004096,0.006016,0.00768,0.012928,0.015424,0.750528,0.010144
+969,688.056,1.45337,1.8432,0.01024,0.232928,0.00464,0.00544,0.006848,0.013952,0.014656,1.54221,0.012288
+970,403.348,2.47925,1.05267,0.009984,0.235136,0.004736,0.005344,0.00704,0.01424,0.014368,0.752768,0.009056
+971,666.341,1.50073,1.05075,0.009856,0.240192,0.00544,0.0048,0.008064,0.012416,0.014336,0.745472,0.010176
+972,689.33,1.45068,1.07315,0.01024,0.249856,0.005248,0.004992,0.00784,0.01264,0.014368,0.757728,0.01024
+973,651.71,1.53442,1.86298,0.009952,0.26208,0.004448,0.005632,0.00784,0.013152,0.014336,1.5319,0.013632
+974,403.985,2.47534,1.0801,0.009184,0.253568,0.00448,0.005632,0.007872,0.01312,0.014336,0.761856,0.010048
+975,679.045,1.47266,1.0305,0.008544,0.22672,0.004704,0.005184,0.007104,0.013856,0.014368,0.739776,0.01024
+976,702.452,1.42358,1.0568,0.01024,0.22528,0.005376,0.004864,0.007968,0.013536,0.014656,0.764608,0.010272
+977,641.805,1.55811,1.05744,0.008864,0.256,0.00576,0.00448,0.008192,0.012288,0.015456,0.737792,0.008608
+978,455.567,2.19507,1.07693,0.013696,0.247456,0.005056,0.004128,0.008192,0.01392,0.014144,0.760416,0.00992
+979,684.035,1.46191,1.03238,0.009536,0.233632,0.004832,0.005216,0.007072,0.013952,0.014592,0.73344,0.010112
+980,611.708,1.63477,1.08957,0.01024,0.273984,0.004544,0.005536,0.007776,0.013312,0.014336,0.75072,0.00912
+981,711.729,1.40503,1.05552,0.008992,0.24096,0.0048,0.005408,0.00704,0.01376,0.014752,0.749568,0.01024
+982,456.023,2.19287,1.08147,0.012608,0.256256,0.004352,0.005728,0.00784,0.013056,0.014336,0.757728,0.009568
+983,702.573,1.42334,1.05267,0.01024,0.232512,0.005056,0.005248,0.00704,0.01392,0.01456,0.755232,0.008864
+984,686.672,1.4563,1.04051,0.009888,0.22368,0.00432,0.00576,0.006624,0.01424,0.014336,0.751616,0.010048
+985,619.667,1.61377,1.05414,0.009504,0.236192,0.00416,0.005728,0.007776,0.01312,0.014336,0.753664,0.009664
+986,686.097,1.45752,2.06643,0.009696,0.451104,0.027776,0.004992,0.007776,0.014208,0.014592,1.52422,0.012064
+987,411.741,2.42871,1.0568,0.010016,0.231648,0.005664,0.004576,0.008192,0.012288,0.015648,0.759936,0.008832
+988,684.606,1.46069,1.04586,0.01024,0.23088,0.00464,0.00544,0.006848,0.014368,0.014304,0.749568,0.009568
+989,491.717,2.03369,1.04365,0.01024,0.229408,0.005408,0.0048,0.008032,0.012448,0.01536,0.748352,0.0096
+990,504.123,1.98364,1.08138,0.012032,0.268544,0.0056,0.004672,0.00816,0.013472,0.014528,0.745504,0.008864
+991,678.37,1.47412,1.06534,0.00864,0.245664,0.00416,0.005888,0.007808,0.012896,0.015584,0.754464,0.01024
+992,699.334,1.42993,1.07523,0.01024,0.259296,0.004896,0.005152,0.007136,0.014144,0.014304,0.751008,0.009056
+993,598.306,1.67139,1.11206,0.009824,0.28688,0.004352,0.005696,0.007808,0.014656,0.014688,0.759168,0.008992
+994,677.697,1.47559,2.08403,0.010272,0.456032,0.027136,0.004224,0.008192,0.01424,0.014112,1.53818,0.011648
+995,413.028,2.42114,1.04448,0.009152,0.228672,0.0048,0.00528,0.00704,0.01408,0.01456,0.751168,0.009728
+996,680.173,1.47021,1.05123,0.010112,0.226016,0.004192,0.00576,0.008576,0.013504,0.014272,0.758656,0.010144
+997,609.615,1.64038,1.04858,0.010208,0.235552,0.0056,0.00464,0.008192,0.013344,0.014816,0.745984,0.01024
+998,503.751,1.98511,2.0561,0.010144,0.458208,0.006688,0.005632,0.006656,0.015616,0.014112,1.52675,0.012288
+999,541.512,1.84668,1.05062,0.009504,0.236288,0.006048,0.004192,0.00816,0.014176,0.014432,0.748672,0.009152
+1000,656.831,1.52246,1.05949,0.008864,0.229376,0.005888,0.004352,0.008192,0.014336,0.014368,0.763872,0.01024
+1001,663.105,1.50806,1.09786,0.009408,0.248768,0.005504,0.004736,0.007968,0.012512,0.014336,0.784416,0.010208
+1002,440.999,2.26758,1.06848,0.013568,0.236128,0.004256,0.005792,0.006624,0.014208,0.014336,0.763776,0.009792
+1003,665.908,1.50171,1.06291,0.010048,0.250048,0.005408,0.004864,0.007936,0.014048,0.014688,0.746816,0.009056
+1004,686.557,1.45654,1.05824,0.010272,0.231424,0.0056,0.004608,0.008192,0.013952,0.014272,0.760256,0.009664
+1005,711.111,1.40625,1.05267,0.010144,0.22864,0.004928,0.005152,0.007136,0.014016,0.014528,0.757888,0.01024
+1006,635.433,1.57373,2.06064,0.01024,0.473024,0.00656,0.005728,0.007776,0.01312,0.014528,1.51878,0.01088
+1007,370.243,2.70093,1.08461,0.00992,0.263936,0.004672,0.005344,0.00704,0.014176,0.0144,0.755392,0.009728
+1008,810.287,1.23413,1.05274,0.009856,0.239936,0.004224,0.006144,0.008192,0.013568,0.014336,0.74624,0.01024
+1009,667.536,1.49805,1.04326,0.009024,0.229408,0.005952,0.004256,0.008192,0.013376,0.01456,0.749472,0.009024
+1010,560.328,1.78467,1.70922,0.01024,0.509728,0.008,0.004512,0.008192,0.013824,0.014496,1.12995,0.010272
+1011,549.356,1.82031,1.03306,0.009056,0.230528,0.004992,0.004224,0.008064,0.01376,0.014592,0.738624,0.009216
+1012,702.452,1.42358,1.04621,0.01024,0.226432,0.004992,0.004224,0.008064,0.014336,0.014336,0.753664,0.00992
+1013,688.403,1.45264,1.04237,0.009952,0.22352,0.005536,0.004704,0.007968,0.012512,0.014336,0.753664,0.010176
+1014,678.37,1.47412,1.82272,0.010112,0.2336,0.0056,0.00464,0.008128,0.013408,0.013312,1.52099,0.012928
+1015,407.238,2.45557,1.04858,0.01024,0.23552,0.005312,0.004928,0.008192,0.013824,0.014336,0.745984,0.01024
+1016,670.157,1.49219,1.03949,0.010176,0.228768,0.004768,0.005312,0.008576,0.012736,0.014336,0.745184,0.009632
+1017,650.365,1.5376,1.0793,0.00992,0.26864,0.005184,0.004992,0.007872,0.01264,0.014336,0.745504,0.010208
+1018,683.692,1.46265,2.26138,0.009888,0.236288,0.006048,0.00416,0.008192,0.013792,0.014464,1.95421,0.014336
+1019,363.121,2.75391,1.05238,0.010208,0.23968,0.005888,0.004352,0.00816,0.013568,0.014752,0.745824,0.009952
+1020,518.875,1.92725,1.06086,0.010048,0.229568,0.005536,0.004704,0.008192,0.014144,0.014528,0.763904,0.01024
+1021,664.073,1.50586,1.05472,0.01024,0.231424,0.005344,0.004896,0.007808,0.012672,0.014496,0.757664,0.010176
+1022,415.669,2.40576,1.06982,0.01232,0.262688,0.004256,0.005792,0.007904,0.012928,0.014336,0.739424,0.010176
+1023,697.548,1.43359,1.04246,0.00992,0.231744,0.005472,0.004768,0.007776,0.012704,0.014336,0.745472,0.010272
+1024,679.045,1.47266,1.03088,0.009056,0.224384,0.004992,0.004192,0.009216,0.013216,0.014336,0.741376,0.010112
+1025,532.778,1.87695,1.06355,0.0088,0.247808,0.005184,0.00496,0.007904,0.012672,0.014336,0.753056,0.008832
+1026,730.125,1.36963,2.0951,0.010272,0.507456,0.007744,0.00496,0.007936,0.01408,0.014432,1.51594,0.012288
+1027,448.975,2.22729,1.04086,0.008672,0.229408,0.005504,0.004704,0.008128,0.012352,0.014368,0.748736,0.008992
+1028,689.33,1.45068,1.05517,0.009696,0.24176,0.004992,0.004224,0.008064,0.013856,0.01424,0.749888,0.008448
+1029,645.039,1.55029,1.06314,0.008576,0.249696,0.006016,0.004224,0.008192,0.013696,0.014496,0.748032,0.010208
+1030,417.661,2.39429,1.05498,0.011872,0.236192,0.005312,0.004928,0.008192,0.013664,0.014112,0.750464,0.01024
+1031,673.241,1.48535,1.06291,0.01024,0.251904,0.005728,0.004544,0.00816,0.013536,0.014336,0.74544,0.009024
+1032,627.163,1.59448,1.03424,0.009984,0.224544,0.005056,0.004128,0.008192,0.013504,0.014272,0.7456,0.00896
+1033,763.325,1.31006,1.03981,0.008608,0.228448,0.005024,0.00416,0.00992,0.012544,0.016096,0.745248,0.00976
+1034,298.586,3.34912,1.15264,0.011776,0.326624,0.00608,0.020288,0.008224,0.013792,0.014944,0.741312,0.0096
+1035,1359.89,0.735352,1.05101,0.008544,0.237568,0.005632,0.004608,0.008192,0.013408,0.014304,0.74848,0.010272
+1036,702.814,1.42285,1.04166,0.01024,0.22896,0.004512,0.00544,0.006848,0.014368,0.014304,0.747456,0.009536
+1037,645.548,1.54907,1.04698,0.00912,0.233312,0.005312,0.004928,0.008192,0.013376,0.014656,0.74816,0.00992
+1038,422.617,2.36621,1.06694,0.012288,0.245408,0.004448,0.005632,0.007904,0.014272,0.013152,0.753664,0.010176
+1039,700.051,1.42847,1.04608,0.009504,0.231744,0.004768,0.00528,0.00704,0.014304,0.014336,0.749568,0.009536
+1040,700.89,1.42676,1.04314,0.008896,0.228992,0.00448,0.005568,0.007936,0.01312,0.014336,0.749568,0.01024
+1041,667.101,1.49902,1.06294,0.009856,0.246144,0.005184,0.004992,0.007712,0.012832,0.014336,0.752832,0.009056
+1042,607.896,1.64502,2.07466,0.01024,0.44032,0.028,0.020352,0.006944,0.014336,0.014336,1.52781,0.01232
+1043,405.344,2.46704,1.05587,0.010176,0.237664,0.005536,0.004672,0.00784,0.01264,0.015456,0.752288,0.0096
+1044,750.596,1.33228,1.04672,0.009216,0.225184,0.005152,0.004992,0.007392,0.01296,0.014304,0.757728,0.009792
+1045,693.884,1.44116,1.03661,0.008512,0.222976,0.004352,0.005696,0.007872,0.013088,0.014304,0.749568,0.01024
+1046,570.871,1.75171,1.65827,0.012288,0.432128,0.00528,0.00496,0.007744,0.01408,0.014464,1.15715,0.010176
+1047,509.706,1.96191,1.04042,0.010048,0.223424,0.005984,0.004256,0.008192,0.013568,0.014304,0.751968,0.008672
+1048,683.008,1.46411,1.05043,0.01024,0.226464,0.00496,0.00512,0.007168,0.014144,0.01424,0.758048,0.010048
+1049,718.596,1.3916,1.04016,0.009888,0.221056,0.004576,0.005568,0.007808,0.013088,0.014496,0.753664,0.010016
+1050,584.809,1.70996,2.2767,0.01024,0.224512,0.0192,0.005696,0.007904,0.013024,0.014368,1.96944,0.01232
+1051,403.666,2.47729,1.05267,0.009568,0.225952,0.005984,0.005664,0.006848,0.014016,0.01424,0.76016,0.01024
+1052,703.901,1.42065,1.04598,0.01024,0.221184,0.005216,0.004992,0.007776,0.012736,0.014336,0.749568,0.019936
+1053,614.001,1.62866,1.04656,0.00992,0.22672,0.005024,0.004192,0.008096,0.013344,0.014464,0.75584,0.00896
+1054,683.806,1.4624,2.08061,0.00992,0.444064,0.006816,0.005408,0.00704,0.01568,0.014464,1.56509,0.012128
+1055,393.241,2.54297,1.07315,0.009568,0.251872,0.0048,0.005856,0.007744,0.013024,0.014336,0.75696,0.008992
+1056,690.26,1.44873,1.05466,0.009888,0.221568,0.005888,0.00432,0.008192,0.01424,0.014464,0.76592,0.010176
+1057,687.479,1.45459,1.0432,0.008832,0.221184,0.005792,0.004448,0.008128,0.01344,0.014272,0.758272,0.008832
+1058,583.143,1.71484,2.09523,0.010432,0.44176,0.007008,0.0056,0.007808,0.013216,0.015872,1.58157,0.011968
+1059,435.884,2.29419,1.05114,0.009856,0.224128,0.005344,0.004896,0.007872,0.012608,0.014336,0.76304,0.009056
+1060,681.758,1.4668,1.0401,0.01024,0.221184,0.006048,0.004192,0.008192,0.014112,0.014432,0.751744,0.009952
+1061,657.147,1.52173,1.09821,0.009056,0.260128,0.005728,0.00448,0.008192,0.013568,0.014464,0.772736,0.009856
+1062,489.484,2.04297,1.80282,0.008768,0.24576,0.005504,0.004736,0.008192,0.013856,0.014208,1.48899,0.0128
+1063,453.398,2.20557,1.04102,0.009056,0.2312,0.00576,0.004512,0.00816,0.013312,0.014464,0.745696,0.008864
+1064,726.757,1.37598,1.04333,0.009216,0.222848,0.00448,0.005568,0.006784,0.014304,0.014304,0.755712,0.010112
+1065,678.933,1.4729,1.04186,0.009856,0.221632,0.005536,0.004672,0.007872,0.012608,0.015392,0.754656,0.009632
+1066,416.049,2.40356,1.08134,0.013312,0.252704,0.00432,0.00576,0.007808,0.013056,0.014304,0.761088,0.008992
+1067,690.842,1.44751,1.05267,0.01024,0.224768,0.004608,0.006112,0.007616,0.012896,0.014336,0.761856,0.01024
+1068,671.035,1.49023,1.04531,0.010144,0.223392,0.004864,0.005184,0.007104,0.013888,0.014336,0.757248,0.009152
+1069,691.775,1.44556,1.04211,0.008672,0.221184,0.005312,0.004928,0.007616,0.012864,0.014336,0.75776,0.00944
+1070,525.735,1.9021,1.68448,0.011296,0.454592,0.004288,0.005824,0.007904,0.01408,0.014048,1.16224,0.010208
+1071,515.674,1.93921,1.05472,0.01008,0.223392,0.005536,0.004704,0.008192,0.013536,0.01424,0.765952,0.009088
+1072,682.098,1.46606,1.04454,0.009984,0.223136,0.004448,0.005632,0.00784,0.013184,0.014336,0.75712,0.008864
+1073,709.756,1.40894,1.04899,0.008608,0.223136,0.004192,0.005888,0.007648,0.013088,0.014336,0.763136,0.00896
+1074,659.581,1.51611,2.21798,0.010176,0.221056,0.004288,0.00576,0.007872,0.012992,0.014368,1.92918,0.012288
+1075,379.54,2.63477,1.07814,0.009088,0.24576,0.0056,0.00464,0.008192,0.013472,0.014496,0.768064,0.008832
+1076,693.767,1.44141,1.04781,0.010272,0.221152,0.005536,0.004704,0.008032,0.012608,0.015232,0.760576,0.009696
+1077,673.463,1.48486,1.04595,0.009632,0.221952,0.00528,0.00496,0.008096,0.012384,0.0144,0.75952,0.009728
+1078,688.982,1.45142,2.0889,0.010272,0.443808,0.00672,0.005504,0.00864,0.014304,0.014336,1.57309,0.012224
+1079,341.96,2.92432,1.08816,0.008896,0.273952,0.004576,0.005504,0.006784,0.014144,0.013952,0.750144,0.010208
+1080,854.401,1.17041,1.06112,0.0096,0.23008,0.004128,0.005952,0.007616,0.013056,0.014336,0.767232,0.00912
+1081,684.492,1.46094,1.05248,0.008864,0.22448,0.004896,0.005184,0.007104,0.013824,0.014208,0.764288,0.009632
+1082,656.2,1.52393,2.08733,0.009024,0.44432,0.007296,0.005024,0.007616,0.014016,0.013248,1.57491,0.011872
+1083,401.333,2.4917,1.05267,0.01024,0.226304,0.005088,0.00416,0.00816,0.013376,0.01472,0.760384,0.01024
+1084,622.871,1.60547,1.07725,0.01024,0.23264,0.004928,0.0056,0.006688,0.014368,0.014336,0.778208,0.01024
+1085,675.685,1.47998,1.07494,0.0096,0.239616,0.005024,0.005152,0.007136,0.013952,0.024992,0.759776,0.009696
+1086,654,1.52905,2.10899,0.009728,0.455296,0.007456,0.004864,0.008032,0.014528,0.053216,1.54419,0.01168
+1087,414.659,2.41162,1.04442,0.00912,0.22736,0.005568,0.00464,0.008096,0.012384,0.015424,0.75216,0.009664
+1088,394.491,2.53491,1.10387,0.010336,0.23952,0.00576,0.00448,0.008192,0.013664,0.014848,0.78864,0.018432
+1089,1167.95,0.856201,1.06227,0.009568,0.239392,0.004992,0.00512,0.00848,0.013056,0.014304,0.75776,0.0096
+1090,419.114,2.38599,1.06464,0.011936,0.240416,0.005184,0.005024,0.007744,0.012768,0.014336,0.757536,0.009696
+1091,725.084,1.37915,1.05782,0.010176,0.2272,0.004288,0.00576,0.007776,0.013088,0.014336,0.765632,0.009568
+1092,669.39,1.4939,1.0551,0.010144,0.22176,0.005536,0.004672,0.008192,0.012288,0.014336,0.768,0.010176
+1093,626.3,1.59668,1.05469,0.01024,0.223232,0.005504,0.004736,0.008192,0.020544,0.015808,0.756224,0.010208
+1094,437.7,2.28467,1.06957,0.01216,0.234112,0.005376,0.004864,0.008,0.01248,0.014336,0.768,0.01024
+1095,678.033,1.47485,1.04835,0.01024,0.222464,0.004864,0.005216,0.007072,0.01392,0.01424,0.76032,0.010016
+1096,692.126,1.44482,1.04243,0.01024,0.221024,0.004256,0.006144,0.007968,0.01408,0.014848,0.754912,0.00896
+1097,668.298,1.49634,1.03219,0.01024,0.219136,0.005952,0.004288,0.008192,0.013632,0.014336,0.746176,0.01024
+1098,486.114,2.05713,2.4823,0.009696,0.51216,0.01488,0.006144,0.00784,0.01424,0.014272,1.89056,0.012512
+1099,395.443,2.52881,1.12435,0.01024,0.29696,0.005888,0.004352,0.008192,0.013856,0.014528,0.761312,0.009024
+1100,648.101,1.54297,1.06986,0.009152,0.237568,0.006048,0.004192,0.008192,0.01248,0.014304,0.76784,0.01008
+1101,657.886,1.52002,1.89098,0.008864,0.236672,0.004992,0.004192,0.008096,0.013888,0.0144,1.58714,0.012736
+1102,411.452,2.43042,1.05738,0.009888,0.227712,0.004672,0.005408,0.00688,0.014272,0.014432,0.76496,0.009152
+1103,692.945,1.44312,1.05869,0.01024,0.222976,0.004352,0.006144,0.007872,0.012608,0.014496,0.76992,0.01008
+1104,695.652,1.4375,1.06496,0.010112,0.221312,0.005472,0.004768,0.008064,0.013472,0.014432,0.77824,0.009088
+1105,659.9,1.51538,1.39885,0.010112,0.228896,0.004768,0.005312,0.00816,0.013024,0.014464,1.10182,0.012288
+1106,248.047,4.03149,1.07501,0.010592,0.249728,0.004384,0.005728,0.00768,0.013216,0.014336,0.759776,0.009568
+1107,767.329,1.30322,1.07184,0.008896,0.241696,0.005504,0.004704,0.008032,0.012448,0.014336,0.765952,0.010272
+1108,526.952,1.89771,1.0864,0.010176,0.259072,0.00528,0.004992,0.007776,0.013984,0.014208,0.760672,0.01024
+1109,494.208,2.02344,1.13526,0.010912,0.280576,0.005152,0.005024,0.00784,0.012704,0.014336,0.777952,0.020768
+1110,714.959,1.39868,1.06477,0.010368,0.229248,0.00592,0.00432,0.008128,0.013728,0.01424,0.768768,0.010048
+1111,673.906,1.48389,1.06048,0.009472,0.229152,0.005088,0.004128,0.008192,0.013728,0.014304,0.766592,0.009824
+1112,599.356,1.66846,1.1024,0.009888,0.284896,0.0048,0.005888,0.007712,0.013024,0.014336,0.751616,0.01024
+1113,637.411,1.56885,1.63904,0.012448,0.422368,0.005696,0.004544,0.008192,0.014368,0.014304,1.14691,0.010208
+1114,435.004,2.29883,1.1113,0.011424,0.2712,0.005376,0.004864,0.007936,0.013824,0.014304,0.772768,0.0096
+1115,724.827,1.37964,1.08678,0.01024,0.251936,0.005568,0.004672,0.007872,0.012576,0.014496,0.769408,0.010016
+1116,664.935,1.50391,1.07152,0.009888,0.242432,0.00512,0.004992,0.007968,0.01264,0.015552,0.762688,0.01024
+1117,433.21,2.30835,1.23293,0.011232,0.407552,0.005952,0.004288,0.008192,0.014336,0.014368,0.757408,0.0096
+1118,677.361,1.47632,1.06298,0.009152,0.23552,0.005184,0.004992,0.007808,0.01376,0.013312,0.763808,0.00944
+1119,682.894,1.46436,1.06243,0.008608,0.226944,0.004384,0.005664,0.007776,0.013088,0.014304,0.77184,0.009824
+1120,590.202,1.69434,1.10198,0.008864,0.278528,0.0056,0.00464,0.007968,0.012512,0.014336,0.759808,0.009728
+1121,571.349,1.75024,2.55898,0.010144,0.45408,0.006816,0.005536,0.047488,0.053472,0.016384,1.95296,0.012096
+1122,388.283,2.57544,1.06096,0.00976,0.229952,0.0056,0.004672,0.00816,0.013824,0.014144,0.765728,0.00912
+1123,350.295,2.85474,1.12122,0.009152,0.290816,0.005312,0.004928,0.007808,0.012736,0.015616,0.765792,0.009056
+1124,947.271,1.05566,1.71363,0.009888,0.441952,0.006912,0.005344,0.006944,0.014336,0.014272,1.20419,0.009792
+1125,497.933,2.0083,1.11763,0.009856,0.266112,0.004928,0.00512,0.017088,0.028992,0.01536,0.760416,0.00976
+1126,680.851,1.46875,1.06682,0.010144,0.231808,0.006048,0.004192,0.008128,0.013408,0.014336,0.768704,0.010048
+1127,687.364,1.45483,1.07734,0.009472,0.246624,0.00608,0.00416,0.008192,0.01408,0.014592,0.763904,0.01024
+1128,627.355,1.59399,1.51002,0.009888,0.275424,0.005152,0.004992,0.007712,0.012864,0.014368,1.16874,0.01088
+1129,536.617,1.86353,1.05914,0.009056,0.224928,0.004448,0.005632,0.008192,0.0128,0.014336,0.769952,0.009792
+1130,714.834,1.39893,1.08218,0.0104,0.24432,0.00416,0.00592,0.007936,0.0128,0.014304,0.772096,0.01024
+1131,644.938,1.55054,1.06291,0.00864,0.24576,0.005536,0.004704,0.008032,0.01248,0.014432,0.753536,0.009792
+1132,457.654,2.18506,1.15034,0.01008,0.329472,0.004512,0.006144,0.007776,0.014048,0.01408,0.754624,0.0096
+1133,956.339,1.04565,2.02752,0.011776,0.405792,0.00432,0.005984,0.00784,0.013952,0.01472,1.55085,0.012288
+1134,404.423,2.47266,1.06246,0.00864,0.227136,0.004128,0.005952,0.00768,0.012992,0.014336,0.771968,0.009632
+1135,661.178,1.51245,1.06947,0.008608,0.228416,0.005056,0.00416,0.008128,0.013728,0.014848,0.777472,0.009056
+1136,560.865,1.78296,1.35926,0.009728,0.245536,0.004832,0.00528,0.007008,0.01408,0.017696,1.03933,0.015776
+1137,425.117,2.35229,1.10538,0.011776,0.274944,0.005792,0.00448,0.00816,0.012448,0.015648,0.762432,0.009696
+1138,681.531,1.46729,1.05866,0.010144,0.230176,0.005344,0.004896,0.007872,0.012608,0.014336,0.763584,0.009696
+1139,653.061,1.53125,1.06458,0.009408,0.225696,0.004576,0.005504,0.008576,0.01264,0.01424,0.774144,0.009792
+1140,549.209,1.8208,2.39411,0.0104,0.271264,0.005056,0.004128,0.01808,0.030336,0.014752,2.02781,0.012288
+1141,369.242,2.70825,1.06701,0.00976,0.233952,0.006048,0.004192,0.008192,0.013696,0.014528,0.766432,0.010208
+1142,694.355,1.44019,1.06189,0.009184,0.227328,0.005376,0.004896,0.007808,0.01264,0.014336,0.771424,0.008896
+1143,671.365,1.4895,1.06378,0.009056,0.233472,0.005408,0.004832,0.007712,0.012768,0.014368,0.76592,0.01024
+1144,591.053,1.69189,2.07872,0.01024,0.464672,0.006464,0.005792,0.00768,0.013056,0.014336,1.54419,0.012288
+1145,428.811,2.33203,1.0793,0.018432,0.231584,0.005472,0.004768,0.007968,0.012512,0.015424,0.773056,0.01008
+1146,689.678,1.44995,1.06909,0.01024,0.227328,0.00544,0.0048,0.008224,0.013664,0.014176,0.774944,0.010272
+1147,607.085,1.64722,1.10307,0.00944,0.252704,0.006016,0.004224,0.008192,0.014144,0.014208,0.784192,0.009952
+1148,620.23,1.6123,2.10285,0.01008,0.442336,0.016576,0.034816,0.023584,0.01328,0.014336,1.536,0.01184
+1149,263.256,3.79858,1.08922,0.01024,0.247712,0.004192,0.005888,0.00784,0.012896,0.014336,0.776128,0.009984
+1150,1184.84,0.843994,1.0793,0.01024,0.247808,0.005792,0.00448,0.00816,0.014112,0.01456,0.763904,0.01024
+1151,677.361,1.47632,1.85533,0.01024,0.253088,0.00496,0.004256,0.009344,0.013024,0.014336,1.53194,0.014144
+1152,407.724,2.45264,1.08141,0.00992,0.23184,0.005536,0.004672,0.008032,0.012448,0.015552,0.784448,0.00896
+1153,664.719,1.50439,1.07734,0.0096,0.248192,0.004384,0.005664,0.007744,0.01312,0.014464,0.765536,0.00864
+1154,669.609,1.49341,1.06077,0.00976,0.22416,0.006048,0.004192,0.008192,0.013696,0.014528,0.770432,0.00976
+1155,679.496,1.47168,2.27526,0.01024,0.23552,0.006048,0.004192,0.008192,0.013696,0.0144,1.9705,0.01248
+1156,369.976,2.70288,1.06496,0.010144,0.231296,0.00432,0.005792,0.008064,0.012768,0.014336,0.768,0.01024
+1157,658.945,1.51758,1.08749,0.00992,0.252224,0.005504,0.004736,0.007904,0.012576,0.014336,0.770048,0.01024
+1158,667.427,1.49829,1.07968,0.009152,0.233376,0.005952,0.004288,0.008192,0.013792,0.014368,0.7808,0.00976
+1159,652.541,1.53247,2.08778,0.009056,0.444416,0.008192,0.005536,0.007904,0.013184,0.015392,1.57328,0.010816
+1160,408.171,2.44995,1.06301,0.0096,0.232128,0.004128,0.006144,0.008192,0.013792,0.01456,0.76528,0.009184
+1161,674.572,1.48242,1.06925,0.008928,0.232576,0.004992,0.005216,0.007072,0.013984,0.014592,0.772192,0.009696
+1162,612.623,1.63232,1.09562,0.010144,0.253952,0.005408,0.004832,0.008032,0.013536,0.014592,0.776512,0.008608
+1163,701.25,1.42603,2.1545,0.01024,0.453824,0.017216,0.00576,0.006528,0.014048,0.014304,1.62029,0.012288
+1164,372.296,2.68604,1.09869,0.010176,0.252928,0.005952,0.004288,0.008192,0.013792,0.014784,0.778336,0.01024
+1165,672.468,1.48706,1.08387,0.00864,0.228992,0.00448,0.0056,0.007872,0.01296,0.01456,0.790496,0.010272
+1166,657.147,1.52173,1.06496,0.01024,0.224544,0.004832,0.005216,0.007072,0.014336,0.014336,0.774144,0.01024
+1167,612.715,1.63208,2.26237,0.010272,0.237056,0.004352,0.00432,0.019456,0.012832,0.014016,1.94435,0.015712
+1168,394.529,2.53467,1.06925,0.009856,0.234048,0.005664,0.004608,0.008064,0.013568,0.014656,0.770016,0.008768
+1169,679.383,1.47192,1.07341,0.009216,0.226784,0.00464,0.005376,0.006912,0.014144,0.014528,0.782112,0.009696
+1170,663.642,1.50684,1.07251,0.009632,0.231104,0.005024,0.004192,0.008096,0.014208,0.014496,0.776,0.00976
+1171,422.355,2.36768,1.07658,0.012288,0.239648,0.005888,0.00432,0.008192,0.012288,0.016384,0.768,0.009568
+1172,692.945,1.44312,1.0793,0.01024,0.22688,0.004544,0.005536,0.00688,0.014208,0.014336,0.787584,0.009088
+1173,655.15,1.52637,1.08947,0.009472,0.246528,0.00576,0.005632,0.008544,0.012832,0.014336,0.776192,0.010176
+1174,662.89,1.50854,1.12637,0.01024,0.276512,0.005888,0.00432,0.008192,0.013856,0.014336,0.782816,0.010208
+1175,414.701,2.41138,1.7025,0.049472,0.428576,0.005504,0.004736,0.008192,0.014336,0.014048,1.16765,0.009984
+1176,690.376,1.44849,1.07965,0.009216,0.237152,0.00448,0.005888,0.007872,0.012864,0.014336,0.77792,0.00992
+1177,676.801,1.47754,1.0711,0.009952,0.229664,0.006016,0.004224,0.008192,0.012384,0.015616,0.776224,0.008832
+1178,691.658,1.4458,1.08512,0.009728,0.228192,0.005888,0.004352,0.008192,0.014368,0.014304,0.7904,0.009696
+1179,391.962,2.55127,1.09568,0.012224,0.23968,0.006048,0.004192,0.008192,0.014368,0.015424,0.7864,0.009152
+1180,674.461,1.48267,1.09888,0.01024,0.260096,0.005184,0.004992,0.007552,0.013024,0.014304,0.773792,0.009696
+1181,662.354,1.50977,1.09165,0.010016,0.227552,0.005792,0.004448,0.008192,0.013472,0.014528,0.798784,0.008864
+1182,661.392,1.51196,1.07728,0.0088,0.232768,0.0048,0.005376,0.006912,0.014336,0.014336,0.780032,0.00992
+1183,600.147,1.66626,2.09466,0.00992,0.465216,0.008192,0.005536,0.006752,0.014336,0.015392,1.55747,0.01184
+1184,400.94,2.49414,1.11126,0.009728,0.26064,0.005248,0.004992,0.007776,0.012704,0.015392,0.785216,0.009568
+1185,669.5,1.49365,1.1017,0.010176,0.252,0.00528,0.00496,0.007904,0.012544,0.014336,0.784384,0.010112
+1186,657.042,1.52197,1.41936,0.010208,0.261888,0.004384,0.005664,0.006784,0.014176,0.015712,1.08736,0.013184
+1187,423.49,2.36133,1.0752,0.009696,0.236096,0.00592,0.004288,0.008192,0.012288,0.015616,0.772896,0.010208
+1188,682.894,1.46436,1.06426,0.010048,0.225472,0.005312,0.004928,0.007744,0.012864,0.014208,0.77392,0.00976
+1189,675.239,1.48096,1.0753,0.008576,0.226784,0.004576,0.005504,0.006784,0.014304,0.0144,0.784352,0.010016
+1190,458.371,2.18164,1.06787,0.009152,0.226528,0.004768,0.00528,0.00704,0.014336,0.014304,0.777696,0.008768
+1191,613.817,1.62915,1.08749,0.012,0.235808,0.005504,0.004768,0.007968,0.01248,0.015424,0.783296,0.01024
+1192,685.408,1.45898,1.0815,0.009088,0.231296,0.00544,0.004832,0.007584,0.012928,0.015872,0.784768,0.009696
+1193,645.853,1.54834,1.07206,0.009152,0.231456,0.005696,0.004512,0.008064,0.012416,0.015488,0.776224,0.009056
+1194,671.475,1.48926,1.07904,0.0104,0.229216,0.005984,0.004256,0.008192,0.014048,0.0144,0.78256,0.009984
+1195,626.013,1.59741,2.07862,0.00912,0.464896,0.007776,0.004576,0.008128,0.014336,0.014336,1.54339,0.012064
+1196,414.365,2.41333,1.07373,0.008704,0.229376,0.006016,0.004224,0.008192,0.01392,0.014432,0.78,0.008864
+1197,669.39,1.4939,1.0608,0.010208,0.225312,0.005408,0.004832,0.00784,0.01264,0.014336,0.770048,0.010176
+1198,700.53,1.42749,1.08765,0.009568,0.226144,0.004192,0.006144,0.008192,0.014112,0.014304,0.79488,0.010112
+1199,632.392,1.5813,2.10317,0.00912,0.47488,0.006464,0.005952,0.008,0.014368,0.014496,1.5583,0.011584
+1200,402.042,2.4873,1.08125,0.009856,0.231136,0.004768,0.00528,0.007008,0.014336,0.014272,0.784448,0.010144
+1201,681.191,1.46802,1.08032,0.01008,0.229536,0.00576,0.00448,0.008192,0.013568,0.014432,0.784384,0.009888
+1202,654.522,1.52783,1.07725,0.010112,0.235648,0.004096,0.005984,0.00736,0.01328,0.014336,0.777536,0.008896
+1203,448.238,2.23096,1.09936,0.011904,0.230048,0.005152,0.005024,0.007712,0.012832,0.014336,0.802752,0.0096
+1204,651.296,1.5354,1.08154,0.010176,0.243136,0.004928,0.00512,0.007168,0.014336,0.014368,0.772064,0.01024
+1205,682.098,1.46606,1.07318,0.009888,0.230816,0.005056,0.00416,0.009152,0.013248,0.0144,0.777472,0.008992
+1206,664.18,1.50562,1.08819,0.008992,0.231424,0.005344,0.004896,0.007808,0.012672,0.015456,0.791488,0.010112
+1207,408.131,2.4502,1.09958,0.012288,0.249856,0.005568,0.004672,0.00816,0.01232,0.014368,0.782304,0.010048
+1208,685.064,1.45972,1.07894,0.01024,0.233056,0.004512,0.005536,0.006752,0.014336,0.014336,0.780288,0.009888
+1209,670.925,1.49048,1.0809,0.009376,0.228224,0.005792,0.004448,0.009248,0.013184,0.014464,0.7864,0.00976
+1210,663.427,1.50732,1.08166,0.00992,0.226176,0.005632,0.004608,0.008032,0.013632,0.014496,0.789184,0.009984
+1211,427.87,2.33716,1.11843,0.010848,0.26208,0.005664,0.00464,0.008064,0.012416,0.014336,0.790528,0.009856
+1212,675.573,1.48022,1.09363,0.010208,0.245824,0.005792,0.004416,0.008192,0.013568,0.014272,0.78128,0.01008
+1213,657.358,1.52124,1.0847,0.01024,0.233472,0.005408,0.004832,0.008192,0.01376,0.014464,0.784768,0.009568
+1214,657.042,1.52197,1.10426,0.009792,0.23232,0.006016,0.004256,0.009216,0.013312,0.014336,0.804832,0.010176
+1215,611.161,1.63623,1.08339,0.01024,0.239648,0.005632,0.004576,0.007936,0.012544,0.014336,0.77984,0.00864
+1216,703.538,1.42139,1.0992,0.01024,0.253216,0.004832,0.005248,0.00704,0.013792,0.014464,0.780512,0.009856
+1217,665.367,1.50293,1.09056,0.009184,0.250912,0.005056,0.00416,0.009472,0.013024,0.014336,0.774144,0.010272
+1218,663.75,1.50659,1.11878,0.009856,0.246752,0.00544,0.004768,0.007776,0.012704,0.015424,0.805824,0.01024
+1219,639.201,1.56445,1.10778,0.009568,0.25872,0.005952,0.004288,0.008192,0.012288,0.015392,0.783328,0.010048
+1220,675.908,1.47949,1.08326,0.00976,0.231552,0.004448,0.0056,0.008192,0.012832,0.015488,0.78528,0.010112
+1221,655.57,1.52539,1.11398,0.01008,0.252064,0.005184,0.004992,0.007808,0.012736,0.014336,0.796672,0.010112
+1222,662.033,1.5105,1.09859,0.009152,0.24784,0.005696,0.004544,0.00816,0.014304,0.014368,0.784384,0.010144
+1223,595.868,1.67822,1.12026,0.01024,0.264192,0.005824,0.004448,0.00816,0.01232,0.01584,0.79008,0.009152
+1224,685.523,1.45874,1.11821,0.01024,0.25344,0.004608,0.00544,0.006848,0.014336,0.014336,0.79872,0.01024
+1225,654,1.52905,1.10634,0.008608,0.262112,0.005376,0.004896,0.007872,0.012576,0.014336,0.781536,0.009024
+1226,681.758,1.4668,1.09062,0.01024,0.230944,0.004576,0.005504,0.008832,0.013536,0.014368,0.793056,0.009568
+1227,670.376,1.4917,1.07837,0.010144,0.228608,0.00496,0.005216,0.007072,0.013888,0.014656,0.78416,0.009664
+1228,667.753,1.49756,1.09149,0.01024,0.233472,0.005792,0.00448,0.00816,0.013664,0.014368,0.791168,0.010144
+1229,670.816,1.49072,1.08493,0.009728,0.233856,0.004224,0.005856,0.007616,0.013184,0.014304,0.786432,0.009728
+1230,678.82,1.47314,1.08154,0.008992,0.227328,0.005184,0.004992,0.007712,0.012832,0.014336,0.790528,0.009632
+1231,665.583,1.50244,1.07981,0.008704,0.229376,0.00576,0.00448,0.008192,0.013376,0.014752,0.786016,0.009152
+1232,674.572,1.48242,1.08566,0.009664,0.227424,0.0048,0.005536,0.007808,0.01328,0.014336,0.793888,0.008928
+1233,482.109,2.07422,1.12176,0.00976,0.233952,0.005344,0.004896,0.00784,0.01392,0.015104,0.821248,0.009696
+1234,912.656,1.0957,1.09539,0.010176,0.239168,0.005664,0.004992,0.007776,0.014112,0.014336,0.789216,0.009952
+1235,641.504,1.55884,1.11994,0.009728,0.264704,0.00576,0.00448,0.008192,0.013344,0.014464,0.789344,0.00992
+1236,674.461,1.48267,1.1057,0.01008,0.25056,0.005664,0.005632,0.008288,0.013184,0.014272,0.788096,0.00992
+1237,662.033,1.5105,1.08403,0.0088,0.227328,0.005472,0.004768,0.008096,0.013792,0.014976,0.790528,0.010272
+1238,670.486,1.49146,1.09082,0.010176,0.231488,0.004224,0.005824,0.008352,0.013888,0.014496,0.792704,0.009664
+1239,673.463,1.48486,1.07731,0.009856,0.227776,0.005184,0.004864,0.007776,0.012896,0.014336,0.785792,0.008832
+1240,654.209,1.52856,1.10794,0.008992,0.25344,0.004608,0.005472,0.008576,0.013696,0.013216,0.7904,0.009536
+1241,668.953,1.49487,1.10112,0.01024,0.244864,0.004992,0.004224,0.008064,0.013344,0.014816,0.790816,0.00976
+1242,650.675,1.53687,1.10592,0.01024,0.251648,0.004352,0.005728,0.007968,0.012928,0.015552,0.787264,0.01024
+1243,664.935,1.50391,1.09824,0.008608,0.251264,0.00464,0.005664,0.007712,0.013152,0.014432,0.783648,0.00912
+1244,652.749,1.53198,1.10058,0.009152,0.235392,0.005216,0.004992,0.007552,0.012928,0.015776,0.800576,0.008992
+1245,674.683,1.48218,1.08806,0.008736,0.231424,0.005312,0.004928,0.007904,0.012576,0.014336,0.794112,0.008736
+1246,672.357,1.4873,1.08845,0.009312,0.2288,0.004512,0.005536,0.007776,0.013312,0.014336,0.794624,0.01024
+1247,659.369,1.5166,1.08317,0.009696,0.233344,0.004768,0.005856,0.007776,0.012992,0.014336,0.784384,0.010016
+1248,680.851,1.46875,1.07898,0.010208,0.223424,0.00432,0.00576,0.00784,0.013024,0.014336,0.79024,0.009824
+1249,659.794,1.51562,1.09158,0.010016,0.225504,0.005472,0.004768,0.008192,0.01376,0.0144,0.800352,0.00912
+1250,662.033,1.5105,1.0759,0.008896,0.22528,0.005696,0.004544,0.008128,0.0136,0.014656,0.786112,0.008992
+1251,669.281,1.49414,1.09725,0.010208,0.233504,0.005632,0.004608,0.008224,0.012256,0.014336,0.79872,0.00976
+1252,670.706,1.49097,1.0671,0.009952,0.226048,0.00576,0.00448,0.008192,0.013408,0.014272,0.775136,0.009856
+1253,686.442,1.45679,1.08134,0.010016,0.223456,0.00592,0.00432,0.008192,0.013376,0.014496,0.791328,0.01024
+1254,622.303,1.60693,1.09792,0.010144,0.24192,0.005472,0.004768,0.007904,0.014176,0.014656,0.789696,0.009184
+1255,716.084,1.39648,1.07014,0.01024,0.223232,0.005248,0.004992,0.007584,0.012896,0.014336,0.781696,0.00992
+1256,651.192,1.53564,1.07731,0.009664,0.231296,0.004864,0.005216,0.007104,0.014304,0.014368,0.780256,0.01024
+1257,695.534,1.43774,1.08096,0.008576,0.22528,0.005184,0.004992,0.00768,0.012864,0.014336,0.792288,0.00976
+1258,660.965,1.51294,1.09098,0.01024,0.22528,0.005312,0.004928,0.008192,0.013856,0.01424,0.799168,0.00976
+1259,623.915,1.60278,1.11568,0.010048,0.256192,0.005984,0.005696,0.007904,0.013184,0.014336,0.792576,0.00976
+1260,666.016,1.50146,1.08013,0.010144,0.225664,0.00464,0.00528,0.007008,0.014336,0.014336,0.78848,0.01024
+1261,651.918,1.53394,1.09715,0.009856,0.256832,0.00576,0.00448,0.008192,0.012288,0.015712,0.774528,0.009504
+1262,673.906,1.48389,1.08134,0.01024,0.229376,0.005312,0.004928,0.007904,0.012576,0.014336,0.787488,0.009184
+1263,670.267,1.49194,1.07766,0.008608,0.229056,0.004416,0.005632,0.007808,0.013152,0.014368,0.78592,0.008704
+1264,645.141,1.55005,1.08544,0.01024,0.228576,0.004896,0.00576,0.00784,0.013024,0.014336,0.790528,0.01024
+1265,683.35,1.46338,1.09773,0.009888,0.229888,0.005856,0.004384,0.008192,0.012288,0.014336,0.802816,0.01008
+1266,673.684,1.48438,1.08342,0.01024,0.230624,0.004896,0.005152,0.007136,0.013952,0.014144,0.787008,0.010272
+1267,666.558,1.50024,1.09363,0.00992,0.247488,0.004736,0.005344,0.006944,0.014304,0.014368,0.780288,0.01024
+1268,672.247,1.48755,1.13021,0.01024,0.247584,0.00432,0.006144,0.008192,0.014144,0.014208,0.815424,0.009952
+1269,651.089,1.53589,1.09773,0.010176,0.243776,0.00544,0.0048,0.007616,0.012864,0.014336,0.78992,0.0088
+1270,650.365,1.5376,1.1039,0.01024,0.256,0.005824,0.004416,0.008192,0.014176,0.014464,0.781408,0.009184
+1271,668.407,1.49609,1.09392,0.009728,0.24864,0.00576,0.004448,0.008192,0.013472,0.014272,0.779168,0.01024
+1272,666.233,1.50098,1.09264,0.010144,0.245152,0.0048,0.00528,0.007008,0.013728,0.014496,0.782336,0.009696
+1273,659.794,1.51562,1.09363,0.01024,0.24368,0.004128,0.005952,0.00768,0.012992,0.014336,0.785632,0.008992
+1274,665.692,1.5022,1.0928,0.01024,0.251904,0.005152,0.005024,0.008256,0.013952,0.01472,0.774144,0.009408
+1275,627.739,1.59302,1.09085,0.01024,0.239616,0.0056,0.004672,0.008128,0.01232,0.014336,0.78608,0.009856
+1276,673.241,1.48535,1.06688,0.01024,0.223136,0.004192,0.005888,0.007744,0.012992,0.014368,0.778208,0.010112
+1277,681.871,1.46655,1.08374,0.009056,0.224736,0.00464,0.00544,0.00688,0.013792,0.014784,0.794688,0.009728
+1278,675.128,1.4812,1.07741,0.009856,0.223968,0.005568,0.004672,0.008,0.0136,0.0144,0.787296,0.010048
+1279,636.519,1.57104,1.07763,0.00864,0.230656,0.004864,0.005184,0.007104,0.013888,0.0144,0.78272,0.010176
+1280,614.369,1.62769,1.0783,0.010208,0.230464,0.005088,0.004096,0.008192,0.014048,0.014176,0.782464,0.009568
+1281,669.39,1.4939,1.07318,0.010048,0.225472,0.0056,0.00464,0.008096,0.013472,0.0144,0.782496,0.00896
+1282,649.952,1.53857,1.0711,0.009824,0.227744,0.005728,0.004512,0.008224,0.013632,0.014528,0.777888,0.009024
+1283,672.909,1.48608,1.08102,0.009536,0.233664,0.004928,0.005216,0.007072,0.014112,0.014592,0.781984,0.00992
+1284,656.305,1.52368,2.55181,0.01008,0.232896,0.004832,0.004128,0.008128,0.01232,0.014368,2.25053,0.014528
+1285,338.289,2.95605,1.09773,0.010272,0.237536,0.005664,0.004576,0.009472,0.013056,0.014368,0.793952,0.008832
+1286,666.558,1.50024,1.0711,0.01024,0.226912,0.004512,0.005536,0.006784,0.014304,0.014336,0.77824,0.01024
+1287,642.308,1.55688,1.92237,0.009408,0.234464,0.004128,0.005952,0.007616,0.013088,0.015488,1.61878,0.01344
+1288,394.986,2.53174,1.07517,0.00976,0.22832,0.005728,0.004512,0.008224,0.0136,0.01472,0.780608,0.009696
+1289,673.131,1.4856,1.08429,0.009088,0.231424,0.005664,0.005696,0.007104,0.01392,0.014336,0.786816,0.01024
+1290,680.399,1.46973,1.06701,0.01008,0.226912,0.004672,0.005408,0.00688,0.014176,0.014112,0.774528,0.01024
+1291,615.015,1.62598,2.19341,0.00976,0.25648,0.00512,0.004992,0.007712,0.012896,0.014336,1.63971,0.2424
+1292,394.187,2.53687,1.08304,0.009728,0.230208,0.005248,0.00496,0.00784,0.012672,0.014336,0.788416,0.009632
+1293,573.268,1.74438,1.08122,0.01024,0.240864,0.004896,0.005152,0.007136,0.014336,0.015456,0.773024,0.010112
+1294,804.873,1.24243,1.08387,0.00864,0.233504,0.005696,0.004512,0.008192,0.013792,0.014176,0.7864,0.00896
+1295,666.45,1.50049,2.31834,0.01024,0.231424,0.005728,0.004512,0.008192,0.013344,0.01328,2.01933,0.012288
+1296,359.708,2.78003,1.08342,0.009728,0.233984,0.00512,0.004992,0.008,0.012608,0.014336,0.78544,0.009216
+1297,666.667,1.5,1.08362,0.009088,0.224768,0.004608,0.005536,0.006752,0.01392,0.014432,0.794912,0.0096
+1298,662.033,1.5105,1.0951,0.010176,0.227424,0.005664,0.004576,0.00784,0.01264,0.015392,0.801568,0.009824
+1299,649.128,1.54053,2.27533,0.009984,0.239872,0.005344,0.004896,0.008192,0.01376,0.01488,1.96202,0.016384
+1300,374.03,2.67358,1.07782,0.010176,0.229792,0.0056,0.00464,0.008128,0.01376,0.014368,0.782496,0.008864
+1301,676.913,1.47729,1.08112,0.0088,0.233472,0.005632,0.004608,0.008032,0.012448,0.014336,0.784384,0.009408
+1302,643.317,1.55444,1.08582,0.010592,0.234624,0.004992,0.004224,0.008096,0.014176,0.014496,0.7856,0.009024
+1303,399.805,2.50122,1.12614,0.012032,0.248064,0.005312,0.004928,0.007904,0.012576,0.014336,0.811008,0.009984
+1304,681.758,1.4668,1.10387,0.010272,0.229344,0.005856,0.004384,0.008192,0.013568,0.014432,0.80912,0.008704
+1305,662.89,1.50854,1.07558,0.009792,0.223296,0.00496,0.005344,0.00704,0.014144,0.014432,0.786432,0.010144
+1306,677.585,1.47583,1.07418,0.01024,0.224736,0.00464,0.005408,0.006912,0.014304,0.014336,0.783744,0.009856
+1307,426.978,2.34204,1.07914,0.012288,0.230464,0.005056,0.004192,0.008096,0.013856,0.014272,0.780832,0.01008
+1308,680.512,1.46948,1.07523,0.010304,0.223168,0.00528,0.00496,0.008192,0.014272,0.0144,0.785888,0.008768
+1309,682.553,1.46509,1.0793,0.010176,0.225344,0.005152,0.005024,0.00784,0.012704,0.014336,0.7896,0.00912
+1310,648.614,1.54175,1.0793,0.01024,0.223232,0.005376,0.004864,0.008192,0.013984,0.01424,0.789984,0.009184
+1311,391.288,2.55566,2.35494,0.009536,1.49779,0.007424,0.004864,0.008192,0.014336,0.014336,0.78848,0.009984
+1312,581.901,1.71851,1.09146,0.01024,0.233088,0.00448,0.005632,0.006688,0.014304,0.014336,0.792576,0.010112
+1313,685.753,1.45825,1.07082,0.0096,0.221824,0.005216,0.004448,0.008128,0.012928,0.01424,0.78448,0.009952
+1314,610.979,1.63672,1.09392,0.00992,0.24224,0.005216,0.004992,0.007616,0.012896,0.014336,0.78768,0.009024
+1315,541.155,1.8479,2.11168,0.009792,0.404096,0.005152,0.004992,0.008224,0.01424,0.014176,1.63981,0.0112
+1316,478.84,2.08838,1.08714,0.009664,0.235872,0.004384,0.005664,0.008032,0.012928,0.014336,0.786432,0.009824
+1317,614.554,1.6272,1.0689,0.01024,0.22448,0.004896,0.005408,0.00688,0.01392,0.01456,0.778432,0.01008
+1318,676.131,1.479,1.11411,0.010144,0.245856,0.005376,0.004864,0.008128,0.013664,0.014464,0.80272,0.008896
+1319,559.945,1.78589,2.02563,0.011872,0.405696,0.004416,0.005728,0.007648,0.013248,0.014336,1.55203,0.010656
+1320,331.338,3.01807,1.11411,0.01024,0.241088,0.004672,0.005408,0.00704,0.016224,0.028064,0.792416,0.00896
+1321,825.141,1.21191,1.08186,0.009184,0.236992,0.004672,0.005408,0.007008,0.013728,0.014432,0.78064,0.009792
+1322,808.049,1.23755,1.44858,0.010208,0.240288,0.00512,0.004992,0.007808,0.0128,0.014336,1.1383,0.01472
+1323,411.617,2.42944,1.08954,0.009888,0.242048,0.005984,0.004224,0.008192,0.013952,0.014656,0.781504,0.009088
+1324,771.956,1.29541,1.10301,0.01024,0.249856,0.005952,0.004288,0.008192,0.013728,0.014336,0.786816,0.0096
+1325,662.676,1.50903,1.10195,0.009888,0.248544,0.005888,0.004352,0.008192,0.013472,0.014464,0.787168,0.009984
+1326,647.896,1.54346,1.45242,0.009888,0.256576,0.004256,0.006016,0.007648,0.01296,0.014336,1.12643,0.014304
+1327,409.518,2.44189,1.10179,0.010048,0.252096,0.004096,0.005792,0.00784,0.012992,0.014368,0.784352,0.010208
+1328,534.377,1.87134,1.11597,0.008864,0.25536,0.004736,0.005344,0.006944,0.014336,0.014336,0.796416,0.009632
+1329,900.814,1.11011,1.09568,0.01024,0.235232,0.004384,0.005696,0.008608,0.01232,0.014336,0.794624,0.01024
+1330,638.703,1.56567,1.10637,0.010176,0.254464,0.00528,0.00496,0.007744,0.012736,0.015392,0.7864,0.009216
+1331,432.981,2.30957,1.09773,0.012288,0.2408,0.00496,0.005408,0.00688,0.014144,0.01456,0.788448,0.01024
+1332,692.009,1.44507,1.06941,0.009952,0.229376,0.00496,0.00512,0.007168,0.014304,0.0144,0.774112,0.010016
+1333,680.738,1.46899,1.07747,0.01024,0.225312,0.005504,0.004704,0.00816,0.01232,0.014464,0.787968,0.0088
+1334,643.216,1.55469,1.39856,0.01024,0.229376,0.005632,0.004608,0.007968,0.014144,0.013952,1.09651,0.016128
+1335,437.607,2.28516,1.06906,0.01024,0.227328,0.005664,0.004576,0.00816,0.01232,0.015392,0.775136,0.01024
+1336,677.697,1.47559,1.08819,0.008896,0.233472,0.005216,0.004992,0.008224,0.014176,0.014528,0.789696,0.008992
+1337,656.621,1.52295,1.07136,0.009184,0.229056,0.004416,0.005632,0.008128,0.012864,0.014336,0.777952,0.009792
+1338,620.982,1.61035,1.11664,0.01072,0.260096,0.005664,0.004576,0.008064,0.013536,0.014336,0.789408,0.01024
+1339,519.863,1.92358,2.07018,0.014432,0.44992,0.004736,0.005408,0.007936,0.01328,0.014336,1.54829,0.01184
+1340,399.805,2.50122,1.11821,0.01024,0.267936,0.004448,0.005632,0.007872,0.01312,0.014336,0.784416,0.010208
+1341,705.72,1.41699,1.08749,0.009696,0.225824,0.005664,0.004576,0.008192,0.012288,0.015456,0.795552,0.01024
+1342,619.855,1.61328,1.87466,0.008928,0.2576,0.004544,0.005536,0.007872,0.014944,0.014656,1.54826,0.01232
+1343,410.051,2.43872,1.0881,0.009056,0.23552,0.005536,0.004704,0.007936,0.012544,0.015424,0.787392,0.009984
+1344,626.587,1.59595,1.09978,0.009856,0.24,0.005408,0.004864,0.007968,0.013632,0.013184,0.79568,0.009184
+1345,695.18,1.43848,1.09763,0.009888,0.229728,0.005184,0.004992,0.00768,0.012864,0.014368,0.80272,0.010208
+1346,524.926,1.90503,1.41133,0.009152,0.284672,0.005152,0.005024,0.007808,0.012736,0.014336,1.05798,0.014464
+1347,493.375,2.02686,1.10755,0.012288,0.253856,0.004192,0.005856,0.007872,0.012896,0.014336,0.786432,0.009824
+1348,683.008,1.46411,1.09869,0.00912,0.255552,0.004544,0.005536,0.007904,0.013184,0.014336,0.779328,0.009184
+1349,640.3,1.56177,1.08992,0.010176,0.239776,0.004608,0.005472,0.006816,0.014176,0.014496,0.784384,0.010016
+1350,706.207,1.41602,1.42778,0.009888,0.239936,0.004448,0.014336,0.008192,0.01376,0.014496,1.10838,0.014336
+1351,429.08,2.33057,1.08752,0.016384,0.23456,0.005056,0.004128,0.00816,0.013568,0.014176,0.782912,0.008576
+1352,679.27,1.47217,1.08714,0.009952,0.240928,0.005088,0.004128,0.008192,0.014208,0.014336,0.780416,0.009888
+1353,668.08,1.49683,1.07651,0.00992,0.226624,0.005056,0.00416,0.008192,0.012288,0.014336,0.786304,0.009632
+1354,584.058,1.71216,1.42525,0.010176,0.241344,0.005088,0.00416,0.008128,0.013952,0.012672,1.11411,0.015616
+1355,418.728,2.38818,1.10365,0.01024,0.260096,0.005728,0.004512,0.008192,0.01344,0.01504,0.776384,0.010016
+1356,820.02,1.21948,1.07158,0.010016,0.232128,0.004096,0.005952,0.007712,0.01296,0.014336,0.775456,0.008928
+1357,647.691,1.54395,1.07523,0.00992,0.231744,0.005184,0.004992,0.007808,0.012768,0.014304,0.779424,0.009088
+1358,662.569,1.50928,1.42483,0.01024,0.237568,0.005856,0.004416,0.00816,0.013504,0.014368,1.11491,0.015808
+1359,429.395,2.32886,1.08099,0.009696,0.23584,0.004672,0.005632,0.008672,0.013536,0.014464,0.778944,0.009536
+1360,465.666,2.14746,1.09747,0.009952,0.237856,0.005728,0.004544,0.008192,0.013888,0.014656,0.792704,0.009952
+1361,1124.35,0.889404,1.09184,0.010144,0.235872,0.005984,0.004256,0.008192,0.013472,0.014304,0.79088,0.008736
+1362,656.2,1.52393,1.08762,0.009888,0.239776,0.004384,0.005696,0.007712,0.013216,0.014336,0.78352,0.009088
+1363,437.747,2.28442,1.12051,0.010976,0.277504,0.005088,0.004128,0.008192,0.013568,0.013184,0.778112,0.00976
+1364,537.251,1.86133,1.13264,0.01024,0.284608,0.00416,0.00592,0.007776,0.012928,0.014336,0.78384,0.008832
+1365,841.413,1.18848,1.08134,0.009984,0.235104,0.004768,0.005312,0.007008,0.014112,0.0144,0.781696,0.00896
+1366,640.1,1.56226,1.42109,0.009856,0.236256,0.005376,0.004864,0.007968,0.014048,0.01456,1.11398,0.014176
+1367,417.661,2.39429,1.10774,0.009856,0.254336,0.005984,0.004256,0.008192,0.013408,0.014592,0.787104,0.010016
+1368,690.26,1.44873,1.08182,0.009856,0.231712,0.004672,0.005408,0.00688,0.014336,0.014368,0.785952,0.00864
+1369,636.025,1.57227,1.14282,0.009536,0.284608,0.004864,0.005184,0.013248,0.01344,0.029568,0.772096,0.010272
+1370,671.586,1.48901,1.11571,0.009696,0.266784,0.005856,0.004384,0.008192,0.014336,0.014336,0.782304,0.009824
+1371,416.345,2.40186,1.1049,0.01232,0.24992,0.005024,0.004192,0.008096,0.013696,0.01456,0.788224,0.008864
+1372,676.242,1.47876,1.0776,0.010176,0.233888,0.006112,0.00416,0.00816,0.013728,0.014272,0.778112,0.008992
+1373,676.913,1.47729,1.08502,0.009472,0.234112,0.004448,0.005632,0.007744,0.013152,0.0144,0.786464,0.0096
+1374,633.076,1.57959,1.12509,0.019136,0.251904,0.006048,0.004192,0.008192,0.013728,0.014432,0.798304,0.009152
+1375,445.993,2.24219,1.1264,0.012192,0.265472,0.00496,0.004224,0.008064,0.014336,0.014368,0.794112,0.008672
+1376,663.535,1.50708,1.11107,0.01024,0.243712,0.005792,0.004448,0.007968,0.0136,0.013344,0.802176,0.009792
+1377,660.965,1.51294,1.0937,0.009856,0.246208,0.005248,0.004992,0.008032,0.012448,0.014336,0.782336,0.01024
+1378,666.667,1.5,1.10182,0.009792,0.256448,0.005344,0.004896,0.007872,0.012608,0.014336,0.780288,0.01024
+1379,448.631,2.229,1.11616,0.012288,0.243648,0.00416,0.00592,0.00768,0.013024,0.014336,0.804864,0.01024
+1380,679.158,1.47241,1.08682,0.009856,0.225664,0.004096,0.005984,0.008032,0.012608,0.014336,0.796384,0.009856
+1381,662.247,1.51001,1.08138,0.009952,0.233056,0.0048,0.005248,0.008256,0.01312,0.014336,0.783808,0.0088
+1382,644.025,1.55273,1.09978,0.010176,0.232576,0.005056,0.00416,0.008128,0.03024,0.014656,0.786112,0.008672
+1383,535.495,1.86743,1.67939,0.012288,0.456064,0.004768,0.00592,0.00784,0.014752,0.014336,1.15315,0.010272
+1384,490.892,2.03711,1.08954,0.01024,0.237568,0.005728,0.004512,0.008192,0.013952,0.014336,0.786016,0.008992
+1385,703.055,1.42236,1.08758,0.009472,0.227424,0.004864,0.005184,0.007104,0.01392,0.014432,0.794944,0.01024
+1386,680.06,1.47046,1.07219,0.01024,0.22656,0.004864,0.005408,0.00688,0.014336,0.014336,0.780096,0.009472
+1387,530.021,1.88672,1.57286,0.01024,0.710656,0.00768,0.004608,0.008192,0.014336,0.014336,0.792608,0.010208
+1388,621.453,1.60913,1.11139,0.0104,0.237408,0.006112,0.004128,0.008192,0.013664,0.014784,0.807104,0.0096
+1389,595.003,1.68066,1.12035,0.009408,0.2376,0.004992,0.004224,0.024128,0.012608,0.014336,0.802816,0.01024
+1390,702.332,1.42383,1.07837,0.01024,0.23552,0.005984,0.004256,0.008192,0.013696,0.014464,0.776544,0.009472
+1391,655.046,1.52661,2.31459,0.008896,0.259616,0.004576,0.005504,0.007904,0.013184,0.014368,1.98794,0.012608
+1392,336.953,2.96777,1.1223,0.01024,0.269728,0.004704,0.005376,0.007968,0.01328,0.014336,0.786432,0.01024
+1393,711.605,1.40527,1.08656,0.009472,0.239808,0.004672,0.005344,0.006944,0.013984,0.014656,0.782016,0.009664
+1394,667.21,1.49878,1.0888,0.010272,0.235488,0.0056,0.00464,0.008064,0.013696,0.014432,0.787104,0.009504
+1395,628.414,1.59131,2.48688,0.0088,0.444416,0.032768,0.016384,0.008128,0.014272,0.014336,1.93549,0.012288
+1396,357.105,2.80029,1.09376,0.010208,0.254112,0.005248,0.004992,0.007776,0.012704,0.015488,0.774336,0.008896
+1397,652.125,1.53345,1.10342,0.009504,0.25488,0.005952,0.004256,0.008192,0.013408,0.014784,0.78272,0.009728
+1398,672.909,1.48608,1.12016,0.009888,0.259968,0.005056,0.004128,0.00816,0.013792,0.014336,0.78288,0.021952
+1399,398.134,2.51172,1.09363,0.012288,0.241664,0.005344,0.004928,0.00816,0.01424,0.014368,0.783616,0.009024
+1400,590.712,1.69287,1.09389,0.009056,0.249888,0.005856,0.004384,0.00816,0.013792,0.014784,0.778304,0.009664
+1401,799.064,1.25146,1.08096,0.01024,0.227328,0.005408,0.004864,0.007968,0.01248,0.014336,0.78848,0.009856
+1402,629.766,1.58789,1.44733,0.009856,0.24976,0.004576,0.005472,0.00784,0.013312,0.014336,1.12816,0.014016
+1403,440.999,2.26758,1.07114,0.008864,0.23504,0.004544,0.005536,0.008704,0.012384,0.015424,0.770848,0.009792
+1404,658.627,1.51831,1.08752,0.01024,0.227328,0.005664,0.004576,0.008192,0.013888,0.014336,0.794464,0.008832
+1405,652.541,1.53247,1.09405,0.00864,0.251648,0.00432,0.005728,0.00784,0.013056,0.014336,0.779488,0.008992
+1406,668.08,1.49683,1.44589,0.010272,0.247776,0.00528,0.00496,0.007808,0.012672,0.015424,1.12733,0.014368
+1407,427.959,2.33667,1.06749,0.008672,0.232448,0.004896,0.00432,0.008192,0.013568,0.014336,0.77216,0.008896
+1408,695.652,1.4375,1.09014,0.009152,0.229088,0.004256,0.005792,0.007968,0.012864,0.014336,0.796672,0.010016
+1409,664.073,1.50586,1.08525,0.01024,0.2288,0.004672,0.005408,0.007008,0.013664,0.01456,0.790848,0.010048
+1410,632.196,1.58179,1.08013,0.009024,0.23936,0.004352,0.005728,0.007712,0.013184,0.014368,0.777312,0.009088
+1411,627.259,1.59424,1.73274,0.009472,0.449504,0.034464,0.005536,0.007008,0.014336,0.014336,1.18886,0.009216
+1412,458.833,2.17944,1.08998,0.010144,0.234048,0.005696,0.004512,0.008064,0.014016,0.0144,0.790368,0.008736
+1413,659.475,1.51636,1.07523,0.009728,0.225696,0.004192,0.005888,0.007968,0.012768,0.014336,0.785504,0.009152
+1414,647.691,1.54395,1.1039,0.009824,0.26256,0.004096,0.005984,0.007776,0.012864,0.0144,0.776128,0.010272
+1415,443.434,2.25513,1.12576,0.011872,0.258624,0.00432,0.00576,0.007648,0.013216,0.014272,0.800224,0.009824
+1416,667.753,1.49756,1.08346,0.010144,0.228128,0.006016,0.004224,0.009312,0.013216,0.014336,0.788448,0.009632
+1417,653.895,1.5293,1.09283,0.009472,0.25232,0.00448,0.005792,0.00784,0.012992,0.014336,0.775776,0.009824
+1418,672.247,1.48755,1.11485,0.00912,0.255808,0.0056,0.00464,0.008192,0.01344,0.014496,0.79472,0.008832
+1419,402.437,2.48486,1.12198,0.012288,0.27024,0.004672,0.005408,0.007936,0.013024,0.014304,0.784384,0.009728
+1420,678.595,1.47363,1.07226,0.010144,0.225408,0.00592,0.00432,0.00816,0.014048,0.014528,0.78016,0.009568
+1421,675.462,1.48047,1.08547,0.01008,0.229216,0.004416,0.005632,0.007744,0.01312,0.014368,0.790624,0.010272
+1422,653.165,1.53101,1.0793,0.010336,0.227232,0.005696,0.004576,0.00816,0.013856,0.014272,0.784928,0.01024
+1423,436.023,2.29346,1.07722,0.012,0.231744,0.00432,0.005728,0.007904,0.012992,0.014336,0.77824,0.009952
+1424,647.691,1.54395,1.07523,0.010272,0.23344,0.005632,0.00464,0.00816,0.013504,0.014272,0.77632,0.008992
+1425,687.248,1.45508,1.08221,0.009216,0.229376,0.00576,0.00576,0.007008,0.013728,0.014432,0.786848,0.01008
+1426,664.827,1.50415,1.0752,0.01024,0.229184,0.004288,0.005792,0.007712,0.01312,0.014336,0.781344,0.009184
+1427,671.145,1.48999,2.09306,0.009792,0.4664,0.007136,0.005664,0.007648,0.014592,0.014784,1.55581,0.011232
+1428,397.361,2.5166,1.07526,0.01024,0.229376,0.005728,0.004512,0.008192,0.013408,0.01328,0.781664,0.008864
+1429,679.947,1.4707,1.06672,0.009792,0.223712,0.00592,0.00432,0.008192,0.01232,0.0144,0.778144,0.00992
+1430,683.008,1.46411,1.08579,0.009728,0.224096,0.005728,0.004512,0.008064,0.013664,0.014752,0.796384,0.008864
+1431,606.635,1.64844,2.10288,0.008608,0.475104,0.007296,0.004992,0.008192,0.014336,0.014336,1.55818,0.01184
+1432,414.281,2.41382,1.08134,0.009824,0.22672,0.005088,0.004128,0.008224,0.013824,0.0144,0.788896,0.01024
+1433,674.794,1.48193,1.10186,0.010272,0.24976,0.00416,0.00592,0.007648,0.013056,0.014336,0.787744,0.00896
+1434,648.512,1.54199,1.07318,0.009568,0.229216,0.004896,0.00416,0.008192,0.013952,0.014464,0.779712,0.009024
+1435,435.235,2.29761,1.09136,0.012224,0.231424,0.00416,0.005952,0.008384,0.013312,0.014368,0.79152,0.010016
+1436,682.212,1.46582,1.0768,0.010208,0.226464,0.004992,0.004192,0.008096,0.013664,0.0144,0.784992,0.009792
+1437,468.168,2.13599,1.09501,0.01024,0.237568,0.005472,0.004768,0.007744,0.012576,0.015552,0.79136,0.009728
+1438,673.795,1.48413,1.91427,0.009728,0.22704,0.004896,0.004128,0.008192,0.013824,0.014464,1.61958,0.012416
+1439,390.914,2.55811,1.09379,0.00912,0.247424,0.00448,0.0056,0.008704,0.013344,0.014688,0.780832,0.0096
+1440,668.735,1.49536,1.07981,0.009888,0.226144,0.00512,0.005024,0.007648,0.012928,0.014368,0.789792,0.008896
+1441,666.667,1.5,1.09402,0.009888,0.242368,0.00592,0.00432,0.008192,0.013664,0.01472,0.784672,0.010272
+1442,664.611,1.50464,1.43565,0.01024,0.257984,0.00416,0.00592,0.00784,0.012864,0.014336,1.10765,0.014656
+1443,422.966,2.36426,1.09987,0.009632,0.25168,0.004928,0.00512,0.007168,0.01376,0.014368,0.784352,0.008864
+1444,685.638,1.4585,1.0673,0.009568,0.227296,0.005056,0.00416,0.008128,0.01376,0.01424,0.776288,0.0088
+1445,455.972,2.19312,1.12656,0.008736,0.256,0.005408,0.004832,0.007808,0.012704,0.014304,0.806912,0.009856
+1446,1137.46,0.87915,1.9047,0.009088,0.247168,0.004736,0.005344,0.006944,0.014336,0.014336,1.58925,0.013504
+1447,396.477,2.52222,1.08224,0.009088,0.229408,0.005952,0.004288,0.008192,0.013792,0.014592,0.78672,0.010208
+1448,648.512,1.54199,1.10595,0.009792,0.256448,0.00592,0.00432,0.008192,0.013696,0.012992,0.78432,0.010272
+1449,663.75,1.50659,1.08243,0.009216,0.23552,0.005952,0.004288,0.008192,0.013312,0.01456,0.782784,0.008608
+1450,651.192,1.53564,1.86778,0.01024,0.260096,0.005344,0.004896,0.007968,0.012672,0.015584,1.53853,0.012448
+1451,403.746,2.47681,1.11171,0.009792,0.26,0.004672,0.005408,0.00688,0.014368,0.014176,0.78656,0.009856
+1452,672.357,1.4873,1.08547,0.01024,0.224992,0.004384,0.00592,0.007712,0.012992,0.015424,0.794624,0.009184
+1453,661.819,1.51099,1.0752,0.009952,0.225536,0.004128,0.00592,0.007936,0.012768,0.014336,0.785696,0.008928
+1454,557.734,1.79297,2.34717,0.00992,0.243808,0.00432,0.005792,0.007648,0.013184,0.015488,2.03558,0.011424
+1455,385.361,2.59497,1.10182,0.01024,0.256,0.005664,0.004576,0.008192,0.012352,0.01552,0.780128,0.009152
+1456,698.738,1.43115,1.0711,0.01024,0.22448,0.004896,0.005152,0.00848,0.012992,0.014336,0.781696,0.008832
+1457,668.407,1.49609,1.06154,0.008864,0.228352,0.005056,0.00416,0.008192,0.014176,0.0144,0.769824,0.008512
+1458,641.403,1.55908,1.8728,0.00912,0.260064,0.005856,0.004384,0.008192,0.013504,0.014432,1.54493,0.01232
+1459,372.059,2.68774,1.0896,0.009504,0.228352,0.0056,0.004704,0.008128,0.014144,0.0144,0.794752,0.010016
+1460,657.464,1.521,1.06675,0.009888,0.227424,0.004928,0.00512,0.007168,0.013824,0.014176,0.774528,0.009696
+1461,681.078,1.46826,1.09379,0.009152,0.230688,0.004832,0.004256,0.008032,0.013888,0.014368,0.798784,0.009792
+1462,441.712,2.26392,1.06941,0.012704,0.229376,0.004096,0.005984,0.007808,0.012832,0.014336,0.772096,0.010176
+1463,598.83,1.66992,1.08154,0.009088,0.247808,0.005184,0.004992,0.007808,0.012736,0.014336,0.769984,0.0096
+1464,664.288,1.50537,1.0711,0.009824,0.22992,0.00592,0.00432,0.008192,0.014368,0.014336,0.774112,0.010112
+1465,764.607,1.30786,1.10419,0.009184,0.251808,0.004192,0.005856,0.007648,0.013152,0.014304,0.78848,0.009568
+1466,534.238,1.87183,2.5088,0.00976,0.252352,0.004128,0.005952,0.007712,0.01296,0.014368,2.1887,0.012864
+1467,393.884,2.53882,1.06762,0.009024,0.228992,0.004256,0.005792,0.008096,0.013824,0.014464,0.772928,0.01024
+1468,677.809,1.47534,1.06954,0.010176,0.22784,0.005472,0.004768,0.007968,0.012512,0.014336,0.776192,0.010272
+1469,679.27,1.47217,1.38413,0.00944,0.228352,0.004096,0.006144,0.008192,0.01392,0.01424,1.0856,0.014144
+1470,478.896,2.08813,1.08157,0.009728,0.250624,0.004288,0.005824,0.007776,0.013024,0.014368,0.76592,0.010016
+1471,685.523,1.45874,1.09571,0.010208,0.224832,0.004576,0.005504,0.008416,0.012704,0.014368,0.806208,0.008896
+1472,653.165,1.53101,1.06806,0.009248,0.22656,0.004832,0.005216,0.007072,0.014112,0.01456,0.777376,0.009088
+1473,675.908,1.47949,1.06515,0.008704,0.226592,0.004832,0.005216,0.007072,0.013408,0.014592,0.774816,0.00992
+1474,618.078,1.61792,1.10717,0.01024,0.26624,0.005792,0.004448,0.008192,0.013344,0.01328,0.776032,0.0096
+1475,729.865,1.37012,1.07056,0.008608,0.227264,0.004096,0.005952,0.00784,0.012832,0.014336,0.780096,0.009536
+1476,669.172,1.49438,1.07315,0.010272,0.225248,0.00528,0.004992,0.00816,0.014176,0.014496,0.780288,0.01024
+1477,658.415,1.5188,1.08778,0.00864,0.249696,0.005216,0.004992,0.008224,0.013568,0.014176,0.773024,0.01024
+1478,679.158,1.47241,1.06864,0.01024,0.229376,0.005728,0.004512,0.008192,0.014336,0.014336,0.772096,0.009824
+1479,658.415,1.5188,1.06288,0.009536,0.22832,0.005824,0.004416,0.008192,0.013472,0.014496,0.768704,0.00992
+1480,685.179,1.45947,1.068,0.009184,0.225312,0.005248,0.00496,0.007904,0.012576,0.014368,0.77952,0.008928
+1481,675.128,1.4812,1.06112,0.009888,0.2272,0.004832,0.005184,0.008224,0.013216,0.014336,0.768,0.01024
+1482,603.418,1.65723,1.09456,0.00912,0.25104,0.00496,0.00512,0.007168,0.014208,0.014464,0.778304,0.010176
+1483,727.919,1.37378,1.06154,0.009952,0.228288,0.005856,0.004416,0.008192,0.01344,0.014528,0.766784,0.01008
+1484,678.483,1.47388,1.08752,0.009888,0.24944,0.005056,0.004128,0.009312,0.013184,0.014336,0.772096,0.01008
+1485,680.738,1.46899,1.07312,0.008896,0.229152,0.00432,0.005728,0.007936,0.01296,0.015456,0.76816,0.020512
+1486,661.285,1.51221,1.10192,0.01024,0.258048,0.005376,0.004864,0.007904,0.013696,0.014624,0.77872,0.008448
+1487,671.255,1.48975,1.06957,0.009152,0.226976,0.004448,0.0056,0.006688,0.01424,0.014432,0.77824,0.009792
+1488,632.489,1.58105,1.06906,0.01024,0.231424,0.005952,0.004288,0.008192,0.015488,0.014624,0.768608,0.01024
+1489,685.294,1.45923,1.08099,0.009856,0.23312,0.004832,0.005216,0.007072,0.013792,0.014464,0.782752,0.009888
+1490,672.357,1.4873,1.06323,0.00896,0.231008,0.004512,0.005568,0.008608,0.0136,0.014304,0.76688,0.009792
+1491,673.573,1.48462,1.06294,0.00976,0.223008,0.0048,0.005248,0.00704,0.013888,0.014368,0.775936,0.008896
+1492,562.406,1.77808,1.07242,0.01024,0.237504,0.00416,0.005888,0.00784,0.012896,0.015648,0.76864,0.0096
+1493,817.402,1.22339,1.06928,0.00896,0.237568,0.00608,0.00416,0.008192,0.013888,0.014528,0.766208,0.009696
+1494,669.609,1.49341,1.09619,0.009888,0.25072,0.005472,0.004768,0.008064,0.012544,0.014208,0.781472,0.009056
+1495,675.016,1.48145,1.0752,0.01024,0.23136,0.00416,0.00592,0.00752,0.013184,0.014336,0.77824,0.01024
+1496,660.539,1.51392,1.08298,0.009888,0.248544,0.005472,0.0048,0.007968,0.01248,0.014336,0.769824,0.009664
+1497,663.427,1.50732,1.10803,0.009056,0.26624,0.005152,0.004992,0.007904,0.012672,0.014336,0.778112,0.009568
+1498,659.794,1.51562,1.0985,0.009984,0.248704,0.004192,0.005888,0.007808,0.012928,0.014336,0.785792,0.008864
+1499,676.577,1.47803,1.06883,0.009856,0.225664,0.005504,0.004736,0.007776,0.012704,0.015584,0.776992,0.010016
+1500,667.21,1.49878,1.05741,0.008832,0.22528,0.005152,0.005024,0.007808,0.012736,0.014336,0.769216,0.009024
+1501,678.933,1.4729,1.06966,0.008768,0.227328,0.005184,0.005056,0.008192,0.014016,0.014528,0.777504,0.009088
+1502,670.157,1.49219,1.08102,0.01024,0.24576,0.005696,0.004544,0.008128,0.013504,0.01488,0.768352,0.00992
+1503,605.648,1.65112,1.06701,0.015392,0.226272,0.005376,0.004864,0.007936,0.012544,0.014336,0.770048,0.01024
+1504,783.923,1.27563,1.06176,0.009088,0.225312,0.006112,0.004224,0.008064,0.014304,0.014368,0.770048,0.01024
+1505,684.035,1.46191,1.06006,0.009408,0.222048,0.005696,0.004544,0.00784,0.01264,0.014336,0.773984,0.009568
+1506,669.172,1.49438,1.06086,0.010144,0.229472,0.005344,0.004896,0.008192,0.01392,0.014272,0.764384,0.01024
+1507,677.809,1.47534,1.05914,0.009632,0.22416,0.006016,0.004224,0.008192,0.0136,0.0144,0.768672,0.01024
+1508,691.075,1.44702,1.0592,0.010144,0.221216,0.00496,0.005632,0.007776,0.013216,0.014336,0.772096,0.009824
+1509,675.016,1.48145,1.07315,0.010176,0.223296,0.004096,0.006016,0.007712,0.012896,0.014336,0.784384,0.01024
+1510,679.045,1.47266,1.06816,0.01024,0.222432,0.004896,0.005344,0.00704,0.014144,0.014048,0.780416,0.0096
+1511,632.001,1.58228,1.11629,0.009408,0.283584,0.004128,0.005952,0.007552,0.013088,0.0144,0.769248,0.008928
+1512,678.033,1.47485,1.08186,0.009024,0.249856,0.005376,0.004864,0.007904,0.012576,0.01552,0.766816,0.00992
+1513,680.625,1.46924,1.07827,0.009216,0.244992,0.004864,0.005536,0.006752,0.013952,0.014496,0.76944,0.009024
+1514,535.565,1.86719,1.09802,0.009696,0.253984,0.004896,0.005152,0.007136,0.01648,0.01424,0.772096,0.014336
+1515,716.209,1.39624,1.06976,0.008896,0.231424,0.005664,0.004576,0.008192,0.013408,0.014656,0.774112,0.008832
+1516,660.539,1.51392,1.06506,0.010016,0.2296,0.004192,0.005856,0.007936,0.012832,0.014336,0.77008,0.010208
+1517,655.885,1.52466,1.05987,0.00912,0.229376,0.005536,0.004736,0.00816,0.013536,0.014592,0.765984,0.008832
+1518,722.399,1.38428,1.05062,0.009792,0.223552,0.004224,0.005824,0.00752,0.01328,0.014368,0.763264,0.0088
+1519,672.468,1.48706,1.05677,0.010048,0.223424,0.005728,0.004512,0.00816,0.01248,0.015232,0.766944,0.01024
+1520,678.708,1.47339,1.06698,0.010048,0.232704,0.005056,0.004128,0.008192,0.014208,0.014432,0.768,0.010208
+1521,673.795,1.48413,1.09398,0.009632,0.252864,0.006016,0.004224,0.008192,0.012288,0.014336,0.776192,0.01024
+1522,667.318,1.49854,1.09043,0.00912,0.247776,0.005792,0.004448,0.008224,0.014112,0.014528,0.777536,0.008896
+1523,678.033,1.47485,1.05453,0.010144,0.22448,0.004992,0.004224,0.008064,0.014048,0.014432,0.764096,0.010048
+1524,678.483,1.47388,1.08403,0.008896,0.243616,0.00576,0.00448,0.008192,0.01232,0.014304,0.776192,0.010272
+1525,650.159,1.53809,1.10717,0.009888,0.249504,0.0048,0.005152,0.008704,0.012768,0.014336,0.792288,0.009728
+1526,617.984,1.61816,1.06499,0.010208,0.236896,0.004832,0.005248,0.007072,0.014304,0.013856,0.763488,0.009088
+1527,680.399,1.46973,1.07392,0.009088,0.231456,0.005568,0.00464,0.008192,0.013472,0.014304,0.777088,0.010112
+1528,667.101,1.49902,1.06026,0.010272,0.229344,0.005184,0.005056,0.008192,0.013888,0.014368,0.764288,0.009664
+1529,672.799,1.48633,1.07126,0.009152,0.239616,0.005184,0.004992,0.008,0.012544,0.014336,0.767808,0.009632
+1530,602.176,1.66064,1.09014,0.00912,0.257344,0.0048,0.00528,0.007008,0.014336,0.014336,0.768,0.00992
+1531,498.722,2.00513,1.06774,0.008896,0.227328,0.006016,0.004224,0.008192,0.013312,0.014496,0.776608,0.008672
+1532,680.06,1.47046,1.06477,0.010272,0.23088,0.004608,0.005632,0.007712,0.01328,0.014336,0.768,0.010048
+1533,665.8,1.50195,1.06394,0.01024,0.229376,0.005856,0.004384,0.008192,0.013344,0.014432,0.768352,0.00976
+1534,673.573,1.48462,2.07091,0.010144,0.467424,0.008192,0.005248,0.00704,0.014336,0.014336,1.5319,0.012288
+1535,400.195,2.49878,1.0793,0.01024,0.23552,0.006016,0.004224,0.008192,0.013408,0.014592,0.776864,0.01024
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..1e567e7
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,35.5748,28.1348,26.9791,0.0712505,0.847304,0.00754641,0.00559709,0.0350861,0.106033,0.107442,25.6824,0.116438
+max_1024,38.9917,36.7188,29.1232,0.103648,1.61142,0.026624,0.02048,0.0504,0.124544,0.335648,27.7616,0.508992
+min_1024,27.234,25.6465,26.1464,0.06752,0.747232,0.006144,0.004032,0.032768,0.1024,0.103392,24.904,0.11264
+512,35.3043,28.3252,26.457,0.06752,0.84208,0.006784,0.005152,0.03376,0.104288,0.105696,25.177,0.114688
+513,36.6894,27.2559,26.4807,0.070432,0.811008,0.007648,0.00464,0.034816,0.104448,0.106496,25.2252,0.115968
+514,36.4141,27.4619,27.7177,0.071296,0.765568,0.006912,0.004096,0.034816,0.104448,0.106464,26.5093,0.11472
+515,34.7873,28.7461,26.4559,0.070112,0.794624,0.007808,0.005504,0.033824,0.105472,0.10704,25.2154,0.116064
+516,36.4439,27.4395,27.6889,0.07168,0.761376,0.006624,0.005344,0.0336,0.104416,0.10608,26.4852,0.114656
+517,34.6238,28.8818,27.8648,0.0712,0.81968,0.007552,0.004768,0.034784,0.106304,0.106208,26.5999,0.114432
+518,34.4294,29.0449,26.6252,0.071712,0.880608,0.00784,0.004448,0.034368,0.104896,0.108096,25.2994,0.113824
+519,35.9071,27.8496,26.5552,0.071648,0.815968,0.007584,0.004736,0.034784,0.104448,0.10784,25.2935,0.114688
+520,36.3985,27.4736,27.7572,0.071744,0.79504,0.006272,0.005888,0.033184,0.106368,0.106464,26.5175,0.114688
+521,34.5514,28.9424,27.7493,0.070624,0.84992,0.007648,0.00464,0.034816,0.104448,0.106464,26.4558,0.115008
+522,34.3936,29.0752,26.6263,0.071328,0.912,0.007488,0.00464,0.034112,0.10464,0.104992,25.2724,0.114688
+523,36.0868,27.7109,27.8307,0.070048,0.878496,0.006208,0.006144,0.034272,0.1048,0.105696,26.51,0.114976
+524,34.4017,29.0684,26.5577,0.07104,0.864864,0.006176,0.00576,0.034208,0.10544,0.108352,25.247,0.114848
+525,36.3224,27.5312,26.4491,0.07168,0.798176,0.006688,0.005952,0.034112,0.105344,0.106208,25.205,0.115904
+526,36.3327,27.5234,27.6869,0.070656,0.795648,0.0072,0.004832,0.03424,0.104512,0.106432,26.4487,0.114688
+527,34.5934,28.9072,26.5304,0.07024,0.8224,0.007008,0.005728,0.0344,0.1112,0.104672,25.2598,0.11488
+528,36.4244,27.4541,26.4684,0.07168,0.78848,0.00768,0.004608,0.034304,0.111008,0.1064,25.2295,0.114688
+529,36.462,27.4258,27.6842,0.071136,0.774688,0.007936,0.005536,0.033664,0.104416,0.106496,26.4658,0.114496
+530,34.7909,28.7432,26.4462,0.0704,0.770048,0.00624,0.005824,0.034144,0.103392,0.107808,25.2336,0.114784
+531,36.3043,27.5449,27.7321,0.070816,0.766944,0.007776,0.004544,0.034784,0.104448,0.107936,26.5202,0.114688
+532,34.2578,29.1904,27.7035,0.071008,0.78464,0.006592,0.005376,0.033504,0.108352,0.10672,26.4745,0.1128
+533,35.0757,28.5098,26.6031,0.07136,0.909664,0.007648,0.004608,0.034848,0.104416,0.106144,25.2498,0.114592
+534,36.0411,27.7461,26.6363,0.071712,0.896064,0.007072,0.004096,0.034816,0.104448,0.10832,25.2951,0.11472
+535,36.0792,27.7168,28.618,0.073568,0.825504,0.008128,0.005536,0.03344,0.105632,0.105312,27.3449,0.116
+536,33.7853,29.5986,26.4309,0.071424,0.794752,0.006688,0.005184,0.033728,0.104448,0.106496,25.1921,0.116128
+537,36.0221,27.7607,26.5562,0.071424,0.860672,0.007616,0.00464,0.034816,0.104224,0.10592,25.25,0.116896
+538,36.4102,27.4648,27.7877,0.070496,0.768,0.007456,0.004832,0.03408,0.104416,0.105216,26.5789,0.114336
+539,34.726,28.7969,26.4489,0.071616,0.763968,0.008,0.005536,0.033568,0.106496,0.106496,25.2375,0.115744
+540,36.194,27.6289,26.4547,0.070304,0.782112,0.006336,0.005568,0.033344,0.106304,0.107712,25.2262,0.116736
+541,36.1046,27.6973,27.7074,0.071616,0.79376,0.007072,0.005536,0.0344,0.105472,0.10576,26.4691,0.11472
+542,34.6696,28.8438,26.772,0.070176,0.765568,0.006528,0.005408,0.033504,0.105568,0.105376,25.5663,0.113536
+543,35.5778,28.1074,26.6017,0.0736,0.885184,0.006464,0.006144,0.033888,0.105056,0.105888,25.2691,0.116416
+544,35.916,27.8428,27.817,0.070944,0.856736,0.006208,0.005728,0.034304,0.104672,0.105152,26.5134,0.119872
+545,34.7001,28.8184,26.5052,0.07136,0.776512,0.007552,0.004736,0.034816,0.105536,0.105408,25.2838,0.115456
+546,36.0158,27.7656,27.9101,0.071232,0.893376,0.007648,0.00464,0.034528,0.104704,0.106528,26.5742,0.113248
+547,34.426,29.0479,27.91,0.070656,0.87552,0.00736,0.00496,0.034784,0.104448,0.106496,26.5912,0.11456
+548,33.9478,29.457,26.595,0.07168,0.865984,0.006464,0.005472,0.043296,0.104832,0.106496,25.2763,0.114464
+549,36.111,27.6924,26.6718,0.071616,0.920352,0.022496,0.006144,0.034432,0.104832,0.112672,25.2805,0.118816
+550,36.2081,27.6182,27.8401,0.071552,0.81968,0.007648,0.00464,0.034272,0.104416,0.105056,26.5769,0.116
+551,34.6086,28.8945,26.6462,0.07168,0.866304,0.007456,0.004864,0.034784,0.10352,0.105376,25.3353,0.11696
+552,36.1136,27.6904,26.52,0.070144,0.78608,0.006464,0.005472,0.034528,0.103456,0.108448,25.2899,0.115552
+553,36.303,27.5459,27.7444,0.07168,0.763392,0.006656,0.006016,0.033984,0.11472,0.104864,26.5283,0.114848
+554,34.5759,28.9219,26.9724,0.069856,0.825344,0.00784,0.004448,0.034272,0.104992,0.10448,25.7082,0.112928
+555,35.0181,28.5566,26.8329,0.07312,1.1311,0.007776,0.004544,0.034784,0.103712,0.104864,25.2578,0.115168
+556,36.3585,27.5039,27.7459,0.071296,0.784704,0.0064,0.0056,0.03424,0.103328,0.106496,26.519,0.114816
+557,34.5864,28.9131,26.4491,0.071392,0.798784,0.006368,0.006144,0.034272,0.102944,0.106496,25.2067,0.115968
+558,36.2529,27.584,27.845,0.071296,0.82608,0.007776,0.004512,0.034464,0.10624,0.106368,26.5736,0.114656
+559,34.4851,28.998,27.8091,0.071296,0.84384,0.006464,0.006144,0.033856,0.105408,0.105856,26.5222,0.114016
+560,34.513,28.9746,26.4581,0.071424,0.785824,0.007008,0.004096,0.034816,0.104448,0.108128,25.2277,0.114688
+561,36.4854,27.4082,26.4785,0.070944,0.774336,0.006688,0.005952,0.034496,0.104736,0.106272,25.2595,0.115584
+562,36.2966,27.5508,27.8068,0.069632,0.836896,0.00688,0.004096,0.034816,0.106496,0.107584,26.5164,0.124064
+563,34.3786,29.0879,26.5058,0.070176,0.833536,0.007168,0.00512,0.034624,0.105824,0.106944,25.2277,0.114752
+564,35.7967,27.9355,26.5667,0.07168,0.877824,0.006912,0.004096,0.034816,0.105504,0.107488,25.2436,0.114688
+565,36.6736,27.2676,27.7034,0.073472,0.812672,0.006912,0.005728,0.034368,0.105152,0.104608,26.4458,0.114688
+566,34.8916,28.6602,26.4758,0.071296,0.764288,0.007232,0.004864,0.032992,0.104416,0.107808,25.2689,0.114016
+567,35.7043,28.0078,27.8615,0.071904,0.89728,0.007296,0.004992,0.034368,0.104896,0.10608,26.5196,0.115104
+568,34.5969,28.9043,27.8624,0.071168,0.84448,0.007872,0.004416,0.034432,0.104608,0.10576,26.5756,0.114112
+569,34.7142,28.8066,26.4964,0.070944,0.823136,0.00704,0.005728,0.033216,0.105504,0.1136,25.2211,0.116128
+570,35.1842,28.4219,26.5158,0.070208,0.875968,0.00672,0.005216,0.033728,0.104576,0.106336,25.1982,0.114816
+571,37.1445,26.9219,27.8391,0.070304,0.82848,0.007072,0.005568,0.033344,0.105664,0.107008,26.568,0.113664
+572,34.5736,28.9238,26.5518,0.071168,0.850432,0.008064,0.004224,0.034816,0.111904,0.106368,25.2499,0.115008
+573,36.4984,27.3984,26.4649,0.070656,0.772096,0.007712,0.004544,0.034816,0.10448,0.108512,25.2457,0.116384
+574,36.4517,27.4336,27.683,0.071328,0.770656,0.007744,0.004512,0.034208,0.104736,0.106496,26.4702,0.11312
+575,34.8798,28.6699,26.54,0.07136,0.776544,0.007616,0.00464,0.034816,0.105984,0.10496,25.3188,0.115264
+576,36.3249,27.5293,27.6742,0.069632,0.769504,0.006688,0.005248,0.033696,0.104416,0.106528,26.4639,0.114592
+577,34.8964,28.6562,27.7305,0.070496,0.770048,0.007456,0.004832,0.034816,0.104448,0.106496,26.5174,0.114528
+578,34.6297,28.877,26.4863,0.069856,0.851968,0.007968,0.00432,0.034816,0.104448,0.107584,25.1893,0.116064
+579,36.2401,27.5938,26.4771,0.070272,0.819168,0.0072,0.005088,0.034624,0.10464,0.108544,25.2109,0.116672
+580,36.4568,27.4297,27.7973,0.071104,0.788832,0.006368,0.005568,0.033376,0.105696,0.105216,26.5667,0.114496
+581,34.4642,29.0156,26.4765,0.069632,0.823136,0.006304,0.006144,0.034432,0.104832,0.106496,25.2109,0.114688
+582,36.3972,27.4746,26.3823,0.071232,0.792608,0.00656,0.005344,0.0336,0.106496,0.106464,25.1453,0.114688
+583,36.3172,27.5352,27.7094,0.07168,0.795904,0.006912,0.005664,0.03328,0.10608,0.106464,26.4688,0.114688
+584,34.8608,28.6855,26.4651,0.070432,0.771744,0.006496,0.005536,0.033376,0.104448,0.10816,25.2502,0.114688
+585,36.4335,27.4473,27.3305,0.07168,0.78192,0.00656,0.00608,0.034528,0.1048,0.106496,26.1038,0.114656
+586,35.2302,28.3848,27.6805,0.071712,0.772448,0.007456,0.004832,0.034112,0.104704,0.10496,26.4658,0.114496
+587,34.6696,28.8438,26.3862,0.07168,0.811008,0.006144,0.006144,0.034624,0.10464,0.106208,25.1231,0.122624
+588,36.0436,27.7441,26.8344,0.082944,0.932864,0.006144,0.02048,0.034624,0.112928,0.106272,25.4199,0.118208
+589,36.1352,27.6738,27.947,0.071072,1.01027,0.009824,0.005536,0.03584,0.106464,0.104416,26.488,0.115616
+590,33.4662,29.8809,26.4499,0.07168,0.806912,0.007232,0.0048,0.034304,0.104864,0.106848,25.1983,0.114944
+591,36.4906,27.4043,26.5308,0.071648,0.829504,0.00768,0.004608,0.034784,0.10448,0.105984,25.2561,0.116064
+592,34.8086,28.7285,27.8561,0.07104,0.924288,0.008096,0.004192,0.040704,0.112256,0.10528,26.4757,0.114496
+593,36.1072,27.6953,26.3185,0.069824,0.755488,0.006368,0.006144,0.034208,0.105056,0.107904,25.1173,0.11616
+594,36.4568,27.4297,26.4315,0.0712,0.81968,0.006144,0.00576,0.033248,0.106272,0.106496,25.168,0.11472
+595,36.4672,27.4219,27.7241,0.070272,0.778208,0.007168,0.00512,0.03456,0.104576,0.10576,26.5039,0.114528
+596,34.4688,29.0117,26.4479,0.071008,0.760352,0.0064,0.0056,0.034304,0.105312,0.112512,25.2377,0.114688
+597,36.3043,27.5449,27.8278,0.071456,0.833344,0.00656,0.006048,0.034752,0.104608,0.106016,26.5503,0.114688
+598,34.3809,29.0859,27.6582,0.070688,0.797664,0.008032,0.004256,0.034528,0.110784,0.106592,26.4122,0.113472
+599,34.8276,28.7129,26.4676,0.069632,0.782336,0.007712,0.004576,0.035968,0.105344,0.106496,25.241,0.114624
+600,36.0894,27.709,26.5979,0.070432,0.923072,0.00688,0.014208,0.034784,0.112256,0.1064,25.2155,0.114336
+601,36.0589,27.7324,28.9035,0.069952,1.0975,0.006368,0.006144,0.03424,0.10672,0.106688,27.3594,0.11648
+602,33.7308,29.6465,26.4991,0.071168,0.7904,0.006784,0.005152,0.03376,0.106176,0.104864,25.2579,0.122912
+603,36.2093,27.6172,26.5236,0.071456,0.83744,0.00656,0.006112,0.034048,0.105248,0.106432,25.2417,0.114688
+604,35.9147,27.8438,27.8917,0.07168,0.989184,0.008,0.004288,0.03472,0.104544,0.106496,26.4574,0.115392
+605,34.6954,28.8223,26.4868,0.070848,0.785152,0.00624,0.006144,0.034208,0.105056,0.106496,25.2559,0.116736
+606,35.9652,27.8047,26.5544,0.071392,0.874784,0.007616,0.004672,0.034816,0.111776,0.11264,25.2213,0.11536
+607,35.8318,27.9082,27.7194,0.071264,0.765568,0.007104,0.005536,0.03344,0.104416,0.106112,26.5108,0.115168
+608,34.7448,28.7812,27.4596,0.07168,0.753664,0.00768,0.004608,0.033952,0.105184,0.104576,26.2632,0.115104
+609,34.7001,28.8184,26.4397,0.071328,0.799008,0.006208,0.006144,0.03408,0.105024,0.106656,25.1965,0.11472
+610,36.5505,27.3594,27.7484,0.07168,0.8144,0.006848,0.00512,0.033792,0.104448,0.106496,26.4909,0.11472
+611,34.5316,28.959,26.4829,0.074336,0.80624,0.006816,0.005792,0.034464,0.113344,0.115872,25.2097,0.11632
+612,36.0411,27.7461,26.4868,0.069632,0.814464,0.006784,0.005152,0.03376,0.113888,0.10656,25.2219,0.114688
+613,36.2427,27.5918,27.7562,0.069632,0.851136,0.006976,0.005664,0.034528,0.104576,0.106336,26.4627,0.114624
+614,34.8299,28.7109,26.4788,0.069888,0.812928,0.006272,0.005664,0.035008,0.12112,0.106496,25.2059,0.115584
+615,35.1311,28.4648,26.5359,0.071104,0.881216,0.00768,0.004608,0.034816,0.106496,0.106496,25.2068,0.116736
+616,37.3123,26.8008,27.6521,0.07168,0.775808,0.006528,0.005536,0.033408,0.105728,0.106816,26.4333,0.11328
+617,34.7213,28.8008,26.4942,0.07136,0.81952,0.007712,0.004576,0.034848,0.104416,0.106048,25.2311,0.114688
+618,36.3378,27.5195,27.7304,0.070272,0.80896,0.007648,0.00464,0.034272,0.10624,0.106432,26.4774,0.114528
+619,34.4572,29.0215,27.7238,0.072768,0.842688,0.008032,0.005536,0.033568,0.106464,0.105696,26.4333,0.115712
+620,34.7897,28.7441,26.4888,0.07168,0.864256,0.00736,0.0048,0.032992,0.1064,0.106496,25.1798,0.114976
+621,36.6054,27.3184,26.4068,0.07168,0.780288,0.007552,0.004736,0.034816,0.104448,0.106496,25.1796,0.11712
+622,36.1582,27.6562,27.7724,0.07168,0.870208,0.006336,0.0056,0.034784,0.105024,0.106112,26.4579,0.11472
+623,34.4317,29.043,27.8556,0.070368,0.892352,0.00672,0.00592,0.03424,0.105248,0.116736,26.5093,0.114688
+624,34.5107,28.9766,26.5049,0.071264,0.911776,0.008064,0.004224,0.034784,0.10592,0.106112,25.1478,0.114944
+625,36.1097,27.6934,27.6192,0.070432,0.802816,0.007872,0.005536,0.033696,0.106176,0.106368,26.3716,0.11472
+626,34.9297,28.6289,26.4414,0.070208,0.8192,0.007776,0.004512,0.034272,0.105024,0.10624,25.1783,0.115872
+627,36.5167,27.3848,26.4067,0.071264,0.76016,0.007616,0.005056,0.034816,0.104448,0.106496,25.202,0.114848
+628,35.8042,27.9297,28.9198,0.071008,0.802816,0.007072,0.004096,0.034816,0.105568,0.105376,27.6744,0.114656
+629,33.7108,29.6641,26.4262,0.070528,0.77408,0.006176,0.006144,0.03456,0.105856,0.106656,25.2073,0.114912
+630,36.6369,27.2949,26.4236,0.069952,0.778176,0.006176,0.005536,0.033376,0.105888,0.10624,25.2036,0.114688
+631,36.475,27.416,27.6672,0.070432,0.771872,0.006368,0.006144,0.034272,0.104288,0.10672,26.4524,0.114688
+632,34.9226,28.6348,26.3974,0.0704,0.759808,0.008096,0.004192,0.034816,0.106496,0.106144,25.1924,0.115072
+633,35.9702,27.8008,26.4363,0.070592,0.791968,0.006752,0.005728,0.033184,0.106496,0.107808,25.1973,0.11648
+634,36.2889,27.5566,27.8038,0.06976,0.888832,0.008,0.004288,0.034784,0.106528,0.106496,26.4704,0.114656
+635,34.1766,29.2598,26.486,0.071328,0.850368,0.006144,0.006144,0.034688,0.105824,0.110816,25.1861,0.114624
+636,36.3043,27.5449,27.7908,0.071136,0.899616,0.007552,0.004736,0.03424,0.104256,0.106816,26.4443,0.118176
+637,34.6743,28.8398,27.6982,0.07168,0.888512,0.006464,0.006144,0.033984,0.10656,0.104608,26.3642,0.116064
+638,34.6227,28.8828,26.4991,0.0712,0.903552,0.006752,0.005216,0.033728,0.103616,0.106336,25.1524,0.116288
+639,36.488,27.4062,26.4298,0.070016,0.810208,0.006944,0.005664,0.033248,0.104448,0.107872,25.176,0.115424
+640,36.2452,27.5898,27.7217,0.07088,0.817952,0.007392,0.004832,0.034208,0.106624,0.106848,26.4596,0.113376
+641,34.5923,28.9082,27.7705,0.07168,0.894944,0.007264,0.005056,0.034752,0.10464,0.106368,26.4312,0.114592
+642,34.6789,28.8359,26.5623,0.070112,0.892896,0.007872,0.004384,0.0344,0.104608,0.105856,25.2272,0.114912
+643,36.1276,27.6797,27.8281,0.071424,0.9128,0.00704,0.0056,0.039488,0.105888,0.10608,26.465,0.114816
+644,34.8513,28.6934,26.4513,0.06992,0.811008,0.00752,0.004768,0.034176,0.103072,0.106464,25.1986,0.115808
+645,36.3198,27.5332,26.4886,0.07168,0.812064,0.007136,0.005408,0.033536,0.104608,0.106304,25.2324,0.115424
+646,34.9798,28.5879,27.757,0.071264,0.803712,0.007808,0.004448,0.034336,0.104928,0.106496,26.5093,0.11472
+647,35.8971,27.8574,26.4148,0.0712,0.760288,0.00752,0.004768,0.034784,0.10448,0.106304,25.209,0.11648
+648,36.0386,27.748,26.4404,0.070368,0.837632,0.007648,0.004608,0.034464,0.104512,0.106016,25.1604,0.114688
+649,35.8644,27.8828,27.7899,0.07024,0.855232,0.006944,0.006144,0.034304,0.10496,0.106496,26.4909,0.114656
+650,34.2406,29.2051,26.5769,0.071072,0.93408,0.00656,0.005344,0.033568,0.104448,0.106496,25.2018,0.113536
+651,34.956,28.6074,26.6176,0.074208,1.03229,0.007296,0.004992,0.034816,0.105536,0.105408,25.1372,0.115936
+652,35.7592,27.9648,27.9734,0.071488,1.0144,0.007904,0.004384,0.047072,0.104352,0.106304,26.5014,0.116032
+653,34.8394,28.7031,26.5113,0.07168,0.89088,0.006144,0.006144,0.040864,0.104576,0.107712,25.1662,0.117056
+654,36.0487,27.7402,27.797,0.07168,0.909312,0.007648,0.00464,0.034528,0.104736,0.106336,26.4439,0.114272
+655,34.4317,29.043,27.6679,0.070112,0.804832,0.007744,0.004544,0.034816,0.106496,0.106144,26.4175,0.115712
+656,34.4711,29.0098,26.4752,0.070336,0.884736,0.00768,0.004608,0.034656,0.106528,0.108544,25.1373,0.120832
+657,35.892,27.8613,26.5202,0.07184,0.870816,0.00624,0.006144,0.034816,0.104448,0.106144,25.2046,0.1152
+658,35.9702,27.8008,27.8194,0.070848,0.90096,0.007104,0.00416,0.041952,0.10496,0.106144,26.4684,0.114944
+659,34.5456,28.9473,27.7582,0.069952,0.857792,0.006592,0.00608,0.033952,0.10336,0.106464,26.4598,0.114208
+660,34.4711,29.0098,26.5257,0.077344,0.872928,0.00768,0.004608,0.04096,0.104448,0.107584,25.1955,0.114688
+661,33.9095,29.4902,27.8611,0.070912,1.00224,0.00768,0.004608,0.048416,0.103328,0.106304,26.4042,0.11344
+662,36.4491,27.4355,26.5224,0.07152,0.816,0.008032,0.004256,0.034816,0.106496,0.105472,25.2622,0.1136
+663,36.574,27.3418,27.8211,0.071712,0.89088,0.007648,0.014208,0.049792,0.10448,0.106464,26.4602,0.115712
+664,33.1606,30.1562,26.5627,0.07008,0.954304,0.006368,0.005696,0.034176,0.104576,0.107296,25.1638,0.116416
+665,37.7192,26.5117,26.4612,0.07056,0.78448,0.007168,0.00512,0.034624,0.10464,0.106176,25.2317,0.116736
+666,36.2709,27.5703,27.6992,0.07104,0.81888,0.007104,0.004096,0.034848,0.104416,0.10448,26.4396,0.114688
+667,34.7637,28.7656,26.5338,0.069728,0.799744,0.007104,0.005536,0.03344,0.106496,0.106496,25.2887,0.116576
+668,35.882,27.8691,27.8071,0.081344,0.893504,0.006144,0.005792,0.033184,0.105664,0.1064,26.461,0.114048
+669,32.7136,30.5684,27.9224,0.071392,1.0079,0.018176,0.005536,0.043232,0.105088,0.106496,26.4499,0.114688
+670,36.6841,27.2598,26.2882,0.070912,0.80272,0.007008,0.004096,0.047104,0.1096,0.105376,25.0266,0.11472
+671,36.5558,27.3555,26.4487,0.070432,0.824672,0.006816,0.005856,0.03408,0.105472,0.106496,25.1802,0.114688
+672,36.3198,27.5332,29.1042,0.071584,0.874432,0.015296,0.004096,0.034816,0.106496,0.121952,27.7616,0.113984
+673,33.1113,30.2012,26.5363,0.075584,0.884768,0.014848,0.005664,0.034304,0.107488,0.106496,25.1924,0.114688
+674,34.9655,28.5996,26.4463,0.071296,0.782528,0.006848,0.004096,0.034816,0.104448,0.108352,25.2193,0.114688
+675,34.6672,28.8457,27.935,0.073792,0.997536,0.026624,0.006144,0.047104,0.105664,0.107328,26.4561,0.114784
+676,36.8028,27.1719,26.4434,0.071424,0.76416,0.00768,0.004608,0.034176,0.11056,0.10512,25.2305,0.1152
+677,36.3353,27.5215,26.5365,0.070208,0.880608,0.007424,0.004864,0.040608,0.104448,0.106848,25.2068,0.11472
+678,35.892,27.8613,27.8857,0.071232,0.962816,0.006336,0.014048,0.034176,0.103328,0.116736,26.4622,0.114816
+679,34.726,28.7969,26.55,0.071168,0.885248,0.017792,0.004736,0.034816,0.120032,0.105248,25.1945,0.116448
+680,36.1225,27.6836,27.7771,0.071008,0.830112,0.016384,0.0056,0.033312,0.104448,0.106496,26.4887,0.121024
+681,34.625,28.8809,27.6948,0.07168,0.749568,0.007936,0.005536,0.033632,0.104448,0.10784,26.4993,0.11488
+682,33.4794,29.8691,26.5871,0.071424,0.909568,0.007808,0.00448,0.034688,0.109792,0.113568,25.2212,0.114656
+683,37.0129,27.0176,27.7467,0.070048,0.908384,0.007072,0.005568,0.033376,0.104416,0.104512,26.3978,0.115552
+684,34.9822,28.5859,27.5742,0.07168,0.753696,0.007872,0.004384,0.034464,0.1048,0.106304,26.3764,0.114624
+685,35.0062,28.5664,26.4622,0.069632,0.755072,0.006784,0.005824,0.033088,0.105952,0.104736,25.2661,0.115008
+686,36.2735,27.5684,26.3742,0.071104,0.7952,0.007424,0.004832,0.034848,0.106496,0.106496,25.1323,0.115456
+687,35.8468,27.8965,27.8081,0.069984,0.864288,0.007648,0.013856,0.033792,0.112608,0.106496,26.4847,0.114688
+688,34.5899,28.9102,26.5545,0.070912,0.916352,0.00752,0.01296,0.034816,0.105696,0.105408,25.1861,0.114688
+689,36.2709,27.5703,26.5405,0.075904,0.880992,0.007648,0.00464,0.046656,0.104896,0.106496,25.1983,0.114976
+690,36.0538,27.7363,27.7224,0.076448,0.838816,0.007008,0.014176,0.034048,0.105056,0.11296,26.4209,0.11296
+691,34.5549,28.9395,26.4871,0.07168,0.89904,0.006464,0.006144,0.042976,0.103968,0.10496,25.1382,0.113632
+692,35.8393,27.9023,27.7565,0.071104,0.873376,0.007712,0.004544,0.034688,0.104576,0.106496,26.4376,0.116416
+693,34.9584,28.6055,27.721,0.071296,0.76224,0.008128,0.005536,0.03344,0.105888,0.107104,26.5125,0.11488
+694,34.2567,29.1914,26.4501,0.071328,0.899584,0.007584,0.01392,0.033824,0.106464,0.107616,25.0951,0.11472
+695,36.1021,27.6992,26.5073,0.070816,0.879264,0.006336,0.006144,0.03408,0.111392,0.106432,25.1781,0.114688
+696,36.1607,27.6543,28.9243,0.071328,0.805824,0.007872,0.004192,0.032768,0.106112,0.106464,27.675,0.114688
+697,33.2079,30.1133,26.5242,0.070208,0.872448,0.007392,0.014496,0.03344,0.108512,0.107744,25.1953,0.114688
+698,35.1262,28.4688,26.4871,0.079968,0.826944,0.006816,0.005184,0.039904,0.12032,0.106688,25.186,0.115328
+699,37.0424,26.9961,27.5918,0.069696,0.759072,0.00688,0.00576,0.033152,0.106528,0.108512,26.3882,0.114048
+700,34.7166,28.8047,26.4496,0.069696,0.804032,0.006912,0.005248,0.041856,0.10576,0.107232,25.1942,0.114656
+701,36.276,27.5664,26.4934,0.07008,0.853216,0.006944,0.005696,0.043488,0.104544,0.10832,25.1864,0.114688
+702,36.1991,27.625,27.7796,0.070624,0.870272,0.014464,0.004096,0.034848,0.106048,0.117152,26.4479,0.11424
+703,34.4688,29.0117,26.4566,0.071616,0.805376,0.008064,0.005536,0.039648,0.1056,0.105344,25.2006,0.114784
+704,34.611,28.8926,27.9477,0.070304,1.04198,0.006592,0.005248,0.045568,0.10416,0.106272,26.4529,0.11472
+705,35.8192,27.918,27.8378,0.07152,0.875904,0.006944,0.005696,0.040768,0.10304,0.108288,26.5108,0.114912
+706,34.4828,29,26.411,0.07168,0.878336,0.0064,0.005536,0.033408,0.106464,0.107616,25.0869,0.114688
+707,36.2786,27.5645,26.5711,0.069984,0.882688,0.008064,0.005536,0.033504,0.10608,0.104864,25.2456,0.114816
+708,35.5432,28.1348,28.9233,0.071712,0.81712,0.008,0.004288,0.040992,0.104416,0.114688,27.6477,0.114368
+709,33.5804,29.7793,26.4912,0.071168,0.842752,0.007968,0.005568,0.033568,0.112192,0.111072,25.1904,0.116512
+710,36.0563,27.7344,26.4842,0.06976,0.806112,0.006944,0.004096,0.034816,0.105856,0.106784,25.2338,0.116096
+711,35.9122,27.8457,27.8441,0.071232,0.915232,0.006816,0.005952,0.034784,0.10592,0.105248,26.4846,0.114336
+712,34.3693,29.0957,27.8835,0.071456,0.937888,0.006464,0.0056,0.0472,0.104896,0.112672,26.4827,0.114656
+713,34.1607,29.2734,26.5564,0.07168,0.927712,0.006176,0.006144,0.033984,0.117312,0.112608,25.1661,0.11472
+714,36.0234,27.7598,27.7079,0.071584,0.870816,0.0064,0.0056,0.03424,0.111168,0.104352,26.3889,0.114784
+715,34.3049,29.1504,26.452,0.08096,0.848384,0.006592,0.006048,0.034272,0.113184,0.104544,25.1412,0.116736
+716,36.2119,27.6152,26.9025,0.069792,0.90096,0.017824,0.004704,0.034336,0.104704,0.10672,25.5504,0.113088
+717,35.3347,28.3008,27.941,0.073024,1.12106,0.006144,0.006144,0.033984,0.10528,0.106144,26.3745,0.114688
+718,34.9679,28.5977,26.4212,0.071648,0.77168,0.006592,0.005344,0.0336,0.104416,0.106272,25.2068,0.114752
+719,36.1327,27.6758,26.4233,0.07104,0.77424,0.006688,0.005952,0.033984,0.105472,0.106464,25.2039,0.115584
+720,35.6894,28.0195,27.8222,0.069824,0.960512,0.0072,0.004832,0.045312,0.104448,0.106496,26.409,0.114624
+721,35.0277,28.5488,26.3825,0.071648,0.794528,0.016288,0.005536,0.033728,0.10576,0.106432,25.1339,0.114688
+722,34.7425,28.7832,26.6349,0.071648,0.973408,0.006176,0.00576,0.047488,0.105472,0.113664,25.1965,0.11472
+723,37.786,26.4648,27.6179,0.070304,0.759584,0.006368,0.006144,0.0344,0.104864,0.106496,26.4146,0.115136
+724,34.1151,29.3125,26.5801,0.070912,0.945056,0.007424,0.004256,0.034432,0.105312,0.109792,25.1871,0.115808
+725,36.0614,27.7305,27.6057,0.0704,0.813056,0.008064,0.013664,0.033568,0.105472,0.106816,26.3401,0.114624
+726,32.6343,30.6426,27.9349,0.07008,1.04643,0.02096,0.004096,0.034848,0.104416,0.10656,26.4273,0.120224
+727,36.374,27.4922,26.6133,0.070912,0.983936,0.007968,0.005504,0.033664,0.106336,0.105856,25.1748,0.12432
+728,36.3018,27.5469,26.6775,0.070528,0.804544,0.006464,0.005792,0.03312,0.10448,0.105856,25.4183,0.128384
+729,36.148,27.6641,28.6452,0.07168,0.804864,0.007712,0.004576,0.034816,0.104448,0.107904,27.3938,0.11536
+730,33.6377,29.7285,26.4286,0.081696,0.783936,0.006816,0.005152,0.03376,0.10624,0.106752,25.1895,0.114784
+731,36.3559,27.5059,26.399,0.069952,0.784096,0.006432,0.006144,0.03424,0.105024,0.10752,25.1709,0.114688
+732,36.4361,27.4453,27.6777,0.070656,0.771104,0.00688,0.004352,0.034432,0.105856,0.106784,26.463,0.114656
+733,34.7189,28.8027,27.5834,0.070528,0.764992,0.007104,0.005536,0.033376,0.10432,0.104576,26.3736,0.119296
+734,34.4828,29,26.4929,0.07168,0.8496,0.006464,0.00544,0.04576,0.106496,0.106496,25.1863,0.114688
+735,35.1793,28.4258,27.9188,0.070016,0.985088,0.007584,0.004704,0.0464,0.11744,0.110368,26.4624,0.11472
+736,34.9918,28.5781,26.5155,0.071072,0.83584,0.016736,0.005504,0.035456,0.104448,0.106496,25.2242,0.115712
+737,35.4227,28.2305,26.5375,0.070656,0.939008,0.00752,0.004768,0.044288,0.112544,0.105312,25.1372,0.116288
+738,36.2966,27.5508,28.7949,0.069632,1.09344,0.006336,0.013376,0.035072,0.105152,0.10576,27.2472,0.118944
+739,33.543,29.8125,26.629,0.07056,0.976032,0.006976,0.005696,0.047552,0.105696,0.106976,25.1907,0.118784
+740,36.148,27.6641,26.4754,0.070496,0.812288,0.006912,0.004096,0.0504,0.106656,0.117184,25.1919,0.115424
+741,36.501,27.3965,27.6982,0.07168,0.797728,0.007072,0.005536,0.033472,0.106464,0.106496,26.454,0.115744
+742,34.5293,28.9609,26.4431,0.070976,0.811712,0.007968,0.00432,0.044192,0.105312,0.106496,25.1753,0.116832
+743,35.6001,28.0898,26.5776,0.070336,0.871648,0.006944,0.005504,0.033408,0.104448,0.10448,25.264,0.116832
+744,34.6578,28.8535,27.9593,0.0712,1.12192,0.007008,0.004096,0.034816,0.105952,0.114208,26.3813,0.118784
+745,35.887,27.8652,27.1903,0.07168,0.861568,0.006816,0.005888,0.03408,0.115648,0.10624,25.4794,0.508992
+746,35.7068,28.0059,26.4439,0.070944,0.764736,0.007296,0.0048,0.034016,0.105248,0.118176,25.224,0.114688
+747,36.3198,27.5332,27.6132,0.071392,0.794912,0.007968,0.005536,0.0336,0.10448,0.106464,26.3741,0.114688
+748,34.8513,28.6934,26.3721,0.07168,0.794624,0.007744,0.004544,0.034144,0.103072,0.10608,25.1355,0.114688
+749,36.5558,27.3555,26.3578,0.070944,0.792736,0.006752,0.00592,0.034144,0.105376,0.106464,25.1201,0.115328
+750,35.2326,28.3828,29.0898,0.07168,0.937344,0.016768,0.004352,0.046272,0.10528,0.106688,27.6886,0.112832
+751,34.038,29.3789,26.4435,0.070784,0.854912,0.007488,0.0048,0.034848,0.104448,0.114656,25.1365,0.11504
+752,36.4076,27.4668,26.452,0.086016,0.768,0.007872,0.004416,0.034816,0.112512,0.106656,25.2149,0.116736
+753,36.4724,27.418,27.5641,0.069664,0.778272,0.00736,0.004896,0.034816,0.105472,0.106688,26.3438,0.11312
+754,34.9464,28.6152,26.3743,0.07088,0.822048,0.007616,0.004672,0.034816,0.11264,0.107712,25.0994,0.11456
+755,35.5704,28.1133,26.4251,0.070912,0.835552,0.006944,0.005728,0.034272,0.10528,0.106624,25.1433,0.116448
+756,37.4899,26.6738,27.589,0.070048,0.772064,0.00784,0.004448,0.034464,0.10448,0.104864,26.3777,0.11312
+757,34.6789,28.8359,26.5374,0.070976,0.907328,0.006784,0.005856,0.040416,0.10528,0.106496,25.1796,0.114656
+758,36.2221,27.6074,27.4658,0.069984,1.05472,0.007936,0.004352,0.03472,0.106336,0.106752,25.9666,0.1144
+759,35.4989,28.1699,27.6311,0.07168,0.771936,0.006368,0.00608,0.03456,0.102656,0.106528,26.4131,0.118272
+760,34.5409,28.9512,26.4951,0.071872,0.862208,0.007488,0.0048,0.03472,0.102496,0.106496,25.1904,0.114624
+761,36.1072,27.6953,26.4935,0.071328,0.915904,0.006656,0.02048,0.034816,0.10592,0.10656,25.1172,0.114688
+762,35.9248,27.8359,28.5679,0.069152,0.887584,0.016384,0.005472,0.03344,0.104448,0.106496,27.2314,0.113472
+763,33.5232,29.8301,26.4324,0.070592,0.888352,0.006592,0.006048,0.0464,0.117088,0.106592,25.076,0.114784
+764,36.7078,27.2422,26.3229,0.070848,0.8016,0.007328,0.004832,0.034144,0.105248,0.106528,25.0777,0.114688
+765,36.3791,27.4883,27.694,0.070528,0.90112,0.006144,0.006144,0.03456,0.104704,0.106496,26.3496,0.114688
+766,34.6625,28.8496,26.4273,0.070048,0.867968,0.006528,0.005408,0.033504,0.106496,0.106048,25.1165,0.114816
+767,36.1225,27.6836,26.5533,0.086976,0.813056,0.00784,0.005536,0.033728,0.1064,0.106272,25.262,0.131456
+768,36.0589,27.7324,27.6888,0.07168,0.8008,0.007328,0.004928,0.0344,0.102816,0.106496,26.4458,0.114496
+769,35.0301,28.5469,26.4172,0.070816,0.780608,0.006688,0.005984,0.034336,0.105088,0.106528,25.1916,0.11552
+770,35.6546,28.0469,27.8082,0.071168,0.940928,0.022496,0.005248,0.041632,0.102656,0.122112,26.3885,0.11344
+771,35.5605,28.1211,27.6876,0.07056,0.77392,0.007872,0.005536,0.033696,0.12048,0.106528,26.4542,0.114784
+772,34.8703,28.6777,26.3368,0.070976,0.804736,0.006976,0.004096,0.034816,0.114688,0.105856,25.0797,0.114912
+773,36.5401,27.3672,26.3556,0.071072,0.780896,0.007328,0.00496,0.034656,0.104608,0.105792,25.1308,0.115552
+774,36.6395,27.293,28.831,0.071072,0.75824,0.006272,0.005632,0.03328,0.104448,0.106496,27.6315,0.11408
+775,32.8395,30.4512,26.5646,0.0712,0.933984,0.006528,0.00608,0.034752,0.112768,0.107648,25.177,0.114688
+776,36.5845,27.334,26.4807,0.075744,0.899104,0.0072,0.004832,0.033024,0.106496,0.105664,25.1355,0.113216
+777,36.2196,27.6094,27.8057,0.07088,0.940832,0.007872,0.005536,0.04368,0.104704,0.106304,26.4112,0.114688
+778,34.1561,29.2773,26.4806,0.07168,0.902304,0.007008,0.004096,0.034816,0.104128,0.106176,25.1357,0.114688
+779,36.8531,27.1348,26.5083,0.070656,0.87968,0.007072,0.005536,0.033408,0.105632,0.104832,25.1796,0.121888
+780,34.8039,28.7324,27.7685,0.071744,0.935872,0.007872,0.004416,0.034528,0.105792,0.1072,26.3857,0.115392
+781,35.9955,27.7812,26.7978,0.071168,0.910176,0.007872,0.005536,0.033696,0.106496,0.107808,25.4389,0.116096
+782,35.8518,27.8926,26.5318,0.0712,0.991712,0.00976,0.004576,0.036896,0.105984,0.10496,25.0914,0.11536
+783,36.3327,27.5234,27.7356,0.070912,0.860736,0.006336,0.006144,0.034336,0.104928,0.10592,26.431,0.1152
+784,34.8015,28.7344,26.409,0.07104,0.766144,0.006624,0.005344,0.033568,0.105632,0.10528,25.2006,0.11472
+785,35.7967,27.9355,27.7588,0.070592,0.97008,0.006816,0.005824,0.037184,0.106464,0.106528,26.3404,0.114944
+786,33.782,29.6016,27.7361,0.071712,0.884704,0.007488,0.0048,0.034144,0.10512,0.106496,26.408,0.113632
+787,36.1148,27.6895,26.2773,0.07168,0.761376,0.006624,0.006048,0.034368,0.104992,0.106496,25.0706,0.115136
+788,36.6762,27.2656,26.3714,0.071168,0.768512,0.006144,0.005792,0.034272,0.10464,0.10704,25.159,0.114752
+789,36.5088,27.3906,27.688,0.07168,0.812096,0.007104,0.005536,0.033408,0.10576,0.105152,26.4325,0.114688
+790,34.2658,29.1836,26.37,0.07168,0.813088,0.007552,0.004704,0.034336,0.104928,0.105696,25.1134,0.114688
+791,36.6211,27.3066,26.5927,0.07168,0.9624,0.006304,0.006144,0.034176,0.104672,0.10608,25.1851,0.11616
+792,36.2273,27.6035,27.7012,0.07088,0.828224,0.006144,0.005824,0.04336,0.105472,0.10544,26.4212,0.114656
+793,34.625,28.8809,26.4118,0.070368,0.830848,0.006848,0.014336,0.034848,0.104416,0.107808,25.1256,0.116704
+794,35.9955,27.7812,27.717,0.070752,0.81952,0.006752,0.02048,0.034304,0.115008,0.106688,26.4294,0.114048
+795,33.5035,29.8477,27.896,0.069792,1.00896,0.006848,0.00576,0.033184,0.105568,0.105344,26.4458,0.114688
+796,36.1659,27.6504,26.3252,0.071424,0.770112,0.006528,0.005408,0.033536,0.105696,0.116544,25.1024,0.113536
+797,35.8393,27.9023,26.57,0.07168,0.96256,0.007776,0.005568,0.044,0.105472,0.105632,25.1527,0.114688
+798,36.6736,27.2676,28.5181,0.069664,0.760864,0.007104,0.004096,0.034848,0.114048,0.106496,27.3057,0.115296
+799,33.8535,29.5391,26.3762,0.071552,0.778368,0.007808,0.005536,0.03376,0.116736,0.10624,25.1406,0.115616
+800,35.8971,27.8574,26.5071,0.069824,0.902336,0.006944,0.013696,0.034752,0.104288,0.10496,25.1553,0.114944
+801,36.7526,27.209,27.689,0.07168,0.808768,0.006336,0.006144,0.038912,0.105696,0.119584,26.4166,0.115264
+802,34.9536,28.6094,26.3073,0.070336,0.8192,0.008,0.004288,0.034432,0.104832,0.107872,25.0428,0.115456
+803,35.9097,27.8477,26.43,0.07024,0.870304,0.006208,0.006144,0.034656,0.104608,0.106496,25.1157,0.11568
+804,35.9702,27.8008,27.7425,0.070944,0.828384,0.016384,0.005632,0.03488,0.104096,0.111424,26.4571,0.1136
+805,34.9297,28.6289,26.4349,0.069664,0.788384,0.00624,0.006144,0.034528,0.106784,0.106496,25.2006,0.116064
+806,35.4154,28.2363,27.7214,0.07168,0.871616,0.006976,0.004096,0.034816,0.105984,0.106656,26.405,0.114528
+807,35.558,28.123,27.7135,0.071072,0.874528,0.00672,0.005888,0.033024,0.104448,0.106528,26.3966,0.114688
+808,34.7142,28.8066,26.5335,0.071264,0.942304,0.006336,0.006144,0.034624,0.104672,0.107776,25.146,0.114368
+809,36.5714,27.3438,26.3882,0.071488,0.764096,0.007968,0.005536,0.033632,0.104416,0.106496,25.1796,0.114976
+810,36.5401,27.3672,27.6731,0.070176,0.762976,0.00704,0.004096,0.034848,0.117728,0.105472,26.4573,0.113504
+811,34.6813,28.834,26.409,0.069664,0.763072,0.006944,0.005824,0.033088,0.105632,0.105312,25.2047,0.114688
+812,35.9172,27.8418,26.57,0.069632,0.90112,0.00736,0.004832,0.045152,0.11472,0.10816,25.1969,0.122176
+813,36.4102,27.4648,27.6378,0.07168,0.800768,0.007968,0.005536,0.0336,0.106496,0.106496,26.3899,0.11536
+814,34.7331,28.791,26.4294,0.070944,0.885472,0.00752,0.004768,0.034432,0.10656,0.106144,25.0985,0.115104
+815,36.343,27.5156,27.523,0.071328,0.803168,0.007424,0.004864,0.034528,0.104704,0.335168,26.0472,0.114624
+816,35.0829,28.5039,27.6316,0.0712,0.806848,0.006688,0.005216,0.033696,0.104448,0.107808,26.383,0.112704
+817,32.6614,30.6172,26.5524,0.070656,0.903168,0.00752,0.004768,0.044352,0.112864,0.106336,25.1869,0.115808
+818,38.9917,25.6465,26.4472,0.071328,0.774528,0.007552,0.004704,0.034272,0.118752,0.106624,25.2152,0.11424
+819,36.3146,27.5371,27.6767,0.07168,0.792576,0.007424,0.004864,0.034816,0.10432,0.108672,26.4335,0.118784
+820,34.785,28.748,26.397,0.07008,0.777728,0.00656,0.005408,0.033504,0.105472,0.112736,25.1723,0.11328
+821,36.4984,27.3984,26.345,0.072864,0.760128,0.006688,0.006016,0.034176,0.105216,0.106496,25.1387,0.11472
+822,36.4646,27.4238,27.635,0.07168,0.802816,0.007712,0.004576,0.034272,0.104992,0.106496,26.3797,0.122752
+823,34.726,28.7969,26.3472,0.069952,0.831488,0.007424,0.004896,0.034624,0.10784,0.115552,25.0611,0.114304
+824,36.7473,27.2129,27.5129,0.07168,0.766976,0.007104,0.00416,0.034848,0.1056,0.106976,26.3,0.115552
+825,34.7684,28.7617,27.4262,0.070816,0.770912,0.008,0.005536,0.033568,0.105504,0.105312,26.2118,0.114784
+826,33.5672,29.791,26.5012,0.069664,0.907296,0.007392,0.004832,0.03408,0.10464,0.106752,25.151,0.11552
+827,37.8279,26.4355,26.5523,0.071424,0.937856,0.006528,0.00608,0.034464,0.104864,0.105632,25.1687,0.116736
+828,36.514,27.3867,27.5927,0.071264,0.772576,0.007584,0.004704,0.033792,0.105344,0.104608,26.3792,0.1136
+829,34.7048,28.8145,27.7831,0.071136,0.91808,0.007968,0.005408,0.033728,0.10608,0.105984,26.42,0.114688
+830,34.9273,28.6309,26.3578,0.071072,0.767776,0.006976,0.004096,0.034752,0.10656,0.106464,25.1454,0.114688
+831,35.5112,28.1602,27.6603,0.071552,0.848,0.007936,0.005536,0.033664,0.106464,0.104448,26.368,0.114688
+832,35.2544,28.3652,26.5011,0.07168,0.894592,0.006528,0.005408,0.033504,0.105824,0.10512,25.1638,0.114688
+833,36.2375,27.5957,26.5442,0.070944,0.913312,0.00704,0.005696,0.033216,0.106496,0.106304,25.1783,0.122912
+834,36.2658,27.5742,28.813,0.071424,0.79632,0.006848,0.004096,0.034816,0.105664,0.106752,27.5728,0.11424
+835,33.6134,29.75,26.3461,0.070304,0.772,0.00624,0.006144,0.034816,0.104448,0.106496,25.1305,0.115136
+836,36.2735,27.5684,26.4031,0.069888,0.894432,0.006688,0.005248,0.033792,0.105536,0.10528,25.0655,0.116704
+837,35.9248,27.8359,27.6752,0.070208,0.917504,0.006144,0.006048,0.034176,0.107232,0.106496,26.3138,0.113632
+838,35.1721,28.4316,27.8036,0.070752,0.89184,0.007744,0.004512,0.044064,0.104768,0.111264,26.4558,0.112896
+839,34.3924,29.0762,26.4108,0.071616,0.868512,0.00784,0.005536,0.033696,0.106496,0.110336,25.092,0.114816
+840,36.6054,27.3184,27.6829,0.071808,0.843776,0.007456,0.0048,0.034208,0.104864,0.105728,26.3955,0.114784
+841,34.9727,28.5938,26.3619,0.071232,0.763712,0.006784,0.005856,0.033056,0.106272,0.10672,25.1535,0.114688
+842,36.4517,27.4336,26.6753,0.070112,0.796672,0.008032,0.004256,0.034752,0.104512,0.105568,25.433,0.118368
+843,35.9475,27.8184,28.4647,0.069888,0.77184,0.0064,0.006144,0.034368,0.10624,0.105152,27.2404,0.124256
+844,33.1027,30.209,26.3844,0.07168,0.813056,0.008064,0.004224,0.034784,0.104256,0.105952,25.1277,0.114688
+845,37.1688,26.9043,26.3538,0.069792,0.755712,0.007392,0.004896,0.034816,0.106432,0.106592,25.1531,0.115072
+846,34.4642,29.0156,27.9593,0.071616,1.11008,0.023616,0.005056,0.040256,0.105248,0.107776,26.3822,0.113408
+847,35.8845,27.8672,27.7834,0.071264,0.922304,0.007392,0.004896,0.045056,0.104448,0.108544,26.4044,0.115104
+848,34.5246,28.9648,26.4434,0.071296,0.924,0.006176,0.014176,0.047104,0.104768,0.120672,25.0405,0.114688
+849,36.3146,27.5371,27.7135,0.071424,0.8256,0.007584,0.014944,0.036096,0.103168,0.106304,26.4337,0.114688
+850,34.5269,28.9629,26.4692,0.070432,0.9032,0.007904,0.004352,0.043008,0.104448,0.106496,25.1044,0.124928
+851,36.2478,27.5879,26.3454,0.070144,0.802816,0.007904,0.005536,0.033696,0.106464,0.105952,25.0967,0.11616
+852,34.1493,29.2832,27.9552,0.070816,1.04944,0.007648,0.00464,0.034688,0.106624,0.106496,26.4621,0.112736
+853,37.1823,26.8945,26.2829,0.07456,0.757888,0.007968,0.00432,0.034816,0.104448,0.106496,25.0778,0.114688
+854,36.125,27.6816,26.4681,0.069728,0.96432,0.006432,0.005504,0.03344,0.105696,0.106304,25.0623,0.114368
+855,35.8242,27.9141,27.8348,0.070112,0.945312,0.007008,0.005696,0.047552,0.106208,0.11296,26.4265,0.113504
+856,35.0901,28.498,26.4036,0.070656,0.783488,0.007008,0.004096,0.034816,0.106528,0.122432,25.1598,0.114752
+857,35.3689,28.2734,26.6324,0.071808,1.01581,0.0072,0.005088,0.0344,0.113056,0.107776,25.1625,0.11472
+858,36.6369,27.2949,27.6714,0.070592,0.830592,0.007008,0.014336,0.0344,0.104864,0.104448,26.3897,0.115488
+859,34.5666,28.9297,26.4853,0.070176,0.95824,0.006368,0.006144,0.04656,0.104704,0.106656,25.0713,0.115168
+860,36.6473,27.2871,27.6255,0.070912,0.78016,0.00704,0.004096,0.034784,0.10448,0.106496,26.4028,0.114688
+861,34.6531,28.8574,27.6255,0.07168,0.787968,0.006656,0.005984,0.034144,0.10464,0.10624,26.3934,0.11472
+862,34.8774,28.6719,26.3134,0.070336,0.788448,0.007392,0.004832,0.03408,0.1032,0.106496,25.0838,0.114752
+863,36.1097,27.6934,26.4933,0.071072,0.854208,0.006944,0.005664,0.03328,0.104416,0.106496,25.1965,0.11472
+864,36.2837,27.5605,27.6083,0.07168,0.794624,0.007616,0.004672,0.034816,0.106016,0.104928,26.3697,0.114272
+865,34.6766,28.8379,26.3887,0.070016,0.847712,0.006144,0.006144,0.034496,0.104768,0.107616,25.0971,0.114688
+866,36.4594,27.4277,26.4204,0.071616,0.809024,0.007328,0.004832,0.034752,0.104608,0.105888,25.1675,0.11488
+867,36.3043,27.5449,27.6758,0.071168,0.805536,0.008,0.005536,0.033568,0.10592,0.106016,26.4244,0.115744
+868,34.7025,28.8164,26.3888,0.070176,0.802816,0.007232,0.004832,0.034272,0.103168,0.106048,25.145,0.115264
+869,36.7104,27.2402,27.5785,0.069824,0.755264,0.006592,0.006016,0.03472,0.10448,0.10576,26.381,0.114816
+870,35.0062,28.5664,27.6235,0.070752,0.764832,0.007616,0.004672,0.034816,0.103776,0.106688,26.4156,0.11472
+871,34.5223,28.9668,26.5093,0.069632,0.874496,0.007776,0.004512,0.049152,0.108544,0.106528,25.173,0.11568
+872,36.5819,27.3359,26.4192,0.07152,0.77616,0.006368,0.0056,0.03328,0.105696,0.107232,25.1985,0.114816
+873,36.5219,27.3809,27.5847,0.07008,0.761856,0.007872,0.005536,0.033696,0.104448,0.107552,26.3772,0.11648
+874,34.9369,28.623,26.3322,0.069696,0.772032,0.007776,0.004512,0.03424,0.107072,0.1064,25.1147,0.115776
+875,35.993,27.7832,26.4204,0.070944,0.829856,0.006464,0.006144,0.034208,0.10656,0.106688,25.1436,0.115904
+876,36.8239,27.1562,27.7465,0.070016,0.925664,0.007232,0.0048,0.03312,0.10608,0.106816,26.3782,0.114528
+877,34.7944,28.7402,26.3086,0.071008,0.782208,0.006944,0.005696,0.033216,0.105504,0.105504,25.0838,0.114688
+878,36.5897,27.3301,27.6275,0.071552,0.788608,0.00752,0.004768,0.033952,0.105312,0.108544,26.3943,0.112928
+879,34.9178,28.6387,27.607,0.071296,0.784768,0.007776,0.005536,0.033792,0.106336,0.106176,26.3767,0.114688
+880,34.9727,28.5938,26.319,0.071712,0.765952,0.006304,0.005696,0.033216,0.10608,0.10656,25.11,0.113568
+881,36.5923,27.3281,26.3138,0.07168,0.766976,0.007104,0.005536,0.033504,0.106432,0.106496,25.1015,0.114592
+882,35.9955,27.7812,27.6616,0.071808,0.935936,0.00784,0.004448,0.034656,0.105792,0.106656,26.2806,0.113792
+883,35.0133,28.5605,27.5759,0.071424,0.809504,0.007264,0.005024,0.034592,0.112864,0.106496,26.3125,0.116256
+884,34.9703,28.5957,26.3293,0.070912,0.816128,0.007328,0.004832,0.03408,0.117376,0.116256,25.0477,0.114688
+885,36.6578,27.2793,27.5783,0.07168,0.786464,0.007808,0.005504,0.03376,0.104448,0.107808,26.3453,0.115552
+886,35.0229,28.5527,26.3022,0.071648,0.769984,0.00624,0.005568,0.03344,0.105696,0.106464,25.0867,0.11648
+887,36.2966,27.5508,26.4009,0.070912,0.856992,0.008192,0.005504,0.033408,0.118528,0.106272,25.0863,0.114848
+888,36.3095,27.541,27.5847,0.070432,0.774144,0.007584,0.004704,0.034368,0.104352,0.105024,26.3696,0.114464
+889,34.9059,28.6484,26.3701,0.07168,0.778144,0.00624,0.006144,0.03456,0.104704,0.106496,25.1465,0.115616
+890,35.945,27.8203,26.4991,0.070752,0.897408,0.006688,0.018432,0.034816,0.103744,0.106432,25.1441,0.116736
+891,36.8319,27.1504,27.6055,0.070464,0.775872,0.006464,0.006144,0.034144,0.10512,0.106496,26.3862,0.11456
+892,32.8479,30.4434,26.9542,0.07024,1.37418,0.0072,0.004832,0.034144,0.105376,0.108032,25.1353,0.114912
+893,37.3641,26.7637,27.7084,0.071296,0.84944,0.007008,0.005696,0.034368,0.106528,0.105312,26.4131,0.115744
+894,34.7283,28.7949,27.6805,0.071008,0.805568,0.007264,0.004832,0.033088,0.105376,0.105408,26.4334,0.114528
+895,34.6063,28.8965,26.4558,0.071232,0.87808,0.007104,0.005536,0.033376,0.105504,0.103392,25.1351,0.116512
+896,36.6369,27.2949,26.2645,0.070656,0.768,0.00784,0.004416,0.03472,0.104192,0.106944,25.0527,0.115104
+897,36.3817,27.4863,27.7255,0.070016,0.898656,0.00656,0.006144,0.034496,0.104768,0.117888,26.3709,0.116064
+898,34.8893,28.6621,27.687,0.07008,0.77792,0.006432,0.005568,0.033376,0.116384,0.108896,26.454,0.1144
+899,34.5666,28.9297,26.3859,0.07168,0.802112,0.006848,0.005856,0.034368,0.117472,0.106176,25.1269,0.1144
+900,36.5193,27.3828,27.6692,0.070368,0.774112,0.008,0.004288,0.034816,0.104224,0.106432,26.4523,0.11472
+901,34.5852,28.9141,26.3366,0.071616,0.796736,0.007648,0.00464,0.034816,0.104448,0.1056,25.0968,0.114336
+902,36.5349,27.3711,26.3961,0.071232,0.805312,0.007328,0.004832,0.033952,0.103392,0.105536,25.1504,0.114144
+903,36.5532,27.3574,27.6007,0.07712,0.778144,0.006976,0.005728,0.033312,0.106336,0.106496,26.3721,0.114464
+904,34.956,28.6074,26.3107,0.07168,0.774144,0.007936,0.004352,0.034528,0.10416,0.105024,25.0941,0.11472
+905,36.3662,27.498,26.4242,0.070528,0.839712,0.007936,0.005536,0.0336,0.104416,0.106336,25.1414,0.114688
+906,36.3481,27.5117,27.722,0.069984,0.843776,0.00768,0.004608,0.034336,0.104928,0.105792,26.4342,0.116704
+907,34.8063,28.7305,26.3473,0.071456,0.773856,0.007008,0.005632,0.034336,0.105152,0.104896,25.13,0.11504
+908,35.3055,28.3242,27.645,0.071456,0.814592,0.006912,0.004096,0.034816,0.104448,0.106496,26.3863,0.115872
+909,34.7992,28.7363,27.6644,0.072992,0.872256,0.007072,0.005568,0.033376,0.104416,0.105632,26.3483,0.114816
+910,35.2763,28.3477,26.4813,0.070304,0.89904,0.007328,0.004832,0.034048,0.103296,0.10608,25.1417,0.114688
+911,36.1097,27.6934,26.4069,0.07168,0.841728,0.007552,0.004736,0.034848,0.105568,0.105344,25.1203,0.1152
+912,36.7315,27.2246,27.5904,0.071424,0.772832,0.007488,0.0048,0.03424,0.104736,0.104736,26.3762,0.113952
+913,34.8964,28.6562,26.234,0.071456,0.77744,0.007136,0.005536,0.033408,0.105504,0.105536,25.0121,0.115872
+914,36.5427,27.3652,26.2836,0.071584,0.780416,0.007424,0.004832,0.033952,0.105248,0.104544,25.0607,0.114944
+915,36.5558,27.3555,27.6541,0.070848,0.834368,0.007936,0.005568,0.034752,0.105344,0.106496,26.3741,0.114688
+916,34.8418,28.7012,26.4073,0.070176,0.806368,0.00656,0.005344,0.033568,0.106112,0.10608,25.1584,0.114688
+917,36.3559,27.5059,26.3862,0.07168,0.77344,0.006848,0.005888,0.03408,0.104512,0.10736,25.1659,0.116544
+918,36.0614,27.7305,27.6798,0.07168,0.897024,0.00752,0.004768,0.034368,0.104704,0.106144,26.3399,0.11376
+919,34.7472,28.7793,27.4048,0.07152,0.877248,0.006144,0.006144,0.034496,0.104,0.106304,26.0822,0.116736
+920,35.1673,28.4355,26.4109,0.071424,0.834912,0.007072,0.004096,0.034848,0.104576,0.106336,25.1322,0.115392
+921,36.8054,27.1699,27.5476,0.07104,0.760448,0.006144,0.006144,0.034848,0.104416,0.106496,26.3432,0.11488
+922,34.9393,28.6211,26.2838,0.071456,0.776416,0.007456,0.0048,0.034144,0.1032,0.10832,25.0628,0.115232
+923,36.6788,27.2637,27.4512,0.071008,0.772192,0.007072,0.005536,0.033376,0.106336,0.106656,26.2339,0.115168
+924,35.1552,28.4453,27.5457,0.07168,0.780128,0.006304,0.0056,0.033312,0.105632,0.105312,26.3246,0.113056
+925,35.0301,28.5469,26.3209,0.070944,0.7872,0.007552,0.004704,0.034816,0.106336,0.106656,25.087,0.11568
+926,36.5219,27.3809,26.3476,0.071264,0.792992,0.008096,0.004192,0.034816,0.104448,0.10768,25.1093,0.11472
+927,36.5401,27.3672,27.5472,0.07024,0.75776,0.00752,0.004768,0.03472,0.105952,0.105088,26.3468,0.114432
+928,35.0349,28.543,26.3206,0.071424,0.806944,0.0064,0.005696,0.034336,0.105312,0.10624,25.0689,0.11536
+929,35.5556,28.125,26.4111,0.069728,0.859264,0.00704,0.005728,0.033184,0.11264,0.109568,25.0972,0.116736
+930,37.0531,26.9883,27.7606,0.07072,0.87856,0.007136,0.004096,0.034816,0.104448,0.106464,26.4409,0.113504
+931,34.7496,28.7773,26.366,0.07088,0.834336,0.007904,0.005536,0.033664,0.105728,0.105248,25.088,0.114688
+932,36.2221,27.6074,27.4356,0.07024,1.0584,0.00656,0.005504,0.034432,0.10528,0.1064,25.936,0.1128
+933,35.5457,28.1328,27.5948,0.077344,0.764224,0.006304,0.006144,0.034208,0.105056,0.106528,26.3803,0.114688
+934,34.6508,28.8594,26.4274,0.071712,0.772064,0.008,0.004288,0.034464,0.105984,0.105312,25.2124,0.113152
+935,36.4361,27.4453,26.3221,0.071648,0.810176,0.007008,0.005632,0.03328,0.106496,0.106272,25.0657,0.115936
+936,36.4257,27.4531,27.7463,0.071424,0.87424,0.006656,0.005248,0.033664,0.105728,0.106656,26.428,0.114688
+937,34.6203,28.8848,26.3229,0.070144,0.839552,0.006272,0.006144,0.034144,0.104704,0.104864,25.0409,0.116224
+938,36.5584,27.3535,26.4058,0.070592,0.79664,0.007872,0.004416,0.034592,0.104416,0.105792,25.1682,0.113312
+939,36.1327,27.6758,27.7588,0.071488,0.88512,0.007296,0.004992,0.034688,0.104576,0.10448,26.4294,0.116736
+940,34.7401,28.7852,26.3204,0.069632,0.833568,0.007776,0.00448,0.034752,0.105824,0.10672,25.0414,0.116192
+941,36.7078,27.2422,27.6214,0.070976,0.819456,0.006592,0.006144,0.033856,0.10448,0.10688,26.3583,0.11472
+942,34.6907,28.8262,27.688,0.071104,0.889312,0.00624,0.005632,0.03328,0.105984,0.106848,26.3556,0.114016
+943,34.9751,28.5918,26.2922,0.071424,0.77808,0.00656,0.00608,0.03408,0.104864,0.106848,25.069,0.115264
+944,34.4781,29.0039,26.4596,0.069728,0.970144,0.006656,0.012288,0.034816,0.104448,0.108544,25.0368,0.116224
+945,37.5339,26.6426,27.7422,0.071648,0.9032,0.007968,0.005536,0.0336,0.105728,0.105408,26.3944,0.114688
+946,34.3809,29.0859,26.4891,0.070304,0.959584,0.007072,0.004096,0.047104,0.106048,0.106944,25.0732,0.114752
+947,36.0817,27.7148,26.3967,0.07168,0.839712,0.008032,0.005536,0.033504,0.105632,0.105312,25.1126,0.114688
+948,36.9355,27.0742,27.6087,0.07168,0.772096,0.008096,0.004192,0.034656,0.104608,0.105664,26.3932,0.114528
+949,34.9703,28.5957,26.3414,0.070816,0.784928,0.006496,0.006112,0.034144,0.105152,0.107584,25.1113,0.11488
+950,35.9223,27.8379,27.7319,0.07168,0.93184,0.007456,0.004608,0.034208,0.121184,0.122816,26.3235,0.114624
+951,35.2374,28.3789,27.5881,0.070688,0.768992,0.00768,0.004608,0.034848,0.106464,0.10576,26.3747,0.114336
+952,34.7992,28.7363,26.2309,0.071584,0.77824,0.00704,0.004096,0.034816,0.1024,0.105984,25.0107,0.116032
+953,36.6316,27.2988,27.519,0.0712,0.784864,0.018432,0.005984,0.034016,0.105408,0.110048,26.2758,0.113216
+954,34.9918,28.5781,27.5616,0.070176,0.776,0.0064,0.0056,0.034912,0.10688,0.106496,26.3414,0.113792
+955,34.6625,28.8496,26.3168,0.07168,0.78976,0.006912,0.005696,0.033216,0.105984,0.104992,25.0839,0.11472
+956,36.2375,27.5957,26.3759,0.071712,0.798688,0.007808,0.00448,0.034432,0.104832,0.106496,25.1331,0.114432
+957,36.4154,27.4609,27.6901,0.07136,0.868672,0.00784,0.005536,0.033728,0.106496,0.105856,26.376,0.114592
+958,34.8703,28.6777,26.3242,0.071136,0.780832,0.007648,0.00464,0.034176,0.104096,0.10752,25.0995,0.114624
+959,36.4932,27.4023,26.3662,0.07184,0.786528,0.007808,0.005536,0.033792,0.104416,0.107712,25.1339,0.114688
+960,36.4231,27.4551,27.5641,0.071328,0.776608,0.007296,0.004832,0.032928,0.106528,0.105984,26.3439,0.114688
+961,34.894,28.6582,26.4226,0.07168,0.79872,0.007552,0.004736,0.034816,0.105792,0.105152,25.1698,0.124416
+962,36.5167,27.3848,27.5668,0.071648,0.791488,0.007616,0.004672,0.034208,0.104288,0.106528,26.3309,0.115456
+963,34.956,28.6074,27.6524,0.070016,0.826624,0.00688,0.005728,0.033184,0.104448,0.106496,26.3839,0.115136
+964,34.8655,28.6816,26.4274,0.0712,0.791008,0.007456,0.004832,0.034112,0.105088,0.10656,25.1924,0.114688
+965,36.1123,27.6914,26.3192,0.070464,0.800768,0.007968,0.005504,0.033632,0.106432,0.10656,25.0715,0.116384
+966,36.2889,27.5566,27.7257,0.07136,0.8504,0.007424,0.004832,0.04304,0.105504,0.117248,26.4115,0.1144
+967,34.5572,28.9375,27.6274,0.07168,0.768,0.008032,0.005536,0.033536,0.105568,0.107008,26.4132,0.114816
+968,34.8489,28.6953,26.3926,0.07168,0.814656,0.006592,0.005344,0.033568,0.104096,0.104864,25.1369,0.114912
+969,36.5923,27.3281,27.7439,0.070752,0.771008,0.00816,0.005952,0.034464,0.104544,0.106944,26.5273,0.114752
+970,34.4271,29.0469,26.3864,0.071136,0.827936,0.007392,0.004832,0.03392,0.104864,0.104992,25.1167,0.114688
+971,36.6107,27.3145,26.3214,0.071488,0.836256,0.007264,0.005024,0.034816,0.104448,0.106496,25.0402,0.115424
+972,36.1174,27.6875,27.6298,0.070944,0.807456,0.02208,0.00496,0.034112,0.108896,0.10688,26.3598,0.114688
+973,34.6907,28.8262,26.334,0.070496,0.823104,0.0064,0.00608,0.033984,0.103232,0.106496,25.0687,0.115552
+974,36.2145,27.6133,26.4852,0.070144,0.968704,0.022528,0.00528,0.033632,0.104448,0.106496,25.0593,0.114688
+975,36.1914,27.6309,27.5964,0.070016,0.864256,0.007264,0.005056,0.03424,0.106464,0.105024,26.29,0.11408
+976,35.0493,28.5312,26.2968,0.070592,0.804864,0.007776,0.004512,0.034464,0.104672,0.105984,25.0489,0.115072
+977,36.3301,27.5254,27.692,0.070624,0.847552,0.02224,0.00592,0.037248,0.106976,0.106464,26.3803,0.11472
+978,35.0565,28.5254,27.6214,0.072384,0.786688,0.007168,0.004832,0.034528,0.104832,0.107776,26.3894,0.113792
+979,34.8703,28.6777,26.3449,0.071328,0.775648,0.007072,0.0056,0.033312,0.106496,0.106496,25.1244,0.114528
+980,36.4154,27.4609,26.3803,0.071488,0.793824,0.00688,0.004352,0.034848,0.104416,0.106496,25.1444,0.113632
+981,36.2683,27.5723,27.6754,0.070432,0.853088,0.007072,0.014336,0.034816,0.105824,0.10512,26.3619,0.12288
+982,34.7001,28.8184,27.6054,0.071424,0.821824,0.006272,0.005664,0.033248,0.106496,0.10656,26.3388,0.115104
+983,34.4874,28.9961,26.4131,0.071712,0.83952,0.006272,0.006144,0.034656,0.104608,0.106496,25.1269,0.116736
+984,36.9222,27.084,27.5134,0.070208,0.784736,0.007424,0.004832,0.034432,0.106912,0.1064,26.284,0.114432
+985,34.6461,28.8633,26.4628,0.070176,0.811008,0.007584,0.004704,0.034592,0.104672,0.104608,25.2102,0.115232
+986,36.4491,27.4355,26.4085,0.070848,0.787232,0.006176,0.005728,0.033184,0.106208,0.104736,25.1795,0.114912
+987,36.1633,27.6523,27.5662,0.071456,0.796512,0.006656,0.00592,0.032992,0.1064,0.106592,26.325,0.114688
+988,34.6813,28.834,26.3539,0.07024,0.890048,0.006976,0.004096,0.034848,0.104416,0.106496,25.0216,0.1152
+989,36.1199,27.6855,26.3627,0.070528,0.80464,0.00624,0.006144,0.034272,0.104992,0.105632,25.1155,0.11472
+990,36.069,27.7246,27.6419,0.071136,0.789056,0.007168,0.004832,0.03408,0.10928,0.106496,26.4063,0.113536
+991,32.9791,30.3223,26.4181,0.07056,0.888832,0.008032,0.005536,0.033536,0.106432,0.10656,25.0837,0.114848
+992,38.5571,25.9355,27.5622,0.069856,0.77616,0.007296,0.004896,0.03392,0.106624,0.106816,26.3419,0.114688
+993,34.5479,28.9453,27.6354,0.069632,0.83152,0.007648,0.004608,0.034816,0.106496,0.106304,26.3595,0.114816
+994,34.8015,28.7344,26.4086,0.070176,0.836992,0.006784,0.004096,0.034848,0.104416,0.106528,25.13,0.114848
+995,36.4024,27.4707,26.3167,0.069728,0.759712,0.007648,0.00464,0.034816,0.104448,0.108288,25.1108,0.116672
+996,36.3533,27.5078,27.5936,0.07056,0.821344,0.007712,0.004544,0.047104,0.106496,0.105952,26.3165,0.113376
+997,34.8442,28.6992,26.3588,0.07088,0.817248,0.006848,0.005856,0.033056,0.106496,0.106496,25.0962,0.115744
+998,36.3869,27.4824,26.2636,0.071168,0.807424,0.007904,0.004384,0.034528,0.105856,0.105376,25.0122,0.11472
+999,36.4854,27.4082,27.5081,0.069792,0.780256,0.007968,0.005536,0.0336,0.106496,0.118784,26.2713,0.114368
+1000,34.2498,29.1973,27.5605,0.0712,0.78912,0.006464,0.005504,0.033376,0.106496,0.107584,26.3157,0.125024
+1001,35.0085,28.5645,26.2684,0.070368,0.802816,0.00736,0.004928,0.034816,0.105984,0.104992,25.0224,0.114656
+1002,36.5767,27.3398,27.4688,0.071648,0.772128,0.008,0.004288,0.034592,0.104672,0.10576,26.2532,0.114528
+1003,35.1262,28.4688,26.2267,0.07168,0.776192,0.007712,0.004576,0.034784,0.10448,0.107552,25.005,0.114688
+1004,36.5453,27.3633,27.5442,0.071392,0.785248,0.00752,0.004768,0.034272,0.104352,0.105088,26.3168,0.114752
+1005,34.875,28.6738,27.5781,0.069856,0.813056,0.0072,0.005088,0.034272,0.104992,0.108192,26.3192,0.116224
+1006,34.8916,28.6602,26.453,0.07136,0.862016,0.006656,0.005248,0.033664,0.104448,0.1064,25.1475,0.115744
+1007,35.4325,28.2227,26.3209,0.070208,0.78208,0.0064,0.006144,0.034336,0.104896,0.106528,25.0937,0.11664
+1008,37.185,26.8926,27.6052,0.069888,0.888128,0.006816,0.005216,0.033728,0.105472,0.106944,26.2743,0.114688
+1009,34.8442,28.6992,26.4561,0.070848,0.875328,0.007968,0.005504,0.033632,0.105472,0.10672,25.1359,0.114688
+1010,36.2632,27.5762,26.4458,0.071424,0.87664,0.006368,0.0056,0.034432,0.105312,0.107712,25.1236,0.114688
+1011,36.1914,27.6309,27.4888,0.070496,0.798816,0.00784,0.005504,0.03376,0.104448,0.105728,26.2476,0.11456
+1012,34.9154,28.6406,26.8421,0.070656,0.89088,0.006208,0.005792,0.033184,0.104416,0.1064,25.5111,0.113472
+1013,35.7767,27.9512,26.2784,0.070112,0.767168,0.006976,0.005632,0.03328,0.104288,0.104608,25.0716,0.114688
+1014,36.3275,27.5273,27.6978,0.070304,0.890848,0.007264,0.004832,0.034176,0.104416,0.10688,26.3644,0.114688
+1015,33.8961,29.502,26.4624,0.069792,0.86608,0.0064,0.006112,0.034496,0.104768,0.107776,25.1523,0.11472
+1016,36.0538,27.7363,27.5185,0.069632,0.88784,0.007136,0.014336,0.038272,0.10448,0.107104,26.1734,0.116288
+1017,35.1528,28.4473,27.6319,0.069984,0.802144,0.006816,0.005984,0.034752,0.10672,0.107936,26.3826,0.114976
+1018,34.6625,28.8496,26.329,0.071136,0.807776,0.007392,0.004832,0.034048,0.104416,0.107264,25.0779,0.114304
+1019,36.574,27.3418,26.3634,0.071456,0.811232,0.006144,0.006144,0.03456,0.104704,0.10784,25.1051,0.116256
+1020,36.1123,27.6914,27.6682,0.069888,0.839232,0.006432,0.005504,0.033408,0.105664,0.10688,26.3869,0.114272
+1021,34.6344,28.873,26.3332,0.071712,0.84576,0.006176,0.006144,0.034624,0.10608,0.105056,25.044,0.113632
+1022,36.0411,27.7461,26.4728,0.071776,0.944672,0.007968,0.00432,0.034624,0.10464,0.106496,25.0839,0.1144
+1023,36.0462,27.7422,27.6856,0.071648,0.836384,0.007232,0.005024,0.034528,0.104736,0.106496,26.404,0.115552
+1024,34.3509,29.1113,27.7132,0.07136,0.936256,0.007456,0.004832,0.034336,0.104736,0.106048,26.3338,0.114336
+1025,34.3763,29.0898,26.4602,0.071488,0.871968,0.006816,0.005856,0.034144,0.10528,0.104576,25.1453,0.11472
+1026,36.1123,27.6914,27.747,0.071392,0.90624,0.007392,0.004832,0.0344,0.104928,0.106432,26.3967,0.114688
+1027,34.811,28.7266,26.3496,0.07056,0.818944,0.006368,0.006144,0.034816,0.104448,0.107744,25.0847,0.11584
+1028,36.1914,27.6309,26.7407,0.071712,0.856032,0.00752,0.004768,0.034176,0.104096,0.10544,25.4423,0.114656
+1029,35.3396,28.2969,27.6742,0.07168,0.908832,0.006624,0.014336,0.035872,0.105248,0.106624,26.3105,0.114464
+1030,35.269,28.3535,26.2513,0.071712,0.761824,0.007328,0.004832,0.034176,0.106304,0.105408,25.045,0.114688
+1031,36.3817,27.4863,26.3429,0.071712,0.81296,0.006208,0.006144,0.034816,0.106112,0.108704,25.08,0.116256
+1032,36.3507,27.5098,27.6135,0.069952,0.843584,0.006432,0.005632,0.034432,0.105248,0.106336,26.3285,0.113376
+1033,34.6954,28.8223,26.5268,0.071392,0.915744,0.007552,0.004736,0.034528,0.104672,0.104512,25.1679,0.115744
+1034,36.0716,27.7227,26.4524,0.070048,0.913408,0.00768,0.004576,0.03424,0.11936,0.107936,25.0804,0.114688
+1035,36.3327,27.5234,27.5948,0.0712,0.793024,0.006176,0.006144,0.034656,0.104224,0.10624,26.3584,0.114656
+1036,33.682,29.6895,27.7525,0.071008,0.940704,0.007328,0.004864,0.034368,0.104192,0.106688,26.37,0.113376
+1037,35.9778,27.7949,26.2546,0.07168,0.76944,0.006752,0.005888,0.033024,0.104448,0.106496,25.0421,0.114752
+1038,36.0665,27.7266,27.5973,0.070208,0.819168,0.007712,0.004576,0.03456,0.105952,0.105344,26.3281,0.121696
+1039,34.6907,28.8262,26.4069,0.0704,0.853984,0.0072,0.005088,0.034208,0.104608,0.106816,25.1044,0.12016
+1040,36.4024,27.4707,27.5487,0.07168,0.782336,0.007584,0.004704,0.03408,0.105088,0.110016,26.3175,0.115776
+1041,34.6297,28.877,27.689,0.07168,0.868352,0.007648,0.00464,0.034816,0.108544,0.104608,26.374,0.114688
+1042,34.9059,28.6484,26.3332,0.071712,0.798496,0.0064,0.005664,0.033184,0.10576,0.106368,25.0909,0.11472
+1043,36.4646,27.4238,26.3812,0.070592,0.849888,0.007968,0.005536,0.0336,0.106016,0.106976,25.0839,0.116704
+1044,36.5088,27.3906,27.5613,0.06976,0.789632,0.006912,0.004096,0.034816,0.103968,0.10624,26.3314,0.114464
+1045,34.6156,28.8887,26.239,0.07168,0.792576,0.007552,0.004736,0.034816,0.106496,0.106112,25.0003,0.114688
+1046,36.5271,27.377,26.3379,0.070208,0.834976,0.006752,0.005184,0.033728,0.104448,0.106496,25.0612,0.114816
+1047,36.5845,27.334,27.5992,0.071136,0.798784,0.006848,0.005536,0.033472,0.104448,0.111936,26.3523,0.11472
+1048,34.8157,28.7227,26.3455,0.071136,0.8008,0.006656,0.005344,0.033568,0.104448,0.106496,25.1023,0.114688
+1049,36.3869,27.4824,27.6735,0.0704,0.813216,0.007648,0.00464,0.034816,0.106496,0.104448,26.4183,0.113536
+1050,33.6311,29.7344,27.7799,0.070496,0.88064,0.007936,0.004352,0.034688,0.105664,0.105408,26.4561,0.114688
+1051,34.5456,28.9473,26.409,0.070784,0.897856,0.007296,0.005056,0.034432,0.104832,0.107648,25.0664,0.114688
+1052,37.6581,26.5547,26.3188,0.071136,0.774688,0.007488,0.0048,0.033856,0.105408,0.107904,25.0989,0.114688
+1053,36.3714,27.4941,28.7684,0.070336,0.761824,0.007424,0.004864,0.03472,0.106528,0.106464,27.562,0.11424
+1054,33.5188,29.834,26.3673,0.07696,0.785248,0.007552,0.004736,0.034272,0.10464,0.1064,25.1331,0.114432
+1055,34.1675,29.2676,26.4056,0.070368,0.917408,0.00624,0.006144,0.034656,0.104608,0.10448,25.047,0.114688
+1056,38.8173,25.7617,27.5743,0.071392,0.79888,0.006272,0.005664,0.033248,0.104448,0.105824,26.3359,0.11264
+1057,34.7378,28.7871,26.3373,0.071328,0.774496,0.007968,0.005536,0.033632,0.1208,0.106272,25.1036,0.113632
+1058,36.4491,27.4355,26.2817,0.071232,0.794976,0.006336,0.00544,0.0336,0.10432,0.106464,25.045,0.114336
+1059,36.064,27.7285,27.5235,0.070112,0.800736,0.00784,0.005536,0.034784,0.103488,0.1064,26.2814,0.113248
+1060,35.4031,28.2461,27.6003,0.071616,0.804896,0.006176,0.005728,0.033216,0.106336,0.106624,26.3507,0.114976
+1061,34.9154,28.6406,26.3268,0.071264,0.840032,0.006368,0.005984,0.034624,0.104416,0.105984,25.0436,0.114496
+1062,36.7367,27.2207,27.5726,0.071744,0.764224,0.006464,0.005504,0.03344,0.106464,0.105632,26.3627,0.116416
+1063,34.8774,28.6719,26.3202,0.071296,0.76384,0.006592,0.006048,0.032928,0.105696,0.10656,25.1112,0.116032
+1064,36.629,27.3008,26.3252,0.069856,0.802816,0.007744,0.004544,0.034144,0.105088,0.105536,25.0808,0.114688
+1065,35.0205,28.5547,29.1232,0.070304,1.1264,0.00736,0.004928,0.034784,0.105888,0.105088,27.5535,0.114976
+1066,34.0629,29.3574,26.4337,0.070976,0.893792,0.008128,0.00416,0.034816,0.104448,0.106496,25.0962,0.114688
+1067,36.3121,27.5391,26.4546,0.070272,0.884704,0.007456,0.004832,0.034752,0.103872,0.106656,25.127,0.115072
+1068,36.1582,27.6562,27.6239,0.070208,0.903168,0.007456,0.004832,0.034048,0.106272,0.105472,26.2779,0.11456
+1069,34.8584,28.6875,26.2801,0.069792,0.842784,0.007072,0.005568,0.03344,0.104416,0.107616,24.9942,0.115168
+1070,36.2375,27.5957,26.3492,0.070272,0.87376,0.00688,0.005152,0.033792,0.104,0.106176,25.0334,0.115776
+1071,36.4361,27.4453,27.7207,0.070624,0.892928,0.007968,0.005536,0.033632,0.104416,0.1064,26.3845,0.11472
+1072,34.6063,28.8965,26.2914,0.071232,0.7664,0.007392,0.0048,0.034816,0.104544,0.10576,25.0805,0.115872
+1073,36.5323,27.373,27.5974,0.070496,0.800736,0.007744,0.004544,0.034784,0.105792,0.107232,26.3513,0.114784
+1074,34.7755,28.7559,27.5317,0.070048,0.81856,0.006784,0.005216,0.033728,0.104416,0.106496,26.2717,0.114688
+1075,34.072,29.3496,26.4198,0.070208,0.921024,0.006752,0.005984,0.034944,0.104128,0.104768,25.057,0.114976
+1076,37.0478,26.9922,27.5966,0.071328,0.825728,0.007424,0.004832,0.04288,0.103552,0.105472,26.3227,0.112768
+1077,35.0421,28.5371,27.5579,0.075456,0.780608,0.007616,0.004672,0.034816,0.104448,0.106272,26.3293,0.114656
+1078,34.726,28.7969,26.3782,0.071712,0.905056,0.006272,0.005696,0.034336,0.103136,0.106688,25.0266,0.118784
+1079,36.0386,27.748,26.2808,0.07232,0.770176,0.006144,0.006144,0.034272,0.10432,0.10512,25.0675,0.114752
+1080,36.2709,27.5703,27.607,0.07168,0.886784,0.007648,0.004064,0.033344,0.104448,0.106496,26.2776,0.115008
+1081,34.6273,28.8789,26.4152,0.071136,0.897664,0.007712,0.004576,0.043008,0.106272,0.106368,25.0636,0.11488
+1082,36.5219,27.3809,26.4522,0.070976,0.86928,0.016384,0.005632,0.034336,0.10448,0.107456,25.1261,0.117536
+1083,35.2544,28.3652,27.6562,0.07168,0.869952,0.006592,0.013952,0.034688,0.106016,0.107488,26.331,0.114848
+1084,33.6002,29.7617,27.818,0.071168,1.06541,0.020576,0.005632,0.04672,0.107392,0.108544,26.2779,0.114688
+1085,36.1123,27.6914,26.4419,0.070336,0.914656,0.006944,0.005728,0.033216,0.105472,0.10544,25.0839,0.116224
+1086,36.1914,27.6309,27.6869,0.071584,0.874592,0.007616,0.004672,0.036864,0.106368,0.123008,26.3475,0.114688
+1087,34.5269,28.9629,26.298,0.07088,0.805696,0.00768,0.004576,0.034816,0.104448,0.106496,25.0482,0.115136
+1088,36.194,27.6289,27.6732,0.07136,0.840608,0.007392,0.004832,0.040544,0.10608,0.105376,26.3823,0.114656
+1089,34.3601,29.1035,27.514,0.07104,0.801536,0.00736,0.004896,0.034848,0.106464,0.116736,26.2569,0.114144
+1090,35.2011,28.4082,26.3963,0.069824,0.898816,0.0064,0.005632,0.03328,0.106496,0.106432,25.0548,0.114624
+1091,36.4205,27.457,26.366,0.070816,0.851968,0.007008,0.005632,0.034464,0.104768,0.106176,25.0704,0.114688
+1092,36.3301,27.5254,27.7264,0.07024,0.899072,0.007872,0.004416,0.034784,0.10448,0.107552,26.3847,0.11328
+1093,34.4549,29.0234,26.37,0.07168,0.85712,0.016864,0.004608,0.034816,0.104448,0.106208,25.0596,0.114688
+1094,34.7213,28.8008,26.6805,0.088064,1.0849,0.016544,0.00448,0.034816,0.104192,0.114912,25.1184,0.114208
+1095,36.6107,27.3145,27.7121,0.070176,0.896032,0.007136,0.005568,0.040544,0.10528,0.106656,26.3655,0.1152
+1096,34.4132,29.0586,26.8775,0.070976,0.9528,0.006368,0.005664,0.041472,0.107616,0.10944,25.4689,0.114272
+1097,35.7193,27.9961,26.5837,0.070304,1.0215,0.008608,0.005824,0.036704,0.104416,0.107008,25.1146,0.114784
+1098,36.2273,27.6035,27.5844,0.070368,0.770048,0.008032,0.004256,0.034688,0.104576,0.10448,26.3738,0.11408
+1099,34.9655,28.5996,26.2923,0.071552,0.765568,0.006656,0.00608,0.03392,0.10544,0.105632,25.0824,0.115008
+1100,36.2709,27.5703,26.783,0.071072,0.897568,0.006208,0.005728,0.039104,0.10464,0.10448,25.4403,0.113952
+1101,35.7218,27.9941,27.9977,0.069632,1.25248,0.00704,0.005632,0.036736,0.104416,0.10528,26.3016,0.114912
+1102,34.8015,28.7344,26.2275,0.0704,0.757024,0.006848,0.004096,0.034848,0.1056,0.1064,25.0275,0.11472
+1103,36.217,27.6113,26.3655,0.071168,0.827584,0.006784,0.005824,0.034272,0.1176,0.108544,25.0778,0.115968
+1104,34.9107,28.6445,27.7187,0.070912,0.943936,0.007104,0.004096,0.045056,0.106112,0.110144,26.3171,0.11424
+1105,35.7617,27.9629,26.4151,0.071168,0.89344,0.007968,0.005536,0.041824,0.104448,0.106496,25.0675,0.116736
+1106,36.4335,27.4473,26.3757,0.071456,0.84528,0.006912,0.004096,0.034816,0.104448,0.108544,25.0851,0.115008
+1107,36.4491,27.4355,27.6098,0.070432,0.867552,0.006912,0.005536,0.03344,0.104416,0.106432,26.3003,0.114784
+1108,34.448,29.0293,27.6891,0.06976,0.895008,0.008032,0.012416,0.034816,0.104032,0.104864,26.3472,0.11296
+1109,34.6907,28.8262,26.2779,0.07168,0.759232,0.00672,0.00592,0.034048,0.10544,0.112448,25.0677,0.114688
+1110,36.4076,27.4668,27.6237,0.070336,0.884704,0.0064,0.005504,0.033408,0.106144,0.106848,26.2963,0.114048
+1111,34.6555,28.8555,26.4965,0.07168,0.909024,0.006432,0.006144,0.03392,0.115584,0.107552,25.1316,0.11456
+1112,36.0894,27.709,26.357,0.071232,0.866336,0.00656,0.005376,0.033568,0.106176,0.106336,25.0468,0.114528
+1113,36.0894,27.709,28.4713,0.069664,0.772096,0.007136,0.00512,0.03472,0.10432,0.104672,27.2589,0.114688
+1114,33.4684,29.8789,26.3619,0.07168,0.861952,0.0064,0.005664,0.03344,0.106304,0.105888,25.0558,0.114688
+1115,36.2324,27.5996,26.47,0.071168,0.94208,0.006656,0.005632,0.047008,0.104928,0.105856,25.0703,0.116352
+1116,36.405,27.4688,27.5333,0.071136,0.756256,0.007712,0.004576,0.04096,0.104448,0.106432,26.3281,0.113664
+1117,34.875,28.6738,26.3168,0.071712,0.839392,0.01664,0.006048,0.032864,0.106336,0.106656,25.022,0.115104
+1118,36.5505,27.3594,26.3287,0.07168,0.808032,0.007072,0.014336,0.034816,0.104448,0.11264,25.0593,0.116352
+1119,34.2177,29.2246,27.7238,0.071168,0.907136,0.006784,0.005824,0.047168,0.104704,0.106496,26.3598,0.114656
+1120,36.5219,27.3809,26.8247,0.071008,0.895648,0.00768,0.004608,0.034432,0.106432,0.106944,25.4845,0.11344
+1121,35.8242,27.9141,26.4529,0.070528,0.919552,0.007808,0.005536,0.03488,0.104768,0.106208,25.0883,0.115264
+1122,36.3378,27.5195,27.6071,0.070592,0.804864,0.007616,0.004672,0.034208,0.105056,0.106496,26.3595,0.114112
+1123,34.2888,29.1641,26.3654,0.07088,0.8032,0.006656,0.005952,0.034496,0.106112,0.105344,25.1168,0.115968
+1124,36.0259,27.7578,27.4175,0.070528,0.818208,0.007136,0.004096,0.034592,0.104672,0.108512,26.154,0.115744
+1125,35.0613,28.5215,27.7077,0.069952,0.92896,0.006976,0.005696,0.033216,0.106496,0.114688,26.327,0.11472
+1126,34.7472,28.7793,26.327,0.070848,0.78288,0.006432,0.005504,0.033408,0.105888,0.106912,25.1005,0.114688
+1127,36.5245,27.3789,26.2877,0.070848,0.790816,0.006688,0.006016,0.033984,0.10336,0.106016,25.0537,0.116288
+1128,36.1531,27.6602,27.5272,0.070368,0.788128,0.006496,0.005472,0.03344,0.104448,0.106432,26.2984,0.113984
+1129,32.8859,30.4082,26.4418,0.070432,0.866304,0.007552,0.004736,0.034816,0.1064,0.10592,25.131,0.11456
+1130,38.2976,26.1113,26.2655,0.0704,0.759808,0.006144,0.005824,0.034304,0.105024,0.106752,25.0631,0.114112
+1131,36.6002,27.3223,27.4084,0.071008,0.754336,0.007424,0.004864,0.034592,0.104704,0.106048,26.2107,0.114688
+1132,34.5993,28.9023,26.3858,0.07168,0.907264,0.008064,0.004224,0.034656,0.104576,0.106528,25.0348,0.114048
+1133,36.3069,27.543,27.5333,0.072928,0.795136,0.006432,0.006144,0.034336,0.104928,0.106496,26.2922,0.114688
+1134,34.726,28.7969,27.4735,0.070656,0.813728,0.006496,0.00544,0.033504,0.105856,0.106688,26.2166,0.114528
+1135,34.6625,28.8496,26.8278,0.070656,0.939712,0.006464,0.006144,0.034272,0.104992,0.105856,25.445,0.114688
+1136,36.0056,27.7734,26.4788,0.071648,1.01814,0.009664,0.004672,0.036256,0.103008,0.105664,25.0151,0.114688
+1137,36.0487,27.7402,27.7162,0.071264,0.908256,0.00736,0.004928,0.034784,0.10448,0.118592,26.3457,0.120832
+1138,33.8423,29.5488,26.579,0.071776,0.989184,0.006144,0.00576,0.039072,0.110816,0.112672,25.1289,0.114688
+1139,35.9349,27.8281,26.4622,0.071712,0.91264,0.00688,0.005888,0.033024,0.106496,0.10768,25.1031,0.114816
+1140,36.031,27.7539,27.728,0.070304,0.905216,0.007392,0.004832,0.033024,0.106336,0.104416,26.3821,0.114432
+1141,34.3763,29.0898,26.4561,0.071488,0.95648,0.006368,0.006048,0.03424,0.1048,0.10672,25.0551,0.114848
+1142,36.2452,27.5898,27.3736,0.07168,0.792096,0.006624,0.005344,0.033568,0.104448,0.335648,25.9109,0.113216
+1143,35.3591,28.2812,27.5145,0.07168,0.747232,0.006432,0.006144,0.034272,0.1048,0.106688,26.323,0.11424
+1144,33.3203,30.0117,26.5081,0.070368,0.99328,0.007552,0.004736,0.034816,0.1064,0.108384,25.0694,0.113152
+1145,37.4652,26.6914,26.4051,0.071552,0.873056,0.006176,0.006144,0.034176,0.104448,0.105088,25.09,0.114464
+1146,36.1429,27.668,28.3897,0.067936,0.8888,0.007552,0.004736,0.03408,0.103168,0.108224,27.0598,0.115424
+1147,33.782,29.6016,26.3534,0.070176,0.903168,0.007456,0.004832,0.034784,0.10448,0.106496,25.0059,0.11616
+1148,36.3585,27.5039,26.4433,0.07168,0.907232,0.006176,0.005536,0.033376,0.106496,0.106496,25.09,0.116224
+1149,36.5505,27.3594,27.5173,0.0712,0.792672,0.006976,0.00576,0.03312,0.104128,0.106816,26.2817,0.114976
+1150,34.2704,29.1797,26.3497,0.071136,0.880768,0.006656,0.005216,0.033696,0.106496,0.108064,25.0229,0.114688
+1151,36.2555,27.582,26.4168,0.07168,0.882688,0.007776,0.005536,0.033792,0.104448,0.106048,25.0884,0.116352
+1152,36.0056,27.7734,27.62,0.07024,0.869664,0.00688,0.020416,0.034528,0.104288,0.1064,26.2944,0.113152
+1153,34.925,28.6328,26.3113,0.071488,0.766368,0.006528,0.006144,0.034176,0.115328,0.106016,25.0903,0.114944
+1154,36.2504,27.5859,27.5855,0.070656,0.825088,0.006368,0.006112,0.03456,0.104608,0.106112,26.3173,0.114656
+1155,34.4735,29.0078,27.7237,0.071296,0.910144,0.007264,0.01424,0.033792,0.105728,0.105216,26.361,0.115008
+1156,34.4456,29.0312,26.4795,0.070272,0.844032,0.007456,0.004832,0.043008,0.104448,0.109696,25.1811,0.11472
+1157,36.3275,27.5273,27.5862,0.070208,0.83904,0.006784,0.00592,0.042432,0.10528,0.106304,26.2945,0.115744
+1158,32.6198,30.6562,27.6152,0.069632,0.88032,0.006464,0.015808,0.034464,0.103488,0.108384,26.2819,0.114784
+1159,34.6508,28.8594,26.4971,0.07152,0.977088,0.007264,0.005024,0.040192,0.104768,0.1064,25.0697,0.115136
+1160,35.0829,28.5039,26.4447,0.070432,0.968256,0.006592,0.004256,0.034528,0.104768,0.106464,25.034,0.115456
+1161,37.5863,26.6055,27.5755,0.071712,0.812,0.007168,0.005568,0.033376,0.106464,0.10752,26.3158,0.115872
+1162,34.6367,28.8711,26.3078,0.069888,0.821248,0.008,0.004288,0.034592,0.104672,0.10608,25.0444,0.114656
+1163,36.6447,27.2891,26.2935,0.071712,0.80592,0.007104,0.005536,0.033376,0.105728,0.105216,25.0429,0.116
+1164,36.1072,27.6953,27.592,0.073664,0.839744,0.008032,0.004256,0.034816,0.104448,0.106496,26.3066,0.114016
+1165,32.926,30.3711,26.7872,0.07168,0.872256,0.006336,0.006144,0.034496,0.104704,0.105568,25.4714,0.11456
+1166,37.0907,26.9609,26.9533,0.070144,1.49258,0.00656,0.005376,0.033536,0.10576,0.105184,25.0195,0.114624
+1167,36.514,27.3867,27.7524,0.07168,0.937984,0.008192,0.005568,0.041536,0.106048,0.104512,26.3618,0.115104
+1168,34.8631,28.6836,26.389,0.071168,0.881536,0.016384,0.00416,0.03456,0.105952,0.107296,25.0532,0.11472
+1169,36.0919,27.707,27.5479,0.071008,0.76448,0.006496,0.0136,0.03456,0.115648,0.106528,26.3209,0.114688
+1170,32.9303,30.3672,27.8549,0.070144,1.05267,0.008,0.01248,0.034848,0.124544,0.108896,26.3291,0.114272
+1171,36.5767,27.3398,26.3519,0.075648,0.830176,0.006304,0.01408,0.034912,0.104608,0.10592,25.0658,0.114528
+1172,35.7093,28.0039,26.5272,0.075776,0.93184,0.008,0.004288,0.04096,0.104448,0.106496,25.141,0.114336
+1173,36.4309,27.4492,27.5744,0.072288,0.777824,0.00688,0.005824,0.034208,0.1048,0.106976,26.3511,0.11456
+1174,34.7448,28.7812,26.2305,0.071552,0.831904,0.007904,0.004384,0.034816,0.109664,0.107424,24.948,0.114784
+1175,36.7816,27.1875,26.2023,0.071808,0.769152,0.007008,0.005696,0.033216,0.106144,0.106848,24.9887,0.113696
+1176,36.7447,27.2148,27.5656,0.071328,0.772448,0.007264,0.004832,0.034624,0.10672,0.106656,26.3475,0.114176
+1177,34.7684,28.7617,26.2595,0.072768,0.792544,0.007104,0.005536,0.033408,0.106432,0.104512,25.0225,0.11472
+1178,36.276,27.5664,27.6275,0.07168,0.885856,0.007072,0.004096,0.034816,0.105632,0.105312,26.2984,0.114688
+1179,34.811,28.7266,27.5651,0.070624,0.786432,0.007904,0.005536,0.033664,0.104448,0.106496,26.3363,0.113664
+1180,34.9059,28.6484,26.3326,0.075104,0.822016,0.007424,0.0048,0.034272,0.105056,0.106496,25.0614,0.116096
+1181,36.3843,27.4844,26.3004,0.071104,0.83616,0.007936,0.005536,0.033664,0.1064,0.104512,25.0159,0.119264
+1182,36.194,27.6289,27.5113,0.070176,0.784352,0.00752,0.00464,0.034144,0.105248,0.106016,26.2845,0.114656
+1183,34.6649,28.8477,26.3447,0.071552,0.88896,0.007296,0.004992,0.034592,0.106496,0.106368,25.0085,0.115968
+1184,36.8239,27.1562,26.3089,0.071136,0.811264,0.006688,0.00528,0.033632,0.10448,0.107552,25.0539,0.114912
+1185,35.6844,28.0234,27.5845,0.071328,0.814624,0.006976,0.005664,0.033248,0.106528,0.106528,26.3249,0.114688
+1186,35.4325,28.2227,26.2955,0.071424,0.81536,0.02208,0.004544,0.034976,0.106336,0.114688,25.0102,0.115936
+1187,35.9197,27.8398,26.5249,0.069632,0.962112,0.006592,0.014304,0.033952,0.108608,0.105312,25.1084,0.115968
+1188,36.3481,27.5117,27.5907,0.069664,0.839264,0.00656,0.005376,0.033568,0.106464,0.106112,26.309,0.114688
+1189,34.8821,28.668,26.3291,0.071712,0.804832,0.007456,0.004832,0.034784,0.104128,0.10688,25.0794,0.11504
+1190,36.2401,27.5938,27.6175,0.07024,0.810464,0.00656,0.005344,0.033568,0.106464,0.106528,26.3639,0.114464
+1191,34.6978,28.8203,27.687,0.07136,0.88848,0.007072,0.005536,0.034624,0.10528,0.116736,26.3414,0.116576
+1192,34.5619,28.9336,26.2984,0.069632,0.827392,0.007776,0.004512,0.033984,0.104736,0.106304,25.0293,0.114752
+1193,36.7447,27.2148,27.5773,0.070848,0.796704,0.006944,0.005696,0.033216,0.106496,0.106496,26.3352,0.115712
+1194,34.7637,28.7656,27.5743,0.07168,0.851104,0.007008,0.004096,0.034816,0.105504,0.115168,26.2717,0.113248
+1195,34.441,29.0352,26.3229,0.071712,0.85152,0.00656,0.006112,0.034496,0.104288,0.10496,25.0286,0.114688
+1196,36.4724,27.418,26.4253,0.07696,0.951136,0.00736,0.004832,0.041056,0.105504,0.104896,25.0189,0.114688
+1197,35.5358,28.1406,27.7468,0.070272,0.921504,0.0144,0.006144,0.040128,0.104352,0.109472,26.366,0.114592
+1198,35.7992,27.9336,26.2922,0.071296,0.759456,0.00688,0.004096,0.034816,0.106304,0.10608,25.0898,0.113472
+1199,36.2196,27.6094,26.37,0.07152,0.843552,0.006528,0.006144,0.034464,0.110048,0.112608,25.0705,0.114688
+1200,35.1697,28.4336,27.5242,0.07168,0.768,0.0072,0.004832,0.041248,0.106464,0.1064,26.3046,0.11376
+1201,35.9046,27.8516,26.4137,0.071616,0.85472,0.007552,0.004736,0.034816,0.116224,0.119296,25.09,0.114688
+1202,36.6657,27.2734,27.4985,0.07168,0.77392,0.006368,0.005536,0.033504,0.104448,0.106368,26.2816,0.115072
+1203,34.9679,28.5977,27.5221,0.07168,0.761888,0.007616,0.004672,0.034848,0.104416,0.106496,26.3148,0.115744
+1204,34.6649,28.8477,26.4254,0.071648,0.886624,0.006336,0.0056,0.033344,0.105856,0.104384,25.0969,0.11472
+1205,36.1837,27.6367,26.3717,0.071712,0.856032,0.008096,0.005536,0.033504,0.110528,0.106688,25.0633,0.116352
+1206,35.4178,28.2344,27.6133,0.069984,0.896992,0.006176,0.005728,0.033184,0.10448,0.106464,26.2758,0.114496
+1207,35.6844,28.0234,26.4376,0.069632,0.899072,0.00768,0.004608,0.034816,0.105792,0.1072,25.0936,0.115136
+1208,36.2247,27.6055,26.4151,0.071456,0.882944,0.008032,0.004224,0.034592,0.104672,0.106496,25.088,0.114688
+1209,36.405,27.4688,27.5096,0.070528,0.81024,0.00688,0.005792,0.034208,0.105056,0.106816,26.2564,0.113632
+1210,34.9775,28.5898,27.4901,0.071072,0.809568,0.007264,0.004832,0.034144,0.10496,0.1048,26.239,0.114528
+1211,34.9679,28.5977,26.3393,0.071616,0.806976,0.0072,0.005088,0.034144,0.10512,0.106496,25.0874,0.115264
+1212,36.343,27.5156,27.5431,0.071264,0.821472,0.006336,0.0056,0.033312,0.106496,0.106496,26.2776,0.114496
+1213,34.9918,28.5781,26.3307,0.069792,0.812256,0.00688,0.005728,0.033216,0.104448,0.106464,25.0757,0.116192
+1214,36.2658,27.5742,27.0509,0.07056,0.935904,0.007296,0.004832,0.032928,0.106048,0.106944,25.3809,0.405504
+1215,35.5013,28.168,27.5484,0.07344,0.818176,0.007232,0.005056,0.034208,0.105056,0.106496,26.284,0.114688
+1216,35.0397,28.5391,26.2329,0.0712,0.762336,0.007424,0.004832,0.033888,0.10528,0.108672,25.0245,0.11472
+1217,36.276,27.5664,26.4233,0.07168,0.896352,0.006816,0.00592,0.032992,0.10608,0.106272,25.0819,0.115328
+1218,36.2915,27.5547,27.6974,0.070464,0.873664,0.006944,0.004096,0.042528,0.104224,0.106496,26.3748,0.114176
+1219,34.726,28.7969,26.3619,0.071648,0.884768,0.00736,0.004928,0.034816,0.106432,0.10656,25.0307,0.114688
+1220,35.8543,27.8906,26.4986,0.07088,0.928608,0.007616,0.004672,0.034816,0.104448,0.106208,25.1252,0.11616
+1221,36.2196,27.6094,27.5901,0.075456,0.80928,0.007744,0.004544,0.034816,0.108544,0.104448,26.3311,0.114144
+1222,33.2166,30.1055,27.8412,0.071552,1.01645,0.006272,0.005664,0.041472,0.104352,0.10656,26.3741,0.11472
+1223,35.8845,27.8672,26.3828,0.070112,0.87856,0.007808,0.005536,0.039936,0.10608,0.10688,25.0511,0.116736
+1224,36.3843,27.4844,27.4678,0.069728,0.76176,0.006144,0.005792,0.033152,0.104416,0.106496,26.2656,0.114688
+1225,35.0925,28.4961,26.2798,0.070112,0.781664,0.006816,0.005824,0.034144,0.10752,0.116704,25.0404,0.116576
+1226,36.7288,27.2266,27.4412,0.071232,0.754112,0.00736,0.004832,0.034208,0.105152,0.106496,26.2431,0.114656
+1227,34.8964,28.6562,27.708,0.070272,0.894816,0.0064,0.006016,0.032768,0.105952,0.118304,26.3588,0.11472
+1228,35.0733,28.5117,26.2328,0.07168,0.774144,0.007808,0.00448,0.034496,0.104096,0.107168,25.0143,0.114688
+1229,36.4568,27.4297,26.4149,0.070464,0.943904,0.006368,0.006144,0.0344,0.104736,0.106624,25.0266,0.115712
+1230,36.671,27.2695,27.5046,0.071648,0.763936,0.007296,0.004832,0.03408,0.105344,0.104448,26.2995,0.1136
+1231,34.8394,28.7031,26.2512,0.070144,0.802816,0.007936,0.005536,0.033632,0.104448,0.106304,25.0042,0.11616
+1232,36.3636,27.5,26.2942,0.07104,0.86624,0.007136,0.004096,0.034368,0.104192,0.106336,24.9856,0.1152
+1233,36.6867,27.2578,27.5772,0.07056,0.82464,0.0232,0.006144,0.034752,0.106208,0.1048,26.2922,0.114688
+1234,35.0349,28.543,26.2741,0.071072,0.828,0.006464,0.005472,0.033472,0.104416,0.10608,25.0043,0.114848
+1235,36.3121,27.5391,27.6275,0.071264,0.87872,0.006432,0.006144,0.034816,0.104448,0.106496,26.3045,0.114688
+1236,35.0877,28.5,27.6402,0.070592,0.917504,0.007296,0.004832,0.034432,0.114528,0.1072,26.2697,0.114112
+1237,35.0493,28.5312,26.3127,0.071712,0.800576,0.006304,0.00608,0.033856,0.105472,0.106496,25.0655,0.116736
+1238,36.5453,27.3633,26.3259,0.070528,0.815104,0.008064,0.004224,0.034464,0.105984,0.106496,25.0663,0.11472
+1239,36.6552,27.2812,28.7659,0.071232,0.776576,0.006624,0.00608,0.034112,0.104864,0.105088,27.5453,0.115968
+1240,33.5738,29.7852,26.3301,0.070688,0.782304,0.007936,0.004352,0.03456,0.104736,0.108256,25.1026,0.11472
+1241,35.218,28.3945,26.4325,0.070624,0.953984,0.006528,0.006112,0.034112,0.105024,0.120992,25.0201,0.115008
+1242,37.5477,26.6328,27.478,0.071456,0.768128,0.00624,0.005696,0.034944,0.104768,0.106528,26.2656,0.114656
+1243,35.0014,28.5703,26.3308,0.070944,0.817632,0.0064,0.006144,0.034752,0.104512,0.106496,25.0675,0.116384
+1244,36.6185,27.3086,26.284,0.071232,0.805312,0.0072,0.004832,0.034112,0.106816,0.107104,25.0325,0.11488
+1245,34.9393,28.6211,27.7396,0.069792,0.97088,0.016256,0.006016,0.032992,0.11008,0.104864,26.3148,0.114016
+1246,35.8795,27.8711,27.5314,0.070816,0.830304,0.007904,0.004384,0.034528,0.10576,0.105472,26.2595,0.1128
+1247,35.1793,28.4258,26.2742,0.071936,0.79072,0.007776,0.005536,0.033824,0.104416,0.105632,25.0397,0.114688
+1248,36.4465,27.4375,27.5622,0.070592,0.843744,0.006176,0.005728,0.033184,0.1064,0.106592,26.2758,0.113952
+1249,35.1262,28.4688,26.3045,0.07168,0.769216,0.006976,0.00544,0.033504,0.106016,0.104896,25.0921,0.114688
+1250,36.4932,27.4023,27.5723,0.071648,0.837536,0.006272,0.005152,0.033792,0.103456,0.105408,26.2963,0.112704
+1251,35.0973,28.4922,27.5882,0.071968,0.813344,0.00768,0.004608,0.034816,0.10448,0.106464,26.3286,0.116256
+1252,34.7448,28.7812,26.327,0.07168,0.829024,0.00656,0.005408,0.034944,0.104928,0.104544,25.0544,0.115552
+1253,36.4465,27.4375,26.3012,0.070656,0.800736,0.008096,0.005504,0.033504,0.105696,0.106432,25.052,0.118592
+1254,36.4568,27.4297,27.5825,0.071712,0.810976,0.007488,0.0048,0.034272,0.104992,0.106496,26.3267,0.115072
+1255,34.8157,28.7227,26.3029,0.07008,0.790112,0.006528,0.006144,0.034304,0.104064,0.107392,25.0675,0.116768
+1256,36.2247,27.6055,26.2917,0.070688,0.898016,0.007744,0.004544,0.034432,0.104832,0.107552,24.9477,0.116256
+1257,36.6762,27.2656,27.54,0.070272,0.774144,0.007264,0.005024,0.0344,0.10592,0.10544,26.3229,0.114688
+1258,34.8774,28.6719,26.329,0.07152,0.841792,0.007968,0.00432,0.034816,0.102432,0.107872,25.0415,0.116736
+1259,36.5349,27.3711,27.4473,0.07168,0.763936,0.007584,0.004672,0.034816,0.104448,0.105952,26.2395,0.11472
+1260,33.9073,29.4922,27.5908,0.06992,0.857792,0.006464,0.00544,0.033472,0.104448,0.106496,26.292,0.114816
+1261,35.9097,27.8477,26.4073,0.070048,0.878592,0.007552,0.004736,0.034816,0.105504,0.10544,25.0856,0.11504
+1262,36.4568,27.4297,26.2764,0.070176,0.813056,0.008064,0.004224,0.034688,0.104576,0.108256,25.0187,0.11472
+1263,36.6657,27.2734,27.5342,0.070496,0.810464,0.006688,0.006048,0.034048,0.104704,0.105056,26.2812,0.115424
+1264,34.5013,28.9844,26.2764,0.070176,0.786432,0.007584,0.004704,0.033952,0.105312,0.106496,25.047,0.114688
+1265,36.5871,27.332,26.4212,0.070976,0.96912,0.006432,0.006144,0.033984,0.105312,0.106112,25.0078,0.115392
+1266,36.6237,27.3047,27.5197,0.070496,0.796736,0.007744,0.004544,0.034592,0.106656,0.10656,26.2779,0.114528
+1267,34.7166,28.8047,26.3553,0.070176,0.880608,0.00752,0.004768,0.034816,0.107552,0.106944,25.0271,0.115872
+1268,36.5245,27.3789,26.3514,0.071456,0.805088,0.00736,0.004832,0.032864,0.108,0.106208,25.1007,0.11488
+1269,36.0462,27.7422,27.6808,0.07168,0.872448,0.007232,0.005056,0.034496,0.10624,0.106176,26.3623,0.115168
+1270,34.726,28.7969,26.7796,0.07136,0.903488,0.008096,0.004192,0.034816,0.106496,0.106496,25.43,0.114688
+1271,35.6347,28.0625,26.3419,0.07216,0.86144,0.006912,0.005792,0.03312,0.104448,0.112384,25.0289,0.116736
+1272,36.1684,27.6484,27.6316,0.0712,0.848192,0.024736,0.005408,0.033504,0.10432,0.106624,26.3127,0.124928
+1273,34.3947,29.0742,26.3293,0.070208,0.770016,0.007744,0.004544,0.034688,0.106272,0.1048,25.1156,0.115392
+1274,36.608,27.3164,27.5053,0.070176,0.792672,0.007584,0.004704,0.034176,0.105088,0.10768,26.2706,0.112672
+1275,34.9297,28.6289,27.4906,0.069952,0.806848,0.006208,0.006144,0.034368,0.104896,0.106496,26.241,0.114688
+1276,34.9345,28.625,26.2568,0.071712,0.794592,0.007872,0.004416,0.03456,0.104736,0.106464,25.0181,0.114272
+1277,36.6972,27.25,26.2595,0.07168,0.798752,0.007584,0.004672,0.034848,0.105536,0.105376,25.0163,0.114688
+1278,34.4225,29.0508,27.7666,0.070048,1.06493,0.007392,0.004832,0.037984,0.11568,0.118304,26.2333,0.114112
+1279,36.5088,27.3906,26.3873,0.070464,0.919552,0.007712,0.014336,0.03328,0.105568,0.106656,25.015,0.114688
+1280,36.097,27.7031,26.36,0.071424,0.915648,0.006368,0.005568,0.033344,0.106496,0.105856,25.0019,0.113408
+1281,36.1531,27.6602,27.7269,0.07168,0.86016,0.016384,0.006048,0.034304,0.104256,0.123712,26.394,0.116384
+1282,34.6086,28.8945,26.4598,0.070336,0.943296,0.006944,0.004096,0.034848,0.111776,0.10528,25.0669,0.116288
+1283,34.2338,29.2109,26.5443,0.070176,0.97072,0.007424,0.004864,0.05024,0.107488,0.114656,25.1023,0.116352
+1284,38.4558,26.0039,27.6087,0.071392,0.895264,0.007584,0.004704,0.045088,0.105632,0.106464,26.2583,0.114272
+1285,34.4735,29.0078,26.8368,0.07152,1.00163,0.007904,0.005536,0.034944,0.104768,0.104736,25.3913,0.114464
+1286,36.0817,27.7148,27.1315,0.07008,0.777344,0.00704,0.004096,0.034752,0.10432,0.10464,25.9152,0.113984
+1287,35.3542,28.2852,27.5272,0.071168,0.76032,0.007232,0.005056,0.034816,0.10448,0.10576,26.3236,0.11472
+1288,34.3901,29.0781,26.2816,0.073376,0.772384,0.006816,0.005184,0.033696,0.106016,0.106464,25.063,0.114624
+1289,36.4568,27.4297,26.306,0.071584,0.84512,0.006944,0.005696,0.033216,0.110592,0.104448,25.0136,0.114816
+1290,36.3843,27.4844,27.5497,0.071584,0.779456,0.007072,0.004096,0.034816,0.104448,0.106496,26.327,0.114688
+1291,34.9012,28.6523,26.3087,0.071264,0.80528,0.007808,0.005504,0.033792,0.104448,0.106496,25.0593,0.114784
+1292,36.405,27.4688,26.2902,0.070848,0.790688,0.006816,0.004096,0.034848,0.105952,0.10496,25.0572,0.114752
+1293,36.1633,27.6523,27.6249,0.07152,0.87056,0.00784,0.005536,0.033632,0.105632,0.10656,26.3075,0.116192
+1294,35.0493,28.5312,26.9683,0.070208,0.811008,0.008032,0.004256,0.034464,0.104832,0.106304,25.4337,0.395424
+1295,35.4227,28.2305,26.2807,0.072448,0.827232,0.006304,0.006144,0.034464,0.10432,0.104928,25.0099,0.114976
+1296,36.6657,27.2734,27.6193,0.071456,0.815328,0.006144,0.005824,0.033088,0.105728,0.107264,26.3598,0.114656
+1297,34.8774,28.6719,26.2554,0.071136,0.776576,0.006304,0.006144,0.034624,0.106688,0.105568,25.0336,0.11472
+1298,36.405,27.4688,27.3308,0.070368,0.802816,0.006144,0.004096,0.034816,0.104448,0.106368,26.0845,0.11728
+1299,35.6993,28.0117,27.5025,0.070496,0.763296,0.00672,0.00592,0.034016,0.10704,0.106752,26.2937,0.114528
+1300,35.0733,28.5117,26.2799,0.071264,0.768448,0.007648,0.004608,0.034176,0.1048,0.104736,25.0712,0.113088
+1301,36.2247,27.6055,26.3108,0.070336,0.778624,0.007808,0.004256,0.0328,0.104352,0.10656,25.09,0.115968
+1302,36.5819,27.3359,27.4985,0.07104,0.767744,0.00704,0.004096,0.034816,0.105536,0.105408,26.2896,0.113216
+1303,33.8848,29.5117,26.2568,0.075616,0.81904,0.006528,0.005856,0.034112,0.104832,0.105056,24.991,0.114752
+1304,37.7693,26.4766,26.2962,0.070432,0.878496,0.0064,0.0056,0.034272,0.105376,0.106528,24.9733,0.115776
+1305,36.8186,27.1602,27.4515,0.06992,0.781664,0.006784,0.005888,0.033024,0.106496,0.109856,26.2233,0.114528
+1306,35.1842,28.4219,27.5024,0.070144,0.767808,0.006304,0.005632,0.03328,0.112672,0.10592,26.288,0.11264
+1307,35.107,28.4844,26.2963,0.071552,0.774272,0.006144,0.006144,0.034496,0.104704,0.10592,25.0784,0.114688
+1308,36.692,27.2539,27.4924,0.071136,0.753696,0.006656,0.005312,0.033632,0.106272,0.105792,26.2962,0.113632
+1309,35.1407,28.457,26.2245,0.07168,0.761408,0.006592,0.006048,0.033888,0.104896,0.105024,25.0201,0.114848
+1310,36.4517,27.4336,27.6495,0.071104,0.839488,0.006912,0.004096,0.034816,0.104448,0.106496,26.368,0.114144
+1311,34.2658,29.1836,27.6324,0.071552,0.943008,0.007616,0.004032,0.03328,0.104576,0.106496,26.2472,0.114688
+1312,34.6367,28.8711,26.3703,0.071296,0.920256,0.006144,0.014272,0.034368,0.104096,0.10496,24.9982,0.116704
+1313,37.0907,26.9609,26.2429,0.071456,0.780064,0.006592,0.006048,0.03408,0.105312,0.106464,25.0163,0.116576
+1314,36.7341,27.2227,27.5126,0.070784,0.777184,0.007712,0.004576,0.034336,0.104928,0.106496,26.2914,0.1152
+1315,34.9918,28.5781,26.2266,0.070784,0.787168,0.006432,0.006144,0.034688,0.103648,0.105376,24.9956,0.116832
+1316,36.2093,27.6172,26.1972,0.07088,0.815584,0.006464,0.005536,0.03472,0.106848,0.1048,24.9376,0.11472
+1317,36.9249,27.082,27.4657,0.071712,0.770016,0.007392,0.004896,0.034816,0.104512,0.106432,26.2492,0.116704
+1318,34.9202,28.6367,26.2145,0.070976,0.815872,0.0072,0.004832,0.034176,0.105312,0.106528,24.9544,0.115136
+1319,36.5505,27.3594,27.4964,0.071616,0.769344,0.006912,0.005728,0.034368,0.103264,0.105888,26.2845,0.114816
+1320,34.5339,28.957,27.575,0.070368,0.872096,0.006496,0.005344,0.0336,0.104416,0.106496,26.2615,0.114688
+1321,34.9393,28.6211,26.2361,0.071008,0.819872,0.007808,0.018496,0.042432,0.105216,0.106624,24.9487,0.115936
+1322,36.7922,27.1797,26.7174,0.070976,0.842464,0.007552,0.004736,0.034208,0.104864,0.10608,25.4327,0.113792
+1323,36.0665,27.7266,28.3363,0.070912,0.784864,0.006624,0.005856,0.033248,0.105888,0.106624,27.1072,0.115072
+1324,34.147,29.2852,26.2088,0.07056,0.753664,0.00784,0.004448,0.034432,0.116608,0.106656,24.9996,0.114912
+1325,35.4767,28.1875,26.2878,0.081408,0.877536,0.022528,0.006144,0.034048,0.105216,0.106496,24.9385,0.115904
+1326,36.8451,27.1406,27.6741,0.071456,1.01923,0.006944,0.004192,0.034496,0.104768,0.106496,26.2124,0.114144
+1327,34.6789,28.8359,27.615,0.070048,0.933888,0.007904,0.005536,0.033664,0.105824,0.10512,26.2388,0.114208
+1328,35.1214,28.4727,26.2533,0.071104,0.794432,0.006912,0.004096,0.034848,0.106336,0.104608,25.0163,0.114688
+1329,36.6657,27.2734,27.5485,0.070528,0.821216,0.006176,0.006144,0.034208,0.117344,0.106208,26.272,0.114688
+1330,34.5293,28.9609,26.4028,0.071424,0.950528,0.006144,0.005824,0.035136,0.106496,0.108064,25.0045,0.114688
+1331,36.462,27.4258,27.4631,0.069664,0.782304,0.00736,0.004928,0.034816,0.106496,0.106496,26.238,0.113056
+1332,34.693,28.8242,27.5885,0.071648,0.876608,0.00768,0.004576,0.034208,0.105056,0.106496,26.2676,0.11456
+1333,35.0205,28.5547,26.2308,0.069632,0.767968,0.006176,0.006144,0.034624,0.10592,0.106304,25.0193,0.11472
+1334,36.8292,27.1523,26.1774,0.071488,0.76432,0.007744,0.004544,0.034336,0.104928,0.106304,24.9694,0.114336
+1335,35.8393,27.9023,27.5865,0.071712,0.849888,0.00816,0.005504,0.03344,0.107584,0.105408,26.2894,0.115328
+1336,32.9982,30.3047,26.3509,0.071104,0.947008,0.007712,0.004576,0.03424,0.102976,0.106496,24.961,0.115776
+1337,38.531,25.9531,26.2735,0.07136,0.832128,0.007424,0.004864,0.034848,0.104416,0.1064,24.9959,0.116128
+1338,36.6133,27.3125,27.5223,0.071328,0.856416,0.008,0.004288,0.034592,0.104672,0.104352,26.2225,0.116224
+1339,35.1793,28.4258,26.1939,0.070912,0.76016,0.00656,0.006048,0.034304,0.104992,0.10656,24.9836,0.120832
+1340,36.4517,27.4336,27.4692,0.071232,0.790592,0.006624,0.005312,0.033632,0.104416,0.10448,26.2369,0.116
+1341,35.1359,28.4609,27.4575,0.071424,0.799008,0.007776,0.005536,0.033792,0.104288,0.11072,26.2103,0.114688
+1342,34.8252,28.7148,26.366,0.07168,0.917504,0.00784,0.004448,0.034656,0.106304,0.1048,25.004,0.11472
+1343,36.5662,27.3477,26.2222,0.07024,0.798688,0.016384,0.006176,0.034816,0.105728,0.104896,24.9675,0.117792
+1344,36.6867,27.2578,27.5111,0.069888,0.794624,0.007744,0.004544,0.034848,0.104416,0.106496,26.2738,0.11472
+1345,34.7826,28.75,26.4101,0.071168,0.905216,0.006656,0.005952,0.0344,0.106368,0.105184,25.0593,0.115808
+1346,36.5871,27.332,26.2237,0.071488,0.790624,0.00624,0.005824,0.034208,0.105376,0.105632,24.9882,0.116128
+1347,36.771,27.1953,27.5194,0.070112,0.78032,0.007616,0.00464,0.034848,0.105472,0.10544,26.2957,0.115296
+1348,34.8252,28.7148,27.4833,0.071616,0.809024,0.008,0.004288,0.03472,0.104416,0.105632,26.2316,0.114016
+1349,34.9393,28.6211,26.2905,0.071296,0.811328,0.006816,0.005824,0.034144,0.107488,0.10784,25.0293,0.116448
+1350,35.8142,27.9219,27.5251,0.07168,0.830816,0.006816,0.005184,0.033728,0.105728,0.105216,26.2513,0.114656
+1351,34.7921,28.7422,26.198,0.079808,0.800928,0.007648,0.012832,0.034592,0.104672,0.10608,24.9364,0.11504
+1352,36.0919,27.707,26.7837,0.071712,0.946144,0.007232,0.004832,0.032992,0.110528,0.10656,25.3891,0.114688
+1353,35.4374,28.2188,28.2384,0.072,1.54003,0.006496,0.006144,0.034336,0.104928,0.108544,26.2513,0.114688
+1354,34.9488,28.6133,26.3035,0.070208,0.831904,0.007872,0.004416,0.034816,0.104448,0.106496,25.0286,0.114752
+1355,35.9601,27.8086,26.302,0.070944,0.772864,0.008064,0.005536,0.033504,0.104416,0.106496,25.085,0.115136
+1356,36.8345,27.1484,27.5286,0.071264,0.848288,0.00784,0.004448,0.034112,0.105312,0.106336,26.2369,0.11408
+1357,34.9488,28.6133,26.2897,0.071488,0.83168,0.007424,0.004864,0.034656,0.104608,0.106496,25.0122,0.116256
+1358,36.4309,27.4492,26.2598,0.07008,0.794176,0.006464,0.005568,0.033376,0.108288,0.106464,25.0207,0.114688
+1359,36.5401,27.3672,27.5681,0.0712,0.833056,0.007072,0.005536,0.033472,0.105952,0.106336,26.2922,0.113312
+1360,34.7826,28.75,27.5436,0.071136,0.83616,0.007776,0.00448,0.034496,0.10592,0.10496,26.2651,0.113504
+1361,34.987,28.582,26.1916,0.07168,0.818752,0.006592,0.006144,0.034432,0.104192,0.105088,24.9301,0.114528
+1362,36.6185,27.3086,27.5033,0.07664,0.817152,0.008192,0.004096,0.034816,0.104448,0.106496,26.2387,0.112832
+1363,34.9297,28.6289,26.3787,0.070304,0.890048,0.006944,0.005664,0.034304,0.105024,0.10672,25.0444,0.115264
+1364,36.4724,27.418,27.648,0.07168,0.890144,0.00688,0.004096,0.034848,0.105792,0.106272,26.3136,0.114688
+1365,34.6461,28.8633,27.5574,0.07168,0.80208,0.00688,0.00576,0.033152,0.105632,0.105312,26.3121,0.114848
+1366,32.9897,30.3125,26.2943,0.070528,0.825344,0.008064,0.004224,0.034528,0.104768,0.106464,25.0245,0.11584
+1367,38.782,25.7852,26.2619,0.070048,0.79872,0.007296,0.004992,0.03456,0.110848,0.105888,25.0128,0.116736
+1368,36.4828,27.4102,27.499,0.070176,0.825344,0.007328,0.004832,0.034016,0.115648,0.10864,26.2184,0.114688
+1369,35.0781,28.5078,26.2248,0.069792,0.768,0.007488,0.0048,0.034784,0.104448,0.107776,25.0109,0.116736
+1370,36.4309,27.4492,26.3322,0.070688,0.822304,0.007104,0.004096,0.034816,0.1024,0.106656,25.0674,0.116736
+1371,36.7236,27.2305,27.5072,0.07024,0.784224,0.006304,0.006144,0.034432,0.104832,0.107808,26.2778,0.115392
+1372,34.7873,28.7461,26.6479,0.069824,0.798304,0.00656,0.005376,0.033536,0.10592,0.105024,25.4095,0.113856
+1373,36.2504,27.5859,27.0807,0.071296,0.791008,0.007552,0.004736,0.034752,0.104448,0.106368,25.846,0.114592
+1374,35.107,28.4844,27.5906,0.071424,0.86,0.00656,0.005376,0.033536,0.104448,0.104448,26.2902,0.114592
+1375,34.8726,28.6758,26.324,0.071072,0.85216,0.00656,0.006112,0.03408,0.104288,0.10464,25.0293,0.115744
+1376,36.343,27.5156,26.7325,0.070784,0.852512,0.006624,0.005312,0.0336,0.105792,0.10432,25.439,0.114528
+1377,35.408,28.2422,28.0525,0.070656,1.31248,0.006464,0.006112,0.036864,0.104448,0.106496,26.2943,0.114688
+1378,35.0014,28.5703,26.2796,0.070048,0.75888,0.007072,0.004096,0.034848,0.104416,0.106496,25.0788,0.11488
+1379,36.4205,27.457,26.2779,0.07104,0.815168,0.00672,0.005856,0.033056,0.106496,0.106496,25.0184,0.114688
+1380,36.4413,27.4414,27.5773,0.07168,0.841728,0.007392,0.004832,0.034048,0.10528,0.106272,26.2904,0.11568
+1381,34.8157,28.7227,26.3718,0.070112,0.82944,0.007744,0.004544,0.034816,0.104448,0.106496,25.0982,0.116
+1382,36.3121,27.5391,26.317,0.0704,0.847904,0.007936,0.00432,0.034816,0.10592,0.105024,25.0258,0.114944
+1383,35.7292,27.9883,27.5426,0.071712,0.88064,0.008032,0.005536,0.033504,0.112384,0.11232,26.2027,0.115808
+1384,35.8443,27.8984,26.2503,0.071264,0.7784,0.0064,0.005536,0.033376,0.10448,0.107776,25.0273,0.115744
+1385,36.7025,27.2461,27.4818,0.0712,0.76848,0.008192,0.0056,0.033312,0.106496,0.10608,26.2676,0.114848
+1386,34.6508,28.8594,27.5846,0.0704,0.897024,0.007936,0.004352,0.034528,0.104736,0.108544,26.2431,0.113984
+1387,34.7307,28.793,26.3563,0.070208,0.8376,0.00816,0.005536,0.033408,0.10448,0.106464,25.0757,0.114688
+1388,36.4724,27.418,27.4431,0.069632,0.770048,0.006144,0.005376,0.033568,0.106176,0.106784,26.2308,0.114592
+1389,33.702,29.6719,27.7179,0.070656,1.01581,0.007424,0.004832,0.034816,0.109856,0.104768,26.2537,0.115968
+1390,33.1177,30.1953,26.3373,0.070176,0.874496,0.007264,0.0048,0.032992,0.105696,0.107296,25.0184,0.116192
+1391,37.6083,26.5898,26.4172,0.075776,0.949952,0.006464,0.006144,0.033984,0.103232,0.105792,25.0191,0.116736
+1392,35.8795,27.8711,27.6634,0.071584,0.936032,0.007776,0.004512,0.046176,0.117664,0.106208,26.2588,0.114656
+1393,34.9679,28.5977,26.2728,0.071392,0.810304,0.007104,0.005536,0.033408,0.113856,0.10528,25.0102,0.115712
+1394,35.3347,28.3008,26.3969,0.071584,0.966912,0.007968,0.00432,0.034816,0.112224,0.1064,24.9779,0.11472
+1395,36.4776,27.4141,27.6813,0.070496,0.898432,0.006688,0.014112,0.032992,0.105888,0.105056,26.3284,0.119296
+1396,34.1197,29.3086,26.8672,0.071104,1.01165,0.006784,0.005184,0.039872,0.10448,0.107808,25.3975,0.12288
+1397,34.6367,28.8711,27.1539,0.070048,1.61142,0.006496,0.006144,0.04832,0.10528,0.108416,25.082,0.115744
+1398,36.608,27.3164,27.5476,0.070944,0.811744,0.006144,0.005632,0.033312,0.108512,0.106496,26.292,0.112896
+1399,35.0829,28.5039,26.3199,0.071584,0.778336,0.007456,0.004832,0.034816,0.104352,0.10592,25.098,0.114656
+1400,36.5245,27.3789,26.3043,0.07136,0.80704,0.006336,0.005632,0.03328,0.10448,0.106464,25.0546,0.11504
+1401,36.629,27.3008,28.5248,0.069952,0.929088,0.006816,0.006016,0.036672,0.108576,0.105856,27.1486,0.113216
+1402,33.9163,29.4844,26.2431,0.071712,0.751584,0.008,0.004288,0.034592,0.105888,0.106816,25.0455,0.114688
+1403,36.4776,27.4141,26.2956,0.06976,0.78848,0.008064,0.005536,0.033504,0.106112,0.104832,25.0644,0.11488
+1404,36.692,27.2539,27.5519,0.07008,0.784416,0.00752,0.004736,0.033952,0.103264,0.10608,26.3275,0.114368
+1405,34.925,28.6328,26.3641,0.071904,0.842944,0.007072,0.005568,0.033344,0.105952,0.104992,25.0778,0.11456
+1406,36.561,27.3516,26.2306,0.071296,0.796096,0.007104,0.004096,0.034848,0.106464,0.106496,24.9897,0.114464
+1407,36.608,27.3164,27.5456,0.069632,0.832672,0.007008,0.005664,0.0344,0.106656,0.105184,26.2695,0.114912
+1408,34.944,28.6172,26.2996,0.07168,0.824928,0.00656,0.005376,0.033536,0.105728,0.105216,25.0326,0.113888
+1409,36.4724,27.418,27.1216,0.068864,0.766944,0.007136,0.00512,0.034272,0.104256,0.107232,25.9133,0.1144
+1410,35.0349,28.543,27.6629,0.071552,0.92576,0.006784,0.004096,0.034528,0.10576,0.10752,26.2914,0.115552
+1411,34.8299,28.7109,26.4233,0.071264,0.895392,0.007232,0.005056,0.034592,0.104096,0.104608,25.0859,0.115136
+1412,36.5662,27.3477,26.4909,0.071488,0.762048,0.007424,0.0048,0.034528,0.1048,0.108544,25.282,0.115264
+1413,36.0107,27.7695,28.382,0.070176,0.817344,0.0064,0.005984,0.034816,0.10352,0.106592,27.1225,0.11472
+1414,33.8266,29.5625,26.2918,0.070912,0.809728,0.006176,0.00576,0.034496,0.105152,0.106496,25.0383,0.114816
+1415,36.4672,27.4219,26.3283,0.070944,0.852704,0.008096,0.005536,0.033504,0.104416,0.106176,25.0309,0.116032
+1416,35.6944,28.0156,27.554,0.071136,0.797216,0.006144,0.00576,0.033152,0.106496,0.117888,26.3025,0.113632
+1417,35.6894,28.0195,26.2943,0.071008,0.77808,0.006976,0.005632,0.03328,0.106496,0.106496,25.0716,0.114688
+1418,35.7342,27.9844,26.2493,0.069728,0.810208,0.006912,0.004096,0.034848,0.110592,0.106464,24.9917,0.114688
+1419,37.6194,26.582,27.5033,0.07168,0.78032,0.006912,0.005792,0.033152,0.116544,0.106208,26.266,0.116608
+1420,33.6532,29.7148,26.4882,0.081984,0.958144,0.006432,0.005664,0.04672,0.10512,0.116928,25.0524,0.114816
+1421,37.7303,26.5039,27.5187,0.070016,0.812096,0.007136,0.005568,0.034592,0.104672,0.104992,26.2651,0.114528
+1422,35.1262,28.4688,27.4181,0.071616,0.76192,0.007904,0.004384,0.034464,0.12112,0.10656,26.196,0.114144
+1423,34.8015,28.7344,26.4126,0.071552,0.866496,0.006688,0.005952,0.03296,0.118784,0.106496,25.0879,0.115776
+1424,36.488,27.4062,26.262,0.071712,0.77184,0.007072,0.00416,0.034752,0.104544,0.106208,25.0468,0.114944
+1425,36.6762,27.2656,27.5632,0.07168,0.773344,0.006944,0.005664,0.034304,0.10544,0.104448,26.3467,0.114688
+1426,34.925,28.6328,26.2738,0.071552,0.794752,0.007488,0.0048,0.034208,0.104288,0.107296,25.0347,0.114688
+1427,36.2915,27.5547,26.3095,0.070528,0.858112,0.007648,0.00464,0.034848,0.105792,0.106208,25.0069,0.114784
+1428,36.6762,27.2656,27.4123,0.070144,0.77152,0.00656,0.00544,0.033472,0.10576,0.105184,26.1993,0.114848
+1429,35.1311,28.4648,26.6713,0.07184,0.774176,0.007904,0.005536,0.033632,0.104448,0.106496,25.4519,0.115296
+1430,35.7892,27.9414,26.3119,0.07168,0.808736,0.006368,0.005536,0.043616,0.105664,0.106528,25.0478,0.115904
+1431,36.5976,27.3242,27.572,0.071424,0.80384,0.007488,0.0048,0.034784,0.10448,0.105888,26.3236,0.115712
+1432,34.632,28.875,26.3144,0.070144,0.825344,0.006144,0.00592,0.033088,0.105568,0.106944,25.0454,0.11584
+1433,36.5662,27.3477,27.6951,0.071392,0.928032,0.008,0.005536,0.043328,0.10672,0.106112,26.3092,0.116768
+1434,34.5153,28.9727,27.5422,0.07472,0.861536,0.006816,0.004096,0.034816,0.104448,0.106368,26.235,0.114368
+1435,34.925,28.6328,26.286,0.07104,0.816064,0.00784,0.005536,0.033728,0.114688,0.110592,25.0116,0.114944
+1436,36.2966,27.5508,26.2761,0.075968,0.776288,0.007776,0.00448,0.03456,0.104576,0.106112,25.0527,0.113664
+1437,36.4828,27.4102,27.5844,0.071072,0.838016,0.006464,0.006144,0.0344,0.104864,0.106496,26.3025,0.114432
+1438,34.9012,28.6523,26.3128,0.07088,0.799744,0.007168,0.0048,0.033088,0.105504,0.106912,25.0701,0.114592
+1439,36.4102,27.4648,26.2328,0.071584,0.770144,0.008128,0.005536,0.033472,0.104416,0.112608,25.0133,0.113632
+1440,36.6028,27.3203,27.485,0.070432,0.80896,0.007488,0.0048,0.03408,0.106304,0.105376,26.2342,0.113312
+1441,34.8489,28.6953,26.2513,0.071712,0.77616,0.007392,0.004896,0.034624,0.10464,0.106624,25.0305,0.114688
+1442,36.4257,27.4531,27.1553,0.06848,0.80896,0.00768,0.004608,0.034656,0.10464,0.106464,25.9062,0.113632
+1443,35.0781,28.5078,27.6058,0.071552,0.822176,0.007232,0.005056,0.034816,0.104448,0.107936,26.3372,0.115424
+1444,34.9154,28.6406,26.3797,0.071712,0.912928,0.006592,0.004096,0.034816,0.104448,0.107968,25.0226,0.114528
+1445,36.2093,27.6172,26.5912,0.071616,0.853728,0.006496,0.006112,0.033824,0.103424,0.106496,25.2927,0.1168
+1446,36.5558,27.3555,28.3854,0.06976,0.814528,0.00672,0.005216,0.033696,0.106304,0.10464,27.1299,0.114688
+1447,33.8222,29.5664,26.2984,0.07168,0.806368,0.006688,0.00592,0.03408,0.105408,0.106496,25.045,0.116736
+1448,36.0767,27.7188,26.4646,0.070592,0.880224,0.00656,0.005376,0.033536,0.1056,0.107392,25.1392,0.11616
+1449,35.3787,28.2656,27.6549,0.070464,0.960384,0.0064,0.005984,0.034336,0.104128,0.105248,26.2533,0.114688
+1450,35.3982,28.25,26.37,0.07088,0.889664,0.008064,0.004192,0.03456,0.10608,0.105184,25.0367,0.114688
+1451,36.3275,27.5273,26.3034,0.07056,0.9008,0.006464,0.006144,0.034208,0.106688,0.104864,24.9589,0.114816
+1452,36.6395,27.293,27.5623,0.070528,0.817152,0.0072,0.0048,0.033312,0.106272,0.106176,26.3023,0.114624
+1453,33.303,30.0273,26.643,0.071488,0.834336,0.00736,0.004928,0.034208,0.104032,0.105472,25.3665,0.114688
+1454,36.488,27.4062,27.0057,0.082496,1.52595,0.007552,0.004736,0.033856,0.10496,0.106304,25.0252,0.11472
+1455,36.2042,27.6211,27.5423,0.070432,0.87856,0.00736,0.004928,0.034368,0.10592,0.107136,26.2187,0.114912
+1456,34.6414,28.8672,26.326,0.070592,0.79856,0.007328,0.004864,0.034528,0.106464,0.10688,25.082,0.11472
+1457,36.6342,27.2969,26.5556,0.071424,0.76416,0.00752,0.004768,0.034816,0.104448,0.108416,25.3452,0.11488
+1458,35.6695,28.0352,27.5934,0.072288,0.87024,0.006432,0.01552,0.033632,0.104448,0.110048,26.2675,0.113376
+1459,34.7025,28.8164,26.2416,0.070496,0.776192,0.007744,0.004544,0.034752,0.114144,0.115296,25.0038,0.114656
+1460,36.5193,27.3828,26.3206,0.071648,0.878336,0.006432,0.005504,0.03344,0.105952,0.106048,24.9983,0.114944
+1461,36.6972,27.25,27.4729,0.081216,0.776256,0.006784,0.005856,0.034592,0.107008,0.106496,26.2406,0.114112
+1462,34.6602,28.8516,26.2604,0.070624,0.802848,0.007648,0.004608,0.034816,0.104448,0.108544,25.0122,0.114688
+1463,36.8292,27.1523,26.1884,0.070336,0.782304,0.008192,0.0056,0.033312,0.10624,0.105792,24.9613,0.115328
+1464,36.7869,27.1836,27.4674,0.070144,0.761888,0.007584,0.004672,0.034144,0.10512,0.10976,26.2599,0.114144
+1465,34.9727,28.5938,26.246,0.070336,0.766304,0.007648,0.00464,0.034784,0.106048,0.106272,25.0351,0.114912
+1466,36.0563,27.7344,27.3879,0.071104,1.07373,0.007392,0.0048,0.034048,0.105024,0.104736,25.8724,0.114656
+1467,35.3445,28.293,27.5816,0.071584,0.827392,0.00752,0.004768,0.034752,0.105888,0.107168,26.3085,0.114016
+1468,35.0493,28.5312,26.2534,0.071232,0.817568,0.006304,0.005664,0.033248,0.105984,0.107008,24.9917,0.114688
+1469,36.5558,27.3555,26.3247,0.07152,0.829472,0.006272,0.006144,0.034432,0.104832,0.106496,25.0502,0.115328
+1470,36.4672,27.4219,28.3882,0.06848,0.820864,0.006496,0.005408,0.033504,0.104448,0.108512,27.1258,0.114688
+1471,34.0879,29.3359,26.2736,0.070976,0.762304,0.006624,0.00608,0.033952,0.105376,0.106496,25.0652,0.116576
+1472,36.1889,27.6328,26.3135,0.070528,0.839584,0.00784,0.004448,0.034688,0.104576,0.106496,25.0201,0.125216
+1473,36.2555,27.582,27.5825,0.069856,0.917504,0.008096,0.005536,0.034624,0.105344,0.107648,26.2173,0.116576
+1474,35.0493,28.5312,26.1632,0.071584,0.796256,0.006656,0.00528,0.033664,0.105632,0.10736,24.92,0.116736
+1475,36.5401,27.3672,26.1464,0.071424,0.792064,0.006912,0.005696,0.033216,0.11264,0.105536,24.904,0.114912
+1476,35.7542,27.9688,27.6729,0.069952,0.919552,0.007552,0.004736,0.034816,0.106208,0.1064,26.3089,0.114784
+1477,35.8493,27.8945,26.5371,0.071712,0.757728,0.007264,0.005024,0.034592,0.106752,0.10624,25.3319,0.11584
+1478,36.0868,27.7109,27.1948,0.071232,0.837376,0.006848,0.004096,0.034816,0.116704,0.106048,25.9034,0.114336
+1479,33.2079,30.1133,27.6027,0.07152,0.894848,0.006432,0.006144,0.04832,0.119392,0.10672,26.2345,0.114848
+1480,34.8015,28.7344,26.2513,0.071168,0.81712,0.006688,0.005216,0.033728,0.104416,0.108288,24.99,0.114688
+1481,36.3895,27.4805,26.628,0.069696,0.788096,0.006496,0.006144,0.034016,0.115488,0.110592,25.3823,0.1152
+1482,35.4276,28.2266,27.9813,0.103648,1.22346,0.007264,0.004832,0.03296,0.106304,0.10464,26.284,0.114176
+1483,35.1118,28.4805,26.2824,0.070304,0.780512,0.007904,0.005504,0.033728,0.104416,0.106016,25.0575,0.116512
+1484,36.343,27.5156,26.3823,0.07168,0.907264,0.007968,0.00432,0.034816,0.105664,0.107328,25.0286,0.114688
+1485,36.2196,27.6094,27.676,0.071104,0.921632,0.00672,0.005952,0.03408,0.104384,0.107168,26.3109,0.114016
+1486,34.9107,28.6445,26.2883,0.069888,0.778144,0.00624,0.006144,0.034432,0.104384,0.106848,25.0676,0.11456
+1487,35.0925,28.4961,26.4315,0.070976,0.934592,0.007488,0.0048,0.034848,0.104416,0.106336,25.0532,0.11488
+1488,37.4598,26.6953,27.6994,0.071232,0.914176,0.00736,0.0048,0.03424,0.105152,0.106496,26.3426,0.113408
+1489,34.5246,28.9648,26.339,0.071168,0.932704,0.008032,0.005536,0.033568,0.118752,0.106496,24.9479,0.114848
+1490,36.7078,27.2422,27.1253,0.075776,0.777952,0.006432,0.005472,0.035456,0.103904,0.106816,25.8993,0.114208
+1491,35.3884,28.2578,27.5304,0.07168,0.768,0.007776,0.005536,0.033824,0.106464,0.106496,26.3107,0.119968
+1492,34.8916,28.6602,26.3669,0.070592,0.925664,0.007264,0.004832,0.034144,0.104736,0.104576,25.0014,0.113632
+1493,36.3688,27.4961,26.2713,0.071264,0.799616,0.008032,0.005504,0.033472,0.106272,0.10672,25.0261,0.114368
+1494,36.4465,27.4375,28.4221,0.069632,0.814464,0.017024,0.005344,0.0336,0.104416,0.105472,27.1591,0.113088
+1495,33.8266,29.5625,26.377,0.070432,0.884672,0.008096,0.005536,0.033504,0.106464,0.106272,25.0452,0.116768
+1496,36.4205,27.457,26.3885,0.070912,0.921856,0.006656,0.005792,0.034432,0.106656,0.107072,25.0194,0.11568
+1497,36.148,27.6641,27.6454,0.07168,0.9216,0.007776,0.005536,0.033792,0.105824,0.105152,26.2792,0.114848
+1498,34.6836,28.832,26.3741,0.0712,0.936864,0.00752,0.004768,0.034176,0.105088,0.106496,24.9929,0.11504
+1499,36.4465,27.4375,26.4353,0.071456,0.857344,0.007072,0.005568,0.033344,0.104448,0.106496,25.1331,0.11648
+1500,33.4597,29.8867,27.6808,0.071008,0.93424,0.006464,0.014336,0.034816,0.11024,0.108096,26.2886,0.11296
+1501,37.3178,26.7969,26.7484,0.071168,0.92784,0.00704,0.0056,0.033344,0.104416,0.108128,25.3767,0.114176
+1502,35.7842,27.9453,26.6088,0.070912,1.0985,0.008288,0.005696,0.037248,0.106464,0.105792,25.0612,0.114784
+1503,36.0411,27.7461,27.7227,0.070688,0.913344,0.007744,0.004544,0.034848,0.108128,0.10688,26.3612,0.115328
+1504,34.693,28.8242,26.1919,0.0712,0.78896,0.007424,0.004832,0.034464,0.10416,0.1064,24.9597,0.11472
+1505,35.0109,28.5625,26.7742,0.070304,0.876224,0.006464,0.014336,0.034816,0.104448,0.106496,25.4464,0.114688
+1506,36.7236,27.2305,27.5969,0.069632,0.863808,0.006592,0.005408,0.033504,0.106496,0.108,26.2902,0.113248
+1507,34.5759,28.9219,26.3167,0.070176,0.831648,0.007616,0.00464,0.034848,0.11056,0.1064,25.0362,0.114656
+1508,36.3688,27.4961,26.2943,0.071552,0.795968,0.006976,0.004096,0.04096,0.106112,0.110976,25.0409,0.116736
+1509,27.234,36.7188,27.5724,0.07184,0.878912,0.0064,0.006016,0.034816,0.106016,0.104928,26.2471,0.116352
+1510,34.7779,28.7539,26.3001,0.070656,0.91184,0.006688,0.005184,0.033728,0.104448,0.104448,24.9466,0.11648
+1511,36.5245,27.3789,26.3543,0.070304,0.868352,0.006144,0.006144,0.034464,0.1048,0.106496,25.0426,0.11504
+1512,36.0107,27.7695,27.4944,0.070976,0.845728,0.006944,0.004096,0.034656,0.102592,0.107712,26.207,0.114688
+1513,32.7785,30.5078,26.7832,0.070784,0.892928,0.00704,0.0056,0.033312,0.106176,0.121152,25.4321,0.114176
+1514,38.135,26.2227,27.1551,0.070272,0.82128,0.007968,0.004288,0.034816,0.109792,0.117536,25.8744,0.114688
+1515,35.3689,28.2734,27.5366,0.07168,0.824352,0.007104,0.005504,0.03344,0.106272,0.106592,26.2668,0.114848
+1516,34.4781,29.0039,26.362,0.070048,0.873984,0.006656,0.00528,0.033632,0.10576,0.106688,25.0452,0.11472
+1517,35.4178,28.2344,26.4294,0.07104,0.981632,0.00768,0.00464,0.04912,0.110592,0.110592,24.9795,0.114688
+1518,37.7748,26.4727,27.6214,0.069984,0.94208,0.0072,0.004832,0.045312,0.1056,0.106848,26.2252,0.114336
+1519,34.618,28.8867,26.4257,0.070208,0.950272,0.0072,0.005088,0.034752,0.116256,0.104992,25.0215,0.115392
+1520,36.1225,27.6836,26.3075,0.070528,0.89472,0.0064,0.005632,0.034464,0.103264,0.106496,24.9713,0.114688
+1521,36.0563,27.7344,27.5011,0.0704,0.793984,0.006784,0.005952,0.033984,0.105024,0.104896,26.2652,0.114912
+1522,33.5122,29.8398,27.5627,0.070304,0.954336,0.007712,0.014144,0.035488,0.104608,0.106336,25.8228,0.44688
+1523,36.0158,27.7656,26.3142,0.073888,0.884704,0.007744,0.004544,0.034848,0.104416,0.106496,24.9829,0.114656
+1524,36.2145,27.6133,27.4821,0.070656,0.878688,0.007072,0.004096,0.034816,0.106496,0.106464,26.1604,0.11344
+1525,34.8964,28.6562,26.1928,0.070624,0.792544,0.006144,0.006144,0.03424,0.105024,0.106496,24.9569,0.114688
+1526,35.605,28.0859,27.6377,0.07168,0.919552,0.007712,0.004576,0.043008,0.104448,0.106496,26.2651,0.115136
+1527,33.9523,29.4531,27.6829,0.071328,0.9728,0.006944,0.005664,0.034816,0.104672,0.114944,26.2572,0.114464
+1528,32.9007,30.3945,26.6752,0.069824,1.20013,0.007168,0.015232,0.034368,0.105024,0.108288,25.0203,0.11488
+1529,38.4096,26.0352,26.2778,0.0704,0.837632,0.00768,0.004608,0.03472,0.104544,0.104448,24.9977,0.116064
+1530,35.9803,27.793,27.6705,0.070816,1.01834,0.006528,0.005408,0.043744,0.107776,0.106816,26.1976,0.113536
+1531,34.9154,28.6406,26.3025,0.07168,0.864256,0.007488,0.0048,0.042752,0.104608,0.10864,24.9835,0.114816
+1532,36.2966,27.5508,26.3126,0.07968,0.865888,0.006752,0.004096,0.034816,0.105856,0.107008,24.9931,0.115488
+1533,36.4309,27.4492,27.6017,0.070464,0.913408,0.007712,0.004576,0.043008,0.104448,0.106304,26.237,0.114752
+1534,34.6133,28.8906,26.4362,0.07024,0.915328,0.00624,0.005696,0.033248,0.104192,0.104832,25.0813,0.115104
+1535,36.276,27.5664,27.5079,0.070656,0.789536,0.007936,0.005536,0.033632,0.105856,0.105056,26.2738,0.115904
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..534215f
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,33.5914,29.7883,28.6141,0.0697025,0.944534,0.00757328,0.00561109,0.0289188,0.0964729,0.0992089,27.2459,0.116129
+max_1024,36.4984,35.1523,31.4902,0.084288,3.12502,0.043264,0.021408,0.045056,0.11808,0.458144,29.1158,0.50384
+min_1024,28.4476,27.3984,27.8118,0.065824,0.833664,0.006112,0.004064,0.02672,0.093152,0.095904,26.5107,0.111392
+512,34.3451,29.1162,28.232,0.065824,1.024,0.007744,0.004544,0.028384,0.104736,0.098336,26.7853,0.113056
+513,33.2694,30.0576,29.6326,0.069696,1.19536,0.006816,0.005888,0.03712,0.108544,0.097536,27.9982,0.11344
+514,31.7057,31.54,29.6591,0.069632,1.20794,0.006432,0.004224,0.044416,0.100352,0.096896,28.0166,0.11264
+515,32.4616,30.8057,28.1938,0.069696,1.00755,0.007936,0.005536,0.027488,0.104448,0.1,26.7554,0.115744
+516,35.9576,27.8105,29.3135,0.06848,0.929728,0.006208,0.005696,0.027072,0.095872,0.09664,27.9695,0.114272
+517,33.1853,30.1338,28.1313,0.070368,0.878592,0.007904,0.005504,0.027552,0.095648,0.096576,26.8352,0.113888
+518,34.1129,29.3145,28.1416,0.0696,0.92752,0.0064,0.005568,0.02864,0.094816,0.096384,26.7996,0.113024
+519,34.2521,29.1953,30.1757,0.067296,0.88752,0.006176,0.006144,0.02832,0.094592,0.097952,28.8746,0.113152
+520,32,31.25,28.0719,0.068768,0.8856,0.008064,0.004224,0.028704,0.095232,0.097056,26.7696,0.114688
+521,33.9815,29.4277,28.1395,0.069344,0.9376,0.006816,0.005856,0.028832,0.094368,0.096224,26.7858,0.114688
+522,34.2922,29.1611,29.3553,0.069632,0.917504,0.007168,0.004864,0.028256,0.095968,0.097184,28.0208,0.113984
+523,32.8721,30.4209,28.0822,0.069568,0.8848,0.007328,0.004992,0.028512,0.09552,0.09712,26.781,0.113376
+524,34.3221,29.1357,28.0717,0.070848,0.869184,0.007488,0.0048,0.028032,0.093856,0.097248,26.785,0.115264
+525,34.5421,28.9502,29.2906,0.068192,0.849056,0.007008,0.005568,0.0272,0.09584,0.09664,28.0239,0.117216
+526,32.9908,30.3115,29.2734,0.071136,0.861952,0.006944,0.004096,0.028672,0.096256,0.096256,27.9941,0.114016
+527,33.0653,30.2432,28.0777,0.070176,0.853792,0.006368,0.006144,0.028128,0.094752,0.098304,26.8059,0.11408
+528,34.1766,29.2598,29.2721,0.069632,0.861184,0.00704,0.004224,0.028672,0.095392,0.097088,27.9962,0.11264
+529,32.9112,30.3848,28.1522,0.06976,0.913184,0.006528,0.006016,0.027968,0.094752,0.098464,26.8207,0.114816
+530,34.4526,29.0254,29.1717,0.069344,0.860448,0.007936,0.004384,0.02864,0.094304,0.098208,27.8914,0.117056
+531,33.1306,30.1836,29.3306,0.069664,0.847872,0.007936,0.005504,0.027488,0.094368,0.0976,28.0676,0.112608
+532,33.0365,30.2695,28.0273,0.068032,0.841728,0.007968,0.00432,0.028672,0.096256,0.09824,26.7592,0.12288
+533,34.3693,29.0957,28.0515,0.069568,0.845408,0.006624,0.005632,0.027136,0.096064,0.09648,26.7899,0.114688
+534,34.2406,29.2051,29.3546,0.070144,0.856128,0.007488,0.0048,0.028288,0.094592,0.10192,28.0781,0.113088
+535,32.9897,30.3125,28.0802,0.069632,0.854016,0.008064,0.005504,0.027392,0.096256,0.096256,26.8104,0.112672
+536,33.7153,29.6602,28.1904,0.069568,0.998528,0.007104,0.012288,0.03072,0.096256,0.098304,26.7566,0.121024
+537,33.2144,30.1074,29.4655,0.068512,0.980992,0.0072,0.005088,0.034848,0.100352,0.098176,28.0556,0.114688
+538,32.9939,30.3086,29.323,0.069152,0.870048,0.006976,0.004096,0.028672,0.094208,0.097888,28.0395,0.112512
+539,32.8079,30.4805,28.1762,0.06976,0.946784,0.006144,0.006144,0.02832,0.095968,0.096896,26.8104,0.11584
+540,34.2452,29.2012,29.296,0.069184,0.8784,0.006784,0.00512,0.027648,0.095552,0.09696,27.9916,0.1248
+541,32.0501,31.2012,28.3417,0.06784,1.10099,0.021312,0.006144,0.031808,0.096736,0.100352,26.8027,0.113888
+542,34.3601,29.1035,28.4497,0.068544,0.884736,0.006144,0.005312,0.027456,0.096256,0.098336,27.1483,0.114688
+543,33.4684,29.8789,29.8103,0.069632,1.36394,0.006176,0.006144,0.03072,0.096096,0.097632,28.0257,0.114272
+544,32.8331,30.457,28.1067,0.07008,0.89072,0.006336,0.005568,0.0272,0.095904,0.09664,26.8001,0.114176
+545,33.5342,29.8203,28.2292,0.069248,1.02877,0.006368,0.014336,0.030624,0.095968,0.09664,26.7735,0.113728
+546,34.8774,28.6719,29.3502,0.069984,0.870848,0.006336,0.005632,0.028128,0.095264,0.09824,28.0617,0.11408
+547,32.6927,30.5879,28.1637,0.069632,0.926752,0.007008,0.005536,0.02736,0.096,0.09776,26.8188,0.114848
+548,33.8043,29.582,28.121,0.068128,0.882688,0.007456,0.004832,0.028032,0.094848,0.096256,26.8247,0.114048
+549,33.6532,29.7148,29.5444,0.069632,1.13254,0.00752,0.01296,0.028416,0.09568,0.106912,27.9773,0.113472
+550,31.8428,31.4043,29.5282,0.075904,1.06,0.007008,0.004096,0.028672,0.095264,0.097248,28.0453,0.114688
+551,32.6551,30.623,28.5128,0.068448,1.23274,0.02064,0.006144,0.028672,0.09616,0.103552,26.8421,0.114336
+552,34.5386,28.9531,29.4906,0.069824,1.02182,0.006272,0.005664,0.027104,0.096256,0.098304,28.0515,0.113888
+553,33.0173,30.2871,28.0836,0.069568,0.878208,0.006592,0.005984,0.028032,0.096032,0.096832,26.7878,0.114624
+554,33.9658,29.4414,28.1996,0.068448,0.960512,0.006144,0.006112,0.028672,0.10432,0.096416,26.8145,0.114464
+555,34.2658,29.1836,29.3467,0.068448,0.892896,0.006176,0.006144,0.02832,0.096256,0.09824,28.0355,0.114688
+556,32.7219,30.5605,28.1223,0.070848,0.938816,0.008096,0.004192,0.028672,0.095552,0.09696,26.7652,0.113984
+557,34.1789,29.2578,28.1766,0.079488,0.98704,0.00672,0.006112,0.027968,0.094944,0.0976,26.7619,0.114784
+558,34.404,29.0664,29.3591,0.068512,0.888832,0.007936,0.00432,0.028576,0.094336,0.097984,28.0558,0.112736
+559,32.7136,30.5684,28.1464,0.069728,0.92016,0.007936,0.005536,0.027488,0.096224,0.098048,26.8076,0.1136
+560,33.9253,29.4766,28.1611,0.0696,0.95024,0.008032,0.004256,0.02864,0.09568,0.096864,26.7939,0.113856
+561,33.9748,29.4336,29.4257,0.069664,0.9616,0.007072,0.005504,0.027264,0.095744,0.096768,28.0494,0.11264
+562,32.9409,30.3574,29.3653,0.075776,0.87984,0.006944,0.004288,0.02848,0.096192,0.09824,28.0612,0.114336
+563,32.6781,30.6016,28.1149,0.069408,0.901344,0.006304,0.006144,0.028704,0.09552,0.096992,26.796,0.114464
+564,34.4086,29.0625,29.3813,0.068448,0.926624,0.007072,0.00416,0.028672,0.09424,0.098016,28.0414,0.112704
+565,32.5245,30.7461,28.0562,0.070272,0.874464,0.006144,0.006144,0.02864,0.096064,0.09648,26.7633,0.11472
+566,34.0448,29.373,29.3697,0.078048,0.916576,0.007072,0.005472,0.027296,0.096032,0.09648,28.0289,0.11376
+567,32.5949,30.6797,29.3624,0.069344,0.936448,0.007904,0.005504,0.027552,0.095456,0.097056,28.0105,0.11264
+568,32.3273,30.9336,28.3057,0.069824,0.984512,0.006816,0.005184,0.027584,0.096,0.097664,26.9034,0.114688
+569,33.9388,29.4648,28.2002,0.068864,0.983264,0.006688,0.005856,0.028256,0.094912,0.098208,26.7999,0.11424
+570,33.9545,29.4512,29.3405,0.069536,0.926624,0.008032,0.004256,0.028512,0.094368,0.097696,27.9988,0.11264
+571,33.1134,30.1992,28.181,0.069536,0.876096,0.007136,0.005504,0.027296,0.096256,0.098336,26.8791,0.121728
+572,33.8848,29.5117,28.2828,0.069632,1.00499,0.00672,0.005184,0.027584,0.095776,0.096736,26.8615,0.114688
+573,34.188,29.25,29.4219,0.072,0.9728,0.008064,0.004128,0.044544,0.103008,0.098304,28.0062,0.112864
+574,32.701,30.5801,29.4031,0.075104,0.966752,0.00672,0.005248,0.02752,0.09744,0.09712,28.014,0.113184
+575,32.9388,30.3594,28.1375,0.069664,0.903136,0.00752,0.004768,0.028672,0.100352,0.097792,26.8109,0.114688
+576,34.1698,29.2656,29.3507,0.069536,0.895904,0.008,0.004288,0.028704,0.095904,0.097888,28.0371,0.113376
+577,32.6468,30.6309,28.1785,0.069088,0.944416,0.0064,0.00528,0.027488,0.095616,0.09664,26.8207,0.112832
+578,34.4271,29.0469,29.3048,0.073728,0.900192,0.007104,0.004064,0.028672,0.096256,0.097408,27.9848,0.11264
+579,32.747,30.5371,29.3305,0.069056,0.893504,0.007552,0.004736,0.028704,0.095264,0.097216,28.0206,0.113856
+580,32.6323,30.6445,28.1527,0.06848,0.9312,0.006784,0.00416,0.028608,0.095488,0.09632,26.8089,0.1128
+581,34.1972,29.2422,28.0756,0.071584,0.901408,0.007648,0.00464,0.028672,0.096224,0.097472,26.7537,0.114304
+582,34.2658,29.1836,29.2944,0.075456,0.90512,0.00656,0.005408,0.02736,0.09616,0.098176,27.9668,0.11344
+583,32.4852,30.7832,28.289,0.069632,1.07229,0.007008,0.005632,0.027136,0.094272,0.098048,26.8002,0.114784
+584,34.0947,29.3301,28.1325,0.069664,0.935488,0.00656,0.005376,0.027392,0.096256,0.098304,26.7796,0.113824
+585,34.1607,29.2734,29.2964,0.071008,0.897696,0.007616,0.004672,0.028672,0.09568,0.096864,27.981,0.113184
+586,32.6656,30.6133,29.279,0.069888,0.872992,0.0072,0.004928,0.028256,0.094784,0.113792,27.9745,0.112672
+587,32.6011,30.6738,28.0575,0.068352,0.9032,0.0072,0.005056,0.028704,0.095968,0.098528,26.7367,0.113792
+588,34.1812,29.2559,29.3667,0.070016,0.966656,0.007552,0.012704,0.028096,0.094432,0.096928,27.9776,0.112672
+589,32.9451,30.3535,28.2202,0.069952,0.997824,0.006144,0.006144,0.028544,0.096128,0.096512,26.8042,0.114688
+590,33.7308,29.6465,29.2238,0.068512,0.884736,0.006144,0.005856,0.028096,0.095072,0.097408,27.9254,0.11264
+591,32.7324,30.5508,29.3772,0.0696,0.973632,0.007904,0.005504,0.027552,0.096256,0.097888,27.9843,0.114624
+592,33.1886,30.1309,28.0637,0.069632,0.86016,0.00752,0.004768,0.02832,0.095872,0.096992,26.7858,0.114656
+593,34.3624,29.1016,28.0098,0.069216,0.860576,0.00736,0.004928,0.02864,0.09424,0.0976,26.7332,0.114016
+594,34.1972,29.2422,29.2148,0.068928,0.879264,0.006176,0.005824,0.028192,0.095008,0.098304,27.9183,0.114752
+595,33.1434,30.1719,28.0342,0.069632,0.841504,0.006368,0.006144,0.028032,0.094912,0.098112,26.7754,0.114144
+596,33.8983,29.5,28.1158,0.068576,0.924544,0.007072,0.00416,0.028672,0.096256,0.097664,26.7756,0.113248
+597,33.152,30.1641,29.8584,0.06816,1.41514,0.006176,0.006144,0.028672,0.104,0.096704,28.02,0.113376
+598,32.4194,30.8457,29.5972,0.069632,1.24109,0.007968,0.00432,0.028672,0.095776,0.096768,27.9388,0.114208
+599,32.8479,30.4434,28.2481,0.069664,1.03421,0.006144,0.006144,0.028224,0.094656,0.097376,26.797,0.114624
+600,34.2727,29.1777,29.3663,0.06912,0.94832,0.00656,0.005472,0.027296,0.096192,0.097504,28.0011,0.11472
+601,32.9388,30.3594,28.1129,0.069408,0.888224,0.006976,0.005568,0.027232,0.096224,0.098144,26.8064,0.11472
+602,34.2704,29.1797,29.29,0.068992,0.877088,0.00624,0.005248,0.02752,0.096256,0.097792,27.9967,0.114144
+603,32.9515,30.3477,29.3165,0.069664,0.860128,0.008032,0.005536,0.027392,0.095552,0.104128,28.0317,0.114368
+604,32.8374,30.4531,28.1619,0.084288,0.892288,0.006848,0.004064,0.028672,0.095552,0.09696,26.839,0.114208
+605,34.2612,29.1875,28.0745,0.069472,0.854752,0.007392,0.004864,0.028704,0.09552,0.09696,26.8022,0.114688
+606,34.0584,29.3613,29.3145,0.069632,0.886752,0.006336,0.005632,0.027072,0.09616,0.096256,28.014,0.11264
+607,32.8479,30.4434,28.0805,0.069536,0.867008,0.007264,0.005024,0.028672,0.096256,0.097696,26.7925,0.11648
+608,34.2842,29.168,28.0617,0.069088,0.870976,0.008032,0.004224,0.028672,0.095808,0.096736,26.7748,0.113376
+609,33.6554,29.7129,29.3353,0.06928,0.960864,0.007808,0.005504,0.027648,0.096256,0.097344,27.9562,0.1144
+610,32.4935,30.7754,29.4133,0.068352,1.0097,0.007744,0.004544,0.02864,0.095904,0.09824,27.9856,0.114592
+611,32.5679,30.7051,28.1825,0.083232,1.00016,0.007264,0.005024,0.028288,0.094624,0.097536,26.7517,0.114688
+612,34.5037,28.9824,29.3372,0.069632,0.923648,0.00752,0.004768,0.02848,0.094432,0.097632,27.9979,0.113216
+613,32.8352,30.4551,28.123,0.068352,0.919424,0.007872,0.005536,0.027552,0.096288,0.098272,26.7858,0.113952
+614,34.029,29.3867,28.4979,0.069632,0.921056,0.006688,0.005312,0.027456,0.096064,0.096448,27.1626,0.11264
+615,33.3138,30.0176,29.2778,0.071392,0.897312,0.007744,0.004544,0.028672,0.09584,0.096672,27.9613,0.114304
+616,32.7701,30.5156,28.0397,0.068576,0.863904,0.006464,0.006144,0.028224,0.1008,0.097856,26.7535,0.11424
+617,33.7108,29.6641,28.1516,0.069824,0.98944,0.007232,0.005056,0.028544,0.10048,0.096256,26.7387,0.116128
+618,33.9658,29.4414,29.3126,0.069664,0.894944,0.007936,0.004352,0.028448,0.094432,0.098304,28.0003,0.114304
+619,33.0301,30.2754,28.0783,0.068448,0.891968,0.007104,0.005536,0.027232,0.096256,0.096256,26.7715,0.114016
+620,33.713,29.6621,28.1358,0.068352,0.976832,0.006208,0.005664,0.029152,0.095872,0.09808,26.7413,0.114368
+621,34.1447,29.2871,29.3581,0.069568,0.95648,0.00736,0.004928,0.028672,0.096256,0.098176,27.982,0.114688
+622,32.6676,30.6113,29.2525,0.069696,0.90192,0.007456,0.004832,0.028032,0.094368,0.104928,27.9282,0.113024
+623,33.0707,30.2383,28.1071,0.076128,0.912384,0.007072,0.005536,0.027328,0.096256,0.097888,26.771,0.113504
+624,34.4341,29.041,29.2455,0.069632,0.870432,0.008,0.004256,0.028672,0.09424,0.098144,27.9492,0.122912
+625,32.8901,30.4043,28.0105,0.069664,0.871424,0.007008,0.005504,0.027392,0.096256,0.097984,26.722,0.113312
+626,34.5223,28.9668,29.2186,0.069248,0.854272,0.006752,0.005248,0.02752,0.094208,0.096256,27.9521,0.112992
+627,32.8648,30.4277,29.3197,0.069696,0.946592,0.00624,0.006144,0.02816,0.09472,0.098304,27.9564,0.11344
+628,32.8605,30.4316,28.0751,0.069664,0.912576,0.006944,0.004192,0.028576,0.096288,0.09808,26.7447,0.114048
+629,33.977,29.4316,28.2022,0.069568,0.99888,0.006752,0.005792,0.028128,0.099104,0.096384,26.7837,0.11392
+630,34.2269,29.2168,29.3095,0.068352,0.902784,0.020896,0.005824,0.028096,0.096256,0.097152,27.9757,0.114496
+631,32.9007,30.3945,28.1231,0.069568,0.935008,0.00704,0.00544,0.027456,0.104416,0.098336,26.7625,0.113408
+632,34.2635,29.1855,28.0515,0.069632,0.856096,0.007488,0.004768,0.028352,0.106816,0.096256,26.7674,0.114688
+633,34.0765,29.3457,29.2413,0.069568,0.866368,0.00752,0.004768,0.028672,0.0944,0.097728,27.9597,0.11264
+634,32.0481,31.2031,29.3803,0.069728,1.01616,0.007456,0.0048,0.036224,0.094816,0.096384,27.9408,0.113952
+635,33.2079,30.1133,28.2348,0.069632,1.06906,0.007264,0.015008,0.030976,0.095456,0.09648,26.7352,0.115776
+636,32.9578,30.3418,29.3904,0.069312,1.00336,0.006624,0.005376,0.027392,0.095648,0.113248,27.945,0.124448
+637,33.7419,29.6367,28.0863,0.069632,0.93088,0.00704,0.005504,0.027328,0.096224,0.096288,26.7387,0.114688
+638,34.0788,29.3438,29.4236,0.069632,1.02157,0.006528,0.005408,0.041696,0.096064,0.097696,27.9716,0.113408
+639,32.5575,30.7148,29.4074,0.069344,1.05296,0.007168,0.00512,0.028512,0.1024,0.10256,27.926,0.113312
+640,33.137,30.1777,28.0849,0.069696,0.893216,0.006464,0.005632,0.027136,0.095872,0.09664,26.7756,0.114688
+641,34.3947,29.0742,28.029,0.069632,0.880512,0.006272,0.006144,0.028384,0.094656,0.098144,26.7317,0.113536
+642,34.3233,29.1348,29.2168,0.069632,0.892928,0.00816,0.004128,0.028448,0.094432,0.096256,27.9101,0.11264
+643,33.1241,30.1895,28.0655,0.06928,0.870752,0.00784,0.005536,0.027584,0.096256,0.098048,26.7772,0.112992
+644,33.9433,29.4609,28.1957,0.068448,1.0048,0.006912,0.004288,0.036448,0.09648,0.10032,26.7633,0.114688
+645,34.5176,28.9707,29.2527,0.06976,0.855808,0.0064,0.006016,0.02864,0.09424,0.098016,27.9801,0.113792
+646,32.7198,30.5625,29.3514,0.069632,0.906592,0.006816,0.00528,0.027488,0.104448,0.098048,28.0204,0.112672
+647,32.6052,30.6699,28.2153,0.069632,1.05043,0.006336,0.006144,0.028096,0.094816,0.097568,26.7476,0.114688
+648,34.5409,28.9512,29.1779,0.069632,0.86016,0.007936,0.004352,0.028512,0.096,0.096672,27.9012,0.113344
+649,33.0557,30.252,28.0656,0.06928,0.862848,0.006208,0.006144,0.02816,0.09472,0.096256,26.7878,0.114112
+650,34.3394,29.1211,28.0105,0.069632,0.886304,0.006624,0.00528,0.027488,0.096256,0.097792,26.7085,0.11264
+651,34.5666,28.9297,30.0339,0.067232,0.846176,0.006144,0.006144,0.028256,0.09664,0.09632,28.7735,0.113504
+652,32.004,31.2461,28.1703,0.069376,0.99568,0.015872,0.004608,0.028512,0.094368,0.097536,26.7514,0.11296
+653,34.2292,29.2148,28.1134,0.06816,0.95024,0.007744,0.004544,0.028672,0.095488,0.096864,26.7486,0.11312
+654,34.0335,29.3828,29.3225,0.071712,0.935936,0.006144,0.005856,0.028192,0.096288,0.096992,27.9675,0.113952
+655,32.8753,30.418,28.1786,0.069184,0.96096,0.006304,0.006144,0.028352,0.09584,0.096992,26.8012,0.113632
+656,34.1812,29.2559,28.0163,0.069472,0.84976,0.006656,0.005248,0.02752,0.095232,0.101408,26.7468,0.114144
+657,33.8378,29.5527,29.3992,0.06848,0.950304,0.007488,0.004768,0.028672,0.101664,0.096992,28.0249,0.116
+658,32.9282,30.3691,29.2804,0.069248,0.887616,0.007872,0.004384,0.028608,0.095488,0.09712,27.9774,0.112704
+659,32.6822,30.5977,28.0918,0.069664,0.886784,0.007552,0.004704,0.028672,0.095584,0.096928,26.7858,0.11616
+660,33.923,29.4785,29.3354,0.0696,0.938112,0.008096,0.004096,0.028672,0.095968,0.096576,27.9797,0.114496
+661,33.0003,30.3027,28.1314,0.077248,0.93856,0.007648,0.00464,0.028672,0.104256,0.098528,26.7584,0.113408
+662,34.2292,29.2148,29.3412,0.069664,0.92096,0.006752,0.005376,0.027392,0.096256,0.098208,28.0024,0.114176
+663,32.7995,30.4883,29.3235,0.069184,0.88544,0.007264,0.005056,0.028448,0.094432,0.096224,28.0228,0.114688
+664,33.1907,30.1289,28.0578,0.069248,0.88528,0.007328,0.004864,0.028096,0.094944,0.09808,26.7552,0.114688
+665,34.2452,29.2012,28.1037,0.069696,0.88272,0.007648,0.004608,0.028672,0.096128,0.097664,26.8026,0.114016
+666,34.3325,29.127,29.2475,0.069664,0.874464,0.007968,0.00432,0.02848,0.0944,0.09824,27.9573,0.112608
+667,32.6968,30.584,28.162,0.069472,0.92288,0.00704,0.005504,0.027456,0.096096,0.098304,26.8222,0.11312
+668,33.9815,29.4277,28.1178,0.068416,0.976576,0.006464,0.005536,0.028288,0.095168,0.096416,26.7278,0.113184
+669,33.9298,29.4727,29.289,0.068192,0.902816,0.006464,0.006112,0.028064,0.09488,0.098016,27.9716,0.112864
+670,32.2195,31.0371,28.2903,0.069632,1.21184,0.00672,0.02048,0.028672,0.095936,0.096608,26.6465,0.113888
+671,34.7543,28.7734,29.0058,0.067584,0.943168,0.00704,0.005536,0.02864,0.094912,0.098144,27.6473,0.113472
+672,33.44,29.9043,29.2507,0.06944,0.864384,0.006208,0.005792,0.028512,0.094592,0.096384,27.9716,0.113824
+673,32.7596,30.5254,28.1224,0.069664,0.933696,0.006304,0.006144,0.02816,0.09472,0.096288,26.7735,0.11392
+674,33.5892,29.7715,28.3958,0.068224,0.881824,0.007008,0.004096,0.028672,0.095936,0.09808,27.0976,0.1144
+675,34.4526,29.0254,29.4271,0.06912,1.02861,0.009824,0.004512,0.032,0.094976,0.098304,27.9757,0.114048
+676,32.7638,30.5215,28.06,0.069248,0.871296,0.006208,0.005696,0.027072,0.095808,0.096704,26.7734,0.114592
+677,33.9365,29.4668,28.1894,0.068384,1.00557,0.007744,0.004512,0.028672,0.096192,0.097568,26.7678,0.11296
+678,34.4549,29.0234,29.2413,0.071008,0.869024,0.00752,0.004768,0.028256,0.094624,0.09824,27.9532,0.114688
+679,32.7491,30.5352,28.1749,0.068,1.0152,0.006752,0.005504,0.027264,0.096128,0.106656,26.7358,0.113568
+680,33.941,29.4629,28.0804,0.069184,0.88736,0.006304,0.005664,0.02816,0.094656,0.0968,26.779,0.113344
+681,34.441,29.0352,29.2823,0.069376,0.928,0.007744,0.004544,0.028672,0.095872,0.09776,27.9355,0.114848
+682,33.0856,30.2246,28.0777,0.069632,0.909312,0.006144,0.005888,0.028224,0.096192,0.096928,26.7511,0.114304
+683,34.3072,29.1484,29.1855,0.069728,0.894976,0.007776,0.004512,0.028672,0.096256,0.097504,27.872,0.11408
+684,32.9366,30.3613,29.2455,0.067648,0.86016,0.007872,0.004416,0.028608,0.094272,0.09632,27.9736,0.11264
+685,33.1714,30.1465,28.1805,0.069632,0.925472,0.006368,0.006144,0.028128,0.094752,0.098304,26.837,0.114688
+686,32.1426,31.1113,28.1416,0.069664,0.995328,0.008096,0.004192,0.0344,0.094624,0.09808,26.7225,0.114688
+687,35.8619,27.8848,29.483,0.081088,1.12061,0.006624,0.005664,0.034528,0.095008,0.102368,27.9245,0.11264
+688,32.9706,30.3301,28.0678,0.073472,0.91888,0.007072,0.004096,0.028672,0.10448,0.098144,26.7197,0.113344
+689,34.2934,29.1602,28.0879,0.069632,0.9216,0.007968,0.005504,0.027488,0.096128,0.09792,26.7466,0.115104
+690,33.8781,29.5176,29.348,0.069216,0.961472,0.018112,0.004416,0.042944,0.096032,0.09776,27.9437,0.114336
+691,32.747,30.5371,29.3166,0.069632,0.960128,0.006528,0.006048,0.028064,0.094944,0.101536,27.9356,0.114176
+692,33.0216,30.2832,28.1545,0.068448,0.989184,0.007584,0.004704,0.028352,0.094528,0.097728,26.7495,0.114464
+693,34.2957,29.1582,29.2884,0.069632,0.884736,0.007616,0.004704,0.02864,0.09568,0.096832,27.987,0.113568
+694,32.7157,30.5664,28.33,0.069152,1.18013,0.006144,0.005856,0.02816,0.095008,0.119872,26.7121,0.113568
+695,34.0675,29.3535,29.3543,0.069952,0.966752,0.007232,0.005056,0.029856,0.1112,0.098304,27.9514,0.11456
+696,32.81,30.4785,29.311,0.069632,0.944064,0.006208,0.005824,0.026944,0.096064,0.096448,27.9532,0.112704
+697,32.9812,30.3203,28.158,0.06928,0.946528,0.0072,0.005088,0.02848,0.094432,0.097568,26.7823,0.127104
+698,33.682,29.6895,28.115,0.069664,0.94016,0.00736,0.004832,0.0288,0.095712,0.098112,26.7551,0.115232
+699,34.1721,29.2637,29.2686,0.069408,0.912064,0.006304,0.006144,0.02816,0.094752,0.09808,27.9401,0.1136
+700,33.0664,30.2422,28.0765,0.070048,0.940032,0.00752,0.004768,0.028096,0.094784,0.098144,26.7184,0.11472
+701,34.4179,29.0547,28.0269,0.068704,0.861088,0.007808,0.005536,0.027616,0.096096,0.10368,26.7429,0.11344
+702,34.5363,28.9551,29.1983,0.069632,0.847872,0.007872,0.004416,0.028416,0.094464,0.098112,27.934,0.113504
+703,32.7345,30.5488,28.0769,0.069568,0.928704,0.006144,0.006144,0.028352,0.096576,0.096256,26.7305,0.114688
+704,34.3486,29.1133,29.4401,0.068608,0.995328,0.007968,0.00432,0.028704,0.09536,0.09712,28.0289,0.113728
+705,33.011,30.293,29.2408,0.0696,0.847904,0.007744,0.004544,0.028672,0.106496,0.098336,27.9634,0.114112
+706,32.9897,30.3125,27.9929,0.069792,0.873152,0.0072,0.004864,0.028096,0.096288,0.097056,26.7018,0.114656
+707,34.2315,29.2129,28.1702,0.069632,0.999424,0.007968,0.005536,0.027456,0.096288,0.097856,26.7514,0.114688
+708,34.2452,29.2012,29.2001,0.069216,0.842144,0.006144,0.006144,0.028064,0.110656,0.0968,27.9281,0.112896
+709,32.8753,30.418,28.192,0.07072,1.02266,0.0064,0.006144,0.028256,0.094624,0.096384,26.752,0.114784
+710,34.0879,29.3359,28.0044,0.069632,0.88064,0.007424,0.004864,0.028128,0.095776,0.09728,26.7059,0.114688
+711,34.1265,29.3027,29.2748,0.06944,0.914272,0.007584,0.004704,0.028672,0.095552,0.09696,27.945,0.11264
+712,32.9876,30.3145,29.2937,0.068736,0.930688,0.0072,0.004864,0.028224,0.096288,0.098144,27.945,0.114624
+713,32.9451,30.3535,28.1303,0.068608,0.984064,0.00704,0.005504,0.027392,0.095648,0.10288,26.7245,0.114688
+714,34.2658,29.1836,29.2534,0.069664,0.917664,0.008032,0.004256,0.028672,0.094208,0.098304,27.9183,0.114272
+715,32.5286,30.7422,28.0333,0.068768,0.927552,0.00768,0.004608,0.028672,0.095904,0.097728,26.6896,0.112768
+716,34.0607,29.3594,29.2639,0.069632,0.954368,0.007456,0.004832,0.028096,0.094784,0.097824,27.8942,0.112704
+717,33.4466,29.8984,29.2237,0.069632,0.883584,0.00768,0.004608,0.028672,0.095968,0.096544,27.9224,0.114592
+718,33.0856,30.2246,28.0177,0.069664,0.870368,0.007232,0.004928,0.028128,0.09488,0.097824,26.731,0.113728
+719,34.2727,29.1777,28.0764,0.068576,0.913408,0.008032,0.005504,0.027424,0.096256,0.097472,26.7447,0.11504
+720,33.2662,30.0605,29.536,0.0696,1.09792,0.007584,0.004704,0.028384,0.094496,0.098272,28.0208,0.114272
+721,32.9366,30.3613,28.0924,0.069632,0.948128,0.00624,0.006144,0.028544,0.094336,0.097792,26.729,0.112672
+722,31.823,31.4238,28.3055,0.069152,1.09011,0.006144,0.005792,0.028128,0.09648,0.098304,26.7898,0.121568
+723,36.4984,27.3984,29.4093,0.06912,1.05936,0.007424,0.004832,0.028672,0.095776,0.096768,27.934,0.11328
+724,32.6968,30.584,29.373,0.069472,0.958784,0.006592,0.005888,0.04224,0.094688,0.0968,27.9858,0.1128
+725,32.6718,30.6074,28.0132,0.071808,0.913856,0.006208,0.006144,0.028544,0.096384,0.098304,26.6767,0.1152
+726,33.8759,29.5195,29.4335,0.069664,1.07312,0.006144,0.005792,0.028,0.095232,0.097888,27.9447,0.113024
+727,32.9897,30.3125,28.0981,0.069696,0.942112,0.007936,0.005504,0.027488,0.09424,0.097408,26.7389,0.114784
+728,34.397,29.0723,27.9511,0.069504,0.83984,0.007936,0.00432,0.02848,0.094304,0.096352,26.6977,0.11264
+729,34.4155,29.0566,30.1325,0.069696,0.8544,0.007904,0.005504,0.027552,0.110336,0.097888,28.8447,0.114496
+730,32.1184,31.1348,28.001,0.068288,0.847264,0.006752,0.00512,0.027648,0.09584,0.112864,26.7239,0.113312
+731,34.3578,29.1055,28.0713,0.069632,0.87968,0.00704,0.005504,0.02928,0.094528,0.0976,26.7735,0.11456
+732,34.3049,29.1504,29.227,0.069632,0.854016,0.007456,0.004832,0.028064,0.094848,0.09824,27.9552,0.114688
+733,33.0621,30.2461,27.99,0.069632,0.882688,0.007904,0.005504,0.027552,0.095776,0.09776,26.6885,0.114688
+734,34.2888,29.1641,28.1278,0.069312,0.954752,0.006688,0.005312,0.027456,0.095392,0.097152,26.7582,0.1136
+735,33.733,29.6445,29.3955,0.070048,1.02806,0.006336,0.006144,0.028,0.09488,0.096256,27.9532,0.11264
+736,32.7932,30.4941,28.1375,0.069664,0.987104,0.006144,0.005856,0.028096,0.095072,0.097856,26.733,0.114688
+737,34.4642,29.0156,29.2393,0.069632,0.892928,0.007488,0.0048,0.028672,0.096128,0.096384,27.9286,0.114688
+738,32.183,31.0723,29.3528,0.068416,1.03773,0.006752,0.005216,0.027552,0.096224,0.096256,27.9018,0.112864
+739,33.3529,29.9824,28.1827,0.069664,1.0057,0.006368,0.006144,0.028032,0.09488,0.098272,26.7571,0.116544
+740,34.0765,29.3457,28.1403,0.069408,1.00656,0.007552,0.004736,0.028096,0.094784,0.096288,26.7192,0.113632
+741,33.2209,30.1016,29.3296,0.068416,0.946208,0.01744,0.005056,0.028672,0.096288,0.097696,27.9572,0.11264
+742,33.8311,29.5586,27.985,0.069184,0.836032,0.007456,0.004832,0.028672,0.1024,0.1024,26.7203,0.11376
+743,34.2269,29.2168,28.2084,0.070656,1.01888,0.007424,0.004864,0.02864,0.102432,0.097376,26.7621,0.115968
+744,34.072,29.3496,29.2949,0.069056,0.958848,0.006656,0.005376,0.027392,0.096256,0.09744,27.9212,0.112704
+745,32.9007,30.3945,27.9943,0.069152,0.87728,0.007936,0.005536,0.027456,0.095616,0.096896,26.6998,0.114688
+746,33.5474,29.8086,29.2541,0.068064,1.21811,0.00656,0.005344,0.027424,0.096256,0.098016,27.6196,0.114752
+747,32.1547,31.0996,29.5961,0.06864,1.08448,0.007008,0.005536,0.027296,0.106016,0.100064,28.0825,0.11456
+748,32.0722,31.1797,28.1813,0.06864,1.04438,0.006208,0.006048,0.042624,0.096672,0.098368,26.7051,0.113344
+749,33.6068,29.7559,29.4687,0.076864,1.06736,0.006752,0.016096,0.028512,0.095744,0.097216,27.9672,0.112896
+750,32.4791,30.7891,29.3232,0.069632,0.970656,0.014432,0.005344,0.027424,0.096224,0.096288,27.9298,0.11344
+751,32.9451,30.3535,28.1334,0.07568,1.00566,0.00784,0.005472,0.027648,0.096256,0.097408,26.7027,0.11472
+752,33.8333,29.5566,28.2802,0.069664,1.12957,0.00704,0.004224,0.028576,0.095872,0.096608,26.7346,0.114016
+753,33.9253,29.4766,29.3833,0.069664,1.03232,0.006592,0.005952,0.028192,0.095008,0.098176,27.9347,0.11264
+754,32.572,30.7012,28.0817,0.069536,0.982368,0.006912,0.004224,0.028544,0.096256,0.096256,26.6789,0.118688
+755,33.8065,29.5801,28.2338,0.06912,1.06554,0.007776,0.004608,0.028576,0.095936,0.096576,26.751,0.11472
+756,33.1692,30.1484,29.4837,0.082592,1.11002,0.0176,0.004928,0.02816,0.095808,0.097248,27.9347,0.112672
+757,32.4564,30.8105,28.3525,0.069632,0.949856,0.016128,0.004768,0.028672,0.096256,0.098304,26.9637,0.125152
+758,34.2658,29.1836,28.8928,0.069664,0.876512,0.00752,0.004768,0.028256,0.102816,0.098112,27.5908,0.114304
+759,32.8458,30.4453,29.3613,0.069632,0.996544,0.016704,0.004608,0.028672,0.096064,0.09648,27.9401,0.11248
+760,33.1177,30.1953,28.1312,0.068864,0.98816,0.007904,0.004384,0.040544,0.094752,0.099552,26.7127,0.114304
+761,34.0245,29.3906,28.5069,0.069568,0.981888,0.007488,0.004768,0.028672,0.095936,0.096576,27.1093,0.112672
+762,33.2662,30.0605,29.2233,0.067968,0.905248,0.00752,0.004736,0.028192,0.094688,0.098208,27.9039,0.112832
+763,32.8542,30.4375,28.0904,0.069248,0.954752,0.00784,0.005504,0.027616,0.110592,0.098336,26.7038,0.11264
+764,34.2017,29.2383,28.0208,0.069664,0.866048,0.0064,0.005504,0.027296,0.096224,0.096288,26.7387,0.114688
+765,34.2292,29.2148,29.2742,0.06912,0.88128,0.008032,0.005536,0.039712,0.09568,0.0968,27.9646,0.11344
+766,32.4873,30.7812,28.0782,0.068448,0.972352,0.00656,0.005472,0.027296,0.096256,0.096256,26.6929,0.112704
+767,34.4711,29.0098,27.9878,0.067936,0.845824,0.008,0.005504,0.027456,0.096288,0.098176,26.7258,0.112832
+768,34.0335,29.3828,29.2582,0.070016,0.919648,0.007584,0.004704,0.028256,0.094624,0.096448,27.9222,0.114688
+769,32.313,30.9473,29.4046,0.069664,1.01328,0.014816,0.005632,0.041472,0.094208,0.098208,27.955,0.112384
+770,33.0878,30.2227,28.0766,0.068608,0.894976,0.007296,0.00496,0.028096,0.09632,0.104992,26.7584,0.113024
+771,32.8859,30.4082,29.7165,0.071072,1.39075,0.006592,0.005984,0.028192,0.102464,0.096832,27.9015,0.113088
+772,32.1568,31.0977,28.1271,0.069376,0.997856,0.007648,0.00464,0.040608,0.099936,0.097056,26.6955,0.114528
+773,35.7642,27.9609,28.1477,0.069632,1.00355,0.007776,0.005504,0.039744,0.0944,0.103552,26.7109,0.11264
+774,34.5363,28.9551,29.1774,0.069632,0.845824,0.007968,0.00432,0.028672,0.096032,0.09776,27.913,0.114272
+775,33.1929,30.127,28.019,0.06928,0.838336,0.007264,0.005024,0.028544,0.096384,0.098272,26.7629,0.113056
+776,34.0312,29.3848,28.1127,0.06944,1.00576,0.007616,0.004672,0.028032,0.094848,0.098016,26.6898,0.114528
+777,34.5013,28.9844,29.2148,0.069504,0.854144,0.007488,0.0048,0.028608,0.094272,0.103648,27.9397,0.112576
+778,32.5949,30.6797,28.052,0.069888,0.927072,0.007104,0.004128,0.028672,0.09424,0.097984,26.7099,0.113024
+779,34.0516,29.3672,29.2475,0.069632,0.878528,0.006208,0.006144,0.028672,0.095936,0.097824,27.9511,0.113472
+780,33.1392,30.1758,29.1637,0.068352,0.839712,0.00768,0.004576,0.028288,0.09664,0.097664,27.908,0.112768
+781,32.7429,30.541,27.9872,0.069632,0.868352,0.007424,0.004864,0.028672,0.095424,0.097088,26.6998,0.115936
+782,33.811,29.5762,28.1645,0.080096,1.11958,0.017184,0.004128,0.036864,0.096288,0.097568,26.5997,0.113056
+783,34.4758,29.0059,29.2846,0.068384,0.923392,0.0064,0.006144,0.02816,0.094752,0.096256,27.948,0.113088
+784,32.9536,30.3457,28.1579,0.071712,0.96672,0.006144,0.005856,0.028064,0.09616,0.097248,26.7726,0.113376
+785,33.6864,29.6855,28.1353,0.069632,0.995328,0.017792,0.00592,0.033664,0.096224,0.09744,26.7047,0.114528
+786,34.3947,29.0742,29.3232,0.06976,0.983008,0.007456,0.004832,0.028032,0.094848,0.097632,27.9241,0.113504
+787,32.9472,30.3516,27.9701,0.06816,0.882688,0.007584,0.004704,0.02832,0.094592,0.097312,26.6733,0.113472
+788,34.3279,29.1309,29.0857,0.069024,1.12877,0.006432,0.005504,0.027264,0.096288,0.098304,27.5394,0.114688
+789,33.2857,30.043,29.3578,0.069568,0.937888,0.016544,0.005728,0.028224,0.095104,0.097952,27.9881,0.11872
+790,32.599,30.6758,27.9356,0.068608,0.856032,0.007392,0.004896,0.02784,0.09504,0.097792,26.6634,0.114528
+791,33.959,29.4473,28.0093,0.06848,0.91888,0.006784,0.005856,0.028096,0.095072,0.098304,26.6748,0.113024
+792,33.5936,29.7676,29.6018,0.069632,1.16739,0.008032,0.004224,0.04288,0.095808,0.112704,27.9877,0.113376
+793,32.4729,30.7949,28.0782,0.06976,0.981632,0.007744,0.004544,0.028672,0.096256,0.108576,26.6649,0.116096
+794,34.4132,29.0586,28.1088,0.069312,0.975168,0.007808,0.00448,0.043008,0.098112,0.104512,26.6938,0.11264
+795,34.1721,29.2637,29.3146,0.06976,0.97616,0.006848,0.00576,0.028288,0.096288,0.097024,27.9202,0.11424
+796,32.5141,30.7559,29.2776,0.069632,0.982624,0.00656,0.005376,0.027392,0.096256,0.097472,27.8782,0.114112
+797,32.7701,30.5156,28.1047,0.069632,0.98704,0.006336,0.006048,0.028224,0.095808,0.097312,26.7017,0.11264
+798,34.6954,28.8223,29.1581,0.06992,0.862624,0.007296,0.004832,0.028192,0.094848,0.098304,27.8794,0.112672
+799,32.8184,30.4707,27.954,0.06864,0.842944,0.006944,0.005632,0.027136,0.096256,0.097696,26.6942,0.114464
+800,34.448,29.0293,28.0841,0.069632,0.9232,0.006592,0.005408,0.02736,0.09584,0.09872,26.7428,0.114528
+801,34.3256,29.1328,30.2771,0.06896,0.917216,0.00688,0.01456,0.033856,0.09504,0.324928,28.7009,0.114784
+802,31.5446,31.7012,28.1831,0.069664,1.06349,0.006144,0.005856,0.026912,0.096256,0.10448,26.6916,0.118784
+803,34.4526,29.0254,27.9655,0.069408,0.850368,0.0064,0.006144,0.028256,0.096128,0.096832,26.6977,0.11424
+804,34.5946,28.9062,29.2109,0.071968,0.873696,0.006944,0.004096,0.028672,0.095296,0.096992,27.9206,0.11264
+805,33.0216,30.2832,28.0576,0.071584,0.881888,0.00704,0.005504,0.027264,0.096288,0.097536,26.7555,0.115072
+806,34.344,29.1172,27.9918,0.069632,0.864256,0.007552,0.004736,0.028416,0.094464,0.0976,26.7107,0.114432
+807,34.3601,29.1035,29.2886,0.06976,0.919584,0.007232,0.005024,0.028704,0.095424,0.097056,27.9511,0.114688
+808,33.0195,30.2852,28.0356,0.068064,0.906848,0.00656,0.005408,0.02736,0.095328,0.104992,26.7084,0.11264
+809,34.3624,29.1016,28.8481,0.067264,0.863744,0.006976,0.0056,0.028256,0.095168,0.113984,27.5524,0.114688
+810,33.4335,29.9102,29.2578,0.069504,0.866496,0.006144,0.00576,0.028096,0.094816,0.10032,27.9731,0.113536
+811,33.011,30.293,28.0105,0.069184,0.852096,0.006496,0.006048,0.028,0.094976,0.096256,26.7428,0.114688
+812,34.499,28.9863,28.0044,0.069408,0.852192,0.007808,0.00448,0.028672,0.096224,0.09632,26.7346,0.114688
+813,33.968,29.4395,29.2701,0.069632,0.868352,0.006144,0.006144,0.028448,0.095488,0.097248,27.9853,0.113408
+814,32.6781,30.6016,28.0471,0.083552,0.967392,0.006368,0.005504,0.027264,0.096256,0.097856,26.6487,0.114144
+815,34.5037,28.9824,27.9743,0.068224,0.861824,0.006528,0.006016,0.028032,0.094912,0.096288,26.6988,0.113664
+816,34.0743,29.3477,29.2928,0.06928,0.93616,0.017888,0.004864,0.028256,0.094784,0.098112,27.9288,0.114688
+817,33.2403,30.084,28.0836,0.070656,0.971296,0.006624,0.005984,0.028064,0.094976,0.09776,26.6942,0.114048
+818,33.9635,29.4434,28.1901,0.069632,1.00147,0.007712,0.004576,0.04096,0.096256,0.098304,26.7571,0.114112
+819,34.4735,29.0078,29.215,0.069888,0.876544,0.007712,0.004576,0.028672,0.094368,0.09728,27.9233,0.112672
+820,33.011,30.293,28.2915,0.069408,0.853856,0.006944,0.004096,0.028672,0.096128,0.097728,27.02,0.114688
+821,34.0493,29.3691,28.6967,0.06944,1.21043,0.043264,0.006144,0.03072,0.096256,0.458144,26.6687,0.113568
+822,33.7464,29.6328,29.2111,0.069696,0.860576,0.007264,0.004864,0.027968,0.095072,0.098304,27.9347,0.11264
+823,32.9472,30.3516,27.9001,0.069312,0.841408,0.006944,0.005632,0.02832,0.095168,0.102304,26.6377,0.113312
+824,34.2338,29.2109,28.0273,0.070016,0.919136,0.00656,0.005344,0.027424,0.095584,0.098976,26.6895,0.114688
+825,34.374,29.0918,29.1756,0.069632,0.851968,0.007808,0.005536,0.027648,0.101472,0.103296,27.8938,0.114464
+826,33.0856,30.2246,27.9981,0.069472,0.899488,0.008032,0.0056,0.02736,0.095264,0.096672,26.6818,0.114464
+827,34.5176,28.9707,28.0247,0.06928,0.862016,0.007008,0.005504,0.027296,0.095712,0.098016,26.7457,0.114208
+828,34.4526,29.0254,29.1976,0.07376,0.856032,0.00736,0.004896,0.028096,0.096032,0.097088,27.9204,0.113984
+829,32.3334,30.9277,29.475,0.069856,1.10182,0.008,0.005504,0.027456,0.103872,0.096864,27.9482,0.11344
+830,32.8289,30.4609,28.1175,0.068128,1.00746,0.006272,0.005632,0.029216,0.095328,0.0992,26.6936,0.11264
+831,33.5848,29.7754,29.4275,0.069632,1.11411,0.008032,0.016448,0.03008,0.09632,0.096928,27.8815,0.114432
+832,32.7743,30.5117,28.0724,0.069536,0.944256,0.006624,0.005376,0.027392,0.096256,0.097856,26.7105,0.114624
+833,33.7442,29.6348,29.2903,0.068352,0.92688,0.007008,0.005568,0.027328,0.095744,0.096544,27.9492,0.11376
+834,33.5452,29.8105,29.1556,0.069696,0.853152,0.006848,0.004448,0.028608,0.10416,0.096576,27.8794,0.11264
+835,32.7722,30.5137,28.1308,0.069632,1.01539,0.00656,0.005824,0.028096,0.095136,0.097824,26.6979,0.114464
+836,34.1766,29.2598,28.0732,0.069824,0.988608,0.006752,0.005216,0.041312,0.094784,0.097376,26.6536,0.115744
+837,34.2521,29.1953,29.2884,0.069632,0.948256,0.00768,0.004576,0.028672,0.09536,0.097184,27.9224,0.114656
+838,33.1113,30.2012,27.9306,0.069472,0.854176,0.007776,0.004512,0.028448,0.094432,0.098304,26.6588,0.114688
+839,34.5363,28.9551,28.0033,0.068608,0.915072,0.006528,0.005984,0.028,0.09504,0.097504,26.6719,0.114688
+840,33.3008,30.0293,29.23,0.076704,0.933088,0.006944,0.004096,0.028672,0.09424,0.108512,27.8651,0.11264
+841,30.8806,32.3828,31.4902,0.069824,3.12502,0.016224,0.00592,0.0272,0.096288,0.097344,27.9393,0.113088
+842,33.0088,30.2949,28.0082,0.06784,0.907072,0.007712,0.004576,0.028192,0.094496,0.10592,26.6796,0.112736
+843,32.8184,30.4707,29.4418,0.069632,1.14461,0.006368,0.006144,0.028256,0.094656,0.098304,27.8794,0.114464
+844,33.3181,30.0137,28.1319,0.069632,1.04714,0.006432,0.005664,0.027104,0.095552,0.09696,26.6691,0.1144
+845,34.9488,28.6133,29.2784,0.069248,0.966688,0.006656,0.00592,0.028064,0.09504,0.096256,27.8979,0.11264
+846,32.4359,30.8301,29.2842,0.068256,0.980896,0.01632,0.005344,0.027488,0.096256,0.098304,27.8774,0.11392
+847,33.0259,30.2793,28.1139,0.068608,0.9728,0.006144,0.006144,0.039936,0.095232,0.11168,26.6987,0.114688
+848,34.5502,28.9434,27.9205,0.068896,0.865088,0.007168,0.004928,0.02816,0.094912,0.096256,26.6404,0.11472
+849,34.0335,29.3828,29.3033,0.06816,0.966496,0.006272,0.00608,0.027968,0.103168,0.11264,27.8997,0.112832
+850,33.1049,30.207,27.9774,0.069632,0.918816,0.00688,0.004256,0.028512,0.095392,0.09712,26.6404,0.116384
+851,34.6602,28.8516,27.9688,0.06928,0.864768,0.007456,0.004832,0.028608,0.108608,0.097664,26.6733,0.114272
+852,34.3901,29.0781,29.2331,0.069664,0.88368,0.00704,0.004224,0.028544,0.095552,0.097088,27.9327,0.114656
+853,33.1284,30.1855,27.994,0.067968,0.888832,0.007712,0.004576,0.028672,0.095616,0.119392,26.6684,0.112896
+854,34.5946,28.9062,28.752,0.0688,0.850912,0.007616,0.004672,0.02848,0.09568,0.097024,27.4842,0.114656
+855,33.4816,29.8672,29.2905,0.069632,0.93792,0.006208,0.006144,0.028192,0.09472,0.09936,27.9336,0.114688
+856,31.9043,31.3438,28.1124,0.074048,0.988288,0.0144,0.004896,0.028096,0.094272,0.096768,26.6977,0.11392
+857,34.0177,29.3965,28.259,0.068416,1.12435,0.007968,0.005504,0.037536,0.096224,0.101856,26.7037,0.113504
+858,33.8423,29.5488,29.2188,0.069664,0.925344,0.006464,0.005472,0.036896,0.094848,0.100352,27.8667,0.11312
+859,34.0561,29.3633,28.0172,0.068128,0.90112,0.007968,0.005504,0.027488,0.096256,0.098304,26.6989,0.113472
+860,34.2406,29.2051,28.091,0.068224,0.964,0.006496,0.00432,0.029824,0.095104,0.110592,26.6994,0.112992
+861,34.1038,29.3223,29.2552,0.069056,0.917824,0.006784,0.005792,0.028192,0.10304,0.10016,27.9085,0.115904
+862,32.8732,30.4199,28.0591,0.0696,0.97488,0.007232,0.004832,0.028096,0.095008,0.097504,26.6678,0.114112
+863,34.4688,29.0117,28.043,0.069216,0.868768,0.006336,0.006144,0.028672,0.104448,0.098304,26.7469,0.114272
+864,34.0879,29.3359,29.3357,0.06928,1.06934,0.006304,0.005568,0.029248,0.09424,0.098112,27.8509,0.11264
+865,32.9557,30.3438,28.1006,0.069632,0.954368,0.0072,0.005088,0.042016,0.095232,0.098272,26.7141,0.114688
+866,34.0879,29.3359,29.278,0.069664,0.925696,0.007168,0.004928,0.028064,0.094976,0.098336,27.9347,0.114432
+867,32.9409,30.3574,29.2475,0.069632,0.869632,0.006912,0.005664,0.027136,0.095552,0.096928,27.9634,0.11264
+868,32.9854,30.3164,28.0003,0.069664,0.902752,0.006528,0.014336,0.030752,0.09552,0.09696,26.6687,0.11504
+869,33.7508,29.6289,29.3041,0.069408,0.992672,0.006976,0.005632,0.037056,0.09616,0.097696,27.8845,0.113952
+870,33.1864,30.1328,29.2012,0.06976,0.877184,0.007488,0.0048,0.028512,0.094368,0.097856,27.9085,0.112672
+871,33.1306,30.1836,28.0204,0.069088,0.88352,0.007264,0.005024,0.028416,0.096288,0.097568,26.7171,0.116128
+872,34.029,29.3867,28.0863,0.069152,0.946656,0.007232,0.004896,0.027968,0.095072,0.0976,26.7243,0.11344
+873,34.1652,29.2695,29.2083,0.069632,0.863936,0.006464,0.006048,0.02784,0.095168,0.098272,27.9265,0.114368
+874,33.1263,30.1875,27.9388,0.069664,0.855776,0.006432,0.00544,0.027328,0.094208,0.10448,26.6629,0.11264
+875,34.2796,29.1719,28.1473,0.071584,0.988928,0.006944,0.0056,0.02832,0.095104,0.097664,26.7385,0.114656
+876,34.4387,29.0371,29.1246,0.069536,0.858496,0.006592,0.004096,0.028672,0.095776,0.096736,27.8508,0.11392
+877,32.9324,30.3652,28.0211,0.068992,0.924608,0.006176,0.014336,0.032288,0.094688,0.097952,26.6674,0.114688
+878,33.7219,29.6543,29.0487,0.069344,1.1424,0.006816,0.004192,0.032416,0.101952,0.09856,27.4782,0.114848
+879,33.2424,30.082,29.2531,0.069504,0.940608,0.006144,0.006144,0.028256,0.094656,0.098112,27.896,0.113696
+880,33.0046,30.2988,28.0166,0.069632,0.918752,0.006944,0.004096,0.028672,0.096096,0.096416,26.6813,0.114688
+881,33.1735,30.1445,29.1983,0.069632,0.93184,0.007648,0.00464,0.028672,0.094368,0.098144,27.8505,0.112928
+882,33.8244,29.5645,29.2239,0.069632,0.96256,0.007488,0.0048,0.028448,0.094464,0.098272,27.8446,0.113664
+883,32.3437,30.918,28.1907,0.06944,1.12864,0.006144,0.006144,0.028544,0.10048,0.096256,26.6404,0.114688
+884,34.8703,28.6777,27.976,0.069408,0.906784,0.007168,0.004096,0.028672,0.09584,0.09664,26.6544,0.11296
+885,34.1698,29.2656,29.3511,0.068992,0.967328,0.007488,0.004768,0.028672,0.096256,0.098336,27.9634,0.115936
+886,32.8437,30.4473,28.051,0.069152,0.991712,0.007584,0.004704,0.028224,0.094656,0.097696,26.643,0.11424
+887,34.3601,29.1035,27.9595,0.069792,0.892128,0.006944,0.0056,0.027232,0.096192,0.097632,26.6492,0.114688
+888,34.2498,29.1973,29.2659,0.069664,0.987104,0.006144,0.005824,0.027072,0.09408,0.103776,27.8596,0.11264
+889,32.7219,30.5605,28.471,0.070016,0.978688,0.006496,0.006048,0.027872,0.095264,0.098112,27.0746,0.113888
+890,33.6798,29.6914,28.4415,0.068512,1.35571,0.006208,0.005696,0.030944,0.09456,0.098176,26.6681,0.1136
+891,34.3371,29.123,29.2757,0.069216,0.898752,0.007072,0.005504,0.027296,0.095776,0.096704,27.9613,0.11408
+892,32.8774,30.416,28.0765,0.068064,0.882016,0.006816,0.004128,0.02864,0.096256,0.098272,26.7608,0.13152
+893,33.9906,29.4199,29.1795,0.06976,0.872448,0.007296,0.004992,0.029952,0.095008,0.09808,27.8878,0.114176
+894,32.9133,30.3828,29.3455,0.069664,0.996576,0.006912,0.004224,0.030272,0.094528,0.097408,27.9332,0.112736
+895,32.1325,31.1211,28.3368,0.068352,1.23686,0.014464,0.006016,0.028064,0.094944,0.106496,26.667,0.114624
+896,34.0811,29.3418,28.2808,0.069504,1.19686,0.008064,0.004256,0.02864,0.095616,0.096896,26.6665,0.114464
+897,34.5479,28.9453,29.3192,0.06928,0.9928,0.006976,0.005568,0.038624,0.095072,0.098272,27.8993,0.113344
+898,32.8838,30.4102,28.1074,0.068192,0.96768,0.007136,0.004128,0.028672,0.09424,0.114176,26.7101,0.113088
+899,33.9838,29.4258,28.0437,0.069856,0.9032,0.006176,0.006144,0.042176,0.102624,0.107104,26.691,0.11536
+900,34.1174,29.3105,29.2618,0.069376,0.940192,0.006368,0.005632,0.0272,0.095168,0.096992,27.9074,0.11344
+901,32.724,30.5586,28.0625,0.069984,0.938432,0.007936,0.005504,0.02752,0.095872,0.110944,26.6933,0.113024
+902,33.713,29.6621,29.2023,0.06832,1.23021,0.01696,0.004128,0.038912,0.095392,0.09712,27.5373,0.113984
+903,32.943,30.3555,29.2896,0.068608,0.94416,0.007232,0.005056,0.028512,0.094368,0.098272,27.9304,0.112992
+904,32.9918,30.3105,28.0113,0.0696,0.872832,0.006624,0.005568,0.027328,0.096128,0.096256,26.7182,0.118784
+905,34.1789,29.2578,29.1904,0.068384,0.878464,0.007488,0.0048,0.028672,0.096256,0.098336,27.893,0.115008
+906,33.0003,30.3027,29.1901,0.069664,0.878272,0.006432,0.005568,0.0272,0.095296,0.097088,27.898,0.11264
+907,33.1006,30.2109,27.9736,0.069632,0.83968,0.006144,0.006144,0.028192,0.094688,0.097472,26.717,0.114688
+908,31.9321,31.3164,29.4216,0.068864,2.31277,0.006336,0.0056,0.027168,0.095744,0.09792,26.6924,0.114784
+909,33.9635,29.4434,29.3376,0.06928,1.0223,0.007904,0.013952,0.041632,0.096096,0.097536,27.8763,0.112672
+910,31.5038,31.7422,28.2473,0.069568,1.1439,0.00704,0.0056,0.027264,0.096256,0.102208,26.6815,0.113888
+911,36.1429,27.668,27.9613,0.068992,0.858752,0.007264,0.01936,0.028672,0.096288,0.098272,26.671,0.112704
+912,34.0584,29.3613,29.2435,0.070688,0.936096,0.006976,0.00416,0.030368,0.094496,0.096384,27.8915,0.1128
+913,33.0985,30.2129,29.2114,0.06848,0.889888,0.006976,0.005696,0.02816,0.095168,0.097664,27.9067,0.11264
+914,33.0878,30.2227,27.922,0.069632,0.83968,0.006144,0.005888,0.02816,0.10464,0.098848,26.6548,0.11424
+915,34.3256,29.1328,29.329,0.069632,0.935712,0.01456,0.006016,0.028064,0.096384,0.096864,27.9686,0.113152
+916,32.9091,30.3867,27.9835,0.069632,0.867328,0.007072,0.004192,0.028704,0.09808,0.097856,26.6892,0.121408
+917,34.1675,29.2676,29.2499,0.069824,0.888832,0.007296,0.015232,0.028032,0.094848,0.107744,27.9266,0.111488
+918,32.9303,30.3672,29.143,0.069664,0.853984,0.007488,0.0048,0.028128,0.094752,0.098208,27.8725,0.113504
+919,32.8121,30.4766,28.0577,0.069376,0.93008,0.007296,0.004992,0.028576,0.09568,0.096896,26.7114,0.113408
+920,34.1038,29.3223,28.116,0.068608,1.00355,0.00752,0.004768,0.028064,0.094816,0.096224,26.6977,0.11472
+921,34.397,29.0723,29.1826,0.068192,0.866304,0.007616,0.004672,0.028672,0.096096,0.099648,27.8984,0.11296
+922,33.0131,30.291,27.9612,0.069632,0.87968,0.007104,0.004096,0.028672,0.094208,0.098208,26.6651,0.114496
+923,34.4874,28.9961,28.0388,0.069632,0.888832,0.00752,0.004768,0.028672,0.096256,0.098048,26.7305,0.114624
+924,34.4179,29.0547,29.1825,0.068224,0.87648,0.007712,0.004544,0.028352,0.09568,0.097184,27.8917,0.11264
+925,33.1757,30.1426,29.0833,0.069056,0.854688,0.007392,0.004896,0.028672,0.095808,0.09792,27.8105,0.1144
+926,33.0942,30.2168,27.9699,0.069312,0.907424,0.006912,0.004224,0.028544,0.095968,0.096544,26.6465,0.114432
+927,34.1698,29.2656,29.1851,0.070944,0.884896,0.00672,0.005856,0.028,0.095168,0.097984,27.8813,0.114176
+928,32.9239,30.373,28.0821,0.073152,0.952704,0.006336,0.0056,0.029216,0.095328,0.096768,26.7084,0.114592
+929,34.6391,28.8691,29.2068,0.075872,0.851616,0.006624,0.005952,0.028064,0.096192,0.097152,27.9306,0.114688
+930,33.1284,30.1855,29.1553,0.069664,0.866272,0.007808,0.00448,0.028512,0.094368,0.09808,27.8729,0.113248
+931,33.1456,30.1699,27.9247,0.069952,0.866176,0.006272,0.006144,0.028032,0.094848,0.096256,26.6424,0.114592
+932,34.5153,28.9727,27.9122,0.069504,0.865696,0.00688,0.005184,0.027584,0.100352,0.097952,26.626,0.113088
+933,33.6909,29.6816,29.202,0.071072,0.851808,0.006912,0.0056,0.041504,0.096224,0.096288,27.9183,0.114304
+934,32.9876,30.3145,28.0125,0.069664,0.855552,0.006624,0.005728,0.02704,0.096,0.097824,26.7394,0.114656
+935,34.5409,28.9512,27.959,0.070016,0.847552,0.006592,0.005664,0.027104,0.106048,0.098368,26.6817,0.115936
+936,34.344,29.1172,29.2542,0.068128,0.87856,0.007808,0.00448,0.028672,0.098304,0.096256,27.9573,0.114688
+937,32.2195,31.0371,29.2225,0.069376,0.953984,0.007008,0.005504,0.03104,0.094592,0.106144,27.8405,0.114368
+938,32.5617,30.7109,28.1508,0.076768,1.03379,0.006592,0.005312,0.027456,0.094208,0.096256,26.6969,0.113504
+939,33.0749,30.2344,29.4236,0.069632,1.09507,0.006752,0.005792,0.031104,0.096256,0.104384,27.8999,0.114688
+940,33.9253,29.4766,28.0219,0.069408,1.00115,0.006752,0.005152,0.027616,0.095456,0.101152,26.6012,0.113984
+941,33.9208,29.4805,29.4259,0.068672,1.01568,0.00624,0.006048,0.028512,0.09568,0.097024,27.9957,0.112352
+942,33.5188,29.834,29.1716,0.069344,0.865824,0.006912,0.004096,0.028672,0.095936,0.096576,27.889,0.115264
+943,33.0088,30.2949,28.0048,0.069536,0.885312,0.007296,0.004992,0.028576,0.094304,0.09808,26.7037,0.112992
+944,34.5153,28.9727,27.9388,0.069632,0.882688,0.007648,0.00464,0.02848,0.094432,0.098272,26.6383,0.114688
+945,34.5246,28.9648,29.2353,0.069664,0.884512,0.006336,0.006144,0.028096,0.094784,0.096256,27.9368,0.112736
+946,32.6343,30.6426,28.2577,0.069472,1.15914,0.006336,0.005504,0.028288,0.096512,0.097024,26.681,0.114368
+947,34.4967,28.9883,27.9622,0.068448,0.874208,0.006432,0.00608,0.028192,0.094784,0.098272,26.6711,0.114688
+948,34.1584,29.2754,29.234,0.068352,0.938016,0.007712,0.004544,0.028192,0.094688,0.097312,27.8825,0.112672
+949,33.0387,30.2676,29.3014,0.068192,0.966656,0.00784,0.005504,0.027616,0.094208,0.09792,27.9207,0.112768
+950,32.8352,30.4551,27.998,0.070816,0.893792,0.00768,0.004608,0.028288,0.094592,0.097984,26.6855,0.114784
+951,33.6179,29.7461,29.4569,0.069184,1.1663,0.007808,0.005504,0.027648,0.096256,0.097696,27.8734,0.11312
+952,33.06,30.248,28.0555,0.06832,0.966624,0.006176,0.005824,0.028096,0.105184,0.096416,26.665,0.113856
+953,34.7095,28.8105,29.2352,0.069664,0.90112,0.007776,0.005504,0.027648,0.096256,0.098304,27.9142,0.114688
+954,32.768,30.5176,29.1455,0.069088,0.889792,0.008,0.004288,0.029696,0.095232,0.097984,27.838,0.113376
+955,33.0835,30.2266,27.9777,0.069664,0.862176,0.007904,0.005504,0.027552,0.095936,0.096576,26.6988,0.113568
+956,34.4665,29.0137,27.9716,0.069184,0.870848,0.006144,0.005728,0.028672,0.09872,0.097472,26.6822,0.11264
+957,34.3924,29.0762,29.2296,0.068064,0.88064,0.007488,0.0048,0.034368,0.094688,0.112256,27.9142,0.113024
+958,32.8964,30.3984,27.9302,0.069632,0.876064,0.006624,0.00544,0.027328,0.096064,0.097856,26.6369,0.11424
+959,34.5642,28.9316,27.9463,0.069664,0.843264,0.006624,0.005984,0.028,0.09504,0.101408,26.6816,0.114688
+960,33.9613,29.4453,29.3374,0.069632,1.0359,0.006528,0.005184,0.027584,0.108544,0.098304,27.869,0.116736
+961,32.7722,30.5137,29.2024,0.069504,0.897152,0.007744,0.004544,0.028672,0.095456,0.098272,27.8864,0.114688
+962,32.9282,30.3691,28.0767,0.080576,0.98304,0.007584,0.004704,0.028096,0.094784,0.096256,26.6688,0.112928
+963,34.0312,29.3848,29.26,0.067968,0.927008,0.016224,0.005888,0.030752,0.094912,0.097728,27.8966,0.12288
+964,33.1349,30.1797,28.0169,0.069696,0.888576,0.006752,0.005152,0.027616,0.096256,0.098304,26.71,0.114528
+965,34.0675,29.3535,28.0321,0.069632,0.940032,0.007392,0.004896,0.038912,0.095936,0.106848,26.6545,0.113984
+966,34.4341,29.041,29.1865,0.069408,0.883424,0.007552,0.004768,0.02816,0.094656,0.096288,27.8896,0.112704
+967,32.9112,30.3848,27.9364,0.069408,0.888896,0.006304,0.006144,0.028192,0.09648,0.097632,26.6302,0.113184
+968,34.5993,28.9023,27.9206,0.069856,0.851968,0.007328,0.004864,0.028096,0.09424,0.096928,26.6524,0.114912
+969,34.22,29.2227,29.2579,0.068256,0.88064,0.008064,0.005504,0.027392,0.095968,0.09664,27.9608,0.114592
+970,32.3212,30.9395,29.3861,0.069504,1.02208,0.007584,0.004704,0.045056,0.105952,0.111008,27.9062,0.114016
+971,32.8205,30.4688,28.0166,0.069632,0.96256,0.006144,0.006144,0.034816,0.096256,0.097824,26.6299,0.113408
+972,33.9433,29.4609,29.4989,0.069632,1.136,0.018976,0.005312,0.038912,0.095136,0.106144,27.9146,0.11424
+973,32.7198,30.5625,28.0153,0.06832,0.974848,0.007712,0.004576,0.028672,0.094208,0.097376,26.6267,0.11296
+974,34.0358,29.3809,28.3873,0.069632,0.980992,0.006144,0.005856,0.028064,0.095104,0.097664,26.9892,0.11472
+975,33.7954,29.5898,30.1242,0.069824,1.00966,0.008,0.005504,0.027456,0.09552,0.096768,28.6986,0.112864
+976,32.3907,30.873,27.9808,0.068576,0.874432,0.006336,0.005664,0.028128,0.095104,0.096224,26.6932,0.113152
+977,34.4781,29.0039,27.9487,0.069568,0.870464,0.007456,0.004832,0.028672,0.095744,0.098016,26.6609,0.113056
+978,34.5712,28.9258,29.1448,0.069792,0.856032,0.007328,0.004896,0.028032,0.096032,0.096704,27.8717,0.114304
+979,33.0878,30.2227,27.9567,0.068992,0.885376,0.007424,0.004864,0.028704,0.095808,0.096672,26.6544,0.114464
+980,34.5502,28.9434,28.0105,0.06912,0.868608,0.0064,0.005504,0.027264,0.094208,0.097504,26.7272,0.114688
+981,34.4433,29.0332,29.2127,0.069504,0.851616,0.006624,0.005984,0.028,0.09488,0.096416,27.936,0.12368
+982,32.8331,30.457,28.0248,0.069216,0.95888,0.007872,0.004416,0.028672,0.095584,0.096928,26.6496,0.113632
+983,33.4051,29.9355,29.2697,0.069632,0.962432,0.006336,0.00608,0.02816,0.09472,0.098176,27.8898,0.1144
+984,33.6289,29.7363,29.211,0.067936,0.889952,0.007072,0.004096,0.028672,0.094208,0.096256,27.9101,0.11264
+985,31.3226,31.9258,28.0576,0.069632,0.968192,0.006656,0.015808,0.031296,0.095456,0.097056,26.6601,0.113376
+986,36.069,27.7246,27.9733,0.069056,0.901696,0.008192,0.00528,0.027488,0.096256,0.096256,26.6547,0.1144
+987,34.3532,29.1094,29.2468,0.069344,0.9136,0.00624,0.006144,0.028256,0.094656,0.098272,27.9163,0.113952
+988,33.1972,30.123,27.901,0.069568,0.864288,0.006176,0.005792,0.028,0.096352,0.097184,26.6199,0.113728
+989,34.5223,28.9668,28.0004,0.069632,0.878176,0.00672,0.005824,0.026944,0.096064,0.096448,26.7059,0.114688
+990,34.3994,29.0703,29.1899,0.069376,0.882464,0.006624,0.005344,0.027424,0.096096,0.097856,27.8915,0.113216
+991,32.3151,30.9453,29.2741,0.069536,1.01325,0.006752,0.013632,0.029376,0.096256,0.102112,27.8306,0.112672
+992,33.0365,30.2695,27.9142,0.069632,0.897024,0.00768,0.004608,0.028512,0.095776,0.096928,26.5994,0.114688
+993,33.3225,30.0098,29.2882,0.069632,0.96848,0.006368,0.006144,0.027904,0.095008,0.102368,27.899,0.113216
+994,34.1995,29.2402,28.0253,0.069248,1.01264,0.008064,0.004192,0.028704,0.103552,0.09712,26.5871,0.114688
+995,33.0493,30.2578,29.3278,0.068224,1.04566,0.007008,0.005632,0.037152,0.094432,0.100352,27.8548,0.114464
+996,34.3693,29.0957,29.0771,0.069056,0.846624,0.006336,0.005696,0.026912,0.096256,0.096288,27.8159,0.114016
+997,32.789,30.498,28.0896,0.069536,0.9584,0.006304,0.006144,0.028256,0.094624,0.096256,26.7162,0.113888
+998,34.2109,29.2305,27.9331,0.068256,0.958464,0.00752,0.004768,0.028,0.094368,0.096768,26.5605,0.1144
+999,34.2292,29.2148,29.2251,0.079616,0.975104,0.00784,0.005504,0.027616,0.096256,0.098304,27.82,0.114784
+1000,33.011,30.293,28.0207,0.069632,0.937984,0.008032,0.004256,0.028576,0.094336,0.098272,26.6668,0.112832
+1001,34.3832,29.084,28.0064,0.069664,0.8888,0.007968,0.005504,0.027488,0.096256,0.098304,26.6977,0.114688
+1002,34.5526,28.9414,29.0632,0.069664,0.862176,0.007776,0.004512,0.028672,0.09552,0.096992,27.7852,0.11264
+1003,32.9494,30.3496,29.2664,0.068704,1.03005,0.007776,0.004512,0.030304,0.094656,0.09776,27.8198,0.112832
+1004,33.0749,30.2344,28.0556,0.069632,0.96848,0.007808,0.004704,0.028224,0.094688,0.097952,26.6705,0.1136
+1005,34.1698,29.2656,29.313,0.069632,1.01376,0.016384,0.006144,0.02832,0.094592,0.11056,27.861,0.11264
+1006,32.7554,30.5293,28.1007,0.075904,0.99648,0.00704,0.004096,0.028672,0.096256,0.096256,26.6815,0.11456
+1007,34.2063,29.2344,28.0146,0.069664,0.927616,0.00624,0.006144,0.028256,0.094624,0.098304,26.6704,0.113344
+1008,34.4086,29.0625,29.1676,0.069664,0.894944,0.00752,0.004768,0.028064,0.094816,0.09776,27.8566,0.11344
+1009,33.1821,30.1367,27.9678,0.06912,0.867072,0.00752,0.004768,0.028672,0.09536,0.096736,26.6857,0.1128
+1010,34.4595,29.0195,28.0105,0.069376,0.884,0.007072,0.004192,0.02864,0.095648,0.098112,26.7108,0.112672
+1011,34.448,29.0293,29.123,0.069856,0.880864,0.00736,0.004928,0.028672,0.095744,0.096768,27.8256,0.113248
+1012,33.0173,30.2871,27.9806,0.068512,0.90512,0.007264,0.004928,0.02672,0.095456,0.0968,26.6622,0.113568
+1013,34.6766,28.8379,29.1269,0.069696,0.857696,0.00672,0.006144,0.028224,0.094656,0.097504,27.8536,0.11264
+1014,33.1692,30.1484,29.1511,0.069664,0.856032,0.007328,0.00496,0.028096,0.096096,0.097024,27.8773,0.114528
+1015,32.0681,31.1836,27.9789,0.069632,0.878592,0.007648,0.00464,0.028672,0.095424,0.097088,26.6834,0.113824
+1016,31.2595,31.9902,28.3936,0.069664,0.926944,0.006912,0.004256,0.028512,0.096,0.096512,27.0515,0.11328
+1017,33.9635,29.4434,30.238,0.069344,1.03158,0.007136,0.005504,0.027296,0.110592,0.096256,28.7761,0.114144
+1018,31.1625,32.0898,28.1711,0.06864,1.12227,0.014336,0.005312,0.027456,0.09776,0.098624,26.6222,0.114528
+1019,34.618,28.8867,27.9462,0.069632,0.882272,0.00656,0.00608,0.028192,0.094752,0.097472,26.6453,0.115904
+1020,33.8893,29.5078,29.3907,0.069152,1.04291,0.006144,0.005792,0.038816,0.094592,0.097728,27.9221,0.11344
+1021,32.8374,30.4531,28.1396,0.069408,1.04483,0.007872,0.014656,0.03072,0.096256,0.104448,26.6579,0.113472
+1022,34.3233,29.1348,27.9496,0.068128,0.884512,0.0064,0.005664,0.027072,0.096256,0.098304,26.6498,0.113504
+1023,34.5526,28.9414,29.1581,0.070016,0.876768,0.006496,0.006016,0.028064,0.10112,0.096288,27.8599,0.113376
+1024,32.789,30.498,29.3794,0.068448,1.0711,0.01792,0.004608,0.02816,0.094816,0.098208,27.8825,0.113664
+1025,33.1649,30.1523,28.0685,0.068288,0.905216,0.007392,0.004896,0.028512,0.095648,0.099072,26.7466,0.112928
+1026,34.3786,29.0879,29.2188,0.069632,0.864256,0.00752,0.004768,0.02816,0.094912,0.098144,27.9384,0.112992
+1027,33.107,30.2051,27.9468,0.069216,0.869824,0.007104,0.005504,0.027296,0.096288,0.098208,26.6589,0.114528
+1028,34.4503,29.0273,27.9403,0.069632,0.888832,0.007552,0.004736,0.028288,0.09456,0.096288,26.6357,0.114688
+1029,34.3555,29.1074,30.4419,0.069184,0.909696,0.006656,0.005536,0.027232,0.096096,0.096416,29.1158,0.115328
+1030,31.6792,31.5664,27.9143,0.069312,0.897856,0.007392,0.004896,0.028384,0.094304,0.096448,26.6015,0.114272
+1031,34.4572,29.0215,28.0301,0.069216,0.948096,0.00672,0.00592,0.02816,0.094944,0.096352,26.6668,0.113824
+1032,34.3118,29.1445,29.1854,0.069632,0.907264,0.007488,0.0048,0.028256,0.095776,0.097152,27.8626,0.112448
+1033,33.1156,30.1973,27.9626,0.07168,0.890048,0.006976,0.0056,0.028256,0.095168,0.097632,26.653,0.114304
+1034,33.7397,29.6387,28.0843,0.069024,1.0079,0.006496,0.013504,0.031136,0.09584,0.097056,26.6497,0.1136
+1035,34.7944,28.7402,29.2842,0.069632,0.947936,0.006432,0.006112,0.02816,0.094784,0.09792,27.9187,0.114496
+1036,32.7974,30.4902,29.1492,0.0696,0.896096,0.007104,0.004096,0.028672,0.094208,0.096256,27.8405,0.112672
+1037,32.7638,30.5215,28.0255,0.06944,0.983584,0.006496,0.006048,0.028288,0.094688,0.097888,26.6244,0.114688
+1038,34.6813,28.834,29.1136,0.069536,0.872544,0.00736,0.004896,0.028064,0.096096,0.097056,27.8241,0.113888
+1039,32.8605,30.4316,27.8835,0.068928,0.866656,0.006496,0.006112,0.028032,0.09472,0.096096,26.6037,0.1128
+1040,34.1743,29.2617,28.1159,0.068576,1.01933,0.00672,0.014336,0.03184,0.096576,0.09856,26.6565,0.123488
+1041,34.0154,29.3984,29.1737,0.069664,0.884704,0.007584,0.004704,0.028672,0.096256,0.097376,27.8701,0.114592
+1042,33.0493,30.2578,27.9143,0.0696,0.876032,0.006752,0.005152,0.027616,0.095872,0.09664,26.622,0.114688
+1043,34.4456,29.0312,27.951,0.069664,0.884704,0.007968,0.005536,0.027456,0.095872,0.096384,26.6499,0.113536
+1044,34.6531,28.8574,29.1329,0.068416,0.8784,0.006304,0.0056,0.028416,0.095008,0.098176,27.8382,0.114432
+1045,33.1735,30.1445,27.9066,0.06976,0.867072,0.0072,0.005088,0.028672,0.094208,0.097504,26.6221,0.114976
+1046,34.5782,28.9199,27.9273,0.069728,0.866176,0.006976,0.004128,0.02864,0.095744,0.096768,26.6445,0.114656
+1047,34.3601,29.1035,29.1579,0.069824,0.882752,0.0064,0.006144,0.02816,0.09472,0.096256,27.861,0.11264
+1048,32.9176,30.3789,28.2355,0.069632,0.922912,0.00688,0.004096,0.028672,0.096128,0.097632,26.657,0.352576
+1049,33.9298,29.4727,28.8032,0.068192,0.861248,0.007104,0.005504,0.02736,0.09616,0.097952,27.5255,0.11424
+1050,33.1757,30.1426,29.1965,0.06944,0.862592,0.007264,0.00496,0.028224,0.09472,0.0976,27.919,0.11264
+1051,32.9748,30.3262,27.9255,0.068544,0.884224,0.006656,0.005888,0.028096,0.095104,0.09824,26.6257,0.113024
+1052,34.3855,29.082,29.202,0.07072,0.91232,0.007552,0.004736,0.028224,0.094656,0.096256,27.8733,0.114208
+1053,33.1606,30.1562,29.164,0.06928,0.885632,0.007296,0.00496,0.028672,0.095424,0.097056,27.8631,0.11264
+1054,32.2927,30.9668,28.0187,0.0696,0.931872,0.007392,0.004864,0.028192,0.094368,0.096608,26.6729,0.112864
+1055,34.7755,28.7559,28.0291,0.069216,0.983616,0.00784,0.005504,0.027616,0.09616,0.0976,26.6261,0.115456
+1056,34.2429,29.2031,29.2957,0.069184,0.995616,0.0064,0.005536,0.027232,0.095488,0.096672,27.8859,0.113664
+1057,32.9621,30.3379,28.0408,0.069664,0.961504,0.00704,0.005504,0.027392,0.095296,0.09664,26.6632,0.11456
+1058,34.3647,29.0996,28.0381,0.068544,0.938016,0.007648,0.00464,0.028192,0.094432,0.096512,26.6873,0.1128
+1059,34.0267,29.3887,29.2391,0.069632,0.944128,0.007552,0.004768,0.02864,0.095968,0.096544,27.8774,0.114528
+1060,32.7031,30.5781,28.029,0.069568,0.931936,0.007584,0.004672,0.028576,0.094336,0.098048,26.6811,0.113152
+1061,34.0019,29.4102,29.2403,0.06976,0.989056,0.007904,0.005504,0.028608,0.095232,0.096224,27.8344,0.113664
+1062,33.1434,30.1719,29.1978,0.069664,0.902848,0.006432,0.005472,0.027296,0.09616,0.096384,27.8794,0.114112
+1063,33.0536,30.2539,28.0212,0.069216,0.906176,0.007168,0.005088,0.028704,0.095968,0.097856,26.6976,0.113504
+1064,34.4897,28.9941,28.9801,0.06848,0.858048,0.006176,0.005728,0.028096,0.095232,0.097408,27.7062,0.114688
+1065,33.0856,30.2246,29.1874,0.06912,0.872288,0.007072,0.005504,0.027296,0.095936,0.096576,27.8979,0.115776
+1066,32.5121,30.7578,27.9285,0.06944,0.850752,0.007488,0.0048,0.028064,0.094944,0.098176,26.6606,0.114272
+1067,34.8798,28.6699,28.031,0.069632,0.888064,0.006912,0.0056,0.027168,0.096256,0.097696,26.7261,0.113536
+1068,34.5993,28.9023,29.148,0.068448,0.886784,0.007552,0.004736,0.028288,0.094464,0.096384,27.8487,0.112608
+1069,32.6614,30.6172,27.9719,0.073504,0.94816,0.006784,0.00576,0.02816,0.103328,0.097792,26.5876,0.120832
+1070,34.8513,28.6934,27.9449,0.069632,0.864288,0.007392,0.004864,0.028,0.09488,0.098208,26.663,0.114592
+1071,34.4804,29.002,29.1797,0.069152,0.875392,0.007776,0.004608,0.028576,0.096256,0.097568,27.8863,0.114112
+1072,33.0621,30.2461,29.2004,0.069632,0.88816,0.006816,0.00416,0.028512,0.094304,0.097952,27.8982,0.112672
+1073,32.7157,30.5664,28.188,0.069632,1.10182,0.008,0.005504,0.027456,0.095872,0.096608,26.667,0.116096
+1074,34.1652,29.2695,29.2321,0.068608,0.984864,0.006304,0.005664,0.027104,0.095648,0.096864,27.8339,0.113152
+1075,33.0003,30.3027,27.9696,0.0696,0.882528,0.006816,0.005728,0.028192,0.095104,0.096288,26.671,0.114304
+1076,34.2109,29.2305,29.2277,0.068256,0.921632,0.007712,0.004544,0.029888,0.09504,0.097952,27.8895,0.113216
+1077,33.0323,30.2734,29.2,0.0696,0.880672,0.007264,0.005024,0.028288,0.095776,0.097152,27.9019,0.114304
+1078,33.0451,30.2617,27.9702,0.070304,0.876544,0.00736,0.004864,0.028032,0.094912,0.097824,26.6777,0.112672
+1079,34.5759,28.9219,27.9148,0.068128,0.854016,0.00768,0.004608,0.028672,0.094208,0.096256,26.6483,0.11296
+1080,34.5759,28.9219,29.1641,0.068192,0.86016,0.006144,0.005856,0.028192,0.096096,0.098464,27.8863,0.114624
+1081,33.1306,30.1836,27.9552,0.069632,0.876544,0.007488,0.0048,0.028672,0.096192,0.09632,26.6623,0.113248
+1082,33.2943,30.0352,28.1725,0.069152,1.0472,0.007328,0.0152,0.03072,0.104448,0.106496,26.6787,0.113248
+1083,34.0697,29.3516,29.3823,0.069664,1.04166,0.00688,0.005664,0.027264,0.095872,0.096576,27.9244,0.114336
+1084,33.6665,29.7031,29.0901,0.07024,0.849056,0.00704,0.004128,0.02864,0.096256,0.096288,27.8241,0.114336
+1085,32.9854,30.3164,27.9472,0.069664,0.877536,0.00704,0.005536,0.02736,0.096256,0.097664,26.6529,0.113184
+1086,33.9838,29.4258,29.234,0.068448,0.918784,0.006912,0.004096,0.028672,0.094208,0.097728,27.9025,0.11264
+1087,32.5783,30.6953,28.184,0.069664,1.11616,0.007424,0.019104,0.028,0.105184,0.097536,26.6248,0.116128
+1088,34.4364,29.0391,28.3647,0.069408,0.893152,0.017856,0.004864,0.028064,0.094816,0.098112,27.044,0.114432
+1089,33.521,29.832,29.4462,0.071264,1.19651,0.007904,0.004384,0.028576,0.095552,0.096128,27.8332,0.11264
+1090,33.2424,30.082,27.9137,0.067712,0.920928,0.006784,0.00512,0.027648,0.096,0.098112,26.5786,0.112832
+1091,34.4132,29.0586,28.0951,0.070304,0.99536,0.007456,0.0048,0.028672,0.095776,0.096768,26.6812,0.114752
+1092,34.3394,29.1211,29.225,0.069632,0.89088,0.007776,0.004512,0.028608,0.095456,0.09712,27.9183,0.112672
+1093,32.8838,30.4102,27.904,0.069408,0.862432,0.00736,0.004928,0.028672,0.09424,0.09808,26.6253,0.113568
+1094,33.4204,29.9219,28.0879,0.06864,1.04051,0.007008,0.014336,0.028672,0.096,0.098144,26.6162,0.1184
+1095,34.1424,29.2891,29.2454,0.069152,0.91536,0.00672,0.005984,0.028032,0.095008,0.097728,27.9145,0.11296
+1096,32.1689,31.0859,29.2965,0.06976,1.03898,0.008,0.01424,0.03104,0.11008,0.109024,27.8029,0.112416
+1097,33.1006,30.2109,28.1006,0.069632,0.950272,0.007584,0.014944,0.033856,0.103168,0.09648,26.7079,0.116736
+1098,32.7366,30.5469,29.6694,0.069216,1.28246,0.016384,0.00528,0.027488,0.110336,0.110304,27.9345,0.11344
+1099,33.5035,29.8477,28.0554,0.069088,0.979904,0.007424,0.004896,0.028512,0.095552,0.097024,26.6589,0.114144
+1100,34.2063,29.2344,28.025,0.068352,0.945728,0.006592,0.005408,0.02736,0.096288,0.098272,26.6642,0.1128
+1101,34.5666,28.9297,30.4087,0.069632,0.903168,0.0072,0.005088,0.02848,0.095968,0.096736,29.0892,0.113184
+1102,31.7303,31.5156,27.9532,0.069664,0.915424,0.007904,0.004384,0.028608,0.094272,0.09776,26.6204,0.114688
+1103,34.2292,29.2148,27.9554,0.069184,0.916128,0.007264,0.005024,0.028672,0.096256,0.097664,26.6226,0.11264
+1104,34.2475,29.1992,29.2662,0.06976,1.0057,0.006144,0.005824,0.027968,0.093216,0.098272,27.8467,0.112704
+1105,32.8416,30.4492,28.7929,0.069632,0.933888,0.007648,0.00464,0.028704,0.095936,0.096544,27.052,0.50384
+1106,33.0024,30.3008,27.9552,0.068992,0.912,0.007264,0.004864,0.027968,0.094784,0.096544,26.6299,0.112896
+1107,34.9107,28.6445,29.319,0.069632,1.01366,0.00624,0.006144,0.028032,0.096064,0.097088,27.8875,0.114656
+1108,32.8163,30.4727,28.1577,0.069664,1.03626,0.007584,0.004704,0.02848,0.095424,0.09696,26.7042,0.114432
+1109,34.0788,29.3438,29.2838,0.069664,0.974816,0.006144,0.006144,0.028672,0.095968,0.096416,27.8929,0.113088
+1110,33.1092,30.2031,29.1052,0.069632,0.880384,0.0064,0.005568,0.0272,0.096256,0.098304,27.8057,0.115808
+1111,32.3437,30.918,28.0655,0.069632,0.991232,0.007456,0.004832,0.02864,0.09424,0.097952,26.6571,0.114432
+1112,34.9822,28.5859,28.0179,0.069632,0.987136,0.006304,0.00576,0.028064,0.096192,0.097184,26.6134,0.114272
+1113,34.2017,29.2383,29.2741,0.07072,0.988128,0.007488,0.004768,0.02864,0.095296,0.097056,27.8694,0.112608
+1114,33.1606,30.1562,27.9035,0.069312,0.858176,0.00688,0.004256,0.028512,0.09616,0.096352,26.6282,0.11568
+1115,34.4225,29.0508,27.9471,0.069568,0.900704,0.00672,0.005888,0.028096,0.09504,0.097696,26.6287,0.114688
+1116,34.3855,29.082,29.2291,0.069632,0.997376,0.007168,0.004864,0.028032,0.095104,0.098304,27.8154,0.113216
+1117,32.7743,30.5117,29.1402,0.069632,0.907008,0.0064,0.006144,0.036864,0.095296,0.105408,27.7975,0.115904
+1118,32.9854,30.3164,27.9316,0.068512,0.871744,0.006848,0.005408,0.02736,0.1024,0.097696,26.6385,0.113056
+1119,32.7408,30.543,29.44,0.069632,1.11725,0.007104,0.01536,0.027648,0.095776,0.096736,27.8969,0.113632
+1120,34.038,29.3789,27.98,0.067904,0.900992,0.006176,0.005792,0.028032,0.093152,0.096288,26.6682,0.113472
+1121,34.2842,29.168,29.3599,0.06944,1.0465,0.015008,0.005952,0.0272,0.096256,0.09776,27.8881,0.113664
+1122,32.9982,30.3047,29.199,0.068352,0.9584,0.007296,0.004864,0.038528,0.09472,0.097536,27.8164,0.112992
+1123,33.2511,30.0742,27.9638,0.06832,0.847872,0.007232,0.005024,0.02864,0.099616,0.097024,26.6956,0.114528
+1124,33.9343,29.4688,28.0945,0.068992,0.97296,0.006688,0.00528,0.027456,0.096256,0.098272,26.7056,0.112992
+1125,33.9973,29.4141,29.2557,0.069632,0.969792,0.00704,0.005504,0.027328,0.096256,0.097376,27.8697,0.113024
+1126,32.7701,30.5156,27.99,0.0696,0.9544,0.00768,0.004608,0.028448,0.094432,0.1024,26.6149,0.113504
+1127,34.2109,29.2305,28.0504,0.069504,0.9584,0.006336,0.006144,0.028288,0.094592,0.096448,26.6771,0.113664
+1128,34.3809,29.0859,29.1019,0.069024,0.856416,0.006464,0.005504,0.027264,0.096256,0.098304,27.8276,0.11504
+1129,32.943,30.3555,28.1208,0.070656,1.02093,0.00768,0.004608,0.028704,0.095584,0.096896,26.6813,0.1144
+1130,34.2934,29.1602,29.1185,0.069216,0.864704,0.007328,0.004864,0.027936,0.09504,0.097248,27.8395,0.112672
+1131,32.7157,30.5664,29.2755,0.069632,0.951904,0.00656,0.005984,0.042336,0.096224,0.098304,27.8885,0.116064
+1132,32.8795,30.4141,27.9833,0.069632,0.894976,0.007456,0.004832,0.02816,0.095968,0.097056,26.6622,0.123008
+1133,34.1106,29.3164,27.9267,0.069504,0.85024,0.00768,0.004576,0.028672,0.096256,0.096256,26.6604,0.11312
+1134,32.8669,30.4258,29.322,0.068416,1.02813,0.007488,0.004768,0.028096,0.0944,0.09664,27.8794,0.114688
+1135,33.0749,30.2344,28.1866,0.069632,1.08544,0.007424,0.004864,0.028608,0.09632,0.097472,26.6822,0.114688
+1136,35.1842,28.4219,27.9327,0.069568,0.888192,0.006848,0.00512,0.039936,0.096256,0.104416,26.6097,0.112672
+1137,34.1288,29.3008,29.2385,0.069632,0.9432,0.007072,0.005568,0.0272,0.096224,0.09632,27.8809,0.112416
+1138,33.2381,30.0859,27.9777,0.06912,0.846304,0.006176,0.005728,0.02816,0.096352,0.10528,26.707,0.113632
+1139,34.367,29.0977,27.9566,0.069664,0.841696,0.00816,0.005344,0.027456,0.09616,0.096352,26.6957,0.116128
+1140,34.0561,29.3633,29.4358,0.069536,1.09834,0.008,0.004288,0.028576,0.095872,0.104928,27.9122,0.11408
+1141,32.4256,30.8398,28.0333,0.069568,0.9888,0.00656,0.005504,0.027296,0.096,0.096512,26.6299,0.113152
+1142,34.0697,29.3516,28.7509,0.075808,0.92352,0.00624,0.00576,0.028224,0.095072,0.098304,27.4037,0.114208
+1143,33.7375,29.6406,29.1442,0.070752,0.833664,0.006944,0.005632,0.028224,0.109376,0.097536,27.8782,0.113856
+1144,32.9515,30.3477,27.9654,0.069632,0.843808,0.007296,0.00496,0.028256,0.094464,0.096448,26.7059,0.114688
+1145,34.4828,29,29.1363,0.069184,0.846592,0.007328,0.004992,0.028448,0.0944,0.102432,27.8692,0.11376
+1146,33.1263,30.1875,29.1177,0.069632,0.882688,0.007424,0.004864,0.028256,0.102816,0.096256,27.8118,0.113984
+1147,32.5907,30.6836,27.8866,0.069152,0.860256,0.006528,0.006016,0.028032,0.095008,0.104416,26.6015,0.115744
+1148,33.8311,29.5586,28.1281,0.082816,1.02989,0.0064,0.005504,0.027264,0.104448,0.0984,26.6601,0.11328
+1149,34.5946,28.9062,29.0986,0.06816,0.858112,0.007584,0.004704,0.028672,0.095232,0.09728,27.8241,0.114688
+1150,33.0237,30.2812,27.9577,0.069472,0.886816,0.00672,0.005344,0.027424,0.096096,0.096416,26.656,0.113408
+1151,34.5526,28.9414,27.8814,0.069472,0.848,0.006688,0.005952,0.028224,0.09488,0.097408,26.6166,0.114144
+1152,34.1698,29.2656,29.1349,0.069632,0.845824,0.007456,0.004832,0.028096,0.094784,0.096288,27.8753,0.112736
+1153,32.8416,30.4492,28.5655,0.070176,1.00765,0.007968,0.005504,0.027456,0.100256,0.096352,27.1372,0.112992
+1154,33.3333,30,28.3265,0.069568,1.18016,0.008384,0.005664,0.030816,0.09664,0.098304,26.7223,0.114688
+1155,34.1652,29.2695,29.1503,0.069632,0.841728,0.007488,0.0048,0.028672,0.09536,0.096768,27.8921,0.113792
+1156,32.7533,30.5312,28.0946,0.06976,0.958464,0.007776,0.004512,0.04096,0.09424,0.112096,26.6917,0.115104
+1157,34.5993,28.9023,29.1411,0.069312,0.836,0.006144,0.006144,0.028672,0.095456,0.097088,27.8893,0.112928
+1158,32.96,30.3398,29.1954,0.069536,0.837728,0.006144,0.00576,0.027008,0.098304,0.098176,27.9391,0.113664
+1159,32.724,30.5586,27.9757,0.072928,0.90192,0.007424,0.004864,0.028704,0.096224,0.097568,26.6472,0.118816
+1160,34.1333,29.2969,27.9958,0.079424,0.97312,0.006272,0.005632,0.03712,0.095584,0.098848,26.5855,0.114304
+1161,34.2842,29.168,29.1977,0.069216,0.957216,0.007264,0.005024,0.02864,0.096192,0.097728,27.8227,0.113728
+1162,32.7785,30.5078,28.153,0.069504,1.03181,0.006656,0.005376,0.04096,0.094432,0.10704,26.6834,0.113856
+1163,34.2612,29.1875,28.0815,0.06976,0.992544,0.006752,0.006144,0.028224,0.108992,0.098144,26.6564,0.114592
+1164,34.1926,29.2461,29.2191,0.069184,0.965536,0.006144,0.006144,0.028576,0.094336,0.098208,27.8365,0.114496
+1165,32.6156,30.6602,28.1164,0.070848,0.987968,0.006144,0.006144,0.028416,0.104576,0.098144,26.698,0.116128
+1166,34.6367,28.8711,28.966,0.069536,0.842176,0.01712,0.005056,0.034816,0.094208,0.335872,27.4548,0.11248
+1167,33.2813,30.0469,29.1353,0.070112,0.84992,0.006144,0.006144,0.028288,0.094592,0.1024,27.863,0.114688
+1168,32.8795,30.4141,27.967,0.069664,0.93984,0.006304,0.005568,0.02736,0.095712,0.09664,26.6116,0.114368
+1169,34.2612,29.1875,27.9783,0.069376,0.980928,0.007008,0.005632,0.027136,0.108544,0.096288,26.5703,0.113024
+1170,34.3348,29.125,30.2387,0.068736,1.12934,0.007616,0.004672,0.028544,0.096,0.098208,28.6924,0.113216
+1171,31.964,31.2852,27.9584,0.069632,0.874496,0.00736,0.004928,0.028544,0.09552,0.097024,26.663,0.11792
+1172,34.1652,29.2695,28.0324,0.069664,0.94,0.007968,0.00432,0.02848,0.0944,0.097888,26.6748,0.11488
+1173,32.9684,30.332,29.318,0.068512,1.09162,0.00736,0.004928,0.02864,0.095296,0.097184,27.8098,0.114688
+1174,34.1151,29.3125,27.97,0.069888,0.938144,0.006144,0.005792,0.027136,0.095872,0.097728,26.6156,0.113664
+1175,34.344,29.1172,27.9675,0.069632,0.91328,0.006272,0.006144,0.028192,0.095712,0.105024,26.6296,0.113632
+1176,33.7998,29.5859,29.2577,0.069632,0.925376,0.006464,0.005728,0.02704,0.095296,0.09712,27.9184,0.11264
+1177,32.8669,30.4258,29.1999,0.069312,0.955104,0.007904,0.005504,0.02752,0.09584,0.096672,27.8281,0.113952
+1178,32.8079,30.4805,27.971,0.069408,0.954048,0.00672,0.005248,0.027488,0.096096,0.096448,26.6014,0.114144
+1179,34.3947,29.0742,29.2499,0.069952,0.959552,0.00704,0.005536,0.039584,0.095232,0.096608,27.8637,0.11264
+1180,32.8711,30.4219,27.9476,0.069248,0.88976,0.00624,0.005792,0.028288,0.105088,0.1024,26.6273,0.11344
+1181,34.5946,28.9062,27.931,0.069024,0.842688,0.008032,0.005536,0.027392,0.106528,0.097536,26.6596,0.11472
+1182,34.4317,29.043,30.3658,0.069216,0.930304,0.007264,0.00496,0.028032,0.094688,0.103744,29.0144,0.113152
+1183,31.8765,31.3711,27.9572,0.068288,0.83968,0.006144,0.006144,0.028128,0.10096,0.09824,26.6957,0.113888
+1184,34.22,29.2227,27.9132,0.074752,0.854016,0.00752,0.004768,0.028256,0.094624,0.097984,26.6364,0.114848
+1185,32.8416,30.4492,29.4433,0.069376,1.18726,0.017216,0.005952,0.028832,0.09568,0.096896,27.828,0.114112
+1186,33.011,30.293,28.2207,0.069504,1.13398,0.00688,0.004096,0.032768,0.094208,0.096288,26.669,0.113952
+1187,34.9536,28.6094,27.8874,0.069184,0.864096,0.006752,0.005952,0.028864,0.096256,0.10224,26.6008,0.113248
+1188,34.6414,28.8672,29.0918,0.069792,0.8544,0.006336,0.005664,0.027104,0.106496,0.097536,27.8106,0.113888
+1189,32.8838,30.4102,29.0877,0.06944,0.93408,0.006144,0.006048,0.028096,0.09488,0.098304,27.3956,0.455104
+1190,32.9812,30.3203,27.983,0.06928,0.90352,0.007328,0.004864,0.028096,0.102144,0.097184,26.6568,0.113824
+1191,34.321,29.1367,29.2415,0.070784,0.973696,0.00736,0.004928,0.028576,0.09552,0.09648,27.8512,0.11296
+1192,32.3437,30.918,28.1323,0.069856,1.02886,0.01632,0.005312,0.038976,0.09504,0.09808,26.6652,0.114688
+1193,33.1735,30.1445,28.1602,0.068448,1.00486,0.006848,0.005536,0.027232,0.095616,0.105088,26.7223,0.124256
+1194,34.9345,28.625,30.3255,0.068352,1.21443,0.007776,0.004512,0.028416,0.096512,0.1144,28.6783,0.112736
+1195,32.1003,31.1523,28.0764,0.069408,1.00154,0.006624,0.005984,0.028192,0.094848,0.11264,26.6339,0.1232
+1196,33.8714,29.5234,28.2828,0.069632,1.21242,0.007872,0.004416,0.028384,0.094528,0.09776,26.6544,0.11344
+1197,32.6739,30.6055,29.3252,0.068384,0.997344,0.007424,0.004864,0.032768,0.106496,0.098304,27.8948,0.114848
+1198,32.8626,30.4297,28.126,0.069632,1.08422,0.016384,0.005472,0.027296,0.095712,0.09888,26.6137,0.114624
+1199,35.6894,28.0195,28.0226,0.069632,0.950272,0.007488,0.0048,0.028672,0.096,0.096512,26.6547,0.114528
+1200,34.2521,29.1953,29.1123,0.069312,0.928064,0.006144,0.00576,0.028544,0.094592,0.096416,27.7708,0.11264
+1201,33.29,30.0391,29.0883,0.07008,0.858208,0.006624,0.005984,0.028032,0.108736,0.098208,27.7982,0.114176
+1202,33.0451,30.2617,27.9163,0.069632,0.888832,0.007904,0.004384,0.02848,0.095584,0.097024,26.6098,0.114624
+1203,34.0245,29.3906,29.2313,0.069792,0.934528,0.007264,0.021408,0.028224,0.09456,0.096384,27.8669,0.112256
+1204,32.8753,30.418,27.9791,0.069632,0.8704,0.007616,0.004672,0.028384,0.09552,0.100896,26.6875,0.114464
+1205,34.2934,29.1602,28.0207,0.069632,0.933248,0.006784,0.005792,0.028192,0.09504,0.097888,26.6695,0.114688
+1206,34.0471,29.3711,29.1094,0.069408,0.917792,0.008128,0.004096,0.028672,0.095328,0.097184,27.775,0.113824
+1207,33.1821,30.1367,28.0145,0.0696,0.912992,0.006592,0.004096,0.028672,0.095584,0.096928,26.6752,0.124832
+1208,33.6179,29.7461,28.0806,0.069664,0.986592,0.00704,0.004224,0.028672,0.095648,0.096864,26.6768,0.115104
+1209,34.7072,28.8125,29.0956,0.0696,0.868384,0.008064,0.005504,0.027392,0.09568,0.096832,27.8109,0.113248
+1210,33.0365,30.2695,27.9002,0.07808,0.8784,0.006336,0.005568,0.0272,0.095712,0.102368,26.5929,0.113568
+1211,34.5946,28.9062,27.9245,0.069472,0.85968,0.006784,0.005728,0.028224,0.106912,0.095904,26.6386,0.113216
+1212,34.5339,28.957,29.111,0.068288,0.845696,0.006272,0.005696,0.028288,0.096064,0.09728,27.8487,0.114688
+1213,32.926,30.3711,28.2777,0.068576,0.90112,0.006112,0.00608,0.028256,0.094688,0.098272,26.962,0.11264
+1214,33.0323,30.2734,28.5635,0.073696,1.56269,0.007648,0.00464,0.028256,0.095712,0.096288,26.5812,0.11328
+1215,34.1242,29.3047,29.1961,0.068128,0.990784,0.00656,0.006144,0.028672,0.096256,0.09744,27.7881,0.113952
+1216,33.1778,30.1406,27.9685,0.070816,0.958432,0.007008,0.0056,0.0272,0.105696,0.098656,26.5814,0.113664
+1217,34.3164,29.1406,28.3809,0.069664,0.911328,0.007424,0.004864,0.028672,0.095904,0.10208,27.0466,0.1144
+1218,33.7553,29.625,29.0894,0.067904,0.869728,0.006528,0.005408,0.02736,0.09568,0.096832,27.807,0.113024
+1219,33.1177,30.1953,27.8874,0.069152,0.87696,0.006528,0.00608,0.028032,0.094944,0.098176,26.5932,0.114368
+1220,34.6836,28.832,27.8935,0.0696,0.853536,0.006656,0.005248,0.02752,0.095328,0.10128,26.6199,0.114464
+1221,34.0607,29.3594,29.34,0.069696,1.05501,0.016384,0.006144,0.032768,0.096256,0.106176,27.8446,0.112992
+1222,32.3232,30.9375,28.259,0.06816,1.2224,0.0064,0.005568,0.027264,0.09536,0.1048,26.6162,0.112864
+1223,33.9208,29.4805,28.184,0.06992,1.09158,0.006144,0.006144,0.02832,0.110944,0.097728,26.6585,0.11472
+1224,34.2017,29.2383,29.2291,0.069632,0.97424,0.006752,0.00512,0.027648,0.095776,0.108384,27.8284,0.11312
+1225,32.7743,30.5117,29.2844,0.069632,0.917536,0.007296,0.00496,0.028384,0.094496,0.096288,27.9529,0.112896
+1226,33.1477,30.168,27.8758,0.069984,0.851616,0.006912,0.004096,0.028672,0.095488,0.096992,26.607,0.115008
+1227,34.4967,28.9883,29.2126,0.069632,0.90112,0.007584,0.004704,0.028672,0.095584,0.096928,27.8948,0.113632
+1228,32.7324,30.5508,28.127,0.069568,1.0937,0.008192,0.014336,0.028704,0.094176,0.098144,26.6057,0.114432
+1229,34.6461,28.8633,29.0815,0.069664,0.851936,0.006144,0.006144,0.028032,0.094848,0.096256,27.8159,0.112576
+1230,33.1735,30.1445,29.1062,0.071264,0.891232,0.006208,0.005792,0.028256,0.094976,0.096416,27.7994,0.112672
+1231,33.1177,30.1953,27.8999,0.069664,0.867392,0.007072,0.006112,0.031968,0.09504,0.097472,26.6105,0.114688
+1232,34.5153,28.9727,27.883,0.069632,0.85552,0.006688,0.00528,0.027488,0.095552,0.103136,26.6053,0.1144
+1233,34.4688,29.0117,29.1018,0.069536,0.850016,0.007904,0.005504,0.027552,0.095232,0.101376,27.82,0.12464
+1234,33.0878,30.2227,28.0179,0.069632,0.964608,0.006144,0.00576,0.028096,0.09504,0.098016,26.6362,0.114432
+1235,34.106,29.3203,28.0727,0.069696,1.03072,0.022368,0.005952,0.026976,0.096256,0.098016,26.6079,0.114848
+1236,34.1106,29.3164,29.1471,0.069376,0.915712,0.00752,0.004768,0.028128,0.094752,0.098304,27.8159,0.11264
+1237,33.2295,30.0938,28.2325,0.068544,0.849856,0.007936,0.005536,0.027456,0.096256,0.098304,26.963,0.115648
+1238,34.106,29.3203,28.8052,0.069632,0.868352,0.007552,0.004736,0.028672,0.094208,0.098304,27.521,0.112736
+1239,33.1907,30.1289,29.1755,0.069088,0.913888,0.00656,0.006016,0.028192,0.094816,0.098336,27.8446,0.114048
+1240,33.0493,30.2578,27.8939,0.068544,0.883904,0.006912,0.004224,0.028544,0.09584,0.096672,26.5953,0.11392
+1241,34.4967,28.9883,29.1138,0.069952,0.890944,0.0072,0.005088,0.02832,0.09456,0.097888,27.806,0.113792
+1242,32.9515,30.3477,29.1319,0.068832,0.89168,0.007616,0.004672,0.028192,0.09472,0.104384,27.818,0.113792
+1243,31.9043,31.3438,28.2196,0.068128,1.16122,0.007584,0.004704,0.028672,0.105856,0.096928,26.6334,0.113056
+1244,33.0195,30.2852,28.1068,0.070816,1.07606,0.018432,0.006144,0.036864,0.104,0.098016,26.5817,0.114688
+1245,35.9652,27.8047,29.2332,0.0696,0.990496,0.006912,0.0056,0.027168,0.095936,0.096608,27.8274,0.11344
+1246,32.9472,30.3516,27.8159,0.070816,0.856736,0.006336,0.005728,0.028864,0.094528,0.097664,26.5406,0.114688
+1247,34.298,29.1562,27.9899,0.069664,0.933856,0.007424,0.004864,0.028672,0.095584,0.09696,26.6383,0.114528
+1248,34.3809,29.0859,29.1125,0.069696,0.86832,0.006176,0.005824,0.02816,0.095072,0.097824,27.8287,0.112736
+1249,32.8247,30.4648,29.2722,0.069696,0.940128,0.007456,0.004832,0.028576,0.096,0.096608,27.9142,0.114688
+1250,32.8458,30.4453,28.031,0.069632,0.969984,0.006912,0.004224,0.044192,0.096992,0.110592,26.6158,0.112672
+1251,34.344,29.1172,29.2084,0.069664,0.901664,0.00624,0.006144,0.028416,0.102656,0.097408,27.866,0.130208
+1252,32.926,30.3711,27.8924,0.069312,0.856384,0.006752,0.005952,0.028192,0.096128,0.097056,26.6191,0.113472
+1253,33.849,29.543,29.6141,0.06944,1.30886,0.00736,0.004928,0.028512,0.094368,0.096256,27.8928,0.111552
+1254,32.9515,30.3477,29.3093,0.075744,1.00813,0.006592,0.014336,0.028672,0.095424,0.097088,27.8692,0.114176
+1255,33.0707,30.2383,28.0126,0.07488,0.983744,0.006336,0.006144,0.027968,0.104416,0.096992,26.5994,0.112736
+1256,34.6696,28.8438,27.9127,0.069568,0.854624,0.006144,0.00592,0.028,0.094528,0.105056,26.6342,0.114688
+1257,33.8222,29.5664,29.3253,0.069632,1.05379,0.007008,0.0144,0.032096,0.101024,0.109728,27.825,0.11264
+1258,32.943,30.3555,28.1419,0.069952,1.08918,0.006752,0.005216,0.027552,0.095456,0.096544,26.636,0.115168
+1259,34.726,28.7969,27.8876,0.069728,0.868224,0.006176,0.00608,0.027904,0.09504,0.098144,26.603,0.113344
+1260,34.3486,29.1133,29.1258,0.069376,0.903232,0.006336,0.006144,0.028384,0.095904,0.097952,27.8047,0.113824
+1261,33.1263,30.1875,27.9676,0.06848,0.899072,0.007456,0.004832,0.028672,0.097664,0.096896,26.6506,0.11392
+1262,34.3716,29.0938,28.738,0.067168,0.852384,0.006592,0.005312,0.027456,0.096128,0.096416,27.4737,0.112864
+1263,33.4947,29.8555,29.1357,0.06848,0.917472,0.006176,0.006144,0.02816,0.104032,0.098816,27.7918,0.114688
+1264,32.8838,30.4102,27.8591,0.069696,0.860256,0.007296,0.004672,0.028608,0.094592,0.096256,26.5851,0.112672
+1265,34.6789,28.8359,29.0864,0.068512,0.85728,0.006496,0.004576,0.028672,0.096256,0.097888,27.8113,0.115392
+1266,33.29,30.0391,29.0876,0.069024,0.846624,0.007424,0.004864,0.028128,0.106848,0.09648,27.8151,0.11312
+1267,32.8331,30.457,27.8504,0.069664,0.864,0.006368,0.006144,0.028096,0.094816,0.096224,26.5706,0.11456
+1268,33.0792,30.2305,27.9167,0.068256,0.859616,0.006656,0.005248,0.02752,0.095232,0.097152,26.6437,0.113312
+1269,35.7592,27.9648,29.2778,0.069568,0.988608,0.006784,0.00576,0.02864,0.096416,0.097792,27.87,0.114304
+1270,33.2122,30.1094,27.8821,0.068224,0.837664,0.007264,0.004928,0.028224,0.110976,0.097472,26.6127,0.114688
+1271,33.9388,29.4648,28.0901,0.069696,1.07984,0.007744,0.004512,0.028672,0.095616,0.09664,26.5934,0.114016
+1272,34.1607,29.2734,29.1779,0.06864,0.948384,0.007008,0.004128,0.02864,0.095776,0.09616,27.816,0.113184
+1273,33.3811,29.957,27.9396,0.070656,0.853856,0.006304,0.006144,0.028032,0.094848,0.098304,26.6665,0.114944
+1274,34.0879,29.3359,29.1276,0.068544,0.864256,0.007392,0.004896,0.028064,0.094816,0.096224,27.836,0.127424
+1275,32.8542,30.4375,29.0447,0.069632,0.864224,0.006176,0.00576,0.028032,0.095232,0.096256,27.7668,0.11264
+1276,33.0878,30.2227,27.9174,0.069632,0.888832,0.007744,0.004544,0.028448,0.095488,0.103392,26.6035,0.115808
+1277,34.5246,28.9648,27.9186,0.069632,0.84608,0.00768,0.004608,0.028704,0.096096,0.097856,26.6532,0.114688
+1278,34.4317,29.043,29.174,0.068256,0.974656,0.006144,0.00576,0.028192,0.109408,0.0976,27.7707,0.113344
+1279,33.1649,30.1523,27.9286,0.069664,0.876064,0.006592,0.005952,0.027872,0.109568,0.0976,26.6224,0.112864
+1280,34.4503,29.0273,27.9492,0.068928,0.911936,0.006432,0.005792,0.028096,0.095168,0.098272,26.621,0.113568
+1281,34.5293,28.9609,29.1961,0.070784,0.895872,0.00768,0.004608,0.028672,0.095808,0.096704,27.8815,0.114528
+1282,32.7743,30.5117,28.0146,0.069248,0.954624,0.006304,0.013856,0.0312,0.096064,0.096448,26.6316,0.115296
+1283,34.5293,28.9609,29.136,0.070656,0.84224,0.006656,0.00592,0.028096,0.095008,0.096256,27.8788,0.112352
+1284,33.0024,30.3008,29.0317,0.069632,0.866336,0.00752,0.004736,0.028096,0.094784,0.098144,27.7485,0.113984
+1285,32.6239,30.6523,27.9665,0.068576,0.990496,0.014112,0.005056,0.040544,0.094656,0.098112,26.5421,0.112832
+1286,34.3855,29.082,27.9139,0.069216,0.887616,0.007648,0.00464,0.028256,0.094624,0.096256,26.6097,0.115968
+1287,33.5386,29.8164,30.3148,0.069152,1.15741,0.006624,0.020096,0.031104,0.096256,0.108096,28.7114,0.114688
+1288,32.0441,31.207,27.863,0.069504,0.857504,0.00688,0.004224,0.028544,0.096192,0.097664,26.5878,0.114656
+1289,34.5013,28.9844,27.8734,0.068384,0.868352,0.007552,0.004736,0.028672,0.09424,0.097856,26.5894,0.114208
+1290,32.8711,30.4219,29.7772,0.069184,1.59382,0.007872,0.004416,0.028352,0.09632,0.09648,27.7668,0.113952
+1291,33.5826,29.7773,28.0412,0.068512,0.970656,0.007264,0.005024,0.04,0.095168,0.09744,26.6433,0.113856
+1292,34.2383,29.207,28.0044,0.069664,0.954336,0.00784,0.004448,0.04096,0.095424,0.097088,26.6209,0.113664
+1293,34.0743,29.3477,29.1433,0.069792,0.929504,0.006528,0.006112,0.028096,0.09472,0.096352,27.7996,0.11264
+1294,33.29,30.0391,29.1418,0.074752,0.89472,0.0064,0.005536,0.027232,0.096256,0.098304,27.8241,0.114432
+1295,33.0578,30.25,28.0039,0.069632,0.965952,0.006848,0.005728,0.02832,0.094976,0.09776,26.6184,0.116256
+1296,34.3578,29.1055,29.2005,0.06912,0.954784,0.0064,0.005504,0.027264,0.095456,0.097056,27.8323,0.11264
+1297,32.7995,30.4883,28.0439,0.06816,1.00554,0.016032,0.00592,0.037472,0.09728,0.097312,26.6035,0.112672
+1298,32.8542,30.4375,29.2844,0.069632,1.10387,0.00784,0.013664,0.027648,0.095584,0.096928,27.7563,0.11296
+1299,34.2796,29.1719,29.1389,0.069536,0.899168,0.007712,0.004608,0.02864,0.096256,0.097792,27.8225,0.112768
+1300,33.2166,30.1055,27.9346,0.069504,0.854176,0.007936,0.00432,0.028672,0.095392,0.09712,26.6643,0.113152
+1301,34.2612,29.1875,27.9842,0.06992,0.875616,0.007072,0.005504,0.027296,0.096256,0.11264,26.6732,0.116736
+1302,34.147,29.2852,29.1742,0.069568,0.899552,0.007968,0.004352,0.02864,0.094208,0.098016,27.8587,0.113216
+1303,32.7659,30.5195,27.9439,0.069632,0.919552,0.007872,0.005504,0.027584,0.106496,0.1096,26.583,0.114656
+1304,34.5852,28.9141,27.8743,0.069184,0.852416,0.006144,0.005952,0.028064,0.0984,0.102976,26.5974,0.113824
+1305,34.4595,29.0195,29.1253,0.069504,0.917952,0.00656,0.006016,0.028192,0.096192,0.096928,27.7811,0.12288
+1306,33.0237,30.2812,29.1389,0.069632,0.884096,0.006784,0.00512,0.031744,0.09536,0.105344,27.8275,0.113376
+1307,32.4256,30.8398,28.166,0.076896,1.06326,0.00672,0.005824,0.026944,0.095328,0.09712,26.6794,0.11456
+1308,34.4132,29.0586,29.2742,0.074496,0.978272,0.006784,0.015936,0.031104,0.096064,0.110048,27.8475,0.114048
+1309,33.152,30.1641,27.8246,0.06992,0.854176,0.007456,0.004832,0.028672,0.100096,0.098368,26.5464,0.114688
+1310,34.5806,28.918,28.6743,0.069184,0.942784,0.007776,0.004512,0.028416,0.094464,0.098336,27.009,0.41984
+1311,33.3203,30.0117,29.2349,0.071616,0.95648,0.007552,0.004768,0.02864,0.094208,0.110624,27.8357,0.125312
+1312,32.8795,30.4141,27.8628,0.069312,0.87232,0.00688,0.004224,0.028544,0.095296,0.097152,26.5749,0.114208
+1313,34.5432,28.9492,27.9285,0.069376,0.88704,0.006144,0.006144,0.028288,0.094592,0.097984,26.6243,0.114592
+1314,34.5246,28.9648,29.0304,0.069632,0.870144,0.0064,0.005504,0.027264,0.096256,0.096256,27.7463,0.11264
+1315,33.1349,30.1797,27.9433,0.068384,0.890848,0.007648,0.00464,0.028672,0.096256,0.098048,26.6345,0.114304
+1316,34.3348,29.125,27.969,0.071136,1.00611,0.00736,0.004928,0.028672,0.09536,0.096928,26.5423,0.116192
+1317,34.4179,29.0547,29.1867,0.068192,0.915136,0.014656,0.005856,0.02816,0.095008,0.098304,27.8467,0.114688
+1318,32.7743,30.5117,29.1104,0.069632,0.962144,0.017888,0.004896,0.028224,0.094432,0.09664,27.7252,0.111392
+1319,32.943,30.3555,27.9517,0.069856,0.956832,0.007456,0.004832,0.028672,0.095488,0.10112,26.5723,0.115232
+1320,34.3256,29.1328,29.1856,0.0696,0.950496,0.008064,0.004224,0.02864,0.095424,0.09712,27.818,0.114048
+1321,32.9769,30.3242,27.9526,0.069632,0.948224,0.007712,0.004576,0.028672,0.094368,0.097856,26.5874,0.114176
+1322,34.3809,29.0859,29.0963,0.068064,0.88256,0.00752,0.0048,0.028448,0.094432,0.097312,27.7964,0.116704
+1323,33.2684,30.0586,29.1683,0.069856,0.849504,0.006976,0.005568,0.027232,0.108352,0.096448,27.8914,0.11296
+1324,33.0024,30.3008,27.9117,0.069632,0.904352,0.007008,0.004128,0.02864,0.096032,0.096544,26.5912,0.114176
+1325,34.4595,29.0195,27.8118,0.069632,0.878112,0.006624,0.006016,0.028064,0.094944,0.096256,26.5173,0.11488
+1326,34.4874,28.9961,29.118,0.069184,0.88224,0.00704,0.004096,0.028672,0.102432,0.097792,27.8136,0.11296
+1327,32.7827,30.5039,27.9532,0.069408,0.970976,0.007584,0.004704,0.028672,0.094208,0.09744,26.5667,0.113472
+1328,34.441,29.0352,27.9512,0.06912,0.937632,0.007072,0.00416,0.028672,0.095872,0.09664,26.5987,0.113344
+1329,34.2934,29.1602,29.1951,0.068416,0.935936,0.008032,0.005536,0.028864,0.095808,0.096896,27.844,0.111584
+1330,32.9345,30.3633,29.1688,0.069632,0.960512,0.007456,0.004832,0.028256,0.096,0.097056,27.7912,0.113856
+1331,33.342,29.9922,27.8377,0.069344,0.858624,0.007616,0.004672,0.028672,0.09552,0.096928,26.5623,0.11408
+1332,34.5666,28.9297,29.1269,0.06816,0.907168,0.00736,0.004864,0.028736,0.09536,0.096864,27.8039,0.114464
+1333,32.4667,30.8008,28.1828,0.069248,1.19254,0.00768,0.004608,0.028704,0.095616,0.096864,26.5743,0.113152
+1334,34.6649,28.8477,29.1615,0.069664,0.937952,0.007456,0.004832,0.028416,0.094464,0.09808,27.8075,0.113152
+1335,33.122,30.1914,29.0549,0.069312,0.848224,0.00768,0.004608,0.028672,0.095872,0.096672,27.7893,0.114624
+1336,32.8542,30.4375,28.0538,0.069248,1.06954,0.006304,0.005632,0.0272,0.096192,0.104448,26.5623,0.11296
+1337,34.4086,29.0625,27.9365,0.069632,0.912768,0.006784,0.014336,0.028672,0.111936,0.09696,26.582,0.113408
+1338,34.5666,28.9297,29.0644,0.069664,0.869408,0.007072,0.0056,0.027392,0.096064,0.097696,27.7776,0.11392
+1339,32.9218,30.375,27.9409,0.069632,0.924928,0.016768,0.005952,0.028256,0.103392,0.098048,26.5792,0.11472
+1340,34.4967,28.9883,27.879,0.069216,0.876608,0.006496,0.0056,0.0272,0.096224,0.09776,26.5856,0.11424
+1341,34.759,28.7695,29.0771,0.069536,0.847744,0.006368,0.006144,0.028576,0.1016,0.097184,27.8053,0.114656
+1342,32.724,30.5586,29.0556,0.06816,0.882176,0.006656,0.005344,0.027424,0.096256,0.097376,27.7595,0.112672
+1343,32.8458,30.4453,28.0124,0.06816,0.998464,0.00704,0.005504,0.027328,0.11808,0.096352,26.5767,0.114752
+1344,34.2063,29.2344,29.1075,0.069056,0.869216,0.008064,0.004224,0.028672,0.099808,0.100928,27.8139,0.113664
+1345,30.7434,32.5273,29.8841,0.075616,2.77571,0.006208,0.00608,0.028352,0.09616,0.098144,26.677,0.120864
+1346,34.2109,29.2305,29.1025,0.068032,0.872192,0.0064,0.005728,0.02704,0.096128,0.096192,27.8182,0.11264
+1347,32.8331,30.457,29.2881,0.0712,1.0593,0.0072,0.005088,0.028416,0.1088,0.09792,27.7958,0.114336
+1348,33.355,29.9805,27.8852,0.069632,0.897024,0.007328,0.004864,0.028096,0.094976,0.099744,26.5692,0.114304
+1349,34.52,28.9688,27.9023,0.070144,0.890912,0.007904,0.005504,0.02752,0.095648,0.096768,26.5933,0.114624
+1350,34.5759,28.9219,29.0963,0.069024,0.875488,0.007744,0.004544,0.02848,0.0944,0.096288,27.8074,0.112928
+1351,33.1692,30.1484,27.8989,0.06976,0.870272,0.007456,0.004832,0.028672,0.094208,0.098112,26.6099,0.115744
+1352,34.3763,29.0898,27.8876,0.069664,0.849888,0.0072,0.004928,0.02816,0.09488,0.098304,26.6199,0.114688
+1353,34.5386,28.9531,29.1999,0.069568,0.8992,0.006144,0.006144,0.02832,0.096192,0.09824,27.8818,0.11424
+1354,32.8163,30.4727,27.9159,0.068832,0.893856,0.008128,0.00416,0.028672,0.097984,0.097984,26.6021,0.114208
+1355,30.9478,32.3125,29.4627,0.069824,1.17741,0.006336,0.006144,0.028192,0.11056,0.104832,27.8466,0.1128
+1356,35.526,28.1484,29.225,0.069632,0.99328,0.018432,0.005984,0.02816,0.107168,0.098176,27.7915,0.11264
+1357,32.9854,30.3164,27.9918,0.068352,0.970144,0.006752,0.00576,0.02816,0.0968,0.096608,26.6056,0.113696
+1358,34.3947,29.0742,28.3177,0.071104,0.945792,0.007104,0.004128,0.02864,0.096256,0.097632,26.9534,0.113632
+1359,33.9478,29.457,30.0681,0.0696,0.931872,0.007936,0.005504,0.028832,0.094976,0.097696,28.7171,0.114592
+1360,32.1124,31.1406,27.8756,0.06896,0.856352,0.006848,0.004288,0.02848,0.1024,0.10352,26.592,0.112832
+1361,34.3486,29.1133,27.8671,0.069632,0.874496,0.007392,0.004896,0.028512,0.095456,0.09696,26.5751,0.114688
+1362,34.1288,29.3008,29.1768,0.068544,0.924864,0.022848,0.004608,0.028704,0.09584,0.09664,27.8218,0.11296
+1363,33.1306,30.1836,27.8835,0.069632,0.90112,0.007456,0.004864,0.028512,0.094368,0.096416,26.5662,0.114912
+1364,34.4132,29.0586,27.9393,0.069056,0.936928,0.007776,0.004512,0.02832,0.095776,0.09664,26.5875,0.1128
+1365,34.5572,28.9375,29.1991,0.068384,0.884384,0.006464,0.006048,0.028,0.094976,0.098304,27.8979,0.114688
+1366,32.7743,30.5117,29.0858,0.069504,0.897472,0.007488,0.0048,0.028128,0.094592,0.096416,27.7741,0.11328
+1367,33.3333,30,27.9828,0.068512,0.925056,0.006784,0.00576,0.027008,0.095584,0.096768,26.6426,0.114688
+1368,34.4735,29.0078,29.1464,0.06944,0.866496,0.008032,0.004256,0.028672,0.097472,0.097088,27.861,0.113984
+1369,32.8374,30.4531,27.9344,0.07376,0.895008,0.0072,0.005088,0.028672,0.095808,0.096288,26.6183,0.114336
+1370,34.2475,29.1992,28.2826,0.069376,0.911616,0.007488,0.0048,0.028128,0.095904,0.097152,26.9537,0.1144
+1371,34.22,29.2227,29.1236,0.069632,0.864288,0.007936,0.005504,0.027488,0.095808,0.096704,27.8426,0.113664
+1372,33.0067,30.2969,27.9668,0.069888,0.921056,0.006656,0.005312,0.027456,0.096256,0.098048,26.6284,0.113728
+1373,34.0516,29.3672,27.8914,0.069792,0.927968,0.006464,0.00608,0.02816,0.095872,0.108608,26.5343,0.114144
+1374,33.4684,29.8789,30.6365,0.068032,1.20627,0.00816,0.014368,0.03072,0.096064,0.09648,29.0037,0.11264
+1375,32.177,31.0781,28.0025,0.075968,0.955968,0.00656,0.005952,0.028352,0.09584,0.112608,26.6077,0.113504
+1376,33.4247,29.918,28.0469,0.069376,0.995488,0.006592,0.005472,0.027296,0.104448,0.098336,26.6256,0.114336
+1377,35.0445,28.5352,29.1875,0.069664,0.948544,0.007872,0.005536,0.027552,0.096256,0.098144,27.82,0.11392
+1378,33.011,30.293,27.9397,0.06848,0.91264,0.00688,0.005984,0.028128,0.094464,0.096736,26.6138,0.112608
+1379,33.8983,29.5,28.0575,0.068256,0.9704,0.006496,0.006016,0.028032,0.094976,0.097568,26.6698,0.115968
+1380,34.4921,28.9922,29.226,0.069632,0.954208,0.006336,0.0056,0.028288,0.09488,0.097888,27.8555,0.113664
+1381,32.8374,30.4531,29.3231,0.069664,1.00758,0.006144,0.006144,0.028544,0.094368,0.097792,27.9004,0.11248
+1382,32.7659,30.5195,28.0056,0.069632,1.01162,0.006272,0.005664,0.028352,0.094976,0.100352,26.5638,0.124864
+1383,34.4921,28.9922,29.1287,0.06928,0.878944,0.007424,0.004864,0.028672,0.096032,0.09648,27.8336,0.113376
+1384,32.8247,30.4648,27.9228,0.068448,0.922976,0.006816,0.00544,0.027328,0.096192,0.09632,26.5851,0.11424
+1385,34.22,29.2227,29.2004,0.067616,0.937536,0.016832,0.005952,0.027968,0.095104,0.098176,27.8386,0.112672
+1386,32.6948,30.5859,29.1448,0.069792,0.94448,0.008064,0.004128,0.028672,0.094208,0.098304,27.7831,0.114016
+1387,32.1608,31.0938,27.9245,0.069664,0.878592,0.007968,0.005536,0.027424,0.096256,0.097696,26.6267,0.114688
+1388,35.7043,28.0078,27.965,0.069664,0.9912,0.007424,0.004832,0.028192,0.09472,0.096256,26.5585,0.114272
+1389,34.4549,29.0234,29.147,0.067712,0.935072,0.007008,0.005504,0.028288,0.095232,0.096384,27.7974,0.114432
+1390,33.2079,30.1133,27.901,0.069632,0.874496,0.007584,0.004704,0.028352,0.094528,0.097888,26.6096,0.114272
+1391,34.4132,29.0586,27.9392,0.069568,0.881664,0.007776,0.004512,0.028672,0.096256,0.096256,26.6399,0.114592
+1392,34.344,29.1172,29.1043,0.0696,0.908096,0.006208,0.005536,0.028864,0.094528,0.096352,27.7811,0.113952
+1393,32.8121,30.4766,29.2352,0.069152,0.936416,0.00752,0.004768,0.028704,0.096,0.097824,27.8801,0.114688
+1394,33.2166,30.1055,27.826,0.06944,0.893216,0.00672,0.005536,0.027232,0.095392,0.096992,26.5176,0.113888
+1395,34.4179,29.0547,29.1978,0.069664,0.9728,0.007488,0.004768,0.028704,0.096224,0.097824,27.8056,0.11472
+1396,32.9345,30.3633,27.9839,0.069632,0.917504,0.007168,0.004864,0.028672,0.098592,0.098304,26.6464,0.1128
+1397,34.147,29.2852,28.457,0.069664,0.937568,0.00656,0.00608,0.028064,0.096352,0.0968,27.1012,0.114688
+1398,33.8714,29.5234,29.9096,0.069536,0.913216,0.007072,0.00416,0.028608,0.095872,0.09664,28.5811,0.11344
+1399,32.4502,30.8164,27.902,0.069632,0.86144,0.006912,0.005696,0.028224,0.09488,0.096512,26.6252,0.11344
+1400,34.1561,29.2773,27.927,0.076384,0.890592,0.006432,0.005472,0.027296,0.096256,0.098336,26.6034,0.122816
+1401,34.2292,29.2148,29.184,0.069504,0.946304,0.007552,0.012672,0.042496,0.099072,0.097312,27.7944,0.114688
+1402,33.0365,30.2695,27.8986,0.06944,0.91424,0.006208,0.005696,0.028192,0.095136,0.096256,26.5687,0.11472
+1403,34.2934,29.1602,27.9429,0.069664,0.873792,0.006816,0.005728,0.028096,0.095072,0.096256,26.6548,0.11264
+1404,32.8964,30.3984,29.2249,0.069632,0.96432,0.006432,0.005472,0.027296,0.096256,0.098016,27.842,0.115424
+1405,34.4688,29.0117,28.3303,0.068128,0.854016,0.007808,0.005536,0.027584,0.09568,0.096832,27.0602,0.114528
+1406,33.4641,29.8828,28.3999,0.0696,1.40957,0.016384,0.005824,0.03104,0.095264,0.09712,26.5606,0.114464
+1407,34.3716,29.0938,29.213,0.06864,0.890848,0.007712,0.004576,0.028672,0.095328,0.096576,27.902,0.118592
+1408,32.6447,30.6328,28.0658,0.069664,1.00758,0.006144,0.005792,0.028288,0.103136,0.104448,26.626,0.114688
+1409,34.4781,29.0039,29.0937,0.0696,0.847232,0.006816,0.005792,0.028032,0.0952,0.098304,27.8282,0.114496
+1410,33.2381,30.0859,29.0924,0.069792,0.866592,0.007328,0.004832,0.028256,0.094784,0.096224,27.8118,0.112704
+1411,32.8458,30.4453,27.9491,0.0712,0.919008,0.007104,0.005504,0.027328,0.096256,0.097664,26.6096,0.115392
+1412,34.5386,28.9531,27.9554,0.069472,0.932384,0.0064,0.0056,0.027168,0.096192,0.09632,26.6076,0.114272
+1413,34.5899,28.9102,29.0842,0.068128,0.878592,0.006144,0.006144,0.02832,0.09456,0.098048,27.7907,0.113632
+1414,32.8922,30.4023,27.9552,0.069056,0.913216,0.006784,0.011968,0.031168,0.094208,0.096288,26.6192,0.11328
+1415,34.8015,28.7344,27.8899,0.069376,0.872864,0.008032,0.005504,0.027424,0.096256,0.098304,26.5994,0.112704
+1416,34.5899,28.9102,29.0937,0.069856,0.8744,0.00624,0.005696,0.0272,0.096128,0.098304,27.8016,0.114272
+1417,33.0578,30.25,29.1445,0.069632,0.88272,0.007232,0.005024,0.028512,0.095872,0.0968,27.8446,0.114144
+1418,32.9133,30.3828,27.8928,0.069568,0.901216,0.008064,0.004192,0.028672,0.100384,0.098208,26.5688,0.113728
+1419,34.7213,28.8008,29.1118,0.069632,0.8704,0.006144,0.006144,0.02832,0.096544,0.09632,27.8241,0.114208
+1420,33.2295,30.0938,27.8997,0.069376,0.854272,0.007968,0.00432,0.028544,0.094368,0.097408,26.6289,0.114592
+1421,34.5899,28.9102,28.2932,0.069664,0.880224,0.006528,0.006048,0.028096,0.096,0.097184,26.9965,0.112928
+1422,33.9928,29.418,29.0671,0.070016,0.858112,0.0072,0.004864,0.028064,0.09472,0.096576,27.7934,0.114176
+1423,33.028,30.2773,27.9738,0.069984,0.93184,0.00736,0.004928,0.028416,0.095744,0.098176,26.6208,0.116512
+1424,34.5107,28.9766,27.8911,0.069152,0.868928,0.006144,0.005856,0.028096,0.094528,0.096832,26.6055,0.116032
+1425,33.609,29.7539,29.3724,0.069472,0.990464,0.00704,0.005536,0.027264,0.096288,0.09792,27.9652,0.113184
+1426,32.6323,30.6445,29.1009,0.068416,0.87584,0.006848,0.004096,0.028672,0.096256,0.098304,27.8077,0.114688
+1427,33.3507,29.9844,27.8873,0.069632,0.873536,0.00704,0.005504,0.027328,0.096256,0.097472,26.5961,0.1144
+1428,34.6039,28.8984,29.1418,0.068384,0.892928,0.008096,0.004192,0.028672,0.095488,0.097024,27.8323,0.114688
+1429,33.1477,30.168,29.0996,0.069408,0.8616,0.006976,0.0056,0.027168,0.095872,0.09664,27.8235,0.112832
+1430,33.2727,30.0547,27.8817,0.069792,0.852064,0.008,0.004288,0.028672,0.095808,0.096704,26.6114,0.115008
+1431,33.565,29.793,29.2514,0.06944,0.97936,0.0064,0.006144,0.028096,0.094848,0.108064,27.845,0.114048
+1432,32.888,30.4062,28.0141,0.069632,0.952192,0.006272,0.005728,0.02704,0.095904,0.096608,26.6465,0.114176
+1433,34.7213,28.8008,29.1505,0.069312,0.885056,0.006272,0.006016,0.028544,0.096384,0.098304,27.8457,0.114912
+1434,32.9091,30.3867,29.2086,0.069664,0.966112,0.006656,0.005344,0.027424,0.094208,0.098304,27.8275,0.113408
+1435,33.3464,29.9883,27.8828,0.069376,0.860576,0.006144,0.006144,0.028352,0.094528,0.096256,26.6056,0.115904
+1436,34.3901,29.0781,27.9225,0.068864,0.850752,0.007424,0.004832,0.028,0.09488,0.108576,26.6459,0.11328
+1437,34.4642,29.0156,29.1369,0.069632,0.871648,0.006944,0.005632,0.028256,0.104928,0.096704,27.84,0.113152
+1438,32.7785,30.5078,27.8392,0.069568,0.854784,0.007712,0.004608,0.028256,0.096,0.096896,26.5687,0.11264
+1439,34.097,29.3281,28.0105,0.069184,0.982528,0.007072,0.005504,0.027296,0.095808,0.096608,26.6118,0.114688
+1440,34.4456,29.0312,29.1363,0.068928,0.850656,0.007232,0.004864,0.027936,0.094848,0.0976,27.8553,0.128928
+1441,32.1124,31.1406,29.4379,0.069632,1.1833,0.007936,0.012992,0.031936,0.096096,0.097248,27.8241,0.114624
+1442,32.5327,30.7383,27.9958,0.069056,0.966464,0.006976,0.004224,0.028544,0.094208,0.09792,26.6141,0.114272
+1443,33.355,29.9805,29.486,0.068544,1.21226,0.006304,0.006144,0.032768,0.096256,0.098336,27.8522,0.113184
+1444,32.9091,30.3867,27.9184,0.069664,0.991168,0.006176,0.005728,0.028096,0.095136,0.09632,26.5126,0.113472
+1445,33.9208,29.4805,29.2967,0.069632,1.1463,0.01648,0.004576,0.03072,0.095808,0.096384,27.3792,0.457568
+1446,33.0152,30.2891,29.1245,0.069504,0.887008,0.007968,0.00432,0.028672,0.096096,0.097504,27.8189,0.114464
+1447,32.8416,30.4492,27.945,0.068352,0.952192,0.00752,0.004768,0.028672,0.09616,0.097824,26.5753,0.114208
+1448,34.0109,29.4023,28.0637,0.069632,1.00899,0.006816,0.00528,0.027488,0.094208,0.111776,26.6249,0.114688
+1449,34.3072,29.1484,29.1785,0.076288,0.884896,0.007296,0.004992,0.03072,0.095648,0.096864,27.8671,0.114688
+1450,33.0451,30.2617,27.9345,0.0696,0.919584,0.007776,0.004512,0.028576,0.095552,0.097088,26.5973,0.114496
+1451,34.4503,29.0273,27.8515,0.069408,0.902112,0.007648,0.004608,0.028672,0.096256,0.097536,26.5306,0.114688
+1452,34.5666,28.9297,29.0836,0.069632,0.888864,0.007456,0.0048,0.028256,0.094624,0.09776,27.7776,0.114624
+1453,33.1649,30.1523,29.1123,0.069024,0.877184,0.007776,0.005504,0.027648,0.096256,0.09792,27.8163,0.114688
+1454,33.0963,30.2148,27.934,0.069408,0.868736,0.006144,0.005728,0.02816,0.09472,0.096672,26.6506,0.113856
+1455,34.0743,29.3477,29.1574,0.069664,0.972192,0.00672,0.005824,0.027968,0.095232,0.098048,27.767,0.114688
+1456,32.9176,30.3789,27.8835,0.068864,0.88512,0.006528,0.006144,0.028032,0.094848,0.097728,26.5829,0.113376
+1457,34.9059,28.6484,29.1156,0.069504,0.884928,0.007296,0.004992,0.028672,0.095872,0.098272,27.8102,0.115904
+1458,33.1864,30.1328,29.0955,0.069152,0.868768,0.006592,0.005312,0.027456,0.095648,0.096864,27.8118,0.113856
+1459,33.2166,30.1055,27.8957,0.068416,0.885888,0.007008,0.005536,0.027232,0.095584,0.096896,26.5946,0.114592
+1460,34.4921,28.9922,27.878,0.069344,0.85632,0.006784,0.00512,0.027616,0.096128,0.108672,26.5949,0.113056
+1461,34.6696,28.8438,29.081,0.069504,0.856192,0.007872,0.005504,0.027584,0.096256,0.098336,27.8048,0.11488
+1462,31.3918,31.8555,28.2436,0.06928,1.21258,0.006336,0.005632,0.027136,0.111744,0.104352,26.5917,0.11488
+1463,34.8869,28.6641,28.0131,0.069472,1.02051,0.006304,0.006144,0.027968,0.094752,0.096416,26.5766,0.114848
+1464,34.5479,28.9453,29.0509,0.069632,0.896992,0.006176,0.005792,0.028064,0.097216,0.103616,27.7287,0.114688
+1465,33.1349,30.1797,28.375,0.069632,0.910752,0.006752,0.005792,0.028096,0.095136,0.098304,27.0459,0.114688
+1466,33.8804,29.5156,28.7242,0.068576,0.903136,0.006176,0.005728,0.028768,0.094528,0.09744,27.407,0.112832
+1467,33.5079,29.8438,29.2291,0.070848,0.992064,0.007168,0.00512,0.028384,0.094496,0.096256,27.8221,0.11264
+1468,32.8964,30.3984,28.0084,0.069664,1.02429,0.006368,0.005568,0.0272,0.10784,0.09696,26.5556,0.114912
+1469,34.2842,29.168,29.2661,0.068608,0.995296,0.007584,0.004704,0.028672,0.096256,0.096256,27.8548,0.113952
+1470,33.2857,30.043,29.1533,0.069664,0.868064,0.0064,0.005504,0.027264,0.095776,0.096736,27.8609,0.123008
+1471,32.7324,30.5508,27.9613,0.069664,0.9088,0.006624,0.005888,0.02816,0.096032,0.097216,26.6333,0.115648
+1472,34.5107,28.9766,27.8591,0.06928,0.866272,0.006656,0.005312,0.027456,0.095968,0.102688,26.5708,0.114688
+1473,34.2063,29.2344,29.1205,0.069728,0.888288,0.006592,0.005984,0.028288,0.094752,0.110592,27.8016,0.114688
+1474,33.2166,30.1055,27.8317,0.069632,0.888704,0.006272,0.005696,0.027072,0.095936,0.096608,26.5277,0.114112
+1475,34.4549,29.0234,27.863,0.069056,0.91392,0.006208,0.006144,0.028448,0.096064,0.098144,26.5324,0.11264
+1476,34.3118,29.1445,29.2113,0.06976,0.9672,0.007296,0.004832,0.028128,0.094912,0.096256,27.83,0.112864
+1477,32.9642,30.3359,29.1223,0.069824,0.930752,0.00704,0.005504,0.027264,0.095968,0.0976,27.7739,0.1144
+1478,33.1177,30.1953,27.9745,0.06848,0.948064,0.006304,0.005728,0.028448,0.10032,0.101056,26.6031,0.113024
+1479,33.9523,29.4531,29.1799,0.070784,0.93888,0.00784,0.019808,0.027648,0.095904,0.102208,27.8042,0.11264
+1480,33.1993,30.1211,27.8696,0.069504,0.88144,0.007776,0.004512,0.02848,0.095968,0.096736,26.5707,0.114496
+1481,33.1392,30.1758,28.6114,0.068384,0.955584,0.006976,0.005536,0.027232,0.09536,0.096992,26.9416,0.413696
+1482,34.4364,29.0391,29.27,0.07168,0.94928,0.007136,0.00416,0.028608,0.095392,0.098272,27.9008,0.114688
+1483,33.264,30.0625,27.9409,0.069664,0.890624,0.006368,0.006144,0.028192,0.09472,0.097568,26.634,0.1136
+1484,34.5339,28.957,27.8958,0.069664,0.917472,0.007264,0.00496,0.027936,0.09504,0.097792,26.5627,0.113056
+1485,34.1789,29.2578,29.1485,0.069664,0.917472,0.007584,0.004704,0.028704,0.09568,0.096768,27.8155,0.112448
+1486,33.0749,30.2344,27.9529,0.06816,0.948224,0.006144,0.00576,0.028224,0.0952,0.098144,26.589,0.11408
+1487,34.4225,29.0508,27.9286,0.070688,0.908256,0.007904,0.005472,0.027584,0.096256,0.09744,26.6013,0.113664
+1488,33.7064,29.668,29.2106,0.069664,0.974816,0.006144,0.014336,0.028192,0.094464,0.0976,27.8122,0.113248
+1489,33.3811,29.957,29.0706,0.069152,0.855616,0.006912,0.005536,0.027392,0.095552,0.09696,27.7975,0.116
+1490,32.9345,30.3633,27.9702,0.070368,0.957856,0.006848,0.004096,0.028672,0.095584,0.096928,26.5948,0.11504
+1491,34.4688,29.0117,29.2034,0.068544,0.890048,0.006976,0.005568,0.028224,0.095232,0.097984,27.8961,0.11472
+1492,33.2122,30.1094,27.836,0.069568,0.899136,0.007712,0.004576,0.028224,0.10432,0.097056,26.5107,0.114656
+1493,34.7213,28.8008,27.8663,0.068736,0.862816,0.006432,0.006144,0.028192,0.096224,0.10496,26.5789,0.113952
+1494,34.52,28.9688,29.8893,0.066144,0.882816,0.006176,0.005696,0.028608,0.09616,0.096864,28.594,0.112768
+1495,32.3151,30.9453,27.9286,0.069248,0.91584,0.007744,0.004544,0.028672,0.096256,0.09728,26.5955,0.113536
+1496,28.4476,35.1523,27.8813,0.069632,0.886784,0.007808,0.00448,0.028544,0.095744,0.096928,26.5769,0.114496
+1497,34.3624,29.1016,29.1246,0.068992,0.918144,0.00768,0.004608,0.028672,0.095872,0.09664,27.7914,0.112672
+1498,33.011,30.293,27.8861,0.070208,0.917504,0.007712,0.004576,0.02832,0.094592,0.097472,26.5508,0.114944
+1499,34.2338,29.2109,27.9204,0.069632,0.888608,0.006368,0.006144,0.028,0.09488,0.098208,26.6152,0.113408
+1500,34.367,29.0977,29.1524,0.07072,0.93888,0.006208,0.005824,0.028128,0.095072,0.098304,27.7945,0.114752
+1501,32.8753,30.418,29.3465,0.068256,1.00352,0.007168,0.005088,0.028672,0.101632,0.110944,27.9065,0.114688
+1502,32.5949,30.6797,28.0331,0.069632,0.976896,0.007872,0.004416,0.028544,0.095552,0.097088,26.6383,0.11472
+1503,34.2521,29.1953,29.2541,0.06992,0.995424,0.006208,0.006144,0.028352,0.095744,0.097088,27.8405,0.114688
+1504,32.8584,30.4336,27.8733,0.069632,0.863232,0.00704,0.004224,0.028672,0.100352,0.100352,26.5869,0.112896
+1505,34.5572,28.9375,29.1358,0.068576,0.882656,0.007168,0.00512,0.028384,0.095712,0.097088,27.8376,0.113472
+1506,33.0878,30.2227,29.144,0.069568,0.966688,0.007104,0.004096,0.028672,0.095616,0.096896,27.7607,0.114656
+1507,33.29,30.0391,27.8818,0.068384,0.85808,0.007552,0.004736,0.028672,0.09552,0.096992,26.6076,0.114272
+1508,34.618,28.8867,27.8842,0.070208,0.856224,0.007552,0.004736,0.028064,0.095872,0.09696,26.6112,0.113376
+1509,34.4688,29.0117,29.1033,0.069632,0.898656,0.00656,0.005792,0.026976,0.095968,0.096576,27.7887,0.1144
+1510,32.254,31.0039,27.9184,0.069536,0.933984,0.008064,0.004224,0.04448,0.095968,0.09712,26.5522,0.112768
+1511,35.526,28.1484,27.8711,0.069216,0.85264,0.00784,0.005504,0.027584,0.096096,0.096416,26.6007,0.11504
+1512,33.9928,29.418,29.1695,0.068608,0.98144,0.00672,0.005216,0.027584,0.094176,0.09808,27.7748,0.112864
+1513,32.9303,30.3672,28.3831,0.069632,0.974432,0.006592,0.006048,0.028256,0.094688,0.09792,26.991,0.114528
+1514,34.2292,29.2148,28.6479,0.06848,0.840864,0.007008,0.004096,0.028672,0.11264,0.098016,27.3739,0.11424
+1515,33.2986,30.0312,29.2471,0.069632,1.01581,0.007584,0.004704,0.028672,0.095904,0.09664,27.8139,0.114304
+1516,32.8289,30.4609,28.0311,0.069728,1.01552,0.006816,0.004096,0.028672,0.096192,0.096352,26.5975,0.116288
+1517,34.2567,29.1914,27.9982,0.069568,1.00358,0.007584,0.004704,0.028672,0.095456,0.0968,26.5788,0.113024
+1518,34.2292,29.2148,29.241,0.069152,1.03229,0.006528,0.005376,0.027392,0.096256,0.0976,27.7921,0.114304
+1519,32.888,30.4062,28.0107,0.06896,1.01674,0.007584,0.004704,0.028672,0.09568,0.098016,26.5768,0.113504
+1520,34.2567,29.1914,27.968,0.069728,0.979392,0.007296,0.004928,0.028064,0.094976,0.098208,26.5708,0.114688
+1521,34.6508,28.8594,29.07,0.068288,0.887872,0.007008,0.005536,0.027328,0.096256,0.097632,27.7671,0.113024
+1522,33.0408,30.2656,29.1412,0.069632,0.938208,0.006336,0.005664,0.028032,0.094656,0.096768,27.7893,0.11264
+1523,33.0237,30.2812,27.8367,0.067872,0.897024,0.00752,0.004768,0.028672,0.096256,0.098304,26.5216,0.114688
+1524,34.5526,28.9414,29.0645,0.069664,0.90704,0.006368,0.005536,0.028256,0.095232,0.097696,27.7408,0.11392
+1525,32.1245,31.1289,28.1313,0.071616,1.12234,0.006176,0.006144,0.028192,0.09584,0.097088,26.5892,0.114688
+1526,32.3764,30.8867,29.2168,0.069088,0.99904,0.02752,0.005376,0.027424,0.095584,0.104576,27.7748,0.113312
+1527,34.7448,28.7812,29.1328,0.069312,0.989504,0.008032,0.005504,0.027424,0.096096,0.096416,27.7273,0.113216
+1528,32.5741,30.6992,27.9545,0.069632,0.999136,0.006432,0.005472,0.027296,0.095808,0.096704,26.5394,0.114624
+1529,34.4967,28.9883,27.8961,0.06912,0.926368,0.006272,0.006144,0.028192,0.094688,0.09776,26.5544,0.113152
+1530,34.1424,29.2891,29.1349,0.075776,0.935392,0.006688,0.005152,0.027616,0.096256,0.097696,27.777,0.113312
+1531,32.888,30.4062,27.882,0.069696,0.934016,0.006496,0.006048,0.028192,0.094784,0.097824,26.5303,0.114688
+1532,32.8331,30.457,28.1523,0.06928,1.18253,0.01952,0.005024,0.032672,0.094304,0.096256,26.538,0.114688
+1533,35.526,28.1484,29.182,0.069504,0.947904,0.006592,0.005952,0.028224,0.094848,0.099424,27.8107,0.118784
+1534,32.7408,30.543,29.2594,0.069632,1.00538,0.006336,0.005568,0.0272,0.096128,0.096384,27.8397,0.113056
+1535,32.8247,30.4648,27.8911,0.06944,0.956672,0.007968,0.005504,0.027488,0.095936,0.096672,26.5174,0.113984
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..af44264
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,34.8499,28.7186,27.5392,0.070034,0.844034,0.00849959,0.00562497,0.0292136,0.0971116,0.0999431,26.2694,0.115381
+max_1024,38.1293,31.457,29.52,0.087808,1.69184,0.026048,0.025312,0.049568,0.117664,0.387552,28.2889,0.436224
+min_1024,31.7894,26.2266,26.7116,0.06608,0.741344,0.006144,0.004064,0.0272,0.094176,0.096384,25.5283,0.111232
+512,34.5747,28.9229,27.1014,0.067136,0.879232,0.008288,0.015936,0.028864,0.095872,0.0968,25.7956,0.113632
+513,35.4472,28.2109,27.1061,0.069632,0.868288,0.017088,0.005888,0.028832,0.096544,0.098304,25.8048,0.116736
+514,35.2641,28.3574,28.2785,0.070912,0.770816,0.018144,0.004384,0.028672,0.096256,0.098304,27.0765,0.11456
+515,33.4827,29.8662,27.3654,0.069632,1.14813,0.008128,0.00496,0.028672,0.096256,0.098304,25.7966,0.114688
+516,33.3703,29.9668,27.2104,0.069408,0.989184,0.008064,0.01328,0.028672,0.096288,0.100352,25.7925,0.112672
+517,36.2439,27.5908,28.4793,0.069632,0.886016,0.008096,0.00496,0.038912,0.106496,0.11264,27.136,0.116512
+518,34.5153,28.9727,27.5213,0.069888,0.857856,0.008032,0.004512,0.02864,0.095968,0.098272,26.2452,0.112864
+519,34.8679,28.6797,28.0884,0.069632,0.863808,0.008288,0.005472,0.027648,0.102368,0.098336,26.7998,0.112992
+520,34.4063,29.0645,28.2993,0.069632,0.794624,0.008224,0.005376,0.028736,0.096128,0.098752,27.0846,0.113184
+521,33.5584,29.7988,27.2138,0.069664,0.965984,0.00816,0.004768,0.028672,0.096256,0.097952,25.829,0.113408
+522,35.3713,28.2715,27.1196,0.069792,0.867264,0.007296,0.0056,0.028544,0.094688,0.099488,25.8343,0.11264
+523,35.1999,28.4092,29.4932,0.069248,1.11475,0.008192,0.005728,0.028736,0.096256,0.098656,27.9572,0.114368
+524,32.8079,30.4805,27.0993,0.06976,0.856608,0.008192,0.005152,0.02864,0.09696,0.09856,25.8209,0.114496
+525,35.5519,28.1279,27.0283,0.068384,0.78848,0.008192,0.005728,0.02864,0.096,0.0984,25.8211,0.113376
+526,35.5642,28.1182,28.3027,0.069408,0.792032,0.008096,0.004832,0.028448,0.09648,0.09824,27.0912,0.113952
+527,33.9354,29.4678,27.0462,0.06848,0.803872,0.007488,0.005792,0.028672,0.096256,0.097856,25.8216,0.116192
+528,35.5926,28.0957,27.0665,0.069088,0.788032,0.007328,0.005568,0.028448,0.095904,0.098816,25.8585,0.114816
+529,35.4068,28.2432,28.3124,0.068384,0.790528,0.008192,0.00576,0.028192,0.0968,0.104768,27.0971,0.11264
+530,33.7642,29.6172,27.138,0.069664,0.813088,0.00736,0.0048,0.028768,0.096288,0.098272,25.8987,0.121024
+531,35.3664,28.2754,28.3026,0.069792,0.80208,0.00816,0.004704,0.028672,0.09744,0.098272,27.0796,0.113952
+532,34.5607,28.9346,28.2462,0.069856,0.772096,0.008192,0.004096,0.028672,0.096256,0.098336,27.0561,0.11264
+533,34.2006,29.2393,27.0181,0.0704,0.772256,0.008192,0.005824,0.028576,0.096128,0.0968,25.8253,0.114688
+534,35.718,27.9971,27.4439,0.068544,0.76736,0.008096,0.0048,0.028512,0.09616,0.098592,26.2588,0.113024
+535,35.1419,28.4561,29.0739,0.069408,0.762592,0.008192,0.005824,0.028608,0.096192,0.098528,27.8913,0.113248
+536,33.2781,30.0498,26.9973,0.070208,0.765952,0.008192,0.005184,0.02864,0.096704,0.097952,25.8115,0.113024
+537,35.6385,28.0596,27.0623,0.070784,0.768896,0.008224,0.005952,0.028448,0.096608,0.098208,25.8716,0.113504
+538,35.5852,28.1016,28.3119,0.069952,0.75776,0.007904,0.004384,0.028672,0.096288,0.098272,27.1356,0.113024
+539,33.6765,29.6943,28.3521,0.069632,0.851136,0.006976,0.006144,0.028672,0.096256,0.098336,27.0807,0.114272
+540,34.188,29.25,26.9968,0.069664,0.747552,0.00816,0.005536,0.028512,0.094976,0.11264,25.8167,0.113088
+541,35.5075,28.1631,28.3484,0.069632,0.82864,0.008096,0.004992,0.028672,0.096256,0.098112,27.1014,0.11264
+542,34.0618,29.3584,27.0822,0.06976,0.802912,0.00752,0.004768,0.028672,0.09616,0.0984,25.8601,0.11392
+543,35.6683,28.0361,27.076,0.069632,0.763616,0.008192,0.005472,0.027584,0.09632,0.099776,25.8924,0.113024
+544,34.981,28.5869,28.4269,0.072352,0.93296,0.007008,0.00416,0.032768,0.096256,0.098304,27.0684,0.114688
+545,34.1026,29.3232,27.0179,0.069472,0.803232,0.008096,0.004608,0.028672,0.102432,0.099808,25.7869,0.114688
+546,35.7492,27.9727,27.0303,0.070112,0.76016,0.00784,0.004416,0.028672,0.096288,0.098304,25.8498,0.114688
+547,35.5531,28.127,28.2727,0.069984,0.766272,0.008352,0.005984,0.028704,0.096192,0.098048,27.0851,0.114048
+548,33.1241,30.1895,27.4543,0.082784,1.12234,0.019872,0.004672,0.028672,0.104384,0.09824,25.8797,0.113632
+549,35.2253,28.3887,27.04,0.069888,0.77776,0.00816,0.004704,0.028672,0.096256,0.098304,25.8414,0.114816
+550,36.2632,27.5762,28.3136,0.069376,0.773728,0.006816,0.004224,0.028544,0.096256,0.098304,27.1234,0.11296
+551,34.0697,29.3516,27.0333,0.069376,0.772512,0.008224,0.00608,0.02864,0.096352,0.099392,25.8385,0.114208
+552,34.6649,28.8477,29.178,0.066368,0.816928,0.008288,0.005568,0.028512,0.096512,0.106656,27.9349,0.114272
+553,34.0154,29.3984,27.0172,0.069664,0.761312,0.008096,0.004704,0.028672,0.097632,0.098656,25.8338,0.114688
+554,35.5161,28.1562,27.0684,0.069632,0.808576,0.008096,0.004608,0.028672,0.096224,0.098304,25.8368,0.117568
+555,35.5976,28.0918,28.3571,0.069664,0.854464,0.008192,0.00592,0.028768,0.096384,0.098304,27.0807,0.114688
+556,34.1174,29.3105,27.0284,0.069952,0.77264,0.008192,0.005408,0.028384,0.095232,0.099424,25.8283,0.120864
+557,35.489,28.1777,27.0452,0.069632,0.763168,0.008096,0.004928,0.028672,0.096288,0.098304,25.8601,0.116096
+558,35.1407,28.457,28.4565,0.069408,0.872672,0.008192,0.005536,0.028608,0.096,0.098432,27.1647,0.11296
+559,33.7909,29.5938,28.412,0.06976,0.931456,0.00816,0.004576,0.029952,0.096416,0.098624,27.0584,0.11472
+560,34.0403,29.377,27.0636,0.069536,0.835232,0.008096,0.00464,0.028672,0.096256,0.098304,25.8087,0.114112
+561,35.3079,28.3223,28.3525,0.069632,0.823296,0.008096,0.005504,0.028416,0.09632,0.098304,27.1096,0.113344
+562,33.7931,29.5918,27.1428,0.069856,0.83584,0.008064,0.004448,0.028672,0.096256,0.098304,25.8867,0.114688
+563,35.462,28.1992,27.0866,0.069632,0.841728,0.007392,0.004896,0.028672,0.096256,0.098304,25.8251,0.11456
+564,35.7317,27.9863,29.4863,0.069632,0.77824,0.008192,0.005568,0.0272,0.096256,0.098208,28.2828,0.12016
+565,32.5513,30.7207,27.0357,0.069632,0.802816,0.0072,0.005088,0.028672,0.096256,0.098304,25.8128,0.11488
+566,35.3542,28.2852,27.1024,0.069664,0.830976,0.006624,0.005184,0.028704,0.096192,0.098592,25.852,0.114528
+567,35.7467,27.9746,28.244,0.069664,0.771776,0.008096,0.00448,0.028672,0.096256,0.098304,27.0536,0.11312
+568,34.2635,29.1855,27.092,0.069632,0.75776,0.008224,0.005152,0.027584,0.096256,0.099488,25.9142,0.113728
+569,35.2787,28.3457,27.1508,0.06976,0.893248,0.00816,0.005504,0.028864,0.096064,0.098112,25.8376,0.113536
+570,35.5383,28.1387,28.2889,0.069376,0.811168,0.00624,0.0056,0.028576,0.094848,0.098304,27.0602,0.114592
+571,33.9996,29.4121,27.0574,0.069632,0.800768,0.008192,0.005792,0.039264,0.1024,0.098304,25.8192,0.11392
+572,35.5803,28.1055,28.3548,0.069312,0.84032,0.008128,0.00448,0.028704,0.097376,0.098272,27.096,0.112224
+573,33.8468,29.5449,28.301,0.07072,0.805856,0.008192,0.005824,0.028544,0.10592,0.098496,27.063,0.114464
+574,34.1538,29.2793,27.0349,0.071136,0.797088,0.006272,0.005536,0.028352,0.095168,0.099328,25.8176,0.1144
+575,35.2205,28.3926,27.1463,0.069728,0.833952,0.016448,0.005696,0.02912,0.096256,0.098176,25.8823,0.114624
+576,35.2084,28.4023,28.3237,0.069536,0.811104,0.007488,0.0048,0.028448,0.096224,0.098368,27.0932,0.114592
+577,33.7575,29.623,27.0915,0.06976,0.838528,0.007424,0.004864,0.028672,0.096288,0.098272,25.8334,0.114304
+578,34.9273,28.6309,27.1462,0.069664,0.921056,0.00816,0.00464,0.028672,0.096256,0.10032,25.8046,0.112832
+579,34.8821,28.668,28.4348,0.06992,0.915584,0.007968,0.005472,0.02752,0.11264,0.099552,27.0809,0.1152
+580,34.097,29.3281,27.5245,0.069632,0.788256,0.008096,0.004416,0.028672,0.100352,0.100256,26.3108,0.114048
+581,35.1793,28.4258,27.958,0.0696,0.818176,0.008192,0.005504,0.02864,0.096896,0.09776,26.7188,0.1144
+582,34.441,29.0352,28.2714,0.069984,0.776576,0.008192,0.004096,0.040992,0.096224,0.104448,27.0579,0.112992
+583,33.7375,29.6406,27.1077,0.069408,0.86224,0.008128,0.004704,0.042976,0.096288,0.104448,25.8048,0.114656
+584,35.7168,27.998,28.2481,0.069632,0.784096,0.008256,0.00432,0.028768,0.09616,0.098304,27.0471,0.111424
+585,33.914,29.4863,28.3181,0.071264,0.823744,0.008192,0.005504,0.028832,0.096128,0.097344,27.0738,0.113312
+586,34.2567,29.1914,26.9765,0.068576,0.777792,0.007872,0.004832,0.028384,0.09456,0.098464,25.7812,0.11488
+587,35.4497,28.209,27.0923,0.069632,0.835584,0.008224,0.0056,0.028352,0.096608,0.098688,25.8336,0.116
+588,35.5457,28.1328,28.326,0.069696,0.854048,0.00816,0.00544,0.029024,0.095872,0.098976,27.0518,0.11296
+589,34.0516,29.3672,27.0909,0.070752,0.811232,0.008096,0.004896,0.028672,0.096256,0.09792,25.8584,0.114688
+590,35.4546,28.2051,27.0523,0.069472,0.86592,0.008128,0.0048,0.028608,0.096064,0.098304,25.7677,0.113312
+591,35.7742,27.9531,28.3426,0.06816,0.861408,0.006528,0.004512,0.028672,0.096352,0.09824,27.0643,0.1144
+592,33.9906,29.4199,27.692,0.074496,0.762048,0.008192,0.005632,0.028416,0.096576,0.098752,26.1816,0.436224
+593,34.4294,29.0449,27.0858,0.072672,0.87008,0.006464,0.006016,0.02848,0.096576,0.098304,25.7924,0.114752
+594,35.2302,28.3848,28.2937,0.070016,0.890752,0.008096,0.00432,0.028672,0.095968,0.098592,26.9845,0.1128
+595,34.4433,29.0332,27.0406,0.068416,0.765472,0.008256,0.004512,0.028672,0.096256,0.09936,25.8549,0.114688
+596,35.4154,28.2363,27.0705,0.069472,0.807072,0.008192,0.005344,0.028672,0.096608,0.098432,25.8432,0.11344
+597,35.6993,28.0117,28.2726,0.07104,0.769856,0.00848,0.00464,0.028672,0.097408,0.097184,27.0823,0.113088
+598,34.1151,29.3125,26.972,0.070592,0.77104,0.008192,0.005568,0.02848,0.094976,0.098304,25.7798,0.115008
+599,34.7802,28.752,27.1484,0.069504,0.88928,0.008192,0.006144,0.028512,0.096,0.100832,25.8366,0.113344
+600,35.5383,28.1387,28.3503,0.069632,0.884736,0.008224,0.004192,0.028544,0.096256,0.099616,27.0376,0.121504
+601,34.2796,29.1719,27.0304,0.069728,0.807136,0.006688,0.005856,0.02832,0.096832,0.098368,25.8028,0.114688
+602,35.3591,28.2812,28.3824,0.069728,0.872192,0.008096,0.004448,0.028672,0.09552,0.098144,27.0917,0.11392
+603,33.8423,29.5488,28.2641,0.06864,0.773088,0.008,0.005472,0.02864,0.096576,0.09888,27.0705,0.114304
+604,33.6422,29.7246,27.1139,0.069536,0.875488,0.008192,0.005408,0.028416,0.095296,0.099296,25.8173,0.114912
+605,35.3103,28.3203,27.0969,0.069504,0.844704,0.008192,0.006112,0.028256,0.098752,0.104448,25.823,0.113984
+606,35.0613,28.5215,28.3313,0.069248,0.854368,0.006176,0.005632,0.028448,0.096864,0.098432,27.052,0.120096
+607,34.1629,29.2715,27.0315,0.069664,0.761888,0.00816,0.006144,0.02848,0.096448,0.098304,25.8469,0.115488
+608,35.5432,28.1348,26.9864,0.069632,0.772096,0.008224,0.005504,0.028672,0.094848,0.098272,25.7925,0.116672
+609,35.3201,28.3125,28.2176,0.069664,0.783104,0.008096,0.005504,0.028576,0.09664,0.098336,27.0135,0.114176
+610,34.2773,29.1738,27,0.071136,0.780352,0.008096,0.004672,0.028704,0.095776,0.098528,25.7987,0.11408
+611,35.7218,27.9941,28.2095,0.069952,0.761888,0.008192,0.006048,0.02864,0.102528,0.098304,27.0193,0.114688
+612,34.0652,29.3555,28.2469,0.068448,0.779296,0.008288,0.0048,0.028384,0.096576,0.098112,27.05,0.11296
+613,33.4095,29.9316,27.0487,0.074368,0.824448,0.007328,0.005952,0.028672,0.110592,0.09968,25.7841,0.113536
+614,36.2966,27.5508,27.0152,0.070048,0.815104,0.008224,0.004064,0.028672,0.097312,0.09888,25.7786,0.114336
+615,35.2982,28.3301,28.2542,0.071072,0.842336,0.00816,0.005472,0.028704,0.096448,0.098784,26.9885,0.114688
+616,34.397,29.0723,26.9574,0.06944,0.760064,0.008192,0.005408,0.028544,0.096128,0.098624,25.7765,0.114496
+617,35.7592,27.9648,27.0205,0.069888,0.776128,0.008064,0.005472,0.027456,0.097472,0.09904,25.8225,0.11456
+618,35.3493,28.2891,28.2214,0.070976,0.802528,0.007392,0.005728,0.028544,0.096544,0.09952,26.9975,0.112672
+619,33.316,30.0156,27.037,0.069632,0.819232,0.00816,0.005952,0.028704,0.096416,0.098304,25.7961,0.114528
+620,36.4568,27.4297,26.9723,0.07024,0.78992,0.008096,0.004864,0.028512,0.09456,0.098272,25.7638,0.114016
+621,35.6124,28.0801,28.3156,0.070848,0.807232,0.008128,0.012864,0.032768,0.096256,0.097824,27.077,0.112768
+622,33.6223,29.7422,27.0541,0.069632,0.855936,0.007904,0.004512,0.028704,0.096224,0.099456,25.777,0.114688
+623,35.4448,28.2129,27.8596,0.06608,0.800256,0.00816,0.00464,0.028672,0.096288,0.099648,26.6425,0.113312
+624,34.8323,28.709,28.212,0.069984,0.7848,0.008192,0.005504,0.028352,0.095168,0.098304,27.0087,0.11296
+625,32.888,30.4062,26.9965,0.069312,0.80656,0.008096,0.005024,0.028672,0.096448,0.099584,25.7682,0.114624
+626,37.0478,26.9922,27.1342,0.070144,0.912832,0.014912,0.005632,0.028608,0.096,0.098816,25.7928,0.1144
+627,35.286,28.3398,28.2791,0.069984,0.8704,0.008224,0.006112,0.028704,0.096224,0.098304,26.9865,0.114688
+628,33.554,29.8027,27.1473,0.069632,0.959008,0.006816,0.005632,0.02848,0.094848,0.098336,25.7698,0.11472
+629,35.9122,27.8457,27.0588,0.069216,0.836576,0.008192,0.006144,0.028448,0.09792,0.105024,25.7939,0.113344
+630,35.6422,28.0566,28.2889,0.07008,0.78848,0.008192,0.005248,0.02752,0.096288,0.099648,27.0808,0.112672
+631,32.8711,30.4219,27.0831,0.07008,0.831712,0.008352,0.005984,0.028672,0.1024,0.107776,25.8097,0.118496
+632,36.5401,27.3672,28.2624,0.069632,0.813088,0.00816,0.004096,0.028672,0.096256,0.098304,27.0312,0.11296
+633,34.1015,29.3242,28.3923,0.069824,0.9264,0.008192,0.013984,0.031008,0.096096,0.09856,27.0336,0.114688
+634,34.0561,29.3633,26.978,0.069664,0.784352,0.008224,0.004064,0.028672,0.108544,0.098304,25.7615,0.114592
+635,35.8493,27.8945,26.9516,0.068352,0.780288,0.008192,0.005824,0.02848,0.095968,0.097056,25.7517,0.115712
+636,35.5778,28.1074,28.2829,0.070656,0.830112,0.008064,0.004576,0.028608,0.108704,0.110496,27.009,0.11264
+637,33.8916,29.5059,26.9667,0.068256,0.810976,0.008192,0.006144,0.028672,0.097408,0.098912,25.7346,0.113472
+638,35.0349,28.543,26.9579,0.070496,0.802208,0.007872,0.0048,0.02864,0.09648,0.098304,25.7371,0.112
+639,35.4056,28.2441,28.2387,0.069984,0.847712,0.008096,0.004928,0.028672,0.096288,0.098272,26.9701,0.114592
+640,33.8736,29.5215,27.526,0.069504,0.863168,0.008192,0.005472,0.028448,0.096224,0.098912,26.2413,0.114688
+641,34.9655,28.5996,27.9224,0.069632,0.88256,0.00816,0.005504,0.028576,0.096288,0.099168,26.6191,0.113472
+642,34.618,28.8867,28.1784,0.069632,0.768,0.008192,0.004096,0.028672,0.09616,0.09824,26.9928,0.11264
+643,34.204,29.2363,27.0377,0.069664,0.785984,0.008096,0.004608,0.028672,0.096288,0.1,25.8297,0.11472
+644,35.4743,28.1895,27.0316,0.069856,0.7936,0.008224,0.0048,0.028576,0.096448,0.099456,25.8179,0.112736
+645,35.2569,28.3633,28.3838,0.069568,0.883616,0.008224,0.005856,0.028576,0.09632,0.097632,27.0786,0.115424
+646,33.3811,29.957,27.1012,0.070144,0.859424,0.008096,0.004768,0.028416,0.095808,0.098656,25.8217,0.114208
+647,35.8217,27.916,27.0742,0.071072,0.850528,0.008224,0.006112,0.028672,0.096256,0.098304,25.8005,0.114528
+648,35.1624,28.4395,28.3096,0.068608,0.91344,0.018432,0.005216,0.02768,0.097856,0.104768,26.9598,0.113728
+649,33.9433,29.4609,27.0944,0.070016,0.858112,0.008224,0.006112,0.02848,0.096448,0.09808,25.8132,0.115744
+650,35.3664,28.2754,28.2446,0.069568,0.807616,0.008224,0.004096,0.028672,0.096224,0.098304,27.0193,0.11264
+651,33.5584,29.7988,28.3866,0.069632,0.954112,0.0064,0.006144,0.028576,0.096352,0.098304,27.0103,0.116768
+652,34.3233,29.1348,27.0438,0.06976,0.831712,0.008192,0.005504,0.028416,0.095136,0.098272,25.7905,0.116384
+653,35.7143,28,27.3695,0.069632,0.792576,0.008128,0.005504,0.028608,0.096256,0.099072,26.1569,0.112864
+654,35.2253,28.3887,29.0121,0.069728,0.771328,0.008096,0.0048,0.02848,0.096576,0.098336,27.8221,0.11264
+655,33.3095,30.0215,27.0025,0.069216,0.774304,0.008288,0.0048,0.028672,0.096256,0.098432,25.8082,0.1144
+656,34.7331,28.791,27.0193,0.071136,0.819744,0.008192,0.004096,0.028672,0.102144,0.09808,25.7741,0.11312
+657,35.662,28.041,28.2763,0.067776,0.784384,0.008192,0.005472,0.028704,0.096224,0.098976,27.0725,0.114016
+658,34.0629,29.3574,28.2526,0.070112,0.761856,0.008224,0.005408,0.028416,0.095168,0.09936,27.0706,0.113504
+659,34.2498,29.1973,26.9911,0.069216,0.783264,0.006144,0.006144,0.028704,0.096064,0.098336,25.7885,0.114688
+660,35.2982,28.3301,28.3201,0.069408,0.848128,0.008096,0.004544,0.028672,0.096256,0.098304,27.0541,0.11264
+661,34.1789,29.2578,26.9535,0.069568,0.773888,0.008416,0.004864,0.028704,0.097568,0.096992,25.7588,0.114688
+662,35.7592,27.9648,26.9811,0.0704,0.772096,0.007456,0.0048,0.028384,0.095872,0.096992,25.7904,0.114688
+663,35.5926,28.0957,29.4888,0.069632,0.78032,0.008224,0.00608,0.028672,0.096256,0.098176,28.2889,0.112544
+664,32.8289,30.4609,27.0172,0.069632,0.778176,0.008096,0.004256,0.028672,0.096256,0.098304,25.8202,0.113632
+665,35.4669,28.1953,27.0377,0.069632,0.798048,0.008224,0.004736,0.028672,0.097312,0.098848,25.8189,0.113312
+666,35.5333,28.1426,28.2604,0.07104,0.811648,0.008192,0.004224,0.029824,0.096384,0.098688,27.0236,0.116736
+667,34.22,29.2227,27.0449,0.0696,0.772096,0.006176,0.006144,0.028672,0.096256,0.098336,25.8536,0.114048
+668,35.2156,28.3965,27.0964,0.0696,0.884864,0.008128,0.00416,0.028672,0.096256,0.098304,25.7925,0.113856
+669,35.4595,28.2012,28.2724,0.069824,0.784384,0.008224,0.005664,0.028576,0.096256,0.098848,27.0664,0.114208
+670,33.9793,29.4297,26.9664,0.068032,0.847776,0.007232,0.004832,0.028896,0.094208,0.098304,25.7024,0.11472
+671,35.5803,28.1055,28.1052,0.069696,0.975264,0.008256,0.00608,0.03072,0.104128,0.098656,26.6997,0.112672
+672,33.7865,29.5977,28.2762,0.069152,0.837248,0.023488,0.004096,0.028672,0.096096,0.098464,27.0029,0.116128
+673,34.6484,28.8613,27.0231,0.071328,0.807104,0.008,0.005504,0.029088,0.096192,0.096896,25.7936,0.11536
+674,34.8869,28.6641,27.5281,0.068672,0.864064,0.008192,0.004096,0.028672,0.096256,0.098304,26.2466,0.113184
+675,35.7492,27.9727,29.1255,0.069696,0.803616,0.007712,0.004576,0.028672,0.096256,0.098304,27.9033,0.113408
+676,33.1778,30.1406,27.0083,0.069632,0.802048,0.008128,0.0048,0.028384,0.09584,0.098336,25.7867,0.114464
+677,35.7342,27.9844,26.9848,0.069536,0.797024,0.00816,0.005472,0.02848,0.095168,0.098304,25.7675,0.115104
+678,35.6919,28.0176,28.2394,0.069248,0.79824,0.008128,0.0048,0.028416,0.09472,0.098304,27.0246,0.11296
+679,33.9838,29.4258,26.9864,0.06976,0.80896,0.008192,0.005504,0.027264,0.09744,0.09856,25.7563,0.114432
+680,35.6819,28.0254,26.9811,0.070016,0.78,0.008096,0.0048,0.02848,0.095904,0.098368,25.7825,0.112896
+681,35.7742,27.9531,28.1955,0.070304,0.75568,0.00832,0.006016,0.028672,0.096256,0.098304,27.0172,0.114688
+682,34.2292,29.2148,27.3569,0.069696,0.757376,0.00816,0.0048,0.028672,0.095872,0.098368,26.1802,0.11376
+683,35.2132,28.3984,27.7893,0.069632,0.777536,0.00736,0.00592,0.028672,0.096256,0.099456,26.5901,0.1144
+684,34.632,28.875,28.1955,0.07024,0.77968,0.008096,0.0048,0.028608,0.09568,0.09808,26.9973,0.112992
+685,34.2155,29.2266,27.1032,0.069632,0.845376,0.008096,0.00464,0.028672,0.096256,0.098304,25.8376,0.114688
+686,35.4522,28.207,27.3492,0.068128,0.784384,0.008192,0.005408,0.028448,0.0952,0.104416,26.142,0.113056
+687,33.9343,29.4688,28.8648,0.076128,1.4744,0.01856,0.006048,0.028576,0.096448,0.098304,26.9517,0.114688
+688,33.5496,29.8066,26.9874,0.06992,0.823872,0.008192,0.005408,0.028576,0.096224,0.098592,25.7419,0.114688
+689,36.171,27.6465,28.3007,0.069632,0.866304,0.006144,0.006144,0.028672,0.096256,0.098304,27.0152,0.11408
+690,33.8266,29.5625,28.3036,0.070144,0.852096,0.00816,0.004128,0.028672,0.096,0.097824,27.0323,0.114336
+691,34.0222,29.3926,27.097,0.068128,0.952352,0.00816,0.006112,0.028576,0.097568,0.105344,25.7167,0.114016
+692,34.9822,28.5859,28.3385,0.0696,0.868768,0.024416,0.004224,0.032768,0.096256,0.099584,27.0262,0.116736
+693,33.858,29.5352,27.2071,0.069632,0.961632,0.008128,0.01328,0.03232,0.1008,0.099328,25.8058,0.116128
+694,35.235,28.3809,27.5543,0.06992,0.896704,0.020992,0.005504,0.037152,0.1048,0.098304,26.2062,0.114656
+695,35.16,28.4414,29.0822,0.070048,0.801056,0.008224,0.005824,0.028576,0.095712,0.098304,27.8579,0.116608
+696,32.5286,30.7422,27.1024,0.070816,0.917984,0.020864,0.004224,0.038784,0.096256,0.099584,25.74,0.113888
+697,35.5654,28.1172,27.0392,0.079872,0.792576,0.008352,0.005984,0.028672,0.097312,0.097376,25.8149,0.114144
+698,35.6969,28.0137,28.2726,0.069568,0.849824,0.008128,0.004864,0.028416,0.096704,0.098304,27.0042,0.112576
+699,33.8356,29.5547,26.9905,0.069632,0.815104,0.008192,0.006144,0.028576,0.106592,0.09968,25.742,0.114592
+700,35.9753,27.7969,26.964,0.069632,0.757408,0.008064,0.004576,0.028704,0.095968,0.10624,25.7798,0.113536
+701,35.3055,28.3242,28.2802,0.069984,0.849408,0.008096,0.004704,0.028768,0.09616,0.098304,27.0108,0.114016
+702,34.2658,29.1836,27.3654,0.069664,0.757728,0.008192,0.004096,0.028704,0.108512,0.098304,26.1775,0.11264
+703,35.1022,28.4883,27.7858,0.068384,0.761824,0.008192,0.005632,0.028512,0.096928,0.098304,26.6035,0.114464
+704,34.6978,28.8203,28.2415,0.069664,0.802784,0.008192,0.005376,0.02864,0.096224,0.09712,27.0209,0.112576
+705,34.0697,29.3516,27.0027,0.069888,0.780608,0.008256,0.005472,0.02864,0.096992,0.098304,25.8002,0.114272
+706,35.435,28.2207,27.4252,0.075584,0.842336,0.008352,0.005568,0.028256,0.096288,0.099104,26.1571,0.11264
+707,35.0133,28.5605,28.2305,0.072512,0.790528,0.008192,0.005568,0.028608,0.096544,0.0984,27.0172,0.112896
+708,34.0041,29.4082,27.0622,0.069792,0.886368,0.008096,0.004608,0.028672,0.095904,0.098336,25.7557,0.114656
+709,35.2909,28.3359,27.0992,0.069632,0.904864,0.006496,0.005984,0.02848,0.096608,0.098304,25.7741,0.11472
+710,35.6571,28.0449,28.2035,0.069408,0.783072,0.008224,0.005472,0.028832,0.096736,0.098304,27.0003,0.113184
+711,34.3187,29.1387,26.9831,0.06976,0.76864,0.008064,0.005472,0.027488,0.09808,0.098528,25.7924,0.114656
+712,35.5432,28.1348,26.9739,0.068256,0.800768,0.008192,0.004096,0.028672,0.096288,0.09808,25.7549,0.11456
+713,35.3225,28.3105,28.2941,0.0688,0.85584,0.008224,0.005664,0.028128,0.0952,0.098304,27.0213,0.11264
+714,32.9218,30.375,27.0401,0.069856,0.870144,0.008064,0.00464,0.028672,0.096256,0.098304,25.7514,0.112768
+715,36.9942,27.0312,28.1743,0.070752,0.774368,0.006848,0.016032,0.028544,0.096224,0.098816,26.9678,0.114912
+716,34.2819,29.1699,28.1395,0.069632,0.779744,0.007904,0.004832,0.02864,0.096384,0.098144,26.9413,0.112928
+717,34.3486,29.1133,26.9063,0.069312,0.764736,0.007648,0.00464,0.028672,0.097696,0.098816,25.7189,0.115904
+718,35.8569,27.8887,26.9752,0.06976,0.766816,0.007584,0.004704,0.028672,0.096256,0.098304,25.7884,0.114688
+719,35.3591,28.2812,28.2582,0.069632,0.851584,0.008096,0.004576,0.028672,0.096416,0.098144,26.9865,0.11456
+720,33.1499,30.166,27.1056,0.068864,0.893408,0.008096,0.004736,0.028704,0.09568,0.098656,25.7944,0.113024
+721,36.2452,27.5898,27.0295,0.069408,0.847936,0.008096,0.005472,0.027776,0.103296,0.099232,25.7536,0.114688
+722,35.4203,28.2324,28.4219,0.069632,0.925696,0.008224,0.005568,0.028608,0.096256,0.098912,27.0643,0.124704
+723,33.6311,29.7344,27.4044,0.0696,0.896288,0.006976,0.005472,0.028544,0.096128,0.097248,26.0895,0.11472
+724,34.618,28.8867,27.9142,0.070656,0.8448,0.019936,0.00464,0.028672,0.096256,0.098304,26.6382,0.112768
+725,34.8703,28.6777,28.1537,0.070432,0.784224,0.00784,0.004608,0.028672,0.096256,0.098304,26.9492,0.114208
+726,33.9185,29.4824,26.9763,0.069824,0.790368,0.00816,0.005216,0.027552,0.096256,0.098304,25.7656,0.115008
+727,35.3274,28.3066,27.0889,0.069632,0.9216,0.008224,0.005792,0.028448,0.096448,0.096608,25.7485,0.113664
+728,35.4866,28.1797,28.3425,0.069536,0.87888,0.008192,0.005344,0.028864,0.096576,0.098592,27.0452,0.111296
+729,33.923,29.4785,27.1147,0.06976,0.933216,0.008256,0.004608,0.043008,0.096256,0.098336,25.7424,0.118848
+730,35.4571,28.2031,27.0377,0.069632,0.898432,0.008096,0.004864,0.02864,0.096256,0.098304,25.7188,0.114688
+731,35.4964,28.1719,28.2803,0.070656,0.821472,0.00816,0.00496,0.02864,0.096256,0.098176,27.0374,0.114592
+732,34.0607,29.3594,27.0133,0.070176,0.825344,0.008192,0.005376,0.028512,0.095328,0.098112,25.7679,0.114304
+733,35.3616,28.2793,28.1455,0.07168,0.774144,0.008224,0.005984,0.028448,0.095648,0.098272,26.9486,0.114528
+734,32.6551,30.623,28.3968,0.069632,0.923648,0.008256,0.0056,0.02848,0.094944,0.09824,27.0553,0.112672
+735,34.9512,28.6113,27.134,0.068576,0.931872,0.008192,0.005856,0.0392,0.096192,0.098336,25.772,0.113696
+736,34.8181,28.7207,27.5313,0.070816,0.922176,0.008128,0.018752,0.028704,0.096288,0.098304,26.1734,0.114688
+737,35.0109,28.5625,29.0697,0.068544,0.839232,0.014592,0.006144,0.0304,0.1064,0.098592,27.7915,0.114304
+738,33.0451,30.2617,26.9906,0.069632,0.8512,0.008192,0.0048,0.042304,0.096384,0.096896,25.7065,0.114688
+739,35.8694,27.8789,27.0152,0.069632,0.759808,0.008192,0.006144,0.028576,0.096288,0.098368,25.8191,0.129024
+740,34.8489,28.6953,28.3075,0.073728,0.841024,0.008128,0.0048,0.028672,0.095584,0.099072,27.0437,0.112768
+741,33.6201,29.7441,27.009,0.07904,0.799552,0.007616,0.004672,0.028672,0.097312,0.101344,25.7679,0.12288
+742,35.4399,28.2168,27.0992,0.06944,0.905248,0.008096,0.012544,0.03072,0.101888,0.098464,25.758,0.11472
+743,34.9083,28.6465,28.2685,0.069632,0.84944,0.008128,0.00464,0.028864,0.096064,0.099584,26.9975,0.114688
+744,34.0697,29.3516,27.0782,0.069664,0.874048,0.008096,0.004608,0.028672,0.096256,0.098336,25.7843,0.11424
+745,35.7317,27.9863,28.2426,0.070144,0.823104,0.008096,0.012704,0.03072,0.09744,0.0984,26.989,0.11296
+746,33.44,29.9043,28.4844,0.069696,0.973536,0.008192,0.00544,0.028896,0.098784,0.113824,27.0734,0.112672
+747,34.1561,29.2773,26.9926,0.070048,0.817152,0.008192,0.006048,0.028448,0.096576,0.09984,25.7532,0.113056
+748,32.9833,30.3184,28.4508,0.079872,0.978272,0.006816,0.005696,0.02848,0.109024,0.097984,27.032,0.112672
+749,36.0158,27.7656,28.3487,0.069824,0.891488,0.008192,0.006144,0.028672,0.096256,0.098336,27.0355,0.114272
+750,33.6179,29.7461,27.0435,0.069664,0.87856,0.007808,0.004512,0.02864,0.096256,0.098336,25.7454,0.114336
+751,35.2035,28.4062,27.2082,0.068096,0.978752,0.00816,0.020576,0.034112,0.09616,0.098592,25.7891,0.11472
+752,35.2059,28.4043,28.3277,0.070112,0.880736,0.008096,0.004288,0.04656,0.096128,0.098976,27.009,0.113824
+753,33.733,29.6445,27.0078,0.069664,0.868896,0.006432,0.006048,0.028384,0.096096,0.09824,25.7092,0.124928
+754,35.1793,28.4258,26.871,0.069632,0.763904,0.008192,0.004096,0.028672,0.096128,0.09792,25.6877,0.114688
+755,34.7354,28.7891,28.4407,0.069792,1.01376,0.008128,0.005472,0.028608,0.09696,0.105728,26.9976,0.114688
+756,33.137,30.1777,27.4729,0.071008,0.928416,0.008192,0.004192,0.028576,0.096256,0.098304,26.1241,0.113888
+757,36.7288,27.2266,27.8263,0.06992,0.795264,0.008192,0.005504,0.028608,0.094912,0.102272,26.6077,0.113888
+758,34.3901,29.0781,28.3077,0.06784,0.916448,0.008224,0.0048,0.02896,0.09584,0.098528,26.9744,0.112608
+759,34.3279,29.1309,26.9461,0.070176,0.749568,0.008224,0.00592,0.028512,0.096288,0.098336,25.7756,0.113504
+760,32.7177,30.5645,27.4658,0.069632,0.88064,0.006144,0.015968,0.02912,0.104416,0.110336,26.1368,0.112672
+761,35.1842,28.4219,29.0531,0.06976,0.753664,0.008032,0.005472,0.028736,0.096064,0.097248,27.8814,0.11264
+762,33.4969,29.8535,26.9047,0.069344,0.76192,0.008096,0.005568,0.027616,0.096288,0.098272,25.7249,0.112672
+763,35.4792,28.1855,26.9801,0.077472,0.817952,0.007264,0.014368,0.028736,0.097088,0.098336,25.7245,0.114368
+764,34.5316,28.959,28.3484,0.07792,0.931712,0.008096,0.004704,0.028672,0.096288,0.099648,26.9862,0.115104
+765,32.2642,30.9941,27.0075,0.06976,0.862816,0.026048,0.00592,0.028512,0.0952,0.09968,25.7051,0.114464
+766,37.4242,26.7207,27.0506,0.070048,0.893184,0.008096,0.005536,0.027616,0.0976,0.098112,25.7361,0.114368
+767,35.5062,28.1641,28.2662,0.069728,0.834496,0.007328,0.005952,0.028672,0.096256,0.098304,27.011,0.114464
+768,34.072,29.3496,26.9394,0.069728,0.765888,0.00816,0.005408,0.028544,0.095104,0.098016,25.7539,0.114688
+769,34.894,28.6582,28.0904,0.069632,1.0199,0.008192,0.005664,0.0312,0.10224,0.10256,26.6383,0.112672
+770,33.2986,30.0312,28.4276,0.076896,0.977792,0.016448,0.004256,0.028608,0.096128,0.108544,27.0041,0.114848
+771,32.7827,30.5039,27.1893,0.069952,1.02029,0.006336,0.006144,0.028448,0.108544,0.104672,25.7305,0.1144
+772,37.1553,26.9141,27.5345,0.069632,0.978048,0.008096,0.005088,0.028672,0.106592,0.098208,26.1263,0.113824
+773,34.6696,28.8438,29.0798,0.069888,0.831488,0.007936,0.018688,0.028672,0.09632,0.098272,27.8159,0.112672
+774,32.869,30.4238,27.0004,0.067584,0.851968,0.00832,0.005536,0.028544,0.09648,0.098528,25.7292,0.114272
+775,35.521,28.1523,26.9988,0.073728,0.822272,0.00736,0.005952,0.028672,0.096288,0.098304,25.7527,0.113504
+776,35.1745,28.4297,28.3197,0.069696,0.917504,0.008192,0.005216,0.027712,0.097376,0.098816,26.9806,0.114656
+777,34.3118,29.1445,26.937,0.069216,0.796672,0.008128,0.005024,0.028672,0.096288,0.098272,25.7202,0.114528
+778,35.3933,28.2539,27.009,0.069728,0.837536,0.008192,0.005536,0.028608,0.094912,0.114656,25.7364,0.113472
+779,35.2836,28.3418,28.3491,0.068352,0.911232,0.008192,0.006048,0.028384,0.096192,0.098208,27.0178,0.114688
+780,33.7197,29.6562,27.0725,0.069632,0.916512,0.00736,0.005568,0.039264,0.096224,0.098336,25.7249,0.114688
+781,35.2277,28.3867,28.2916,0.068096,0.872448,0.00832,0.014208,0.028672,0.098336,0.105792,26.9827,0.113056
+782,34.2315,29.2129,28.1605,0.07008,0.779648,0.008096,0.0048,0.0288,0.096256,0.098336,26.9609,0.113632
+783,34.147,29.2852,26.9011,0.069888,0.762208,0.007584,0.004704,0.028672,0.098304,0.098304,25.7167,0.114688
+784,33.0408,30.2656,28.5555,0.0696,0.988832,0.014912,0.005184,0.027584,0.106496,0.11264,27.1173,0.112896
+785,33.5958,29.7656,28.8666,0.069632,1.45987,0.008096,0.004544,0.036384,0.096128,0.09792,26.9808,0.113184
+786,35.8017,27.9316,27.0771,0.068448,0.91328,0.00624,0.0136,0.030656,0.096416,0.098944,25.7352,0.114304
+787,35.3738,28.2695,27.1094,0.084672,0.97056,0.008096,0.005472,0.027552,0.097504,0.099104,25.7024,0.11408
+788,35.4546,28.2051,28.258,0.06976,0.846272,0.008192,0.005504,0.02864,0.096288,0.0984,26.9891,0.115808
+789,33.5364,29.8184,27.1718,0.068576,0.970752,0.007488,0.0048,0.038208,0.0984,0.098912,25.77,0.114688
+790,35.6645,28.0391,26.8861,0.069664,0.770016,0.008192,0.00512,0.027648,0.096256,0.098304,25.6963,0.114688
+791,35.3128,28.3184,28.4273,0.069696,0.963552,0.007616,0.00464,0.028672,0.096256,0.098336,27.0438,0.11472
+792,33.8983,29.5,27.3937,0.069376,0.882144,0.008096,0.004992,0.028672,0.096256,0.098336,26.0926,0.113216
+793,34.1402,29.291,27.9078,0.069184,0.885376,0.02048,0.006144,0.028672,0.099776,0.104256,26.5797,0.114176
+794,34.9012,28.6523,28.3259,0.069632,0.909312,0.008352,0.0056,0.028576,0.094688,0.099744,26.9953,0.114688
+795,34.2017,29.2383,26.8821,0.069664,0.770016,0.008192,0.00608,0.028704,0.09632,0.098272,25.69,0.11488
+796,34.0607,29.3594,28.4716,0.069664,0.930048,0.018048,0.00448,0.028672,0.104384,0.098368,27.1048,0.113152
+797,35.0733,28.5117,28.182,0.069632,0.792544,0.008096,0.005472,0.028512,0.09632,0.097152,26.9699,0.1144
+798,33.8132,29.5742,27.0257,0.06832,0.872288,0.008128,0.004288,0.028672,0.095872,0.100736,25.7331,0.114304
+799,33.7976,29.5879,27.1637,0.069632,0.980992,0.00768,0.004608,0.030528,0.096448,0.098336,25.7618,0.11376
+800,36.4231,27.4551,28.3195,0.069632,0.91056,0.008096,0.004864,0.028608,0.096448,0.098304,26.9876,0.115392
+801,33.4575,29.8887,28.3197,0.069632,0.93152,0.008096,0.004512,0.02976,0.095232,0.09824,26.9696,0.113152
+802,34.2292,29.2148,27.134,0.069248,0.944576,0.00816,0.005248,0.041664,0.096416,0.098336,25.7556,0.114688
+803,35.189,28.418,28.3491,0.07024,0.921632,0.00816,0.005984,0.039072,0.096256,0.098336,26.9962,0.113184
+804,33.3464,29.9883,27.0275,0.069632,0.876544,0.008192,0.005344,0.028576,0.095104,0.100096,25.7293,0.114688
+805,35.7967,27.9355,27.0629,0.068256,0.884704,0.008192,0.005824,0.02864,0.096544,0.0984,25.7588,0.1136
+806,34.8015,28.7344,28.4231,0.070272,0.942368,0.007936,0.015744,0.041888,0.096,0.098592,27.0368,0.113504
+807,32.6323,30.6445,27.0428,0.069696,0.861088,0.009216,0.01328,0.028704,0.09728,0.098912,25.7499,0.11472
+808,35.8067,27.9277,27.0168,0.06976,0.899072,0.008192,0.005184,0.027584,0.097344,0.097376,25.6981,0.114144
+809,35.7243,27.9922,28.2381,0.069952,0.79664,0.00816,0.005504,0.027328,0.096256,0.106496,27.013,0.114848
+810,34.1675,29.2676,28.2051,0.069664,0.810976,0.00816,0.004128,0.028672,0.096256,0.115808,26.9588,0.112672
+811,34.1038,29.3223,26.9619,0.071328,0.78064,0.008224,0.00592,0.028448,0.096672,0.098304,25.7591,0.113312
+812,35.3274,28.3066,28.2476,0.069632,0.800416,0.008096,0.004544,0.028704,0.096224,0.098304,27.0286,0.11312
+813,32.7638,30.5215,27.1922,0.069664,0.958624,0.006912,0.022432,0.028768,0.09728,0.098272,25.7955,0.11472
+814,36.671,27.2695,27.4555,0.069568,0.91744,0.008288,0.004128,0.028672,0.096288,0.099392,26.1188,0.11296
+815,34.9369,28.623,29.0751,0.069632,0.84992,0.008192,0.014336,0.028672,0.097568,0.098528,27.7953,0.11296
+816,33.4007,29.9395,26.922,0.068576,0.7736,0.008128,0.004736,0.02864,0.0976,0.108928,25.7171,0.114688
+817,35.4203,28.2324,27.0257,0.068096,0.837408,0.008032,0.005504,0.0288,0.096928,0.100352,25.767,0.1136
+818,34.7001,28.8184,28.3278,0.069632,0.882048,0.008096,0.0048,0.028704,0.095392,0.098496,27.0261,0.114592
+819,33.7909,29.5938,27.0476,0.069632,0.867936,0.00656,0.005984,0.028544,0.096544,0.098304,25.7592,0.11488
+820,35.5753,28.1094,27.0202,0.06848,0.8704,0.008192,0.00528,0.02864,0.09632,0.098784,25.7191,0.124928
+821,35.7492,27.9727,28.1489,0.070848,0.774432,0.008,0.004832,0.028672,0.09728,0.098528,26.9523,0.114048
+822,34.3279,29.1309,26.9094,0.069664,0.761728,0.008256,0.004832,0.028672,0.094304,0.098272,25.7303,0.11344
+823,35.7492,27.9727,28.1371,0.07072,0.796704,0.008128,0.005088,0.028672,0.095744,0.098144,26.9196,0.114304
+824,34.1015,29.3242,28.2071,0.069632,0.849952,0.00816,0.004288,0.029856,0.096928,0.098304,26.9368,0.11312
+825,33.9433,29.4609,26.9084,0.071168,0.783136,0.007232,0.005056,0.028704,0.096224,0.098304,25.7044,0.114144
+826,35.8042,27.9297,26.9828,0.08016,0.809088,0.008192,0.005344,0.027488,0.096192,0.099936,25.7375,0.118944
+827,35.7892,27.9414,28.1649,0.070208,0.782176,0.007936,0.004768,0.028672,0.106048,0.098752,26.9517,0.114688
+828,34.2842,29.168,28.2456,0.069664,0.77616,0.008192,0.005184,0.027776,0.097152,0.1136,27.0348,0.11312
+829,34.1311,29.2988,26.8657,0.07072,0.752576,0.008192,0.005472,0.028352,0.096384,0.104672,25.6846,0.114688
+830,35.5358,28.1406,28.203,0.069664,0.764992,0.007104,0.005312,0.027456,0.096256,0.110592,27.0082,0.11344
+831,33.379,29.959,27.0335,0.069568,0.874016,0.020096,0.005024,0.038784,0.098432,0.100096,25.7146,0.112864
+832,36.4465,27.4375,26.9312,0.069632,0.765792,0.008096,0.004352,0.028672,0.096288,0.098304,25.7351,0.124928
+833,34.3509,29.1113,28.3085,0.072672,0.906976,0.008096,0.00448,0.042944,0.096128,0.098336,26.9641,0.11472
+834,34.4665,29.0137,26.8892,0.06944,0.783936,0.008192,0.004736,0.02848,0.095456,0.106464,25.6768,0.115744
+835,35.4939,28.1738,26.9353,0.069728,0.819136,0.00816,0.005664,0.028288,0.09632,0.098624,25.6959,0.113472
+836,35.7267,27.9902,28.1326,0.069728,0.81264,0.008096,0.004512,0.028672,0.096256,0.098304,26.9005,0.11392
+837,34.4225,29.0508,26.9094,0.070368,0.755712,0.008224,0.006112,0.028672,0.096256,0.110112,25.7193,0.11472
+838,35.5383,28.1387,26.9105,0.069664,0.804832,0.008224,0.004128,0.028608,0.096288,0.098272,25.686,0.114496
+839,35.6025,28.0879,28.1825,0.070208,0.783936,0.008096,0.004768,0.02864,0.096256,0.108576,26.968,0.113952
+840,34.1288,29.3008,26.9458,0.06928,0.838432,0.00784,0.004544,0.02864,0.102176,0.098784,25.683,0.113024
+841,34.8821,28.668,28.3188,0.06928,0.874528,0.006464,0.006016,0.028576,0.09648,0.106528,27.0028,0.128128
+842,33.4575,29.8887,28.2465,0.06976,0.878176,0.008096,0.004832,0.028576,0.106624,0.104448,26.9332,0.112704
+843,35.2544,28.3652,26.9308,0.069728,0.822816,0.006624,0.005856,0.028544,0.096384,0.098592,25.6875,0.114752
+844,35.1359,28.4609,26.8657,0.069632,0.753664,0.008192,0.004224,0.028576,0.096224,0.099456,25.6925,0.113216
+845,36.0082,27.7715,29.5198,0.06944,0.89984,0.008192,0.006144,0.028672,0.096256,0.100352,28.1967,0.11424
+846,32.7157,30.5664,27.0709,0.068192,0.957824,0.006784,0.0056,0.028576,0.094848,0.099456,25.6966,0.113056
+847,35.8845,27.8672,26.8964,0.069504,0.757248,0.008064,0.004864,0.028672,0.096256,0.099456,25.7189,0.11344
+848,35.4399,28.2168,28.1372,0.069632,0.804864,0.008224,0.005504,0.02864,0.096896,0.098304,26.9066,0.118624
+849,34.147,29.2852,26.9213,0.06992,0.800192,0.008096,0.004864,0.028672,0.097472,0.099072,25.6984,0.114688
+850,35.558,28.123,27.0624,0.069792,0.964608,0.006144,0.005824,0.028544,0.096096,0.097952,25.6782,0.115264
+851,35.8744,27.875,28.15,0.069568,0.765472,0.008,0.005024,0.028704,0.096224,0.11264,26.9496,0.114688
+852,34.2177,29.2246,26.9583,0.069376,0.811936,0.008192,0.004096,0.028672,0.096256,0.098176,25.7282,0.11344
+853,35.0781,28.5078,28.3526,0.069728,0.956416,0.008192,0.005824,0.037088,0.108064,0.09888,26.9537,0.114688
+854,34.3187,29.1387,28.1796,0.069632,0.849408,0.008096,0.004704,0.028672,0.095328,0.099008,26.9122,0.112608
+855,34.7637,28.7656,26.9107,0.069664,0.761568,0.008096,0.005472,0.027744,0.09744,0.098336,25.7296,0.112832
+856,35.5235,28.1504,26.9927,0.069632,0.838496,0.008192,0.006144,0.028672,0.096256,0.09936,25.7321,0.113856
+857,35.521,28.1523,28.9156,0.067232,0.763776,0.008096,0.005024,0.028672,0.09744,0.099296,27.7313,0.114784
+858,33.0451,30.2617,27.0195,0.070112,0.881984,0.015296,0.004288,0.02848,0.096288,0.099424,25.7094,0.114176
+859,35.7018,28.0098,26.9845,0.06992,0.868768,0.007712,0.004576,0.029696,0.096704,0.098304,25.6942,0.114656
+860,35.4178,28.2344,28.2337,0.069728,0.89168,0.008224,0.005632,0.028448,0.09488,0.099872,26.9214,0.11376
+861,33.6953,29.6777,27.0275,0.070272,0.857344,0.015104,0.005504,0.028416,0.1064,0.101344,25.7283,0.114784
+862,36.235,27.5977,26.8925,0.069632,0.80608,0.008096,0.005024,0.028672,0.095968,0.097632,25.6685,0.112832
+863,35.8192,27.918,28.1725,0.06928,0.7792,0.007168,0.00512,0.028704,0.096096,0.098304,26.9755,0.113088
+864,33.8021,29.584,26.9148,0.069024,0.778976,0.008192,0.005152,0.027616,0.096256,0.100288,25.7161,0.113216
+865,36.3353,27.5215,28.1791,0.068512,0.767936,0.008192,0.006144,0.028672,0.096256,0.099392,26.9812,0.122752
+866,34.1083,29.3184,28.2217,0.069632,0.839904,0.008192,0.00544,0.02848,0.095104,0.098304,26.9633,0.113344
+867,32.9112,30.3848,27.0234,0.069376,0.880896,0.00768,0.004608,0.029728,0.096384,0.09888,25.7225,0.113312
+868,36.5297,27.375,26.9227,0.069664,0.822368,0.00816,0.004768,0.02832,0.094816,0.098336,25.6819,0.1144
+869,34.9107,28.6445,28.3345,0.070048,0.940032,0.018432,0.005696,0.028608,0.110112,0.098656,26.9482,0.114688
+870,33.9118,29.4883,27.085,0.068416,0.890528,0.008224,0.013664,0.031008,0.102848,0.113984,25.7431,0.113248
+871,35.2617,28.3594,27.0025,0.070848,0.836416,0.008192,0.014208,0.02848,0.100672,0.09984,25.7295,0.114272
+872,35.8092,27.9258,28.2086,0.0696,0.806944,0.008192,0.005408,0.028608,0.096032,0.099328,26.9805,0.113952
+873,33.8848,29.5117,27.4738,0.069952,0.912704,0.008096,0.004896,0.028672,0.096256,0.099488,26.1393,0.114464
+874,35.1238,28.4707,27.795,0.070816,0.811872,0.008192,0.004096,0.028672,0.095712,0.097984,26.5649,0.112768
+875,34.5153,28.9727,28.2582,0.069792,0.823808,0.008288,0.01424,0.028672,0.096256,0.098304,27.0049,0.113952
+876,34.3348,29.125,26.9093,0.06944,0.752608,0.008224,0.005344,0.027392,0.106496,0.098336,25.7268,0.114688
+877,35.325,28.3086,27.4432,0.069632,0.9216,0.008192,0.00576,0.049568,0.10416,0.098496,26.0723,0.113568
+878,34.8299,28.7109,29.0181,0.06944,0.78208,0.008096,0.00464,0.028608,0.095328,0.098336,27.8148,0.116736
+879,33.8781,29.5176,26.9544,0.070336,0.796416,0.0064,0.00608,0.028704,0.11168,0.099136,25.721,0.114656
+880,35.5728,28.1113,26.9619,0.070688,0.809952,0.008192,0.00416,0.028608,0.096384,0.10432,25.7249,0.114688
+881,35.9854,27.7891,28.1307,0.07072,0.758432,0.008096,0.00448,0.028672,0.097536,0.098816,26.9437,0.12016
+882,34.2842,29.168,26.8882,0.069344,0.759104,0.007296,0.005568,0.028672,0.108992,0.098304,25.6983,0.11264
+883,34.3855,29.082,27.0258,0.070464,0.94,0.018432,0.005568,0.028704,0.096832,0.098272,25.6529,0.114624
+884,36.6999,27.248,28.239,0.069632,0.878592,0.022016,0.004608,0.038368,0.096448,0.1048,26.9108,0.113824
+885,34.3463,29.1152,26.9759,0.069632,0.813056,0.008224,0.005696,0.02848,0.096352,0.114432,25.7256,0.114368
+886,35.8895,27.8633,28.0863,0.070688,0.750112,0.008192,0.004544,0.028672,0.106496,0.098336,26.9066,0.11264
+887,34.3878,29.0801,28.1027,0.06928,0.76592,0.006528,0.005984,0.028608,0.112128,0.09904,26.9023,0.112832
+888,33.8401,29.5508,26.9148,0.075776,0.815104,0.007584,0.004704,0.028704,0.09584,0.098688,25.6753,0.11312
+889,35.9147,27.8438,27.2671,0.07088,0.75376,0.008096,0.004896,0.028672,0.096288,0.11616,26.0736,0.11472
+890,35.4154,28.2363,29.0181,0.069632,0.774144,0.008224,0.005888,0.028352,0.095936,0.098304,27.8241,0.113568
+891,33.3507,29.9844,26.9705,0.07008,0.76416,0.00768,0.004608,0.028672,0.110592,0.100192,25.7701,0.1144
+892,35.7717,27.9551,26.9313,0.070016,0.763328,0.008064,0.004992,0.028576,0.096448,0.098304,25.7475,0.114144
+893,34.999,28.5723,28.2571,0.069568,0.890976,0.008448,0.014528,0.02864,0.095936,0.100736,26.9352,0.113056
+894,32.5183,30.752,27.3326,0.069888,1.17277,0.008128,0.0048,0.028544,0.096448,0.104192,25.7334,0.114432
+895,36.9675,27.0508,26.9788,0.069536,0.840192,0.00624,0.006144,0.02864,0.096288,0.098304,25.7205,0.112992
+896,34.5993,28.9023,28.1955,0.070336,0.884704,0.018176,0.004352,0.044896,0.096416,0.098336,26.8636,0.114688
+897,34.5806,28.918,27.4289,0.069632,0.851744,0.01824,0.004512,0.028736,0.097376,0.099104,26.1462,0.11328
+898,35.386,28.2598,27.7627,0.069664,0.75568,0.007424,0.004832,0.028576,0.10048,0.107648,26.5756,0.1128
+899,34.6978,28.8203,28.1744,0.069952,0.769888,0.00816,0.005888,0.028448,0.096736,0.098304,26.9824,0.114656
+900,33.682,29.6895,26.9377,0.069216,0.791264,0.007488,0.0048,0.028672,0.096256,0.098304,25.727,0.114688
+901,35.5333,28.1426,27.3988,0.069696,0.911584,0.008128,0.004576,0.028672,0.097408,0.105344,26.0598,0.113632
+902,35.5531,28.127,28.8753,0.06816,0.800768,0.008192,0.004096,0.034848,0.097312,0.387552,27.3597,0.114688
+903,33.6576,29.7109,26.9004,0.069632,0.775456,0.00688,0.005632,0.028448,0.096096,0.098336,25.7044,0.115488
+904,35.662,28.041,26.9483,0.06848,0.818912,0.008096,0.00448,0.028672,0.096,0.09856,25.7085,0.116576
+905,35.6397,28.0586,28.2994,0.06896,0.946336,0.008128,0.004832,0.028672,0.097696,0.098112,26.9331,0.113632
+906,34.3509,29.1113,26.9147,0.0696,0.762464,0.008192,0.005344,0.027424,0.096288,0.099808,25.7316,0.113984
+907,35.6174,28.0762,26.9105,0.069632,0.800416,0.008064,0.004576,0.028672,0.097504,0.098656,25.6881,0.11488
+908,35.7992,27.9336,28.2138,0.069216,0.807808,0.008192,0.004096,0.028672,0.096256,0.098304,26.9885,0.112672
+909,32.8479,30.4434,27.4147,0.06896,0.913632,0.008096,0.004992,0.028672,0.096256,0.098304,26.0813,0.114464
+910,36.6736,27.2676,27.777,0.069632,0.806912,0.008352,0.005728,0.028256,0.096256,0.098976,26.5503,0.11264
+911,34.3394,29.1211,28.3107,0.069632,0.925696,0.008192,0.00608,0.028576,0.096576,0.099488,26.9619,0.114496
+912,34.2246,29.2188,26.9292,0.069632,0.811008,0.008224,0.004064,0.0288,0.096128,0.098304,25.6993,0.113664
+913,35.7867,27.9434,28.1498,0.069664,0.773408,0.008096,0.004896,0.028672,0.096288,0.098304,26.9568,0.1136
+914,34.3141,29.1426,28.1044,0.069632,0.75776,0.007712,0.004576,0.028672,0.096256,0.098304,26.9282,0.113312
+915,33.9973,29.4141,27.141,0.070176,0.905632,0.008224,0.006112,0.028416,0.095936,0.098272,25.8134,0.114752
+916,35.4276,28.2266,27.0483,0.068928,0.900096,0.008192,0.005248,0.02864,0.095136,0.098432,25.7289,0.114688
+917,34.9012,28.6523,28.2322,0.068416,0.825312,0.008224,0.005824,0.028992,0.096224,0.104032,26.9808,0.114368
+918,34.5876,28.9121,26.9148,0.069792,0.812256,0.008096,0.020768,0.028864,0.096512,0.098304,25.6668,0.113376
+919,35.7542,27.9688,26.9926,0.070656,0.871424,0.008192,0.006016,0.028576,0.096064,0.09872,25.6935,0.119488
+920,35.6844,28.0234,28.1737,0.070976,0.795328,0.006144,0.005728,0.028448,0.09488,0.099296,26.9588,0.114016
+921,33.277,30.0508,28.4549,0.070944,1.01245,0.007904,0.014624,0.03072,0.097728,0.102016,27.0059,0.112672
+922,34.0856,29.3379,26.9808,0.069216,0.876512,0.00736,0.005536,0.036864,0.096672,0.097536,25.6766,0.114528
+923,36.3378,27.5195,28.3039,0.069824,0.923456,0.008192,0.00464,0.028768,0.096192,0.098304,26.9619,0.11264
+924,33.7153,29.6602,27.042,0.068384,0.94144,0.008096,0.0048,0.028352,0.096608,0.099648,25.6821,0.112608
+925,35.6397,28.0586,26.964,0.069408,0.876672,0.008128,0.005472,0.028544,0.097024,0.098528,25.6669,0.11328
+926,34.5993,28.9023,28.8154,0.067616,1.46429,0.008288,0.005632,0.029088,0.096256,0.098464,26.9328,0.112896
+927,34.072,29.3496,26.9517,0.069696,0.813056,0.016384,0.006144,0.028672,0.097376,0.103328,25.7022,0.11488
+928,33.3616,29.9746,27.095,0.06976,0.935744,0.008128,0.004224,0.028672,0.096256,0.098272,25.7406,0.113376
+929,37.5477,26.6328,28.3238,0.070688,0.87344,0.007936,0.005504,0.028576,0.096448,0.098688,27.029,0.1136
+930,33.849,29.543,27.0516,0.0696,0.921952,0.00736,0.0048,0.028288,0.096128,0.102304,25.7072,0.113984
+931,35.0469,28.5332,27.0008,0.069632,0.872448,0.007424,0.004864,0.028672,0.1024,0.101728,25.7008,0.112896
+932,35.6174,28.0762,28.2313,0.069376,0.895104,0.008128,0.004288,0.028672,0.096256,0.099424,26.9154,0.114624
+933,33.8714,29.5234,27.007,0.07072,0.848096,0.00688,0.012288,0.032128,0.103072,0.099392,25.7197,0.114688
+934,33.6112,29.752,28.4181,0.069664,0.917472,0.008384,0.005568,0.031104,0.096192,0.114688,27.0623,0.112672
+935,33.2079,30.1133,28.5225,0.069632,1.13235,0.008128,0.005472,0.027552,0.096256,0.100352,26.9681,0.114688
+936,33.565,29.793,27.1646,0.069408,0.9976,0.018336,0.005344,0.02752,0.096256,0.09984,25.7372,0.113152
+937,36.692,27.2539,26.9438,0.074304,0.818752,0.00656,0.005952,0.028832,0.097344,0.099328,25.6983,0.114464
+938,34.999,28.5723,28.5692,0.082016,1.16941,0.008192,0.005152,0.027616,0.096192,0.097504,26.9689,0.11424
+939,34.072,29.3496,26.9047,0.068384,0.774144,0.007264,0.005024,0.028672,0.096256,0.098304,25.7122,0.114528
+940,35.5605,28.1211,26.9341,0.068576,0.83888,0.008096,0.004864,0.028352,0.102848,0.100096,25.6678,0.11456
+941,35.5926,28.0957,28.2065,0.069664,0.806656,0.008128,0.005472,0.027584,0.096288,0.098304,26.9803,0.114048
+942,34.0335,29.3828,26.9678,0.071104,0.858688,0.008192,0.004096,0.028736,0.096224,0.098016,25.6883,0.114464
+943,35.8017,27.9316,26.9338,0.068544,0.80688,0.008352,0.005984,0.028672,0.09584,0.09856,25.7064,0.114592
+944,35.5284,28.1465,28.1306,0.069632,0.825344,0.008192,0.005472,0.029344,0.095488,0.097152,26.8873,0.112736
+945,34.1789,29.2578,27.3478,0.06848,0.835232,0.008064,0.004576,0.028672,0.09776,0.098848,26.0929,0.11328
+946,34.1515,29.2812,27.7177,0.069856,1.57491,0.008192,0.004096,0.028672,0.096256,0.098304,25.7225,0.114944
+947,35.8594,27.8867,28.1334,0.069632,0.78144,0.007296,0.005888,0.028672,0.096256,0.098304,26.9324,0.113536
+948,33.7175,29.6582,26.9924,0.069728,0.871744,0.008192,0.018784,0.028928,0.096256,0.098304,25.686,0.1144
+949,36.0894,27.709,26.8761,0.069248,0.754336,0.00816,0.005984,0.028576,0.09648,0.098336,25.7003,0.11472
+950,35.8443,27.8984,29.3499,0.06944,0.772288,0.008192,0.005472,0.028448,0.096224,0.098336,28.1585,0.113024
+951,32.6676,30.6113,26.8979,0.068928,0.77632,0.008096,0.004832,0.028672,0.096288,0.098272,25.7024,0.11408
+952,35.7742,27.9531,26.88,0.071104,0.805312,0.00832,0.004096,0.028672,0.097408,0.09888,25.6531,0.113088
+953,35.9197,27.8398,28.0898,0.069568,0.767872,0.006336,0.006144,0.028576,0.097376,0.099104,26.9017,0.11312
+954,34.1151,29.3125,26.9132,0.070048,0.795936,0.008096,0.004896,0.028672,0.106496,0.098304,25.6758,0.124928
+955,35.8594,27.8867,26.9003,0.069632,0.76096,0.008128,0.005056,0.028672,0.096256,0.098304,25.7184,0.11488
+956,35.6273,28.0684,28.2256,0.070208,0.816384,0.02448,0.00496,0.036608,0.10864,0.09824,26.9519,0.114208
+957,34.4341,29.041,28.16,0.069376,0.75664,0.008192,0.006144,0.028448,0.096512,0.099936,26.9807,0.114048
+958,34.3279,29.1309,26.8727,0.069984,0.764032,0.008064,0.004576,0.02864,0.096288,0.09824,25.6894,0.11344
+959,35.8468,27.8965,28.1219,0.0704,0.770048,0.008192,0.005952,0.028192,0.094912,0.099648,26.9311,0.11344
+960,34.3647,29.0996,26.8759,0.069632,0.77744,0.008032,0.004832,0.028544,0.096128,0.098336,25.6795,0.113536
+961,35.235,28.3809,26.9642,0.069408,0.821856,0.008288,0.005472,0.028512,0.117664,0.103872,25.6948,0.114304
+962,35.0014,28.5703,28.17,0.07008,0.78848,0.008288,0.005568,0.035264,0.096256,0.10032,26.9495,0.11632
+963,34.4503,29.0273,27.0362,0.070144,0.943616,0.008128,0.014912,0.028672,0.096224,0.097888,25.6619,0.114688
+964,35.9652,27.8047,26.8907,0.069536,0.762368,0.008192,0.005376,0.028672,0.096128,0.0984,25.7088,0.113152
+965,35.6248,28.0703,28.117,0.070976,0.77216,0.008128,0.0048,0.028672,0.098176,0.09824,26.9222,0.113696
+966,34.204,29.2363,26.9122,0.06976,0.777376,0.007232,0.005568,0.0288,0.095648,0.098112,25.7154,0.114336
+967,35.7792,27.9492,26.8616,0.069632,0.773152,0.00816,0.00512,0.028672,0.096256,0.098304,25.6676,0.114688
+968,35.7567,27.9668,28.1395,0.069664,0.826976,0.008096,0.004576,0.028672,0.096192,0.102464,26.8893,0.113568
+969,32.7701,30.5156,26.9742,0.083648,0.81136,0.008192,0.005504,0.028544,0.096096,0.097184,25.729,0.114688
+970,36.1097,27.6934,27.9557,0.069152,1.00451,0.009248,0.005088,0.04096,0.102432,0.099776,26.5119,0.11264
+971,34.3786,29.0879,28.0933,0.069856,0.762528,0.008192,0.005568,0.028736,0.096672,0.0984,26.9082,0.115136
+972,34.6086,28.8945,26.8842,0.069728,0.763904,0.008288,0.005568,0.028448,0.094944,0.098272,25.6999,0.115168
+973,35.435,28.2207,26.8212,0.069568,0.770624,0.008192,0.006144,0.028544,0.096384,0.098304,25.6279,0.11552
+974,35.3177,28.3145,28.1256,0.070016,0.783392,0.00736,0.005536,0.028512,0.096,0.098112,26.9235,0.113184
+975,34.6602,28.8516,26.8481,0.069888,0.78032,0.008096,0.004704,0.028672,0.096256,0.098304,25.6471,0.11472
+976,35.5753,28.1094,26.9721,0.070048,0.880672,0.00816,0.014016,0.029024,0.095776,0.09808,25.6621,0.11424
+977,35.1142,28.4785,28.3061,0.07008,0.921824,0.019584,0.004992,0.028672,0.096032,0.09648,26.9537,0.114688
+978,34.0041,29.4082,26.9306,0.068992,0.81568,0.006368,0.00544,0.03344,0.096096,0.09808,25.6926,0.11392
+979,35.1528,28.4473,27.0402,0.06992,0.915264,0.008096,0.004544,0.028672,0.105792,0.103072,25.6918,0.113056
+980,36.3172,27.5352,28.2194,0.069216,0.825856,0.008288,0.005568,0.028672,0.096352,0.098592,26.9735,0.113408
+981,34.3026,29.1523,26.915,0.068896,0.772832,0.008096,0.005504,0.02864,0.09664,0.098144,25.7216,0.114688
+982,35.8192,27.918,28.0952,0.069856,0.74704,0.007136,0.005216,0.027552,0.096256,0.100384,26.9288,0.112928
+983,34.188,29.25,28.1293,0.069632,0.74752,0.008192,0.00576,0.028896,0.096416,0.098304,26.9599,0.114688
+984,34.1995,29.2402,26.8413,0.069888,0.745472,0.008192,0.005312,0.027456,0.096288,0.098272,25.6758,0.114688
+985,34.6531,28.8574,26.9968,0.069632,0.858112,0.008096,0.005504,0.028544,0.095072,0.098368,25.7187,0.11472
+986,36.5845,27.334,28.1375,0.069632,0.786336,0.00816,0.004224,0.028672,0.095488,0.097056,26.9353,0.11264
+987,32.7701,30.5156,26.9627,0.06832,0.864192,0.008192,0.005504,0.028704,0.096768,0.11424,25.662,0.114688
+988,36.629,27.3008,26.8793,0.069504,0.79296,0.008192,0.004096,0.028672,0.096288,0.098272,25.6676,0.113728
+989,35.8895,27.8633,28.162,0.069632,0.761856,0.008192,0.005824,0.028736,0.096512,0.098304,26.9782,0.114688
+990,34.0267,29.3887,28.0759,0.070112,0.798976,0.008128,0.004288,0.028672,0.106496,0.09952,26.846,0.113728
+991,34.611,28.8926,26.8341,0.069792,0.753664,0.008192,0.005888,0.028704,0.096256,0.101952,25.6539,0.115776
+992,35.7892,27.9414,28.0641,0.069056,0.750432,0.008128,0.004224,0.028672,0.096256,0.098304,26.896,0.113056
+993,33.9793,29.4297,26.8923,0.07104,0.803456,0.008224,0.005824,0.028224,0.094944,0.100352,25.6671,0.11312
+994,35.5852,28.1016,26.9009,0.069216,0.817504,0.008064,0.004704,0.028416,0.112512,0.098688,25.6471,0.114688
+995,35.563,28.1191,28.5245,0.069056,0.780864,0.008192,0.005632,0.028352,0.096192,0.0984,27.3252,0.11264
+996,33.7286,29.6484,26.8575,0.069632,0.800704,0.008128,0.004224,0.028672,0.096256,0.098304,25.6387,0.112832
+997,35.2909,28.3359,26.9096,0.070592,0.776224,0.007712,0.004544,0.029792,0.096448,0.09904,25.7106,0.114688
+998,36.235,27.5977,28.0808,0.070336,0.828704,0.00688,0.004128,0.02864,0.096288,0.099616,26.833,0.113216
+999,34.1424,29.2891,26.8352,0.070208,0.802816,0.008352,0.005984,0.028704,0.096224,0.099328,25.6083,0.11536
+1000,35.7218,27.9941,26.9152,0.069984,0.815104,0.008192,0.00576,0.028544,0.096096,0.098976,25.679,0.113504
+1001,35.4571,28.2031,28.1458,0.06976,0.806944,0.00816,0.005728,0.028576,0.09472,0.098336,26.9189,0.114688
+1002,34.2017,29.2383,26.8709,0.070816,0.830336,0.00816,0.005312,0.028512,0.0952,0.098304,25.6199,0.114304
+1003,35.8368,27.9043,28.0709,0.069664,0.78832,0.006272,0.006144,0.028512,0.095904,0.096768,26.8652,0.114208
+1004,34.2589,29.1895,28.1115,0.068224,0.775968,0.008096,0.004448,0.02864,0.098304,0.103904,26.9113,0.11264
+1005,33.7508,29.6289,26.98,0.069632,0.89856,0.008224,0.004576,0.029824,0.095136,0.098272,25.6614,0.114304
+1006,35.5309,28.1445,27.0078,0.070496,0.89088,0.007712,0.004576,0.028704,0.096256,0.098272,25.6963,0.114688
+1007,35.6199,28.0742,28.1022,0.069664,0.813024,0.008192,0.005632,0.028544,0.096672,0.098528,26.8676,0.114272
+1008,33.8624,29.5312,27.0468,0.078752,0.894656,0.018592,0.004256,0.043008,0.098016,0.09808,25.6968,0.114688
+1009,36.0589,27.7324,26.9112,0.069536,0.776736,0.008224,0.006112,0.028672,0.096224,0.099968,25.711,0.114688
+1010,34.3601,29.1035,28.3209,0.069632,0.889856,0.008192,0.0048,0.028512,0.095744,0.098976,27.0114,0.113792
+1011,34.6039,28.8984,26.911,0.067872,0.853984,0.008096,0.005472,0.028704,0.096256,0.097024,25.6389,0.11472
+1012,35.662,28.041,26.979,0.06944,0.889728,0.008192,0.004096,0.028672,0.098304,0.104032,25.6634,0.113152
+1013,35.4374,28.2188,28.2579,0.069632,0.937376,0.006752,0.005728,0.028704,0.09664,0.098304,26.9017,0.112992
+1014,33.905,29.4941,27.2537,0.075712,0.778368,0.008128,0.0048,0.028672,0.09616,0.097856,26.0484,0.115616
+1015,34.3647,29.0996,26.8728,0.07168,0.769632,0.008096,0.004608,0.028672,0.097728,0.098816,25.6779,0.115712
+1016,35.4595,28.2012,28.1375,0.070816,0.766816,0.008192,0.004224,0.0296,0.0952,0.098304,26.9513,0.113056
+1017,34.0539,29.3652,26.9233,0.070528,0.825216,0.008096,0.005504,0.02864,0.095104,0.098336,25.6757,0.11616
+1018,35.6844,28.0234,26.9271,0.069632,0.843776,0.006144,0.005632,0.028704,0.094688,0.099392,25.6659,0.113216
+1019,35.7267,27.9902,29.4566,0.069472,0.862752,0.008192,0.005536,0.028512,0.094976,0.098304,28.176,0.112864
+1020,32.7136,30.5684,26.9072,0.069664,0.823808,0.008192,0.004096,0.028672,0.096288,0.106144,25.6511,0.119168
+1021,35.7892,27.9414,26.878,0.071232,0.775968,0.008128,0.004832,0.028672,0.0976,0.097984,25.6707,0.12288
+1022,35.9248,27.8359,28.0984,0.069824,0.768032,0.00768,0.004576,0.028704,0.096224,0.098304,26.9107,0.114336
+1023,34.1743,29.2617,26.8977,0.069088,0.83008,0.008192,0.006112,0.028704,0.096256,0.098304,25.6463,0.114656
+1024,35.6571,28.0449,26.9253,0.070112,0.814784,0.00816,0.004448,0.028672,0.096096,0.098304,25.6903,0.114432
+1025,35.7642,27.9609,28.189,0.06992,0.774176,0.00816,0.005696,0.028416,0.09648,0.098432,26.9941,0.113568
+1026,34.1129,29.3145,26.9361,0.0704,0.802816,0.0072,0.004832,0.02832,0.095936,0.09824,25.7149,0.113408
+1027,35.5481,28.1309,28.1287,0.069792,0.78832,0.008224,0.006112,0.028544,0.097856,0.098624,26.9171,0.114112
+1028,34.4851,28.998,28.0781,0.069632,0.763904,0.00832,0.005568,0.02912,0.096288,0.098304,26.8943,0.112608
+1029,34.3555,29.1074,26.8769,0.069856,0.782304,0.008128,0.004928,0.028672,0.096256,0.099424,25.6743,0.11296
+1030,35.1528,28.4473,27.1162,0.070272,0.834912,0.00816,0.0048,0.028608,0.09632,0.098048,25.6228,0.352256
+1031,35.189,28.418,28.2361,0.069632,0.912032,0.008288,0.006048,0.028608,0.095808,0.098368,26.903,0.114304
+1032,34.2109,29.2305,26.8554,0.069216,0.77664,0.00816,0.005248,0.02864,0.095136,0.098304,25.6594,0.11472
+1033,36.3249,27.5293,26.8795,0.070944,0.78256,0.008096,0.004704,0.028672,0.096256,0.099936,25.6738,0.114592
+1034,35.6919,28.0176,28.0729,0.068544,0.771648,0.008096,0.00464,0.028672,0.095808,0.09856,26.8842,0.112704
+1035,34.1972,29.2422,26.9029,0.07024,0.772096,0.008192,0.005984,0.028352,0.09472,0.098272,25.7106,0.114464
+1036,35.0949,28.4941,28.1375,0.069824,0.816384,0.008128,0.004736,0.028384,0.095968,0.098752,26.9027,0.11264
+1037,34.5432,28.9492,26.9291,0.069632,0.835584,0.008128,0.005472,0.028736,0.096928,0.099552,25.6704,0.114624
+1038,35.4056,28.2441,27.0274,0.069184,1.01405,0.008128,0.004768,0.028704,0.096224,0.099456,25.5927,0.114208
+1039,35.8117,27.9238,28.8978,0.06608,0.774144,0.008192,0.005856,0.02864,0.096256,0.098624,27.7065,0.113536
+1040,33.1284,30.1855,26.8554,0.07088,0.755776,0.008096,0.0048,0.02848,0.096576,0.098304,25.6778,0.114688
+1041,35.662,28.041,26.9487,0.069632,0.858112,0.008192,0.005664,0.028448,0.09696,0.106528,25.661,0.11424
+1042,35.1455,28.4531,28.3282,0.068448,0.97472,0.007584,0.004704,0.03232,0.096704,0.099424,26.9312,0.113088
+1043,33.7887,29.5957,27.2873,0.069664,1.2425,0.008096,0.0048,0.028672,0.097728,0.102976,25.6184,0.114432
+1044,35.8142,27.9219,26.8776,0.069792,0.791552,0.008096,0.0048,0.028704,0.102496,0.096384,25.6594,0.116416
+1045,36.031,27.7539,28.0782,0.068928,0.779168,0.007424,0.004864,0.028672,0.096256,0.097824,26.8818,0.11328
+1046,34.3763,29.0898,26.9051,0.07632,0.789696,0.008128,0.004832,0.028832,0.096288,0.098272,25.69,0.1128
+1047,35.7692,27.957,27.0623,0.067584,0.982432,0.010176,0.004768,0.03072,0.096288,0.098272,25.659,0.113056
+1048,35.5926,28.0957,28.1571,0.070688,0.784928,0.008096,0.00464,0.028704,0.095872,0.098496,26.9516,0.114016
+1049,34.2429,29.2031,26.8935,0.069728,0.763872,0.008224,0.006112,0.028448,0.09648,0.098304,25.7065,0.115872
+1050,35.8368,27.9043,26.902,0.071104,0.780864,0.007392,0.0048,0.028704,0.095904,0.098176,25.6988,0.11616
+1051,34.7968,28.7383,29.3172,0.069664,0.814912,0.00816,0.005472,0.027488,0.097376,0.09728,28.0836,0.113248
+1052,33.0685,30.2402,26.8858,0.067968,0.802816,0.008256,0.005568,0.028448,0.094944,0.098304,25.6651,0.1144
+1053,35.6894,28.0195,26.9367,0.069664,0.853504,0.008096,0.004672,0.028672,0.096128,0.098336,25.6615,0.116064
+1054,35.7992,27.9336,28.1933,0.068512,0.784384,0.008192,0.005568,0.02848,0.096704,0.100704,26.9865,0.114304
+1055,33.9861,29.4238,28.076,0.071648,0.796448,0.008128,0.005472,0.027616,0.096416,0.099744,26.8559,0.114688
+1056,34.1129,29.3145,27.0054,0.069952,0.898304,0.008192,0.0048,0.028512,0.095936,0.098304,25.6866,0.11488
+1057,34.9679,28.5977,28.2693,0.069888,0.93648,0.008192,0.006144,0.02864,0.096288,0.098304,26.9118,0.113568
+1058,33.9996,29.4121,27.05,0.070304,0.948224,0.00816,0.004128,0.028672,0.096064,0.09824,25.6816,0.11456
+1059,36.148,27.6641,28.0993,0.069408,0.7608,0.008192,0.00576,0.02864,0.096,0.0984,26.9174,0.114688
+1060,34.2842,29.168,28.0924,0.069632,0.794048,0.008096,0.004768,0.028576,0.095776,0.09888,26.88,0.11264
+1061,33.8311,29.5586,26.9064,0.06992,0.833632,0.008192,0.006144,0.028512,0.096416,0.097984,25.6515,0.11408
+1062,35.6447,28.0547,26.9088,0.070016,0.804864,0.008192,0.004096,0.028672,0.096256,0.09936,25.684,0.113376
+1063,36.0436,27.7441,28.1948,0.071488,0.823328,0.008128,0.005504,0.028864,0.096896,0.098368,26.9476,0.114688
+1064,34.2017,29.2383,26.828,0.069696,0.784288,0.008096,0.004256,0.028704,0.096256,0.098272,25.6246,0.113888
+1065,35.9021,27.8535,26.8816,0.06944,0.783776,0.008096,0.004992,0.028672,0.096256,0.098304,25.677,0.11504
+1066,35.8518,27.8926,28.0944,0.069312,0.77568,0.008128,0.0048,0.028768,0.096352,0.098304,26.8999,0.11312
+1067,34.3463,29.1152,26.9128,0.069632,0.781632,0.008096,0.004896,0.028672,0.096256,0.098304,25.7106,0.114688
+1068,35.8092,27.9258,28.0452,0.070752,0.779008,0.008192,0.004256,0.028672,0.096256,0.09936,26.8455,0.113184
+1069,34.2223,29.2207,28.1287,0.068864,0.840512,0.00816,0.005984,0.02848,0.096608,0.097472,26.8697,0.112928
+1070,34.2063,29.2344,26.9424,0.076448,0.84,0.00832,0.005536,0.028576,0.096544,0.098624,25.6754,0.11296
+1071,35.5383,28.1387,27.0144,0.069632,0.882688,0.008192,0.005504,0.028384,0.095136,0.099392,25.7116,0.11392
+1072,35.5976,28.0918,28.1423,0.070112,0.772096,0.0064,0.005408,0.028544,0.095072,0.09824,26.9518,0.114656
+1073,34.2498,29.1973,26.9169,0.069664,0.774112,0.00816,0.005504,0.028384,0.0952,0.098272,25.7229,0.114656
+1074,34.9703,28.5957,28.1006,0.069632,0.817088,0.006208,0.0056,0.028576,0.09488,0.098304,26.8656,0.114688
+1075,34.9059,28.6484,26.8856,0.070912,0.787232,0.008192,0.00592,0.028544,0.096512,0.098368,25.6752,0.11472
+1076,35.8343,27.9062,28.1027,0.069632,0.782336,0.007264,0.0048,0.028736,0.095584,0.098144,26.9036,0.112608
+1077,34.3164,29.1406,28.0661,0.068608,0.775232,0.007328,0.00592,0.028672,0.096288,0.10032,26.8698,0.114016
+1078,33.9523,29.4531,26.8668,0.070912,0.800736,0.008096,0.004832,0.028544,0.096544,0.100032,25.6433,0.113792
+1079,35.5803,28.1055,26.931,0.069312,0.866528,0.008096,0.004608,0.028672,0.096256,0.098304,25.6451,0.114208
+1080,35.8042,27.9297,28.1472,0.069696,0.814496,0.008,0.0048,0.028768,0.096096,0.098464,26.9124,0.114496
+1081,33.7976,29.5879,26.8996,0.069344,0.84512,0.00816,0.00512,0.028704,0.098272,0.098208,25.6308,0.115872
+1082,35.4276,28.2266,26.945,0.0696,0.837632,0.006176,0.005632,0.028672,0.096224,0.09856,25.6884,0.114144
+1083,35.7218,27.9941,28.1502,0.069472,0.822176,0.008224,0.006112,0.028576,0.096352,0.097792,26.9071,0.114336
+1084,33.9253,29.4766,26.9266,0.069632,0.872448,0.008192,0.005312,0.028832,0.096096,0.098272,25.6336,0.114272
+1085,35.8443,27.8984,28.1134,0.069664,0.784768,0.008192,0.005664,0.028448,0.096256,0.096992,26.9107,0.112736
+1086,33.941,29.4629,28.1531,0.069632,0.862208,0.006144,0.005664,0.028864,0.096544,0.098304,26.8734,0.112256
+1087,34.4503,29.0273,26.837,0.070976,0.795328,0.008128,0.005472,0.028608,0.095104,0.09824,25.6224,0.112768
+1088,35.9349,27.8281,28.1744,0.070528,0.784384,0.008192,0.004096,0.028672,0.096256,0.099712,26.9702,0.112416
+1089,34.2934,29.1602,28.0822,0.069632,0.763904,0.008192,0.006144,0.028608,0.09632,0.098304,26.8974,0.113696
+1090,33.9725,29.4355,26.964,0.070912,0.93616,0.006784,0.005568,0.028384,0.096064,0.098784,25.6066,0.114688
+1091,35.6174,28.0762,26.8924,0.069696,0.804864,0.007264,0.005024,0.028672,0.096256,0.098336,25.6676,0.114656
+1092,35.8543,27.8906,28.1282,0.070432,0.7904,0.008096,0.005536,0.027552,0.096256,0.098304,26.9169,0.11472
+1093,33.8893,29.5078,26.9235,0.068256,0.847104,0.00816,0.004896,0.028672,0.1024,0.098112,25.6514,0.114528
+1094,35.4129,28.2383,26.9603,0.07008,0.888832,0.006144,0.005792,0.028864,0.096416,0.098496,25.6528,0.112928
+1095,35.8293,27.9102,28.1994,0.069344,0.850464,0.008096,0.005472,0.02752,0.096256,0.099616,26.9217,0.120896
+1096,34.106,29.3203,26.8394,0.069824,0.819296,0.008064,0.004256,0.028672,0.09616,0.09808,25.6024,0.11264
+1097,35.7243,27.9922,28.1164,0.069664,0.815104,0.008192,0.0056,0.029216,0.096256,0.099488,26.8788,0.114016
+1098,34.2727,29.1777,28.1678,0.06928,0.883136,0.0064,0.005408,0.028512,0.095104,0.098336,26.8687,0.112928
+1099,33.9928,29.418,26.994,0.069792,0.905056,0.008256,0.00608,0.04288,0.096352,0.098272,25.6526,0.114656
+1100,35.5803,28.1055,26.9251,0.069632,0.857312,0.008096,0.004832,0.028608,0.09648,0.098336,25.6386,0.123136
+1101,35.8267,27.9121,29.3767,0.069824,0.806592,0.006976,0.006112,0.028576,0.095936,0.098144,28.1504,0.114144
+1102,32.7638,30.5215,26.8986,0.07008,0.864256,0.008192,0.005312,0.028512,0.097056,0.098496,25.6137,0.112992
+1103,35.3738,28.2695,26.9958,0.0712,0.883168,0.008192,0.006112,0.028448,0.102656,0.09824,25.6759,0.121888
+1104,33.9298,29.4727,28.2454,0.069728,0.950208,0.006528,0.00528,0.027488,0.096256,0.098336,26.8779,0.113696
+1105,36.1454,27.666,26.8718,0.069568,0.770112,0.008192,0.005856,0.02832,0.096896,0.098304,25.6799,0.114688
+1106,35.5654,28.1172,26.8383,0.069344,0.77232,0.006528,0.00528,0.028608,0.096256,0.097216,25.6491,0.113664
+1107,35.8343,27.9062,28.1257,0.070112,0.829152,0.008128,0.005472,0.027648,0.096416,0.099648,26.8744,0.114688
+1108,34.1333,29.2969,28.0995,0.068416,0.772064,0.00816,0.004128,0.028672,0.096288,0.112608,26.8979,0.111264
+1109,32.5038,30.7656,26.8913,0.070112,0.788,0.007168,0.005984,0.0288,0.095776,0.098784,25.6737,0.122912
+1110,35.5284,28.1465,28.1148,0.069888,0.82976,0.008288,0.005568,0.028768,0.096512,0.098336,26.8637,0.11392
+1111,34.0629,29.3574,26.8968,0.069888,0.776672,0.008256,0.006048,0.03072,0.096256,0.098048,25.6964,0.114528
+1112,36.3766,27.4902,28.1436,0.07072,0.74848,0.008192,0.005472,0.028448,0.096192,0.097216,26.9763,0.11264
+1113,34.2498,29.1973,28.0826,0.070048,0.75936,0.008096,0.00464,0.028672,0.09744,0.09712,26.9041,0.113152
+1114,33.5342,29.8203,27.0377,0.069792,0.956896,0.008096,0.004192,0.028672,0.110272,0.098304,25.647,0.114432
+1115,36.3481,27.5117,26.8329,0.069632,0.774144,0.008192,0.005472,0.028576,0.096224,0.099104,25.6369,0.11472
+1116,35.4693,28.1934,28.1641,0.079392,0.848352,0.008192,0.004128,0.030464,0.09648,0.098336,26.8861,0.112672
+1117,32.2033,31.0527,26.9692,0.0704,0.94176,0.008384,0.00448,0.030496,0.09648,0.097888,25.6045,0.114752
+1118,37.8418,26.4258,26.9475,0.070752,0.873376,0.008192,0.005504,0.028512,0.096448,0.098496,25.6516,0.114624
+1119,35.2035,28.4062,28.2174,0.069632,0.870016,0.008128,0.004544,0.028672,0.096256,0.09936,26.926,0.11472
+1120,34.0471,29.3711,26.9019,0.069824,0.841472,0.008128,0.004384,0.028672,0.096256,0.098304,25.6406,0.114208
+1121,35.7342,27.9844,28.1395,0.069632,0.814752,0.008128,0.004512,0.028672,0.0976,0.09824,26.9033,0.114688
+1122,33.5122,29.8398,28.2644,0.069632,0.956064,0.006496,0.013376,0.029632,0.096256,0.098304,26.8816,0.113056
+1123,31.7973,31.4492,27.0295,0.069856,0.927104,0.008096,0.004608,0.028672,0.106496,0.098304,25.6735,0.112896
+1124,38.0896,26.2539,27.1524,0.069568,0.8312,0.012672,0.005632,0.028736,0.096672,0.097792,25.6763,0.333824
+1125,35.107,28.4844,28.1523,0.068608,0.831488,0.008192,0.005696,0.0288,0.096576,0.098304,26.9005,0.114112
+1126,34.4132,29.0586,26.8275,0.069952,0.752128,0.008128,0.004288,0.028672,0.09616,0.0984,25.6553,0.114432
+1127,35.7992,27.9336,26.8984,0.069664,0.810976,0.008192,0.005728,0.028544,0.096032,0.113408,25.6512,0.114688
+1128,35.5062,28.1641,28.1451,0.069664,0.857248,0.008224,0.004832,0.02848,0.096192,0.098624,26.8677,0.114144
+1129,34.1972,29.2422,26.8676,0.070496,0.771552,0.008128,0.004736,0.02864,0.105824,0.096928,25.6655,0.115776
+1130,35.3982,28.25,26.8653,0.069952,0.80896,0.008192,0.005504,0.029056,0.102688,0.113952,25.613,0.114016
+1131,36.2093,27.6172,28.0883,0.069216,0.760224,0.008192,0.00592,0.028384,0.096256,0.097888,26.9092,0.113024
+1132,34.2521,29.1953,28.1041,0.069408,0.782592,0.00832,0.005568,0.028928,0.096448,0.098304,26.8939,0.120576
+1133,34.1424,29.2891,26.9513,0.071264,0.879008,0.007936,0.005504,0.028736,0.096352,0.098112,25.6494,0.115008
+1134,35.1214,28.4727,28.2174,0.069856,0.909088,0.007648,0.004608,0.02864,0.09584,0.098528,26.8904,0.112768
+1135,34.4086,29.0625,27.0024,0.069248,0.914272,0.008192,0.005696,0.02848,0.096288,0.098784,25.6672,0.114208
+1136,35.4866,28.1797,28.2541,0.069984,0.911136,0.008128,0.004672,0.028576,0.096192,0.098464,26.923,0.113984
+1137,34.0561,29.3633,28.2028,0.069664,0.832128,0.008192,0.005984,0.028512,0.09456,0.099584,26.9504,0.113792
+1138,33.782,29.6016,26.9527,0.069632,0.839712,0.00816,0.005408,0.028416,0.09648,0.098624,25.6859,0.120384
+1139,36.2247,27.6055,26.905,0.072064,0.789696,0.008096,0.005024,0.03392,0.097152,0.098304,25.6879,0.112768
+1140,33.9118,29.4883,28.2459,0.069696,0.895168,0.008096,0.004288,0.029728,0.0952,0.09968,26.929,0.115072
+1141,35.4816,28.1836,26.9476,0.069632,0.853344,0.008128,0.004832,0.028672,0.096288,0.098336,25.6733,0.11504
+1142,35.6149,28.0781,26.9231,0.06944,0.894464,0.006976,0.004192,0.028672,0.096256,0.098336,25.6102,0.114528
+1143,35.3689,28.2734,28.1866,0.069664,0.886752,0.008192,0.005888,0.028544,0.09664,0.098304,26.8792,0.113472
+1144,33.8311,29.5586,28.3157,0.071168,0.919072,0.017376,0.006112,0.045088,0.096,0.098208,26.9495,0.11312
+1145,34.3716,29.0938,26.9095,0.068448,0.806624,0.008096,0.00448,0.028672,0.096256,0.102272,25.68,0.114688
+1146,33.8938,29.5039,28.2526,0.068352,0.99296,0.00816,0.004448,0.038912,0.096288,0.099712,26.8305,0.113248
+1147,36.0006,27.7773,26.7635,0.070208,0.762272,0.007808,0.00448,0.028704,0.096256,0.099584,25.5801,0.11408
+1148,35.8644,27.8828,27.2039,0.06992,0.92112,0.008128,0.00464,0.028672,0.096256,0.099424,25.6307,0.345056
+1149,35.2471,28.3711,28.1149,0.069632,0.83968,0.008192,0.005728,0.028608,0.09664,0.0984,26.8534,0.114688
+1150,34.1288,29.3008,26.8657,0.069632,0.79872,0.00736,0.0048,0.028544,0.095872,0.098944,25.6492,0.11264
+1151,34.7684,28.7617,26.9516,0.078368,0.90048,0.008128,0.004992,0.03072,0.096256,0.098304,25.6198,0.114496
+1152,36.3069,27.543,28.1928,0.069792,0.89856,0.00816,0.00448,0.028672,0.096256,0.09936,26.8744,0.113056
+1153,34.1561,29.2773,28.0434,0.069632,0.754688,0.007328,0.005984,0.028672,0.09536,0.097184,26.8718,0.1128
+1154,34.029,29.3867,26.9531,0.069408,0.849408,0.008096,0.0048,0.028448,0.096608,0.098304,25.6852,0.112768
+1155,35.3103,28.3203,28.2032,0.069504,0.856928,0.008224,0.005888,0.02832,0.09648,0.098016,26.9248,0.115104
+1156,34.0335,29.3828,27.0223,0.06992,0.926048,0.006496,0.00544,0.029344,0.096288,0.098304,25.6737,0.116736
+1157,33.7375,29.6406,28.3024,0.070752,1.00198,0.008128,0.004576,0.028672,0.096256,0.099744,26.8785,0.113792
+1158,35.2326,28.3828,28.1846,0.070848,0.879392,0.00816,0.00416,0.028672,0.096256,0.098304,26.8842,0.11456
+1159,33.5958,29.7656,27.0312,0.069632,0.935936,0.017504,0.005024,0.028704,0.096224,0.098304,25.6655,0.114336
+1160,35.0014,28.5703,27.1415,0.069664,1.11818,0.02384,0.004832,0.028576,0.095776,0.098848,25.5894,0.112448
+1161,35.1022,28.4883,28.2461,0.080448,0.907232,0.008128,0.005504,0.029056,0.096544,0.097856,26.9069,0.114464
+1162,33.8848,29.5117,26.9254,0.070208,0.814816,0.008192,0.005536,0.027616,0.106528,0.098304,25.6798,0.114368
+1163,34.726,28.7969,27.0778,0.07104,0.969344,0.017888,0.00592,0.028416,0.097248,0.098336,25.6754,0.114176
+1164,35.1697,28.4336,28.1682,0.069664,0.861888,0.008064,0.004512,0.028512,0.096032,0.097984,26.8868,0.114688
+1165,33.9928,29.418,28.2268,0.069568,0.896768,0.00816,0.005504,0.033152,0.100992,0.098304,26.9015,0.112896
+1166,33.6532,29.7148,26.9251,0.069664,0.890848,0.008288,0.005568,0.028384,0.096704,0.098624,25.6082,0.118784
+1167,35.4767,28.1875,28.1383,0.069664,0.838432,0.008064,0.005504,0.027552,0.096256,0.098304,26.88,0.114528
+1168,34.2017,29.2383,26.9447,0.069632,0.84304,0.008096,0.004832,0.028672,0.095808,0.098688,25.6812,0.114656
+1169,35.3542,28.2852,28.1164,0.069632,0.863296,0.008128,0.00512,0.028704,0.096256,0.098272,26.8323,0.114656
+1170,33.9838,29.4258,28.0862,0.069632,0.824768,0.008096,0.004768,0.028576,0.096352,0.100352,26.8411,0.112544
+1171,32.5203,30.75,27.0748,0.069568,0.995584,0.008192,0.005568,0.03536,0.09776,0.098848,25.6512,0.112672
+1172,36.9302,27.0781,26.953,0.069632,0.858112,0.006144,0.005664,0.028608,0.096224,0.098656,25.6771,0.112832
+1173,35.6397,28.0586,28.1066,0.069664,0.825216,0.008096,0.005472,0.027488,0.097376,0.09872,26.8594,0.115136
+1174,34.038,29.3789,26.7973,0.069824,0.759776,0.008192,0.004096,0.028672,0.096256,0.098304,25.6182,0.113952
+1175,35.4374,28.2188,26.8349,0.069728,0.802528,0.008288,0.005472,0.027552,0.097792,0.098528,25.6104,0.114688
+1176,35.4031,28.2461,28.1658,0.069632,0.837024,0.008128,0.004768,0.028544,0.096,0.098688,26.9087,0.114336
+1177,33.9748,29.4336,28.1456,0.069152,0.8488,0.008192,0.00592,0.028576,0.096576,0.098272,26.8773,0.1128
+1178,33.8222,29.5664,27.0442,0.069312,0.971424,0.0072,0.004832,0.028576,0.096608,0.099456,25.6539,0.112928
+1179,35.1407,28.457,28.1794,0.070208,0.876,0.007328,0.00592,0.032192,0.096576,0.098176,26.8783,0.114688
+1180,34.1151,29.3125,26.9329,0.069952,0.868352,0.008192,0.005184,0.027584,0.096192,0.097888,25.6435,0.116064
+1181,35.5309,28.1445,28.1393,0.069632,0.845856,0.008064,0.005472,0.027392,0.097344,0.097216,26.8739,0.114496
+1182,34.4317,29.043,28.0163,0.06976,0.74752,0.008288,0.005568,0.028384,0.096288,0.09872,26.8476,0.114208
+1183,33.565,29.793,26.9454,0.069632,0.896704,0.008128,0.00448,0.028672,0.096256,0.09808,25.6287,0.114784
+1184,36.1072,27.6953,26.9639,0.069632,0.881728,0.007136,0.005568,0.028224,0.0952,0.09824,25.6631,0.115104
+1185,34.7684,28.7617,28.1316,0.069376,0.834048,0.008192,0.006144,0.02848,0.096256,0.10464,26.8718,0.11264
+1186,35.0685,28.5156,26.8759,0.069632,0.773344,0.008064,0.004832,0.028864,0.095808,0.09856,25.6836,0.113184
+1187,35.6298,28.0664,26.849,0.071296,0.798944,0.008256,0.005472,0.02848,0.097088,0.098016,25.6168,0.124672
+1188,35.0349,28.543,28.0826,0.069184,0.803104,0.008096,0.004768,0.02848,0.096128,0.098624,26.8615,0.112672
+1189,33.0707,30.2383,28.3127,0.069664,1.0049,0.006816,0.004064,0.028704,0.095872,0.105984,26.8828,0.113888
+1190,31.7894,31.457,27.0959,0.069728,1.05325,0.006368,0.004096,0.028672,0.096,0.098176,25.6243,0.115392
+1191,38.1293,26.2266,28.2685,0.069664,0.956384,0.008032,0.005472,0.028608,0.102368,0.100576,26.8848,0.11264
+1192,33.8266,29.5625,26.9994,0.070016,0.904992,0.008096,0.004576,0.028704,0.095616,0.098528,25.6757,0.11312
+1193,35.5704,28.1133,26.8803,0.06992,0.804448,0.008096,0.004608,0.028672,0.096256,0.098336,25.651,0.118944
+1194,35.6546,28.0469,28.1053,0.070208,0.80624,0.006816,0.004096,0.028672,0.096256,0.098304,26.882,0.112672
+1195,34.3072,29.1484,26.8571,0.069472,0.782816,0.008192,0.00592,0.02864,0.096512,0.098272,25.641,0.126304
+1196,35.5358,28.1406,26.8365,0.06944,0.77616,0.008288,0.004224,0.028672,0.096256,0.098304,25.641,0.114208
+1197,33.849,29.543,28.2422,0.069504,0.87808,0.00736,0.005952,0.030624,0.096448,0.107808,26.9318,0.11456
+1198,35.4866,28.1797,28.218,0.06832,0.901056,0.008128,0.00416,0.028672,0.096,0.098208,26.9008,0.11264
+1199,34.4271,29.0469,26.8206,0.069632,0.75776,0.008192,0.00592,0.028288,0.096864,0.098304,25.641,0.11472
+1200,35.7342,27.9844,28.0517,0.069888,0.801216,0.006144,0.0056,0.034912,0.096704,0.098496,26.8182,0.120576
+1201,34.4271,29.0469,26.8227,0.069632,0.796672,0.008192,0.006112,0.028672,0.096288,0.098304,25.6041,0.114688
+1202,34.22,29.2227,28.3525,0.070944,1.09581,0.008064,0.0048,0.02848,0.106112,0.106944,26.8177,0.113664
+1203,34.0561,29.3633,28.3016,0.070368,0.981152,0.008192,0.005632,0.028224,0.0952,0.106464,26.8923,0.114112
+1204,34.0516,29.3672,27.0131,0.069632,0.888576,0.007712,0.0048,0.028448,0.095648,0.09712,25.7065,0.114688
+1205,35.3152,28.3164,26.9867,0.068448,0.903008,0.008128,0.005472,0.028448,0.095232,0.099712,25.6641,0.114112
+1206,35.6546,28.0469,28.1888,0.06848,0.93184,0.006144,0.005792,0.028736,0.096,0.100896,26.8383,0.112608
+1207,33.4772,29.8711,26.8909,0.07024,0.839744,0.007776,0.014656,0.028704,0.096128,0.09824,25.6199,0.115488
+1208,36.692,27.2539,26.9653,0.069088,0.882944,0.007904,0.004896,0.028672,0.096256,0.098336,25.6628,0.114368
+1209,35.3445,28.293,28.2192,0.069856,0.872448,0.008192,0.005472,0.028544,0.096512,0.098624,26.9253,0.11424
+1210,34.4225,29.0508,26.7936,0.069632,0.75968,0.008096,0.00432,0.028672,0.096256,0.098304,25.6143,0.114304
+1211,35.7642,27.9609,28.0755,0.069664,0.757728,0.008192,0.005568,0.028544,0.09664,0.098496,26.8965,0.114176
+1212,33.609,29.7539,28.0699,0.069952,0.799904,0.008096,0.004832,0.028192,0.096064,0.098496,26.8519,0.112448
+1213,32.2296,31.0273,26.897,0.068192,0.8416,0.024704,0.005536,0.02912,0.096448,0.099424,25.6186,0.113344
+1214,37.4707,26.6875,27.0233,0.069664,0.998976,0.0168,0.005344,0.02864,0.096384,0.098912,25.5957,0.112864
+1215,35.605,28.0859,28.2248,0.067232,0.981024,0.010112,0.00464,0.031744,0.096704,0.098912,26.8185,0.115904
+1216,34.0516,29.3672,26.8043,0.070912,0.795392,0.008192,0.005344,0.027424,0.097344,0.098752,25.5878,0.11312
+1217,35.6695,28.0352,26.8719,0.069728,0.79168,0.007328,0.005888,0.028672,0.096256,0.098336,25.6594,0.114688
+1218,35.1793,28.4258,28.211,0.069312,0.885728,0.008192,0.014336,0.028672,0.096256,0.098304,26.8964,0.113856
+1219,32.7031,30.5781,26.9512,0.070912,0.904064,0.008224,0.00608,0.028672,0.096192,0.098144,25.6244,0.114528
+1220,36.9996,27.0273,26.9687,0.069248,0.897536,0.00816,0.004608,0.028672,0.096256,0.098304,25.6526,0.11328
+1221,35.5013,28.168,28.2358,0.068928,0.936672,0.007296,0.005984,0.028576,0.096128,0.098528,26.88,0.113728
+1222,34.1288,29.3008,26.9907,0.069792,0.940064,0.006144,0.005792,0.0288,0.096224,0.098592,25.6323,0.113056
+1223,35.521,28.1523,27.0196,0.067872,0.956512,0.010368,0.006016,0.03072,0.096256,0.098304,25.6406,0.112992
+1224,34.7637,28.7656,28.1784,0.070912,0.876576,0.00688,0.014336,0.028672,0.096256,0.097536,26.8726,0.114688
+1225,34.0154,29.3984,26.998,0.069664,0.92976,0.008192,0.005184,0.02864,0.097024,0.11248,25.633,0.113984
+1226,35.4276,28.2266,28.1889,0.069248,0.921632,0.008064,0.0048,0.040032,0.096384,0.098848,26.8352,0.114656
+1227,33.9118,29.4883,29.52,0.069632,0.904256,0.007328,0.005984,0.038016,0.097152,0.098336,28.1825,0.1168
+1228,32.724,30.5586,26.947,0.07104,0.880864,0.01808,0.004864,0.028672,0.096288,0.098272,25.6345,0.114368
+1229,35.3152,28.3164,26.9311,0.069664,0.894624,0.022848,0.006144,0.036864,0.096256,0.098272,25.5914,0.11504
+1230,35.3982,28.25,28.1866,0.069632,0.902432,0.008096,0.0048,0.028416,0.09616,0.098304,26.8658,0.112992
+1231,34.0697,29.3516,26.966,0.069632,0.93184,0.008192,0.005504,0.028544,0.096192,0.098272,25.6132,0.11472
+1232,35.325,28.3086,26.9105,0.069728,0.858016,0.00816,0.004128,0.028672,0.096256,0.113952,25.6169,0.11472
+1233,35.8996,27.8555,28.064,0.07008,0.766528,0.008288,0.005888,0.028416,0.09632,0.09808,26.876,0.1144
+1234,34.2338,29.2109,28.1028,0.068,0.800768,0.008192,0.005568,0.028384,0.09632,0.104992,26.8778,0.112864
+1235,34.0879,29.3359,26.8343,0.069696,0.776416,0.008192,0.006112,0.02848,0.09648,0.098336,25.6368,0.11376
+1236,35.286,28.3398,28.1309,0.069632,0.880192,0.008096,0.00464,0.028672,0.095808,0.098304,26.8307,0.114816
+1237,34.1242,29.3047,27.0082,0.069664,0.913376,0.008192,0.005728,0.028544,0.0968,0.098048,25.6734,0.1144
+1238,35.1455,28.4531,28.1902,0.069632,0.867488,0.00704,0.005568,0.028704,0.096416,0.098304,26.9049,0.112128
+1239,34.5153,28.9727,28.0494,0.069664,0.741344,0.008192,0.005888,0.028,0.09616,0.098464,26.887,0.114688
+1240,33.7375,29.6406,26.9025,0.069632,0.83952,0.00816,0.004288,0.028672,0.096288,0.099616,25.643,0.113376
+1241,35.0877,28.5,26.9673,0.075776,0.935936,0.009248,0.005088,0.030368,0.096608,0.098304,25.602,0.114048
+1242,35.3445,28.293,28.1546,0.070048,0.865664,0.007008,0.004192,0.028672,0.096288,0.09952,26.8583,0.124896
+1243,32.4626,30.8047,26.9023,0.069632,0.849856,0.006208,0.006144,0.028544,0.096416,0.098272,25.6338,0.113376
+1244,35.2374,28.3789,26.833,0.070208,0.788704,0.006304,0.005568,0.028352,0.095104,0.099744,25.6247,0.114336
+1245,36.0563,27.7344,28.0658,0.069568,0.798816,0.00816,0.006144,0.028672,0.101664,0.09824,26.8398,0.114688
+1246,34.367,29.0977,26.7597,0.069216,0.762848,0.006144,0.005728,0.028448,0.0968,0.0984,25.5775,0.114688
+1247,35.7942,27.9375,27.9962,0.068992,0.800864,0.022528,0.00464,0.029728,0.096672,0.326208,26.5339,0.11264
+1248,33.4728,29.875,28.1888,0.068416,0.873728,0.008096,0.0048,0.04112,0.096256,0.09984,26.8805,0.116
+1249,34.6883,28.8281,26.88,0.069824,0.769856,0.008192,0.006016,0.02864,0.106656,0.098208,25.6677,0.12496
+1250,35.5309,28.1445,28.0877,0.069632,0.781728,0.008096,0.0048,0.02848,0.09632,0.098432,26.8861,0.11408
+1251,33.1907,30.1289,28.0389,0.069632,0.761856,0.008192,0.00592,0.028544,0.096608,0.09936,26.8544,0.1144
+1252,35.0685,28.5156,26.9066,0.069696,0.860384,0.008096,0.004288,0.028672,0.096256,0.098304,25.6261,0.114784
+1253,35.7292,27.9883,26.8578,0.068928,0.788768,0.008096,0.004928,0.028672,0.098336,0.110272,25.6361,0.113664
+1254,35.7342,27.9844,28.1224,0.069728,0.776096,0.006144,0.005664,0.037376,0.095872,0.110944,26.9067,0.113888
+1255,34.2796,29.1719,26.8779,0.069472,0.834016,0.008192,0.005536,0.02864,0.096096,0.098656,25.623,0.114304
+1256,35.3933,28.2539,26.9234,0.07056,0.884672,0.008096,0.004288,0.028672,0.096256,0.111776,25.6048,0.114272
+1257,35.5062,28.1641,28.2485,0.070112,0.943712,0.007808,0.004896,0.028704,0.102368,0.100064,26.8772,0.113632
+1258,34.2888,29.1641,28.0607,0.0704,0.821088,0.008096,0.004608,0.028672,0.096256,0.098304,26.8196,0.113632
+1259,34.3947,29.0742,26.8558,0.068608,0.821088,0.007648,0.00464,0.028704,0.097312,0.098592,25.615,0.114208
+1260,35.8293,27.9102,28.0371,0.069664,0.757504,0.008096,0.004416,0.028672,0.096032,0.098464,26.8596,0.114688
+1261,34.1698,29.2656,26.8825,0.069056,0.829472,0.008384,0.013088,0.030752,0.096224,0.098304,25.6207,0.116512
+1262,33.5958,29.7656,28.1788,0.068384,0.878592,0.008224,0.005568,0.028576,0.096192,0.098656,26.8824,0.112224
+1263,35.9147,27.8438,28.1087,0.071328,0.844128,0.008192,0.005696,0.028352,0.095104,0.099712,26.8415,0.114688
+1264,34.1288,29.3008,26.9865,0.069632,0.9456,0.00672,0.004096,0.028672,0.097632,0.09856,25.6209,0.114688
+1265,34.6978,28.8203,26.8984,0.069664,0.90112,0.00816,0.006048,0.028416,0.098144,0.098656,25.5735,0.114624
+1266,35.4915,28.1758,28.1757,0.069344,0.899008,0.008096,0.004544,0.028704,0.095904,0.098464,26.8575,0.11408
+1267,33.9883,29.4219,26.8276,0.069888,0.823872,0.00816,0.013984,0.029056,0.097312,0.097248,25.5744,0.113632
+1268,35.9601,27.8086,26.8448,0.069632,0.777952,0.008064,0.004512,0.028672,0.09568,0.098048,25.6477,0.114496
+1269,35.3689,28.2734,28.1232,0.069664,0.78848,0.008192,0.00576,0.039296,0.108544,0.098336,26.8902,0.114688
+1270,34.2338,29.2109,28.0836,0.069632,0.819232,0.007904,0.004352,0.032512,0.096512,0.098304,26.8406,0.11456
+1271,33.8669,29.5273,26.7817,0.069632,0.772096,0.008032,0.005472,0.028576,0.096256,0.097184,25.5877,0.116736
+1272,36.0614,27.7305,28.0513,0.069344,0.757504,0.007808,0.0048,0.028384,0.111168,0.098336,26.8595,0.114432
+1273,34.1288,29.3008,26.8337,0.069472,0.779168,0.008192,0.005824,0.028768,0.09648,0.098304,25.6328,0.114688
+1274,35.61,28.082,26.8717,0.069632,0.849408,0.008096,0.004704,0.028704,0.096224,0.099328,25.6011,0.114528
+1275,36.0767,27.7188,29.184,0.070912,0.761728,0.006976,0.005504,0.028672,0.096768,0.098496,28.0023,0.112672
+1276,32.9684,30.332,26.9066,0.069216,0.882464,0.008096,0.0048,0.028608,0.096352,0.098304,25.6053,0.11344
+1277,34.3578,29.1055,27.0331,0.07088,0.96336,0.022528,0.0056,0.0288,0.096704,0.099744,25.6325,0.112928
+1278,36.8186,27.1602,28.2474,0.069056,0.972928,0.006688,0.005632,0.028544,0.0968,0.106496,26.8471,0.11408
+1279,34.0743,29.3477,26.9985,0.069632,0.957632,0.008128,0.005024,0.02864,0.096288,0.098272,25.6196,0.115328
+1280,35.7292,27.9883,26.8452,0.069728,0.835456,0.008128,0.004192,0.028672,0.096256,0.098336,25.5897,0.114688
+1281,35.5457,28.1328,28.1539,0.069632,0.88608,0.008256,0.004736,0.028672,0.096256,0.098304,26.8493,0.11264
+1282,34.0788,29.3438,26.8124,0.071104,0.776736,0.00816,0.00416,0.028672,0.096192,0.0984,25.6162,0.112832
+1283,35.8192,27.918,28.1561,0.0696,0.81312,0.007328,0.00592,0.028672,0.097408,0.098208,26.9216,0.114176
+1284,34.1789,29.2578,28.0999,0.069856,0.892384,0.008064,0.004768,0.028544,0.096416,0.098272,26.7878,0.113728
+1285,34.1288,29.3008,26.8227,0.069632,0.78368,0.006848,0.005696,0.028704,0.096672,0.098464,25.6199,0.113088
+1286,35.4866,28.1797,28.1396,0.069696,0.9032,0.008256,0.005632,0.028736,0.095968,0.098656,26.8148,0.11472
+1287,34.3348,29.125,28.1205,0.071328,0.769408,0.007328,0.005952,0.028672,0.09616,0.0984,26.9292,0.11408
+1288,33.8983,29.5,26.9049,0.06976,0.90336,0.008192,0.005376,0.02848,0.096896,0.098624,25.5795,0.114688
+1289,35.5161,28.1562,26.8197,0.069632,0.813056,0.008224,0.005696,0.028608,0.10288,0.100096,25.5736,0.117856
+1290,35.6001,28.0898,28.0981,0.069376,0.854464,0.008256,0.005568,0.02848,0.094912,0.098304,26.8247,0.114048
+1291,34.0245,29.3906,26.8995,0.069056,0.833152,0.008256,0.004992,0.028704,0.096224,0.098304,25.6461,0.114688
+1292,33.5958,29.7656,26.9771,0.068512,0.913376,0.008192,0.005376,0.029248,0.098528,0.099456,25.6412,0.113184
+1293,37.2797,26.8242,28.1792,0.069376,0.930048,0.008096,0.004928,0.028672,0.097632,0.098496,26.8293,0.112672
+1294,33.9298,29.4727,27.2944,0.070208,0.901216,0.008224,0.00528,0.02864,0.096256,0.098272,25.973,0.11328
+1295,35.0541,28.5273,26.7862,0.06912,0.752576,0.008192,0.005696,0.033216,0.096256,0.108544,25.5971,0.115584
+1296,35.7842,27.9453,28.0918,0.069504,0.813184,0.008128,0.00416,0.028672,0.096256,0.098336,26.8595,0.114112
+1297,34.3809,29.0859,26.8173,0.068384,0.772096,0.008096,0.005472,0.028512,0.096288,0.09824,25.6255,0.114688
+1298,35.605,28.0859,28.1086,0.069184,0.82704,0.006976,0.00416,0.04096,0.096256,0.098304,26.8526,0.113056
+1299,34.2842,29.168,28.0208,0.069472,0.788704,0.008192,0.005664,0.028416,0.09664,0.098432,26.8126,0.11264
+1300,34.3164,29.1406,26.8452,0.068992,0.789152,0.006144,0.005696,0.028928,0.096352,0.099712,25.6368,0.113472
+1301,35.8895,27.8633,26.8024,0.07392,0.7496,0.00816,0.00592,0.02848,0.096544,0.099488,25.6256,0.114688
+1302,35.6596,28.043,28.1502,0.069888,0.805056,0.023712,0.004832,0.038144,0.096512,0.097984,26.8992,0.11488
+1303,32.4256,30.8398,27.2548,0.06912,1.17395,0.016512,0.004096,0.028672,0.096256,0.108352,25.6324,0.125472
+1304,37.1445,26.9219,26.8549,0.069632,0.849376,0.007328,0.005568,0.031136,0.096032,0.098496,25.5836,0.113728
+1305,35.9349,27.8281,28.1289,0.069856,0.79872,0.008192,0.006144,0.02864,0.096288,0.098304,26.9087,0.114048
+1306,34.3394,29.1211,26.83,0.069664,0.76368,0.006336,0.00544,0.028576,0.096288,0.098688,25.6475,0.11376
+1307,35.6149,28.0781,28.1477,0.07104,0.785024,0.007616,0.004672,0.028672,0.096256,0.09952,26.9402,0.114688
+1308,33.9883,29.4219,28.0371,0.069632,0.784384,0.008,0.004288,0.028704,0.094176,0.098304,26.8369,0.112768
+1309,33.8848,29.5117,26.9579,0.070752,0.963488,0.008192,0.00592,0.028512,0.096352,0.098592,25.573,0.113056
+1310,35.9803,27.793,26.8213,0.070272,0.768064,0.008192,0.004128,0.02976,0.095136,0.098304,25.6348,0.11264
+1311,35.1022,28.4883,28.3529,0.067488,1.08832,0.01024,0.006112,0.030752,0.098304,0.0984,26.8389,0.114368
+1312,32.9218,30.375,26.8943,0.070784,0.92048,0.00816,0.004096,0.028672,0.096256,0.098336,25.5529,0.114688
+1313,37.2147,26.8711,26.8277,0.070592,0.81472,0.008096,0.004576,0.028672,0.096288,0.098272,25.5933,0.113184
+1314,35.6447,28.0547,28.0428,0.071136,0.811552,0.008352,0.005568,0.028544,0.094752,0.098432,26.8103,0.114208
+1315,34.6273,28.8789,26.7882,0.069472,0.74704,0.00736,0.00592,0.028704,0.096256,0.09824,25.6205,0.114688
+1316,35.8242,27.9141,26.7527,0.071008,0.772768,0.008192,0.005216,0.028608,0.095232,0.098112,25.5592,0.114368
+1317,35.4423,28.2148,28.2071,0.06976,0.863904,0.008128,0.01408,0.041504,0.096256,0.108576,26.8918,0.11312
+1318,32.2621,30.9961,26.9455,0.074944,0.94496,0.008288,0.0056,0.028672,0.096704,0.098304,25.5631,0.124928
+1319,35.3689,28.2734,28.0893,0.070528,0.860224,0.008192,0.00576,0.028512,0.09648,0.097824,26.8071,0.114688
+1320,33.1606,30.1562,28.0269,0.069632,0.759808,0.00832,0.005568,0.028672,0.096224,0.108704,26.8364,0.1136
+1321,35.7243,27.9922,26.8201,0.06976,0.78192,0.00816,0.005504,0.027584,0.09632,0.098272,25.618,0.114624
+1322,36.0107,27.7695,26.7604,0.06976,0.756768,0.008128,0.0048,0.028672,0.094464,0.104288,25.5792,0.114304
+1323,35.9551,27.8125,29.2086,0.069664,0.770016,0.008128,0.005472,0.028416,0.0952,0.098336,28.0207,0.112672
+1324,32.6115,30.6641,26.8964,0.075872,0.832704,0.008192,0.025312,0.038336,0.096832,0.108544,25.5973,0.113312
+1325,35.3933,28.2539,26.7713,0.071136,0.807456,0.007552,0.004736,0.03072,0.095744,0.098656,25.5408,0.114528
+1326,35.8644,27.8828,28.0247,0.070496,0.770048,0.007296,0.004768,0.028576,0.096576,0.098304,26.834,0.114688
+1327,33.9478,29.457,26.8668,0.06976,0.87232,0.008224,0.006112,0.028416,0.096512,0.098304,25.573,0.11424
+1328,35.7542,27.9688,26.8104,0.069632,0.821248,0.008096,0.004192,0.028672,0.096096,0.098016,25.5713,0.113152
+1329,35.5852,28.1016,28.137,0.069632,0.876384,0.008096,0.005472,0.027552,0.096288,0.099712,26.8396,0.114176
+1330,34.2658,29.1836,28.0555,0.071008,0.819648,0.006368,0.005408,0.028512,0.095104,0.098304,26.8165,0.114592
+1331,34.0154,29.3984,26.7503,0.070752,0.770976,0.006144,0.006144,0.028672,0.103712,0.098304,25.5508,0.114752
+1332,33.5122,29.8398,28.1191,0.069728,0.856704,0.008096,0.004384,0.028672,0.096256,0.098272,26.8445,0.112416
+1333,36.343,27.5156,26.8769,0.071392,0.84,0.00816,0.006144,0.028448,0.09648,0.098304,25.6143,0.113664
+1334,35.4718,28.1914,27.1446,0.070048,0.816288,0.008096,0.004864,0.028384,0.11312,0.098304,25.8908,0.11472
+1335,34.3994,29.0703,28.459,0.07168,1.23226,0.007968,0.00496,0.03072,0.096288,0.098272,26.8039,0.11296
+1336,33.9748,29.4336,26.8471,0.069664,0.823264,0.008192,0.004096,0.028672,0.096224,0.097856,25.6061,0.113056
+1337,35.5556,28.125,26.8634,0.087808,0.84192,0.008096,0.005472,0.027648,0.096288,0.098272,25.5828,0.115136
+1338,35.4866,28.1797,28.0965,0.068448,0.885824,0.008128,0.0048,0.028352,0.096576,0.098464,26.792,0.11392
+1339,34.404,29.0664,26.7721,0.07024,0.755392,0.008096,0.004512,0.028768,0.097536,0.098688,25.5952,0.113664
+1340,35.7742,27.9531,26.8063,0.069664,0.795872,0.008064,0.004992,0.028672,0.096256,0.100352,25.5898,0.112672
+1341,35.8443,27.8984,28.0139,0.069088,0.7496,0.008096,0.004704,0.028672,0.097344,0.099264,26.8431,0.114016
+1342,33.8401,29.5508,26.8226,0.069632,0.83968,0.008192,0.004128,0.02864,0.096256,0.09808,25.5634,0.114592
+1343,35.8895,27.8633,28.0386,0.069632,0.78,0.008096,0.00448,0.029824,0.096544,0.098784,26.8371,0.11408
+1344,33.1735,30.1445,28.1787,0.070336,0.941984,0.017824,0.0048,0.038912,0.096288,0.09968,26.7946,0.114208
+1345,34.4317,29.043,26.9128,0.06976,0.8728,0.008192,0.006144,0.028384,0.095808,0.098592,25.6186,0.114464
+1346,35.6347,28.0625,26.825,0.069504,0.827808,0.008192,0.00544,0.028512,0.095136,0.098272,25.5775,0.114592
+1347,35.5803,28.1055,29.0852,0.0696,0.983008,0.008096,0.005472,0.031584,0.10032,0.10608,27.6598,0.121216
+1348,32.7911,30.4961,26.7592,0.069632,0.786592,0.008352,0.005568,0.028192,0.095136,0.098272,25.5508,0.11664
+1349,35.3542,28.2852,26.837,0.069888,0.814848,0.008192,0.005792,0.028448,0.0968,0.098336,25.5994,0.115264
+1350,34.3809,29.0859,29.3919,0.068608,0.963744,0.008096,0.0048,0.028512,0.096192,0.098784,28.0096,0.113536
+1351,31.9601,31.2891,27.05,0.069664,1.02806,0.008192,0.006144,0.028416,0.096096,0.104864,25.5939,0.11472
+1352,37.5147,26.6562,26.8964,0.069632,0.894624,0.008096,0.004544,0.028672,0.095968,0.098144,25.582,0.114688
+1353,35.8744,27.875,28.0787,0.068224,0.776192,0.008192,0.005952,0.028416,0.09616,0.100896,26.882,0.11264
+1354,33.152,30.1641,26.9828,0.070464,0.94208,0.008224,0.013664,0.031232,0.095392,0.111008,25.5979,0.112896
+1355,35.1407,28.457,26.9354,0.069984,0.861728,0.008096,0.019072,0.038912,0.097632,0.098688,25.6262,0.115136
+1356,36.65,27.2852,28.0967,0.069696,0.844224,0.008128,0.004288,0.028672,0.095744,0.098816,26.8326,0.11456
+1357,34.1926,29.2461,28.0459,0.068224,0.839648,0.006144,0.006144,0.028672,0.096256,0.098304,26.7893,0.113184
+1358,34.344,29.1172,26.8557,0.069632,0.851712,0.008096,0.004768,0.02864,0.095328,0.097184,25.5857,0.114656
+1359,35.408,28.2422,28.117,0.070752,0.843872,0.006976,0.006144,0.028352,0.096576,0.098016,26.8535,0.112768
+1360,34.3256,29.1328,26.8196,0.07008,0.807424,0.008224,0.005312,0.028672,0.096192,0.098496,25.5925,0.112672
+1361,35.9147,27.8438,26.8019,0.069888,0.789248,0.00736,0.005952,0.028672,0.096256,0.098336,25.5918,0.114368
+1362,35.1407,28.457,29.25,0.069056,1.13968,0.008224,0.005568,0.029152,0.096192,0.098432,27.6905,0.113152
+1363,33.3333,30,26.8349,0.070688,0.8256,0.00688,0.0056,0.028576,0.096288,0.098336,25.5883,0.114688
+1364,35.7592,27.9648,26.8329,0.070752,0.7976,0.008192,0.00528,0.028672,0.096288,0.098688,25.6139,0.113504
+1365,35.8493,27.8945,28.1416,0.069248,0.81344,0.008224,0.0056,0.028576,0.096704,0.098496,26.9079,0.113376
+1366,34.097,29.3281,26.7988,0.069472,0.805632,0.006304,0.005472,0.028384,0.096736,0.097824,25.5756,0.113408
+1367,35.8443,27.8984,26.8516,0.069728,0.79888,0.008192,0.005568,0.028352,0.096544,0.098624,25.631,0.114656
+1368,36.036,27.75,28.0204,0.06992,0.751616,0.008192,0.004096,0.028704,0.09536,0.098496,26.85,0.114112
+1369,34.4595,29.0195,28.0269,0.069632,0.759136,0.006816,0.005696,0.028352,0.094976,0.098304,26.8514,0.11264
+1370,34.3716,29.0938,26.7859,0.069632,0.778144,0.008128,0.00432,0.028672,0.096256,0.100352,25.5877,0.11264
+1371,35.9248,27.8359,28.0883,0.070976,0.774016,0.008096,0.005024,0.028672,0.097568,0.09904,26.8903,0.114656
+1372,34.2658,29.1836,26.7791,0.06992,0.774176,0.00816,0.005472,0.028416,0.095136,0.099456,25.5844,0.113984
+1373,36.0056,27.7734,27.9665,0.069664,0.769952,0.008128,0.005504,0.028672,0.096992,0.098336,26.7756,0.113696
+1374,34.6414,28.8672,28.0036,0.069696,0.765696,0.008128,0.004448,0.028672,0.10848,0.098336,26.8074,0.112704
+1375,34.3855,29.082,26.8534,0.06944,0.80896,0.008064,0.005056,0.028672,0.097952,0.098656,25.6219,0.114688
+1376,35.7243,27.9922,26.8148,0.069536,0.7848,0.008192,0.013696,0.02896,0.098656,0.098336,25.599,0.113632
+1377,35.8744,27.875,28.0757,0.069632,0.806912,0.008224,0.006112,0.028672,0.096256,0.09808,26.8475,0.114368
+1378,33.8893,29.5078,26.8283,0.06944,0.817344,0.008192,0.005632,0.02848,0.094912,0.098304,25.5812,0.124768
+1379,36.1327,27.6758,26.8347,0.069344,0.811296,0.008192,0.00592,0.028512,0.09664,0.098304,25.6015,0.114976
+1380,35.8694,27.8789,28.0675,0.0696,0.806144,0.008096,0.0048,0.028512,0.095584,0.09728,26.8431,0.114368
+1381,33.9298,29.4727,26.9312,0.069664,0.834944,0.008096,0.014464,0.030976,0.095968,0.098528,25.665,0.1136
+1382,36.0259,27.7578,27.6258,0.067328,0.757504,0.008128,0.005024,0.028512,0.096384,0.098304,26.451,0.1136
+1383,34.1197,29.3086,28.1251,0.069248,0.891648,0.006304,0.006144,0.028288,0.094592,0.098304,26.8165,0.113984
+1384,32.9897,30.3125,26.8411,0.070752,0.819872,0.007616,0.004928,0.028672,0.104448,0.099648,25.5921,0.11312
+1385,36.8876,27.1094,28.1928,0.069696,0.913408,0.008192,0.005696,0.028608,0.096768,0.1024,26.8534,0.114688
+1386,34.3763,29.0898,26.8492,0.069664,0.849504,0.008096,0.004768,0.028608,0.095584,0.098784,25.5798,0.114336
+1387,36.031,27.7539,26.7977,0.069664,0.774048,0.006208,0.006112,0.028288,0.095776,0.097184,25.6052,0.115136
+1388,35.3542,28.2852,28.0621,0.070176,0.880608,0.008224,0.00528,0.028512,0.0952,0.098304,26.7632,0.112608
+1389,33.8311,29.5586,28.0637,0.069632,0.845824,0.008224,0.00608,0.028736,0.096256,0.108512,26.7858,0.114688
+1390,33.9928,29.418,26.9947,0.077856,0.966656,0.008192,0.005216,0.027584,0.097568,0.099008,25.5972,0.115424
+1391,35.8042,27.9297,28.1361,0.068512,0.859904,0.006272,0.006144,0.028544,0.096384,0.09808,26.8577,0.11456
+1392,34.1242,29.3047,26.8554,0.069632,0.872448,0.008192,0.004256,0.028576,0.096224,0.098272,25.5644,0.113376
+1393,35.945,27.8203,26.8271,0.06992,0.753408,0.006496,0.006016,0.028736,0.095808,0.098112,25.6539,0.11472
+1394,35.7292,27.9883,29.2181,0.069792,0.751616,0.008192,0.005568,0.02864,0.094816,0.098304,28.0474,0.113792
+1395,32.85,30.4414,26.8358,0.069792,0.799168,0.007904,0.004608,0.029888,0.096672,0.09872,25.6161,0.112992
+1396,35.4325,28.2227,26.8145,0.069696,0.798656,0.008192,0.005472,0.028448,0.107392,0.099424,25.5845,0.11264
+1397,35.3982,28.25,28.2701,0.069696,0.960512,0.007616,0.004672,0.028672,0.096256,0.098336,26.8898,0.11456
+1398,34.6555,28.8555,26.794,0.069632,0.772096,0.008192,0.005216,0.027552,0.098208,0.0984,25.5994,0.115264
+1399,35.9046,27.8516,26.8299,0.069632,0.770048,0.008288,0.006048,0.028672,0.111808,0.099136,25.6205,0.115808
+1400,35.4669,28.1953,28.1322,0.069664,0.86304,0.008224,0.005536,0.028384,0.095104,0.101568,26.8477,0.112992
+1401,33.9433,29.4609,26.997,0.070048,0.954336,0.008192,0.005888,0.028352,0.096416,0.098528,25.6206,0.114624
+1402,35.8343,27.9062,28.0894,0.069632,0.831168,0.018752,0.005376,0.02944,0.096096,0.0984,26.826,0.114464
+1403,34.3164,29.1406,28.1113,0.069792,0.825888,0.008224,0.005728,0.028512,0.104832,0.09824,26.8567,0.113312
+1404,33.3333,30,26.9886,0.07008,0.962464,0.008128,0.004608,0.028672,0.095904,0.098656,25.6061,0.11392
+1405,33.9703,29.4375,28.1668,0.084992,0.862016,0.008096,0.01424,0.029024,0.096288,0.098304,26.8591,0.11472
+1406,35.9753,27.7969,28.0631,0.069664,0.82736,0.00832,0.005536,0.028704,0.104896,0.099552,26.8061,0.112992
+1407,34.4967,28.9883,26.8611,0.069632,0.792576,0.008192,0.006048,0.02864,0.096416,0.114656,25.6299,0.115008
+1408,36.0716,27.7227,26.8553,0.069632,0.799872,0.008096,0.004832,0.02864,0.096416,0.098432,25.6348,0.114528
+1409,35.3396,28.2969,28.1524,0.069248,0.885696,0.008192,0.005824,0.02832,0.09632,0.098016,26.8461,0.114656
+1410,34.188,29.25,26.8693,0.068896,0.827808,0.008096,0.004512,0.028608,0.09632,0.098304,25.6225,0.11424
+1411,35.7043,28.0078,26.7986,0.069152,0.795584,0.007872,0.005504,0.027616,0.096256,0.098336,25.5836,0.114688
+1412,35.1214,28.4727,28.0861,0.069952,0.860608,0.021856,0.004736,0.028672,0.096256,0.09952,26.7921,0.112416
+1413,33.4772,29.8711,28.179,0.076224,0.966656,0.008224,0.00608,0.028704,0.100256,0.099456,26.7806,0.112768
+1414,34.7496,28.7773,26.8574,0.069664,0.876512,0.008192,0.005312,0.028704,0.09504,0.098272,25.5611,0.114624
+1415,35.7892,27.9414,28.0312,0.069664,0.79248,0.008096,0.00464,0.02864,0.096288,0.099648,26.8172,0.114592
+1416,34.0652,29.3555,26.8659,0.070112,0.845824,0.008192,0.005376,0.027392,0.096256,0.098304,25.5998,0.11456
+1417,35.6944,28.0156,28.1677,0.069632,0.814208,0.008096,0.005088,0.028672,0.096288,0.097504,26.934,0.114176
+1418,34.2521,29.1953,28.0699,0.069344,0.836416,0.006144,0.005696,0.029152,0.099712,0.098752,26.8122,0.11248
+1419,33.9928,29.418,26.8881,0.069792,0.845024,0.006944,0.00608,0.02848,0.102656,0.098304,25.6164,0.114432
+1420,35.5704,28.1133,26.9599,0.071392,0.880928,0.008192,0.015712,0.029344,0.096288,0.098304,25.6403,0.119424
+1421,35.8694,27.8789,28.0827,0.070144,0.859584,0.008128,0.004704,0.028672,0.097536,0.099072,26.8001,0.114688
+1422,34.298,29.1562,26.7695,0.06928,0.776672,0.008192,0.00416,0.028608,0.096256,0.098304,25.5734,0.114688
+1423,35.7143,28,26.8398,0.069376,0.80912,0.008064,0.005056,0.028704,0.096224,0.099392,25.6092,0.114688
+1424,35.8543,27.8906,27.9762,0.068128,0.767104,0.008096,0.0048,0.028384,0.09616,0.098016,26.7908,0.114688
+1425,34.2109,29.2305,28.2051,0.069632,0.894976,0.008192,0.005408,0.02736,0.097376,0.097184,26.8899,0.11504
+1426,34.2383,29.207,26.8335,0.069696,0.823744,0.008192,0.004096,0.028672,0.096288,0.10032,25.5895,0.112928
+1427,35.8694,27.8789,28.0494,0.069184,0.77232,0.008128,0.005472,0.027584,0.096288,0.106464,26.8514,0.112608
+1428,34.3763,29.0898,26.8333,0.070624,0.761856,0.008192,0.00528,0.028768,0.09648,0.098848,25.6503,0.11296
+1429,35.7992,27.9336,26.878,0.06976,0.847872,0.008192,0.005952,0.028448,0.096576,0.0984,25.6093,0.113536
+1430,35.408,28.2422,28.1173,0.070432,0.86992,0.00672,0.004096,0.029952,0.096576,0.098368,26.8268,0.114464
+1431,34.2888,29.1641,26.8089,0.068288,0.804864,0.007392,0.004896,0.028672,0.097472,0.098624,25.5841,0.11456
+1432,35.5704,28.1133,26.8349,0.071296,0.786816,0.008192,0.005344,0.027424,0.096288,0.099616,25.6253,0.114688
+1433,35.5803,28.1055,28.0633,0.069664,0.800736,0.008192,0.005536,0.028544,0.09696,0.098336,26.8411,0.114272
+1434,34.2934,29.1602,26.8293,0.069216,0.811968,0.00816,0.005568,0.028416,0.09504,0.098304,25.598,0.114688
+1435,35.7942,27.9375,26.8474,0.0696,0.82352,0.00816,0.005632,0.02864,0.096,0.097056,25.6041,0.11472
+1436,34.2109,29.2305,28.166,0.069632,0.90032,0.006976,0.005504,0.027232,0.096288,0.098272,26.8491,0.112736
+1437,35.5112,28.1602,28.1839,0.069472,0.90128,0.008192,0.005536,0.02848,0.096992,0.099584,26.8604,0.114048
+1438,34.0743,29.3477,26.9419,0.070112,0.927744,0.008192,0.004096,0.028672,0.096256,0.106496,25.5816,0.118784
+1439,35.605,28.0859,28.1864,0.070784,0.899968,0.008224,0.005568,0.02848,0.09648,0.098816,26.8636,0.114464
+1440,34.3901,29.0781,26.7325,0.071552,0.761216,0.008128,0.0048,0.0288,0.096288,0.10032,25.5425,0.118912
+1441,35.3591,28.2812,28.1702,0.069632,0.904768,0.008096,0.01488,0.031776,0.100928,0.098144,26.8273,0.114624
+1442,33.316,30.0156,28.0556,0.069664,0.7864,0.008288,0.005568,0.028416,0.094976,0.098304,26.8504,0.113536
+1443,33.7108,29.6641,27.0377,0.077408,0.977312,0.014336,0.006144,0.028672,0.097376,0.112672,25.6091,0.11472
+1444,35.8644,27.8828,26.7448,0.07088,0.783136,0.008192,0.004128,0.029888,0.095008,0.099456,25.5415,0.11264
+1445,35.7542,27.9688,28.1287,0.069728,0.874496,0.008288,0.006048,0.028672,0.096288,0.098272,26.8321,0.114816
+1446,34.147,29.2852,26.8225,0.069856,0.82512,0.008192,0.004096,0.028672,0.096288,0.098464,25.5769,0.114912
+1447,35.7692,27.957,26.758,0.069504,0.79968,0.008288,0.006048,0.02864,0.09552,0.0984,25.5372,0.114688
+1448,35.9652,27.8047,28.0515,0.069632,0.796384,0.008096,0.00448,0.028704,0.10032,0.100352,26.8307,0.1128
+1449,34.2017,29.2383,26.8755,0.070016,0.867808,0.00656,0.005504,0.028672,0.096576,0.09856,25.5872,0.114592
+1450,36.0665,27.7266,27.9877,0.069632,0.784416,0.00816,0.004128,0.02864,0.096288,0.099296,26.7827,0.114432
+1451,34.3809,29.0859,27.972,0.069984,0.783648,0.008448,0.004576,0.028672,0.096256,0.09808,26.7693,0.113024
+1452,33.8624,29.5312,26.9144,0.069632,0.937824,0.008096,0.004352,0.028672,0.097376,0.098624,25.5572,0.112704
+1453,36.3327,27.5234,26.8179,0.069632,0.8192,0.007648,0.00464,0.028704,0.098272,0.099488,25.5762,0.11408
+1454,35.6546,28.0469,29.1616,0.06848,1.05869,0.008352,0.005728,0.028704,0.096416,0.099488,27.6811,0.114688
+1455,33.2209,30.1016,26.9121,0.070848,0.91568,0.006752,0.005728,0.028576,0.095904,0.098656,25.5756,0.114368
+1456,35.5062,28.1641,26.8411,0.069632,0.856064,0.008192,0.004416,0.028512,0.096128,0.098272,25.5652,0.114688
+1457,35.8343,27.9062,28.0105,0.069312,0.806496,0.00688,0.0056,0.028768,0.096,0.09904,26.7837,0.11472
+1458,32.6948,30.5859,26.8902,0.069664,0.887776,0.00736,0.005568,0.028192,0.095072,0.098272,25.5849,0.11344
+1459,37.0638,26.9805,26.8268,0.069632,0.816992,0.006304,0.006144,0.028512,0.096416,0.098336,25.5897,0.114688
+1460,36.2298,27.6016,28.0444,0.071392,0.79232,0.008096,0.004736,0.02848,0.0944,0.098304,26.8329,0.113824
+1461,34.2521,29.1953,26.791,0.068896,0.801504,0.008192,0.005632,0.028576,0.100768,0.101696,25.5612,0.114496
+1462,35.2811,28.3438,27.902,0.069632,1.06906,0.008224,0.004064,0.029984,0.096736,0.098592,26.413,0.112672
+1463,33.8938,29.5039,28.1425,0.070432,0.88656,0.008512,0.005504,0.028704,0.096672,0.09856,26.834,0.113632
+1464,34.4642,29.0156,26.8743,0.069408,0.897536,0.008096,0.004352,0.028672,0.096256,0.098304,25.557,0.114688
+1465,35.9097,27.8477,27.349,0.070784,0.866976,0.008096,0.014656,0.032672,0.096288,0.098368,26.0479,0.113216
+1466,34.9584,28.6055,28.1483,0.072288,0.896352,0.008096,0.004832,0.028704,0.095808,0.09872,26.8288,0.114688
+1467,33.9838,29.4258,26.8691,0.069632,0.832896,0.00816,0.004768,0.028672,0.096256,0.098304,25.6143,0.116032
+1468,35.3836,28.2617,27.0203,0.069632,1.04038,0.008192,0.004096,0.028672,0.095904,0.098144,25.5607,0.114528
+1469,35.6347,28.0625,28.0883,0.069248,0.841216,0.008128,0.005056,0.028672,0.096256,0.098304,26.8288,0.11264
+1470,33.9658,29.4414,26.8618,0.070272,0.82544,0.008192,0.005472,0.028416,0.095136,0.098336,25.6164,0.114208
+1471,36.036,27.75,26.8739,0.069632,0.81488,0.008096,0.005504,0.028608,0.095264,0.100288,25.6369,0.114688
+1472,35.6844,28.0234,28.1018,0.071104,0.87456,0.008096,0.004704,0.028704,0.096224,0.098304,26.8042,0.115872
+1473,34.4503,29.0273,27.173,0.069632,0.768,0.008416,0.00592,0.028672,0.096256,0.099552,25.9838,0.112768
+1474,35.1842,28.4219,26.7561,0.070784,0.786624,0.008128,0.0048,0.028736,0.096288,0.098272,25.5484,0.114112
+1475,35.6347,28.0625,28.014,0.070656,0.781312,0.008192,0.005792,0.028256,0.096672,0.097856,26.8112,0.114144
+1476,33.9118,29.4883,26.899,0.068416,0.886464,0.008096,0.004544,0.02864,0.095904,0.09664,25.5959,0.114464
+1477,36.0107,27.7695,28.0821,0.069824,0.784576,0.008128,0.005504,0.029184,0.096544,0.097952,26.8763,0.114112
+1478,34.1972,29.2422,28.0429,0.068096,0.770048,0.008192,0.005376,0.02848,0.096672,0.098176,26.8436,0.124256
+1479,34.1288,29.3008,26.7872,0.071104,0.791104,0.008192,0.005568,0.028544,0.096288,0.098368,25.574,0.11408
+1480,35.9046,27.8516,26.7258,0.069664,0.775392,0.008288,0.0048,0.028576,0.09632,0.098304,25.5304,0.114112
+1481,35.7992,27.9336,28.0515,0.07104,0.784384,0.006784,0.005696,0.028736,0.09664,0.098304,26.8452,0.114688
+1482,34.3118,29.1445,26.88,0.069632,0.808352,0.008064,0.0048,0.028416,0.095872,0.098528,25.6517,0.114656
+1483,35.6546,28.0469,26.8902,0.06944,0.87168,0.007328,0.00592,0.028672,0.096256,0.098336,25.5979,0.114688
+1484,35.4669,28.1953,28.0855,0.069632,0.825344,0.008192,0.004192,0.030272,0.095968,0.09808,26.8399,0.113888
+1485,33.5562,29.8008,28.6723,0.06992,1.38854,0.009536,0.0048,0.028672,0.095776,0.096736,26.8647,0.113568
+1486,33.4947,29.8555,26.8452,0.069056,0.83616,0.008352,0.005536,0.028544,0.096288,0.098848,25.5894,0.112992
+1487,36.5714,27.3438,28.0996,0.069632,0.83472,0.008096,0.005056,0.028672,0.096256,0.09952,26.8378,0.11984
+1488,33.8759,29.5195,26.8985,0.069632,0.876544,0.008192,0.0056,0.028416,0.09616,0.097184,25.6031,0.113664
+1489,35.7492,27.9727,28.0556,0.069632,0.794624,0.008192,0.00576,0.028672,0.096512,0.098336,26.8391,0.114688
+1490,34.1197,29.3086,28.0924,0.069728,0.787392,0.007136,0.004096,0.028672,0.096256,0.11264,26.8734,0.113088
+1491,33.9253,29.4766,26.983,0.07024,0.95168,0.008096,0.005088,0.028672,0.096192,0.098368,25.6097,0.114976
+1492,35.8092,27.9258,26.7116,0.069792,0.764256,0.008192,0.005472,0.027296,0.096256,0.098304,25.5283,0.11376
+1493,35.8293,27.9102,28.1182,0.069312,0.835904,0.007232,0.005056,0.036512,0.095616,0.099296,26.8554,0.113856
+1494,34.2383,29.207,26.7721,0.068192,0.768,0.008192,0.004096,0.028672,0.110592,0.100352,25.571,0.112992
+1495,35.9097,27.8477,26.847,0.069344,0.838656,0.008192,0.005504,0.028928,0.09664,0.098336,25.5877,0.11376
+1496,35.4227,28.2305,28.1085,0.069632,0.853184,0.006976,0.004128,0.029984,0.09696,0.098144,26.8351,0.1144
+1497,34.5526,28.9414,28.0774,0.069888,0.775616,0.008256,0.005504,0.02896,0.096608,0.098528,26.88,0.113984
+1498,33.9703,29.4375,26.8162,0.069632,0.787584,0.018624,0.0048,0.02848,0.096448,0.098432,25.5978,0.114336
+1499,35.9248,27.8359,28.0741,0.06976,0.77824,0.008192,0.00592,0.028704,0.096448,0.098304,26.8751,0.11344
+1500,34.3947,29.0742,26.7672,0.069728,0.774144,0.008224,0.006112,0.028576,0.095968,0.098624,25.5714,0.114464
+1501,35.9955,27.7812,28.0371,0.070048,0.76768,0.00816,0.005504,0.027584,0.09632,0.09824,26.8485,0.115072
+1502,34.3855,29.082,28.0681,0.069632,0.817056,0.006464,0.005344,0.027424,0.096288,0.098272,26.8364,0.111232
+1503,34.2155,29.2266,26.86,0.069952,0.800896,0.008192,0.00592,0.037088,0.096256,0.100096,25.6289,0.11264
+1504,35.7792,27.9492,26.8325,0.069792,0.817024,0.014304,0.004096,0.028672,0.097824,0.0984,25.5895,0.112864
+1505,34.0426,29.375,28.3341,0.071104,1.01843,0.00816,0.005472,0.028704,0.097984,0.097248,26.8934,0.1136
+1506,33.9838,29.4258,26.8941,0.071008,0.884448,0.007328,0.005568,0.028992,0.105536,0.098784,25.578,0.114464
+1507,36.3481,27.5117,26.8793,0.069664,0.882656,0.008192,0.006144,0.028384,0.096096,0.098336,25.5756,0.114208
+1508,35.5309,28.1445,28.0492,0.069728,0.82096,0.008064,0.004416,0.028704,0.096224,0.098304,26.8083,0.114432
+1509,34.4828,29,26.7694,0.06928,0.7864,0.008096,0.004576,0.028672,0.096256,0.098304,25.5642,0.113632
+1510,36.0462,27.7422,27.959,0.069632,0.75296,0.006848,0.004096,0.028672,0.095776,0.097952,26.7906,0.112416
+1511,34.22,29.2227,28.0346,0.069664,0.787488,0.007328,0.00592,0.028672,0.096288,0.099488,26.8255,0.114176
+1512,33.4029,29.9375,26.7427,0.071072,0.7768,0.008192,0.004096,0.028672,0.096256,0.098336,25.5468,0.112512
+1513,36.7447,27.2148,27.1849,0.069632,0.859776,0.006528,0.005952,0.028608,0.106752,0.09824,25.8907,0.11872
+1514,33.9388,29.4648,28.9014,0.07088,1.69184,0.008096,0.0048,0.028672,0.095776,0.109056,26.7796,0.112672
+1515,34.506,28.9805,26.7977,0.06976,0.788448,0.008192,0.0056,0.028864,0.096256,0.098496,25.5876,0.114464
+1516,35.6794,28.0273,26.8776,0.069664,0.82736,0.008192,0.005536,0.028544,0.095008,0.099488,25.6291,0.114688
+1517,35.521,28.1523,28.0468,0.069824,0.794432,0.008192,0.006112,0.02848,0.09568,0.098304,26.8316,0.114144
+1518,33.9748,29.4336,26.8249,0.06976,0.804896,0.008192,0.004096,0.028672,0.097792,0.123392,25.5745,0.113568
+1519,35.7692,27.957,26.8484,0.070816,0.831712,0.008128,0.0048,0.028672,0.096256,0.099744,25.5945,0.113824
+1520,34.7307,28.793,28.3034,0.071648,1.05258,0.008096,0.00432,0.028672,0.096064,0.098464,26.8268,0.116736
+1521,33.6223,29.7422,28.1969,0.069536,0.964576,0.01664,0.006016,0.028704,0.096224,0.108544,26.7931,0.113536
+1522,33.4204,29.9219,26.9062,0.086304,0.85808,0.008192,0.004128,0.028672,0.096256,0.098304,25.6123,0.114016
+1523,36.1429,27.668,28.0349,0.07088,0.845696,0.020736,0.005888,0.028672,0.095136,0.099712,26.7537,0.114528
+1524,34.0471,29.3711,26.7653,0.069664,0.79664,0.008192,0.005472,0.029344,0.103424,0.098528,25.5311,0.122976
+1525,34.5013,28.9844,26.9133,0.07408,0.889216,0.00928,0.005056,0.028672,0.100352,0.110624,25.5827,0.113344
+1526,35.0157,28.5586,28.9413,0.079168,0.90368,0.00816,0.00432,0.028672,0.09616,0.098176,27.6093,0.113696
+1527,33.3073,30.0234,26.8632,0.069632,0.866272,0.008192,0.005472,0.02848,0.096448,0.098528,25.5752,0.115008
+1528,35.4276,28.2266,26.8411,0.070688,0.87344,0.008288,0.005568,0.028544,0.096896,0.098304,25.5447,0.114688
+1529,35.2714,28.3516,28.0617,0.069632,0.82512,0.008096,0.005504,0.027712,0.097504,0.09888,26.8156,0.113664
+1530,34.7873,28.7461,26.8227,0.069632,0.78608,0.008128,0.004512,0.032768,0.096256,0.098336,25.6123,0.114688
+1531,35.9399,27.8242,26.7428,0.069568,0.776256,0.008192,0.005664,0.02832,0.09648,0.098784,25.5448,0.114688
+1532,35.9046,27.8516,27.9605,0.06944,0.763392,0.008128,0.0048,0.028544,0.095552,0.09728,26.7808,0.112608
+1533,34.4595,29.0195,28.0452,0.069472,0.77312,0.00816,0.005472,0.028608,0.09696,0.099616,26.8458,0.118016
+1534,33.7998,29.5859,26.8467,0.069664,0.818368,0.00816,0.004768,0.028416,0.095904,0.098848,25.6064,0.11616
+1535,36.1072,27.6953,27.9942,0.069792,0.78384,0.00816,0.004512,0.028704,0.096224,0.098304,26.7916,0.113024
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..b34d905
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,30.3826,32.9281,31.7783,0.0824424,0.845362,0.00757084,0.00581197,0.069435,0.116704,0.119808,30.4173,0.113786
+max_1024,33.3877,36.377,34.1108,0.09808,2.63101,0.024544,0.020736,0.086048,0.137248,0.417792,31.9758,0.451776
+min_1024,27.4899,29.9512,31.0341,0.079872,0.748896,0.006144,0.004096,0.067584,0.112864,0.115552,29.7381,0.111072
+512,31.1454,32.1074,32.477,0.079872,0.980224,0.006912,0.005792,0.069088,0.11472,0.1176,30.99,0.112832
+513,29.7986,33.5586,32.4765,0.082048,0.896896,0.007168,0.00512,0.068832,0.116768,0.118944,31.0667,0.114048
+514,29.6605,33.7148,31.3672,0.083808,0.893056,0.006176,0.006144,0.068992,0.115456,0.119808,29.9529,0.120832
+515,30.2636,33.043,32.4465,0.079872,0.922656,0.007072,0.005216,0.068576,0.12288,0.120096,31.0075,0.11264
+516,30.0522,33.2754,31.2668,0.079936,0.788576,0.008096,0.005664,0.06816,0.118784,0.118784,29.9654,0.113376
+517,30.6019,32.6777,32.3868,0.082016,0.760032,0.00624,0.006048,0.069024,0.115392,0.120512,31.1147,0.112928
+518,29.6691,33.7051,32.4624,0.081536,0.901248,0.0064,0.006144,0.068992,0.115328,0.119872,31.0503,0.112576
+519,29.6829,33.6895,31.4539,0.082656,0.908608,0.006848,0.005408,0.06832,0.115904,0.117568,30.0354,0.113248
+520,30.6605,32.6152,31.3783,0.083872,0.8992,0.006976,0.005824,0.067904,0.116736,0.118432,29.9662,0.11312
+521,30.6918,32.582,32.4811,0.08384,0.8928,0.0064,0.00576,0.067968,0.116576,0.131232,31.0633,0.113216
+522,29.8125,33.543,31.3014,0.083232,0.79744,0.007936,0.005632,0.06832,0.116672,0.118848,29.9889,0.114496
+523,28.7705,34.7578,31.602,0.083104,1.08221,0.007328,0.00496,0.068896,0.117024,0.118656,30.0058,0.113952
+524,32.3764,30.8867,32.5284,0.084,0.921568,0.008032,0.005632,0.068256,0.116736,0.118752,31.0943,0.111136
+525,27.4899,36.377,31.4134,0.081248,0.92128,0.015328,0.006144,0.073728,0.116384,0.118656,29.9668,0.113792
+526,33.3877,29.9512,31.2689,0.081952,0.767488,0.006624,0.006048,0.06896,0.117504,0.118784,29.9889,0.11264
+527,30.5562,32.7266,32.4119,0.082144,0.827424,0.007584,0.004672,0.069216,0.115104,0.118784,31.0734,0.113568
+528,29.952,33.3867,32.417,0.083328,0.85824,0.006656,0.00608,0.067776,0.116608,0.118816,31.0473,0.112128
+529,29.726,33.6406,31.3894,0.081568,0.864064,0.006688,0.005568,0.06816,0.116544,0.11888,30.0135,0.1144
+530,30.6771,32.5977,32.6148,0.0824,0.929472,0.006752,0.005952,0.0688,0.115712,0.118784,31.1739,0.113024
+531,29.5084,33.8887,31.363,0.080448,0.876448,0.00624,0.006048,0.067808,0.11664,0.118752,29.9766,0.114016
+532,30.784,32.4844,32.3906,0.083968,0.856064,0.007584,0.01664,0.069152,0.115456,0.117952,31.0015,0.122304
+533,29.8316,33.5215,32.4267,0.082624,0.857472,0.006848,0.005216,0.06848,0.11472,0.118816,31.0599,0.112544
+534,29.9661,33.3711,31.269,0.082656,0.76,0.006144,0.006144,0.069216,0.115136,0.118752,29.9971,0.113856
+535,30.8731,32.3906,32.3525,0.082176,0.777408,0.006976,0.00528,0.068448,0.116736,0.120224,31.0626,0.11264
+536,29.707,33.6621,32.4636,0.08208,0.885248,0.006336,0.006144,0.071328,0.11504,0.118784,31.062,0.116576
+537,29.7848,33.5742,31.3204,0.082176,0.821056,0.00688,0.005376,0.074464,0.11648,0.118304,29.9827,0.112896
+538,29.952,33.3867,31.5195,0.081952,0.983776,0.007552,0.004864,0.069504,0.118784,0.118784,30.0209,0.11344
+539,31.4496,31.7969,32.381,0.08192,0.810976,0.006368,0.005952,0.067616,0.12288,0.119968,31.0526,0.112672
+540,29.9801,33.3555,31.2752,0.082496,0.8352,0.006528,0.006144,0.068704,0.115392,0.118496,29.9279,0.114304
+541,30.9366,32.3242,31.3034,0.081536,0.78928,0.0072,0.005088,0.06912,0.115232,0.118784,30.0032,0.113952
+542,30.7083,32.5645,32.4145,0.081952,0.819968,0.008,0.005664,0.069664,0.115328,0.118752,31.0824,0.112768
+543,30.0452,33.2832,32.34,0.081632,0.784704,0.007168,0.00512,0.068992,0.11536,0.12016,31.0442,0.112672
+544,30.0858,33.2383,31.242,0.082016,0.759232,0.007072,0.005664,0.068096,0.114688,0.118784,29.9738,0.112704
+545,31.0115,32.2461,32.3562,0.080576,0.763872,0.00784,0.004448,0.069632,0.11616,0.117344,31.0841,0.11216
+546,30.0293,33.3008,31.2832,0.083136,0.763744,0.00704,0.005664,0.06816,0.116576,0.118336,30.0078,0.112768
+547,30.7859,32.4824,32.426,0.08384,0.831616,0.00768,0.004608,0.069408,0.11472,0.118976,31.0825,0.11264
+548,29.6984,33.6719,32.5111,0.083968,0.907264,0.007616,0.004896,0.069088,0.116288,0.13184,31.0758,0.114336
+549,29.568,33.8203,31.3815,0.09424,0.898176,0.007008,0.005312,0.068416,0.116736,0.11776,29.9612,0.11264
+550,30.5672,32.7148,32.3379,0.08304,0.772704,0.006464,0.006144,0.068928,0.115392,0.118464,31.0532,0.113568
+551,29.9415,33.3984,32.378,0.083616,0.807264,0.006144,0.006144,0.067584,0.116512,0.119008,31.0579,0.11376
+552,29.7415,33.623,31.4266,0.08192,0.873632,0.007008,0.014016,0.067936,0.117824,0.119008,30.0305,0.114688
+553,30.9815,32.2773,31.2163,0.081632,0.777152,0.00784,0.004448,0.069248,0.115072,0.118784,29.9292,0.112896
+554,31.0265,32.2305,32.3584,0.083072,0.772256,0.00688,0.005856,0.06896,0.115648,0.117984,31.0751,0.112672
+555,29.2755,34.1582,31.4542,0.08192,0.933888,0.007264,0.013216,0.077824,0.124288,0.116928,29.9852,0.113696
+556,30.8063,32.4609,31.3888,0.08192,0.897056,0.008064,0.005632,0.068192,0.115904,0.11776,29.9805,0.113792
+557,30.7471,32.5234,32.4754,0.082208,0.87616,0.006496,0.005792,0.06896,0.115712,0.118784,31.09,0.111328
+558,29.3679,34.0508,32.4362,0.081952,0.822784,0.006624,0.006112,0.068672,0.11568,0.118432,31.0745,0.141504
+559,29.4524,33.9531,31.3634,0.082272,0.822272,0.007072,0.004192,0.083968,0.12288,0.118784,30.0089,0.113088
+560,31.3035,31.9453,32.3236,0.083968,0.772096,0.007232,0.005088,0.069216,0.115072,0.120224,31.038,0.11264
+561,29.91,33.4336,31.2834,0.082688,0.775264,0.007072,0.00528,0.068448,0.116192,0.118848,29.9972,0.11248
+562,30.7711,32.498,32.3748,0.081952,0.778208,0.007584,0.004928,0.069248,0.114848,0.120224,31.0852,0.112608
+563,29.8908,33.4551,32.3729,0.080864,0.817184,0.007552,0.004704,0.069472,0.115936,0.121824,31.0415,0.113824
+564,29.9854,33.3496,31.2866,0.084,0.774112,0.007968,0.005664,0.068288,0.116096,0.119328,29.9972,0.113952
+565,30.6422,32.6348,31.3032,0.082112,0.833504,0.006144,0.006144,0.068768,0.115552,0.118784,29.9594,0.1128
+566,31.0171,32.2402,32.3521,0.080096,0.784352,0.008064,0.005664,0.068192,0.11472,0.118752,31.06,0.112288
+567,29.6898,33.6816,31.2468,0.082624,0.780224,0.006368,0.005952,0.067584,0.116736,0.1184,29.9556,0.11328
+568,30.8564,32.4082,31.3552,0.082336,0.80064,0.006272,0.005952,0.067776,0.116736,0.118784,30.0421,0.114624
+569,30.4635,32.8262,32.4357,0.083776,0.886976,0.00752,0.004768,0.069088,0.116448,0.117568,31.0372,0.112384
+570,30.0205,33.3105,32.3173,0.081952,0.765312,0.006784,0.005952,0.067776,0.11792,0.1176,31.0415,0.112512
+571,29.7986,33.5586,31.3509,0.083104,0.885376,0.006496,0.00576,0.069216,0.115488,0.13312,29.9389,0.113408
+572,30.8657,32.3984,32.4923,0.082208,0.904672,0.007136,0.005632,0.068128,0.11584,0.117632,31.0784,0.11264
+573,29.427,33.9824,31.2934,0.08192,0.802816,0.007744,0.004544,0.069376,0.114944,0.118208,29.9783,0.115616
+574,30.7951,32.4727,32.4603,0.082016,0.897056,0.007488,0.01504,0.073696,0.116544,0.118912,31.0374,0.112096
+575,29.2087,34.2363,32.4026,0.081984,0.838848,0.006912,0.005376,0.068352,0.116736,0.124928,31.0456,0.113792
+576,30.4907,32.7969,31.3349,0.082336,0.807072,0.008064,0.005664,0.068352,0.116544,0.116736,30.0169,0.113248
+577,30.784,32.4844,31.4124,0.081216,0.918368,0.007808,0.00448,0.06912,0.1152,0.118816,29.984,0.113408
+578,30.7951,32.4727,32.3698,0.083808,0.780448,0.007936,0.020736,0.069632,0.116128,0.118592,31.0604,0.112064
+579,29.9083,33.4355,31.2361,0.08304,0.768928,0.0072,0.005088,0.067584,0.11648,0.118464,29.9565,0.112864
+580,30.9179,32.3438,31.3797,0.082176,0.89088,0.00768,0.005664,0.068416,0.115936,0.118912,29.9774,0.11264
+581,30.736,32.5352,32.4431,0.082624,0.884736,0.008,0.004288,0.069632,0.116544,0.118464,31.0396,0.1192
+582,29.6915,33.6797,32.4834,0.081568,0.924032,0.007488,0.004896,0.069088,0.115136,0.120288,31.0482,0.11264
+583,29.1555,34.2988,31.4453,0.082272,1.00474,0.006976,0.00528,0.069984,0.1152,0.11872,29.9294,0.112736
+584,31.3687,31.8789,32.4973,0.084,0.903008,0.006272,0.006144,0.06896,0.131552,0.118976,31.0652,0.113184
+585,29.959,33.3789,31.2246,0.080928,0.78224,0.007648,0.00464,0.0696,0.114752,0.118784,29.9326,0.11344
+586,30.8582,32.4062,32.3407,0.081856,0.801568,0.007712,0.005728,0.06848,0.137248,0.118752,31.0082,0.111168
+587,30.0611,33.2656,32.3542,0.083904,0.786432,0.007552,0.004736,0.068992,0.115328,0.118688,31.0556,0.113024
+588,30.2136,33.0977,31.2491,0.081664,0.759904,0.006976,0.00576,0.068,0.122848,0.124928,29.9659,0.113088
+589,30.8694,32.3945,31.3112,0.08192,0.775296,0.00704,0.005248,0.068416,0.116,0.125728,30.0188,0.112832
+590,30.8843,32.3789,32.3632,0.080576,0.802784,0.007616,0.004896,0.069376,0.11632,0.118368,31.0518,0.111424
+591,30.0047,33.3281,31.3009,0.081984,0.800704,0.007424,0.004864,0.069056,0.116416,0.119072,29.9874,0.113952
+592,30.5544,32.7285,31.3303,0.08192,0.858112,0.007552,0.004864,0.069312,0.116256,0.118688,29.9589,0.114688
+593,31.0793,32.1758,32.3645,0.083296,0.81696,0.007008,0.005312,0.067936,0.116448,0.117504,31.0386,0.11152
+594,30.0152,33.3164,32.2989,0.0816,0.776512,0.006144,0.006144,0.069088,0.115264,0.118752,31.0126,0.1128
+595,30.054,33.2734,31.2402,0.083264,0.765792,0.007008,0.00528,0.068448,0.115968,0.116736,29.9647,0.11296
+596,30.8471,32.418,32.3934,0.081632,0.834016,0.007936,0.005696,0.068288,0.116,0.1216,31.0446,0.1136
+597,30.0364,33.293,31.2492,0.08256,0.77248,0.007776,0.004512,0.069664,0.116544,0.118944,29.964,0.112768
+598,30.9029,32.3594,32.3032,0.082432,0.802656,0.006368,0.006048,0.077824,0.115936,0.1176,30.9817,0.11264
+599,29.79,33.5684,32.3764,0.08352,0.806944,0.006656,0.005664,0.067904,0.116448,0.119232,31.0572,0.1128
+600,29.341,34.082,31.3861,0.082944,0.907168,0.007808,0.006528,0.068992,0.115488,0.119744,29.9624,0.11504
+601,31.3169,31.9316,32.4214,0.083872,0.823072,0.006464,0.00592,0.067904,0.116672,0.118752,31.0864,0.11232
+602,29.9766,33.3594,32.4189,0.081984,0.838848,0.006912,0.005792,0.067936,0.116736,0.119936,31.067,0.11376
+603,29.9485,33.3906,31.3069,0.08192,0.75984,0.007904,0.004352,0.069632,0.11664,0.118592,30.0342,0.113792
+604,30.7803,32.4883,32.3723,0.081952,0.772064,0.007744,0.005664,0.068224,0.114976,0.118784,31.09,0.112928
+605,29.8664,33.4824,31.3085,0.081728,0.801728,0.007456,0.0048,0.069024,0.115296,0.118528,29.9973,0.11264
+606,30.8806,32.3828,32.3495,0.081856,0.808064,0.007072,0.005664,0.068032,0.11632,0.11904,31.031,0.11248
+607,29.3107,34.1172,32.3645,0.08192,0.83136,0.006272,0.005984,0.068864,0.115616,0.120832,31.0211,0.11264
+608,30.5873,32.6934,31.2543,0.083136,0.768832,0.008032,0.005664,0.068224,0.116544,0.12624,29.9642,0.113408
+609,30.8713,32.3926,31.2125,0.081888,0.773056,0.007552,0.004736,0.069568,0.116544,0.118496,29.928,0.112672
+610,30.9459,32.3145,32.2716,0.081952,0.792544,0.007232,0.005056,0.069184,0.115136,0.118784,30.9678,0.113856
+611,29.8786,33.4688,31.2703,0.082272,0.822368,0.007072,0.005216,0.068352,0.114848,0.11792,29.9385,0.113792
+612,30.6587,32.6172,31.2975,0.0832,0.82816,0.017952,0.005664,0.074688,0.114688,0.120256,29.9403,0.11264
+613,30.7711,32.498,32.426,0.082368,0.885152,0.007424,0.004864,0.068896,0.115424,0.118176,31.0315,0.112256
+614,29.7934,33.5645,32.4083,0.082304,0.899584,0.006208,0.006144,0.069152,0.116224,0.11776,30.998,0.112832
+615,29.8247,33.5293,31.3087,0.0808,0.858016,0.00624,0.006016,0.06896,0.116928,0.11872,29.9396,0.113504
+616,30.9459,32.3145,32.3524,0.081696,0.800704,0.006528,0.016,0.067968,0.116288,0.117184,31.0333,0.11264
+617,29.8073,33.5488,31.3631,0.092192,0.851296,0.006784,0.005504,0.068224,0.116736,0.118816,29.9909,0.11264
+618,30.9067,32.3555,32.3762,0.083168,0.838432,0.00768,0.005664,0.068576,0.116288,0.119264,31.0231,0.11408
+619,29.8577,33.4922,32.3545,0.083872,0.830208,0.00624,0.006016,0.067712,0.116736,0.116736,31.014,0.112928
+620,29.924,33.418,31.23,0.081984,0.780096,0.006336,0.006176,0.068928,0.11536,0.118784,29.9377,0.114624
+621,30.8248,32.4414,31.312,0.082048,0.8592,0.015296,0.005952,0.067808,0.122944,0.118688,29.927,0.113056
+622,30.7526,32.5176,32.3923,0.079904,0.864128,0.006368,0.006016,0.069024,0.115008,0.118848,31.0192,0.11376
+623,29.8682,33.4805,31.3618,0.082496,0.87808,0.006784,0.005504,0.068224,0.116736,0.116032,29.9752,0.112672
+624,30.6862,32.5879,31.2794,0.082176,0.831456,0.0072,0.014592,0.06832,0.115776,0.117728,29.927,0.115104
+625,30.1887,33.125,32.4588,0.08192,0.933888,0.007616,0.004672,0.069472,0.125088,0.118784,31.006,0.111296
+626,30.4544,32.8359,32.2713,0.081888,0.783296,0.006144,0.006144,0.069632,0.116672,0.118208,30.9765,0.112832
+627,29.5288,33.8652,31.3897,0.081952,0.990912,0.006464,0.005792,0.069056,0.114944,0.117408,29.8895,0.113664
+628,30.7803,32.4883,32.5386,0.081952,0.965728,0.00704,0.015456,0.070016,0.115232,0.119936,31.0506,0.11264
+629,29.8073,33.5488,31.4409,0.081952,0.968224,0.006592,0.005664,0.078304,0.116608,0.118592,29.9523,0.11264
+630,30.9235,32.3379,32.367,0.082304,0.814976,0.006752,0.005952,0.068928,0.115616,0.116704,31.0415,0.11424
+631,30.0417,33.2871,32.2737,0.083968,0.770048,0.007904,0.004384,0.069632,0.114688,0.11856,30.9906,0.11392
+632,30.0364,33.293,31.2644,0.08192,0.748896,0.006816,0.005952,0.075456,0.116416,0.127168,29.9875,0.114272
+633,30.916,32.3457,31.2828,0.08192,0.828736,0.006848,0.00544,0.068288,0.116736,0.118784,29.9433,0.1128
+634,30.8638,32.4004,32.272,0.082016,0.796576,0.007648,0.004896,0.069376,0.114688,0.118784,30.9651,0.112864
+635,29.7501,33.6133,31.3405,0.083936,0.906784,0.006432,0.00432,0.067584,0.11664,0.118816,29.9234,0.11264
+636,30.6844,32.5898,31.289,0.081952,0.900576,0.006656,0.005696,0.068032,0.116736,0.118784,29.8715,0.119008
+637,28.653,34.9004,32.5302,0.08192,1.01286,0.015232,0.006112,0.06896,0.129728,0.129056,30.9739,0.112416
+638,31.691,31.5547,32.5167,0.081888,0.9672,0.007648,0.005664,0.068608,0.120768,0.12704,31.0264,0.111456
+639,29.1555,34.2988,31.296,0.082528,0.85424,0.007648,0.00464,0.069248,0.115072,0.118784,29.9295,0.114336
+640,31.5504,31.6953,32.339,0.083328,0.773824,0.007104,0.005824,0.067904,0.116704,0.118816,31.0518,0.113696
+641,29.8351,33.5176,31.3078,0.081952,0.853984,0.007456,0.004832,0.069216,0.116544,0.118592,29.9426,0.11264
+642,30.8862,32.377,32.2582,0.08,0.800448,0.006432,0.00608,0.067648,0.116256,0.118688,30.95,0.112672
+643,29.8804,33.4668,32.4802,0.08288,0.863776,0.006624,0.005664,0.068064,0.116736,0.11872,31.1051,0.11264
+644,29.8525,33.498,31.3344,0.08224,0.833792,0.008064,0.00544,0.068352,0.116416,0.118816,29.9872,0.11408
+645,30.7674,32.502,31.2873,0.081952,0.816576,0.006688,0.005696,0.068032,0.116288,0.118272,29.9611,0.112704
+646,30.8322,32.4336,32.3297,0.091488,0.797344,0.007264,0.005024,0.069312,0.116608,0.11824,31.0118,0.11264
+647,29.9013,33.4434,31.2977,0.082048,0.800768,0.007584,0.004704,0.069024,0.115296,0.118784,29.9862,0.113312
+648,30.9665,32.293,31.1843,0.083264,0.77056,0.006336,0.006144,0.068736,0.115584,0.119904,29.8956,0.118144
+649,30.7157,32.5566,32.385,0.08144,0.84224,0.007776,0.00448,0.069376,0.116352,0.118592,31.0321,0.11264
+650,30.0858,33.2383,32.2849,0.082592,0.771296,0.006944,0.005344,0.068384,0.116256,0.117248,31.0026,0.11424
+651,30.0047,33.3281,31.2025,0.08192,0.769376,0.006816,0.005152,0.067904,0.115392,0.118688,29.9234,0.113824
+652,31.0567,32.1992,32.2929,0.083936,0.765504,0.006624,0.006144,0.067584,0.116736,0.118784,31.0129,0.114688
+653,30.0029,33.3301,31.2291,0.081952,0.78848,0.007872,0.004384,0.069632,0.116352,0.11712,29.9295,0.113856
+654,30.8936,32.3691,32.287,0.082688,0.80896,0.00752,0.004896,0.06944,0.11584,0.117696,30.967,0.11296
+655,30.1212,33.1992,32.3196,0.082368,0.782272,0.006496,0.005824,0.067904,0.116768,0.120128,31.025,0.112864
+656,29.6056,33.7773,31.2484,0.083808,0.79888,0.007456,0.004896,0.069568,0.116736,0.11872,29.9349,0.11344
+657,30.9721,32.2871,31.2914,0.081312,0.797312,0.008,0.004256,0.069408,0.11648,0.118944,29.9827,0.11296
+658,30.8974,32.3652,32.3055,0.082176,0.782592,0.00816,0.00576,0.069504,0.1152,0.118784,31.0102,0.11312
+659,30.0611,33.2656,31.248,0.08224,0.770048,0.006336,0.005952,0.06864,0.115712,0.118784,29.9658,0.114464
+660,30.9646,32.2949,31.211,0.08192,0.77824,0.007776,0.004512,0.06944,0.11664,0.122976,29.9171,0.112352
+661,31.0755,32.1797,32.2335,0.083648,0.75808,0.007808,0.00448,0.069376,0.116,0.117728,30.9633,0.113024
+662,30.1141,33.207,32.3116,0.081984,0.766112,0.006208,0.006144,0.068832,0.115488,0.11856,31.0356,0.11264
+663,29.3831,34.0332,31.3694,0.082016,0.880832,0.007648,0.004608,0.069248,0.116736,0.119008,29.9747,0.114624
+664,31.0529,32.2031,32.385,0.083392,0.794976,0.006368,0.006144,0.068832,0.11664,0.117632,31.0784,0.11264
+665,29.809,33.5469,31.302,0.082272,0.814432,0.006816,0.005472,0.068256,0.116736,0.118528,29.9768,0.112704
+666,30.9366,32.3242,32.3316,0.083968,0.82944,0.00752,0.004896,0.06944,0.116096,0.119264,30.9876,0.113376
+667,29.9223,33.4199,32.3768,0.081536,0.766336,0.006144,0.006144,0.067584,0.116736,0.118784,31.1007,0.112864
+668,29.7294,33.6367,31.3413,0.081952,0.914176,0.00768,0.005664,0.068416,0.114848,0.118752,29.9172,0.112704
+669,30.6605,32.6152,31.2935,0.08304,0.84992,0.006528,0.014944,0.069152,0.116736,0.118752,29.9212,0.113216
+670,30.5016,32.7852,32.5381,0.08192,0.976896,0.007968,0.005664,0.068288,0.126976,0.118784,31.0385,0.113056
+671,28.5954,34.9707,31.5612,0.080192,1.03971,0.006816,0.005472,0.068256,0.117888,0.117632,30.0114,0.113824
+672,31.8745,31.373,31.2755,0.082816,0.847456,0.006656,0.006112,0.067584,0.11664,0.11888,29.9168,0.112544
+673,30.8026,32.4648,32.2801,0.082272,0.773792,0.006464,0.005824,0.067936,0.116704,0.118784,30.9956,0.1128
+674,29.3527,34.0684,32.3932,0.083168,0.825984,0.006304,0.006144,0.069504,0.114816,0.119872,31.0547,0.112704
+675,30.5927,32.6875,31.2669,0.080768,0.810048,0.007072,0.005216,0.06768,0.115584,0.120288,29.9392,0.121024
+676,30.9384,32.3223,32.2937,0.082368,0.797024,0.007424,0.004864,0.069632,0.116512,0.118112,30.9862,0.111488
+677,29.8769,33.4707,31.3201,0.08304,0.837888,0.006816,0.005536,0.068192,0.122176,0.119008,29.9643,0.113152
+678,30.9011,32.3613,32.3093,0.08192,0.768,0.008,0.004352,0.069568,0.11648,0.11904,31.0293,0.11264
+679,29.924,33.418,32.2986,0.082976,0.795616,0.007712,0.004576,0.069312,0.116256,0.118912,30.9904,0.112896
+680,30.1673,33.1484,31.2288,0.082272,0.782432,0.00656,0.006144,0.067712,0.115776,0.118976,29.9363,0.11264
+681,30.1691,33.1465,31.3084,0.080576,0.84096,0.00688,0.005504,0.068256,0.116704,0.118784,29.9574,0.113376
+682,31.0812,32.1738,33.3113,0.082528,0.829408,0.007264,0.005056,0.069536,0.116672,0.396576,31.6916,0.11264
+683,29.0315,34.4453,31.249,0.082944,0.845408,0.006528,0.005696,0.068032,0.116608,0.118784,29.8907,0.114336
+684,30.9291,32.332,31.2563,0.081792,0.8136,0.006144,0.006144,0.069216,0.116352,0.118752,29.9317,0.112544
+685,30.7212,32.5508,32.4697,0.081696,0.896832,0.007136,0.005248,0.068512,0.116608,0.118816,31.0632,0.111648
+686,29.8769,33.4707,31.2277,0.083808,0.789888,0.006976,0.005728,0.068032,0.116352,0.118624,29.9251,0.113248
+687,30.6844,32.5898,31.3892,0.08192,0.913408,0.00784,0.004448,0.069024,0.116512,0.119232,29.9621,0.114624
+688,30.6624,32.6133,32.4298,0.081376,0.927296,0.007072,0.005664,0.068096,0.115808,0.117696,30.9944,0.11232
+689,29.2822,34.1504,32.552,0.08192,0.98848,0.006848,0.00544,0.076512,0.116256,0.118656,31.0458,0.112096
+690,28.7915,34.7324,31.4409,0.082944,0.998336,0.006208,0.015808,0.06816,0.116768,0.118848,29.921,0.112832
+691,30.8731,32.3906,32.5775,0.08192,0.991264,0.007168,0.005088,0.068608,0.125632,0.118592,31.0538,0.125472
+692,30.0205,33.3105,31.2668,0.083552,0.804736,0.006688,0.005664,0.06816,0.11664,0.119904,29.9482,0.11328
+693,30.4726,32.8164,32.4407,0.082304,0.873888,0.006752,0.005504,0.068224,0.11632,0.119008,31.0559,0.112768
+694,29.7882,33.5703,32.4831,0.08192,0.939136,0.00704,0.005728,0.068,0.116192,0.11728,31.0354,0.112416
+695,29.8978,33.4473,31.23,0.081952,0.80688,0.00784,0.004448,0.069632,0.116736,0.118304,29.9112,0.112992
+696,30.9871,32.2715,31.273,0.08192,0.800768,0.006144,0.006144,0.069088,0.115232,0.118784,29.9616,0.113312
+697,30.7341,32.5371,32.4611,0.08224,0.863328,0.00704,0.00528,0.068448,0.116736,0.118816,31.0858,0.113472
+698,29.4202,33.9902,31.3264,0.082144,0.834816,0.006912,0.005824,0.067904,0.116736,0.118432,29.981,0.11264
+699,30.6312,32.6465,31.354,0.081952,0.896992,0.007616,0.004672,0.069344,0.115008,0.120832,29.9438,0.11376
+700,30.9984,32.2598,32.3659,0.083296,0.821952,0.007392,0.004928,0.06944,0.11632,0.118816,31.0309,0.112896
+701,29.8908,33.4551,32.363,0.082592,0.812704,0.006464,0.005728,0.068,0.116736,0.1184,31.0378,0.11456
+702,30.0276,33.3027,31.2279,0.081952,0.782304,0.007616,0.004896,0.069408,0.116128,0.118432,29.9356,0.11152
+703,31.0153,32.2422,32.33,0.082272,0.79696,0.007936,0.004352,0.069184,0.115136,0.118784,31.0225,0.112832
+704,30.0593,33.2676,31.2486,0.081824,0.760128,0.00736,0.004928,0.069632,0.116032,0.119328,29.9747,0.114688
+705,31.0078,32.25,32.2686,0.08016,0.774176,0.00752,0.004736,0.069472,0.116192,0.11744,30.9862,0.11264
+706,30.0628,33.2637,32.2825,0.08192,0.781952,0.006528,0.006176,0.067712,0.116576,0.118816,30.9903,0.112512
+707,29.8786,33.4688,31.273,0.084,0.786336,0.006208,0.006048,0.069056,0.11536,0.118784,29.9745,0.112672
+708,30.4544,32.8359,31.3651,0.083136,0.897856,0.008064,0.005664,0.068192,0.116736,0.119872,29.952,0.113568
+709,31.1189,32.1348,32.3521,0.081792,0.858944,0.007232,0.005056,0.068928,0.116448,0.11936,30.982,0.112352
+710,29.7536,33.6094,31.3723,0.081952,0.926656,0.00752,0.004896,0.06944,0.114752,0.118816,29.9349,0.113312
+711,30.9272,32.334,31.23,0.083328,0.77792,0.007072,0.004352,0.069472,0.116704,0.118688,29.9378,0.114624
+712,30.3659,32.9316,32.4547,0.081952,0.96048,0.007552,0.004896,0.075648,0.116544,0.116928,30.976,0.114688
+713,30.2565,33.0508,32.2955,0.081504,0.787424,0.007424,0.004864,0.06896,0.11536,0.118816,30.9985,0.11264
+714,29.9661,33.3711,31.2356,0.08192,0.796256,0.00656,0.005824,0.068,0.11664,0.118784,29.9274,0.114176
+715,30.7951,32.4727,32.3219,0.082656,0.831008,0.006624,0.005632,0.071776,0.115136,0.118752,30.9771,0.113184
+716,29.5322,33.8613,31.2394,0.08192,0.776192,0.007296,0.004992,0.068736,0.115616,0.118752,29.951,0.114848
+717,31.0341,32.2227,32.3116,0.081504,0.811776,0.007616,0.004672,0.069056,0.115264,0.118784,30.9917,0.111264
+718,30.0787,33.2461,32.3295,0.080448,0.790496,0.007584,0.004896,0.069472,0.116288,0.118496,31.0291,0.1128
+719,29.8734,33.4746,31.2545,0.083744,0.811232,0.007552,0.004736,0.069632,0.11584,0.11904,29.9293,0.113408
+720,31.1189,32.1348,32.3418,0.081472,0.78224,0.00688,0.005408,0.06832,0.115872,0.11872,31.0498,0.113152
+721,29.8769,33.4707,32.32,0.084416,0.808608,0.006528,0.00576,0.067968,0.116704,0.117856,30.9995,0.11264
+722,29.8908,33.4551,32.3727,0.081952,0.79712,0.008032,0.004352,0.069536,0.115904,0.117536,31.0661,0.11216
+723,29.764,33.5977,31.2358,0.083424,0.811584,0.00768,0.004576,0.069344,0.116448,0.117344,29.9121,0.113312
+724,31.0303,32.2266,32.3327,0.082816,0.82128,0.008,0.005664,0.068224,0.116448,0.118976,30.9986,0.11264
+725,29.8142,33.541,31.1925,0.08192,0.80688,0.007232,0.005088,0.068896,0.11664,0.118592,29.8745,0.112832
+726,30.712,32.5605,32.5775,0.08192,0.921408,0.006336,0.006144,0.069376,0.12416,0.119136,31.1364,0.112576
+727,29.8595,33.4902,31.2626,0.081568,0.813376,0.006176,0.00608,0.068736,0.115584,0.118336,29.9395,0.113216
+728,31.2081,32.043,32.2765,0.08192,0.768,0.007648,0.004992,0.06928,0.116768,0.119936,30.9953,0.112672
+729,29.9345,33.4062,31.2112,0.082336,0.779456,0.006976,0.005312,0.068416,0.116352,0.11824,29.9214,0.112704
+730,30.3371,32.9629,31.3242,0.081952,0.879744,0.020608,0.004832,0.069408,0.116288,0.121536,29.9165,0.11328
+731,30.9965,32.2617,32.4341,0.081408,0.91632,0.007328,0.00496,0.0688,0.11552,0.122912,31.0038,0.11312
+732,29.4507,33.9551,32.3669,0.082144,0.814912,0.006464,0.006144,0.083008,0.115648,0.118752,31.0272,0.11264
+733,29.6108,33.7715,31.3532,0.0824,0.913472,0.007616,0.016096,0.078496,0.116608,0.1232,29.9027,0.112608
+734,31.0963,32.1582,32.43,0.08192,0.917504,0.008128,0.005632,0.06816,0.116672,0.11888,31.0005,0.112512
+735,29.9275,33.4141,31.2876,0.082176,0.849792,0.006272,0.006048,0.06768,0.116736,0.11824,29.9278,0.112768
+736,30.2565,33.0508,32.3266,0.082848,0.800768,0.007648,0.006048,0.068256,0.116704,0.124928,31.0067,0.11264
+737,30.3084,32.9941,31.3227,0.08192,0.877088,0.007424,0.004864,0.069088,0.115232,0.118816,29.9348,0.113376
+738,30.8155,32.4512,31.3179,0.081952,0.89536,0.008,0.005664,0.068256,0.122912,0.120288,29.9013,0.114112
+739,30.9179,32.3438,32.4424,0.083232,0.87728,0.007488,0.0048,0.069408,0.112864,0.118368,31.0563,0.112672
+740,29.5834,33.8027,32.3952,0.082528,0.82752,0.007744,0.005632,0.074688,0.116384,0.119136,31.0488,0.112768
+741,30.2208,33.0898,31.2489,0.082176,0.774112,0.006784,0.00528,0.068448,0.116256,0.117216,29.9636,0.11504
+742,31.0341,32.2227,32.2663,0.08192,0.774144,0.007424,0.004896,0.069152,0.115136,0.118816,30.9833,0.11152
+743,29.9538,33.3848,31.3114,0.081952,0.839648,0.007968,0.00432,0.0696,0.116448,0.117056,29.9602,0.114208
+744,30.9646,32.2949,32.3214,0.08208,0.792032,0.006688,0.006048,0.06768,0.116736,0.118752,31.0183,0.113088
+745,29.9661,33.3711,32.3256,0.082016,0.800064,0.006752,0.005536,0.068096,0.115904,0.11744,31.0172,0.11264
+746,29.938,33.4023,31.2473,0.080832,0.804864,0.00752,0.004896,0.069312,0.114976,0.118688,29.9335,0.112736
+747,30.9422,32.3184,31.212,0.082208,0.770112,0.0064,0.00592,0.069536,0.115008,0.118784,29.9305,0.113536
+748,30.8211,32.4453,32.2426,0.081888,0.777152,0.007904,0.005664,0.068352,0.116,0.119424,30.9531,0.113184
+749,29.9696,33.3672,31.2783,0.08192,0.86336,0.00704,0.00528,0.068192,0.114944,0.117952,29.9057,0.113888
+750,30.8044,32.4629,31.2707,0.08192,0.836928,0.006848,0.005856,0.067872,0.116064,0.118944,29.9218,0.114432
+751,30.9702,32.2891,32.3165,0.081536,0.780288,0.006592,0.005632,0.068096,0.116736,0.120288,31.0236,0.113696
+752,29.7173,33.6504,32.34,0.08192,0.821216,0.006176,0.006176,0.077824,0.114688,0.118752,30.9997,0.113472
+753,30.1212,33.1992,31.2136,0.08192,0.78848,0.007296,0.004992,0.069632,0.116128,0.119328,29.9128,0.113024
+754,30.8359,32.4297,32.2951,0.08208,0.817056,0.00624,0.006144,0.068992,0.115232,0.11904,30.967,0.11328
+755,29.8682,33.4805,31.2389,0.081952,0.808704,0.007072,0.005216,0.068576,0.116736,0.119968,29.918,0.112704
+756,30.9291,32.332,32.297,0.08192,0.802816,0.007808,0.005632,0.06848,0.116288,0.119072,30.9813,0.113632
+757,29.7605,33.6016,32.3501,0.081824,0.792672,0.007488,0.0048,0.068896,0.115456,0.118752,31.0476,0.112672
+758,30.1212,33.1992,31.1767,0.08192,0.796672,0.007936,0.005632,0.068352,0.116736,0.11856,29.868,0.112864
+759,31.1038,32.1504,31.2771,0.083712,0.7744,0.007616,0.004672,0.069216,0.116672,0.119264,29.9884,0.11312
+760,30.6715,32.6035,32.3957,0.08288,0.88064,0.006144,0.006176,0.068928,0.11536,0.118784,31.004,0.112832
+761,30.0258,33.3047,31.2476,0.08384,0.808672,0.00656,0.005728,0.068,0.116736,0.118784,29.9252,0.114048
+762,30.9384,32.3223,31.2785,0.083296,0.794688,0.006752,0.006048,0.06768,0.116736,0.116736,29.9735,0.113056
+763,30.9403,32.3203,32.262,0.08352,0.77664,0.007456,0.004832,0.068896,0.115456,0.118752,30.9719,0.114592
+764,29.7122,33.6562,32.2955,0.080832,0.810176,0.006976,0.005792,0.067936,0.118016,0.119552,30.974,0.112256
+765,29.8507,33.5,31.2195,0.082016,0.820256,0.00704,0.005248,0.06848,0.116064,0.119456,29.8865,0.114496
+766,30.8806,32.3828,32.3886,0.082176,0.890944,0.007552,0.004896,0.069472,0.116768,0.120064,30.9841,0.11264
+767,29.8281,33.5254,31.3486,0.082016,0.839488,0.006304,0.014336,0.073728,0.129024,0.118784,29.9701,0.114848
+768,30.7194,32.5527,32.3804,0.08192,0.902976,0.006336,0.006144,0.06864,0.11568,0.118752,30.9678,0.112064
+769,30.0734,33.252,31.2926,0.083808,0.794784,0.007232,0.005056,0.068704,0.115616,0.118784,29.9848,0.113824
+770,30.5891,32.6914,32.2975,0.082496,0.788512,0.007968,0.005664,0.068288,0.116416,0.118336,30.9972,0.112576
+771,29.8873,33.459,31.3364,0.083136,0.940128,0.00688,0.005472,0.068256,0.11648,0.119072,29.8823,0.114688
+772,31.0963,32.1582,32.247,0.08192,0.782336,0.007584,0.00592,0.068416,0.116064,0.117408,30.9555,0.111872
+773,29.6159,33.7656,31.2013,0.081856,0.80288,0.00736,0.004928,0.068864,0.115456,0.118656,29.8881,0.113152
+774,31.5776,31.668,32.2672,0.080896,0.808928,0.008096,0.004352,0.06912,0.118848,0.118656,30.9457,0.11264
+775,29.9661,33.3711,31.2746,0.08192,0.821248,0.0072,0.005088,0.067584,0.116096,0.117376,29.937,0.121088
+776,30.8582,32.4062,32.2774,0.082848,0.784352,0.00752,0.004896,0.069504,0.116768,0.120096,30.9802,0.111232
+777,30.0699,33.2559,32.2236,0.082144,0.7784,0.006144,0.006144,0.068736,0.115584,0.118304,30.9355,0.11264
+778,30.0012,33.332,31.1743,0.083328,0.778112,0.006912,0.005344,0.06832,0.114784,0.118752,29.8855,0.113248
+779,30.974,32.2852,31.2572,0.080576,0.80464,0.006368,0.005888,0.067936,0.117824,0.117792,29.9434,0.1128
+780,30.9665,32.293,32.2928,0.081184,0.789184,0.006176,0.00608,0.068768,0.114944,0.117408,30.9964,0.112608
+781,29.9871,33.3477,31.1826,0.084128,0.78432,0.006208,0.00608,0.069088,0.115296,0.118784,29.8844,0.114304
+782,30.9141,32.3477,31.1132,0.08192,0.765408,0.006688,0.006144,0.069184,0.115168,0.119872,29.8279,0.120832
+783,31.0265,32.2305,32.2806,0.081728,0.794048,0.006912,0.005344,0.068288,0.116224,0.11888,30.9765,0.11264
+784,29.9678,33.3691,31.9357,0.08192,0.833536,0.006144,0.006144,0.069376,0.114944,0.118784,30.2531,0.451776
+785,29.1223,34.3379,31.3135,0.08192,0.922976,0.00656,0.004352,0.069504,0.116864,0.118784,29.8783,0.11424
+786,30.784,32.4844,32.3905,0.081856,0.849952,0.006432,0.006144,0.06928,0.11504,0.119904,31.0278,0.11408
+787,30.916,32.3457,31.2017,0.082304,0.828928,0.006656,0.005664,0.068096,0.116704,0.118784,29.8619,0.11264
+788,30.8936,32.3691,32.2622,0.083776,0.790752,0.007456,0.004896,0.069504,0.124032,0.118752,30.9503,0.112672
+789,30.0029,33.3301,32.3297,0.082944,0.809248,0.00688,0.005472,0.068256,0.116288,0.11872,31.0091,0.112832
+790,29.6967,33.6738,31.2259,0.08192,0.851328,0.006784,0.006112,0.069088,0.115104,0.120768,29.8617,0.113088
+791,30.9609,32.2988,31.1808,0.083072,0.773024,0.007872,0.004384,0.069472,0.11616,0.117472,29.8965,0.112832
+792,30.8638,32.4004,32.3005,0.081952,0.804032,0.006976,0.00576,0.067968,0.116736,0.118784,30.9853,0.112992
+793,29.9783,33.3574,31.1747,0.083168,0.78432,0.007008,0.005376,0.068352,0.116768,0.120064,29.8761,0.113472
+794,31.083,32.1719,31.2018,0.082496,0.778208,0.00736,0.004928,0.069184,0.115136,0.118784,29.9127,0.113024
+795,31.0755,32.1797,32.256,0.082592,0.780256,0.006368,0.005984,0.068832,0.115648,0.120064,30.9624,0.113856
+796,30.0823,33.2422,32.2396,0.085056,0.771008,0.0072,0.005088,0.069248,0.119168,0.118816,30.9514,0.11264
+797,29.9258,33.416,31.2728,0.08208,0.8288,0.006784,0.005472,0.068256,0.116768,0.120352,29.9299,0.114368
+798,29.6108,33.7715,33.6425,0.081952,2.1176,0.007808,0.005888,0.068224,0.11664,0.118016,31.0129,0.113472
+799,29.9573,33.3809,31.2361,0.083936,0.777984,0.006432,0.005856,0.067872,0.12288,0.131072,29.9274,0.112704
+800,30.6092,32.6699,32.3667,0.08208,0.810496,0.006624,0.006144,0.06912,0.1152,0.118752,31.0457,0.11264
+801,29.9924,33.3418,32.3871,0.08304,0.874944,0.006624,0.0056,0.068128,0.116736,0.118784,31.0006,0.112672
+802,29.8926,33.4531,31.2491,0.082624,0.820896,0.006496,0.006144,0.069184,0.115168,0.119776,29.9141,0.114688
+803,30.9834,32.2754,31.2136,0.082016,0.77344,0.006752,0.005504,0.068256,0.116576,0.118912,29.9294,0.112672
+804,30.6991,32.5742,32.4052,0.082528,0.9088,0.006656,0.006176,0.06896,0.115328,0.118496,30.9845,0.113824
+805,29.551,33.8398,31.3812,0.08368,0.94752,0.00704,0.005216,0.068512,0.122976,0.128288,29.9036,0.114432
+806,30.8044,32.4629,31.2274,0.08192,0.808864,0.00624,0.006176,0.069344,0.123136,0.118816,29.9003,0.112544
+807,30.7157,32.5566,32.42,0.080256,0.882688,0.007424,0.004864,0.069152,0.115168,0.118784,31.0292,0.112448
+808,29.8926,33.4531,32.3113,0.08192,0.811008,0.007168,0.00512,0.0688,0.115456,0.118592,30.9906,0.11264
+809,30.0787,33.2461,31.2159,0.083584,0.766592,0.007648,0.00464,0.069632,0.116352,0.11824,29.9359,0.113312
+810,31.004,32.2539,32.3113,0.08192,0.792576,0.007328,0.00496,0.069408,0.114912,0.118944,31.0085,0.112704
+811,30.0593,33.2676,31.2708,0.08192,0.780288,0.007872,0.004416,0.068992,0.115328,0.119904,29.9775,0.11456
+812,30.9609,32.2988,31.5837,0.083104,0.794912,0.00672,0.006016,0.067744,0.116704,0.118784,30.2767,0.113088
+813,30.3731,32.9238,32.3687,0.083968,0.89088,0.007456,0.004832,0.073728,0.116384,0.118624,30.9601,0.112672
+814,29.8386,33.5137,31.3162,0.083712,0.88704,0.00784,0.014688,0.069632,0.12288,0.118976,29.8986,0.1128
+815,30.9459,32.3145,31.1672,0.081952,0.770656,0.006272,0.005984,0.067744,0.116768,0.118144,29.8864,0.113312
+816,31.0812,32.1738,32.3154,0.081696,0.807168,0.007232,0.005056,0.06768,0.11664,0.1184,30.9989,0.11264
+817,29.7536,33.6094,31.4154,0.08192,0.955392,0.007104,0.005216,0.068576,0.115744,0.117728,29.9459,0.117888
+818,30.7951,32.4727,31.3377,0.08208,0.910816,0.006688,0.006048,0.068992,0.115424,0.119968,29.914,0.113728
+819,30.8434,32.4219,32.3646,0.083104,0.9072,0.00704,0.005216,0.068576,0.11472,0.119968,30.9461,0.11264
+820,29.8473,33.5039,32.34,0.081376,0.896864,0.006848,0.005664,0.068064,0.116,0.117504,30.935,0.11264
+821,30.0328,33.2969,31.1972,0.083072,0.797568,0.0072,0.005088,0.068864,0.116832,0.117408,29.8885,0.11264
+822,30.8675,32.3965,32.3483,0.082016,0.876544,0.007648,0.004896,0.069248,0.114848,0.118752,30.9617,0.11264
+823,29.7294,33.6367,31.2927,0.083456,0.918016,0.007488,0.0048,0.068928,0.11536,0.11696,29.8637,0.113984
+824,29.58,33.8066,32.4482,0.08192,1.00499,0.01616,0.004896,0.06912,0.115232,0.11984,30.9236,0.112512
+825,30.9291,32.332,31.3242,0.083296,0.915936,0.006336,0.00592,0.067808,0.116576,0.11888,29.8884,0.121056
+826,30.8304,32.4355,31.359,0.08192,0.903168,0.007264,0.005056,0.069536,0.114752,0.120256,29.9437,0.113312
+827,30.6403,32.6367,32.3174,0.081984,0.853952,0.007264,0.005024,0.073728,0.116736,0.117984,30.9481,0.11264
+828,29.9153,33.4277,32.3257,0.081664,0.835936,0.007744,0.004544,0.06928,0.11504,0.120832,30.978,0.112736
+829,28.9298,34.5664,31.275,0.081888,0.833568,0.007584,0.004704,0.077632,0.121024,0.118784,29.9168,0.113024
+830,32.0441,31.207,32.3113,0.08192,0.806272,0.006784,0.005952,0.067776,0.116288,0.11856,30.9951,0.11264
+831,29.9748,33.3613,31.2489,0.082432,0.858112,0.007424,0.004864,0.069216,0.115104,0.118784,29.8795,0.11344
+832,30.7674,32.502,32.4101,0.081856,0.916,0.007904,0.005632,0.068384,0.116288,0.118304,30.9831,0.11264
+833,29.8247,33.5293,32.3815,0.080448,0.898304,0.006912,0.005376,0.068352,0.116736,0.118144,30.9736,0.113664
+834,29.3881,34.0273,31.3426,0.0832,0.944,0.00704,0.015712,0.071968,0.12736,0.118784,29.8619,0.112672
+835,31.2901,31.959,31.2476,0.081952,0.876224,0.006432,0.005824,0.067968,0.124864,0.118208,29.8522,0.113888
+836,30.7692,32.5,32.3275,0.081568,0.903968,0.00752,0.004896,0.069504,0.116416,0.119136,30.9118,0.112704
+837,29.2772,34.1562,31.2893,0.083936,0.91328,0.006304,0.005984,0.077472,0.115168,0.11824,29.8563,0.11264
+838,31.1095,32.1445,31.3324,0.08192,0.937088,0.00704,0.005248,0.06848,0.115968,0.118624,29.8853,0.11264
+839,30.7434,32.5273,32.2453,0.081952,0.786848,0.007296,0.004992,0.069376,0.11904,0.118624,30.9434,0.113824
+840,30.1017,33.2207,32.2339,0.081856,0.764384,0.007712,0.005632,0.068448,0.114784,0.118784,30.9596,0.112672
+841,29.8664,33.4824,31.2946,0.083264,0.852672,0.017536,0.004992,0.068608,0.115712,0.118784,29.9127,0.120288
+842,30.8267,32.4395,32.3705,0.082976,0.882944,0.00688,0.005856,0.067872,0.116128,0.117344,30.978,0.11248
+843,30.0188,33.3125,31.2316,0.081952,0.816736,0.00656,0.005696,0.068064,0.116352,0.117088,29.9049,0.114208
+844,29.6605,33.7148,32.3263,0.08064,0.848896,0.02256,0.005056,0.069472,0.131232,0.118752,30.9371,0.11264
+845,30.5143,32.7715,32.3645,0.083136,0.818016,0.007232,0.005024,0.069344,0.11696,0.1168,31.0354,0.11264
+846,29.7952,33.5625,31.3347,0.082016,0.964608,0.007168,0.00512,0.06896,0.11536,0.118816,29.8609,0.111712
+847,31.1549,32.0977,31.2124,0.082624,0.766144,0.0072,0.005056,0.068608,0.115744,0.118784,29.9335,0.114688
+848,31.0623,32.1934,32.2257,0.081568,0.758688,0.007808,0.005632,0.06848,0.116672,0.118304,30.9557,0.112864
+849,29.842,33.5098,31.26,0.081952,0.836704,0.00704,0.01344,0.06848,0.11632,0.118464,29.9036,0.114016
+850,30.9684,32.291,31.2361,0.08192,0.841568,0.006304,0.006144,0.068832,0.123712,0.118592,29.8764,0.11264
+851,30.8118,32.4551,32.3567,0.0824,0.88464,0.007232,0.005056,0.068736,0.115232,0.125312,30.9555,0.11264
+852,29.6777,33.6953,32.4154,0.081984,0.841792,0.008096,0.014368,0.069632,0.116736,0.118784,31.0515,0.112512
+853,29.856,33.4941,31.2933,0.082304,0.88272,0.007552,0.004736,0.069472,0.116896,0.119968,29.8969,0.1128
+854,30.8137,32.4531,32.2795,0.0824,0.848128,0.006368,0.006144,0.0688,0.11552,0.12288,30.9179,0.111392
+855,28.4066,35.2031,31.3364,0.08192,0.890048,0.006976,0.005312,0.068416,0.116192,0.133664,29.9204,0.113472
+856,30.7822,32.4863,32.5468,0.083872,1.06096,0.016384,0.006144,0.06864,0.11568,0.118816,30.9637,0.11264
+857,31.1568,32.0957,32.2487,0.080736,0.772064,0.006144,0.006144,0.067584,0.11664,0.11888,30.9673,0.113184
+858,30.0311,33.2988,31.2235,0.08192,0.826432,0.007104,0.00576,0.068064,0.11664,0.118784,29.8858,0.11296
+859,30.8545,32.4102,32.1881,0.08304,0.754592,0.007488,0.0048,0.079872,0.116736,0.117792,30.9107,0.11312
+860,29.8734,33.4746,32.2458,0.083584,0.784832,0.008064,0.005664,0.068128,0.11632,0.11888,30.9476,0.11264
+861,30.2457,33.0625,31.289,0.08176,0.862368,0.007808,0.00448,0.068992,0.115488,0.120096,29.9137,0.114336
+862,30.8638,32.4004,31.1418,0.083936,0.796704,0.007392,0.004896,0.069408,0.116096,0.119104,29.8311,0.113216
+863,30.8936,32.3691,32.4202,0.08176,0.907744,0.007456,0.004832,0.069024,0.115296,0.118816,31.0026,0.11264
+864,29.7519,33.6113,31.2984,0.082176,0.897632,0.007936,0.005664,0.06832,0.11664,0.11888,29.8885,0.112672
+865,29.9258,33.416,31.3821,0.082496,0.925632,0.016448,0.005408,0.074016,0.12336,0.118784,29.9233,0.11264
+866,31.6636,31.582,32.3379,0.079872,0.871936,0.006656,0.00608,0.069056,0.116512,0.117632,30.9591,0.111072
+867,28.8923,34.6113,32.4023,0.082304,0.868896,0.007936,0.004352,0.079488,0.115072,0.130432,31.0009,0.112992
+868,30.7618,32.5078,31.1512,0.08192,0.763456,0.006592,0.006144,0.068928,0.115424,0.118784,29.8762,0.113728
+869,30.875,32.3887,32.3011,0.083296,0.768672,0.007808,0.00448,0.075488,0.117024,0.118784,31.0108,0.114656
+870,29.9275,33.4141,31.2463,0.082944,0.8264,0.007392,0.004896,0.06928,0.11504,0.118752,29.9101,0.111552
+871,30.8936,32.3691,32.216,0.082848,0.761856,0.007552,0.004736,0.079872,0.116384,0.118176,30.9318,0.112736
+872,29.9906,33.3438,32.3278,0.0816,0.833568,0.015904,0.005024,0.069472,0.116288,0.119392,30.9737,0.112928
+873,30.0293,33.3008,31.2334,0.083008,0.811968,0.007488,0.0048,0.06944,0.120832,0.11872,29.9011,0.116064
+874,30.8026,32.4648,31.2934,0.083168,0.903968,0.006144,0.006144,0.068704,0.115648,0.12,29.875,0.114688
+875,30.8322,32.4336,32.387,0.08192,0.884736,0.007936,0.004352,0.069632,0.115872,0.121088,30.9883,0.113152
+876,29.8473,33.5039,31.2923,0.082592,0.886976,0.007424,0.004896,0.069056,0.116448,0.127776,29.8824,0.114688
+877,30.7378,32.5332,31.1337,0.0832,0.764096,0.00672,0.005728,0.069408,0.115328,0.131328,29.8452,0.112672
+878,29.8856,33.4609,32.4143,0.0824,0.93184,0.016352,0.00608,0.068864,0.11568,0.118784,30.9611,0.113216
+879,30.9216,32.3398,32.2748,0.082368,0.782304,0.006144,0.006016,0.067712,0.116736,0.118848,30.9821,0.11264
+880,29.9048,33.4395,31.1992,0.08192,0.773408,0.00688,0.005824,0.067904,0.116032,0.12768,29.9049,0.114688
+881,31.1076,32.1465,32.3615,0.08192,0.843776,0.017504,0.005024,0.06864,0.115296,0.133504,30.9836,0.11232
+882,29.7761,33.584,31.2835,0.080192,0.87968,0.007072,0.005664,0.06912,0.11776,0.119904,29.891,0.11312
+883,31.1057,32.1484,32.1672,0.081792,0.76224,0.006144,0.006144,0.067584,0.116704,0.116768,30.8961,0.113696
+884,30.0417,33.2871,32.3009,0.0816,0.829632,0.016448,0.004544,0.069344,0.114944,0.134496,30.9371,0.112864
+885,29.7969,33.5605,31.3672,0.080416,0.92672,0.007072,0.004256,0.069472,0.11664,0.131264,29.9186,0.1128
+886,30.7544,32.5156,31.2794,0.080416,0.899104,0.007232,0.005024,0.069088,0.116288,0.11776,29.8701,0.1144
+887,28.7754,34.752,34.1108,0.083744,2.63101,0.01728,0.006048,0.068864,0.115552,0.118496,30.9558,0.11392
+888,30.6422,32.6348,31.1726,0.083328,0.7584,0.007424,0.004864,0.069536,0.116512,0.119104,29.9006,0.112864
+889,29.7796,33.5801,31.3149,0.082976,0.848896,0.007872,0.014624,0.06912,0.11632,0.119008,29.9415,0.114624
+890,30.6973,32.5762,32.3153,0.08192,0.825792,0.016736,0.005728,0.068,0.12288,0.118816,30.9633,0.112128
+891,29.5135,33.8828,32.3692,0.081824,0.858816,0.007584,0.004704,0.0696,0.116224,0.117312,31.0006,0.112608
+892,30.1976,33.1152,31.3495,0.094976,0.894976,0.007616,0.004896,0.069408,0.116576,0.131232,29.9172,0.11264
+893,30.6679,32.6074,32.2827,0.081952,0.80048,0.0064,0.006016,0.06896,0.115488,0.118592,30.9721,0.112672
+894,28.3971,35.2148,31.2952,0.08176,0.862336,0.006528,0.006144,0.067584,0.11616,0.117312,29.9248,0.112608
+895,32.4338,30.832,32.2726,0.081472,0.778368,0.006688,0.0056,0.076352,0.116704,0.118784,30.976,0.11264
+896,29.9854,33.3496,32.2499,0.083712,0.844064,0.007456,0.015072,0.069632,0.114688,0.12,30.8826,0.11264
+897,29.9433,33.3965,31.2872,0.08352,0.874944,0.007296,0.004992,0.068768,0.117056,0.11904,29.8971,0.114496
+898,31.0078,32.25,31.2171,0.08192,0.8192,0.006144,0.006144,0.067584,0.116576,0.11888,29.8881,0.11248
+899,30.9067,32.3555,32.383,0.081984,0.888832,0.0072,0.005088,0.068864,0.116576,0.124992,30.9767,0.112768
+900,29.917,33.4258,31.2704,0.083552,0.881056,0.007392,0.004928,0.0696,0.116352,0.118528,29.8749,0.11408
+901,30.862,32.4023,31.3239,0.082944,0.881568,0.00624,0.00608,0.069024,0.123584,0.1208,29.9192,0.1144
+902,30.8657,32.3984,32.351,0.08064,0.849312,0.006752,0.006176,0.06864,0.116768,0.117664,30.9935,0.111584
+903,29.4829,33.918,32.4336,0.08192,0.900384,0.00688,0.005408,0.072416,0.116736,0.118656,31.0185,0.112704
+904,29.8021,33.5547,31.2976,0.083168,0.837888,0.014944,0.006144,0.067616,0.116256,0.117216,29.9417,0.11264
+905,30.3371,32.9629,32.3545,0.08224,0.847136,0.01504,0.006112,0.067616,0.116736,0.118816,30.9876,0.113184
+906,30.2618,33.0449,31.2504,0.083936,0.787968,0.006688,0.006048,0.069344,0.115072,0.11888,29.9499,0.11264
+907,31.083,32.1719,32.213,0.08192,0.765952,0.00784,0.005632,0.068448,0.116736,0.118208,30.9356,0.112736
+908,30.1318,33.1875,32.2644,0.08224,0.774144,0.007264,0.005024,0.067584,0.116768,0.126816,30.9719,0.112672
+909,29.5817,33.8047,31.2397,0.08192,0.846848,0.007072,0.005216,0.068608,0.116736,0.12032,29.8788,0.114208
+910,31.0115,32.2461,31.2183,0.082368,0.798656,0.006784,0.006144,0.077504,0.11632,0.129248,29.8885,0.112768
+911,31.1739,32.0781,32.26,0.083008,0.769696,0.006336,0.00592,0.069216,0.115328,0.118688,30.9781,0.113664
+912,30.1088,33.2129,31.2289,0.083968,0.765952,0.008032,0.005632,0.068288,0.116544,0.118944,29.9479,0.113664
+913,30.9328,32.3281,31.1889,0.080768,0.793952,0.006816,0.005472,0.068256,0.116736,0.118784,29.8844,0.113696
+914,31.0322,32.2246,32.3877,0.08256,0.860192,0.007232,0.005024,0.069472,0.11648,0.118496,31.0156,0.11264
+915,29.8873,33.459,32.3702,0.081984,0.835392,0.006304,0.005984,0.077984,0.130464,0.119392,30.9996,0.113088
+916,29.9977,33.3359,31.2103,0.080704,0.810848,0.006272,0.007712,0.068064,0.116736,0.118784,29.8865,0.11472
+917,30.5964,32.6836,32.4461,0.082272,0.95456,0.006208,0.006016,0.071808,0.116032,0.118656,30.9682,0.122368
+918,30.0276,33.3027,31.1811,0.082208,0.796672,0.007552,0.004896,0.069472,0.116512,0.118816,29.8714,0.113568
+919,30.7674,32.502,32.34,0.082944,0.852928,0.006208,0.005952,0.067776,0.116576,0.11664,30.9783,0.11264
+920,29.7519,33.6113,32.3502,0.081856,0.804928,0.007552,0.004896,0.069184,0.115072,0.12,31.034,0.112704
+921,29.8056,33.5508,31.1895,0.081792,0.803456,0.006144,0.006144,0.068768,0.11552,0.11824,29.8697,0.119712
+922,30.7637,32.5059,32.3645,0.08192,0.897024,0.006144,0.006144,0.069376,0.11616,0.119616,30.9555,0.11264
+923,29.9345,33.4062,32.4362,0.081472,0.91184,0.007392,0.004864,0.069088,0.114912,0.118272,31.0157,0.11264
+924,29.7553,33.6074,31.3318,0.08192,0.918912,0.006784,0.005728,0.068,0.114688,0.116736,29.9049,0.114112
+925,30.8694,32.3945,32.326,0.082304,0.84784,0.007648,0.00464,0.069312,0.116928,0.118432,30.9656,0.113344
+926,29.6829,33.6895,31.3065,0.082336,0.909184,0.006592,0.005696,0.075968,0.114976,0.118816,29.8803,0.112672
+927,30.8657,32.3984,32.412,0.081856,0.915872,0.007424,0.004864,0.069376,0.114976,0.118752,30.9857,0.113152
+928,29.8926,33.4531,32.299,0.083968,0.804864,0.022528,0.006144,0.067584,0.116192,0.11728,30.9678,0.112704
+929,29.9538,33.3848,31.2176,0.081984,0.794432,0.006336,0.00592,0.06784,0.118176,0.118464,29.9095,0.114976
+930,31.019,32.2383,31.1859,0.082976,0.799712,0.008032,0.005664,0.067968,0.114976,0.118912,29.8752,0.11248
+931,31.0265,32.2305,32.2206,0.08208,0.798336,0.006688,0.0056,0.068128,0.116736,0.118592,30.9107,0.113792
+932,30.2029,33.1094,31.1493,0.081952,0.7632,0.00688,0.00592,0.068864,0.115712,0.119936,29.873,0.113824
+933,30.9515,32.3086,31.3094,0.083296,0.8784,0.007008,0.005216,0.068512,0.116736,0.118624,29.9186,0.113088
+934,30.8769,32.3867,32.3502,0.083904,0.820832,0.006624,0.006112,0.068832,0.114784,0.11952,31.0166,0.11296
+935,29.2338,34.207,32.5366,0.083072,1.03309,0.018432,0.005632,0.068096,0.134848,0.118112,30.9626,0.112704
+936,29.7087,33.6602,31.4122,0.082976,0.96272,0.006976,0.005792,0.067936,0.116768,0.118752,29.9369,0.113408
+937,30.7268,32.5449,32.3728,0.082016,0.898336,0.006784,0.005568,0.068192,0.116704,0.118784,30.9631,0.11328
+938,30.107,33.2148,31.2145,0.082304,0.762272,0.006272,0.006144,0.069632,0.115968,0.118624,29.9406,0.11264
+939,30.8415,32.4238,31.6867,0.081952,0.9216,0.007584,0.004704,0.069632,0.11472,0.118688,30.2552,0.112672
+940,30.5471,32.7363,32.2314,0.083968,0.8192,0.006144,0.006144,0.06768,0.11664,0.120224,30.8985,0.112928
+941,29.8525,33.498,31.2183,0.088768,0.792544,0.00752,0.004768,0.06896,0.11536,0.118784,29.909,0.11264
+942,30.9965,32.2617,31.2563,0.081952,0.87856,0.0072,0.00512,0.0688,0.115488,0.120224,29.8645,0.114432
+943,30.8545,32.4102,32.3584,0.08192,0.899072,0.007808,0.00448,0.069408,0.116544,0.119136,30.9474,0.11264
+944,29.6519,33.7246,31.2991,0.081792,0.917152,0.006624,0.00608,0.068992,0.115424,0.118784,29.8697,0.114496
+945,30.7452,32.5254,31.3283,0.081952,0.89088,0.007904,0.004384,0.069632,0.11632,0.117152,29.9274,0.11264
+946,30.7341,32.5371,32.3875,0.082336,0.882656,0.007904,0.005632,0.068384,0.116512,0.122656,30.9882,0.113152
+947,29.8996,33.4453,31.4796,0.082496,0.76592,0.007776,0.004512,0.068928,0.115424,0.11872,30.2019,0.11392
+948,30.017,33.3145,31.9892,0.08304,1.57741,0.006624,0.005664,0.068064,0.132896,0.11904,29.8819,0.11456
+949,29.4185,33.9922,32.6182,0.08192,1.09686,0.01712,0.004224,0.069472,0.116896,0.122016,30.9973,0.112384
+950,30.916,32.3457,31.2601,0.081952,0.843584,0.006304,0.0144,0.069568,0.128832,0.118432,29.8829,0.114144
+951,31.0529,32.2031,32.2806,0.083136,0.77264,0.006432,0.005824,0.069024,0.115616,0.120832,30.9944,0.11264
+952,29.9258,33.416,32.2725,0.081216,0.85072,0.007648,0.004992,0.06912,0.11632,0.117312,30.9125,0.112672
+953,29.9258,33.416,31.2715,0.0824,0.9176,0.007584,0.004672,0.06928,0.115168,0.118656,29.8434,0.112736
+954,29.9766,33.3594,31.4155,0.079936,1.0137,0.007936,0.015776,0.078016,0.11536,0.122432,29.8685,0.113824
+955,31.4014,31.8457,33.3086,0.083712,0.806624,0.006688,0.0056,0.080032,0.11712,0.11984,31.9758,0.113152
+956,29.2722,34.1621,31.179,0.082144,0.79056,0.008,0.004384,0.069504,0.11632,0.1192,29.8742,0.114688
+957,30.9253,32.3359,31.3131,0.08192,0.892448,0.006624,0.005632,0.069312,0.11552,0.118336,29.9105,0.1128
+958,30.7286,32.543,32.3603,0.0816,0.905504,0.006656,0.006048,0.069728,0.116768,0.118752,30.9426,0.112608
+959,30.1425,33.1758,31.2156,0.08992,0.771872,0.00656,0.005728,0.069024,0.116928,0.119296,29.923,0.113312
+960,31.0228,32.2344,31.1931,0.081952,0.82896,0.006592,0.006144,0.0688,0.115552,0.118752,29.8446,0.12176
+961,30.4526,32.8379,32.3216,0.083328,0.8608,0.007456,0.004832,0.06944,0.11488,0.12288,30.9453,0.112672
+962,30.4056,32.8887,32.215,0.08144,0.786912,0.006528,0.006144,0.069152,0.115168,0.118784,30.918,0.112864
+963,29.8804,33.4668,31.161,0.082272,0.772416,0.007456,0.004832,0.08192,0.12656,0.119136,29.853,0.113376
+964,30.9496,32.3105,32.2587,0.082688,0.772096,0.007296,0.00496,0.069568,0.115968,0.118752,30.9728,0.114592
+965,29.7744,33.5859,31.2718,0.08192,0.869152,0.006336,0.006016,0.068736,0.115616,0.120128,29.8911,0.112768
+966,31.0397,32.2168,32.249,0.083072,0.793472,0.007328,0.004992,0.069632,0.116544,0.116928,30.9434,0.1136
+967,29.9153,33.4277,32.3279,0.082752,0.894656,0.006592,0.0056,0.06816,0.116704,0.118784,30.9207,0.113952
+968,29.8786,33.4688,31.2857,0.081888,0.825792,0.006144,0.006144,0.077856,0.116352,0.119232,29.9396,0.11264
+969,30.9927,32.2656,31.2567,0.08192,0.832672,0.007008,0.005248,0.06848,0.116736,0.122368,29.9095,0.112768
+970,30.7803,32.4883,32.3014,0.082272,0.792608,0.007392,0.004896,0.077056,0.115424,0.12016,30.9864,0.115232
+971,29.6898,33.6816,31.2317,0.082656,0.88224,0.00656,0.00576,0.067968,0.116736,0.120064,29.836,0.113728
+972,30.9366,32.3242,31.2502,0.081632,0.833952,0.006336,0.006144,0.068704,0.115616,0.118784,29.9064,0.112672
+973,31.1834,32.0684,32.2211,0.082144,0.786208,0.006368,0.005984,0.067744,0.116704,0.11824,30.9245,0.113184
+974,30.1318,33.1875,32.2091,0.08208,0.78032,0.008,0.005632,0.067808,0.116544,0.1192,30.9168,0.11264
+975,30.0999,33.2227,31.1642,0.081952,0.804992,0.006144,0.006144,0.06896,0.115392,0.118752,29.8475,0.114336
+976,30.622,32.6562,32.387,0.081536,0.931808,0.006752,0.005984,0.067744,0.116224,0.122432,30.9421,0.112352
+977,29.0876,34.3789,31.4123,0.083264,1.0247,0.00736,0.015168,0.069632,0.116608,0.129152,29.853,0.113408
+978,31.3265,31.9219,32.4029,0.08192,0.916928,0.00672,0.005984,0.067744,0.116736,0.116736,30.9772,0.112928
+979,29.8856,33.4609,32.3332,0.083296,0.885088,0.006464,0.005952,0.067776,0.116736,0.118464,30.9364,0.113024
+980,29.9135,33.4297,31.1881,0.08192,0.787584,0.00704,0.005728,0.068,0.116736,0.118784,29.8897,0.112576
+981,30.7618,32.5078,31.3209,0.081728,0.914304,0.00768,0.004608,0.069408,0.116416,0.1184,29.8955,0.112864
+982,30.6477,32.6289,32.342,0.088064,0.835584,0.007744,0.005664,0.068512,0.11664,0.128736,30.9785,0.112608
+983,30.0575,33.2695,31.2328,0.082464,0.82112,0.006496,0.005792,0.069088,0.11712,0.118528,29.8975,0.114688
+984,31.0567,32.1992,31.2213,0.08192,0.806368,0.006688,0.006048,0.06768,0.115744,0.119008,29.905,0.1128
+985,30.9403,32.3203,32.2908,0.084,0.77616,0.007232,0.005056,0.069056,0.116384,0.117696,31.0026,0.11264
+986,29.952,33.3867,31.1741,0.083136,0.778432,0.006784,0.00592,0.067808,0.116736,0.118784,29.8824,0.114176
+987,31.0303,32.2266,31.1777,0.080832,0.798048,0.006784,0.005472,0.068256,0.11584,0.119424,29.8704,0.11264
+988,31.0378,32.2188,32.2929,0.08192,0.83968,0.016384,0.006144,0.069184,0.116192,0.11952,30.9312,0.11264
+989,29.8856,33.4609,32.3965,0.083424,0.88528,0.016352,0.005216,0.068544,0.116352,0.117056,30.9904,0.113888
+990,29.8334,33.5195,31.2878,0.082592,0.872768,0.00784,0.004704,0.069152,0.124704,0.118592,29.8932,0.11424
+991,30.303,33,32.3039,0.081952,0.891712,0.016,0.004416,0.081376,0.11632,0.119392,30.8799,0.1128
+992,30.2744,33.0312,31.2539,0.080128,0.90928,0.006144,0.006144,0.067584,0.117984,0.118752,29.834,0.113824
+993,30.8359,32.4297,32.293,0.08208,0.883744,0.007072,0.005216,0.068384,0.11488,0.116736,30.9018,0.113088
+994,28.3971,35.2148,32.4175,0.08192,0.964608,0.00736,0.004928,0.069312,0.116128,0.119488,30.9411,0.112704
+995,31.0491,32.207,31.245,0.081536,0.852384,0.006752,0.005536,0.068192,0.116736,0.118816,29.8818,0.113216
+996,30.8918,32.3711,31.2185,0.080736,0.892896,0.007648,0.004864,0.069216,0.116256,0.119456,29.814,0.113376
+997,31.1815,32.0703,32.2121,0.083456,0.759904,0.00656,0.005728,0.068,0.11792,0.115552,30.9412,0.113824
+998,29.7917,33.5664,31.245,0.082208,0.854592,0.0144,0.006144,0.067584,0.124448,0.119072,29.8618,0.114752
+999,30.8806,32.3828,31.1916,0.082304,0.817408,0.008096,0.004192,0.06944,0.128256,0.117696,29.8516,0.112608
+1000,31.1511,32.1016,32.2079,0.082944,0.781344,0.008,0.005632,0.068256,0.116736,0.118784,30.9125,0.113696
+1001,29.4863,33.9141,31.2647,0.08192,0.861952,0.022816,0.005728,0.067968,0.116672,0.11888,29.8752,0.1136
+1002,31.3303,31.918,31.2215,0.080096,0.89088,0.008032,0.005664,0.068224,0.11472,0.118752,29.8227,0.112512
+1003,30.5089,32.7773,32.4466,0.081952,0.971776,0.007072,0.005216,0.078144,0.115136,0.118592,30.9572,0.111488
+1004,30.0893,33.2344,32.3604,0.082208,0.814784,0.007136,0.005824,0.067904,0.116736,0.118752,31.0334,0.113696
+1005,28.2374,35.4141,31.2197,0.080672,0.8192,0.008096,0.005248,0.068256,0.116064,0.118816,29.8895,0.11392
+1006,30.5927,32.6875,32.3686,0.083808,0.87008,0.006624,0.00608,0.068768,0.115008,0.13168,30.9737,0.112832
+1007,29.938,33.4023,31.1966,0.083552,0.831168,0.00688,0.00528,0.068448,0.116736,0.118784,29.8516,0.114112
+1008,30.8285,32.4375,32.2908,0.08192,0.83968,0.007264,0.005024,0.069632,0.114688,0.120032,30.9399,0.11264
+1009,29.8368,33.5156,32.2826,0.08192,0.843008,0.006912,0.00544,0.068288,0.11648,0.118496,30.9293,0.1128
+1010,28.9396,34.5547,32.1834,0.082016,1.74061,0.007744,0.00576,0.068512,0.116384,0.118496,29.9301,0.113728
+1011,30.7508,32.5195,31.2013,0.08192,0.821248,0.007392,0.004896,0.068672,0.11568,0.118496,29.8703,0.11264
+1012,30.6513,32.625,32.3065,0.082112,0.84336,0.006368,0.006144,0.069184,0.116672,0.118848,30.9477,0.116096
+1013,30.146,33.1719,31.1835,0.080704,0.821152,0.008,0.004256,0.069568,0.115872,0.11776,29.8516,0.114656
+1014,31.068,32.1875,31.2115,0.083968,0.791744,0.006976,0.005728,0.068,0.11632,0.1192,29.9069,0.11264
+1015,30.2851,33.0195,32.2701,0.08192,0.802816,0.00784,0.004448,0.069632,0.116672,0.118784,30.9548,0.113216
+1016,30.0929,33.2305,32.2477,0.083136,0.77216,0.006912,0.006048,0.06768,0.116352,0.11712,30.9551,0.123232
+1017,30.0823,33.2422,31.2027,0.08192,0.786432,0.008,0.004288,0.069632,0.116736,0.11824,29.9034,0.114048
+1018,30.9253,32.3359,32.2747,0.081856,0.826976,0.00688,0.005792,0.067936,0.116736,0.118784,30.9371,0.112672
+1019,30.0681,33.2578,31.1807,0.08192,0.76384,0.006208,0.006048,0.068832,0.115552,0.11824,29.9053,0.11472
+1020,30.9927,32.2656,31.1751,0.081984,0.770432,0.007872,0.005632,0.068416,0.116256,0.117248,29.8946,0.11264
+1021,30.8545,32.4102,33.2616,0.083328,1.04493,0.006336,0.005952,0.068896,0.115616,0.134464,31.6884,0.113632
+1022,29.4795,33.9219,31.1153,0.083008,0.758336,0.006528,0.006144,0.06896,0.11536,0.118784,29.8452,0.112992
+1023,30.9852,32.2734,31.1542,0.08336,0.789088,0.007584,0.004704,0.069344,0.115008,0.118752,29.8537,0.112704
+1024,31.0153,32.2422,32.2096,0.082144,0.764224,0.006304,0.006176,0.069152,0.115136,0.1184,30.9354,0.11264
+1025,29.3679,34.0508,31.1995,0.091456,0.77664,0.006624,0.005664,0.068064,0.116608,0.11856,29.9025,0.113344
+1026,30.633,32.6445,31.2525,0.08192,0.806912,0.008192,0.006112,0.067616,0.124928,0.12288,29.9207,0.11328
+1027,31.1815,32.0703,32.1763,0.08208,0.7616,0.0064,0.005856,0.068896,0.115712,0.118816,30.9043,0.11264
+1028,30.107,33.2148,32.2085,0.080352,0.761856,0.007904,0.005664,0.068352,0.116576,0.118944,30.9367,0.112224
+1029,29.5646,33.8242,31.3142,0.081856,0.952992,0.00784,0.004448,0.069632,0.131072,0.118784,29.8332,0.114336
+1030,31.1663,32.0859,32.1761,0.08128,0.8096,0.006144,0.006144,0.069632,0.114784,0.118688,30.8572,0.11264
+1031,29.91,33.4336,31.1933,0.080672,0.776192,0.00752,0.004768,0.069344,0.11632,0.11744,29.9,0.121056
+1032,31.1473,32.1055,32.2191,0.081952,0.804864,0.007488,0.004928,0.069344,0.115968,0.118912,30.9025,0.113216
+1033,30.0964,33.2266,32.2186,0.083392,0.755648,0.006784,0.005472,0.068256,0.117792,0.11776,30.9506,0.112896
+1034,30.1425,33.1758,31.1379,0.08352,0.784352,0.006624,0.006112,0.068896,0.115456,0.120096,29.8392,0.113632
+1035,31.0868,32.168,31.1985,0.082016,0.813056,0.0072,0.005088,0.06864,0.11568,0.118784,29.8742,0.113824
+1036,30.9179,32.3438,32.2288,0.08192,0.779296,0.00704,0.005472,0.068352,0.116736,0.118784,30.9383,0.112896
+1037,29.7778,33.582,31.2827,0.08192,0.90048,0.014976,0.006144,0.0696,0.124736,0.119008,29.8516,0.114144
+1038,30.7914,32.4766,31.2117,0.081888,0.862336,0.006784,0.00592,0.067808,0.116736,0.118688,29.8391,0.11248
+1039,31.0982,32.1562,32.1858,0.08192,0.794048,0.006592,0.004224,0.069632,0.116448,0.118144,30.8807,0.114144
+1040,30.0646,33.2617,31.5106,0.083232,0.809184,0.006752,0.006144,0.06912,0.125504,0.120768,30.1773,0.11264
+1041,30.411,32.8828,31.3486,0.08192,1.01667,0.009984,0.004352,0.071232,0.115136,0.120128,29.8106,0.118592
+1042,31.0078,32.25,32.2772,0.082592,0.815136,0.006144,0.006144,0.069568,0.114784,0.118752,30.9514,0.11264
+1043,30.146,33.1719,31.151,0.082496,0.802912,0.0064,0.005984,0.068768,0.128,0.122432,29.8214,0.112672
+1044,31.0944,32.1602,32.1919,0.081952,0.7816,0.00688,0.005856,0.067872,0.11632,0.118848,30.8997,0.112864
+1045,30.0012,33.332,32.2754,0.0808,0.863968,0.006432,0.005696,0.068032,0.116736,0.119808,30.9012,0.11264
+1046,30.0787,33.2461,31.2689,0.08192,0.857408,0.006848,0.005984,0.067744,0.116448,0.118304,29.8995,0.114688
+1047,30.7729,32.4961,31.189,0.082624,0.814144,0.007104,0.00528,0.069664,0.11552,0.118784,29.8619,0.113952
+1048,30.989,32.2695,32.2943,0.083968,0.78848,0.0072,0.005088,0.069408,0.114944,0.11824,30.9928,0.114112
+1049,29.917,33.4258,31.2324,0.08224,0.79584,0.00704,0.005248,0.06848,0.116736,0.118784,29.9254,0.112672
+1050,31.0265,32.2305,31.1829,0.083904,0.803968,0.007104,0.005664,0.068064,0.115872,0.117632,29.868,0.112672
+1051,30.8248,32.4414,32.3625,0.081984,0.910432,0.007072,0.005248,0.06848,0.116736,0.118656,30.9407,0.113216
+1052,29.8299,33.5234,32.3025,0.081824,0.888448,0.006624,0.00608,0.067648,0.116,0.117568,30.9042,0.11408
+1053,29.8195,33.5352,31.3029,0.081856,0.901184,0.014336,0.00608,0.068736,0.11568,0.118752,29.8824,0.113888
+1054,30.9515,32.3086,32.3839,0.08288,0.913344,0.006208,0.006144,0.069152,0.115008,0.11872,30.9595,0.11296
+1055,29.8891,33.457,31.148,0.083872,0.800832,0.006176,0.006048,0.067808,0.116608,0.118816,29.8348,0.11312
+1056,30.8174,32.4492,32.3868,0.08384,0.91184,0.006272,0.006144,0.06864,0.11504,0.11872,30.962,0.11424
+1057,29.7398,33.625,32.298,0.09024,0.80368,0.008,0.004288,0.069632,0.116736,0.118784,30.974,0.11264
+1058,29.903,33.4414,31.1813,0.082016,0.776256,0.006656,0.006016,0.067808,0.120736,0.118784,29.8896,0.11344
+1059,31.0491,32.207,31.2472,0.082528,0.8272,0.006624,0.005632,0.068096,0.116736,0.118784,29.9088,0.112832
+1060,30.9627,32.2969,32.2724,0.083552,0.80528,0.00752,0.00624,0.06816,0.114688,0.118784,30.9556,0.11264
+1061,30.0752,33.25,31.2361,0.083232,0.817888,0.006144,0.006144,0.068672,0.11568,0.118752,29.9049,0.114688
+1062,31.0454,32.2109,31.2111,0.084,0.77616,0.0072,0.005088,0.06912,0.1152,0.120352,29.9209,0.113088
+1063,30.9029,32.3594,32.2726,0.081984,0.785216,0.006208,0.006048,0.069024,0.116768,0.11744,30.9758,0.114112
+1064,30.0469,33.2812,32.2382,0.080896,0.801952,0.007008,0.005728,0.068,0.122592,0.119072,30.9204,0.112544
+1065,29.9555,33.3828,31.2269,0.081376,0.796608,0.006752,0.005504,0.068256,0.116672,0.118208,29.9198,0.113728
+1066,30.8918,32.3711,32.2703,0.082624,0.782336,0.007392,0.004896,0.0696,0.116608,0.118944,30.975,0.112928
+1067,29.8229,33.5312,31.2948,0.083232,0.844512,0.008032,0.004256,0.08192,0.117824,0.12736,29.9137,0.114016
+1068,31.083,32.1719,32.2299,0.080672,0.774144,0.007552,0.004896,0.069472,0.115936,0.117568,30.9473,0.112384
+1069,30.0012,33.332,32.1987,0.08192,0.804864,0.00768,0.004608,0.069632,0.115936,0.117568,30.8832,0.113216
+1070,30.0364,33.293,31.1256,0.082016,0.77616,0.0072,0.005088,0.069408,0.115968,0.11776,29.8393,0.11264
+1071,31.1739,32.0781,31.197,0.081504,0.777728,0.007072,0.005184,0.06832,0.116096,0.1176,29.9106,0.112832
+1072,30.9291,32.332,32.2355,0.08192,0.776192,0.0072,0.005088,0.069056,0.115296,0.118752,30.9494,0.11264
+1073,30.0646,33.2617,31.1706,0.083008,0.764576,0.006432,0.005952,0.067776,0.114688,0.118752,29.8966,0.112736
+1074,30.9291,32.332,31.201,0.081568,0.871168,0.007488,0.004896,0.069568,0.114688,0.118752,29.8202,0.11264
+1075,30.9478,32.3125,32.2264,0.082016,0.796256,0.00656,0.00576,0.067968,0.11664,0.11888,30.9201,0.112288
+1076,29.917,33.4258,32.3538,0.08368,0.886336,0.00688,0.005856,0.067872,0.114688,0.119808,30.956,0.112736
+1077,29.4591,33.9453,31.2394,0.083296,0.823072,0.016384,0.004992,0.068704,0.117088,0.117344,29.8946,0.11392
+1078,31.1133,32.1406,32.4344,0.082176,0.947904,0.006464,0.006144,0.086048,0.11648,0.1184,30.9579,0.11296
+1079,30.2422,33.0664,31.1714,0.082752,0.761824,0.008064,0.004224,0.069472,0.115904,0.11776,29.8987,0.11264
+1080,30.7544,32.5156,31.5597,0.082208,0.825472,0.006368,0.006112,0.069024,0.115264,0.118784,30.2234,0.113056
+1081,30.5234,32.7617,32.2558,0.083968,0.785504,0.007072,0.005216,0.068512,0.120192,0.118784,30.9537,0.112832
+1082,29.959,33.3789,31.2148,0.083008,0.783296,0.00752,0.004864,0.069376,0.11488,0.118752,29.9207,0.112384
+1083,30.9403,32.3203,31.2557,0.08192,0.792576,0.007904,0.004384,0.069632,0.120864,0.118752,29.9459,0.113792
+1084,31.1967,32.0547,32.2273,0.083552,0.766368,0.006144,0.006144,0.06896,0.115392,0.1208,30.9474,0.112608
+1085,30.0752,33.25,31.1902,0.082048,0.783456,0.006944,0.005504,0.068224,0.116288,0.118592,29.8946,0.11456
+1086,30.8471,32.418,31.1972,0.0832,0.813824,0.008032,0.004352,0.069536,0.116736,0.118784,29.8695,0.113184
+1087,30.611,32.668,32.2302,0.081952,0.8056,0.007968,0.00432,0.069632,0.116768,0.118752,30.9123,0.112896
+1088,30.1106,33.2109,32.3096,0.082016,0.868576,0.006176,0.006144,0.068992,0.115328,0.120288,30.9294,0.11264
+1089,29.903,33.4414,31.2279,0.081696,0.83712,0.006912,0.005408,0.078528,0.116736,0.118784,29.8701,0.11264
+1090,30.9815,32.2773,32.1883,0.079872,0.79008,0.006592,0.006144,0.067616,0.116448,0.11808,30.8909,0.112512
+1091,29.8786,33.4688,31.2832,0.083968,0.89088,0.008192,0.005472,0.068256,0.116736,0.118432,29.878,0.113216
+1092,30.5781,32.7031,32.2251,0.081984,0.77616,0.007488,0.004896,0.069312,0.116064,0.119392,30.9368,0.11296
+1093,29.9135,33.4297,32.2764,0.0824,0.847776,0.006432,0.006016,0.073856,0.116736,0.118784,30.9105,0.11392
+1094,29.9941,33.3398,31.1457,0.083456,0.784896,0.006144,0.006144,0.069184,0.115168,0.118752,29.8492,0.112736
+1095,30.9777,32.2812,31.2012,0.083776,0.815328,0.007936,0.00432,0.069408,0.114912,0.119872,29.8721,0.113504
+1096,31.0228,32.2344,32.1968,0.081408,0.803584,0.007264,0.004992,0.069312,0.11632,0.117472,30.8838,0.11264
+1097,29.9801,33.3555,31.2269,0.08128,0.805568,0.008032,0.004256,0.069632,0.116736,0.118624,29.9092,0.113664
+1098,30.8806,32.3828,31.2008,0.081408,0.844192,0.006624,0.006112,0.068736,0.115616,0.118112,29.8462,0.113824
+1099,30.8843,32.3789,32.3049,0.08192,0.862208,0.007328,0.00496,0.068992,0.11536,0.118752,30.9326,0.1128
+1100,30.0858,33.2383,31.4088,0.081856,0.76976,0.007072,0.005664,0.068128,0.11472,0.118752,30.1275,0.11536
+1101,30.8174,32.4492,31.9222,0.083936,0.765984,0.006144,0.006144,0.067584,0.116448,0.118368,30.6426,0.115008
+1102,29.9065,33.4375,32.2499,0.08192,0.796672,0.007904,0.005632,0.068384,0.116192,0.117312,30.9432,0.11264
+1103,29.6984,33.6719,31.1765,0.083072,0.785344,0.008,0.004288,0.068992,0.11664,0.118784,29.877,0.114464
+1104,31.4458,31.8008,32.2724,0.083104,0.814976,0.007136,0.005536,0.082016,0.116672,0.11856,30.9316,0.1128
+1105,30.0999,33.2227,32.1878,0.08192,0.757024,0.00688,0.005408,0.06832,0.116352,0.119168,30.9205,0.112224
+1106,29.8368,33.5156,31.2125,0.082496,0.821632,0.007232,0.005088,0.069376,0.116128,0.118784,29.8788,0.112992
+1107,31.1436,32.1094,31.1394,0.08192,0.768,0.00784,0.004448,0.069408,0.116864,0.11872,29.8578,0.1144
+1108,30.8694,32.3945,32.3482,0.081728,0.932032,0.008064,0.005632,0.068224,0.116192,0.11728,30.9076,0.111392
+1109,29.9941,33.3398,31.2115,0.081664,0.81536,0.007712,0.004576,0.06928,0.115072,0.1184,29.8862,0.113216
+1110,30.9104,32.3516,31.2009,0.082016,0.884704,0.007488,0.004896,0.069536,0.115904,0.119328,29.8028,0.11424
+1111,30.9777,32.2812,32.3019,0.082272,0.879072,0.007904,0.004352,0.069568,0.114752,0.118784,30.9105,0.114688
+1112,29.8751,33.4727,32.3281,0.083392,0.895456,0.006624,0.00608,0.068896,0.115488,0.118784,30.9207,0.11264
+1113,30.0012,33.332,31.1914,0.082048,0.768032,0.007584,0.004704,0.069248,0.116192,0.1192,29.9115,0.112832
+1114,30.9067,32.3555,32.2252,0.083968,0.813024,0.006176,0.006144,0.068992,0.115328,0.119904,30.899,0.112608
+1115,29.959,33.3789,31.2382,0.079872,0.84176,0.007296,0.00496,0.085024,0.11568,0.118784,29.866,0.118816
+1116,31.0755,32.1797,32.192,0.083008,0.774272,0.007008,0.005792,0.067904,0.116352,0.118208,30.9071,0.112352
+1117,29.7952,33.5625,32.2626,0.081856,0.856128,0.006848,0.004192,0.07984,0.11648,0.12064,30.8838,0.112832
+1118,30.2851,33.0195,31.2136,0.083392,0.819776,0.007296,0.004992,0.0696,0.116608,0.11872,29.8801,0.113088
+1119,31.0717,32.1836,31.1905,0.08208,0.785312,0.007104,0.005344,0.068288,0.114784,0.118816,29.8958,0.11296
+1120,31.0793,32.1758,32.2232,0.083072,0.768896,0.006144,0.006144,0.069344,0.114976,0.118784,30.9429,0.112992
+1121,29.8542,33.4961,31.2835,0.081952,0.898976,0.006624,0.005664,0.068064,0.116736,0.116576,29.8756,0.113312
+1122,31.0341,32.2227,31.1722,0.08192,0.782336,0.006144,0.006144,0.068864,0.115296,0.117952,29.8807,0.112832
+1123,31.019,32.2383,32.279,0.082144,0.786656,0.006144,0.005856,0.069152,0.116704,0.119232,30.9805,0.112608
+1124,30.0047,33.3281,32.2555,0.08192,0.802816,0.007936,0.005856,0.068128,0.115936,0.117568,30.9425,0.112896
+1125,29.9485,33.3906,31.232,0.083616,0.817504,0.007648,0.00464,0.068896,0.115424,0.118784,29.9008,0.114688
+1126,31.0416,32.2148,32.2335,0.08352,0.79712,0.008064,0.005632,0.068224,0.116736,0.118784,30.9123,0.123072
+1127,30.107,33.2148,31.1393,0.08128,0.772416,0.006464,0.005792,0.068096,0.116576,0.118816,29.8557,0.114176
+1128,30.959,32.3008,32.1725,0.082336,0.789664,0.007008,0.00576,0.068128,0.116576,0.118784,30.8716,0.112672
+1129,30.0575,33.2695,32.255,0.08192,0.845824,0.00784,0.004448,0.069408,0.116032,0.1192,30.8966,0.113696
+1130,30.0646,33.2617,31.1235,0.081248,0.78464,0.00656,0.006144,0.067616,0.116704,0.118016,29.8299,0.11264
+1131,30.8434,32.4219,31.1972,0.08192,0.83936,0.006464,0.005792,0.067936,0.116736,0.12288,29.8435,0.11264
+1132,31.1019,32.1523,32.2267,0.081952,0.782304,0.008,0.005664,0.068256,0.11584,0.117632,30.9344,0.112576
+1133,29.7536,33.6094,31.218,0.081536,0.854368,0.006432,0.0056,0.068128,0.116576,0.11856,29.8541,0.112672
+1134,30.9665,32.293,31.1379,0.082368,0.780704,0.007296,0.005024,0.069376,0.116032,0.11776,29.8454,0.11392
+1135,31.068,32.1875,32.299,0.083296,0.873024,0.00624,0.006016,0.067712,0.116736,0.120832,30.9125,0.11264
+1136,30.1247,33.1953,32.237,0.082112,0.783968,0.00656,0.006144,0.069248,0.115072,0.118784,30.9423,0.1128
+1137,29.9661,33.3711,31.2336,0.081952,0.821216,0.007328,0.00496,0.069248,0.116768,0.1184,29.9011,0.112672
+1138,30.9777,32.2812,32.2422,0.082208,0.788608,0.00624,0.006144,0.06944,0.116288,0.119168,30.9414,0.112704
+1139,30.0082,33.3242,31.171,0.082336,0.796672,0.007616,0.004672,0.068992,0.115328,0.116736,29.866,0.11264
+1140,30.4363,32.8555,32.3463,0.08208,0.88064,0.007584,0.004896,0.06944,0.11648,0.117024,30.9545,0.113664
+1141,30.4798,32.8086,32.1555,0.08192,0.768,0.007904,0.004384,0.069632,0.116256,0.118336,30.8766,0.11248
+1142,29.917,33.4258,31.1505,0.082336,0.811008,0.00768,0.005664,0.068576,0.115808,0.117664,29.8284,0.113344
+1143,30.8508,32.4141,31.271,0.081984,0.878048,0.006752,0.005536,0.068192,0.124928,0.118816,29.8741,0.11264
+1144,30.5526,32.7305,32.3666,0.083968,0.888,0.006976,0.00576,0.067968,0.116096,0.1192,30.9655,0.113152
+1145,29.8195,33.5352,31.2227,0.082848,0.825312,0.007712,0.004576,0.073344,0.115072,0.118784,29.8824,0.11264
+1146,31.1284,32.125,31.1459,0.08208,0.767456,0.006528,0.006144,0.077824,0.116384,0.1184,29.8576,0.113504
+1147,30.9216,32.3398,32.2974,0.082368,0.87568,0.007008,0.00528,0.068416,0.116448,0.118976,30.91,0.113184
+1148,29.449,33.957,31.3796,0.080768,0.976864,0.007712,0.005664,0.068544,0.11664,0.118528,29.892,0.112864
+1149,31.2119,32.0391,31.1624,0.08192,0.782336,0.007744,0.004544,0.069184,0.116224,0.119424,29.8676,0.113472
+1150,30.81,32.457,32.322,0.082784,0.826752,0.006784,0.00592,0.069152,0.115392,0.126976,30.9754,0.112896
+1151,29.4795,33.9219,32.3461,0.08192,0.888864,0.007552,0.004704,0.06944,0.116576,0.118656,30.9458,0.11264
+1152,29.9275,33.4141,31.2404,0.082336,0.83968,0.007424,0.00592,0.070624,0.116576,0.12496,29.8804,0.112416
+1153,31.2043,32.0469,32.3056,0.081632,0.803392,0.007648,0.00464,0.069472,0.116096,0.118752,30.9923,0.111616
+1154,29.924,33.418,31.2564,0.09808,0.842176,0.007552,0.004896,0.069472,0.116736,0.118784,29.8844,0.114336
+1155,30.8211,32.4453,32.2827,0.081664,0.808512,0.00688,0.005408,0.06832,0.116288,0.118272,30.9645,0.1128
+1156,29.5885,33.7969,32.4242,0.082304,0.941568,0.006528,0.006176,0.069216,0.115072,0.118816,30.9717,0.112832
+1157,30.3389,32.9609,31.1952,0.08192,0.821248,0.00768,0.004608,0.069632,0.116576,0.118976,29.861,0.113504
+1158,30.8955,32.3672,31.2334,0.083296,0.83216,0.00736,0.0152,0.077792,0.114688,0.120832,29.868,0.114048
+1159,30.959,32.3008,32.3047,0.08192,0.817152,0.008096,0.004192,0.069632,0.116288,0.117216,30.976,0.114272
+1160,29.8403,33.5117,31.1538,0.08192,0.8104,0.006752,0.005984,0.067744,0.116672,0.11856,29.8332,0.112576
+1161,30.7766,32.4922,31.2381,0.083104,0.879456,0.00816,0.005184,0.068576,0.116736,0.118048,29.8452,0.113568
+1162,31.068,32.1875,32.3338,0.083456,0.90576,0.007776,0.005632,0.06816,0.117024,0.118816,30.9144,0.1128
+1163,29.9661,33.3711,32.2923,0.081792,0.832992,0.006816,0.005536,0.068192,0.116736,0.118528,30.9475,0.114176
+1164,29.9135,33.4297,31.3061,0.081856,0.917888,0.0064,0.006144,0.068992,0.115104,0.118528,29.8784,0.112832
+1165,30.7508,32.5195,32.3584,0.08192,0.894976,0.007456,0.004832,0.068672,0.11568,0.118016,30.9542,0.11264
+1166,29.7813,33.5781,31.2182,0.082432,0.890912,0.007584,0.004896,0.068992,0.115104,0.118816,29.8166,0.112832
+1167,29.688,33.6836,32.2396,0.08192,0.835584,0.007808,0.00448,0.068864,0.114976,0.118528,30.8928,0.114688
+1168,31.2081,32.043,32.2535,0.083968,0.815104,0.007936,0.005632,0.068352,0.116416,0.11808,30.9258,0.112224
+1169,29.7467,33.6172,31.1572,0.081856,0.809024,0.007872,0.004416,0.069184,0.116192,0.117728,29.8373,0.113664
+1170,31.0982,32.1562,32.2514,0.083168,0.777024,0.00624,0.006144,0.069024,0.115296,0.118784,30.9628,0.112928
+1171,30.0117,33.3203,32.2307,0.082944,0.785408,0.007296,0.004992,0.069088,0.116448,0.119232,30.9313,0.113984
+1172,30.1496,33.168,31.1465,0.081952,0.757952,0.006624,0.00608,0.06912,0.115264,0.118784,29.8782,0.11248
+1173,30.5271,32.7578,31.2934,0.08192,0.90112,0.006144,0.006144,0.068864,0.115456,0.118752,29.8824,0.11264
+1174,30.944,32.3164,32.2992,0.08144,0.89584,0.00784,0.005664,0.068416,0.116704,0.118816,30.892,0.112512
+1175,29.9485,33.3906,31.1194,0.08192,0.7856,0.006976,0.00528,0.068448,0.116032,0.119488,29.823,0.112672
+1176,30.8397,32.4258,31.3221,0.081664,0.917504,0.0064,0.006144,0.068864,0.115456,0.119936,29.893,0.113184
+1177,30.4834,32.8047,32.34,0.082592,0.87648,0.008192,0.005408,0.06832,0.116736,0.117952,30.9516,0.112768
+1178,30.1602,33.1562,31.1933,0.083104,0.842688,0.006176,0.006112,0.069216,0.116448,0.117504,29.8386,0.113536
+1179,30.7766,32.4922,31.2197,0.081952,0.87856,0.006144,0.006144,0.068736,0.115392,0.118368,29.8318,0.11264
+1180,30.9366,32.3242,32.2898,0.082944,0.831488,0.007232,0.005056,0.079872,0.11472,0.132672,30.9232,0.11264
+1181,29.9205,33.4219,32.2135,0.082432,0.776192,0.007584,0.004704,0.069632,0.115872,0.119104,30.925,0.112992
+1182,29.8751,33.4727,31.2671,0.08192,0.852224,0.006176,0.006176,0.069152,0.116192,0.118752,29.9018,0.114688
+1183,30.8434,32.4219,32.3329,0.08192,0.886784,0.008032,0.004256,0.069632,0.116768,0.118752,30.9346,0.112224
+1184,30.0964,33.2266,31.179,0.08208,0.799424,0.007808,0.005632,0.06848,0.116544,0.118656,29.8663,0.11408
+1185,30.2315,33.0781,32.3408,0.08224,0.909792,0.0072,0.005088,0.069408,0.115936,0.11776,30.9207,0.11264
+1186,28.7189,34.8203,32.3649,0.082304,0.869568,0.007008,0.005792,0.069408,0.114976,0.118944,30.98,0.116896
+1187,31.3879,31.8594,31.2115,0.08192,0.83504,0.006688,0.005664,0.068096,0.116736,0.118752,29.8598,0.118784
+1188,30.8471,32.418,31.1455,0.08192,0.782368,0.007456,0.004896,0.069536,0.115744,0.117728,29.8427,0.1232
+1189,30.8211,32.4453,32.2399,0.082368,0.782464,0.007648,0.00464,0.075328,0.116928,0.118848,30.9388,0.112928
+1190,29.9205,33.4219,31.2521,0.09216,0.851968,0.016384,0.005952,0.067808,0.116704,0.118784,29.8677,0.114624
+1191,30.8063,32.4609,31.2965,0.08192,0.843776,0.017504,0.005024,0.067584,0.116736,0.11808,29.9322,0.113664
+1192,30.7766,32.4922,32.3809,0.082944,0.90208,0.006208,0.015744,0.068224,0.116736,0.118624,30.9574,0.11296
+1193,29.7432,33.6211,32.3787,0.083136,0.844608,0.008128,0.005216,0.068576,0.126976,0.118816,31.0106,0.112608
+1194,29.3443,34.0781,31.2251,0.08208,0.892768,0.007392,0.004896,0.069312,0.115008,0.118816,29.8204,0.1144
+1195,31.2195,32.0312,32.3553,0.0808,0.90688,0.016512,0.004352,0.069248,0.11648,0.1248,30.9246,0.111584
+1196,29.7156,33.6523,31.2762,0.081856,0.923712,0.008032,0.005664,0.069664,0.116544,0.12768,29.8292,0.113792
+1197,30.9328,32.3281,32.3038,0.083712,0.836512,0.006144,0.006144,0.068736,0.115584,0.118784,30.9555,0.11264
+1198,28.7479,34.7852,32.3338,0.083968,0.925184,0.006656,0.006112,0.07376,0.116736,0.119808,30.889,0.11264
+1199,30.3353,32.9648,31.2356,0.083296,0.913248,0.006976,0.005312,0.078656,0.11776,0.118816,29.7986,0.112992
+1200,31.7185,31.5273,31.0747,0.080224,0.782336,0.007808,0.005664,0.07664,0.116672,0.11888,29.7735,0.112896
+1201,30.7618,32.5078,32.2007,0.08192,0.815104,0.016224,0.004256,0.077664,0.116192,0.119232,30.8575,0.11264
+1202,29.8438,33.5078,31.219,0.083744,0.877952,0.007008,0.005696,0.068032,0.116736,0.118784,29.826,0.114976
+1203,30.644,32.6328,31.2493,0.082752,0.872352,0.00624,0.020064,0.069312,0.115456,0.118752,29.8516,0.112768
+1204,30.9702,32.2891,32.2904,0.083776,0.856256,0.007712,0.005664,0.070368,0.114912,0.118784,30.92,0.112896
+1205,29.6365,33.7422,32.3973,0.081952,0.966624,0.006144,0.006144,0.077088,0.115424,0.118752,30.9125,0.11264
+1206,30.0223,33.3086,31.1749,0.083584,0.844512,0.007904,0.005632,0.068384,0.11616,0.117344,29.8168,0.114592
+1207,29.0546,34.418,32.37,0.082944,0.885408,0.015808,0.005024,0.06912,0.115328,0.118656,30.9515,0.12624
+1208,30.8434,32.4219,31.3385,0.082976,0.97712,0.006912,0.005792,0.07792,0.114976,0.119872,29.8382,0.11472
+1209,30.6881,32.5859,33.1105,0.082368,0.956416,0.00752,0.004768,0.069632,0.116096,0.117376,31.6436,0.11264
+1210,29.5885,33.7969,31.2074,0.083808,0.884896,0.007904,0.005664,0.068352,0.124096,0.118752,29.8013,0.11264
+1211,30.8063,32.4609,31.3064,0.081728,0.903104,0.01664,0.004704,0.069632,0.115776,0.11872,29.8834,0.112672
+1212,30.8769,32.3867,32.3116,0.080224,0.856032,0.007936,0.005632,0.068352,0.11664,0.118272,30.9459,0.11264
+1213,29.6743,33.6992,31.2525,0.083968,0.89056,0.006496,0.006048,0.067648,0.116416,0.1184,29.8502,0.1128
+1214,30.8806,32.3828,31.2423,0.08192,0.910336,0.007072,0.005696,0.068128,0.116672,0.120288,29.8185,0.113664
+1215,30.8211,32.4453,32.3011,0.082976,0.891392,0.006624,0.00576,0.067648,0.116704,0.118784,30.8985,0.11264
+1216,28.6353,34.9219,31.3774,0.08192,1.04448,0.008,0.020032,0.068224,0.115712,0.11904,29.8068,0.113184
+1217,31.992,31.2578,31.264,0.083648,0.866624,0.007744,0.004544,0.068768,0.114848,0.118912,29.885,0.113888
+1218,30.9253,32.3359,32.321,0.090144,0.792576,0.0072,0.005056,0.069504,0.11616,0.118688,31.0087,0.112992
+1219,29.9275,33.4141,32.2166,0.083168,0.785184,0.006144,0.006144,0.069632,0.116736,0.118784,30.9184,0.112384
+1220,30.0505,33.2773,31.1788,0.082272,0.799968,0.006944,0.005792,0.067968,0.12416,0.118688,29.8586,0.114336
+1221,29.2571,34.1797,32.4342,0.082752,0.978304,0.006752,0.0056,0.068128,0.11648,0.11696,30.9453,0.113856
+1222,31.1701,32.082,31.1689,0.08144,0.797536,0.007488,0.004896,0.069536,0.116384,0.119168,29.8578,0.114688
+1223,30.81,32.457,32.2253,0.08352,0.812864,0.006784,0.0056,0.069664,0.116256,0.117728,30.9002,0.11264
+1224,29.8961,33.4492,32.19,0.082208,0.771136,0.007072,0.005664,0.07632,0.116544,0.11872,30.9004,0.112
+1225,30.1496,33.168,31.1767,0.08192,0.78848,0.007232,0.005056,0.08176,0.116896,0.118656,29.8636,0.11312
+1226,30.6771,32.5977,31.2809,0.081856,0.878688,0.007552,0.004928,0.073504,0.116736,0.129056,29.8738,0.11472
+1227,30.7877,32.4805,32.174,0.08192,0.75904,0.006912,0.005504,0.068224,0.116736,0.118336,30.9048,0.112544
+1228,30.0012,33.332,31.1993,0.08192,0.780096,0.006336,0.006144,0.069536,0.116448,0.119072,29.907,0.112736
+1229,30.9927,32.2656,31.1987,0.083744,0.839904,0.01568,0.0048,0.068896,0.116512,0.119552,29.8355,0.114176
+1230,30.8806,32.3828,32.3055,0.082464,0.914592,0.007008,0.005696,0.068032,0.116992,0.119968,30.8775,0.113216
+1231,29.664,33.7109,32.3052,0.082592,0.913376,0.00752,0.004768,0.068992,0.116352,0.117696,30.8818,0.112128
+1232,29.4321,33.9766,31.316,0.081824,0.940128,0.007712,0.005632,0.068576,0.115744,0.121504,29.8617,0.113184
+1233,30.1496,33.168,32.3116,0.08224,0.907936,0.008064,0.004224,0.069632,0.114464,0.11696,30.8951,0.112992
+1234,30.5016,32.7852,31.1072,0.082048,0.767168,0.006976,0.005728,0.068,0.116736,0.118816,29.827,0.114688
+1235,30.9216,32.3398,32.1989,0.082016,0.770208,0.006592,0.005696,0.068064,0.116704,0.119904,30.9173,0.112416
+1236,29.8021,33.5547,32.346,0.082336,0.91136,0.007616,0.00496,0.069312,0.116352,0.131008,30.9107,0.112352
+1237,29.7605,33.6016,31.2809,0.081952,0.87856,0.007424,0.004864,0.068768,0.115552,0.118496,29.8908,0.1144
+1238,30.8026,32.4648,32.2898,0.081792,0.792736,0.007616,0.004896,0.069152,0.11632,0.118944,30.9847,0.113632
+1239,29.5101,33.8867,32.4035,0.08192,0.968704,0.006144,0.006144,0.06912,0.115232,0.118752,30.9245,0.112896
+1240,29.7778,33.582,31.3031,0.081184,0.905952,0.007456,0.004896,0.069568,0.116576,0.118912,29.886,0.112576
+1241,30.7471,32.5234,31.2463,0.081952,0.916704,0.006912,0.005376,0.068352,0.11584,0.117632,29.8201,0.113472
+1242,29.5135,33.8828,32.4273,0.08208,0.981024,0.024544,0.00592,0.071424,0.116352,0.118976,30.9132,0.113792
+1243,30.8248,32.4414,31.1863,0.082048,0.830688,0.006912,0.005344,0.068384,0.116736,0.118528,29.8428,0.114848
+1244,30.8471,32.418,31.2983,0.080768,0.931744,0.006144,0.006176,0.069376,0.116032,0.119392,29.8539,0.114816
+1245,30.7803,32.4883,32.2516,0.081824,0.802912,0.007584,0.004704,0.069472,0.11616,0.117312,30.9388,0.112896
+1246,30.146,33.1719,31.058,0.083968,0.757472,0.006432,0.006144,0.068896,0.115456,0.119968,29.7869,0.112736
+1247,30.7692,32.5,31.2616,0.082176,0.938208,0.00656,0.005696,0.068032,0.116736,0.118496,29.813,0.112672
+1248,30.7581,32.5117,32.3174,0.08192,0.940032,0.00784,0.005632,0.06848,0.115968,0.123392,30.8616,0.112608
+1249,29.8021,33.5547,32.3237,0.082016,0.916704,0.006944,0.005312,0.068416,0.116128,0.118976,30.8965,0.11264
+1250,30.0328,33.2969,31.1439,0.083584,0.760224,0.007808,0.006016,0.081888,0.123392,0.119936,29.8477,0.113344
+1251,30.7028,32.5703,32.2951,0.081536,0.915648,0.006528,0.005728,0.068,0.116416,0.124864,30.8636,0.112768
+1252,28.1381,35.5391,31.3563,0.08192,1.03344,0.006944,0.004096,0.069184,0.129184,0.118272,29.8006,0.11264
+1253,32.2256,31.0312,32.3568,0.08272,0.929728,0.023968,0.004768,0.071168,0.115232,0.118752,30.8838,0.126592
+1254,30.2565,33.0508,32.2385,0.082208,0.762624,0.007488,0.004928,0.06912,0.116128,0.117696,30.9656,0.112704
+1255,29.7882,33.5703,31.2624,0.082432,0.880832,0.007904,0.004384,0.069632,0.116736,0.118688,29.8675,0.114368
+1256,31.0341,32.2227,32.283,0.080288,0.847072,0.016928,0.006272,0.068704,0.119808,0.118784,30.9125,0.11264
+1257,29.7122,33.6562,32.2766,0.08192,0.82896,0.006624,0.005664,0.080288,0.116832,0.118752,30.9248,0.112768
+1258,30.1816,33.1328,31.1117,0.082464,0.763936,0.007872,0.005664,0.069408,0.11568,0.118784,29.8352,0.112704
+1259,30.9927,32.2656,31.2038,0.0824,0.859136,0.007072,0.004192,0.069632,0.11632,0.119072,29.8313,0.114688
+1260,30.9328,32.3281,32.2565,0.082176,0.901312,0.006144,0.006144,0.06944,0.114912,0.118784,30.8462,0.111392
+1261,29.924,33.418,31.2709,0.083008,0.90144,0.006784,0.005536,0.068192,0.116576,0.118944,29.8578,0.11264
+1262,30.81,32.457,31.1788,0.084,0.8192,0.007712,0.014656,0.068768,0.11568,0.120256,29.835,0.113504
+1263,30.6293,32.6484,32.2217,0.0824,0.786432,0.007808,0.00448,0.083968,0.116736,0.118784,30.9084,0.112608
+1264,30.2208,33.0898,32.1463,0.080576,0.762016,0.006144,0.006144,0.0688,0.11552,0.118816,30.8771,0.111136
+1265,29.3746,34.043,31.189,0.081952,0.881696,0.007072,0.005184,0.068576,0.114816,0.118656,29.7981,0.11296
+1266,31.5971,31.6484,32.2789,0.081728,0.868896,0.006208,0.006144,0.068768,0.115552,0.118752,30.9003,0.112608
+1267,29.8647,33.4844,32.3222,0.082208,0.940704,0.007296,0.004992,0.069472,0.115008,0.118624,30.8695,0.1144
+1268,29.945,33.3945,32.4035,0.08368,0.917792,0.007264,0.005056,0.068992,0.114528,0.118528,30.975,0.11264
+1269,29.7018,33.668,32.3932,0.083008,0.928736,0.007488,0.004768,0.069536,0.115808,0.133696,30.9375,0.11264
+1270,29.4931,33.9062,31.2027,0.083968,0.86832,0.006176,0.006144,0.06928,0.114944,0.118112,29.8217,0.114016
+1271,30.178,33.1367,31.2183,0.082528,0.87392,0.006912,0.005344,0.068352,0.116512,0.11904,29.8312,0.114528
+1272,31.2805,31.9688,32.1881,0.082048,0.763904,0.007264,0.005024,0.068992,0.11536,0.118688,30.9146,0.112224
+1273,29.8612,33.4883,31.2404,0.082208,0.859296,0.006976,0.005312,0.068416,0.121856,0.119264,29.8501,0.126976
+1274,30.8248,32.4414,31.0985,0.08384,0.753696,0.00624,0.006144,0.069152,0.116576,0.11872,29.8298,0.114304
+1275,30.9366,32.3242,33.1773,0.08192,0.80032,0.006592,0.005664,0.068064,0.116736,0.118752,31.8663,0.112896
+1276,29.1108,34.3516,31.1439,0.083552,0.833536,0.016288,0.00608,0.06816,0.124384,0.12128,29.778,0.11264
+1277,31.2538,31.9961,31.079,0.082336,0.766112,0.007488,0.0048,0.068832,0.115488,0.118784,29.802,0.113184
+1278,30.8471,32.418,32.3252,0.08144,0.911872,0.007488,0.004896,0.06928,0.116448,0.119136,30.9016,0.112992
+1279,29.5885,33.7969,32.4157,0.08112,0.99408,0.007264,0.005024,0.08192,0.116032,0.117472,30.8995,0.113376
+1280,30.2172,33.0938,31.1071,0.08192,0.767232,0.006912,0.005952,0.06896,0.117536,0.118528,29.8274,0.112672
+1281,30.888,32.375,32.2066,0.082048,0.84992,0.008064,0.004224,0.069632,0.11584,0.117664,30.8463,0.112864
+1282,29.8751,33.4727,31.2444,0.081664,0.905184,0.006496,0.005824,0.067936,0.116704,0.118784,29.8288,0.11296
+1283,29.9661,33.3711,32.3936,0.081984,0.975488,0.0072,0.005088,0.068896,0.116512,0.117696,30.9064,0.1144
+1284,30.4327,32.8594,32.1229,0.083328,0.772736,0.008064,0.005664,0.068192,0.131072,0.118784,30.8237,0.111296
+1285,30.1567,33.1602,31.0842,0.08192,0.815104,0.007264,0.005024,0.069056,0.115296,0.118752,29.7574,0.114304
+1286,31.004,32.2539,32.2252,0.083584,0.86464,0.006144,0.006144,0.068608,0.115744,0.118752,30.8488,0.1128
+1287,29.9485,33.3906,32.399,0.081632,0.932672,0.007328,0.00496,0.069056,0.11648,0.119072,30.954,0.11376
+1288,29.8577,33.4922,31.2757,0.082208,0.924096,0.007808,0.005664,0.068448,0.116128,0.119072,29.8397,0.112608
+1289,30.9515,32.3086,31.0832,0.080928,0.770048,0.007552,0.004704,0.069248,0.115104,0.118752,29.8025,0.114336
+1290,30.784,32.4844,32.2048,0.083168,0.854528,0.006432,0.006144,0.068768,0.115584,0.118752,30.8388,0.11264
+1291,29.9801,33.3555,31.1255,0.08192,0.801888,0.007072,0.005184,0.076736,0.116256,0.119264,29.8045,0.11264
+1292,30.9216,32.3398,31.2595,0.0808,0.892896,0.007264,0.005024,0.069312,0.11504,0.12016,29.8543,0.114688
+1293,31.2233,32.0273,32.1553,0.083744,0.769376,0.00704,0.005216,0.068512,0.132288,0.119616,30.8566,0.11296
+1294,29.8716,33.4766,31.341,0.0824,0.96784,0.007008,0.015392,0.078016,0.11552,0.11872,29.8414,0.114688
+1295,30.9815,32.2773,31.174,0.082976,0.869344,0.008064,0.004224,0.06944,0.116096,0.118656,29.7912,0.114016
+1296,31.0944,32.1602,32.22,0.082624,0.808832,0.0064,0.006144,0.068672,0.115648,0.118784,30.9002,0.112704
+1297,29.952,33.3867,32.2563,0.081408,0.887616,0.016384,0.006016,0.067712,0.116736,0.118816,30.8487,0.112928
+1298,29.816,33.5391,31.1334,0.080256,0.833536,0.007328,0.00496,0.06944,0.11488,0.118176,29.7908,0.113984
+1299,30.989,32.2695,32.2133,0.082016,0.808704,0.00688,0.005408,0.06832,0.116352,0.118624,30.8942,0.1128
+1300,29.9661,33.3711,31.2975,0.083136,0.906048,0.007936,0.005664,0.06832,0.115936,0.117536,29.8803,0.11264
+1301,30.7471,32.5234,32.3404,0.080928,0.912448,0.006912,0.005376,0.068352,0.116736,0.118784,30.918,0.112832
+1302,29.8473,33.5039,32.3328,0.082912,0.907264,0.0072,0.005088,0.068864,0.115456,0.118656,30.9137,0.113664
+1303,29.7191,33.6484,31.1939,0.081984,0.862688,0.006368,0.005824,0.067904,0.11616,0.118592,29.8217,0.112672
+1304,31.1853,32.0664,31.256,0.08192,0.93392,0.008096,0.005984,0.06896,0.115584,0.116832,29.8106,0.114144
+1305,30.959,32.3008,32.2265,0.08192,0.829344,0.00624,0.006016,0.069024,0.11648,0.119392,30.8842,0.113888
+1306,29.91,33.4336,31.3019,0.082208,0.939072,0.00704,0.005664,0.068128,0.116288,0.118848,29.852,0.11264
+1307,31.1701,32.082,31.1688,0.08016,0.774144,0.0072,0.005088,0.068896,0.115424,0.118784,29.8844,0.114688
+1308,30.9965,32.2617,32.1983,0.083392,0.762432,0.008032,0.005664,0.068224,0.116672,0.118848,30.9222,0.1128
+1309,29.8612,33.4883,31.216,0.082304,0.92336,0.006464,0.005888,0.06784,0.116544,0.11872,29.7814,0.113504
+1310,30.9179,32.3438,31.29,0.080544,0.945664,0.006624,0.006176,0.067712,0.116576,0.118784,29.835,0.112928
+1311,30.1994,33.1133,32.3101,0.08272,0.93568,0.0064,0.006144,0.069056,0.115072,0.116192,30.8661,0.112672
+1312,30.7028,32.5703,32.1843,0.08192,0.806944,0.007648,0.005664,0.068096,0.116448,0.119264,30.8657,0.112672
+1313,29.8682,33.4805,31.2416,0.08192,0.909312,0.007424,0.004864,0.069216,0.115104,0.118784,29.8222,0.112704
+1314,31.0303,32.2266,32.219,0.0816,0.806816,0.006944,0.005792,0.079776,0.1168,0.117152,30.892,0.112096
+1315,30.1318,33.1875,31.0986,0.0824,0.767328,0.006816,0.005504,0.068224,0.12496,0.11856,29.8109,0.11392
+1316,30.0611,33.2656,32.3133,0.083104,0.909184,0.007136,0.005792,0.082112,0.116896,0.118656,30.8778,0.112672
+1317,30.666,32.6094,32.1862,0.08256,0.761088,0.006912,0.005376,0.068352,0.11616,0.1192,30.9024,0.124128
+1318,30.0611,33.2656,31.0784,0.081632,0.795936,0.007168,0.005632,0.068096,0.116096,0.118976,29.7722,0.112704
+1319,30.8657,32.3984,31.1924,0.082944,0.86912,0.0064,0.005888,0.06784,0.116416,0.118432,29.8114,0.114016
+1320,30.0012,33.332,32.2458,0.08192,0.849888,0.006176,0.006176,0.071616,0.116768,0.118464,30.8812,0.113536
+1321,30.4183,32.875,31.2136,0.083968,0.851968,0.017472,0.005056,0.069056,0.11632,0.119008,29.8381,0.11264
+1322,30.4146,32.8789,31.3127,0.082528,1.02013,0.00752,0.015008,0.069408,0.114912,0.118848,29.7711,0.11328
+1323,31.0303,32.2266,31.2068,0.08192,0.906528,0.00688,0.005632,0.068128,0.116096,0.118656,29.7889,0.114112
+1324,30.6183,32.6602,32.4577,0.08288,1.0281,0.006144,0.006176,0.073696,0.116064,0.118848,30.9121,0.113664
+1325,28.4888,35.1016,31.2388,0.082528,0.92496,0.00688,0.00544,0.068288,0.116416,0.118592,29.803,0.11264
+1326,31.5776,31.668,31.4532,0.083968,1.09069,0.00704,0.005888,0.06784,0.1168,0.118752,29.8496,0.11264
+1327,31.2997,31.9492,32.2339,0.08032,0.816544,0.006752,0.005536,0.068224,0.116704,0.118784,30.908,0.11296
+1328,30.0787,33.2461,32.2064,0.081952,0.790496,0.008064,0.005696,0.06816,0.116384,0.11904,30.9024,0.114208
+1329,29.9836,33.3516,31.0915,0.082656,0.78848,0.006144,0.006144,0.068832,0.116544,0.119296,29.79,0.113344
+1330,30.5562,32.7266,32.3297,0.083008,0.916416,0.007296,0.006016,0.068608,0.11616,0.117312,30.9023,0.11264
+1331,29.9731,33.3633,31.2166,0.082944,0.914976,0.006624,0.005664,0.068064,0.116256,0.119104,29.7899,0.113152
+1332,30.862,32.4023,32.3242,0.08256,0.923936,0.007712,0.005632,0.068576,0.116,0.118816,30.8866,0.114336
+1333,29.816,33.5391,32.3076,0.082336,0.902432,0.00688,0.005408,0.06832,0.116736,0.118176,30.8959,0.111392
+1334,29.0777,34.3906,31.2502,0.082272,0.939808,0.006336,0.005696,0.072128,0.116608,0.118656,29.7946,0.114144
+1335,30.9965,32.2617,31.0764,0.081888,0.805472,0.006144,0.006144,0.067648,0.116672,0.118784,29.7595,0.114144
+1336,30.9478,32.3125,33.17,0.082528,0.78848,0.00736,0.004928,0.069632,0.11472,0.118752,31.8708,0.112768
+1337,29.3746,34.043,31.0573,0.08192,0.75744,0.006496,0.005792,0.067904,0.11584,0.119232,29.7899,0.112736
+1338,30.9627,32.2969,31.1358,0.081184,0.809696,0.016384,0.006144,0.07168,0.129024,0.12016,29.7882,0.11328
+1339,31.1663,32.0859,32.1806,0.082432,0.809376,0.007168,0.00512,0.069408,0.1168,0.118592,30.8588,0.112896
+1340,30.1816,33.1328,31.0791,0.0816,0.766368,0.00672,0.005888,0.06784,0.11616,0.119136,29.8027,0.11264
+1341,30.6844,32.5898,31.1524,0.081632,0.874912,0.006336,0.005984,0.068896,0.117152,0.118848,29.766,0.11264
+1342,30.9216,32.3398,32.3072,0.081952,0.917504,0.007264,0.005024,0.069472,0.116896,0.118784,30.8775,0.112832
+1343,29.8473,33.5039,32.2482,0.080288,0.915264,0.006304,0.005984,0.068928,0.11536,0.11856,30.8249,0.11264
+1344,29.8891,33.457,31.2727,0.081952,0.922912,0.006848,0.005952,0.06896,0.115552,0.118784,29.8393,0.112416
+1345,29.8751,33.4727,32.3296,0.082368,0.9152,0.0064,0.005888,0.06784,0.116736,0.122624,30.9001,0.112512
+1346,30.6257,32.6523,31.4634,0.083968,0.818432,0.006912,0.005888,0.069216,0.1152,0.11824,30.1329,0.11264
+1347,30.6844,32.5898,31.6273,0.083968,0.98304,0.015424,0.005056,0.07168,0.116736,0.417792,29.8209,0.11264
+1348,30.8769,32.3867,32.1404,0.082048,0.765824,0.008128,0.005664,0.068128,0.116768,0.118144,30.8633,0.11248
+1349,30.0717,33.2539,31.0999,0.08112,0.779712,0.006496,0.005792,0.067936,0.116832,0.118688,29.8086,0.11472
+1350,30.8471,32.418,32.1802,0.082176,0.806112,0.006688,0.006016,0.067712,0.116448,0.118848,30.8635,0.112736
+1351,30.1035,33.2188,32.1639,0.08192,0.792576,0.007872,0.005536,0.06832,0.116448,0.118912,30.8596,0.112672
+1352,28.8613,34.6484,31.1533,0.081088,0.817472,0.006656,0.006144,0.069216,0.115136,0.120064,29.8237,0.113856
+1353,30.5562,32.7266,32.2985,0.081408,0.883232,0.008032,0.004224,0.069536,0.116832,0.118784,30.904,0.112448
+1354,30.2101,33.1016,32.1368,0.081728,0.752352,0.00752,0.004928,0.06896,0.115232,0.118112,30.8742,0.113728
+1355,29.4625,33.9414,31.1173,0.08192,0.785728,0.006848,0.00544,0.068288,0.116064,0.116992,29.8228,0.113248
+1356,31.5387,31.707,31.247,0.082624,0.909312,0.007968,0.01456,0.069088,0.115264,0.122624,29.813,0.11264
+1357,30.8397,32.4258,32.2994,0.082176,0.914624,0.007104,0.005184,0.068544,0.116224,0.11728,30.8756,0.11264
+1358,30.1851,33.1289,31.1109,0.083904,0.793856,0.006976,0.005728,0.068,0.116512,0.118784,29.8039,0.113216
+1359,30.9366,32.3242,31.3016,0.081568,0.954656,0.006208,0.00608,0.067648,0.118784,0.118784,29.8332,0.114688
+1360,30.8322,32.4336,32.3228,0.083008,0.919712,0.006944,0.005792,0.067936,0.116736,0.120064,30.8906,0.112
+1361,29.6812,33.6914,32.3263,0.081984,0.940672,0.007616,0.004672,0.069344,0.115008,0.118752,30.8756,0.11264
+1362,30.0152,33.3164,31.2267,0.082944,0.880192,0.00656,0.006144,0.068992,0.116512,0.1176,29.8332,0.114496
+1363,30.6807,32.5938,32.4361,0.082048,1.01898,0.006944,0.005408,0.06832,0.116256,0.118944,30.9057,0.113504
+1364,29.7917,33.5664,31.2523,0.082016,0.941312,0.006912,0.005856,0.067872,0.116736,0.118784,29.8004,0.11232
+1365,31.0944,32.1602,31.8626,0.083232,0.768896,0.007648,0.004608,0.069088,0.116544,0.118816,30.5794,0.114336
+1366,30.0434,33.2852,32.278,0.08384,0.915584,0.008064,0.005664,0.069344,0.114912,0.117408,30.8501,0.113024
+1367,29.8473,33.5039,31.2954,0.081984,0.958464,0.007616,0.004672,0.067616,0.116704,0.118784,29.825,0.11456
+1368,31.0906,32.1641,32.1529,0.083776,0.74976,0.00784,0.005664,0.068448,0.128992,0.118784,30.8775,0.112128
+1369,29.7778,33.582,32.2078,0.092896,0.784672,0.007584,0.004704,0.06944,0.11632,0.11872,30.9009,0.112608
+1370,29.8751,33.4727,31.15,0.083392,0.850496,0.006144,0.006144,0.069344,0.115008,0.11856,29.7877,0.113184
+1371,30.5089,32.7773,31.2139,0.08192,0.848192,0.007712,0.014784,0.069664,0.116736,0.118816,29.8414,0.114656
+1372,30.6074,32.6719,32.3609,0.0824,0.894976,0.007264,0.005024,0.069632,0.118784,0.118784,30.9412,0.12288
+1373,30.2708,33.0352,31.076,0.08192,0.782368,0.007456,0.0048,0.069216,0.115104,0.118784,29.782,0.114336
+1374,31.0265,32.2305,31.0727,0.082272,0.822688,0.006816,0.005472,0.068288,0.116704,0.118784,29.7381,0.113568
+1375,31.0906,32.1641,32.1681,0.08208,0.798752,0.007488,0.004768,0.069344,0.116832,0.118048,30.8574,0.11344
+1376,30.0364,33.293,32.1654,0.083168,0.78624,0.007072,0.005664,0.068128,0.11664,0.118432,30.8679,0.112128
+1377,29.0381,34.4375,31.1329,0.083968,0.827392,0.007456,0.004832,0.06896,0.116416,0.11776,29.7922,0.113888
+1378,31.6949,31.5508,32.2735,0.083392,0.891488,0.008,0.005664,0.068224,0.116352,0.120352,30.8674,0.11264
+1379,30.2529,33.0547,31.1128,0.083392,0.781024,0.008,0.004256,0.068928,0.116992,0.119008,29.8184,0.1128
+1380,31.1739,32.0781,32.1119,0.083264,0.77488,0.007552,0.004896,0.069472,0.116128,0.117376,30.8257,0.112576
+1381,30.2279,33.082,32.2038,0.08368,0.767552,0.00688,0.005376,0.068352,0.116224,0.117248,30.9248,0.113664
+1382,30.0328,33.2969,31.1398,0.083008,0.824256,0.006144,0.006144,0.069344,0.114976,0.118784,29.8036,0.113632
+1383,31.0529,32.2031,31.1852,0.082272,0.834592,0.007072,0.020544,0.069632,0.116,0.118752,29.8238,0.112608
+1384,31.0793,32.1758,32.2109,0.083552,0.800352,0.006976,0.005792,0.069472,0.1152,0.118784,30.8982,0.11264
+1385,30.1638,33.1523,31.0886,0.084032,0.775712,0.00656,0.005728,0.068,0.11616,0.117312,29.8019,0.11328
+1386,30.9403,32.3203,31.1087,0.083456,0.805376,0.007424,0.004896,0.068832,0.115456,0.12016,29.7904,0.112704
+1387,31.0567,32.1992,32.2669,0.080192,0.83552,0.006528,0.00576,0.06912,0.115584,0.118816,30.9227,0.11264
+1388,29.8612,33.4883,32.1794,0.083712,0.8008,0.006368,0.006144,0.068864,0.11536,0.11888,30.8669,0.112352
+1389,30.2457,33.0625,31.0341,0.080512,0.771712,0.006656,0.005632,0.068096,0.116736,0.118784,29.7513,0.11472
+1390,31.0153,32.2422,32.1876,0.08192,0.816128,0.00704,0.005664,0.076384,0.116736,0.118816,30.853,0.111904
+1391,30.2994,33.0039,31.0825,0.079872,0.761088,0.006912,0.005344,0.068352,0.115936,0.1176,29.814,0.113312
+1392,30.9927,32.2656,32.1597,0.08192,0.806944,0.007296,0.004992,0.069152,0.115168,0.118752,30.8429,0.11264
+1393,30.0399,33.2891,32.192,0.08192,0.806912,0.007552,0.004736,0.069568,0.116192,0.11888,30.8721,0.114208
+1394,29.8542,33.4961,31.1794,0.081696,0.897056,0.006976,0.00576,0.067968,0.116384,0.118176,29.7727,0.112672
+1395,30.7988,32.4688,31.0701,0.083168,0.781088,0.007808,0.00448,0.069056,0.116576,0.118688,29.7759,0.113344
+1396,30.9216,32.3398,32.2621,0.08192,0.876544,0.007232,0.005056,0.069152,0.12336,0.129056,30.8572,0.11264
+1397,29.6812,33.6914,31.3234,0.08208,0.947936,0.006432,0.005856,0.069248,0.1256,0.118784,29.8537,0.113728
+1398,31.0906,32.1641,31.0784,0.08192,0.761472,0.006528,0.006176,0.068928,0.11536,0.118784,29.806,0.11328
+1399,30.9253,32.3359,32.1987,0.081984,0.86432,0.0072,0.005088,0.067584,0.116768,0.118752,30.824,0.113024
+1400,29.9977,33.3359,32.2458,0.08192,0.888832,0.007584,0.004896,0.069472,0.116576,0.118368,30.845,0.113152
+1401,30.0505,33.2773,31.1235,0.08144,0.7968,0.006496,0.005792,0.067936,0.116736,0.11872,29.8169,0.112672
+1402,30.622,32.6562,32.3053,0.081248,0.91216,0.007808,0.00448,0.069632,0.120832,0.118784,30.8777,0.112672
+1403,29.6537,33.7227,31.2689,0.08208,0.907232,0.007872,0.004416,0.069632,0.122048,0.117568,29.8447,0.113344
+1404,31.0604,32.1953,32.1803,0.08192,0.79168,0.00704,0.005696,0.069088,0.11536,0.122496,30.8735,0.113472
+1405,29.5612,33.8281,32.2639,0.083712,0.829632,0.006208,0.006048,0.0688,0.115648,0.130976,30.9105,0.112384
+1406,29.6193,33.7617,32.2929,0.083072,0.934784,0.007712,0.005664,0.068544,0.11648,0.1184,30.8456,0.112672
+1407,30.6037,32.6758,31.1707,0.082048,0.784384,0.007424,0.004864,0.06896,0.11536,0.118784,29.8752,0.113664
+1408,31.068,32.1875,32.2089,0.083904,0.79168,0.007104,0.005664,0.068096,0.118208,0.118976,30.9026,0.112672
+1409,30.0964,33.2266,32.2143,0.08192,0.794624,0.007296,0.004992,0.06912,0.115232,0.118752,30.9002,0.122144
+1410,30.1531,33.1641,31.1055,0.081728,0.76768,0.007104,0.005728,0.068064,0.11648,0.11824,29.8278,0.11264
+1411,30.9553,32.3047,32.1627,0.08192,0.777184,0.007872,0.00544,0.068352,0.116864,0.118016,30.8742,0.1128
+1412,30.1602,33.1562,32.1505,0.08256,0.794944,0.007744,0.005696,0.06848,0.116384,0.11904,30.843,0.112672
+1413,29.9906,33.3438,31.1478,0.08192,0.858496,0.006336,0.005984,0.068768,0.115584,0.118784,29.779,0.11296
+1414,30.7286,32.543,31.2132,0.08192,0.908768,0.006688,0.006144,0.069024,0.115424,0.118656,29.7923,0.114304
+1415,31.0416,32.2148,32.329,0.083584,0.907648,0.007904,0.004384,0.069408,0.11696,0.118464,30.9067,0.113952
+1416,29.3645,34.0547,31.2177,0.083136,0.887456,0.006368,0.016064,0.069824,0.11616,0.127616,29.7916,0.119424
+1417,31.4883,31.7578,31.263,0.081792,0.887168,0.00752,0.004768,0.067584,0.116736,0.118592,29.8641,0.11472
+1418,30.9253,32.3359,32.3092,0.083968,0.91088,0.006624,0.005664,0.068064,0.115744,0.117312,30.8884,0.11264
+1419,29.945,33.3945,32.3102,0.0808,0.912992,0.00656,0.005696,0.068032,0.116768,0.119904,30.8867,0.112704
+1420,29.952,33.3867,31.2848,0.083968,0.945856,0.006464,0.006048,0.067872,0.115584,0.117696,29.8289,0.112416
+1421,30.9965,32.2617,32.1352,0.081824,0.775968,0.006464,0.005792,0.067936,0.116704,0.118816,30.8491,0.112608
+1422,29.9661,33.3711,31.1604,0.081952,0.837056,0.00672,0.006048,0.068704,0.115584,0.118912,29.8127,0.11264
+1423,30.7729,32.4961,32.3169,0.083904,0.903232,0.007488,0.0048,0.06896,0.117056,0.118304,30.899,0.114176
+1424,29.9555,33.3828,32.2052,0.082336,0.805408,0.007424,0.004896,0.076768,0.115264,0.118848,30.8699,0.124416
+1425,30.2994,33.0039,31.1501,0.0816,0.784544,0.006368,0.006016,0.067648,0.11648,0.11904,29.8552,0.113152
+1426,31.068,32.1875,31.1312,0.083328,0.782976,0.00752,0.004896,0.069056,0.115264,0.120576,29.8333,0.114272
+1427,31.1663,32.0859,32.101,0.08048,0.759776,0.006176,0.00608,0.06768,0.116704,0.118784,30.8326,0.11264
+1428,30.1673,33.1484,31.0995,0.082496,0.78032,0.007616,0.004896,0.06896,0.116384,0.11904,29.8066,0.113152
+1429,30.9665,32.293,31.1328,0.083328,0.809056,0.006688,0.0056,0.068128,0.116736,0.118656,29.8082,0.116448
+1430,31.1057,32.1484,32.1743,0.0824,0.776064,0.006496,0.005696,0.068032,0.116352,0.119136,30.8859,0.114208
+1431,29.5646,33.8242,32.2294,0.083648,0.843744,0.006496,0.00576,0.069088,0.115616,0.120576,30.8732,0.111264
+1432,30.3353,32.9648,31.1499,0.08192,0.815104,0.008,0.005664,0.068352,0.11664,0.118784,29.822,0.113344
+1433,31.0303,32.2266,32.1408,0.083008,0.781344,0.008096,0.005504,0.068224,0.116736,0.118784,30.8464,0.112704
+1434,29.931,33.4102,31.0846,0.080736,0.792384,0.007648,0.005664,0.068448,0.116,0.117632,29.7833,0.1128
+1435,30.5818,32.6992,32.1886,0.080544,0.835584,0.007936,0.004352,0.069632,0.116096,0.119104,30.8431,0.112256
+1436,30.5198,32.7656,32.1762,0.08192,0.782144,0.006432,0.006144,0.06896,0.11536,0.117952,30.8842,0.113056
+1437,29.4591,33.9453,31.2381,0.08224,0.884736,0.007776,0.014752,0.069152,0.115168,0.119904,29.8311,0.113248
+1438,31.0341,32.2227,31.1372,0.083136,0.811712,0.006272,0.006144,0.06912,0.115392,0.118592,29.8144,0.112512
+1439,30.6807,32.5938,32.2075,0.082112,0.837312,0.006976,0.005664,0.068032,0.11664,0.11856,30.8608,0.111456
+1440,29.7571,33.6055,31.1549,0.082688,0.884736,0.007168,0.00512,0.068928,0.117088,0.118912,29.7577,0.11264
+1441,31.4188,31.8281,31.2197,0.08192,0.882688,0.007744,0.004544,0.069472,0.114912,0.119936,29.8238,0.114688
+1442,30.9179,32.3438,32.2295,0.081728,0.853888,0.00656,0.006144,0.069056,0.115264,0.120064,30.8641,0.112672
+1443,29.9065,33.4375,32.2355,0.08192,0.855584,0.006688,0.00608,0.069152,0.117184,0.118816,30.8671,0.112992
+1444,30.1354,33.1836,31.0351,0.082176,0.751104,0.006656,0.005696,0.068032,0.114688,0.12016,29.7724,0.114144
+1445,30.736,32.5352,32.2701,0.082112,0.856352,0.007168,0.00512,0.069376,0.116576,0.119008,30.9004,0.113984
+1446,30.1106,33.2109,31.0656,0.083328,0.76864,0.007264,0.005024,0.06896,0.11536,0.120064,29.7847,0.11232
+1447,31.0265,32.2305,32.1905,0.083968,0.786432,0.007968,0.00432,0.069632,0.116448,0.12912,30.8799,0.11264
+1448,29.91,33.4336,32.2588,0.082368,0.874848,0.007328,0.00496,0.069632,0.116064,0.119456,30.8716,0.11264
+1449,30.0752,33.25,31.1051,0.081952,0.823104,0.0064,0.006048,0.069152,0.115168,0.119936,29.7706,0.112672
+1450,31.1171,32.1367,31.1245,0.083872,0.819328,0.007168,0.005088,0.069152,0.12336,0.118176,29.7806,0.117792
+1451,30.9291,32.332,32.9462,0.08368,0.90992,0.007904,0.004384,0.070752,0.11472,0.117632,31.5228,0.114432
+1452,29.449,33.957,31.1485,0.082368,0.830688,0.006944,0.005824,0.067904,0.116768,0.118464,29.8066,0.112896
+1453,30.8397,32.4258,31.1898,0.082784,0.892608,0.006528,0.00576,0.068,0.116704,0.118784,29.7856,0.112992
+1454,30.9927,32.2656,32.1534,0.082336,0.794624,0.007488,0.004896,0.069536,0.114688,0.118816,30.8469,0.114112
+1455,30.0399,33.2891,31.1037,0.082592,0.786432,0.007776,0.004512,0.069632,0.115872,0.116672,29.807,0.113184
+1456,30.8955,32.3672,31.1613,0.082656,0.903456,0.007264,0.005024,0.069472,0.115936,0.118816,29.746,0.112736
+1457,30.9029,32.3594,32.2725,0.082176,0.888832,0.007168,0.00512,0.069216,0.116576,0.118784,30.8721,0.112544
+1458,30.0082,33.3242,32.1572,0.082496,0.794624,0.00768,0.004608,0.069248,0.115072,0.118816,30.851,0.113664
+1459,30.0223,33.3086,31.1255,0.083968,0.817152,0.00784,0.004448,0.069568,0.116544,0.118368,29.7942,0.113376
+1460,30.974,32.2852,32.196,0.083008,0.836576,0.007584,0.004896,0.069408,0.116032,0.119136,30.8465,0.112928
+1461,30.0082,33.3242,31.204,0.080576,0.892928,0.00784,0.004448,0.069536,0.116192,0.117408,29.802,0.113088
+1462,30.784,32.4844,32.1618,0.083968,0.849792,0.006272,0.006176,0.068608,0.115584,0.116832,30.8019,0.11264
+1463,30.1283,33.1914,32.2559,0.08192,0.899072,0.00752,0.004768,0.068736,0.115584,0.118784,30.8467,0.112832
+1464,29.945,33.3945,31.1357,0.08192,0.823296,0.007232,0.005056,0.069664,0.116384,0.118368,29.8012,0.112672
+1465,30.7508,32.5195,31.2485,0.081824,0.876512,0.006272,0.016096,0.078144,0.115808,0.11872,29.8421,0.113056
+1466,30.7544,32.5156,33.3651,0.083456,1.00938,0.006944,0.005376,0.070176,0.112864,0.130368,31.8328,0.11376
+1467,29.0381,34.4375,31.0782,0.083904,0.79264,0.007392,0.004512,0.067968,0.116512,0.118624,29.7722,0.114464
+1468,31.0755,32.1797,31.0788,0.081408,0.775008,0.00752,0.004768,0.069408,0.114912,0.118784,29.7943,0.112672
+1469,30.8063,32.4609,33.3855,0.079872,0.960512,0.006144,0.02048,0.079168,0.115392,0.118784,31.8929,0.112224
+1470,29.3713,34.0469,31.0773,0.080928,0.778208,0.007808,0.00448,0.069632,0.115776,0.117696,29.7892,0.113568
+1471,31.1625,32.0898,31.1114,0.082496,0.788832,0.007936,0.004352,0.069504,0.116896,0.118752,29.8082,0.1144
+1472,31.0115,32.2461,31.0832,0.082016,0.786624,0.006592,0.006144,0.068704,0.115616,0.118784,29.7861,0.11264
+1473,30.6477,32.6289,32.3013,0.08336,0.94704,0.00784,0.014016,0.072224,0.116384,0.117248,30.8306,0.11264
+1474,30.107,33.2148,31.1152,0.083712,0.81664,0.006848,0.00592,0.067808,0.116736,0.120032,29.7849,0.11264
+1475,31.1398,32.1133,31.0548,0.082016,0.787296,0.007392,0.004864,0.069056,0.11536,0.118688,29.7574,0.11264
+1476,31.1587,32.0938,32.1144,0.082976,0.78048,0.006944,0.005504,0.06816,0.114784,0.118752,30.8238,0.11296
+1477,30.2243,33.0859,32.0844,0.082112,0.780128,0.006944,0.005312,0.068416,0.116736,0.118688,30.7918,0.114336
+1478,30.0823,33.2422,31.1442,0.082208,0.814976,0.006272,0.006144,0.069312,0.115008,0.126976,29.8107,0.11264
+1479,31.1929,32.0586,32.1887,0.08064,0.804512,0.016416,0.005632,0.068416,0.116704,0.118816,30.8654,0.11216
+1480,29.9906,33.3438,31.1628,0.082304,0.866304,0.008032,0.005664,0.068224,0.115808,0.118752,29.785,0.112672
+1481,29.688,33.6836,32.3216,0.087872,0.956832,0.007584,0.004704,0.068704,0.11728,0.118336,30.8474,0.112896
+1482,30.8063,32.4609,32.3213,0.083488,0.889344,0.007808,0.00448,0.069344,0.114976,0.118784,30.9186,0.114432
+1483,29.9205,33.4219,31.1808,0.08192,0.821248,0.007808,0.00448,0.06944,0.116928,0.11872,29.8476,0.11264
+1484,30.8582,32.4062,32.1366,0.080096,0.776192,0.007488,0.004896,0.069312,0.114912,0.12,30.8499,0.113888
+1485,30.0293,33.3008,32.2089,0.083328,0.848512,0.007872,0.004416,0.069216,0.115264,0.118656,30.849,0.112672
+1486,30.0681,33.2578,31.1576,0.08192,0.827008,0.006528,0.02048,0.068992,0.115328,0.118784,29.8045,0.113984
+1487,31.2309,32.0195,31.0591,0.081952,0.76592,0.007232,0.005056,0.069216,0.115104,0.118784,29.7818,0.114048
+1488,31.0868,32.168,32.1289,0.081952,0.782304,0.007776,0.005664,0.06848,0.116224,0.118272,30.8355,0.1128
+1489,29.945,33.3945,31.2069,0.08608,0.9216,0.008064,0.014464,0.07904,0.116672,0.117632,29.7485,0.114848
+1490,31.2424,32.0078,31.0913,0.08256,0.77824,0.00752,0.004768,0.069376,0.115968,0.11776,29.802,0.113088
+1491,31.2119,32.0391,32.1577,0.083648,0.769472,0.00704,0.005184,0.068544,0.114688,0.118784,30.8777,0.112672
+1492,29.8542,33.4961,31.082,0.08176,0.80912,0.007712,0.004576,0.069632,0.116736,0.118368,29.7592,0.114848
+1493,31.083,32.1719,31.0918,0.084,0.804384,0.006592,0.005696,0.068032,0.115936,0.118656,29.7759,0.112608
+1494,30.989,32.2695,32.1999,0.084,0.82656,0.006944,0.005792,0.067936,0.116736,0.118816,30.8592,0.11392
+1495,30.1247,33.1953,32.1335,0.082304,0.790528,0.008032,0.004256,0.069632,0.116736,0.118816,30.8304,0.112768
+1496,30.2386,33.0703,31.1016,0.08256,0.7696,0.006592,0.007168,0.068352,0.114944,0.118784,29.8209,0.11264
+1497,30.862,32.4023,32.1987,0.081984,0.826976,0.0168,0.00576,0.067968,0.116736,0.118656,30.8523,0.111584
+1498,29.9485,33.3906,31.1831,0.082208,0.886752,0.007616,0.005888,0.06944,0.115712,0.118784,29.7841,0.11264
+1499,30.8174,32.4492,32.2826,0.084,0.88176,0.00704,0.005248,0.06848,0.116736,0.118784,30.8879,0.11264
+1500,29.9731,33.3633,32.254,0.083968,0.927744,0.007264,0.005056,0.069376,0.11616,0.119584,30.8101,0.11472
+1501,29.7294,33.6367,31.2124,0.080736,0.890496,0.006528,0.005792,0.068096,0.116512,0.118208,29.8134,0.11264
+1502,31.136,32.1172,31.151,0.082272,0.838208,0.00752,0.004768,0.068992,0.11536,0.118752,29.8025,0.11264
+1503,30.9328,32.3281,32.286,0.082016,0.879584,0.007072,0.005216,0.068608,0.115776,0.1192,30.8946,0.113856
+1504,29.9275,33.4141,31.1861,0.081952,0.839648,0.006144,0.006144,0.068768,0.115584,0.118784,29.8352,0.113856
+1505,30.9515,32.3086,31.2281,0.083776,0.879072,0.007392,0.004896,0.069184,0.116608,0.127552,29.8261,0.113536
+1506,30.9328,32.3281,32.221,0.08192,0.864256,0.007552,0.004736,0.069024,0.115328,0.118752,30.8468,0.112576
+1507,30.0258,33.3047,32.2519,0.08192,0.845472,0.006496,0.005856,0.068928,0.11568,0.131072,30.8829,0.1136
+1508,30.0364,33.293,31.1135,0.08224,0.790464,0.006208,0.006144,0.069504,0.114848,0.118752,29.8127,0.11264
+1509,30.9665,32.293,32.0922,0.08192,0.796672,0.007168,0.00512,0.069024,0.115072,0.11696,30.7876,0.11264
+1510,30.1602,33.1562,31.0915,0.082656,0.806208,0.006848,0.005952,0.067776,0.116736,0.118784,29.7735,0.112992
+1511,31.1967,32.0547,32.1843,0.083296,0.805536,0.008192,0.005344,0.068384,0.116384,0.118176,30.8664,0.11264
+1512,30.0823,33.2422,32.1475,0.081216,0.80352,0.007584,0.004896,0.06944,0.11632,0.119008,30.8328,0.11264
+1513,29.6777,33.6953,31.0887,0.083936,0.779872,0.006592,0.005856,0.067872,0.116736,0.118048,29.7969,0.112864
+1514,31.5815,31.6641,32.1372,0.082336,0.788,0.006688,0.005632,0.068096,0.116384,0.1184,30.8375,0.114144
+1515,30.1035,33.2188,31.1132,0.081952,0.781408,0.007072,0.005184,0.068608,0.116288,0.117344,29.8226,0.1128
+1516,30.9515,32.3086,31.1828,0.083968,0.892928,0.006144,0.006144,0.067584,0.114688,0.118656,29.7795,0.113216
+1517,30.7471,32.5234,32.2663,0.08208,0.87424,0.0064,0.005984,0.067744,0.116768,0.118752,30.8811,0.113248
+1518,30.0575,33.2695,32.1637,0.081984,0.772544,0.007488,0.004896,0.069536,0.114688,0.118784,30.881,0.112864
+1519,29.9135,33.4297,31.2045,0.08192,0.88224,0.006592,0.005696,0.068032,0.116672,0.118592,29.8109,0.113856
+1520,30.9029,32.3594,32.2396,0.083712,0.870656,0.008032,0.005664,0.068224,0.116096,0.118656,30.8498,0.118784
+1521,29.9871,33.3477,31.2364,0.0816,0.932128,0.006464,0.005824,0.069984,0.128512,0.119168,29.7792,0.113536
+1522,31.0078,32.25,32.2092,0.082336,0.82736,0.007552,0.004896,0.075488,0.116416,0.118336,30.8643,0.112608
+1523,28.777,34.75,32.1635,0.081728,0.782528,0.021728,0.004896,0.068896,0.115424,0.118976,30.8567,0.11264
+1524,30.9366,32.3242,31.148,0.083872,0.860288,0.00784,0.016224,0.069952,0.116064,0.117568,29.7634,0.112832
+1525,31.0604,32.1953,31.1357,0.081952,0.800256,0.006624,0.005696,0.073952,0.121056,0.118784,29.8127,0.114688
+1526,30.6,32.6797,32.1233,0.08224,0.784448,0.006688,0.005984,0.06896,0.115424,0.118784,30.8263,0.114464
+1527,30.1425,33.1758,31.1255,0.081856,0.801952,0.007104,0.00528,0.068416,0.120352,0.119296,29.8084,0.1128
+1528,29.9836,33.3516,31.2113,0.082336,0.911712,0.008064,0.005632,0.068224,0.116224,0.117248,29.7882,0.113728
+1529,31.361,31.8867,32.1468,0.083712,0.776448,0.007456,0.004832,0.06864,0.11568,0.118272,30.8577,0.114016
+1530,29.8195,33.5352,32.153,0.08176,0.796832,0.007808,0.005664,0.068448,0.116096,0.117472,30.8469,0.112
+1531,30.2994,33.0039,31.0721,0.08192,0.772096,0.007808,0.00448,0.069248,0.11696,0.118592,29.7865,0.114528
+1532,30.9141,32.3477,32.2253,0.083264,0.887488,0.007456,0.004928,0.069312,0.11664,0.119104,30.8245,0.11264
+1533,30.054,33.2734,31.0813,0.080736,0.784352,0.007648,0.00464,0.069216,0.116352,0.118784,29.7869,0.11264
+1534,31.0341,32.2227,32.2681,0.083776,0.891136,0.007936,0.005664,0.06832,0.116096,0.117376,30.8654,0.112384
+1535,29.6605,33.7148,32.1413,0.08192,0.799904,0.007008,0.00528,0.068448,0.116576,0.11824,30.8292,0.114656
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..7e4b888
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,35.4503,28.2349,27.0418,0.0702089,0.933871,0.00759313,0.00533569,0.0311547,0.100045,0.103569,25.6753,0.114696
+max_1024,40.7838,32.8359,29.5164,0.090144,2.57638,0.062368,0.018432,0.048736,0.119872,0.41984,27.8259,0.403392
+min_1024,30.4544,24.5195,26.1983,0.066912,0.820384,0.006144,0.004064,0.029184,0.097216,0.098784,24.9236,0.110688
+512,36.7843,27.1855,27.8098,0.067584,0.923648,0.007776,0.004512,0.03072,0.098304,0.101792,26.4621,0.113376
+513,34.5502,28.9434,27.9475,0.069792,1.04893,0.007776,0.004512,0.031872,0.0992,0.101952,26.4704,0.113088
+514,34.2773,29.1738,26.614,0.069664,0.9104,0.00704,0.004128,0.03072,0.099904,0.108992,25.2702,0.112864
+515,36.2093,27.6172,27.8244,0.069248,0.912,0.007968,0.005536,0.029504,0.1,0.100512,26.487,0.112608
+516,34.5677,28.9287,26.5564,0.070752,0.925856,0.006912,0.005568,0.029248,0.100192,0.102016,25.2033,0.112608
+517,36.2928,27.5537,26.6285,0.069536,0.901344,0.006816,0.005888,0.030208,0.099072,0.108544,25.2928,0.114304
+518,35.8418,27.9004,27.9122,0.071072,0.970848,0.006656,0.005184,0.029632,0.100352,0.100352,26.5155,0.11264
+519,33.5474,29.8086,26.7182,0.069472,0.984,0.007776,0.004512,0.03072,0.10016,0.100544,25.3067,0.114368
+520,36.427,27.4521,26.7497,0.06992,1.04806,0.013216,0.005696,0.030688,0.11312,0.101888,25.2524,0.11472
+521,35.9475,27.8184,27.8999,0.069632,0.960512,0.007456,0.004864,0.047104,0.099296,0.100416,26.4971,0.113536
+522,34.8134,28.7246,26.5076,0.069472,0.850432,0.007968,0.00432,0.03072,0.098304,0.112,25.2199,0.114496
+523,35.8946,27.8594,27.9849,0.069664,0.948192,0.007776,0.01424,0.03104,0.100224,0.100704,26.5994,0.113664
+524,34.611,28.8926,27.7484,0.069632,0.868352,0.007936,0.004352,0.03056,0.0984,0.100416,26.4556,0.11312
+525,34.1789,29.2578,26.7812,0.069376,1.07341,0.007712,0.004576,0.03072,0.100352,0.101376,25.2791,0.114528
+526,36.2401,27.5938,26.522,0.069984,0.868352,0.007328,0.0048,0.030528,0.098656,0.102016,25.2268,0.113504
+527,36.2889,27.5566,27.7996,0.069632,0.855904,0.006304,0.006144,0.03072,0.100032,0.100672,26.5175,0.112672
+528,34.7072,28.8125,27.747,0.070048,0.86448,0.007744,0.004544,0.030752,0.099968,0.101952,26.4548,0.112672
+529,34.5141,28.9736,26.5531,0.070304,0.865856,0.006592,0.005792,0.030592,0.11312,0.105824,25.2419,0.11312
+530,35.7218,27.9941,27.8958,0.069696,0.931776,0.008032,0.004256,0.03072,0.099584,0.1008,26.5363,0.114688
+531,34.3947,29.0742,26.5933,0.069696,0.904384,0.006944,0.005664,0.030336,0.100352,0.101088,25.2602,0.11472
+532,36.7803,27.1885,26.8415,0.070016,0.853024,0.007104,0.004128,0.030752,0.099776,0.102272,25.5597,0.114688
+533,35.7654,27.96,28.6332,0.06992,0.890496,0.006528,0.006048,0.030816,0.099648,0.10048,27.3148,0.114464
+534,33.7442,29.6348,26.5277,0.069664,0.855456,0.00672,0.00512,0.029696,0.1,0.102528,25.2439,0.114688
+535,36.1544,27.6592,26.5952,0.070848,0.91168,0.00656,0.006112,0.030688,0.100384,0.100448,25.2538,0.114688
+536,35.3103,28.3203,27.8979,0.070784,0.992,0.015552,0.0048,0.0304,0.098624,0.100608,26.4721,0.11296
+537,34.7448,28.7812,26.6655,0.069568,0.961152,0.007424,0.004864,0.030752,0.099904,0.100096,25.2783,0.113504
+538,35.8318,27.9082,26.6087,0.069632,0.886528,0.0064,0.005248,0.030688,0.09904,0.100544,25.2969,0.113728
+539,36.0678,27.7256,27.9251,0.070176,0.985088,0.007392,0.004896,0.03072,0.099808,0.100192,26.5141,0.112672
+540,34.3486,29.1133,26.5171,0.069408,0.880224,0.006912,0.004096,0.03072,0.099648,0.100928,25.2124,0.112768
+541,36.0919,27.707,27.9199,0.069632,0.998656,0.006912,0.005696,0.030784,0.098688,0.102016,26.4945,0.113024
+542,34.0958,29.3291,27.9336,0.070624,0.982592,0.00656,0.005312,0.030656,0.0992,0.100352,26.5236,0.114688
+543,34.4677,29.0127,26.6425,0.06992,0.951712,0.006752,0.005824,0.042976,0.10032,0.100736,25.2477,0.116544
+544,35.8029,27.9307,26.6785,0.069824,0.982496,0.006688,0.005184,0.04384,0.099584,0.100288,25.2548,0.115744
+545,36.1927,27.6299,27.8377,0.069632,0.947872,0.006496,0.006144,0.030368,0.099968,0.100416,26.4641,0.112672
+546,34.5223,28.9668,26.6012,0.069664,0.8968,0.006688,0.005184,0.029632,0.098304,0.100352,25.2805,0.114016
+547,35.7642,27.9609,26.549,0.070048,0.848256,0.007808,0.005536,0.029632,0.099552,0.101088,25.2737,0.11344
+548,36.5884,27.3311,27.8504,0.07744,0.88512,0.007168,0.0048,0.030592,0.098624,0.102272,26.5316,0.112736
+549,34.652,28.8584,26.563,0.07008,0.882752,0.007712,0.004544,0.03072,0.100096,0.100704,25.2519,0.11456
+550,36.3224,27.5312,27.8279,0.070784,0.859008,0.008192,0.004096,0.030752,0.098272,0.1024,26.54,0.114368
+551,34.5363,28.9551,27.8508,0.071104,0.895552,0.007936,0.005536,0.029536,0.098304,0.102112,26.5277,0.112992
+552,34.4804,29.002,26.5446,0.070048,0.847872,0.007232,0.0048,0.030592,0.098816,0.102272,25.2703,0.112672
+553,35.2144,28.3975,26.6166,0.068384,0.958368,0.00624,0.006144,0.03072,0.099808,0.100896,25.2314,0.114688
+554,36.6133,27.3125,27.9169,0.068384,0.986176,0.01312,0.005472,0.03056,0.107328,0.103584,26.4897,0.112576
+555,34.6332,28.874,27.7589,0.069952,0.851968,0.00816,0.005536,0.0304,0.099136,0.101728,26.4772,0.114848
+556,34.5876,28.9121,26.6209,0.069856,0.932576,0.007712,0.004576,0.03072,0.100224,0.10048,25.26,0.114688
+557,35.4203,28.2324,27.8434,0.06992,0.93984,0.006912,0.005696,0.030592,0.09888,0.100352,26.478,0.113248
+558,35.0913,28.4971,26.6691,0.06976,0.969184,0.008,0.004288,0.03072,0.099936,0.100768,25.2723,0.114144
+559,36.0996,27.7012,26.5218,0.069664,0.857632,0.006816,0.006144,0.030752,0.099712,0.10096,25.2355,0.114688
+560,36.3378,27.5195,28.9464,0.069632,0.854016,0.008,0.004288,0.03072,0.099776,0.100928,27.6661,0.11296
+561,33.2252,30.0977,26.6588,0.069664,0.912704,0.006816,0.005792,0.030432,0.098944,0.10224,25.3175,0.114688
+562,35.9172,27.8418,26.5974,0.069472,0.895136,0.007328,0.0048,0.030496,0.098176,0.102496,25.2764,0.113056
+563,36.1889,27.6328,27.8313,0.069856,0.901856,0.008192,0.005856,0.030368,0.098816,0.101536,26.4958,0.119008
+564,34.2132,29.2285,26.6378,0.070944,0.914144,0.00768,0.014848,0.03232,0.098784,0.1024,25.2838,0.112896
+565,35.0589,28.5234,27.8528,0.069664,0.956384,0.007488,0.0048,0.030752,0.099456,0.101152,26.4704,0.112704
+566,35.6223,28.0723,27.8122,0.070368,0.864224,0.006144,0.005664,0.030496,0.099008,0.1024,26.5196,0.114304
+567,34.52,28.9688,26.5647,0.069792,0.874496,0.008128,0.005504,0.041664,0.099936,0.100352,25.2502,0.114624
+568,36.1046,27.6973,26.6547,0.069632,0.911232,0.006272,0.005568,0.030272,0.099328,0.101824,25.317,0.113632
+569,36.2709,27.5703,27.8059,0.070016,0.867872,0.006752,0.005952,0.030368,0.099904,0.101344,26.5093,0.1144
+570,33.5232,29.8301,26.5646,0.069632,0.896864,0.006304,0.005568,0.033344,0.099424,0.10128,25.2386,0.113568
+571,37.1391,26.9258,26.6093,0.069632,0.894976,0.007168,0.00512,0.030752,0.099808,0.101888,25.2855,0.114528
+572,36.0792,27.7168,27.8811,0.069632,0.868352,0.022528,0.004096,0.0328,0.098272,0.100384,26.5728,0.112288
+573,34.6602,28.8516,26.581,0.070688,0.875488,0.007872,0.005536,0.0296,0.100352,0.101376,25.2754,0.11472
+574,36.0614,27.7305,26.5583,0.0704,0.86832,0.007808,0.00448,0.030752,0.098272,0.100352,25.2641,0.11376
+575,36.1582,27.6562,27.8175,0.069984,0.843296,0.006624,0.006048,0.030464,0.114912,0.108064,26.5237,0.114432
+576,34.0765,29.3457,26.9396,0.069984,0.864288,0.0064,0.005504,0.029312,0.099904,0.102528,25.6493,0.112384
+577,35.6571,28.0449,27.1052,0.069568,1.37818,0.007104,0.005568,0.032864,0.09856,0.101824,25.297,0.11456
+578,35.9829,27.791,27.7624,0.069408,0.886464,0.007072,0.004192,0.03072,0.098304,0.100352,26.4534,0.112448
+579,34.7166,28.8047,26.5134,0.0696,0.847616,0.006432,0.006144,0.03072,0.10032,0.100384,25.2386,0.113632
+580,36.0868,27.7109,26.6117,0.069536,0.876512,0.006272,0.0056,0.030464,0.099168,0.10208,25.3094,0.112672
+581,35.7792,27.9492,28.919,0.069664,1.14586,0.00704,0.005568,0.030656,0.09904,0.1024,27.3443,0.114496
+582,33.6687,29.7012,26.5236,0.070688,0.855008,0.007936,0.004352,0.030752,0.099936,0.100736,25.2396,0.114688
+583,36.3095,27.541,26.4623,0.069952,0.843872,0.006592,0.005984,0.030592,0.098624,0.102208,25.1906,0.113952
+584,36.3559,27.5059,27.7327,0.070336,0.858144,0.007488,0.004768,0.030496,0.098592,0.102368,26.4471,0.113408
+585,34.7826,28.75,26.5385,0.070112,0.859744,0.00656,0.00592,0.030464,0.098784,0.10144,25.2498,0.11568
+586,36.1174,27.6875,26.4972,0.069792,0.881056,0.007456,0.004768,0.030624,0.098464,0.101568,25.1883,0.115168
+587,36.3611,27.502,27.7628,0.069728,0.852992,0.007072,0.005312,0.0296,0.100352,0.101408,26.4817,0.114656
+588,34.7425,28.7832,26.9292,0.069664,0.84784,0.006208,0.005632,0.030592,0.09888,0.10144,25.6543,0.114688
+589,35.7842,27.9453,27.4023,0.069664,0.849824,0.006208,0.006144,0.03072,0.099552,0.101152,26.126,0.11296
+590,35.1214,28.4727,27.7501,0.070912,0.88288,0.00672,0.005152,0.029664,0.099328,0.10288,26.4393,0.113248
+591,34.0177,29.3965,26.6854,0.069664,1.01683,0.007072,0.005504,0.029472,0.100256,0.102272,25.2393,0.115072
+592,36.1352,27.6738,27.0933,0.069952,1.01098,0.00688,0.004096,0.03072,0.100352,0.102048,25.6551,0.113184
+593,34.759,28.7695,28.5598,0.083648,1.65882,0.006944,0.005696,0.031168,0.104448,0.101792,26.4546,0.11264
+594,34.2934,29.1602,26.5544,0.069632,0.937984,0.008096,0.004192,0.031936,0.098944,0.10192,25.189,0.112672
+595,36.2837,27.5605,26.539,0.068576,0.872448,0.007776,0.004512,0.03072,0.100384,0.100192,25.2412,0.113248
+596,35.4522,28.207,27.8769,0.07088,0.961312,0.01792,0.004608,0.03072,0.09984,0.100864,26.4765,0.114208
+597,34.6508,28.8594,26.608,0.069856,0.908608,0.007008,0.005568,0.030528,0.099072,0.108544,25.2652,0.113664
+598,36.2324,27.5996,26.5108,0.06976,0.866304,0.007936,0.004352,0.040672,0.10032,0.1064,25.1919,0.123104
+599,36.3662,27.498,27.8129,0.07088,0.858432,0.006624,0.006016,0.03056,0.098592,0.1024,26.5255,0.113856
+600,34.726,28.7969,26.9294,0.070336,0.852288,0.007904,0.004384,0.03072,0.099776,0.100928,25.6508,0.112256
+601,35.6794,28.0273,27.3969,0.070144,0.852224,0.006144,0.006144,0.03072,0.100352,0.106144,26.1119,0.11312
+602,35.1455,28.4531,27.8118,0.069632,0.8536,0.00656,0.005344,0.03072,0.099104,0.10144,26.5328,0.11264
+603,33.8468,29.5449,26.706,0.069664,1.00966,0.007552,0.004736,0.030752,0.10032,0.101984,25.2683,0.113024
+604,36.7078,27.2422,26.9213,0.069408,0.864224,0.00672,0.00512,0.029696,0.10016,0.102208,25.6311,0.11264
+605,35.5877,28.0996,28.0405,0.069632,1.10554,0.008576,0.006144,0.0328,0.100448,0.101856,26.5015,0.114016
+606,34.5386,28.9531,26.5119,0.069216,0.86624,0.007136,0.004096,0.03072,0.1024,0.104448,25.2129,0.114688
+607,36.1352,27.6738,26.6074,0.069504,0.920096,0.007232,0.005024,0.030752,0.099392,0.10336,25.2575,0.11456
+608,35.9601,27.8086,27.7731,0.06928,0.875392,0.007808,0.00448,0.030624,0.099552,0.1064,26.4673,0.112256
+609,34.7001,28.8184,26.5107,0.069248,0.889344,0.008192,0.005824,0.030688,0.099744,0.100896,25.1929,0.113888
+610,35.3372,28.2988,26.5997,0.068256,0.945568,0.006752,0.00512,0.030784,0.099264,0.10048,25.2302,0.113248
+611,36.5427,27.3652,27.8078,0.069088,0.936544,0.0072,0.005088,0.030752,0.100224,0.101632,26.4446,0.11264
+612,34.3417,29.1191,26.6376,0.069632,0.961632,0.007072,0.004096,0.03072,0.099968,0.100736,25.2454,0.1184
+613,36.4724,27.418,27.7709,0.070976,0.850656,0.007968,0.005536,0.029472,0.100032,0.100576,26.4921,0.1136
+614,34.4248,29.0488,27.7437,0.069632,0.869536,0.007008,0.004096,0.03072,0.098304,0.1024,26.4479,0.114176
+615,34.6954,28.8223,26.517,0.069696,0.9024,0.006912,0.005664,0.030336,0.099168,0.101792,25.1867,0.1144
+616,36.1582,27.6562,26.5871,0.070688,0.953312,0.006144,0.005728,0.0304,0.09904,0.101504,25.2071,0.113216
+617,36.1863,27.6348,27.7703,0.069632,0.86,0.006304,0.006144,0.030624,0.106624,0.115872,26.4609,0.114272
+618,33.8244,29.5645,26.5833,0.069376,0.957248,0.007264,0.004768,0.030432,0.10704,0.100352,25.192,0.114816
+619,37.375,26.7559,26.528,0.069888,0.862208,0.007456,0.004832,0.030752,0.0984,0.101472,25.2383,0.114688
+620,36.3791,27.4883,27.6989,0.069632,0.84992,0.007712,0.004576,0.03072,0.098432,0.102272,26.4227,0.112992
+621,34.7779,28.7539,26.5193,0.070112,0.871712,0.00688,0.005792,0.030144,0.099232,0.100352,25.2211,0.11392
+622,36.2221,27.6074,27.7601,0.070944,0.895712,0.00784,0.004448,0.03056,0.099584,0.10128,26.4356,0.114144
+623,34.7119,28.8086,27.7299,0.06848,0.86784,0.006656,0.005952,0.030528,0.09984,0.101024,26.4358,0.113728
+624,34.8964,28.6562,26.5139,0.069216,0.885632,0.007456,0.004768,0.030368,0.099776,0.101344,25.2019,0.113472
+625,36.0843,27.7129,26.5155,0.069312,0.885056,0.006144,0.006144,0.03072,0.09952,0.101184,25.2027,0.114656
+626,36.2504,27.5859,27.7096,0.069568,0.872672,0.007296,0.004768,0.030912,0.099904,0.100384,26.4114,0.112704
+627,34.6719,28.8418,27.7938,0.0696,0.893312,0.007968,0.005536,0.03056,0.099296,0.101824,26.4638,0.121824
+628,34.6883,28.8281,26.5029,0.069632,0.892608,0.006464,0.005408,0.029408,0.1,0.102208,25.1828,0.114432
+629,36.4102,27.4648,27.7289,0.069632,0.866304,0.007232,0.005056,0.03072,0.099488,0.100704,26.434,0.115744
+630,34.5526,28.9414,26.577,0.070688,0.959456,0.007968,0.00432,0.030752,0.099712,0.100352,25.189,0.114784
+631,36.0006,27.7773,26.6203,0.070528,0.940032,0.006144,0.006144,0.030752,0.098272,0.101664,25.2502,0.116608
+632,35.7043,28.0078,27.8726,0.069632,0.96032,0.006336,0.005632,0.030464,0.098848,0.100576,26.4868,0.114016
+633,34.5619,28.9336,26.5728,0.071104,0.937952,0.006752,0.005824,0.030272,0.099072,0.101984,25.2052,0.114688
+634,36.1659,27.6504,26.5055,0.069888,0.884736,0.007744,0.004544,0.030624,0.0984,0.102464,25.1942,0.112832
+635,36.2632,27.5762,27.7503,0.069632,0.864,0.007104,0.005504,0.030592,0.098432,0.101024,26.4602,0.113888
+636,34.5549,28.9395,27.7504,0.069632,0.919552,0.007232,0.004768,0.030592,0.098432,0.10176,26.4052,0.113184
+637,34.8893,28.6621,26.4446,0.068416,0.852,0.007712,0.004544,0.03072,0.100352,0.100352,25.1673,0.113216
+638,36.3172,27.5352,27.6723,0.069792,0.864224,0.006144,0.005696,0.030336,0.098944,0.100544,26.3835,0.113152
+639,34.8015,28.7344,26.4704,0.069632,0.86016,0.007968,0.005536,0.029504,0.102432,0.104416,25.1761,0.114688
+640,36.3662,27.498,26.4866,0.069152,0.868864,0.006304,0.005632,0.030496,0.09824,0.101152,25.1924,0.114304
+641,35.7892,27.9414,28.9525,0.069568,0.970592,0.006304,0.006144,0.030464,0.1064,0.337728,27.3127,0.11264
+642,33.6576,29.7109,26.4593,0.069632,0.85328,0.00688,0.004096,0.03072,0.099392,0.101152,25.1815,0.112608
+643,36.3224,27.5312,26.5626,0.07152,0.88656,0.006528,0.00608,0.030464,0.098784,0.102144,25.2477,0.112832
+644,35.8067,27.9277,27.891,0.070816,0.975616,0.006304,0.005728,0.030368,0.100672,0.10224,26.4833,0.115968
+645,34.3463,29.1152,26.6061,0.069888,0.944384,0.007872,0.005504,0.029632,0.10032,0.100384,25.2334,0.11472
+646,36.0335,27.752,26.6759,0.069888,1.01014,0.006144,0.00576,0.0304,0.099008,0.101696,25.2373,0.115552
+647,35.8092,27.9258,27.8426,0.069632,0.95952,0.007072,0.005504,0.031328,0.09968,0.10112,26.454,0.114656
+648,34.7637,28.7656,26.8433,0.069344,0.876128,0.007008,0.004096,0.03072,0.100352,0.102144,25.5408,0.112704
+649,35.8267,27.9121,27.4272,0.069504,0.885664,0.007488,0.0048,0.03072,0.100032,0.100672,26.114,0.114272
+650,35.1479,28.4512,27.6869,0.069632,0.837024,0.006752,0.005728,0.031104,0.09792,0.100704,26.4145,0.123584
+651,34.4665,29.0137,26.4847,0.069408,0.872672,0.008,0.005536,0.03056,0.099264,0.101952,25.1842,0.113184
+652,35.9349,27.8281,26.9409,0.069472,0.925536,0.006464,0.005376,0.02944,0.099392,0.099392,25.5928,0.112992
+653,34.6461,28.8633,28.4336,0.069632,1.58672,0.006624,0.005984,0.030336,0.100224,0.101024,26.4185,0.11456
+654,34.3855,29.082,26.622,0.07008,0.993312,0.007392,0.004768,0.030496,0.098624,0.10192,25.2031,0.112352
+655,36.1633,27.6523,26.514,0.070144,0.869408,0.007136,0.0056,0.030432,0.098816,0.102336,25.2172,0.112896
+656,35.8293,27.9102,27.7798,0.081728,0.928736,0.007648,0.00464,0.0304,0.098624,0.102432,26.4104,0.1152
+657,34.9417,28.6191,26.5482,0.069792,0.832896,0.006784,0.005888,0.03056,0.09872,0.108064,25.281,0.114528
+658,35.386,28.2598,26.7426,0.069664,1.04435,0.00624,0.015872,0.031232,0.099488,0.117568,25.2437,0.114496
+659,36.5558,27.3555,27.7289,0.070272,0.839296,0.006912,0.005696,0.030464,0.09888,0.114528,26.4494,0.113472
+660,34.5946,28.9062,27.8152,0.069664,0.931424,0.006528,0.00544,0.030464,0.098688,0.100544,26.4586,0.113856
+661,34.4619,29.0176,26.4745,0.069632,0.858112,0.007712,0.004576,0.032288,0.100448,0.099872,25.1872,0.114688
+662,35.882,27.8691,27.8774,0.071104,0.96928,0.007392,0.0048,0.030624,0.098496,0.101696,26.4811,0.112928
+663,34.6978,28.8203,26.5727,0.069568,0.901664,0.007232,0.005056,0.030688,0.100352,0.100352,25.2433,0.114496
+664,36.3947,27.4766,26.9551,0.069632,0.85136,0.006752,0.004096,0.03072,0.100352,0.101728,25.6779,0.112576
+665,35.235,28.3809,28.254,0.069344,1.33811,0.006144,0.006144,0.032768,0.099872,0.100832,26.4868,0.114016
+666,34.3901,29.0781,26.4559,0.068416,0.861248,0.006976,0.004096,0.03072,0.100064,0.10208,25.1685,0.113824
+667,36.3301,27.5254,26.6079,0.069504,0.893856,0.00784,0.005536,0.030752,0.0992,0.101728,25.2865,0.11296
+668,35.8719,27.877,27.7981,0.06816,0.91136,0.007648,0.00464,0.030528,0.098496,0.1024,26.4622,0.11264
+669,34.7425,28.7832,26.552,0.069632,0.909344,0.007648,0.004608,0.03072,0.100352,0.101376,25.214,0.1144
+670,35.9475,27.8184,26.5544,0.071072,0.938464,0.006272,0.005568,0.030432,0.0992,0.101344,25.1894,0.11264
+671,35.9601,27.8086,27.8429,0.070016,0.950272,0.006144,0.006144,0.030656,0.108032,0.100928,26.4556,0.115104
+672,34.9131,28.6426,27.7138,0.069472,0.867904,0.007008,0.004096,0.03072,0.099552,0.101152,26.4212,0.11264
+673,34.5339,28.957,26.5687,0.069632,0.897024,0.008032,0.005376,0.0296,0.099456,0.100608,25.2443,0.114688
+674,35.3591,28.2812,27.846,0.069696,0.96864,0.007168,0.004768,0.031072,0.098304,0.101408,26.4509,0.113984
+675,35.1576,28.4434,26.5975,0.069952,0.977376,0.007648,0.00464,0.03072,0.100352,0.100352,25.1922,0.114304
+676,36.4491,27.4355,27.7576,0.07088,0.841792,0.00688,0.004096,0.03072,0.100352,0.102208,26.487,0.113728
+677,34.4851,28.998,27.8013,0.069632,0.923648,0.008096,0.005504,0.029408,0.099552,0.101152,26.4498,0.114496
+678,34.4874,28.9961,26.4918,0.06848,0.902688,0.006624,0.005248,0.030624,0.099296,0.101504,25.1626,0.114688
+679,34.6836,28.832,26.5525,0.068032,0.96,0.006496,0.004256,0.03072,0.100384,0.102368,25.1651,0.115232
+680,37.4735,26.6855,27.7381,0.069664,0.874464,0.007744,0.004544,0.03072,0.104448,0.1024,26.4332,0.110944
+681,34.6602,28.8516,27.7257,0.075232,0.868896,0.007808,0.005536,0.030752,0.10048,0.10112,26.4228,0.113088
+682,34.925,28.6328,26.4767,0.070976,0.864736,0.006368,0.005472,0.030624,0.099072,0.101984,25.1847,0.112768
+683,36.0589,27.7324,27.6602,0.069984,0.86384,0.00704,0.005536,0.030656,0.100128,0.10912,26.3581,0.115744
+684,34.6813,28.834,26.4989,0.069632,0.899072,0.007296,0.004768,0.030464,0.098784,0.1024,25.1715,0.115008
+685,35.9122,27.8457,27.0538,0.069792,0.944448,0.006304,0.006144,0.03072,0.099488,0.100352,25.6826,0.114016
+686,35.3225,28.3105,28.5928,0.069408,0.950784,0.006496,0.005344,0.029472,0.099712,0.100992,27.2177,0.112896
+687,33.5826,29.7773,26.5132,0.070944,0.926432,0.007264,0.005024,0.030688,0.09968,0.100576,25.1581,0.114432
+688,36.1991,27.625,26.5039,0.069792,0.905344,0.0064,0.005472,0.030432,0.097216,0.101728,25.1747,0.1128
+689,36.1863,27.6348,27.7286,0.070112,0.884384,0.006784,0.004096,0.030272,0.098752,0.100352,26.4204,0.113472
+690,34.106,29.3203,26.6152,0.069632,0.974208,0.006784,0.005536,0.030464,0.099072,0.100448,25.215,0.114048
+691,36.2966,27.5508,26.6097,0.069664,0.999392,0.00784,0.005536,0.030944,0.09904,0.102144,25.1819,0.113184
+692,36.1914,27.6309,27.7832,0.069664,0.876512,0.00752,0.004768,0.030528,0.098688,0.102048,26.4807,0.112736
+693,34.3049,29.1504,26.6183,0.068928,0.971648,0.007616,0.004672,0.03072,0.100352,0.101728,25.2197,0.11296
+694,35.9702,27.8008,27.6812,0.075616,0.874912,0.006368,0.005504,0.030496,0.098688,0.100832,26.3779,0.110912
+695,33.2532,30.0723,27.7933,0.070144,0.940032,0.007936,0.005504,0.029568,0.100352,0.100352,26.4248,0.114624
+696,35.9829,27.791,26.5704,0.069632,0.960512,0.007616,0.004672,0.030624,0.1,0.1008,25.1818,0.114784
+697,35.3493,28.2891,26.698,0.069824,1.06086,0.006144,0.018432,0.03072,0.101824,0.105024,25.1822,0.122912
+698,36.5793,27.3379,27.7171,0.070016,0.854016,0.007232,0.004768,0.030528,0.098816,0.102016,26.4359,0.113792
+699,34.6156,28.8887,26.4544,0.069792,0.852544,0.006368,0.005952,0.03072,0.09936,0.101344,25.174,0.114336
+700,36.1505,27.6621,26.5272,0.06992,0.917568,0.007648,0.00464,0.030624,0.0984,0.1024,25.1822,0.113792
+701,36.2375,27.5957,27.7951,0.069504,0.964416,0.006656,0.006016,0.030688,0.09856,0.102304,26.4028,0.114112
+702,33.9703,29.4375,26.5629,0.069824,0.960288,0.007008,0.004096,0.03072,0.098304,0.1024,25.1761,0.114176
+703,36.5558,27.3555,27.8164,0.069568,0.946176,0.006656,0.005952,0.030784,0.098432,0.102048,26.4435,0.113344
+704,34.448,29.0293,26.5604,0.069184,0.930368,0.006528,0.005472,0.029376,0.10032,0.100352,25.2047,0.114016
+705,35.9854,27.7891,26.561,0.069568,0.889472,0.007712,0.004576,0.03072,0.099872,0.100832,25.2432,0.11504
+706,35.9727,27.7988,28.9194,0.069632,0.8704,0.006144,0.00608,0.029824,0.098336,0.099232,27.6269,0.112864
+707,33.3746,29.9629,26.4643,0.07152,0.854176,0.00736,0.004928,0.03072,0.099936,0.100768,25.1822,0.112672
+708,35.677,28.0293,26.5054,0.069856,0.865312,0.007072,0.004128,0.03072,0.098304,0.102304,25.2149,0.1128
+709,34.9202,28.6367,27.7642,0.07136,0.89504,0.020736,0.005536,0.04544,0.100448,0.10048,26.409,0.11616
+710,35.6298,28.0664,26.4663,0.069664,0.881696,0.007072,0.004128,0.030752,0.098272,0.102048,25.1578,0.11488
+711,36.1889,27.6328,26.4933,0.069696,0.87072,0.006144,0.006144,0.03056,0.098464,0.100512,25.1964,0.114688
+712,36.3636,27.5,27.6867,0.069952,0.841088,0.006784,0.005248,0.029568,0.099776,0.102752,26.4186,0.112928
+713,34.2704,29.1797,26.4334,0.07088,0.856864,0.008064,0.005536,0.030688,0.099104,0.102336,25.1452,0.114752
+714,35.945,27.8203,26.5707,0.069632,0.991232,0.007296,0.004768,0.030656,0.099616,0.101024,25.1519,0.114624
+715,35.6298,28.0664,27.8626,0.069664,0.956672,0.006432,0.006016,0.042464,0.100672,0.102624,26.4642,0.113888
+716,34.6391,28.8691,26.4861,0.069952,0.917504,0.007424,0.004768,0.030528,0.099968,0.112704,25.1295,0.113824
+717,36.0843,27.7129,27.8705,0.071008,1.03696,0.00784,0.005536,0.029728,0.100192,0.1016,26.4033,0.114336
+718,34.7519,28.7754,27.7021,0.06848,0.874496,0.00784,0.004448,0.030528,0.098496,0.1024,26.4028,0.112608
+719,34.2865,29.166,26.6731,0.06848,1.07062,0.006592,0.006048,0.030816,0.105664,0.101184,25.1698,0.113888
+720,36.1991,27.625,26.5769,0.075392,0.948608,0.016384,0.004096,0.03072,0.099872,0.100864,25.1875,0.113504
+721,35.9727,27.7988,28.5745,0.070464,0.942112,0.007296,0.00496,0.03072,0.09984,0.100736,27.2035,0.114848
+722,33.9973,29.4141,26.5285,0.06976,0.83216,0.007968,0.00432,0.03072,0.098304,0.103872,25.2668,0.114688
+723,35.8393,27.9023,26.4622,0.069632,0.905216,0.0072,0.005088,0.03072,0.09936,0.099296,25.1308,0.114912
+724,35.9475,27.8184,27.8775,0.06976,0.956416,0.00736,0.0048,0.0304,0.099808,0.100768,26.4947,0.113504
+725,34.4433,29.0332,26.5567,0.069728,0.95248,0.007584,0.004704,0.030752,0.101536,0.103232,25.172,0.114688
+726,36.0208,27.7617,26.5648,0.069504,0.950496,0.0072,0.004768,0.030176,0.099136,0.100384,25.1904,0.112736
+727,36.2915,27.5547,27.7033,0.071168,0.870272,0.006784,0.00592,0.030528,0.099968,0.101152,26.4041,0.113376
+728,34.147,29.2852,27.7709,0.069632,0.937952,0.006176,0.005696,0.030592,0.098432,0.1008,26.4084,0.113248
+729,34.4711,29.0098,26.4321,0.069536,0.85056,0.007168,0.00512,0.03072,0.099904,0.1008,25.1535,0.11472
+730,34.5946,28.9062,27.8836,0.069728,1.05472,0.008192,0.004096,0.030688,0.098336,0.101504,26.4034,0.11296
+731,35.8619,27.8848,26.6201,0.06928,0.991808,0.006144,0.006144,0.030752,0.099968,0.102208,25.201,0.112832
+732,35.9298,27.832,26.5599,0.069632,0.980992,0.007808,0.00448,0.03072,0.099552,0.101152,25.1528,0.112768
+733,36.1837,27.6367,28.6988,0.069984,1.1103,0.006208,0.006144,0.030752,0.099744,0.100928,27.1585,0.116192
+734,33.702,29.6719,26.5117,0.069952,0.903168,0.007456,0.0048,0.030688,0.099392,0.100928,25.1806,0.11472
+735,35.662,28.041,26.6609,0.069632,1.06669,0.006464,0.006144,0.030592,0.099968,0.100832,25.1659,0.114688
+736,35.9778,27.7949,27.7846,0.069632,0.9536,0.006912,0.004096,0.040992,0.099808,0.101984,26.395,0.112544
+737,34.2635,29.1855,26.5851,0.069632,0.976928,0.007328,0.004928,0.030752,0.100256,0.100128,25.1804,0.114688
+738,36.1199,27.6855,26.4375,0.069632,0.86016,0.007904,0.004384,0.03072,0.099648,0.101056,25.1506,0.113408
+739,35.9551,27.8125,27.7501,0.069984,0.896256,0.00704,0.005568,0.03088,0.09872,0.100352,26.4274,0.113952
+740,33.0685,30.2402,27.1155,0.070784,1.06762,0.006432,0.005376,0.02944,0.100352,0.100352,25.6219,0.11328
+741,36.2093,27.6172,26.931,0.06976,1.33168,0.00928,0.0048,0.033056,0.10032,0.100352,25.1679,0.113888
+742,35.9626,27.8066,27.8671,0.069632,1.00138,0.00624,0.005632,0.04048,0.099296,0.100352,26.4315,0.11264
+743,34.3095,29.1465,26.5926,0.075616,0.968384,0.006944,0.005664,0.030432,0.0992,0.102272,25.1904,0.113696
+744,36.0107,27.7695,27.3148,0.074368,0.949984,0.006464,0.00528,0.030688,0.0992,0.101984,25.9322,0.114592
+745,34.7307,28.793,27.703,0.070784,0.871296,0.007968,0.005536,0.029504,0.1,0.100704,26.4025,0.11472
+746,32.3969,30.8672,26.7981,0.069792,1.15619,0.006912,0.004096,0.045088,0.107552,0.107456,25.1863,0.114688
+747,38.2432,26.1484,26.5768,0.069696,0.98832,0.006976,0.00576,0.030432,0.098976,0.100352,25.1612,0.115072
+748,36.1889,27.6328,27.7401,0.069728,0.93584,0.0072,0.004768,0.030528,0.100192,0.100672,26.3783,0.112896
+749,34.4967,28.9883,26.5134,0.071328,0.91376,0.0072,0.005088,0.030752,0.098272,0.1024,25.1711,0.113536
+750,36.1607,27.6543,26.4461,0.070528,0.841696,0.00816,0.004128,0.03072,0.104448,0.101568,25.1708,0.11408
+751,34.321,29.1367,27.7724,0.069632,0.944128,0.006144,0.006144,0.030368,0.098688,0.100416,26.4027,0.114208
+752,36.2709,27.5703,26.877,0.069632,0.87168,0.006912,0.004096,0.03072,0.09968,0.102528,25.578,0.113664
+753,35.3884,28.2578,26.7899,0.070848,1.22758,0.010112,0.005536,0.032512,0.100608,0.100736,25.1273,0.114688
+754,36.3224,27.5312,27.6691,0.069344,0.899168,0.006944,0.004096,0.03072,0.099392,0.111552,26.3352,0.11264
+755,33.107,30.2051,26.6447,0.073888,1.04038,0.015424,0.005056,0.030752,0.09936,0.101312,25.1638,0.11472
+756,34.2406,29.2051,27.6929,0.07536,1.03875,0.008096,0.004192,0.03072,0.119872,0.101312,26.1995,0.115104
+757,36.6736,27.2676,27.7871,0.069664,0.976864,0.007488,0.0048,0.03072,0.099584,0.10112,26.3821,0.114752
+758,34.4225,29.0508,26.546,0.069696,0.98096,0.00672,0.00512,0.029696,0.102048,0.100704,25.1367,0.114432
+759,36.2478,27.5879,26.5759,0.069632,0.987136,0.007904,0.005536,0.029568,0.1,0.102016,25.1584,0.115744
+760,35.6645,28.0391,27.6973,0.069696,0.852832,0.007712,0.004576,0.03056,0.098464,0.102336,26.4186,0.112544
+761,32.6676,30.6113,26.6888,0.069632,1.04653,0.007744,0.004544,0.048448,0.099008,0.101536,25.1966,0.114752
+762,38.0302,26.2949,26.7811,0.069888,0.82944,0.00752,0.004768,0.03072,0.100352,0.10176,25.5228,0.113824
+763,33.6997,29.6738,28.6228,0.069632,0.935936,0.007616,0.004672,0.03072,0.108544,0.101568,27.2514,0.112768
+764,35.6596,28.043,26.8012,0.069632,0.857952,0.006304,0.005568,0.030656,0.098944,0.102176,25.5173,0.11264
+765,35.0637,28.5195,26.4969,0.068288,0.952288,0.006144,0.006144,0.03072,0.099488,0.102336,25.1176,0.113888
+766,36.3688,27.4961,27.7523,0.069088,0.911296,0.006752,0.005152,0.03072,0.103392,0.1024,26.4106,0.112928
+767,34.3601,29.1035,26.5489,0.06976,0.91808,0.0072,0.005088,0.03072,0.100288,0.100416,25.2041,0.11328
+768,34.7307,28.793,28.1266,0.070016,1.05629,0.016864,0.004096,0.031968,0.104704,0.100896,26.6281,0.113664
+769,35.5038,28.166,27.7709,0.069632,0.823296,0.007872,0.005504,0.029632,0.100096,0.100544,26.5196,0.114688
+770,34.2086,29.2324,26.5667,0.070912,0.987904,0.007872,0.004416,0.032224,0.098784,0.100416,25.1515,0.11264
+771,35.8343,27.9062,26.4989,0.069664,0.917472,0.006144,0.006144,0.030176,0.098112,0.10048,25.1562,0.114528
+772,36.1684,27.6484,27.7644,0.069632,0.874496,0.007648,0.00464,0.03072,0.098336,0.102368,26.4622,0.114304
+773,34.1265,29.3027,26.54,0.069664,0.944032,0.006208,0.006144,0.030752,0.098272,0.1024,25.1678,0.114656
+774,35.7093,28.0039,26.497,0.069728,0.923552,0.007296,0.004576,0.030336,0.099072,0.101696,25.1461,0.114688
+775,36.3766,27.4902,27.7074,0.069632,0.88064,0.007776,0.004512,0.03072,0.098336,0.102368,26.4008,0.11264
+776,34.1812,29.2559,27.7504,0.069632,0.90032,0.006944,0.004096,0.03072,0.099552,0.101376,26.4251,0.11264
+777,34.1197,29.3086,26.5298,0.075008,0.95056,0.016864,0.006144,0.03072,0.099904,0.100224,25.1295,0.1208
+778,33.9275,29.4746,27.9063,0.070016,1.12822,0.006336,0.005344,0.029472,0.099328,0.101376,26.3526,0.1136
+779,36.1327,27.6758,26.5732,0.06976,0.971488,0.00784,0.005536,0.029632,0.099712,0.10208,25.1723,0.114912
+780,36.3275,27.5273,26.88,0.06976,0.866176,0.007776,0.004512,0.030464,0.09856,0.102336,25.5872,0.113216
+781,35.9879,27.7871,28.5683,0.069728,0.868448,0.006816,0.005824,0.030592,0.1008,0.101856,27.2697,0.11456
+782,33.2015,30.1191,26.4586,0.069344,0.92144,0.007072,0.004096,0.03072,0.099328,0.101408,25.1116,0.1136
+783,35.4007,28.248,26.5939,0.069568,1.01853,0.006176,0.006144,0.030656,0.0984,0.108512,25.1423,0.1136
+784,36.0538,27.7363,27.8303,0.069632,0.970752,0.007808,0.00448,0.03072,0.098304,0.100352,26.4375,0.110688
+785,31.7539,31.4922,26.6286,0.069824,1.03664,0.0072,0.014528,0.031008,0.098784,0.101952,25.154,0.11472
+786,35.887,27.8652,26.6015,0.069632,1.0136,0.006304,0.005536,0.041376,0.098528,0.105696,25.1461,0.114688
+787,36.3947,27.4766,27.6705,0.069664,0.87408,0.006528,0.006048,0.030528,0.098592,0.100352,26.3716,0.113184
+788,34.6813,28.834,27.7581,0.069632,0.940544,0.007648,0.00464,0.030656,0.098368,0.1024,26.3905,0.113664
+789,34.4735,29.0078,26.4802,0.069824,0.866656,0.007456,0.004832,0.03072,0.098304,0.101952,25.1863,0.114176
+790,35.8393,27.9023,27.7893,0.07136,0.96656,0.00656,0.00528,0.029536,0.100352,0.100384,26.3962,0.113056
+791,34.0493,29.3691,26.5445,0.069472,0.999488,0.006656,0.006048,0.030592,0.098528,0.106496,25.1126,0.114688
+792,35.6149,28.0781,26.6625,0.079712,1.07334,0.006272,0.0056,0.032928,0.100064,0.10512,25.1453,0.114112
+793,36.6526,27.2832,29.0529,0.069632,1.05677,0.008128,0.005536,0.032992,0.098752,0.108448,27.56,0.112672
+794,33.264,30.0625,26.5226,0.07056,0.87248,0.007488,0.0048,0.030688,0.112672,0.114112,25.1869,0.12288
+795,34.2452,29.2012,26.5339,0.070944,0.963232,0.006208,0.006144,0.030592,0.098432,0.110016,25.1269,0.121408
+796,38.2603,26.1367,27.7093,0.070944,0.858848,0.007584,0.004704,0.030688,0.098336,0.1024,26.4212,0.11456
+797,34.4967,28.9883,26.4868,0.069632,0.897024,0.007168,0.00512,0.030752,0.098272,0.1016,25.1619,0.115296
+798,36.2452,27.5898,26.4239,0.070336,0.872672,0.006176,0.005696,0.030528,0.098944,0.102144,25.1221,0.115328
+799,35.5877,28.0996,27.9367,0.069632,1.06528,0.006624,0.005984,0.045056,0.100192,0.100672,26.4292,0.113984
+800,34.5899,28.9102,26.9292,0.069792,0.935616,0.006304,0.012288,0.030752,0.100032,0.100672,25.5609,0.112768
+801,35.8293,27.9102,27.2857,0.069632,0.87264,0.007392,0.004896,0.03072,0.100352,0.101952,25.9845,0.113568
+802,35.4301,28.2246,27.6688,0.069984,0.835552,0.007904,0.004384,0.030752,0.100128,0.108384,26.3988,0.112928
+803,34.9107,28.6445,26.4366,0.068448,0.854016,0.007168,0.00512,0.03072,0.09936,0.101344,25.1558,0.114592
+804,36.1965,27.627,26.805,0.069824,0.843584,0.006912,0.004096,0.031968,0.099104,0.10224,25.5346,0.112672
+805,35.7542,27.9688,28.4324,0.069632,0.856064,0.007616,0.004672,0.03072,0.11264,0.4072,26.8312,0.112672
+806,33.8401,29.5508,26.4138,0.071456,0.856576,0.00656,0.00544,0.030592,0.099136,0.100448,25.1309,0.11264
+807,36.1914,27.6309,26.498,0.078816,0.886624,0.006304,0.006144,0.030528,0.100544,0.101408,25.1747,0.112992
+808,36.3636,27.5,27.6726,0.069664,0.849888,0.007328,0.0048,0.030464,0.09872,0.101824,26.3972,0.11264
+809,34.6461,28.8633,26.4162,0.070976,0.852672,0.008064,0.005536,0.029408,0.100352,0.100352,25.1349,0.113952
+810,36.1301,27.6777,26.514,0.070176,0.95552,0.007008,0.004096,0.03072,0.098304,0.1024,25.1331,0.112672
+811,35.8619,27.8848,27.7929,0.069664,0.94,0.007392,0.004896,0.03072,0.099968,0.101856,26.4236,0.114784
+812,33.7642,29.6172,27.0664,0.070976,0.991936,0.016384,0.0056,0.041504,0.100352,0.100352,25.6259,0.113376
+813,36.5505,27.3594,27.339,0.06976,0.822688,0.00688,0.00576,0.030592,0.111008,0.100448,26.0772,0.114656
+814,34.7992,28.7363,27.6834,0.069952,0.891104,0.008032,0.004256,0.03184,0.105376,0.100352,26.3598,0.112672
+815,33.753,29.627,26.8582,0.069696,1.12906,0.016448,0.006144,0.030752,0.099904,0.100224,25.2911,0.114912
+816,36.7895,27.1816,26.7612,0.069664,0.831488,0.008,0.004256,0.03072,0.09824,0.10048,25.5037,0.114656
+817,35.7617,27.9629,28.573,0.06944,0.89904,0.006496,0.006112,0.030432,0.11296,0.100352,27.2343,0.113888
+818,33.6333,29.7324,26.5032,0.069408,0.851808,0.006528,0.018176,0.040608,0.100704,0.110848,25.1924,0.112672
+819,36.097,27.7031,26.4462,0.069696,0.871104,0.006368,0.00608,0.030624,0.099872,0.100928,25.1468,0.114688
+820,33.5057,29.8457,29.5164,0.07024,2.57638,0.007968,0.00432,0.03072,0.098304,0.103808,26.51,0.114688
+821,34.441,29.0352,26.5144,0.069664,0.953216,0.006144,0.006144,0.030656,0.099424,0.110816,25.123,0.11536
+822,36.3456,27.5137,26.597,0.06992,0.994816,0.006656,0.005248,0.039808,0.09952,0.101184,25.1638,0.116096
+823,36.2093,27.6172,27.7228,0.069632,0.933888,0.008,0.005536,0.030496,0.099008,0.100704,26.3615,0.114048
+824,34.4132,29.0586,26.4745,0.069632,0.925696,0.007712,0.004576,0.030688,0.098336,0.10224,25.1222,0.113408
+825,36.2401,27.5938,27.6331,0.069728,0.82944,0.007392,0.004896,0.03072,0.100096,0.102176,26.3745,0.114208
+826,34.5946,28.9062,27.7099,0.069952,0.929856,0.006336,0.005536,0.03104,0.098592,0.10144,26.3536,0.113472
+827,34.7166,28.8047,26.5709,0.068512,0.998976,0.006592,0.006016,0.030464,0.09872,0.102368,25.1445,0.114752
+828,36.3043,27.5449,26.5095,0.069568,0.923136,0.006848,0.004096,0.03072,0.098432,0.102368,25.1611,0.113184
+829,36.0665,27.7266,28.8389,0.068576,0.855552,0.006656,0.00592,0.030528,0.098752,0.10032,27.5598,0.1128
+830,33.355,29.9805,26.4109,0.071104,0.864832,0.007264,0.004768,0.030656,0.099872,0.10048,25.1193,0.11264
+831,36.2093,27.6172,26.5769,0.069696,0.995328,0.006144,0.006144,0.030752,0.10016,0.10176,25.1523,0.114592
+832,35.8142,27.9219,27.734,0.070912,0.972768,0.006944,0.00512,0.029696,0.098304,0.100352,26.3368,0.113088
+833,34.2338,29.2109,26.5814,0.076224,0.992672,0.00672,0.005504,0.030496,0.100224,0.101152,25.1537,0.114688
+834,36.6054,27.3184,26.3578,0.069632,0.823328,0.007392,0.0048,0.030496,0.098592,0.100512,25.1062,0.116768
+835,35.2714,28.3516,27.8849,0.070688,1.06522,0.00688,0.005728,0.03024,0.098464,0.101088,26.3926,0.114016
+836,33.0429,30.2637,27.1636,0.07056,1.2409,0.006368,0.005504,0.029536,0.099744,0.10416,25.4942,0.112672
+837,36.5897,27.3301,27.4058,0.070784,0.977184,0.006752,0.005888,0.030624,0.098656,0.101888,25.9999,0.114112
+838,34.9894,28.5801,27.7047,0.069664,0.931232,0.00672,0.005184,0.029632,0.098304,0.100512,26.3494,0.114048
+839,34.6766,28.8379,26.5172,0.068192,0.948224,0.007776,0.004512,0.03072,0.1024,0.104448,25.1364,0.11456
+840,35.9854,27.7891,27.7177,0.070816,0.944992,0.008032,0.004256,0.031776,0.102656,0.099072,26.3434,0.112704
+841,33.7664,29.6152,27.8117,0.07072,0.957376,0.007552,0.004736,0.03072,0.098432,0.102016,26.4256,0.114592
+842,34.106,29.3203,26.6264,0.082752,1.0417,0.00688,0.005792,0.030208,0.10736,0.109952,25.1269,0.114784
+843,36.6972,27.25,26.3755,0.069824,0.841536,0.006336,0.006144,0.030528,0.099808,0.100544,25.1048,0.116032
+844,35.4472,28.2109,27.6132,0.069632,0.836832,0.006944,0.004096,0.03072,0.09984,0.102528,26.3498,0.112768
+845,35.7118,28.002,26.4095,0.069472,0.83424,0.00736,0.004928,0.03072,0.110592,0.100352,25.1372,0.11472
+846,36.2863,27.5586,26.4362,0.069856,0.878016,0.006944,0.004192,0.030752,0.099424,0.101216,25.131,0.11472
+847,36.5505,27.3594,27.6211,0.071232,0.837568,0.006656,0.00592,0.030496,0.098816,0.101888,26.3541,0.114368
+848,34.6743,28.8398,26.3783,0.069632,0.87984,0.006944,0.004096,0.03072,0.099552,0.101152,25.0732,0.113152
+849,36.3378,27.5195,27.6796,0.070016,0.934272,0.006304,0.006144,0.030208,0.098816,0.100384,26.3188,0.114688
+850,34.6696,28.8438,27.6419,0.069632,0.894016,0.007072,0.004128,0.030752,0.10016,0.100512,26.3219,0.113664
+851,34.5316,28.959,26.5527,0.06992,1.00163,0.006368,0.006112,0.03072,0.099456,0.099328,25.1244,0.114752
+852,36.6054,27.3184,26.4869,0.069824,0.877568,0.00704,0.004096,0.03072,0.10016,0.100544,25.1839,0.112992
+853,35.993,27.7832,27.8011,0.069632,0.958272,0.006336,0.006144,0.034176,0.098976,0.101472,26.4119,0.114144
+854,34.5316,28.959,26.4765,0.069632,0.951904,0.00656,0.005312,0.029504,0.107552,0.10048,25.0909,0.114656
+855,36.2478,27.5879,26.4623,0.06928,0.87744,0.007424,0.004864,0.03072,0.100352,0.101664,25.156,0.114592
+856,35.9273,27.834,27.7026,0.069664,0.90112,0.00736,0.004768,0.0304,0.098752,0.105504,26.3727,0.112384
+857,34.0358,29.3809,26.4888,0.069632,0.948224,0.007424,0.004864,0.03072,0.099904,0.108992,25.1056,0.113472
+858,36.4958,27.4004,27.5251,0.069376,1.17517,0.006784,0.004096,0.03072,0.100352,0.1024,25.9236,0.11264
+859,34.9012,28.6523,27.6972,0.071104,0.913984,0.007936,0.005568,0.029504,0.099584,0.10112,26.3532,0.115168
+860,34.0561,29.3633,26.4582,0.069952,0.890496,0.006912,0.004096,0.03072,0.099808,0.108192,25.133,0.115008
+861,33.9006,29.498,27.1189,0.069632,1.05392,0.006944,0.00576,0.031104,0.099904,0.1008,25.6369,0.114016
+862,37.0612,26.9824,28.5967,0.069888,0.980608,0.006816,0.004096,0.031776,0.099296,0.10048,27.1904,0.113376
+863,33.6554,29.7129,26.5564,0.069632,0.961696,0.007008,0.0056,0.030528,0.09904,0.102112,25.1675,0.113344
+864,35.8017,27.9316,26.5088,0.069568,0.963008,0.016384,0.005632,0.04352,0.1,0.100096,25.0967,0.113856
+865,36.6237,27.3047,27.7569,0.06992,0.93392,0.007232,0.005024,0.04096,0.099648,0.101056,26.3844,0.11472
+866,34.7637,28.7656,26.404,0.069344,0.841824,0.006432,0.00544,0.03072,0.100512,0.106816,25.1271,0.115744
+867,35.8619,27.8848,26.5442,0.0696,0.91552,0.007552,0.004736,0.030752,0.116512,0.104672,25.1801,0.114688
+868,36.1633,27.6523,27.6268,0.069632,0.886784,0.007936,0.004352,0.030752,0.102272,0.106624,26.3057,0.112704
+869,34.9369,28.623,26.3746,0.068416,0.849888,0.00768,0.004608,0.03072,0.100224,0.10048,25.0982,0.114368
+870,35.9097,27.8477,27.6027,0.06816,1.17514,0.007904,0.004768,0.030528,0.100512,0.100416,26.0033,0.112032
+871,35.3103,28.3203,27.6352,0.07168,0.835584,0.007392,0.004896,0.03072,0.100352,0.101408,26.369,0.114208
+872,34.4503,29.0273,26.4602,0.071456,0.878816,0.007552,0.004736,0.03056,0.098464,0.100448,25.1534,0.114688
+873,36.217,27.6113,26.8362,0.069632,0.99328,0.008064,0.005536,0.029408,0.100352,0.101824,25.4115,0.116576
+874,35.9197,27.8398,28.8624,0.069632,0.878592,0.006144,0.005792,0.030208,0.099104,0.102464,27.5576,0.112896
+875,33.1585,30.1582,26.6186,0.0704,0.987136,0.007968,0.005504,0.029536,0.09952,0.101184,25.2027,0.114688
+876,36.1735,27.6445,26.4806,0.070912,0.963328,0.008128,0.00416,0.03072,0.098336,0.102368,25.088,0.114688
+877,36.0107,27.7695,27.6911,0.070144,0.938464,0.007776,0.005536,0.029664,0.100384,0.101504,26.3236,0.114048
+878,34.1721,29.2637,26.5265,0.070592,0.974848,0.007488,0.004768,0.030432,0.098624,0.102368,25.1228,0.114496
+879,36.0817,27.7148,26.5772,0.069888,0.997376,0.007488,0.0048,0.03072,0.098304,0.1024,25.1515,0.114688
+880,36.7183,27.2344,27.7789,0.069984,1.01158,0.006368,0.005568,0.030368,0.099104,0.100448,26.3413,0.114208
+881,34.8703,28.6777,26.3415,0.069824,0.84992,0.007808,0.004288,0.030912,0.099648,0.100928,25.0635,0.11472
+882,36.5714,27.3438,27.6784,0.069632,0.899072,0.00752,0.004768,0.030272,0.098336,0.102144,26.3523,0.1144
+883,34.2819,29.1699,27.6337,0.069536,0.907264,0.007552,0.004832,0.03072,0.100352,0.100352,26.3,0.113056
+884,35.1842,28.4219,26.5052,0.070432,0.990464,0.006912,0.004096,0.03072,0.099936,0.100768,25.0895,0.112416
+885,35.9652,27.8047,26.4936,0.06976,0.95872,0.006432,0.006144,0.030528,0.099872,0.10016,25.1091,0.112928
+886,35.9046,27.8516,27.8508,0.06992,1.06925,0.00752,0.004768,0.038144,0.099072,0.100416,26.3475,0.114208
+887,34.2934,29.1602,26.4297,0.069664,0.918976,0.006976,0.005696,0.03056,0.09888,0.100352,25.0839,0.114688
+888,36.0107,27.7695,26.4897,0.070272,0.987104,0.0064,0.00544,0.029568,0.10016,0.100352,25.0757,0.114688
+889,35.9879,27.7871,27.8332,0.069728,0.958784,0.006688,0.006048,0.0304,0.099808,0.10096,26.4462,0.114624
+890,34.3947,29.0742,26.5339,0.069504,0.972384,0.006688,0.005312,0.029504,0.099872,0.102464,25.1335,0.114688
+891,35.3347,28.3008,27.8028,0.070784,0.899968,0.008,0.005536,0.030816,0.100128,0.10128,26.4643,0.122048
+892,34.1515,29.2812,27.8215,0.0696,0.968096,0.00656,0.004544,0.03072,0.099904,0.10192,26.4278,0.11232
+893,33.0152,30.2891,26.61,0.069408,1.0775,0.006816,0.005824,0.03104,0.100352,0.102304,25.1024,0.114336
+894,37.5642,26.6211,27.775,0.07088,0.93216,0.006624,0.005376,0.03056,0.100352,0.10128,26.4151,0.11264
+895,34.5456,28.9473,27.7254,0.070688,0.910304,0.007744,0.004544,0.03072,0.100256,0.100448,26.386,0.114624
+896,34.6954,28.8223,26.2916,0.069632,0.838848,0.006976,0.004096,0.030752,0.099936,0.102496,25.0248,0.114048
+897,36.2683,27.5723,26.4192,0.070112,0.858112,0.00752,0.0048,0.030688,0.098304,0.100352,25.1305,0.118752
+898,34.1242,29.3047,27.8385,0.069696,1.06288,0.007296,0.0048,0.030272,0.098944,0.101568,26.3504,0.11264
+899,36.3249,27.5293,26.5277,0.071072,0.962144,0.007072,0.005536,0.029376,0.100352,0.10224,25.1353,0.114688
+900,35.9879,27.7871,26.4871,0.069952,0.956448,0.007744,0.004512,0.030496,0.098528,0.100384,25.1059,0.11312
+901,36.4154,27.4609,27.6484,0.069504,0.858688,0.008192,0.006144,0.030592,0.1,0.1008,26.3613,0.113184
+902,34.6438,28.8652,27.6316,0.069664,0.882656,0.007264,0.004768,0.030496,0.098784,0.101408,26.3239,0.11264
+903,33.0493,30.2578,26.6547,0.070976,1.09974,0.021216,0.00544,0.045024,0.09904,0.100352,25.0982,0.114688
+904,37.3096,26.8027,27.7709,0.069632,1.0095,0.006304,0.005568,0.030592,0.099008,0.101376,26.3363,0.112672
+905,34.6578,28.8535,26.454,0.069472,0.898752,0.006624,0.006016,0.030848,0.10016,0.100544,25.1265,0.115136
+906,36.036,27.75,26.5953,0.069728,0.993184,0.007488,0.004768,0.030752,0.09984,0.10192,25.173,0.114688
+907,35.9248,27.8359,27.7733,0.07824,0.942112,0.007296,0.004992,0.03072,0.100128,0.100544,26.3964,0.112864
+908,33.18,30.1387,26.5185,0.069632,0.913408,0.007456,0.004768,0.043072,0.11872,0.101536,25.1474,0.112576
+909,37.6415,26.5664,26.465,0.06944,0.969184,0.006592,0.006112,0.030368,0.099808,0.10128,25.0676,0.114656
+910,36.1429,27.668,27.724,0.069664,0.962752,0.007424,0.004768,0.030464,0.098688,0.10224,26.3262,0.12176
+911,34.8086,28.7285,27.6625,0.07008,0.892832,0.006272,0.006144,0.030656,0.09952,0.099232,26.343,0.114752
+912,34.4549,29.0234,26.5306,0.069856,0.970304,0.00688,0.004384,0.03072,0.099776,0.100928,25.1331,0.114688
+913,36.2068,27.6191,27.6201,0.069984,0.90752,0.006304,0.006144,0.030656,0.0984,0.101632,26.2848,0.11472
+914,34.0064,29.4062,26.4906,0.06976,0.9728,0.007424,0.004768,0.030816,0.099456,0.10128,25.09,0.114304
+915,36.3198,27.5332,26.8822,0.069824,0.923648,0.006432,0.006144,0.03072,0.099776,0.100928,25.5304,0.114304
+916,35.9601,27.8086,28.4808,0.069632,0.868352,0.007424,0.004768,0.030592,0.099744,0.100928,27.1854,0.113984
+917,33.5562,29.8008,26.5199,0.07936,0.910176,0.006144,0.006144,0.03072,0.099872,0.106976,25.1658,0.114688
+918,36.148,27.6641,26.3496,0.069376,0.847712,0.00656,0.005312,0.029504,0.10032,0.100384,25.0769,0.113504
+919,36.3353,27.5215,28.7703,0.069632,0.874496,0.007712,0.004576,0.03072,0.100352,0.340992,27.2292,0.11264
+920,33.5057,29.8457,26.3892,0.070304,0.849856,0.00624,0.005728,0.030464,0.097984,0.103008,25.1128,0.1128
+921,36.2504,27.5859,26.4715,0.069664,0.907072,0.006336,0.006112,0.03072,0.09936,0.100544,25.138,0.113696
+922,36.1327,27.6758,27.7404,0.069504,0.91936,0.006656,0.005344,0.029472,0.104448,0.10176,26.385,0.118784
+923,34.2086,29.2324,27.6391,0.069664,0.837632,0.007264,0.005024,0.030752,0.099936,0.104864,26.3695,0.114528
+924,35.2739,28.3496,26.4369,0.069824,0.917312,0.014336,0.005344,0.029632,0.100192,0.101504,25.084,0.114752
+925,36.4283,27.4512,27.6669,0.069632,0.876704,0.006464,0.006144,0.0304,0.098624,0.114688,26.3514,0.112864
+926,33.7553,29.625,26.5441,0.071104,0.963136,0.007168,0.00464,0.030336,0.099168,0.10224,25.1516,0.114688
+927,37.0236,27.0098,27.6582,0.069664,0.843744,0.00752,0.004768,0.03072,0.1,0.11456,26.3726,0.114688
+928,34.3279,29.1309,27.7211,0.069664,0.892896,0.007392,0.004768,0.030816,0.099936,0.1008,26.4008,0.114048
+929,34.8442,28.6992,26.4664,0.069152,0.895552,0.008064,0.005536,0.03056,0.0992,0.100384,25.1433,0.114688
+930,36.3275,27.5273,26.5523,0.069504,0.993408,0.00768,0.004608,0.030528,0.098528,0.10032,25.1343,0.113408
+931,36.0208,27.7617,27.7403,0.069504,0.947072,0.025824,0.005984,0.039872,0.09984,0.099904,26.3379,0.1144
+932,34.999,28.5723,26.3475,0.069632,0.843776,0.007232,0.004768,0.030496,0.102912,0.102304,25.0731,0.113312
+933,36.2529,27.584,26.5556,0.069376,0.98288,0.00656,0.006048,0.030528,0.098592,0.10144,25.1462,0.113952
+934,36.3895,27.4805,27.7607,0.069632,0.880096,0.006688,0.00528,0.029536,0.100352,0.100384,26.4573,0.111424
+935,34.6672,28.8457,26.3888,0.070016,0.849952,0.007328,0.004928,0.03072,0.11632,0.100768,25.0941,0.114656
+936,35.8267,27.9121,27.6593,0.06864,1.16733,0.0072,0.0048,0.030688,0.098624,0.1016,26.0691,0.111328
+937,34.9417,28.6191,27.6747,0.071104,0.878144,0.007104,0.005536,0.030688,0.098304,0.100928,26.3697,0.113184
+938,34.1858,29.252,26.4824,0.07744,0.903424,0.006272,0.005568,0.030368,0.098432,0.100832,25.1454,0.11472
+939,36.0614,27.7305,26.4109,0.069632,0.856832,0.007872,0.005504,0.029632,0.100352,0.101504,25.1257,0.113824
+940,36.4543,27.4316,27.6874,0.069952,0.974336,0.007168,0.004096,0.03072,0.099424,0.10128,26.2861,0.114304
+941,34.6063,28.8965,26.4991,0.069632,0.917504,0.00736,0.004928,0.03072,0.09952,0.10096,25.1538,0.114688
+942,36.4231,27.4551,26.3506,0.069888,0.833824,0.006624,0.005248,0.0296,0.10016,0.101728,25.0888,0.114688
+943,36.4854,27.4082,27.6775,0.069696,0.881408,0.007616,0.004672,0.03072,0.100352,0.101536,26.3678,0.113664
+944,34.6391,28.8691,26.8345,0.0696,0.94672,0.016192,0.004256,0.03072,0.099456,0.10096,25.454,0.112544
+945,36.0487,27.7402,27.3566,0.070016,0.880192,0.00656,0.006016,0.030816,0.100064,0.100704,26.0485,0.113728
+946,35.0517,28.5293,27.6424,0.07024,0.84784,0.007744,0.004544,0.030528,0.098496,0.1024,26.3674,0.113216
+947,34.6531,28.8574,26.5282,0.070048,0.923648,0.022464,0.005536,0.032928,0.098816,0.101952,25.1581,0.114688
+948,36.2247,27.6055,27.6521,0.069632,0.849568,0.006496,0.00544,0.029376,0.09968,0.108256,26.3706,0.113056
+949,33.4619,29.8848,28.3381,0.069408,1.53552,0.006848,0.00528,0.029536,0.100352,0.1024,26.3754,0.113344
+950,35.3128,28.3184,26.3544,0.07024,0.843392,0.006688,0.005152,0.029664,0.099776,0.106304,25.0801,0.11312
+951,36.6211,27.3066,26.4705,0.075008,0.85264,0.006432,0.006144,0.030752,0.108032,0.100832,25.1775,0.113184
+952,36.1021,27.6992,27.6706,0.069568,0.923712,0.007872,0.004416,0.03072,0.098304,0.104448,26.3201,0.111392
+953,34.4202,29.0527,26.3584,0.06992,0.84608,0.006272,0.006144,0.030528,0.099744,0.101024,25.0854,0.113312
+954,36.3766,27.4902,26.4033,0.071552,0.86896,0.007424,0.004768,0.030368,0.099808,0.101088,25.1067,0.11264
+955,36.1378,27.6719,27.8098,0.071616,0.94624,0.0072,0.005088,0.03072,0.098304,0.10176,26.4339,0.115008
+956,34.2132,29.2285,26.5829,0.07072,0.97376,0.007584,0.004704,0.03056,0.09824,0.102208,25.1806,0.114528
+957,36.374,27.4922,27.6446,0.070016,0.868128,0.006848,0.00576,0.030464,0.098912,0.100576,26.3494,0.114528
+958,34.4781,29.0039,27.6095,0.069568,0.866752,0.007584,0.004704,0.03072,0.09952,0.101184,26.3121,0.117344
+959,33.1241,30.1895,26.5687,0.069632,0.995328,0.015968,0.005696,0.038752,0.10656,0.101024,25.1221,0.113664
+960,37.6028,26.5938,26.8228,0.070976,0.89568,0.0072,0.0048,0.0304,0.098592,0.102528,25.4998,0.112736
+961,35.5778,28.1074,28.6317,0.069888,0.96912,0.0184,0.005632,0.030944,0.098528,0.100416,27.2261,0.112672
+962,33.532,29.8223,26.4531,0.069632,0.928864,0.007072,0.004096,0.047104,0.1,0.100704,25.0819,0.113792
+963,36.1582,27.6562,26.4252,0.069856,0.9008,0.006816,0.005792,0.030656,0.100704,0.100416,25.0962,0.11392
+964,36.3533,27.5078,27.6952,0.069632,0.954496,0.007328,0.0048,0.030624,0.098752,0.102208,26.3148,0.112576
+965,34.7661,28.7637,26.4069,0.071456,0.882944,0.007584,0.004672,0.045056,0.100352,0.104448,25.0773,0.11312
+966,36.462,27.4258,26.4602,0.070656,0.850976,0.007232,0.004768,0.0304,0.098432,0.102304,25.1822,0.113152
+967,35.9248,27.8359,27.6787,0.076128,0.916704,0.006976,0.00576,0.030976,0.099776,0.1008,26.3284,0.113152
+968,34.6978,28.8203,27.4288,0.069664,0.872416,0.007872,0.004416,0.030752,0.098272,0.1024,26.1284,0.114592
+969,35.0589,28.5234,26.4214,0.069696,0.876064,0.006688,0.005952,0.030528,0.098688,0.1024,25.1167,0.11472
+970,35.9223,27.8379,27.6833,0.069952,0.929984,0.007872,0.004416,0.03072,0.099552,0.101152,26.327,0.11264
+971,34.9297,28.6289,26.4028,0.069568,0.882752,0.00736,0.004928,0.03072,0.09936,0.10112,25.0924,0.114656
+972,36.4724,27.418,27.6111,0.069632,0.856064,0.007744,0.004544,0.03072,0.099552,0.101152,26.3283,0.11344
+973,34.6883,28.8281,27.6606,0.068576,0.90112,0.008096,0.005536,0.030912,0.099904,0.101312,26.3311,0.114016
+974,33.849,29.543,26.3991,0.069824,0.874368,0.006912,0.004096,0.03072,0.098304,0.102432,25.0982,0.114272
+975,37.3259,26.791,26.3557,0.069664,0.845472,0.006464,0.006144,0.03072,0.09936,0.099328,25.0852,0.113344
+976,36.3662,27.498,27.6884,0.069632,0.864224,0.006176,0.005728,0.030592,0.098848,0.101952,26.3984,0.1128
+977,34.6836,28.832,27.6644,0.069632,0.863584,0.006816,0.005664,0.030592,0.098912,0.100352,26.376,0.112864
+978,34.6883,28.8281,26.4537,0.069728,0.917696,0.007552,0.004736,0.03056,0.10256,0.1024,25.1023,0.116128
+979,36.1531,27.6602,27.6613,0.069536,0.88688,0.007776,0.004512,0.032384,0.10256,0.100672,26.3433,0.113696
+980,34.4456,29.0312,26.5359,0.07072,0.977888,0.007264,0.0048,0.030752,0.099616,0.101248,25.131,0.11264
+981,35.9854,27.7891,26.5301,0.069632,0.96288,0.007584,0.004704,0.030752,0.10032,0.102208,25.1392,0.112832
+982,36.2992,27.5488,28.4443,0.066912,0.880672,0.006784,0.005152,0.030848,0.099168,0.1024,27.1375,0.114912
+983,33.7308,29.6465,26.4747,0.069856,0.915456,0.006144,0.006144,0.040352,0.098912,0.100352,25.1208,0.116704
+984,35.5333,28.1426,26.6404,0.075808,1.06653,0.016576,0.004352,0.03072,0.099872,0.100832,25.131,0.11472
+985,36.031,27.7539,27.7586,0.069632,0.937984,0.007552,0.004736,0.03072,0.099648,0.1008,26.3947,0.112864
+986,34.4456,29.0312,26.4356,0.069664,0.923616,0.007392,0.0048,0.030592,0.098592,0.101888,25.0863,0.112736
+987,36.0538,27.7363,26.3926,0.069664,0.845696,0.00768,0.004736,0.037984,0.100704,0.100928,25.1105,0.114688
+988,35.8594,27.8867,27.662,0.084,0.918944,0.006752,0.005536,0.03136,0.099616,0.101056,26.3004,0.114368
+989,34.5759,28.9219,27.8596,0.070208,1.01738,0.00672,0.00592,0.0304,0.098848,0.101984,26.4135,0.114688
+990,34.7142,28.8066,26.4602,0.069632,0.941152,0.007072,0.004096,0.03072,0.098336,0.107616,25.0868,0.114688
+991,36.5845,27.334,27.605,0.069632,0.867968,0.006528,0.006144,0.03072,0.09952,0.101152,26.3107,0.112672
+992,34.3164,29.1406,26.3646,0.068384,0.902368,0.006784,0.005184,0.030816,0.099168,0.101856,25.0373,0.112672
+993,36.2863,27.5586,26.8471,0.069568,0.928384,0.007744,0.004544,0.031744,0.09904,0.101952,25.4901,0.114016
+994,35.0637,28.5195,28.2819,0.071584,1.60573,0.008064,0.004224,0.03072,0.09936,0.101344,26.2451,0.115744
+995,34.837,28.7051,26.364,0.069376,0.8664,0.0064,0.006144,0.030656,0.099712,0.101056,25.0716,0.112672
+996,36.4024,27.4707,26.3221,0.07072,0.854976,0.007776,0.004512,0.03072,0.09952,0.1008,25.0392,0.113888
+997,35.9349,27.8281,27.6664,0.07088,0.883488,0.007328,0.00496,0.03072,0.099456,0.101248,26.3537,0.114688
+998,35.0469,28.5332,26.325,0.070688,0.877536,0.00736,0.0048,0.03024,0.100096,0.102272,25.0173,0.114688
+999,36.7684,27.1973,27.6295,0.070912,0.896992,0.006944,0.005824,0.030432,0.098912,0.101376,26.3034,0.114752
+1000,34.7001,28.8184,26.4453,0.069632,0.968512,0.006336,0.005504,0.030496,0.09888,0.100672,25.0491,0.116224
+1001,36.4102,27.4648,26.4371,0.069952,0.90832,0.007136,0.005504,0.03056,0.099168,0.101472,25.1002,0.11472
+1002,36.3404,27.5176,27.5723,0.069568,0.866432,0.007808,0.00448,0.03072,0.099584,0.100384,26.2807,0.11264
+1003,34.6578,28.8535,26.4914,0.069984,1.01594,0.007936,0.005536,0.029536,0.100352,0.100352,25.0471,0.114656
+1004,36.3198,27.5332,26.3941,0.069632,0.876544,0.006144,0.005728,0.030208,0.099232,0.100384,25.0915,0.114784
+1005,36.3224,27.5312,27.648,0.069632,0.882688,0.007584,0.004704,0.03072,0.100224,0.10048,26.339,0.113024
+1006,34.759,28.7695,26.3987,0.06976,0.88496,0.00656,0.005376,0.02944,0.100032,0.100672,25.0879,0.113952
+1007,36.5427,27.3652,26.3721,0.069632,0.87216,0.006432,0.006144,0.03056,0.098464,0.10144,25.0726,0.114688
+1008,36.1531,27.6602,27.753,0.069536,1.00781,0.006592,0.005312,0.03056,0.099296,0.100384,26.3207,0.112768
+1009,34.404,29.0664,26.8868,0.069856,0.97936,0.006176,0.006144,0.03072,0.098304,0.102272,25.4812,0.112832
+1010,35.892,27.8613,27.2889,0.069728,0.847776,0.00752,0.004768,0.031744,0.099328,0.100384,26.0147,0.112896
+1011,34.6649,28.8477,27.5994,0.069312,0.86832,0.007008,0.0056,0.030976,0.107808,0.101376,26.2943,0.114688
+1012,34.9273,28.6309,26.3571,0.069184,0.842304,0.007648,0.00464,0.030592,0.099648,0.101184,25.086,0.115904
+1013,35.9323,27.8301,26.8308,0.069632,0.9216,0.00784,0.005536,0.03088,0.1032,0.100384,25.4784,0.113344
+1014,35.8946,27.8594,27.7991,0.069664,1.06406,0.009056,0.004096,0.033984,0.099136,0.102432,26.3035,0.113184
+1015,33.8222,29.5664,26.4199,0.069952,0.862592,0.006144,0.006144,0.030336,0.098688,0.102176,25.1312,0.112672
+1016,36.1863,27.6348,26.4121,0.071232,0.897216,0.0064,0.005472,0.029344,0.098304,0.102336,25.0893,0.112448
+1017,36.2478,27.5879,27.7087,0.070848,0.930624,0.008064,0.005536,0.029408,0.100032,0.100352,26.3478,0.115968
+1018,34.2017,29.2383,26.4251,0.070656,0.920576,0.020256,0.00432,0.03056,0.098112,0.10608,25.0601,0.114432
+1019,36.6421,27.291,26.4397,0.069632,0.913184,0.006368,0.006144,0.030528,0.100224,0.100672,25.0982,0.114688
+1020,36.276,27.5664,27.7625,0.069728,0.977312,0.006368,0.005568,0.030432,0.098752,0.10064,26.3599,0.113792
+1021,34.8869,28.6641,26.42,0.070272,0.843488,0.006624,0.006016,0.030656,0.099968,0.100928,25.1467,0.115424
+1022,36.3378,27.5195,27.6583,0.069632,0.87216,0.006432,0.00544,0.03072,0.099008,0.101408,26.3608,0.112672
+1023,34.8869,28.6641,27.6576,0.079936,0.870336,0.008032,0.005536,0.02944,0.100224,0.101632,26.3484,0.114048
+1024,34.6625,28.8496,26.4847,0.069888,0.913408,0.007776,0.004512,0.03072,0.099456,0.10112,25.1435,0.114336
+1025,36.2324,27.5996,27.7326,0.070112,0.90848,0.007072,0.005536,0.030496,0.099168,0.101696,26.3964,0.1136
+1026,34.5526,28.9414,27.7381,0.069632,0.863808,0.006592,0.00528,0.030688,0.0992,0.100576,26.4476,0.114688
+1027,34.7236,28.7988,26.3949,0.069728,0.899136,0.006496,0.006144,0.03072,0.100352,0.102176,25.0657,0.114432
+1028,35.2714,28.3516,26.4876,0.068544,0.991232,0.006272,0.006016,0.03072,0.0984,0.102304,25.0695,0.114592
+1029,36.7737,27.1934,27.7299,0.07072,0.975776,0.006176,0.006144,0.03072,0.1016,0.1008,26.3268,0.1112
+1030,34.9846,28.584,26.3458,0.075136,0.852864,0.00784,0.004448,0.03072,0.099904,0.1008,25.0614,0.112672
+1031,36.5714,27.3438,26.3436,0.069664,0.853408,0.00672,0.00592,0.030688,0.09856,0.101888,25.0638,0.112864
+1032,35.8017,27.9316,27.9347,0.069632,1.17146,0.00784,0.004448,0.03072,0.09936,0.101344,26.3373,0.11264
+1033,34.618,28.8867,26.497,0.070944,0.9592,0.008096,0.005536,0.030432,0.099136,0.100512,25.1085,0.114688
+1034,33.8557,29.5371,27.7484,0.069824,1.03533,0.006912,0.004096,0.03216,0.114336,0.102624,26.2703,0.112768
+1035,36.671,27.2695,27.5774,0.069632,0.837632,0.00752,0.004768,0.03072,0.099712,0.1008,26.3128,0.113824
+1036,34.8015,28.7344,26.3509,0.069664,0.839648,0.007296,0.0048,0.030912,0.098304,0.101568,25.0844,0.114368
+1037,36.5532,27.3574,26.3639,0.069632,0.833536,0.007616,0.004672,0.03072,0.099872,0.100768,25.1024,0.114688
+1038,36.2401,27.5938,27.6187,0.069664,0.901088,0.006144,0.00576,0.030592,0.098816,0.102048,26.2905,0.11408
+1039,34.0947,29.3301,26.4554,0.069664,0.98896,0.017664,0.004896,0.03056,0.098624,0.100352,25.03,0.11472
+1040,36.9222,27.084,26.4383,0.069472,0.90608,0.008,0.004288,0.030752,0.098272,0.1024,25.1044,0.114688
+1041,35.9778,27.7949,27.6746,0.069632,0.913408,0.007456,0.004832,0.031776,0.099296,0.100352,26.3347,0.113216
+1042,34.5923,28.9082,26.8466,0.070752,0.93056,0.006304,0.0056,0.030432,0.099136,0.100352,25.4912,0.112224
+1043,35.9803,27.793,27.2068,0.070816,0.86832,0.00704,0.005568,0.030528,0.099072,0.100416,25.9108,0.114272
+1044,35.1963,28.4121,27.6171,0.069664,0.882688,0.007776,0.00448,0.03072,0.098336,0.102368,26.3066,0.114496
+1045,34.9178,28.6387,26.3908,0.069504,0.874944,0.007872,0.005536,0.030848,0.1032,0.100352,25.0839,0.114688
+1046,36.0462,27.7422,26.817,0.06928,0.936224,0.006688,0.005824,0.03104,0.098304,0.1064,25.4499,0.113344
+1047,36.0513,27.7383,28.0176,0.068576,1.02752,0.008768,0.00608,0.032864,0.104384,0.352032,26.3042,0.113216
+1048,34.4619,29.0176,26.3622,0.069952,0.825344,0.007232,0.0048,0.030464,0.098816,0.1024,25.1105,0.112704
+1049,36.3869,27.4824,26.3885,0.073728,0.843776,0.007424,0.004864,0.03072,0.100352,0.1016,25.1113,0.11472
+1050,36.4309,27.4492,27.6228,0.069728,0.845824,0.007328,0.004768,0.030272,0.098944,0.102176,26.3512,0.112576
+1051,34.5339,28.957,26.3827,0.069952,0.875744,0.006944,0.005664,0.03056,0.098944,0.100352,25.0798,0.114688
+1052,35.9298,27.832,26.4307,0.07168,0.920992,0.006752,0.004096,0.03072,0.100352,0.100384,25.0831,0.11264
+1053,34.5642,28.9316,27.8051,0.070848,1.06947,0.00656,0.006144,0.0304,0.098624,0.101856,26.3051,0.116128
+1054,36.0411,27.7461,26.7223,0.070848,0.869184,0.008032,0.004256,0.03072,0.098304,0.1024,25.4239,0.114688
+1055,35.6223,28.0723,28.4877,0.069504,0.868512,0.007264,0.005056,0.030688,0.098304,0.1024,27.1872,0.118784
+1056,34.029,29.3867,26.4172,0.069632,0.915456,0.00752,0.004768,0.03072,0.100096,0.100608,25.0757,0.112736
+1057,36.2889,27.5566,26.4354,0.069632,0.875584,0.007104,0.005536,0.037472,0.100224,0.101888,25.1235,0.114464
+1058,36.1327,27.6758,27.6773,0.069952,0.88048,0.006816,0.004096,0.030752,0.100096,0.10064,26.3718,0.11264
+1059,34.7873,28.7461,26.3556,0.069888,0.84176,0.00656,0.00608,0.030336,0.098752,0.100352,25.0875,0.114368
+1060,36.2324,27.5996,26.353,0.069632,0.841728,0.00752,0.004768,0.030592,0.098432,0.114688,25.0716,0.11408
+1061,36.2735,27.5684,27.7559,0.069376,0.928352,0.00752,0.0144,0.031232,0.099744,0.101056,26.3897,0.114496
+1062,34.5339,28.957,27.7465,0.0696,0.96672,0.006304,0.015776,0.031328,0.099904,0.1008,26.3433,0.1128
+1063,34.275,29.1758,26.4855,0.0704,0.937952,0.007232,0.005088,0.03072,0.100352,0.102112,25.117,0.114688
+1064,36.3121,27.5391,27.6584,0.06896,0.967424,0.007296,0.0048,0.030592,0.100256,0.100768,26.2656,0.112672
+1065,34.4781,29.0039,26.4888,0.070944,0.967392,0.007232,0.005056,0.03072,0.098336,0.100384,25.0952,0.1136
+1066,36.1531,27.6602,26.4561,0.070592,0.919552,0.008,0.004288,0.03072,0.099872,0.100704,25.1086,0.11376
+1067,36.3378,27.5195,28.5396,0.067296,0.896,0.007968,0.005536,0.03056,0.100448,0.101088,27.216,0.11472
+1068,33.5782,29.7812,26.4106,0.069632,0.929184,0.006752,0.004096,0.03072,0.098304,0.1024,25.0542,0.115296
+1069,35.5679,28.1152,26.5365,0.069472,1.08208,0.007584,0.004704,0.03072,0.099648,0.100608,25.0262,0.11552
+1070,36.7578,27.2051,27.6507,0.06976,0.898816,0.00688,0.004096,0.03072,0.099328,0.101376,26.3266,0.113088
+1071,34.7283,28.7949,26.4568,0.069408,0.918272,0.006304,0.006144,0.030496,0.098528,0.101664,25.1123,0.113696
+1072,36.3895,27.4805,26.4094,0.069984,0.874624,0.008064,0.004224,0.03072,0.100256,0.100448,25.108,0.11312
+1073,36.5193,27.3828,27.6099,0.070048,0.850272,0.006208,0.00608,0.03072,0.100064,0.10064,26.3332,0.11264
+1074,34.7189,28.8027,26.3003,0.069792,0.857952,0.020672,0.005792,0.038976,0.099712,0.10112,24.9929,0.113344
+1075,36.5584,27.3535,27.6332,0.070656,0.907552,0.00688,0.005792,0.03024,0.107072,0.100608,26.2902,0.114272
+1076,34.7307,28.793,27.6624,0.069856,0.874464,0.007296,0.004768,0.03024,0.100096,0.100384,26.3625,0.112864
+1077,33.8021,29.584,26.4317,0.069536,0.9,0.007488,0.0048,0.03072,0.099808,0.100896,25.1023,0.116096
+1078,36.7078,27.2422,26.8754,0.069728,0.997696,0.008032,0.004192,0.030752,0.098272,0.100352,25.4522,0.114176
+1079,36.0538,27.7363,28.4071,0.069664,0.886752,0.007424,0.004864,0.03072,0.098304,0.100192,27.0952,0.113984
+1080,33.5408,29.8145,26.4935,0.069792,0.943616,0.007072,0.004128,0.030752,0.098272,0.1024,25.1249,0.11264
+1081,36.3895,27.4805,26.3844,0.069632,0.876288,0.0064,0.006144,0.030336,0.098688,0.101792,25.0819,0.113248
+1082,36.1556,27.6582,27.7765,0.069632,0.958464,0.007776,0.004512,0.030528,0.098656,0.102016,26.3908,0.114176
+1083,34.2819,29.1699,26.4581,0.069632,0.966656,0.007584,0.004704,0.03072,0.100064,0.100672,25.0646,0.113472
+1084,36.5401,27.3672,26.3591,0.073248,0.913536,0.006496,0.005376,0.030496,0.099296,0.102272,25.0144,0.113984
+1085,36.0589,27.7324,27.7611,0.070144,0.995296,0.006144,0.006144,0.030752,0.099424,0.100352,26.338,0.114848
+1086,34.9107,28.6445,27.5538,0.070688,0.882656,0.007072,0.004192,0.030752,0.098304,0.10032,26.2469,0.112896
+1087,34.9393,28.6211,26.3516,0.070048,0.878272,0.006752,0.005632,0.031008,0.098528,0.101536,25.0438,0.116064
+1088,36.6237,27.3047,27.6754,0.070048,0.84,0.007648,0.00464,0.030688,0.099456,0.10128,26.4088,0.1128
+1089,34.3855,29.082,26.43,0.069888,0.90752,0.007232,0.005056,0.030752,0.09968,0.100992,25.0941,0.114688
+1090,36.2889,27.5566,26.298,0.069824,0.876128,0.006784,0.004096,0.03072,0.099648,0.105152,24.9917,0.113952
+1091,36.574,27.3418,27.6028,0.069632,0.863232,0.007072,0.005536,0.030432,0.099296,0.101792,26.3115,0.114368
+1092,34.2017,29.2383,26.4479,0.071168,0.970784,0.006624,0.005248,0.029568,0.099936,0.100768,25.0502,0.113536
+1093,36.7447,27.2148,26.3073,0.070016,0.846176,0.007584,0.004736,0.031712,0.099328,0.101536,25.0326,0.1136
+1094,36.3146,27.5371,27.624,0.069984,0.868608,0.008064,0.004224,0.03072,0.099328,0.101408,26.3286,0.113088
+1095,34.7755,28.7559,26.4357,0.069952,0.929536,0.00688,0.005728,0.030304,0.099136,0.100352,25.0798,0.114016
+1096,36.3921,27.4785,26.3001,0.069632,0.864256,0.007712,0.004576,0.03072,0.100352,0.101536,25.0069,0.1144
+1097,33.9635,29.4434,27.8068,0.071104,0.981088,0.006624,0.005952,0.030784,0.099744,0.1008,26.3964,0.114272
+1098,36.1965,27.627,26.8933,0.068704,1.03171,0.006528,0.005312,0.03088,0.098976,0.1024,25.4362,0.112672
+1099,35.9197,27.8398,27.1732,0.069184,0.893056,0.006784,0.005792,0.030464,0.098912,0.399232,25.5571,0.11264
+1100,35.3664,28.2754,27.6268,0.069632,0.888832,0.007552,0.004736,0.030496,0.098528,0.101824,26.3124,0.112864
+1101,34.7236,28.7988,26.3763,0.070656,0.883648,0.006208,0.006144,0.030752,0.098304,0.101856,25.066,0.112704
+1102,35.6372,28.0605,26.8329,0.069696,0.952256,0.007616,0.004672,0.030752,0.098272,0.102336,25.4557,0.111584
+1103,35.8318,27.9082,27.6705,0.069632,0.980672,0.006464,0.00592,0.030432,0.098816,0.101376,26.2625,0.114688
+1104,34.8134,28.7246,26.37,0.069632,0.87008,0.006464,0.005376,0.029472,0.099616,0.102816,25.0719,0.114688
+1105,36.2247,27.6055,26.4417,0.07072,0.932832,0.007648,0.004608,0.03072,0.100352,0.101728,25.0723,0.120832
+1106,36.4724,27.418,27.6214,0.069696,0.853984,0.007872,0.004416,0.03072,0.098304,0.101696,26.34,0.114688
+1107,34.344,29.1172,26.4398,0.07088,0.960672,0.006784,0.005856,0.030112,0.0992,0.101728,25.0498,0.114848
+1108,36.2478,27.5879,26.4478,0.069472,0.94032,0.006848,0.004096,0.03072,0.09936,0.101344,25.0796,0.115968
+1109,36.0082,27.7715,27.7565,0.069632,0.958464,0.008032,0.005536,0.02944,0.100352,0.101664,26.3687,0.114656
+1110,34.5456,28.9473,26.444,0.069824,0.958496,0.00624,0.005728,0.03056,0.098784,0.101824,25.0579,0.114688
+1111,36.0158,27.7656,27.7328,0.06992,0.952864,0.008096,0.005248,0.029664,0.100288,0.102112,26.3511,0.113504
+1112,34.7072,28.8125,27.6468,0.0696,0.924672,0.008128,0.00416,0.03072,0.098336,0.102368,26.2962,0.112672
+1113,34.6297,28.877,26.5099,0.069312,0.973568,0.00624,0.006144,0.030752,0.098272,0.100352,25.1105,0.114688
+1114,35.2933,28.334,26.6124,0.076416,1.09158,0.008032,0.004256,0.044704,0.108288,0.10096,25.0634,0.114688
+1115,36.0843,27.7129,27.7094,0.070752,0.943008,0.0072,0.005088,0.03072,0.100352,0.100352,26.3393,0.11264
+1116,34.7448,28.7812,26.3549,0.070688,0.920544,0.007968,0.00432,0.03072,0.099648,0.101056,25.0076,0.112448
+1117,36.3895,27.4805,26.4398,0.069024,0.977792,0.00784,0.005504,0.029664,0.100352,0.100352,25.0327,0.116576
+1118,36.294,27.5527,27.6769,0.069664,0.872576,0.006368,0.005568,0.030464,0.099072,0.1024,26.3782,0.112512
+1119,33.5057,29.8457,26.4917,0.07008,0.9808,0.006752,0.0056,0.033152,0.106688,0.101952,25.0731,0.1136
+1120,37.0719,26.9746,26.5196,0.071104,1.01226,0.006176,0.005664,0.030464,0.09904,0.100512,25.0814,0.112928
+1121,36.4568,27.4297,27.5538,0.069632,0.825344,0.007744,0.004544,0.03072,0.100128,0.100576,26.3015,0.113664
+1122,34.5083,28.9785,26.4198,0.06928,0.912384,0.007872,0.004384,0.030752,0.110208,0.101824,25.0684,0.114688
+1123,35.998,27.7793,27.6927,0.069632,0.86368,0.00672,0.005888,0.030464,0.10016,0.101088,26.4007,0.114368
+1124,34.3049,29.1504,27.6711,0.069696,0.91184,0.008,0.004288,0.030752,0.10032,0.10208,26.3315,0.112608
+1125,34.4526,29.0254,26.4224,0.071328,0.929632,0.006656,0.005984,0.030368,0.09872,0.100544,25.0649,0.114304
+1126,36.1659,27.6504,26.4315,0.069664,0.946144,0.007392,0.0048,0.03072,0.0984,0.102112,25.059,0.113216
+1127,36.5193,27.3828,28.9092,0.069856,0.871744,0.006816,0.005792,0.03072,0.098656,0.104096,27.6074,0.114176
+1128,33.0259,30.2793,26.4438,0.069632,0.976704,0.006336,0.005504,0.030688,0.098976,0.1024,25.0409,0.11264
+1129,34.9846,28.584,26.4561,0.069632,0.958496,0.00752,0.004736,0.03072,0.100352,0.102368,25.0676,0.114688
+1130,36.9328,27.0762,27.6475,0.069568,0.943744,0.007008,0.004096,0.03072,0.100064,0.10064,26.2779,0.113728
+1131,34.9536,28.6094,26.2897,0.070848,0.828224,0.008096,0.005504,0.029568,0.100192,0.101472,25.0316,0.11424
+1132,36.3146,27.5371,26.3724,0.069664,0.837312,0.006912,0.005568,0.030848,0.099968,0.102304,25.1068,0.112928
+1133,35.8795,27.8711,27.6808,0.069632,0.925696,0.007488,0.0048,0.03072,0.099968,0.100736,26.3241,0.1176
+1134,34.5479,28.9453,26.6834,0.069856,0.946176,0.008064,0.004224,0.03072,0.09936,0.101344,25.3048,0.118784
+1135,36.4128,27.4629,27.2139,0.069696,0.820384,0.007008,0.005568,0.030496,0.10016,0.100736,25.9652,0.114688
+1136,34.837,28.7051,27.6931,0.069632,0.892928,0.007296,0.0048,0.03056,0.098688,0.102368,26.3752,0.111616
+1137,34.6016,28.9004,26.4272,0.06976,0.895296,0.0064,0.006144,0.030336,0.1,0.100736,25.1043,0.114272
+1138,36.171,27.6465,27.7485,0.069632,0.909312,0.007328,0.004768,0.043232,0.100032,0.112224,26.3891,0.112928
+1139,34.9631,28.6016,27.5895,0.069792,0.832256,0.00816,0.005504,0.030432,0.099264,0.101792,26.3276,0.114688
+1140,32.4544,30.8125,26.6458,0.069632,1.14182,0.006944,0.004256,0.030752,0.100096,0.100576,25.0757,0.116
+1141,38.782,25.7852,26.4707,0.069568,0.966816,0.006304,0.006144,0.030496,0.099872,0.101056,25.0768,0.113632
+1142,35.9097,27.8477,27.6165,0.070752,0.934816,0.006144,0.005216,0.0296,0.098304,0.10224,26.2555,0.113952
+1143,34.9775,28.5898,26.3168,0.069632,0.827264,0.006272,0.006144,0.03008,0.100992,0.10448,25.0583,0.1136
+1144,33.9703,29.4375,26.5835,0.06912,1.07968,0.006656,0.005344,0.03104,0.100864,0.101696,25.0763,0.1128
+1145,37.8698,26.4062,27.7295,0.069216,0.958784,0.006784,0.005952,0.030912,0.098304,0.101472,26.3444,0.113696
+1146,34.1789,29.2578,26.4211,0.070656,0.96768,0.008032,0.004256,0.03072,0.098304,0.1024,25.0264,0.112672
+1147,34.7637,28.7656,27.6943,0.071328,1.01821,0.007712,0.004608,0.03072,0.09984,0.098784,26.2492,0.113856
+1148,36.4413,27.4414,27.556,0.069856,0.823296,0.007968,0.00432,0.03072,0.098304,0.100384,26.3065,0.114656
+1149,34.404,29.0664,26.4023,0.071072,0.92016,0.007904,0.005536,0.030752,0.099168,0.102432,25.0491,0.116192
+1150,36.1225,27.6836,26.4326,0.069664,0.947648,0.006688,0.005888,0.030912,0.09968,0.100608,25.0557,0.115808
+1151,35.1118,28.4805,29.2972,0.069376,1.02896,0.02224,0.005536,0.029632,0.100288,0.10208,27.8259,0.11328
+1152,32.7869,30.5,26.3041,0.069472,0.841952,0.006656,0.005312,0.03072,0.101152,0.100352,25.034,0.114496
+1153,36.0158,27.7656,26.4628,0.068224,0.954016,0.006496,0.006144,0.030688,0.100384,0.124384,25.0578,0.114688
+1154,36.0817,27.7148,27.6877,0.06976,0.94688,0.008,0.004256,0.030752,0.098144,0.103616,26.3133,0.112992
+1155,34.6273,28.8789,26.4542,0.069888,0.93088,0.007072,0.005568,0.030528,0.099104,0.10224,25.0953,0.113632
+1156,36.4413,27.4414,26.3874,0.068576,0.85504,0.007104,0.004128,0.03072,0.099936,0.101952,25.1068,0.113184
+1157,35.9551,27.8125,27.707,0.06944,0.915648,0.007776,0.004512,0.03072,0.099968,0.100736,26.3654,0.1128
+1158,32.1325,31.1211,27.1994,0.07088,1.01613,0.006624,0.005504,0.03296,0.098592,0.100512,25.4648,0.403392
+1159,37.9035,26.3828,26.4293,0.07168,0.924704,0.007136,0.005536,0.02928,0.1,0.112256,25.0642,0.11456
+1160,36.1582,27.6562,27.6272,0.069632,0.966016,0.006784,0.00512,0.029696,0.099904,0.102528,26.2349,0.112544
+1161,34.7826,28.75,26.3868,0.06992,0.915424,0.00624,0.006144,0.030432,0.098592,0.100352,25.0448,0.114848
+1162,36.0158,27.7656,27.7176,0.069824,0.881536,0.007072,0.004128,0.03072,0.099552,0.101184,26.411,0.11264
+1163,32.7491,30.5352,27.967,0.071008,1.19616,0.00672,0.004064,0.030336,0.099776,0.1008,26.3436,0.114464
+1164,36.148,27.6641,26.4167,0.069632,0.954368,0.008,0.004288,0.03072,0.098304,0.1024,25.0344,0.114592
+1165,36.3018,27.5469,26.4409,0.069664,0.943232,0.007008,0.0056,0.02928,0.099296,0.101344,25.0709,0.114528
+1166,36.4672,27.4219,27.5674,0.069632,0.822784,0.006656,0.005216,0.0296,0.100352,0.10192,26.3173,0.113952
+1167,34.7213,28.8008,26.3864,0.06864,0.890688,0.007168,0.004576,0.0456,0.099584,0.10112,25.0532,0.11584
+1168,35.6347,28.0625,26.5728,0.085792,1.0576,0.007968,0.012512,0.032224,0.105024,0.102368,25.055,0.114272
+1169,36.276,27.5664,27.6541,0.069664,0.964416,0.006304,0.006144,0.038912,0.099456,0.10096,26.2556,0.11264
+1170,34.7968,28.7383,26.392,0.090144,0.896192,0.006944,0.004096,0.03072,0.100352,0.102048,25.0474,0.114144
+1171,35.8293,27.9102,27.6538,0.069664,1.28109,0.007072,0.005536,0.030656,0.09856,0.100768,25.9482,0.11232
+1172,34.7637,28.7656,27.6783,0.070752,0.902112,0.007424,0.004768,0.03024,0.098848,0.102432,26.3475,0.11424
+1173,34.2567,29.1914,26.4425,0.070304,0.954496,0.008192,0.00576,0.039296,0.098304,0.1024,25.047,0.116736
+1174,32.6239,30.6523,26.9701,0.069632,1.0912,0.006528,0.014336,0.032096,0.102304,0.104288,25.4371,0.11264
+1175,40.1003,24.9375,28.4003,0.069664,0.830048,0.007424,0.004896,0.030688,0.100224,0.101728,27.1409,0.114688
+1176,33.5166,29.8359,26.4733,0.06976,0.989376,0.006688,0.005216,0.02976,0.100192,0.10176,25.0559,0.114656
+1177,36.0259,27.7578,26.3826,0.06992,0.933888,0.008096,0.005536,0.029376,0.099968,0.100736,25.0215,0.1136
+1178,36.4257,27.4531,27.6234,0.069632,0.9272,0.006688,0.005184,0.029632,0.100352,0.1024,26.2691,0.11328
+1179,34.6836,28.832,26.3557,0.069312,0.864576,0.006144,0.006144,0.030528,0.098496,0.099936,25.0659,0.114688
+1180,36.1123,27.6914,26.4272,0.069632,0.956416,0.008128,0.00416,0.03072,0.098304,0.100352,25.0448,0.114688
+1181,35.7193,27.9961,27.6683,0.069664,0.91952,0.007744,0.004544,0.03072,0.09936,0.099296,26.3229,0.114464
+1182,34.8347,28.707,26.3699,0.068256,0.868352,0.006144,0.005792,0.030368,0.099008,0.101632,25.0756,0.114784
+1183,35.6993,28.0117,27.5115,0.069536,1.1656,0.006656,0.006048,0.030112,0.113344,0.110592,25.8962,0.113376
+1184,33.3377,29.9961,27.8509,0.069632,1.11411,0.00768,0.016896,0.03072,0.098528,0.101504,26.299,0.112768
+1185,35.1503,28.4492,26.4235,0.06992,0.954368,0.007264,0.005024,0.03072,0.099552,0.101152,25.0245,0.130976
+1186,37.0585,26.9844,26.4476,0.069856,0.86976,0.006848,0.004096,0.03072,0.09952,0.101184,25.1432,0.122432
+1187,36.1378,27.6719,27.6547,0.069728,0.963008,0.007776,0.004512,0.030752,0.10016,0.100512,26.2646,0.113632
+1188,34.4271,29.0469,26.3588,0.069952,0.928128,0.006464,0.005376,0.029504,0.100096,0.100736,25.0038,0.114688
+1189,36.5088,27.3906,26.3497,0.069728,0.83296,0.00672,0.005888,0.030368,0.098912,0.100352,25.0892,0.115488
+1190,36.276,27.5664,27.6187,0.069568,0.844096,0.007584,0.004704,0.03056,0.097984,0.100416,26.35,0.113824
+1191,34.3256,29.1328,27.6757,0.069632,0.929792,0.008,0.005536,0.029632,0.099808,0.100704,26.3186,0.113984
+1192,32.599,30.6758,26.6673,0.06992,1.16362,0.014496,0.004096,0.030592,0.106624,0.10176,25.06,0.116256
+1193,38.6941,25.8438,27.5927,0.070688,0.855008,0.007296,0.004992,0.030624,0.0984,0.100352,26.3119,0.113408
+1194,34.5759,28.9219,26.3188,0.069664,0.863392,0.006976,0.004096,0.03072,0.099456,0.113536,25.0175,0.113504
+1195,36.4724,27.418,26.3642,0.069632,0.893312,0.00672,0.005888,0.030208,0.099104,0.102112,25.0432,0.114016
+1196,33.5694,29.7891,27.75,0.06928,0.973696,0.007136,0.0048,0.030464,0.09888,0.101568,26.3519,0.112224
+1197,36.9249,27.082,26.5011,0.070816,0.988,0.007808,0.005504,0.029696,0.100352,0.10048,25.0838,0.114688
+1198,36.0767,27.7188,26.4602,0.069632,0.989184,0.007264,0.004768,0.03072,0.098624,0.100384,25.0449,0.114688
+1199,36.0767,27.7188,27.6245,0.069632,0.863808,0.006592,0.006016,0.030528,0.099904,0.100672,26.3337,0.113728
+1200,34.8584,28.6875,26.2437,0.070272,0.8432,0.007008,0.004096,0.030752,0.099616,0.100992,24.975,0.112832
+1201,35.189,28.418,26.4863,0.069408,1.01622,0.022016,0.004864,0.03072,0.100128,0.100352,25.0284,0.114208
+1202,36.9622,27.0547,27.6412,0.069632,0.959616,0.00704,0.004096,0.03072,0.100288,0.100448,26.2531,0.11632
+1203,34.6273,28.8789,26.4686,0.080096,0.98208,0.006528,0.004672,0.03072,0.100128,0.101856,25.0478,0.114688
+1204,35.8845,27.8672,27.7076,0.069888,0.965888,0.006912,0.004096,0.03072,0.098304,0.1024,26.3148,0.114656
+1205,34.7213,28.8008,27.5968,0.069632,0.872448,0.00768,0.004608,0.03072,0.100352,0.102304,26.2944,0.11472
+1206,34.2338,29.2109,26.4672,0.06992,1.03226,0.016928,0.006016,0.043136,0.10016,0.100544,24.9853,0.11296
+1207,36.488,27.4062,26.3885,0.069664,0.929792,0.007904,0.005504,0.0296,0.100128,0.100576,25.0307,0.114688
+1208,35.9399,27.8242,27.6316,0.07072,0.908224,0.008,0.004288,0.03072,0.099392,0.101216,26.2962,0.112832
+1209,30.7065,32.5664,26.6834,0.085152,1.19062,0.024704,0.006144,0.04096,0.099744,0.100992,25.0215,0.113568
+1210,40.7838,24.5195,26.327,0.069632,0.90112,0.007552,0.004736,0.036896,0.1,0.10064,24.9918,0.114688
+1211,34.3901,29.0781,28.0453,0.073728,1.33056,0.006784,0.006144,0.030432,0.098592,0.106496,26.2797,0.112928
+1212,34.2155,29.2266,26.7019,0.068256,1.23667,0.006464,0.01776,0.030848,0.09888,0.101344,25.0289,0.112704
+1213,36.9355,27.0742,27.6791,0.071584,0.995776,0.007744,0.004544,0.03072,0.100256,0.100448,26.2533,0.114688
+1214,34.441,29.0352,27.6378,0.069632,1.01379,0.007936,0.00432,0.03072,0.099744,0.10096,26.1959,0.114784
+1215,34.7637,28.7656,26.4474,0.069632,1.01091,0.006944,0.005664,0.030496,0.099008,0.110016,25,0.114752
+1216,36.4102,27.4648,26.3857,0.069696,0.929568,0.01456,0.005536,0.030528,0.099104,0.10144,25.0204,0.114816
+1217,36.1735,27.6445,27.6675,0.069664,0.913376,0.007808,0.005536,0.029696,0.099584,0.101088,26.3267,0.114048
+1218,34.5806,28.918,26.3988,0.070816,0.926048,0.006528,0.004224,0.03072,0.09952,0.100608,25.0473,0.113024
+1219,35.6844,28.0234,26.4159,0.07008,0.95056,0.007552,0.004736,0.03072,0.100352,0.109632,25.0275,0.11472
+1220,36.2812,27.5625,27.8241,0.069632,1.09283,0.006944,0.004096,0.03072,0.0984,0.101408,26.3067,0.113408
+1221,34.4503,29.0273,27.6542,0.070976,0.946464,0.006816,0.005792,0.030304,0.099072,0.102208,26.2792,0.113376
+1222,30.4544,32.8359,26.4376,0.0696,0.970528,0.0064,0.005472,0.030464,0.099232,0.102432,25.0399,0.1136
+1223,36.3895,27.4805,27.6233,0.069632,0.88384,0.00704,0.0056,0.030464,0.101152,0.100352,26.3107,0.114528
+1224,34.7119,28.8086,26.3516,0.069664,0.87616,0.006496,0.005376,0.029504,0.100032,0.10208,25.0494,0.112928
+1225,35.2617,28.3594,26.9764,0.077952,1.09571,0.008032,0.012416,0.03072,0.100352,0.112256,25.4254,0.113568
+1226,36.3378,27.5195,28.494,0.070208,0.947744,0.00672,0.005216,0.030624,0.098656,0.101024,27.1206,0.11312
+1227,33.1692,30.1484,26.586,0.068544,1.08544,0.007904,0.004384,0.03072,0.10032,0.100416,25.0736,0.114592
+1228,35.61,28.082,26.5523,0.069632,1.07242,0.00688,0.004096,0.03072,0.099808,0.100896,25.0543,0.113568
+1229,36.1021,27.6992,27.7033,0.069408,1.00106,0.006784,0.005632,0.030496,0.09904,0.101856,26.2762,0.112832
+1230,34.6696,28.8438,26.4538,0.06976,1.01584,0.007712,0.004544,0.030688,0.098336,0.1024,25.0102,0.114304
+1231,36.0767,27.7188,26.3798,0.07072,0.946816,0.006464,0.006016,0.030176,0.098976,0.101632,25.0048,0.114176
+1232,36.4672,27.4219,27.586,0.074848,0.84416,0.006688,0.005184,0.035328,0.098656,0.100448,26.3078,0.112864
+1233,34.8063,28.7305,26.3318,0.070304,0.876544,0.00768,0.00464,0.030688,0.099584,0.103168,25.0245,0.114688
+1234,36.4672,27.4219,27.1954,0.067584,0.845056,0.006912,0.004096,0.03072,0.116736,0.101888,25.8995,0.122912
+1235,35.0973,28.4922,27.5294,0.069728,0.840032,0.00768,0.004608,0.03072,0.1016,0.10112,26.2587,0.115232
+1236,34.9631,28.6016,26.3016,0.069632,0.892928,0.007936,0.004352,0.03072,0.09936,0.101344,24.9809,0.114368
+1237,36.3895,27.4805,26.7627,0.069664,0.890848,0.007264,0.005024,0.030752,0.099936,0.100736,25.4438,0.114656
+1238,35.7492,27.9727,28.4037,0.069632,0.855648,0.00656,0.00528,0.029536,0.099808,0.100544,27.1241,0.11264
+1239,33.8311,29.5586,26.358,0.069824,0.89648,0.006688,0.005952,0.030656,0.099744,0.09936,25.0345,0.114784
+1240,36.2247,27.6055,26.3496,0.08192,0.86016,0.00752,0.004768,0.030496,0.098528,0.1024,25.0507,0.113056
+1241,35.8443,27.8984,27.7292,0.069568,1.01411,0.007808,0.014336,0.03072,0.100064,0.10032,26.2782,0.114112
+1242,34.7826,28.75,26.3219,0.069632,0.884736,0.016384,0.005536,0.030496,0.099136,0.100384,25.002,0.113664
+1243,36.1991,27.625,26.3844,0.069664,0.920704,0.007008,0.0056,0.030496,0.099072,0.100416,25.0367,0.114688
+1244,36.3172,27.5352,27.5232,0.069728,0.88064,0.0072,0.004608,0.030272,0.099232,0.1024,26.216,0.113088
+1245,34.5993,28.9023,26.8761,0.069088,0.946464,0.00656,0.006048,0.030304,0.098816,0.102144,25.5031,0.113568
+1246,35.1503,28.4492,27.3081,0.069504,1.02051,0.007264,0.004832,0.030336,0.100928,0.105536,25.8568,0.112416
+1247,35.9147,27.8438,27.5764,0.069504,0.876704,0.008128,0.005504,0.029536,0.100192,0.100352,26.2734,0.112992
+1248,34.5107,28.9766,26.3025,0.0712,0.87088,0.007392,0.0048,0.03024,0.100928,0.1024,25.002,0.11264
+1249,36.5558,27.3555,26.7294,0.069728,0.864992,0.006368,0.006016,0.03072,0.099648,0.100416,25.4388,0.11264
+1250,34.8821,28.668,27.9188,0.080672,1.25514,0.006432,0.005408,0.029408,0.099776,0.10048,26.2269,0.114592
+1251,34.6039,28.8984,26.4684,0.069632,0.968672,0.007264,0.005056,0.03072,0.100352,0.100352,25.0715,0.114816
+1252,36.4724,27.418,26.3351,0.069952,0.845824,0.008,0.004288,0.03072,0.099552,0.101152,25.0614,0.11424
+1253,34.344,29.1172,27.6439,0.069632,0.947488,0.00688,0.00576,0.0304,0.099008,0.10192,26.2696,0.113216
+1254,36.3998,27.4727,27.757,0.070048,0.98304,0.00768,0.004608,0.030528,0.098496,0.1024,26.3469,0.113216
+1255,34.8489,28.6953,26.3799,0.07088,0.88144,0.007232,0.005056,0.03072,0.098336,0.102368,25.0692,0.114656
+1256,36.2658,27.5742,27.6356,0.069664,0.938656,0.008128,0.00416,0.03184,0.098592,0.100896,26.2698,0.113856
+1257,34.5107,28.9766,26.4786,0.070016,0.972544,0.006464,0.006144,0.0304,0.098688,0.102336,25.0776,0.1144
+1258,36.5976,27.3242,26.3191,0.06944,0.883008,0.006304,0.005568,0.029248,0.099552,0.102944,25.0098,0.11328
+1259,36.5714,27.3438,28.789,0.069888,0.868512,0.007488,0.004832,0.030688,0.098304,0.1024,27.4924,0.11456
+1260,33.5386,29.8164,26.3195,0.069568,0.869024,0.007328,0.0048,0.030432,0.104064,0.103232,25.0175,0.113472
+1261,36.374,27.4922,26.4573,0.069664,0.962528,0.007616,0.004672,0.03072,0.100032,0.100192,25.0671,0.114784
+1262,34.7307,28.793,27.739,0.06976,1.02189,0.006912,0.004096,0.03072,0.098304,0.102368,26.2939,0.111072
+1263,35.945,27.8203,26.3516,0.069664,0.901088,0.007904,0.005504,0.03984,0.100352,0.106496,25.0071,0.113632
+1264,35.9854,27.7891,26.4415,0.069632,0.921632,0.007616,0.00464,0.03072,0.100352,0.10144,25.0923,0.113248
+1265,36.031,27.7539,27.6368,0.069664,0.96048,0.007968,0.00432,0.03072,0.1,0.102208,26.2478,0.113632
+1266,32.5327,30.7383,26.9505,0.070144,1.03462,0.007232,0.004768,0.043296,0.099808,0.10208,25.4652,0.12336
+1267,37.4762,26.6836,26.37,0.071776,0.921504,0.007904,0.005536,0.0296,0.10032,0.102176,25.0139,0.117344
+1268,36.1684,27.6484,27.7505,0.069632,0.980992,0.008064,0.004224,0.030752,0.098272,0.1024,26.3434,0.112736
+1269,34.8347,28.707,26.3306,0.069632,0.861632,0.00672,0.005984,0.030656,0.0984,0.102208,25.0403,0.115072
+1270,35.7243,27.9922,27.5877,0.069408,0.972192,0.006976,0.014336,0.032032,0.098688,0.100704,26.1808,0.11264
+1271,34.5666,28.9297,27.7279,0.06976,1.04029,0.007872,0.005536,0.039584,0.102624,0.102112,26.2471,0.112992
+1272,35.4374,28.2188,26.3125,0.070048,0.843328,0.006592,0.005248,0.029728,0.100192,0.100416,25.0429,0.11408
+1273,36.462,27.4258,26.3209,0.070944,0.829376,0.006944,0.005664,0.03072,0.099936,0.100416,25.0622,0.114688
+1274,36.1123,27.6914,27.5392,0.069632,0.878048,0.006688,0.005184,0.029632,0.099776,0.10096,26.2359,0.113344
+1275,34.8964,28.6562,26.2383,0.071232,0.845408,0.007008,0.005664,0.030368,0.099072,0.100416,24.9651,0.114048
+1276,35.5556,28.125,26.3145,0.069472,0.83376,0.006496,0.005344,0.029472,0.11264,0.100352,25.0429,0.114048
+1277,37.3178,26.7969,27.6099,0.069984,0.947968,0.00688,0.005792,0.030592,0.098816,0.102368,26.2328,0.114688
+1278,34.8964,28.6562,26.397,0.070048,0.966688,0.007392,0.004768,0.030336,0.098784,0.101376,25.003,0.11456
+1279,35.9601,27.8086,27.5497,0.069632,0.872352,0.00624,0.006144,0.03072,0.098336,0.10224,26.2493,0.114688
+1280,35.1022,28.4883,27.4913,0.069952,0.856288,0.006496,0.004192,0.03072,0.100256,0.100192,26.2106,0.11264
+1281,35.1407,28.457,26.3124,0.069152,0.847808,0.007072,0.005696,0.030336,0.099136,0.101984,25.0365,0.114656
+1282,36.3636,27.5,26.3831,0.068544,0.939488,0.006464,0.005568,0.031072,0.100576,0.1024,25.0143,0.114688
+1283,36.1327,27.6758,27.7044,0.0696,0.978528,0.006592,0.006112,0.030304,0.098752,0.118688,26.2821,0.11376
+1284,35.1697,28.4336,26.2429,0.069664,0.866304,0.007616,0.00464,0.03072,0.1,0.100704,24.9499,0.113376
+1285,36.5453,27.3633,26.3096,0.068544,0.89088,0.007904,0.004384,0.032768,0.101728,0.112352,24.9763,0.114688
+1286,36.031,27.7539,27.5993,0.06944,0.928,0.006496,0.00544,0.041248,0.100448,0.100672,26.2349,0.11264
+1287,33.6444,29.7227,26.8402,0.073728,0.966656,0.007488,0.0048,0.03072,0.100128,0.114656,25.4282,0.113792
+1288,36.3636,27.5,27.1551,0.069792,1.72902,0.017952,0.004576,0.03072,0.100096,0.100608,24.9897,0.11264
+1289,36.1378,27.6719,27.6737,0.070912,1.02211,0.014208,0.004832,0.03072,0.100352,0.100352,26.216,0.114208
+1290,35.0637,28.5195,26.2157,0.069632,0.835584,0.00784,0.004448,0.03072,0.099424,0.10128,24.9467,0.120032
+1291,34.7354,28.7891,26.8303,0.070016,0.989216,0.007616,0.00464,0.030752,0.098272,0.102112,25.4098,0.117888
+1292,37.258,26.8398,27.5575,0.071872,0.837632,0.008,0.004288,0.03072,0.099648,0.101056,26.2902,0.11408
+1293,34.8964,28.6562,26.2341,0.0696,0.865856,0.006752,0.005888,0.030624,0.098656,0.100352,24.9405,0.11584
+1294,36.7552,27.207,26.2568,0.069664,0.833536,0.007808,0.004448,0.03072,0.098304,0.102432,24.9952,0.114688
+1295,35.8895,27.8633,27.5696,0.07168,0.9152,0.0064,0.006144,0.03056,0.099904,0.10096,26.2246,0.114112
+1296,35.2666,28.3555,26.3148,0.070784,0.842528,0.00624,0.005632,0.029184,0.100352,0.114688,25.0307,0.114752
+1297,36.3843,27.4844,26.2922,0.069632,0.88064,0.00736,0.00496,0.030688,0.1,0.100352,24.9834,0.1152
+1298,36.7236,27.2305,27.5739,0.069632,0.851968,0.007616,0.004672,0.030592,0.098464,0.111936,26.2863,0.11264
+1299,34.8774,28.6719,26.29,0.070144,0.856064,0.007584,0.004704,0.03072,0.100032,0.10208,25.0039,0.114816
+1300,36.5245,27.3789,27.5475,0.069888,0.858112,0.007904,0.004384,0.03072,0.098304,0.1024,26.2631,0.112672
+1301,34.8536,28.6914,27.5526,0.068416,0.90864,0.006816,0.005792,0.030464,0.106528,0.100416,26.2129,0.11264
+1302,34.5572,28.9375,26.4622,0.069696,0.991168,0.007712,0.004576,0.030752,0.098304,0.101952,25.0434,0.114688
+1303,36.5297,27.375,26.3092,0.06976,0.913472,0.00656,0.006144,0.0304,0.099968,0.101056,24.9682,0.113696
+1304,36.514,27.3867,27.6255,0.069632,0.96784,0.007008,0.004096,0.03072,0.099392,0.101312,26.232,0.113504
+1305,34.6461,28.8633,26.4499,0.070784,1.02282,0.006176,0.006144,0.030688,0.099552,0.099136,24.9999,0.114688
+1306,36.462,27.4258,26.3767,0.069888,0.930016,0.007968,0.00432,0.03072,0.099712,0.100992,25.0196,0.113472
+1307,36.6342,27.2969,27.6212,0.069632,0.876544,0.007584,0.004704,0.03072,0.099904,0.1008,26.3166,0.114688
+1308,34.5899,28.9102,26.7631,0.069824,0.892896,0.007456,0.004832,0.03072,0.098368,0.101568,25.4431,0.114336
+1309,35.7093,28.0039,27.2785,0.069664,1.02595,0.0064,0.005952,0.030752,0.099328,0.100416,25.8262,0.113792
+1310,34.9727,28.5938,27.7696,0.070048,1.07293,0.006944,0.004096,0.03072,0.104448,0.1024,26.2636,0.114432
+1311,34.5479,28.9453,26.4313,0.075808,0.993088,0.006336,0.005984,0.030688,0.09952,0.100448,25.006,0.113376
+1312,36.771,27.1953,27.4992,0.069856,0.848096,0.006368,0.005504,0.030784,0.099904,0.101376,26.2225,0.114784
+1313,33.9118,29.4883,27.7778,0.06976,1.02186,0.006848,0.005792,0.03904,0.098528,0.100192,26.3211,0.114688
+1314,33.858,29.5352,26.6281,0.069632,1.20422,0.007168,0.0048,0.030432,0.098592,0.102304,24.9983,0.11264
+1315,36.5297,27.375,26.4804,0.069568,0.995712,0.006432,0.006144,0.030688,0.1,0.100384,25.0555,0.116032
+1316,33.0195,30.2852,27.4999,0.069632,0.855104,0.007104,0.004096,0.030752,0.099488,0.101184,26.2185,0.114048
+1317,34.6978,28.8203,26.3557,0.069664,0.933856,0.007488,0.0048,0.030816,0.100256,0.1024,24.9917,0.11472
+1318,36.4154,27.4609,26.3782,0.069632,0.99328,0.007552,0.004736,0.048736,0.104608,0.106752,24.9294,0.113536
+1319,36.7236,27.2305,27.5522,0.070048,0.825408,0.007648,0.004608,0.03072,0.099552,0.101184,26.2901,0.122912
+1320,34.8252,28.7148,26.2533,0.070976,0.83424,0.007392,0.004768,0.0304,0.098752,0.100352,24.9931,0.113344
+1321,33.0749,30.2344,28.1846,0.069632,1.4991,0.006176,0.015872,0.030784,0.11104,0.106496,26.2328,0.112672
+1322,36.7763,27.1914,27.5681,0.069664,0.903136,0.006144,0.005664,0.030464,0.09904,0.100224,26.2409,0.112896
+1323,34.6133,28.8906,26.4049,0.07072,0.974848,0.007136,0.005664,0.030432,0.09904,0.102144,25,0.114912
+1324,36.3069,27.543,26.3376,0.069952,0.903168,0.007424,0.0048,0.03072,0.098368,0.102144,25.0074,0.113664
+1325,36.5453,27.3633,27.5537,0.069536,0.88784,0.007136,0.005568,0.030496,0.09904,0.100416,26.2403,0.113408
+1326,34.0109,29.4023,26.422,0.069696,1.01021,0.006368,0.005632,0.030496,0.098432,0.100576,24.986,0.114688
+1327,36.7394,27.2188,26.3866,0.069664,0.933856,0.00736,0.004928,0.03072,0.09968,0.10032,25.0252,0.114816
+1328,36.235,27.5977,27.5375,0.069728,0.858464,0.00752,0.004576,0.030592,0.098464,0.100512,26.2533,0.114304
+1329,34.925,28.6328,26.2837,0.069632,0.835584,0.007328,0.00496,0.03072,0.099744,0.10096,25.0204,0.114336
+1330,36.2709,27.5703,26.2671,0.069632,0.855648,0.00656,0.005312,0.029504,0.100384,0.10224,24.9836,0.114208
+1331,36.3636,27.5,27.6008,0.069888,0.942272,0.00784,0.005536,0.029632,0.100352,0.100352,26.2307,0.11424
+1332,35.0301,28.5469,26.2772,0.071232,0.820672,0.007072,0.004192,0.030752,0.099552,0.10112,25.0204,0.122144
+1333,35.9955,27.7812,27.5741,0.071168,0.867904,0.007008,0.0056,0.0304,0.099168,0.101376,26.2769,0.114592
+1334,32.7449,30.5391,27.7712,0.069664,1.10653,0.007584,0.012128,0.030432,0.104672,0.100864,26.225,0.114336
+1335,36.4102,27.4648,26.3142,0.069664,0.87808,0.006624,0.006144,0.030752,0.098304,0.102368,25.0074,0.114944
+1336,35.9702,27.8008,26.2694,0.069696,0.864384,0.008032,0.004224,0.03072,0.100352,0.108544,24.9703,0.11312
+1337,36.4102,27.4648,29.0075,0.069856,1.46432,0.007712,0.004576,0.034144,0.101024,0.10192,27.111,0.11296
+1338,33.6709,29.6992,26.2596,0.070848,0.871232,0.00784,0.004448,0.03072,0.09952,0.102432,24.9611,0.111488
+1339,36.2093,27.6172,26.4276,0.070272,0.980192,0.006912,0.00576,0.030688,0.09872,0.101728,25.019,0.114272
+1340,36.5349,27.3711,27.5743,0.070752,0.88096,0.006752,0.004096,0.03072,0.100352,0.10176,26.2615,0.117376
+1341,34.3302,29.1289,26.3699,0.069888,0.949952,0.00704,0.005536,0.030368,0.099008,0.100608,24.9835,0.124032
+1342,36.5349,27.3711,26.3326,0.069632,0.90112,0.00768,0.004608,0.030464,0.09856,0.1024,25.0053,0.112864
+1343,35.6546,28.0469,27.65,0.069632,1.00723,0.006528,0.006144,0.030272,0.098752,0.102048,26.2145,0.114944
+1344,34.987,28.582,27.5067,0.069664,0.912832,0.006688,0.005184,0.029632,0.100352,0.101888,26.1678,0.11264
+1345,35.252,28.3672,26.3196,0.069792,0.842336,0.00768,0.00464,0.030688,0.100352,0.100352,25.0491,0.114688
+1346,36.6657,27.2734,27.4678,0.069632,0.842784,0.00704,0.004192,0.03072,0.099808,0.102016,26.1989,0.11264
+1347,35.1311,28.4648,26.3293,0.069824,0.849952,0.007392,0.004864,0.030752,0.10032,0.100352,25.0511,0.114688
+1348,36.3947,27.4766,27.5775,0.069632,0.886816,0.008064,0.004192,0.030752,0.098272,0.100384,26.2671,0.112288
+1349,35.0445,28.5352,27.5395,0.069664,0.855072,0.007104,0.005664,0.0304,0.1008,0.100608,26.2573,0.112864
+1350,35.0493,28.5312,26.2749,0.069696,0.85536,0.006848,0.004096,0.03072,0.098304,0.1024,24.9935,0.114016
+1351,36.6657,27.2734,26.2556,0.069952,0.860128,0.007488,0.0048,0.030752,0.099808,0.100864,24.9672,0.114656
+1352,36.6237,27.3047,28.752,0.06976,0.847296,0.00672,0.00528,0.029536,0.099776,0.100928,27.4801,0.11264
+1353,33.303,30.0273,26.3045,0.069632,0.864256,0.008064,0.005504,0.02944,0.100288,0.100416,25.0122,0.11472
+1354,36.6395,27.293,26.2708,0.069536,0.837728,0.007648,0.00464,0.03072,0.099456,0.100448,25.0064,0.114304
+1355,35.7442,27.9766,27.6173,0.069664,0.899072,0.007616,0.004672,0.03072,0.098304,0.100352,26.2922,0.114688
+1356,35.8142,27.9219,26.2624,0.069888,0.837984,0.006432,0.00544,0.030432,0.099296,0.100448,24.9972,0.115232
+1357,35.6596,28.043,26.3246,0.069312,0.934208,0.007552,0.004768,0.03072,0.100224,0.100416,24.9627,0.114688
+1358,36.2504,27.5859,27.5406,0.069632,0.92336,0.006432,0.00544,0.029376,0.09968,0.102944,26.1911,0.112608
+1359,34.9727,28.5938,26.3926,0.069312,0.909632,0.007872,0.005536,0.031072,0.100256,0.101024,25.0532,0.114688
+1360,36.488,27.4062,27.328,0.069632,1.00464,0.007072,0.004096,0.04304,0.099808,0.106464,25.8812,0.112128
+1361,34.9775,28.5898,27.6225,0.069632,0.945472,0.006848,0.00592,0.030464,0.100256,0.100928,26.2492,0.11376
+1362,34.8679,28.6797,26.3259,0.070528,0.869792,0.006752,0.005184,0.029632,0.100416,0.114624,25.0162,0.1128
+1363,36.5297,27.375,26.7454,0.070208,0.933856,0.007808,0.005504,0.029696,0.10032,0.100384,25.3847,0.112864
+1364,34.8679,28.6797,28.2235,0.080896,1.53702,0.007616,0.004672,0.030464,0.09872,0.10224,26.2404,0.121472
+1365,34.5246,28.9648,26.4685,0.070016,0.937664,0.00688,0.005728,0.030496,0.100384,0.100448,25.1008,0.116128
+1366,36.5193,27.3828,26.2799,0.069664,0.84736,0.006624,0.005312,0.029504,0.099904,0.1008,25.0061,0.114656
+1367,36.4568,27.4297,27.5546,0.069888,0.885312,0.007648,0.00464,0.03072,0.099584,0.10112,26.2412,0.11456
+1368,33.6179,29.7461,26.3732,0.070656,0.917792,0.016704,0.004512,0.030752,0.098272,0.11792,25.0028,0.113792
+1369,38.0499,26.2812,26.3309,0.06976,0.848992,0.00704,0.005632,0.029376,0.099168,0.10064,25.0539,0.116384
+1370,36.4154,27.4609,27.5651,0.069632,0.91136,0.007584,0.004704,0.03072,0.099776,0.100928,26.2264,0.113952
+1371,35.218,28.3945,26.3229,0.069632,0.839168,0.006656,0.006112,0.030272,0.100288,0.100896,25.0552,0.114688
+1372,35.5506,28.1289,27.6116,0.06992,0.923584,0.006368,0.005472,0.030976,0.09872,0.10048,26.2634,0.11264
+1373,35.4571,28.2031,27.486,0.069824,0.856224,0.007232,0.005056,0.03072,0.099968,0.100736,26.2018,0.114432
+1374,35.1455,28.4531,26.2287,0.069664,0.845824,0.008128,0.004128,0.030752,0.106176,0.10064,24.9487,0.114688
+1375,35.8694,27.8789,26.4458,0.077824,0.978944,0.006144,0.006144,0.03072,0.111648,0.101344,25.0199,0.11312
+1376,36.8876,27.1094,27.5702,0.070688,0.868864,0.006624,0.005408,0.029504,0.100256,0.101408,26.2748,0.11264
+1377,34.8394,28.7031,26.3025,0.069632,0.876224,0.006464,0.006112,0.0304,0.098656,0.101728,25.0002,0.113056
+1378,36.5036,27.3945,26.3107,0.069632,0.86176,0.006592,0.005248,0.029568,0.099872,0.10032,25.0247,0.112992
+1379,35.9652,27.8047,27.7466,0.069984,1.00352,0.020448,0.006144,0.030464,0.09968,0.099264,26.3024,0.114688
+1380,35.16,28.4414,27.5187,0.07088,0.844576,0.008192,0.005216,0.0296,0.099488,0.101216,26.2451,0.114432
+1381,34.4828,29,26.4991,0.069504,0.985184,0.006176,0.006016,0.032896,0.099776,0.108352,25.0765,0.114688
+1382,36.7499,27.2109,27.5108,0.069664,0.84784,0.007456,0.004768,0.03024,0.098848,0.102048,26.2368,0.11312
+1383,34.9012,28.6523,26.2832,0.069472,0.855936,0.006528,0.006144,0.030528,0.098496,0.100416,25.0011,0.114592
+1384,36.9249,27.082,26.3366,0.069248,0.901376,0.00656,0.005312,0.029504,0.098304,0.101376,25.0105,0.114496
+1385,35.6546,28.0469,28.4584,0.069216,0.99344,0.006752,0.005952,0.032736,0.104672,0.100352,27.0316,0.11376
+1386,33.3855,29.9531,26.3434,0.069632,0.937664,0.006464,0.00544,0.031264,0.0984,0.106336,24.9748,0.113408
+1387,36.2504,27.5859,26.3316,0.072128,0.858112,0.007552,0.004736,0.03072,0.098336,0.104416,25.0429,0.112704
+1388,36.1582,27.6562,27.5333,0.07168,0.913344,0.006208,0.005664,0.030368,0.099136,0.101952,26.192,0.11296
+1389,35.2569,28.3633,26.2274,0.06992,0.835296,0.006848,0.005792,0.03056,0.110656,0.1008,24.9547,0.112832
+1390,36.5453,27.3633,26.2756,0.071456,0.839104,0.006944,0.004096,0.03072,0.11408,0.10096,24.9955,0.112736
+1391,35.1938,28.4141,27.6276,0.069728,0.968448,0.0064,0.006144,0.03072,0.099392,0.101344,26.2326,0.112864
+1392,36.4102,27.4648,26.2289,0.069504,0.856384,0.007328,0.004832,0.030336,0.098848,0.1024,24.9463,0.113024
+1393,35.8895,27.8633,26.6854,0.07328,1.21904,0.008,0.005536,0.02944,0.100352,0.102272,25.034,0.113568
+1394,36.4517,27.4336,27.4935,0.070784,0.8704,0.00704,0.004096,0.03072,0.098336,0.102368,26.1939,0.115808
+1395,34.6227,28.8828,26.3247,0.069632,0.914976,0.006624,0.005952,0.030656,0.098592,0.102368,24.9795,0.11648
+1396,36.4724,27.418,27.5705,0.070144,0.895104,0.008032,0.004256,0.03072,0.099936,0.100064,26.2479,0.114336
+1397,34.7448,28.7812,27.6623,0.069632,0.90656,0.006848,0.005792,0.03056,0.099872,0.101344,26.3288,0.112928
+1398,34.759,28.7695,26.3472,0.069632,0.899072,0.007456,0.0048,0.0304,0.098688,0.10048,25.0223,0.114368
+1399,35.9702,27.8008,26.3987,0.069632,0.927744,0.007904,0.005536,0.03072,0.100448,0.101152,25.0427,0.112928
+1400,36.3018,27.5469,27.5415,0.069632,0.894176,0.006944,0.004096,0.03072,0.100352,0.1024,26.2205,0.11264
+1401,34.3901,29.0781,26.4684,0.069888,1.03178,0.006304,0.006144,0.030528,0.098496,0.101984,25.0085,0.114688
+1402,36.2658,27.5742,26.3825,0.0704,0.934048,0.00768,0.004608,0.030208,0.109056,0.1024,25.0102,0.113952
+1403,36.2863,27.5586,27.6289,0.070816,0.951136,0.007168,0.00512,0.03072,0.099808,0.100608,26.2495,0.114016
+1404,35.0781,28.5078,26.3352,0.069632,0.89248,0.006592,0.00528,0.029536,0.100352,0.101376,25.0166,0.113408
+1405,36.4568,27.4297,27.5497,0.069824,0.872576,0.0072,0.005088,0.03072,0.099552,0.10096,26.2494,0.114336
+1406,34.0019,29.4102,27.6399,0.069536,1.01149,0.00656,0.005984,0.03056,0.099648,0.10544,26.198,0.11264
+1407,35.462,28.1992,26.3517,0.069248,0.899264,0.006336,0.006144,0.030752,0.098272,0.1024,25.0261,0.11312
+1408,36.7078,27.2422,26.3639,0.069632,0.86016,0.00784,0.004448,0.03072,0.099552,0.101152,25.0774,0.113024
+1409,36.3069,27.543,28.53,0.069632,0.997024,0.006496,0.01568,0.032864,0.098912,0.10144,27.0951,0.112864
+1410,33.3899,29.9492,26.3209,0.071072,0.90176,0.007584,0.004672,0.03072,0.098304,0.100544,24.9933,0.11296
+1411,36.6867,27.2578,27.6745,0.070368,0.987136,0.007872,0.004416,0.03072,0.099776,0.100896,26.2574,0.11584
+1412,34.7448,28.7812,26.6753,0.06976,0.941248,0.006976,0.004096,0.03072,0.099584,0.10112,25.2928,0.128992
+1413,35.9298,27.832,26.2772,0.072704,0.861184,0.0072,0.005088,0.03072,0.09952,0.105312,24.981,0.114496
+1414,36.5923,27.3281,27.4667,0.06976,0.862432,0.00672,0.005152,0.029664,0.100064,0.100672,26.1788,0.113376
+1415,34.5526,28.9414,26.3706,0.07008,0.93712,0.007072,0.005504,0.029344,0.098304,0.100352,25.0081,0.11472
+1416,36.1684,27.6484,27.5819,0.069632,0.998592,0.006976,0.004096,0.030752,0.099584,0.113376,26.1458,0.113024
+1417,34.9012,28.6523,27.6235,0.071328,0.874176,0.006816,0.005792,0.030688,0.099872,0.101216,26.3201,0.113472
+1418,34.8299,28.7109,26.3032,0.070208,0.86672,0.007872,0.004416,0.03072,0.099584,0.101152,25.008,0.114528
+1419,36.3843,27.4844,26.36,0.069824,0.875872,0.006784,0.005792,0.030304,0.099072,0.1024,25.0552,0.114688
+1420,35.61,28.082,27.916,0.069664,1.22006,0.006656,0.004096,0.03072,0.108544,0.101888,26.2613,0.113056
+1421,35.0493,28.5312,26.3004,0.069632,0.88064,0.0072,0.005088,0.03072,0.099616,0.101088,24.9917,0.114688
+1422,36.5976,27.3242,26.2411,0.069728,0.84992,0.008,0.004288,0.03072,0.098304,0.1024,24.9648,0.11296
+1423,36.462,27.4258,27.5747,0.069696,0.88016,0.006976,0.005632,0.030272,0.099072,0.100384,26.2695,0.113024
+1424,34.4595,29.0195,27.5374,0.069664,0.874464,0.007712,0.004576,0.030432,0.098208,0.100512,26.2392,0.11264
+1425,35.3738,28.2695,26.3091,0.07008,0.862304,0.00768,0.004608,0.032224,0.102944,0.100352,25.0138,0.115104
+1426,36.374,27.4922,27.5295,0.069888,0.855904,0.006368,0.005568,0.030208,0.099008,0.102304,26.2489,0.111328
+1427,33.9748,29.4336,26.4181,0.069664,0.988128,0.008096,0.004128,0.030688,0.100352,0.100352,25.0037,0.112992
+1428,37.5257,26.6484,26.2923,0.069536,0.870496,0.007872,0.004416,0.03072,0.099904,0.1008,24.9938,0.11472
+1429,35.2374,28.3789,27.6706,0.069632,0.986944,0.006336,0.005824,0.030624,0.10224,0.100928,26.2554,0.112672
+1430,35.8142,27.9219,26.3454,0.073728,0.94784,0.006528,0.005312,0.03056,0.099008,0.101856,24.968,0.112608
+1431,36.4205,27.457,26.2826,0.0696,0.862528,0.006464,0.006144,0.030528,0.099872,0.101024,24.9932,0.113248
+1432,36.3069,27.543,27.6726,0.069632,1.01485,0.007072,0.004128,0.030752,0.099808,0.100864,26.2328,0.11264
+1433,34.9918,28.5781,26.3096,0.068704,0.868192,0.008192,0.006144,0.030464,0.09856,0.101408,25.0132,0.114688
+1434,36.405,27.4688,26.28,0.077248,0.87872,0.006592,0.00528,0.030624,0.099264,0.10208,24.9675,0.112704
+1435,36.4776,27.4141,27.6407,0.068576,0.980896,0.007392,0.004896,0.031968,0.10032,0.101184,26.2328,0.11264
+1436,34.5013,28.9844,26.3386,0.069824,0.927744,0.007712,0.004576,0.030432,0.098592,0.1024,24.9851,0.112192
+1437,35.7892,27.9414,27.001,0.067168,1.53811,0.006784,0.005824,0.030496,0.098912,0.10192,25.0372,0.11456
+1438,35.3298,28.3047,27.5916,0.07008,1.00349,0.00672,0.00528,0.029568,0.098144,0.10048,26.1632,0.114624
+1439,35.8393,27.9023,26.3696,0.069632,0.91488,0.00672,0.016288,0.030816,0.101472,0.10096,24.9934,0.135392
+1440,35.6993,28.0117,26.7505,0.069632,1.0305,0.018496,0.005536,0.041568,0.100224,0.101984,25.2688,0.113824
+1441,35.7792,27.9492,27.4514,0.070656,0.846848,0.007616,0.004672,0.03072,0.099744,0.105056,26.1727,0.113344
+1442,35.3982,28.25,26.2708,0.069632,0.831488,0.007744,0.004544,0.03072,0.099328,0.101376,25.0112,0.114784
+1443,35.2035,28.4062,26.546,0.069696,1.11818,0.006176,0.006144,0.03072,0.10016,0.1,24.9984,0.116512
+1444,37.0746,26.9727,27.5554,0.069696,0.884672,0.007264,0.004768,0.030464,0.098816,0.11264,26.2328,0.11424
+1445,34.8442,28.6992,26.3362,0.070208,0.90144,0.00624,0.006144,0.040544,0.09872,0.114112,24.9841,0.114688
+1446,36.4154,27.4609,26.282,0.070688,0.857056,0.007456,0.004768,0.030528,0.112928,0.101664,24.9842,0.112704
+1447,36.3998,27.4727,27.5214,0.069504,0.868672,0.006304,0.006144,0.04096,0.099872,0.100736,26.2156,0.113568
+1448,34.5013,28.9844,27.6423,0.069984,0.950752,0.007392,0.004608,0.033088,0.113696,0.10096,26.2492,0.112608
+1449,35.1214,28.4727,26.3022,0.070976,0.873184,0.007904,0.005536,0.029536,0.100352,0.101792,24.9985,0.114432
+1450,35.9652,27.8047,27.6552,0.07088,0.991232,0.006944,0.004096,0.03072,0.099392,0.101248,26.237,0.113696
+1451,35.0685,28.5156,26.3062,0.069792,0.872192,0.006496,0.006112,0.030208,0.098848,0.101824,25.0066,0.114144
+1452,36.5819,27.3359,27.5367,0.069632,0.860192,0.00816,0.004096,0.03072,0.100128,0.101856,26.2474,0.114496
+1453,34.6743,28.8398,27.5948,0.06944,0.94384,0.006656,0.005952,0.030496,0.102816,0.109728,26.2125,0.113312
+1454,35.0637,28.5195,26.3202,0.069344,0.889184,0.007392,0.0048,0.030528,0.098592,0.101696,25.0064,0.112256
+1455,36.3378,27.5195,26.3358,0.0696,0.899424,0.006368,0.006144,0.030592,0.099904,0.102304,25.0079,0.113568
+1456,36.1123,27.6914,27.6956,0.068512,0.99664,0.01504,0.004128,0.038592,0.098624,0.104448,26.2574,0.11216
+1457,34.8063,28.7305,26.3008,0.070048,0.886496,0.006432,0.006144,0.030496,0.099712,0.101216,24.9872,0.11312
+1458,34.9154,28.6406,26.3707,0.069824,1.00195,0.0072,0.004736,0.031072,0.098336,0.101952,24.9423,0.113376
+1459,37.4707,26.6875,27.5845,0.075776,0.921152,0.006624,0.00608,0.03072,0.100032,0.100704,26.2305,0.112896
+1460,34.7732,28.7578,26.3157,0.070496,0.896128,0.007136,0.004064,0.03072,0.099808,0.100896,24.9938,0.11264
+1461,36.2401,27.5938,26.6737,0.070144,1.28102,0.009216,0.005504,0.0328,0.100032,0.100768,24.9612,0.113024
+1462,36.3018,27.5469,27.5272,0.071552,0.8736,0.007072,0.004192,0.03072,0.09936,0.101344,26.2259,0.113408
+1463,33.6975,29.6758,26.3495,0.069632,0.912672,0.00688,0.005728,0.030752,0.098688,0.10192,25.0025,0.1208
+1464,37.7192,26.5117,26.5984,0.068576,0.904352,0.007008,0.004096,0.03072,0.099456,0.100576,25.2668,0.116736
+1465,35.4129,28.2383,27.6943,0.069632,1.00266,0.014848,0.005536,0.029632,0.100352,0.100384,26.2574,0.113888
+1466,35.2326,28.3828,26.2766,0.069504,0.904064,0.008,0.004288,0.03072,0.098304,0.100352,24.9466,0.114752
+1467,36.3843,27.4844,26.3965,0.069696,0.973056,0.008096,0.005536,0.030944,0.098752,0.108544,24.9871,0.114752
+1468,36.4517,27.4336,27.564,0.069632,0.906432,0.006976,0.004096,0.03072,0.100096,0.100608,26.232,0.113472
+1469,34.9393,28.6211,27.5702,0.07072,0.877504,0.007936,0.005536,0.029568,0.10016,0.10048,26.2636,0.114688
+1470,34.6789,28.8359,26.3089,0.069856,0.897088,0.00736,0.004768,0.030752,0.100448,0.101984,24.9815,0.115072
+1471,36.2966,27.5508,27.5983,0.069824,0.926016,0.007872,0.005536,0.030624,0.099328,0.1024,26.2429,0.113856
+1472,34.9727,28.5938,26.2654,0.070848,0.860672,0.006464,0.005408,0.031104,0.099776,0.100736,24.9759,0.114496
+1473,36.4517,27.4336,27.5149,0.069632,0.891904,0.007104,0.005504,0.03056,0.098528,0.100992,26.196,0.114688
+1474,34.8442,28.6992,27.5124,0.069568,0.872,0.006656,0.00528,0.029536,0.098368,0.102336,26.2144,0.11424
+1475,34.9107,28.6445,26.2586,0.071008,0.883168,0.006336,0.006144,0.030304,0.09872,0.101408,24.9468,0.114688
+1476,36.4205,27.457,26.2928,0.068256,0.903072,0.008064,0.004224,0.030688,0.098336,0.101728,24.965,0.113472
+1477,36.2093,27.6172,27.6327,0.069472,0.94224,0.007392,0.004896,0.03072,0.100352,0.100352,26.2635,0.113792
+1478,34.8394,28.7031,26.3127,0.069664,0.872352,0.006208,0.005632,0.030368,0.099168,0.100384,25.0153,0.113696
+1479,36.4776,27.4141,26.3117,0.069632,0.909312,0.007424,0.004896,0.030688,0.104448,0.101504,24.9694,0.114368
+1480,36.2196,27.6094,27.564,0.069632,0.929056,0.00688,0.004096,0.03072,0.100352,0.100352,26.2062,0.116736
+1481,34.7779,28.7539,26.3311,0.069632,0.909312,0.007168,0.00512,0.030752,0.100352,0.100352,24.9827,0.125792
+1482,35.5457,28.1328,27.4222,0.069632,1.5393,0.062368,0.006144,0.032768,0.100352,0.41984,25.0675,0.124288
+1483,35.4423,28.2148,27.5574,0.070176,0.89904,0.0072,0.005088,0.03072,0.098304,0.1024,26.2308,0.113664
+1484,34.9107,28.6445,26.2964,0.069664,0.873984,0.006688,0.005184,0.029632,0.100352,0.100384,24.9979,0.11264
+1485,36.488,27.4062,26.2963,0.071264,0.87232,0.006688,0.005984,0.030528,0.098656,0.100416,24.9975,0.112928
+1486,36.4309,27.4492,27.5495,0.071552,0.891008,0.008096,0.004192,0.031744,0.099136,0.100544,26.2302,0.112992
+1487,35.107,28.4844,26.3391,0.069632,0.85504,0.007072,0.005536,0.03072,0.099008,0.1024,25.0553,0.1144
+1488,36.5558,27.3555,26.2996,0.07168,0.869408,0.007136,0.004096,0.03072,0.100288,0.102048,25.002,0.112224
+1489,36.6657,27.2734,27.4965,0.071008,0.845568,0.007072,0.005536,0.0304,0.099136,0.102464,26.2218,0.113504
+1490,34.8299,28.7109,26.3615,0.070112,0.92096,0.006784,0.004096,0.030784,0.100192,0.100448,25.0143,0.113824
+1491,36.374,27.4922,26.4151,0.070656,0.938624,0.006528,0.00608,0.030784,0.098336,0.101376,25.0501,0.112672
+1492,36.6133,27.3125,27.4887,0.070208,0.886592,0.006336,0.005504,0.030656,0.098784,0.10064,26.1754,0.114592
+1493,34.8964,28.6562,27.6421,0.069888,0.94,0.007712,0.004576,0.03072,0.100384,0.101792,26.2726,0.114432
+1494,34.5432,28.9492,26.3374,0.069792,0.913888,0.018336,0.004192,0.038912,0.100352,0.100352,24.9752,0.116352
+1495,36.5976,27.3242,27.5934,0.069664,0.91408,0.00752,0.004736,0.03072,0.100352,0.101408,26.2514,0.113536
+1496,35.0397,28.5391,26.3089,0.069504,0.878848,0.006272,0.005568,0.030528,0.098816,0.101888,25.0027,0.11472
+1497,36.4517,27.4336,27.0537,0.069504,0.900832,0.006848,0.005792,0.030176,0.0992,0.101568,25.4407,0.399104
+1498,35.6397,28.0586,27.5251,0.07168,0.878592,0.007936,0.004352,0.03072,0.099872,0.100832,26.2178,0.113344
+1499,34.8299,28.7109,26.371,0.069472,0.897888,0.006304,0.006144,0.030656,0.098304,0.10192,25.0467,0.113568
+1500,36.0817,27.7148,26.3496,0.069632,0.924704,0.007136,0.004096,0.030752,0.100096,0.102016,24.9982,0.112928
+1501,36.2042,27.6211,27.6516,0.069792,0.984896,0.006304,0.006144,0.030656,0.099712,0.100416,26.2396,0.114016
+1502,34.7684,28.7617,26.4093,0.06976,0.977536,0.006144,0.00576,0.030592,0.098816,0.101952,25.0045,0.11424
+1503,36.0006,27.7773,26.3904,0.069536,0.928544,0.006144,0.006144,0.03072,0.099904,0.102784,25.0328,0.113888
+1504,35.6645,28.0391,27.6724,0.069632,1.03424,0.007264,0.004768,0.030144,0.09888,0.108832,26.2041,0.114464
+1505,33.4029,29.9375,27.8118,0.069664,1.09126,0.006432,0.014336,0.03072,0.105568,0.10128,26.2799,0.11264
+1506,36.3947,27.4766,26.2735,0.0696,0.860448,0.006368,0.005472,0.030528,0.099168,0.10048,24.9875,0.113888
+1507,35.8092,27.9258,27.8139,0.069632,1.13446,0.006272,0.006144,0.03072,0.100352,0.100352,26.2526,0.113312
+1508,34.8679,28.6797,26.4356,0.070976,1.00627,0.00736,0.004768,0.030528,0.098624,0.100544,25.0051,0.111424
+1509,36.1786,27.6406,27.5306,0.071264,0.885152,0.007232,0.005056,0.030752,0.099296,0.101056,26.2147,0.116096
+1510,35.0685,28.5156,27.5236,0.069728,0.87088,0.007424,0.004768,0.030688,0.1,0.10224,26.2253,0.11264
+1511,35.0541,28.5273,26.2799,0.069856,0.846592,0.008064,0.005344,0.030816,0.099072,0.100416,25.004,0.115744
+1512,36.5558,27.3555,26.3033,0.069568,0.881536,0.007712,0.004576,0.030336,0.100032,0.10016,24.9947,0.114688
+1513,36.5245,27.3789,27.5832,0.069984,0.876928,0.007616,0.004672,0.03072,0.100384,0.102368,26.2771,0.11344
+1514,34.811,28.7266,26.2941,0.069632,0.886784,0.007808,0.00448,0.030752,0.09792,0.102784,24.9793,0.114656
+1515,36.1786,27.6406,26.3847,0.069408,0.958848,0.00624,0.006144,0.030528,0.09984,0.101056,24.9971,0.11552
+1516,36.5923,27.3281,27.5706,0.069984,0.869824,0.007072,0.0056,0.030432,0.099136,0.1024,26.273,0.11312
+1517,34.9012,28.6523,27.5824,0.070016,0.892928,0.00768,0.004608,0.03072,0.114656,0.100384,26.2472,0.114272
+1518,34.4921,28.9922,26.3291,0.070752,0.907168,0.007104,0.00416,0.030752,0.100352,0.100352,24.9957,0.112704
+1519,36.2298,27.6016,27.6606,0.069984,0.969888,0.007008,0.0056,0.03056,0.09904,0.10224,26.2637,0.11264
+1520,34.506,28.9805,26.3987,0.070848,0.977728,0.007552,0.004736,0.030368,0.098528,0.101824,24.994,0.113088
+1521,36.671,27.2695,26.3094,0.069952,0.889088,0.006368,0.006112,0.030528,0.098496,0.10048,24.9949,0.113472
+1522,36.5714,27.3438,28.6843,0.069664,0.872416,0.007872,0.004416,0.03072,0.098336,0.100352,27.3871,0.113408
+1523,33.303,30.0273,26.3849,0.069536,1.00829,0.007616,0.00464,0.044768,0.098336,0.100608,24.9364,0.114688
+1524,36.6867,27.2578,26.2884,0.069792,0.926112,0.008096,0.004192,0.03072,0.100256,0.104544,24.9303,0.114368
+1525,36.0868,27.7109,27.5909,0.069472,0.973248,0.008064,0.005536,0.029408,0.100352,0.101824,26.1902,0.112864
+1526,34.2658,29.1836,26.2516,0.069792,0.903008,0.006752,0.004192,0.030624,0.100128,0.100608,24.9236,0.112928
+1527,36.2966,27.5508,26.3173,0.070048,0.934144,0.007392,0.004896,0.03072,0.100064,0.101728,24.9538,0.114528
+1528,36.8345,27.1484,27.4498,0.06976,0.854112,0.00688,0.004096,0.03072,0.100096,0.100608,26.1714,0.112128
+1529,35.0349,28.543,26.2833,0.07168,0.869632,0.006912,0.005568,0.03072,0.099072,0.10128,24.9845,0.113984
+1530,36.1991,27.625,27.435,0.069312,1.18336,0.00704,0.004096,0.03072,0.100352,0.102112,25.8256,0.112416
+1531,35.1745,28.4297,27.4473,0.070912,0.875168,0.00624,0.006144,0.0328,0.104416,0.100352,26.1379,0.113376
+1532,34.9345,28.625,26.2652,0.07104,0.846464,0.008032,0.004256,0.03072,0.098336,0.100352,24.9935,0.112544
+1533,36.2863,27.5586,26.4246,0.069856,0.999424,0.007744,0.005536,0.029696,0.100288,0.100576,24.9977,0.113728
+1534,35.286,28.3398,28.2599,0.07104,1.5815,0.006336,0.005504,0.030336,0.099488,0.102272,26.2505,0.112928
+1535,35.0349,28.543,26.1983,0.070432,0.83968,0.007456,0.004832,0.030752,0.100256,0.100416,24.9294,0.115072
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..e7c6682
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_1000000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,32.5733,30.7186,29.5122,0.070111,0.948832,0.00762431,0.00571141,0.0326819,0.096662,0.0988177,28.1363,0.115479
+max_1024,35.4448,34.2188,31.3673,0.097696,1.56435,0.026624,0.02208,0.05088,0.112576,0.3408,29.8865,0.36864
+min_1024,29.2237,28.2129,28.5749,0.0664,0.835552,0.00608,0.004096,0.030688,0.09408,0.095808,27.2479,0.111552
+512,32.2784,30.9805,29.0333,0.0664,0.985088,0.007968,0.00432,0.032512,0.09456,0.098208,27.6306,0.113632
+513,32.8121,30.4766,30.3432,0.069568,1.09437,0.007776,0.005568,0.031712,0.096128,0.098272,28.825,0.114816
+514,31.75,31.4961,30.3434,0.069216,1.0287,0.007904,0.004384,0.032128,0.094848,0.099456,28.8941,0.11264
+515,32.1346,31.1191,28.9064,0.068512,0.895008,0.007968,0.005568,0.032576,0.095168,0.098368,27.5884,0.114816
+516,32.9388,30.3594,29.0458,0.07008,0.9672,0.006208,0.015648,0.032576,0.095104,0.098208,27.6357,0.125024
+517,32.9282,30.3691,30.224,0.069888,0.876576,0.007744,0.005568,0.03584,0.102432,0.11056,28.8949,0.120512
+518,31.6557,31.5898,29.01,0.069664,0.8968,0.006368,0.005728,0.032256,0.095136,0.09792,27.6914,0.114688
+519,33.3312,30.002,28.969,0.0696,0.86544,0.00704,0.005568,0.031328,0.096224,0.097856,27.6812,0.114688
+520,32.2621,30.9961,30.3618,0.069408,1.05757,0.007168,0.005056,0.03184,0.0952,0.098304,28.8841,0.11312
+521,32.5513,30.7207,28.887,0.069632,0.86752,0.006976,0.0056,0.03232,0.095232,0.097952,27.5971,0.114688
+522,32.9918,30.3105,30.2236,0.069536,0.952576,0.007808,0.00448,0.032352,0.094624,0.098336,28.8497,0.114112
+523,32.1669,31.0879,30.2306,0.069248,0.954432,0.006848,0.005376,0.031456,0.096128,0.097472,28.8552,0.114368
+524,31.819,31.4277,29.0103,0.069536,0.914112,0.007616,0.004672,0.032608,0.096064,0.09776,27.6749,0.112992
+525,33.107,30.2051,30.2715,0.071488,0.958656,0.006272,0.006016,0.032096,0.095904,0.09728,28.8891,0.114688
+526,31.8487,31.3984,30.2162,0.07072,0.9032,0.007008,0.004192,0.032672,0.094272,0.097696,28.8856,0.120832
+527,31.7264,31.5195,28.9641,0.069632,0.94208,0.006272,0.006016,0.032352,0.094624,0.098304,27.5999,0.114912
+528,33.329,30.0039,28.8973,0.069632,0.877888,0.006848,0.005216,0.03136,0.096384,0.098176,27.5971,0.114688
+529,33.1477,30.168,30.2381,0.0696,0.946208,0.007232,0.005056,0.032288,0.112192,0.10048,28.851,0.11408
+530,32.1043,31.1484,29.0658,0.068512,0.948224,0.006176,0.005376,0.031456,0.09568,0.096832,27.6992,0.114368
+531,31.386,31.8613,28.9813,0.069184,0.987712,0.006368,0.006144,0.031936,0.09504,0.097504,27.573,0.1144
+532,34.6978,28.8203,30.1384,0.071232,0.999328,0.00672,0.005344,0.031488,0.096,0.09856,28.715,0.114688
+533,30.6293,32.6484,30.3453,0.070112,1.00355,0.007488,0.0048,0.032608,0.096192,0.09648,28.9198,0.11424
+534,33.2446,30.0801,29.0981,0.070368,0.95232,0.006336,0.005984,0.032352,0.09584,0.097056,27.7238,0.114048
+535,32.9706,30.3301,30.2235,0.069056,0.916128,0.007968,0.005568,0.03152,0.096096,0.097696,28.8857,0.113728
+536,31.8904,31.3574,28.928,0.073728,0.952352,0.007392,0.004864,0.032448,0.096448,0.098304,27.5478,0.114688
+537,32.888,30.4062,30.2606,0.069632,0.916736,0.006912,0.005696,0.031168,0.09728,0.097376,28.9229,0.112896
+538,32.0501,31.2012,30.2203,0.069536,0.876672,0.007712,0.004576,0.032512,0.096064,0.097824,28.922,0.113376
+539,31.823,31.4238,28.8949,0.069568,0.918944,0.00704,0.005568,0.031456,0.096096,0.098144,27.5531,0.11504
+540,33.5782,29.7812,28.8995,0.06992,0.89264,0.006432,0.005696,0.031232,0.096128,0.096352,27.5877,0.113376
+541,33.3659,29.9707,30.259,0.076,0.927072,0.006784,0.005312,0.031552,0.096256,0.097536,28.9042,0.114336
+542,31.8666,31.3809,28.9791,0.069632,0.886784,0.006208,0.005856,0.030944,0.096256,0.097568,27.6712,0.114656
+543,33.1972,30.123,29.0207,0.068128,0.88592,0.007008,0.005824,0.031168,0.09616,0.09824,27.7131,0.115136
+544,32.3518,30.9102,30.3822,0.069792,0.983072,0.0072,0.005024,0.031872,0.095136,0.096256,28.9805,0.113344
+545,32.256,31.002,30.2618,0.068512,1.0191,0.006976,0.005632,0.0312,0.096288,0.096224,28.8226,0.115232
+546,31.8606,31.3867,29.0672,0.069376,0.933664,0.006752,0.005536,0.031328,0.096224,0.098304,27.7115,0.114528
+547,33.1563,30.1602,30.1856,0.06976,0.907264,0.007168,0.00512,0.032288,0.095776,0.097184,28.8584,0.112672
+548,32.022,31.2285,28.9852,0.069728,0.882336,0.006496,0.005664,0.0312,0.096256,0.098112,27.681,0.114464
+549,33.1649,30.1523,30.3596,0.069632,0.93792,0.00624,0.006112,0.032544,0.096288,0.097472,29.0004,0.11296
+550,31.8983,31.3496,30.2925,0.076096,0.911648,0.007648,0.00464,0.032192,0.094784,0.098304,28.9526,0.114592
+551,30.7139,32.5586,28.964,0.069664,1.00349,0.007616,0.004672,0.032768,0.096288,0.098272,27.5368,0.1144
+552,34.0177,29.3965,28.9684,0.069408,0.9464,0.007648,0.00464,0.032704,0.09632,0.098336,27.5968,0.116192
+553,33.18,30.1387,30.1804,0.069536,0.929536,0.006496,0.006112,0.030752,0.096288,0.098272,28.8291,0.11424
+554,31.5874,31.6582,28.9542,0.073568,0.923744,0.006464,0.005568,0.031296,0.095488,0.097024,27.6071,0.113952
+555,33.7597,29.6211,28.9624,0.070976,0.905344,0.00672,0.005824,0.03104,0.09744,0.097152,27.6335,0.114464
+556,33.1628,30.1543,30.339,0.0696,1.01795,0.00688,0.00528,0.031584,0.095648,0.098112,28.9017,0.11232
+557,31.9262,31.3223,28.9249,0.068576,0.87392,0.00672,0.00592,0.032064,0.096448,0.098624,27.6259,0.116736
+558,33.0835,30.2266,30.298,0.069632,0.929632,0.006304,0.005728,0.031136,0.096256,0.097952,28.9468,0.114592
+559,32.1588,31.0957,30.164,0.06864,0.890944,0.007968,0.004256,0.032608,0.095968,0.098496,28.8501,0.115008
+560,32.0521,31.1992,28.961,0.069824,0.912864,0.006688,0.005408,0.031456,0.09552,0.096992,27.6275,0.114688
+561,33.3268,30.0059,30.2413,0.069696,0.913728,0.006304,0.006144,0.03216,0.094816,0.097888,28.9075,0.11312
+562,31.9003,31.3477,30.2956,0.070048,0.928896,0.007008,0.004224,0.03264,0.096288,0.098272,28.9444,0.113888
+563,31.8269,31.4199,28.9789,0.069984,0.884992,0.00752,0.004768,0.032672,0.095872,0.096768,27.6724,0.113856
+564,32.2682,30.9902,28.9546,0.069568,0.90528,0.007264,0.005024,0.03232,0.096704,0.098304,27.6255,0.114688
+565,34.1174,29.3105,30.1643,0.069664,0.962368,0.006336,0.006112,0.031904,0.096192,0.097216,28.7802,0.114304
+566,32.0742,31.1777,28.969,0.069664,0.973888,0.007008,0.004224,0.032704,0.095296,0.097056,27.5764,0.112704
+567,32.5741,30.6992,29.19,0.069632,1.11741,0.006944,0.005664,0.039424,0.096224,0.098304,27.6412,0.115232
+568,33.6997,29.6738,30.2796,0.070272,0.892608,0.006464,0.0056,0.032416,0.095104,0.098304,28.9661,0.112704
+569,31.9461,31.3027,30.294,0.075904,0.884608,0.007488,0.0048,0.03264,0.096064,0.097888,28.9817,0.112928
+570,31.7973,31.4492,29.0857,0.070944,0.926208,0.006368,0.005696,0.031168,0.096256,0.098304,27.7372,0.113536
+571,32.9155,30.3809,30.3706,0.068416,0.919552,0.007712,0.004576,0.032768,0.095808,0.098144,29.0305,0.113152
+572,31.6206,31.625,29.071,0.069632,0.956448,0.00736,0.004896,0.031872,0.095104,0.098304,27.6931,0.114368
+573,33.0942,30.2168,30.2756,0.069632,0.943392,0.00688,0.012288,0.0328,0.096,0.096416,28.9034,0.114816
+574,31.5776,31.668,30.2577,0.069824,0.913024,0.006848,0.004192,0.032704,0.095616,0.096896,28.9167,0.121824
+575,31.6949,31.5508,29.0348,0.067936,0.935936,0.007648,0.00464,0.032768,0.096256,0.098304,27.6757,0.115584
+576,32.7136,30.5684,29.1588,0.069632,1.09702,0.006848,0.005216,0.03168,0.096096,0.098432,27.6398,0.114048
+577,33.0301,30.2754,30.2161,0.069728,0.868096,0.0064,0.006144,0.032768,0.096128,0.097408,28.9167,0.12272
+578,31.8309,31.416,28.97,0.068608,0.909088,0.0064,0.005664,0.0312,0.096064,0.0976,27.642,0.113376
+579,32.5245,30.7461,29.1392,0.078016,1.0369,0.006176,0.017472,0.03168,0.095552,0.09696,27.6623,0.11408
+580,32.8289,30.4609,30.3143,0.086048,0.993248,0.007424,0.004864,0.03232,0.096384,0.10272,28.8768,0.114528
+581,32.03,31.2207,30.2019,0.069632,0.91136,0.007584,0.004704,0.032512,0.096224,0.098336,28.8687,0.1128
+582,31.9242,31.3242,28.883,0.069504,0.892416,0.006784,0.00528,0.031584,0.095552,0.09696,27.572,0.112928
+583,33.1907,30.1289,30.2218,0.07136,0.976352,0.007008,0.005664,0.0312,0.096256,0.097952,28.8219,0.114144
+584,31.9541,31.2949,28.9954,0.068224,0.90112,0.007616,0.004704,0.032768,0.097792,0.096736,27.6726,0.113824
+585,32.8247,30.4648,30.0882,0.069632,0.898304,0.006912,0.005728,0.031136,0.097344,0.098272,28.7671,0.113728
+586,32.177,31.0781,30.1008,0.069408,0.895264,0.006336,0.005728,0.031136,0.096256,0.097344,28.7856,0.113696
+587,32.1749,31.0801,28.87,0.069632,0.882336,0.006496,0.006112,0.032,0.09504,0.098272,27.5655,0.114592
+588,33.3833,29.9551,29.0637,0.069984,0.968928,0.007232,0.005024,0.030752,0.09616,0.097728,27.6746,0.113376
+589,33.1972,30.123,30.2172,0.068576,0.887904,0.007072,0.005408,0.031552,0.102304,0.097344,28.9023,0.11472
+590,31.9561,31.293,28.997,0.069376,0.991744,0.007424,0.004832,0.031744,0.095232,0.098304,27.5844,0.113952
+591,33.1327,30.1816,28.9168,0.069632,1.01536,0.006592,0.005984,0.04112,0.096064,0.096448,27.4714,0.114176
+592,33.5188,29.834,30.1786,0.073728,0.872032,0.00656,0.0056,0.031264,0.097312,0.09728,28.8809,0.113952
+593,31.6577,31.5879,30.1363,0.069664,0.863456,0.006912,0.005696,0.031296,0.096128,0.098304,28.8513,0.113568
+594,31.823,31.4238,28.8788,0.07104,0.895616,0.007712,0.004576,0.032416,0.096512,0.096448,27.5532,0.121248
+595,33.0323,30.2734,30.169,0.06848,0.876384,0.006304,0.00608,0.032224,0.096128,0.096992,28.8727,0.113728
+596,31.7638,31.4824,28.9627,0.069824,0.907616,0.006496,0.005728,0.031168,0.096256,0.098272,27.6306,0.116704
+597,33.223,30.0996,30.3046,0.069248,0.928512,0.008,0.018336,0.032384,0.096128,0.098528,28.9388,0.114624
+598,31.746,31.5,30.2039,0.069632,0.96256,0.016384,0.005792,0.032736,0.110496,0.104448,28.7882,0.113632
+599,31.9461,31.3027,29.0694,0.069536,0.975872,0.006304,0.00592,0.032128,0.094912,0.098336,27.6716,0.114816
+600,32.888,30.4062,28.9544,0.070944,0.893664,0.0072,0.005056,0.032064,0.094976,0.098144,27.6379,0.114496
+601,33.6842,29.6875,30.2326,0.070784,0.842144,0.006624,0.006144,0.031904,0.09664,0.096736,28.9669,0.114688
+602,31.5387,31.707,29.056,0.07072,0.977856,0.008032,0.004288,0.032576,0.095488,0.097184,27.6561,0.113792
+603,33.4772,29.8711,28.9518,0.069632,0.90656,0.006848,0.005728,0.031136,0.096288,0.098272,27.6214,0.115968
+604,33.303,30.0273,30.2578,0.069568,0.889088,0.006496,0.005568,0.032384,0.0952,0.097472,28.9486,0.113376
+605,31.964,31.2852,30.2649,0.069632,0.878304,0.006432,0.006144,0.030784,0.096192,0.09776,28.9647,0.114912
+606,31.6949,31.5508,28.9915,0.069632,1.01376,0.006432,0.00576,0.032032,0.09504,0.098048,27.5578,0.113056
+607,33.3746,29.9629,30.2797,0.070816,0.989056,0.007008,0.005568,0.031456,0.096256,0.097312,28.8675,0.114688
+608,31.7953,31.4512,28.9777,0.07056,0.907168,0.006272,0.005792,0.03216,0.095136,0.09776,27.6485,0.114272
+609,33.011,30.293,30.0133,0.069696,0.8704,0.007968,0.005568,0.03152,0.096224,0.098112,28.7193,0.114528
+610,31.6147,31.6309,30.3662,0.069664,1.10845,0.022624,0.004384,0.046176,0.109472,0.098176,28.793,0.114336
+611,31.4632,31.7832,28.8952,0.069632,0.939744,0.020768,0.006144,0.04624,0.096704,0.096704,27.5046,0.114688
+612,33.3942,29.9453,29.1021,0.069632,1.00147,0.007744,0.004576,0.032256,0.094816,0.099328,27.6774,0.11488
+613,33.0707,30.2383,30.1086,0.068544,0.859424,0.00688,0.005248,0.031616,0.096256,0.098304,28.8293,0.113024
+614,32.1124,31.1406,28.849,0.069568,0.897888,0.007264,0.004992,0.031936,0.095072,0.097984,27.5311,0.113152
+615,33.3637,29.9727,28.9428,0.070048,0.889152,0.007328,0.00496,0.03248,0.096,0.0968,27.6234,0.122592
+616,32.1346,31.1191,30.4025,0.071424,1.00522,0.014944,0.006144,0.032288,0.094688,0.102432,28.9627,0.112672
+617,32.004,31.2461,28.9015,0.06976,0.921312,0.007136,0.012288,0.032288,0.094688,0.097728,27.5441,0.122176
+618,32.1648,31.0898,30.3534,0.07168,1.07725,0.007968,0.00432,0.042592,0.09648,0.0976,28.8429,0.11264
+619,30.5052,32.7812,30.4216,0.069888,1.06134,0.022336,0.005568,0.038752,0.105184,0.098016,28.906,0.11456
+620,33.1886,30.1309,29.334,0.06976,1.26605,0.007904,0.005408,0.037728,0.095936,0.11312,27.6234,0.114688
+621,31.5815,31.6641,30.3086,0.069824,1.00096,0.021504,0.006016,0.032512,0.096192,0.098752,28.8686,0.114208
+622,32.1568,31.0977,30.4724,0.069344,1.17344,0.00672,0.005344,0.045824,0.103936,0.098272,28.8569,0.11264
+623,32.3232,30.9375,29.1308,0.069536,1.16582,0.007744,0.004544,0.043072,0.09824,0.098304,27.5272,0.116352
+624,33.6687,29.7012,29.0315,0.069664,0.931808,0.006176,0.005856,0.045216,0.095584,0.097056,27.666,0.114144
+625,33.0771,30.2324,30.241,0.068576,0.956416,0.008,0.005568,0.03152,0.096288,0.09824,28.8625,0.11392
+626,31.7598,31.4863,29.0243,0.069632,0.978496,0.006592,0.005504,0.03136,0.096256,0.097568,27.6253,0.113504
+627,32.8184,30.4707,28.9273,0.069632,0.927104,0.006784,0.005824,0.031136,0.096192,0.09776,27.5787,0.114176
+628,33.1972,30.123,30.1531,0.068576,0.857184,0.00704,0.004192,0.032704,0.09552,0.096992,28.878,0.112896
+629,31.9023,31.3457,30.1063,0.068416,0.847712,0.00768,0.004608,0.032576,0.095872,0.098016,28.8385,0.112896
+630,31.6069,31.6387,28.9787,0.075424,0.969088,0.006336,0.005856,0.032256,0.094816,0.098144,27.5824,0.1144
+631,33.1563,30.1602,30.2222,0.069696,0.950208,0.00736,0.004928,0.032352,0.096064,0.09808,28.849,0.114528
+632,31.7028,31.543,28.8934,0.069056,0.884512,0.00704,0.004192,0.032672,0.09616,0.097856,27.5883,0.1136
+633,33.0344,30.2715,30.0971,0.070016,0.948192,0.006208,0.006144,0.03184,0.096416,0.098336,28.7252,0.114752
+634,31.99,31.2598,30.1236,0.069248,0.941696,0.007008,0.004224,0.032256,0.094624,0.097888,28.7621,0.114496
+635,31.8349,31.4121,28.9443,0.06976,0.962784,0.007264,0.005024,0.032608,0.094368,0.097888,27.5541,0.120512
+636,33.0514,30.2559,28.8816,0.069792,0.954336,0.006688,0.02208,0.031168,0.095904,0.096608,27.4924,0.112672
+637,33.5672,29.791,30.0221,0.069184,0.844448,0.006368,0.006144,0.03072,0.097664,0.09792,28.756,0.113664
+638,31.6989,31.5469,28.8748,0.070752,0.944032,0.007104,0.004192,0.032736,0.095584,0.09696,27.5087,0.114688
+639,33.1477,30.168,28.992,0.069248,0.936608,0.006464,0.006144,0.032,0.094976,0.098304,27.6337,0.114592
+640,33.1241,30.1895,30.2431,0.069824,0.935328,0.006752,0.005312,0.031552,0.096256,0.098336,28.8869,0.112832
+641,31.8527,31.3945,30.258,0.068448,0.947296,0.007008,0.005568,0.031392,0.095648,0.09792,28.8915,0.11328
+642,31.6792,31.5664,28.9649,0.069632,0.933888,0.00624,0.005824,0.030944,0.096192,0.09792,27.6095,0.114688
+643,32.6052,30.6699,30.3044,0.070048,0.92784,0.007712,0.004576,0.03264,0.095968,0.096672,28.9546,0.114272
+644,31.8388,31.4082,28.866,0.070016,0.880672,0.006272,0.005888,0.031904,0.0952,0.098304,27.564,0.113664
+645,33.5518,29.8047,30.3676,0.069696,0.97744,0.006272,0.006144,0.032288,0.095904,0.09712,28.9689,0.113856
+646,31.6636,31.582,28.9755,0.068544,0.978976,0.008032,0.004256,0.047072,0.096288,0.098304,27.5599,0.114112
+647,32.9451,30.3535,29.1369,0.070688,1.00042,0.007584,0.004704,0.0328,0.096224,0.096256,27.7135,0.114688
+648,33.152,30.1641,30.2493,0.069216,0.930304,0.0064,0.005696,0.039424,0.096192,0.096256,28.8911,0.114688
+649,32.0641,31.1875,29.298,0.069664,0.841728,0.007456,0.0048,0.032256,0.09472,0.096256,28.0371,0.114016
+650,32.5555,30.7168,28.9454,0.069248,0.876928,0.007712,0.004576,0.032192,0.102432,0.104992,27.6337,0.113696
+651,31.1796,32.0723,30.4578,0.074304,1.24458,0.007008,0.005568,0.031424,0.096064,0.098336,28.7861,0.1144
+652,33.2338,30.0898,29.0834,0.070848,0.99312,0.017376,0.00576,0.031168,0.099904,0.09792,27.6546,0.11264
+653,31.467,31.7793,30.5356,0.06976,1.19146,0.00688,0.014336,0.032768,0.104448,0.097792,28.9039,0.114176
+654,32.8416,30.4492,30.3995,0.069664,1.02806,0.007456,0.004832,0.031808,0.10544,0.097504,28.9422,0.112512
+655,31.6362,31.6094,29.0653,0.070976,0.99984,0.006432,0.006112,0.03184,0.096512,0.098528,27.6403,0.114816
+656,31.3745,31.873,29.0135,0.069632,1.03386,0.006528,0.016,0.031264,0.096288,0.098144,27.5456,0.116192
+657,34.8536,28.6914,30.2653,0.068256,0.966112,0.006688,0.005984,0.032416,0.096768,0.10608,28.869,0.113984
+658,30.3641,32.9336,28.9238,0.069632,0.969792,0.00704,0.004192,0.03264,0.095968,0.097664,27.5321,0.11472
+659,34.7755,28.7559,28.9999,0.069888,0.99488,0.00688,0.00528,0.031616,0.096096,0.097504,27.5834,0.114336
+660,32.9791,30.3223,30.2731,0.069632,0.980736,0.0064,0.005664,0.0312,0.095936,0.098272,28.8723,0.112896
+661,31.7028,31.543,30.1589,0.069632,0.997408,0.007392,0.004864,0.032768,0.09552,0.096992,28.7416,0.112704
+662,31.998,31.252,28.9008,0.069856,0.914848,0.006752,0.005344,0.031552,0.09616,0.098304,27.5639,0.114048
+663,32.9536,30.3457,30.1933,0.069632,0.933888,0.007456,0.004832,0.032768,0.096288,0.098304,28.8358,0.114304
+664,31.7677,31.4785,28.9129,0.06976,0.95232,0.007232,0.005024,0.031904,0.095104,0.098272,27.5374,0.11584
+665,33.1027,30.209,30.2408,0.069632,0.978656,0.006432,0.006144,0.031936,0.095072,0.098304,28.8412,0.113344
+666,32.026,31.2246,30.036,0.069632,0.897024,0.007744,0.004576,0.03232,0.096256,0.09872,28.717,0.112736
+667,31.7224,31.5234,29.1738,0.069632,0.995328,0.007808,0.005568,0.031392,0.096544,0.098304,27.7556,0.1136
+668,32.8058,30.4824,28.9392,0.069696,0.99536,0.007008,0.005152,0.032736,0.094912,0.097664,27.5236,0.112992
+669,33.6931,29.6797,30.0693,0.070176,0.835584,0.006176,0.00592,0.030912,0.096096,0.096448,28.8133,0.114688
+670,31.6401,31.6055,28.8215,0.069632,0.904448,0.006912,0.00512,0.031776,0.094176,0.098304,27.4982,0.11296
+671,32.9091,30.3867,28.8778,0.074464,0.959808,0.007008,0.005568,0.031424,0.096256,0.097984,27.49,0.115328
+672,33.1306,30.1836,30.1639,0.068672,0.94192,0.00768,0.004608,0.032672,0.095488,0.104928,28.7946,0.113312
+673,32.0722,31.1797,30.1633,0.069984,0.918816,0.00688,0.005856,0.031008,0.100352,0.099584,28.8161,0.114688
+674,31.0698,32.1855,28.9012,0.069632,0.937984,0.00784,0.004448,0.03264,0.095744,0.096896,27.5412,0.11472
+675,33.8356,29.5547,30.2449,0.069632,0.900512,0.006752,0.00592,0.032448,0.094784,0.097632,28.922,0.1152
+676,32.026,31.2246,28.8781,0.069632,0.852992,0.007072,0.004192,0.032544,0.094464,0.098304,27.605,0.113984
+677,33.137,30.1777,30.1953,0.069792,0.931552,0.006848,0.00576,0.031104,0.095904,0.096608,28.8439,0.11376
+678,31.998,31.252,30.0847,0.069696,0.911296,0.007488,0.0048,0.031904,0.096224,0.097152,28.7529,0.113248
+679,31.8269,31.4199,28.9204,0.06992,0.971072,0.007424,0.004864,0.032768,0.094272,0.097856,27.5276,0.11472
+680,33.355,29.9805,28.8432,0.069632,0.919552,0.018304,0.004224,0.032512,0.100224,0.098112,27.486,0.11472
+681,32.8626,30.4297,30.2401,0.070656,0.930816,0.006144,0.00608,0.032128,0.108544,0.096992,28.8742,0.114496
+682,29.2237,34.2188,29.1024,0.06992,0.99088,0.006496,0.0056,0.041504,0.095296,0.097216,27.682,0.113472
+683,33.1757,30.1426,28.971,0.069632,0.879616,0.006528,0.004736,0.032768,0.095456,0.097056,27.6722,0.112992
+684,32.7785,30.5078,30.2123,0.069824,0.869376,0.007136,0.00528,0.031584,0.096032,0.112576,28.907,0.113472
+685,31.5368,31.709,30.5507,0.069536,1.17018,0.007712,0.004576,0.032768,0.095904,0.097952,28.9594,0.112672
+686,30.8564,32.4082,29.3424,0.070208,1.1913,0.006912,0.020224,0.032256,0.094976,0.10816,27.7037,0.114688
+687,33.4007,29.9395,30.5889,0.069568,1.22883,0.006176,0.006144,0.043008,0.098048,0.109952,28.9146,0.11264
+688,30.7341,32.5371,29.4273,0.097696,1.44445,0.016384,0.004288,0.03872,0.096256,0.098304,27.5162,0.114976
+689,33.4291,29.9141,30.472,0.069664,1.11382,0.00688,0.005728,0.031104,0.104448,0.110592,28.9157,0.114048
+690,31.4245,31.8223,30.21,0.069632,0.946176,0.007936,0.004352,0.032256,0.096416,0.098656,28.8411,0.113536
+691,32.3743,30.8887,29.0338,0.069696,0.95744,0.007136,0.005568,0.031328,0.096352,0.099392,27.6509,0.115936
+692,31.6714,31.5742,29.0151,0.069312,0.975168,0.026624,0.006144,0.031776,0.094688,0.098016,27.5996,0.113696
+693,34.8726,28.6758,30.3555,0.069664,0.956,0.006528,0.006112,0.032224,0.094784,0.098304,28.9772,0.11472
+694,31.962,31.2871,28.7835,0.068416,0.849152,0.006912,0.005344,0.03152,0.096256,0.097728,27.5155,0.112672
+695,32.9515,30.3477,29.0136,0.07072,0.998336,0.008064,0.005536,0.031456,0.096256,0.097376,27.5912,0.114592
+696,33.1027,30.209,30.1793,0.0792,0.960928,0.0064,0.005696,0.031168,0.09568,0.096864,28.7908,0.11264
+697,31.7441,31.502,30.2732,0.069632,0.987136,0.007456,0.004832,0.032576,0.096352,0.0984,28.8625,0.114304
+698,31.962,31.2871,28.9531,0.069568,0.92944,0.007072,0.004224,0.032544,0.096384,0.098144,27.6011,0.114688
+699,33.1972,30.123,30.2659,0.069536,0.927968,0.006528,0.006048,0.030848,0.096224,0.105824,28.9082,0.114688
+700,31.8904,31.3574,28.8866,0.069664,0.872416,0.007392,0.004896,0.032064,0.094944,0.097984,27.5824,0.124832
+701,33.4051,29.9355,30.0869,0.069568,0.838368,0.00752,0.004768,0.032768,0.096128,0.097792,28.814,0.126048
+702,31.6069,31.6387,30.2742,0.070144,0.962912,0.007584,0.004736,0.03184,0.095232,0.098176,28.8891,0.114528
+703,31.6186,31.627,28.9656,0.068288,0.99328,0.00736,0.004928,0.032576,0.095584,0.097152,27.5518,0.114592
+704,33.137,30.1777,29.0509,0.069632,0.960512,0.007552,0.004736,0.032224,0.09616,0.098176,27.6672,0.114688
+705,32.907,30.3887,30.2979,0.069856,0.937728,0.00688,0.005696,0.049184,0.095712,0.097184,28.9219,0.113824
+706,32.004,31.2461,28.8788,0.069472,0.958624,0.007552,0.004768,0.040384,0.096352,0.098752,27.4883,0.114688
+707,33.5452,29.8105,28.9017,0.069408,0.85248,0.008,0.005568,0.0328,0.096224,0.097056,27.6254,0.114688
+708,33.0301,30.2754,30.2141,0.069632,0.929792,0.016064,0.00544,0.031744,0.095328,0.097184,28.8563,0.11264
+709,32.1891,31.0664,30.175,0.069824,0.847808,0.006304,0.006144,0.031968,0.096256,0.098432,28.9041,0.114208
+710,32.016,31.2344,28.8328,0.069664,0.861184,0.00704,0.004192,0.032768,0.094208,0.098048,27.552,0.113696
+711,33.4247,29.918,30.1428,0.069472,0.875008,0.008064,0.005568,0.031424,0.096256,0.099872,28.8425,0.114688
+712,32.0983,31.1543,28.8784,0.06976,0.856032,0.007872,0.004416,0.032608,0.095648,0.097056,27.6009,0.114176
+713,33.3398,29.9941,30.11,0.069024,0.861184,0.007456,0.004832,0.032512,0.095968,0.0968,28.8275,0.11472
+714,31.8844,31.3633,30.1998,0.069632,0.9032,0.007424,0.004832,0.032384,0.094592,0.104384,28.8704,0.11296
+715,31.8408,31.4062,29.0673,0.069408,0.946336,0.00624,0.006112,0.032608,0.095552,0.096832,27.6995,0.114688
+716,32.7031,30.5781,28.9139,0.08416,0.9728,0.007264,0.004992,0.032192,0.094848,0.09824,27.5047,0.114688
+717,33.4073,29.9336,30.2501,0.069664,0.923488,0.006272,0.006144,0.032544,0.104256,0.10448,28.8895,0.11376
+718,31.8646,31.3828,28.9046,0.075584,0.925888,0.00752,0.004768,0.032224,0.09584,0.097088,27.5498,0.115936
+719,33.1671,30.1504,29.055,0.069664,0.931808,0.022016,0.004608,0.043008,0.098336,0.106464,27.6644,0.114688
+720,33.379,29.959,30.1672,0.069792,0.882688,0.008,0.005312,0.031744,0.107872,0.097952,28.8429,0.12096
+721,31.9202,31.3281,29.186,0.069632,0.897024,0.008064,0.004256,0.032448,0.095744,0.097056,27.8684,0.113472
+722,32.5141,30.7559,28.9527,0.07184,1.00765,0.007424,0.004896,0.031712,0.094528,0.096992,27.5248,0.112928
+723,33.1263,30.1875,30.2162,0.069184,0.993728,0.007968,0.00432,0.03232,0.096608,0.09792,28.7995,0.114688
+724,32.026,31.2246,28.8829,0.069664,0.878016,0.00672,0.005408,0.031424,0.095584,0.100032,27.5832,0.112928
+725,33.1563,30.1602,30.0491,0.069696,0.89184,0.007936,0.004096,0.03264,0.094336,0.106496,28.7273,0.114752
+726,31.5485,31.6973,30.3095,0.069664,0.923648,0.022496,0.005216,0.039328,0.09472,0.098336,28.9423,0.11376
+727,31.9441,31.3047,28.9506,0.06912,0.864832,0.006272,0.006016,0.032384,0.106464,0.097888,27.6529,0.114688
+728,33.0643,30.2441,30.2487,0.069728,0.89232,0.006848,0.00528,0.033632,0.096256,0.098112,28.9323,0.11424
+729,31.3476,31.9004,30.1838,0.068,0.94,0.006176,0.006144,0.032128,0.094848,0.098304,28.8236,0.114688
+730,31.7795,31.4668,28.8547,0.069728,0.8688,0.007968,0.00432,0.037888,0.095232,0.098144,27.5591,0.11344
+731,32.8479,30.4434,29.2003,0.06976,0.999904,0.007584,0.004704,0.038912,0.096256,0.106464,27.7626,0.114144
+732,32.9303,30.3672,30.0797,0.069504,0.909696,0.006624,0.00544,0.031424,0.096256,0.09824,28.7495,0.113056
+733,32.5679,30.7051,28.9709,0.069632,0.972832,0.007712,0.004544,0.032768,0.096192,0.098176,27.5735,0.115488
+734,32.789,30.498,29.0762,0.06832,1.05267,0.006304,0.005824,0.032064,0.095104,0.098272,27.6044,0.113248
+735,32.943,30.3555,30.2868,0.068576,0.987136,0.00736,0.004928,0.032704,0.096128,0.096448,28.8802,0.113344
+736,31.9381,31.3105,30.1466,0.069632,0.88064,0.007392,0.005984,0.03152,0.095456,0.097216,28.844,0.114688
+737,32.1487,31.1055,28.9137,0.0696,0.857408,0.00688,0.005728,0.031136,0.097664,0.096896,27.6337,0.114688
+738,33.3681,29.9688,30.1241,0.069696,0.92368,0.007712,0.004544,0.032448,0.094528,0.097824,28.781,0.11264
+739,31.9103,31.3379,29.098,0.07088,0.985888,0.016384,0.006144,0.032448,0.095904,0.097088,27.6783,0.114944
+740,33.2295,30.0938,30.1629,0.069664,0.9216,0.007904,0.004384,0.032416,0.094528,0.098304,28.8212,0.112928
+741,31.8904,31.3574,30.1645,0.069408,0.921472,0.00688,0.005376,0.031456,0.10448,0.098272,28.8129,0.11424
+742,31.9541,31.2949,28.9151,0.071072,0.872512,0.006688,0.005376,0.035616,0.096224,0.102304,27.6109,0.114432
+743,33.2381,30.0859,28.9724,0.069664,0.937248,0.006848,0.005728,0.031136,0.096032,0.09808,27.6136,0.114016
+744,31.6616,31.584,30.4497,0.07008,1.06403,0.007136,0.0056,0.03136,0.09616,0.098304,28.9628,0.11424
+745,31.6264,31.6191,29.0255,0.069344,0.98128,0.024096,0.004576,0.048736,0.094624,0.09776,27.5912,0.11392
+746,34.4341,29.041,29.1027,0.070208,1.01171,0.007232,0.004992,0.041056,0.09568,0.113184,27.6439,0.114688
+747,33.0237,30.2812,30.4205,0.069664,0.980704,0.006432,0.006112,0.032352,0.095648,0.09728,29.0191,0.113152
+748,31.6362,31.6094,30.206,0.069216,1.01008,0.007328,0.00496,0.030848,0.09744,0.09856,28.7728,0.114688
+749,31.7264,31.5195,29.0827,0.069664,1.07312,0.007968,0.005568,0.03152,0.096288,0.098144,27.5846,0.115776
+750,33.4772,29.8711,30.2572,0.069344,0.94416,0.0064,0.005664,0.0312,0.102432,0.114656,28.8707,0.112672
+751,31.6069,31.6387,28.9861,0.069632,1.00784,0.006688,0.00592,0.032128,0.095136,0.106112,27.5478,0.114848
+752,33.1563,30.1602,30.3247,0.069632,0.933888,0.007744,0.012288,0.031168,0.096256,0.097824,28.9612,0.114688
+753,32.024,31.2266,30.0483,0.069632,0.886816,0.007808,0.00448,0.032576,0.096352,0.09744,28.7399,0.113312
+754,32.309,30.9512,28.8911,0.069632,0.864256,0.007552,0.004736,0.032064,0.110848,0.096704,27.592,0.113344
+755,33.2554,30.0703,29.0399,0.070848,0.892896,0.007008,0.0056,0.031264,0.096256,0.097664,27.7224,0.116032
+756,33.1886,30.1309,30.1274,0.069632,0.90112,0.006272,0.005856,0.03088,0.096,0.096512,28.8072,0.11392
+757,32.2256,31.0312,29.0298,0.069152,0.88512,0.00624,0.006144,0.032384,0.108864,0.104544,27.694,0.123328
+758,33.3464,29.9883,28.9066,0.07072,0.890944,0.007008,0.004192,0.032704,0.105568,0.099232,27.5822,0.113984
+759,33.1757,30.1426,30.1578,0.069632,0.903168,0.008032,0.005568,0.031488,0.096224,0.097952,28.8321,0.113664
+760,32.1446,31.1094,30.2627,0.069152,0.879104,0.00752,0.004768,0.032736,0.096256,0.098304,28.9608,0.11408
+761,31.7283,31.5176,29.0263,0.07152,0.89664,0.006688,0.005888,0.032032,0.09696,0.098336,27.703,0.1152
+762,33.0985,30.2129,30.1764,0.0696,0.898176,0.00704,0.004192,0.032704,0.09536,0.104928,28.8506,0.113856
+763,31.6773,31.5684,29.2885,0.06944,1.13693,0.007968,0.0056,0.031488,0.095616,0.098048,27.7288,0.114688
+764,33.2338,30.0898,30.0974,0.069664,0.861536,0.006816,0.00528,0.031552,0.094208,0.098336,28.8153,0.114688
+765,31.8368,31.4102,30.1877,0.069824,0.9032,0.00752,0.004736,0.032192,0.094784,0.09936,28.8628,0.113344
+766,31.996,31.2539,28.8564,0.068448,0.89888,0.006336,0.00576,0.03232,0.09504,0.098304,27.5374,0.11392
+767,33.3703,29.9668,28.9362,0.069632,0.916832,0.006816,0.005728,0.031136,0.096288,0.098272,27.5968,0.114688
+768,32.9642,30.3359,30.1891,0.069632,0.972256,0.006688,0.005344,0.03152,0.095904,0.097824,28.7972,0.112768
+769,32.034,31.2168,28.9362,0.06944,0.886304,0.006816,0.005824,0.032064,0.096832,0.097792,27.6244,0.116736
+770,32.8352,30.4551,28.9238,0.069632,0.939936,0.00624,0.005824,0.03104,0.094208,0.098304,27.564,0.114624
+771,32.3661,30.8965,30.3602,0.068416,1.11616,0.007904,0.020352,0.031136,0.112352,0.096576,28.7826,0.124736
+772,32.4215,30.8438,28.9756,0.084224,0.968896,0.007168,0.004992,0.032448,0.094688,0.097952,27.5716,0.113632
+773,31.9521,31.2969,30.1972,0.069632,0.98304,0.007776,0.004512,0.032576,0.095552,0.107424,28.7826,0.114112
+774,32.9642,30.3359,30.2745,0.070368,0.91984,0.007808,0.018784,0.0328,0.108512,0.098304,28.9055,0.11264
+775,31.988,31.2617,29.0063,0.069696,0.90768,0.007744,0.004544,0.038912,0.105952,0.10704,27.6512,0.113536
+776,33.3855,29.9531,30.1138,0.069344,0.860448,0.007328,0.00496,0.032512,0.096064,0.102848,28.8274,0.112928
+777,31.9581,31.291,30.1958,0.069184,0.874176,0.007008,0.005248,0.031616,0.096256,0.100352,28.8983,0.1136
+778,31.7146,31.5312,28.8559,0.069632,0.866304,0.007744,0.004544,0.032512,0.09616,0.098656,27.5641,0.116224
+779,33.3986,29.9414,28.9608,0.069664,0.964576,0.00784,0.005568,0.031648,0.096288,0.09792,27.5726,0.114688
+780,32.8901,30.4043,30.0687,0.069664,0.859904,0.0064,0.005696,0.031168,0.094176,0.098304,28.7905,0.112928
+781,32.0461,31.2051,28.8993,0.071296,0.862176,0.006592,0.006016,0.030816,0.096256,0.097792,27.6136,0.114816
+782,32.8184,30.4707,28.8052,0.069696,0.913408,0.007936,0.004352,0.032768,0.095968,0.096544,27.4698,0.114688
+783,32.2236,31.0332,30.1679,0.069632,0.95312,0.00624,0.005632,0.032416,0.10032,0.098304,28.7887,0.1136
+784,31.3841,31.8633,30.0011,0.080064,1.03018,0.007424,0.004832,0.032768,0.096256,0.097856,28.2854,0.366368
+785,33.4204,29.9219,28.928,0.069312,0.989152,0.006496,0.006144,0.032128,0.096736,0.097856,27.5155,0.114688
+786,33.0643,30.2441,30.1793,0.07104,1.01414,0.0064,0.005664,0.0312,0.096256,0.097824,28.744,0.112768
+787,31.6088,31.6367,29.0044,0.0696,0.991904,0.007552,0.004736,0.032544,0.096512,0.097824,27.5801,0.123648
+788,33.2166,30.1055,29.8007,0.070432,0.942048,0.006368,0.005696,0.031136,0.096192,0.09632,28.4385,0.113952
+789,32.4153,30.8496,30.1956,0.069632,0.929792,0.007328,0.00496,0.032704,0.09536,0.097216,28.844,0.114528
+790,32.0943,31.1582,28.8166,0.070912,0.863008,0.007648,0.004608,0.032192,0.095904,0.097184,27.5312,0.11392
+791,33.1413,30.1738,30.2921,0.069664,1.03626,0.008,0.005568,0.04176,0.096256,0.097856,28.824,0.112768
+792,31.4903,31.7559,30.243,0.069088,0.973536,0.007904,0.004384,0.0328,0.096224,0.098304,28.8481,0.11264
+793,31.6401,31.6055,28.937,0.070144,0.95264,0.007936,0.005568,0.03152,0.096256,0.096288,27.5618,0.114816
+794,32.9982,30.3047,28.9514,0.06848,0.954112,0.0064,0.005632,0.032288,0.096704,0.110304,27.5628,0.114688
+795,33.2101,30.1113,30.0845,0.069632,0.94192,0.006336,0.006112,0.032032,0.094944,0.098112,28.7213,0.114112
+796,31.966,31.2832,28.741,0.069632,0.856064,0.006272,0.005856,0.032736,0.0944,0.098304,27.4528,0.124928
+797,33.0835,30.2266,29.0014,0.069664,0.913408,0.007488,0.004768,0.042816,0.096448,0.108352,27.6441,0.1144
+798,32.3294,30.9316,30.3063,0.069632,1.10797,0.00736,0.004928,0.042976,0.096224,0.108608,28.756,0.11264
+799,32,31.25,30.1752,0.070208,0.923648,0.006304,0.005984,0.031968,0.109376,0.09776,28.8159,0.114048
+800,32.1386,31.1152,28.9444,0.069664,0.84784,0.00752,0.004768,0.032224,0.096,0.097056,27.6582,0.131072
+801,33.1092,30.2031,30.3173,0.068384,0.897024,0.007968,0.00432,0.0328,0.096064,0.097952,28.9995,0.113344
+802,31.5991,31.6465,28.885,0.069632,0.960512,0.00752,0.004768,0.04096,0.096224,0.105824,27.4869,0.11264
+803,32.6927,30.5879,30.2515,0.078336,1.09133,0.006368,0.006144,0.031904,0.095072,0.096256,28.7306,0.115456
+804,32.3907,30.873,30.0717,0.07008,0.924128,0.016352,0.006144,0.032,0.094976,0.098304,28.7171,0.11264
+805,31.6891,31.5566,29.0976,0.069632,1.05472,0.007264,0.005024,0.031904,0.09696,0.106368,27.6032,0.122464
+806,33.0323,30.2734,29.0023,0.069664,1.00406,0.006144,0.005984,0.03088,0.096256,0.098336,27.5775,0.113472
+807,33.1542,30.1621,30.4116,0.070016,1.01427,0.006272,0.006016,0.03216,0.095904,0.098432,28.9755,0.113056
+808,31.5854,31.6602,28.953,0.07024,0.95456,0.007584,0.004704,0.031904,0.095072,0.098016,27.5762,0.114752
+809,33.223,30.0996,28.9168,0.069472,0.862368,0.007968,0.005536,0.031552,0.09584,0.106912,27.6224,0.11472
+810,32.8943,30.4004,30.1708,0.069632,0.90112,0.006144,0.005824,0.03104,0.09536,0.097152,28.8501,0.114336
+811,31.4245,31.8223,30.3104,0.07104,0.9936,0.006496,0.006112,0.030784,0.0976,0.098304,28.8932,0.11328
+812,32.002,31.248,28.9382,0.069632,0.90064,0.006624,0.0056,0.031264,0.096384,0.099328,27.6156,0.11312
+813,33.152,30.1641,30.1484,0.069664,0.898272,0.006912,0.005696,0.031168,0.096256,0.097408,28.8285,0.114464
+814,32.036,31.2148,29.0358,0.069536,0.977024,0.007872,0.004384,0.032576,0.0944,0.098016,27.638,0.113952
+815,33.0578,30.25,30.172,0.069824,0.959104,0.006208,0.006144,0.031904,0.096608,0.097888,28.7897,0.114688
+816,32.0501,31.2012,30.1494,0.069952,0.903424,0.0064,0.005696,0.031264,0.09616,0.098304,28.8256,0.11264
+817,31.8626,31.3848,29.0025,0.070144,0.913696,0.00816,0.005536,0.03136,0.096256,0.098304,27.6656,0.113472
+818,33.2424,30.082,28.8465,0.06992,0.897088,0.00624,0.005888,0.03088,0.096256,0.097952,27.5296,0.112672
+819,33.5496,29.8066,30.2123,0.069152,0.874304,0.006976,0.005568,0.032448,0.095104,0.098304,28.9034,0.126976
+820,31.8864,31.3613,28.7608,0.069504,0.852832,0.007424,0.004864,0.031872,0.095104,0.098304,27.4879,0.11296
+821,33.6179,29.7461,28.9393,0.069664,0.873568,0.006816,0.005568,0.03152,0.09616,0.096384,27.6453,0.114304
+822,33.355,29.9805,30.3002,0.068448,0.901024,0.00624,0.005824,0.032064,0.101408,0.098304,28.9727,0.114176
+823,31.8586,31.3887,30.114,0.069408,0.916096,0.007808,0.005568,0.03168,0.096256,0.096256,28.7761,0.114816
+824,31.8032,31.4434,29.0955,0.069408,1.10819,0.008064,0.004224,0.032768,0.095296,0.097216,27.566,0.114272
+825,32.4441,30.8223,30.1378,0.069632,0.856064,0.00624,0.00592,0.030848,0.098016,0.097824,28.8586,0.114656
+826,32.7387,30.5449,28.8308,0.07072,0.911296,0.007104,0.004192,0.032544,0.0944,0.097984,27.4988,0.113696
+827,33.4881,29.8613,30.2141,0.071008,0.903552,0.006432,0.006144,0.031808,0.095168,0.097984,28.8874,0.114656
+828,31.1853,32.0664,30.3364,0.069632,1.03594,0.006496,0.005536,0.032448,0.095168,0.100288,28.8788,0.112096
+829,31.3668,31.8809,28.8824,0.06976,0.911232,0.008,0.005568,0.031488,0.096256,0.098304,27.547,0.114784
+830,33.932,29.4707,28.9322,0.069696,0.998656,0.006944,0.00512,0.041952,0.096288,0.098272,27.5005,0.114688
+831,33.236,30.0879,30.1832,0.069376,0.932096,0.007904,0.0056,0.031552,0.097952,0.102752,28.8207,0.115296
+832,31.8566,31.3906,28.862,0.069824,0.893056,0.007904,0.004384,0.032224,0.094784,0.097376,27.5485,0.11392
+833,32.7512,30.5332,28.9166,0.069888,0.980832,0.007008,0.0056,0.031264,0.096256,0.096256,27.5149,0.114592
+834,33.2424,30.082,30.0954,0.069632,0.913408,0.006208,0.005856,0.032288,0.094944,0.09824,28.7618,0.11296
+835,31.6166,31.6289,30.2949,0.069984,0.993248,0.006752,0.005856,0.032064,0.0952,0.097696,28.881,0.11312
+836,31.7953,31.4512,28.9635,0.070112,0.993504,0.007968,0.004352,0.032672,0.095392,0.097184,27.5488,0.113536
+837,32.943,30.3555,30.1343,0.069632,0.886592,0.006336,0.006144,0.032064,0.096256,0.09696,28.8273,0.11296
+838,31.6127,31.6328,28.9893,0.069792,1.11392,0.006336,0.005728,0.031136,0.096288,0.102208,27.4495,0.1144
+839,33.4204,29.9219,30.0024,0.069632,0.888832,0.007616,0.004672,0.032544,0.096512,0.097728,28.691,0.113888
+840,32.014,31.2363,30.1916,0.06944,0.91552,0.006304,0.00576,0.032192,0.105408,0.098304,28.8452,0.113568
+841,32.032,31.2188,28.8391,0.069792,0.982304,0.00688,0.005216,0.03168,0.096224,0.097632,27.4336,0.115744
+842,33.587,29.7734,28.8768,0.069632,0.872448,0.006272,0.005888,0.03088,0.095744,0.096736,27.5863,0.112896
+843,33.1263,30.1875,30.1819,0.070112,0.978944,0.007744,0.004544,0.032576,0.096288,0.097888,28.7805,0.113248
+844,30.7729,32.4961,28.969,0.069728,0.957024,0.006208,0.005888,0.03232,0.095968,0.097248,27.5906,0.11408
+845,33.7264,29.6504,30.0504,0.069408,0.892768,0.006624,0.006048,0.031904,0.096224,0.098752,28.7355,0.113184
+846,32.4688,30.7988,28.9863,0.070048,1.06547,0.006176,0.005888,0.030944,0.096256,0.098176,27.4998,0.113472
+847,33.1241,30.1895,30.068,0.069632,0.882176,0.024576,0.006016,0.03136,0.095456,0.097056,28.7473,0.1144
+848,32.1084,31.1445,30.048,0.06976,0.884736,0.007456,0.004832,0.032256,0.094784,0.09824,28.7429,0.112992
+849,32.026,31.2246,28.7877,0.070752,0.944064,0.007008,0.005568,0.031424,0.096256,0.09792,27.4208,0.11392
+850,33.5672,29.791,29.2949,0.069792,0.881824,0.00704,0.004224,0.032448,0.096288,0.096544,27.9941,0.11264
+851,32.9324,30.3652,31.0424,0.06848,0.906752,0.006656,0.00592,0.032128,0.095168,0.098208,29.7144,0.114688
+852,30.9328,32.3281,28.9608,0.06992,0.883008,0.006208,0.005888,0.032032,0.0952,0.098112,27.6564,0.114016
+853,33.3398,29.9941,28.7969,0.069632,0.87248,0.007584,0.004672,0.0328,0.096096,0.098432,27.5005,0.114688
+854,33.3877,29.9512,30.1629,0.069664,0.913376,0.007392,0.004896,0.032576,0.0944,0.09824,28.8292,0.113248
+855,31.9242,31.3242,28.9236,0.069376,0.905472,0.00784,0.005568,0.03168,0.096224,0.097664,27.5949,0.114848
+856,33.122,30.1914,28.926,0.069632,0.994432,0.00704,0.004192,0.032672,0.095648,0.096864,27.5108,0.114688
+857,33.0899,30.2207,30.173,0.069504,0.976576,0.007072,0.005568,0.031392,0.096256,0.098304,28.7737,0.114624
+858,31.825,31.4219,29.6899,0.070688,1.10246,0.006496,0.005568,0.031328,0.095872,0.097664,28.161,0.118816
+859,32.8374,30.4531,28.848,0.069632,0.872448,0.006144,0.006144,0.032064,0.094912,0.099424,27.5538,0.113408
+860,33.5144,29.8379,30.0847,0.071136,0.848416,0.0064,0.005664,0.03232,0.095008,0.097696,28.814,0.114048
+861,32.024,31.2266,28.9384,0.069248,0.94464,0.007488,0.0048,0.0328,0.095648,0.096832,27.5735,0.113472
+862,32.8753,30.418,30.167,0.069632,1.02304,0.00704,0.005728,0.0312,0.096256,0.098336,28.7223,0.113472
+863,31.8685,31.3789,30.2199,0.069632,0.989152,0.00656,0.006016,0.030816,0.096256,0.098304,28.8092,0.113984
+864,31.5679,31.6777,28.9992,0.070752,1.01648,0.0064,0.005696,0.031168,0.095776,0.098176,27.5605,0.114272
+865,33.5782,29.7812,28.9421,0.069632,0.851648,0.006464,0.006112,0.032352,0.095904,0.097056,27.6683,0.114656
+866,33.0643,30.2441,30.2187,0.069792,0.99584,0.007648,0.00464,0.032096,0.09488,0.097664,28.8017,0.114432
+867,31.984,31.2656,28.8224,0.0696,0.885696,0.008032,0.005568,0.032704,0.096896,0.097664,27.5116,0.114624
+868,32.6781,30.6016,29.0631,0.069184,1.05075,0.006496,0.005632,0.0312,0.110592,0.098336,27.5722,0.118752
+869,33.4991,29.8516,30.1337,0.069632,0.892928,0.007264,0.005024,0.032256,0.096704,0.098368,28.817,0.114528
+870,31.7993,31.4473,30.4149,0.069632,1.04768,0.00704,0.005696,0.0312,0.09568,0.098368,28.9469,0.112672
+871,31.7421,31.5039,28.9396,0.069312,0.923968,0.006272,0.006016,0.032736,0.096288,0.098304,27.5907,0.116064
+872,33.3333,30,30.2155,0.071104,0.89088,0.00672,0.005344,0.03152,0.096256,0.098016,28.9017,0.113952
+873,31.8983,31.3496,28.8846,0.069152,0.879104,0.006336,0.006144,0.03216,0.094816,0.099456,27.5833,0.114144
+874,32.5451,30.7266,30.1363,0.069632,0.925024,0.006816,0.005216,0.031648,0.096256,0.098336,28.7902,0.113216
+875,32.4564,30.8105,30.1548,0.069632,0.980992,0.007328,0.00496,0.032224,0.094784,0.098272,28.7539,0.11264
+876,31.2347,32.0156,28.8435,0.069536,0.911648,0.007488,0.0048,0.032096,0.096288,0.098208,27.5094,0.113952
+877,31.6577,31.5879,28.9768,0.069632,1.04829,0.00768,0.004896,0.032416,0.095584,0.09728,27.5067,0.114368
+878,35.4448,28.2129,30.0439,0.069632,0.909344,0.007904,0.004352,0.032448,0.094528,0.099424,28.7118,0.114432
+879,31.821,31.4258,28.9833,0.069472,1.01802,0.007488,0.0048,0.032768,0.095456,0.097056,27.5436,0.114688
+880,33.6245,29.7402,28.8721,0.069536,0.903264,0.007264,0.005024,0.032,0.094976,0.096448,27.5495,0.114048
+881,33.0749,30.2344,30.0786,0.0696,0.903232,0.00752,0.004736,0.032512,0.095616,0.097152,28.7539,0.114336
+882,32.256,31.002,30.138,0.069856,0.88928,0.007264,0.005024,0.032128,0.096448,0.098752,28.8256,0.113696
+883,31.988,31.2617,28.7025,0.069632,0.88496,0.007328,0.00496,0.032352,0.096096,0.096864,27.394,0.11632
+884,33.532,29.8223,30.1246,0.069632,0.920096,0.006304,0.005824,0.03088,0.095712,0.096832,28.7846,0.114656
+885,32.0822,31.1699,28.8188,0.0696,0.95168,0.00704,0.005568,0.031296,0.098304,0.1016,27.4399,0.113856
+886,33.1843,30.1348,30.0729,0.069664,0.886784,0.007904,0.004384,0.032544,0.094432,0.098336,28.7656,0.11328
+887,32.01,31.2402,30.0257,0.071136,0.893472,0.007648,0.00464,0.032032,0.094944,0.09792,28.7113,0.11264
+888,31.992,31.2578,28.8399,0.070688,0.964672,0.007008,0.004192,0.03248,0.094624,0.098176,27.4547,0.113408
+889,33.3312,30.002,29.0332,0.069568,0.995744,0.006592,0.006144,0.032288,0.096416,0.098016,27.6138,0.114688
+890,33.0835,30.2266,31.3673,0.068832,0.971584,0.00624,0.020448,0.032768,0.095424,0.3408,29.7186,0.112608
+891,31.0585,32.1973,28.9305,0.069664,0.894848,0.00672,0.005856,0.03216,0.09648,0.096896,27.6132,0.11472
+892,33.2857,30.043,28.8502,0.069312,0.8728,0.00768,0.004576,0.032128,0.104736,0.09664,27.5497,0.11264
+893,33.2705,30.0566,30.1671,0.070112,0.923616,0.007264,0.005024,0.03232,0.096352,0.097984,28.8196,0.114752
+894,32.2114,31.0449,29.0033,0.06976,0.894848,0.00752,0.0048,0.031904,0.09504,0.096256,27.689,0.114208
+895,33.3095,30.0215,28.9045,0.069344,0.897344,0.0072,0.005088,0.032448,0.096512,0.097728,27.5831,0.115744
+896,33.2511,30.0742,30.0584,0.069632,0.900448,0.006816,0.005248,0.031616,0.09616,0.097664,28.7362,0.114592
+897,31.8527,31.3945,30.2141,0.069632,0.9728,0.00752,0.004768,0.032352,0.095744,0.097184,28.8193,0.11488
+898,31.5718,31.6738,28.9215,0.069632,0.9216,0.007904,0.005408,0.031744,0.096288,0.098272,27.5763,0.114336
+899,33.8378,29.5527,30.0805,0.070848,0.87728,0.007744,0.00464,0.032768,0.095712,0.0968,28.7818,0.112864
+900,31.0717,32.1836,29.0271,0.070016,0.983264,0.016576,0.005664,0.033248,0.09616,0.097728,27.6112,0.113216
+901,34.1447,29.2871,29.9684,0.069664,0.95024,0.006208,0.00608,0.031936,0.09504,0.098304,28.3484,0.362496
+902,32.3702,30.8926,30.2061,0.069664,0.893024,0.007648,0.00464,0.032256,0.09472,0.098336,28.8932,0.112672
+903,31.6989,31.5469,28.8809,0.069632,0.939008,0.00704,0.005568,0.031424,0.096256,0.09792,27.5194,0.114688
+904,33.316,30.0156,29.0038,0.069632,0.962496,0.006208,0.005856,0.031008,0.096256,0.097952,27.6217,0.11264
+905,33.3181,30.0137,30.0524,0.071136,0.88512,0.006304,0.006144,0.032,0.09632,0.09696,28.7437,0.114688
+906,31.8151,31.4316,28.8817,0.070016,0.993696,0.006304,0.005856,0.030848,0.096224,0.096288,27.4698,0.112672
+907,33.1349,30.1797,28.8928,0.069344,0.907008,0.006912,0.005696,0.032384,0.09632,0.098208,27.5608,0.11616
+908,33.6643,29.7051,30.1548,0.069664,0.882656,0.007872,0.004416,0.032352,0.095904,0.097024,28.8513,0.113568
+909,32,31.25,28.812,0.068384,0.872416,0.007616,0.004672,0.032768,0.095712,0.0968,27.5205,0.11312
+910,33.475,29.873,28.8299,0.069472,0.90304,0.006592,0.005568,0.031296,0.097376,0.097184,27.5061,0.113184
+911,32.9578,30.3418,30.2188,0.0696,1.0184,0.006272,0.006016,0.032224,0.094816,0.098272,28.7799,0.11328
+912,32.1871,31.0684,30.0788,0.069632,0.8704,0.006304,0.006016,0.030688,0.096288,0.09824,28.788,0.113216
+913,31.4767,31.7695,28.9628,0.069632,1.03427,0.00752,0.004736,0.032608,0.100384,0.097952,27.501,0.11472
+914,33.2792,30.0488,30.1828,0.069664,0.958432,0.007424,0.004896,0.031936,0.09504,0.097984,28.8034,0.114016
+915,32.0782,31.1738,28.8833,0.069472,0.861952,0.00688,0.005824,0.03104,0.096256,0.098304,27.5988,0.114688
+916,32.5183,30.752,30.5119,0.081952,1.20502,0.008,0.004256,0.032736,0.09424,0.097888,28.869,0.118752
+917,32,31.25,30.1951,0.069664,0.905184,0.007712,0.004576,0.032704,0.097696,0.101024,28.8623,0.114272
+918,31.7736,31.4727,28.7961,0.069568,0.900832,0.006496,0.005632,0.031232,0.095968,0.097856,27.4747,0.113888
+919,33.1284,30.1855,28.9115,0.069728,0.935744,0.006336,0.006144,0.031744,0.096704,0.096864,27.5538,0.114496
+920,33.2015,30.1191,30.1814,0.069632,0.96768,0.00704,0.004224,0.032768,0.095552,0.098528,28.793,0.112992
+921,32.1064,31.1465,28.8645,0.069184,0.874432,0.006656,0.005888,0.030976,0.09632,0.09824,27.5681,0.114688
+922,33.1456,30.1699,28.9122,0.06976,0.922176,0.006304,0.00576,0.031104,0.096288,0.0976,27.5688,0.114368
+923,33.0707,30.2383,30.2363,0.069664,1.02602,0.006272,0.006016,0.032288,0.094912,0.09808,28.7888,0.11424
+924,32.036,31.2148,30.0933,0.071168,0.921184,0.007104,0.005152,0.03168,0.096288,0.098272,28.7495,0.11296
+925,32.022,31.2285,28.7676,0.069632,0.915456,0.006304,0.00592,0.032064,0.096096,0.096928,27.4308,0.114432
+926,33.4619,29.8848,30.0834,0.06912,0.901248,0.007008,0.004224,0.032672,0.095488,0.098336,28.7608,0.114496
+927,31.976,31.2734,28.83,0.069856,0.905344,0.007744,0.004544,0.03232,0.096608,0.097568,27.5031,0.112992
+928,33.4859,29.8633,30.046,0.069472,0.901312,0.00624,0.005792,0.031072,0.095552,0.098208,28.7251,0.11328
+929,32.0541,31.1973,30.0822,0.069632,0.85952,0.006784,0.005344,0.03152,0.096192,0.097376,28.8015,0.114368
+930,31.6616,31.584,28.8763,0.06992,0.986848,0.006464,0.0056,0.031232,0.09616,0.096352,27.4698,0.11392
+931,33.0643,30.2441,28.9772,0.069632,0.978944,0.007424,0.004864,0.03232,0.095872,0.097088,27.5763,0.114688
+932,33.2965,30.0332,30.1675,0.069536,0.989248,0.006624,0.005408,0.031456,0.095904,0.098336,28.7582,0.112736
+933,32.1205,31.1328,28.811,0.068768,0.899936,0.007552,0.004736,0.0328,0.096224,0.098304,27.4878,0.11488
+934,33.3464,29.9883,28.8941,0.068512,0.908288,0.00704,0.004224,0.032768,0.096256,0.098304,27.564,0.114688
+935,32.8753,30.418,30.1262,0.069312,0.958976,0.006496,0.005696,0.031168,0.096192,0.097568,28.7403,0.120512
+936,31.9043,31.3438,30.1933,0.069632,0.995328,0.007968,0.015808,0.03152,0.095264,0.09728,28.7672,0.113312
+937,31.7185,31.5273,28.7785,0.069664,0.90064,0.006592,0.006016,0.031872,0.095232,0.098112,27.4572,0.113184
+938,33.4335,29.9102,30.0697,0.069856,0.937728,0.007072,0.004192,0.032256,0.096736,0.098272,28.7101,0.113472
+939,31.964,31.2852,28.9956,0.069632,1.01379,0.007424,0.004832,0.03264,0.096384,0.097376,27.5588,0.114688
+940,33.1327,30.1816,28.8136,0.069344,1.00403,0.006176,0.00592,0.030912,0.09616,0.097888,27.3901,0.113024
+941,33.6068,29.7559,30.9657,0.070688,0.878816,0.006912,0.005824,0.032224,0.095104,0.098048,29.6635,0.114656
+942,30.8713,32.3926,28.8946,0.069248,0.973216,0.007616,0.004672,0.03072,0.096288,0.09776,27.5021,0.112928
+943,33.2813,30.0469,28.9809,0.070016,0.95376,0.006752,0.006016,0.032032,0.0952,0.098176,27.6043,0.114688
+944,33.0835,30.2266,31.2036,0.069504,0.89744,0.006144,0.005984,0.032032,0.095136,0.098272,29.8865,0.11264
+945,31.0454,32.2109,28.8322,0.070112,0.90416,0.007136,0.005568,0.03136,0.096224,0.097824,27.505,0.114816
+946,33.1241,30.1895,28.8568,0.069568,0.975424,0.007488,0.0048,0.032192,0.095808,0.097248,27.461,0.113312
+947,33.2857,30.043,30.0886,0.069632,0.931168,0.006816,0.005728,0.031136,0.096256,0.098304,28.7355,0.114112
+948,31.8487,31.3984,28.9997,0.069632,1.10182,0.007968,0.00432,0.03264,0.096,0.09664,27.4778,0.112832
+949,33.7753,29.6074,28.8929,0.069888,0.973088,0.008,0.005568,0.031488,0.09616,0.097536,27.4953,0.115872
+950,32.9812,30.3203,30.1661,0.069408,0.985312,0.007648,0.00464,0.032096,0.09488,0.098304,28.7601,0.113728
+951,32.024,31.2266,29.3028,0.0696,0.99504,0.006464,0.005632,0.031232,0.096256,0.09776,27.8873,0.113568
+952,32.7701,30.5156,28.7519,0.071552,0.923776,0.006144,0.005344,0.030912,0.09408,0.096992,27.4101,0.11296
+953,32.9155,30.3809,30.1622,0.07136,1.00294,0.00704,0.005536,0.032864,0.096544,0.097824,28.7337,0.1144
+954,32.2256,31.0312,28.9115,0.0696,0.980576,0.006656,0.005408,0.031456,0.096256,0.098304,27.5098,0.113472
+955,33.1177,30.1953,30.1034,0.0696,0.936992,0.007008,0.005568,0.031456,0.096256,0.099712,28.7423,0.114496
+956,31.7815,31.4648,30.4047,0.069728,1.15354,0.016384,0.006144,0.032224,0.094752,0.098336,28.8211,0.112512
+957,32.1588,31.0957,28.8074,0.072608,0.89088,0.007648,0.00464,0.032768,0.09632,0.099328,27.4872,0.116064
+958,33.3442,29.9902,28.7483,0.069472,0.886688,0.006912,0.005248,0.031616,0.095744,0.097952,27.4415,0.11312
+959,33.0387,30.2676,30.4026,0.069664,1.10086,0.00704,0.005568,0.031328,0.09568,0.096864,28.8781,0.117408
+960,32.1245,31.1289,28.7812,0.069664,0.87264,0.006592,0.005472,0.031392,0.096256,0.09824,27.4863,0.114688
+961,32.0923,31.1602,28.9827,0.069632,1.01958,0.006464,0.006048,0.032224,0.095904,0.098336,27.5394,0.11504
+962,34.3463,29.1152,30.1589,0.069408,0.9152,0.006656,0.00544,0.031392,0.095936,0.104576,28.817,0.113248
+963,31.6166,31.6289,29.3584,0.069664,0.99392,0.00784,0.005568,0.031648,0.095968,0.098016,27.9414,0.1144
+964,32.6406,30.6367,29,0.071296,1.01853,0.008192,0.005536,0.031328,0.09616,0.096352,27.5597,0.112896
+965,33.3398,29.9941,30.0333,0.071488,0.87264,0.007776,0.005568,0.031712,0.095776,0.096736,28.7368,0.114816
+966,31.7638,31.4824,28.8743,0.070176,0.915456,0.007808,0.00448,0.032352,0.094624,0.098144,27.5376,0.113728
+967,33.3485,29.9863,30.01,0.070176,0.907392,0.007456,0.004832,0.03248,0.09584,0.098496,28.6787,0.11472
+968,31.8804,31.3672,30.1319,0.069952,0.950304,0.007584,0.004704,0.032096,0.09488,0.098048,28.7613,0.112992
+969,31.7303,31.5156,28.971,0.071264,0.98528,0.006368,0.006144,0.032448,0.096288,0.098528,27.5596,0.115136
+970,32.8037,30.4844,30.1309,0.069536,0.922464,0.007648,0.004672,0.032096,0.095936,0.097248,28.7881,0.113248
+971,32.3008,30.959,30.0647,0.069536,0.911456,0.007616,0.004672,0.032608,0.096224,0.098112,28.7311,0.113344
+972,31.8983,31.3496,28.8044,0.069632,0.96256,0.00736,0.00496,0.03184,0.095104,0.098272,27.4204,0.114272
+973,33.379,29.959,30.1098,0.070176,1.03424,0.008032,0.014496,0.032768,0.09552,0.096928,28.6428,0.114784
+974,32.0882,31.1641,28.7213,0.070048,0.97936,0.008032,0.004256,0.03248,0.09568,0.09712,27.3203,0.114016
+975,32.9684,30.332,30.1588,0.069632,0.913312,0.006272,0.006112,0.032096,0.096128,0.09664,28.826,0.112704
+976,31.8804,31.3672,30.3058,0.07168,1.08339,0.007328,0.00496,0.03216,0.094816,0.098304,28.799,0.114208
+977,32.008,31.2422,28.7436,0.069632,0.88064,0.0072,0.005088,0.032768,0.09568,0.096864,27.4409,0.114816
+978,33.6333,29.7324,28.8236,0.069056,0.897216,0.006624,0.00544,0.031424,0.096064,0.09648,27.5026,0.118688
+979,33.3203,30.0117,30.1256,0.069184,0.963008,0.006208,0.00608,0.033888,0.104608,0.097024,28.7312,0.114464
+980,31.9182,31.3301,28.9372,0.068544,0.874048,0.006592,0.005504,0.03136,0.095648,0.098176,27.6447,0.11264
+981,33.2857,30.043,28.8394,0.0696,0.856448,0.007584,0.004704,0.03248,0.095616,0.097184,27.5599,0.115872
+982,33.0387,30.2676,30.1425,0.069632,0.900896,0.0064,0.005664,0.031168,0.096288,0.098272,28.8212,0.112928
+983,32.2114,31.0449,30.1531,0.068256,0.886784,0.007936,0.005568,0.031584,0.099616,0.099008,28.8397,0.114592
+984,31.9361,31.3125,28.8388,0.069536,0.87136,0.007328,0.00496,0.03072,0.096288,0.097408,27.5465,0.114688
+985,33.392,29.9473,30.2122,0.069632,0.892928,0.007872,0.005568,0.031616,0.095968,0.096576,28.8972,0.114816
+986,32.024,31.2266,28.8369,0.069408,0.911488,0.006272,0.005792,0.032128,0.095168,0.098304,27.5044,0.113984
+987,33.3095,30.0215,30.193,0.070848,0.992064,0.007424,0.004864,0.032192,0.095936,0.097152,28.7785,0.113984
+988,32.0822,31.1699,30.0849,0.077152,0.881248,0.006208,0.005856,0.031008,0.0976,0.098208,28.7745,0.11312
+989,32.1487,31.1055,28.7719,0.069312,0.876192,0.007008,0.005568,0.031296,0.096,0.097792,27.474,0.114784
+990,33.554,29.8027,28.6559,0.069568,0.89024,0.007072,0.004192,0.032576,0.094368,0.098304,27.3428,0.116736
+991,33.4116,29.9297,30.1287,0.070208,0.931168,0.006816,0.005952,0.030912,0.104448,0.098304,28.7662,0.114688
+992,32.034,31.2168,28.7093,0.070112,0.874656,0.006496,0.0056,0.031264,0.096256,0.097568,27.4132,0.114144
+993,32.7449,30.5391,29.1134,0.069632,1.20013,0.00736,0.004928,0.05088,0.096576,0.098304,27.4698,0.115776
+994,32.676,30.6035,30.175,0.069728,0.988416,0.006912,0.005184,0.043968,0.09616,0.098016,28.7441,0.12256
+995,32.9345,30.3633,30.1892,0.068928,0.951072,0.007936,0.005568,0.031552,0.095712,0.0968,28.8165,0.1152
+996,32.1084,31.1445,28.7417,0.070112,0.860448,0.007616,0.004672,0.032192,0.094784,0.09824,27.4596,0.113984
+997,33.2965,30.0332,30.1118,0.069696,0.87808,0.006656,0.006048,0.03232,0.108416,0.096928,28.801,0.112672
+998,31.9063,31.3418,28.7764,0.07152,0.869568,0.00704,0.004224,0.032704,0.095808,0.097984,27.4829,0.114688
+999,33.4597,29.8867,30.1001,0.0696,0.930464,0.007328,0.00496,0.03216,0.096192,0.096928,28.7478,0.114688
+1000,31.998,31.252,29.9851,0.068448,0.871968,0.006624,0.005472,0.031424,0.096224,0.098304,28.6925,0.114112
+1001,32.0762,31.1758,28.7886,0.069632,0.888832,0.00784,0.005568,0.031648,0.096128,0.097504,27.4766,0.114784
+1002,33.3594,29.9766,28.8198,0.069824,0.892448,0.006752,0.005312,0.04112,0.094592,0.097856,27.4989,0.11296
+1003,33.137,30.1777,30.1138,0.072768,0.924384,0.006368,0.006144,0.032064,0.096192,0.098112,28.7631,0.114656
+1004,32.002,31.248,28.7941,0.069664,0.915424,0.0072,0.005024,0.032832,0.096256,0.098208,27.4551,0.114464
+1005,31.9083,31.3398,28.866,0.069632,0.9048,0.00656,0.005984,0.03232,0.10096,0.10176,27.5271,0.116928
+1006,34.5526,28.9414,30.0966,0.069632,0.954368,0.00784,0.004448,0.032128,0.09664,0.097952,28.7188,0.114816
+1007,32.0782,31.1738,30.081,0.070848,0.901952,0.007232,0.005056,0.032576,0.0944,0.098208,28.758,0.1128
+1008,32.0923,31.1602,28.7319,0.06944,0.878944,0.006528,0.006144,0.03184,0.095136,0.098144,27.4311,0.114688
+1009,33.1434,30.1719,30.2565,0.069856,0.95856,0.007744,0.005568,0.031712,0.096256,0.098304,28.8748,0.113792
+1010,31.6069,31.6387,28.8603,0.069632,0.862208,0.00624,0.005824,0.032384,0.094816,0.097984,27.5766,0.114528
+1011,33.5408,29.8145,30.1609,0.069696,0.982496,0.006624,0.00608,0.030848,0.096192,0.09808,28.7578,0.113088
+1012,31.8368,31.4102,30.0155,0.069344,0.882688,0.007072,0.004192,0.032608,0.09552,0.097152,28.713,0.113952
+1013,30.8285,32.4375,28.8826,0.078336,0.9576,0.007008,0.0056,0.033312,0.096256,0.098016,27.492,0.114464
+1014,33.0835,30.2266,29.0149,0.06848,1.09302,0.006752,0.014112,0.032544,0.096128,0.09888,27.4903,0.114688
+1015,31.5718,31.6738,30.1313,0.069632,0.982112,0.006976,0.005376,0.031584,0.096288,0.097664,28.7273,0.114368
+1016,32.6239,30.6523,28.7662,0.069632,0.902944,0.006368,0.006144,0.032032,0.09616,0.099008,27.4407,0.113216
+1017,32.004,31.2461,29.1532,0.095808,1.11222,0.016672,0.00608,0.03216,0.09488,0.098304,27.5825,0.114656
+1018,32.2723,30.9863,30.2252,0.070368,1.0815,0.007808,0.016768,0.032768,0.095808,0.097984,28.709,0.113248
+1019,32.032,31.2188,30.3554,0.069632,1.11002,0.007616,0.004672,0.032736,0.095648,0.100832,28.8196,0.114592
+1020,31.3476,31.9004,29.3503,0.069408,1.34624,0.006176,0.018272,0.044512,0.1072,0.097376,27.5479,0.113152
+1021,32.5679,30.7051,30.3473,0.07008,1.1631,0.00688,0.016128,0.032096,0.10512,0.098304,28.7416,0.114016
+1022,31.2958,31.9531,29.4011,0.069632,1.50717,0.006304,0.006016,0.032128,0.1024,0.097024,27.467,0.113376
+1023,34.9822,28.5859,30.0896,0.069952,0.93232,0.007424,0.004832,0.032448,0.096128,0.096704,28.7355,0.114336
+1024,32.1184,31.1348,30.1011,0.08224,0.929792,0.016384,0.00512,0.031744,0.09568,0.097984,28.7295,0.112608
+1025,31.9003,31.3477,28.9069,0.071648,0.935968,0.007776,0.005568,0.031712,0.096256,0.097632,27.5457,0.11472
+1026,32.8943,30.4004,28.8358,0.069664,0.957888,0.006688,0.012288,0.032288,0.094688,0.104288,27.4434,0.114688
+1027,33.6068,29.7559,30.1732,0.069632,0.933792,0.00624,0.014336,0.032768,0.095904,0.097792,28.808,0.114688
+1028,31.6695,31.5762,28.8727,0.069632,0.884576,0.006304,0.005728,0.031168,0.096256,0.09776,27.5679,0.113408
+1029,33.1886,30.1309,28.8392,0.071008,0.854176,0.006688,0.00592,0.030912,0.096256,0.097376,27.5629,0.113984
+1030,33.2662,30.0605,30.167,0.069632,0.937984,0.01792,0.005728,0.031648,0.096288,0.099456,28.7952,0.113152
+1031,31.7401,31.5059,29.0693,0.069664,1.01168,0.007392,0.004896,0.032384,0.095904,0.098144,27.6338,0.115424
+1032,33.0771,30.2324,29.9028,0.069632,1.10182,0.007264,0.005024,0.032768,0.096256,0.100384,28.375,0.114656
+1033,32.0521,31.1992,30.3309,0.071072,0.983648,0.006272,0.006016,0.040224,0.094944,0.098112,28.9159,0.114688
+1034,31.2443,32.0059,29.0178,0.068128,1.01296,0.006944,0.005152,0.031648,0.112352,0.09808,27.5667,0.115904
+1035,33.2965,30.0332,30.2089,0.069664,0.96096,0.006528,0.00608,0.032064,0.095008,0.098272,28.8268,0.11344
+1036,31.8527,31.3945,30.2273,0.068512,0.966688,0.00608,0.005824,0.032416,0.094816,0.097376,28.8409,0.114688
+1037,31.7677,31.4785,29.0775,0.069632,0.980032,0.007104,0.005568,0.041568,0.104416,0.098176,27.6563,0.114688
+1038,33.0301,30.2754,28.9074,0.070336,0.980832,0.006464,0.005856,0.032064,0.095072,0.096384,27.5067,0.113728
+1039,33.122,30.1914,30.165,0.069632,0.95584,0.00672,0.005856,0.031008,0.096288,0.098272,28.7841,0.117312
+1040,31.8626,31.3848,28.9845,0.069632,0.956128,0.006432,0.005664,0.0312,0.096288,0.106464,27.5988,0.113824
+1041,33.0963,30.2148,28.9087,0.069568,0.972864,0.007904,0.004384,0.032416,0.1048,0.1024,27.4984,0.115904
+1042,33.107,30.2051,30.212,0.069408,0.987552,0.0072,0.005088,0.032032,0.095136,0.098112,28.8031,0.114432
+1043,31.5854,31.6602,30.1056,0.069632,0.93184,0.007776,0.005568,0.031712,0.095552,0.096992,28.7518,0.114688
+1044,32.3825,30.8809,28.9722,0.069632,0.954368,0.016384,0.005696,0.032896,0.094528,0.098304,27.5866,0.113792
+1045,33.3724,29.9648,30.1875,0.069632,0.908704,0.006752,0.005888,0.032064,0.095168,0.098144,28.8585,0.11264
+1046,31.8527,31.3945,28.9669,0.069664,1.03011,0.007264,0.005024,0.031808,0.09504,0.097856,27.5155,0.114688
+1047,31.0793,32.1758,30.3091,0.068288,1.32454,0.006656,0.005952,0.030912,0.096288,0.09936,28.3084,0.36864
+1048,32.6447,30.6328,30.4579,0.069632,1.21206,0.006496,0.013568,0.032896,0.096192,0.1072,28.8063,0.113472
+1049,32.401,30.8633,29.0237,0.078304,0.98304,0.024128,0.005984,0.031328,0.096256,0.096256,27.5945,0.113952
+1050,31.5854,31.6602,29.288,0.069632,1.22266,0.016416,0.005152,0.031456,0.096064,0.09872,27.6333,0.114624
+1051,34.4874,28.9961,30.1733,0.069088,0.998016,0.007424,0.004864,0.032544,0.095776,0.097056,28.7538,0.11472
+1052,31.7539,31.4922,28.7686,0.068576,0.978464,0.006624,0.0056,0.031264,0.096192,0.09808,27.3677,0.116064
+1053,33.2511,30.0742,28.9309,0.069728,0.955168,0.00752,0.004768,0.032768,0.094208,0.098304,27.5538,0.114688
+1054,33.0578,30.25,30.1458,0.069632,0.996544,0.006976,0.004256,0.032608,0.096256,0.097568,28.7296,0.112384
+1055,32.0401,31.2109,30.0766,0.070016,0.888736,0.006208,0.006144,0.0328,0.096224,0.098016,28.764,0.114432
+1056,31.7342,31.5117,28.9776,0.069472,1.01133,0.00704,0.004192,0.032768,0.09536,0.096896,27.5477,0.1128
+1057,32.9812,30.3203,30.2333,0.069632,0.963328,0.007392,0.004896,0.03264,0.096416,0.0984,28.8311,0.129568
+1058,31.6714,31.5742,28.7363,0.06976,0.920256,0.007808,0.00448,0.032608,0.09552,0.098336,27.3929,0.114688
+1059,33.2036,30.1172,30.2817,0.069088,1.00794,0.006368,0.006144,0.032768,0.102304,0.097824,28.8446,0.114688
+1060,29.8125,33.543,30.0606,0.069824,0.950624,0.007936,0.004352,0.03232,0.104096,0.097056,28.6813,0.11312
+1061,34.0516,29.3672,28.885,0.069632,0.95584,0.00672,0.005888,0.030976,0.096288,0.098304,27.5067,0.114688
+1062,33.5166,29.8359,28.6638,0.07088,0.849824,0.00704,0.004288,0.032576,0.09568,0.096832,27.3931,0.113632
+1063,33.1392,30.1758,30.0737,0.069472,0.943104,0.00784,0.005568,0.031648,0.096192,0.09632,28.712,0.111552
+1064,32.177,31.0781,28.7894,0.069888,0.881248,0.006144,0.0056,0.032512,0.095008,0.098304,27.4862,0.114496
+1065,33.4378,29.9062,28.9171,0.069664,0.913376,0.0072,0.005088,0.032544,0.096448,0.098272,27.5716,0.12288
+1066,33.1263,30.1875,30.037,0.07024,0.893344,0.007296,0.004992,0.031808,0.095104,0.09632,28.7124,0.125568
+1067,31.2309,32.0195,30.2326,0.071456,1.01754,0.007744,0.005088,0.032704,0.112064,0.102848,28.7697,0.113408
+1068,31.9122,31.3359,28.6845,0.0696,0.898912,0.006656,0.005376,0.031488,0.095616,0.096896,27.3665,0.113472
+1069,33.1134,30.1992,30.2221,0.070144,0.993248,0.007424,0.014752,0.031072,0.096256,0.098272,28.7964,0.114624
+1070,32.1689,31.0859,28.8152,0.070816,0.891744,0.0072,0.005024,0.03088,0.09552,0.096832,27.4904,0.126816
+1071,33.2209,30.1016,30.0884,0.0688,0.915424,0.006816,0.005536,0.031616,0.096256,0.098304,28.7334,0.132224
+1072,31.6166,31.6289,30.2893,0.069632,0.961952,0.006752,0.005312,0.047936,0.096256,0.098336,28.8905,0.11264
+1073,31.9242,31.3242,28.9603,0.069632,0.87152,0.007072,0.006144,0.03216,0.106336,0.0984,27.6543,0.114688
+1074,31.9361,31.3125,29.0533,0.069728,1.14454,0.00672,0.005312,0.031552,0.100352,0.098208,27.4822,0.114688
+1075,32.4379,30.8281,30.3616,0.071712,1.03958,0.006944,0.005792,0.03216,0.106528,0.103168,28.881,0.11472
+1076,32.8205,30.4688,28.9373,0.069472,0.996608,0.00704,0.004192,0.032704,0.096288,0.098272,27.518,0.114752
+1077,31.4612,31.7852,29.1512,0.069632,1.23494,0.014336,0.006048,0.030816,0.096352,0.09792,27.4878,0.113376
+1078,35.4374,28.2188,30.0687,0.069664,0.849152,0.006912,0.005152,0.03168,0.110592,0.098304,28.7841,0.113152
+1079,31.8804,31.3672,29.7183,0.069632,1.01789,0.007616,0.00464,0.04096,0.096256,0.110624,28.2558,0.11488
+1080,32.1406,31.1133,28.822,0.068032,0.905088,0.006272,0.005792,0.042688,0.110848,0.098272,27.4703,0.114688
+1081,33.3724,29.9648,30.1094,0.069472,0.895712,0.007392,0.004896,0.032544,0.096128,0.097728,28.7917,0.113856
+1082,32.0722,31.1797,28.8473,0.069632,0.978176,0.006912,0.005184,0.031712,0.09568,0.096832,27.4492,0.113984
+1083,33.0578,30.25,29.3209,0.069632,0.960544,0.007552,0.004704,0.0328,0.096224,0.098112,27.937,0.1144
+1084,32.9684,30.332,30.8058,0.069632,0.874496,0.006144,0.006176,0.032512,0.09584,0.096928,29.5114,0.11264
+1085,31.019,32.2383,28.9495,0.070624,0.991232,0.008192,0.005568,0.031296,0.096256,0.097408,27.5342,0.114688
+1086,33.2036,30.1172,28.9286,0.069632,1.01978,0.006912,0.005184,0.03168,0.096288,0.098272,27.4874,0.113472
+1087,33.1649,30.1523,30.0999,0.06912,0.934848,0.008032,0.005536,0.03152,0.101792,0.098912,28.7355,0.114688
+1088,31.8448,31.4023,28.8753,0.070144,0.885216,0.006208,0.005856,0.036352,0.094944,0.1,27.5623,0.114208
+1089,33.6842,29.6875,28.7735,0.069632,0.845824,0.006176,0.006112,0.03264,0.094336,0.098048,27.5067,0.114016
+1090,33.3942,29.9453,30.1553,0.069536,0.9448,0.016704,0.005824,0.031136,0.096224,0.098368,28.7784,0.114336
+1091,31.8527,31.3945,30.1855,0.069536,0.968864,0.007296,0.004992,0.038912,0.096256,0.110592,28.7759,0.113152
+1092,31.9441,31.3047,29.01,0.07168,0.95552,0.00704,0.004192,0.040896,0.096224,0.098304,27.6214,0.114784
+1093,33.2554,30.0703,30.1833,0.069248,0.908032,0.00624,0.00592,0.031872,0.096256,0.09728,28.8542,0.11424
+1094,30.5891,32.6914,29.0534,0.068384,1.10387,0.007488,0.014784,0.032384,0.096032,0.09712,27.518,0.11536
+1095,33.7108,29.6641,30.221,0.080416,0.952064,0.006592,0.005568,0.031296,0.096288,0.098176,28.8216,0.129024
+1096,31.8012,31.4453,29.9996,0.068096,0.88176,0.007072,0.004192,0.032384,0.10016,0.102464,28.6765,0.126976
+1097,31.9242,31.3242,28.8708,0.069632,0.897024,0.007392,0.004896,0.03264,0.095648,0.096992,27.5517,0.114784
+1098,33.0408,30.2656,28.9014,0.069536,0.921696,0.006208,0.005856,0.032192,0.099168,0.097824,27.5543,0.114688
+1099,33.2252,30.0977,30.2858,0.069664,0.910976,0.006528,0.006112,0.030752,0.096256,0.098304,28.9538,0.11344
+1100,31.3879,31.8594,28.9334,0.069632,0.90112,0.007776,0.004512,0.032256,0.09472,0.105728,27.6049,0.112832
+1101,32.8838,30.4102,29.0605,0.069184,0.971424,0.008192,0.005664,0.0312,0.09776,0.097888,27.6633,0.115904
+1102,33.7153,29.6602,30.0616,0.069472,0.864416,0.007296,0.004992,0.03184,0.095136,0.098304,28.7764,0.113696
+1103,31.7224,31.5234,30.2057,0.069184,0.981568,0.007392,0.004864,0.0328,0.095424,0.097056,28.8023,0.115104
+1104,32.2296,31.0273,28.9135,0.069632,0.888864,0.007648,0.00464,0.032192,0.094752,0.09808,27.6032,0.11456
+1105,33.0067,30.2969,30.1645,0.070144,0.913408,0.00752,0.004768,0.032768,0.09536,0.097152,28.8297,0.113728
+1106,32.2621,30.9961,28.8242,0.070176,0.878432,0.0064,0.00576,0.031104,0.096288,0.098272,27.5247,0.113024
+1107,33.3203,30.0117,30.1015,0.069664,0.872416,0.007552,0.004736,0.032384,0.096288,0.097632,28.8061,0.114688
+1108,31.9122,31.3359,30.093,0.069632,0.90112,0.007296,0.004992,0.032032,0.096992,0.099392,28.7682,0.113312
+1109,32.177,31.0781,28.7349,0.06944,0.87072,0.00752,0.004768,0.032352,0.095936,0.097024,27.4422,0.114944
+1110,33.4422,29.9023,28.7782,0.069216,0.881216,0.008192,0.00528,0.031584,0.095456,0.10048,27.4725,0.114208
+1111,33.5122,29.8398,30.1638,0.06848,1.01344,0.006496,0.006112,0.032288,0.095968,0.0984,28.7292,0.113408
+1112,31.9162,31.332,28.8998,0.069536,0.9776,0.007392,0.004896,0.032704,0.095328,0.097248,27.5018,0.113344
+1113,33.0237,30.2812,28.9955,0.069664,0.94208,0.00768,0.004576,0.032768,0.096096,0.098368,27.6289,0.115296
+1114,33.277,30.0508,30.2233,0.069568,0.963552,0.007584,0.004704,0.032256,0.095936,0.09712,28.8392,0.113344
+1115,32.0401,31.2109,30.1199,0.069632,0.887936,0.007008,0.005568,0.031328,0.095584,0.096928,28.8113,0.114688
+1116,32.1446,31.1094,28.7764,0.07072,0.874944,0.006656,0.005568,0.031296,0.095776,0.104928,27.473,0.1136
+1117,33.4947,29.8555,29.9755,0.06976,0.883456,0.007616,0.019008,0.032544,0.095904,0.097856,28.6539,0.115392
+1118,32.2581,31,28.8338,0.06944,0.870592,0.00624,0.005856,0.032384,0.107072,0.098304,27.5292,0.114688
+1119,33.4553,29.8906,30.036,0.077536,0.894464,0.006944,0.005632,0.031264,0.095904,0.097856,28.7129,0.113472
+1120,32.0842,31.168,30.1527,0.069664,0.86832,0.00784,0.004448,0.032288,0.09472,0.102368,28.8584,0.11472
+1121,32.012,31.2383,28.814,0.0704,0.89664,0.006528,0.006144,0.031968,0.095008,0.09776,27.4947,0.114912
+1122,33.5782,29.7812,28.8734,0.069952,0.872768,0.00784,0.004448,0.032544,0.095872,0.096864,27.5784,0.11472
+1123,33.0835,30.2266,30.1896,0.069664,0.991072,0.006272,0.006144,0.031872,0.096224,0.097184,28.7764,0.114688
+1124,32.0441,31.207,28.8932,0.069632,0.916704,0.006944,0.00512,0.031744,0.096064,0.0984,27.5556,0.113024
+1125,32.8037,30.4844,28.8133,0.07072,0.87136,0.007936,0.005536,0.031584,0.094208,0.09824,27.519,0.114688
+1126,33.9073,29.4922,30.2435,0.070176,1.00531,0.006848,0.005312,0.031584,0.096224,0.097568,28.8174,0.113056
+1127,31.9601,31.2891,29.9418,0.06976,0.965376,0.007712,0.004576,0.032768,0.096224,0.096288,28.3009,0.368192
+1128,31.968,31.2812,28.8735,0.069632,0.955168,0.007552,0.004736,0.032256,0.09472,0.098304,27.4964,0.114688
+1129,33.1392,30.1758,30.1588,0.070016,0.977376,0.007968,0.005568,0.031488,0.096064,0.097664,28.7588,0.113824
+1130,31.9043,31.3438,28.8461,0.069632,0.961792,0.006944,0.005088,0.031712,0.096224,0.098368,27.4628,0.113504
+1131,33.4291,29.9141,30.2612,0.069632,0.991232,0.00624,0.006048,0.032224,0.096128,0.097952,28.8471,0.114688
+1132,31.2958,31.9531,30.3396,0.069408,0.989888,0.006208,0.005856,0.030944,0.096288,0.097344,28.9289,0.114688
+1133,31.6949,31.5508,28.8959,0.069696,0.970816,0.022464,0.005984,0.031488,0.096256,0.097792,27.4867,0.114688
+1134,33.152,30.1641,29.011,0.070912,0.996096,0.007328,0.00496,0.03088,0.095648,0.096704,27.5948,0.113728
+1135,33.355,29.9805,30.1196,0.072288,0.946176,0.007776,0.005568,0.032896,0.096896,0.098272,28.7457,0.114048
+1136,31.8725,31.375,28.9157,0.069664,1.01526,0.006656,0.005568,0.031296,0.09552,0.096992,27.4801,0.114688
+1137,33.1392,30.1758,28.9328,0.06832,0.898176,0.007072,0.005664,0.031168,0.096256,0.097696,27.6136,0.11488
+1138,32.9897,30.3125,30.2868,0.069856,1.0201,0.02064,0.004608,0.040896,0.096256,0.097888,28.8219,0.114688
+1139,32.1205,31.1328,30.1016,0.069696,0.871008,0.007776,0.005536,0.031744,0.095744,0.096768,28.8092,0.114112
+1140,31.8527,31.3945,30.2019,0.069632,0.966656,0.007232,0.013056,0.032416,0.0968,0.104448,28.799,0.112672
+1141,31.8487,31.3984,28.9075,0.069344,0.868032,0.006752,0.006016,0.030848,0.09792,0.09664,27.6173,0.114688
+1142,33.416,29.9258,28.8154,0.070976,0.891584,0.0072,0.005088,0.031872,0.095104,0.09824,27.5019,0.113376
+1143,32.9939,30.3086,30.1886,0.069632,1.0135,0.0064,0.006144,0.032672,0.106592,0.097472,28.7425,0.11376
+1144,32.0521,31.1992,28.9381,0.06912,0.911232,0.006784,0.005248,0.031616,0.096288,0.098272,27.6047,0.114912
+1145,33.1392,30.1758,28.7541,0.06976,0.8848,0.007424,0.004864,0.0328,0.095616,0.098464,27.4457,0.114688
+1146,32.9472,30.3516,30.4742,0.07072,1.27072,0.006208,0.005856,0.032224,0.10688,0.09776,28.7712,0.11264
+1147,32.2053,31.0508,30.0544,0.07088,0.961344,0.007456,0.0048,0.032128,0.094848,0.098304,28.6715,0.11312
+1148,31.9162,31.332,29.2132,0.069312,1.22698,0.00672,0.005472,0.032544,0.095104,0.096288,27.5675,0.11328
+1149,33.277,30.0508,30.0923,0.06864,0.872416,0.007904,0.005536,0.031616,0.096256,0.09808,28.7987,0.113184
+1150,31.6832,31.5625,29.1295,0.07008,1.10013,0.014304,0.00576,0.031104,0.096256,0.098272,27.6,0.1136
+1151,32.7953,30.4922,29.8803,0.0696,0.860192,0.007616,0.004672,0.032384,0.094592,0.097696,28.5989,0.114688
+1152,32.8247,30.4648,30.0201,0.069536,0.876448,0.006848,0.005248,0.031616,0.095648,0.096864,28.7243,0.1136
+1153,30.5635,32.7188,28.909,0.068992,1.00851,0.007552,0.004736,0.03264,0.095712,0.096928,27.4801,0.113856
+1154,35.0301,28.5469,28.7149,0.07008,0.876288,0.0064,0.005664,0.0312,0.096256,0.097312,27.4176,0.114176
+1155,33.355,29.9805,30.0934,0.069984,0.91152,0.007712,0.004576,0.040736,0.096384,0.10864,28.7396,0.114304
+1156,31.9561,31.293,28.9049,0.069536,0.940608,0.006144,0.005984,0.03088,0.106496,0.110592,27.5205,0.114176
+1157,33.3637,29.9727,28.8725,0.069664,0.967808,0.00704,0.005632,0.031232,0.096256,0.09808,27.4823,0.114432
+1158,33.0707,30.2383,30.1531,0.069984,0.980256,0.00688,0.005152,0.031648,0.095488,0.096896,28.7541,0.11264
+1159,31.7539,31.4922,30.2281,0.070688,1.00822,0.006528,0.00608,0.030784,0.097376,0.098272,28.7954,0.114752
+1160,31.821,31.4258,28.8317,0.071168,0.985248,0.006496,0.005696,0.031168,0.096224,0.097312,27.4258,0.11264
+1161,32.6656,30.6133,30.1302,0.07488,0.930496,0.006336,0.006144,0.046144,0.096512,0.096992,28.7591,0.113568
+1162,32.8626,30.4297,28.7865,0.069632,0.864256,0.007808,0.00448,0.032256,0.09472,0.098336,27.5005,0.114496
+1163,33.0621,30.2461,30.1194,0.069056,0.938656,0.007488,0.0048,0.032608,0.096128,0.102688,28.7532,0.114688
+1164,31.988,31.2617,30.0785,0.069664,0.88864,0.006304,0.00576,0.032416,0.094944,0.098304,28.7683,0.114208
+1165,31.6675,31.5781,28.9444,0.069568,1.05178,0.007008,0.004192,0.0328,0.10032,0.098304,27.4607,0.119712
+1166,33.3724,29.9648,28.6231,0.069536,0.919936,0.007968,0.00432,0.032672,0.096352,0.098272,27.2807,0.113408
+1167,33.6134,29.75,30.054,0.069632,0.960544,0.008,0.005568,0.039648,0.096288,0.098272,28.6618,0.114304
+1168,32.0802,31.1719,28.8379,0.069632,0.89088,0.007424,0.004864,0.032544,0.096448,0.102112,27.5172,0.116736
+1169,32.8247,30.4648,28.918,0.069632,1.09856,0.006176,0.006112,0.032032,0.094976,0.098272,27.3961,0.11616
+1170,33.1263,30.1875,30.1835,0.07088,1.00627,0.00624,0.005824,0.031072,0.095776,0.096704,28.7532,0.117504
+1171,31.6792,31.5664,30.1125,0.069696,0.9424,0.006688,0.005984,0.032096,0.096768,0.098208,28.7461,0.114624
+1172,31.019,32.2383,28.9717,0.068288,1.07318,0.00816,0.004224,0.03264,0.09536,0.0992,27.477,0.113632
+1173,33.5738,29.7852,30.1664,0.069664,1.02986,0.006432,0.006112,0.03248,0.095552,0.09728,28.7149,0.11408
+1174,32.1285,31.125,28.8298,0.069728,0.94,0.007776,0.004512,0.032512,0.094496,0.097984,27.4701,0.112672
+1175,31.8131,31.4336,30.0702,0.069536,1.03446,0.008,0.005568,0.03136,0.096256,0.098304,28.6126,0.11408
+1176,32.36,30.9023,30.3621,0.069536,1.12909,0.0072,0.005024,0.031936,0.096128,0.09728,28.8133,0.11264
+1177,32.3928,30.8711,28.8608,0.06976,0.977152,0.008096,0.005536,0.031424,0.096256,0.097536,27.4604,0.114688
+1178,33.1864,30.1328,28.9409,0.070208,0.982144,0.00704,0.004192,0.032736,0.09424,0.098272,27.5374,0.114592
+1179,33.1993,30.1211,30.1015,0.069408,0.95664,0.007776,0.005568,0.031712,0.096192,0.096352,28.7225,0.11536
+1180,31.976,31.2734,28.8203,0.070048,0.95408,0.00688,0.005184,0.031712,0.096224,0.097728,27.4438,0.114688
+1181,33.2424,30.082,28.8444,0.069504,0.938464,0.007168,0.005088,0.032288,0.094752,0.09824,27.4842,0.11472
+1182,33.3203,30.0117,29.9452,0.069632,0.851968,0.007328,0.00496,0.032256,0.095744,0.09728,28.6716,0.114496
+1183,31.8527,31.3945,30.1871,0.06976,0.985088,0.007808,0.005568,0.031712,0.095584,0.098272,28.7792,0.114144
+1184,31.4883,31.7578,28.9509,0.068032,0.964544,0.006272,0.005856,0.03232,0.096704,0.098304,27.5642,0.114688
+1185,32.4461,30.8203,30.0297,0.069632,0.957824,0.006784,0.005824,0.03216,0.096928,0.096512,28.6495,0.114592
+1186,32.6156,30.6602,28.8296,0.069536,0.949472,0.00704,0.004288,0.032576,0.100256,0.0984,27.4493,0.11872
+1187,33.1563,30.1602,30.1866,0.069728,0.978944,0.006304,0.005856,0.031872,0.095232,0.098304,28.7863,0.114048
+1188,31.9561,31.293,30.1597,0.068544,0.989056,0.007424,0.004864,0.032,0.096416,0.096864,28.7498,0.114688
+1189,32.2581,31,28.7941,0.06944,0.852288,0.00736,0.004928,0.032256,0.09472,0.098304,27.5203,0.114528
+1190,33.29,30.0391,28.8543,0.070688,0.896,0.007904,0.004384,0.032352,0.094592,0.098304,27.5354,0.114688
+1191,33.0237,30.2812,30.1715,0.067904,0.944128,0.007488,0.0048,0.032768,0.098304,0.0976,28.8038,0.114688
+1192,31.8091,31.4375,28.8989,0.07088,0.916256,0.007232,0.005056,0.03232,0.096288,0.097984,27.5583,0.11456
+1193,33.264,30.0625,28.7826,0.07104,0.846464,0.007424,0.004864,0.032768,0.096064,0.096448,27.5128,0.114688
+1194,33.1692,30.1484,30.0711,0.06976,0.947584,0.015072,0.005984,0.032064,0.095104,0.098176,28.6946,0.112768
+1195,30.1709,33.1445,30.3277,0.076224,1.1719,0.015776,0.005984,0.03152,0.106464,0.097344,28.7037,0.118816
+1196,32.9557,30.3438,28.7314,0.069632,0.88032,0.006464,0.0056,0.032352,0.095168,0.097728,27.4308,0.113376
+1197,33.3507,29.9844,30.0858,0.0696,0.935936,0.021152,0.006144,0.036864,0.096256,0.106528,28.7001,0.113216
+1198,32.036,31.2148,28.8232,0.075936,0.948064,0.006336,0.005728,0.031136,0.106496,0.098304,27.4364,0.114848
+1199,32.9176,30.3789,30.1817,0.06928,1.09846,0.006112,0.006144,0.032576,0.096448,0.096416,28.6616,0.114688
+1200,31.0755,32.1797,30.2925,0.069888,1.19811,0.007456,0.011232,0.032768,0.100384,0.108,28.6519,0.112736
+1201,32.541,30.7305,28.7724,0.06976,0.892896,0.007936,0.005568,0.031552,0.096256,0.098304,27.4555,0.114688
+1202,33.1177,30.1953,28.9136,0.07072,1.06387,0.007744,0.004544,0.031968,0.094912,0.100448,27.4266,0.112832
+1203,33.5166,29.8359,30.1568,0.069632,0.9248,0.006848,0.005568,0.031488,0.096096,0.097664,28.8112,0.113472
+1204,31.6284,31.6172,28.9065,0.070176,0.92208,0.007616,0.004672,0.032736,0.094208,0.098304,27.5634,0.113312
+1205,33.3811,29.957,28.887,0.069664,0.986176,0.00704,0.005568,0.031328,0.096256,0.09952,27.4764,0.115104
+1206,33.2122,30.1094,30.1306,0.069632,1.0119,0.006912,0.005152,0.031552,0.0944,0.098304,28.6986,0.114144
+1207,32.032,31.2188,30.1007,0.06896,0.90128,0.00688,0.005952,0.032,0.0952,0.098304,28.778,0.114176
+1208,31.821,31.4258,28.9669,0.069632,1.00307,0.006592,0.00544,0.031424,0.095776,0.096768,27.5448,0.113472
+1209,33.355,29.9805,30.0663,0.069696,0.935232,0.006816,0.005792,0.031072,0.096192,0.095808,28.7114,0.114272
+1210,32.2906,30.9688,28.7437,0.07088,0.865056,0.0072,0.005024,0.032032,0.095008,0.097664,27.4574,0.113376
+1211,33.4509,29.8945,30.1311,0.069728,0.944544,0.00656,0.006016,0.031008,0.096096,0.098304,28.7662,0.11264
+1212,31.9003,31.3477,30.0805,0.069344,0.942464,0.008,0.004288,0.032768,0.107904,0.098496,28.7046,0.11264
+1213,32.4133,30.8516,28.6824,0.069728,0.855776,0.006432,0.005728,0.0312,0.096192,0.098016,27.4046,0.11472
+1214,33.6754,29.6953,28.7355,0.069632,0.877984,0.006752,0.005312,0.031552,0.09424,0.098272,27.4391,0.11264
+1215,33.6311,29.7344,30.1079,0.06896,0.90512,0.007104,0.005536,0.03136,0.096416,0.099648,28.7803,0.113472
+1216,32.032,31.2188,28.6895,0.069632,0.866304,0.007712,0.004576,0.032768,0.096256,0.098272,27.4002,0.113792
+1217,33.1993,30.1211,28.8317,0.069632,0.933888,0.007648,0.00464,0.032512,0.095712,0.098304,27.4761,0.113344
+1218,33.6046,29.7578,29.9667,0.06976,0.86064,0.007584,0.004704,0.032512,0.1088,0.098304,28.67,0.114368
+1219,32.1366,31.1172,30.0111,0.069632,0.905152,0.00624,0.006112,0.032128,0.096672,0.097536,28.6789,0.118784
+1220,32.2947,30.9648,28.7353,0.0736,0.847968,0.006176,0.005856,0.031008,0.096384,0.100224,27.4575,0.116512
+1221,33.3681,29.9688,30.0844,0.069632,0.876544,0.006208,0.00608,0.03232,0.095936,0.097024,28.7867,0.114016
+1222,31.6245,31.6211,29.1309,0.069632,1.0793,0.007456,0.004832,0.032352,0.1024,0.10064,27.6114,0.122912
+1223,32.6156,30.6602,30.4921,0.069472,1.21875,0.015584,0.00608,0.031584,0.10448,0.098272,28.8334,0.114464
+1224,31.8368,31.4102,30.259,0.08368,1.0071,0.013088,0.006048,0.030816,0.095904,0.10688,28.8003,0.1152
+1225,31.9202,31.3281,28.8418,0.069856,0.995328,0.007392,0.004896,0.032448,0.09584,0.098592,27.4227,0.114816
+1226,32.012,31.2383,28.8961,0.069472,1.02298,0.008128,0.00416,0.0328,0.094176,0.106144,27.4453,0.11296
+1227,34.7072,28.8125,30.1896,0.069664,0.922624,0.007008,0.005568,0.041696,0.0976,0.098592,28.8339,0.112992
+1228,32.1366,31.1172,28.7427,0.070112,0.860704,0.00624,0.005888,0.030944,0.096192,0.098144,27.4609,0.113504
+1229,33.1092,30.2031,29.0542,0.069632,1.11389,0.016608,0.005952,0.042336,0.106368,0.096576,27.4886,0.114176
+1230,33.6665,29.7031,29.954,0.07104,0.870336,0.006848,0.004256,0.032576,0.095808,0.09808,28.6604,0.114656
+1231,31.7697,31.4766,30.0776,0.069856,1.02032,0.008096,0.005536,0.031424,0.095712,0.0968,28.6369,0.11296
+1232,31.984,31.2656,28.8196,0.070016,0.963104,0.007648,0.00464,0.03216,0.094816,0.098304,27.4345,0.1144
+1233,33.0707,30.2383,30.1732,0.069632,0.999424,0.00624,0.006048,0.032032,0.096256,0.096992,28.753,0.1136
+1234,31.2462,32.0039,29.0059,0.069664,1.0967,0.007136,0.014336,0.032768,0.096288,0.102368,27.4719,0.11472
+1235,34.097,29.3281,30.0564,0.069824,0.847968,0.006208,0.00608,0.032352,0.094624,0.098304,28.7867,0.114304
+1236,31.4535,31.793,30.0728,0.069632,0.882688,0.007296,0.020416,0.03168,0.095424,0.097088,28.7539,0.114688
+1237,32.1729,31.082,28.8988,0.069632,0.968032,0.006816,0.005856,0.032064,0.0952,0.098304,27.5083,0.11456
+1238,33.416,29.9258,28.7397,0.070048,0.876768,0.006208,0.005888,0.032256,0.094944,0.09776,27.4417,0.114112
+1239,33.1864,30.1328,30.0339,0.069472,0.927776,0.006272,0.006144,0.031936,0.097056,0.097856,28.6841,0.113312
+1240,32.2743,30.9844,28.6559,0.06992,0.874528,0.007392,0.004864,0.032224,0.094752,0.098304,27.3604,0.113568
+1241,33.5606,29.7969,28.7871,0.068352,0.876064,0.006528,0.006112,0.030784,0.095968,0.096416,27.4924,0.1144
+1242,33.342,29.9922,29.9745,0.069664,0.92976,0.007552,0.004736,0.032096,0.09616,0.098272,28.6236,0.11264
+1243,32.0722,31.1797,29.2059,0.069632,0.92112,0.006848,0.006144,0.030816,0.097344,0.098368,27.8618,0.113856
+1244,33.3203,30.0117,28.9103,0.068384,1.05062,0.007648,0.00464,0.03216,0.095072,0.098048,27.4309,0.122816
+1245,33.543,29.8125,30.0511,0.069824,0.903776,0.00752,0.004768,0.032576,0.096448,0.098304,28.7245,0.113376
+1246,31.988,31.2617,28.6884,0.070784,0.92864,0.007776,0.004512,0.032,0.094976,0.098304,27.3387,0.112704
+1247,33.3768,29.9609,30.0278,0.069664,0.882656,0.007936,0.005568,0.031552,0.097824,0.098464,28.7194,0.114688
+1248,32.4956,30.7734,30.008,0.069376,0.876512,0.007136,0.004224,0.03264,0.094208,0.098336,28.7129,0.11264
+1249,32.2256,31.0312,28.8461,0.069632,0.906432,0.007008,0.005632,0.032256,0.0952,0.09824,27.5168,0.114848
+1250,33.1778,30.1406,28.9202,0.070016,0.9728,0.007456,0.004832,0.032096,0.096096,0.097088,27.5251,0.114688
+1251,33.2166,30.1055,30.2377,0.070656,1.06189,0.007712,0.004576,0.032768,0.096096,0.096448,28.7539,0.113696
+1252,31.5504,31.6953,29.0137,0.070944,0.96944,0.006272,0.005888,0.03104,0.09584,0.098528,27.6214,0.114368
+1253,33.0067,30.2969,28.7796,0.069664,0.968288,0.006528,0.00608,0.030944,0.096096,0.098304,27.3879,0.11584
+1254,33.6886,29.6836,30.0279,0.068512,0.872448,0.007392,0.004896,0.032704,0.094272,0.098304,28.735,0.114432
+1255,31.8368,31.4102,29.9577,0.069632,0.93168,0.006304,0.006144,0.032416,0.09456,0.09808,28.6046,0.11424
+1256,32.1084,31.1445,28.9885,0.069664,1.0895,0.007744,0.01472,0.032416,0.094656,0.098272,27.4678,0.11376
+1257,33.6355,29.7305,29.9756,0.070208,0.881088,0.007296,0.004992,0.032352,0.095904,0.097024,28.672,0.114688
+1258,32.1851,31.0703,28.7732,0.07008,0.88736,0.007264,0.005024,0.032064,0.095968,0.097248,27.4637,0.114528
+1259,33.5474,29.8086,29.9999,0.068448,0.896384,0.006816,0.006016,0.031968,0.095136,0.09776,28.6807,0.116704
+1260,32.2825,30.9766,30.0077,0.070048,0.870176,0.006336,0.005728,0.031296,0.096096,0.097568,28.7178,0.11264
+1261,32.2378,31.0195,28.7377,0.06912,0.87264,0.006656,0.005984,0.031968,0.095168,0.098336,27.4449,0.11296
+1262,33.6311,29.7344,28.5867,0.069888,0.874752,0.006304,0.005632,0.031232,0.096256,0.09824,27.2897,0.114688
+1263,33.7775,29.6055,30.0585,0.069664,0.881792,0.00704,0.005632,0.0312,0.096288,0.097856,28.7543,0.114688
+1264,31.8963,31.3516,28.8276,0.06832,0.902944,0.007488,0.005024,0.032416,0.094688,0.09792,27.5049,0.11392
+1265,33.3724,29.9648,28.7476,0.069824,0.920896,0.006816,0.005696,0.031168,0.096256,0.09776,27.4046,0.114624
+1266,33.4029,29.9375,30.0134,0.069632,0.892928,0.00768,0.00464,0.032032,0.094912,0.09824,28.7003,0.113056
+1267,32.1729,31.082,28.6802,0.069664,0.94,0.007808,0.005568,0.03168,0.096256,0.098304,27.3162,0.114688
+1268,33.3377,29.9961,30.038,0.071136,0.913344,0.006752,0.005312,0.031552,0.096256,0.098016,28.7027,0.112992
+1269,31.0491,32.207,30.232,0.069472,1.05891,0.006368,0.006112,0.03072,0.096256,0.097344,28.7499,0.116864
+1270,32.6989,30.582,28.8149,0.069472,0.96512,0.00736,0.004896,0.032256,0.09472,0.098304,27.4289,0.113952
+1271,33.8535,29.5391,30.139,0.070176,0.985472,0.007168,0.005088,0.032352,0.09664,0.09792,28.7298,0.114432
+1272,32.2418,31.0156,30.0486,0.075648,0.882304,0.007008,0.004224,0.03264,0.096224,0.098304,28.7396,0.112672
+1273,32.181,31.0742,28.7751,0.068416,0.866336,0.0072,0.005056,0.032064,0.094912,0.098336,27.4879,0.114912
+1274,33.4597,29.8867,28.7072,0.069312,0.926688,0.00768,0.004608,0.03248,0.094528,0.09808,27.3612,0.11264
+1275,33.4466,29.8984,29.9889,0.069632,0.92064,0.00704,0.005568,0.03136,0.096032,0.09648,28.6487,0.113408
+1276,32.0963,31.1562,28.8338,0.069632,0.99328,0.007648,0.00464,0.032352,0.094624,0.097888,27.419,0.114688
+1277,33.1177,30.1953,28.7683,0.06928,0.921952,0.007392,0.004896,0.031872,0.096224,0.097184,27.4248,0.114688
+1278,33.8088,29.5781,29.8916,0.069632,0.856064,0.007328,0.00496,0.032,0.095008,0.098048,28.6149,0.113664
+1279,31.8368,31.4102,30.1445,0.070752,0.973248,0.006656,0.005952,0.032128,0.095008,0.09824,28.7417,0.120832
+1280,32.1446,31.1094,28.7586,0.069696,0.88112,0.007488,0.0048,0.032736,0.09568,0.096864,27.4571,0.11312
+1281,33.1177,30.1953,30.1281,0.069664,0.943616,0.006624,0.006016,0.030848,0.096256,0.097664,28.7645,0.112928
+1282,31.8527,31.3945,28.8336,0.069184,0.888832,0.007008,0.004192,0.032736,0.095776,0.111104,27.5108,0.114016
+1283,33.2338,30.0898,30.1904,0.068416,0.989184,0.023872,0.004768,0.042656,0.104832,0.09808,28.7439,0.114688
+1284,32.1205,31.1328,30.0035,0.068896,0.913856,0.006688,0.005408,0.031456,0.100352,0.098304,28.6648,0.113696
+1285,31.8329,31.4141,28.8158,0.069632,0.974816,0.006624,0.005568,0.031296,0.108576,0.098112,27.4065,0.114688
+1286,33.6355,29.7305,28.7375,0.07152,0.893088,0.006272,0.005856,0.031968,0.109504,0.098304,27.4082,0.112832
+1287,33.2813,30.0469,30.1302,0.073728,0.882688,0.007712,0.004576,0.032768,0.096256,0.098304,28.8195,0.114688
+1288,31.8725,31.375,28.6825,0.069824,0.894976,0.006272,0.005856,0.032032,0.095104,0.098304,27.3666,0.113504
+1289,33.2295,30.0938,28.7498,0.06944,0.960448,0.0064,0.006144,0.03216,0.094848,0.10032,27.3654,0.114688
+1290,33.2727,30.0547,29.9725,0.071328,0.980352,0.007008,0.004224,0.032608,0.094368,0.098304,28.5713,0.11296
+1291,32.1446,31.1094,30.0483,0.069664,0.927712,0.007808,0.005568,0.040992,0.096352,0.0968,28.6901,0.11328
+1292,32.0641,31.1875,28.7764,0.070944,0.909696,0.006496,0.005664,0.0312,0.096256,0.098304,27.4445,0.113344
+1293,33.316,30.0156,29.9408,0.069664,0.942048,0.008,0.005536,0.03152,0.097408,0.098336,28.5746,0.11376
+1294,32.1285,31.125,28.6967,0.06944,0.893248,0.00784,0.00448,0.032416,0.095712,0.098656,27.3713,0.123648
+1295,33.3594,29.9766,29.9529,0.068672,0.884352,0.006368,0.006144,0.032224,0.094784,0.098272,28.6485,0.113568
+1296,32.6364,30.6406,28.6996,0.069984,0.886336,0.00704,0.004224,0.032704,0.094272,0.097568,27.3948,0.11264
+1297,33.5474,29.8086,28.8031,0.069632,0.92288,0.006912,0.005728,0.031136,0.097536,0.098592,27.4539,0.116736
+1298,33.3116,30.0195,30.0784,0.069728,0.931744,0.006272,0.005824,0.030912,0.096192,0.097824,28.7258,0.114112
+1299,32.2459,31.0117,29.9984,0.069632,0.88864,0.006368,0.006112,0.031776,0.095232,0.09776,28.6868,0.116032
+1300,31.972,31.2773,28.7845,0.069632,0.862016,0.006336,0.005856,0.031008,0.096224,0.09792,27.501,0.114528
+1301,32.0641,31.1875,30.1339,0.069504,1.03056,0.006304,0.006144,0.031904,0.096448,0.09696,28.6802,0.115904
+1302,31.7618,31.4844,28.8549,0.069504,0.969536,0.007936,0.004352,0.043008,0.09552,0.096992,27.4535,0.114624
+1303,33.1092,30.2031,30.1774,0.06976,1.06445,0.006656,0.005952,0.030912,0.095904,0.096608,28.6944,0.112768
+1304,32.4092,30.8555,30.0396,0.070912,0.881408,0.007776,0.004512,0.032352,0.094656,0.098016,28.7357,0.114208
+1305,31.7421,31.5039,28.8643,0.069888,0.96704,0.007552,0.004736,0.0328,0.095936,0.096544,27.4754,0.1144
+1306,33.609,29.7539,28.8297,0.069536,0.890976,0.007744,0.004544,0.032768,0.096288,0.098272,27.5149,0.11472
+1307,33.2338,30.0898,30.1568,0.070976,0.981696,0.007808,0.005568,0.03168,0.096256,0.097792,28.7504,0.114688
+1308,32.2581,31,28.7439,0.069536,0.882464,0.006688,0.005408,0.031488,0.095488,0.096992,27.4432,0.112672
+1309,33.3203,30.0117,28.7805,0.079872,0.884736,0.007488,0.0048,0.0328,0.096224,0.097696,27.4622,0.11472
+1310,33.6931,29.6797,29.9958,0.068352,0.862208,0.007616,0.004672,0.0328,0.094336,0.098144,28.713,0.114688
+1311,32.2134,31.043,29.9911,0.068576,0.885984,0.006944,0.005632,0.031232,0.095904,0.096608,28.6843,0.115904
+1312,31.8091,31.4375,28.8609,0.069952,1.00176,0.006176,0.005984,0.030976,0.09616,0.097376,27.438,0.11456
+1313,33.6444,29.7227,29.9931,0.069728,0.898592,0.007776,0.004992,0.032352,0.094624,0.097824,28.6746,0.11264
+1314,32.1205,31.1328,28.8889,0.070848,0.958624,0.006816,0.005248,0.031648,0.096224,0.098304,27.5067,0.114528
+1315,33.4728,29.875,30.0873,0.069792,0.875968,0.00672,0.006144,0.032,0.096,0.097312,28.7887,0.114688
+1316,32.004,31.2461,30.0188,0.069664,0.935904,0.007328,0.004992,0.032192,0.095872,0.09728,28.661,0.114592
+1317,32.311,30.9492,28.7071,0.06992,0.864256,0.007264,0.005024,0.03264,0.095648,0.098016,27.4208,0.113504
+1318,32.6239,30.6523,28.9997,0.069504,1.09171,0.016384,0.005984,0.032288,0.094784,0.103648,27.4723,0.113056
+1319,31.8566,31.3906,30.136,0.069632,1.00723,0.006528,0.00608,0.03264,0.096448,0.098176,28.7049,0.114368
+1320,33.702,29.6719,28.9042,0.070144,0.966912,0.006144,0.005824,0.031264,0.097152,0.09856,27.5135,0.114688
+1321,33.0237,30.2812,28.7954,0.06816,0.918592,0.00704,0.0056,0.031296,0.096288,0.098048,27.4467,0.123744
+1322,33.3464,29.9883,30.124,0.071008,0.95696,0.006272,0.005824,0.032128,0.0952,0.098272,28.7457,0.11264
+1323,31.3764,31.8711,30.101,0.069792,1.00269,0.023328,0.0056,0.043552,0.096288,0.096224,28.6495,0.114016
+1324,31.984,31.2656,28.8179,0.074592,1.0199,0.006208,0.005856,0.032384,0.094816,0.097504,27.3723,0.114272
+1325,33.5738,29.7852,29.8516,0.069664,0.873536,0.00704,0.005568,0.031328,0.096288,0.096224,28.5588,0.113152
+1326,32.3192,30.9414,28.7486,0.069792,0.903648,0.007744,0.004768,0.032032,0.094944,0.0984,27.4226,0.114688
+1327,33.5079,29.8438,28.9974,0.069664,0.877728,0.006976,0.005632,0.031232,0.101408,0.097248,27.6929,0.114656
+1328,33.0664,30.2422,30.0692,0.069536,1.06941,0.008416,0.005824,0.033056,0.095584,0.09696,28.5709,0.119488
+1329,32.2499,31.0078,28.685,0.06832,0.868192,0.006304,0.006144,0.03264,0.095904,0.104928,27.3879,0.114688
+1330,33.416,29.9258,28.7194,0.069792,0.885024,0.006656,0.005408,0.031456,0.096256,0.096416,27.4141,0.114336
+1331,33.3768,29.9609,29.9752,0.069952,0.999776,0.00768,0.004576,0.03248,0.094592,0.097792,28.553,0.115328
+1332,32.4133,30.8516,28.5749,0.06944,0.859616,0.00688,0.005248,0.031616,0.09552,0.098016,27.2946,0.113952
+1333,33.609,29.7539,28.7847,0.069632,0.884352,0.006528,0.00608,0.030976,0.096064,0.098304,27.4778,0.114976
+1334,32.8584,30.4336,30.0428,0.070304,0.985088,0.007936,0.004352,0.032672,0.098496,0.104352,28.6249,0.114688
+1335,32.2865,30.9727,29.9745,0.069824,0.915456,0.007424,0.004864,0.032384,0.094592,0.098304,28.6372,0.114496
+1336,32.5824,30.6914,29.9188,0.069408,0.848096,0.007712,0.004608,0.032128,0.094848,0.097984,28.6492,0.114848
+1337,32.0641,31.1875,28.8131,0.07792,0.974272,0.00672,0.005888,0.030976,0.097312,0.09728,27.4022,0.120512
+1338,33.3073,30.0234,28.8005,0.069824,0.943104,0.006976,0.004224,0.03264,0.09536,0.097152,27.4371,0.114208
+1339,33.3681,29.9688,30.0196,0.069344,0.897216,0.00624,0.006144,0.03232,0.096576,0.09824,28.6988,0.11472
+1340,32.1932,31.0625,28.8461,0.069632,0.907264,0.008192,0.005344,0.031552,0.096224,0.097376,27.5155,0.115008
+1341,33.3507,29.9844,28.8313,0.069408,0.95872,0.006144,0.006048,0.030816,0.096256,0.098304,27.4514,0.11424
+1342,33.3116,30.0195,30.0564,0.069792,0.929984,0.007936,0.004352,0.032768,0.095712,0.097952,28.7036,0.114272
+1343,31.6753,31.5703,29.2279,0.070016,0.987488,0.006304,0.006144,0.032512,0.09584,0.096928,27.819,0.113632
+1344,33.0578,30.25,28.7748,0.068064,0.935456,0.006592,0.005728,0.032608,0.096544,0.09856,27.4179,0.11344
+1345,33.6311,29.7344,30.0423,0.069216,0.89744,0.007264,0.005024,0.032768,0.096,0.097696,28.7236,0.11328
+1346,31.8487,31.3984,28.6603,0.069856,0.960128,0.006912,0.005152,0.031648,0.094272,0.097792,27.2814,0.113152
+1347,33.5386,29.8164,30.1015,0.069664,0.964576,0.007616,0.004672,0.032768,0.096032,0.096512,28.715,0.114688
+1348,32.2621,30.9961,29.8732,0.069664,0.86736,0.007104,0.005152,0.031712,0.095968,0.098016,28.5858,0.11248
+1349,32.0882,31.1641,28.7271,0.069632,0.914816,0.006784,0.005792,0.031072,0.096256,0.09792,27.3896,0.115232
+1350,33.4073,29.9336,28.7337,0.069632,0.898656,0.006784,0.005312,0.031552,0.09536,0.097216,27.4165,0.112672
+1351,33.5079,29.8438,29.9941,0.069632,0.882688,0.007904,0.005568,0.03568,0.096032,0.098528,28.6843,0.113792
+1352,32.2378,31.0195,28.7293,0.069664,0.882688,0.008032,0.004224,0.0328,0.09584,0.097792,27.4233,0.11504
+1353,33.5474,29.8086,28.7838,0.070656,0.879648,0.007584,0.004672,0.032768,0.096288,0.098272,27.4794,0.11456
+1354,33.2727,30.0547,30.0667,0.069632,0.954368,0.00768,0.004608,0.032288,0.09472,0.097632,28.6932,0.112608
+1355,31.6557,31.5898,30.0987,0.071328,0.892672,0.006752,0.005856,0.032288,0.096416,0.096864,28.7826,0.113952
+1356,32.5575,30.7148,28.792,0.069632,0.929248,0.006688,0.005408,0.031456,0.096224,0.098336,27.4412,0.113888
+1357,33.3724,29.9648,29.9592,0.069088,0.88528,0.00752,0.004768,0.032768,0.096288,0.098304,28.6513,0.113856
+1358,31.5426,31.7031,28.8154,0.069632,0.989184,0.006176,0.005792,0.03104,0.096288,0.098272,27.4058,0.113248
+1359,33.8848,29.5117,30.0588,0.077952,0.959136,0.007904,0.004384,0.032384,0.094592,0.097376,28.6688,0.116256
+1360,32.0923,31.1602,30.1384,0.069728,0.94608,0.007232,0.005024,0.030912,0.096128,0.098272,28.7722,0.1128
+1361,31.9083,31.3398,28.7695,0.069664,0.949824,0.006592,0.006016,0.030816,0.096256,0.09776,27.3966,0.115936
+1362,33.5474,29.8086,28.7837,0.07072,0.901696,0.006528,0.005504,0.03136,0.096256,0.097984,27.4597,0.113952
+1363,33.1864,30.1328,30.0599,0.069632,0.921152,0.006592,0.005984,0.03088,0.106496,0.098304,28.7068,0.11408
+1364,31.976,31.2734,28.7819,0.069632,0.915456,0.007776,0.014752,0.032512,0.100384,0.108768,27.4177,0.11488
+1365,33.4073,29.9336,28.7581,0.069056,0.849824,0.006912,0.005184,0.03168,0.096192,0.09808,27.4865,0.114688
+1366,33.3637,29.9727,29.9484,0.069568,0.872448,0.006624,0.005408,0.033024,0.096032,0.09696,28.6556,0.11264
+1367,32.1608,31.0938,30.0944,0.077824,0.956416,0.008064,0.005568,0.031424,0.110304,0.097856,28.6932,0.113696
+1368,31.531,31.7148,28.7684,0.06944,0.942432,0.00768,0.004608,0.032256,0.096352,0.098272,27.4027,0.114688
+1369,33.6842,29.6875,30.0912,0.069664,0.896032,0.007008,0.005568,0.03248,0.101312,0.114496,28.75,0.114592
+1370,31.976,31.2734,28.7724,0.069632,0.937184,0.006944,0.004384,0.03248,0.096256,0.098304,27.4125,0.114688
+1371,33.2252,30.0977,30.0739,0.07072,0.986048,0.006144,0.005952,0.032128,0.09648,0.096864,28.6618,0.11776
+1372,32.3232,30.9375,29.9433,0.069632,0.869632,0.006944,0.005184,0.031648,0.096096,0.098464,28.6516,0.114112
+1373,32.2175,31.0391,28.7089,0.069632,0.886208,0.007072,0.005568,0.031296,0.095712,0.0968,27.4022,0.1144
+1374,33.5079,29.8438,28.8074,0.06912,0.895712,0.008224,0.004192,0.03264,0.096256,0.098208,27.4879,0.115104
+1375,33.6046,29.7578,29.9667,0.06944,0.864992,0.006208,0.00608,0.03248,0.095584,0.097216,28.6799,0.114784
+1376,32.2256,31.0312,28.6392,0.071072,0.909952,0.007584,0.005728,0.031744,0.094272,0.097824,27.3083,0.112736
+1377,33.0536,30.2539,28.9586,0.070112,1.06717,0.008,0.005568,0.03152,0.097888,0.09664,27.4657,0.116
+1378,31.6714,31.5742,30.163,0.069632,1.09946,0.006464,0.005568,0.031296,0.096256,0.09808,28.6429,0.113376
+1379,32.3518,30.9102,30.1194,0.069664,0.994656,0.006816,0.00576,0.032128,0.096512,0.098112,28.7016,0.114112
+1380,32.5783,30.6953,28.8562,0.0696,0.978752,0.006816,0.005248,0.032928,0.0952,0.09808,27.4555,0.114112
+1381,33.9253,29.4766,30.1973,0.070784,0.963456,0.007616,0.004672,0.032352,0.094624,0.098112,28.8115,0.114208
+1382,31.8171,31.4297,28.7452,0.069664,0.935904,0.006208,0.005856,0.032,0.096224,0.09728,27.3879,0.114176
+1383,33.6532,29.7148,29.1302,0.069632,0.886784,0.007296,0.004992,0.032768,0.096256,0.097888,27.82,0.114592
+1384,32.7995,30.4883,30.3581,0.071584,1.19261,0.007616,0.004672,0.03216,0.09584,0.097312,28.7436,0.11264
+1385,32.1487,31.1055,28.7738,0.069664,0.902208,0.00704,0.005568,0.031328,0.096256,0.09776,27.4494,0.114592
+1386,33.4378,29.9062,28.7478,0.069632,0.92416,0.006624,0.005472,0.031392,0.09536,0.096928,27.4045,0.11376
+1387,33.2079,30.1133,30.1957,0.075264,1.00944,0.006912,0.005664,0.0312,0.097344,0.098688,28.7578,0.113408
+1388,31.7618,31.4844,28.7156,0.070304,0.983264,0.007456,0.0048,0.031904,0.095232,0.098144,27.3096,0.114912
+1389,33.1306,30.1836,28.7631,0.069664,0.962464,0.016448,0.006144,0.032768,0.095456,0.097056,27.3585,0.12464
+1390,33.2813,30.0469,29.9602,0.070912,0.998144,0.006208,0.005856,0.030976,0.096224,0.098176,28.5411,0.112672
+1391,32.4667,30.8008,29.9947,0.07024,0.9024,0.00688,0.005728,0.032256,0.095072,0.09632,28.672,0.11376
+1392,31.9521,31.2969,28.7094,0.070048,0.946368,0.007904,0.004352,0.032512,0.09568,0.097088,27.3408,0.114688
+1393,33.7954,29.5898,30.081,0.069632,0.876352,0.006336,0.006144,0.032512,0.096544,0.097856,28.7829,0.112768
+1394,32.1851,31.0703,28.7229,0.06944,0.864576,0.007296,0.004992,0.032,0.096928,0.097728,27.4357,0.11424
+1395,33.6355,29.7305,29.9931,0.069792,0.863488,0.00688,0.00576,0.031104,0.096288,0.09808,28.7081,0.1136
+1396,32.1084,31.1445,30.002,0.069888,0.909888,0.008192,0.015424,0.03168,0.095744,0.097952,28.6606,0.112672
+1397,31.6714,31.5742,28.8799,0.069792,0.985856,0.007968,0.005568,0.039712,0.096256,0.098304,27.4616,0.114848
+1398,32.6614,30.6172,28.9006,0.069664,1.03834,0.01744,0.005024,0.03232,0.09472,0.098304,27.4309,0.11392
+1399,32.0963,31.1562,30.808,0.073728,1.56435,0.016704,0.005664,0.0312,0.095776,0.097952,28.808,0.114656
+1400,31.4535,31.793,28.8902,0.069664,1.06698,0.016384,0.005888,0.032064,0.095168,0.110624,27.3694,0.124
+1401,33.4073,29.9336,28.7457,0.069632,0.901056,0.00624,0.006112,0.032768,0.096128,0.098144,27.4189,0.116704
+1402,33.6665,29.7031,30.0872,0.069632,0.989184,0.00624,0.00592,0.040832,0.094464,0.099712,28.6685,0.11264
+1403,32.2825,30.9766,30.038,0.069632,0.8808,0.006976,0.005632,0.03232,0.094912,0.097536,28.7345,0.115744
+1404,31.9441,31.3047,28.8087,0.069632,0.917856,0.016384,0.006176,0.03216,0.094784,0.104448,27.453,0.114272
+1405,33.2338,30.0898,30.1995,0.069056,0.977472,0.007328,0.00496,0.040896,0.095616,0.09696,28.7942,0.11296
+1406,32.2378,31.0195,28.6233,0.070432,0.864384,0.007616,0.004672,0.032192,0.095872,0.098848,27.3351,0.11424
+1407,32.6489,30.6289,30.2067,0.070176,1.04061,0.007936,0.0056,0.047104,0.096704,0.098368,28.7267,0.113504
+1408,32.2499,31.0078,30.0376,0.069248,0.930336,0.016288,0.006144,0.032096,0.09632,0.098016,28.6749,0.114208
+1409,32.032,31.2188,28.9518,0.069408,0.974944,0.006272,0.005792,0.031232,0.096128,0.098272,27.5548,0.114944
+1410,33.0963,30.2148,28.8995,0.06928,0.987936,0.007328,0.00496,0.032224,0.094784,0.096224,27.4924,0.1144
+1411,33.1434,30.1719,30.0834,0.071136,0.956672,0.006752,0.005824,0.032128,0.095168,0.098304,28.7028,0.114624
+1412,31.8924,31.3555,28.7908,0.069632,0.966656,0.007424,0.004864,0.032288,0.09472,0.098208,27.4042,0.112768
+1413,33.3942,29.9453,28.8684,0.069632,0.935968,0.007872,0.005568,0.031616,0.096224,0.098304,27.5067,0.11648
+1414,33.0451,30.2617,30.09,0.069504,0.999616,0.006848,0.005216,0.043936,0.096256,0.097664,28.6574,0.113568
+1415,31.7146,31.5312,30.1891,0.068928,1.09366,0.006848,0.005728,0.031104,0.096256,0.102304,28.6694,0.114848
+1416,32.0802,31.1719,28.809,0.069632,0.94208,0.007936,0.004352,0.032576,0.0944,0.104448,27.4391,0.114464
+1417,33.2943,30.0352,30.1526,0.069888,0.980832,0.016608,0.006144,0.032768,0.094208,0.098272,28.7396,0.114304
+1418,32.2418,31.0156,28.6432,0.070688,0.846816,0.007712,0.004576,0.032416,0.09456,0.097376,27.3745,0.11456
+1419,33.329,30.0039,30.0995,0.069632,1.01318,0.00672,0.005952,0.039136,0.096224,0.110592,28.6454,0.11264
+1420,32.3682,30.8945,29.9755,0.068608,0.849888,0.00784,0.004448,0.032768,0.096256,0.098272,28.7048,0.11264
+1421,32.1164,31.1367,28.7655,0.069376,0.9352,0.01664,0.004832,0.032768,0.109696,0.097152,27.3852,0.114688
+1422,33.3464,29.9883,28.7626,0.069664,0.973312,0.007968,0.004288,0.032672,0.094304,0.09984,27.3679,0.11264
+1423,33.1778,30.1406,30.0929,0.069632,0.941216,0.007008,0.005792,0.03216,0.095296,0.098176,28.7293,0.11424
+1424,32,31.25,28.799,0.069632,0.96256,0.007744,0.004576,0.040544,0.094592,0.097376,27.4073,0.114688
+1425,33.028,30.2773,28.8557,0.069632,0.950272,0.007232,0.005056,0.032608,0.096416,0.098304,27.4732,0.123008
+1426,32.6572,30.6211,30.294,0.069824,1.22573,0.006976,0.004288,0.032544,0.095904,0.09664,28.6474,0.114688
+1427,31.6597,31.5859,30.1978,0.069504,0.993408,0.007744,0.004544,0.032704,0.094272,0.09808,28.7828,0.114752
+1428,32.4667,30.8008,28.9201,0.069728,0.977216,0.006592,0.005472,0.031392,0.095648,0.096864,27.5231,0.114112
+1429,32.8753,30.418,30.1197,0.069632,0.949664,0.006752,0.014336,0.032768,0.096256,0.102304,28.7335,0.114496
+1430,32.254,31.0039,28.9034,0.069664,1.01952,0.006496,0.006144,0.032096,0.094944,0.11056,27.4509,0.113088
+1431,33.2684,30.0586,30.0443,0.06928,0.97904,0.006496,0.006048,0.031872,0.0952,0.098304,28.6451,0.112928
+1432,31.7815,31.4648,30.0646,0.069632,0.884768,0.007648,0.004608,0.031968,0.09648,0.100896,28.7556,0.113056
+1433,31.972,31.2773,28.9218,0.068352,0.94608,0.007584,0.004704,0.03264,0.095552,0.097088,27.5538,0.116032
+1434,33.3116,30.0195,28.9267,0.06992,0.969152,0.006208,0.005824,0.03104,0.096256,0.10448,27.5307,0.113184
+1435,32.85,30.4414,30.0995,0.069632,0.976256,0.006784,0.005792,0.031104,0.096352,0.098176,28.702,0.113376
+1436,32.2175,31.0391,28.6921,0.069312,0.858752,0.007648,0.00464,0.032224,0.094752,0.098336,27.4124,0.114016
+1437,33.2511,30.0742,28.7786,0.07168,0.899104,0.007968,0.005536,0.031552,0.096224,0.098304,27.4534,0.114848
+1438,33.6002,29.7617,30.0217,0.06944,0.8544,0.00624,0.005824,0.032832,0.095456,0.098464,28.7445,0.114592
+1439,31.8646,31.3828,30.1876,0.069536,1.02202,0.006176,0.014336,0.042208,0.095008,0.099744,28.7235,0.115072
+1440,32.0722,31.1797,28.8549,0.06848,0.914752,0.006848,0.014336,0.032544,0.09584,0.098464,27.5084,0.115264
+1441,33.2122,30.1094,30.1448,0.069952,0.968064,0.006784,0.013696,0.047744,0.096288,0.097856,28.7318,0.11264
+1442,32.1124,31.1406,28.8589,0.070144,0.946176,0.01808,0.00448,0.032128,0.107104,0.098304,27.4694,0.113088
+1443,33.4073,29.9336,30.1662,0.069664,0.926944,0.006944,0.005632,0.031232,0.096192,0.096352,28.8194,0.113824
+1444,31.5621,31.6836,30.3145,0.068896,1.12064,0.006528,0.005536,0.031328,0.09744,0.099008,28.7719,0.11328
+1445,31.9003,31.3477,28.9055,0.069568,0.992768,0.00672,0.005888,0.030976,0.096256,0.09824,27.4904,0.114688
+1446,33.2943,30.0352,28.9842,0.06848,1.02192,0.00624,0.005888,0.032128,0.095008,0.105856,27.536,0.112672
+1447,33.29,30.0391,29.9949,0.069536,0.884864,0.00784,0.005568,0.031616,0.09616,0.096352,28.6884,0.114624
+1448,31.8052,31.4414,28.9463,0.069696,1.00989,0.006208,0.005856,0.032064,0.095168,0.097344,27.5158,0.11424
+1449,33.5782,29.7812,28.7109,0.075776,0.839552,0.006272,0.006144,0.03184,0.096896,0.098464,27.4408,0.1152
+1450,32.8289,30.4609,30.1855,0.069632,1.01078,0.00704,0.004192,0.032736,0.096224,0.09792,28.7523,0.114688
+1451,31.8448,31.4023,30.1685,0.069184,1.04006,0.006912,0.005664,0.0312,0.096288,0.106432,28.6978,0.114976
+1452,31.9202,31.3281,28.8427,0.06864,0.988896,0.007744,0.004672,0.03264,0.094336,0.101952,27.4303,0.113504
+1453,33.3811,29.957,30.1195,0.069632,0.969952,0.017024,0.005536,0.031488,0.096256,0.098304,28.717,0.114336
+1454,31.9122,31.3359,28.7949,0.069632,0.940032,0.017824,0.004704,0.032768,0.096192,0.097632,27.4225,0.113568
+1455,33.2684,30.0586,30.1335,0.069632,0.98272,0.006464,0.006144,0.036864,0.096288,0.098144,28.7233,0.11392
+1456,31.2271,32.0234,30.1964,0.070208,0.939744,0.006624,0.00544,0.031392,0.095648,0.098752,28.8352,0.113408
+1457,31.8091,31.4375,28.908,0.06944,1.0144,0.007296,0.004992,0.0328,0.095872,0.106848,27.4636,0.112736
+1458,33.0578,30.25,28.7701,0.069728,0.923168,0.006624,0.00544,0.031456,0.096256,0.098272,27.4259,0.113248
+1459,32.85,30.4414,30.0955,0.069632,1.02605,0.007648,0.012832,0.048576,0.095936,0.097152,28.6249,0.112768
+1460,31.5193,31.7266,28.7294,0.073664,0.913472,0.007552,0.004736,0.03264,0.10176,0.10112,27.3797,0.114784
+1461,33.5386,29.8164,28.7867,0.069664,0.85808,0.007712,0.004576,0.0328,0.095648,0.096832,27.5067,0.11472
+1462,33.0237,30.2812,30.1916,0.0696,1.02611,0.007744,0.004512,0.032256,0.094816,0.098208,28.7457,0.112672
+1463,31.98,31.2695,29.267,0.069632,0.970176,0.00672,0.005888,0.03232,0.107232,0.097952,27.8628,0.114304
+1464,32.6822,30.5977,29.6255,0.069728,0.920992,0.006656,0.00544,0.031424,0.09584,0.111008,28.2705,0.11392
+1465,32.6198,30.6562,29.9532,0.075808,0.835552,0.007456,0.004832,0.03264,0.09584,0.098368,28.6888,0.113984
+1466,31.469,31.7773,28.7233,0.069664,0.93712,0.007072,0.004192,0.032672,0.096064,0.097728,27.3654,0.113408
+1467,33.9973,29.4141,30.0686,0.069632,0.917504,0.007552,0.004736,0.03264,0.096384,0.097632,28.7272,0.115296
+1468,32.1972,31.0586,29.9942,0.069632,0.894976,0.007616,0.004672,0.032736,0.095776,0.096768,28.6792,0.112832
+1469,32.004,31.2461,28.9116,0.069664,0.978912,0.00624,0.005888,0.032128,0.095008,0.096256,27.5145,0.113056
+1470,33.5342,29.8203,28.6879,0.069792,0.896832,0.006336,0.005696,0.032352,0.095072,0.097472,27.3703,0.114048
+1471,32.9727,30.3281,30.1828,0.069536,1.05664,0.00672,0.005952,0.032256,0.094912,0.098336,28.7047,0.113664
+1472,32.1729,31.082,28.6865,0.06832,0.872448,0.00736,0.004928,0.032224,0.104416,0.09824,27.384,0.11456
+1473,33.5562,29.8008,28.7765,0.069888,0.893536,0.00784,0.005568,0.03152,0.096384,0.098304,27.459,0.1144
+1474,32.8838,30.4102,30.3452,0.069632,1.27504,0.007008,0.019872,0.031328,0.096256,0.097312,28.6361,0.11264
+1475,31.8884,31.3594,29.9786,0.069664,0.948192,0.007936,0.005568,0.031552,0.09616,0.097792,28.6082,0.1136
+1476,32.2013,31.0547,28.7603,0.069728,0.935872,0.006752,0.005312,0.031552,0.096064,0.098144,27.4024,0.1144
+1477,31.4767,31.7695,30.2384,0.069824,1.0671,0.006432,0.014336,0.049152,0.100352,0.098304,28.7182,0.11472
+1478,32.7491,30.5352,28.928,0.075776,0.984928,0.006304,0.005728,0.043456,0.096224,0.098304,27.5043,0.113024
+1479,33.2727,30.0547,28.9215,0.069632,1.00966,0.00624,0.006048,0.03232,0.096128,0.098272,27.4889,0.114336
+1480,33.8177,29.5703,30.9043,0.067648,0.96608,0.006688,0.005344,0.031488,0.095776,0.09808,29.52,0.113184
+1481,31.2233,32.0273,28.6802,0.068992,0.856864,0.008,0.005536,0.03152,0.096256,0.096384,27.4021,0.114528
+1482,30.3677,32.9297,28.8809,0.069632,1.0199,0.007616,0.004672,0.03216,0.094816,0.098304,27.4406,0.113248
+1483,33.2943,30.0352,30.0933,0.069632,0.945248,0.00704,0.005568,0.031328,0.095808,0.098272,28.7257,0.114784
+1484,32.2703,30.9883,28.6017,0.070944,0.840416,0.00624,0.005856,0.03104,0.096128,0.098304,27.3388,0.114048
+1485,33.2166,30.1055,28.8452,0.069632,1.01171,0.007552,0.004736,0.032768,0.09568,0.112352,27.3967,0.114048
+1486,33.1821,30.1367,30.0507,0.069536,0.979392,0.007616,0.004672,0.03264,0.096384,0.098336,28.6494,0.11264
+1487,31.8131,31.4336,30.1077,0.070048,0.99536,0.008,0.01568,0.031616,0.112576,0.098208,28.6579,0.1184
+1488,32.181,31.0742,28.6533,0.069632,0.857696,0.00656,0.005504,0.03136,0.110592,0.098304,27.3586,0.115072
+1489,33.3681,29.9688,29.9018,0.069856,0.912096,0.007264,0.005024,0.031968,0.104832,0.096672,28.5609,0.113184
+1490,32.3477,30.9141,28.747,0.070752,0.926176,0.006592,0.005536,0.031328,0.09424,0.098272,27.4002,0.113888
+1491,33.7286,29.6484,29.852,0.076096,0.874496,0.007168,0.00512,0.032576,0.09648,0.098272,28.5471,0.114688
+1492,32.1608,31.0938,29.9787,0.069696,0.9312,0.006784,0.005376,0.031488,0.111616,0.097408,28.6125,0.11264
+1493,32.4297,30.8359,28.6385,0.069312,0.866656,0.007648,0.004608,0.0328,0.096256,0.09936,27.3479,0.113952
+1494,33.0792,30.2305,28.6008,0.069856,0.895776,0.007616,0.004672,0.03232,0.094656,0.098336,27.2834,0.114112
+1495,33.702,29.6719,29.8799,0.069632,0.884768,0.007616,0.00464,0.0328,0.095232,0.112768,28.5594,0.113024
+1496,32.2094,31.0469,28.6962,0.079904,0.881664,0.00704,0.005248,0.031712,0.095936,0.112288,27.3671,0.115328
+1497,32.6531,30.625,28.9055,0.069632,1.08749,0.007264,0.004768,0.044672,0.109184,0.108544,27.3592,0.114688
+1498,33.849,29.543,30.0326,0.069568,0.957152,0.007584,0.004704,0.031744,0.095232,0.097824,28.6562,0.112576
+1499,32.3559,30.9062,30.0061,0.069824,0.911584,0.00656,0.006048,0.030816,0.096256,0.097536,28.6728,0.114688
+1500,32,31.25,28.6285,0.071072,0.890624,0.007008,0.004224,0.03264,0.095936,0.096576,27.3161,0.114336
+1501,33.3116,30.0195,30.0912,0.06944,0.918784,0.007008,0.005568,0.031424,0.096224,0.099456,28.7487,0.114656
+1502,32.1366,31.1172,28.7342,0.078112,0.901568,0.007456,0.004832,0.03232,0.094656,0.098336,27.4022,0.114688
+1503,33.2295,30.0938,30.0545,0.069152,0.956896,0.007488,0.0048,0.03264,0.09584,0.0968,28.6761,0.114784
+1504,31.5932,31.6523,30.0545,0.06976,1.02608,0.007744,0.004512,0.032256,0.096032,0.098976,28.6061,0.113088
+1505,31.8091,31.4375,28.938,0.06912,1.00016,0.007744,0.004544,0.032768,0.096256,0.098336,27.5148,0.114176
+1506,32.9727,30.3281,28.8444,0.069568,1.01424,0.006208,0.005856,0.030944,0.096256,0.098304,27.4085,0.11456
+1507,33.0365,30.2695,30.1392,0.069792,1.05315,0.006368,0.006144,0.031872,0.095104,0.09728,28.666,0.113504
+1508,31.5426,31.7031,28.9833,0.070112,1.0711,0.007552,0.004736,0.032768,0.095904,0.098112,27.4887,0.114336
+1509,33.1563,30.1602,28.7626,0.0696,0.983488,0.007872,0.005568,0.031616,0.096096,0.097472,27.3561,0.11472
+1510,33.342,29.9922,29.983,0.068224,0.905216,0.007552,0.004736,0.032224,0.094752,0.097472,28.6583,0.114592
+1511,31.4651,31.7812,30.2695,0.069664,1.18966,0.006336,0.006144,0.032576,0.095808,0.096896,28.6593,0.113152
+1512,32.1285,31.125,28.5988,0.068096,0.878624,0.007456,0.004832,0.032512,0.098528,0.098016,27.2974,0.11328
+1513,33.6444,29.7227,29.8929,0.070112,0.849888,0.007616,0.004672,0.032416,0.09456,0.098048,28.6211,0.11456
+1514,32.3232,30.9375,28.5798,0.069632,0.884352,0.006528,0.005504,0.03136,0.095584,0.096928,27.2766,0.113344
+1515,33.5958,29.7656,30.0445,0.069344,0.9592,0.007264,0.005024,0.032768,0.096288,0.112608,28.6474,0.11456
+1516,32.2621,30.9961,29.9483,0.069376,0.88944,0.008064,0.004224,0.032448,0.09456,0.099328,28.6361,0.11472
+1517,32.1487,31.1055,28.7642,0.069632,0.902976,0.006336,0.006144,0.03232,0.094656,0.101888,27.4355,0.114688
+1518,33.2727,30.0547,28.7155,0.07056,0.92992,0.007392,0.004864,0.03216,0.094592,0.098368,27.3635,0.114176
+1519,32.3477,30.9141,30.0933,0.069632,1.01171,0.008,0.005568,0.032864,0.096064,0.09712,28.6597,0.11264
+1520,31.7303,31.5156,28.7601,0.069632,0.976416,0.006624,0.00544,0.031424,0.097536,0.098304,27.36,0.11472
+1521,34.4179,29.0547,28.7437,0.069632,1.00298,0.006688,0.005952,0.032224,0.096256,0.09904,27.3176,0.113344
+1522,32.3028,30.957,30.0076,0.06992,0.9928,0.006688,0.005408,0.031488,0.096128,0.09744,28.5951,0.112704
+1523,32.85,30.4414,29.1358,0.069824,1.00813,0.006368,0.006144,0.03184,0.095136,0.098208,27.7054,0.114688
+1524,32.9133,30.3828,29.6346,0.070688,0.992224,0.00736,0.004928,0.030848,0.09616,0.09936,28.2204,0.112672
+1525,32.5451,30.7266,30.0089,0.077824,0.912512,0.00704,0.005568,0.031328,0.097824,0.09824,28.6643,0.114272
+1526,31.1549,32.0977,28.6592,0.070912,0.989632,0.006464,0.005792,0.031072,0.095904,0.096608,27.2479,0.11488
+1527,33.8938,29.5039,29.8189,0.069632,0.902272,0.00704,0.0056,0.031264,0.100352,0.1024,28.4856,0.114752
+1528,32.4174,30.8477,29.8665,0.07008,0.855232,0.00704,0.004256,0.032576,0.094272,0.098272,28.5917,0.113056
+1529,31.996,31.2539,28.6742,0.069792,0.896672,0.006496,0.00608,0.032,0.09504,0.098304,27.3551,0.114688
+1530,33.6179,29.7461,28.7147,0.069632,0.916576,0.007008,0.004224,0.032288,0.096672,0.098144,27.3768,0.113344
+1531,33.6532,29.7148,29.9766,0.069632,0.925472,0.016608,0.00544,0.031456,0.096224,0.097696,28.6194,0.114688
+1532,32.3437,30.918,28.6443,0.069824,0.862976,0.008064,0.004224,0.0328,0.095456,0.097024,27.3612,0.112768
+1533,33.3594,29.9766,28.7376,0.069664,0.895008,0.00768,0.004576,0.032768,0.102432,0.097984,27.4128,0.114688
+1534,33.0067,30.2969,30.0553,0.078688,0.96256,0.006272,0.005888,0.04096,0.096096,0.09792,28.6542,0.11264
+1535,31.5465,31.6992,30.0265,0.069984,1.00131,0.007712,0.00512,0.045088,0.096128,0.098208,28.5882,0.114688
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..7d7860b
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_1024,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1216.66,0.869723,0.358873,0.00612056,0.23385,0.00570656,0.00495256,0.00592856,0.00679166,0.00679463,0.0818947,0.00683344
+max_1024,1732.29,2.45483,0.96736,0.02864,0.840576,0.045056,0.040448,0.022528,0.022176,0.022272,0.116672,0.022432
+min_1024,407.36,0.577271,0.292576,0.004768,0.19136,0.004064,0.004064,0.004256,0.00592,0.005088,0.055392,0.005856
+512,753.634,1.3269,0.335968,0.005792,0.209376,0.00528,0.004608,0.004416,0.007264,0.021408,0.057344,0.02048
+513,1312.19,0.762085,0.302304,0.006144,0.20256,0.004288,0.005376,0.0064,0.006656,0.006144,0.057344,0.007392
+514,1005.52,0.994507,0.586464,0.00592,0.486336,0.0072,0.004832,0.005824,0.00672,0.006144,0.05728,0.006208
+515,855.919,1.16833,0.338112,0.005792,0.240192,0.005312,0.004768,0.00576,0.006656,0.006176,0.056736,0.00672
+516,1056.76,0.946289,0.300224,0.005888,0.198944,0.005632,0.004576,0.006144,0.007424,0.006752,0.057504,0.00736
+517,1326.42,0.753906,0.30368,0.005824,0.201632,0.005088,0.004608,0.005824,0.006656,0.006464,0.060992,0.006592
+518,1329.22,0.752319,0.33104,0.006112,0.231456,0.00544,0.004544,0.005792,0.006496,0.006208,0.057536,0.007456
+519,1022.08,0.978394,0.298784,0.006144,0.198656,0.005216,0.0048,0.00576,0.006688,0.006208,0.058592,0.00672
+520,1169.62,0.85498,0.299008,0.006144,0.198656,0.005408,0.00464,0.006336,0.006144,0.007328,0.058208,0.006144
+521,1518.16,0.658691,0.299008,0.006144,0.200704,0.005312,0.0048,0.00576,0.006528,0.006272,0.057344,0.006144
+522,645.09,1.55017,0.311296,0.008192,0.210496,0.004544,0.00512,0.00512,0.007168,0.006752,0.05776,0.006144
+523,1337.69,0.747559,0.299936,0.005024,0.202048,0.0048,0.004096,0.006144,0.00624,0.007424,0.058016,0.006144
+524,1532.07,0.65271,0.301504,0.005824,0.199328,0.004192,0.005472,0.004768,0.007648,0.006688,0.060864,0.00672
+525,1354.72,0.738159,0.296224,0.006144,0.194272,0.004384,0.005312,0.004928,0.007648,0.006656,0.059424,0.007456
+526,1549.46,0.645386,0.521024,0.00512,0.417792,0.005728,0.004512,0.00608,0.006208,0.007264,0.0616,0.00672
+527,950.9,1.05164,0.299392,0.005888,0.196256,0.004896,0.004288,0.006144,0.006144,0.007392,0.061696,0.006688
+528,1648.62,0.606567,0.3008,0.006144,0.196416,0.004288,0.0056,0.005856,0.006752,0.006368,0.062624,0.006752
+529,1327.5,0.753296,0.29904,0.005824,0.19856,0.004544,0.005152,0.005088,0.006144,0.00752,0.060064,0.006144
+530,953.334,1.04895,0.540064,0.005824,0.422336,0.018432,0.005792,0.005824,0.006688,0.006272,0.06144,0.007456
+531,1133.84,0.881958,0.301696,0.005824,0.199648,0.005696,0.004544,0.006016,0.006272,0.006144,0.060832,0.00672
+532,1494.35,0.669189,0.301056,0.006144,0.198656,0.005664,0.004576,0.006144,0.007488,0.006752,0.058848,0.006784
+533,1389.42,0.719727,0.298272,0.006144,0.198656,0.005312,0.004576,0.006016,0.006624,0.006144,0.057344,0.007456
+534,1549.75,0.645264,0.295808,0.00592,0.197472,0.004224,0.005312,0.004928,0.007392,0.006784,0.057504,0.006272
+535,1355.62,0.737671,0.477184,0.006144,0.378784,0.004224,0.005504,0.005824,0.006688,0.006528,0.057344,0.006144
+536,1189.14,0.840942,0.294624,0.00608,0.194464,0.004256,0.005472,0.005792,0.006976,0.007456,0.057408,0.00672
+537,1361.25,0.734619,0.292576,0.005792,0.194176,0.004864,0.004256,0.006144,0.007168,0.006592,0.055872,0.007712
+538,1508.93,0.66272,0.305056,0.005824,0.201024,0.005824,0.004416,0.006176,0.007488,0.006752,0.060832,0.00672
+539,1167.45,0.856567,0.598304,0.006336,0.426528,0.028832,0.040448,0.01232,0.006624,0.006144,0.063488,0.007584
+540,935.801,1.0686,0.302368,0.006144,0.19456,0.004224,0.0056,0.00656,0.007264,0.006784,0.063776,0.007456
+541,1354.72,0.738159,0.298112,0.006144,0.192512,0.005408,0.004704,0.005632,0.006656,0.006272,0.063488,0.007296
+542,1531.79,0.652832,0.300768,0.00592,0.194912,0.005696,0.004512,0.006144,0.006144,0.007328,0.063392,0.00672
+543,1426.93,0.700806,0.295712,0.004896,0.196352,0.004352,0.005248,0.004992,0.007456,0.00656,0.059584,0.006272
+544,1385.19,0.721924,0.486208,0.004928,0.386784,0.004384,0.005344,0.004896,0.007552,0.006656,0.059008,0.006656
+545,1106.43,0.903809,0.298208,0.006016,0.19264,0.006144,0.005216,0.006304,0.006656,0.0064,0.06144,0.007392
+546,1527.5,0.654663,0.299744,0.005856,0.195584,0.004224,0.005472,0.005792,0.006784,0.0064,0.06304,0.006592
+547,1257.21,0.79541,0.303264,0.005792,0.200704,0.004608,0.004096,0.006144,0.008032,0.006304,0.06144,0.006144
+548,648.358,1.54236,0.333824,0.008192,0.227328,0.005152,0.004832,0.005792,0.00672,0.006208,0.062944,0.006656
+549,974.774,1.02588,0.378528,0.006144,0.25552,0.004576,0.004096,0.006144,0.017952,0.00768,0.0696,0.006816
+550,1332.25,0.75061,0.306464,0.005856,0.202336,0.004832,0.00432,0.006144,0.006208,0.00752,0.062048,0.0072
+551,1642.67,0.608765,0.301056,0.006144,0.196608,0.006144,0.005152,0.005088,0.007232,0.006656,0.061888,0.006144
+552,1426.18,0.701172,0.479232,0.006144,0.374784,0.005728,0.004512,0.006112,0.006176,0.007328,0.061792,0.006656
+553,1095.33,0.912964,0.299008,0.006144,0.195648,0.004864,0.004288,0.006176,0.006112,0.006144,0.063488,0.006144
+554,1511.16,0.661743,0.296576,0.005792,0.194656,0.004832,0.004096,0.006144,0.006208,0.007744,0.059776,0.007328
+555,1346.48,0.742676,0.304512,0.006144,0.200704,0.005824,0.004416,0.006144,0.006144,0.006144,0.06144,0.007552
+556,1061.41,0.942139,0.50192,0.007904,0.393696,0.005792,0.004448,0.006144,0.006144,0.007264,0.063776,0.006752
+557,1099.15,0.90979,0.30064,0.005824,0.197312,0.004224,0.005472,0.005792,0.00656,0.00656,0.061632,0.007264
+558,1392.25,0.718262,0.30096,0.006144,0.196608,0.00528,0.0048,0.006304,0.006144,0.007616,0.061344,0.00672
+559,1504.5,0.664673,0.295808,0.004992,0.198208,0.004544,0.004096,0.006144,0.007168,0.006624,0.057408,0.006624
+560,1437.19,0.695801,0.294912,0.005952,0.19616,0.004736,0.004128,0.006112,0.006144,0.007616,0.057888,0.006176
+561,1338.78,0.746948,0.483776,0.005792,0.378848,0.004928,0.004192,0.006144,0.006144,0.007616,0.063328,0.006784
+562,1070.43,0.934204,0.299008,0.006016,0.19264,0.0056,0.00464,0.005984,0.006304,0.00624,0.06512,0.006464
+563,1102.41,0.907104,0.3072,0.006144,0.202432,0.004416,0.005248,0.004992,0.007328,0.006592,0.063488,0.00656
+564,1560.98,0.640625,0.303456,0.005888,0.20336,0.005568,0.004672,0.00592,0.006368,0.007392,0.058112,0.006176
+565,752.112,1.32959,0.324704,0.009344,0.219424,0.004704,0.004096,0.006144,0.006144,0.008128,0.059456,0.007264
+566,1379.36,0.724976,0.303552,0.005824,0.20272,0.004864,0.004096,0.006144,0.006144,0.007712,0.059872,0.006176
+567,1451.71,0.688843,0.301376,0.005792,0.20064,0.0048,0.00512,0.00512,0.007424,0.006592,0.059328,0.00656
+568,724.699,1.37988,0.31744,0.005888,0.217376,0.005184,0.0048,0.00576,0.006688,0.006208,0.059392,0.006144
+569,1204.53,0.8302,0.296768,0.005824,0.199008,0.004512,0.005184,0.005056,0.007392,0.006752,0.055488,0.007552
+570,1636.44,0.611084,0.295232,0.005824,0.197216,0.005312,0.0048,0.00576,0.006656,0.006144,0.056864,0.006656
+571,1198.89,0.834106,0.315392,0.006144,0.21504,0.005664,0.004576,0.006048,0.00624,0.007168,0.057728,0.006784
+572,1717.04,0.582397,0.299008,0.005888,0.198912,0.00544,0.004768,0.006176,0.007328,0.00672,0.05696,0.006816
+573,662.515,1.5094,0.304704,0.008192,0.204256,0.00464,0.004096,0.006144,0.00736,0.00688,0.056672,0.006464
+574,1350.92,0.740234,0.293056,0.006016,0.19584,0.004864,0.004224,0.006144,0.00752,0.00672,0.055392,0.006336
+575,1418.04,0.7052,0.292864,0.005792,0.194432,0.004864,0.005312,0.00496,0.007584,0.00656,0.056576,0.006784
+576,1459.73,0.685059,0.293824,0.005056,0.196608,0.005504,0.004736,0.006144,0.006144,0.00784,0.055488,0.006304
+577,1253.75,0.797607,0.47696,0.006144,0.37888,0.005312,0.0048,0.005824,0.006592,0.006144,0.05648,0.006784
+578,1109.88,0.901001,0.293984,0.006144,0.192448,0.00416,0.005504,0.0064,0.006528,0.006144,0.059392,0.007264
+579,1161.49,0.860962,0.325632,0.00592,0.220896,0.004608,0.004096,0.007296,0.006656,0.006528,0.063424,0.006208
+580,1626.69,0.614746,0.30624,0.006144,0.200704,0.004096,0.005792,0.006304,0.006336,0.0072,0.062432,0.007232
+581,731.559,1.36694,0.311552,0.007168,0.203872,0.004864,0.004096,0.006144,0.007968,0.006368,0.063488,0.007584
+582,1256.44,0.795898,0.301728,0.00624,0.19696,0.00432,0.004096,0.006144,0.007584,0.006752,0.063424,0.006208
+583,1459.21,0.685303,0.2976,0.005792,0.194624,0.004864,0.004192,0.006144,0.006144,0.007392,0.06224,0.006208
+584,1399.86,0.714355,0.301376,0.005888,0.197184,0.00416,0.005536,0.00576,0.006688,0.006528,0.06336,0.006272
+585,1292.73,0.77356,0.494112,0.005792,0.38992,0.00416,0.005568,0.005792,0.006624,0.006592,0.063136,0.006528
+586,664.288,1.50537,0.323424,0.006144,0.22112,0.00416,0.005568,0.00576,0.00672,0.006528,0.059392,0.008032
+587,1404.18,0.712158,0.31216,0.015104,0.202848,0.005216,0.004832,0.005792,0.006688,0.006144,0.059392,0.006144
+588,1592.84,0.627808,0.54272,0.006144,0.44032,0.00784,0.00448,0.006112,0.006144,0.007488,0.058048,0.006144
+589,820.102,1.21936,0.298624,0.005888,0.198912,0.004096,0.005568,0.005824,0.00672,0.006464,0.058624,0.006528
+590,1405.87,0.711304,0.299008,0.006144,0.196608,0.005344,0.0048,0.00624,0.0072,0.006816,0.059264,0.006592
+591,1413.63,0.707397,0.295616,0.004864,0.194336,0.00432,0.00544,0.0048,0.007232,0.006592,0.061248,0.006784
+592,1544.79,0.647339,0.301056,0.006176,0.196576,0.005952,0.005408,0.005024,0.007424,0.006784,0.061568,0.006144
+593,1375.42,0.727051,0.29696,0.006144,0.194592,0.00576,0.004288,0.004256,0.006144,0.007424,0.061568,0.006784
+594,1098.71,0.910156,0.302752,0.006144,0.194368,0.004288,0.005376,0.004864,0.007456,0.006784,0.066656,0.006816
+595,1336.38,0.748291,0.300096,0.006144,0.192544,0.00528,0.0048,0.006272,0.006144,0.007488,0.064192,0.007232
+596,1552.1,0.644287,0.304768,0.005856,0.197184,0.00528,0.004928,0.005632,0.006656,0.006144,0.065536,0.007552
+597,1175.32,0.85083,0.554784,0.005792,0.433888,0.020672,0.004704,0.006144,0.006144,0.007584,0.063136,0.00672
+598,889.661,1.12402,0.30672,0.006144,0.198656,0.005792,0.004448,0.005952,0.006336,0.006304,0.065376,0.007712
+599,1330.3,0.751709,0.333792,0.00608,0.225344,0.004096,0.005568,0.005792,0.006592,0.006624,0.066976,0.00672
+600,1476.57,0.677246,0.315392,0.006144,0.198656,0.00576,0.00448,0.00608,0.006208,0.007264,0.074656,0.006144
+601,1324.07,0.755249,0.311168,0.006016,0.194656,0.004128,0.00608,0.005792,0.00656,0.006144,0.075008,0.006784
+602,1515.07,0.660034,0.491936,0.006144,0.376928,0.004416,0.005344,0.004896,0.00752,0.006752,0.073792,0.006144
+603,1068.2,0.936157,0.309984,0.005056,0.1944,0.005184,0.004832,0.00576,0.006624,0.006272,0.075072,0.006784
+604,1522.39,0.65686,0.30752,0.00592,0.196576,0.004832,0.004096,0.006144,0.006144,0.007616,0.069248,0.006944
+605,1115.16,0.896729,0.305952,0.004896,0.196608,0.005408,0.004832,0.00576,0.006496,0.006176,0.069632,0.006144
+606,824.062,1.2135,0.570976,0.006176,0.452352,0.006368,0.005536,0.00576,0.006688,0.006592,0.073728,0.007776
+607,1471.79,0.679443,0.307968,0.004864,0.200704,0.004096,0.0056,0.00464,0.007808,0.006528,0.067584,0.006144
+608,1370.59,0.729614,0.309408,0.005024,0.200288,0.004512,0.00544,0.0048,0.007616,0.006752,0.067552,0.007424
+609,1299.49,0.769531,0.30416,0.006144,0.194592,0.005632,0.004576,0.005664,0.006624,0.006144,0.067584,0.0072
+610,1606.59,0.622437,0.30528,0.005888,0.194944,0.004096,0.005728,0.0064,0.006304,0.007392,0.067776,0.006752
+611,1198.54,0.834351,0.30208,0.005024,0.193952,0.004704,0.004096,0.007296,0.006848,0.006336,0.067584,0.00624
+612,1517.04,0.65918,0.298272,0.005856,0.19488,0.004096,0.006144,0.005824,0.006496,0.006176,0.061376,0.007424
+613,1087.63,0.919434,0.327136,0.005824,0.223104,0.004832,0.004224,0.006144,0.006144,0.007552,0.06208,0.007232
+614,1252.79,0.798218,0.356352,0.005952,0.245344,0.004704,0.004096,0.006144,0.0072,0.006688,0.069568,0.006656
+615,637.957,1.5675,0.313344,0.008032,0.208064,0.00464,0.004544,0.006048,0.00624,0.006176,0.063456,0.006144
+616,1430.92,0.698853,0.329536,0.005056,0.225152,0.006144,0.004096,0.006144,0.007776,0.00656,0.061312,0.007296
+617,1369.9,0.72998,0.303456,0.005792,0.197312,0.005728,0.004512,0.006144,0.006144,0.007168,0.064512,0.006144
+618,1378.89,0.72522,0.3072,0.006144,0.198112,0.00464,0.004096,0.006144,0.007424,0.00672,0.067264,0.006656
+619,1187.94,0.841797,0.305312,0.005792,0.195072,0.005888,0.004352,0.007232,0.00672,0.006528,0.06752,0.006208
+620,1555.64,0.642822,0.3072,0.006144,0.196608,0.00544,0.0048,0.005824,0.006464,0.006208,0.068992,0.00672
+621,1053.09,0.949585,0.324992,0.005824,0.215744,0.005472,0.004768,0.005856,0.006432,0.006144,0.067584,0.007168
+622,1647.63,0.606934,0.311296,0.006144,0.196064,0.00464,0.004096,0.007328,0.006752,0.0064,0.073184,0.006688
+623,601.999,1.66113,0.330464,0.007072,0.198656,0.00576,0.00448,0.006144,0.006144,0.007232,0.072544,0.022432
+624,1259.53,0.793945,0.339968,0.006048,0.225376,0.00576,0.00448,0.006112,0.006176,0.007264,0.072544,0.006208
+625,1443.27,0.692871,0.313344,0.006144,0.200704,0.005152,0.0048,0.00576,0.006688,0.006272,0.07152,0.006304
+626,1380.52,0.724365,0.313344,0.005952,0.198848,0.0056,0.00464,0.006144,0.00736,0.006784,0.071232,0.006784
+627,1181.42,0.846436,0.30656,0.006144,0.198688,0.005152,0.0048,0.005856,0.006656,0.006176,0.065536,0.007552
+628,1538.98,0.64978,0.30448,0.006144,0.19664,0.005344,0.004576,0.00576,0.006752,0.006208,0.065536,0.00752
+629,1134.15,0.881714,0.306592,0.006144,0.198528,0.004224,0.005472,0.0064,0.00656,0.006144,0.065536,0.007584
+630,1676.28,0.596558,0.305568,0.005056,0.201984,0.004864,0.004096,0.006144,0.0072,0.006688,0.061888,0.007648
+631,637.808,1.56787,0.315424,0.007936,0.206208,0.004864,0.004256,0.006144,0.006144,0.007264,0.066464,0.006144
+632,1519.85,0.657959,0.31088,0.006144,0.20256,0.004288,0.005376,0.006336,0.00672,0.006144,0.066592,0.00672
+633,1457.13,0.686279,0.29696,0.005792,0.195328,0.004096,0.005568,0.005792,0.006912,0.006304,0.059392,0.007776
+634,1311.98,0.762207,0.304384,0.006144,0.198464,0.004288,0.005664,0.005792,0.006656,0.006464,0.063488,0.007424
+635,1552.69,0.644043,0.523872,0.006144,0.417792,0.005344,0.0048,0.005632,0.006752,0.006144,0.064576,0.006688
+636,1057.85,0.945312,0.300832,0.005824,0.193312,0.00592,0.00432,0.006144,0.007648,0.00672,0.063456,0.007488
+637,1519.01,0.658325,0.307392,0.005792,0.194144,0.004896,0.004256,0.006144,0.0072,0.00656,0.07216,0.00624
+638,1386.13,0.721436,0.315136,0.006144,0.198656,0.005536,0.004704,0.006144,0.006144,0.007584,0.073536,0.006688
+639,1325.14,0.754639,0.606208,0.006144,0.462528,0.040768,0.004608,0.00608,0.006208,0.006144,0.066752,0.006976
+640,803.374,1.24475,0.3048,0.006144,0.196608,0.005888,0.004352,0.006144,0.006144,0.007392,0.065312,0.006816
+641,1519.01,0.658325,0.304,0.00496,0.196544,0.00416,0.005536,0.006752,0.006144,0.007808,0.065824,0.006272
+642,1341.63,0.745361,0.303104,0.006144,0.19456,0.005376,0.004832,0.006176,0.006144,0.007616,0.065888,0.006368
+643,682.269,1.4657,0.591872,0.005888,0.479488,0.004096,0.005824,0.005824,0.006688,0.00624,0.065536,0.012288
+644,1138.57,0.878296,0.33648,0.005856,0.230272,0.00528,0.004832,0.005792,0.006624,0.008192,0.063488,0.006144
+645,1631.22,0.613037,0.3048,0.006144,0.197984,0.004768,0.004096,0.006144,0.006144,0.00752,0.064256,0.007744
+646,1385.42,0.721802,0.311136,0.005888,0.204928,0.004608,0.005312,0.004928,0.007552,0.006752,0.06352,0.007648
+647,1401.3,0.713623,0.558496,0.005792,0.430112,0.027136,0.006144,0.005984,0.006304,0.006144,0.063488,0.007392
+648,826.807,1.20947,0.306464,0.006144,0.199744,0.004896,0.004256,0.006144,0.006144,0.007424,0.064256,0.007456
+649,1420,0.704224,0.304544,0.006144,0.198368,0.004384,0.005216,0.005024,0.007424,0.006592,0.063808,0.007584
+650,1375.42,0.727051,0.303136,0.006144,0.19456,0.005504,0.004736,0.00592,0.006368,0.007968,0.06528,0.006656
+651,1395.57,0.716553,0.303776,0.005824,0.195584,0.00544,0.004768,0.006144,0.007712,0.006624,0.06544,0.00624
+652,1151.86,0.868164,0.306784,0.005888,0.195008,0.005696,0.004544,0.005952,0.006336,0.007392,0.068384,0.007584
+653,1502.57,0.665527,0.306176,0.006144,0.194496,0.0056,0.004672,0.005632,0.006656,0.006176,0.069632,0.007168
+654,906.897,1.10266,0.30464,0.005888,0.193248,0.00544,0.0048,0.006144,0.006144,0.007264,0.068512,0.0072
+655,1526.93,0.654907,0.614912,0.004832,0.485376,0.024576,0.005792,0.005824,0.00672,0.00624,0.068928,0.006624
+656,819.2,1.2207,0.309248,0.006112,0.198016,0.004768,0.004096,0.006176,0.006112,0.007584,0.07008,0.006304
+657,1410.71,0.708862,0.310592,0.006144,0.198528,0.004224,0.005728,0.00592,0.00672,0.006208,0.069632,0.007488
+658,1425.69,0.701416,0.309248,0.006144,0.196608,0.005248,0.004832,0.006304,0.006144,0.00736,0.069856,0.006752
+659,1425.69,0.701416,0.308736,0.006144,0.198176,0.004576,0.004096,0.006144,0.007296,0.006592,0.068064,0.007648
+660,1355.62,0.737671,0.514048,0.006144,0.407488,0.00416,0.0056,0.00576,0.006656,0.00656,0.065536,0.006144
+661,1101.22,0.908081,0.305152,0.006144,0.19456,0.004096,0.005632,0.005792,0.006144,0.006656,0.069536,0.006592
+662,1227.27,0.814819,0.307328,0.005888,0.196128,0.004864,0.004192,0.006144,0.006144,0.007488,0.06976,0.00672
+663,1434.17,0.697266,0.312352,0.006144,0.20192,0.004896,0.004128,0.006144,0.006144,0.007392,0.068384,0.0072
+664,1448.12,0.690552,0.55344,0.005088,0.44128,0.00704,0.004096,0.006144,0.00624,0.007584,0.069152,0.006816
+665,833.706,1.19946,0.308384,0.005792,0.198336,0.004864,0.004096,0.007264,0.006688,0.006528,0.067584,0.007232
+666,1329.44,0.752197,0.30944,0.005888,0.19744,0.005312,0.004928,0.006144,0.006144,0.007456,0.06944,0.006688
+667,1468.63,0.680908,0.30912,0.004864,0.198656,0.005536,0.00576,0.005088,0.007424,0.006592,0.067904,0.007296
+668,1391.78,0.718506,0.306016,0.005088,0.19456,0.005312,0.00496,0.006112,0.007584,0.006752,0.068768,0.00688
+669,1296.2,0.771484,0.497504,0.006144,0.387072,0.005568,0.004672,0.005952,0.006336,0.006144,0.0688,0.006816
+670,1113.19,0.898315,0.301696,0.005888,0.19136,0.005728,0.004512,0.00608,0.006208,0.0072,0.068576,0.006144
+671,778.411,1.28467,0.323136,0.005792,0.197408,0.004288,0.020288,0.006144,0.006144,0.007264,0.068512,0.007296
+672,1048.37,0.953857,0.316064,0.00592,0.205152,0.004768,0.004096,0.0072,0.006816,0.006464,0.068736,0.006912
+673,823.731,1.21399,0.321248,0.008192,0.210944,0.005472,0.004768,0.005856,0.006432,0.006144,0.066688,0.006752
+674,1414.36,0.707031,0.317376,0.006144,0.204768,0.004128,0.005408,0.004832,0.007744,0.006592,0.070912,0.006848
+675,1539.85,0.649414,0.307872,0.00512,0.202144,0.004704,0.005504,0.005792,0.006624,0.006624,0.064736,0.006624
+676,1328.36,0.752808,0.304608,0.006144,0.19456,0.005952,0.005632,0.004864,0.007776,0.006496,0.067328,0.005856
+677,1241.96,0.805176,0.306976,0.005856,0.196928,0.005152,0.005024,0.005792,0.006528,0.006144,0.068896,0.006656
+678,1351.82,0.739746,0.303808,0.005056,0.195424,0.004928,0.004256,0.006144,0.006144,0.007616,0.067456,0.006784
+679,1508.1,0.663086,0.309216,0.006304,0.19904,0.004096,0.005568,0.005792,0.006688,0.006528,0.067584,0.007616
+680,542.265,1.84412,0.306816,0.005952,0.197216,0.005248,0.00496,0.005888,0.0064,0.00624,0.067488,0.007424
+681,1237.84,0.807861,0.315392,0.008192,0.203808,0.004928,0.004256,0.006144,0.006144,0.007264,0.068416,0.00624
+682,1595.33,0.626831,0.306528,0.005824,0.196608,0.00448,0.005216,0.005024,0.007456,0.006752,0.067712,0.007456
+683,1521.83,0.657104,0.311616,0.005856,0.20128,0.004096,0.005632,0.005792,0.006784,0.006368,0.069632,0.006176
+684,1255.29,0.796631,0.307136,0.006144,0.19616,0.004544,0.00512,0.00512,0.007264,0.006752,0.067904,0.008128
+685,1275.42,0.784058,0.309632,0.005824,0.197344,0.00512,0.004832,0.006432,0.006176,0.007392,0.069856,0.006656
+686,1297.85,0.770508,0.309408,0.005856,0.195552,0.005536,0.004704,0.007264,0.006976,0.00624,0.069632,0.007648
+687,1388.24,0.720337,0.311968,0.005792,0.1992,0.004576,0.004096,0.008128,0.006208,0.006176,0.071392,0.0064
+688,1352.26,0.739502,0.308096,0.005088,0.198592,0.006112,0.004096,0.006144,0.007232,0.00704,0.067648,0.006144
+689,746.016,1.34045,0.311616,0.007168,0.200704,0.00528,0.0048,0.005824,0.006496,0.006272,0.067584,0.007488
+690,1466,0.682129,0.303328,0.005824,0.195136,0.004096,0.005632,0.006048,0.006688,0.00624,0.06704,0.006624
+691,1531.21,0.653076,0.30352,0.005792,0.195392,0.00544,0.004768,0.006144,0.006144,0.007616,0.065504,0.00672
+692,1235.78,0.809204,0.302784,0.006048,0.1984,0.004448,0.005216,0.005024,0.007424,0.006816,0.062688,0.00672
+693,1415.83,0.706299,0.48864,0.005856,0.384672,0.004736,0.004096,0.006144,0.007264,0.006624,0.061888,0.00736
+694,623.915,1.60278,0.372096,0.006144,0.255296,0.0048,0.004096,0.006144,0.006144,0.007648,0.061792,0.020032
+695,1181.42,0.846436,0.323488,0.00592,0.21856,0.004896,0.004192,0.006144,0.007456,0.006656,0.062976,0.006688
+696,1012.23,0.987915,0.56784,0.005088,0.425824,0.045056,0.004096,0.006144,0.007168,0.006848,0.061024,0.006592
+697,992.97,1.00708,0.311296,0.006144,0.206848,0.005856,0.004384,0.006144,0.006144,0.007488,0.062144,0.006144
+698,1545.37,0.647095,0.305152,0.00592,0.19888,0.006144,0.005152,0.005088,0.007392,0.00672,0.063584,0.006272
+699,1268.31,0.788452,0.322304,0.004864,0.219008,0.004256,0.005408,0.0048,0.007904,0.006432,0.063296,0.006336
+700,1500.64,0.666382,0.307008,0.005856,0.20112,0.004192,0.005472,0.006816,0.006144,0.007584,0.063104,0.00672
+701,1127.91,0.886597,0.33152,0.005984,0.226912,0.004672,0.004096,0.006144,0.007456,0.006624,0.062976,0.006656
+702,1500.92,0.66626,0.310688,0.006144,0.204704,0.004192,0.00544,0.004992,0.007584,0.00656,0.063488,0.007584
+703,1049.85,0.952515,0.304704,0.005792,0.199136,0.004288,0.0056,0.006496,0.006144,0.007264,0.062368,0.007616
+704,1667.41,0.599731,0.306816,0.006144,0.200128,0.004672,0.004096,0.007968,0.006368,0.007232,0.0624,0.007808
+705,679.552,1.47156,0.309216,0.007936,0.19936,0.005568,0.004672,0.005952,0.006336,0.006144,0.065536,0.007712
+706,1612.92,0.619995,0.304576,0.006176,0.198464,0.004256,0.005408,0.00688,0.006144,0.007488,0.062144,0.007616
+707,1340.09,0.746216,0.299776,0.004864,0.195872,0.004832,0.004096,0.006144,0.006144,0.00752,0.063648,0.006656
+708,1486.48,0.672729,0.300928,0.006048,0.196352,0.004448,0.005632,0.005792,0.006752,0.0064,0.062944,0.00656
+709,1370.36,0.729736,0.480992,0.005888,0.377088,0.004256,0.005664,0.005792,0.006624,0.006336,0.062688,0.006656
+710,1141.9,0.875732,0.301152,0.005888,0.19456,0.00448,0.005216,0.005024,0.007296,0.006816,0.065184,0.006688
+711,1340.09,0.746216,0.30352,0.005824,0.194688,0.004704,0.004096,0.007744,0.006592,0.006144,0.067072,0.006656
+712,818.382,1.22192,0.31344,0.005856,0.209248,0.005632,0.004608,0.005952,0.006336,0.006336,0.062976,0.006496
+713,1010.86,0.989258,0.344448,0.007904,0.237824,0.004544,0.00512,0.005088,0.007392,0.00656,0.063872,0.006144
+714,1225.06,0.816284,0.30784,0.004928,0.202752,0.005824,0.004416,0.006144,0.006144,0.007296,0.063616,0.00672
+715,1565.45,0.638794,0.31024,0.005056,0.206784,0.004096,0.005696,0.00576,0.006496,0.006624,0.063488,0.00624
+716,1413.88,0.707275,0.307296,0.005824,0.202912,0.004352,0.005312,0.004928,0.007232,0.006816,0.063776,0.006144
+717,1449.65,0.689819,0.307104,0.006144,0.203776,0.004928,0.004288,0.006144,0.007392,0.006624,0.061632,0.006176
+718,907.902,1.10144,0.304768,0.006176,0.20048,0.004288,0.005408,0.004832,0.00752,0.006752,0.062752,0.00656
+719,1613.23,0.619873,0.304448,0.006144,0.19568,0.004864,0.004256,0.006144,0.007456,0.006656,0.06576,0.007488
+720,1335.51,0.748779,0.309888,0.005856,0.199584,0.005888,0.004352,0.006144,0.00752,0.006752,0.067296,0.006496
+721,1427.92,0.700317,0.5504,0.006144,0.438272,0.006144,0.005984,0.005792,0.006656,0.006144,0.067584,0.00768
+722,783.773,1.27588,0.305184,0.005824,0.195424,0.005664,0.004576,0.006144,0.006144,0.007776,0.065952,0.00768
+723,1560.98,0.640625,0.305984,0.005024,0.196352,0.004352,0.005568,0.005824,0.006688,0.006496,0.067584,0.008096
+724,1379.12,0.725098,0.309056,0.005856,0.196672,0.004576,0.004096,0.006144,0.007264,0.006688,0.070016,0.007744
+725,1494.35,0.669189,0.31296,0.005824,0.19904,0.004352,0.005888,0.00576,0.006688,0.00624,0.07168,0.007488
+726,1420.99,0.703735,0.488288,0.005056,0.376736,0.0056,0.00464,0.00592,0.006368,0.00624,0.07152,0.006208
+727,1100.63,0.908569,0.30464,0.005792,0.1952,0.004096,0.0056,0.005792,0.006656,0.006528,0.067584,0.007392
+728,1351.15,0.740112,0.304384,0.006144,0.193696,0.004864,0.004192,0.006144,0.007264,0.006784,0.067872,0.007424
+729,1424.2,0.702148,0.316992,0.006144,0.2048,0.005408,0.0048,0.005792,0.006464,0.006208,0.069632,0.007744
+730,1208.08,0.827759,0.55296,0.006144,0.44032,0.006144,0.005824,0.005728,0.006688,0.006336,0.069536,0.00624
+731,829.066,1.20618,0.317632,0.005792,0.209696,0.004192,0.005472,0.004768,0.00736,0.00688,0.066848,0.006624
+732,1541.01,0.648926,0.309248,0.005824,0.201056,0.004256,0.005632,0.006368,0.006272,0.007296,0.065952,0.006592
+733,1498.17,0.66748,0.306816,0.005824,0.19888,0.004192,0.005568,0.00576,0.006688,0.00656,0.066752,0.006592
+734,1269.68,0.787598,0.301152,0.005824,0.194176,0.004864,0.004128,0.006144,0.006144,0.007264,0.066464,0.006144
+735,1479.23,0.676025,0.492768,0.006144,0.376832,0.005888,0.004352,0.006144,0.006144,0.007264,0.072608,0.007392
+736,1081.45,0.924683,0.306976,0.005888,0.193184,0.00512,0.0048,0.005728,0.006656,0.006336,0.07168,0.007584
+737,1150.72,0.869019,0.31232,0.006144,0.198656,0.005184,0.0048,0.0064,0.006144,0.006144,0.07168,0.007168
+738,1635.13,0.611572,0.31008,0.005088,0.198496,0.005568,0.004672,0.005984,0.006304,0.006272,0.071552,0.006144
+739,1080.17,0.925781,0.509984,0.008224,0.393184,0.00608,0.005504,0.0048,0.00768,0.006656,0.071616,0.00624
+740,1077.33,0.928223,0.311072,0.006144,0.195808,0.004928,0.005472,0.005792,0.00672,0.00656,0.073024,0.006624
+741,1517.04,0.65918,0.315392,0.006144,0.19808,0.004672,0.005472,0.005856,0.007008,0.00624,0.075168,0.006752
+742,1375.65,0.726929,0.311968,0.005856,0.197408,0.004192,0.005248,0.004992,0.006144,0.007584,0.074336,0.006208
+743,1393.43,0.717651,0.314432,0.005984,0.198752,0.00416,0.005504,0.004832,0.007616,0.006432,0.07392,0.007232
+744,1197.14,0.835327,0.315776,0.00592,0.1984,0.004704,0.005472,0.005024,0.007392,0.006688,0.076032,0.006144
+745,1459.21,0.685303,0.313792,0.005792,0.19728,0.004352,0.005248,0.004992,0.007424,0.006688,0.07536,0.006656
+746,1199.59,0.833618,0.31344,0.005888,0.19504,0.00544,0.0048,0.005824,0.006464,0.006144,0.077056,0.006784
+747,1428.42,0.700073,0.34032,0.005792,0.223712,0.00448,0.005216,0.005024,0.007456,0.006624,0.075296,0.00672
+748,844.014,1.18481,0.312736,0.008192,0.198656,0.005376,0.0048,0.005792,0.006528,0.006176,0.070688,0.006528
+749,1519.01,0.658325,0.316896,0.006144,0.200704,0.004128,0.005696,0.005632,0.006656,0.00656,0.073728,0.007648
+750,1330.3,0.751709,0.31232,0.00512,0.196352,0.004352,0.00528,0.00496,0.007584,0.00672,0.075488,0.006464
+751,748.812,1.33545,0.358688,0.005792,0.240416,0.005888,0.004352,0.006144,0.006144,0.008032,0.075424,0.006496
+752,1213.09,0.824341,0.33008,0.005664,0.213824,0.005408,0.004832,0.00576,0.006528,0.006176,0.075744,0.006144
+753,1384.95,0.722046,0.31744,0.006112,0.200064,0.004768,0.004096,0.006144,0.007264,0.006752,0.075584,0.006656
+754,1248.4,0.801025,0.314784,0.006112,0.19776,0.004864,0.004256,0.006144,0.006144,0.007296,0.074624,0.007584
+755,1635.78,0.611328,0.313856,0.005088,0.196128,0.004576,0.005152,0.0064,0.006656,0.006368,0.075776,0.007712
+756,709.694,1.40906,0.319232,0.008192,0.198656,0.004288,0.0056,0.0056,0.00672,0.006464,0.076992,0.00672
+757,1441.75,0.693604,0.313888,0.005056,0.19632,0.004384,0.00528,0.006048,0.006656,0.006592,0.076896,0.006656
+758,1508.93,0.66272,0.316096,0.004928,0.199712,0.004864,0.005888,0.005792,0.006656,0.006464,0.075072,0.00672
+759,1380.52,0.724365,0.311648,0.005824,0.193312,0.005856,0.005536,0.004992,0.007456,0.006624,0.075392,0.006656
+760,1297.02,0.770996,0.55088,0.006144,0.43008,0.005312,0.004832,0.005792,0.006592,0.006144,0.079296,0.006688
+761,1068.89,0.935547,0.309888,0.005824,0.193472,0.005504,0.004736,0.006144,0.006144,0.00752,0.074016,0.006528
+762,1481.11,0.675171,0.3128,0.006176,0.196512,0.004192,0.005984,0.005792,0.006656,0.006144,0.073728,0.007616
+763,1302.18,0.767944,0.315488,0.005856,0.19888,0.004736,0.004096,0.006144,0.00752,0.006688,0.073856,0.007712
+764,995.867,1.00415,0.55296,0.02864,0.40336,0.005504,0.004832,0.00576,0.00656,0.006144,0.073728,0.018432
+765,1099.89,0.90918,0.309504,0.005824,0.194912,0.00464,0.004096,0.006144,0.006144,0.007648,0.073376,0.00672
+766,1488.64,0.671753,0.312896,0.00592,0.196832,0.004128,0.005536,0.005792,0.006656,0.006592,0.073696,0.007744
+767,1355.62,0.737671,0.310784,0.005824,0.194304,0.004864,0.004224,0.006048,0.007296,0.006624,0.074144,0.007456
+768,1315.77,0.76001,0.308704,0.005792,0.198304,0.004896,0.00432,0.006144,0.006176,0.007488,0.068256,0.007328
+769,1297.64,0.77063,0.485504,0.005792,0.376736,0.004672,0.004096,0.006144,0.007232,0.006624,0.068064,0.006144
+770,1170.62,0.854248,0.305152,0.006144,0.1936,0.004896,0.004256,0.006144,0.006144,0.007296,0.07024,0.006432
+771,934.733,1.06982,0.369856,0.006176,0.235072,0.004512,0.013632,0.006208,0.006656,0.022272,0.067968,0.00736
+772,1471.79,0.679443,0.31744,0.006144,0.204,0.004864,0.004128,0.006144,0.007744,0.006592,0.07168,0.006144
+773,632.196,1.58179,0.313824,0.007936,0.199584,0.005504,0.004736,0.005824,0.006464,0.006144,0.070816,0.006816
+774,1513.39,0.660767,0.309024,0.006144,0.196608,0.005568,0.004672,0.006144,0.006144,0.007584,0.069472,0.006688
+775,1356.52,0.737183,0.303904,0.004896,0.194496,0.00416,0.005536,0.00576,0.006656,0.006592,0.069664,0.006144
+776,1473.91,0.678467,0.307392,0.005824,0.195072,0.005856,0.004384,0.00608,0.006208,0.0072,0.070624,0.006144
+777,1157.23,0.864136,0.30768,0.004832,0.196608,0.005376,0.004576,0.005984,0.006592,0.006144,0.069632,0.007936
+778,1491.35,0.670532,0.307904,0.005056,0.198528,0.004096,0.0056,0.00576,0.006688,0.00656,0.068896,0.00672
+779,1309.04,0.763916,0.327776,0.005824,0.196384,0.004864,0.020448,0.006144,0.007808,0.006528,0.073088,0.006688
+780,1315.98,0.759888,0.311392,0.005888,0.196992,0.004064,0.005856,0.006432,0.006144,0.007552,0.07232,0.006144
+781,723.292,1.38257,0.3152,0.008192,0.198656,0.005504,0.004736,0.005792,0.006496,0.006144,0.072864,0.006816
+782,1557.71,0.641968,0.313536,0.005792,0.19648,0.004768,0.005408,0.00592,0.006656,0.006624,0.075744,0.006144
+783,1363.06,0.733643,0.311296,0.006144,0.19424,0.004416,0.005184,0.005056,0.007392,0.006656,0.076064,0.006144
+784,1297.43,0.770752,0.311392,0.005824,0.194432,0.00464,0.005184,0.005056,0.006144,0.007808,0.075616,0.006688
+785,1346.26,0.742798,0.311296,0.006144,0.192512,0.006144,0.004096,0.006144,0.007232,0.006688,0.075872,0.006464
+786,1151.53,0.868408,0.309664,0.005856,0.193216,0.005696,0.004544,0.00592,0.006368,0.006272,0.075296,0.006496
+787,1260.89,0.793091,0.31808,0.005824,0.192512,0.004864,0.004288,0.006144,0.022176,0.006464,0.069664,0.006144
+788,1364.42,0.73291,0.32352,0.005984,0.198848,0.005472,0.004768,0.006144,0.018432,0.007264,0.06976,0.006848
+789,1290.08,0.775146,0.57952,0.005984,0.448672,0.022528,0.006144,0.005888,0.0064,0.006144,0.07104,0.00672
+790,807.81,1.23792,0.31392,0.005792,0.201664,0.005568,0.004576,0.006048,0.006336,0.006272,0.070944,0.00672
+791,1392.25,0.718262,0.30944,0.005888,0.194816,0.00512,0.0048,0.006464,0.006144,0.007296,0.072576,0.006336
+792,1320.65,0.757202,0.308256,0.006144,0.193888,0.004768,0.004096,0.006176,0.006112,0.007744,0.072128,0.0072
+793,1543.04,0.648071,0.309248,0.006144,0.195872,0.004832,0.004224,0.006016,0.006144,0.007616,0.072256,0.006144
+794,1087.05,0.919922,0.303392,0.00592,0.192288,0.004864,0.004224,0.006176,0.0072,0.007104,0.068896,0.00672
+795,1511.16,0.661743,0.304384,0.006144,0.1944,0.004256,0.005408,0.005024,0.007552,0.006592,0.067584,0.007424
+796,1252.79,0.798218,0.317152,0.006144,0.19424,0.004416,0.005792,0.006432,0.006208,0.007328,0.079872,0.00672
+797,1532.07,0.65271,0.314816,0.006144,0.198688,0.005184,0.004768,0.005792,0.006624,0.006272,0.073728,0.007616
+798,709.387,1.40967,0.321184,0.008224,0.20416,0.004704,0.004096,0.006144,0.007776,0.006592,0.0728,0.006688
+799,1346.26,0.742798,0.308896,0.006144,0.1944,0.004256,0.005408,0.004832,0.007648,0.006624,0.072864,0.00672
+800,1430.17,0.699219,0.301664,0.005792,0.193472,0.005408,0.0048,0.006144,0.006144,0.007456,0.06576,0.006688
+801,1455.84,0.68689,0.303104,0.006144,0.19456,0.0056,0.00464,0.006144,0.006144,0.007488,0.06624,0.006144
+802,1364.2,0.733032,0.327648,0.006144,0.219136,0.005248,0.004736,0.004352,0.006144,0.007904,0.067264,0.00672
+803,1017.89,0.982422,0.302464,0.006144,0.192512,0.005856,0.004384,0.006144,0.006144,0.006144,0.067584,0.007552
+804,1492.71,0.669922,0.301184,0.005856,0.192384,0.004864,0.00416,0.006144,0.006176,0.007424,0.067456,0.00672
+805,1090.38,0.917114,0.330912,0.006144,0.221056,0.004224,0.00544,0.0048,0.007648,0.006688,0.067584,0.007328
+806,1623.46,0.615967,0.605824,0.005824,0.469824,0.032768,0.005568,0.005792,0.006688,0.006528,0.065536,0.007296
+807,778.485,1.28455,0.304928,0.005824,0.197184,0.005408,0.0048,0.0056,0.00672,0.006144,0.065568,0.00768
+808,1414.36,0.707031,0.317248,0.005824,0.19344,0.005152,0.004576,0.005984,0.006656,0.006304,0.08192,0.007392
+809,1013.61,0.986572,0.313664,0.005824,0.20544,0.005824,0.004416,0.007328,0.006976,0.006176,0.065536,0.006144
+810,1732.29,0.577271,0.304992,0.005888,0.198624,0.004448,0.004064,0.006144,0.007584,0.006752,0.064768,0.00672
+811,1151.37,0.86853,0.300992,0.005888,0.194944,0.004096,0.005568,0.00608,0.006656,0.006272,0.0648,0.006688
+812,1318.53,0.758423,0.306272,0.006144,0.199904,0.004864,0.004128,0.006144,0.007168,0.006816,0.06384,0.007264
+813,1334.2,0.749512,0.305152,0.006144,0.198688,0.004064,0.006144,0.005888,0.0064,0.006144,0.065536,0.006144
+814,1571.46,0.636353,0.591904,0.006144,0.468992,0.020128,0.004448,0.006144,0.006144,0.00736,0.06576,0.006784
+815,804.952,1.24231,0.304832,0.005824,0.198368,0.004832,0.004064,0.006144,0.006144,0.007392,0.064288,0.007776
+816,1374.5,0.727539,0.309088,0.005824,0.201024,0.004096,0.006144,0.00592,0.006368,0.006272,0.066624,0.006816
+817,1391.07,0.718872,0.308064,0.005056,0.197536,0.004864,0.004352,0.006144,0.007264,0.00656,0.070144,0.006144
+818,1525.8,0.655396,0.3112,0.006144,0.19856,0.004192,0.005536,0.005792,0.006656,0.006592,0.070976,0.006752
+819,1230.21,0.812866,0.313472,0.005824,0.2032,0.004224,0.006112,0.005856,0.006432,0.00592,0.068864,0.00704
+820,1191.91,0.838989,0.308288,0.007232,0.193472,0.005152,0.004832,0.005824,0.00672,0.006144,0.07168,0.007232
+821,1306.12,0.765625,0.304384,0.006144,0.193952,0.004704,0.004096,0.006144,0.006144,0.007712,0.068064,0.007424
+822,1407.56,0.710449,0.328864,0.005888,0.213344,0.005152,0.005024,0.005792,0.00656,0.006144,0.073728,0.007232
+823,1230.77,0.8125,0.573152,0.006016,0.452448,0.007616,0.00496,0.006144,0.006144,0.007264,0.075904,0.006656
+824,823.813,1.21387,0.311296,0.006144,0.19376,0.004864,0.004128,0.006144,0.007232,0.006784,0.075552,0.006688
+825,1422.47,0.703003,0.311104,0.006144,0.193728,0.004864,0.00416,0.006144,0.006144,0.00752,0.075744,0.006656
+826,1489.73,0.671265,0.313024,0.005856,0.195104,0.004352,0.005856,0.005792,0.006688,0.00624,0.075776,0.00736
+827,1360.57,0.734985,0.31056,0.00592,0.194112,0.004768,0.004096,0.006144,0.006144,0.007552,0.074368,0.007456
+828,898.344,1.11316,0.50368,0.006144,0.378496,0.00448,0.013728,0.00624,0.006656,0.006144,0.074976,0.006816
+829,1417.79,0.705322,0.354432,0.005792,0.239424,0.004704,0.004096,0.006144,0.006144,0.007808,0.074112,0.006208
+830,1112.59,0.898804,0.327904,0.005888,0.211328,0.00416,0.005504,0.006368,0.00656,0.006144,0.07536,0.006592
+831,1414.12,0.707153,0.340704,0.004864,0.214976,0.005184,0.0048,0.005888,0.006656,0.006144,0.085792,0.0064
+832,764.108,1.30872,0.315808,0.008,0.197216,0.00528,0.0048,0.005792,0.006528,0.006272,0.075488,0.006432
+833,1346.04,0.74292,0.313344,0.006144,0.194528,0.004128,0.00608,0.005664,0.006688,0.006144,0.077568,0.0064
+834,1518.44,0.658569,0.316416,0.00512,0.19664,0.005632,0.004576,0.006144,0.006144,0.007616,0.077728,0.006816
+835,1390.36,0.719238,0.311552,0.005824,0.194688,0.004576,0.00512,0.006496,0.006656,0.006272,0.07568,0.00624
+836,1258.76,0.794434,0.505856,0.006144,0.385024,0.004192,0.005696,0.005792,0.006688,0.006304,0.079808,0.006208
+837,1134.47,0.88147,0.313376,0.005824,0.192864,0.005728,0.004512,0.007168,0.007168,0.006144,0.077248,0.00672
+838,1323.85,0.755371,0.3264,0.004928,0.197664,0.004864,0.00432,0.006144,0.006144,0.007808,0.0864,0.008128
+839,1477.37,0.67688,0.313344,0.006144,0.194592,0.005792,0.004416,0.006144,0.006144,0.0072,0.076768,0.006144
+840,1279.2,0.781738,0.573696,0.005792,0.44912,0.006144,0.005312,0.004928,0.007552,0.006752,0.081408,0.006688
+841,850.057,1.17639,0.314592,0.005856,0.194848,0.0056,0.00464,0.00592,0.006368,0.006144,0.077824,0.007392
+842,1454.55,0.6875,0.315552,0.006144,0.196384,0.00432,0.0056,0.005792,0.006688,0.006496,0.077824,0.006304
+843,1371.05,0.72937,0.313408,0.005824,0.193344,0.005376,0.004864,0.006144,0.006176,0.00752,0.076416,0.007744
+844,1368.76,0.730591,0.31712,0.006144,0.194304,0.004352,0.005344,0.006944,0.006144,0.007552,0.079616,0.00672
+845,1192.43,0.838623,0.314688,0.005792,0.194528,0.004768,0.004096,0.006144,0.006144,0.007648,0.078368,0.0072
+846,1439.47,0.694702,0.321472,0.006144,0.198176,0.004576,0.005696,0.005792,0.006656,0.007456,0.080256,0.00672
+847,817.483,1.22327,0.342144,0.005824,0.21984,0.005536,0.004704,0.005888,0.0064,0.007296,0.080064,0.006592
+848,1189.49,0.840698,0.597536,0.005824,0.426592,0.040864,0.018528,0.006144,0.006144,0.007424,0.078592,0.007424
+849,965.924,1.03528,0.32224,0.004896,0.202176,0.004576,0.005728,0.005792,0.006688,0.006368,0.079872,0.006144
+850,1515.07,0.660034,0.31744,0.006176,0.196576,0.005536,0.004704,0.005696,0.006592,0.006144,0.079648,0.006368
+851,814.719,1.22742,0.313344,0.006144,0.196288,0.004416,0.00528,0.00496,0.007424,0.006624,0.076064,0.006144
+852,1297.85,0.770508,0.548224,0.006144,0.43008,0.004096,0.005696,0.00576,0.006688,0.007488,0.07472,0.007552
+853,1080.74,0.925293,0.30928,0.005088,0.19408,0.004576,0.00512,0.00512,0.007168,0.006592,0.074304,0.007232
+854,1520.98,0.657471,0.312192,0.004992,0.196608,0.0056,0.004384,0.005824,0.006688,0.006176,0.075744,0.006176
+855,1120.5,0.892456,0.336864,0.005088,0.210944,0.004128,0.0056,0.005728,0.006688,0.006528,0.085472,0.006688
+856,1571.15,0.636475,0.563552,0.005792,0.436928,0.012288,0.004096,0.006144,0.00624,0.007616,0.078112,0.006336
+857,824.311,1.21313,0.315424,0.006144,0.19456,0.005184,0.0048,0.0056,0.006784,0.006304,0.079872,0.006176
+858,1524.38,0.656006,0.314976,0.005824,0.194912,0.004192,0.006016,0.005792,0.006624,0.006144,0.077856,0.007616
+859,1306.75,0.765259,0.308192,0.005088,0.19456,0.005728,0.004512,0.006144,0.006144,0.007456,0.072416,0.006144
+860,1504.5,0.664673,0.3072,0.005888,0.194816,0.005408,0.0048,0.005664,0.006656,0.006144,0.07168,0.006144
+861,1242.53,0.80481,0.494048,0.005824,0.38272,0.004928,0.004288,0.006144,0.006144,0.007328,0.0704,0.006272
+862,1132.12,0.883301,0.308928,0.006176,0.194528,0.0056,0.00464,0.006144,0.006144,0.007296,0.071584,0.006816
+863,1153.32,0.867065,0.32768,0.006144,0.196608,0.0056,0.004544,0.020096,0.006624,0.006144,0.075712,0.006208
+864,1326.21,0.754028,0.333792,0.005856,0.193536,0.005632,0.004576,0.006016,0.022144,0.006368,0.0696,0.020064
+865,631.465,1.58362,0.325696,0.008064,0.213344,0.004704,0.005696,0.00576,0.00656,0.006432,0.067712,0.007424
+866,1632.85,0.612427,0.314496,0.005824,0.19696,0.004288,0.005568,0.00576,0.006688,0.006368,0.075776,0.007264
+867,1279,0.78186,0.311296,0.006144,0.195904,0.0048,0.004096,0.005952,0.006336,0.006144,0.075744,0.006176
+868,1460.77,0.68457,0.310848,0.006144,0.196416,0.0056,0.0048,0.005856,0.006464,0.006144,0.072704,0.00672
+869,1304.04,0.766846,0.495616,0.00608,0.384928,0.004256,0.005472,0.004768,0.007648,0.006656,0.069664,0.006144
+870,1142.86,0.875,0.311008,0.006144,0.19456,0.005216,0.005024,0.006144,0.006144,0.007456,0.0736,0.00672
+871,1245.36,0.802979,0.311296,0.006144,0.192256,0.004352,0.005312,0.004928,0.007616,0.006624,0.077888,0.006176
+872,1620.89,0.616943,0.311296,0.00592,0.19616,0.004768,0.004096,0.007296,0.006688,0.006528,0.073696,0.006144
+873,1184.5,0.844238,0.575296,0.005824,0.4184,0.04288,0.005504,0.00496,0.007456,0.00656,0.076096,0.007616
+874,880.482,1.13574,0.310688,0.005824,0.19488,0.005248,0.0048,0.006336,0.006144,0.007488,0.072384,0.007584
+875,1431.67,0.698486,0.31328,0.006144,0.192512,0.005728,0.004512,0.006144,0.007328,0.006784,0.07728,0.006848
+876,1334.64,0.749268,0.3072,0.006144,0.192448,0.00416,0.005984,0.005824,0.006624,0.006144,0.073504,0.006368
+877,1450.68,0.689331,0.310816,0.006144,0.19584,0.004864,0.004096,0.006144,0.006144,0.00736,0.073536,0.006688
+878,1173.81,0.851929,0.309248,0.005824,0.193856,0.004864,0.004352,0.006144,0.006144,0.007616,0.074176,0.006272
+879,1533.51,0.6521,0.309888,0.005824,0.191424,0.004288,0.0056,0.00576,0.006688,0.006336,0.077824,0.006144
+880,1279.2,0.781738,0.313504,0.005792,0.193344,0.00576,0.00448,0.00608,0.006208,0.007232,0.07792,0.006688
+881,1454.55,0.6875,0.312768,0.005856,0.196896,0.005536,0.004704,0.00592,0.006368,0.006144,0.073728,0.007616
+882,873.72,1.14453,0.311584,0.008,0.197088,0.005408,0.004576,0.004352,0.00768,0.006656,0.0712,0.006624
+883,1323.64,0.755493,0.311104,0.005824,0.196928,0.005632,0.004896,0.005792,0.006496,0.006144,0.072704,0.006688
+884,585.143,1.70898,0.355392,0.006112,0.22736,0.004096,0.005568,0.005792,0.006752,0.012608,0.07168,0.015424
+885,548.18,1.82422,0.362496,0.005984,0.233632,0.005216,0.020544,0.006176,0.006784,0.006336,0.07168,0.006144
+886,1441.75,0.693604,0.310144,0.004992,0.198144,0.004608,0.004096,0.006144,0.007552,0.006784,0.071328,0.006496
+887,1191.91,0.838989,0.311648,0.005824,0.197312,0.005376,0.0048,0.00576,0.006592,0.007296,0.071904,0.006784
+888,407.36,2.45483,0.340416,0.007072,0.224384,0.004864,0.004224,0.006144,0.007488,0.006688,0.07184,0.007712
+889,1526.65,0.655029,0.321088,0.005824,0.20128,0.00592,0.00432,0.006144,0.006144,0.007552,0.076416,0.007488
+890,1226.71,0.815186,0.317408,0.005856,0.198912,0.004288,0.005632,0.00576,0.006688,0.006304,0.077504,0.006464
+891,1328.79,0.752563,0.315424,0.005824,0.195552,0.005248,0.004832,0.005792,0.006656,0.006144,0.077984,0.007392
+892,1384.25,0.722412,0.320608,0.006144,0.2,0.0048,0.004096,0.006144,0.007424,0.006688,0.078048,0.007264
+893,1316.2,0.759766,0.317216,0.005824,0.198464,0.00496,0.004192,0.006144,0.006144,0.007456,0.076512,0.00752
+894,1541.59,0.648682,0.319136,0.005888,0.200544,0.004512,0.005696,0.005888,0.006688,0.006304,0.076896,0.00672
+895,708.405,1.41162,0.323712,0.008064,0.203968,0.004864,0.004288,0.006144,0.006144,0.007264,0.076704,0.006272
+896,1326.85,0.753662,0.315552,0.005824,0.195232,0.00544,0.004768,0.006144,0.00736,0.006752,0.07728,0.006752
+897,1415.83,0.706299,0.311648,0.005792,0.194432,0.004864,0.00416,0.006144,0.006144,0.00736,0.07632,0.006432
+898,1508.93,0.66272,0.318752,0.006144,0.197792,0.004864,0.005376,0.004992,0.007968,0.006336,0.077824,0.007456
+899,786.633,1.27124,0.31744,0.006144,0.198272,0.00448,0.005152,0.005088,0.007488,0.006528,0.077952,0.006336
+900,1639.06,0.610107,0.325728,0.00592,0.2056,0.00416,0.005824,0.005792,0.006784,0.006176,0.077824,0.007648
+901,1218.32,0.820801,0.340704,0.004832,0.221184,0.005792,0.004448,0.005984,0.006304,0.006144,0.079872,0.006144
+902,1520.42,0.657715,0.345216,0.006144,0.227328,0.005216,0.004832,0.005632,0.006688,0.006304,0.075776,0.007296
+903,1321.72,0.756592,0.554624,0.005824,0.434784,0.006464,0.006144,0.005792,0.006496,0.006176,0.075616,0.007328
+904,800,1.25,0.320128,0.005824,0.198784,0.004864,0.00416,0.006144,0.007584,0.006752,0.07952,0.006496
+905,1411.44,0.708496,0.318272,0.004928,0.196608,0.005248,0.0048,0.005824,0.006656,0.006144,0.081504,0.00656
+906,1482.45,0.674561,0.320256,0.004864,0.198656,0.004096,0.006144,0.00576,0.006528,0.007264,0.0808,0.006144
+907,1381.22,0.723999,0.321184,0.006144,0.197984,0.004768,0.004096,0.006144,0.007168,0.006592,0.081504,0.006784
+908,1151.21,0.868652,0.32256,0.006144,0.198656,0.004096,0.005696,0.005664,0.006688,0.006528,0.08192,0.007168
+909,1305.5,0.765991,0.318816,0.006112,0.194272,0.004416,0.005248,0.006432,0.006752,0.006144,0.08192,0.00752
+910,1465.21,0.682495,0.323264,0.006144,0.198656,0.005248,0.004832,0.005792,0.006656,0.007328,0.081856,0.006752
+911,1367.84,0.731079,0.322208,0.005824,0.199648,0.005152,0.0048,0.00576,0.006688,0.006272,0.081376,0.006688
+912,833.198,1.2002,0.327136,0.008192,0.202752,0.005728,0.004512,0.006144,0.00752,0.006752,0.077888,0.007648
+913,1373.57,0.728027,0.315264,0.005824,0.194752,0.004416,0.00528,0.006112,0.00672,0.006464,0.079072,0.006624
+914,1489.18,0.671509,0.319296,0.004864,0.198048,0.004704,0.004096,0.006144,0.006144,0.007744,0.08032,0.007232
+915,1359.44,0.735596,0.3176,0.005824,0.198432,0.004864,0.004256,0.006144,0.007392,0.006624,0.077376,0.006688
+916,1195.04,0.836792,0.315296,0.005856,0.197152,0.005792,0.004448,0.005216,0.00672,0.006496,0.076896,0.00672
+917,1170.29,0.854492,0.31376,0.005824,0.195552,0.005216,0.004832,0.005792,0.006688,0.006144,0.07712,0.006592
+918,1524.94,0.655762,0.316608,0.006144,0.196608,0.004096,0.006144,0.005824,0.006464,0.006176,0.077792,0.00736
+919,1368.07,0.730957,0.315392,0.006144,0.19568,0.004864,0.004256,0.006112,0.006176,0.006144,0.079328,0.006688
+920,1352.93,0.739136,0.567296,0.00608,0.426048,0.026496,0.004224,0.006144,0.006144,0.007584,0.078304,0.006272
+921,800.313,1.24951,0.313344,0.006144,0.194432,0.004224,0.00544,0.0048,0.007456,0.006624,0.077344,0.00688
+922,1497.35,0.667847,0.315872,0.005856,0.19728,0.004192,0.005472,0.004768,0.00752,0.006752,0.077888,0.006144
+923,1315.35,0.760254,0.315104,0.005792,0.194592,0.0048,0.004096,0.007744,0.006592,0.006144,0.077824,0.00752
+924,1345.16,0.743408,0.318848,0.006144,0.198496,0.004256,0.005408,0.0064,0.006624,0.006144,0.077824,0.007552
+925,1330.73,0.751465,0.495648,0.006144,0.376832,0.005248,0.004832,0.00576,0.006688,0.006144,0.077824,0.006176
+926,1169.62,0.85498,0.315392,0.006016,0.195968,0.004864,0.004096,0.006144,0.006144,0.007552,0.077888,0.00672
+927,1193.47,0.837891,0.317696,0.005792,0.19712,0.0056,0.00464,0.006144,0.006144,0.007456,0.07856,0.00624
+928,1602.5,0.624023,0.31744,0.006144,0.196608,0.005248,0.0048,0.006336,0.007392,0.00672,0.078048,0.006144
+929,768.769,1.30078,0.323584,0.008192,0.196608,0.00512,0.004832,0.00576,0.006688,0.006272,0.083808,0.006304
+930,1501.74,0.665894,0.31744,0.006144,0.19776,0.004864,0.005376,0.004992,0.007424,0.00672,0.078016,0.006144
+931,1418.28,0.705078,0.313184,0.0048,0.19456,0.005696,0.004544,0.006048,0.00624,0.006144,0.077824,0.007328
+932,680.399,1.46973,0.329824,0.005824,0.211328,0.004128,0.0056,0.005728,0.006688,0.006496,0.077888,0.006144
+933,1349.59,0.740967,0.31744,0.006144,0.19456,0.005344,0.004832,0.005792,0.00656,0.006144,0.08192,0.006144
+934,1407.56,0.710449,0.317472,0.005856,0.196928,0.004096,0.005696,0.005824,0.006656,0.0064,0.079744,0.006272
+935,1262.64,0.791992,0.328992,0.006112,0.193632,0.004832,0.00432,0.019744,0.00688,0.006144,0.079904,0.007424
+936,1368.76,0.730591,0.3176,0.005856,0.195488,0.00576,0.00448,0.006112,0.006176,0.0072,0.078816,0.007712
+937,1322.57,0.756104,0.586752,0.006144,0.452,0.0088,0.006144,0.006112,0.006176,0.006144,0.088064,0.007168
+938,834.216,1.19873,0.326592,0.00512,0.196608,0.00576,0.00448,0.006144,0.007584,0.00672,0.08736,0.006816
+939,1412.66,0.707886,0.32704,0.005792,0.195232,0.005568,0.004672,0.006144,0.00752,0.006656,0.088224,0.007232
+940,1259.15,0.794189,0.32416,0.00592,0.194496,0.004864,0.004192,0.006144,0.006144,0.00752,0.088736,0.006144
+941,1246.31,0.802368,0.354336,0.005952,0.223424,0.006016,0.004224,0.006144,0.006144,0.006144,0.089792,0.006496
+942,1081.74,0.924438,0.348096,0.006112,0.218656,0.004608,0.004096,0.006144,0.007328,0.006784,0.087648,0.00672
+943,1186.21,0.843018,0.350208,0.005984,0.220512,0.004832,0.004192,0.006144,0.006208,0.00736,0.088608,0.006368
+944,1313.03,0.761597,0.353152,0.004992,0.229408,0.005632,0.004576,0.006016,0.006272,0.006144,0.083424,0.006688
+945,1086.47,0.92041,0.575904,0.005792,0.426304,0.029088,0.005504,0.004768,0.007648,0.006688,0.083456,0.006656
+946,909.818,1.09912,0.3584,0.005856,0.235808,0.005344,0.0048,0.00576,0.006624,0.006144,0.08176,0.006304
+947,1327.5,0.753296,0.350496,0.005792,0.225952,0.005664,0.004544,0.006048,0.00624,0.00768,0.081952,0.006624
+948,1288.05,0.776367,0.323744,0.00592,0.20096,0.004224,0.00544,0.006144,0.006752,0.00624,0.08192,0.006144
+949,1475.77,0.677612,0.324064,0.005824,0.200608,0.004928,0.004128,0.007424,0.006912,0.006176,0.081888,0.006176
+950,747.855,1.33716,0.337632,0.00592,0.215104,0.004864,0.004192,0.006144,0.006144,0.007456,0.08064,0.007168
+951,1336.6,0.748169,0.347072,0.005056,0.221184,0.006144,0.004096,0.006144,0.007328,0.007008,0.083584,0.006528
+952,1181.25,0.846558,0.344128,0.005824,0.223232,0.00448,0.005216,0.005024,0.007456,0.006688,0.080064,0.006144
+953,1054.99,0.947876,0.58384,0.006304,0.421632,0.038336,0.004928,0.006144,0.006144,0.007232,0.086976,0.006144
+954,876.712,1.14062,0.362496,0.005888,0.241504,0.004544,0.00512,0.00512,0.007328,0.006656,0.079616,0.00672
+955,1220.14,0.81958,0.350208,0.006016,0.229504,0.005504,0.004736,0.005856,0.006432,0.006144,0.07952,0.006496
+956,1430.42,0.699097,0.345888,0.006112,0.223264,0.005216,0.0048,0.00576,0.006656,0.00624,0.081152,0.006688
+957,1205.77,0.829346,0.498144,0.00576,0.375808,0.005568,0.004672,0.005952,0.006336,0.006144,0.081312,0.006592
+958,1050.12,0.952271,0.335872,0.006144,0.212992,0.004096,0.005792,0.00576,0.006688,0.006336,0.081856,0.006208
+959,1137.62,0.879028,0.352032,0.006144,0.22912,0.005536,0.004832,0.005824,0.006592,0.006144,0.081184,0.006656
+960,1385.89,0.721558,0.346656,0.00592,0.225696,0.00448,0.005184,0.005056,0.007168,0.00672,0.079712,0.00672
+961,932.605,1.07227,0.5224,0.008032,0.397632,0.005856,0.005504,0.005024,0.007456,0.006784,0.079488,0.006624
+962,1194.87,0.836914,0.356352,0.006144,0.22528,0.005824,0.004416,0.006144,0.006144,0.00784,0.088256,0.006304
+963,1119.74,0.893066,0.356704,0.005792,0.22704,0.004832,0.004352,0.006144,0.006144,0.007552,0.08832,0.006528
+964,1196.09,0.83606,0.370688,0.006144,0.241664,0.004192,0.005632,0.00576,0.006688,0.0064,0.087776,0.006432
+965,1489.45,0.671387,0.50592,0.005696,0.377344,0.004096,0.005664,0.005792,0.006656,0.006464,0.088064,0.006144
+966,1023.23,0.977295,0.354304,0.006144,0.224384,0.004992,0.004096,0.006144,0.006304,0.007456,0.08864,0.006144
+967,941.934,1.06165,0.3584,0.00608,0.226944,0.004544,0.00512,0.00512,0.00736,0.006624,0.090464,0.006144
+968,902.501,1.10803,0.372736,0.006016,0.236832,0.004928,0.004128,0.006144,0.006144,0.007712,0.094688,0.006144
+969,883.997,1.13123,0.57344,0.018016,0.428224,0.005504,0.00496,0.006144,0.006144,0.007296,0.091008,0.006144
+970,1074.08,0.93103,0.354304,0.006144,0.223232,0.005184,0.0048,0.0064,0.006144,0.007232,0.089024,0.006144
+971,1457.91,0.685913,0.346112,0.005824,0.21536,0.005856,0.004384,0.006144,0.006144,0.007456,0.0888,0.006144
+972,1186.73,0.842651,0.3584,0.006144,0.227328,0.006048,0.004192,0.006016,0.006272,0.0072,0.089056,0.006144
+973,1040.91,0.960693,0.3584,0.005792,0.227808,0.005632,0.004608,0.006016,0.006272,0.00768,0.087744,0.006848
+974,1273.04,0.785522,0.366816,0.005856,0.235552,0.004576,0.004096,0.006144,0.007424,0.006624,0.0904,0.006144
+975,1251.83,0.798828,0.364544,0.00592,0.23328,0.004512,0.005216,0.005024,0.008192,0.006144,0.089856,0.0064
+976,1219.77,0.819824,0.371168,0.005056,0.238912,0.004768,0.004096,0.006144,0.007296,0.006752,0.090464,0.00768
+977,710.002,1.40845,0.379424,0.008032,0.244416,0.0056,0.00464,0.005952,0.006336,0.006144,0.09184,0.006464
+978,1206.12,0.829102,0.377312,0.005888,0.240352,0.005312,0.004832,0.00592,0.006464,0.006144,0.096064,0.006336
+979,1372.65,0.728516,0.354656,0.005792,0.217792,0.004192,0.0056,0.005792,0.006624,0.006464,0.095872,0.006528
+980,1249.16,0.800537,0.509952,0.006144,0.376832,0.005408,0.004832,0.005792,0.006496,0.006144,0.091904,0.0064
+981,1026.57,0.974121,0.3616,0.006144,0.225024,0.004352,0.005344,0.004896,0.008128,0.00624,0.094176,0.007296
+982,940.204,1.0636,0.360448,0.005856,0.22352,0.005408,0.004832,0.006144,0.006144,0.008224,0.093952,0.006368
+983,1325.35,0.754517,0.390176,0.006048,0.260128,0.00416,0.005536,0.005792,0.00672,0.006528,0.088064,0.0072
+984,541.799,1.8457,0.3952,0.00816,0.262176,0.005472,0.004768,0.005856,0.006432,0.006144,0.0896,0.006592
+985,1373.11,0.728271,0.356352,0.006144,0.231136,0.005568,0.004832,0.005824,0.006592,0.007232,0.08288,0.006144
+986,1276.61,0.783325,0.347904,0.005952,0.22656,0.004896,0.004256,0.006144,0.006144,0.007616,0.079616,0.00672
+987,1362.61,0.733887,0.49616,0.005056,0.376064,0.004864,0.004096,0.006144,0.0072,0.006624,0.079424,0.006688
+988,993.09,1.00696,0.357632,0.006144,0.234496,0.004928,0.004288,0.006144,0.006176,0.00736,0.080704,0.007392
+989,1428.67,0.699951,0.337664,0.005824,0.216384,0.004896,0.00432,0.006144,0.006176,0.00816,0.077824,0.007936
+990,1317.68,0.758911,0.348192,0.005856,0.227648,0.005664,0.004576,0.006048,0.00624,0.007936,0.07808,0.006144
+991,1263.81,0.79126,0.559104,0.006144,0.436224,0.007424,0.004864,0.006144,0.006144,0.00752,0.078336,0.006304
+992,780.562,1.28113,0.349056,0.005056,0.230528,0.004864,0.00416,0.006144,0.006144,0.007648,0.078368,0.006144
+993,1351.15,0.740112,0.341312,0.006176,0.2232,0.004096,0.00576,0.005824,0.00672,0.006272,0.075776,0.007488
+994,1324.07,0.755249,0.347712,0.006144,0.230752,0.004768,0.004096,0.006144,0.0072,0.006784,0.074112,0.007712
+995,1426.18,0.701172,0.333984,0.005792,0.219008,0.004768,0.004064,0.006144,0.006144,0.008128,0.073696,0.00624
+996,1174.31,0.851562,0.326016,0.005856,0.209152,0.004512,0.00512,0.00512,0.00784,0.006528,0.075744,0.006144
+997,1276.81,0.783203,0.351008,0.004896,0.236832,0.004832,0.004096,0.006144,0.006272,0.00752,0.074112,0.006304
+998,1219.77,0.819824,0.37776,0.005088,0.260032,0.005376,0.0048,0.005824,0.006528,0.006144,0.077376,0.006592
+999,1222.5,0.817993,0.350912,0.00512,0.231424,0.004128,0.005792,0.005824,0.006656,0.006272,0.078912,0.006784
+1000,1020.43,0.97998,0.528448,0.020288,0.39264,0.004928,0.005408,0.004832,0.007712,0.006624,0.079488,0.006528
+1001,1123.27,0.890259,0.345056,0.005056,0.225248,0.004128,0.005536,0.005824,0.00672,0.006464,0.07952,0.00656
+1002,1353.83,0.738647,0.33792,0.006144,0.210944,0.005504,0.004736,0.00592,0.006368,0.007648,0.08432,0.006336
+1003,636.618,1.5708,0.354784,0.005792,0.236384,0.00512,0.004864,0.005824,0.00672,0.006176,0.077216,0.006688
+1004,1092.56,0.915283,0.358176,0.006144,0.23744,0.004224,0.005472,0.005824,0.007136,0.007328,0.077888,0.00672
+1005,1132.9,0.88269,0.341088,0.005792,0.221088,0.004576,0.004096,0.006144,0.007328,0.006656,0.078176,0.007232
+1006,1428.92,0.699829,0.336064,0.006144,0.217088,0.004192,0.0056,0.005824,0.00672,0.006336,0.077824,0.006336
+1007,663.589,1.50696,0.357984,0.008,0.23712,0.004736,0.004096,0.006144,0.006144,0.00752,0.076448,0.007776
+1008,1276.61,0.783325,0.368768,0.005856,0.250112,0.004576,0.005152,0.005088,0.007616,0.00672,0.0768,0.006848
+1009,1333.98,0.749634,0.3336,0.006144,0.212992,0.005216,0.004832,0.005824,0.006688,0.006112,0.079104,0.006688
+1010,1198.19,0.834595,0.345568,0.006144,0.225088,0.004288,0.005152,0.005088,0.007328,0.006784,0.078048,0.007648
+1011,1182.79,0.845459,0.333824,0.005824,0.213312,0.004288,0.005632,0.006368,0.00624,0.006144,0.079584,0.006432
+1012,1258.95,0.794312,0.332192,0.00592,0.209056,0.004544,0.00544,0.004864,0.007648,0.006624,0.081632,0.006464
+1013,1141.58,0.875977,0.350976,0.004832,0.229408,0.004064,0.005568,0.005824,0.006656,0.006528,0.08192,0.006176
+1014,1397.95,0.715332,0.351104,0.005056,0.225216,0.005632,0.004608,0.006016,0.006272,0.006368,0.085184,0.006752
+1015,659.422,1.51648,0.388256,0.008,0.261472,0.004832,0.004224,0.006144,0.006176,0.007424,0.082688,0.007296
+1016,1045.56,0.956421,0.354944,0.005088,0.233184,0.004256,0.00544,0.0048,0.007776,0.00656,0.080992,0.006848
+1017,1142.54,0.875244,0.358176,0.006144,0.234784,0.004832,0.004096,0.006144,0.006144,0.007744,0.081664,0.006624
+1018,994.899,1.00513,0.499456,0.005856,0.377408,0.005344,0.0048,0.005824,0.006592,0.006112,0.079872,0.007648
+1019,939.126,1.06482,0.413408,0.006144,0.290816,0.00576,0.00448,0.006144,0.006144,0.007776,0.079456,0.006688
+1020,757.817,1.31958,0.446464,0.00608,0.325344,0.00448,0.005184,0.005024,0.007424,0.00672,0.079904,0.006304
+1021,479.485,2.08557,0.96736,0.005792,0.840576,0.007968,0.005504,0.00496,0.00752,0.006656,0.08208,0.006304
+1022,1015.37,0.984863,0.373504,0.004864,0.243744,0.00544,0.004768,0.005952,0.006336,0.006272,0.089536,0.006592
+1023,1218.68,0.820557,0.366592,0.006144,0.233472,0.005696,0.004544,0.00608,0.006208,0.008192,0.089696,0.00656
+1024,819.282,1.22058,0.404928,0.006144,0.272384,0.005664,0.004576,0.006016,0.006272,0.0072,0.089056,0.007616
+1025,914.592,1.09338,0.458752,0.006144,0.320544,0.004928,0.004256,0.006144,0.01392,0.00656,0.089376,0.00688
+1026,1335.72,0.748657,0.38448,0.006112,0.251936,0.005952,0.004288,0.006144,0.006144,0.007616,0.08864,0.007648
+1027,1074.22,0.930908,0.420128,0.005824,0.27856,0.004864,0.00432,0.006144,0.006144,0.007456,0.09904,0.007776
+1028,540.655,1.84961,0.395744,0.008032,0.262784,0.005568,0.004672,0.00592,0.006368,0.006176,0.089728,0.006496
+1029,1313.45,0.761353,0.36048,0.005792,0.229344,0.004512,0.005152,0.005088,0.00768,0.006656,0.090112,0.006144
+1030,1119.74,0.893066,0.531232,0.005056,0.396416,0.004896,0.004096,0.006144,0.006144,0.007648,0.093984,0.006848
+1031,1047.44,0.954712,0.348864,0.0048,0.212992,0.005536,0.004704,0.005952,0.006336,0.006176,0.095904,0.006464
+1032,1225.06,0.816284,0.36448,0.006176,0.227328,0.005888,0.004352,0.006112,0.006144,0.007776,0.093888,0.006816
+1033,1292.32,0.773804,0.362496,0.006144,0.228992,0.004512,0.005152,0.005056,0.007552,0.006688,0.092128,0.006272
+1034,540.191,1.8512,0.394112,0.0072,0.259456,0.00464,0.004096,0.006144,0.007264,0.006688,0.091808,0.006816
+1035,1270.27,0.787231,0.353824,0.005984,0.227488,0.005216,0.004864,0.005824,0.006432,0.006336,0.085024,0.006656
+1036,1282.81,0.779541,0.345824,0.006016,0.215168,0.004288,0.0056,0.00576,0.006688,0.006336,0.089216,0.006752
+1037,1227.27,0.814819,0.50176,0.006144,0.376672,0.004256,0.005472,0.005856,0.00672,0.006528,0.083872,0.00624
+1038,1245.36,0.802979,0.335808,0.005856,0.2072,0.00432,0.005376,0.004864,0.007616,0.00672,0.087136,0.00672
+1039,1212.55,0.824707,0.331776,0.006144,0.208896,0.004096,0.005728,0.005824,0.006464,0.00656,0.08192,0.006144
+1040,1305.71,0.765869,0.33792,0.006144,0.212992,0.005728,0.004512,0.006144,0.006144,0.007328,0.08272,0.006208
+1041,1370.13,0.729858,0.567296,0.006144,0.423616,0.024928,0.006112,0.005856,0.006432,0.006144,0.08192,0.006144
+1042,762.969,1.31067,0.339008,0.006144,0.216224,0.004864,0.004192,0.006144,0.006144,0.007456,0.08064,0.0072
+1043,1377.96,0.725708,0.329152,0.006144,0.202752,0.00576,0.00448,0.006144,0.006144,0.006144,0.083968,0.007616
+1044,1404.9,0.711792,0.339936,0.006144,0.214976,0.00416,0.005504,0.005824,0.006912,0.006272,0.083232,0.006912
+1045,1071.13,0.933594,0.343008,0.005056,0.221152,0.004128,0.004096,0.005856,0.00592,0.006208,0.083968,0.006624
+1046,1191.91,0.838989,0.33984,0.006144,0.212992,0.005472,0.004768,0.005856,0.006432,0.006144,0.085216,0.006816
+1047,1270.87,0.786865,0.336448,0.005824,0.21152,0.004416,0.005248,0.004992,0.00816,0.006176,0.083712,0.0064
+1048,1374.04,0.727783,0.34848,0.005824,0.227168,0.004864,0.004128,0.006144,0.006144,0.00816,0.079776,0.006272
+1049,1191.22,0.839478,0.630912,0.005792,0.484352,0.0288,0.006016,0.00608,0.006208,0.006144,0.080128,0.007392
+1050,794.491,1.25867,0.352256,0.006144,0.2312,0.00432,0.005344,0.004896,0.007552,0.006784,0.079872,0.006144
+1051,1008.12,0.991943,0.336416,0.005792,0.213984,0.004096,0.0056,0.005824,0.006656,0.006496,0.08128,0.006688
+1052,1100.19,0.908936,0.355424,0.006144,0.233472,0.005408,0.004672,0.005792,0.006656,0.006144,0.079872,0.007264
+1053,1236.9,0.808472,0.495328,0.00512,0.3752,0.004704,0.004096,0.006144,0.007232,0.00672,0.078208,0.007904
+1054,1021.7,0.97876,0.33008,0.005856,0.203392,0.006016,0.004224,0.006144,0.006144,0.00752,0.08464,0.006144
+1055,1401.78,0.713379,0.350208,0.006144,0.217088,0.004096,0.005536,0.005824,0.014816,0.006592,0.083584,0.006528
+1056,1289.47,0.775513,0.342016,0.006176,0.215008,0.005344,0.004832,0.006208,0.006144,0.007616,0.08448,0.006208
+1057,1259.73,0.793823,0.358688,0.005824,0.232416,0.004128,0.005632,0.005792,0.00672,0.0064,0.085152,0.006624
+1058,702.091,1.42432,0.363936,0.008032,0.233824,0.005088,0.0048,0.005792,0.006688,0.006272,0.086016,0.007424
+1059,1110.63,0.900391,0.362336,0.005792,0.229824,0.005536,0.004704,0.005856,0.006432,0.006144,0.09136,0.006688
+1060,1421.73,0.703369,0.340896,0.005088,0.20656,0.004416,0.00528,0.004928,0.008192,0.006144,0.093472,0.006816
+1061,1152.02,0.868042,0.343584,0.005792,0.209376,0.004448,0.00528,0.00496,0.008192,0.006176,0.092128,0.007232
+1062,1163.14,0.859741,0.345152,0.006144,0.210272,0.004768,0.004096,0.006144,0.006144,0.007744,0.092608,0.007232
+1063,1205.77,0.829346,0.375744,0.005056,0.243648,0.00416,0.005536,0.005792,0.00672,0.006528,0.092128,0.006176
+1064,1336.38,0.748291,0.360448,0.00592,0.225504,0.005824,0.004416,0.006144,0.006144,0.007712,0.092352,0.006432
+1065,580.663,1.72217,0.366144,0.008064,0.232736,0.004864,0.004192,0.006144,0.006144,0.007424,0.089888,0.006688
+1066,1164.96,0.858398,0.351008,0.005056,0.227168,0.00576,0.00448,0.00608,0.006208,0.006144,0.083744,0.006368
+1067,1232.81,0.811157,0.373408,0.005824,0.250592,0.004352,0.005344,0.004896,0.007552,0.006688,0.082016,0.006144
+1068,864.591,1.15662,0.505856,0.006144,0.37888,0.0056,0.00464,0.005888,0.0064,0.006144,0.086016,0.006144
+1069,1118.97,0.893677,0.346112,0.006144,0.219136,0.005152,0.004832,0.005792,0.006656,0.00624,0.086016,0.006144
+1070,1275.62,0.783936,0.3584,0.006144,0.231008,0.004512,0.005184,0.005056,0.007424,0.006784,0.085728,0.00656
+1071,1187.42,0.842163,0.36384,0.005856,0.237248,0.004704,0.004096,0.006144,0.0072,0.007168,0.083936,0.007488
+1072,774.73,1.29077,0.356128,0.008128,0.225344,0.00512,0.004832,0.00576,0.006688,0.006272,0.087264,0.00672
+1073,1311.56,0.762451,0.354336,0.006144,0.230464,0.004864,0.004288,0.006144,0.006144,0.007392,0.082528,0.006368
+1074,1111.68,0.899536,0.356352,0.006144,0.231424,0.005728,0.004512,0.006048,0.00624,0.006144,0.083968,0.006144
+1075,1284.21,0.778687,0.32976,0.005792,0.203136,0.005632,0.004608,0.006016,0.008,0.006464,0.083968,0.006144
+1076,1153.97,0.866577,0.342016,0.006144,0.21504,0.004096,0.005664,0.005952,0.006656,0.006304,0.086016,0.006144
+1077,1272.44,0.785889,0.331808,0.005792,0.205184,0.00528,0.004832,0.005792,0.006624,0.007584,0.084576,0.006144
+1078,1195.39,0.836548,0.375456,0.005824,0.242048,0.004704,0.004096,0.006144,0.007232,0.006784,0.090432,0.008192
+1079,1025.54,0.975098,0.454176,0.006016,0.323168,0.00464,0.004096,0.006144,0.007264,0.006592,0.088544,0.007712
+1080,917.871,1.08948,0.53184,0.008,0.399328,0.005504,0.004832,0.00576,0.00672,0.006208,0.088064,0.007424
+1081,816.424,1.22485,0.377888,0.006144,0.249056,0.004832,0.00416,0.006144,0.006144,0.007872,0.086336,0.0072
+1082,1193.82,0.837646,0.381216,0.005792,0.250464,0.00448,0.005184,0.005056,0.007328,0.006816,0.08944,0.006656
+1083,1076.48,0.928955,0.506208,0.005824,0.377504,0.00544,0.0048,0.005856,0.006432,0.006144,0.087872,0.006336
+1084,982.49,1.01782,0.366528,0.006144,0.237568,0.005216,0.0048,0.005792,0.006656,0.006208,0.087648,0.006496
+1085,612.12,1.63367,0.562912,0.005792,0.43472,0.004128,0.005792,0.005792,0.006656,0.006272,0.08704,0.00672
+1086,832.182,1.20166,0.370688,0.006144,0.241056,0.004704,0.004096,0.006144,0.007232,0.006688,0.08848,0.006144
+1087,756.767,1.32141,0.376896,0.007936,0.244384,0.005504,0.004736,0.005856,0.006432,0.006144,0.089184,0.00672
+1088,1289.67,0.775391,0.352256,0.006144,0.22304,0.004288,0.005408,0.004832,0.007616,0.00672,0.087744,0.006464
+1089,1151.21,0.868652,0.50608,0.00608,0.37888,0.00496,0.004224,0.006144,0.006144,0.00768,0.08448,0.007488
+1090,1141.27,0.876221,0.339968,0.006144,0.216928,0.004256,0.00544,0.0048,0.008192,0.006144,0.08192,0.006144
+1091,1118.82,0.893799,0.354624,0.005792,0.230048,0.005856,0.006432,0.006144,0.007232,0.006688,0.080288,0.006144
+1092,1186.73,0.842651,0.35984,0.006144,0.233472,0.005728,0.004512,0.006176,0.0072,0.006816,0.083264,0.006528
+1093,976.866,1.02368,0.540672,0.026048,0.396992,0.004992,0.006016,0.005792,0.006624,0.006144,0.081728,0.006336
+1094,1095.92,0.912476,0.352256,0.006144,0.228384,0.004864,0.00432,0.006144,0.006144,0.007776,0.082336,0.006144
+1095,1181.6,0.846313,0.33792,0.006144,0.216064,0.004864,0.004352,0.006144,0.006144,0.006144,0.08192,0.006144
+1096,1215.97,0.822388,0.343072,0.006144,0.219136,0.005248,0.004992,0.006112,0.006176,0.007552,0.080512,0.0072
+1097,1367.84,0.731079,0.497664,0.006016,0.378112,0.004928,0.00416,0.006144,0.006144,0.007584,0.078432,0.006144
+1098,1076.76,0.928711,0.352416,0.004896,0.231104,0.0056,0.004832,0.005792,0.006624,0.006144,0.080032,0.007392
+1099,1390.12,0.71936,0.338464,0.005792,0.211008,0.004864,0.00416,0.006144,0.008192,0.007744,0.084384,0.006176
+1100,1220.32,0.819458,0.3592,0.005088,0.234848,0.004576,0.004096,0.006144,0.007296,0.006784,0.084224,0.006144
+1101,1032.39,0.968628,0.594176,0.014592,0.421312,0.043296,0.005504,0.005024,0.007616,0.006656,0.084032,0.006144
+1102,877.37,1.13977,0.367008,0.005824,0.2424,0.005792,0.004448,0.006144,0.006144,0.007328,0.082784,0.006144
+1103,1164.3,0.858887,0.38576,0.004832,0.26416,0.004128,0.005536,0.005792,0.006688,0.00656,0.081568,0.006496
+1104,1385.19,0.721924,0.333792,0.005888,0.207296,0.006144,0.004096,0.006144,0.007904,0.006432,0.083232,0.006656
+1105,1326.21,0.754028,0.501408,0.005824,0.37744,0.004224,0.005696,0.00576,0.006816,0.006176,0.08192,0.007552
+1106,1015.37,0.984863,0.35584,0.005984,0.227488,0.0056,0.00464,0.00592,0.006368,0.006336,0.086912,0.006592
+1107,1248.78,0.800781,0.349376,0.006144,0.206848,0.00416,0.005792,0.022528,0.006208,0.006368,0.083968,0.00736
+1108,1390.6,0.719116,0.356352,0.006144,0.230784,0.004736,0.004096,0.006144,0.006144,0.00752,0.084256,0.006528
+1109,1135.73,0.880493,0.585728,0.005984,0.421024,0.04176,0.005504,0.00496,0.007488,0.006784,0.085536,0.006688
+1110,848.121,1.17908,0.34192,0.006144,0.214912,0.004224,0.005376,0.004864,0.007552,0.006592,0.085344,0.006912
+1111,1399.39,0.7146,0.342016,0.00592,0.215296,0.005248,0.004864,0.00576,0.006624,0.007264,0.084896,0.006144
+1112,1186.73,0.842651,0.330944,0.006144,0.206752,0.004192,0.005536,0.00576,0.006784,0.006528,0.081888,0.00736
+1113,1171.12,0.853882,0.505856,0.006048,0.377152,0.004512,0.005216,0.005024,0.007424,0.006656,0.086272,0.007552
+1114,1224.88,0.816406,0.352512,0.005888,0.229888,0.005472,0.004768,0.005824,0.006464,0.006176,0.081248,0.006784
+1115,1155.27,0.865601,0.339328,0.006144,0.21488,0.004256,0.005408,0.006176,0.006688,0.006304,0.08192,0.007552
+1116,1446.58,0.691284,0.34816,0.006112,0.226496,0.004864,0.004192,0.006144,0.006208,0.007552,0.080384,0.006208
+1117,1311.77,0.762329,0.33792,0.006144,0.216768,0.004448,0.005216,0.004992,0.008192,0.006144,0.079872,0.006144
+1118,640.951,1.56018,0.359648,0.008032,0.2352,0.004576,0.004096,0.007392,0.006752,0.006336,0.079872,0.007392
+1119,1105.53,0.904541,0.351296,0.006144,0.230912,0.004608,0.004096,0.006144,0.007296,0.006432,0.078432,0.007232
+1120,1357.19,0.736816,0.339968,0.006144,0.219136,0.005312,0.0048,0.005792,0.006624,0.007552,0.078368,0.00624
+1121,1161.66,0.86084,0.332288,0.00592,0.21376,0.005568,0.00464,0.005984,0.006304,0.006144,0.07776,0.006208
+1122,1347.15,0.74231,0.322592,0.005984,0.204672,0.004384,0.00528,0.00496,0.00736,0.00672,0.076032,0.0072
+1123,1223.05,0.817627,0.34608,0.006144,0.229088,0.005568,0.004832,0.00576,0.006656,0.006144,0.075136,0.006752
+1124,1213.09,0.824341,0.328448,0.005888,0.21136,0.004608,0.004096,0.006144,0.008192,0.006144,0.075776,0.00624
+1125,690.609,1.448,0.350688,0.007936,0.228064,0.005696,0.004544,0.006016,0.006272,0.006144,0.079552,0.006464
+1126,1462.86,0.683594,0.326624,0.005088,0.205824,0.004928,0.004288,0.006144,0.007552,0.006784,0.079488,0.006528
+1127,1225.43,0.81604,0.34816,0.006144,0.229152,0.00432,0.005408,0.004832,0.007712,0.00656,0.077888,0.006144
+1128,1372.65,0.728516,0.335424,0.006144,0.21504,0.005536,0.004704,0.005856,0.006432,0.006208,0.07888,0.006624
+1129,896.771,1.11511,0.331776,0.005888,0.213248,0.005632,0.004608,0.005984,0.006304,0.006144,0.077792,0.006176
+1130,1218.32,0.820801,0.350208,0.00608,0.231488,0.004192,0.0056,0.00576,0.006816,0.006336,0.077792,0.006144
+1131,1501.47,0.666016,0.329728,0.006144,0.210272,0.004768,0.004096,0.006176,0.006112,0.00752,0.07824,0.0064
+1132,1141.42,0.876099,0.359488,0.006144,0.237568,0.00544,0.0048,0.00576,0.006528,0.006144,0.079872,0.007232
+1133,614.508,1.62732,0.352256,0.008192,0.227328,0.004288,0.005568,0.005984,0.006688,0.007616,0.07984,0.006752
+1134,1442.76,0.693115,0.34656,0.005088,0.214944,0.005568,0.004672,0.005952,0.006336,0.018432,0.078976,0.006592
+1135,1230.95,0.812378,0.332512,0.004832,0.212992,0.004096,0.0056,0.005824,0.00672,0.006432,0.079552,0.006464
+1136,724.315,1.38062,0.537696,0.00512,0.419648,0.004288,0.005472,0.004864,0.007712,0.006528,0.077824,0.00624
+1137,1243.1,0.804443,0.344064,0.006144,0.223232,0.004096,0.005696,0.005792,0.00672,0.006368,0.079872,0.006144
+1138,1160.01,0.862061,0.344064,0.006144,0.221184,0.005824,0.004416,0.006144,0.007328,0.007008,0.079488,0.006528
+1139,1040.39,0.961182,0.352864,0.005792,0.231392,0.004928,0.004288,0.006144,0.006144,0.007232,0.080288,0.006656
+1140,742.904,1.34607,0.401568,0.0072,0.274272,0.005824,0.004416,0.006144,0.006144,0.007328,0.082784,0.007456
+1141,1190.52,0.839966,0.389248,0.005824,0.26368,0.004832,0.00432,0.006144,0.006144,0.006144,0.085568,0.006592
+1142,1145.09,0.873291,0.37072,0.006144,0.242944,0.004864,0.004096,0.006144,0.006144,0.007552,0.086656,0.006176
+1143,977.449,1.02307,0.510016,0.005856,0.37712,0.00544,0.0048,0.005856,0.006432,0.006144,0.09216,0.006208
+1144,1067.08,0.937134,0.364544,0.005856,0.231712,0.005184,0.004832,0.005632,0.006816,0.00624,0.09168,0.006592
+1145,1105.23,0.904785,0.374848,0.006144,0.243712,0.004192,0.005632,0.005792,0.006816,0.00624,0.090112,0.006208
+1146,1058.53,0.944702,0.370688,0.006144,0.2392,0.004512,0.005184,0.005056,0.00752,0.00672,0.090208,0.006144
+1147,1188.11,0.841675,0.381312,0.006336,0.250048,0.005184,0.0048,0.005856,0.006688,0.007232,0.088672,0.006496
+1148,676.913,1.47729,0.375392,0.007936,0.240544,0.005632,0.004608,0.006048,0.00624,0.006336,0.091328,0.00672
+1149,1306.12,0.765625,0.35232,0.005792,0.219488,0.004416,0.005248,0.004992,0.007584,0.006784,0.0912,0.006816
+1150,1351.59,0.739868,0.509504,0.005632,0.376896,0.004896,0.004096,0.006144,0.006144,0.007712,0.090592,0.007392
+1151,1006.02,0.994019,0.345504,0.005824,0.215264,0.004288,0.005408,0.004832,0.00768,0.006336,0.088384,0.007488
+1152,822.242,1.21619,0.35904,0.005856,0.232352,0.005792,0.004448,0.006144,0.006176,0.00736,0.084768,0.006144
+1153,1119.28,0.893433,0.352512,0.005824,0.227872,0.004128,0.005568,0.005824,0.006592,0.006464,0.083488,0.006752
+1154,803.137,1.24512,0.370112,0.008192,0.241664,0.005184,0.0048,0.005824,0.00672,0.006144,0.08416,0.007424
+1155,1319.59,0.757812,0.331104,0.006144,0.208064,0.004928,0.004096,0.006144,0.00768,0.006624,0.079904,0.00752
+1156,1297.64,0.77063,0.37104,0.005856,0.241504,0.004736,0.004096,0.006144,0.006144,0.007776,0.08848,0.006304
+1157,1029.53,0.971313,0.371456,0.004864,0.241696,0.005696,0.004512,0.006144,0.0072,0.005088,0.089824,0.006432
+1158,1142.54,0.875244,0.36336,0.015104,0.225312,0.005664,0.004544,0.006112,0.006176,0.00736,0.086848,0.00624
+1159,1361.02,0.734741,0.33792,0.006144,0.212992,0.00512,0.004832,0.005824,0.006752,0.007296,0.082752,0.006208
+1160,1065,0.938965,0.356704,0.005056,0.231008,0.0056,0.004832,0.005824,0.00656,0.006144,0.083968,0.007712
+1161,1110.63,0.900391,0.585248,0.005824,0.418272,0.04096,0.00576,0.005824,0.006656,0.006336,0.088064,0.007552
+1162,863.862,1.15759,0.353344,0.006144,0.227328,0.00528,0.0048,0.005824,0.006624,0.006144,0.083968,0.007232
+1163,1260.31,0.793457,0.37952,0.005792,0.252928,0.005856,0.004384,0.006144,0.006144,0.007232,0.084256,0.006784
+1164,1075.35,0.929932,0.332672,0.005056,0.208832,0.005728,0.004512,0.006112,0.007744,0.006624,0.08192,0.006144
+1165,1380.75,0.724243,0.507264,0.006144,0.376832,0.005408,0.0048,0.005824,0.006496,0.006144,0.088064,0.007552
+1166,1122.81,0.890625,0.35232,0.006144,0.227328,0.004096,0.005664,0.005888,0.006688,0.006336,0.083968,0.006208
+1167,1223.23,0.817505,0.355296,0.005088,0.228704,0.004768,0.004096,0.006144,0.0072,0.006624,0.08448,0.008192
+1168,1171.46,0.853638,0.394144,0.005088,0.268224,0.00576,0.00448,0.006144,0.006144,0.007296,0.084672,0.006336
+1169,716.209,1.39624,0.587424,0.006144,0.421728,0.040768,0.005504,0.005088,0.007488,0.006656,0.086208,0.00784
+1170,1017.13,0.983154,0.373952,0.005824,0.247648,0.004672,0.004096,0.006144,0.0072,0.006656,0.084448,0.007264
+1171,1213.63,0.823975,0.363712,0.006144,0.233248,0.00432,0.005376,0.004864,0.007616,0.006688,0.088096,0.00736
+1172,1069.87,0.934692,0.346112,0.005952,0.21728,0.005568,0.004672,0.005952,0.006336,0.006144,0.087904,0.006304
+1173,901.408,1.10938,0.385184,0.005792,0.260416,0.004768,0.005632,0.005824,0.006688,0.006432,0.08192,0.007712
+1174,1369.21,0.730347,0.351968,0.006144,0.22672,0.004704,0.004096,0.006144,0.006144,0.00736,0.08384,0.006816
+1175,947.6,1.0553,0.395296,0.006048,0.269728,0.004832,0.004064,0.006144,0.006144,0.007584,0.084512,0.00624
+1176,1363.52,0.733398,0.346368,0.005088,0.221024,0.004128,0.005536,0.005824,0.006688,0.00656,0.083936,0.007584
+1177,687.018,1.45557,0.360896,0.007904,0.23216,0.004192,0.006048,0.005888,0.0064,0.006144,0.085408,0.006752
+1178,1259.53,0.793945,0.337888,0.006144,0.210944,0.004096,0.0056,0.005856,0.006656,0.006464,0.085568,0.00656
+1179,1417.06,0.705688,0.330464,0.005824,0.20576,0.005152,0.0048,0.005856,0.006656,0.006208,0.083968,0.00624
+1180,1048.78,0.953491,0.334464,0.005856,0.211872,0.004096,0.005664,0.005824,0.006656,0.006432,0.081568,0.006496
+1181,1404.9,0.711792,0.335872,0.006144,0.212992,0.004096,0.005568,0.005824,0.006688,0.006496,0.08192,0.006144
+1182,995.141,1.00488,0.339968,0.006176,0.215008,0.0056,0.00464,0.006016,0.006272,0.006144,0.08368,0.006432
+1183,1165.13,0.858276,0.35776,0.006048,0.235456,0.004256,0.005408,0.005888,0.006784,0.006496,0.079872,0.007552
+1184,632.05,1.58215,0.384448,0.007936,0.258432,0.005824,0.004416,0.006144,0.006144,0.007424,0.08064,0.007488
+1185,866.878,1.15356,0.360448,0.006144,0.236864,0.0048,0.004096,0.006144,0.007232,0.007104,0.081792,0.006272
+1186,1078.6,0.927124,0.38912,0.005984,0.265792,0.004864,0.004128,0.006144,0.006144,0.007712,0.0816,0.006752
+1187,839.688,1.19092,0.366624,0.006144,0.243712,0.004096,0.006144,0.005824,0.006464,0.006144,0.08192,0.006176
+1188,1025.54,0.975098,0.398592,0.005984,0.272096,0.004544,0.00512,0.00512,0.007392,0.006688,0.084224,0.007424
+1189,1089.51,0.917847,0.366592,0.006144,0.24144,0.004352,0.005344,0.004864,0.007744,0.006592,0.08368,0.006432
+1190,1068.2,0.936157,0.573504,0.005888,0.424256,0.026656,0.004096,0.006144,0.00624,0.007584,0.085696,0.006944
+1191,574.676,1.74011,0.338784,0.00496,0.215072,0.005888,0.00432,0.006144,0.006144,0.007648,0.082432,0.006176
+1192,1472.32,0.679199,0.364544,0.006144,0.241408,0.004352,0.005344,0.004896,0.007648,0.00672,0.081888,0.006144
+1193,1230.95,0.812378,0.520288,0.005824,0.395552,0.004224,0.005472,0.005856,0.006688,0.00656,0.083968,0.006144
+1194,1096.21,0.912231,0.340576,0.006048,0.21312,0.0048,0.004096,0.006144,0.007232,0.006752,0.085568,0.006816
+1195,990.089,1.01001,0.343808,0.006144,0.212992,0.00512,0.004832,0.005824,0.006752,0.00736,0.086848,0.007936
+1196,1151.53,0.868408,0.359776,0.006144,0.231424,0.005152,0.0048,0.00576,0.006688,0.006272,0.086016,0.00752
+1197,1092.7,0.915161,0.579584,0.006112,0.42192,0.032768,0.00592,0.005792,0.00672,0.006144,0.088064,0.006144
+1198,944.867,1.05835,0.350016,0.006144,0.220992,0.004288,0.005408,0.004832,0.007648,0.006688,0.0872,0.006816
+1199,1337.03,0.747925,0.33808,0.005824,0.2056,0.005376,0.004832,0.005792,0.006528,0.006144,0.091296,0.006688
+1200,1171.29,0.85376,0.375904,0.006144,0.241664,0.00576,0.00448,0.006112,0.006176,0.008192,0.090112,0.007264
+1201,637.163,1.56946,0.523776,0.006144,0.376832,0.00576,0.00448,0.006144,0.006144,0.007392,0.090912,0.019968
+1202,1077.33,0.928223,0.366624,0.006144,0.237568,0.004096,0.005696,0.005792,0.006624,0.006464,0.088064,0.006176
+1203,1582.08,0.63208,0.334592,0.004864,0.206464,0.00448,0.005216,0.005024,0.007264,0.006656,0.08848,0.006144
+1204,1148.79,0.870483,0.333536,0.005856,0.205792,0.005568,0.004672,0.00592,0.006368,0.006304,0.085856,0.0072
+1205,765.894,1.30566,0.350944,0.007904,0.222208,0.004096,0.005792,0.005792,0.006656,0.006336,0.085536,0.006624
+1206,1221.77,0.818481,0.33392,0.005888,0.20512,0.005376,0.004864,0.00576,0.006528,0.006144,0.088064,0.006176
+1207,1341.41,0.745483,0.34784,0.005888,0.218848,0.00464,0.004096,0.006144,0.007392,0.00672,0.087424,0.006688
+1208,1319.8,0.75769,0.506752,0.006016,0.375808,0.005824,0.004416,0.006144,0.006144,0.007392,0.088864,0.006144
+1209,1055.94,0.947021,0.424736,0.004896,0.296128,0.004928,0.004096,0.006144,0.006144,0.008224,0.088,0.006176
+1210,992.849,1.0072,0.358848,0.004832,0.229376,0.005344,0.0048,0.005792,0.006592,0.006144,0.089504,0.006464
+1211,1374.04,0.727783,0.356352,0.005856,0.225568,0.005568,0.004672,0.006144,0.006144,0.0072,0.088416,0.006784
+1212,753.911,1.32642,0.365024,0.008032,0.231392,0.004864,0.004096,0.006144,0.006144,0.007488,0.089984,0.00688
+1213,1624.75,0.615479,0.333312,0.006112,0.200512,0.00432,0.005344,0.004896,0.008192,0.006144,0.090112,0.00768
+1214,1334.2,0.749512,0.332096,0.00592,0.198272,0.004864,0.00432,0.006144,0.007744,0.006592,0.091328,0.006912
+1215,1433.42,0.697632,0.332096,0.005792,0.199328,0.005856,0.004384,0.00608,0.006208,0.006144,0.09152,0.006784
+1216,1339.88,0.746338,0.512,0.006144,0.376832,0.005312,0.004832,0.00576,0.006624,0.006144,0.093632,0.00672
+1217,1099.3,0.909668,0.32992,0.005824,0.195072,0.004096,0.0056,0.005792,0.006976,0.006208,0.093632,0.00672
+1218,1292.11,0.773926,0.325632,0.005888,0.194304,0.004608,0.004096,0.006144,0.006144,0.007296,0.090528,0.006624
+1219,1418.77,0.704834,0.334944,0.006016,0.20288,0.0056,0.00464,0.006016,0.006272,0.007264,0.088992,0.007264
+1220,1063.07,0.940674,0.570752,0.006144,0.427744,0.014624,0.004096,0.006144,0.007392,0.006816,0.09024,0.007552
+1221,974.194,1.02649,0.332128,0.0048,0.20256,0.004288,0.005408,0.004832,0.00752,0.006624,0.089312,0.006784
+1222,1307.37,0.764893,0.326592,0.005056,0.196128,0.004544,0.00512,0.00656,0.006688,0.006208,0.090112,0.006176
+1223,1453.51,0.687988,0.330336,0.005824,0.197536,0.005824,0.004416,0.006144,0.00736,0.00672,0.090208,0.006304
+1224,1335.72,0.748657,0.330112,0.005824,0.196576,0.004832,0.005344,0.004896,0.007776,0.00656,0.091616,0.006688
+1225,1074.36,0.930786,0.353472,0.006144,0.220928,0.004352,0.005312,0.004928,0.007552,0.006656,0.09024,0.00736
+1226,1316.83,0.759399,0.322976,0.006112,0.196224,0.004512,0.005152,0.005088,0.00736,0.00672,0.084224,0.007584
+1227,1385.89,0.721558,0.32768,0.006144,0.202016,0.004864,0.004064,0.007296,0.006656,0.006528,0.084,0.006112
+1228,1295.79,0.771729,0.632832,0.006144,0.503808,0.007648,0.00464,0.005824,0.006464,0.006144,0.085856,0.006304
+1229,698.38,1.43188,0.362944,0.005792,0.238368,0.00576,0.00448,0.006144,0.006144,0.006144,0.083712,0.0064
+1230,1317.25,0.759155,0.360384,0.006144,0.23552,0.004096,0.005632,0.005824,0.006976,0.007392,0.081984,0.006816
+1231,1454.03,0.687744,0.325632,0.006144,0.20256,0.004288,0.005408,0.004832,0.007616,0.006624,0.081568,0.006592
+1232,1257.6,0.795166,0.329728,0.006144,0.197792,0.004864,0.004192,0.006144,0.006144,0.007488,0.090496,0.006464
+1233,1228.19,0.814209,0.321536,0.006016,0.196736,0.004096,0.005792,0.005856,0.006688,0.00624,0.083968,0.006144
+1234,1308.84,0.764038,0.32016,0.00592,0.19344,0.005408,0.0048,0.005792,0.006528,0.006144,0.08528,0.006848
+1235,1411.2,0.708618,0.323648,0.005792,0.198784,0.004448,0.004096,0.006144,0.006144,0.007392,0.084256,0.006592
+1236,1359.44,0.735596,0.34576,0.006144,0.21712,0.005152,0.0048,0.005824,0.006688,0.006176,0.087136,0.00672
+1237,1190.87,0.839722,0.57248,0.006144,0.44032,0.007616,0.004672,0.006144,0.0072,0.006752,0.0864,0.007232
+1238,915.512,1.09229,0.323584,0.006176,0.200672,0.004096,0.005696,0.005792,0.00688,0.006208,0.081952,0.006112
+1239,1329.01,0.752441,0.319872,0.005792,0.195296,0.005632,0.004608,0.006016,0.006272,0.007296,0.082752,0.006208
+1240,1502.57,0.665527,0.320928,0.005888,0.197024,0.005344,0.004832,0.005664,0.006624,0.006208,0.08192,0.007424
+1241,1332.25,0.75061,0.321536,0.006016,0.196512,0.00432,0.005376,0.004992,0.007456,0.006752,0.083744,0.006368
+1242,1239.9,0.806519,0.323584,0.00592,0.198752,0.004224,0.00544,0.006656,0.006336,0.006144,0.08384,0.006272
+1243,1322.14,0.756348,0.321536,0.004864,0.19616,0.004576,0.00528,0.004928,0.007392,0.006656,0.084256,0.007424
+1244,1450.94,0.689209,0.322784,0.005824,0.198528,0.004736,0.004096,0.006144,0.007168,0.006816,0.082272,0.0072
+1245,1318.74,0.758301,0.325312,0.006112,0.198688,0.005376,0.004832,0.005792,0.006528,0.006144,0.08512,0.00672
+1246,846.368,1.18152,0.330848,0.007168,0.204768,0.005344,0.0048,0.005824,0.00656,0.007616,0.082496,0.006272
+1247,1364.42,0.73291,0.319488,0.006144,0.1944,0.004256,0.00544,0.006176,0.006688,0.006272,0.083872,0.00624
+1248,1348.92,0.741333,0.330816,0.006144,0.20464,0.004256,0.005408,0.004832,0.007776,0.00656,0.083968,0.007232
+1249,1409.5,0.709473,0.32096,0.006144,0.19648,0.004224,0.005472,0.005824,0.007136,0.006144,0.08208,0.007456
+1250,1432.67,0.697998,0.376032,0.006144,0.25168,0.00432,0.005472,0.004768,0.00768,0.006656,0.08192,0.007392
+1251,983.67,1.0166,0.319488,0.006144,0.19456,0.004224,0.005632,0.006528,0.006144,0.007328,0.082784,0.006144
+1252,1495.98,0.668457,0.323936,0.005856,0.197344,0.005376,0.0048,0.00576,0.006592,0.006176,0.085312,0.00672
+1253,1320.23,0.757446,0.325728,0.005792,0.20032,0.004864,0.00416,0.007232,0.006688,0.00656,0.083712,0.0064
+1254,1263.61,0.791382,0.57232,0.005056,0.444384,0.007808,0.00448,0.006144,0.006144,0.007328,0.084672,0.006304
+1255,839.43,1.19128,0.32192,0.005824,0.196704,0.004928,0.004128,0.006176,0.006112,0.007456,0.083904,0.006688
+1256,1466.52,0.681885,0.32704,0.00592,0.198016,0.004864,0.004192,0.006144,0.006144,0.007584,0.086624,0.007552
+1257,1349.14,0.741211,0.329728,0.006144,0.194592,0.005184,0.004832,0.006336,0.006144,0.007424,0.092544,0.006528
+1258,1348.7,0.741455,0.32928,0.005888,0.196512,0.004448,0.005216,0.006752,0.006464,0.00624,0.091072,0.006688
+1259,1117.14,0.895142,0.327872,0.005824,0.194112,0.004928,0.004224,0.006144,0.00624,0.007424,0.092832,0.006144
+1260,1473.91,0.678467,0.328288,0.005888,0.19552,0.005824,0.004384,0.006144,0.006144,0.007328,0.090272,0.006784
+1261,1255.09,0.796753,0.342016,0.005952,0.20464,0.004448,0.005216,0.005024,0.007424,0.006752,0.096,0.00656
+1262,1342.29,0.744995,0.341888,0.006144,0.200608,0.004192,0.005472,0.005824,0.006752,0.006528,0.099648,0.00672
+1263,729.02,1.3717,0.366592,0.008192,0.223136,0.004192,0.005504,0.005792,0.00704,0.00624,0.100352,0.006144
+1264,1422.47,0.703003,0.339904,0.006048,0.198528,0.00432,0.005376,0.004896,0.007552,0.006752,0.099648,0.006784
+1265,1257.41,0.795288,0.331584,0.005824,0.198944,0.004416,0.005248,0.004992,0.00736,0.006976,0.090112,0.007712
+1266,1423.21,0.702637,0.331808,0.005888,0.198048,0.004864,0.004224,0.006144,0.006144,0.006176,0.094176,0.006144
+1267,1333.12,0.750122,0.51024,0.005568,0.375648,0.005888,0.004352,0.006144,0.006144,0.007328,0.093024,0.006144
+1268,1126.67,0.887573,0.332128,0.005856,0.19632,0.004896,0.004224,0.006144,0.007488,0.006752,0.094144,0.006304
+1269,1243.85,0.803955,0.32768,0.005792,0.195296,0.005408,0.0048,0.00576,0.00656,0.006144,0.0912,0.00672
+1270,1400.58,0.713989,0.33552,0.006144,0.2048,0.005696,0.004544,0.005792,0.006496,0.006176,0.089184,0.006688
+1271,1370.59,0.729614,0.337504,0.005824,0.20016,0.004832,0.004288,0.006144,0.006144,0.006144,0.096256,0.007712
+1272,1048.11,0.954102,0.538848,0.016448,0.395424,0.005856,0.004384,0.006144,0.006144,0.007392,0.090912,0.006144
+1273,1083.88,0.922607,0.332192,0.005824,0.19936,0.005376,0.0048,0.005792,0.00656,0.006144,0.09216,0.006176
+1274,1324.71,0.754883,0.331584,0.006144,0.199744,0.004864,0.004288,0.006144,0.006144,0.007328,0.090368,0.00656
+1275,1297.43,0.770752,0.34208,0.005792,0.201152,0.005888,0.00432,0.006144,0.006144,0.007648,0.098432,0.00656
+1276,1197.31,0.835205,0.335904,0.005984,0.200864,0.005472,0.004768,0.00608,0.006208,0.007264,0.092896,0.006368
+1277,1294.56,0.772461,0.33792,0.006144,0.20192,0.004864,0.00416,0.006144,0.00768,0.006656,0.094208,0.006144
+1278,1326.85,0.753662,0.342016,0.006144,0.20832,0.004672,0.004096,0.006144,0.007648,0.006688,0.091872,0.006432
+1279,1301.76,0.768188,0.361472,0.00608,0.227392,0.005216,0.005024,0.005792,0.006496,0.006144,0.09216,0.007168
+1280,617.751,1.61877,0.399456,0.008064,0.260448,0.005664,0.004576,0.005984,0.006304,0.0072,0.094464,0.006752
+1281,1525.8,0.655396,0.339968,0.005952,0.200416,0.00464,0.00576,0.00576,0.00672,0.006272,0.098304,0.006144
+1282,1435.18,0.696777,0.333376,0.005856,0.197952,0.004896,0.004288,0.006144,0.006144,0.00736,0.092992,0.007744
+1283,1278.6,0.782104,0.333248,0.005792,0.196928,0.005568,0.004832,0.00592,0.0064,0.006144,0.094208,0.007456
+1284,1170.62,0.854248,0.359808,0.006144,0.225248,0.004128,0.005536,0.004896,0.007296,0.006752,0.092256,0.007552
+1285,1248.02,0.80127,0.331776,0.006144,0.19664,0.005632,0.004576,0.005984,0.006304,0.007264,0.092928,0.006304
+1286,1445.05,0.692017,0.333856,0.006144,0.200704,0.004256,0.0056,0.00576,0.00688,0.006176,0.09216,0.006176
+1287,1353.38,0.738892,0.331776,0.006144,0.199776,0.004896,0.004224,0.006144,0.007296,0.006592,0.090112,0.006592
+1288,645.548,1.54907,0.34624,0.008,0.21136,0.004096,0.005728,0.005728,0.006784,0.006336,0.091456,0.006752
+1289,1351.82,0.739746,0.331616,0.005824,0.200672,0.004704,0.004096,0.006144,0.007168,0.006912,0.08832,0.007776
+1290,1275.02,0.784302,0.327008,0.006144,0.196608,0.004096,0.005568,0.004864,0.005952,0.007616,0.08864,0.00752
+1291,1476.83,0.677124,0.331776,0.006016,0.198784,0.005888,0.004352,0.006048,0.00624,0.007168,0.091136,0.006144
+1292,1284.01,0.778809,0.507904,0.00608,0.37792,0.00512,0.004096,0.006144,0.006144,0.007712,0.08848,0.006208
+1293,1105.68,0.904419,0.325632,0.006144,0.195936,0.0048,0.004064,0.006144,0.006304,0.00752,0.088576,0.006144
+1294,1272.84,0.785645,0.325408,0.00592,0.19488,0.004192,0.0056,0.00576,0.006752,0.006368,0.088064,0.007872
+1295,1422.47,0.703003,0.332928,0.005088,0.202752,0.005696,0.004544,0.006048,0.00624,0.007392,0.088864,0.006304
+1296,676.466,1.47827,0.349536,0.008192,0.212992,0.00576,0.00448,0.006144,0.007232,0.006912,0.090336,0.007488
+1297,1279.6,0.781494,0.346112,0.006144,0.196608,0.005152,0.0048,0.005728,0.006752,0.00624,0.108544,0.006144
+1298,1361.7,0.734375,0.342016,0.006144,0.208,0.004896,0.004192,0.006144,0.007456,0.006816,0.09152,0.006848
+1299,1396.52,0.716064,0.331776,0.006144,0.200352,0.00448,0.005184,0.005024,0.007456,0.006752,0.09024,0.006144
+1300,1393.91,0.717407,0.5096,0.007584,0.375392,0.005888,0.004352,0.006144,0.006144,0.007264,0.090016,0.006816
+1301,1052.42,0.950195,0.325632,0.006144,0.19456,0.005152,0.0048,0.005792,0.006688,0.00624,0.090112,0.006144
+1302,1231.69,0.81189,0.325408,0.006176,0.194144,0.00448,0.005184,0.005056,0.0072,0.006944,0.089408,0.006816
+1303,1434.93,0.696899,0.366592,0.006144,0.229376,0.005696,0.004544,0.006016,0.006272,0.008064,0.094176,0.006304
+1304,1256.83,0.795654,0.579616,0.006144,0.442368,0.007808,0.00448,0.00608,0.006208,0.007328,0.093024,0.006176
+1305,810.929,1.23315,0.32768,0.006112,0.201792,0.004896,0.004288,0.006144,0.006144,0.007616,0.084544,0.006144
+1306,1455.06,0.687256,0.326976,0.005856,0.197056,0.004096,0.005792,0.005696,0.006688,0.0064,0.088064,0.007328
+1307,1465.47,0.682373,0.330944,0.006144,0.199744,0.004864,0.004288,0.006112,0.006176,0.007168,0.089088,0.00736
+1308,1380.52,0.724365,0.325376,0.005856,0.196544,0.004704,0.004096,0.006144,0.006144,0.00752,0.086688,0.00768
+1309,1219.59,0.819946,0.326656,0.00512,0.2,0.0048,0.005152,0.005088,0.007584,0.006624,0.085792,0.006496
+1310,1276.61,0.783325,0.33184,0.005888,0.194688,0.004832,0.00416,0.006144,0.006144,0.007296,0.095104,0.007584
+1311,1443.78,0.692627,0.337248,0.006144,0.200704,0.005792,0.004448,0.00592,0.006368,0.0072,0.093152,0.00752
+1312,1259.92,0.793701,0.635008,0.005088,0.495552,0.007648,0.00464,0.005952,0.006336,0.006304,0.096096,0.007392
+1313,780.488,1.28125,0.33664,0.004864,0.202752,0.005184,0.004576,0.006016,0.006752,0.006144,0.094208,0.006144
+1314,1371.96,0.728882,0.33072,0.005088,0.19456,0.00528,0.0048,0.00624,0.006208,0.0072,0.094912,0.006432
+1315,1418.53,0.704956,0.332576,0.004896,0.198592,0.00416,0.005536,0.006016,0.006752,0.006272,0.093952,0.0064
+1316,1383.55,0.722778,0.330496,0.005952,0.194592,0.004928,0.004192,0.006144,0.006144,0.00736,0.09472,0.006464
+1317,849,1.17786,0.514592,0.005024,0.379968,0.004928,0.004224,0.006144,0.006144,0.007456,0.094016,0.006688
+1318,1443.52,0.692749,0.343456,0.006016,0.211072,0.004096,0.005568,0.005728,0.006688,0.006592,0.090112,0.007584
+1319,1287.24,0.776855,0.344064,0.006144,0.208896,0.005312,0.0048,0.005728,0.006688,0.007712,0.092384,0.0064
+1320,1159.19,0.862671,0.352256,0.006144,0.208832,0.00416,0.005536,0.00576,0.006688,0.006592,0.102144,0.0064
+1321,715.646,1.39734,0.35504,0.007936,0.211936,0.004096,0.005728,0.005728,0.006688,0.006432,0.100352,0.006144
+1322,1478.7,0.67627,0.338848,0.005088,0.201888,0.004864,0.004192,0.006144,0.006144,0.007712,0.096064,0.006752
+1323,1374.96,0.727295,0.345088,0.005824,0.203072,0.005888,0.004352,0.00608,0.006208,0.006144,0.100352,0.007168
+1324,1296.2,0.771484,0.339968,0.005824,0.201024,0.005216,0.0048,0.005728,0.00672,0.006208,0.097824,0.006624
+1325,1269.29,0.787842,0.515392,0.005632,0.377376,0.004096,0.005696,0.005728,0.006656,0.006496,0.096256,0.007456
+1326,1057.99,0.94519,0.337792,0.005856,0.196608,0.004736,0.004096,0.006144,0.006144,0.00768,0.098816,0.007712
+1327,1365.11,0.732544,0.354944,0.005792,0.213792,0.005184,0.004832,0.005696,0.006528,0.006432,0.100352,0.006336
+1328,1338.78,0.746948,0.351712,0.006144,0.204448,0.004448,0.005248,0.004992,0.007456,0.006784,0.104544,0.007648
+1329,733.196,1.36389,0.3584,0.008192,0.212992,0.00544,0.0048,0.00576,0.006528,0.00736,0.101184,0.006144
+1330,1357.42,0.736694,0.343296,0.006144,0.200032,0.004768,0.004096,0.006144,0.006304,0.007456,0.100928,0.007424
+1331,1407.08,0.710693,0.335872,0.006144,0.199968,0.004832,0.004128,0.006112,0.006304,0.007456,0.094592,0.006336
+1332,1352.26,0.739502,0.333824,0.006144,0.198208,0.004544,0.004096,0.006144,0.007648,0.006688,0.094112,0.00624
+1333,1258.95,0.794312,0.512032,0.006144,0.376832,0.005312,0.004832,0.005792,0.006592,0.006144,0.093888,0.006496
+1334,1116.38,0.895752,0.329408,0.006144,0.19456,0.00528,0.004832,0.005728,0.00656,0.006272,0.093248,0.006784
+1335,657.886,1.52002,0.784384,0.006144,0.644448,0.004768,0.005152,0.005088,0.007616,0.00672,0.098304,0.006144
+1336,1291.3,0.774414,0.34832,0.005952,0.212928,0.00448,0.005216,0.005024,0.007456,0.00688,0.093568,0.006816
+1337,652.022,1.53369,0.34992,0.008192,0.212096,0.004928,0.00416,0.006144,0.007744,0.006592,0.093408,0.006656
+1338,1350.03,0.740723,0.329728,0.006144,0.194592,0.00576,0.004448,0.006144,0.006144,0.007264,0.09264,0.006592
+1339,1434.93,0.696899,0.335584,0.00608,0.198368,0.004448,0.005216,0.00704,0.006176,0.006144,0.095392,0.00672
+1340,1377.04,0.726196,0.512,0.006144,0.376832,0.005824,0.004416,0.006144,0.006144,0.00736,0.092992,0.006144
+1341,1078.6,0.927124,0.331776,0.006144,0.19456,0.005696,0.004544,0.00608,0.006208,0.007328,0.094752,0.006464
+1342,1264.2,0.791016,0.330496,0.004864,0.19456,0.006144,0.004096,0.006144,0.007744,0.006592,0.094208,0.006144
+1343,1502.84,0.665405,0.343712,0.005792,0.201216,0.005472,0.004768,0.006144,0.007264,0.006656,0.09872,0.00768
+1344,851.913,1.17383,0.538624,0.008096,0.393312,0.006144,0.004096,0.006144,0.007168,0.006752,0.100768,0.006144
+1345,1059.36,0.94397,0.333024,0.005792,0.196864,0.004288,0.005408,0.004832,0.007584,0.006624,0.094336,0.007296
+1346,1352.04,0.739624,0.328128,0.005824,0.195328,0.004256,0.005376,0.006016,0.006688,0.006336,0.09216,0.006144
+1347,1433.17,0.697754,0.339968,0.006144,0.198656,0.005408,0.004832,0.006144,0.00736,0.006592,0.098432,0.0064
+1348,1316.83,0.759399,0.33088,0.006176,0.19792,0.004832,0.004064,0.007424,0.006656,0.0064,0.090112,0.007296
+1349,1122.96,0.890503,0.327808,0.006144,0.19456,0.00544,0.0048,0.005792,0.006496,0.006144,0.09216,0.006272
+1350,1295.18,0.772095,0.323584,0.006144,0.19456,0.00544,0.004768,0.005792,0.006528,0.006144,0.088064,0.006144
+1351,1464.69,0.682739,0.331776,0.005856,0.20256,0.004576,0.004096,0.006144,0.007232,0.006656,0.088512,0.006144
+1352,1233.18,0.810913,0.566624,0.00608,0.436288,0.007552,0.004736,0.005824,0.006464,0.006208,0.085952,0.00752
+1353,831.422,1.20276,0.34736,0.006144,0.217088,0.005152,0.004832,0.00576,0.006688,0.00624,0.088064,0.007392
+1354,1379.36,0.724976,0.335872,0.006144,0.2048,0.00528,0.004832,0.005984,0.006432,0.0072,0.08896,0.00624
+1355,1432.42,0.69812,0.354048,0.005792,0.222176,0.005792,0.004448,0.005952,0.006336,0.006144,0.090112,0.007296
+1356,1206.48,0.828857,0.33088,0.006144,0.199904,0.004864,0.004128,0.006144,0.006176,0.007648,0.088576,0.007296
+1357,1512.83,0.661011,0.50912,0.006016,0.37696,0.00592,0.00432,0.006144,0.006144,0.007328,0.088928,0.00736
+1358,1062.65,0.94104,0.329728,0.006144,0.19664,0.005792,0.004416,0.006144,0.007712,0.006624,0.090112,0.006144
+1359,1438.2,0.695312,0.329728,0.006144,0.198688,0.005472,0.004736,0.005856,0.006432,0.006144,0.090048,0.006208
+1360,1279.8,0.781372,0.332768,0.006176,0.203712,0.005536,0.004704,0.005856,0.006432,0.006208,0.088,0.006144
+1361,630.348,1.58643,0.342016,0.008192,0.21008,0.004864,0.004192,0.006144,0.006176,0.00752,0.08848,0.006368
+1362,786.407,1.27161,0.332256,0.005888,0.199392,0.00576,0.00448,0.006144,0.00736,0.006976,0.089536,0.00672
+1363,1419.02,0.704712,0.331776,0.005952,0.1968,0.005472,0.004768,0.005856,0.006432,0.006144,0.093824,0.006528
+1364,1308,0.764526,0.342144,0.005856,0.208768,0.00464,0.004096,0.006144,0.006144,0.007584,0.092224,0.006688
+1365,1038.54,0.962891,0.326464,0.004928,0.196608,0.005856,0.004384,0.006144,0.006144,0.006144,0.090112,0.006144
+1366,1336.6,0.748169,0.32768,0.006112,0.194592,0.00576,0.00448,0.005856,0.006432,0.006208,0.092,0.00624
+1367,1467.57,0.681396,0.330944,0.006144,0.200256,0.004544,0.005152,0.006816,0.006464,0.006144,0.088064,0.00736
+1368,1342.51,0.744873,0.333824,0.006144,0.200704,0.005216,0.004832,0.005728,0.006752,0.006144,0.09216,0.006144
+1369,598.087,1.672,0.353216,0.007104,0.216576,0.004608,0.004096,0.006144,0.007328,0.006624,0.094592,0.006144
+1370,1052.28,0.950317,0.348896,0.004832,0.21264,0.004448,0.005216,0.005024,0.007552,0.006784,0.096256,0.006144
+1371,1644.65,0.608032,0.339968,0.006144,0.20224,0.004608,0.004096,0.006144,0.007904,0.006432,0.096032,0.006368
+1372,1239.15,0.807007,0.515744,0.006208,0.376832,0.005344,0.004832,0.00576,0.006592,0.006144,0.097312,0.00672
+1373,1100.78,0.908447,0.33792,0.006144,0.19776,0.004928,0.00416,0.006144,0.006144,0.00752,0.09856,0.00656
+1374,1297.43,0.770752,0.335552,0.005952,0.1968,0.005408,0.0048,0.006016,0.006304,0.007264,0.096288,0.00672
+1375,1427.18,0.700684,0.347904,0.006144,0.206752,0.004192,0.005504,0.00576,0.0072,0.007136,0.09856,0.006656
+1376,1324.49,0.755005,0.580832,0.005888,0.427744,0.017088,0.005472,0.004864,0.007584,0.006656,0.098304,0.007232
+1377,814.8,1.22729,0.352256,0.006016,0.20288,0.0056,0.00464,0.005792,0.006496,0.006144,0.108256,0.006432
+1378,1303.21,0.767334,0.339968,0.006144,0.198656,0.005632,0.004608,0.00592,0.006368,0.006272,0.10016,0.006208
+1379,1425.44,0.701538,0.34832,0.005824,0.199168,0.005792,0.004416,0.006144,0.006144,0.0072,0.106976,0.006656
+1380,1299.49,0.769531,0.342656,0.005824,0.195072,0.004544,0.005152,0.005088,0.007776,0.00656,0.106496,0.006144
+1381,1068.61,0.935791,0.33984,0.005792,0.197088,0.004416,0.005248,0.004992,0.00736,0.006624,0.100736,0.007584
+1382,1291.1,0.774536,0.344064,0.006144,0.19456,0.004128,0.0056,0.005728,0.006752,0.006464,0.108544,0.006144
+1383,1394.38,0.717163,0.344064,0.005856,0.19872,0.00432,0.005376,0.006272,0.006656,0.006272,0.104096,0.006496
+1384,1223.78,0.817139,0.598816,0.005056,0.423776,0.036864,0.005632,0.00576,0.006624,0.00656,0.101984,0.00656
+1385,828.898,1.20642,0.342752,0.004896,0.199872,0.004864,0.00416,0.006144,0.006144,0.007424,0.102656,0.006592
+1386,1319.59,0.757812,0.342752,0.005056,0.196224,0.00448,0.005216,0.005024,0.007552,0.006784,0.105664,0.006752
+1387,1455.06,0.687256,0.345856,0.006048,0.194688,0.005664,0.004544,0.007392,0.00672,0.006368,0.107776,0.006656
+1388,1309.46,0.763672,0.344064,0.006144,0.195648,0.004864,0.004288,0.006144,0.006144,0.007616,0.107072,0.006144
+1389,985.089,1.01514,0.350752,0.005696,0.209888,0.005632,0.004608,0.005984,0.006304,0.006144,0.099872,0.006624
+1390,1496.53,0.668213,0.346112,0.006144,0.2024,0.004448,0.005216,0.006432,0.006752,0.006176,0.1024,0.006144
+1391,1367.61,0.731201,0.355808,0.006144,0.208896,0.005824,0.004416,0.006144,0.007392,0.006624,0.10272,0.007648
+1392,1313.66,0.76123,0.354112,0.006144,0.200096,0.004704,0.005568,0.00576,0.007136,0.007392,0.110592,0.00672
+1393,673.297,1.48523,0.358592,0.007936,0.211552,0.005568,0.00464,0.005888,0.0064,0.006144,0.10368,0.006784
+1394,1410.95,0.70874,0.344512,0.005856,0.201056,0.004448,0.005952,0.005792,0.006688,0.006144,0.1024,0.006176
+1395,1448.89,0.690186,0.339488,0.006112,0.19872,0.005376,0.004832,0.005632,0.006656,0.006144,0.09936,0.006656
+1396,1363.74,0.733276,0.341248,0.005856,0.196672,0.00432,0.005376,0.006912,0.006144,0.007648,0.100896,0.007424
+1397,1314.51,0.760742,0.524288,0.006144,0.376832,0.00592,0.00432,0.006144,0.006144,0.007424,0.104992,0.006368
+1398,1012.48,0.987671,0.343296,0.006144,0.195872,0.004864,0.004064,0.006176,0.006112,0.007712,0.104928,0.007424
+1399,1484.06,0.673828,0.348256,0.005056,0.199936,0.004832,0.004128,0.006144,0.00752,0.006592,0.10672,0.007328
+1400,1277.41,0.782837,0.34752,0.006048,0.198752,0.005696,0.004544,0.006144,0.006144,0.007744,0.104896,0.007552
+1401,1175.49,0.850708,0.599776,0.005952,0.448704,0.007232,0.005056,0.006144,0.007392,0.006656,0.105952,0.006688
+1402,841.5,1.18835,0.339392,0.006144,0.197824,0.004896,0.004128,0.007424,0.00672,0.006336,0.098304,0.007616
+1403,1473.65,0.678589,0.33792,0.006144,0.198464,0.004288,0.005376,0.004864,0.007456,0.006784,0.098272,0.006272
+1404,1270.47,0.787109,0.337728,0.006144,0.196608,0.005312,0.0048,0.005792,0.006528,0.00624,0.099616,0.006688
+1405,1238.77,0.807251,0.35264,0.005792,0.21168,0.005312,0.004544,0.00576,0.006912,0.006144,0.100288,0.006208
+1406,1056.35,0.946655,0.337248,0.006144,0.19456,0.005696,0.004544,0.00592,0.006368,0.008064,0.098432,0.00752
+1407,867.337,1.15295,0.357088,0.004864,0.217056,0.004128,0.005536,0.005792,0.006816,0.006432,0.099744,0.00672
+1408,1257.21,0.79541,0.35472,0.005888,0.214752,0.00496,0.004192,0.006144,0.006144,0.007456,0.098464,0.00672
+1409,584.058,1.71216,0.387072,0.008192,0.244896,0.004864,0.004192,0.006144,0.006144,0.007392,0.099072,0.006176
+1410,1491.9,0.670288,0.347168,0.006144,0.201792,0.004928,0.004224,0.006176,0.006112,0.007616,0.102976,0.0072
+1411,1357.19,0.736816,0.341792,0.005792,0.19952,0.006144,0.004096,0.006144,0.006144,0.007552,0.098976,0.007424
+1412,1371.05,0.72937,0.342016,0.006144,0.198656,0.005344,0.004896,0.006144,0.006144,0.007328,0.101216,0.006144
+1413,1146.54,0.872192,0.33872,0.004864,0.198656,0.005664,0.004576,0.00592,0.0064,0.006112,0.100192,0.006336
+1414,1265.17,0.790405,0.337184,0.006144,0.19456,0.005824,0.004416,0.006144,0.006144,0.006144,0.100352,0.007456
+1415,1383.08,0.723022,0.339968,0.006144,0.200704,0.005856,0.004384,0.006144,0.006144,0.007392,0.097056,0.006144
+1416,1210.4,0.826172,0.351456,0.00592,0.20912,0.00576,0.00448,0.00608,0.006208,0.007232,0.099264,0.007392
+1417,875.12,1.1427,0.355456,0.008192,0.210944,0.004128,0.0056,0.005728,0.006592,0.006592,0.100384,0.007296
+1418,1309.25,0.763794,0.34032,0.005824,0.197312,0.004064,0.00576,0.006304,0.006368,0.006272,0.101792,0.006624
+1419,1451.2,0.689087,0.339968,0.006144,0.196608,0.005856,0.004384,0.006144,0.006144,0.007168,0.101216,0.006304
+1420,1284.82,0.77832,0.337376,0.006176,0.194528,0.00544,0.0048,0.006144,0.006144,0.00768,0.098816,0.007648
+1421,1300.11,0.769165,0.520192,0.006144,0.378016,0.004896,0.00416,0.006144,0.006272,0.007392,0.101024,0.006144
+1422,1038.8,0.962646,0.339616,0.006112,0.19664,0.004192,0.0056,0.005728,0.006688,0.006464,0.101472,0.00672
+1423,1433.42,0.697632,0.335712,0.005824,0.19936,0.00528,0.004832,0.005696,0.006688,0.006144,0.095296,0.006592
+1424,1172.8,0.852661,0.341728,0.00608,0.20224,0.004672,0.005728,0.005952,0.006784,0.006112,0.09744,0.00672
+1425,563.721,1.77393,0.395648,0.007936,0.257696,0.00496,0.004224,0.006144,0.006144,0.007424,0.095008,0.006112
+1426,1412.66,0.707886,0.34896,0.005088,0.21088,0.005376,0.0048,0.00576,0.006592,0.007648,0.095968,0.006848
+1427,1303.01,0.767456,0.353184,0.005024,0.21712,0.005888,0.00432,0.006144,0.006144,0.006144,0.096192,0.006208
+1428,986.394,1.01379,0.344032,0.00592,0.207424,0.004096,0.00576,0.005504,0.006688,0.006624,0.095264,0.006752
+1429,1167.28,0.856689,0.348192,0.005824,0.211296,0.005376,0.004832,0.005728,0.006592,0.006144,0.096256,0.006144
+1430,1278.2,0.782349,0.342016,0.006144,0.204768,0.004128,0.005568,0.006272,0.006592,0.006144,0.096256,0.006144
+1431,1256.83,0.795654,0.354656,0.00496,0.219136,0.004096,0.0056,0.00576,0.006688,0.006528,0.094208,0.00768
+1432,1206.66,0.828735,0.34816,0.006144,0.21056,0.00448,0.005216,0.005024,0.00752,0.006784,0.095744,0.006688
+1433,740.754,1.34998,0.3456,0.008192,0.20592,0.005024,0.004096,0.006144,0.007744,0.006592,0.094208,0.00768
+1434,1314.51,0.760742,0.337952,0.006144,0.200704,0.004096,0.0056,0.00576,0.006784,0.006432,0.095872,0.00656
+1435,1423.95,0.702271,0.337664,0.005824,0.197632,0.00544,0.004768,0.005824,0.006464,0.006144,0.098304,0.007264
+1436,1276.81,0.783203,0.331776,0.006144,0.192224,0.004384,0.004096,0.007328,0.006688,0.006464,0.098208,0.00624
+1437,1108.68,0.901978,0.331168,0.00592,0.194784,0.004096,0.005792,0.005728,0.006784,0.006272,0.094208,0.007584
+1438,1246.69,0.802124,0.331776,0.006144,0.19584,0.004832,0.004128,0.006144,0.006144,0.007456,0.094496,0.006592
+1439,1433.67,0.69751,0.339968,0.006048,0.204896,0.004128,0.0056,0.005792,0.006656,0.006496,0.094208,0.006144
+1440,1246.12,0.80249,0.328544,0.005056,0.197632,0.004896,0.004224,0.006144,0.006144,0.00784,0.090176,0.006432
+1441,711.173,1.40613,0.339712,0.008448,0.206976,0.004448,0.004096,0.006144,0.007232,0.00656,0.088608,0.0072
+1442,1051.2,0.951294,0.336608,0.005856,0.205792,0.005568,0.004672,0.005888,0.0064,0.007264,0.088992,0.006176
+1443,1622.5,0.616333,0.33568,0.005824,0.203104,0.00448,0.004096,0.006144,0.0072,0.006624,0.090624,0.007584
+1444,1284.21,0.778687,0.382976,0.00592,0.248704,0.004096,0.004096,0.006016,0.006272,0.006208,0.094144,0.00752
+1445,1065,0.938965,0.337952,0.004768,0.200704,0.005312,0.004832,0.00624,0.00768,0.006656,0.094208,0.007552
+1446,1246.12,0.80249,0.335872,0.006112,0.198688,0.004192,0.00544,0.00576,0.00672,0.00656,0.096256,0.006144
+1447,1378.43,0.725464,0.335872,0.006144,0.1984,0.004352,0.005344,0.004896,0.007488,0.006656,0.096192,0.0064
+1448,1344.05,0.744019,0.580928,0.006144,0.438272,0.008192,0.005792,0.00576,0.006688,0.007488,0.095136,0.007456
+1449,832.182,1.20166,0.339968,0.006144,0.200704,0.005824,0.004416,0.006144,0.006144,0.007424,0.097024,0.006144
+1450,1234.29,0.810181,0.335872,0.006144,0.198656,0.005664,0.004576,0.006144,0.007616,0.00672,0.094016,0.006336
+1451,1396.05,0.716309,0.326112,0.005792,0.194944,0.004576,0.00512,0.005088,0.0072,0.006656,0.090592,0.006144
+1452,1444.29,0.692383,0.330336,0.005856,0.197408,0.004192,0.006144,0.006048,0.00624,0.00768,0.090624,0.006144
+1453,1090.81,0.916748,0.331392,0.005952,0.198464,0.00448,0.005184,0.005056,0.00752,0.006592,0.091424,0.00672
+1454,1494.89,0.668945,0.328096,0.00592,0.19488,0.004704,0.004096,0.006144,0.00624,0.007616,0.09168,0.006816
+1455,1077.75,0.927856,0.334592,0.004832,0.197824,0.004864,0.00416,0.006144,0.00768,0.006144,0.096672,0.006272
+1456,1698.88,0.588623,0.338688,0.00592,0.203744,0.005248,0.004832,0.006016,0.006432,0.006208,0.094048,0.00624
+1457,733.59,1.36316,0.34816,0.007936,0.213216,0.004128,0.005536,0.004704,0.007584,0.006752,0.09184,0.006464
+1458,1404.66,0.711914,0.334272,0.005888,0.20064,0.004864,0.004128,0.006144,0.007232,0.006752,0.092032,0.006592
+1459,1292.73,0.77356,0.330272,0.004992,0.19664,0.005184,0.005024,0.00608,0.006208,0.006144,0.09216,0.00784
+1460,1417.3,0.705566,0.331968,0.005856,0.1984,0.004736,0.004096,0.006144,0.007296,0.006784,0.092416,0.00624
+1461,769.274,1.29993,0.356512,0.005824,0.220736,0.00496,0.005344,0.00496,0.00752,0.006816,0.094208,0.006144
+1462,1526.36,0.655151,0.373184,0.005888,0.236224,0.005408,0.004768,0.005696,0.006656,0.006144,0.095712,0.006688
+1463,1143.02,0.874878,0.366208,0.006144,0.230944,0.004576,0.00512,0.00704,0.006272,0.006144,0.09216,0.007808
+1464,1536.38,0.650879,0.36304,0.005952,0.223936,0.00544,0.0048,0.005664,0.006656,0.006304,0.0976,0.006688
+1465,588.506,1.69922,0.356352,0.008096,0.214208,0.004864,0.004256,0.006144,0.006144,0.007296,0.0992,0.006144
+1466,1330.73,0.751465,0.338048,0.00496,0.198656,0.004096,0.005792,0.005728,0.006688,0.006368,0.098304,0.007456
+1467,1359.22,0.735718,0.335552,0.005824,0.19504,0.00416,0.005504,0.005856,0.00672,0.006496,0.09936,0.006592
+1468,1448.89,0.690186,0.34576,0.006144,0.198176,0.004576,0.0056,0.005728,0.006688,0.00656,0.106144,0.006144
+1469,1173.13,0.852417,0.345472,0.005792,0.194944,0.00528,0.004832,0.006272,0.00752,0.006464,0.106848,0.00752
+1470,1287.24,0.776855,0.34304,0.00512,0.20176,0.004992,0.004192,0.006144,0.006144,0.007392,0.100832,0.006464
+1471,1299.49,0.769531,0.348928,0.006176,0.199392,0.005216,0.0048,0.005632,0.006688,0.006336,0.108544,0.006144
+1472,1368.76,0.730591,0.643072,0.006144,0.499712,0.008064,0.004224,0.006144,0.006272,0.007456,0.098912,0.006144
+1473,772.612,1.29431,0.350208,0.005888,0.20224,0.0048,0.00416,0.006144,0.006144,0.007392,0.1072,0.00624
+1474,1285.02,0.778198,0.342016,0.00608,0.196448,0.00432,0.005344,0.004928,0.006112,0.007552,0.105088,0.006144
+1475,1302.59,0.7677,0.344064,0.006144,0.198656,0.005344,0.004832,0.005728,0.006624,0.006144,0.104384,0.006208
+1476,1450.68,0.689331,0.346144,0.005856,0.198656,0.00448,0.004096,0.006144,0.007392,0.006752,0.106048,0.00672
+1477,978.851,1.02161,0.344416,0.005792,0.196416,0.004832,0.004288,0.006144,0.006144,0.007328,0.106784,0.006688
+1478,1397.71,0.715454,0.346464,0.005824,0.19728,0.004096,0.005824,0.005664,0.006592,0.006496,0.108384,0.006304
+1479,1265.76,0.790039,0.3536,0.005952,0.196832,0.005312,0.004832,0.005728,0.006656,0.006112,0.114816,0.00736
+1480,988.059,1.01208,0.35872,0.005824,0.201312,0.005344,0.004896,0.005728,0.00656,0.006144,0.116672,0.00624
+1481,794.183,1.25916,0.368928,0.007968,0.213504,0.0056,0.00464,0.005952,0.006336,0.007616,0.111168,0.006144
+1482,1286.03,0.777588,0.346592,0.005856,0.197248,0.004192,0.005632,0.005728,0.00656,0.00656,0.108544,0.006272
+1483,1371.51,0.729126,0.344064,0.005792,0.194944,0.005664,0.004544,0.006016,0.006272,0.006144,0.108544,0.006144
+1484,1420,0.704224,0.346432,0.005088,0.198592,0.004096,0.005632,0.004608,0.007712,0.006624,0.106496,0.007584
+1485,1218.14,0.820923,0.519264,0.005792,0.377184,0.00528,0.0048,0.005728,0.00672,0.006144,0.100352,0.007264
+1486,1065.83,0.938232,0.34032,0.005856,0.194528,0.004768,0.004096,0.006144,0.006144,0.007584,0.105056,0.006144
+1487,1334.85,0.749146,0.34624,0.005792,0.199168,0.004384,0.005312,0.004928,0.007392,0.006592,0.105824,0.006848
+1488,1397,0.71582,0.350208,0.006144,0.202752,0.005376,0.0048,0.005728,0.006624,0.0072,0.10512,0.006464
+1489,701.55,1.42542,0.354304,0.008192,0.204256,0.00464,0.004096,0.006144,0.0072,0.00672,0.106912,0.006144
+1490,1308.42,0.764282,0.346112,0.00608,0.198016,0.0048,0.004096,0.006144,0.006176,0.007488,0.106976,0.006336
+1491,1337.91,0.747437,0.346528,0.005824,0.198848,0.004672,0.004064,0.006144,0.0072,0.00624,0.107264,0.006272
+1492,1462.33,0.683838,0.357472,0.006144,0.200704,0.005824,0.004416,0.006144,0.006144,0.007648,0.113184,0.007264
+1493,1303.42,0.767212,0.53264,0.005888,0.378944,0.004288,0.00544,0.004864,0.007584,0.006656,0.112672,0.006304
+1494,994.537,1.00549,0.352256,0.006176,0.196576,0.00576,0.00448,0.006144,0.007328,0.006816,0.112832,0.006144
+1495,1324.92,0.754761,0.347968,0.006144,0.19456,0.005376,0.0048,0.006208,0.007584,0.006624,0.10992,0.006752
+1496,1401.78,0.713379,0.356672,0.004896,0.2048,0.00416,0.005792,0.005728,0.006752,0.006272,0.11056,0.007712
+1497,1275.42,0.784058,0.59744,0.005824,0.422304,0.026528,0.005504,0.004864,0.00752,0.006656,0.11072,0.00752
+1498,585.938,1.70667,0.367296,0.0048,0.220992,0.004288,0.005408,0.004832,0.007616,0.00672,0.10592,0.00672
+1499,1435.68,0.696533,0.354176,0.006144,0.204832,0.005568,0.00464,0.006144,0.007264,0.006624,0.106144,0.006816
+1500,1548.58,0.645752,0.351808,0.006144,0.202784,0.005504,0.004704,0.006144,0.0072,0.006784,0.1048,0.007744
+1501,1099.15,0.90979,0.344064,0.006144,0.196608,0.00528,0.0048,0.006272,0.006176,0.006144,0.106144,0.006496
+1502,1279,0.78186,0.347456,0.006144,0.1984,0.0056,0.0048,0.005728,0.006656,0.006336,0.106304,0.007488
+1503,1305.71,0.765869,0.348128,0.006144,0.199808,0.004992,0.004096,0.00768,0.006304,0.006496,0.105952,0.006656
+1504,1389.42,0.719727,0.346112,0.006016,0.20288,0.004128,0.005664,0.00608,0.006656,0.006144,0.102208,0.006336
+1505,677.641,1.47571,0.355392,0.008096,0.209024,0.004064,0.005728,0.005664,0.006912,0.006272,0.1024,0.007232
+1506,1375.19,0.727173,0.343872,0.005824,0.201056,0.00464,0.00528,0.004992,0.007552,0.006656,0.100448,0.007424
+1507,1372.88,0.728394,0.34064,0.004864,0.198464,0.004288,0.005376,0.004864,0.007296,0.006624,0.102208,0.006656
+1508,1455.06,0.687256,0.342016,0.006048,0.198464,0.004384,0.005472,0.005984,0.006688,0.006432,0.101888,0.006656
+1509,1299.08,0.769775,0.520192,0.006176,0.3768,0.005824,0.004416,0.006144,0.007552,0.006624,0.100096,0.00656
+1510,1008.62,0.991455,0.340352,0.005824,0.197312,0.005504,0.004736,0.005792,0.006496,0.006144,0.101856,0.006688
+1511,1363.29,0.733521,0.338144,0.005824,0.195104,0.005408,0.0048,0.005696,0.006624,0.006144,0.1024,0.006144
+1512,1509.77,0.662354,0.344576,0.005824,0.201504,0.005216,0.0048,0.005728,0.006752,0.006176,0.10224,0.006336
+1513,860.685,1.16187,0.54272,0.008192,0.395264,0.006048,0.005504,0.004864,0.007552,0.006592,0.10256,0.006144
+1514,1026.95,0.973755,0.338016,0.005824,0.196416,0.004704,0.004096,0.006144,0.007168,0.00672,0.100608,0.006336
+1515,1338.12,0.747314,0.337888,0.006144,0.196448,0.004256,0.005856,0.00592,0.006656,0.0072,0.098752,0.006656
+1516,1421.73,0.703369,0.344576,0.005824,0.201568,0.005408,0.004736,0.005696,0.006656,0.006144,0.102272,0.006272
+1517,1257.41,0.795288,0.559104,0.006144,0.419712,0.004224,0.005536,0.005728,0.006656,0.006592,0.098368,0.006144
+1518,1060.32,0.943115,0.343808,0.006144,0.201888,0.004864,0.004192,0.006144,0.007232,0.006752,0.098656,0.007936
+1519,1212.73,0.824585,0.341344,0.00608,0.200544,0.00432,0.005376,0.004864,0.007776,0.00656,0.098304,0.00752
+1520,1516.19,0.659546,0.340096,0.005824,0.1984,0.0048,0.004096,0.006144,0.007392,0.00672,0.100576,0.006144
+1521,1206.66,0.828735,0.656768,0.005824,0.479712,0.036512,0.008544,0.006144,0.006144,0.007424,0.099072,0.007392
+1522,765.25,1.30676,0.342752,0.0048,0.202368,0.00448,0.005184,0.005056,0.007648,0.006688,0.100288,0.00624
+1523,1408.77,0.709839,0.337408,0.005824,0.196256,0.004864,0.004128,0.006144,0.006144,0.00624,0.100256,0.007552
+1524,1439.47,0.694702,0.344608,0.005824,0.198688,0.004864,0.004128,0.006112,0.006176,0.007296,0.105344,0.006176
+1525,1311.98,0.762207,0.351968,0.006144,0.204096,0.0048,0.005792,0.005696,0.006784,0.006304,0.10592,0.006432
+1526,1107.78,0.90271,0.342688,0.006688,0.196736,0.005216,0.004832,0.005728,0.00672,0.006144,0.104448,0.006176
+1527,1233.73,0.810547,0.346624,0.005824,0.19952,0.005664,0.004544,0.006144,0.00736,0.006624,0.1048,0.006144
+1528,1404.42,0.712036,0.352864,0.005056,0.204096,0.004672,0.005792,0.005696,0.006752,0.006336,0.107648,0.006816
+1529,1235.97,0.809082,0.350432,0.005088,0.202752,0.004224,0.005568,0.005696,0.006528,0.006624,0.106528,0.007424
+1530,724.763,1.37976,0.362528,0.008224,0.212256,0.0048,0.0056,0.005696,0.006784,0.006496,0.106112,0.00656
+1531,1378.66,0.725342,0.345952,0.005856,0.197248,0.005408,0.0048,0.005696,0.006624,0.006144,0.10752,0.006656
+1532,739.283,1.35266,0.347968,0.005824,0.198752,0.004736,0.004096,0.006144,0.0072,0.006816,0.106816,0.007584
+1533,1058.4,0.944824,0.348032,0.00592,0.196832,0.005696,0.004544,0.006144,0.00736,0.006624,0.108384,0.006528
+1534,1007.63,0.992432,0.354304,0.006144,0.208128,0.004864,0.004096,0.006144,0.006272,0.007648,0.104448,0.00656
+1535,1627.33,0.614502,0.352352,0.005792,0.20256,0.0048,0.004128,0.006112,0.006144,0.00752,0.108544,0.006752
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..0fa4e14
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1305.28,0.822969,0.318965,0.00557231,0.21955,0.00528191,0.00502478,0.00534025,0.00588906,0.00581694,0.0610367,0.00545328
+max_1024,1821.66,2.39026,0.949152,0.020896,0.835552,0.04096,0.028704,0.022176,0.040736,0.026752,0.090592,0.036672
+min_1024,418.365,0.54895,0.274336,0.004288,0.192416,0.004064,0.004064,0.004096,0.004288,0.004448,0.04096,0.004128
+512,1590.68,0.628662,0.283968,0.006048,0.20192,0.004896,0.004256,0.005952,0.005824,0.005664,0.043968,0.00544
+513,1208.62,0.827393,0.28544,0.004992,0.204096,0.0048,0.004096,0.005888,0.005696,0.0048,0.045056,0.006016
+514,1724.99,0.579712,0.284512,0.00608,0.200768,0.005536,0.004704,0.005216,0.005056,0.006112,0.045088,0.005952
+515,1356.07,0.737427,0.280864,0.00448,0.19856,0.005472,0.004768,0.00528,0.00496,0.006144,0.045184,0.006016
+516,1572.06,0.636108,0.279104,0.004992,0.198624,0.004096,0.005728,0.004512,0.006144,0.005856,0.043296,0.005856
+517,1371.28,0.729248,0.289664,0.00512,0.2048,0.004096,0.005664,0.005952,0.004768,0.006144,0.047104,0.006016
+518,1358.09,0.736328,0.290816,0.006144,0.208896,0.005728,0.004512,0.005568,0.005792,0.006912,0.04272,0.004544
+519,1267.92,0.788696,0.2888,0.00576,0.207232,0.005536,0.004704,0.006048,0.005728,0.006656,0.04256,0.004576
+520,1114.1,0.897583,0.530272,0.007712,0.445024,0.007552,0.004736,0.005344,0.004896,0.006144,0.043008,0.005856
+521,708.283,1.41187,0.341152,0.005408,0.26208,0.004896,0.004192,0.005856,0.0056,0.004896,0.043008,0.005216
+522,1196.61,0.835693,0.290464,0.006144,0.208576,0.004416,0.005248,0.004992,0.006144,0.005888,0.043264,0.005792
+523,1524.38,0.656006,0.284704,0.00544,0.203456,0.00528,0.004832,0.00528,0.00512,0.006112,0.044576,0.004608
+524,1104.19,0.90564,0.28336,0.004896,0.200704,0.005216,0.004864,0.004256,0.006144,0.006144,0.045056,0.00608
+525,1600,0.625,0.285568,0.00496,0.204,0.004896,0.004096,0.005984,0.005568,0.004832,0.046656,0.004576
+526,1371.28,0.729248,0.284672,0.005664,0.201184,0.004096,0.005728,0.004512,0.006144,0.006144,0.046272,0.004928
+527,1532.93,0.652344,0.293312,0.004864,0.20992,0.004896,0.00432,0.00576,0.005728,0.005984,0.046016,0.005824
+528,1071.55,0.933228,0.497632,0.008192,0.40928,0.005472,0.004864,0.00432,0.006144,0.006144,0.047104,0.006112
+529,799.297,1.2511,0.289312,0.005088,0.204672,0.004224,0.0056,0.00464,0.006176,0.00576,0.047456,0.005696
+530,1302.38,0.767822,0.306912,0.004608,0.224736,0.00464,0.004256,0.005984,0.005856,0.005728,0.04576,0.005344
+531,1237.28,0.808228,0.288288,0.006144,0.205824,0.004928,0.004288,0.005632,0.004608,0.006144,0.045056,0.005664
+532,1650.28,0.605957,0.290208,0.006048,0.206144,0.004896,0.004096,0.005984,0.005824,0.00576,0.04592,0.005536
+533,1302.38,0.767822,0.2912,0.00496,0.210208,0.0048,0.004096,0.00608,0.006208,0.006144,0.043008,0.005696
+534,1474.71,0.678101,0.28672,0.00576,0.207232,0.004128,0.00576,0.004448,0.006144,0.006144,0.04272,0.004384
+535,1405.87,0.711304,0.305152,0.006144,0.223232,0.005504,0.004736,0.005568,0.005728,0.005088,0.044032,0.00512
+536,1296.41,0.771362,0.2888,0.005856,0.208864,0.004416,0.005376,0.004864,0.006048,0.005504,0.043424,0.004448
+537,636.47,1.57117,0.3,0.007136,0.21504,0.005312,0.004832,0.004224,0.006112,0.006144,0.045056,0.006144
+538,1489.45,0.671387,0.286592,0.005888,0.203008,0.00432,0.005664,0.004352,0.006144,0.006144,0.045056,0.006016
+539,1496.26,0.668335,0.28672,0.005408,0.20144,0.00512,0.004864,0.004352,0.006144,0.005984,0.048576,0.004832
+540,654.731,1.52734,0.3112,0.006144,0.223264,0.005408,0.0048,0.005312,0.004928,0.006144,0.049152,0.006048
+541,1319.8,0.75769,0.30992,0.004768,0.223232,0.005792,0.004448,0.005632,0.005728,0.00704,0.04832,0.00496
+542,1281,0.78064,0.290816,0.006016,0.20448,0.004544,0.005216,0.005024,0.006144,0.006144,0.047104,0.006144
+543,1503.12,0.665283,0.310432,0.006144,0.22528,0.005888,0.004352,0.005696,0.005728,0.00496,0.047072,0.005312
+544,1386.59,0.721191,0.522272,0.006144,0.425984,0.016544,0.005664,0.004448,0.006112,0.006144,0.046784,0.004448
+545,737.354,1.3562,0.29056,0.00464,0.206208,0.004736,0.004096,0.00608,0.005728,0.005728,0.048,0.005344
+546,1422.47,0.703003,0.285536,0.00496,0.198656,0.005408,0.004832,0.00528,0.00496,0.006144,0.05088,0.004416
+547,1383.32,0.7229,0.287776,0.006144,0.198656,0.005248,0.004992,0.005728,0.004544,0.006112,0.051072,0.00528
+548,1430.17,0.699219,0.311488,0.004896,0.22464,0.004736,0.004096,0.00592,0.00576,0.005728,0.050176,0.005536
+549,1293.95,0.772827,0.288768,0.00544,0.201408,0.004096,0.005728,0.004544,0.006112,0.00608,0.05056,0.0048
+550,1464.16,0.682983,0.284,0.00576,0.1968,0.004288,0.005728,0.004512,0.006144,0.005952,0.049344,0.005472
+551,1560.08,0.640991,0.286976,0.005664,0.199392,0.00592,0.00432,0.005728,0.006368,0.005632,0.049248,0.004704
+552,1478.7,0.67627,0.290528,0.00592,0.204352,0.004768,0.004096,0.00608,0.00576,0.00576,0.047936,0.005856
+553,1356.74,0.737061,0.518144,0.006144,0.427872,0.006304,0.006144,0.005344,0.004896,0.006144,0.049152,0.006144
+554,704.567,1.41931,0.28224,0.00448,0.2,0.0048,0.004096,0.00608,0.005536,0.004768,0.047104,0.005376
+555,1590.37,0.628784,0.281728,0.005856,0.198304,0.004736,0.004224,0.005888,0.0056,0.004768,0.047072,0.00528
+556,1512.56,0.661133,0.282688,0.005376,0.195392,0.005472,0.004768,0.005344,0.004896,0.006144,0.050496,0.0048
+557,1342.07,0.745117,0.282656,0.005792,0.196992,0.005728,0.00448,0.005792,0.005728,0.004864,0.048864,0.004416
+558,1570.85,0.636597,0.286432,0.006112,0.200704,0.004128,0.005632,0.004608,0.006144,0.00576,0.047488,0.005856
+559,1263.03,0.791748,0.277536,0.005344,0.19456,0.004896,0.004128,0.006144,0.005952,0.005728,0.045472,0.005312
+560,717.589,1.39355,0.280576,0.005632,0.201024,0.004288,0.005472,0.004768,0.006112,0.005728,0.042912,0.00464
+561,1069.03,0.935425,0.528384,0.006144,0.432128,0.01552,0.00496,0.00576,0.005792,0.004832,0.048384,0.004864
+562,783.549,1.27625,0.307232,0.005408,0.221888,0.00416,0.005568,0.004672,0.006144,0.00592,0.048448,0.005024
+563,1310.3,0.763184,0.285184,0.004896,0.200704,0.005312,0.004832,0.004224,0.006112,0.006144,0.047104,0.005856
+564,1669.45,0.598999,0.278528,0.005888,0.198912,0.00512,0.00512,0.005216,0.005024,0.006144,0.042304,0.0048
+565,1459.47,0.685181,0.280352,0.005408,0.19968,0.005216,0.004704,0.004416,0.006144,0.006144,0.043008,0.005632
+566,1434.17,0.697266,0.278016,0.004544,0.198656,0.005152,0.004864,0.00432,0.006144,0.006144,0.04288,0.005312
+567,1490,0.671143,0.2792,0.004736,0.198656,0.005568,0.004672,0.006112,0.00576,0.005728,0.04304,0.004928
+568,1384.49,0.72229,0.282368,0.00544,0.202592,0.004896,0.00416,0.00592,0.00576,0.004704,0.043008,0.005888
+569,1510.32,0.662109,0.548896,0.006144,0.466944,0.00752,0.004768,0.00592,0.005792,0.004672,0.042496,0.00464
+570,637.758,1.56799,0.277152,0.004736,0.19984,0.004928,0.004128,0.005888,0.005696,0.0048,0.042656,0.00448
+571,1697.82,0.588989,0.274336,0.005632,0.193024,0.005824,0.004416,0.005536,0.004704,0.006144,0.043008,0.006048
+572,1295.59,0.771851,0.27552,0.005984,0.19472,0.004096,0.00592,0.00432,0.006144,0.006144,0.04288,0.005312
+573,1483.25,0.674194,0.2744,0.00576,0.194112,0.004896,0.00416,0.00592,0.0056,0.00592,0.04192,0.006112
+574,1466,0.682129,0.274432,0.005792,0.19424,0.004768,0.004192,0.006048,0.005472,0.004768,0.043008,0.006144
+575,1637.42,0.610718,0.274432,0.006016,0.194304,0.004512,0.005248,0.00496,0.005984,0.005696,0.04272,0.004992
+576,1491.9,0.670288,0.276864,0.004736,0.197888,0.004864,0.004096,0.005984,0.005728,0.005728,0.041952,0.005888
+577,1335.72,0.748657,0.294528,0.004448,0.216832,0.004384,0.005376,0.004832,0.006048,0.005568,0.041632,0.005408
+578,1399.62,0.714478,0.55648,0.00448,0.47088,0.006304,0.005664,0.004576,0.006144,0.00592,0.0472,0.005312
+579,581.117,1.72083,0.337952,0.005472,0.251616,0.005056,0.004096,0.006048,0.005792,0.005696,0.049696,0.00448
+580,1617.69,0.618164,0.290816,0.005824,0.20448,0.004736,0.004192,0.006048,0.006016,0.00576,0.0488,0.00496
+581,1430.92,0.698853,0.29296,0.005376,0.205408,0.00432,0.005472,0.004768,0.006144,0.006144,0.050528,0.0048
+582,1433.67,0.69751,0.292768,0.005824,0.20512,0.00512,0.004864,0.004384,0.006144,0.005888,0.049376,0.006048
+583,1218.32,0.820801,0.291616,0.00512,0.20592,0.004896,0.004224,0.005856,0.005664,0.004864,0.049152,0.00592
+584,1663.35,0.601196,0.296512,0.006144,0.208256,0.004736,0.004096,0.006144,0.005696,0.005696,0.050048,0.005696
+585,1302.18,0.767944,0.302784,0.005952,0.21472,0.004608,0.005152,0.005088,0.006048,0.00624,0.049152,0.005824
+586,1437.7,0.695557,0.302368,0.005888,0.217344,0.0056,0.00464,0.00544,0.006848,0.00592,0.04528,0.005408
+587,1359.22,0.735718,0.28768,0.005056,0.20848,0.004512,0.005184,0.005056,0.005888,0.005728,0.043072,0.004704
+588,686.27,1.45715,0.296,0.01024,0.210464,0.004576,0.005184,0.005056,0.005888,0.005696,0.043136,0.00576
+589,1432.17,0.698242,0.280576,0.006144,0.200032,0.004768,0.004096,0.006112,0.005696,0.005664,0.04192,0.006144
+590,1583.3,0.631592,0.279584,0.00512,0.198688,0.00544,0.004704,0.005184,0.005152,0.006112,0.04448,0.004704
+591,1381.22,0.723999,0.278112,0.005472,0.195232,0.00528,0.004864,0.004192,0.006144,0.006112,0.045088,0.005728
+592,1540.43,0.64917,0.27856,0.005568,0.195136,0.005728,0.004512,0.0056,0.00576,0.005024,0.04672,0.004512
+593,1443.02,0.692993,0.282688,0.005856,0.198944,0.005408,0.004832,0.005984,0.00576,0.005664,0.045888,0.004352
+594,1227.63,0.814575,0.289408,0.004736,0.202784,0.00544,0.004768,0.005344,0.004928,0.006112,0.05072,0.004576
+595,1537.83,0.650269,0.293568,0.005088,0.206848,0.005184,0.004832,0.00432,0.006144,0.006144,0.049152,0.005856
+596,701.55,1.42542,0.321536,0.007936,0.23168,0.005888,0.004384,0.005664,0.005888,0.004832,0.050624,0.00464
+597,1515.63,0.65979,0.286752,0.0048,0.202752,0.005184,0.004864,0.004288,0.008,0.00592,0.045472,0.005472
+598,1167.45,0.856567,0.286496,0.005408,0.198816,0.004736,0.004096,0.006144,0.005952,0.005696,0.049792,0.005856
+599,1158.7,0.863037,0.307136,0.005632,0.219648,0.005504,0.004736,0.005344,0.004896,0.006144,0.049152,0.00608
+600,1651.61,0.605469,0.296832,0.005632,0.203264,0.004096,0.00576,0.00448,0.006144,0.005376,0.056064,0.006016
+601,1402.26,0.713135,0.300416,0.005376,0.205728,0.005408,0.004832,0.005344,0.004896,0.006144,0.057344,0.005344
+602,1205.24,0.829712,0.303104,0.005728,0.209312,0.005824,0.004416,0.005632,0.005728,0.005024,0.055296,0.006144
+603,1116.53,0.89563,0.305696,0.004704,0.212992,0.004096,0.005728,0.004512,0.006144,0.005792,0.055648,0.00608
+604,1660.99,0.602051,0.538624,0.005728,0.413568,0.00656,0.004224,0.004096,0.006144,0.006144,0.061344,0.030816
+605,697.073,1.43457,0.293888,0.00608,0.20416,0.0048,0.005184,0.005056,0.006144,0.006144,0.05088,0.00544
+606,1347.15,0.74231,0.293728,0.00496,0.200704,0.004096,0.006176,0.005344,0.004864,0.006144,0.056384,0.005056
+607,1473.12,0.678833,0.281536,0.005056,0.19456,0.005504,0.004736,0.005408,0.004832,0.006144,0.050976,0.00432
+608,1419.51,0.704468,0.287392,0.004768,0.200704,0.004096,0.005824,0.004416,0.006144,0.006144,0.050656,0.00464
+609,1466.79,0.681763,0.284064,0.006144,0.19456,0.005888,0.004352,0.005824,0.00576,0.0048,0.0512,0.005536
+610,1487.02,0.672485,0.2824,0.004384,0.19664,0.0056,0.004608,0.0056,0.00576,0.005024,0.049152,0.005632
+611,1157.55,0.863892,0.290976,0.005376,0.20368,0.005152,0.004864,0.00432,0.006144,0.006144,0.050464,0.004832
+612,1416.32,0.706055,0.285312,0.004704,0.206624,0.00432,0.00544,0.0048,0.0056,0.005728,0.043616,0.00448
+613,645.853,1.54834,0.315552,0.007488,0.228192,0.005216,0.004864,0.004224,0.006144,0.006144,0.048224,0.005056
+614,1602.19,0.624146,0.291936,0.005888,0.205056,0.005632,0.004608,0.005408,0.004832,0.006144,0.049088,0.00528
+615,1463.64,0.683228,0.28624,0.006144,0.198656,0.005792,0.004448,0.005696,0.005792,0.004928,0.04912,0.005664
+616,1274.03,0.784912,0.282528,0.004736,0.202752,0.005504,0.004768,0.005344,0.004864,0.006144,0.043008,0.005408
+617,1643.33,0.608521,0.284512,0.005792,0.201088,0.00528,0.004736,0.004288,0.006144,0.006144,0.045056,0.005984
+618,1013.86,0.986328,0.292864,0.006144,0.206848,0.004224,0.005728,0.004416,0.006112,0.00608,0.048448,0.004864
+619,1280,0.78125,0.290816,0.005376,0.205568,0.00544,0.0048,0.005248,0.006464,0.005984,0.04736,0.004576
+620,1009.61,0.990479,0.30496,0.006016,0.219264,0.005408,0.004832,0.005248,0.004992,0.006144,0.047104,0.005952
+621,1225.98,0.815674,0.530592,0.005056,0.442368,0.007232,0.005056,0.005632,0.00576,0.006368,0.047776,0.005344
+622,750.527,1.3324,0.301024,0.005408,0.211872,0.005408,0.004832,0.005248,0.004992,0.006144,0.0512,0.00592
+623,1307.37,0.764893,0.313568,0.004288,0.224576,0.0048,0.004096,0.006144,0.00576,0.006496,0.052768,0.00464
+624,1038.14,0.963257,0.319264,0.004512,0.230336,0.004896,0.004288,0.00576,0.005728,0.006016,0.052096,0.005632
+625,1431.17,0.69873,0.29696,0.005504,0.20544,0.005824,0.004416,0.005664,0.004608,0.007296,0.052064,0.006144
+626,1675.26,0.596924,0.286976,0.005376,0.197632,0.005152,0.004864,0.00432,0.006144,0.006144,0.052224,0.00512
+627,1334.64,0.749268,0.284576,0.006048,0.196704,0.005888,0.004352,0.006144,0.006112,0.005696,0.047584,0.006048
+628,1341.41,0.745483,0.294912,0.005952,0.209088,0.004096,0.005664,0.004576,0.006144,0.006144,0.047104,0.006144
+629,1363.06,0.733643,0.502016,0.004736,0.415392,0.006496,0.006048,0.005216,0.00512,0.006144,0.047104,0.00576
+630,764.25,1.30847,0.296608,0.005792,0.214528,0.004896,0.00416,0.005888,0.00576,0.006272,0.04352,0.005792
+631,1391.54,0.718628,0.285856,0.005888,0.20096,0.005152,0.004864,0.00432,0.006144,0.006144,0.047104,0.00528
+632,1542.46,0.648315,0.2824,0.005408,0.198944,0.004704,0.005664,0.004576,0.006144,0.005856,0.045344,0.00576
+633,1390.6,0.719116,0.27456,0.005344,0.19552,0.005632,0.004576,0.005504,0.00576,0.00512,0.04096,0.006144
+634,1573.27,0.63562,0.278048,0.005504,0.195232,0.005696,0.004512,0.005632,0.005728,0.005024,0.045056,0.005664
+635,1358.54,0.736084,0.278528,0.00592,0.194784,0.005728,0.004512,0.005568,0.006656,0.005728,0.043488,0.006144
+636,1518.44,0.658569,0.281056,0.004576,0.200736,0.005152,0.004768,0.004384,0.00608,0.005696,0.044576,0.005088
+637,883.425,1.13196,0.31952,0.005056,0.23104,0.00448,0.00528,0.00496,0.005888,0.005696,0.05168,0.00544
+638,818.3,1.22205,0.552288,0.005408,0.412416,0.030944,0.028704,0.005472,0.004768,0.006176,0.052864,0.005536
+639,994.658,1.00537,0.31648,0.005952,0.231616,0.005472,0.004768,0.005408,0.004832,0.006144,0.046944,0.005344
+640,1324.49,0.755005,0.310816,0.006144,0.22528,0.005152,0.005088,0.00528,0.00496,0.0072,0.046048,0.005664
+641,1486.21,0.672852,0.294912,0.00576,0.213152,0.00432,0.00544,0.0048,0.006144,0.006144,0.044512,0.00464
+642,1290.69,0.77478,0.292896,0.005376,0.211424,0.004416,0.005344,0.004896,0.006112,0.006016,0.044384,0.004928
+643,1564.85,0.639038,0.2952,0.00448,0.212576,0.004416,0.005344,0.004896,0.005824,0.00592,0.0456,0.006144
+644,1374.96,0.727295,0.288512,0.004448,0.206432,0.004512,0.005248,0.004992,0.006016,0.005728,0.0456,0.005536
+645,1357.64,0.736572,0.292128,0.005408,0.207072,0.004608,0.00512,0.00512,0.006144,0.006176,0.047072,0.005408
+646,1305.29,0.766113,0.522432,0.004992,0.434176,0.007936,0.004352,0.005664,0.00576,0.00496,0.049024,0.005568
+647,740.352,1.35071,0.298496,0.005632,0.213248,0.004352,0.005408,0.004832,0.006144,0.005504,0.047744,0.005632
+648,1251.64,0.79895,0.299008,0.006016,0.21312,0.00592,0.00432,0.005728,0.005696,0.00496,0.04816,0.005088
+649,1588.83,0.629395,0.2888,0.006144,0.200704,0.005248,0.004864,0.004256,0.006112,0.006144,0.049152,0.006176
+650,1308.42,0.764282,0.282656,0.006016,0.194688,0.004096,0.005632,0.004608,0.006144,0.006112,0.05056,0.0048
+651,1345.38,0.743286,0.285984,0.00544,0.197312,0.004096,0.005664,0.005792,0.004928,0.006144,0.0512,0.005408
+652,1638.07,0.610474,0.28832,0.005568,0.198496,0.004832,0.004096,0.00608,0.005824,0.005728,0.052,0.005696
+653,1214.17,0.823608,0.28896,0.005408,0.198912,0.004768,0.004128,0.00608,0.005632,0.005696,0.0536,0.004736
+654,1606.9,0.622314,0.292896,0.006144,0.200704,0.005568,0.004672,0.005376,0.004864,0.006144,0.054464,0.00496
+655,1424.45,0.702026,0.533408,0.005056,0.428,0.02048,0.005984,0.004256,0.006144,0.006144,0.0512,0.006144
+656,660.698,1.51355,0.308128,0.005024,0.216864,0.00432,0.00544,0.0048,0.006144,0.006144,0.054432,0.00496
+657,1620.57,0.617065,0.29312,0.004448,0.203968,0.004832,0.004096,0.005856,0.00576,0.004768,0.054752,0.00464
+658,1508.1,0.663086,0.290848,0.005568,0.199232,0.004096,0.006144,0.005376,0.004864,0.006144,0.054784,0.00464
+659,1364.88,0.732666,0.286688,0.005536,0.195136,0.00448,0.00528,0.004928,0.006048,0.005632,0.053856,0.005792
+660,1260.89,0.793091,0.281792,0.005856,0.194368,0.004576,0.004128,0.006112,0.0056,0.00576,0.05008,0.005312
+661,1559.19,0.641357,0.294912,0.005504,0.205312,0.004224,0.005568,0.004672,0.006144,0.005888,0.053152,0.004448
+662,1284.62,0.778442,0.296256,0.00608,0.204864,0.005312,0.004864,0.005184,0.0064,0.004864,0.053248,0.00544
+663,1354.27,0.738403,0.304832,0.005376,0.213856,0.005792,0.004448,0.005632,0.005696,0.005056,0.053248,0.005728
+664,705.963,1.4165,0.30176,0.006816,0.210976,0.005664,0.004544,0.005504,0.004832,0.006048,0.052352,0.005024
+665,1413.88,0.707275,0.284576,0.004512,0.198496,0.004192,0.00576,0.004384,0.006176,0.005728,0.049536,0.005792
+666,1524.94,0.655762,0.290208,0.004352,0.202272,0.00448,0.005216,0.005024,0.00576,0.005728,0.052,0.005376
+667,1251.07,0.799316,0.284192,0.00464,0.19568,0.004864,0.004288,0.005984,0.005824,0.005792,0.051808,0.005312
+668,1609.43,0.621338,0.284672,0.005408,0.195328,0.005536,0.004672,0.005376,0.004864,0.006144,0.052928,0.004416
+669,1485.4,0.673218,0.285216,0.004736,0.19456,0.005632,0.004608,0.005536,0.005792,0.005056,0.053248,0.006048
+670,1350.7,0.740356,0.280576,0.005984,0.192672,0.005504,0.004736,0.00528,0.00496,0.006144,0.05088,0.004416
+671,1490.27,0.671021,0.288832,0.00544,0.201472,0.005568,0.004672,0.00592,0.00576,0.004704,0.050784,0.004512
+672,1202.05,0.831909,0.503968,0.005408,0.414592,0.007488,0.0048,0.005248,0.004992,0.006144,0.050816,0.00448
+673,814.8,1.22729,0.290368,0.006144,0.205952,0.004672,0.004416,0.00544,0.004832,0.006112,0.047136,0.005664
+674,1548.88,0.64563,0.28896,0.005376,0.201664,0.004224,0.006016,0.005376,0.004864,0.006144,0.050912,0.004384
+675,807.571,1.23828,0.302976,0.00544,0.215744,0.006048,0.005504,0.004832,0.006144,0.005824,0.047424,0.006016
+676,1395.33,0.716675,0.296608,0.005376,0.209856,0.005888,0.004352,0.005728,0.005696,0.00496,0.049152,0.0056
+677,1531.79,0.652832,0.284928,0.005408,0.198848,0.004928,0.00512,0.005088,0.006144,0.005888,0.047424,0.00608
+678,1527.79,0.654541,0.286336,0.005824,0.198336,0.004736,0.005632,0.004608,0.005984,0.00592,0.049536,0.00576
+679,1245.74,0.802734,0.291072,0.004832,0.202752,0.005856,0.004384,0.005504,0.006336,0.005664,0.05008,0.005664
+680,618.498,1.61682,0.291072,0.005376,0.20736,0.004608,0.005184,0.005056,0.005728,0.004512,0.04832,0.004928
+681,1521.83,0.657104,0.29696,0.007584,0.207456,0.005376,0.004864,0.004096,0.006144,0.006176,0.050496,0.004768
+682,1405.39,0.711548,0.284704,0.006144,0.196608,0.005888,0.004352,0.005632,0.00576,0.004992,0.05088,0.004448
+683,1558.6,0.641602,0.289056,0.004384,0.202752,0.005184,0.004704,0.004448,0.006144,0.006144,0.050912,0.004384
+684,1452.48,0.688477,0.281312,0.004832,0.19456,0.00544,0.0048,0.005536,0.005792,0.005088,0.050624,0.00464
+685,1363.74,0.733276,0.282624,0.005632,0.195072,0.005856,0.004384,0.006144,0.006144,0.005856,0.04912,0.004416
+686,1396.52,0.716064,0.281472,0.004992,0.195808,0.004896,0.004096,0.006016,0.005536,0.004832,0.050784,0.004512
+687,1596.57,0.626343,0.284416,0.005376,0.198592,0.005024,0.005312,0.004928,0.006048,0.00576,0.047584,0.005792
+688,1299.08,0.769775,0.288096,0.005824,0.200768,0.004352,0.005408,0.004832,0.006144,0.00576,0.049536,0.005472
+689,1477.37,0.67688,0.28672,0.006048,0.200576,0.00432,0.00544,0.005952,0.004992,0.006144,0.04848,0.004768
+690,653.217,1.53088,0.292864,0.008192,0.204352,0.004544,0.005216,0.005024,0.006144,0.006016,0.048352,0.005024
+691,1504.78,0.664551,0.285792,0.006112,0.199744,0.004896,0.004288,0.006144,0.006144,0.006016,0.047136,0.005312
+692,1385.89,0.721558,0.278528,0.006144,0.194464,0.004192,0.0056,0.00464,0.006144,0.00576,0.04656,0.005024
+693,1577.51,0.633911,0.280608,0.005824,0.196384,0.00464,0.004128,0.006048,0.005792,0.00576,0.047136,0.004896
+694,962.632,1.03882,0.280576,0.005472,0.19728,0.005312,0.004288,0.004736,0.006144,0.00576,0.046656,0.004928
+695,1524.09,0.656128,0.2856,0.005024,0.201984,0.004864,0.005408,0.004832,0.006144,0.00576,0.046624,0.00496
+696,1186.04,0.84314,0.282944,0.004512,0.200608,0.005728,0.004512,0.005504,0.004768,0.006112,0.046112,0.005088
+697,1355.84,0.737549,0.287008,0.0048,0.202752,0.006048,0.004192,0.005888,0.00608,0.005728,0.045792,0.005728
+698,813.829,1.22876,0.292768,0.008192,0.2048,0.004096,0.005664,0.004576,0.006144,0.00576,0.047488,0.006048
+699,1292.11,0.773926,0.288768,0.006144,0.202688,0.00416,0.0056,0.00464,0.006144,0.005856,0.048544,0.004992
+700,1760.21,0.568115,0.282624,0.005952,0.194752,0.005856,0.004384,0.006144,0.006016,0.005888,0.047488,0.006144
+701,1408.77,0.709839,0.280672,0.005376,0.19504,0.00448,0.005856,0.004416,0.006112,0.006112,0.048512,0.004768
+702,1452.74,0.688354,0.282304,0.005408,0.194624,0.004768,0.004096,0.006112,0.005728,0.005696,0.050048,0.005824
+703,1301.76,0.768188,0.280128,0.005408,0.193248,0.005696,0.004544,0.005504,0.005792,0.005088,0.049152,0.005696
+704,1694.66,0.590088,0.280576,0.006144,0.192512,0.005536,0.004704,0.005184,0.005056,0.006144,0.050976,0.00432
+705,1032.13,0.968872,0.290272,0.005344,0.20096,0.004864,0.004096,0.006144,0.006144,0.006048,0.051296,0.005376
+706,1272.25,0.786011,0.284672,0.005984,0.198816,0.005344,0.004832,0.005248,0.005056,0.006144,0.048704,0.004544
+707,881.239,1.13477,0.284608,0.007488,0.19728,0.004416,0.005344,0.004896,0.006112,0.005728,0.047552,0.005792
+708,1635.13,0.611572,0.278528,0.005984,0.19472,0.0056,0.00464,0.005504,0.004768,0.006112,0.046656,0.004544
+709,1467.05,0.681641,0.280544,0.005856,0.194848,0.005216,0.004992,0.005216,0.005056,0.006144,0.047104,0.006112
+710,1238.96,0.807129,0.283072,0.004544,0.194496,0.00416,0.005536,0.004704,0.006048,0.005728,0.051712,0.006144
+711,1729.73,0.578125,0.284512,0.004352,0.19408,0.004448,0.005568,0.004672,0.006144,0.006144,0.053248,0.005856
+712,1395.57,0.716553,0.281312,0.004832,0.19664,0.004064,0.005856,0.004384,0.006144,0.005952,0.04864,0.0048
+713,1450.94,0.689209,0.279552,0.005952,0.192704,0.005696,0.004576,0.005568,0.005728,0.005056,0.04896,0.005312
+714,797.197,1.25439,0.2952,0.004384,0.209952,0.004896,0.00432,0.00576,0.006496,0.006144,0.047136,0.006112
+715,1282.4,0.779785,0.53632,0.004512,0.41552,0.006368,0.005536,0.004704,0.005984,0.005728,0.059968,0.028
+716,714.336,1.3999,0.291072,0.005408,0.205792,0.005728,0.004512,0.005568,0.004704,0.006112,0.048224,0.005024
+717,1522.96,0.656616,0.280576,0.006112,0.19648,0.004256,0.005504,0.004736,0.006144,0.005792,0.046912,0.00464
+718,1297.02,0.770996,0.279872,0.005376,0.19536,0.005632,0.004608,0.00544,0.004832,0.006112,0.047104,0.005408
+719,1369.44,0.730225,0.282336,0.005472,0.196352,0.004896,0.004224,0.006112,0.005696,0.005824,0.047936,0.005824
+720,1411.68,0.708374,0.297792,0.004992,0.21456,0.004576,0.005184,0.005056,0.005792,0.005568,0.045984,0.00608
+721,1575.69,0.634644,0.29328,0.004608,0.206784,0.005728,0.00448,0.006144,0.00592,0.005728,0.048832,0.005056
+722,1180.4,0.847168,0.288544,0.005632,0.201216,0.005824,0.004416,0.005664,0.005728,0.004992,0.049152,0.00592
+723,1626.69,0.614746,0.284672,0.006144,0.200576,0.004224,0.005536,0.004704,0.006144,0.005856,0.047168,0.00432
+724,1486.21,0.672852,0.540992,0.005536,0.414624,0.038144,0.012768,0.004416,0.006112,0.006112,0.04736,0.00592
+725,667.753,1.49756,0.284192,0.00576,0.196608,0.004512,0.005248,0.00496,0.005856,0.005664,0.04992,0.005664
+726,1304.67,0.766479,0.399392,0.005472,0.3096,0.004416,0.00544,0.0048,0.006144,0.005696,0.053088,0.004736
+727,1213.27,0.824219,0.359584,0.005632,0.250368,0.004096,0.014336,0.005728,0.00576,0.014976,0.053376,0.005312
+728,1595.64,0.626709,0.290592,0.005408,0.197632,0.005248,0.004832,0.004256,0.007904,0.005696,0.053984,0.005632
+729,1395.1,0.716797,0.287392,0.0048,0.200672,0.005632,0.004608,0.00544,0.004832,0.006112,0.050752,0.004544
+730,1392.49,0.71814,0.290528,0.006048,0.2008,0.005888,0.004352,0.005888,0.005792,0.0048,0.051104,0.005856
+731,1481.37,0.675049,0.295808,0.00512,0.210944,0.004096,0.005632,0.004608,0.006144,0.005984,0.047296,0.005984
+732,1372.42,0.728638,0.294656,0.006144,0.208896,0.005152,0.004864,0.00432,0.006144,0.006144,0.047104,0.005888
+733,505.804,1.97705,0.406176,0.006816,0.294912,0.013856,0.004576,0.005888,0.020256,0.006112,0.048896,0.004864
+734,1199.06,0.833984,0.306272,0.006016,0.219264,0.005216,0.004864,0.004256,0.006144,0.006144,0.049088,0.00528
+735,1433.17,0.697754,0.294656,0.005376,0.201472,0.005728,0.004512,0.005536,0.00576,0.005088,0.055296,0.005888
+736,1583.91,0.631348,0.287296,0.004736,0.19664,0.005856,0.004352,0.005536,0.005728,0.00512,0.05328,0.006048
+737,1492.17,0.670166,0.290528,0.005984,0.199872,0.004928,0.004256,0.005632,0.00576,0.004992,0.053248,0.005856
+738,1446.84,0.691162,0.285536,0.00496,0.196576,0.004128,0.005632,0.004608,0.006144,0.005888,0.053216,0.004384
+739,1291.3,0.774414,0.294944,0.005472,0.203424,0.005216,0.004832,0.005696,0.005856,0.005024,0.05472,0.004704
+740,1470.47,0.680054,0.509984,0.005888,0.413952,0.006336,0.005664,0.004384,0.006144,0.006144,0.056544,0.004928
+741,652.853,1.53174,0.294656,0.005504,0.199104,0.004288,0.00544,0.0048,0.006144,0.005728,0.05776,0.005888
+742,1513.95,0.660522,0.289216,0.004544,0.19456,0.005952,0.004288,0.005696,0.005792,0.004896,0.058752,0.004736
+743,1482.18,0.674683,0.294272,0.006112,0.194592,0.005472,0.004768,0.00512,0.00512,0.006144,0.06144,0.005504
+744,1520.98,0.657471,0.299744,0.004896,0.200704,0.00576,0.00448,0.005344,0.004896,0.006144,0.06144,0.00608
+745,1322.57,0.756104,0.296032,0.005792,0.19664,0.004416,0.00544,0.0048,0.006144,0.005696,0.061792,0.005312
+746,1498.45,0.667358,0.295648,0.004832,0.197952,0.004704,0.004192,0.005792,0.005792,0.0048,0.062752,0.004832
+747,1392.01,0.718384,0.304544,0.005376,0.205184,0.004512,0.005248,0.00496,0.00592,0.00592,0.06192,0.005504
+748,1178.2,0.848755,0.296832,0.004512,0.206816,0.005344,0.004864,0.005184,0.005088,0.006144,0.053248,0.005632
+749,1459.21,0.685303,0.300288,0.006144,0.206304,0.00464,0.00512,0.00512,0.005824,0.005664,0.056096,0.005376
+750,723.292,1.38257,0.32432,0.00688,0.22528,0.004128,0.005728,0.00448,0.006144,0.006016,0.061024,0.00464
+751,1373.11,0.728271,0.294944,0.005504,0.19664,0.004704,0.004224,0.006016,0.006144,0.005952,0.060992,0.004768
+752,1099.89,0.90918,0.302176,0.006144,0.202784,0.005856,0.004352,0.005728,0.005664,0.004992,0.061472,0.005184
+753,1638.07,0.610474,0.295392,0.004576,0.198656,0.004128,0.005696,0.004512,0.006144,0.00608,0.060704,0.004896
+754,1391.78,0.718506,0.295008,0.00464,0.196608,0.00576,0.00448,0.006144,0.00592,0.005696,0.060064,0.005696
+755,1446.07,0.691528,0.292864,0.005888,0.196352,0.004608,0.005184,0.005056,0.006016,0.005696,0.059456,0.004608
+756,1384.49,0.72229,0.316288,0.004992,0.218624,0.004608,0.005152,0.005088,0.006144,0.006144,0.059392,0.006144
+757,1349.37,0.741089,0.301056,0.006144,0.204128,0.004768,0.00512,0.00512,0.006144,0.005856,0.058752,0.005024
+758,602.132,1.66077,0.3072,0.007776,0.209312,0.0056,0.00464,0.005408,0.004832,0.006144,0.058688,0.0048
+759,1433.42,0.697632,0.296096,0.005504,0.199296,0.005408,0.004832,0.005216,0.005024,0.006144,0.059296,0.005376
+760,1484.33,0.673706,0.29632,0.006144,0.195936,0.004768,0.004096,0.006112,0.005632,0.005728,0.0624,0.005504
+761,1528.36,0.654297,0.292896,0.005664,0.196672,0.004512,0.005472,0.004768,0.006144,0.005664,0.059296,0.004704
+762,1147.98,0.871094,0.290848,0.005728,0.194912,0.00416,0.005632,0.004608,0.006144,0.005984,0.058784,0.004896
+763,1325.14,0.754639,0.29264,0.004544,0.19584,0.004832,0.004096,0.006144,0.006048,0.00576,0.059872,0.005504
+764,1568.45,0.637573,0.28704,0.004512,0.196512,0.004096,0.006144,0.00544,0.0048,0.006144,0.055264,0.004128
+765,1432.17,0.698242,0.301696,0.00512,0.206848,0.005792,0.004448,0.00544,0.0048,0.006144,0.057344,0.00576
+766,961.051,1.04053,0.5712,0.006144,0.423936,0.006144,0.005568,0.004672,0.017504,0.004992,0.065568,0.036672
+767,715.959,1.39673,0.32432,0.004832,0.216672,0.004512,0.005216,0.005024,0.00592,0.005696,0.07168,0.004768
+768,1598.44,0.62561,0.292544,0.004608,0.202752,0.005728,0.004512,0.005568,0.004672,0.006144,0.053248,0.005312
+769,1371.28,0.729248,0.284704,0.005536,0.195168,0.005792,0.004448,0.005632,0.005792,0.00496,0.052896,0.00448
+770,1675.26,0.596924,0.288768,0.005376,0.197376,0.005344,0.004896,0.004096,0.006144,0.006112,0.05456,0.004864
+771,889.468,1.12427,0.368032,0.005376,0.269248,0.004096,0.005632,0.004608,0.006144,0.006144,0.061056,0.005728
+772,1592.23,0.628052,0.308992,0.006144,0.218496,0.004736,0.00416,0.00608,0.005728,0.005664,0.052096,0.005888
+773,1284.01,0.778809,0.29696,0.006144,0.206848,0.00576,0.00448,0.00544,0.0048,0.006144,0.05248,0.004864
+774,1446.07,0.691528,0.507904,0.006016,0.415872,0.007936,0.004352,0.005728,0.005856,0.006592,0.05072,0.004832
+775,669.445,1.49377,0.292576,0.005408,0.203616,0.005728,0.004512,0.005536,0.00576,0.005088,0.0512,0.005728
+776,1563.36,0.639648,0.29008,0.005888,0.20096,0.005184,0.004864,0.004288,0.006144,0.006048,0.051296,0.005408
+777,1419.76,0.704346,0.28928,0.004864,0.2,0.0048,0.0056,0.00464,0.006144,0.006016,0.051328,0.005888
+778,1536.38,0.650879,0.28656,0.005632,0.197152,0.005184,0.005024,0.00576,0.00576,0.004864,0.0512,0.005984
+779,1457.91,0.685913,0.287424,0.0048,0.19664,0.005824,0.004416,0.005664,0.005824,0.004864,0.054912,0.00448
+780,1377.73,0.72583,0.29312,0.005056,0.200416,0.004384,0.00592,0.00432,0.006144,0.006144,0.055296,0.00544
+781,1385.42,0.721802,0.291616,0.004896,0.199904,0.004896,0.004096,0.006016,0.006272,0.005984,0.054496,0.005056
+782,1445.31,0.691895,0.303104,0.005376,0.207392,0.00432,0.00544,0.0048,0.006144,0.006144,0.05872,0.004768
+783,1307.58,0.764771,0.534496,0.005376,0.414432,0.006208,0.005728,0.004512,0.006144,0.006016,0.063488,0.022592
+784,712.72,1.40308,0.309856,0.004704,0.21504,0.005856,0.004384,0.005728,0.005568,0.005088,0.058464,0.005024
+785,1456.87,0.686401,0.295136,0.005376,0.201152,0.00464,0.00416,0.00608,0.006016,0.005824,0.057568,0.00432
+786,1308.63,0.76416,0.342176,0.014816,0.23552,0.005344,0.004864,0.005184,0.005088,0.006144,0.059392,0.005824
+787,1497.62,0.667725,0.291168,0.004512,0.198464,0.004288,0.005472,0.004768,0.006144,0.006144,0.055328,0.006048
+788,1471.79,0.679443,0.28672,0.005696,0.196928,0.004224,0.005536,0.004704,0.006144,0.006144,0.052512,0.004832
+789,1398.91,0.714844,0.291424,0.004704,0.19984,0.004896,0.00416,0.005984,0.005728,0.004672,0.056704,0.004736
+790,684.035,1.46191,0.397088,0.005568,0.303328,0.004448,0.005312,0.004928,0.006016,0.005696,0.055872,0.00592
+791,1233.92,0.810425,0.666496,0.004992,0.526336,0.03072,0.022528,0.005664,0.00576,0.00496,0.059392,0.006144
+792,684.778,1.46033,0.297408,0.004544,0.2048,0.005184,0.004832,0.004352,0.006112,0.005952,0.057312,0.00432
+793,1532.36,0.652588,0.294944,0.005376,0.201504,0.005472,0.004736,0.005216,0.005024,0.006144,0.056448,0.005024
+794,1390.83,0.718994,0.292864,0.005664,0.202368,0.004864,0.004192,0.006144,0.00608,0.005696,0.052832,0.005024
+795,1387.3,0.720825,0.29696,0.00608,0.19632,0.004448,0.005312,0.004928,0.006048,0.005696,0.061984,0.006144
+796,1290.69,0.77478,0.288576,0.005408,0.194816,0.004576,0.004096,0.006144,0.005824,0.005664,0.056096,0.005952
+797,1469.94,0.680298,0.287232,0.004608,0.194496,0.00416,0.0056,0.00464,0.006144,0.005728,0.057088,0.004768
+798,1344.94,0.74353,0.323296,0.0048,0.229376,0.00512,0.004896,0.00432,0.006144,0.006144,0.057152,0.005344
+799,1366.7,0.731689,0.57216,0.004832,0.475136,0.007968,0.005504,0.00496,0.005952,0.005696,0.057024,0.005088
+800,614.093,1.62842,0.303104,0.004448,0.216672,0.004512,0.005216,0.005024,0.005952,0.00576,0.049728,0.005792
+801,1453.51,0.687988,0.31376,0.020896,0.20912,0.005536,0.004704,0.005376,0.006208,0.005888,0.050112,0.00592
+802,1146.86,0.871948,0.30512,0.004512,0.214336,0.004768,0.004128,0.006048,0.00576,0.005728,0.054112,0.005728
+803,1295.79,0.771729,0.30256,0.004576,0.215072,0.005344,0.004832,0.005216,0.006336,0.004864,0.051232,0.005088
+804,1432.92,0.697876,0.3072,0.005536,0.217696,0.005408,0.004832,0.005216,0.005024,0.006144,0.0512,0.006144
+805,1352.71,0.739258,0.299008,0.005408,0.209632,0.005152,0.004832,0.004352,0.006144,0.006016,0.051328,0.006144
+806,1581.16,0.632446,0.290944,0.004512,0.202592,0.004192,0.00592,0.005824,0.00464,0.006144,0.0512,0.00592
+807,1400.58,0.713989,0.557056,0.006144,0.466144,0.006944,0.005664,0.004576,0.006144,0.005856,0.051008,0.004576
+808,599.225,1.66882,0.3072,0.006144,0.218592,0.00464,0.00512,0.00512,0.006016,0.005792,0.049632,0.006144
+809,1532.93,0.652344,0.28656,0.006144,0.202112,0.004736,0.00416,0.00608,0.00576,0.005696,0.045888,0.005984
+810,1626.36,0.614868,0.280416,0.004512,0.196608,0.005248,0.00496,0.005216,0.005056,0.006144,0.047104,0.005568
+811,1476.57,0.677246,0.278816,0.004416,0.194528,0.005888,0.005536,0.00496,0.00608,0.005728,0.046976,0.004704
+812,1425.44,0.701538,0.282528,0.006016,0.196544,0.004288,0.005472,0.004768,0.006144,0.006144,0.047104,0.006048
+813,1440.99,0.69397,0.278528,0.005632,0.193024,0.005664,0.004576,0.00544,0.006368,0.005824,0.04688,0.00512
+814,1485.13,0.67334,0.280864,0.004384,0.196288,0.004416,0.00544,0.0048,0.006144,0.005792,0.048896,0.004704
+815,1365.56,0.7323,0.289248,0.004608,0.206016,0.004896,0.004096,0.006048,0.00576,0.004608,0.04832,0.004896
+816,1455.84,0.68689,0.5192,0.005824,0.4304,0.007264,0.004864,0.004256,0.006144,0.006144,0.049024,0.00528
+817,610.205,1.63879,0.297056,0.004992,0.206848,0.005312,0.004864,0.005184,0.00512,0.006144,0.053248,0.005344
+818,1613.87,0.619629,0.290496,0.004448,0.200704,0.005408,0.0048,0.005888,0.005728,0.004768,0.053248,0.005504
+819,1572.36,0.635986,0.2888,0.006112,0.198496,0.004288,0.00608,0.005312,0.004992,0.006144,0.052832,0.004544
+820,1326.85,0.753662,0.284416,0.004864,0.195648,0.004896,0.004256,0.005792,0.005728,0.004864,0.053056,0.005312
+821,1277.01,0.783081,0.284672,0.005408,0.195296,0.00544,0.004832,0.00576,0.00576,0.004832,0.05232,0.005024
+822,1674.91,0.597046,0.284672,0.005504,0.196256,0.004928,0.004256,0.005856,0.00576,0.0048,0.052576,0.004736
+823,1345.38,0.743286,0.292352,0.006112,0.19584,0.004896,0.004128,0.006112,0.005984,0.005728,0.05792,0.005632
+824,1485.94,0.672974,0.295968,0.00512,0.202752,0.004096,0.005664,0.004576,0.006144,0.006144,0.056864,0.004608
+825,1056.35,0.946655,0.54896,0.005376,0.414528,0.007552,0.004736,0.005152,0.021344,0.026752,0.058848,0.004672
+826,840.464,1.18982,0.292896,0.006144,0.198656,0.005312,0.004864,0.00416,0.006048,0.005728,0.057376,0.004608
+827,1240.27,0.806274,0.293344,0.004544,0.198336,0.004416,0.005344,0.0064,0.005952,0.005888,0.057632,0.004832
+828,1324.49,0.755005,0.315392,0.006144,0.219136,0.005248,0.004864,0.004224,0.006144,0.006144,0.058688,0.0048
+829,1268.11,0.788574,0.291328,0.00496,0.196608,0.00512,0.004832,0.004384,0.006144,0.005792,0.057696,0.005792
+830,1257.79,0.795044,0.294144,0.006112,0.197984,0.0048,0.004096,0.00608,0.005792,0.00576,0.058144,0.005376
+831,1702.76,0.58728,0.290816,0.006144,0.19456,0.005824,0.004416,0.0056,0.00464,0.006144,0.059296,0.004192
+832,1262.25,0.792236,0.301472,0.004512,0.205952,0.004896,0.004224,0.005856,0.005792,0.005792,0.058304,0.006144
+833,1590.06,0.628906,0.291328,0.004576,0.19664,0.005856,0.004352,0.005728,0.005664,0.004992,0.058944,0.004576
+834,624.2,1.60205,0.310944,0.007488,0.21168,0.005216,0.00464,0.00448,0.006144,0.006144,0.059392,0.00576
+835,1375.88,0.726807,0.293024,0.005408,0.197472,0.005664,0.004608,0.005472,0.005792,0.005088,0.058848,0.004672
+836,1566.95,0.638184,0.292864,0.00608,0.194144,0.004576,0.005216,0.005024,0.005824,0.005728,0.060128,0.006144
+837,1529.79,0.653687,0.28672,0.005472,0.193216,0.005216,0.004832,0.004288,0.006112,0.00608,0.05712,0.004384
+838,1381.45,0.723877,0.29712,0.005408,0.203648,0.004096,0.005664,0.004576,0.006144,0.005856,0.056896,0.004832
+839,1417.55,0.705444,0.291456,0.005088,0.197632,0.004928,0.004288,0.005984,0.005792,0.004672,0.05728,0.005792
+840,1439.72,0.69458,0.303136,0.004832,0.206848,0.004096,0.00576,0.00448,0.006144,0.006144,0.059392,0.00544
+841,1333.55,0.749878,0.30864,0.006144,0.212992,0.004096,0.005728,0.004512,0.007584,0.00576,0.056288,0.005536
+842,837.2,1.19446,0.53088,0.004672,0.434176,0.007744,0.004544,0.005568,0.005984,0.005952,0.056224,0.006016
+843,962.293,1.03918,0.298592,0.005632,0.203232,0.004128,0.005632,0.004608,0.006144,0.006112,0.057376,0.005728
+844,1686.99,0.592773,0.291264,0.004544,0.196448,0.004256,0.005504,0.004736,0.006144,0.006144,0.058816,0.004672
+845,1424.7,0.701904,0.296992,0.006144,0.201984,0.004864,0.004096,0.005824,0.005952,0.005824,0.057632,0.004672
+846,1266.74,0.789429,0.293184,0.004512,0.19856,0.00576,0.004448,0.005472,0.0048,0.006112,0.058656,0.004864
+847,1051.87,0.950684,0.303968,0.004992,0.209984,0.004896,0.004224,0.005824,0.005696,0.006336,0.057312,0.004704
+848,1545.66,0.646973,0.30352,0.004608,0.208768,0.004224,0.005536,0.004704,0.006144,0.005984,0.057504,0.006048
+849,1372.42,0.728638,0.307552,0.004896,0.210944,0.005376,0.004832,0.005216,0.005056,0.006176,0.05936,0.005696
+850,1332.03,0.750732,0.32752,0.004608,0.233152,0.004448,0.00528,0.004928,0.006144,0.005856,0.05744,0.005664
+851,600.983,1.66394,0.312448,0.008128,0.214752,0.004448,0.005344,0.004896,0.006048,0.00576,0.057792,0.00528
+852,1496.8,0.668091,0.295008,0.005632,0.203648,0.004192,0.005792,0.004352,0.006144,0.006144,0.053248,0.005856
+853,1265.17,0.790405,0.28992,0.00608,0.19808,0.004736,0.004192,0.006016,0.005696,0.005952,0.053856,0.005312
+854,1407.8,0.710327,0.295488,0.00464,0.2048,0.004096,0.005792,0.004448,0.006144,0.006048,0.054944,0.004576
+855,1594.39,0.627197,0.292864,0.006144,0.200704,0.005632,0.004608,0.005696,0.00592,0.004768,0.054368,0.005024
+856,1458.69,0.685547,0.294912,0.005952,0.202944,0.005376,0.004864,0.005184,0.005056,0.006176,0.054592,0.004768
+857,1192.08,0.838867,0.292384,0.005792,0.196288,0.004768,0.004192,0.006016,0.00576,0.00608,0.057824,0.005664
+858,1237.46,0.808105,0.315392,0.006016,0.223168,0.004288,0.005536,0.004704,0.006144,0.006144,0.054368,0.005024
+859,1407.08,0.710693,0.518432,0.004384,0.425184,0.006944,0.005632,0.004608,0.006144,0.006016,0.054528,0.004992
+860,754.745,1.32495,0.290208,0.005856,0.196896,0.005792,0.004448,0.005632,0.00576,0.004992,0.055296,0.005536
+861,1398.67,0.714966,0.288544,0.006144,0.19632,0.004384,0.005376,0.004864,0.00592,0.005952,0.053664,0.00592
+862,1557.41,0.64209,0.290592,0.005664,0.198656,0.004608,0.005152,0.005088,0.005952,0.005728,0.053824,0.00592
+863,1387.77,0.720581,0.28672,0.00608,0.194624,0.0056,0.00464,0.00528,0.00496,0.006144,0.054528,0.004864
+864,1442.76,0.693115,0.284672,0.005504,0.193056,0.0056,0.004736,0.005472,0.004768,0.006144,0.054912,0.00448
+865,1533.51,0.6521,0.284672,0.0056,0.192416,0.004736,0.00576,0.00448,0.006144,0.006144,0.054784,0.004608
+866,634.35,1.57642,0.30944,0.005376,0.20896,0.004896,0.004192,0.005952,0.006304,0.005728,0.063104,0.004928
+867,915.512,1.09229,0.47744,0.00704,0.376832,0.005152,0.004832,0.004384,0.006112,0.006144,0.06144,0.005504
+868,1163.8,0.859253,0.299936,0.005024,0.206144,0.0048,0.004096,0.00608,0.00576,0.006336,0.055552,0.006144
+869,1282.61,0.779663,0.302464,0.005664,0.208416,0.004928,0.004256,0.005792,0.005728,0.004832,0.057344,0.005504
+870,1264.78,0.790649,0.294944,0.005536,0.201088,0.00432,0.00544,0.0048,0.006112,0.00592,0.057216,0.004512
+871,1692.21,0.590942,0.294912,0.005632,0.201216,0.005248,0.004832,0.004256,0.006144,0.006144,0.056608,0.004832
+872,1391.54,0.718628,0.293696,0.004928,0.198048,0.004704,0.004192,0.006048,0.005184,0.005056,0.060832,0.004704
+873,1528.64,0.654175,0.298272,0.005376,0.197472,0.004256,0.005504,0.004736,0.006144,0.00608,0.06336,0.005344
+874,1297.43,0.770752,0.30736,0.005408,0.212864,0.004896,0.00432,0.005728,0.005824,0.004864,0.057344,0.006112
+875,1467.84,0.681274,0.301056,0.006144,0.200384,0.004416,0.005344,0.004896,0.005888,0.005536,0.063968,0.00448
+876,663.051,1.50818,0.320352,0.00704,0.223232,0.005504,0.004736,0.005344,0.004928,0.006112,0.057344,0.006112
+877,1526.36,0.655151,0.294912,0.0056,0.1992,0.005376,0.004864,0.005152,0.005088,0.006144,0.058464,0.005024
+878,1419.27,0.70459,0.29216,0.006144,0.196608,0.005856,0.005536,0.004992,0.005792,0.00576,0.056032,0.00544
+879,1445.56,0.691772,0.286784,0.004448,0.194592,0.005216,0.004768,0.00432,0.006112,0.005728,0.055744,0.005856
+880,1551.22,0.644653,0.2888,0.006144,0.193984,0.004672,0.004096,0.006144,0.006048,0.005888,0.05712,0.004704
+881,1345.16,0.743408,0.284832,0.005824,0.19488,0.004128,0.00576,0.00592,0.00576,0.005088,0.052896,0.004576
+882,1372.42,0.728638,0.282656,0.005984,0.192672,0.005248,0.004864,0.005792,0.00576,0.00496,0.052832,0.004544
+883,1434.68,0.697021,0.294784,0.006144,0.202752,0.005824,0.004416,0.0056,0.00464,0.006144,0.053248,0.006016
+884,1463.9,0.683105,0.513504,0.005952,0.420032,0.006304,0.005696,0.004384,0.006144,0.006144,0.053248,0.0056
+885,653.27,1.53076,0.305152,0.005376,0.215168,0.004736,0.005696,0.004544,0.006144,0.005952,0.051392,0.006144
+886,1643.99,0.608276,0.290528,0.005632,0.19888,0.004384,0.005536,0.004704,0.006144,0.005888,0.053504,0.005856
+887,1321.93,0.75647,0.285152,0.004544,0.196576,0.004128,0.005632,0.004608,0.006144,0.00592,0.052832,0.004768
+888,1602.19,0.624146,0.284672,0.006144,0.19456,0.005536,0.004704,0.005472,0.005824,0.00512,0.052512,0.0048
+889,1496.26,0.668335,0.2888,0.00544,0.195264,0.004096,0.0056,0.00464,0.006144,0.005856,0.057184,0.004576
+890,1430.92,0.698853,0.290176,0.006144,0.194496,0.00416,0.005568,0.004672,0.006144,0.006144,0.057344,0.005504
+891,1315.35,0.760254,0.288384,0.00544,0.193248,0.005344,0.004832,0.005216,0.006432,0.004768,0.057344,0.00576
+892,1548,0.645996,0.29488,0.004576,0.200704,0.005152,0.004864,0.00432,0.006144,0.006144,0.057344,0.005632
+893,1284.01,0.778809,0.292736,0.005696,0.197056,0.005344,0.004832,0.00528,0.005024,0.006144,0.057344,0.006016
+894,697.429,1.43384,0.305184,0.007872,0.207168,0.005376,0.004864,0.005408,0.004832,0.006144,0.059008,0.004512
+895,1470.21,0.680176,0.292576,0.005408,0.197056,0.00464,0.00512,0.00512,0.006144,0.006144,0.057344,0.0056
+896,1560.68,0.640747,0.292864,0.006144,0.19808,0.004672,0.005152,0.005088,0.005856,0.005696,0.057056,0.00512
+897,1341.41,0.745483,0.298912,0.004704,0.206848,0.00512,0.004864,0.004352,0.006144,0.005888,0.055552,0.00544
+898,1247.64,0.801514,0.290816,0.005472,0.194944,0.004384,0.005568,0.004672,0.006144,0.005696,0.059456,0.00448
+899,1698.88,0.588623,0.291424,0.004704,0.196608,0.004096,0.005856,0.004384,0.006144,0.006112,0.058464,0.005056
+900,1326,0.75415,0.292864,0.005888,0.196672,0.00432,0.00544,0.004768,0.006144,0.006048,0.058624,0.00496
+901,1505.05,0.664429,0.310752,0.005856,0.207136,0.00544,0.0048,0.005216,0.005024,0.006144,0.065536,0.0056
+902,1228.19,0.814209,0.512032,0.006144,0.415744,0.007264,0.004896,0.004224,0.006144,0.006144,0.057344,0.004128
+903,737.354,1.3562,0.295168,0.005376,0.203808,0.005536,0.004704,0.005408,0.005984,0.005088,0.054688,0.004576
+904,1332.9,0.750244,0.310784,0.006048,0.212128,0.004896,0.004256,0.006144,0.006144,0.006144,0.059392,0.005632
+905,804.873,1.24243,0.3104,0.00576,0.210528,0.004896,0.005184,0.005056,0.006144,0.006144,0.061376,0.005312
+906,1473.38,0.678711,0.301504,0.004864,0.200704,0.004096,0.005824,0.004416,0.006144,0.006144,0.063488,0.005824
+907,1365.56,0.7323,0.299392,0.00448,0.19456,0.005344,0.004832,0.004192,0.006112,0.006144,0.068704,0.005024
+908,1427.18,0.700684,0.301152,0.005408,0.195392,0.005408,0.004832,0.005248,0.004992,0.006144,0.067584,0.006144
+909,1398.67,0.714966,0.305184,0.006048,0.2008,0.00544,0.0048,0.005216,0.005024,0.006144,0.067328,0.004384
+910,1139.36,0.877686,0.517856,0.007488,0.4104,0.00608,0.00416,0.005888,0.005952,0.005856,0.066272,0.00576
+911,778.263,1.28491,0.30352,0.00496,0.200096,0.004704,0.004096,0.006144,0.005856,0.00592,0.066048,0.005696
+912,1564.25,0.639282,0.294688,0.00576,0.196992,0.00416,0.00576,0.004416,0.006144,0.006144,0.059392,0.00592
+913,1602.82,0.623901,0.29376,0.00496,0.196608,0.005216,0.004864,0.005728,0.005728,0.005088,0.060544,0.005024
+914,1345.16,0.743408,0.311072,0.006144,0.210944,0.005376,0.004864,0.004128,0.00752,0.00576,0.060416,0.00592
+915,1435.93,0.696411,0.291424,0.004704,0.19456,0.005856,0.004416,0.00576,0.00576,0.004832,0.061184,0.004352
+916,1508.93,0.66272,0.292832,0.004672,0.195744,0.004864,0.004192,0.005984,0.00576,0.005728,0.060352,0.005536
+917,1051.33,0.951172,0.301088,0.006144,0.202752,0.005632,0.004608,0.005472,0.006016,0.0064,0.05984,0.004224
+918,1342.07,0.745117,0.312384,0.005536,0.214944,0.0048,0.004128,0.00608,0.005856,0.004448,0.06128,0.005312
+919,745.066,1.34216,0.302784,0.00752,0.203616,0.004096,0.00576,0.00448,0.006144,0.005856,0.05968,0.005632
+920,1585.45,0.630737,0.294912,0.005856,0.196896,0.005152,0.005088,0.0056,0.005728,0.005056,0.060928,0.004608
+921,1469.68,0.68042,0.293728,0.00496,0.197984,0.004768,0.004128,0.005888,0.005824,0.005824,0.058208,0.006144
+922,1362.83,0.733765,0.292864,0.005952,0.194368,0.00448,0.00528,0.00496,0.006016,0.005728,0.061344,0.004736
+923,1522.11,0.656982,0.287136,0.004512,0.19456,0.005408,0.004832,0.005216,0.005024,0.006144,0.056416,0.005024
+924,946.396,1.05664,0.30928,0.006016,0.215168,0.005152,0.004864,0.004352,0.006112,0.006144,0.057152,0.00432
+925,1690.47,0.591553,0.299008,0.006144,0.2048,0.005728,0.004512,0.006144,0.00592,0.006336,0.054816,0.004608
+926,1384.49,0.72229,0.299296,0.005408,0.206912,0.004896,0.005536,0.004864,0.006144,0.00608,0.05488,0.004576
+927,1390.12,0.71936,0.293376,0.004704,0.200704,0.005248,0.004864,0.00544,0.004928,0.006144,0.055296,0.006048
+928,690.667,1.44788,0.300352,0.007712,0.203232,0.004096,0.005792,0.004448,0.006144,0.00608,0.057408,0.00544
+929,1653.61,0.604736,0.296384,0.006144,0.198688,0.005248,0.004864,0.004288,0.00752,0.004672,0.059392,0.005568
+930,1334.2,0.749512,0.29696,0.006144,0.200704,0.004096,0.005856,0.004416,0.006112,0.005856,0.057632,0.006144
+931,1578.72,0.633423,0.293728,0.00496,0.2,0.0048,0.004096,0.006144,0.006048,0.005696,0.05584,0.006144
+932,1256.44,0.795898,0.290656,0.006144,0.198656,0.004096,0.005728,0.004512,0.006144,0.005408,0.053984,0.005984
+933,1638.07,0.610474,0.29296,0.004704,0.198048,0.004704,0.004224,0.006016,0.006144,0.006144,0.057344,0.005632
+934,1422.22,0.703125,0.289312,0.00464,0.196608,0.005824,0.004416,0.005632,0.005728,0.005024,0.05696,0.00448
+935,1327.71,0.753174,0.31536,0.005408,0.219296,0.004672,0.004096,0.006144,0.006144,0.005568,0.05792,0.006112
+936,1277.01,0.783081,0.521888,0.004544,0.424992,0.007104,0.00416,0.00592,0.005728,0.004704,0.059392,0.005344
+937,741.29,1.349,0.300704,0.004672,0.198656,0.005664,0.004576,0.005504,0.004768,0.006112,0.065408,0.005344
+938,1290.28,0.775024,0.298752,0.006112,0.196416,0.00432,0.00544,0.006464,0.00576,0.004864,0.063488,0.005888
+939,1433.92,0.697388,0.303104,0.005568,0.199232,0.004128,0.005824,0.005536,0.004992,0.006144,0.066592,0.005088
+940,1600,0.625,0.299808,0.004896,0.196608,0.004128,0.00576,0.004448,0.007808,0.005728,0.065856,0.004576
+941,1338.34,0.747192,0.29696,0.005664,0.19504,0.005792,0.004448,0.005888,0.005696,0.0048,0.064928,0.004704
+942,1140.15,0.877075,0.304288,0.006144,0.198656,0.005408,0.004832,0.005248,0.004992,0.007872,0.065824,0.005312
+943,1704.54,0.58667,0.301792,0.004992,0.198656,0.00576,0.00448,0.005568,0.00576,0.005056,0.065536,0.005984
+944,847.507,1.17993,0.29984,0.004928,0.204448,0.004448,0.005376,0.004864,0.006112,0.005696,0.059072,0.004896
+945,1110.78,0.900269,0.507552,0.008192,0.403168,0.005504,0.005024,0.005664,0.00576,0.00496,0.063488,0.005792
+946,992.488,1.00757,0.294912,0.005632,0.198464,0.0048,0.004096,0.006144,0.006144,0.00592,0.059168,0.004544
+947,1267.72,0.788818,0.294432,0.004416,0.196608,0.005184,0.004864,0.005632,0.0048,0.006144,0.061376,0.005408
+948,1523.24,0.656494,0.294784,0.005728,0.195008,0.005472,0.004736,0.005952,0.005856,0.005728,0.060288,0.006016
+949,1498.99,0.667114,0.292864,0.006144,0.194368,0.004288,0.005472,0.004768,0.006144,0.005888,0.061184,0.004608
+950,1268.31,0.788452,0.295168,0.004704,0.196128,0.004576,0.004096,0.006144,0.005824,0.005696,0.06224,0.00576
+951,1391.54,0.718628,0.311296,0.006112,0.208928,0.005792,0.004448,0.00544,0.0048,0.006144,0.063488,0.006144
+952,1409.98,0.709229,0.3032,0.005408,0.203648,0.005536,0.004704,0.006144,0.006016,0.005728,0.059936,0.00608
+953,1324.92,0.754761,0.521888,0.004704,0.417184,0.006784,0.005824,0.004384,0.006144,0.006144,0.065376,0.005344
+954,626.587,1.59595,0.305152,0.006112,0.202208,0.004672,0.005824,0.004416,0.006144,0.006144,0.064672,0.00496
+955,1279.8,0.781372,0.30816,0.005056,0.210944,0.00512,0.004832,0.004384,0.006144,0.006144,0.059392,0.006144
+956,1761.34,0.567749,0.298976,0.00544,0.195296,0.0056,0.004608,0.005984,0.005792,0.005792,0.064352,0.006112
+957,1187.76,0.841919,0.318144,0.004832,0.199872,0.004928,0.005472,0.020448,0.0048,0.006176,0.065504,0.006112
+958,1515.91,0.659668,0.297152,0.005376,0.194848,0.004768,0.004096,0.005952,0.005792,0.005792,0.064384,0.006144
+959,1433.92,0.697388,0.296832,0.005952,0.193728,0.004928,0.004288,0.0056,0.00576,0.005024,0.065536,0.006016
+960,1236.71,0.808594,0.310112,0.00496,0.208672,0.00432,0.005504,0.004736,0.006144,0.006144,0.064768,0.004864
+961,1434.68,0.697021,0.299008,0.0056,0.200352,0.004896,0.004192,0.005856,0.005728,0.004832,0.063232,0.00432
+962,1126.98,0.887329,0.52352,0.007744,0.419776,0.004608,0.005728,0.004512,0.006144,0.00592,0.063712,0.005376
+963,919.313,1.08777,0.301152,0.005376,0.199552,0.00528,0.004864,0.005216,0.005088,0.006144,0.065376,0.004256
+964,1454.29,0.687622,0.301056,0.006144,0.196448,0.005536,0.004864,0.005664,0.00592,0.005888,0.064448,0.006144
+965,1356.07,0.737427,0.296864,0.004544,0.195648,0.004896,0.004288,0.00592,0.00576,0.004736,0.065472,0.0056
+966,1454.29,0.687622,0.299744,0.004896,0.19632,0.004384,0.005376,0.004864,0.006144,0.005792,0.065888,0.00608
+967,1365.79,0.732178,0.303136,0.005824,0.19488,0.00592,0.00432,0.006016,0.00576,0.005696,0.07008,0.00464
+968,1335.94,0.748535,0.30384,0.004832,0.194592,0.005728,0.00448,0.005376,0.004864,0.006144,0.0728,0.005024
+969,1373.81,0.727905,0.3032,0.005376,0.19744,0.0056,0.00464,0.005184,0.005056,0.006144,0.069344,0.004416
+970,1393.67,0.717529,0.305152,0.005856,0.198592,0.004448,0.005312,0.004928,0.006144,0.006144,0.068864,0.004864
+971,694.59,1.4397,0.31056,0.00816,0.202208,0.004672,0.004256,0.005984,0.005664,0.005728,0.06848,0.005408
+972,1560.08,0.640991,0.302944,0.005728,0.19696,0.00416,0.0056,0.00464,0.006144,0.00576,0.067968,0.005984
+973,1353.6,0.73877,0.299104,0.005344,0.19552,0.005344,0.004896,0.005696,0.005856,0.004832,0.065568,0.006048
+974,1535.81,0.651123,0.304384,0.005568,0.198304,0.004768,0.004352,0.005984,0.005568,0.004832,0.069632,0.005376
+975,1302.8,0.767578,0.302464,0.006112,0.196032,0.004704,0.004096,0.006016,0.0056,0.004768,0.069632,0.005504
+976,1476.83,0.677124,0.30288,0.0048,0.19632,0.004352,0.005344,0.004896,0.005664,0.004608,0.071584,0.005312
+977,1348.48,0.741577,0.301664,0.004672,0.196128,0.004576,0.005344,0.004896,0.00608,0.005472,0.069952,0.004544
+978,1448.63,0.690308,0.311296,0.005824,0.200544,0.004576,0.005184,0.005056,0.00592,0.006304,0.072992,0.004896
+979,1303.21,0.767334,0.52656,0.005376,0.414688,0.006336,0.005952,0.005536,0.005728,0.00512,0.071744,0.00608
+980,695.298,1.43823,0.3032,0.005376,0.197184,0.004384,0.005376,0.004864,0.006144,0.00576,0.06928,0.004832
+981,1342.29,0.744995,0.303136,0.006144,0.194144,0.004544,0.005216,0.004992,0.006112,0.00592,0.071584,0.00448
+982,1031.09,0.969849,0.310144,0.004992,0.204608,0.004288,0.005472,0.004768,0.006144,0.005888,0.069344,0.00464
+983,1605.64,0.622803,0.305152,0.005856,0.200896,0.004192,0.005568,0.004672,0.006144,0.006048,0.066848,0.004928
+984,1492.44,0.670044,0.302624,0.00544,0.197312,0.004128,0.005664,0.004544,0.006144,0.006144,0.067584,0.005664
+985,1453,0.688232,0.295424,0.00464,0.196352,0.004352,0.005408,0.004832,0.006144,0.006144,0.06144,0.006112
+986,1137.62,0.879028,0.295232,0.004416,0.199808,0.004928,0.004192,0.005824,0.0056,0.004928,0.061248,0.004288
+987,1748.56,0.571899,0.300768,0.005536,0.201312,0.005248,0.004864,0.005728,0.00576,0.005024,0.06144,0.005856
+988,627.884,1.59265,0.306976,0.006752,0.208064,0.004896,0.004128,0.005728,0.00576,0.005984,0.060352,0.005312
+989,1293.13,0.773315,0.291264,0.004544,0.196608,0.0056,0.00464,0.00544,0.0048,0.006144,0.058432,0.005056
+990,1531.5,0.652954,0.290816,0.005376,0.194656,0.004928,0.005536,0.004704,0.006144,0.005856,0.057632,0.005984
+991,1511.44,0.661621,0.289248,0.004576,0.196448,0.004256,0.005504,0.004736,0.006144,0.005888,0.057152,0.004544
+992,1221.41,0.818726,0.292192,0.006144,0.195744,0.00496,0.005408,0.004832,0.006112,0.005696,0.057824,0.005472
+993,1671.84,0.598145,0.290816,0.005728,0.194976,0.004096,0.005728,0.004512,0.006144,0.005984,0.059104,0.004544
+994,1462.6,0.683716,0.291072,0.005376,0.195552,0.004096,0.005792,0.004448,0.006144,0.005984,0.059008,0.004672
+995,1442.25,0.693359,0.293312,0.004544,0.198656,0.005312,0.004928,0.005248,0.004992,0.006144,0.05856,0.004928
+996,1312.82,0.761719,0.292096,0.006016,0.19616,0.004672,0.004096,0.006048,0.00592,0.005888,0.05792,0.005376
+997,615.338,1.62512,0.299584,0.00688,0.202752,0.005152,0.004864,0.004352,0.006112,0.006144,0.057344,0.005984
+998,1580.86,0.632568,0.294368,0.006144,0.194592,0.005824,0.004384,0.006144,0.00608,0.005696,0.059904,0.0056
+999,1531.5,0.652954,0.294336,0.005408,0.196512,0.004896,0.004288,0.00608,0.005792,0.00576,0.060128,0.005472
+1000,1227.45,0.814697,0.292896,0.005056,0.19456,0.0056,0.00464,0.005536,0.004704,0.006144,0.061344,0.005312
+1001,956.227,1.04578,0.355904,0.006176,0.255968,0.0056,0.00464,0.00544,0.004832,0.0072,0.060352,0.005696
+1002,1648.29,0.606689,0.30768,0.004576,0.206432,0.004512,0.005248,0.004992,0.006144,0.005888,0.064864,0.005024
+1003,968.436,1.03259,0.318848,0.006144,0.22528,0.004096,0.005792,0.004448,0.006144,0.00592,0.05552,0.005504
+1004,1380.05,0.724609,0.509984,0.006144,0.415488,0.0064,0.005568,0.004672,0.006144,0.005856,0.055264,0.004448
+1005,670.376,1.4917,0.30416,0.005504,0.20544,0.005856,0.004384,0.005696,0.00576,0.004928,0.061216,0.005376
+1006,1311.56,0.762451,0.286752,0.006176,0.194496,0.004128,0.005632,0.004608,0.006144,0.005824,0.055168,0.004576
+1007,1624.11,0.615723,0.28848,0.0048,0.19456,0.004096,0.005664,0.004576,0.005824,0.005696,0.057952,0.005312
+1008,1251.64,0.79895,0.290176,0.005408,0.195296,0.004096,0.006016,0.004224,0.006144,0.006144,0.057344,0.005504
+1009,1513.11,0.660889,0.294912,0.00576,0.196992,0.005152,0.004896,0.004288,0.006144,0.006144,0.0608,0.004736
+1010,1347.15,0.74231,0.297312,0.004448,0.198656,0.00592,0.00432,0.005984,0.005984,0.005696,0.061408,0.004896
+1011,1250.69,0.799561,0.315392,0.005664,0.2176,0.005408,0.0048,0.00528,0.00496,0.006144,0.059392,0.006144
+1012,1665.04,0.600586,0.295776,0.00496,0.196608,0.005248,0.004832,0.004288,0.006112,0.006144,0.06144,0.006144
+1013,624.676,1.60083,0.301056,0.008192,0.198336,0.004416,0.005312,0.004928,0.005728,0.005728,0.06352,0.004896
+1014,1578.42,0.633545,0.298816,0.005728,0.19632,0.0048,0.004096,0.005856,0.00576,0.004768,0.065536,0.005952
+1015,1374.04,0.727783,0.297024,0.005376,0.196416,0.004896,0.005408,0.005056,0.005952,0.005888,0.061888,0.006144
+1016,1480.84,0.675293,0.299008,0.005888,0.202752,0.004352,0.00608,0.005248,0.005056,0.006144,0.059072,0.004416
+1017,1205.41,0.82959,0.294912,0.006144,0.196608,0.005728,0.004544,0.005696,0.005728,0.004928,0.059392,0.006144
+1018,1611.65,0.620483,0.293024,0.005408,0.196672,0.004896,0.004096,0.006048,0.005728,0.005664,0.05968,0.004832
+1019,1456.1,0.686768,0.294912,0.006144,0.196128,0.004576,0.005184,0.005024,0.00576,0.00576,0.060192,0.006144
+1020,906.395,1.10327,0.319808,0.004416,0.223232,0.005248,0.004832,0.004256,0.006144,0.00608,0.060576,0.005024
+1021,585.143,1.70898,0.527232,0.004992,0.415616,0.006272,0.005472,0.020544,0.006304,0.006048,0.057408,0.004576
+1022,1060.73,0.942749,0.313632,0.004416,0.20272,0.005504,0.004768,0.019584,0.006176,0.004928,0.060544,0.004992
+1023,1748.19,0.572021,0.300256,0.005568,0.20128,0.00544,0.0048,0.006048,0.00576,0.005696,0.06032,0.005344
+1024,1296.82,0.771118,0.29712,0.004864,0.198656,0.005504,0.004736,0.005728,0.005824,0.006336,0.059936,0.005536
+1025,1629.6,0.613647,0.292736,0.005504,0.194784,0.004544,0.00512,0.005056,0.00576,0.005728,0.060224,0.006016
+1026,1421.24,0.703613,0.298528,0.005888,0.194816,0.00528,0.00496,0.005728,0.00576,0.004896,0.065536,0.005664
+1027,1385.89,0.721558,0.30128,0.005344,0.199104,0.004672,0.004096,0.006144,0.005856,0.005696,0.064224,0.006144
+1028,1205.59,0.829468,0.297824,0.00496,0.202016,0.004832,0.004096,0.006016,0.005952,0.00592,0.059424,0.004608
+1029,1368.76,0.730591,0.519936,0.004608,0.420896,0.007104,0.005504,0.004768,0.006144,0.00592,0.059616,0.005376
+1030,729.93,1.37,0.310624,0.0056,0.207392,0.00416,0.005728,0.004448,0.007424,0.004864,0.065536,0.005472
+1031,1469.15,0.680664,0.301152,0.005376,0.197472,0.005472,0.004672,0.005216,0.00512,0.006144,0.066784,0.004896
+1032,1343.83,0.744141,0.303104,0.005984,0.20016,0.0048,0.004128,0.005984,0.00576,0.00576,0.06608,0.004448
+1033,1503.67,0.665039,0.302496,0.006176,0.197856,0.004864,0.005536,0.004704,0.006144,0.00592,0.06576,0.005536
+1034,1201.35,0.832397,0.300992,0.004512,0.196608,0.005536,0.004736,0.005568,0.005728,0.005056,0.067584,0.005664
+1035,1651.28,0.605591,0.297792,0.004928,0.197792,0.00496,0.005504,0.004736,0.006144,0.005824,0.063552,0.004352
+1036,1449.14,0.690063,0.303488,0.00464,0.200672,0.0056,0.004672,0.005344,0.004864,0.006144,0.065536,0.006016
+1037,1362.83,0.733765,0.301504,0.004544,0.202752,0.005216,0.004864,0.004416,0.005984,0.006144,0.063008,0.004576
+1038,554.225,1.80432,0.331776,0.007872,0.227648,0.004096,0.005696,0.005792,0.004896,0.006144,0.064544,0.005088
+1039,1659.31,0.602661,0.301088,0.005376,0.201344,0.004256,0.005856,0.004384,0.006144,0.006144,0.06144,0.006144
+1040,1443.27,0.692871,0.293504,0.004736,0.19456,0.005536,0.004704,0.005632,0.005696,0.005056,0.062464,0.00512
+1041,1344.27,0.743896,0.2976,0.005056,0.197792,0.004896,0.00416,0.005856,0.005696,0.004832,0.063488,0.005824
+1042,1406.11,0.711182,0.300608,0.006144,0.197888,0.004864,0.004096,0.007328,0.005984,0.00512,0.063488,0.005696
+1043,1249.16,0.800537,0.2976,0.004768,0.196544,0.004128,0.005632,0.004608,0.006144,0.006144,0.06496,0.004672
+1044,1722.46,0.580566,0.296704,0.005472,0.1952,0.004128,0.0056,0.00464,0.006112,0.005664,0.064,0.005888
+1045,1361.7,0.734375,0.298976,0.006144,0.196192,0.004512,0.005216,0.005024,0.006016,0.005728,0.064032,0.006112
+1046,1448.89,0.690186,0.519776,0.00576,0.41408,0.007264,0.004864,0.004256,0.006144,0.006144,0.065536,0.005728
+1047,689.04,1.45129,0.301152,0.005408,0.19744,0.005792,0.004448,0.005664,0.004672,0.006048,0.067232,0.004448
+1048,1452.22,0.688599,0.295008,0.005408,0.195392,0.005792,0.004448,0.005888,0.006016,0.00592,0.061728,0.004416
+1049,1330.52,0.751587,0.294912,0.005696,0.195008,0.004096,0.005792,0.005568,0.005024,0.006144,0.06144,0.006144
+1050,1504.22,0.664795,0.294592,0.005376,0.194656,0.004928,0.004192,0.006144,0.006144,0.005792,0.061792,0.005568
+1051,1358.99,0.73584,0.296096,0.005344,0.195008,0.004512,0.005792,0.004448,0.006144,0.006144,0.063392,0.005312
+1052,1238.77,0.807251,0.29152,0.0048,0.196608,0.004096,0.005664,0.004576,0.006144,0.006144,0.059104,0.004384
+1053,1821.66,0.54895,0.288416,0.005344,0.195168,0.00432,0.005664,0.004608,0.006112,0.005984,0.055456,0.00576
+1054,1235.04,0.809692,0.297984,0.006144,0.19824,0.004512,0.005248,0.004992,0.008096,0.005888,0.059552,0.005312
+1055,1262.44,0.792114,0.525888,0.00784,0.39472,0.023424,0.018432,0.005312,0.004928,0.006144,0.059392,0.005696
+1056,885.334,1.12952,0.296128,0.005408,0.199072,0.004416,0.00544,0.0048,0.005408,0.004832,0.061376,0.005376
+1057,1355.39,0.737793,0.295552,0.004832,0.196608,0.005792,0.004448,0.006144,0.00608,0.00576,0.05984,0.006048
+1058,898.344,1.11316,0.325984,0.004448,0.23136,0.00416,0.0056,0.00464,0.006144,0.00608,0.058944,0.004608
+1059,1508.66,0.662842,0.304608,0.005824,0.202368,0.0048,0.004128,0.006112,0.005824,0.00576,0.064192,0.0056
+1060,1556.53,0.642456,0.303104,0.00592,0.200928,0.005152,0.004704,0.00448,0.006176,0.006112,0.064544,0.005088
+1061,1310.93,0.762817,0.31744,0.006144,0.21488,0.004256,0.006144,0.005248,0.004992,0.006176,0.065024,0.004576
+1062,1252.22,0.798584,0.29936,0.004864,0.197664,0.004928,0.004256,0.00576,0.00576,0.006272,0.064128,0.005728
+1063,1447.61,0.690796,0.328128,0.004512,0.227328,0.005536,0.004704,0.005344,0.00592,0.00512,0.065184,0.00448
+1064,601.027,1.66382,0.333408,0.008128,0.22896,0.004576,0.004096,0.00608,0.005888,0.005792,0.06416,0.005728
+1065,1469.15,0.680664,0.297472,0.004608,0.196,0.004704,0.004096,0.006144,0.006144,0.005888,0.063744,0.006144
+1066,1241.59,0.80542,0.29328,0.004512,0.196288,0.004416,0.005344,0.004896,0.006144,0.006144,0.060672,0.004864
+1067,1572.06,0.636108,0.288736,0.004992,0.193664,0.004896,0.004192,0.005888,0.005728,0.00592,0.058112,0.005344
+1068,1122.19,0.891113,0.322048,0.004608,0.210944,0.005696,0.004544,0.005472,0.005792,0.00512,0.060448,0.019424
+1069,1398.43,0.715088,0.315392,0.005632,0.217568,0.004128,0.0056,0.00464,0.006144,0.006144,0.06064,0.004896
+1070,1535.23,0.651367,0.299424,0.004512,0.19968,0.004896,0.004288,0.0056,0.00608,0.005728,0.064,0.00464
+1071,1268.31,0.788452,0.300928,0.006144,0.200704,0.005408,0.004832,0.005248,0.005024,0.006112,0.06144,0.006016
+1072,668.353,1.49622,0.308608,0.008192,0.204384,0.004512,0.005248,0.004992,0.006144,0.006144,0.063488,0.005504
+1073,1515.63,0.65979,0.295136,0.005952,0.198432,0.004512,0.005248,0.004992,0.005408,0.004832,0.061184,0.004576
+1074,1376.58,0.72644,0.29568,0.004928,0.198464,0.004288,0.005472,0.004768,0.006016,0.005728,0.059936,0.00608
+1075,1480.57,0.675415,0.295904,0.005088,0.196608,0.005568,0.004672,0.006144,0.006144,0.005856,0.061344,0.00448
+1076,1354.05,0.738525,0.294272,0.005376,0.195552,0.00416,0.005664,0.00448,0.006144,0.005824,0.06176,0.005312
+1077,1433.67,0.69751,0.297664,0.004832,0.200704,0.004096,0.006144,0.005376,0.004864,0.006144,0.059392,0.006112
+1078,798.596,1.2522,0.303072,0.00496,0.200704,0.005248,0.004864,0.006272,0.006016,0.005728,0.063968,0.005312
+1079,1270.08,0.787354,0.313632,0.004928,0.212992,0.005408,0.004832,0.005216,0.0064,0.005824,0.062432,0.0056
+1080,731.886,1.36633,0.313984,0.006912,0.212512,0.004576,0.005152,0.005088,0.006144,0.006144,0.06144,0.006016
+1081,1360.35,0.735107,0.296128,0.005792,0.196416,0.00464,0.00512,0.00512,0.005504,0.004736,0.063424,0.005376
+1082,1403.94,0.71228,0.299072,0.005408,0.197344,0.004128,0.005792,0.005472,0.005088,0.006144,0.065344,0.004352
+1083,1548.88,0.64563,0.301056,0.00608,0.19872,0.006144,0.004096,0.006144,0.005856,0.005728,0.063296,0.004992
+1084,1383.32,0.7229,0.296192,0.005504,0.1952,0.005888,0.004352,0.005952,0.00576,0.00576,0.0624,0.005376
+1085,1384.49,0.72229,0.297536,0.004672,0.198656,0.005216,0.004864,0.004256,0.006144,0.005952,0.062688,0.005088
+1086,1354.5,0.738281,0.298976,0.005056,0.198656,0.004096,0.005696,0.004544,0.006144,0.005984,0.063488,0.005312
+1087,1399.39,0.7146,0.302624,0.006144,0.202016,0.004832,0.004096,0.006144,0.005856,0.005728,0.062144,0.005664
+1088,1307.16,0.765015,0.516096,0.005984,0.413856,0.007968,0.00432,0.005728,0.005728,0.004928,0.06256,0.005024
+1089,707.61,1.41321,0.305152,0.005792,0.2072,0.005248,0.004864,0.004224,0.006144,0.006144,0.061216,0.00432
+1090,1344.49,0.743774,0.29696,0.005888,0.200256,0.0048,0.004096,0.007296,0.004992,0.006144,0.058912,0.004576
+1091,1567.25,0.638062,0.296992,0.005824,0.198976,0.004128,0.006112,0.005312,0.005952,0.00512,0.060736,0.004832
+1092,1205.95,0.829224,0.290816,0.005888,0.194848,0.005696,0.004512,0.005536,0.004704,0.006144,0.0584,0.005088
+1093,1601.25,0.624512,0.291584,0.004864,0.19664,0.005088,0.00512,0.005216,0.005024,0.006144,0.058592,0.004896
+1094,1528.07,0.654419,0.293504,0.005056,0.198176,0.004576,0.005664,0.004576,0.006144,0.00592,0.057568,0.005824
+1095,1393.91,0.717407,0.292864,0.005376,0.197376,0.004096,0.006144,0.005472,0.004768,0.006144,0.057344,0.006144
+1096,1402.74,0.712891,0.290816,0.005984,0.195936,0.004896,0.004128,0.005952,0.005728,0.004704,0.058432,0.005056
+1097,1100.48,0.908691,0.514048,0.006048,0.41696,0.007072,0.005536,0.004704,0.006176,0.006112,0.057312,0.004128
+1098,433.783,2.3053,0.360608,0.00496,0.266144,0.004192,0.005568,0.005824,0.004992,0.006144,0.057344,0.00544
+1099,1279.6,0.781494,0.31712,0.004416,0.221184,0.005216,0.004864,0.004256,0.006144,0.006144,0.059392,0.005504
+1100,1303.01,0.767456,0.313344,0.006144,0.215072,0.005408,0.004832,0.005184,0.005024,0.006144,0.060544,0.004992
+1101,1430.92,0.698853,0.29696,0.006144,0.20048,0.00432,0.005152,0.004992,0.004384,0.005952,0.059392,0.006144
+1102,1433.17,0.697754,0.294752,0.00496,0.198656,0.006144,0.004096,0.005984,0.005824,0.004608,0.059168,0.005312
+1103,1527.5,0.654663,0.303104,0.006048,0.204864,0.004128,0.0056,0.00464,0.006048,0.005984,0.059648,0.006144
+1104,1397.24,0.715698,0.307232,0.006144,0.208896,0.00528,0.004832,0.004256,0.006112,0.006144,0.060864,0.004704
+1105,592.979,1.6864,0.337856,0.008,0.238944,0.004896,0.00416,0.00592,0.005568,0.004896,0.059392,0.00608
+1106,1437.45,0.695679,0.30336,0.004608,0.204192,0.004704,0.004096,0.006144,0.005632,0.005824,0.062272,0.005888
+1107,1299.7,0.769409,0.30928,0.00576,0.192896,0.004096,0.00576,0.022176,0.004832,0.006144,0.063104,0.004512
+1108,1317.04,0.759277,0.299104,0.00464,0.200416,0.004352,0.005536,0.004704,0.006144,0.005824,0.06176,0.005728
+1109,1627.01,0.614624,0.305568,0.005632,0.202816,0.004896,0.00416,0.006144,0.006144,0.005952,0.06368,0.006144
+1110,1379.36,0.724976,0.3032,0.005376,0.201536,0.005248,0.004864,0.004224,0.006144,0.006144,0.065024,0.00464
+1111,1436.44,0.696167,0.301056,0.00592,0.200352,0.004672,0.004096,0.00608,0.005728,0.004576,0.065312,0.00432
+1112,1446.84,0.691162,0.299008,0.006112,0.198208,0.004576,0.005184,0.005056,0.005888,0.005696,0.063968,0.00432
+1113,653.791,1.52954,0.317472,0.00784,0.213184,0.004256,0.005472,0.004768,0.006144,0.005792,0.065504,0.004512
+1114,856.635,1.16736,0.292864,0.005952,0.1968,0.004096,0.00576,0.00448,0.006144,0.005984,0.0592,0.004448
+1115,1411.44,0.708496,0.3184,0.005056,0.218304,0.004896,0.004128,0.005888,0.0064,0.005664,0.063392,0.004672
+1116,1242.15,0.805054,0.309248,0.006112,0.208928,0.005312,0.004832,0.004192,0.006144,0.006144,0.063296,0.004288
+1117,1464.69,0.682739,0.305696,0.00464,0.208128,0.004896,0.004064,0.006016,0.006112,0.005824,0.061152,0.004864
+1118,1448.89,0.690186,0.313376,0.005696,0.219584,0.004096,0.005728,0.004512,0.006144,0.006112,0.056992,0.004512
+1119,1356.07,0.737427,0.303136,0.004992,0.208352,0.00464,0.004096,0.006144,0.006144,0.005856,0.057568,0.005344
+1120,1439.97,0.694458,0.3048,0.005632,0.205344,0.005856,0.004352,0.005728,0.00576,0.004896,0.06144,0.005792
+1121,1138.25,0.87854,0.538336,0.0056,0.422432,0.025632,0.005088,0.0056,0.005792,0.005024,0.057312,0.005856
+1122,696.066,1.43665,0.311328,0.005952,0.217152,0.004224,0.005536,0.004704,0.006144,0.006048,0.056928,0.00464
+1123,1576.6,0.634277,0.29696,0.005856,0.205088,0.004192,0.005696,0.004448,0.006144,0.005888,0.054944,0.004704
+1124,1513.39,0.660767,0.290848,0.00592,0.198752,0.004224,0.005536,0.004704,0.00608,0.005792,0.0552,0.00464
+1125,1402.74,0.712891,0.2928,0.006016,0.19472,0.005312,0.004864,0.005792,0.005792,0.004832,0.059392,0.00608
+1126,1230.21,0.812866,0.292032,0.005664,0.196064,0.004896,0.005408,0.005056,0.006144,0.00592,0.057568,0.005312
+1127,1794.52,0.557251,0.29088,0.005376,0.196416,0.004896,0.005728,0.004704,0.006144,0.005824,0.057408,0.004384
+1128,1388.71,0.720093,0.299136,0.005056,0.202752,0.005216,0.004896,0.005952,0.005888,0.005792,0.058208,0.005376
+1129,1265.56,0.790161,0.293376,0.004576,0.201952,0.004896,0.004096,0.005952,0.005728,0.005728,0.05568,0.004768
+1130,665.8,1.50195,0.304832,0.007968,0.208704,0.004512,0.005248,0.004992,0.006016,0.006048,0.05552,0.005824
+1131,1644.98,0.60791,0.290528,0.005536,0.197216,0.00592,0.00432,0.005984,0.00576,0.005728,0.054208,0.005856
+1132,1279,0.78186,0.28816,0.005792,0.194912,0.004224,0.005696,0.004416,0.006144,0.006144,0.055296,0.005536
+1133,1635.13,0.611572,0.293344,0.004576,0.202176,0.004672,0.005216,0.005024,0.005952,0.00576,0.054912,0.005056
+1134,819.61,1.22009,0.316288,0.004992,0.224832,0.004544,0.005216,0.005024,0.00592,0.005728,0.0552,0.004832
+1135,1568.45,0.637573,0.294944,0.006016,0.202912,0.005312,0.004864,0.005184,0.00512,0.006112,0.054848,0.004576
+1136,1429.67,0.699463,0.294912,0.005408,0.203488,0.00528,0.004864,0.004192,0.006176,0.006112,0.053248,0.006144
+1137,1371.51,0.729126,0.563488,0.00448,0.468896,0.007904,0.005472,0.005056,0.006112,0.005792,0.053632,0.006144
+1138,738.018,1.35498,0.294944,0.005824,0.203008,0.00416,0.0056,0.00464,0.006144,0.006144,0.055008,0.004416
+1139,1605.64,0.622803,0.28768,0.005056,0.197664,0.004896,0.004288,0.005312,0.004928,0.006144,0.054496,0.004896
+1140,1431.92,0.698364,0.292864,0.005696,0.195008,0.00512,0.00512,0.005312,0.005088,0.005984,0.060544,0.004992
+1141,1290.69,0.77478,0.291424,0.00496,0.194592,0.005536,0.004672,0.00544,0.0048,0.006144,0.059392,0.005888
+1142,1609.75,0.621216,0.299584,0.004672,0.202432,0.004416,0.005344,0.004896,0.006144,0.006144,0.060832,0.004704
+1143,1219.59,0.819946,0.29696,0.00576,0.196384,0.004704,0.00528,0.00496,0.006016,0.005728,0.063712,0.004416
+1144,1646.96,0.607178,0.298272,0.005376,0.196928,0.0048,0.004352,0.005888,0.005856,0.005696,0.064064,0.005312
+1145,1364.88,0.732666,0.30336,0.00448,0.202688,0.005728,0.00448,0.0056,0.005856,0.00496,0.063456,0.006112
+1146,1313.45,0.761353,0.516096,0.00608,0.412832,0.007072,0.004096,0.005984,0.00576,0.005888,0.063904,0.00448
+1147,708.712,1.41101,0.306208,0.006144,0.202752,0.005792,0.004448,0.005632,0.006656,0.006048,0.063424,0.005312
+1148,1445.31,0.691895,0.301088,0.00576,0.200704,0.004512,0.005312,0.004896,0.006016,0.005728,0.06352,0.00464
+1149,1356.29,0.737305,0.298944,0.005376,0.196832,0.004704,0.004096,0.005984,0.005824,0.005728,0.064384,0.006016
+1150,1511.72,0.661499,0.303104,0.006144,0.198368,0.004384,0.005632,0.004608,0.006144,0.006144,0.066656,0.005024
+1151,1201.88,0.832031,0.299008,0.005952,0.196,0.004896,0.004096,0.005856,0.005696,0.004832,0.06688,0.0048
+1152,1664.03,0.600952,0.296992,0.005632,0.198336,0.004896,0.004128,0.006144,0.006144,0.00592,0.061152,0.00464
+1153,722.271,1.38452,0.313344,0.005984,0.216736,0.004608,0.005152,0.005088,0.00592,0.005376,0.05968,0.0048
+1154,1497.62,0.667725,0.51584,0.006144,0.413696,0.008,0.004288,0.00576,0.005664,0.00496,0.06144,0.005888
+1155,652.281,1.53308,0.299296,0.004384,0.205856,0.004864,0.00432,0.006144,0.006112,0.00576,0.057184,0.004672
+1156,1587.6,0.629883,0.299488,0.004608,0.200704,0.005152,0.005056,0.005536,0.005728,0.00512,0.063136,0.004448
+1157,1442.76,0.693115,0.299008,0.005568,0.199232,0.005184,0.005088,0.005632,0.00576,0.00496,0.062848,0.004736
+1158,1514.51,0.660278,0.293664,0.004896,0.19776,0.004896,0.004192,0.005664,0.005728,0.004992,0.060928,0.004608
+1159,1345.16,0.743408,0.290816,0.006144,0.194592,0.005792,0.004416,0.005632,0.00592,0.004832,0.057344,0.006144
+1160,1457.91,0.685913,0.294112,0.006144,0.198112,0.00464,0.004096,0.006144,0.006144,0.00608,0.057408,0.005344
+1161,1501.47,0.666016,0.295584,0.004832,0.196256,0.004448,0.005312,0.004928,0.006144,0.006048,0.061536,0.00608
+1162,1351.82,0.739746,0.29504,0.005408,0.199552,0.00576,0.004448,0.006144,0.00576,0.005664,0.05728,0.005024
+1163,1473.65,0.678589,0.299008,0.005984,0.200576,0.004416,0.005344,0.006528,0.005888,0.005824,0.059616,0.004832
+1164,643.317,1.55444,0.312288,0.007136,0.216448,0.004736,0.004224,0.006016,0.0056,0.005728,0.057504,0.004896
+1165,1507.82,0.663208,0.305024,0.006016,0.204928,0.004096,0.00576,0.00448,0.006144,0.005952,0.061632,0.006016
+1166,1223.23,0.817505,0.321408,0.006016,0.223392,0.004192,0.005728,0.004384,0.006144,0.005728,0.059808,0.006016
+1167,1628.95,0.613892,0.29904,0.0056,0.200832,0.004512,0.00528,0.006464,0.00576,0.006336,0.05968,0.004576
+1168,1237.65,0.807983,0.301472,0.004512,0.200736,0.005536,0.004672,0.005344,0.006272,0.005792,0.063872,0.004736
+1169,1401.3,0.713623,0.29904,0.005504,0.199296,0.005184,0.004864,0.004288,0.006144,0.006144,0.063232,0.004384
+1170,1578.72,0.633423,0.303584,0.004576,0.204352,0.004544,0.005248,0.004992,0.005984,0.005728,0.0632,0.00496
+1171,1293.13,0.773315,0.309248,0.005664,0.207328,0.005408,0.004832,0.005216,0.005024,0.006176,0.063456,0.006144
+1172,587.114,1.70325,0.329728,0.007744,0.227808,0.005568,0.00464,0.005408,0.004832,0.006144,0.06304,0.004544
+1173,1630.25,0.613403,0.303104,0.006112,0.200736,0.005504,0.004736,0.005984,0.00592,0.005792,0.062176,0.006144
+1174,1441.75,0.693604,0.300672,0.006144,0.196608,0.005664,0.004576,0.005472,0.00496,0.005952,0.065536,0.00576
+1175,1462.33,0.683838,0.300096,0.006016,0.19632,0.004512,0.00608,0.005216,0.005088,0.006144,0.065376,0.005344
+1176,1361.02,0.734741,0.303232,0.005056,0.202432,0.004416,0.005344,0.004896,0.006048,0.005696,0.064032,0.005312
+1177,1463.12,0.683472,0.299008,0.006112,0.197792,0.004896,0.004192,0.005792,0.005632,0.00496,0.0648,0.004832
+1178,1354.27,0.738403,0.298016,0.005632,0.19632,0.004896,0.004096,0.005408,0.004864,0.006112,0.065408,0.00528
+1179,1432.67,0.697998,0.306336,0.00512,0.202592,0.004224,0.005952,0.004288,0.007744,0.005728,0.066112,0.004576
+1180,1346.93,0.742432,0.518112,0.00464,0.417792,0.007712,0.004608,0.005408,0.0048,0.006144,0.061376,0.005632
+1181,662.998,1.5083,0.30464,0.006048,0.204832,0.00416,0.0056,0.004672,0.006112,0.005952,0.061632,0.005632
+1182,1340.31,0.746094,0.305088,0.004928,0.202752,0.005856,0.004384,0.005664,0.00576,0.00496,0.065472,0.005312
+1183,1530.07,0.653564,0.302656,0.006144,0.196608,0.006112,0.005312,0.00496,0.006112,0.005664,0.066048,0.005696
+1184,1378.89,0.72522,0.304224,0.005984,0.198816,0.005408,0.004832,0.006144,0.006176,0.00592,0.065632,0.005312
+1185,1512,0.661377,0.303872,0.00512,0.199776,0.004896,0.004224,0.00592,0.005952,0.005888,0.066208,0.005888
+1186,1332.03,0.750732,0.297728,0.004864,0.19776,0.004928,0.004224,0.00592,0.005728,0.005728,0.063872,0.004704
+1187,1351.37,0.73999,0.302048,0.00512,0.198624,0.005376,0.004832,0.005216,0.006624,0.006624,0.06464,0.004992
+1188,1531.79,0.652832,0.303296,0.004896,0.198656,0.005792,0.004448,0.005568,0.005856,0.005088,0.067456,0.005536
+1189,679.327,1.47205,0.319488,0.007808,0.213376,0.00576,0.00448,0.005376,0.005888,0.00512,0.066944,0.004736
+1190,1495.71,0.668579,0.3024,0.005472,0.19728,0.004096,0.005856,0.004384,0.006144,0.006144,0.067584,0.00544
+1191,626.3,1.59668,0.306592,0.00592,0.204288,0.004832,0.004096,0.006144,0.006176,0.005728,0.063872,0.005536
+1192,1635.46,0.61145,0.301056,0.006144,0.198656,0.005472,0.004768,0.005152,0.005088,0.006144,0.065216,0.004416
+1193,1535.52,0.651245,0.305152,0.006144,0.200704,0.0056,0.00464,0.00528,0.00496,0.006144,0.065536,0.006144
+1194,1170.45,0.85437,0.306656,0.00608,0.198752,0.005504,0.004736,0.005152,0.005056,0.006144,0.069632,0.0056
+1195,1508.1,0.663086,0.309856,0.006464,0.202112,0.004864,0.004256,0.005824,0.005696,0.004864,0.069632,0.006144
+1196,1424.2,0.702148,0.329888,0.004448,0.226432,0.004992,0.004096,0.005952,0.005728,0.004736,0.067552,0.005952
+1197,687.71,1.4541,0.486976,0.008032,0.38048,0.004704,0.00512,0.00512,0.005824,0.005696,0.066304,0.005696
+1198,1247.26,0.801758,0.307648,0.004544,0.204256,0.00464,0.00512,0.00496,0.005792,0.00576,0.067936,0.00464
+1199,1342.51,0.744873,0.305024,0.005408,0.19952,0.005632,0.004608,0.005472,0.004768,0.007232,0.066496,0.005888
+1200,1511.44,0.661621,0.30304,0.006144,0.196608,0.0056,0.00464,0.005408,0.006208,0.00592,0.066432,0.00608
+1201,1302.18,0.767944,0.300704,0.006016,0.194688,0.005536,0.004704,0.005344,0.006048,0.004992,0.067584,0.005792
+1202,1472.85,0.678955,0.303104,0.005408,0.199392,0.004096,0.005728,0.004512,0.006144,0.005984,0.066912,0.004928
+1203,1461.29,0.684326,0.301984,0.005056,0.199904,0.004864,0.004096,0.005824,0.005728,0.004832,0.06688,0.0048
+1204,1246.69,0.802124,0.307584,0.004512,0.204256,0.00464,0.004352,0.005888,0.005952,0.005984,0.065888,0.006112
+1205,1589.45,0.62915,0.518432,0.005376,0.414176,0.006688,0.00592,0.00432,0.006144,0.006144,0.065056,0.004608
+1206,635.137,1.57446,0.3072,0.00608,0.202816,0.005728,0.004512,0.005536,0.004704,0.006144,0.067296,0.004384
+1207,1528.07,0.654419,0.302048,0.005088,0.196608,0.00528,0.004864,0.004224,0.006112,0.006144,0.068832,0.004896
+1208,1458.43,0.685669,0.306816,0.005792,0.194912,0.005728,0.004512,0.005376,0.004896,0.006112,0.073728,0.00576
+1209,795.031,1.25781,0.299008,0.005472,0.195232,0.004096,0.005728,0.004512,0.006144,0.005792,0.067392,0.00464
+1210,1554.16,0.643433,0.313504,0.005376,0.209824,0.005664,0.004576,0.00528,0.00496,0.00608,0.0672,0.004544
+1211,1455.84,0.68689,0.302464,0.006144,0.198656,0.00576,0.00448,0.005408,0.004864,0.006112,0.065536,0.005504
+1212,1367.61,0.731201,0.309472,0.004672,0.204832,0.005408,0.0048,0.005248,0.004992,0.006144,0.067584,0.005792
+1213,1187.94,0.841797,0.524288,0.006176,0.415712,0.007744,0.004544,0.006144,0.006144,0.006144,0.066848,0.004832
+1214,736.029,1.35864,0.308032,0.004896,0.2048,0.005312,0.004864,0.005216,0.005088,0.007264,0.065984,0.004608
+1215,1273.24,0.7854,0.303872,0.004864,0.200256,0.004544,0.005184,0.005056,0.006016,0.005856,0.06736,0.004736
+1216,1673.54,0.597534,0.303104,0.005984,0.1968,0.005696,0.004544,0.005728,0.00576,0.004896,0.068992,0.004704
+1217,1182.96,0.845337,0.30512,0.00576,0.19904,0.005888,0.004352,0.005696,0.005952,0.005792,0.066528,0.006112
+1218,1599.69,0.625122,0.303936,0.004928,0.19968,0.004928,0.004288,0.006016,0.005856,0.005856,0.067616,0.004768
+1219,1434.68,0.697021,0.302464,0.006016,0.197952,0.004896,0.004128,0.006048,0.00576,0.005696,0.066464,0.005504
+1220,1419.27,0.70459,0.305152,0.0056,0.200384,0.004896,0.004192,0.005856,0.006304,0.005728,0.067136,0.005056
+1221,1119.74,0.893066,0.304544,0.00576,0.19904,0.005408,0.004832,0.00528,0.006656,0.0056,0.066432,0.005536
+1222,772.102,1.29517,0.311936,0.006784,0.206816,0.004128,0.005632,0.004608,0.006144,0.006144,0.067136,0.004544
+1223,1522.39,0.65686,0.30784,0.005056,0.202784,0.004192,0.006016,0.00528,0.00496,0.006144,0.067584,0.005824
+1224,1446.58,0.691284,0.305152,0.006144,0.198656,0.005312,0.004864,0.005216,0.005088,0.006144,0.067584,0.006144
+1225,1206.12,0.829102,0.30848,0.005376,0.202656,0.004896,0.004192,0.005888,0.005696,0.0048,0.069632,0.005344
+1226,1575.38,0.634766,0.302816,0.004448,0.200704,0.005664,0.004576,0.005472,0.006624,0.005632,0.064192,0.005504
+1227,1489.73,0.671265,0.303392,0.004384,0.2024,0.004448,0.005312,0.00496,0.006112,0.005728,0.064928,0.00512
+1228,1363.52,0.733398,0.305024,0.005856,0.20256,0.004576,0.005184,0.005056,0.006016,0.00576,0.064,0.006016
+1229,1216.51,0.822021,0.313344,0.005568,0.213568,0.005408,0.004832,0.005856,0.0056,0.004928,0.063136,0.004448
+1230,1036.57,0.964722,0.310016,0.004832,0.212992,0.00528,0.004864,0.005216,0.00512,0.006144,0.060608,0.00496
+1231,833.452,1.19983,0.315392,0.00672,0.216672,0.004512,0.005248,0.004992,0.005952,0.00592,0.059808,0.005568
+1232,1533.22,0.652222,0.305408,0.005376,0.20176,0.005408,0.0048,0.005248,0.006592,0.005728,0.065984,0.004512
+1233,1356.52,0.737183,0.305568,0.004704,0.204352,0.004544,0.005216,0.005024,0.006144,0.006144,0.063488,0.005952
+1234,1280.6,0.780884,0.303968,0.004928,0.202752,0.005888,0.004352,0.005696,0.005824,0.00496,0.064896,0.004672
+1235,1599.38,0.625244,0.300864,0.004768,0.202752,0.005248,0.004832,0.005952,0.00576,0.004864,0.061376,0.005312
+1236,1445.05,0.692017,0.300736,0.006016,0.200832,0.005728,0.004512,0.005504,0.00656,0.005856,0.059904,0.005824
+1237,1444.29,0.692383,0.295392,0.004544,0.198656,0.005536,0.004704,0.005632,0.00576,0.004992,0.060672,0.004896
+1238,1370.59,0.729614,0.300992,0.005792,0.204224,0.004896,0.004224,0.005696,0.00592,0.0048,0.05936,0.00608
+1239,1261.67,0.792603,0.516128,0.005376,0.416608,0.006272,0.00608,0.00544,0.0048,0.006144,0.059392,0.006016
+1240,684.721,1.46045,0.30032,0.005376,0.203616,0.005888,0.004352,0.005728,0.00592,0.004736,0.059392,0.005312
+1241,1572.36,0.635986,0.294432,0.005376,0.198976,0.004736,0.004192,0.005792,0.005728,0.004768,0.059392,0.005472
+1242,1489.18,0.671509,0.298144,0.005632,0.201248,0.005568,0.00464,0.005376,0.006368,0.005696,0.058336,0.00528
+1243,1201,0.832642,0.296704,0.004768,0.198688,0.00576,0.004448,0.00608,0.005856,0.005696,0.060064,0.005344
+1244,1597.19,0.626099,0.29728,0.005408,0.199552,0.004224,0.005536,0.005856,0.006176,0.00496,0.06048,0.005088
+1245,1517.88,0.658813,0.294912,0.00592,0.198784,0.004192,0.0056,0.00464,0.005952,0.005728,0.059008,0.005088
+1246,1268.9,0.788086,0.296288,0.00576,0.198304,0.004832,0.004096,0.005888,0.005664,0.004832,0.061344,0.005568
+1247,1450.68,0.689331,0.30272,0.005408,0.205696,0.005632,0.004608,0.005888,0.005856,0.005728,0.058304,0.0056
+1248,732.344,1.36548,0.511456,0.005952,0.414144,0.006336,0.004128,0.006112,0.005792,0.006272,0.0576,0.00512
+1249,994.537,1.00549,0.311872,0.004672,0.216736,0.004448,0.004192,0.006048,0.005856,0.006432,0.05888,0.004608
+1250,1338.34,0.747192,0.30048,0.006112,0.202784,0.005728,0.004512,0.005408,0.004864,0.006112,0.059392,0.005568
+1251,1603.13,0.623779,0.303104,0.005536,0.201312,0.005408,0.004832,0.004096,0.006144,0.006144,0.064896,0.004736
+1252,1325.57,0.754395,0.294912,0.00608,0.197984,0.004864,0.005344,0.004864,0.006112,0.005696,0.059136,0.004832
+1253,1297.23,0.770874,0.297664,0.005152,0.20192,0.004896,0.004128,0.00592,0.0056,0.004832,0.059424,0.005792
+1254,1682.48,0.59436,0.29904,0.005376,0.199456,0.004096,0.005728,0.004512,0.006144,0.00608,0.06288,0.004768
+1255,1233.55,0.810669,0.308256,0.005952,0.206208,0.004896,0.004128,0.005984,0.005728,0.004672,0.065376,0.005312
+1256,1446.33,0.691406,0.575488,0.005536,0.467136,0.00656,0.005408,0.004832,0.006176,0.005984,0.069408,0.004448
+1257,669.719,1.49316,0.321696,0.005376,0.209856,0.005248,0.004864,0.004224,0.006144,0.006112,0.07504,0.004832
+1258,1357.19,0.736816,0.313152,0.005472,0.20272,0.0048,0.004128,0.005984,0.005824,0.00576,0.072512,0.005952
+1259,1456.61,0.686523,0.313696,0.00448,0.20272,0.005344,0.004896,0.005856,0.006016,0.00576,0.07424,0.004384
+1260,1256.06,0.796143,0.310336,0.00576,0.200672,0.004512,0.005248,0.004992,0.005728,0.00576,0.072384,0.00528
+1261,1512.56,0.661133,0.315008,0.005344,0.199136,0.00464,0.005152,0.005088,0.00592,0.005888,0.078304,0.005536
+1262,1321.29,0.756836,0.317312,0.005952,0.198656,0.004288,0.005472,0.004768,0.006144,0.006144,0.079872,0.006016
+1263,1519.29,0.658203,0.317888,0.005088,0.198656,0.004096,0.005824,0.00592,0.005888,0.005088,0.081728,0.0056
+1264,1308.21,0.764404,0.319552,0.005376,0.201088,0.004544,0.005184,0.005056,0.005888,0.00576,0.081856,0.0048
+1265,1097.53,0.911133,0.567072,0.006144,0.413472,0.030176,0.021056,0.004288,0.006144,0.006144,0.073728,0.00592
+1266,775.097,1.29016,0.315648,0.005408,0.203744,0.004096,0.005664,0.005888,0.004832,0.006144,0.074784,0.005088
+1267,1120.35,0.892578,0.3232,0.004416,0.212704,0.004384,0.005344,0.004896,0.00608,0.005696,0.07424,0.00544
+1268,1686.29,0.593018,0.31216,0.00496,0.199712,0.004896,0.004288,0.0056,0.006368,0.005728,0.07568,0.004928
+1269,1385.42,0.721802,0.310816,0.005888,0.200896,0.00416,0.0056,0.00464,0.006144,0.005984,0.07184,0.005664
+1270,1413.63,0.707397,0.307232,0.005376,0.199456,0.00576,0.00448,0.005536,0.004704,0.006144,0.071424,0.004352
+1271,1306.33,0.765503,0.31536,0.005536,0.199264,0.004096,0.005664,0.004576,0.006144,0.006112,0.077888,0.00608
+1272,1411.93,0.708252,0.311136,0.005376,0.202624,0.004896,0.004352,0.006112,0.006048,0.005792,0.07008,0.005856
+1273,1238.58,0.807373,0.523456,0.006144,0.414976,0.006912,0.005664,0.004576,0.006144,0.005984,0.067648,0.005408
+1274,684.378,1.46118,0.31264,0.006144,0.208896,0.005152,0.004832,0.004384,0.006112,0.006144,0.065536,0.00544
+1275,1580.25,0.632812,0.313344,0.006144,0.198656,0.005344,0.004864,0.00416,0.006112,0.006144,0.077184,0.004736
+1276,1488.37,0.671875,0.309248,0.006144,0.199712,0.004896,0.004288,0.006144,0.005952,0.005696,0.071744,0.004672
+1277,1346.26,0.742798,0.307232,0.0056,0.198848,0.004448,0.005312,0.004928,0.006144,0.006144,0.071232,0.004576
+1278,1433.67,0.69751,0.303776,0.004832,0.198656,0.005856,0.004384,0.005568,0.00576,0.005056,0.067616,0.006048
+1279,1309.67,0.76355,0.305152,0.006048,0.2008,0.004096,0.0056,0.004672,0.006112,0.005888,0.067584,0.004352
+1280,1471.79,0.679443,0.3072,0.005536,0.196928,0.004384,0.005376,0.004864,0.00608,0.005984,0.072928,0.00512
+1281,1277.8,0.782593,0.315392,0.006144,0.200704,0.00512,0.004864,0.004352,0.006144,0.006144,0.077504,0.004416
+1282,1060.04,0.943359,0.560928,0.004608,0.415744,0.008224,0.006112,0.005952,0.004288,0.007808,0.078208,0.029984
+1283,831.506,1.20264,0.316928,0.005984,0.208608,0.004544,0.00528,0.00496,0.006048,0.005728,0.070144,0.005632
+1284,1472.85,0.678955,0.30864,0.00592,0.202176,0.004896,0.004096,0.006144,0.006176,0.005952,0.067744,0.005536
+1285,1292.11,0.773926,0.301056,0.005376,0.195328,0.005856,0.004384,0.005696,0.0056,0.005088,0.0688,0.004928
+1286,579.349,1.72607,0.949152,0.005024,0.835552,0.004128,0.004192,0.005728,0.005568,0.00496,0.078976,0.005024
+1287,1597.19,0.626099,0.31328,0.0048,0.210464,0.004608,0.005152,0.005056,0.00592,0.00592,0.065984,0.005376
+1288,1265.96,0.789917,0.308992,0.006144,0.204768,0.00416,0.00576,0.005824,0.006048,0.00592,0.06448,0.005888
+1289,1347.81,0.741943,0.518176,0.005792,0.414048,0.006304,0.005984,0.005536,0.00576,0.005088,0.064704,0.00496
+1290,711.111,1.40625,0.312864,0.00592,0.211136,0.004128,0.005632,0.004608,0.006144,0.00576,0.063872,0.005664
+1291,1306.75,0.765259,0.305152,0.006016,0.200832,0.005472,0.004768,0.005888,0.00592,0.005728,0.064384,0.006144
+1292,1481.11,0.675171,0.301568,0.004576,0.201824,0.004928,0.004192,0.005696,0.00576,0.004928,0.063488,0.006176
+1293,1512,0.661377,0.302912,0.005888,0.200256,0.0048,0.004096,0.00608,0.005792,0.005696,0.064352,0.005952
+1294,1385.89,0.721558,0.299328,0.004672,0.197728,0.004896,0.004224,0.005824,0.006272,0.005728,0.064096,0.005888
+1295,1219.77,0.819824,0.299008,0.006016,0.19472,0.005696,0.004512,0.005792,0.00592,0.00592,0.06432,0.006112
+1296,1663.69,0.601074,0.301312,0.005408,0.199648,0.00512,0.004832,0.004384,0.006144,0.006144,0.06464,0.004992
+1297,1344.49,0.743774,0.31616,0.004864,0.196384,0.00432,0.005216,0.005024,0.005952,0.00576,0.083616,0.005024
+1298,1379.36,0.724976,0.597856,0.006016,0.467072,0.00768,0.004608,0.005472,0.0048,0.006016,0.09024,0.005952
+1299,674.294,1.48303,0.313344,0.005728,0.209312,0.005728,0.004512,0.005536,0.004704,0.006144,0.065536,0.006144
+1300,1382.38,0.723389,0.306304,0.005376,0.200704,0.004864,0.004096,0.005952,0.005952,0.005952,0.068128,0.00528
+1301,1428.92,0.699829,0.303776,0.004768,0.19968,0.004896,0.00432,0.005888,0.005728,0.006336,0.067808,0.004352
+1302,1510.6,0.661987,0.301184,0.005408,0.196992,0.004608,0.005152,0.005056,0.005472,0.004768,0.068608,0.00512
+1303,1387.77,0.720581,0.300672,0.00592,0.194784,0.005536,0.004736,0.005408,0.005824,0.00512,0.067584,0.00576
+1304,1205.24,0.829712,0.30352,0.00448,0.200704,0.005472,0.004768,0.005312,0.004928,0.006144,0.067232,0.00448
+1305,1273.43,0.785278,0.308864,0.00576,0.207232,0.005696,0.004544,0.005344,0.004896,0.007168,0.062464,0.00576
+1306,1327.71,0.753174,0.309248,0.005824,0.208224,0.004896,0.004288,0.00576,0.005792,0.00592,0.063776,0.004768
+1307,644.583,1.55139,0.315808,0.00656,0.210944,0.004096,0.005792,0.004448,0.006176,0.006112,0.065536,0.006144
+1308,1633.5,0.612183,0.300544,0.006144,0.200704,0.004096,0.005728,0.004512,0.006144,0.00592,0.061664,0.005632
+1309,1422.72,0.702881,0.30192,0.00496,0.200736,0.005472,0.004736,0.005312,0.00624,0.004832,0.064512,0.00512
+1310,1444.03,0.692505,0.301952,0.004992,0.200288,0.004512,0.005536,0.00656,0.005728,0.004704,0.065248,0.004384
+1311,1365.56,0.7323,0.299008,0.006144,0.196608,0.004096,0.00576,0.00576,0.004896,0.006112,0.063488,0.006144
+1312,1404.18,0.712158,0.305408,0.00496,0.20016,0.00464,0.004256,0.005984,0.006144,0.006144,0.067584,0.005536
+1313,1295.79,0.771729,0.301056,0.005824,0.196512,0.004512,0.00528,0.00496,0.006112,0.005888,0.067328,0.00464
+1314,1578.42,0.633545,0.309024,0.0056,0.202784,0.004608,0.00512,0.00512,0.006144,0.006112,0.067616,0.00592
+1315,1323.85,0.755371,0.52592,0.006144,0.417792,0.007456,0.004832,0.005824,0.00576,0.005888,0.066496,0.005728
+1316,701.49,1.42554,0.307936,0.004832,0.202752,0.005856,0.004384,0.005664,0.005664,0.005056,0.067584,0.006144
+1317,1350.48,0.740479,0.299232,0.005344,0.196896,0.004832,0.004096,0.006048,0.005792,0.00576,0.065856,0.004608
+1318,1494.89,0.668945,0.297184,0.005408,0.195296,0.00432,0.005408,0.004832,0.006144,0.005984,0.06496,0.004832
+1319,1207.9,0.827881,0.299008,0.005664,0.195072,0.005312,0.004896,0.005728,0.005888,0.005792,0.065856,0.0048
+1320,1664.03,0.600952,0.305184,0.006144,0.196608,0.005216,0.004832,0.004288,0.006144,0.006144,0.071168,0.00464
+1321,1412.41,0.708008,0.30352,0.004512,0.196608,0.005248,0.004864,0.004256,0.006112,0.006144,0.069632,0.006144
+1322,1411.2,0.708618,0.303104,0.005472,0.19728,0.006112,0.004128,0.006016,0.005792,0.005728,0.068256,0.00432
+1323,1358.54,0.736084,0.304224,0.0056,0.194976,0.004224,0.005536,0.004704,0.006144,0.005984,0.071744,0.005312
+1324,569.522,1.75586,0.340928,0.007104,0.228992,0.00448,0.00528,0.00496,0.006016,0.005728,0.07408,0.004288
+1325,1532.36,0.652588,0.308992,0.00576,0.1968,0.004288,0.005472,0.005792,0.00512,0.006144,0.073728,0.005888
+1326,1481.11,0.675171,0.306944,0.00448,0.196064,0.00464,0.005152,0.005088,0.005824,0.005728,0.074464,0.005504
+1327,1208.26,0.827637,0.3072,0.005344,0.195072,0.004384,0.005376,0.004864,0.006144,0.005856,0.075136,0.005024
+1328,1511.72,0.661499,0.309632,0.004512,0.195936,0.004736,0.00416,0.00608,0.006144,0.006144,0.077504,0.004416
+1329,1522.11,0.656982,0.309248,0.005888,0.196192,0.004768,0.004128,0.005664,0.005696,0.004992,0.075776,0.006144
+1330,1394.86,0.716919,0.307936,0.004832,0.196128,0.004576,0.005184,0.005056,0.006144,0.006144,0.075072,0.0048
+1331,1185.87,0.843262,0.303104,0.006144,0.196448,0.004256,0.005504,0.004736,0.006144,0.00608,0.069056,0.004736
+1332,1566.05,0.63855,0.535328,0.004896,0.42752,0.006656,0.005312,0.004928,0.006144,0.005952,0.067776,0.006144
+1333,681.021,1.46838,0.30464,0.004448,0.198496,0.004256,0.005504,0.004736,0.006144,0.006144,0.069568,0.005344
+1334,1494.89,0.668945,0.301056,0.005824,0.19488,0.005408,0.004832,0.005184,0.005056,0.006144,0.068896,0.004832
+1335,1310.09,0.763306,0.303936,0.004896,0.19456,0.004224,0.005664,0.004448,0.005984,0.005728,0.07408,0.004352
+1336,1509.49,0.662476,0.304704,0.004576,0.196608,0.004096,0.005728,0.005792,0.005984,0.005088,0.071488,0.005344
+1337,1400.1,0.714233,0.301088,0.005376,0.194336,0.004896,0.005792,0.004672,0.006144,0.00592,0.069024,0.004928
+1338,1431.42,0.698608,0.303104,0.005984,0.195872,0.004896,0.004192,0.006144,0.006144,0.005632,0.069152,0.005088
+1339,1193.3,0.838013,0.303264,0.005376,0.196768,0.004864,0.005408,0.004832,0.006144,0.00576,0.069664,0.004448
+1340,1621.86,0.616577,0.306368,0.006144,0.198656,0.005632,0.004608,0.005312,0.004928,0.006144,0.069632,0.005312
+1341,688.23,1.453,0.313376,0.007488,0.20144,0.005408,0.004832,0.005248,0.0064,0.005952,0.072288,0.00432
+1342,1470.21,0.680176,0.30464,0.005472,0.197248,0.004128,0.005504,0.004736,0.005728,0.005728,0.070464,0.005632
+1343,1040.52,0.96106,0.321504,0.005952,0.213216,0.005184,0.004864,0.004256,0.006144,0.006144,0.069632,0.006112
+1344,1227.08,0.814941,0.313376,0.005888,0.205024,0.00416,0.0056,0.004608,0.007232,0.005056,0.070912,0.004896
+1345,1533.8,0.651978,0.308,0.00512,0.202752,0.005568,0.004672,0.005248,0.004992,0.006144,0.067584,0.00592
+1346,1166.79,0.857056,0.312384,0.00544,0.205504,0.006144,0.005184,0.005056,0.006144,0.006176,0.067456,0.00528
+1347,1650.28,0.605957,0.302944,0.00448,0.198528,0.004096,0.005728,0.004512,0.006144,0.005984,0.067744,0.005728
+1348,1284.42,0.778564,0.303104,0.006144,0.198656,0.005632,0.00464,0.005408,0.006496,0.00576,0.064224,0.006144
+1349,1391.78,0.718506,0.3072,0.005376,0.20352,0.005152,0.004864,0.00432,0.006144,0.006048,0.067584,0.004192
+1350,711.667,1.40515,0.308256,0.007936,0.198944,0.005664,0.004544,0.005472,0.004768,0.006144,0.069472,0.005312
+1351,1682.48,0.59436,0.30608,0.005024,0.201792,0.004992,0.00416,0.005504,0.00592,0.00496,0.069216,0.004512
+1352,1168.28,0.855957,0.301056,0.005856,0.19792,0.004896,0.00432,0.005952,0.005824,0.005824,0.06592,0.004544
+1353,1477.37,0.67688,0.299008,0.006112,0.196672,0.005216,0.004864,0.005312,0.005088,0.006112,0.063488,0.006144
+1354,1676.63,0.596436,0.298848,0.005856,0.1968,0.004192,0.005568,0.004672,0.006144,0.006144,0.063488,0.005984
+1355,1369.21,0.730347,0.299008,0.005792,0.1968,0.004256,0.006112,0.005216,0.00512,0.00608,0.064736,0.004896
+1356,1399.86,0.714355,0.299008,0.005536,0.195168,0.005536,0.004704,0.005216,0.005024,0.006144,0.065536,0.006144
+1357,1417.3,0.705566,0.302752,0.005504,0.198752,0.00464,0.004256,0.005984,0.006016,0.005952,0.065888,0.00576
+1358,712.72,1.40308,0.485376,0.008192,0.376832,0.005632,0.004608,0.00544,0.0048,0.006144,0.068992,0.004736
+1359,1193.82,0.837646,0.299008,0.005472,0.195232,0.005312,0.004928,0.005888,0.005824,0.005728,0.065792,0.004832
+1360,1482.45,0.674561,0.299008,0.005632,0.195072,0.005344,0.004864,0.005536,0.005888,0.004992,0.06736,0.00432
+1361,1191.39,0.839355,0.300192,0.006144,0.19456,0.00528,0.004832,0.005312,0.005056,0.006144,0.067552,0.005312
+1362,539.018,1.85522,0.350368,0.005024,0.24576,0.005536,0.004704,0.005376,0.004864,0.006144,0.067584,0.005376
+1363,1335.29,0.748901,0.31584,0.004544,0.210944,0.00512,0.004864,0.004352,0.006144,0.006016,0.069728,0.004128
+1364,1335.07,0.749023,0.33888,0.005056,0.231424,0.004096,0.005696,0.004544,0.006144,0.006016,0.071584,0.00432
+1365,1349.37,0.741089,0.618496,0.00592,0.464128,0.00688,0.004352,0.012288,0.040736,0.012224,0.06704,0.004928
+1366,683.863,1.46228,0.310944,0.00608,0.204864,0.005888,0.004352,0.005696,0.006592,0.005696,0.065984,0.005792
+1367,1482.98,0.674316,0.301088,0.006048,0.196704,0.004096,0.005664,0.004576,0.006144,0.00576,0.06704,0.005056
+1368,1360.8,0.734863,0.301056,0.0056,0.195104,0.005568,0.004672,0.005696,0.00592,0.004768,0.069024,0.004704
+1369,1502.29,0.665649,0.302688,0.005472,0.19488,0.004448,0.005312,0.004928,0.006144,0.006144,0.069632,0.005728
+1370,1212.55,0.824707,0.301184,0.005376,0.19488,0.004672,0.005184,0.005056,0.005888,0.005664,0.069344,0.00512
+1371,1670.81,0.598511,0.303104,0.005664,0.1968,0.004384,0.005344,0.004896,0.00592,0.005696,0.069536,0.004864
+1372,1417.06,0.705688,0.309504,0.005376,0.19968,0.005824,0.004416,0.006144,0.006144,0.00576,0.071104,0.005056
+1373,1239.71,0.806641,0.527616,0.006144,0.415104,0.006784,0.005888,0.004352,0.006144,0.006144,0.07168,0.005376
+1374,671.09,1.49011,0.305792,0.004736,0.197664,0.004928,0.004256,0.005664,0.00576,0.00496,0.07296,0.004864
+1375,1637.09,0.61084,0.302656,0.005472,0.195232,0.004096,0.005728,0.004512,0.006144,0.00592,0.069856,0.005696
+1376,1308.42,0.764282,0.301664,0.004768,0.195872,0.004832,0.004096,0.006016,0.005664,0.00576,0.068576,0.00608
+1377,1519.57,0.658081,0.3072,0.005792,0.196032,0.004896,0.004224,0.005824,0.005824,0.004736,0.075232,0.00464
+1378,1306.75,0.765259,0.303104,0.006144,0.195776,0.004896,0.004128,0.005888,0.00576,0.0048,0.069568,0.006144
+1379,1471.53,0.679565,0.311296,0.006016,0.196448,0.004384,0.00528,0.00496,0.006176,0.006112,0.07696,0.00496
+1380,835.748,1.19653,0.461856,0.00576,0.348224,0.004416,0.005344,0.004896,0.006048,0.006208,0.075744,0.005216
+1381,1016.38,0.983887,0.3976,0.004512,0.28864,0.00576,0.00448,0.005568,0.005792,0.005024,0.073056,0.004768
+1382,658.362,1.51892,0.34592,0.00768,0.229536,0.004448,0.005312,0.004928,0.006144,0.006016,0.075904,0.005952
+1383,813.748,1.22888,0.429728,0.006144,0.300416,0.00576,0.004864,0.014528,0.006176,0.005696,0.080352,0.005792
+1384,1717.76,0.582153,0.310112,0.00496,0.202752,0.005152,0.00496,0.004256,0.006112,0.006144,0.071488,0.004288
+1385,1225.43,0.81604,0.3072,0.006144,0.196416,0.004288,0.005472,0.004768,0.006112,0.005728,0.0736,0.004672
+1386,1558.6,0.641602,0.311296,0.006144,0.19456,0.005792,0.004448,0.005984,0.00576,0.00576,0.078048,0.0048
+1387,1466.79,0.681763,0.30944,0.005376,0.195488,0.004128,0.005408,0.0048,0.006144,0.005824,0.077856,0.004416
+1388,1374.73,0.727417,0.31136,0.005408,0.198656,0.004896,0.004096,0.00592,0.005792,0.00576,0.076192,0.00464
+1389,1277.01,0.783081,0.61408,0.005472,0.46752,0.005888,0.004448,0.005504,0.006144,0.006304,0.0824,0.0304
+1390,662.194,1.51013,0.311296,0.005632,0.19712,0.005664,0.004576,0.005472,0.004768,0.006144,0.075776,0.006144
+1391,1371.51,0.729126,0.311296,0.004672,0.196576,0.004128,0.005952,0.00432,0.006112,0.006144,0.077856,0.005536
+1392,1511.72,0.661499,0.309248,0.005408,0.195232,0.00416,0.0056,0.00464,0.006144,0.005824,0.077632,0.004608
+1393,1420.5,0.703979,0.306752,0.006112,0.194592,0.0056,0.00464,0.005248,0.004992,0.006112,0.07376,0.005696
+1394,1414.85,0.706787,0.309184,0.00608,0.194656,0.005792,0.004416,0.005504,0.005984,0.004896,0.075776,0.00608
+1395,1339.66,0.74646,0.305152,0.005408,0.1952,0.004192,0.0056,0.00464,0.006176,0.006112,0.072832,0.004992
+1396,1378.66,0.725342,0.309664,0.004544,0.201952,0.004864,0.004096,0.006112,0.005504,0.0048,0.073344,0.004448
+1397,1254.52,0.797119,0.315328,0.004576,0.201824,0.004928,0.004192,0.006112,0.006112,0.005952,0.076032,0.0056
+1398,418.365,2.39026,0.318176,0.00688,0.200704,0.005344,0.004832,0.005184,0.006432,0.004864,0.079232,0.004704
+1399,993.934,1.0061,0.344064,0.00592,0.225504,0.005856,0.004384,0.005696,0.005792,0.004896,0.081056,0.00496
+1400,1513.67,0.660645,0.311296,0.005408,0.198848,0.00464,0.00512,0.00512,0.006144,0.00576,0.074112,0.006144
+1401,1416.57,0.705933,0.30768,0.004576,0.196608,0.00544,0.004832,0.005408,0.005824,0.00512,0.075104,0.004768
+1402,1180.57,0.847046,0.305184,0.005792,0.194752,0.004256,0.005536,0.004704,0.006144,0.00608,0.073376,0.004544
+1403,1515.63,0.65979,0.319488,0.006048,0.212928,0.004256,0.005472,0.004768,0.006144,0.00592,0.069344,0.004608
+1404,1524.38,0.656006,0.303424,0.004416,0.19856,0.004192,0.005568,0.004672,0.005888,0.005888,0.069152,0.005088
+1405,655.308,1.526,0.307136,0.007072,0.19664,0.0056,0.004608,0.00544,0.0048,0.006144,0.071392,0.00544
+1406,1452.74,0.688354,0.305024,0.00576,0.19904,0.005632,0.004608,0.00544,0.0048,0.006144,0.067584,0.006016
+1407,1377.73,0.72583,0.301728,0.004928,0.19456,0.004096,0.005664,0.004576,0.006144,0.005984,0.069792,0.005984
+1408,1299.7,0.769409,0.304064,0.005056,0.195584,0.00512,0.00544,0.0048,0.006144,0.005824,0.07104,0.005056
+1409,1454.03,0.687744,0.3072,0.005824,0.19488,0.005792,0.004448,0.00576,0.00592,0.00592,0.07376,0.004896
+1410,1369.67,0.730103,0.30688,0.004736,0.196032,0.004672,0.005792,0.005568,0.005024,0.006144,0.073632,0.00528
+1411,1426.18,0.701172,0.303584,0.005088,0.19424,0.004416,0.005216,0.005024,0.005984,0.00576,0.072224,0.005632
+1412,1386.83,0.721069,0.318752,0.006112,0.201984,0.004896,0.004128,0.005984,0.006272,0.005952,0.078016,0.005408
+1413,1388.47,0.720215,0.530304,0.006144,0.415744,0.00752,0.004768,0.005952,0.00576,0.005728,0.072672,0.006016
+1414,686.097,1.45752,0.305152,0.005568,0.194816,0.004416,0.005312,0.004928,0.006048,0.005728,0.073376,0.00496
+1415,1491.9,0.670288,0.302784,0.004768,0.196608,0.005312,0.004832,0.005312,0.005056,0.006112,0.069472,0.005312
+1416,1303.84,0.766968,0.306176,0.00512,0.19664,0.005632,0.004576,0.005472,0.004768,0.006144,0.072704,0.00512
+1417,1134.78,0.881226,0.322976,0.00576,0.213376,0.005664,0.004576,0.005504,0.005824,0.005088,0.071648,0.005536
+1418,1712.73,0.583862,0.309248,0.005568,0.199232,0.0056,0.004672,0.005664,0.006016,0.00592,0.071456,0.00512
+1419,1333.12,0.750122,0.305184,0.006144,0.196288,0.004416,0.005312,0.004928,0.006144,0.00592,0.071488,0.004544
+1420,1524.94,0.655762,0.306464,0.006144,0.196608,0.00592,0.00432,0.0056,0.00464,0.006144,0.07168,0.005408
+1421,1130.4,0.884644,0.303232,0.004864,0.194528,0.005728,0.004512,0.005408,0.004832,0.006144,0.07168,0.005536
+1422,721.254,1.38647,0.311328,0.007808,0.200192,0.004928,0.00416,0.005856,0.00592,0.005824,0.07216,0.00448
+1423,1336.38,0.748291,0.305152,0.0056,0.194944,0.004256,0.005472,0.004768,0.006144,0.00576,0.073504,0.004704
+1424,1495.44,0.668701,0.308768,0.006144,0.19456,0.005696,0.004544,0.005312,0.004928,0.006144,0.075776,0.005664
+1425,1331.82,0.750854,0.308288,0.006112,0.194528,0.00416,0.006144,0.005216,0.005056,0.006112,0.075584,0.005376
+1426,1414.85,0.706787,0.3072,0.005664,0.19504,0.005376,0.004864,0.00576,0.006016,0.005856,0.073888,0.004736
+1427,1300.52,0.768921,0.308672,0.005664,0.196512,0.004672,0.005184,0.005056,0.005888,0.00576,0.074368,0.005568
+1428,1488.37,0.671875,0.306816,0.005728,0.194752,0.00432,0.00544,0.0048,0.006144,0.005792,0.07408,0.00576
+1429,1323.21,0.755737,0.3072,0.00608,0.19568,0.004896,0.004288,0.005856,0.005792,0.004736,0.075072,0.0048
+1430,1445.31,0.691895,0.53472,0.005376,0.4208,0.007424,0.004832,0.005216,0.005056,0.006144,0.07552,0.004352
+1431,645.649,1.54883,0.310976,0.006144,0.197728,0.004928,0.004192,0.005856,0.005632,0.004896,0.075776,0.005824
+1432,1517.6,0.658936,0.310272,0.006016,0.196736,0.005312,0.004864,0.00528,0.005024,0.006144,0.07552,0.005376
+1433,1214.89,0.82312,0.309248,0.005888,0.196032,0.004896,0.004128,0.005792,0.005792,0.006336,0.07424,0.006144
+1434,1616.1,0.618774,0.299648,0.004736,0.19456,0.005312,0.004832,0.005216,0.00512,0.006144,0.068928,0.0048
+1435,1348.03,0.741821,0.300032,0.00512,0.19616,0.004544,0.005376,0.004864,0.006048,0.005696,0.067168,0.005056
+1436,986.869,1.01331,0.327712,0.005536,0.219392,0.004448,0.005312,0.004928,0.005984,0.00576,0.072032,0.00432
+1437,1546.54,0.646606,0.317472,0.0056,0.203264,0.004128,0.0056,0.00464,0.006144,0.006144,0.077408,0.004544
+1438,1181.08,0.84668,0.582592,0.005056,0.466944,0.007296,0.004832,0.004256,0.006144,0.006144,0.075776,0.006144
+1439,725.469,1.37842,0.31888,0.006144,0.202752,0.004096,0.005632,0.005792,0.005184,0.00592,0.077824,0.005536
+1440,1412.41,0.708008,0.320352,0.00496,0.215072,0.005408,0.0048,0.005312,0.004928,0.006144,0.067584,0.006144
+1441,1397.95,0.715332,0.302976,0.006144,0.196608,0.005184,0.004864,0.00544,0.004992,0.006144,0.067584,0.006016
+1442,1407.08,0.710693,0.305152,0.005632,0.196352,0.004864,0.005472,0.004768,0.006144,0.005632,0.070144,0.006144
+1443,1373.57,0.728027,0.301088,0.006016,0.196736,0.005184,0.004864,0.005472,0.005088,0.006016,0.066848,0.004864
+1444,1348.92,0.741333,0.30096,0.005856,0.196896,0.005184,0.004864,0.004288,0.006144,0.006144,0.065536,0.006048
+1445,1517.04,0.65918,0.305152,0.005664,0.198944,0.004288,0.00576,0.00448,0.006144,0.006144,0.068704,0.005024
+1446,1133.06,0.882568,0.30416,0.00512,0.199904,0.004896,0.004096,0.005984,0.005728,0.00576,0.068096,0.004576
+1447,1045.97,0.956055,0.520896,0.006848,0.4096,0.006144,0.005664,0.004576,0.006144,0.006016,0.070944,0.00496
+1448,854.312,1.17053,0.308192,0.005088,0.202176,0.004672,0.004128,0.006112,0.006144,0.00592,0.068864,0.005088
+1449,1494.62,0.669067,0.307872,0.004864,0.198464,0.004288,0.005472,0.004768,0.00608,0.005728,0.07216,0.006048
+1450,1409.74,0.709351,0.303616,0.004608,0.197952,0.0048,0.005472,0.004768,0.006144,0.006144,0.06864,0.005088
+1451,1315.56,0.760132,0.299072,0.005376,0.195392,0.005312,0.004864,0.005184,0.00512,0.006144,0.066848,0.004832
+1452,1534.08,0.651855,0.299104,0.004704,0.197984,0.004768,0.004128,0.005888,0.005728,0.00576,0.064512,0.005632
+1453,1348.92,0.741333,0.30128,0.005024,0.196384,0.00432,0.005536,0.004704,0.006144,0.006016,0.067712,0.00544
+1454,1397.95,0.715332,0.302848,0.005376,0.195552,0.00576,0.00448,0.005408,0.004832,0.006144,0.069632,0.005664
+1455,1408.04,0.710205,0.311296,0.005856,0.200608,0.00448,0.005248,0.004992,0.005984,0.005984,0.072,0.006144
+1456,684.32,1.4613,0.316864,0.007808,0.207232,0.005856,0.004416,0.005696,0.00656,0.005792,0.067872,0.005632
+1457,1381.68,0.723755,0.30304,0.004704,0.198656,0.005344,0.004832,0.005216,0.006528,0.005728,0.06656,0.005472
+1458,1589.45,0.62915,0.307232,0.006144,0.198656,0.005536,0.004704,0.00592,0.005792,0.00576,0.069664,0.005056
+1459,1342.95,0.744629,0.303232,0.005024,0.198592,0.00416,0.0056,0.00464,0.006144,0.00592,0.067808,0.005344
+1460,1204.88,0.829956,0.303104,0.006144,0.196608,0.005504,0.004736,0.005792,0.00576,0.004832,0.068896,0.004832
+1461,1622.82,0.616211,0.303008,0.005664,0.197024,0.00416,0.0056,0.00464,0.006144,0.005952,0.067776,0.006048
+1462,1374.5,0.727539,0.30384,0.004832,0.1984,0.004352,0.005408,0.004832,0.006144,0.005952,0.06896,0.00496
+1463,1466.79,0.681763,0.303552,0.004544,0.2,0.0048,0.004096,0.006144,0.006144,0.006016,0.065664,0.006144
+1464,1407.8,0.710327,0.3072,0.00576,0.198784,0.004352,0.00528,0.00496,0.006144,0.005792,0.07136,0.004768
+1465,622.256,1.60706,0.315616,0.006688,0.202784,0.00528,0.004928,0.005408,0.004832,0.006144,0.073728,0.005824
+1466,1480.84,0.675293,0.307392,0.005376,0.196672,0.004896,0.004192,0.005952,0.005856,0.00576,0.072544,0.006144
+1467,1456.87,0.686401,0.307936,0.004832,0.198528,0.004224,0.005536,0.004704,0.006144,0.005888,0.073504,0.004576
+1468,1218.14,0.820923,0.311392,0.0048,0.196608,0.00416,0.005696,0.00448,0.006144,0.00592,0.07808,0.005504
+1469,1343.39,0.744385,0.315392,0.006144,0.196608,0.004128,0.00576,0.004448,0.007392,0.005152,0.08112,0.00464
+1470,1672.52,0.5979,0.308672,0.005472,0.19728,0.005312,0.004832,0.005216,0.00512,0.006144,0.073728,0.005568
+1471,1346.26,0.742798,0.31232,0.00512,0.196512,0.004192,0.005504,0.004736,0.005984,0.005696,0.080096,0.00448
+1472,1401.54,0.713501,0.307168,0.00576,0.19904,0.00544,0.0048,0.005376,0.005984,0.005056,0.0696,0.006112
+1473,742.231,1.34729,0.493536,0.007488,0.377728,0.00416,0.005664,0.004576,0.006144,0.005984,0.075936,0.005856
+1474,682.553,1.46509,0.32976,0.005632,0.217344,0.004352,0.004256,0.005248,0.004832,0.005184,0.078048,0.004864
+1475,1586.98,0.630127,0.313344,0.006144,0.198656,0.005216,0.004864,0.004256,0.006144,0.006144,0.07696,0.00496
+1476,1404.42,0.712036,0.309632,0.00448,0.196608,0.005824,0.004416,0.006144,0.005696,0.005728,0.074592,0.006144
+1477,1208.08,0.827759,0.31712,0.005376,0.194688,0.004896,0.004192,0.005664,0.00576,0.00496,0.075776,0.015808
+1478,1617.37,0.618286,0.308832,0.00544,0.194432,0.004896,0.004288,0.005984,0.006016,0.005984,0.076064,0.005728
+1479,1262.25,0.792236,0.339968,0.006016,0.217216,0.005888,0.004352,0.005728,0.006528,0.00592,0.083488,0.004832
+1480,1344.05,0.744019,0.321024,0.005984,0.196768,0.005664,0.004576,0.006144,0.006144,0.00592,0.084192,0.005632
+1481,640.1,1.56226,0.336288,0.006592,0.206368,0.004576,0.005376,0.004864,0.006112,0.005696,0.090592,0.006112
+1482,1473.65,0.678589,0.31248,0.005376,0.197248,0.00432,0.00544,0.0048,0.006144,0.00576,0.078112,0.00528
+1483,1255.86,0.796265,0.311872,0.004672,0.19456,0.005728,0.004512,0.0056,0.00576,0.005024,0.081632,0.004384
+1484,1538.11,0.650146,0.315456,0.00464,0.196608,0.00576,0.00448,0.006144,0.00576,0.005696,0.080736,0.005632
+1485,1153.97,0.866577,0.30736,0.005344,0.193184,0.004384,0.005344,0.004896,0.00608,0.00576,0.076224,0.006144
+1486,1612.28,0.620239,0.30528,0.0048,0.194208,0.004448,0.0056,0.00464,0.006144,0.005824,0.074048,0.005568
+1487,1205.06,0.829834,0.303904,0.004896,0.194208,0.005568,0.004832,0.004288,0.006144,0.00608,0.073504,0.004384
+1488,1592.84,0.627808,0.321568,0.005408,0.210944,0.004864,0.004096,0.005984,0.005728,0.004672,0.075232,0.00464
+1489,1101.08,0.908203,0.550272,0.007552,0.432768,0.005504,0.004768,0.00592,0.006336,0.00576,0.07616,0.005504
+1490,857.083,1.16675,0.308896,0.004544,0.196608,0.004096,0.005888,0.004352,0.006144,0.006112,0.075808,0.005344
+1491,1329.87,0.751953,0.305152,0.005568,0.193088,0.005216,0.004832,0.004288,0.006144,0.006144,0.0752,0.004672
+1492,1442,0.693481,0.311808,0.004864,0.196608,0.00528,0.00496,0.005408,0.004832,0.006144,0.077824,0.005888
+1493,888.985,1.12488,0.395648,0.0056,0.268992,0.00432,0.005408,0.015072,0.006144,0.006144,0.079168,0.0048
+1494,1795.7,0.556885,0.31504,0.005856,0.19616,0.004832,0.005664,0.004608,0.006112,0.006144,0.079872,0.005792
+1495,1306.75,0.765259,0.30992,0.0048,0.195552,0.005056,0.00416,0.006144,0.006144,0.005824,0.077152,0.005088
+1496,1384.72,0.722168,0.313344,0.005856,0.196608,0.004384,0.005344,0.004896,0.005984,0.005536,0.079904,0.004832
+1497,1463.9,0.683105,0.313536,0.004864,0.196608,0.005312,0.004864,0.005184,0.00512,0.006144,0.079872,0.005568
+1498,611.07,1.63647,0.315584,0.006624,0.200544,0.004256,0.005504,0.004736,0.006144,0.006144,0.075808,0.005824
+1499,1502.02,0.665771,0.309824,0.004736,0.196608,0.005344,0.004832,0.00416,0.006144,0.006144,0.075776,0.00608
+1500,1354.72,0.738159,0.309504,0.005376,0.19536,0.00432,0.005408,0.004832,0.006048,0.005696,0.07632,0.006144
+1501,1498.99,0.667114,0.309376,0.004672,0.196384,0.004288,0.005472,0.004768,0.006144,0.005792,0.076128,0.005728
+1502,1320.01,0.757568,0.310944,0.006144,0.19456,0.005824,0.004416,0.005792,0.005792,0.004832,0.077792,0.005792
+1503,1437.45,0.695679,0.309344,0.005376,0.194976,0.004544,0.006048,0.005216,0.00512,0.006144,0.077312,0.004608
+1504,1331.6,0.750977,0.30736,0.005376,0.195488,0.005696,0.004544,0.005376,0.00592,0.005088,0.073728,0.006144
+1505,1484.06,0.673828,0.30768,0.005088,0.198144,0.004608,0.00512,0.00496,0.005728,0.005696,0.072704,0.005632
+1506,738.284,1.35449,0.49152,0.00768,0.377344,0.005216,0.004864,0.004256,0.006144,0.006144,0.075232,0.00464
+1507,1143.81,0.874268,0.308064,0.004928,0.196608,0.004128,0.005664,0.004544,0.006144,0.005984,0.075488,0.004576
+1508,1330.09,0.751831,0.306816,0.005376,0.19472,0.004896,0.004128,0.00592,0.005632,0.0048,0.075776,0.005568
+1509,1511.72,0.661499,0.308896,0.005632,0.19504,0.004128,0.005632,0.004608,0.006144,0.006144,0.075776,0.005792
+1510,1330.52,0.751587,0.303104,0.005792,0.194592,0.004416,0.005184,0.005056,0.00592,0.00576,0.072192,0.004192
+1511,1419.02,0.704712,0.3072,0.005664,0.194912,0.004224,0.005536,0.004704,0.006144,0.00608,0.073792,0.006144
+1512,1178.87,0.848267,0.319744,0.005376,0.205664,0.004224,0.005536,0.004704,0.006144,0.006144,0.077536,0.004416
+1513,1555.05,0.643066,0.31744,0.006144,0.202752,0.005216,0.00496,0.005984,0.005824,0.005696,0.076128,0.004736
+1514,1400.82,0.713867,0.547072,0.00448,0.433152,0.007072,0.004064,0.006016,0.00576,0.005984,0.07584,0.004704
+1515,658.151,1.51941,0.313344,0.005792,0.199008,0.005408,0.004832,0.005216,0.005024,0.006144,0.0776,0.00432
+1516,1424.7,0.701904,0.311296,0.005504,0.197024,0.00432,0.005408,0.004832,0.006144,0.005792,0.07728,0.004992
+1517,1494.62,0.669067,0.312352,0.005408,0.197344,0.004224,0.006016,0.005632,0.00576,0.004992,0.0776,0.005376
+1518,1301.35,0.768433,0.309248,0.006144,0.19456,0.004128,0.005984,0.004224,0.006144,0.006144,0.07696,0.00496
+1519,1488.64,0.671753,0.309664,0.004512,0.196608,0.005216,0.005056,0.005312,0.004896,0.006144,0.077152,0.004768
+1520,1344.71,0.743652,0.31088,0.005632,0.19712,0.00512,0.00512,0.005408,0.005952,0.005056,0.075744,0.005728
+1521,1446.33,0.691406,0.310752,0.006144,0.195776,0.004928,0.004096,0.00592,0.005824,0.005696,0.076768,0.0056
+1522,1310.72,0.762939,0.311296,0.005824,0.196928,0.005664,0.004576,0.005312,0.005088,0.005984,0.076832,0.005088
+1523,1154.62,0.866089,0.546816,0.008192,0.397312,0.019968,0.022496,0.00464,0.006144,0.00608,0.076928,0.005056
+1524,840.119,1.19031,0.314592,0.005728,0.194976,0.005248,0.004832,0.004256,0.006144,0.00592,0.082144,0.005344
+1525,1491.62,0.67041,0.316864,0.006144,0.194592,0.0056,0.004608,0.00608,0.005856,0.005792,0.082624,0.005568
+1526,1310.72,0.762939,0.310592,0.005408,0.19504,0.004672,0.0056,0.004608,0.006144,0.006112,0.077696,0.005312
+1527,1432.92,0.697876,0.309856,0.004832,0.196416,0.004288,0.006144,0.005248,0.004992,0.006144,0.075776,0.006016
+1528,1339,0.746826,0.31728,0.006144,0.196512,0.004192,0.00608,0.005472,0.00592,0.005056,0.08192,0.005984
+1529,1458.43,0.685669,0.311904,0.004704,0.196032,0.004672,0.004096,0.00608,0.005696,0.005856,0.078816,0.005952
+1530,1396.28,0.716187,0.311968,0.005056,0.19456,0.005728,0.004512,0.005568,0.00576,0.005056,0.079872,0.005856
+1531,1391.54,0.718628,0.3152,0.005984,0.196768,0.005568,0.004672,0.006112,0.005728,0.005696,0.07872,0.005952
+1532,567.706,1.76147,0.580256,0.004736,0.428032,0.04096,0.005376,0.004864,0.006112,0.00576,0.079872,0.004544
+1533,1281.6,0.780273,0.32592,0.0056,0.207616,0.00432,0.005376,0.004864,0.006144,0.005856,0.08016,0.005984
+1534,1297.64,0.77063,0.313472,0.005376,0.197536,0.005184,0.005024,0.005376,0.00592,0.005088,0.078944,0.005024
+1535,1298.05,0.770386,0.315296,0.0048,0.196608,0.005632,0.004608,0.005952,0.005888,0.005728,0.080736,0.005344
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..a0cc731
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_256,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1286.52,0.818314,0.329568,0.00563334,0.229303,0.00542022,0.00491969,0.005318,0.00589463,0.00578406,0.0618174,0.00547669
+max_1024,1756.81,2.1123,0.782688,0.043008,0.685664,0.047104,0.020064,0.033632,0.029216,0.020128,0.087296,0.015776
+min_1024,473.417,0.569214,0.273632,0.004384,0.192224,0.004064,0.004,0.004096,0.004448,0.004256,0.041728,0.004128
+512,1136.67,0.879761,0.290816,0.005632,0.209408,0.004256,0.0056,0.004512,0.006112,0.006144,0.04304,0.006112
+513,1699.94,0.588257,0.280576,0.006144,0.20032,0.00448,0.005152,0.005088,0.006176,0.00608,0.042688,0.004448
+514,1423.71,0.702393,0.280096,0.006112,0.19872,0.00528,0.0048,0.004256,0.006112,0.005952,0.0432,0.005664
+515,982.019,1.01831,0.293088,0.005408,0.211904,0.005216,0.0048,0.00432,0.006144,0.006144,0.043136,0.006016
+516,1581.16,0.632446,0.278528,0.006016,0.196768,0.005696,0.004512,0.005984,0.005696,0.004896,0.042816,0.006144
+517,1327.07,0.75354,0.282624,0.0056,0.20048,0.004864,0.005312,0.004928,0.00592,0.005696,0.045568,0.004256
+518,1406.83,0.710815,0.284224,0.005408,0.203776,0.004256,0.005568,0.004512,0.006144,0.006048,0.043104,0.005408
+519,523.584,1.90991,0.285728,0.00816,0.202784,0.005184,0.0048,0.004352,0.006144,0.006144,0.04272,0.00544
+520,707.671,1.41309,0.560032,0.004992,0.48128,0.004256,0.005664,0.004416,0.006144,0.00608,0.042784,0.004416
+521,1276.81,0.783203,0.294944,0.006144,0.21472,0.004416,0.005248,0.004992,0.00576,0.005536,0.043296,0.004832
+522,1007.25,0.992798,0.3152,0.006144,0.233472,0.005152,0.0048,0.004416,0.006112,0.00592,0.043232,0.005952
+523,1068.75,0.935669,0.287968,0.00608,0.2048,0.00416,0.005472,0.004768,0.0072,0.0064,0.043712,0.005376
+524,1251.07,0.799316,0.3216,0.005024,0.239296,0.0056,0.004032,0.004608,0.004544,0.005728,0.047296,0.005472
+525,950.679,1.05188,0.522048,0.00592,0.41984,0.020704,0.006144,0.005504,0.005856,0.005024,0.047104,0.005952
+526,1238.02,0.807739,0.300352,0.005728,0.214592,0.004832,0.004224,0.005792,0.006432,0.005824,0.047488,0.00544
+527,1375.65,0.726929,0.325632,0.005696,0.240064,0.005792,0.004448,0.005504,0.00576,0.00512,0.048448,0.0048
+528,1405.63,0.711426,0.28672,0.00544,0.20096,0.004544,0.004192,0.006048,0.006112,0.005536,0.04896,0.004928
+529,1243.66,0.804077,0.289184,0.004704,0.2048,0.00544,0.0048,0.006176,0.00608,0.005856,0.045376,0.005952
+530,1011.23,0.988892,0.297984,0.00544,0.2128,0.004992,0.005408,0.004832,0.006144,0.006144,0.046976,0.005248
+531,1489.73,0.671265,0.283104,0.004576,0.200704,0.006112,0.004096,0.005984,0.005696,0.004864,0.04656,0.004512
+532,1529.5,0.653809,0.287712,0.005088,0.202784,0.005792,0.004416,0.005568,0.00672,0.006144,0.046272,0.004928
+533,1339.22,0.746704,0.309024,0.00544,0.22736,0.0048,0.004064,0.006016,0.00576,0.00464,0.045024,0.00592
+534,665.367,1.50293,0.30672,0.007424,0.223264,0.004832,0.004128,0.005856,0.0056,0.006144,0.04384,0.005632
+535,1409.98,0.709229,0.284896,0.004576,0.204192,0.004672,0.004096,0.006048,0.005824,0.00576,0.043808,0.00592
+536,1452.22,0.688599,0.280576,0.005856,0.198944,0.00576,0.00448,0.005312,0.00496,0.006112,0.04464,0.004512
+537,1433.17,0.697754,0.28272,0.00512,0.20064,0.00416,0.005824,0.004416,0.006144,0.006144,0.044896,0.005376
+538,1222.69,0.817871,0.280096,0.00544,0.195168,0.004192,0.005952,0.004288,0.006176,0.006112,0.047104,0.005664
+539,1483.25,0.674194,0.282624,0.005728,0.194976,0.00528,0.004576,0.00448,0.006144,0.005664,0.05088,0.004896
+540,1322.36,0.756226,0.287744,0.005728,0.197024,0.005632,0.004608,0.005248,0.004992,0.006144,0.0512,0.007168
+541,1212.91,0.824463,0.316672,0.005792,0.22768,0.005184,0.0048,0.004384,0.006112,0.006144,0.051136,0.00544
+542,1512,0.661377,0.52848,0.006144,0.438272,0.008,0.004288,0.005696,0.00576,0.004928,0.050752,0.00464
+543,899.725,1.11145,0.288032,0.006144,0.201728,0.004864,0.004352,0.0056,0.006432,0.005696,0.047808,0.005408
+544,1358.99,0.73584,0.282592,0.006144,0.195712,0.004896,0.004192,0.006144,0.006144,0.006144,0.047136,0.00608
+545,1412.41,0.708008,0.285248,0.004672,0.198176,0.004576,0.004096,0.006144,0.005696,0.0064,0.050432,0.005056
+546,1528.07,0.654419,0.310944,0.00592,0.221312,0.004192,0.005984,0.004352,0.006048,0.006144,0.0512,0.005792
+547,1159.68,0.862305,0.290272,0.004512,0.2024,0.004448,0.005184,0.00496,0.005664,0.004704,0.052992,0.005408
+548,1428.17,0.700195,0.2848,0.005536,0.1968,0.004512,0.005152,0.00496,0.00576,0.005632,0.05184,0.004608
+549,1445.82,0.69165,0.290112,0.006016,0.198784,0.004096,0.006144,0.005344,0.005984,0.005056,0.053248,0.00544
+550,1271.46,0.786499,0.29984,0.0048,0.2128,0.004288,0.005184,0.005056,0.005856,0.005728,0.051488,0.00464
+551,1493.26,0.669678,0.530432,0.006144,0.438272,0.007648,0.00464,0.006048,0.00576,0.005696,0.050112,0.006112
+552,895.105,1.11719,0.292896,0.004928,0.204832,0.005312,0.0048,0.004352,0.005984,0.006144,0.051104,0.00544
+553,1334.64,0.749268,0.283264,0.004704,0.196096,0.004608,0.004096,0.00608,0.00576,0.005728,0.051616,0.004576
+554,1622.18,0.616455,0.285856,0.006048,0.198752,0.006048,0.004192,0.005856,0.005728,0.0048,0.049056,0.005376
+555,1295.18,0.772095,0.284544,0.005504,0.19904,0.004384,0.005248,0.00496,0.006144,0.00608,0.047168,0.006016
+556,1503.95,0.664917,0.466752,0.005408,0.377696,0.004256,0.005472,0.004768,0.006144,0.005728,0.051616,0.005664
+557,1132.74,0.882812,0.285664,0.005088,0.198656,0.00416,0.005472,0.004704,0.006144,0.00576,0.049536,0.006144
+558,1483.25,0.674194,0.284544,0.005664,0.19648,0.004704,0.004096,0.006144,0.005984,0.005888,0.049568,0.006016
+559,1119.74,0.893066,0.301216,0.006144,0.216832,0.004352,0.005312,0.004928,0.006144,0.006016,0.046848,0.00464
+560,1215.07,0.822998,0.4792,0.006944,0.395264,0.006144,0.005152,0.005088,0.005792,0.005696,0.043712,0.005408
+561,1127.44,0.886963,0.288032,0.00544,0.201536,0.005248,0.00496,0.005664,0.00576,0.00496,0.049088,0.005376
+562,1377.73,0.72583,0.28224,0.004672,0.19456,0.005408,0.004768,0.00416,0.006144,0.006144,0.050976,0.005408
+563,1584.53,0.631104,0.284864,0.00544,0.198592,0.004864,0.004288,0.006048,0.00624,0.005856,0.048416,0.00512
+564,1374.73,0.727417,0.277664,0.005984,0.195904,0.004832,0.00528,0.005088,0.006048,0.005664,0.043424,0.00544
+565,1497.9,0.667603,0.460544,0.006144,0.377952,0.004928,0.004192,0.005792,0.00576,0.004864,0.045024,0.005888
+566,1093.43,0.914551,0.27648,0.005408,0.194816,0.004672,0.004096,0.006016,0.005696,0.004672,0.045056,0.006048
+567,1595.02,0.626953,0.280704,0.004992,0.19856,0.004192,0.00544,0.0048,0.006144,0.005696,0.044832,0.006048
+568,1161.66,0.86084,0.284928,0.004896,0.202752,0.005664,0.004576,0.005312,0.004928,0.006176,0.045024,0.0056
+569,1628.3,0.614136,0.583776,0.005408,0.46368,0.007328,0.011104,0.026592,0.016416,0.006144,0.042496,0.004608
+570,764.108,1.30872,0.282336,0.004608,0.202752,0.005152,0.004768,0.004416,0.006144,0.006112,0.042976,0.005408
+571,1497.62,0.667725,0.290496,0.005632,0.208384,0.004832,0.004384,0.006144,0.006144,0.006144,0.043008,0.005824
+572,1589.75,0.629028,0.280608,0.00592,0.200928,0.00512,0.0048,0.004448,0.006112,0.005888,0.042752,0.00464
+573,1367.84,0.731079,0.285728,0.006144,0.204128,0.0048,0.004064,0.006144,0.006144,0.006144,0.042688,0.005472
+574,1323,0.755859,0.275296,0.00496,0.196128,0.004608,0.004064,0.006112,0.005792,0.00576,0.041728,0.006144
+575,1390.36,0.719238,0.273632,0.005408,0.194624,0.0048,0.004096,0.00592,0.005824,0.005664,0.041856,0.00544
+576,1532.07,0.65271,0.28192,0.005664,0.201184,0.005568,0.004672,0.005824,0.005792,0.004864,0.042912,0.00544
+577,1326,0.75415,0.285184,0.004512,0.208224,0.004704,0.004096,0.006016,0.005632,0.004736,0.042624,0.00464
+578,1104.34,0.905518,0.526688,0.00496,0.442368,0.006144,0.004096,0.006112,0.005728,0.005632,0.046016,0.005632
+579,1046.37,0.955688,0.28528,0.004672,0.200096,0.004704,0.004096,0.006144,0.006144,0.005952,0.048832,0.00464
+580,1601.25,0.624512,0.286784,0.004576,0.200672,0.00528,0.004704,0.004352,0.006144,0.00608,0.049216,0.00576
+581,1386.83,0.721069,0.283136,0.004608,0.196608,0.00576,0.00448,0.005504,0.00576,0.006432,0.048864,0.00512
+582,1594.71,0.627075,0.286688,0.00544,0.199424,0.006144,0.004096,0.00592,0.00576,0.004896,0.04896,0.006048
+583,1332.25,0.75061,0.464832,0.004416,0.378848,0.005184,0.0048,0.004352,0.006144,0.00608,0.049216,0.005792
+584,1159.85,0.862183,0.30752,0.0048,0.220832,0.004448,0.005216,0.005024,0.006144,0.005696,0.0496,0.00576
+585,1340.09,0.746216,0.280672,0.005376,0.19648,0.004864,0.00432,0.005376,0.004864,0.006144,0.048672,0.004576
+586,918.283,1.08899,0.300832,0.005696,0.217376,0.004256,0.00592,0.005344,0.00512,0.006112,0.045088,0.00592
+587,742.5,1.3468,0.2992,0.00752,0.21568,0.00432,0.005344,0.004896,0.005984,0.006304,0.043008,0.006144
+588,1589.14,0.629272,0.28336,0.004832,0.202784,0.004064,0.00576,0.00448,0.006176,0.006112,0.044512,0.00464
+589,1342.73,0.744751,0.278592,0.00464,0.197792,0.004928,0.005248,0.005024,0.005888,0.005568,0.04384,0.005664
+590,1536.67,0.650757,0.279136,0.004544,0.196608,0.006144,0.004096,0.007296,0.004992,0.006144,0.04464,0.004672
+591,1293.13,0.773315,0.28064,0.004992,0.19472,0.005984,0.00512,0.00512,0.006144,0.006144,0.04704,0.005376
+592,1294.36,0.772583,0.282912,0.00544,0.199392,0.004352,0.005632,0.004608,0.006144,0.005856,0.046592,0.004896
+593,1403.46,0.712524,0.278688,0.005408,0.194976,0.004576,0.005536,0.004704,0.006176,0.005792,0.046688,0.004832
+594,1365.11,0.732544,0.287008,0.00544,0.19936,0.004384,0.00528,0.00496,0.006144,0.00592,0.050976,0.004544
+595,1232.44,0.811401,0.29744,0.004576,0.21072,0.00432,0.005472,0.004768,0.006016,0.0056,0.051104,0.004864
+596,773.56,1.29272,0.325632,0.008,0.235296,0.004512,0.0056,0.00464,0.006144,0.005856,0.051168,0.004416
+597,1506.16,0.66394,0.283232,0.0048,0.20016,0.004672,0.004064,0.006112,0.005632,0.005856,0.045888,0.006048
+598,1355.39,0.737793,0.286496,0.005632,0.198368,0.004864,0.004128,0.005632,0.00576,0.004992,0.0512,0.00592
+599,1623.46,0.615967,0.28752,0.004896,0.199936,0.004864,0.004128,0.00592,0.00576,0.00576,0.051456,0.0048
+600,1394.86,0.716919,0.472704,0.005664,0.377312,0.004096,0.005632,0.00464,0.006112,0.005792,0.057696,0.00576
+601,1151.37,0.86853,0.290816,0.005664,0.19504,0.00576,0.00448,0.00528,0.00496,0.006144,0.058592,0.004896
+602,1372.42,0.728638,0.29088,0.00512,0.19616,0.004544,0.004096,0.006144,0.006144,0.005664,0.0576,0.005408
+603,1113.04,0.898438,0.326784,0.006144,0.231328,0.004192,0.005472,0.004768,0.006144,0.005792,0.057472,0.005472
+604,1167.12,0.856812,0.565568,0.004416,0.431232,0.00704,0.011424,0.033632,0.014336,0.00608,0.051264,0.006144
+605,749.291,1.33459,0.324288,0.004768,0.23552,0.005376,0.0048,0.004352,0.005952,0.006144,0.0512,0.006176
+606,1287.24,0.776855,0.323168,0.004448,0.23072,0.0048,0.004096,0.005888,0.005696,0.0048,0.057216,0.005504
+607,1561.57,0.640381,0.294592,0.006144,0.202752,0.005824,0.004416,0.006144,0.006144,0.006144,0.0512,0.005824
+608,1557.71,0.641968,0.50176,0.005472,0.412608,0.004096,0.005696,0.004544,0.006144,0.006144,0.0512,0.005856
+609,1112.74,0.898682,0.284704,0.006144,0.196288,0.004448,0.005184,0.005024,0.00576,0.005664,0.051744,0.004448
+610,1186.73,0.842651,0.2888,0.006144,0.199936,0.004832,0.00544,0.004832,0.006144,0.005696,0.050752,0.005024
+611,1548.29,0.645874,0.294912,0.00576,0.205184,0.006144,0.004096,0.006112,0.005696,0.005728,0.050048,0.006144
+612,1463.64,0.683228,0.526336,0.005728,0.442432,0.006496,0.004096,0.006016,0.005824,0.005696,0.045024,0.005024
+613,816.994,1.224,0.290848,0.006144,0.202784,0.00528,0.0048,0.004256,0.006112,0.006112,0.049184,0.006176
+614,1565.45,0.638794,0.290496,0.006144,0.202368,0.00448,0.005152,0.005088,0.005696,0.006304,0.04944,0.005824
+615,1373.34,0.728149,0.284672,0.005824,0.196928,0.005376,0.004864,0.0056,0.00464,0.006144,0.050208,0.005088
+616,1566.65,0.638306,0.280608,0.005824,0.19696,0.006112,0.004096,0.006144,0.006144,0.00592,0.043232,0.006176
+617,1363.06,0.733643,0.462752,0.005824,0.377152,0.004256,0.005632,0.004448,0.006144,0.00608,0.047168,0.006048
+618,1194.17,0.837402,0.282624,0.00576,0.194944,0.004192,0.005632,0.004512,0.006144,0.006112,0.049184,0.006144
+619,1370.36,0.729736,0.283392,0.004864,0.194592,0.00576,0.004448,0.006144,0.006144,0.006144,0.05056,0.004736
+620,1229.11,0.813599,0.301056,0.006144,0.210944,0.00544,0.0048,0.005184,0.006976,0.005664,0.04976,0.006144
+621,1607.22,0.622192,0.589888,0.00544,0.50048,0.006144,0.006112,0.005344,0.004928,0.006144,0.050592,0.004704
+622,738.284,1.35449,0.304,0.00496,0.212672,0.004416,0.005216,0.005024,0.006144,0.006144,0.054464,0.00496
+623,1477.37,0.67688,0.305152,0.005984,0.211136,0.005376,0.004768,0.005184,0.00672,0.005792,0.054048,0.006144
+624,1344.71,0.743652,0.294912,0.005888,0.203008,0.005472,0.004768,0.005184,0.005056,0.006144,0.05456,0.004832
+625,1496.53,0.668213,0.292352,0.00544,0.19936,0.005664,0.004576,0.00528,0.00496,0.006144,0.055296,0.005632
+626,1185.36,0.843628,0.286784,0.005408,0.19536,0.005664,0.004576,0.00544,0.0048,0.006144,0.054464,0.004928
+627,1473.65,0.678589,0.288416,0.006144,0.198656,0.006144,0.004096,0.006144,0.005824,0.005728,0.049888,0.005792
+628,1380.98,0.724121,0.285504,0.004928,0.198656,0.004192,0.005568,0.004576,0.006144,0.005984,0.049312,0.006144
+629,1512,0.661377,0.293024,0.00544,0.206656,0.004864,0.004352,0.005632,0.005696,0.005056,0.050848,0.00448
+630,1358.99,0.73584,0.532416,0.005536,0.447072,0.007616,0.004672,0.00528,0.00496,0.006144,0.045056,0.00608
+631,809.326,1.2356,0.288608,0.006144,0.200704,0.00576,0.00448,0.005504,0.004736,0.006144,0.049152,0.005984
+632,1511.72,0.661499,0.283904,0.00608,0.19872,0.005408,0.004768,0.00416,0.006144,0.005728,0.047488,0.005408
+633,1509.21,0.662598,0.29632,0.005376,0.215712,0.004384,0.00528,0.00496,0.005984,0.005728,0.043488,0.005408
+634,1384.25,0.722412,0.27872,0.005472,0.196416,0.004832,0.00432,0.005472,0.004896,0.006016,0.046688,0.004608
+635,1374.04,0.727783,0.4608,0.00448,0.378848,0.004128,0.005568,0.004704,0.006112,0.005632,0.045568,0.00576
+636,1127.29,0.887085,0.278528,0.006048,0.194752,0.00576,0.004384,0.0056,0.005696,0.005088,0.04672,0.00448
+637,1611.33,0.620605,0.287648,0.005024,0.197696,0.004832,0.00432,0.005504,0.00576,0.00512,0.053248,0.006144
+638,1031.61,0.96936,0.305184,0.00544,0.213728,0.00576,0.00448,0.005472,0.005792,0.00512,0.054432,0.00496
+639,1477.63,0.676758,0.560032,0.005024,0.433568,0.037472,0.013952,0.00448,0.006144,0.006144,0.047136,0.006112
+640,846.718,1.18103,0.28976,0.005088,0.20816,0.004832,0.004096,0.005856,0.00576,0.004768,0.046688,0.004512
+641,1416.57,0.705933,0.288768,0.004544,0.206688,0.004192,0.005504,0.004736,0.005984,0.005696,0.045696,0.005728
+642,1463.38,0.68335,0.285472,0.004896,0.202752,0.00528,0.0048,0.00528,0.005152,0.006112,0.046496,0.004704
+643,1485.94,0.672974,0.280576,0.005408,0.197376,0.005152,0.0048,0.004352,0.006144,0.006144,0.046208,0.004992
+644,1178.54,0.848511,0.27952,0.005088,0.197952,0.0048,0.004096,0.005952,0.005664,0.004896,0.046656,0.004416
+645,1624.11,0.615723,0.285984,0.00576,0.198304,0.004832,0.004096,0.006144,0.006112,0.00576,0.049568,0.005408
+646,1110.48,0.900513,0.292672,0.006144,0.204064,0.004832,0.004096,0.005856,0.005568,0.004992,0.051168,0.005952
+647,1184.67,0.844116,0.319648,0.005408,0.232064,0.00432,0.005344,0.004896,0.006144,0.006112,0.050368,0.004992
+648,815.53,1.2262,0.294976,0.008192,0.2048,0.005728,0.004512,0.00544,0.006016,0.004928,0.05072,0.00464
+649,1435.43,0.696655,0.288768,0.006176,0.198656,0.005536,0.004672,0.005824,0.005632,0.004928,0.052352,0.004992
+650,1529.79,0.653687,0.288672,0.005792,0.198976,0.004128,0.005504,0.004736,0.006112,0.00576,0.051616,0.006048
+651,1321.72,0.756592,0.286272,0.00608,0.196672,0.005184,0.004832,0.00432,0.007232,0.005056,0.0512,0.005696
+652,1451.97,0.688721,0.505856,0.005824,0.415936,0.004224,0.005504,0.004768,0.006112,0.005664,0.05168,0.006144
+653,1100.48,0.908691,0.295328,0.004512,0.2048,0.005472,0.004768,0.005216,0.005024,0.006144,0.053248,0.006144
+654,1588.83,0.629395,0.292224,0.006144,0.199904,0.004864,0.00528,0.004992,0.005888,0.005632,0.054016,0.005504
+655,1104.64,0.905273,0.293312,0.004544,0.20464,0.004256,0.005408,0.004832,0.006144,0.00592,0.052864,0.004704
+656,1397,0.71582,0.540672,0.006144,0.444416,0.007936,0.004352,0.0056,0.005728,0.005056,0.056608,0.004832
+657,895.692,1.11646,0.297344,0.004512,0.206752,0.00416,0.005472,0.004768,0.00592,0.005728,0.055328,0.004704
+658,1451.71,0.688843,0.297088,0.005408,0.203136,0.004576,0.004096,0.006144,0.006144,0.006176,0.055296,0.006112
+659,1314.29,0.760864,0.288768,0.005792,0.196512,0.004544,0.004096,0.006144,0.006112,0.005632,0.055488,0.004448
+660,1529.5,0.653809,0.289056,0.00544,0.201696,0.004096,0.005568,0.004672,0.006144,0.005664,0.050656,0.00512
+661,1513.11,0.660889,0.468768,0.006144,0.376832,0.005472,0.0048,0.005216,0.004992,0.006144,0.053248,0.00592
+662,1161.82,0.860718,0.290816,0.006144,0.198656,0.005792,0.004448,0.005312,0.004928,0.006144,0.053248,0.006144
+663,1456.87,0.686401,0.287104,0.004736,0.196096,0.004608,0.005536,0.004704,0.006144,0.00576,0.053632,0.005888
+664,1176,0.850342,0.300928,0.006144,0.208896,0.005536,0.004704,0.005376,0.006496,0.005696,0.052064,0.006016
+665,1469.15,0.680664,0.526944,0.004672,0.437248,0.007104,0.005504,0.0048,0.006144,0.005888,0.050656,0.004928
+666,924.292,1.08191,0.296032,0.006144,0.2048,0.00528,0.0048,0.004288,0.006112,0.006144,0.053088,0.005376
+667,1479.23,0.676025,0.284704,0.005408,0.195296,0.005376,0.004576,0.004384,0.006144,0.006144,0.052736,0.00464
+668,1429.67,0.699463,0.289568,0.004896,0.199968,0.004832,0.004096,0.006048,0.005824,0.005696,0.053312,0.004896
+669,1416.81,0.705811,0.288896,0.005408,0.197472,0.00544,0.0048,0.005184,0.005056,0.006176,0.054368,0.004992
+670,1426.68,0.700928,0.465632,0.004832,0.376832,0.005664,0.004576,0.005376,0.004864,0.006144,0.0512,0.006144
+671,1096.65,0.911865,0.281376,0.004928,0.194528,0.005152,0.0048,0.004384,0.006144,0.00592,0.050496,0.005024
+672,1626.04,0.61499,0.28304,0.004512,0.195584,0.004928,0.004288,0.006144,0.005728,0.005728,0.051456,0.004672
+673,1404.18,0.712158,0.28672,0.006144,0.200672,0.004128,0.005536,0.004736,0.006112,0.005792,0.047456,0.006144
+674,1226.53,0.815308,0.331776,0.005504,0.242304,0.005248,0.0048,0.00432,0.006112,0.006144,0.0512,0.006144
+675,722.399,1.38428,0.33936,0.008128,0.251296,0.00464,0.004224,0.00576,0.005728,0.004896,0.049152,0.005536
+676,1400.58,0.713989,0.295136,0.004672,0.208128,0.004864,0.004096,0.005952,0.005856,0.005696,0.05008,0.005792
+677,1439.97,0.694458,0.292096,0.006016,0.202912,0.005792,0.004416,0.005536,0.005728,0.005152,0.051104,0.00544
+678,1476.04,0.67749,0.284832,0.005408,0.197312,0.004256,0.0056,0.004672,0.006112,0.00576,0.051136,0.004576
+679,1429.17,0.699707,0.288768,0.006144,0.198656,0.005664,0.004576,0.00544,0.006336,0.005632,0.051232,0.005088
+680,685.753,1.45825,0.282624,0.004704,0.196224,0.00448,0.005184,0.005056,0.005856,0.005728,0.049856,0.005536
+681,1442.25,0.693359,0.302816,0.00448,0.214656,0.00448,0.005248,0.004992,0.005888,0.005696,0.051904,0.005472
+682,1418.28,0.705078,0.292864,0.005568,0.203328,0.005824,0.004416,0.005568,0.005696,0.00512,0.052416,0.004928
+683,1462.86,0.683594,0.28672,0.006048,0.196704,0.00544,0.0048,0.004192,0.006048,0.006144,0.05264,0.004704
+684,1454.03,0.687744,0.282624,0.005536,0.19424,0.004864,0.00544,0.00496,0.00592,0.005664,0.049856,0.006144
+685,1447.09,0.69104,0.28288,0.005408,0.193504,0.005856,0.005408,0.00512,0.005792,0.005728,0.04992,0.006144
+686,1446.07,0.691528,0.283392,0.004864,0.19456,0.0056,0.00464,0.00544,0.0048,0.006144,0.051232,0.006112
+687,1461.29,0.684326,0.28624,0.005984,0.196768,0.005632,0.004608,0.005792,0.005728,0.004896,0.051168,0.005664
+688,1420.25,0.704102,0.282624,0.006144,0.193856,0.0048,0.004096,0.00592,0.005728,0.004896,0.05104,0.006144
+689,1448.63,0.690308,0.28432,0.006144,0.195584,0.004864,0.005408,0.005088,0.005888,0.00576,0.049792,0.005792
+690,1410.95,0.70874,0.283008,0.004608,0.19456,0.005248,0.0048,0.004288,0.006144,0.0072,0.050144,0.006016
+691,1371.96,0.728882,0.286752,0.005088,0.202208,0.00464,0.004128,0.005792,0.00576,0.004864,0.048896,0.005376
+692,1312.4,0.761963,0.289792,0.006144,0.202752,0.004096,0.00576,0.00448,0.006176,0.006112,0.0488,0.005472
+693,1624.43,0.615601,0.283744,0.00576,0.196992,0.005632,0.004608,0.005376,0.006112,0.00496,0.048864,0.00544
+694,1443.78,0.692627,0.285856,0.005568,0.199232,0.005824,0.004448,0.00608,0.005824,0.005696,0.047776,0.005408
+695,1364.42,0.73291,0.286656,0.005664,0.201184,0.005376,0.0048,0.005184,0.00512,0.006144,0.047104,0.00608
+696,1496.8,0.668091,0.27952,0.005088,0.19632,0.004384,0.005984,0.004256,0.006144,0.00592,0.046752,0.004672
+697,1472.32,0.679199,0.278528,0.005472,0.194784,0.004544,0.004096,0.00608,0.005792,0.005728,0.047072,0.00496
+698,1454.55,0.6875,0.282624,0.00592,0.196832,0.004128,0.005696,0.004512,0.006144,0.005984,0.047328,0.00608
+699,1451.71,0.688843,0.28176,0.005856,0.195872,0.004864,0.004352,0.005984,0.005728,0.004672,0.048992,0.00544
+700,1395.33,0.716675,0.279008,0.005408,0.193536,0.00512,0.0048,0.004384,0.006144,0.006144,0.048832,0.00464
+701,1199.06,0.833984,0.313312,0.005504,0.227936,0.004128,0.005536,0.004704,0.006144,0.005952,0.047296,0.006112
+702,1572.96,0.635742,0.298432,0.005984,0.209056,0.005632,0.004608,0.005344,0.00656,0.005728,0.049952,0.005568
+703,1478.43,0.676392,0.284128,0.005632,0.19712,0.00544,0.0048,0.005184,0.005056,0.006144,0.049152,0.0056
+704,1466.52,0.681885,0.282624,0.005824,0.19488,0.004096,0.005632,0.004608,0.00608,0.005664,0.049696,0.006144
+705,1437.45,0.695679,0.286688,0.006144,0.196512,0.004192,0.00544,0.0048,0.006144,0.006112,0.051232,0.006112
+706,1498.45,0.667358,0.282784,0.006144,0.196608,0.004192,0.005696,0.004448,0.007392,0.004896,0.0488,0.004608
+707,1462.86,0.683594,0.2808,0.004448,0.196576,0.004096,0.005664,0.005696,0.005024,0.006144,0.048576,0.004576
+708,1489.18,0.671509,0.284672,0.005888,0.198912,0.006112,0.004128,0.006144,0.006144,0.00592,0.04528,0.006144
+709,1438.45,0.69519,0.280512,0.004896,0.195616,0.005088,0.004096,0.00576,0.005728,0.004896,0.049024,0.005408
+710,1399.86,0.714355,0.288768,0.006144,0.195968,0.004736,0.00544,0.00688,0.006112,0.00576,0.052928,0.0048
+711,1309.25,0.763794,0.292864,0.005856,0.202336,0.0048,0.004096,0.00592,0.005696,0.004768,0.054496,0.004896
+712,1339.22,0.746704,0.31664,0.005472,0.231168,0.004864,0.004256,0.005696,0.0056,0.005088,0.049088,0.005408
+713,1506.44,0.663818,0.31024,0.005088,0.22528,0.004096,0.005568,0.004672,0.006176,0.005856,0.048384,0.00512
+714,1369.21,0.730347,0.30928,0.005472,0.22128,0.004704,0.004096,0.006016,0.006272,0.006144,0.049216,0.00608
+715,1362.16,0.734131,0.28672,0.005824,0.198976,0.004224,0.005568,0.004544,0.006144,0.005984,0.050784,0.004672
+716,1570.55,0.636719,0.29696,0.005728,0.209344,0.005664,0.004544,0.005408,0.004832,0.006144,0.050304,0.004992
+717,1444.8,0.692139,0.303136,0.006144,0.217088,0.005472,0.004,0.004864,0.006144,0.006144,0.048864,0.004416
+718,1420.25,0.704102,0.284576,0.005984,0.198816,0.00416,0.005568,0.00464,0.006112,0.005664,0.047584,0.006048
+719,1472.85,0.678955,0.282656,0.004864,0.196096,0.004608,0.004096,0.005984,0.00576,0.00464,0.051168,0.00544
+720,953.778,1.04846,0.288416,0.004544,0.20272,0.004128,0.005504,0.004736,0.007328,0.00496,0.049056,0.00544
+721,1572.06,0.636108,0.2992,0.00512,0.210976,0.005664,0.004544,0.005184,0.005056,0.006144,0.051104,0.005408
+722,1514.23,0.6604,0.285728,0.004992,0.198368,0.004384,0.005568,0.004672,0.006144,0.005824,0.051168,0.004608
+723,1426.18,0.701172,0.2808,0.005408,0.195296,0.004096,0.006112,0.00528,0.004992,0.006144,0.048832,0.00464
+724,1469.15,0.680664,0.281152,0.004672,0.194496,0.00416,0.005984,0.00432,0.00608,0.006048,0.0504,0.004992
+725,1444.03,0.692505,0.286592,0.004896,0.198272,0.00448,0.005184,0.005056,0.00592,0.005696,0.051648,0.00544
+726,1443.78,0.692627,0.288,0.005632,0.195008,0.00416,0.005472,0.004768,0.006144,0.006016,0.055392,0.005408
+727,1472.32,0.679199,0.286784,0.004768,0.19456,0.004192,0.006048,0.005344,0.004896,0.006144,0.055296,0.005536
+728,1440.48,0.694214,0.286688,0.006144,0.192416,0.004192,0.006144,0.005248,0.004992,0.006144,0.055296,0.006112
+729,1440.73,0.694092,0.284672,0.006144,0.19456,0.006144,0.004096,0.005952,0.005728,0.004704,0.052512,0.004832
+730,1339.66,0.74646,0.288832,0.005824,0.19872,0.004352,0.005312,0.006432,0.00576,0.005024,0.0528,0.004608
+731,1311.98,0.762207,0.309152,0.006144,0.21712,0.005696,0.004512,0.005952,0.005792,0.005696,0.052192,0.006048
+732,1374.04,0.727783,0.299008,0.006144,0.212768,0.00432,0.005344,0.004896,0.006144,0.005888,0.04736,0.006144
+733,1384.95,0.722046,0.309088,0.005632,0.219648,0.006048,0.005408,0.004928,0.005952,0.005664,0.049824,0.005984
+734,1430.67,0.698975,0.284864,0.006144,0.196608,0.005184,0.004768,0.004384,0.006144,0.00592,0.051072,0.00464
+735,1475.5,0.677734,0.28912,0.005408,0.195552,0.004096,0.006144,0.004224,0.006016,0.006144,0.056928,0.004608
+736,1466.52,0.681885,0.2888,0.00544,0.195296,0.006112,0.004096,0.005952,0.00576,0.004672,0.055296,0.006176
+737,1057.31,0.945801,0.344192,0.021344,0.235552,0.004064,0.00576,0.00448,0.006144,0.006144,0.055296,0.005408
+738,1710.94,0.584473,0.28672,0.006144,0.192512,0.005856,0.004384,0.006048,0.005792,0.0064,0.05344,0.006144
+739,1454.55,0.6875,0.294528,0.005472,0.195232,0.006176,0.004064,0.006016,0.00576,0.00608,0.059968,0.00576
+740,1272.84,0.785645,0.313536,0.005408,0.203712,0.005696,0.004512,0.018432,0.006144,0.006144,0.057344,0.006144
+741,1436.69,0.696045,0.292864,0.006144,0.196192,0.004544,0.00512,0.005088,0.005888,0.005664,0.05984,0.004384
+742,1422.47,0.703003,0.29184,0.00512,0.194528,0.004128,0.006144,0.005472,0.004768,0.007392,0.05952,0.004768
+743,1462.33,0.683838,0.295232,0.004512,0.196512,0.005568,0.004608,0.005184,0.00512,0.006144,0.06272,0.004864
+744,1439.21,0.694824,0.294432,0.00448,0.194528,0.004128,0.006016,0.004224,0.006144,0.006112,0.063392,0.005408
+745,1422.72,0.702881,0.294016,0.005408,0.193024,0.004352,0.005792,0.004448,0.006144,0.006144,0.0632,0.005504
+746,1440.99,0.69397,0.297088,0.004992,0.19584,0.004864,0.005632,0.004608,0.006144,0.00592,0.063616,0.005472
+747,1343.17,0.744507,0.303008,0.006048,0.202528,0.00432,0.004096,0.006144,0.005856,0.005728,0.063776,0.004512
+748,1446.58,0.691284,0.285824,0.005696,0.19296,0.004128,0.005824,0.004416,0.006112,0.006112,0.055104,0.005472
+749,771.665,1.2959,0.292864,0.005664,0.197088,0.004096,0.00576,0.00448,0.006144,0.006144,0.057344,0.006144
+750,1559.49,0.641235,0.31344,0.005408,0.211872,0.005504,0.004704,0.005856,0.005824,0.00576,0.062432,0.00608
+751,1434.93,0.696899,0.298688,0.006144,0.198272,0.00448,0.005184,0.005056,0.00608,0.005568,0.06208,0.005824
+752,1383.32,0.7229,0.30816,0.005024,0.208896,0.00416,0.0056,0.004576,0.006144,0.005824,0.062944,0.004992
+753,1493.53,0.669556,0.292864,0.006144,0.193664,0.004832,0.004256,0.006016,0.00576,0.00576,0.061824,0.004608
+754,1431.42,0.698608,0.28976,0.005088,0.192224,0.004384,0.004128,0.005664,0.005856,0.004896,0.061376,0.006144
+755,1449.65,0.689819,0.290816,0.00576,0.192896,0.005376,0.00464,0.004352,0.006112,0.006048,0.060544,0.005088
+756,1437.45,0.695679,0.29184,0.00512,0.192512,0.00544,0.004832,0.005824,0.005792,0.004864,0.062528,0.004928
+757,1400.34,0.714111,0.292864,0.006112,0.194592,0.005728,0.004512,0.00544,0.004864,0.00608,0.060416,0.00512
+758,1105.53,0.904541,0.30096,0.005984,0.204512,0.004544,0.004096,0.006144,0.005216,0.005024,0.059392,0.006048
+759,1198.19,0.834595,0.340512,0.004608,0.243712,0.0056,0.00464,0.005312,0.004928,0.006144,0.06096,0.004608
+760,1405.39,0.711548,0.321152,0.005408,0.219968,0.005568,0.004672,0.005216,0.005152,0.006016,0.063488,0.005664
+761,1420.25,0.704102,0.307392,0.005408,0.209824,0.004096,0.005632,0.004608,0.006144,0.005792,0.060864,0.005024
+762,1423.71,0.702393,0.292896,0.006112,0.196064,0.004672,0.004096,0.006048,0.005568,0.004864,0.060832,0.00464
+763,1440.22,0.694336,0.298208,0.006144,0.19776,0.004832,0.005344,0.005056,0.006048,0.005792,0.061888,0.005344
+764,1413.88,0.707275,0.294912,0.005536,0.201344,0.005408,0.0048,0.005792,0.005824,0.004768,0.055296,0.006144
+765,1447.09,0.69104,0.290976,0.005088,0.19456,0.00592,0.00432,0.005472,0.004896,0.006016,0.059296,0.005408
+766,1457.65,0.686035,0.291872,0.006144,0.19456,0.005216,0.005024,0.005216,0.005024,0.006144,0.059104,0.00544
+767,1454.29,0.687622,0.29168,0.00496,0.195936,0.004768,0.004096,0.006048,0.005728,0.005728,0.05936,0.005056
+768,1252.98,0.798096,0.299008,0.005696,0.206496,0.004864,0.004128,0.006112,0.005824,0.006496,0.054784,0.004608
+769,1378.66,0.725342,0.337888,0.005792,0.233824,0.00528,0.0048,0.004288,0.006112,0.006112,0.065568,0.006112
+770,1258.76,0.794434,0.307296,0.004768,0.210944,0.005376,0.0048,0.005184,0.0064,0.005984,0.058272,0.005568
+771,1450.68,0.689331,0.300512,0.006048,0.210336,0.004704,0.004096,0.005984,0.00576,0.00576,0.052128,0.005696
+772,1200.12,0.833252,0.314784,0.005536,0.216896,0.004832,0.00416,0.005824,0.00576,0.0048,0.06112,0.005856
+773,1566.05,0.63855,0.28672,0.005952,0.194752,0.00544,0.0048,0.00528,0.006016,0.005088,0.053248,0.006144
+774,1449.65,0.689819,0.285408,0.004832,0.19456,0.005824,0.004416,0.005568,0.00576,0.005056,0.053248,0.006144
+775,1461.81,0.684082,0.288928,0.004896,0.198656,0.005568,0.004672,0.005248,0.004992,0.006144,0.053248,0.005504
+776,1439.97,0.694458,0.284992,0.005088,0.193632,0.004832,0.004288,0.006048,0.005952,0.005888,0.053792,0.005472
+777,1456.36,0.686646,0.292864,0.005536,0.193088,0.004128,0.00608,0.00432,0.005984,0.006144,0.06144,0.006144
+778,1157.72,0.86377,0.307872,0.004768,0.196256,0.00448,0.005184,0.005024,0.00592,0.020128,0.050752,0.01536
+779,1278.6,0.782104,0.30224,0.005824,0.196,0.018368,0.005088,0.005312,0.006272,0.004896,0.055072,0.005408
+780,1545.08,0.647217,0.285664,0.005056,0.192512,0.00576,0.00448,0.005568,0.00576,0.005056,0.0568,0.004672
+781,1414.85,0.706787,0.292864,0.006144,0.199776,0.004832,0.004288,0.005632,0.004608,0.006144,0.056672,0.004768
+782,1440.48,0.694214,0.29904,0.005408,0.202848,0.004768,0.004096,0.006144,0.006048,0.005696,0.05952,0.004512
+783,1412.41,0.708008,0.298816,0.00592,0.200768,0.004256,0.005344,0.004896,0.006112,0.005728,0.05984,0.005952
+784,1288.86,0.775879,0.299712,0.0048,0.20464,0.004256,0.005408,0.004832,0.006144,0.005792,0.05936,0.00448
+785,1436.94,0.695923,0.319488,0.006144,0.221184,0.005696,0.004544,0.005472,0.006656,0.005696,0.05904,0.005056
+786,1499.27,0.666992,0.293184,0.00496,0.198048,0.004704,0.004096,0.006144,0.00592,0.005696,0.058016,0.0056
+787,1422.96,0.702759,0.289344,0.004704,0.198592,0.004128,0.005504,0.004736,0.006144,0.005856,0.054976,0.004704
+788,1410.71,0.708862,0.291552,0.004832,0.200736,0.005216,0.004896,0.00528,0.006272,0.004928,0.054464,0.004928
+789,1421.73,0.703369,0.292896,0.00544,0.200672,0.004864,0.004096,0.006144,0.006144,0.005696,0.053696,0.006144
+790,1440.73,0.694092,0.288896,0.005408,0.195456,0.0056,0.004608,0.005376,0.006272,0.005792,0.05424,0.006144
+791,1490.81,0.670776,0.290816,0.006144,0.194464,0.004192,0.00544,0.0048,0.006144,0.006048,0.058528,0.005056
+792,1409.74,0.709351,0.303296,0.005088,0.206848,0.005824,0.004416,0.00592,0.005824,0.005664,0.058272,0.00544
+793,1449.91,0.689697,0.290816,0.005952,0.194752,0.005504,0.004736,0.00576,0.005664,0.00496,0.057344,0.006144
+794,1421.48,0.703491,0.283584,0.005024,0.193632,0.004832,0.004288,0.006048,0.00576,0.005696,0.053472,0.004832
+795,1443.52,0.692749,0.284736,0.004896,0.19456,0.005536,0.004704,0.00528,0.004992,0.006112,0.053248,0.005408
+796,1367.61,0.731201,0.322944,0.006144,0.226688,0.004768,0.005184,0.005024,0.005728,0.005664,0.05824,0.005504
+797,1174.99,0.851074,0.333824,0.006016,0.238816,0.004864,0.004256,0.005696,0.004544,0.006144,0.0584,0.005088
+798,1100.93,0.908325,0.346112,0.005632,0.250368,0.004192,0.0056,0.004544,0.006176,0.006112,0.057344,0.006144
+799,1494.62,0.669067,0.301056,0.00544,0.205504,0.0056,0.00464,0.005344,0.004896,0.006176,0.05888,0.004576
+800,1361.7,0.734375,0.318912,0.005728,0.227776,0.005152,0.004832,0.00432,0.007264,0.005024,0.053184,0.005632
+801,1375.42,0.727051,0.316896,0.005824,0.2256,0.006144,0.004096,0.005888,0.005696,0.006048,0.052,0.0056
+802,1404.9,0.711792,0.316736,0.005664,0.2256,0.004288,0.006112,0.005376,0.004864,0.006144,0.053088,0.0056
+803,1172.97,0.852539,0.299008,0.006144,0.210944,0.004096,0.005664,0.004576,0.006144,0.00608,0.050752,0.004608
+804,1485.4,0.673218,0.297984,0.005088,0.208768,0.004224,0.005408,0.004832,0.006176,0.005792,0.05152,0.006176
+805,1126.82,0.887451,0.295904,0.005088,0.206304,0.004672,0.004064,0.006048,0.00624,0.006144,0.0512,0.006144
+806,1609.11,0.62146,0.297152,0.005408,0.208896,0.004864,0.004256,0.005696,0.005728,0.00496,0.05232,0.005024
+807,1317.04,0.759277,0.31744,0.00544,0.227872,0.004288,0.005376,0.004832,0.00608,0.006208,0.052384,0.00496
+808,1218.14,0.820923,0.315648,0.004832,0.226784,0.00464,0.005312,0.004928,0.006112,0.00576,0.051584,0.005696
+809,1379.12,0.725098,0.305152,0.006144,0.219136,0.004192,0.0056,0.004544,0.006144,0.006016,0.048896,0.00448
+810,1630.9,0.613159,0.28928,0.004608,0.20416,0.004768,0.004064,0.006016,0.00576,0.005632,0.049632,0.00464
+811,1357.64,0.736572,0.287488,0.004992,0.19984,0.004864,0.004192,0.005856,0.006432,0.005792,0.049504,0.006016
+812,1570.85,0.636597,0.282624,0.005632,0.195072,0.00544,0.0048,0.005184,0.005056,0.006144,0.049152,0.006144
+813,1312.19,0.762085,0.465344,0.004544,0.378784,0.004192,0.005504,0.004736,0.006144,0.006112,0.049184,0.006144
+814,1193.65,0.837769,0.285856,0.005088,0.198656,0.005728,0.004512,0.005472,0.0048,0.006112,0.050848,0.00464
+815,1415.1,0.706665,0.282528,0.00496,0.1984,0.004352,0.00528,0.00496,0.005856,0.005728,0.047616,0.005376
+816,1309.88,0.763428,0.292064,0.005472,0.202912,0.004608,0.004096,0.006112,0.005792,0.005696,0.051968,0.005408
+817,1386.13,0.721436,0.299008,0.005888,0.207104,0.005376,0.0048,0.005184,0.005152,0.006112,0.055136,0.004256
+818,797.896,1.2533,0.3072,0.008192,0.21264,0.004448,0.005216,0.005024,0.006144,0.00576,0.053632,0.006144
+819,1499.27,0.666992,0.294944,0.006144,0.202752,0.005312,0.004928,0.005632,0.005696,0.005056,0.054912,0.004512
+820,1420.74,0.703857,0.292864,0.006144,0.200736,0.005536,0.004672,0.00528,0.00496,0.006144,0.054464,0.004928
+821,1275.22,0.78418,0.28912,0.004448,0.199776,0.00496,0.00416,0.005792,0.005728,0.004864,0.054304,0.005088
+822,1308.84,0.764038,0.291104,0.005408,0.20096,0.004832,0.004128,0.005888,0.005792,0.004896,0.054592,0.004608
+823,1472.06,0.679321,0.290816,0.006144,0.19456,0.0056,0.00464,0.00512,0.00512,0.006176,0.057312,0.006144
+824,981.548,1.0188,0.306368,0.0056,0.211008,0.004576,0.00512,0.00512,0.00592,0.005824,0.057664,0.005536
+825,1204.17,0.830444,0.319488,0.005472,0.225152,0.004864,0.004128,0.005792,0.005792,0.0048,0.058464,0.005024
+826,791.039,1.26416,0.348,0.008192,0.249312,0.00464,0.004096,0.006048,0.00576,0.005696,0.058272,0.005984
+827,1180.23,0.84729,0.320768,0.005472,0.223904,0.00512,0.004896,0.004352,0.006112,0.005952,0.059552,0.005408
+828,1419.02,0.704712,0.31376,0.004512,0.219008,0.004256,0.005408,0.0048,0.006144,0.005568,0.05792,0.006144
+829,1288.46,0.776123,0.300192,0.00608,0.20272,0.004192,0.005216,0.006144,0.005024,0.006144,0.059296,0.005376
+830,1021.32,0.979126,0.301056,0.005632,0.205312,0.004224,0.0056,0.004512,0.006144,0.005984,0.05904,0.004608
+831,1221.41,0.818726,0.297568,0.004832,0.200704,0.005632,0.004608,0.005344,0.004896,0.006144,0.059392,0.006016
+832,1352.04,0.739624,0.318336,0.004992,0.221216,0.0056,0.004608,0.005344,0.004896,0.006144,0.059392,0.006144
+833,1034.34,0.966797,0.331776,0.006112,0.233312,0.004288,0.005728,0.004512,0.006144,0.006048,0.059488,0.006144
+834,876.525,1.14087,0.329376,0.007552,0.227968,0.005504,0.004736,0.005248,0.004992,0.006144,0.06144,0.005792
+835,1381.45,0.723877,0.29968,0.004928,0.2024,0.004448,0.005216,0.0064,0.006016,0.004896,0.059392,0.005984
+836,1438.2,0.695312,0.305248,0.00608,0.20464,0.00432,0.005344,0.004896,0.006144,0.005792,0.063392,0.00464
+837,1392.96,0.717896,0.301632,0.004672,0.206592,0.004384,0.005248,0.00496,0.005856,0.005728,0.059232,0.00496
+838,1150.4,0.869263,0.296896,0.005664,0.199168,0.005376,0.0048,0.005184,0.005088,0.006144,0.059392,0.00608
+839,1430.42,0.699097,0.293024,0.004896,0.196608,0.005408,0.0048,0.005184,0.005088,0.006144,0.059392,0.005504
+840,1269.68,0.787598,0.296736,0.006144,0.198656,0.004096,0.0056,0.00464,0.006144,0.006112,0.059424,0.00592
+841,1231.88,0.811768,0.323936,0.004992,0.227328,0.005568,0.004672,0.005376,0.006912,0.006048,0.05744,0.0056
+842,637.411,1.56885,0.314016,0.006816,0.216224,0.004832,0.004224,0.00576,0.005792,0.006432,0.059104,0.004832
+843,1273.63,0.785156,0.30704,0.004672,0.210304,0.004704,0.004096,0.006016,0.00592,0.005856,0.060032,0.00544
+844,1476.04,0.67749,0.296832,0.004832,0.198688,0.005248,0.0048,0.004288,0.006112,0.006144,0.061312,0.005408
+845,1633.5,0.612183,0.29696,0.006048,0.198784,0.005568,0.00464,0.005184,0.005056,0.006144,0.060544,0.004992
+846,1335.51,0.748779,0.477184,0.006144,0.37888,0.00416,0.005664,0.004512,0.006144,0.00592,0.06096,0.0048
+847,1199.77,0.833496,0.293632,0.004832,0.196608,0.005664,0.004576,0.005344,0.004896,0.006176,0.060928,0.004608
+848,1299.08,0.769775,0.292864,0.006144,0.19456,0.00528,0.0048,0.004256,0.006144,0.006144,0.0608,0.004736
+849,787.995,1.26904,0.329248,0.006112,0.223264,0.00544,0.0048,0.005152,0.005088,0.006144,0.067584,0.005664
+850,1290.08,0.775146,0.548864,0.006144,0.448512,0.007936,0.004352,0.005728,0.005696,0.00496,0.060864,0.004672
+851,725.534,1.3783,0.301056,0.005504,0.203424,0.005376,0.004768,0.005184,0.00512,0.006144,0.06048,0.005056
+852,1252.22,0.798584,0.290816,0.005824,0.196864,0.00416,0.005504,0.004736,0.006048,0.005728,0.05584,0.006112
+853,1466,0.682129,0.28672,0.005984,0.19456,0.004256,0.005184,0.005024,0.00576,0.00576,0.05408,0.006112
+854,1602.82,0.623901,0.473024,0.005408,0.378848,0.004896,0.004192,0.005792,0.00576,0.004864,0.057312,0.005952
+855,884.856,1.13013,0.311264,0.004864,0.21424,0.004864,0.004128,0.005792,0.005728,0.004864,0.061408,0.005376
+856,1379.36,0.724976,0.305344,0.004832,0.210944,0.005408,0.0048,0.005184,0.005088,0.006144,0.057344,0.0056
+857,1540.43,0.64917,0.298272,0.006144,0.202752,0.005376,0.0048,0.004256,0.006048,0.005984,0.057504,0.005408
+858,819.856,1.21973,0.307232,0.00768,0.209408,0.005792,0.004448,0.005536,0.005824,0.00624,0.056128,0.006176
+859,1446.33,0.691406,0.317888,0.004768,0.227008,0.004448,0.005216,0.004992,0.005952,0.00576,0.053824,0.00592
+860,1335.29,0.748901,0.303104,0.006112,0.21088,0.004192,0.005472,0.004768,0.006144,0.006144,0.05488,0.004512
+861,1277.01,0.783081,0.298336,0.006144,0.2064,0.004544,0.004096,0.006048,0.005728,0.005728,0.054176,0.005472
+862,1217.96,0.821045,0.50288,0.005408,0.411904,0.00464,0.004064,0.006144,0.005792,0.005664,0.053824,0.00544
+863,1115.01,0.896851,0.294912,0.006144,0.202752,0.004224,0.005568,0.004544,0.006144,0.005984,0.055072,0.00448
+864,960.6,1.04102,0.290816,0.006144,0.20032,0.00448,0.005184,0.005056,0.00592,0.005792,0.05328,0.00464
+865,1223.23,0.817505,0.32288,0.006144,0.231456,0.00576,0.004448,0.005536,0.004864,0.005984,0.053248,0.00544
+866,601.071,1.6637,0.362816,0.007072,0.239392,0.00432,0.020064,0.0056,0.005056,0.006176,0.05936,0.015776
+867,1281.2,0.780518,0.315392,0.005504,0.219776,0.004096,0.005568,0.004672,0.006144,0.006016,0.057472,0.006144
+868,1253.56,0.797729,0.34656,0.004576,0.255968,0.00544,0.0048,0.005184,0.005056,0.006144,0.053248,0.006144
+869,1214.35,0.823486,0.505376,0.005984,0.411808,0.00576,0.00448,0.005216,0.005024,0.006144,0.055296,0.005664
+870,1080.03,0.925903,0.345376,0.00576,0.25168,0.004704,0.004096,0.00608,0.006208,0.006144,0.05504,0.005664
+871,1400.34,0.714111,0.299008,0.005632,0.20736,0.005536,0.004704,0.00528,0.00496,0.006144,0.053248,0.006144
+872,1383.78,0.722656,0.301056,0.005472,0.207488,0.004128,0.005536,0.004704,0.006144,0.005536,0.057376,0.004672
+873,1228.19,0.814209,0.541856,0.005856,0.42608,0.020672,0.006144,0.005504,0.005984,0.004896,0.061312,0.005408
+874,761.905,1.3125,0.333984,0.004512,0.239584,0.004192,0.005568,0.004576,0.006144,0.006016,0.057472,0.00592
+875,1060.45,0.942993,0.33712,0.005856,0.235328,0.004576,0.004096,0.006144,0.00576,0.005696,0.064288,0.005376
+876,1243.47,0.804199,0.331328,0.00544,0.238496,0.00528,0.0048,0.004256,0.008032,0.004256,0.055296,0.005472
+877,1270.27,0.787231,0.470304,0.005888,0.377088,0.005728,0.004512,0.00544,0.004896,0.006048,0.055296,0.005408
+878,1066.81,0.937378,0.319488,0.006016,0.22736,0.004192,0.005472,0.004768,0.006144,0.006176,0.053216,0.006144
+879,1478.43,0.676392,0.294304,0.00544,0.203552,0.005152,0.0048,0.004352,0.006144,0.006016,0.053376,0.005472
+880,1168.28,0.855957,0.313376,0.005408,0.221952,0.00512,0.004832,0.004352,0.006144,0.006016,0.05472,0.004832
+881,1046.63,0.955444,0.31744,0.005664,0.229888,0.005152,0.0048,0.004384,0.006112,0.006144,0.049152,0.006144
+882,854.758,1.16992,0.29952,0.006656,0.21072,0.00432,0.005344,0.004896,0.006048,0.005728,0.051232,0.004576
+883,1184.5,0.844238,0.288544,0.004512,0.199936,0.004832,0.004128,0.005984,0.00624,0.005696,0.051712,0.005504
+884,1687.33,0.592651,0.290816,0.005888,0.20096,0.005472,0.004768,0.005216,0.005024,0.006144,0.051232,0.006112
+885,1337.47,0.747681,0.301056,0.005984,0.210656,0.004544,0.005408,0.004832,0.006144,0.006144,0.05248,0.004864
+886,1150.24,0.869385,0.290368,0.005696,0.199104,0.005312,0.0048,0.004224,0.006144,0.006048,0.053344,0.005696
+887,1278.2,0.782349,0.286752,0.006144,0.196608,0.0056,0.00464,0.005312,0.004928,0.006144,0.05296,0.004416
+888,1560.08,0.640991,0.294688,0.005408,0.203552,0.005824,0.004416,0.005792,0.006016,0.005824,0.052,0.005856
+889,1358.54,0.736084,0.587808,0.00608,0.489536,0.00768,0.004608,0.006048,0.005728,0.005728,0.056224,0.006176
+890,793.184,1.26074,0.302816,0.005728,0.207264,0.004128,0.005536,0.004672,0.006144,0.006144,0.057344,0.005856
+891,1356.29,0.737305,0.297024,0.006144,0.202752,0.005344,0.0048,0.004224,0.006112,0.006112,0.056928,0.004608
+892,1563.36,0.639648,0.292896,0.00544,0.19872,0.004768,0.004096,0.005984,0.005856,0.00576,0.057344,0.004928
+893,1389.89,0.719482,0.29696,0.006144,0.200704,0.005856,0.004384,0.006144,0.005984,0.005728,0.055872,0.006144
+894,1376.34,0.726562,0.4712,0.004928,0.37696,0.004224,0.005632,0.00448,0.006144,0.005984,0.057408,0.00544
+895,1185.53,0.843506,0.297376,0.004512,0.20432,0.004576,0.004096,0.006112,0.006176,0.005856,0.055584,0.006144
+896,1448.37,0.69043,0.29552,0.004704,0.202464,0.004384,0.00528,0.00496,0.005952,0.005696,0.056,0.00608
+897,1188.97,0.841064,0.326656,0.00512,0.233472,0.005696,0.004544,0.00544,0.004896,0.00608,0.056704,0.004704
+898,674.738,1.48206,0.334976,0.015776,0.227296,0.004768,0.004064,0.006048,0.00576,0.005728,0.060032,0.005504
+899,1152.67,0.867554,0.311296,0.008192,0.210944,0.006144,0.005152,0.005088,0.006112,0.005696,0.058976,0.004992
+900,1473.65,0.678589,0.294912,0.006016,0.198176,0.004704,0.004096,0.006144,0.006144,0.005728,0.0592,0.004704
+901,1356.74,0.737061,0.294912,0.005984,0.198496,0.004448,0.005568,0.00464,0.006144,0.00592,0.059296,0.004416
+902,1527.79,0.654541,0.52784,0.00544,0.430944,0.005344,0.0048,0.004192,0.006144,0.006144,0.059392,0.00544
+903,995.867,1.00415,0.288768,0.006016,0.196736,0.005248,0.004992,0.005504,0.004736,0.006176,0.054624,0.004736
+904,1615.78,0.618896,0.296,0.005888,0.198816,0.004224,0.00528,0.004928,0.00592,0.00576,0.059776,0.005408
+905,885.813,1.12891,0.30448,0.006144,0.2048,0.004096,0.005568,0.004672,0.006144,0.006144,0.06144,0.005472
+906,721.444,1.38611,0.311296,0.006592,0.21072,0.00432,0.005344,0.004928,0.006112,0.005952,0.061632,0.005696
+907,1579.64,0.633057,0.303808,0.004832,0.200576,0.004192,0.005472,0.004768,0.006144,0.006144,0.065568,0.006112
+908,1352.04,0.739624,0.30144,0.004992,0.197792,0.004864,0.004192,0.006144,0.006144,0.005952,0.065728,0.005632
+909,1556.23,0.642578,0.300448,0.00608,0.19808,0.004736,0.004096,0.005856,0.005728,0.004896,0.06544,0.005536
+910,1355.62,0.737671,0.324352,0.004864,0.222752,0.004576,0.004096,0.006144,0.005856,0.00576,0.065696,0.004608
+911,996.472,1.00354,0.29696,0.005952,0.194752,0.005504,0.004736,0.005248,0.004992,0.006144,0.065216,0.004416
+912,1484.33,0.673706,0.29696,0.006144,0.198016,0.004736,0.004096,0.005888,0.005728,0.006048,0.06016,0.006144
+913,1503.12,0.665283,0.302528,0.006144,0.204064,0.004832,0.004096,0.00592,0.005536,0.004928,0.06144,0.005568
+914,983.788,1.01648,0.30672,0.00544,0.207584,0.005376,0.0048,0.005184,0.006368,0.004896,0.06144,0.005632
+915,821.253,1.21765,0.318016,0.006816,0.217088,0.005408,0.0048,0.005152,0.005152,0.006112,0.06144,0.006048
+916,1403.94,0.71228,0.294784,0.004768,0.198688,0.005536,0.004544,0.004224,0.005984,0.006272,0.059328,0.00544
+917,1526.93,0.654907,0.313088,0.006112,0.216704,0.004512,0.005152,0.005088,0.005824,0.005664,0.058144,0.005888
+918,1281.8,0.780151,0.3072,0.006144,0.210944,0.005472,0.004768,0.005216,0.005024,0.006144,0.05872,0.004768
+919,1025.8,0.974854,0.294624,0.006144,0.197856,0.004832,0.00416,0.006144,0.005888,0.005664,0.05808,0.005856
+920,1353.15,0.739014,0.29184,0.005984,0.19472,0.005664,0.004576,0.005344,0.00608,0.00496,0.059104,0.005408
+921,825.224,1.21179,0.330016,0.020832,0.200704,0.005568,0.004672,0.005312,0.020896,0.006176,0.059776,0.00608
+922,1439.47,0.694702,0.54032,0.00544,0.441184,0.006144,0.005376,0.004864,0.00608,0.005696,0.059904,0.005632
+923,859.962,1.16284,0.295808,0.00496,0.200704,0.005536,0.004576,0.005472,0.004896,0.006144,0.058688,0.004832
+924,1408.53,0.709961,0.29696,0.006144,0.200032,0.004768,0.005536,0.004704,0.006144,0.005792,0.05888,0.00496
+925,1524.38,0.656006,0.290816,0.00592,0.196832,0.005824,0.004416,0.005408,0.004832,0.006144,0.056896,0.004544
+926,1438.71,0.695068,0.290944,0.006144,0.196512,0.004192,0.006112,0.005184,0.005088,0.006144,0.056928,0.00464
+927,1212.55,0.824707,0.29088,0.00544,0.197056,0.004448,0.005184,0.005056,0.005728,0.005696,0.05616,0.006112
+928,1348.7,0.741455,0.289696,0.005024,0.19632,0.004416,0.005248,0.00496,0.006144,0.00576,0.056832,0.004992
+929,1515.35,0.659912,0.29696,0.005984,0.198208,0.004704,0.005568,0.004704,0.006112,0.005856,0.05968,0.006144
+930,1039.2,0.96228,0.324672,0.006144,0.231328,0.004192,0.00544,0.0048,0.00608,0.005696,0.055552,0.00544
+931,711.173,1.40613,0.313344,0.007552,0.217728,0.005152,0.0048,0.004384,0.006144,0.006144,0.056608,0.004832
+932,1373.34,0.728149,0.29088,0.004864,0.196608,0.005408,0.0048,0.006176,0.006048,0.005632,0.055872,0.005472
+933,1508.1,0.663086,0.319488,0.005536,0.22384,0.004096,0.005664,0.004576,0.006144,0.006144,0.059008,0.00448
+934,1443.02,0.692993,0.297152,0.00544,0.202816,0.004832,0.00528,0.005056,0.00592,0.005696,0.056992,0.00512
+935,1181.25,0.846558,0.47392,0.00608,0.375648,0.00544,0.0048,0.005184,0.005056,0.006144,0.060896,0.004672
+936,1290.69,0.77478,0.294912,0.005696,0.1968,0.004352,0.005408,0.005952,0.005024,0.006144,0.060512,0.005024
+937,1515.63,0.65979,0.301664,0.004704,0.198624,0.004128,0.005504,0.004736,0.006144,0.006176,0.06656,0.005088
+938,1086.76,0.920166,0.3144,0.005888,0.210752,0.004544,0.004096,0.006144,0.006144,0.00576,0.065632,0.00544
+939,1603.13,0.623779,0.550688,0.004832,0.443808,0.006272,0.004576,0.00608,0.00576,0.005632,0.068096,0.005632
+940,855.472,1.16895,0.303104,0.00544,0.197312,0.005568,0.004672,0.006048,0.00576,0.005888,0.067552,0.004864
+941,1323,0.755859,0.300736,0.004544,0.196608,0.005152,0.0048,0.004384,0.006144,0.006144,0.067552,0.005408
+942,1487.83,0.672119,0.301792,0.0048,0.198368,0.004384,0.005248,0.004992,0.005728,0.005568,0.068064,0.00464
+943,1427.43,0.700562,0.306016,0.005088,0.200736,0.005536,0.004672,0.005312,0.004928,0.006144,0.067584,0.006016
+944,1350.7,0.740356,0.475136,0.005472,0.376928,0.004672,0.004096,0.006112,0.00576,0.00576,0.060192,0.006144
+945,1127.29,0.887085,0.297664,0.004928,0.195808,0.004864,0.004128,0.005888,0.00576,0.004768,0.065536,0.005984
+946,1534.37,0.651733,0.29696,0.0056,0.197184,0.005088,0.00512,0.00544,0.0048,0.006144,0.06144,0.006144
+947,1324.49,0.755005,0.299712,0.004608,0.200672,0.004128,0.005536,0.004704,0.006144,0.006144,0.063136,0.00464
+948,1223.23,0.817505,0.557536,0.004576,0.417632,0.039072,0.011456,0.004928,0.00608,0.005824,0.061824,0.006144
+949,680.568,1.46936,0.317312,0.00608,0.216928,0.00432,0.005344,0.004896,0.005408,0.004832,0.063488,0.006016
+950,1488.1,0.671997,0.329728,0.006144,0.227328,0.005472,0.004768,0.004128,0.006112,0.006144,0.06464,0.004992
+951,1362.83,0.733765,0.301056,0.005824,0.198176,0.004832,0.00416,0.005792,0.006048,0.005696,0.0656,0.004928
+952,1481.37,0.675049,0.522592,0.004512,0.423264,0.004768,0.004096,0.006016,0.005792,0.00576,0.062336,0.006048
+953,1004.91,0.995117,0.305152,0.005632,0.199168,0.005344,0.0048,0.004352,0.007616,0.00592,0.067488,0.004832
+954,1518.72,0.658447,0.321504,0.004992,0.222976,0.004352,0.00528,0.00496,0.006144,0.005632,0.06176,0.005408
+955,1212.01,0.825073,0.299456,0.004832,0.198656,0.005856,0.004384,0.0056,0.005824,0.006368,0.061888,0.006048
+956,1428.92,0.699829,0.54608,0.005408,0.435008,0.01024,0.005152,0.005088,0.005952,0.005728,0.068032,0.005472
+957,878.499,1.13831,0.304544,0.00608,0.198304,0.004544,0.00512,0.005056,0.00576,0.005728,0.068416,0.005536
+958,1524.09,0.656128,0.30464,0.005888,0.198816,0.004192,0.005472,0.004768,0.006048,0.005696,0.068128,0.005632
+959,1432.42,0.69812,0.301088,0.004992,0.19456,0.005664,0.004576,0.005568,0.0064,0.005728,0.067872,0.005728
+960,1288.86,0.775879,0.299776,0.004864,0.196128,0.004576,0.005888,0.004384,0.006112,0.006176,0.06688,0.004768
+961,1427.68,0.700439,0.479616,0.00496,0.3768,0.004128,0.0056,0.005888,0.006272,0.004896,0.065408,0.005664
+962,1200.29,0.83313,0.299008,0.006144,0.195616,0.004864,0.00432,0.005376,0.004864,0.006144,0.065536,0.006144
+963,1244.61,0.803467,0.299872,0.00496,0.19456,0.005728,0.004512,0.006144,0.005824,0.005792,0.067744,0.004608
+964,1604.7,0.623169,0.306784,0.005728,0.20112,0.005184,0.004608,0.004544,0.006144,0.006144,0.067584,0.005728
+965,1071.13,0.933594,0.502688,0.007072,0.396448,0.00496,0.005504,0.004736,0.006144,0.005728,0.067168,0.004928
+966,1108.68,0.901978,0.303264,0.004928,0.198112,0.00464,0.004096,0.005856,0.005856,0.005792,0.068512,0.005472
+967,1493.53,0.669556,0.30832,0.005664,0.198208,0.004832,0.004288,0.005984,0.005824,0.00576,0.072352,0.005408
+968,1132.12,0.883301,0.318112,0.004768,0.206848,0.005408,0.0048,0.005184,0.005088,0.006144,0.073728,0.006144
+969,1509.77,0.662354,0.311296,0.0056,0.203296,0.004096,0.005664,0.004576,0.006176,0.00576,0.071296,0.004832
+970,1465.47,0.682373,0.48544,0.00544,0.377568,0.004224,0.005472,0.004768,0.006144,0.005696,0.07008,0.006048
+971,1013.23,0.986938,0.305152,0.005696,0.196608,0.004544,0.00512,0.00656,0.004928,0.00592,0.070816,0.00496
+972,1692.56,0.59082,0.304448,0.006144,0.19456,0.005824,0.004416,0.00592,0.005728,0.004864,0.071552,0.00544
+973,1232.06,0.811646,0.305504,0.004608,0.200736,0.005152,0.0048,0.004352,0.006144,0.006144,0.067584,0.005984
+974,626.395,1.59644,0.327584,0.008064,0.216256,0.004896,0.004256,0.00576,0.005696,0.006464,0.070144,0.006048
+975,1686.64,0.592896,0.305184,0.005408,0.197376,0.00416,0.0056,0.004608,0.006112,0.006144,0.070816,0.00496
+976,1334.2,0.749512,0.306816,0.0056,0.19696,0.004288,0.005152,0.004992,0.005568,0.004768,0.073472,0.006016
+977,1469.42,0.680542,0.3072,0.006144,0.198496,0.004256,0.005152,0.00512,0.00528,0.004928,0.072704,0.00512
+978,1407.56,0.710449,0.48752,0.005472,0.375456,0.005344,0.004768,0.004224,0.006176,0.006112,0.075328,0.00464
+979,1072.67,0.932251,0.309472,0.005024,0.198656,0.004096,0.005664,0.004576,0.006144,0.006144,0.073728,0.00544
+980,1370.13,0.729858,0.303488,0.0048,0.195776,0.004896,0.004128,0.005632,0.005728,0.005024,0.07168,0.005824
+981,1424.2,0.702148,0.311008,0.006144,0.198688,0.005696,0.004512,0.005376,0.004864,0.006144,0.073728,0.005856
+982,1309.46,0.763672,0.601376,0.005568,0.457056,0.040416,0.0048,0.004352,0.005952,0.006144,0.07168,0.005408
+983,734.182,1.36206,0.332256,0.004576,0.228512,0.004864,0.004192,0.005696,0.005632,0.005056,0.068992,0.004736
+984,1474.18,0.678345,0.304832,0.00544,0.19744,0.005536,0.004704,0.00528,0.00496,0.006144,0.069632,0.005696
+985,1605.96,0.622681,0.30384,0.004832,0.202752,0.004096,0.00608,0.005216,0.005088,0.006144,0.063488,0.006144
+986,1371.96,0.728882,0.295168,0.00544,0.197376,0.00432,0.005568,0.004448,0.006144,0.005952,0.06128,0.00464
+987,844.275,1.18445,0.475616,0.004832,0.376832,0.005856,0.004384,0.005568,0.005728,0.005088,0.06144,0.005888
+988,1454.03,0.687744,0.319104,0.004384,0.222272,0.004864,0.004256,0.005696,0.005728,0.00496,0.06144,0.005504
+989,1473.65,0.678589,0.305088,0.00544,0.209344,0.004512,0.005152,0.005088,0.005632,0.005696,0.058304,0.00592
+990,801.017,1.24841,0.782688,0.004864,0.685664,0.00624,0.004416,0.005536,0.005792,0.005056,0.059392,0.005728
+991,1453,0.688232,0.29808,0.005408,0.202688,0.004864,0.004224,0.006144,0.005984,0.00576,0.0576,0.005408
+992,1337.91,0.747437,0.295712,0.004896,0.200704,0.004224,0.006016,0.00528,0.004992,0.006112,0.058464,0.005024
+993,1530.36,0.653442,0.295328,0.004512,0.198656,0.00576,0.00448,0.0056,0.005792,0.004992,0.06112,0.004416
+994,1278.6,0.782104,0.294912,0.005984,0.196768,0.006144,0.004096,0.005824,0.006432,0.00432,0.06032,0.005024
+995,1604.39,0.623291,0.293536,0.004768,0.196608,0.004096,0.006144,0.00544,0.0064,0.005728,0.059264,0.005088
+996,1054.45,0.948364,0.294784,0.005408,0.197216,0.00448,0.005792,0.00448,0.006112,0.006144,0.059392,0.00576
+997,1509.21,0.662598,0.294944,0.006048,0.198784,0.004224,0.005344,0.004736,0.006144,0.005984,0.057504,0.006176
+998,1371.28,0.729248,0.2992,0.00544,0.199552,0.004128,0.005664,0.004544,0.006144,0.007328,0.061696,0.004704
+999,1254.52,0.797119,0.543488,0.004864,0.436224,0.014016,0.005504,0.005056,0.005984,0.005728,0.061568,0.004544
+1000,889.178,1.12463,0.297408,0.004768,0.197952,0.004832,0.005536,0.004672,0.006144,0.005824,0.06176,0.00592
+1001,1487.56,0.672241,0.299008,0.006144,0.198656,0.004192,0.005568,0.004576,0.006176,0.00608,0.062592,0.005024
+1002,1304.87,0.766357,0.303136,0.00544,0.19936,0.005536,0.004704,0.005568,0.004896,0.00592,0.067104,0.004608
+1003,1522.11,0.656982,0.292896,0.00608,0.197984,0.004832,0.004096,0.00592,0.00576,0.005728,0.057664,0.004832
+1004,1359.89,0.735352,0.473024,0.005984,0.376992,0.00592,0.00432,0.005632,0.00576,0.004992,0.057344,0.00608
+1005,1167.78,0.856323,0.290784,0.004896,0.196608,0.005472,0.004768,0.005216,0.005056,0.006112,0.05728,0.005376
+1006,1382.38,0.723389,0.289344,0.004704,0.19584,0.004864,0.004096,0.005888,0.005728,0.004768,0.057344,0.006112
+1007,923.458,1.08289,0.3184,0.005056,0.222368,0.004832,0.004224,0.005792,0.005792,0.0048,0.060448,0.005088
+1008,694.59,1.4397,0.321536,0.008192,0.22288,0.004448,0.005184,0.005056,0.00592,0.006272,0.058496,0.005088
+1009,1533.8,0.651978,0.303104,0.005664,0.202848,0.0056,0.0048,0.00432,0.006144,0.006144,0.06144,0.006144
+1010,1392.96,0.717896,0.297248,0.005408,0.197568,0.00528,0.004768,0.004288,0.006176,0.006112,0.063008,0.00464
+1011,1506.16,0.66394,0.296448,0.005408,0.197312,0.004128,0.00576,0.00448,0.006144,0.006112,0.061472,0.005632
+1012,1288.05,0.776367,0.536032,0.006144,0.433216,0.004928,0.005312,0.005056,0.00592,0.005664,0.064192,0.0056
+1013,1123.42,0.890137,0.299968,0.005056,0.198496,0.004256,0.005408,0.004832,0.006112,0.00576,0.065024,0.005024
+1014,1296.2,0.771484,0.298656,0.00544,0.19552,0.004128,0.005568,0.00464,0.006144,0.0056,0.06608,0.005536
+1015,1355.17,0.737915,0.301472,0.004992,0.200256,0.004544,0.004096,0.006144,0.005856,0.005632,0.064288,0.005664
+1016,1502.29,0.665649,0.294464,0.005536,0.197216,0.005472,0.004768,0.004096,0.006144,0.00608,0.059456,0.005696
+1017,864.044,1.15735,0.299808,0.006944,0.200416,0.004384,0.00528,0.00496,0.006144,0.005888,0.060704,0.005088
+1018,1314.51,0.760742,0.294912,0.006144,0.196608,0.004096,0.005792,0.004448,0.006144,0.005856,0.061248,0.004576
+1019,1654.95,0.604248,0.299008,0.006144,0.199904,0.004832,0.00416,0.006144,0.006144,0.005792,0.059744,0.006144
+1020,1386.59,0.721191,0.298912,0.006144,0.200704,0.005568,0.004672,0.005888,0.005728,0.004864,0.059296,0.006048
+1021,753.01,1.328,0.47424,0.00576,0.376992,0.004352,0.005344,0.004864,0.006144,0.006176,0.059104,0.005504
+1022,1144.93,0.873413,0.29648,0.006144,0.196576,0.004128,0.0056,0.00464,0.006144,0.006144,0.06144,0.005664
+1023,1422.22,0.703125,0.300704,0.00576,0.201088,0.005824,0.004416,0.00544,0.0048,0.006144,0.06144,0.005792
+1024,1449.14,0.690063,0.55904,0.005856,0.42832,0.036192,0.004768,0.005216,0.005024,0.006144,0.06144,0.00608
+1025,604.62,1.65393,0.300256,0.005664,0.199136,0.005632,0.004608,0.005984,0.005856,0.005696,0.06224,0.00544
+1026,1620.25,0.617188,0.3112,0.006144,0.206848,0.004096,0.005792,0.004448,0.006144,0.005376,0.066304,0.006048
+1027,1175.49,0.850708,0.303136,0.0056,0.19872,0.004576,0.004096,0.00752,0.006016,0.004896,0.06672,0.004992
+1028,1208.97,0.827148,0.297344,0.00448,0.20192,0.004864,0.00416,0.00576,0.005728,0.004896,0.059392,0.006144
+1029,970.961,1.02991,0.328,0.004928,0.229376,0.005248,0.0048,0.004288,0.006144,0.006144,0.06144,0.005632
+1030,1374.27,0.727661,0.300224,0.00544,0.197504,0.00528,0.004768,0.004288,0.006144,0.006144,0.065184,0.005472
+1031,1454.55,0.6875,0.309408,0.00544,0.205632,0.005216,0.0048,0.004448,0.006016,0.006144,0.065536,0.006176
+1032,1126.98,0.887329,0.550912,0.006144,0.43952,0.01104,0.005312,0.004928,0.006016,0.005696,0.066112,0.006144
+1033,912.656,1.0957,0.30704,0.0056,0.203296,0.005344,0.0048,0.004192,0.006176,0.006112,0.065536,0.005984
+1034,1415.59,0.706421,0.30016,0.00512,0.19664,0.005408,0.004768,0.005472,0.005824,0.00512,0.067168,0.00464
+1035,1388.47,0.720215,0.301056,0.006112,0.198368,0.004416,0.005216,0.005024,0.006144,0.00576,0.063872,0.006144
+1036,1331.38,0.751099,0.305984,0.004928,0.202752,0.004096,0.005632,0.004608,0.006144,0.005792,0.06736,0.004672
+1037,1218.14,0.820923,0.30352,0.004512,0.2024,0.00448,0.005184,0.005024,0.005952,0.005728,0.065344,0.004896
+1038,1466.52,0.681885,0.305056,0.006144,0.200704,0.00544,0.004512,0.004384,0.006144,0.005888,0.065792,0.006048
+1039,1327.07,0.75354,0.29696,0.005472,0.19728,0.005632,0.004608,0.005504,0.006176,0.005856,0.061312,0.00512
+1040,1616.42,0.618652,0.299328,0.004736,0.200704,0.005856,0.004384,0.0056,0.006432,0.005696,0.060096,0.005824
+1041,1112.14,0.89917,0.498816,0.008192,0.396736,0.004672,0.006144,0.005408,0.004864,0.006112,0.061312,0.005376
+1042,1106.28,0.903931,0.297312,0.004448,0.198656,0.005184,0.005056,0.006144,0.005824,0.005728,0.06128,0.004992
+1043,1403.22,0.712646,0.2992,0.005408,0.19552,0.005472,0.004736,0.005376,0.004864,0.006144,0.066656,0.005024
+1044,1221.59,0.818604,0.306464,0.005696,0.20256,0.004736,0.004096,0.005824,0.00576,0.004896,0.067392,0.005504
+1045,1574.17,0.635254,0.309856,0.004928,0.205824,0.004928,0.004288,0.006048,0.005728,0.005728,0.066464,0.00592
+1046,1163.97,0.859131,0.321696,0.00544,0.215904,0.005632,0.004608,0.005408,0.006304,0.004704,0.069056,0.00464
+1047,1448.12,0.690552,0.311296,0.006144,0.204736,0.00416,0.005504,0.004736,0.007232,0.005056,0.068864,0.004864
+1048,1212.01,0.825073,0.301056,0.006112,0.200768,0.004224,0.005568,0.004512,0.006144,0.006144,0.06144,0.006144
+1049,1158.53,0.863159,0.305696,0.00464,0.208896,0.004096,0.005536,0.004704,0.006144,0.005824,0.060832,0.005024
+1050,1518.72,0.658447,0.544992,0.004736,0.444416,0.006144,0.00576,0.00448,0.006208,0.00608,0.06144,0.005728
+1051,876.712,1.14062,0.307296,0.006144,0.204704,0.004192,0.005344,0.004896,0.006144,0.005856,0.065376,0.00464
+1052,1293.95,0.772827,0.298528,0.006144,0.200448,0.004352,0.005312,0.004928,0.005856,0.0056,0.060224,0.005664
+1053,1473.65,0.678589,0.291328,0.004736,0.196608,0.005664,0.004576,0.00528,0.00496,0.006144,0.057344,0.006016
+1054,1552.4,0.644165,0.300288,0.0056,0.1992,0.005184,0.004832,0.00432,0.006176,0.006112,0.063488,0.005376
+1055,1067.08,0.937134,0.29872,0.006048,0.196576,0.004224,0.005376,0.006112,0.004896,0.006144,0.063488,0.005856
+1056,1520.42,0.657715,0.297056,0.004448,0.196352,0.004352,0.005664,0.004576,0.006144,0.005824,0.063808,0.005888
+1057,881.144,1.13489,0.297536,0.004672,0.197824,0.004832,0.004192,0.005792,0.0056,0.004992,0.064704,0.004928
+1058,1241.96,0.805176,0.552608,0.004512,0.43008,0.026208,0.004512,0.005504,0.00576,0.00512,0.06544,0.005472
+1059,870.933,1.14819,0.31968,0.005408,0.21392,0.005248,0.0048,0.00432,0.006112,0.006144,0.069088,0.00464
+1060,1502.29,0.665649,0.311296,0.005472,0.205408,0.00416,0.005472,0.004768,0.006144,0.005984,0.069056,0.004832
+1061,1395.57,0.716553,0.310688,0.006144,0.202752,0.005376,0.0048,0.005184,0.00512,0.006144,0.069632,0.005536
+1062,1154.78,0.865967,0.319488,0.006144,0.212832,0.004256,0.005376,0.004864,0.006144,0.006016,0.068832,0.005024
+1063,1134.63,0.881348,0.310464,0.006144,0.202752,0.005312,0.004832,0.004352,0.005984,0.006144,0.068992,0.005952
+1064,1397,0.71582,0.311232,0.00592,0.204448,0.004672,0.004096,0.00592,0.005952,0.005824,0.06832,0.00608
+1065,1368.76,0.730591,0.31808,0.004864,0.212288,0.004832,0.005184,0.005024,0.006144,0.006048,0.06768,0.006016
+1066,1342.29,0.744995,0.331456,0.00608,0.23104,0.004544,0.004096,0.006144,0.005952,0.005856,0.06192,0.005824
+1067,824.477,1.21289,0.330016,0.00752,0.228288,0.005696,0.004544,0.00544,0.005952,0.00512,0.062464,0.004992
+1068,1425.94,0.701294,0.30688,0.004736,0.206848,0.004224,0.0056,0.004512,0.006144,0.00608,0.063328,0.005408
+1069,1268.5,0.78833,0.305152,0.006144,0.204064,0.004832,0.004096,0.005696,0.005856,0.004896,0.064768,0.0048
+1070,1579.33,0.633179,0.299904,0.004992,0.200704,0.005216,0.004768,0.004352,0.006144,0.005984,0.062848,0.004896
+1071,1384.49,0.72229,0.313344,0.005728,0.214752,0.0048,0.004096,0.005952,0.00576,0.00576,0.061504,0.004992
+1072,1035.91,0.965332,0.29696,0.006144,0.19456,0.004128,0.0056,0.004608,0.006144,0.005856,0.06512,0.0048
+1073,1467.57,0.681396,0.292544,0.005888,0.193952,0.004576,0.00448,0.005632,0.005696,0.005056,0.06144,0.005824
+1074,1009.61,0.990479,0.300096,0.005888,0.200192,0.004832,0.004128,0.00576,0.006528,0.00592,0.061408,0.00544
+1075,1361.25,0.734619,0.561152,0.006144,0.455936,0.006912,0.005696,0.004544,0.006144,0.00592,0.063712,0.006144
+1076,902.7,1.10779,0.300736,0.004704,0.200544,0.004288,0.005344,0.004864,0.006144,0.006112,0.063296,0.00544
+1077,1411.93,0.708252,0.30032,0.006144,0.199872,0.004864,0.005216,0.005088,0.005856,0.00576,0.062112,0.005408
+1078,1301.56,0.768311,0.307936,0.004832,0.204832,0.005728,0.00448,0.005504,0.004736,0.006144,0.066752,0.004928
+1079,1509.21,0.662598,0.309248,0.006144,0.206816,0.004128,0.005504,0.004736,0.005984,0.005728,0.064064,0.006144
+1080,880.955,1.13513,0.30048,0.005984,0.197856,0.004832,0.00432,0.005696,0.0064,0.005824,0.064,0.005568
+1081,1696.07,0.5896,0.298656,0.004704,0.198176,0.004576,0.004096,0.006144,0.005792,0.005696,0.064064,0.005408
+1082,473.499,2.11194,0.364256,0.005664,0.258528,0.004128,0.005472,0.004736,0.006144,0.00576,0.067968,0.005856
+1083,1469.15,0.680664,0.58368,0.006144,0.436224,0.047104,0.006144,0.006112,0.00576,0.006016,0.065536,0.00464
+1084,753.218,1.32764,0.304832,0.00464,0.20272,0.005248,0.0048,0.004288,0.007456,0.004832,0.06544,0.005408
+1085,1548.29,0.645874,0.300672,0.005408,0.198464,0.004864,0.004256,0.005632,0.004608,0.006144,0.065536,0.00576
+1086,1339.44,0.746582,0.303936,0.004832,0.20272,0.004224,0.0056,0.004512,0.006144,0.006144,0.065152,0.004608
+1087,970.041,1.03088,0.319712,0.005568,0.217888,0.005504,0.004736,0.005248,0.004992,0.006144,0.065152,0.00448
+1088,1652.61,0.605103,0.303104,0.0056,0.201248,0.005184,0.0048,0.004352,0.006176,0.006048,0.064928,0.004768
+1089,1377.96,0.725708,0.30576,0.004672,0.205888,0.004896,0.004256,0.005696,0.00576,0.004928,0.064704,0.00496
+1090,628.221,1.5918,0.614112,0.004672,0.489472,0.032288,0.004576,0.00608,0.00576,0.005728,0.060064,0.005472
+1091,1430.42,0.699097,0.31152,0.005408,0.21376,0.004288,0.005376,0.004864,0.005952,0.006016,0.061344,0.004512
+1092,525.229,1.90393,0.303488,0.00448,0.206176,0.004768,0.004096,0.00592,0.005856,0.004608,0.06144,0.006144
+1093,897.753,1.11389,0.475872,0.004832,0.378208,0.004768,0.004096,0.006144,0.005952,0.005696,0.061152,0.005024
+1094,1557.71,0.641968,0.3056,0.005568,0.207392,0.004576,0.00416,0.00608,0.005568,0.00576,0.060352,0.006144
+1095,653.061,1.53125,0.308736,0.005792,0.209248,0.005824,0.004416,0.005568,0.005792,0.005024,0.06144,0.005632
+1096,1278.8,0.781982,0.541888,0.005984,0.426144,0.022528,0.004096,0.005824,0.005696,0.004896,0.061312,0.005408
+1097,900.121,1.11096,0.301056,0.006144,0.201952,0.004864,0.004128,0.005824,0.00576,0.006592,0.059648,0.006144
+1098,1496.26,0.668335,0.298624,0.005792,0.201056,0.005472,0.004768,0.005504,0.005888,0.004992,0.059392,0.00576
+1099,1304.46,0.766602,0.29696,0.006112,0.19664,0.005664,0.004576,0.005216,0.005024,0.006176,0.061408,0.006144
+1100,1562.46,0.640015,0.303648,0.004608,0.202752,0.00528,0.004768,0.004288,0.007552,0.006144,0.06208,0.006176
+1101,810.287,1.23413,0.299104,0.005408,0.199488,0.005792,0.004448,0.006016,0.00576,0.005728,0.061824,0.00464
+1102,909.111,1.09998,0.301056,0.005856,0.20208,0.004864,0.004288,0.00576,0.00576,0.004896,0.061408,0.006144
+1103,1158.04,0.863525,0.309248,0.005664,0.211136,0.004416,0.005216,0.005024,0.00592,0.00576,0.059968,0.006144
+1104,820.102,1.21936,0.316224,0.006912,0.217088,0.005696,0.004544,0.005536,0.005824,0.005024,0.060992,0.004608
+1105,1402.5,0.713013,0.300992,0.004544,0.204288,0.004608,0.004096,0.006112,0.005792,0.005664,0.060256,0.005632
+1106,857.262,1.1665,0.301536,0.004544,0.202752,0.005216,0.0048,0.005856,0.005856,0.004896,0.062688,0.004928
+1107,1203.82,0.830688,0.319712,0.00464,0.202688,0.004192,0.00544,0.0232,0.006144,0.006144,0.06144,0.005824
+1108,1320.65,0.757202,0.303104,0.006144,0.204256,0.00464,0.004096,0.006144,0.005792,0.006464,0.06064,0.004928
+1109,1543.62,0.647827,0.301248,0.005408,0.197216,0.004416,0.005248,0.004992,0.00608,0.005792,0.067392,0.004704
+1110,1348.92,0.741333,0.306976,0.006144,0.200704,0.005408,0.004768,0.005184,0.00512,0.006144,0.067584,0.00592
+1111,1230.21,0.812866,0.309312,0.004736,0.2048,0.005888,0.004352,0.0056,0.004672,0.006112,0.067584,0.005568
+1112,1171.79,0.853394,0.559936,0.004928,0.421408,0.04144,0.004096,0.006112,0.005824,0.00576,0.064224,0.006144
+1113,1002.2,0.997803,0.306176,0.00512,0.200704,0.004288,0.0056,0.004448,0.006144,0.006144,0.067584,0.006144
+1114,1381.92,0.723633,0.298784,0.00544,0.198816,0.004864,0.005408,0.004896,0.006048,0.005952,0.061728,0.005632
+1115,1444.8,0.692139,0.294944,0.005824,0.196832,0.004192,0.00544,0.0048,0.006144,0.006144,0.060768,0.0048
+1116,1348.92,0.741333,0.47104,0.00576,0.37504,0.004224,0.005472,0.004768,0.006144,0.006016,0.05888,0.004736
+1117,1212.91,0.824463,0.292896,0.005056,0.19584,0.004832,0.004128,0.005792,0.005568,0.005024,0.061248,0.005408
+1118,1246.88,0.802002,0.292288,0.005728,0.194976,0.00544,0.004576,0.00432,0.006144,0.00608,0.059456,0.005568
+1119,1615.46,0.619019,0.29552,0.005024,0.198656,0.005312,0.0048,0.00432,0.006048,0.006048,0.059488,0.005824
+1120,1412.66,0.707886,0.544768,0.005568,0.444992,0.00768,0.004608,0.005376,0.004864,0.006144,0.059392,0.006144
+1121,813.829,1.22876,0.307136,0.006144,0.208928,0.005568,0.00464,0.005312,0.0064,0.004928,0.059136,0.00608
+1122,1508.38,0.662964,0.299264,0.00544,0.20176,0.005632,0.004576,0.006048,0.005728,0.005664,0.058368,0.006048
+1123,1157.55,0.863892,0.300832,0.006144,0.205888,0.004896,0.004256,0.005888,0.00576,0.004768,0.057312,0.00592
+1124,1565.75,0.638672,0.298496,0.005728,0.202912,0.004352,0.00544,0.0048,0.006144,0.006144,0.057344,0.005632
+1125,1315.77,0.76001,0.475168,0.006144,0.376832,0.005184,0.0048,0.004352,0.006144,0.006176,0.05936,0.006176
+1126,1007.25,0.992798,0.29936,0.00448,0.201824,0.0048,0.004288,0.006144,0.006176,0.006112,0.06048,0.005056
+1127,1680.41,0.595093,0.296352,0.005632,0.1992,0.005824,0.004384,0.005536,0.004736,0.006112,0.059392,0.005536
+1128,1280.2,0.781128,0.302688,0.006144,0.206368,0.004576,0.004096,0.00608,0.005632,0.00576,0.058304,0.005728
+1129,1163.64,0.859375,0.5344,0.00544,0.424608,0.01872,0.005856,0.004384,0.006144,0.006144,0.057344,0.00576
+1130,991.168,1.00891,0.323808,0.00544,0.228288,0.005536,0.004704,0.00592,0.005792,0.004896,0.05712,0.006112
+1131,1356.52,0.737183,0.296576,0.005792,0.20272,0.00448,0.005184,0.005056,0.00576,0.005728,0.056096,0.00576
+1132,1248.78,0.800781,0.299008,0.005568,0.205376,0.004096,0.0056,0.00464,0.006144,0.005888,0.055552,0.006144
+1133,1417.55,0.705444,0.311808,0.004608,0.218176,0.004928,0.004224,0.005728,0.00656,0.006144,0.05648,0.00496
+1134,1222.5,0.817993,0.29696,0.006144,0.202752,0.00432,0.00544,0.004576,0.006144,0.005952,0.055488,0.006144
+1135,662.622,1.50916,0.296192,0.006144,0.202432,0.004416,0.005248,0.004992,0.005824,0.00576,0.055936,0.00544
+1136,1442.51,0.693237,0.302784,0.00544,0.209664,0.005248,0.004768,0.00432,0.006144,0.006112,0.055328,0.00576
+1137,473.417,2.1123,0.490944,0.007552,0.393344,0.00496,0.006048,0.004224,0.006112,0.006176,0.05712,0.005408
+1138,837.457,1.19409,0.292864,0.006144,0.198656,0.004096,0.005728,0.004512,0.006144,0.005888,0.055552,0.006144
+1139,1523.24,0.656494,0.34112,0.005728,0.246208,0.005504,0.004704,0.005248,0.006304,0.004832,0.057088,0.005504
+1140,1169.28,0.855225,0.303552,0.004928,0.2048,0.004096,0.006048,0.004352,0.005984,0.006144,0.06144,0.00576
+1141,1520.42,0.657715,0.297504,0.005056,0.198624,0.004192,0.00592,0.00528,0.005088,0.006144,0.06144,0.00576
+1142,1101.67,0.907715,0.29936,0.004416,0.200704,0.005536,0.004704,0.005248,0.004992,0.006144,0.063008,0.004608
+1143,1579.94,0.632935,0.306272,0.005568,0.203328,0.005472,0.004768,0.005152,0.005088,0.006144,0.065376,0.005376
+1144,1375.19,0.727173,0.540192,0.005632,0.43584,0.006272,0.0048,0.005184,0.00512,0.006144,0.065536,0.005664
+1145,485.049,2.06165,0.317472,0.005504,0.213632,0.005728,0.004512,0.005408,0.004992,0.005984,0.065536,0.006176
+1146,1611.33,0.620605,0.307552,0.004576,0.206176,0.004768,0.004096,0.006016,0.006048,0.005664,0.064192,0.006016
+1147,1374.04,0.727783,0.480896,0.00608,0.378048,0.004896,0.004192,0.005792,0.00576,0.004896,0.065472,0.00576
+1148,1057.03,0.946045,0.300736,0.005376,0.19872,0.004864,0.004256,0.005696,0.005824,0.004864,0.065536,0.0056
+1149,1498.45,0.667358,0.325664,0.005568,0.22352,0.004384,0.005248,0.004992,0.005792,0.005664,0.065856,0.00464
+1150,1381.45,0.723877,0.311008,0.00544,0.205536,0.005696,0.004544,0.005568,0.005792,0.005024,0.067584,0.005824
+1151,1298.46,0.770142,0.553856,0.004992,0.43008,0.024576,0.00592,0.004352,0.006112,0.006144,0.066976,0.004704
+1152,800.078,1.24988,0.306496,0.006144,0.204832,0.005184,0.004832,0.00432,0.0072,0.005056,0.0632,0.005728
+1153,1481.91,0.674805,0.302144,0.006144,0.202144,0.004704,0.004096,0.005984,0.005824,0.005696,0.062144,0.005408
+1154,1359.67,0.735474,0.304032,0.005024,0.204224,0.004672,0.004096,0.006144,0.006144,0.005824,0.061792,0.006112
+1155,708.344,1.41174,0.299008,0.0056,0.203296,0.004224,0.005568,0.004544,0.006144,0.00576,0.058912,0.00496
+1156,1186.73,0.842651,0.311296,0.005568,0.209344,0.004224,0.005408,0.004832,0.006144,0.006144,0.064608,0.005024
+1157,1407.08,0.710693,0.303104,0.005856,0.200992,0.005536,0.004704,0.005248,0.006048,0.005088,0.06352,0.006112
+1158,1389.18,0.719849,0.324224,0.004736,0.22528,0.005184,0.0048,0.004352,0.006144,0.005984,0.0616,0.006144
+1159,1197.49,0.835083,0.542848,0.004448,0.421888,0.03008,0.004768,0.00592,0.00576,0.00576,0.058304,0.00592
+1160,940.636,1.06311,0.301472,0.00512,0.2048,0.0056,0.00464,0.005344,0.004896,0.007296,0.05824,0.005536
+1161,864.317,1.15698,0.301376,0.00544,0.19968,0.0056,0.00464,0.005888,0.00576,0.004736,0.06496,0.004672
+1162,1407.08,0.710693,0.301184,0.005408,0.205632,0.005536,0.004576,0.00432,0.006048,0.006016,0.05904,0.004608
+1163,570.752,1.75208,0.483648,0.005408,0.385664,0.00448,0.005216,0.005024,0.005984,0.005792,0.0616,0.00448
+1164,948.368,1.05444,0.299616,0.004864,0.203776,0.004928,0.004288,0.005664,0.005792,0.004928,0.059392,0.005984
+1165,1412.41,0.708008,0.317408,0.00544,0.217792,0.005248,0.0048,0.004288,0.006144,0.006144,0.06144,0.006112
+1166,968.78,1.03223,0.499712,0.008192,0.396384,0.005024,0.005792,0.004448,0.006144,0.006048,0.061568,0.006112
+1167,1448.63,0.690308,0.298912,0.00464,0.20176,0.004864,0.00432,0.006144,0.006016,0.005664,0.06,0.005504
+1168,1326.85,0.753662,0.3008,0.004832,0.202752,0.005408,0.004832,0.00576,0.005792,0.004832,0.061088,0.005504
+1169,1511.72,0.661499,0.311296,0.006144,0.210944,0.005664,0.004576,0.006144,0.005824,0.005696,0.061472,0.004832
+1170,1260.89,0.793091,0.295392,0.004544,0.198656,0.005696,0.004544,0.005376,0.004864,0.006144,0.06144,0.004128
+1171,980.608,1.01978,0.30432,0.0056,0.203296,0.004096,0.005792,0.0064,0.005792,0.005728,0.062176,0.00544
+1172,1059.49,0.943848,0.30512,0.005888,0.204448,0.004704,0.005664,0.006432,0.00576,0.004672,0.061472,0.00608
+1173,730.646,1.36865,0.308768,0.0056,0.20944,0.004096,0.0056,0.00464,0.006176,0.006048,0.061504,0.005664
+1174,1034.08,0.967041,0.319744,0.007552,0.213888,0.005664,0.004576,0.005376,0.004864,0.006144,0.066688,0.004992
+1175,1232.62,0.811279,0.297888,0.005024,0.200384,0.004416,0.005248,0.004992,0.005824,0.00592,0.061344,0.004736
+1176,1194.52,0.837158,0.302752,0.00544,0.203488,0.004096,0.005568,0.004672,0.006144,0.006144,0.06144,0.00576
+1177,883.234,1.1322,0.329856,0.004896,0.230944,0.004576,0.004096,0.006144,0.005824,0.006272,0.061632,0.005472
+1178,1221.96,0.818359,0.310336,0.006048,0.204896,0.005824,0.004416,0.005952,0.005824,0.005696,0.066208,0.005472
+1179,1282.2,0.779907,0.31328,0.004768,0.210272,0.0048,0.004064,0.0056,0.005696,0.005088,0.067584,0.005408
+1180,1450.94,0.689209,0.30128,0.00592,0.201984,0.004864,0.00432,0.0056,0.005728,0.005056,0.063168,0.00464
+1181,1511.16,0.661743,0.310816,0.005504,0.209856,0.005472,0.004768,0.005216,0.00608,0.005088,0.063328,0.005504
+1182,716.46,1.39575,0.305984,0.006976,0.206848,0.005376,0.0048,0.005184,0.00512,0.006176,0.060576,0.004928
+1183,1555.34,0.642944,0.301248,0.005728,0.203168,0.005696,0.004544,0.005344,0.004896,0.006144,0.061088,0.00464
+1184,1315.56,0.760132,0.297056,0.00544,0.197408,0.005344,0.0048,0.005696,0.00576,0.005024,0.06144,0.006144
+1185,1502.29,0.665649,0.296736,0.00544,0.198752,0.004864,0.004192,0.0056,0.005888,0.004928,0.061408,0.005664
+1186,1222.69,0.817871,0.47504,0.006144,0.376832,0.004096,0.005632,0.004608,0.006144,0.005856,0.05968,0.006048
+1187,1194.52,0.837158,0.2944,0.006144,0.196224,0.00448,0.005152,0.005088,0.005984,0.005504,0.060192,0.005632
+1188,1251.83,0.798828,0.300736,0.006144,0.196,0.004704,0.00544,0.0048,0.00608,0.005664,0.06608,0.005824
+1189,1526.93,0.654907,0.304832,0.006016,0.198784,0.005792,0.004448,0.005504,0.00656,0.006016,0.065888,0.005824
+1190,634.154,1.5769,0.311296,0.008192,0.208288,0.004704,0.004096,0.00608,0.005632,0.005984,0.063392,0.004928
+1191,740.085,1.3512,0.301056,0.006144,0.200704,0.004096,0.005728,0.004512,0.006144,0.006144,0.06144,0.006144
+1192,1705.96,0.586182,0.304704,0.00592,0.205024,0.005248,0.004608,0.00448,0.006144,0.006048,0.061536,0.005696
+1193,1280.4,0.781006,0.303392,0.00448,0.20176,0.005088,0.005888,0.005888,0.00464,0.0056,0.064,0.006048
+1194,1220.68,0.819214,0.303264,0.005568,0.198848,0.00448,0.005184,0.004992,0.005792,0.005696,0.068064,0.00464
+1195,1170.62,0.854248,0.300448,0.005824,0.194912,0.005312,0.004544,0.004448,0.006144,0.005984,0.067744,0.005536
+1196,1671.84,0.598145,0.30528,0.004768,0.202144,0.004704,0.005696,0.004544,0.006144,0.005888,0.065792,0.0056
+1197,1309.25,0.763794,0.540928,0.005472,0.435072,0.006144,0.006048,0.004352,0.005984,0.006144,0.066688,0.005024
+1198,851.913,1.17383,0.303744,0.004608,0.201824,0.004864,0.004256,0.005728,0.005792,0.004864,0.067168,0.00464
+1199,1511.16,0.661743,0.303008,0.004896,0.200224,0.004576,0.004128,0.006112,0.005696,0.005824,0.066112,0.00544
+1200,807.73,1.23804,0.31056,0.006144,0.205984,0.004864,0.004192,0.00608,0.005792,0.005856,0.06624,0.005408
+1201,1558.9,0.641479,0.315808,0.004512,0.212928,0.00416,0.005504,0.004736,0.006144,0.006144,0.06672,0.00496
+1202,1143.34,0.874634,0.305344,0.005536,0.201312,0.004096,0.0056,0.00464,0.007392,0.004896,0.067232,0.00464
+1203,1303.63,0.76709,0.297216,0.005408,0.195008,0.004512,0.005184,0.005056,0.005728,0.00576,0.06592,0.00464
+1204,1620.25,0.617188,0.3072,0.006144,0.202752,0.004288,0.005568,0.00448,0.006144,0.006144,0.066976,0.004704
+1205,1388.47,0.720215,0.307648,0.004608,0.2048,0.00576,0.00448,0.005504,0.006016,0.004864,0.065536,0.00608
+1206,1338.34,0.747192,0.555712,0.0048,0.45056,0.007168,0.0048,0.004416,0.006144,0.006112,0.066848,0.004864
+1207,739.684,1.35193,0.313344,0.00608,0.208672,0.004416,0.00576,0.004448,0.006144,0.006144,0.066752,0.004928
+1208,1723.54,0.5802,0.311296,0.006144,0.200608,0.004192,0.005216,0.005024,0.006144,0.005824,0.073088,0.005056
+1209,1309.04,0.763916,0.3016,0.00464,0.197824,0.004864,0.00416,0.006144,0.005888,0.005728,0.066208,0.006144
+1210,1456.61,0.686523,0.333696,0.006144,0.22896,0.004512,0.004096,0.005824,0.004448,0.006112,0.067584,0.006016
+1211,986.513,1.01367,0.299008,0.005664,0.19504,0.00528,0.00496,0.005248,0.004992,0.006144,0.06704,0.00464
+1212,1682.14,0.594482,0.299296,0.005536,0.195072,0.00448,0.005152,0.005088,0.006176,0.005728,0.06592,0.006144
+1213,1223.6,0.817261,0.300448,0.006144,0.195712,0.004832,0.004256,0.005728,0.005792,0.004864,0.067584,0.005536
+1214,1587.29,0.630005,0.30752,0.00544,0.203456,0.004448,0.005184,0.005024,0.006144,0.006144,0.06688,0.0048
+1215,661.072,1.5127,0.344192,0.00752,0.238368,0.005632,0.004608,0.005376,0.004864,0.006144,0.0656,0.00608
+1216,1310.93,0.762817,0.333856,0.005504,0.229824,0.004288,0.004128,0.005984,0.005728,0.005664,0.06784,0.004896
+1217,1511.44,0.661621,0.30496,0.004832,0.198656,0.005824,0.004416,0.0056,0.005888,0.004928,0.069408,0.005408
+1218,1459.73,0.685059,0.306944,0.006016,0.200832,0.004096,0.006144,0.005312,0.004928,0.006144,0.067584,0.005888
+1219,1218.87,0.820435,0.3016,0.00464,0.198656,0.004192,0.005312,0.004864,0.005856,0.005728,0.066208,0.006144
+1220,1441.75,0.693604,0.299456,0.004544,0.196448,0.0056,0.004544,0.004352,0.006048,0.005792,0.06736,0.004768
+1221,1305.08,0.766235,0.2976,0.004736,0.19456,0.004096,0.005696,0.004544,0.006144,0.006048,0.06672,0.005056
+1222,1503.95,0.664917,0.305152,0.006144,0.20016,0.004672,0.004064,0.006048,0.005888,0.005888,0.067264,0.005024
+1223,639.85,1.56287,0.32432,0.00688,0.217088,0.004096,0.005536,0.004704,0.006144,0.006144,0.06864,0.005088
+1224,1375.65,0.726929,0.305152,0.00544,0.19936,0.00544,0.0048,0.004096,0.006144,0.006144,0.067584,0.006144
+1225,1442.51,0.693237,0.301056,0.005728,0.194976,0.005312,0.004896,0.004384,0.005888,0.006144,0.068704,0.005024
+1226,1495.98,0.668457,0.299008,0.006048,0.196704,0.005824,0.005472,0.005088,0.005792,0.005664,0.062304,0.006112
+1227,1423.46,0.702515,0.475296,0.005408,0.377536,0.004288,0.00544,0.0048,0.006144,0.006016,0.060864,0.0048
+1228,1115.77,0.89624,0.292864,0.00544,0.193536,0.005696,0.004512,0.00528,0.00496,0.006144,0.06144,0.005856
+1229,1421.48,0.703491,0.292864,0.00592,0.194784,0.004288,0.005952,0.005312,0.004928,0.006144,0.060576,0.00496
+1230,1506.44,0.663818,0.298112,0.006144,0.198112,0.00464,0.005312,0.004928,0.006048,0.005792,0.061664,0.005472
+1231,1359.89,0.735352,0.540672,0.006144,0.44032,0.007936,0.005504,0.004992,0.00592,0.00576,0.05936,0.004736
+1232,826.39,1.21008,0.310528,0.005536,0.20336,0.005536,0.004704,0.006144,0.006144,0.00576,0.067904,0.00544
+1233,1413.14,0.707642,0.29904,0.005408,0.198528,0.004896,0.004192,0.006144,0.00576,0.005728,0.06224,0.006144
+1234,1534.66,0.651611,0.297632,0.00512,0.198656,0.004096,0.00512,0.005152,0.005728,0.005696,0.062272,0.005792
+1235,1400.82,0.713867,0.296704,0.006144,0.196448,0.004256,0.005536,0.004704,0.006176,0.005728,0.061824,0.005888
+1236,1317.68,0.758911,0.475968,0.004896,0.376832,0.004128,0.005664,0.004576,0.006112,0.006048,0.062752,0.00496
+1237,1153.64,0.866821,0.305504,0.0048,0.2048,0.00592,0.00432,0.006144,0.005792,0.00576,0.062176,0.005792
+1238,1555.94,0.6427,0.296928,0.004768,0.200288,0.004512,0.004096,0.00608,0.00576,0.005664,0.06032,0.00544
+1239,1356.52,0.737183,0.294656,0.00544,0.195264,0.0056,0.00464,0.00528,0.00496,0.006144,0.06144,0.005888
+1240,1263.22,0.791626,0.29696,0.005856,0.200512,0.004576,0.004096,0.006144,0.005824,0.005888,0.05936,0.004704
+1241,763.182,1.3103,0.300992,0.007712,0.201184,0.005152,0.0048,0.004384,0.006144,0.00592,0.059616,0.00608
+1242,1481.11,0.675171,0.302496,0.005696,0.203232,0.004224,0.005984,0.005408,0.004832,0.006144,0.061344,0.005632
+1243,1371.73,0.729004,0.298176,0.00608,0.19872,0.00512,0.004576,0.00464,0.005824,0.005792,0.061984,0.00544
+1244,1478.17,0.676514,0.300096,0.00544,0.199392,0.005376,0.004864,0.00576,0.005792,0.004896,0.062976,0.0056
+1245,1109.73,0.901123,0.297024,0.004704,0.198656,0.00512,0.0048,0.005856,0.00576,0.005088,0.06144,0.0056
+1246,1544.49,0.647461,0.299488,0.005088,0.199744,0.005056,0.0056,0.00464,0.006144,0.005792,0.061792,0.005632
+1247,1410.23,0.709106,0.294528,0.006144,0.195648,0.004864,0.005344,0.005088,0.005952,0.0056,0.060128,0.00576
+1248,1386.59,0.721191,0.29696,0.006144,0.198624,0.00416,0.005504,0.004704,0.006144,0.006144,0.059392,0.006144
+1249,1067.22,0.937012,0.497504,0.007552,0.395744,0.004544,0.006144,0.005504,0.006016,0.00592,0.060384,0.005696
+1250,1129.93,0.88501,0.2952,0.005472,0.1976,0.005344,0.004864,0.006144,0.006016,0.005696,0.059168,0.004896
+1251,1442,0.693481,0.301088,0.005408,0.19712,0.004384,0.00576,0.004512,0.006112,0.006144,0.065536,0.006112
+1252,1389.89,0.719482,0.2944,0.005984,0.19472,0.005728,0.004512,0.00544,0.004832,0.006112,0.061344,0.005728
+1253,1377.04,0.726196,0.292416,0.004512,0.196288,0.004416,0.005216,0.005024,0.005728,0.0056,0.060224,0.005408
+1254,1485.94,0.672974,0.47632,0.005472,0.375456,0.0056,0.00464,0.005312,0.004928,0.006144,0.063296,0.005472
+1255,1060.04,0.943359,0.295136,0.005664,0.193216,0.005792,0.004448,0.00544,0.005888,0.005056,0.063488,0.006144
+1256,1277.01,0.783081,0.305856,0.0048,0.196608,0.0056,0.00464,0.005824,0.005856,0.005856,0.070528,0.006144
+1257,866.695,1.15381,0.356832,0.004576,0.235552,0.005344,0.004064,0.004544,0.004448,0.006144,0.087296,0.004864
+1258,1088.2,0.918945,0.323808,0.007776,0.209504,0.005888,0.004352,0.0056,0.00576,0.005024,0.075392,0.004512
+1259,1489.18,0.671509,0.315584,0.005408,0.201632,0.005344,0.0048,0.00432,0.006016,0.006144,0.077088,0.004832
+1260,1341.19,0.745605,0.309024,0.006144,0.196608,0.005248,0.0048,0.00432,0.006112,0.005632,0.07424,0.00592
+1261,1544.2,0.647583,0.313632,0.004736,0.196608,0.005664,0.004576,0.005376,0.00592,0.005088,0.079872,0.005792
+1262,1257.99,0.794922,0.34464,0.005056,0.225056,0.004352,0.004064,0.006144,0.005824,0.005728,0.082656,0.00576
+1263,1115.32,0.896606,0.316928,0.00608,0.196288,0.00448,0.005184,0.005056,0.005696,0.005728,0.082784,0.005632
+1264,1330.09,0.751831,0.31744,0.006048,0.19648,0.004224,0.006144,0.005408,0.004832,0.006144,0.08352,0.00464
+1265,1375.65,0.726929,0.309248,0.005568,0.197184,0.005184,0.004768,0.00544,0.005088,0.006144,0.075136,0.004736
+1266,1446.33,0.691406,0.567296,0.005632,0.451072,0.00736,0.004768,0.004288,0.006112,0.006144,0.0768,0.00512
+1267,646.159,1.54761,0.357376,0.00512,0.243712,0.005568,0.004672,0.005312,0.004928,0.006144,0.076928,0.004992
+1268,1592.23,0.628052,0.325152,0.005536,0.209536,0.004064,0.005792,0.004448,0.006144,0.006144,0.077824,0.005664
+1269,1339.22,0.746704,0.311232,0.006144,0.198656,0.005728,0.004512,0.005344,0.004896,0.006144,0.073728,0.00608
+1270,1465.21,0.682495,0.308832,0.004544,0.200672,0.00416,0.0056,0.004576,0.006144,0.006144,0.071584,0.005408
+1271,1233.55,0.810669,0.31744,0.005952,0.198848,0.005472,0.004768,0.005344,0.004896,0.006144,0.081536,0.00448
+1272,1402.98,0.712769,0.303648,0.00464,0.195808,0.004832,0.00416,0.005632,0.005792,0.00496,0.072896,0.004928
+1273,1248.02,0.80127,0.30032,0.005504,0.1952,0.00544,0.0048,0.005184,0.005056,0.006144,0.067552,0.00544
+1274,1605.96,0.622681,0.30176,0.004736,0.200256,0.004544,0.004096,0.006144,0.006144,0.005792,0.065408,0.00464
+1275,1298.05,0.770386,0.550464,0.005728,0.432544,0.006144,0.006144,0.005472,0.004896,0.006016,0.077824,0.005696
+1276,841.932,1.18774,0.322656,0.0056,0.211488,0.005792,0.004448,0.005504,0.006624,0.005632,0.07216,0.005408
+1277,1173.3,0.852295,0.32112,0.006144,0.208896,0.005472,0.004768,0.005216,0.006176,0.004992,0.073728,0.005728
+1278,1660.65,0.602173,0.309184,0.006144,0.20208,0.004768,0.004096,0.006144,0.006144,0.00576,0.067968,0.00608
+1279,1242.15,0.805054,0.303104,0.005824,0.198336,0.004736,0.004096,0.006016,0.00576,0.005824,0.067648,0.004864
+1280,1317.47,0.759033,0.307904,0.0048,0.198016,0.004736,0.004096,0.005824,0.005792,0.005824,0.072672,0.006144
+1281,1287.44,0.776733,0.309344,0.005408,0.195392,0.004096,0.005728,0.004512,0.006144,0.005888,0.077536,0.00464
+1282,1430.17,0.699219,0.33008,0.00448,0.221184,0.004064,0.005856,0.004384,0.006144,0.006144,0.07168,0.006144
+1283,1359.67,0.735474,0.310816,0.006144,0.200576,0.004256,0.005408,0.0048,0.006144,0.005792,0.072032,0.005664
+1284,696.895,1.43494,0.323648,0.006624,0.21504,0.00416,0.005568,0.004608,0.006144,0.006144,0.069632,0.005728
+1285,1403.7,0.712402,0.307232,0.0056,0.1992,0.005824,0.004416,0.005696,0.005792,0.004896,0.071104,0.004704
+1286,1498.99,0.667114,0.335488,0.00544,0.229632,0.0048,0.004096,0.00576,0.00576,0.004864,0.069632,0.005504
+1287,1349.14,0.741211,0.304992,0.0056,0.1992,0.005536,0.004704,0.005632,0.006016,0.005984,0.066336,0.005984
+1288,1459.99,0.684937,0.483072,0.004608,0.378688,0.0056,0.0048,0.005184,0.005088,0.006144,0.067488,0.005472
+1289,1075.35,0.929932,0.29904,0.006144,0.196608,0.005664,0.004576,0.005376,0.004864,0.006016,0.065088,0.004704
+1290,1574.48,0.635132,0.302816,0.005984,0.19984,0.004864,0.004352,0.0056,0.00576,0.005024,0.065536,0.005856
+1291,1416.32,0.706055,0.303264,0.00544,0.199136,0.004512,0.005152,0.005056,0.005888,0.005792,0.066144,0.006144
+1292,1371.96,0.728882,0.552992,0.0048,0.445824,0.008832,0.005696,0.004544,0.006144,0.006016,0.065664,0.005472
+1293,817.646,1.22302,0.30288,0.005408,0.199552,0.004224,0.005408,0.004832,0.005952,0.00576,0.066112,0.005632
+1294,1198.19,0.834595,0.33776,0.005696,0.23392,0.00416,0.005568,0.004608,0.006144,0.005728,0.065952,0.005984
+1295,1406.11,0.711182,0.311296,0.005536,0.207456,0.004096,0.005696,0.004544,0.006144,0.006144,0.065536,0.006144
+1296,1400.34,0.714111,0.310272,0.006144,0.2048,0.00576,0.00448,0.006048,0.005856,0.005696,0.06608,0.005408
+1297,1052.96,0.949707,0.32352,0.005696,0.201152,0.005408,0.0048,0.005184,0.005088,0.006144,0.083968,0.00608
+1298,1559.79,0.641113,0.30304,0.004512,0.198656,0.005472,0.004768,0.005728,0.005792,0.004928,0.06752,0.005664
+1299,1257.21,0.79541,0.306464,0.006144,0.200448,0.004352,0.00528,0.00496,0.006144,0.006144,0.067584,0.005408
+1300,1557.12,0.642212,0.309248,0.005536,0.202464,0.004832,0.004256,0.005696,0.005856,0.004832,0.069632,0.006144
+1301,727.079,1.37537,0.327616,0.008192,0.218336,0.004864,0.004128,0.005856,0.00576,0.004864,0.069536,0.00608
+1302,1442.25,0.693359,0.307264,0.00544,0.201056,0.004512,0.00512,0.00512,0.006016,0.00576,0.068096,0.006144
+1303,1571.76,0.63623,0.30656,0.00608,0.19872,0.005536,0.00464,0.005184,0.00512,0.006144,0.069632,0.005504
+1304,1339.22,0.746704,0.303104,0.006144,0.195776,0.004832,0.00544,0.004896,0.006112,0.005728,0.069312,0.004864
+1305,1386.59,0.721191,0.524672,0.004576,0.423936,0.004096,0.005824,0.004416,0.006144,0.00608,0.063552,0.006048
+1306,1041.44,0.960205,0.30096,0.006144,0.197664,0.004864,0.00432,0.005664,0.00576,0.00496,0.065536,0.006048
+1307,1600.31,0.624878,0.30416,0.006144,0.198624,0.00416,0.005504,0.004736,0.006112,0.005792,0.06768,0.005408
+1308,721.699,1.38562,0.313472,0.005824,0.21296,0.004448,0.005184,0.005056,0.006144,0.00592,0.063296,0.00464
+1309,870.933,1.14819,0.538336,0.043008,0.397312,0.005408,0.004832,0.006016,0.00576,0.005728,0.064416,0.005856
+1310,1393.2,0.717773,0.321536,0.00576,0.218528,0.004864,0.00432,0.005632,0.005728,0.005024,0.066848,0.004832
+1311,1270.47,0.787109,0.31296,0.005856,0.207136,0.005344,0.0048,0.004352,0.007936,0.00576,0.066016,0.00576
+1312,1380.75,0.724243,0.325184,0.00544,0.217088,0.004864,0.004352,0.005632,0.006656,0.006144,0.0696,0.005408
+1313,1131.34,0.883911,0.484896,0.004416,0.37888,0.00512,0.0048,0.004416,0.006144,0.006144,0.0696,0.005376
+1314,1146.38,0.872314,0.313344,0.005568,0.205408,0.005408,0.004768,0.005184,0.005088,0.006144,0.069632,0.006144
+1315,1421.24,0.703613,0.342016,0.006144,0.235296,0.00432,0.005344,0.004896,0.005888,0.005728,0.069664,0.004736
+1316,1122.65,0.890747,0.312064,0.004832,0.20608,0.004832,0.004128,0.005856,0.005696,0.004864,0.070752,0.005024
+1317,1340.53,0.745972,0.6056,0.005728,0.49808,0.006144,0.005856,0.004384,0.006176,0.006112,0.067584,0.005536
+1318,747.445,1.33789,0.35824,0.004448,0.25776,0.004384,0.005248,0.004992,0.005984,0.005632,0.06416,0.005632
+1319,1323.21,0.755737,0.316896,0.006144,0.203872,0.004832,0.004288,0.005952,0.005856,0.005696,0.067584,0.012672
+1320,1450.42,0.689453,0.309952,0.004768,0.19984,0.004896,0.005312,0.004992,0.00592,0.005696,0.073792,0.004736
+1321,1217.06,0.821655,0.503232,0.005408,0.393056,0.004896,0.004192,0.005792,0.00576,0.004896,0.073664,0.005568
+1322,1219.59,0.819946,0.302976,0.005568,0.194944,0.004288,0.005536,0.004704,0.006144,0.00576,0.070016,0.006016
+1323,1530.36,0.653442,0.308992,0.005952,0.19648,0.004416,0.004096,0.006144,0.005824,0.005696,0.074496,0.005888
+1324,941.176,1.0625,0.313344,0.006144,0.200672,0.004128,0.005504,0.004736,0.006144,0.006144,0.075008,0.004864
+1325,1054.99,0.947876,0.524,0.010944,0.395264,0.005952,0.005504,0.004928,0.005984,0.00576,0.074272,0.015392
+1326,1031.09,0.969849,0.312896,0.005824,0.198976,0.005696,0.004544,0.00592,0.005824,0.005696,0.07472,0.005696
+1327,1321.72,0.756592,0.313344,0.006144,0.199744,0.004864,0.004288,0.005568,0.006496,0.005728,0.075584,0.004928
+1328,1336.16,0.748413,0.313344,0.006048,0.194656,0.005824,0.004416,0.005408,0.00592,0.005056,0.079872,0.006144
+1329,1568.15,0.637695,0.311296,0.005888,0.196864,0.0056,0.00464,0.0056,0.005792,0.004992,0.075776,0.006144
+1330,1076.34,0.929077,0.305888,0.004832,0.19456,0.004096,0.005696,0.004544,0.006144,0.00592,0.075712,0.004384
+1331,1500.64,0.666382,0.301856,0.004896,0.195648,0.004896,0.005312,0.005088,0.00592,0.005696,0.069472,0.004928
+1332,1157.39,0.864014,0.309216,0.006144,0.202336,0.004512,0.00512,0.00512,0.005824,0.005824,0.068224,0.006112
+1333,1281.4,0.780396,0.617152,0.0048,0.50976,0.006272,0.005504,0.0048,0.006112,0.005728,0.068032,0.006144
+1334,847.945,1.17932,0.308608,0.006048,0.202016,0.004864,0.00416,0.005792,0.0064,0.005696,0.068128,0.005504
+1335,1545.37,0.647095,0.31472,0.005632,0.202368,0.004864,0.005312,0.005056,0.00608,0.006016,0.07392,0.005472
+1336,1402.74,0.712891,0.303104,0.005792,0.196576,0.00448,0.005184,0.005056,0.005792,0.005696,0.070016,0.004512
+1337,1305.5,0.765991,0.304352,0.00576,0.196832,0.004256,0.005376,0.006528,0.00576,0.004864,0.0696,0.005376
+1338,1448.37,0.69043,0.483264,0.004608,0.378048,0.004896,0.004128,0.005888,0.005728,0.004896,0.069504,0.005568
+1339,1211.66,0.825317,0.305184,0.005632,0.196352,0.004896,0.005312,0.005024,0.00592,0.005792,0.070208,0.006048
+1340,1264.59,0.790771,0.301312,0.004832,0.196352,0.004352,0.00528,0.00496,0.005856,0.005664,0.068352,0.005664
+1341,1528.36,0.654297,0.31088,0.005376,0.201664,0.004192,0.005568,0.004576,0.006176,0.006112,0.07168,0.005536
+1342,1275.22,0.78418,0.307296,0.005856,0.198944,0.00576,0.00448,0.005792,0.00576,0.004832,0.071264,0.004608
+1343,751.008,1.33154,0.325568,0.007616,0.213248,0.00464,0.004096,0.00608,0.005728,0.005728,0.072576,0.005856
+1344,1299.08,0.769775,0.313152,0.006016,0.200832,0.00528,0.0048,0.004288,0.007456,0.004832,0.073696,0.005952
+1345,1587.6,0.629883,0.30528,0.00544,0.199584,0.005472,0.004704,0.005184,0.00512,0.006144,0.067584,0.006048
+1346,1415.59,0.706421,0.30528,0.00544,0.1992,0.004448,0.005792,0.00448,0.006112,0.005984,0.067744,0.00608
+1347,1124.5,0.889282,0.302592,0.00592,0.194784,0.004192,0.0056,0.004544,0.006144,0.006016,0.06976,0.005632
+1348,1543.91,0.647705,0.300928,0.004576,0.198688,0.00512,0.0048,0.005664,0.004864,0.006144,0.065536,0.005536
+1349,1210.22,0.826294,0.301056,0.005696,0.195008,0.005568,0.004672,0.005728,0.005984,0.005696,0.067808,0.004896
+1350,1070.71,0.93396,0.318912,0.005728,0.21136,0.005472,0.004768,0.005152,0.005088,0.006144,0.069632,0.005568
+1351,730.45,1.36902,0.333824,0.00816,0.22704,0.004416,0.005216,0.005024,0.00592,0.005632,0.067936,0.00448
+1352,1362.38,0.734009,0.3072,0.006144,0.202432,0.005568,0.004768,0.00432,0.006144,0.006144,0.066784,0.004896
+1353,1521.55,0.657227,0.300736,0.004768,0.200704,0.004096,0.005408,0.004864,0.005984,0.005728,0.063808,0.005376
+1354,1336.16,0.748413,0.297376,0.004512,0.196608,0.005632,0.004608,0.005632,0.005984,0.005824,0.063744,0.004832
+1355,1553.57,0.643677,0.48128,0.005824,0.377152,0.005216,0.0048,0.00432,0.006144,0.006144,0.067008,0.004672
+1356,1035.65,0.965576,0.302208,0.006144,0.196608,0.004224,0.005568,0.004544,0.006144,0.006144,0.067424,0.005408
+1357,1649.62,0.606201,0.301856,0.004992,0.196608,0.004096,0.005792,0.004448,0.006144,0.006144,0.067584,0.006048
+1358,1217.6,0.821289,0.3016,0.00464,0.197728,0.004832,0.004288,0.005696,0.00624,0.005824,0.066208,0.006144
+1359,1204,0.830566,0.546752,0.0056,0.442912,0.006144,0.006048,0.004224,0.006112,0.006144,0.063488,0.00608
+1360,861.409,1.16089,0.310368,0.005824,0.2048,0.004416,0.005216,0.005024,0.005856,0.005664,0.06816,0.005408
+1361,1620.89,0.616943,0.305184,0.00576,0.19904,0.005248,0.0048,0.004288,0.006144,0.006144,0.069152,0.004608
+1362,782.052,1.27869,0.30432,0.006144,0.196608,0.005184,0.004896,0.005696,0.005792,0.005056,0.069472,0.005472
+1363,1487.02,0.672485,0.483328,0.00528,0.377472,0.00432,0.00544,0.0048,0.006112,0.005728,0.069152,0.005024
+1364,1073.94,0.931152,0.303904,0.004896,0.19664,0.005376,0.0048,0.00416,0.006112,0.006144,0.069632,0.006144
+1365,1517.32,0.659058,0.303744,0.005024,0.196608,0.005504,0.004736,0.004096,0.006144,0.006144,0.069632,0.005856
+1366,1295.18,0.772095,0.303648,0.004832,0.198368,0.004384,0.005216,0.005024,0.005824,0.005728,0.06832,0.005952
+1367,1421.98,0.703247,0.543616,0.004992,0.431232,0.011136,0.005888,0.004352,0.006144,0.006144,0.067584,0.006144
+1368,743.713,1.3446,0.320384,0.004992,0.212992,0.005536,0.004704,0.005312,0.004928,0.006144,0.069632,0.006144
+1369,1492.71,0.669922,0.311968,0.004768,0.204608,0.004288,0.005344,0.004896,0.00608,0.005728,0.070112,0.006144
+1370,1405.15,0.71167,0.308672,0.005536,0.199264,0.00512,0.0048,0.005536,0.005024,0.006176,0.071648,0.005568
+1371,1531.21,0.653076,0.30784,0.004736,0.200096,0.004704,0.004096,0.006048,0.00576,0.005952,0.071776,0.004672
+1372,946.396,1.05664,0.306976,0.006048,0.19648,0.00432,0.005312,0.004928,0.006016,0.005632,0.07232,0.00592
+1373,1756.81,0.569214,0.307424,0.005088,0.196608,0.00544,0.0048,0.005184,0.005088,0.006112,0.073728,0.005376
+1374,1257.21,0.79541,0.31792,0.004576,0.206848,0.005408,0.004768,0.00416,0.006144,0.006144,0.074848,0.005024
+1375,1484.06,0.673828,0.3112,0.006016,0.2008,0.00416,0.005472,0.00656,0.005792,0.005696,0.070656,0.006048
+1376,1283.61,0.779053,0.581856,0.0056,0.471808,0.00624,0.004128,0.005888,0.005792,0.004736,0.071648,0.006016
+1377,822.738,1.21545,0.311648,0.00544,0.199008,0.004768,0.004096,0.005984,0.005696,0.004704,0.077376,0.004576
+1378,1399.62,0.714478,0.304736,0.004704,0.19456,0.005664,0.004576,0.006144,0.006144,0.00592,0.071616,0.005408
+1379,1346.04,0.74292,0.32976,0.005856,0.21328,0.005536,0.004704,0.005312,0.004928,0.006144,0.079232,0.004768
+1380,1349.14,0.741211,0.339424,0.005696,0.22128,0.004448,0.006016,0.004224,0.006144,0.006144,0.079872,0.0056
+1381,1004.17,0.99585,0.35312,0.004928,0.234784,0.004832,0.004096,0.005888,0.00576,0.00576,0.082048,0.005024
+1382,1380.05,0.724609,0.309248,0.006144,0.194016,0.00464,0.004096,0.00608,0.005792,0.005664,0.077984,0.004832
+1383,1374.73,0.727417,0.3136,0.005408,0.201728,0.005696,0.004512,0.005472,0.004896,0.006016,0.074816,0.005056
+1384,1279.2,0.781738,0.547104,0.00544,0.4264,0.014752,0.004256,0.005696,0.00576,0.004928,0.073728,0.006144
+1385,822.407,1.21594,0.3144,0.006144,0.200448,0.004352,0.00528,0.004992,0.006112,0.005984,0.075648,0.00544
+1386,1460.77,0.68457,0.317536,0.004544,0.198656,0.005632,0.004608,0.006016,0.005824,0.0064,0.080064,0.005792
+1387,1485.94,0.672974,0.315392,0.00576,0.19856,0.004576,0.004096,0.00576,0.00576,0.004864,0.08096,0.005056
+1388,790.657,1.26477,0.32752,0.005856,0.211232,0.005568,0.004672,0.005536,0.00576,0.005088,0.077824,0.005984
+1389,1264.2,0.791016,0.319904,0.004608,0.206816,0.005568,0.004672,0.005408,0.004832,0.006144,0.075776,0.00608
+1390,1564.55,0.63916,0.315392,0.005728,0.200128,0.004864,0.00432,0.005792,0.00576,0.004896,0.07776,0.006144
+1391,1264.39,0.790894,0.319424,0.005632,0.200608,0.004704,0.004096,0.006048,0.00624,0.00608,0.079936,0.00608
+1392,1399.15,0.714722,0.563392,0.004512,0.432096,0.02048,0.005568,0.004672,0.006144,0.005792,0.078176,0.005952
+1393,817.646,1.22302,0.31904,0.006144,0.204672,0.004224,0.00544,0.0048,0.005984,0.005696,0.076384,0.005696
+1394,1406.35,0.71106,0.31648,0.006144,0.200448,0.004352,0.005248,0.004992,0.00608,0.005696,0.07808,0.00544
+1395,1462.86,0.683594,0.311904,0.004704,0.200704,0.005216,0.00464,0.00448,0.006144,0.006048,0.075136,0.004832
+1396,1395.57,0.716553,0.308128,0.005024,0.196608,0.005152,0.005088,0.00544,0.004896,0.006048,0.075136,0.004736
+1397,1334.2,0.749512,0.492768,0.005408,0.37744,0.004288,0.00544,0.0048,0.006112,0.005728,0.078144,0.005408
+1398,1105.09,0.904907,0.313632,0.00544,0.195552,0.004096,0.005632,0.004608,0.006144,0.00592,0.080256,0.005984
+1399,1532.07,0.65271,0.31744,0.005856,0.196896,0.00576,0.00448,0.005728,0.005792,0.004896,0.081888,0.006144
+1400,1300.94,0.768677,0.316032,0.004736,0.2024,0.004448,0.005216,0.005024,0.00592,0.005728,0.07744,0.00512
+1401,1116.08,0.895996,0.511648,0.006656,0.394336,0.005024,0.005984,0.005856,0.005792,0.004896,0.077728,0.005376
+1402,1049.31,0.953003,0.305152,0.0056,0.197152,0.004096,0.0056,0.004672,0.006112,0.005888,0.069888,0.006144
+1403,1490.27,0.671021,0.306592,0.004448,0.198688,0.006112,0.004096,0.00608,0.00576,0.005728,0.07024,0.00544
+1404,1293.75,0.772949,0.303328,0.005408,0.196544,0.005024,0.004192,0.00592,0.005888,0.005824,0.068384,0.006144
+1405,1462.07,0.68396,0.30672,0.006048,0.196064,0.004736,0.004096,0.005984,0.00576,0.005728,0.07264,0.005664
+1406,1359.67,0.735474,0.483552,0.00544,0.376928,0.004928,0.004096,0.005632,0.005728,0.005024,0.070944,0.004832
+1407,773.633,1.2926,0.310272,0.00512,0.200576,0.004256,0.005408,0.0048,0.006112,0.006176,0.073152,0.004672
+1408,1646.63,0.6073,0.31744,0.006048,0.205952,0.004832,0.004352,0.005664,0.006624,0.006144,0.073024,0.0048
+1409,1303.21,0.767334,0.3144,0.00608,0.200416,0.004448,0.005216,0.005024,0.006144,0.006144,0.075552,0.005376
+1410,718.281,1.39221,0.315392,0.007872,0.201024,0.005408,0.004768,0.00416,0.006144,0.006144,0.075296,0.004576
+1411,1707.38,0.585693,0.30992,0.004768,0.19984,0.004832,0.004224,0.005792,0.005728,0.004864,0.075264,0.004608
+1412,1289.67,0.775391,0.313344,0.005824,0.195904,0.004864,0.004352,0.005664,0.005792,0.004928,0.079872,0.006144
+1413,1471.53,0.679565,0.311328,0.005728,0.19904,0.00528,0.004896,0.004352,0.005984,0.006144,0.075136,0.004768
+1414,1296.61,0.77124,0.48912,0.00544,0.377056,0.004704,0.004096,0.006144,0.00576,0.005696,0.07456,0.005664
+1415,1150.72,0.869019,0.30336,0.004384,0.195936,0.004768,0.004096,0.006144,0.005856,0.005696,0.070368,0.006112
+1416,1383.78,0.722656,0.310528,0.00544,0.197504,0.005664,0.004576,0.006144,0.006144,0.005856,0.07376,0.00544
+1417,1356.29,0.737305,0.313344,0.006144,0.202272,0.004576,0.004096,0.005952,0.005728,0.005728,0.07392,0.004928
+1418,646.21,1.54749,0.315904,0.006656,0.202752,0.005312,0.0048,0.004224,0.007776,0.006208,0.073408,0.004768
+1419,1361.25,0.734619,0.312928,0.006144,0.200384,0.004416,0.005344,0.004896,0.006144,0.006144,0.073728,0.005728
+1420,1392.25,0.718262,0.309248,0.004704,0.198656,0.005856,0.004384,0.00544,0.0048,0.006144,0.073728,0.005536
+1421,1497.9,0.667603,0.308896,0.00576,0.197024,0.005376,0.0048,0.005216,0.005056,0.006144,0.073728,0.005792
+1422,1344.71,0.743652,0.490528,0.006144,0.3784,0.004576,0.00512,0.005152,0.005888,0.00576,0.074016,0.005472
+1423,1088.49,0.918701,0.303648,0.00464,0.19456,0.00416,0.0056,0.004576,0.006144,0.005952,0.071872,0.006144
+1424,1407.08,0.710693,0.306144,0.005024,0.19456,0.004096,0.005664,0.005696,0.005184,0.006016,0.075264,0.00464
+1425,1439.47,0.694702,0.312832,0.004416,0.202208,0.00464,0.004096,0.00592,0.00576,0.005728,0.074592,0.005472
+1426,1348.26,0.741699,0.569056,0.00544,0.416032,0.006656,0.005472,0.00832,0.029216,0.018432,0.073728,0.00576
+1427,787.92,1.26917,0.33184,0.00496,0.220928,0.004352,0.005312,0.004928,0.006016,0.006176,0.07376,0.005408
+1428,1420.99,0.703735,0.315168,0.005536,0.20336,0.004128,0.005568,0.004672,0.006112,0.00608,0.073792,0.00592
+1429,1406.35,0.71106,0.311904,0.004768,0.200704,0.005568,0.004672,0.005344,0.004896,0.006144,0.073728,0.00608
+1430,1276.41,0.783447,0.309248,0.006112,0.19664,0.005568,0.004672,0.005312,0.004928,0.006176,0.07472,0.00512
+1431,1563.96,0.639404,0.489568,0.004672,0.378816,0.00416,0.005536,0.004704,0.006144,0.005824,0.074048,0.005664
+1432,1031.61,0.96936,0.307456,0.005408,0.196992,0.004672,0.004096,0.006144,0.005984,0.005728,0.07376,0.004672
+1433,1598.13,0.625732,0.312064,0.004864,0.202144,0.004704,0.005504,0.004736,0.006144,0.005824,0.073344,0.0048
+1434,1278.4,0.782227,0.309248,0.00592,0.20032,0.004704,0.004096,0.006144,0.005792,0.00576,0.071712,0.0048
+1435,637.064,1.5697,0.313632,0.007552,0.204864,0.004896,0.00416,0.005856,0.00576,0.004768,0.069632,0.006144
+1436,1503.12,0.665283,0.304448,0.005472,0.19552,0.005824,0.004416,0.006112,0.00576,0.005664,0.070272,0.005408
+1437,1042.5,0.959229,0.321472,0.004544,0.210272,0.004768,0.004096,0.006144,0.006016,0.005696,0.074304,0.005632
+1438,1578.12,0.633667,0.315648,0.005472,0.20368,0.005248,0.004768,0.004352,0.006112,0.006144,0.073728,0.006144
+1439,1199.06,0.833984,0.491104,0.005856,0.378208,0.004896,0.004256,0.00576,0.005792,0.004832,0.075776,0.005728
+1440,1216.87,0.821777,0.303808,0.004672,0.196608,0.005376,0.004576,0.004384,0.006144,0.006144,0.071264,0.00464
+1441,1531.79,0.652832,0.3072,0.005728,0.19696,0.00416,0.005792,0.005856,0.00576,0.00512,0.07168,0.006144
+1442,1362.83,0.733765,0.303328,0.005472,0.197504,0.005728,0.004512,0.005408,0.004864,0.006112,0.067584,0.006144
+1443,1173.3,0.852295,0.541984,0.00544,0.434368,0.006304,0.004608,0.006112,0.005792,0.005632,0.06832,0.005408
+1444,921.796,1.08484,0.30864,0.006144,0.202752,0.004192,0.0056,0.004544,0.005728,0.005696,0.068448,0.005536
+1445,1482.45,0.674561,0.307232,0.005472,0.19936,0.005248,0.004864,0.005408,0.005984,0.005088,0.0712,0.004608
+1446,1323.85,0.755371,0.305568,0.004512,0.198624,0.00544,0.004768,0.005216,0.006784,0.00576,0.069472,0.004992
+1447,1439.72,0.69458,0.313344,0.005696,0.2032,0.005504,0.004736,0.005344,0.004896,0.006144,0.072704,0.00512
+1448,1179.89,0.847534,0.308896,0.005472,0.200608,0.004992,0.004096,0.005984,0.006048,0.005728,0.070304,0.005664
+1449,1503.95,0.664917,0.312896,0.006144,0.19968,0.004864,0.004352,0.00576,0.005792,0.0064,0.074208,0.005696
+1450,1346.7,0.742554,0.306624,0.006144,0.196608,0.00544,0.0048,0.005248,0.006912,0.006272,0.069632,0.005568
+1451,1382.15,0.723511,0.315424,0.00544,0.20976,0.005408,0.004768,0.005248,0.005056,0.006112,0.067648,0.005984
+1452,1321.08,0.756958,0.555424,0.00592,0.449152,0.007648,0.00464,0.005344,0.00592,0.00512,0.06672,0.00496
+1453,851.913,1.17383,0.308096,0.004992,0.202784,0.005376,0.004576,0.004352,0.006144,0.006144,0.069216,0.004512
+1454,1175.66,0.850586,0.3048,0.006144,0.196352,0.004352,0.005952,0.005408,0.005024,0.006144,0.069632,0.005792
+1455,1688.03,0.592407,0.309248,0.006144,0.196608,0.005536,0.004544,0.005312,0.005088,0.006144,0.07504,0.004832
+1456,1339.22,0.746704,0.311456,0.00512,0.203968,0.004928,0.005632,0.004608,0.006144,0.00592,0.069728,0.005408
+1457,1180.23,0.84729,0.3072,0.00576,0.201088,0.004096,0.0056,0.00576,0.005024,0.006144,0.067584,0.006144
+1458,1534.08,0.651855,0.311328,0.005792,0.201088,0.005152,0.004768,0.005728,0.00592,0.005024,0.07168,0.006176
+1459,1237.46,0.808105,0.306336,0.005792,0.19696,0.00544,0.0048,0.005248,0.006272,0.005984,0.0704,0.00544
+1460,1528.64,0.654175,0.311424,0.004416,0.204736,0.004192,0.005472,0.004768,0.006112,0.005728,0.070048,0.005952
+1461,696.599,1.43555,0.315392,0.008192,0.2048,0.004096,0.0056,0.00464,0.006144,0.005696,0.07008,0.006144
+1462,1602.5,0.624023,0.315648,0.00464,0.206848,0.005792,0.004448,0.005568,0.005888,0.004928,0.07168,0.005856
+1463,1247.83,0.801392,0.302432,0.006112,0.197792,0.004832,0.004256,0.006048,0.005952,0.005824,0.066144,0.005472
+1464,1368.53,0.730713,0.307328,0.00544,0.203488,0.004192,0.00544,0.0048,0.006144,0.00576,0.06592,0.006144
+1465,1509.49,0.662476,0.48208,0.004896,0.376736,0.004192,0.005504,0.004736,0.006144,0.005792,0.067936,0.006144
+1466,1226.35,0.81543,0.305984,0.005056,0.200256,0.004544,0.005472,0.004768,0.006144,0.00608,0.06768,0.005984
+1467,1416.08,0.706177,0.301056,0.005824,0.19488,0.005376,0.004864,0.005184,0.005056,0.006144,0.069088,0.00464
+1468,1424.94,0.701782,0.310912,0.00544,0.19744,0.004096,0.005696,0.004544,0.006144,0.005792,0.076128,0.005632
+1469,1243.28,0.804321,0.562176,0.005088,0.446464,0.006304,0.005984,0.005504,0.0064,0.005728,0.075744,0.00496
+1470,825.058,1.21204,0.311296,0.006144,0.202752,0.004096,0.00576,0.00448,0.006144,0.006144,0.069632,0.006144
+1471,1488.37,0.671875,0.309248,0.005632,0.196288,0.004736,0.004288,0.005664,0.005728,0.004992,0.077184,0.004736
+1472,1470.47,0.680054,0.305856,0.004768,0.202112,0.004736,0.004096,0.005792,0.005792,0.004864,0.069216,0.00448
+1473,1414.85,0.706787,0.310528,0.005856,0.196896,0.00528,0.0048,0.005536,0.004864,0.006144,0.075744,0.005408
+1474,1345.6,0.743164,0.487456,0.005472,0.376864,0.004736,0.004096,0.00608,0.005792,0.005696,0.072576,0.006144
+1475,1099.3,0.909668,0.305728,0.005024,0.194592,0.005504,0.004704,0.005568,0.005792,0.005024,0.073728,0.005792
+1476,1358.54,0.736084,0.3072,0.006144,0.196576,0.004128,0.005504,0.004736,0.006144,0.00576,0.072064,0.006144
+1477,1367.38,0.731323,0.308928,0.006048,0.198528,0.00432,0.005312,0.00496,0.00608,0.005728,0.072128,0.005824
+1478,1283.61,0.779053,0.552608,0.005472,0.44,0.006272,0.0048,0.004288,0.006112,0.006144,0.073728,0.005792
+1479,871.86,1.14697,0.320384,0.004992,0.202752,0.005792,0.004448,0.00608,0.005696,0.005664,0.079904,0.005056
+1480,1519.01,0.658325,0.319488,0.006048,0.200288,0.004608,0.006144,0.005344,0.004896,0.006144,0.081088,0.004928
+1481,1332.68,0.750366,0.307872,0.004768,0.196544,0.004192,0.00544,0.004768,0.006112,0.005728,0.074176,0.006144
+1482,1333.33,0.75,0.310336,0.005952,0.1968,0.005568,0.004672,0.005216,0.005024,0.006144,0.075552,0.005408
+1483,852.534,1.17297,0.307872,0.004768,0.195648,0.004992,0.00416,0.005856,0.005792,0.004736,0.075776,0.006144
+1484,1519.29,0.658203,0.321568,0.006048,0.20848,0.004608,0.004096,0.006112,0.00576,0.005728,0.075616,0.00512
+1485,1454.29,0.687622,0.309664,0.005632,0.201632,0.005408,0.0048,0.005216,0.005056,0.006144,0.071072,0.004704
+1486,1179.38,0.8479,0.6072,0.005056,0.495552,0.006208,0.004096,0.005952,0.005728,0.004896,0.074816,0.004896
+1487,869.731,1.14978,0.311296,0.005376,0.19952,0.004096,0.005664,0.005856,0.004864,0.006176,0.073696,0.006048
+1488,1511.44,0.661621,0.31152,0.00544,0.19952,0.0056,0.004704,0.005952,0.00576,0.005728,0.074112,0.004704
+1489,1271.65,0.786377,0.31344,0.005472,0.201152,0.00432,0.005312,0.004928,0.005824,0.004416,0.077536,0.00448
+1490,1413.14,0.707642,0.313344,0.006112,0.198688,0.005376,0.004704,0.004256,0.006144,0.006144,0.077184,0.004736
+1491,1374.27,0.727661,0.493248,0.006144,0.378176,0.0048,0.004096,0.005984,0.005696,0.004864,0.077664,0.005824
+1492,1179.21,0.848022,0.312992,0.005664,0.19504,0.005184,0.0048,0.004384,0.006112,0.006144,0.079872,0.005792
+1493,1322.57,0.756104,0.315232,0.006016,0.196736,0.00432,0.005568,0.004448,0.006144,0.006016,0.08,0.005984
+1494,1325.35,0.754517,0.319488,0.006112,0.200736,0.005184,0.0048,0.004352,0.006144,0.005888,0.081344,0.004928
+1495,1371.96,0.728882,0.566144,0.005056,0.44016,0.013792,0.0048,0.005856,0.00592,0.005824,0.078656,0.00608
+1496,854.847,1.1698,0.31856,0.006144,0.198688,0.00576,0.004448,0.006048,0.005792,0.005664,0.080544,0.005472
+1497,1417.3,0.705566,0.317536,0.005408,0.199488,0.004224,0.005568,0.004544,0.006144,0.006144,0.081088,0.004928
+1498,1271.26,0.786621,0.31184,0.00464,0.200704,0.004256,0.005568,0.004512,0.006144,0.006048,0.074944,0.005024
+1499,1498.99,0.667114,0.313056,0.005536,0.198912,0.00448,0.005792,0.004448,0.006112,0.006144,0.075776,0.005856
+1500,1205.59,0.829468,0.309344,0.005472,0.195232,0.00544,0.0048,0.005984,0.005792,0.005728,0.076256,0.00464
+1501,1428.17,0.700195,0.30832,0.00544,0.195232,0.004224,0.00544,0.0048,0.005792,0.005728,0.076288,0.005376
+1502,1299.49,0.769531,0.308128,0.004992,0.195648,0.004896,0.004256,0.005728,0.005792,0.004896,0.07728,0.00464
+1503,765.536,1.30627,0.333728,0.00544,0.21968,0.004384,0.005344,0.004896,0.006144,0.00608,0.07584,0.00592
+1504,813.263,1.22961,0.33584,0.00672,0.221184,0.005728,0.004512,0.006144,0.005792,0.006496,0.073728,0.005536
+1505,1493.8,0.669434,0.335712,0.006144,0.222688,0.00464,0.004096,0.00608,0.005824,0.0064,0.073856,0.005984
+1506,1488.37,0.671875,0.313344,0.005536,0.202368,0.004608,0.004576,0.005568,0.005728,0.005088,0.07504,0.004832
+1507,1352.26,0.739502,0.311296,0.005728,0.199104,0.00544,0.004768,0.005728,0.005728,0.004928,0.0752,0.004672
+1508,1061.69,0.941895,0.30768,0.004576,0.196608,0.005184,0.0048,0.004352,0.006144,0.006016,0.074944,0.005056
+1509,1484.06,0.673828,0.313504,0.005408,0.200832,0.004832,0.004128,0.005632,0.005824,0.004928,0.075776,0.006144
+1510,1334.2,0.749512,0.3072,0.006144,0.19456,0.005824,0.004416,0.00576,0.00576,0.004896,0.075008,0.004832
+1511,1491.35,0.670532,0.31344,0.004544,0.200736,0.005184,0.004608,0.004512,0.006144,0.006144,0.075776,0.005792
+1512,1324.71,0.754883,0.56336,0.005024,0.429344,0.025152,0.004256,0.005696,0.00592,0.004896,0.077664,0.005408
+1513,804.083,1.24365,0.318848,0.005792,0.205152,0.005632,0.004608,0.005248,0.004992,0.006144,0.075776,0.005504
+1514,1422.47,0.703003,0.31024,0.005056,0.196352,0.004352,0.00592,0.005856,0.005728,0.005056,0.075744,0.006176
+1515,1505.33,0.664307,0.31264,0.005888,0.198304,0.004704,0.004096,0.005888,0.00576,0.004896,0.077664,0.00544
+1516,1369.44,0.730225,0.309248,0.005472,0.195232,0.004384,0.005504,0.00448,0.006112,0.00608,0.07584,0.006144
+1517,958.353,1.04346,0.314848,0.006144,0.200096,0.004736,0.005152,0.005056,0.00592,0.005728,0.076224,0.005792
+1518,1371.05,0.72937,0.309664,0.004672,0.196192,0.004512,0.005664,0.004576,0.006144,0.00608,0.07584,0.005984
+1519,1478.97,0.676147,0.311296,0.005728,0.198592,0.004576,0.004096,0.005952,0.005632,0.004832,0.07712,0.004768
+1520,1288.86,0.775879,0.549376,0.004608,0.435712,0.006272,0.00448,0.005568,0.005888,0.004928,0.075776,0.006144
+1521,845.844,1.18225,0.317792,0.00448,0.204768,0.00528,0.0048,0.004256,0.006144,0.006144,0.0768,0.00512
+1522,1100.63,0.908569,0.31744,0.005408,0.204512,0.004864,0.004352,0.005664,0.005792,0.004928,0.075776,0.006144
+1523,1734.49,0.576538,0.31744,0.005536,0.20336,0.004224,0.005536,0.004576,0.006144,0.006112,0.077056,0.004896
+1524,1316.83,0.759399,0.317248,0.006144,0.196608,0.004096,0.005504,0.004768,0.006016,0.005696,0.082464,0.005952
+1525,1346.04,0.74292,0.497664,0.00592,0.376832,0.00432,0.005408,0.004832,0.006112,0.005696,0.083424,0.00512
+1526,1071.55,0.933228,0.310688,0.005536,0.195168,0.00528,0.004544,0.004608,0.006048,0.006144,0.077824,0.005536
+1527,1466.79,0.681763,0.311904,0.004704,0.198592,0.00416,0.005792,0.004448,0.006144,0.006144,0.075776,0.006144
+1528,1355.84,0.737549,0.319488,0.00544,0.199392,0.005376,0.004832,0.005184,0.005088,0.006144,0.08192,0.006112
+1529,623.25,1.60449,0.331072,0.00752,0.211488,0.004384,0.005248,0.004992,0.00608,0.00544,0.080512,0.005408
+1530,1371.73,0.729004,0.31808,0.004736,0.200704,0.005824,0.004416,0.0056,0.00464,0.006144,0.08112,0.004896
+1531,1451.97,0.688721,0.31744,0.006144,0.198656,0.005824,0.004416,0.005536,0.00576,0.005088,0.080928,0.005088
+1532,712.72,1.40308,0.315488,0.00544,0.196448,0.004864,0.004352,0.005632,0.005792,0.00496,0.08192,0.00608
+1533,1350.26,0.740601,0.319936,0.004544,0.200608,0.005568,0.004768,0.004096,0.006144,0.006144,0.081952,0.006112
+1534,1415.1,0.706665,0.31408,0.004832,0.195744,0.004896,0.005312,0.004992,0.006112,0.005792,0.081504,0.004896
+1535,1452.74,0.688354,0.317696,0.005408,0.199616,0.004096,0.005696,0.004544,0.006144,0.005888,0.081792,0.004512
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..820d881
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_32,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1261.76,0.836765,0.328052,0.00583206,0.223245,0.005779,0.00537884,0.00557728,0.006062,0.00602628,0.0645383,0.00561328
+max_1024,1771.24,2.30725,0.626976,0.028768,0.51424,0.047104,0.029824,0.022976,0.017888,0.027168,0.103904,0.028672
+min_1024,433.416,0.564575,0.277248,0.004352,0.191968,0.004096,0.004096,0.004096,0.004224,0.00464,0.04304,0.004352
+512,992.609,1.00745,0.289728,0.005056,0.2048,0.006144,0.005376,0.00592,0.005088,0.006144,0.046688,0.004512
+513,1643,0.608643,0.291648,0.004928,0.206848,0.005312,0.004928,0.006176,0.00592,0.006336,0.046272,0.004928
+514,719.101,1.39062,0.297376,0.007744,0.20912,0.004736,0.00576,0.004608,0.00752,0.006048,0.045696,0.006144
+515,1649.62,0.606201,0.464512,0.006144,0.37856,0.004576,0.005984,0.005408,0.004832,0.006144,0.047104,0.00576
+516,1061.97,0.94165,0.28032,0.006144,0.195904,0.0048,0.005792,0.004608,0.005984,0.006144,0.045056,0.005888
+517,1650.28,0.605957,0.287392,0.004768,0.200704,0.006144,0.005408,0.004832,0.006144,0.006144,0.047104,0.006144
+518,1341.63,0.745361,0.280224,0.00576,0.196064,0.005024,0.0056,0.00464,0.006144,0.006144,0.045056,0.005792
+519,1575.08,0.634888,0.279552,0.00512,0.19616,0.004544,0.006144,0.005856,0.005792,0.005792,0.044,0.006144
+520,1274.03,0.784912,0.284544,0.005536,0.20144,0.004224,0.0056,0.00464,0.006144,0.006144,0.045056,0.00576
+521,1633.5,0.612183,0.287008,0.004704,0.20272,0.005504,0.004736,0.00576,0.00576,0.0064,0.045568,0.005856
+522,1356.97,0.736938,0.284224,0.005856,0.198944,0.006112,0.005216,0.005056,0.00592,0.005792,0.045632,0.005696
+523,762.188,1.31201,0.297248,0.007776,0.210688,0.005056,0.0056,0.00464,0.006144,0.006144,0.046112,0.005088
+524,1357.64,0.736572,0.467328,0.004512,0.37872,0.005408,0.004992,0.005632,0.006112,0.005984,0.049856,0.006112
+525,1195.04,0.836792,0.2872,0.005568,0.19968,0.00544,0.0048,0.006144,0.006144,0.006144,0.048608,0.004672
+526,1459.47,0.685181,0.284704,0.005568,0.195168,0.005824,0.004416,0.006144,0.006144,0.006016,0.050752,0.004672
+527,1412.41,0.708008,0.284672,0.005856,0.194848,0.00544,0.0048,0.005856,0.005856,0.00576,0.051136,0.00512
+528,1368.98,0.730469,0.284704,0.004992,0.19456,0.005984,0.004256,0.006144,0.006048,0.00576,0.051424,0.005536
+529,1529.21,0.653931,0.284992,0.004704,0.196512,0.006144,0.00528,0.004992,0.006112,0.006016,0.04928,0.005952
+530,1252.22,0.798584,0.290816,0.006048,0.200832,0.005472,0.004736,0.005888,0.005888,0.005824,0.050016,0.006112
+531,900.121,1.11096,0.287872,0.005728,0.200096,0.00512,0.005408,0.004832,0.006176,0.006016,0.049024,0.005472
+532,1123.27,0.890259,0.29088,0.007488,0.203456,0.005408,0.004832,0.005792,0.005856,0.0064,0.04704,0.004608
+533,1236.53,0.808716,0.284736,0.0056,0.199136,0.00528,0.005088,0.005952,0.005952,0.005888,0.046784,0.005056
+534,1503.12,0.665283,0.282624,0.006144,0.196096,0.004608,0.006144,0.00576,0.005856,0.004864,0.047008,0.006144
+535,1396.28,0.716187,0.283904,0.006144,0.198656,0.0056,0.005856,0.00496,0.006112,0.006112,0.04496,0.005504
+536,1401.54,0.713501,0.282624,0.005824,0.198304,0.004768,0.005728,0.005568,0.005088,0.006176,0.045024,0.006144
+537,1574.48,0.635132,0.282944,0.0056,0.198912,0.004704,0.006016,0.005408,0.00496,0.006144,0.04624,0.00496
+538,1463.64,0.683228,0.284704,0.00608,0.194624,0.005824,0.005888,0.004672,0.006144,0.006144,0.050336,0.004992
+539,1337.91,0.747437,0.294656,0.005856,0.20304,0.005312,0.004928,0.005632,0.00608,0.005728,0.052192,0.005888
+540,1212.37,0.824829,0.530432,0.005696,0.436672,0.007872,0.004416,0.006144,0.00592,0.00576,0.053344,0.004608
+541,940.744,1.06299,0.290848,0.006144,0.199936,0.004864,0.005632,0.00464,0.006112,0.006144,0.052768,0.004608
+542,1167.28,0.856689,0.2992,0.005568,0.209216,0.004768,0.005728,0.004576,0.00608,0.006144,0.0512,0.00592
+543,1318.1,0.758667,0.282208,0.005568,0.195072,0.00528,0.00512,0.005344,0.004896,0.006144,0.049152,0.005632
+544,1551.81,0.644409,0.282432,0.006144,0.19456,0.00592,0.00432,0.006144,0.006016,0.005728,0.047648,0.005952
+545,1561.87,0.640259,0.287936,0.00608,0.198048,0.004768,0.005728,0.005664,0.005152,0.005984,0.051008,0.005504
+546,1451.97,0.688721,0.284704,0.004992,0.195712,0.004992,0.005504,0.004736,0.006144,0.005792,0.051328,0.005504
+547,1299.9,0.769287,0.28624,0.005984,0.194752,0.005728,0.00448,0.006144,0.006144,0.00576,0.051584,0.005664
+548,1434.17,0.697266,0.290752,0.004896,0.200704,0.005664,0.004576,0.006048,0.006048,0.006016,0.051296,0.005504
+549,1311.14,0.762695,0.57168,0.004864,0.45392,0.033024,0.004576,0.006048,0.006048,0.005984,0.051552,0.005664
+550,831.675,1.20239,0.285472,0.004896,0.196608,0.004096,0.006144,0.006176,0.005952,0.005856,0.05072,0.005024
+551,663.212,1.50781,0.368864,0.0056,0.256768,0.006144,0.02048,0.006144,0.006144,0.005984,0.055456,0.006144
+552,1499.27,0.666992,0.285536,0.00496,0.19664,0.006112,0.00528,0.00496,0.006144,0.006144,0.050272,0.005024
+553,1581.77,0.632202,0.29088,0.00464,0.202304,0.004544,0.006144,0.005696,0.005792,0.004896,0.0512,0.005664
+554,1339.66,0.74646,0.282624,0.0056,0.195104,0.005984,0.00544,0.00496,0.006144,0.005888,0.04736,0.006144
+555,1535.52,0.651245,0.286816,0.005568,0.198432,0.00496,0.006112,0.005472,0.004832,0.006112,0.050464,0.004864
+556,1324.92,0.754761,0.292896,0.005664,0.203232,0.005536,0.004704,0.00576,0.005984,0.006016,0.049824,0.006176
+557,1420.99,0.703735,0.526688,0.004704,0.42944,0.014912,0.005888,0.005408,0.005216,0.006048,0.04912,0.005952
+558,879.536,1.13696,0.290048,0.006144,0.200704,0.00608,0.005248,0.006464,0.004736,0.006144,0.049024,0.005504
+559,1360.12,0.735229,0.462144,0.006144,0.376832,0.005344,0.004896,0.005728,0.00592,0.005856,0.04592,0.005504
+560,1112.59,0.898804,0.282272,0.005568,0.198624,0.005056,0.006144,0.006016,0.006016,0.00576,0.043392,0.005696
+561,1548,0.645996,0.282624,0.006144,0.195936,0.004768,0.005696,0.00464,0.006048,0.006144,0.047136,0.006112
+562,1414.12,0.707153,0.282752,0.005568,0.194848,0.004512,0.005984,0.004288,0.006112,0.006144,0.050208,0.005088
+563,1517.04,0.65918,0.285376,0.0048,0.198592,0.00528,0.005024,0.005536,0.005856,0.004992,0.049152,0.006144
+564,1351.15,0.740112,0.280224,0.00576,0.196992,0.005376,0.005984,0.005056,0.006112,0.005952,0.043232,0.00576
+565,1603.76,0.623535,0.285056,0.004832,0.201728,0.005088,0.005376,0.004864,0.006144,0.006048,0.045152,0.005824
+566,1201.17,0.83252,0.282208,0.005824,0.196928,0.005824,0.004416,0.006144,0.005984,0.00576,0.0456,0.005728
+567,735.434,1.35974,0.282432,0.008,0.195936,0.00496,0.005536,0.004704,0.006144,0.005984,0.045248,0.00592
+568,1308,0.764526,0.27776,0.00592,0.192736,0.006144,0.005312,0.004928,0.006144,0.00576,0.045312,0.005504
+569,1608.17,0.621826,0.277248,0.004832,0.19584,0.004864,0.006144,0.005536,0.005824,0.005024,0.04432,0.004864
+570,693.649,1.44165,0.297696,0.004864,0.216064,0.005088,0.005408,0.004832,0.006144,0.006112,0.04304,0.006144
+571,1089.8,0.917603,0.331808,0.005568,0.241376,0.004992,0.005312,0.01312,0.006144,0.006144,0.044352,0.0048
+572,1134.31,0.881592,0.289184,0.0056,0.206944,0.00496,0.005536,0.005952,0.00592,0.00512,0.044256,0.004896
+573,1402.74,0.712891,0.292288,0.005536,0.20912,0.004864,0.005632,0.004608,0.00736,0.00608,0.043584,0.005504
+574,757.607,1.31995,0.292768,0.007712,0.207424,0.004512,0.005952,0.005408,0.006144,0.005024,0.045056,0.005536
+575,1240.27,0.806274,0.460416,0.004352,0.37888,0.00608,0.005216,0.005088,0.006144,0.005792,0.043328,0.005536
+576,1380.98,0.724121,0.288288,0.006144,0.2048,0.006112,0.005216,0.005056,0.006144,0.005856,0.043296,0.005664
+577,1424.94,0.701782,0.282656,0.006176,0.19824,0.00448,0.006144,0.006144,0.006176,0.006112,0.04448,0.004704
+578,1417.79,0.705322,0.282656,0.005568,0.195008,0.004224,0.006016,0.00544,0.004928,0.006144,0.050208,0.00512
+579,1565.15,0.638916,0.283776,0.006144,0.19456,0.0056,0.004672,0.00592,0.005792,0.00576,0.049824,0.005504
+580,1396.76,0.715942,0.284416,0.005792,0.19504,0.006048,0.004192,0.006144,0.00592,0.00576,0.04976,0.00576
+581,1287.04,0.776978,0.287264,0.004672,0.198272,0.004448,0.006048,0.005664,0.006048,0.006752,0.05024,0.00512
+582,1487.29,0.672363,0.53664,0.0048,0.425792,0.026816,0.005984,0.005408,0.005024,0.006112,0.0512,0.005504
+583,800.547,1.24915,0.292288,0.005632,0.202432,0.004928,0.005536,0.00624,0.005824,0.004928,0.051072,0.005696
+584,1689.07,0.592041,0.467328,0.004512,0.37888,0.00544,0.0048,0.005856,0.005856,0.00576,0.050112,0.006112
+585,1105.23,0.904785,0.284128,0.005952,0.195968,0.004928,0.005472,0.004768,0.006144,0.00592,0.049376,0.0056
+586,1552.4,0.644165,0.282144,0.006144,0.196608,0.005856,0.004384,0.006144,0.005952,0.005728,0.045664,0.005664
+587,1386.83,0.721069,0.279264,0.00496,0.19456,0.005856,0.004384,0.006144,0.006048,0.005856,0.04544,0.006016
+588,1534.08,0.651855,0.280576,0.005696,0.195008,0.006144,0.005632,0.004608,0.006144,0.006144,0.046432,0.004768
+589,1026.31,0.974365,0.29696,0.006016,0.211072,0.005664,0.004576,0.006048,0.005824,0.0064,0.046304,0.005056
+590,1216.15,0.822266,0.317568,0.004896,0.233472,0.005824,0.004416,0.006144,0.005856,0.00576,0.045408,0.005792
+591,1254.71,0.796997,0.53248,0.005536,0.422496,0.028704,0.005248,0.00496,0.006144,0.006112,0.04816,0.00512
+592,828.982,1.2063,0.320448,0.005024,0.233472,0.005792,0.004448,0.006144,0.006144,0.006016,0.048352,0.005056
+593,1100.19,0.908936,0.295072,0.004896,0.208,0.004992,0.005504,0.004736,0.007168,0.00624,0.048,0.005536
+594,1392.96,0.717896,0.289472,0.0048,0.198656,0.00528,0.00496,0.006144,0.006112,0.00576,0.051616,0.006144
+595,1480.84,0.675293,0.314272,0.005024,0.224576,0.0048,0.005664,0.004608,0.006112,0.006176,0.052704,0.004608
+596,1405.39,0.711548,0.290304,0.005792,0.19696,0.006144,0.005344,0.004896,0.006144,0.006144,0.053248,0.005632
+597,1411.2,0.708618,0.285152,0.004704,0.199872,0.0048,0.005696,0.004608,0.006112,0.006112,0.048128,0.00512
+598,1312.61,0.761841,0.296864,0.006144,0.2048,0.006016,0.004224,0.006144,0.006016,0.005568,0.051904,0.006048
+599,1566.05,0.63855,0.291232,0.005568,0.199648,0.006112,0.00528,0.005024,0.006112,0.006144,0.052992,0.004352
+600,651.866,1.53406,0.309696,0.00688,0.210112,0.004928,0.005568,0.004672,0.007296,0.004992,0.059392,0.005856
+601,1297.23,0.770874,0.476032,0.005024,0.378848,0.005344,0.004896,0.005728,0.005952,0.005792,0.058304,0.006144
+602,1169.12,0.855347,0.296416,0.0056,0.198208,0.005088,0.006144,0.005856,0.005632,0.004896,0.059392,0.0056
+603,1489.45,0.671387,0.294912,0.006144,0.196608,0.006144,0.00528,0.00496,0.006112,0.006176,0.058976,0.004512
+604,1412.17,0.70813,0.288672,0.005568,0.195104,0.00448,0.0072,0.005088,0.006144,0.006144,0.053248,0.005696
+605,922.315,1.08423,0.305024,0.006048,0.212608,0.004576,0.005888,0.00544,0.005056,0.006144,0.053248,0.006016
+606,1523.53,0.656372,0.299552,0.004672,0.202688,0.005472,0.004768,0.006048,0.00624,0.00608,0.057408,0.006176
+607,1168.95,0.855469,0.321088,0.005568,0.228256,0.006144,0.005248,0.004992,0.006144,0.006144,0.053056,0.005536
+608,789.514,1.2666,0.302848,0.007904,0.208288,0.004992,0.005504,0.004736,0.006144,0.006144,0.053248,0.005888
+609,1552.99,0.643921,0.47104,0.006144,0.37888,0.005792,0.004448,0.006144,0.00592,0.005792,0.051776,0.006144
+610,1113.5,0.898071,0.289088,0.005568,0.19664,0.00496,0.005728,0.006176,0.005888,0.005824,0.05216,0.006144
+611,1577.2,0.634033,0.286144,0.006176,0.195776,0.004896,0.0056,0.00464,0.005888,0.005792,0.051808,0.005568
+612,1355.62,0.737671,0.281824,0.006144,0.196128,0.004576,0.00592,0.005472,0.004992,0.006144,0.046944,0.005504
+613,1533.8,0.651978,0.291968,0.006176,0.199872,0.004896,0.0056,0.00464,0.006144,0.006176,0.05296,0.005504
+614,1329.87,0.751953,0.283168,0.004704,0.194464,0.006048,0.004288,0.006048,0.006048,0.005824,0.051168,0.004576
+615,1568.15,0.637695,0.291872,0.005696,0.200416,0.004832,0.006144,0.005504,0.006688,0.006016,0.05104,0.005536
+616,1234.29,0.810181,0.536288,0.006144,0.432128,0.024576,0.005568,0.004672,0.006144,0.006144,0.045056,0.005856
+617,915.716,1.09204,0.28672,0.006144,0.199936,0.004864,0.005472,0.004768,0.006144,0.006112,0.047136,0.006144
+618,1368.07,0.730957,0.467264,0.005568,0.377536,0.005376,0.005056,0.0056,0.00576,0.005024,0.0512,0.006144
+619,1157.88,0.863647,0.28544,0.004864,0.195648,0.005056,0.005344,0.004896,0.006144,0.006144,0.051232,0.006112
+620,1241.4,0.805542,0.284672,0.005568,0.195136,0.00592,0.005376,0.005088,0.006112,0.006176,0.05072,0.004576
+621,1659.98,0.602417,0.282656,0.005792,0.192864,0.006112,0.005248,0.005024,0.006144,0.005856,0.05072,0.004896
+622,1390.36,0.719238,0.288768,0.00576,0.194976,0.005568,0.00464,0.00592,0.005824,0.005728,0.055616,0.004736
+623,1561.87,0.640259,0.289152,0.005536,0.194656,0.004992,0.005472,0.004768,0.006176,0.006112,0.055296,0.006144
+624,1127.91,0.886597,0.294464,0.004704,0.200576,0.005472,0.004768,0.005824,0.006432,0.00576,0.055456,0.005472
+625,1418.77,0.704834,0.53728,0.004768,0.438272,0.011488,0.004896,0.005696,0.005856,0.004832,0.05648,0.004992
+626,914.082,1.09399,0.290848,0.0056,0.196896,0.00464,0.005824,0.004608,0.006016,0.00608,0.055296,0.005888
+627,1174.99,0.851074,0.284672,0.005408,0.196704,0.004736,0.00576,0.00448,0.006144,0.006144,0.050688,0.004608
+628,1451.71,0.688843,0.281152,0.004704,0.193792,0.0048,0.005696,0.004544,0.006144,0.006144,0.05072,0.004608
+629,1425.94,0.701294,0.28576,0.005088,0.196128,0.004576,0.006144,0.005888,0.005856,0.005824,0.051648,0.004608
+630,1373.81,0.727905,0.27856,0.006144,0.192512,0.005664,0.004576,0.005888,0.005856,0.005824,0.04592,0.006176
+631,1482.18,0.674683,0.286144,0.005568,0.19552,0.006144,0.005888,0.00544,0.005184,0.006016,0.050912,0.005472
+632,1433.67,0.69751,0.2792,0.004768,0.192512,0.006144,0.005696,0.004608,0.00608,0.006144,0.048512,0.004736
+633,1380.52,0.724365,0.281568,0.005088,0.199872,0.004896,0.005568,0.004672,0.006144,0.00608,0.044512,0.004736
+634,1323.64,0.755493,0.564736,0.005888,0.422144,0.04096,0.022112,0.004512,0.006144,0.006144,0.0512,0.005632
+635,888.503,1.12549,0.282656,0.006144,0.19632,0.004384,0.00608,0.005408,0.004896,0.006176,0.047072,0.006176
+636,1179.72,0.847656,0.283808,0.006176,0.196576,0.005664,0.004576,0.00608,0.005824,0.00576,0.047648,0.005504
+637,1377.96,0.725708,0.284928,0.005536,0.192896,0.004576,0.00592,0.00432,0.006144,0.005952,0.054528,0.005056
+638,1582.38,0.631958,0.288768,0.005632,0.196416,0.0048,0.005152,0.00512,0.00608,0.00576,0.054784,0.005024
+639,1438.45,0.69519,0.281312,0.004896,0.192512,0.00608,0.005472,0.004832,0.006144,0.006112,0.049184,0.00608
+640,1453.77,0.687866,0.278976,0.005024,0.192512,0.006112,0.005216,0.005056,0.006144,0.005952,0.047296,0.005664
+641,1413.14,0.707642,0.278048,0.006144,0.192448,0.005248,0.005056,0.005408,0.004832,0.006144,0.047104,0.005664
+642,1435.18,0.696777,0.287072,0.004768,0.198656,0.00592,0.00432,0.006144,0.007744,0.006592,0.047104,0.005824
+643,1313.87,0.761108,0.527296,0.005056,0.438272,0.008192,0.005248,0.004992,0.006144,0.006144,0.048608,0.00464
+644,855.651,1.1687,0.282176,0.006176,0.196,0.004672,0.005824,0.004608,0.005952,0.006144,0.047104,0.005696
+645,630.542,1.58594,0.48304,0.005568,0.39424,0.005376,0.004864,0.005856,0.005856,0.005824,0.049952,0.005504
+646,1137.46,0.87915,0.341248,0.006176,0.239584,0.006016,0.004224,0.006176,0.006112,0.016384,0.051104,0.005472
+647,1658.3,0.603027,0.290976,0.00496,0.202656,0.005312,0.005024,0.006144,0.006144,0.006144,0.049056,0.005536
+648,1129.46,0.885376,0.295232,0.005568,0.204704,0.005088,0.005792,0.004608,0.005984,0.006176,0.052256,0.005056
+649,1710.59,0.584595,0.289248,0.004704,0.198112,0.004512,0.006144,0.006176,0.00736,0.006688,0.050624,0.004928
+650,1263.03,0.791748,0.303072,0.005632,0.21344,0.004608,0.005888,0.005408,0.005088,0.006144,0.0512,0.005664
+651,1178.71,0.848389,0.5024,0.024768,0.39312,0.00464,0.005888,0.00544,0.005056,0.006144,0.052256,0.005088
+652,1081.59,0.924561,0.321568,0.0056,0.227872,0.006144,0.00528,0.00496,0.006144,0.005792,0.054976,0.0048
+653,1253.94,0.797485,0.291136,0.00496,0.198304,0.004448,0.006016,0.005408,0.006048,0.005088,0.054944,0.00592
+654,1378.66,0.725342,0.287584,0.004864,0.195712,0.004992,0.005472,0.004768,0.006144,0.006144,0.054912,0.004576
+655,1540.14,0.649292,0.290528,0.005632,0.196768,0.004448,0.006048,0.005472,0.006016,0.004992,0.055296,0.005856
+656,1101.08,0.908203,0.310912,0.006144,0.212736,0.004352,0.006144,0.005472,0.005856,0.005088,0.05936,0.00576
+657,1118.06,0.894409,0.328608,0.005024,0.22464,0.004736,0.005728,0.004608,0.017568,0.004896,0.055328,0.00608
+658,1225.8,0.815796,0.295552,0.004736,0.200704,0.006144,0.005536,0.006144,0.00592,0.004928,0.055296,0.006144
+659,1640.7,0.609497,0.294624,0.0056,0.200704,0.00464,0.005856,0.005408,0.00512,0.006176,0.055264,0.005856
+660,674.294,1.48303,0.333824,0.008192,0.226752,0.004672,0.005824,0.00608,0.005792,0.004832,0.053248,0.018432
+661,1244.04,0.803833,0.294912,0.006048,0.200064,0.004832,0.005728,0.004608,0.00608,0.006112,0.05664,0.0048
+662,1303.21,0.767334,0.288768,0.00576,0.194656,0.004384,0.006112,0.005376,0.00608,0.004992,0.056736,0.004672
+663,712.348,1.40381,0.313408,0.00512,0.217088,0.006016,0.005792,0.004576,0.006144,0.006144,0.057024,0.005504
+664,1519.01,0.658325,0.301056,0.006144,0.208096,0.004896,0.0056,0.00464,0.006144,0.005984,0.05488,0.004672
+665,1493.8,0.669434,0.28928,0.004704,0.19856,0.005568,0.004672,0.005632,0.005792,0.00496,0.053248,0.006144
+666,1415.34,0.706543,0.294912,0.006144,0.198656,0.006144,0.005216,0.006752,0.006176,0.005856,0.055264,0.004704
+667,1351.37,0.73999,0.563936,0.0048,0.41472,0.029696,0.029824,0.013184,0.006048,0.006016,0.055008,0.00464
+668,792.723,1.26147,0.310016,0.005152,0.199968,0.0048,0.005664,0.006528,0.005984,0.022112,0.05392,0.005888
+669,1232.44,0.811401,0.28976,0.005088,0.19456,0.006144,0.005344,0.004896,0.006144,0.005888,0.055552,0.006144
+670,1438.71,0.695068,0.285696,0.005152,0.194208,0.004416,0.006176,0.005856,0.005824,0.005792,0.053728,0.004544
+671,1526.93,0.654907,0.288896,0.004992,0.196096,0.004608,0.006144,0.005792,0.005888,0.005888,0.053952,0.005536
+672,1405.39,0.711548,0.28672,0.006144,0.19456,0.005312,0.00496,0.005504,0.005984,0.004864,0.054592,0.0048
+673,1342.95,0.744629,0.284832,0.004864,0.194592,0.006048,0.005216,0.005088,0.006176,0.006112,0.0512,0.005536
+674,1345.38,0.743286,0.290816,0.006144,0.197952,0.0048,0.00576,0.004576,0.00608,0.006112,0.053248,0.006144
+675,1629.28,0.61377,0.291488,0.00496,0.200544,0.005472,0.004928,0.005696,0.00592,0.005824,0.052192,0.005952
+676,620.465,1.61169,0.301216,0.00768,0.207264,0.00432,0.006144,0.005408,0.006528,0.006048,0.053056,0.004768
+677,1333.98,0.749634,0.47312,0.005664,0.381408,0.0056,0.00464,0.006144,0.005984,0.005888,0.053024,0.004768
+678,1195.04,0.836792,0.285568,0.00496,0.194432,0.00528,0.005088,0.006144,0.006144,0.006016,0.052896,0.004608
+679,1525.23,0.65564,0.285984,0.005568,0.194592,0.004768,0.005568,0.004672,0.006144,0.006144,0.053024,0.005504
+680,770.432,1.29797,0.284672,0.006144,0.193984,0.004672,0.005792,0.004544,0.006048,0.006144,0.052384,0.00496
+681,911.945,1.09656,0.284704,0.004736,0.194016,0.00464,0.005856,0.005408,0.00512,0.006144,0.053248,0.005536
+682,1340.31,0.746094,0.304352,0.006144,0.21264,0.004448,0.006016,0.005664,0.005792,0.005088,0.053056,0.005504
+683,1280.6,0.780884,0.560288,0.006048,0.428128,0.032608,0.004384,0.006016,0.017888,0.0064,0.053216,0.0056
+684,733.721,1.36292,0.308864,0.00464,0.219168,0.005312,0.004896,0.00576,0.005792,0.004832,0.052928,0.005536
+685,925.127,1.08093,0.356352,0.005568,0.239296,0.004992,0.005472,0.014272,0.006432,0.006016,0.06816,0.006144
+686,1419.76,0.704346,0.297344,0.004704,0.206368,0.004416,0.006048,0.006208,0.006016,0.005792,0.051712,0.00608
+687,1470.74,0.679932,0.308896,0.005536,0.217568,0.00464,0.005856,0.00576,0.005952,0.00496,0.053024,0.0056
+688,1299.7,0.769409,0.29408,0.005568,0.203392,0.005376,0.004864,0.005728,0.005856,0.0048,0.052992,0.005504
+689,1326,0.75415,0.312928,0.006144,0.220608,0.004672,0.005792,0.004608,0.007232,0.0064,0.051744,0.005728
+690,1599.38,0.625244,0.288768,0.005888,0.198912,0.005952,0.004288,0.006144,0.005888,0.005824,0.051136,0.004736
+691,1202.76,0.831421,0.527936,0.005568,0.434752,0.008192,0.00544,0.0048,0.006144,0.006144,0.0512,0.005696
+692,729.995,1.36987,0.294912,0.006144,0.205888,0.005056,0.005408,0.004864,0.006112,0.006144,0.050592,0.004704
+693,1145.57,0.872925,0.292896,0.00544,0.202784,0.00496,0.005536,0.00608,0.005888,0.005024,0.0512,0.005984
+694,1425.94,0.701294,0.290848,0.006144,0.200704,0.005568,0.005824,0.004992,0.006144,0.006048,0.050432,0.004992
+695,1528.64,0.654175,0.284896,0.005568,0.19696,0.004544,0.00592,0.006208,0.00576,0.00576,0.048032,0.006144
+696,1379.36,0.724976,0.284256,0.005696,0.19504,0.005856,0.004352,0.006144,0.00608,0.005984,0.049376,0.005728
+697,1503.95,0.664917,0.284896,0.005536,0.197024,0.004512,0.005824,0.004448,0.006144,0.006048,0.0504,0.00496
+698,1077.47,0.928101,0.285376,0.0048,0.19456,0.006144,0.005344,0.004928,0.006112,0.006144,0.052608,0.004736
+699,1771.24,0.564575,0.290368,0.005824,0.20016,0.00496,0.004096,0.006176,0.006112,0.006144,0.0512,0.005696
+700,676.466,1.47827,0.491008,0.014784,0.390912,0.005312,0.00512,0.005536,0.005984,0.0064,0.051456,0.005504
+701,1313.87,0.761108,0.468288,0.005664,0.37888,0.004576,0.005952,0.00544,0.004992,0.006144,0.051168,0.005472
+702,1183.13,0.845215,0.31744,0.006144,0.227232,0.00528,0.005056,0.0056,0.00464,0.006144,0.052512,0.004832
+703,1386.13,0.721436,0.29696,0.006016,0.204928,0.005792,0.004448,0.006176,0.006112,0.006144,0.052416,0.004928
+704,1326.21,0.754028,0.296704,0.006144,0.203808,0.005088,0.005376,0.004864,0.006144,0.006144,0.053248,0.005888
+705,1313.87,0.761108,0.289216,0.005024,0.196384,0.00432,0.006144,0.005472,0.006592,0.006016,0.0536,0.005664
+706,1730.1,0.578003,0.28944,0.004768,0.200704,0.005312,0.004928,0.00576,0.00608,0.005952,0.049792,0.006144
+707,1382.85,0.723145,0.294912,0.00592,0.204576,0.005824,0.004864,0.005824,0.006048,0.006016,0.049696,0.006144
+708,1311.14,0.762695,0.523264,0.006144,0.425824,0.016544,0.005536,0.004736,0.006112,0.006144,0.04672,0.005504
+709,918.489,1.08875,0.29024,0.006176,0.198624,0.005888,0.004352,0.00608,0.005696,0.005792,0.052064,0.005568
+710,1395.57,0.716553,0.469056,0.005568,0.377376,0.00576,0.004576,0.005952,0.00576,0.00576,0.053664,0.00464
+711,1197.31,0.835205,0.291296,0.004704,0.198304,0.004416,0.007296,0.004992,0.006144,0.006048,0.053344,0.006048
+712,1411.93,0.708252,0.284128,0.005888,0.194656,0.005312,0.005088,0.006048,0.005888,0.005888,0.04976,0.0056
+713,1463.9,0.683105,0.282656,0.005536,0.1952,0.00592,0.00432,0.006144,0.005984,0.005664,0.0488,0.005088
+714,1358.54,0.736084,0.28672,0.006144,0.19456,0.00592,0.00432,0.006176,0.005728,0.005792,0.053184,0.004896
+715,1542.46,0.648315,0.286816,0.004864,0.196352,0.004352,0.005984,0.005408,0.005024,0.006144,0.053152,0.005536
+716,1314.93,0.760498,0.299008,0.00608,0.206912,0.005824,0.004544,0.006016,0.006176,0.006016,0.05248,0.00496
+717,1376.11,0.726685,0.530464,0.006176,0.428,0.018208,0.004384,0.00608,0.006144,0.006048,0.050816,0.004608
+718,864.317,1.15698,0.284064,0.005568,0.19696,0.00448,0.006048,0.00544,0.005984,0.005056,0.049056,0.005472
+719,872.046,1.14673,0.47104,0.006144,0.37888,0.005664,0.004576,0.006048,0.005824,0.005792,0.053568,0.004544
+720,1598.75,0.625488,0.290816,0.005952,0.19888,0.006112,0.005216,0.005024,0.006144,0.005792,0.051552,0.006144
+721,1263.81,0.79126,0.288832,0.005536,0.195424,0.005664,0.004576,0.006144,0.006176,0.006112,0.053248,0.005952
+722,1642.01,0.609009,0.2888,0.00608,0.194656,0.005792,0.004416,0.007616,0.005824,0.004992,0.054848,0.004576
+723,1456.1,0.686768,0.290176,0.006176,0.1984,0.00432,0.005984,0.00544,0.005984,0.00512,0.053248,0.005504
+724,1050.93,0.951538,0.28672,0.006144,0.19456,0.005856,0.006176,0.005952,0.005792,0.004896,0.052288,0.005056
+725,1649.29,0.606323,0.290912,0.005952,0.198944,0.005664,0.004576,0.005888,0.005856,0.005792,0.052096,0.006144
+726,723.739,1.38171,0.298912,0.008192,0.200704,0.005696,0.004544,0.006016,0.006272,0.00592,0.05552,0.006048
+727,1609.43,0.621338,0.47088,0.00496,0.3768,0.005312,0.00496,0.005664,0.005888,0.004832,0.05696,0.005504
+728,1147.5,0.87146,0.290816,0.006144,0.194048,0.004608,0.006144,0.006144,0.006144,0.005792,0.055648,0.006144
+729,1411.44,0.708496,0.286368,0.005536,0.194848,0.004832,0.005632,0.004608,0.006144,0.006144,0.05312,0.005504
+730,1372.65,0.728516,0.28528,0.004704,0.194528,0.005664,0.004576,0.006144,0.006144,0.005824,0.053152,0.004544
+731,1596.57,0.626343,0.28672,0.006144,0.196288,0.004416,0.00592,0.00544,0.005024,0.006144,0.0512,0.006144
+732,1440.22,0.694336,0.284416,0.006144,0.192512,0.006144,0.005888,0.005408,0.005184,0.006048,0.0512,0.005888
+733,1415.1,0.706665,0.28672,0.006144,0.196608,0.0056,0.00464,0.005984,0.005664,0.005824,0.051296,0.00496
+734,1256.06,0.796143,0.29488,0.006176,0.204224,0.00464,0.005856,0.004576,0.005952,0.006144,0.0512,0.006112
+735,736.691,1.35742,0.297024,0.00768,0.198592,0.004736,0.00576,0.004608,0.006016,0.006144,0.057344,0.006144
+736,1187.59,0.842041,0.2936,0.004832,0.198656,0.006048,0.005216,0.005152,0.006112,0.006016,0.056576,0.004992
+737,1358.99,0.73584,0.290048,0.005984,0.196416,0.004448,0.006048,0.005248,0.005088,0.0072,0.054112,0.005504
+738,955.224,1.04688,0.324,0.0048,0.231424,0.005472,0.004768,0.005856,0.005856,0.005856,0.054112,0.005856
+739,1235.97,0.809082,0.316256,0.004928,0.217088,0.005856,0.004384,0.006144,0.006144,0.006112,0.060896,0.004704
+740,1658.3,0.603027,0.2944,0.005568,0.19696,0.004672,0.005792,0.00448,0.006112,0.006144,0.059168,0.005504
+741,1242.34,0.804932,0.312096,0.004896,0.214464,0.004672,0.005792,0.004608,0.005984,0.006144,0.059392,0.006144
+742,1602.82,0.623901,0.297536,0.004704,0.200672,0.005472,0.004768,0.005952,0.005888,0.005888,0.059584,0.004608
+743,673.131,1.4856,0.304256,0.007968,0.200352,0.004672,0.005824,0.004448,0.006112,0.006144,0.063392,0.005344
+744,1078.32,0.927368,0.299008,0.006144,0.196608,0.005472,0.004768,0.005792,0.005664,0.004928,0.064992,0.00464
+745,1487.83,0.672119,0.29696,0.006144,0.193696,0.00496,0.005856,0.005536,0.004992,0.006144,0.063488,0.006144
+746,1536.96,0.650635,0.298336,0.005664,0.19504,0.005216,0.005024,0.006144,0.005856,0.005792,0.064096,0.005504
+747,1389.89,0.719482,0.305408,0.005568,0.203264,0.004416,0.005792,0.004576,0.006016,0.006144,0.064832,0.0048
+748,1396.28,0.716187,0.290272,0.006144,0.192512,0.005632,0.004608,0.006144,0.006144,0.00608,0.057408,0.0056
+749,1374.96,0.727295,0.290848,0.006144,0.193536,0.00512,0.005376,0.004864,0.006144,0.006144,0.058912,0.004608
+750,1358.32,0.736206,0.333536,0.006144,0.196608,0.0056,0.00464,0.022464,0.006208,0.006144,0.079808,0.00592
+751,1424.94,0.701782,0.545504,0.004768,0.435232,0.015328,0.005184,0.005056,0.006144,0.006048,0.063168,0.004576
+752,856.635,1.16736,0.296992,0.005568,0.19312,0.005984,0.005856,0.004576,0.006112,0.006144,0.064768,0.004864
+753,1183.47,0.844971,0.294912,0.006144,0.192512,0.005568,0.004672,0.005888,0.00624,0.006016,0.0632,0.004672
+754,1550.93,0.644775,0.295808,0.004992,0.194592,0.005888,0.00432,0.006144,0.006048,0.00576,0.063328,0.004736
+755,1437.95,0.695435,0.294912,0.006144,0.192512,0.005984,0.005664,0.004736,0.006144,0.006144,0.06144,0.006144
+756,1413.88,0.707275,0.295936,0.0056,0.19456,0.00464,0.005824,0.004416,0.006144,0.006144,0.063072,0.005536
+757,1358.09,0.736328,0.292928,0.005568,0.192896,0.004352,0.006144,0.005472,0.005856,0.005056,0.062528,0.005056
+758,855.383,1.16907,0.306848,0.005568,0.20704,0.004896,0.0056,0.00464,0.006144,0.006144,0.060512,0.006304
+759,1252.6,0.79834,0.334592,0.00624,0.23232,0.006048,0.004288,0.006048,0.006144,0.006144,0.06144,0.00592
+760,782.501,1.27795,0.312544,0.00768,0.205504,0.006112,0.005216,0.005088,0.006112,0.005728,0.065696,0.005408
+761,1317.68,0.758911,0.479232,0.006144,0.378784,0.005408,0.004928,0.005664,0.005824,0.004896,0.06144,0.006144
+762,1209.33,0.826904,0.29696,0.005824,0.196864,0.00528,0.005024,0.00608,0.00592,0.005792,0.060032,0.006144
+763,1409.26,0.709595,0.299072,0.005568,0.19728,0.0056,0.004608,0.005984,0.006048,0.005952,0.061888,0.006144
+764,1347.37,0.742188,0.291936,0.005568,0.195232,0.005728,0.004512,0.006144,0.006144,0.00576,0.057344,0.005504
+765,1380.05,0.724609,0.295392,0.004704,0.197792,0.004832,0.005664,0.004576,0.006176,0.006112,0.06064,0.004896
+766,1554.16,0.643433,0.295776,0.00496,0.196608,0.006112,0.005216,0.005056,0.006048,0.005792,0.061184,0.0048
+767,1257.41,0.795288,0.29856,0.005568,0.1976,0.005376,0.004896,0.006112,0.006176,0.005952,0.061408,0.005472
+768,1634.8,0.611694,0.292864,0.006144,0.197664,0.005088,0.005408,0.006112,0.004864,0.006144,0.056544,0.004896
+769,1248.21,0.801147,0.532448,0.0056,0.436672,0.006656,0.005984,0.00544,0.004896,0.006144,0.055296,0.00576
+770,788.375,1.26843,0.296064,0.00592,0.200256,0.004768,0.005728,0.004576,0.00608,0.006144,0.057088,0.005504
+771,1517.6,0.658936,0.2968,0.005984,0.202944,0.006016,0.004288,0.006048,0.005952,0.005952,0.053632,0.005984
+772,1305.5,0.765991,0.291584,0.004864,0.198688,0.00576,0.004448,0.006144,0.005888,0.00576,0.053888,0.006144
+773,1600.63,0.624756,0.292864,0.005792,0.199008,0.005312,0.004928,0.006144,0.005952,0.00576,0.055136,0.004832
+774,1385.42,0.721802,0.290816,0.006144,0.196608,0.005312,0.004928,0.00576,0.006048,0.00592,0.055072,0.005024
+775,1430.17,0.699219,0.292704,0.005984,0.19792,0.004992,0.00544,0.0048,0.006176,0.006112,0.055296,0.005984
+776,1350.92,0.740234,0.292864,0.0056,0.199136,0.00528,0.005024,0.005248,0.006016,0.00512,0.056736,0.004704
+777,824.145,1.21338,0.311616,0.005568,0.215936,0.006144,0.005888,0.006016,0.006304,0.005888,0.055104,0.004768
+778,946.833,1.05615,0.309536,0.00768,0.214912,0.004992,0.006112,0.005824,0.005856,0.005792,0.05376,0.004608
+779,1234.66,0.809937,0.294688,0.006144,0.198656,0.005728,0.004512,0.006112,0.005792,0.005728,0.056096,0.00592
+780,1390.12,0.71936,0.293856,0.005088,0.196608,0.006016,0.004224,0.006144,0.006144,0.00592,0.058656,0.005056
+781,1285.83,0.77771,0.327712,0.0056,0.219712,0.0056,0.004672,0.006112,0.005824,0.00576,0.068288,0.006144
+782,1189.31,0.84082,0.29744,0.004928,0.198304,0.004448,0.006016,0.005312,0.005056,0.007616,0.059968,0.005792
+783,1519.85,0.657959,0.294944,0.005568,0.1952,0.005568,0.00464,0.006112,0.005856,0.005792,0.061248,0.00496
+784,1308,0.764526,0.301472,0.005568,0.2016,0.00528,0.005056,0.006048,0.006112,0.006016,0.059648,0.006144
+785,1410.95,0.70874,0.612352,0.005632,0.481792,0.036352,0.004608,0.006144,0.006144,0.006144,0.059392,0.006144
+786,785.577,1.27295,0.30176,0.0048,0.204704,0.00528,0.005056,0.00544,0.005824,0.00512,0.060736,0.0048
+787,1082.45,0.923828,0.291968,0.005984,0.196416,0.004448,0.006016,0.005312,0.005152,0.006048,0.057088,0.005504
+788,1490.54,0.670898,0.288896,0.005568,0.195232,0.005376,0.004864,0.006016,0.006048,0.006016,0.054848,0.004928
+789,1438.96,0.694946,0.29424,0.006144,0.198656,0.005728,0.004512,0.006176,0.005888,0.005824,0.05584,0.005472
+790,1395.57,0.716553,0.290944,0.005568,0.195264,0.005696,0.004544,0.006144,0.006144,0.006016,0.05664,0.004928
+791,1496.8,0.668091,0.293984,0.006144,0.194592,0.005696,0.004512,0.00592,0.005952,0.005792,0.059872,0.005504
+792,1407.8,0.710327,0.29488,0.005568,0.196384,0.004928,0.005568,0.004672,0.006144,0.006144,0.059392,0.00608
+793,1335.51,0.748779,0.295872,0.005056,0.198272,0.00448,0.006016,0.005376,0.006272,0.006112,0.059168,0.00512
+794,1360.12,0.735229,0.542624,0.0056,0.422688,0.031776,0.005088,0.005536,0.005984,0.004864,0.055296,0.005792
+795,896.378,1.1156,0.294912,0.006112,0.200736,0.005888,0.004352,0.006144,0.006112,0.005824,0.0536,0.006144
+796,967.407,1.03369,0.314368,0.00512,0.216896,0.004288,0.006144,0.005472,0.005824,0.005088,0.059392,0.006144
+797,1600.31,0.624878,0.305152,0.006048,0.206144,0.004896,0.005568,0.004672,0.006144,0.007328,0.059392,0.00496
+798,1398.43,0.715088,0.301056,0.006144,0.202432,0.004416,0.00608,0.006112,0.005856,0.005856,0.058016,0.006144
+799,1249.35,0.800415,0.299232,0.0056,0.199584,0.005984,0.004256,0.006144,0.006144,0.005824,0.059712,0.005984
+800,1683.52,0.593994,0.291424,0.005792,0.198624,0.005056,0.005408,0.00672,0.006176,0.005792,0.053088,0.004768
+801,1276.01,0.783691,0.295072,0.0056,0.201408,0.005888,0.004352,0.006176,0.006112,0.006144,0.053248,0.006144
+802,1467.31,0.681519,0.298336,0.006176,0.204768,0.005856,0.004384,0.007584,0.005888,0.00496,0.053216,0.005504
+803,1195.04,0.836792,0.552384,0.006144,0.430048,0.00752,0.0048,0.00576,0.006144,0.005984,0.080416,0.005568
+804,908.909,1.10022,0.293024,0.005632,0.201376,0.00592,0.00432,0.005856,0.005472,0.005088,0.053216,0.006144
+805,1121.27,0.891846,0.290848,0.005664,0.197088,0.006144,0.00528,0.00496,0.006144,0.006144,0.054464,0.00496
+806,1483.79,0.67395,0.290624,0.006144,0.198656,0.00528,0.00496,0.006144,0.006016,0.005824,0.051648,0.005952
+807,1270.47,0.787109,0.285088,0.00464,0.194592,0.006112,0.00528,0.00496,0.006144,0.006144,0.0512,0.006016
+808,1712.37,0.583984,0.28752,0.004896,0.198112,0.00464,0.005824,0.004416,0.006144,0.006144,0.0512,0.006144
+809,1306.75,0.765259,0.284704,0.0056,0.198336,0.00496,0.005536,0.004704,0.006144,0.005984,0.048896,0.004544
+810,1485.4,0.673218,0.290496,0.005952,0.200288,0.005888,0.00496,0.005632,0.006112,0.006144,0.049696,0.005824
+811,1310.93,0.762817,0.28672,0.00576,0.19904,0.005376,0.004864,0.00592,0.005664,0.004896,0.050496,0.004704
+812,649.901,1.5387,0.302144,0.008192,0.212064,0.005024,0.00528,0.00496,0.006144,0.006016,0.04896,0.005504
+813,1247.64,0.801514,0.286464,0.006176,0.19824,0.00448,0.005984,0.005408,0.005056,0.007104,0.048128,0.005888
+814,1532.36,0.652588,0.292128,0.005824,0.20224,0.004928,0.005568,0.004704,0.006112,0.006176,0.051072,0.005504
+815,786.18,1.27197,0.303104,0.006144,0.212992,0.006144,0.005216,0.006112,0.005152,0.006048,0.05024,0.005056
+816,1562.76,0.639893,0.301056,0.005632,0.209312,0.005824,0.004512,0.006112,0.005792,0.005888,0.053024,0.00496
+817,1349.81,0.740845,0.292864,0.005728,0.197024,0.00608,0.005216,0.005088,0.005984,0.005824,0.055776,0.006144
+818,1552.1,0.644287,0.300992,0.005696,0.205248,0.00592,0.00432,0.006144,0.005824,0.00576,0.056,0.00608
+819,1280.8,0.780762,0.294912,0.006144,0.198688,0.005984,0.004224,0.006144,0.006144,0.005888,0.055552,0.006144
+820,1411.68,0.708374,0.555648,0.005056,0.424992,0.041792,0.004224,0.006144,0.006144,0.005984,0.055456,0.005856
+821,839.688,1.19092,0.470816,0.004864,0.378048,0.00496,0.005632,0.004576,0.006144,0.006144,0.054944,0.005504
+822,1215.25,0.822876,0.297984,0.006144,0.2048,0.006144,0.005312,0.004928,0.006144,0.006144,0.052832,0.005536
+823,1319.38,0.757935,0.294592,0.006144,0.196288,0.004416,0.006144,0.005632,0.005824,0.004928,0.059392,0.005824
+824,1376.11,0.726685,0.29744,0.004704,0.200576,0.005344,0.004896,0.006176,0.006112,0.006048,0.05744,0.006144
+825,1272.84,0.785645,0.294912,0.006176,0.197824,0.004896,0.005568,0.004672,0.006144,0.006144,0.058624,0.004864
+826,1500.64,0.666382,0.294848,0.005664,0.19728,0.004384,0.005952,0.005408,0.005056,0.006112,0.059392,0.0056
+827,1440.22,0.694336,0.301024,0.004928,0.200704,0.006144,0.005248,0.005024,0.006112,0.006176,0.060992,0.005696
+828,1205.41,0.82959,0.5504,0.005536,0.426624,0.030656,0.004448,0.006144,0.006144,0.006144,0.059168,0.005536
+829,827.809,1.20801,0.30064,0.00624,0.200992,0.0056,0.00464,0.006144,0.006176,0.006112,0.059232,0.005504
+830,987.821,1.01233,0.299296,0.005568,0.201568,0.005632,0.004608,0.006016,0.005952,0.00592,0.059104,0.004928
+831,1419.76,0.704346,0.296928,0.004768,0.199808,0.004992,0.005728,0.004512,0.006144,0.006112,0.05936,0.005504
+832,1409.98,0.709229,0.29504,0.005568,0.19712,0.004288,0.006144,0.005536,0.004704,0.006144,0.059392,0.006144
+833,1350.92,0.740234,0.294528,0.005568,0.19664,0.004896,0.005568,0.004672,0.006144,0.006144,0.059392,0.005504
+834,896.28,1.11572,0.313376,0.006112,0.213024,0.006144,0.005248,0.004992,0.006176,0.005952,0.060608,0.00512
+835,1125.12,0.888794,0.3072,0.005824,0.208832,0.00448,0.006016,0.005568,0.006144,0.006112,0.05808,0.006144
+836,1123.42,0.890137,0.3072,0.00608,0.206944,0.005984,0.004224,0.006144,0.006112,0.006176,0.060736,0.0048
+837,758.027,1.31921,0.344992,0.007072,0.248928,0.005024,0.005664,0.005632,0.00512,0.006112,0.056416,0.005024
+838,1356.74,0.737061,0.300864,0.006144,0.204096,0.0048,0.006144,0.005472,0.006304,0.005984,0.055968,0.005952
+839,1192.6,0.838501,0.300864,0.006048,0.202848,0.005728,0.004512,0.00608,0.006208,0.006144,0.057344,0.005952
+840,1232.99,0.811035,0.300512,0.005568,0.19936,0.006144,0.00528,0.00496,0.006144,0.006016,0.061536,0.005504
+841,1705.96,0.586182,0.30048,0.005664,0.201184,0.006144,0.00544,0.0048,0.006144,0.006144,0.059392,0.005568
+842,1340.09,0.746216,0.299328,0.005568,0.199552,0.005856,0.006432,0.005184,0.005184,0.006048,0.05936,0.006144
+843,1371.96,0.728882,0.297312,0.004896,0.200448,0.004352,0.006144,0.004128,0.006112,0.006176,0.05936,0.005696
+844,1164.96,0.858398,0.303104,0.006112,0.20256,0.00432,0.006144,0.005376,0.005984,0.006912,0.059584,0.006112
+845,772.247,1.29492,0.30368,0.00672,0.204832,0.005984,0.005376,0.004992,0.006144,0.005952,0.05904,0.00464
+846,1280.8,0.780762,0.300032,0.00512,0.202784,0.00608,0.005664,0.00464,0.006112,0.006144,0.057344,0.006144
+847,1403.22,0.712646,0.29616,0.00544,0.197216,0.004288,0.005952,0.005472,0.006016,0.00624,0.060032,0.005504
+848,1359.22,0.735718,0.300544,0.005536,0.201184,0.004288,0.006144,0.005344,0.005984,0.005056,0.06144,0.005568
+849,1370.36,0.729736,0.29584,0.005056,0.196608,0.005888,0.00432,0.006144,0.005888,0.005824,0.059968,0.006144
+850,1567.55,0.637939,0.296672,0.005568,0.198624,0.004736,0.005728,0.004576,0.00608,0.006144,0.059392,0.005824
+851,680.455,1.4696,0.307808,0.004736,0.210016,0.004992,0.005472,0.004768,0.006144,0.007232,0.059392,0.005056
+852,833.028,1.20044,0.626976,0.0056,0.482112,0.022528,0.028672,0.014336,0.006144,0.006112,0.055328,0.006144
+853,985.326,1.01489,0.608672,0.005568,0.51424,0.004896,0.005632,0.004608,0.006144,0.006144,0.055296,0.006144
+854,1183.82,0.844727,0.303104,0.006144,0.204832,0.005952,0.004256,0.006144,0.00608,0.005792,0.05776,0.006144
+855,1321.29,0.756836,0.29664,0.006144,0.200704,0.00608,0.005184,0.005152,0.005888,0.006208,0.055456,0.005824
+856,1330.73,0.751465,0.29856,0.006144,0.198656,0.005696,0.004544,0.006144,0.007296,0.005184,0.0592,0.005696
+857,1671.5,0.598267,0.29632,0.0056,0.197152,0.005984,0.004256,0.006144,0.006144,0.006144,0.059264,0.005632
+858,1396.28,0.716187,0.299104,0.00496,0.200704,0.005376,0.006464,0.005728,0.006016,0.005088,0.059264,0.005504
+859,1245.36,0.802979,0.297952,0.005088,0.202752,0.005824,0.004416,0.006048,0.005888,0.005856,0.055936,0.006144
+860,1573.57,0.635498,0.296992,0.006144,0.200704,0.005888,0.004352,0.006144,0.006048,0.006048,0.05552,0.006144
+861,684.606,1.46069,0.305184,0.007712,0.209408,0.00576,0.00448,0.006112,0.005856,0.006432,0.05328,0.006144
+862,1091.83,0.915894,0.297184,0.005568,0.201312,0.00528,0.00512,0.006048,0.005952,0.005792,0.057152,0.00496
+863,1430.67,0.698975,0.297216,0.0056,0.197344,0.005728,0.005856,0.0048,0.006176,0.006144,0.060992,0.004576
+864,1273.63,0.785156,0.291104,0.005536,0.197504,0.005312,0.004928,0.005632,0.006016,0.005984,0.054048,0.006144
+865,1476.04,0.67749,0.294272,0.0056,0.1992,0.00528,0.005056,0.005568,0.006112,0.006048,0.055744,0.005664
+866,1555.94,0.6427,0.305152,0.005696,0.200736,0.004512,0.005984,0.006304,0.006144,0.005984,0.064736,0.005056
+867,1320.44,0.757324,0.303136,0.005856,0.200992,0.0056,0.00464,0.005984,0.006144,0.005824,0.06336,0.004736
+868,1391.07,0.718872,0.299008,0.006144,0.200704,0.00528,0.00496,0.005632,0.00592,0.006048,0.058176,0.006144
+869,1314.72,0.76062,0.560128,0.005152,0.415712,0.008192,0.005888,0.005408,0.005088,0.006144,0.103904,0.00464
+870,753.981,1.32629,0.339296,0.005824,0.239936,0.006144,0.0056,0.00464,0.006144,0.006144,0.059328,0.005536
+871,1014.11,0.986084,0.311296,0.006144,0.212512,0.004576,0.005888,0.005408,0.006752,0.006016,0.057856,0.006144
+872,1521.83,0.657104,0.308352,0.005856,0.20512,0.005888,0.00432,0.006144,0.006144,0.007328,0.06208,0.005472
+873,1543.91,0.647705,0.308416,0.005696,0.203232,0.005408,0.0048,0.006144,0.006144,0.006144,0.065472,0.005376
+874,1341.63,0.745361,0.299008,0.005632,0.201216,0.005312,0.004928,0.005824,0.00592,0.005792,0.059552,0.004832
+875,1315.56,0.760132,0.301056,0.005568,0.197184,0.00544,0.0048,0.005728,0.005824,0.004896,0.065472,0.006144
+876,1506.44,0.663818,0.304224,0.006016,0.20288,0.006144,0.005792,0.004448,0.006272,0.006016,0.061152,0.005504
+877,1234.48,0.810059,0.3024,0.006112,0.202816,0.005504,0.004704,0.005952,0.00576,0.006016,0.060032,0.005504
+878,744.592,1.34302,0.306912,0.008192,0.206784,0.00528,0.005024,0.005632,0.005824,0.004928,0.059392,0.005856
+879,1335.72,0.748657,0.3032,0.005568,0.205472,0.005792,0.004448,0.006176,0.006112,0.006144,0.058784,0.004704
+880,1355.84,0.737549,0.3008,0.005888,0.202208,0.004896,0.0056,0.005728,0.006144,0.005056,0.059392,0.005888
+881,1548.29,0.645874,0.292864,0.006144,0.199808,0.004992,0.005472,0.004768,0.007264,0.005024,0.053248,0.006144
+882,1370.82,0.729492,0.290752,0.005824,0.196928,0.00544,0.004832,0.005792,0.005984,0.00592,0.053952,0.00608
+883,1420.99,0.703735,0.292864,0.006144,0.198656,0.005376,0.004864,0.005792,0.005792,0.0048,0.055296,0.006144
+884,1393.43,0.717651,0.289472,0.004832,0.196608,0.005408,0.004832,0.005856,0.005888,0.00576,0.054176,0.006112
+885,1412.17,0.70813,0.29616,0.005568,0.201408,0.00528,0.00496,0.006144,0.006144,0.006048,0.055136,0.005472
+886,1259.53,0.793945,0.535008,0.004704,0.43104,0.0152,0.005248,0.005088,0.006112,0.00576,0.055712,0.006144
+887,892.861,1.12,0.296864,0.005568,0.202752,0.004768,0.005696,0.004576,0.006112,0.006144,0.055296,0.005952
+888,997.929,1.00208,0.292896,0.004704,0.200352,0.004384,0.00608,0.00544,0.005888,0.005152,0.055264,0.005632
+889,1491.9,0.670288,0.301248,0.004832,0.202752,0.005312,0.00496,0.006112,0.005856,0.005824,0.06,0.0056
+890,958.577,1.04321,0.309216,0.005568,0.209312,0.004448,0.00592,0.005408,0.005152,0.006048,0.06144,0.00592
+891,1698.53,0.588745,0.306496,0.006176,0.205792,0.00512,0.005632,0.004704,0.00608,0.006112,0.061376,0.005504
+892,1338.78,0.746948,0.301024,0.005824,0.201024,0.00576,0.00592,0.004704,0.006144,0.005984,0.059552,0.006112
+893,1517.6,0.658936,0.299008,0.005824,0.198976,0.006144,0.005344,0.004928,0.006112,0.006144,0.060416,0.00512
+894,1299.9,0.769287,0.303104,0.006144,0.202752,0.005952,0.004288,0.006144,0.006144,0.006048,0.060832,0.0048
+895,767.76,1.30249,0.315392,0.008032,0.213152,0.005376,0.004864,0.00576,0.00592,0.006464,0.060992,0.004832
+896,1094.16,0.91394,0.299008,0.006144,0.198656,0.005952,0.004288,0.006144,0.006016,0.005888,0.061024,0.004896
+897,1587.6,0.629883,0.298656,0.005568,0.199488,0.0056,0.00464,0.006048,0.005856,0.005792,0.060128,0.005536
+898,1286.23,0.777466,0.30064,0.005536,0.197536,0.006112,0.005696,0.004576,0.006112,0.006144,0.063424,0.005504
+899,1488.64,0.671753,0.299008,0.006144,0.198656,0.00528,0.00496,0.005888,0.006016,0.006016,0.061312,0.004736
+900,1348.48,0.741577,0.294912,0.005632,0.195104,0.005856,0.004352,0.006144,0.005952,0.005792,0.061536,0.004544
+901,1520.13,0.657837,0.299456,0.0056,0.197312,0.004384,0.006112,0.005312,0.004992,0.006112,0.0648,0.004832
+902,1352.93,0.739136,0.302976,0.006144,0.20048,0.00432,0.006016,0.005408,0.005984,0.00512,0.063488,0.006016
+903,1371.73,0.729004,0.302272,0.0056,0.205344,0.00528,0.005088,0.005536,0.006304,0.006048,0.057568,0.005504
+904,663.804,1.50647,0.35408,0.008192,0.2496,0.005376,0.00512,0.006112,0.006176,0.00592,0.061664,0.00592
+905,1141.9,0.875732,0.305024,0.005568,0.201312,0.006144,0.005344,0.004896,0.006144,0.006144,0.06352,0.005952
+906,1373.81,0.727905,0.30208,0.00512,0.198592,0.005248,0.005056,0.006144,0.006144,0.00608,0.065024,0.004672
+907,1444.54,0.692261,0.30704,0.006144,0.197952,0.0048,0.005696,0.004576,0.006112,0.006144,0.069632,0.005984
+908,1318.1,0.758667,0.309216,0.006144,0.198656,0.005632,0.004608,0.006144,0.006144,0.006144,0.069632,0.006112
+909,703.538,1.42139,0.321536,0.0056,0.213536,0.005408,0.004832,0.005824,0.005984,0.005632,0.068576,0.006144
+910,1454.55,0.6875,0.327648,0.0048,0.220704,0.004576,0.00592,0.005632,0.004992,0.005984,0.069504,0.005536
+911,618.918,1.61572,0.32768,0.008192,0.216352,0.004832,0.005664,0.004576,0.006176,0.006112,0.069632,0.006144
+912,1222.87,0.817749,0.307936,0.004832,0.205824,0.00512,0.005376,0.004864,0.006144,0.005888,0.064768,0.00512
+913,1384.02,0.722534,0.3072,0.00608,0.202848,0.005952,0.004256,0.006144,0.005984,0.005792,0.06512,0.005024
+914,1426.18,0.701172,0.3032,0.004672,0.198176,0.004544,0.005376,0.004864,0.006144,0.006144,0.067584,0.005696
+915,1399.39,0.7146,0.30336,0.005568,0.20064,0.004992,0.006144,0.00544,0.005824,0.00512,0.063488,0.006144
+916,1321.5,0.756714,0.296704,0.0056,0.197408,0.005248,0.005024,0.00544,0.005888,0.005056,0.06144,0.0056
+917,1457.39,0.686157,0.305152,0.006176,0.206144,0.004768,0.005696,0.004576,0.006112,0.006144,0.060448,0.005088
+918,1312.82,0.761719,0.299776,0.004896,0.199936,0.004832,0.005632,0.004608,0.007232,0.005184,0.0624,0.005056
+919,1132.9,0.88269,0.497664,0.008128,0.395328,0.005792,0.00448,0.006112,0.005824,0.00576,0.061504,0.004736
+920,1095.63,0.91272,0.29888,0.005568,0.199488,0.004256,0.006144,0.005568,0.006016,0.005952,0.060288,0.0056
+921,1234.29,0.810181,0.29696,0.005984,0.198336,0.004576,0.005888,0.005472,0.005024,0.006144,0.060736,0.0048
+922,1407.8,0.710327,0.298912,0.006176,0.196192,0.00448,0.006144,0.006016,0.005856,0.005792,0.062208,0.006048
+923,1271.06,0.786743,0.2952,0.005568,0.196896,0.00464,0.005856,0.004416,0.006112,0.006144,0.060864,0.004704
+924,1494.89,0.668945,0.29696,0.00592,0.196416,0.004512,0.005984,0.005344,0.005152,0.006048,0.062912,0.004672
+925,1496.8,0.668091,0.29712,0.005568,0.197344,0.005888,0.004352,0.006144,0.006176,0.006112,0.059392,0.006144
+926,1401.54,0.713501,0.298688,0.005632,0.199168,0.005856,0.004384,0.006144,0.006016,0.005856,0.059808,0.005824
+927,1392.25,0.718262,0.295488,0.004672,0.196608,0.00528,0.00496,0.005792,0.006112,0.005984,0.059936,0.006144
+928,821.912,1.21667,0.569536,0.005568,0.4208,0.047104,0.012192,0.005568,0.005984,0.006272,0.060096,0.005952
+929,1162.81,0.859985,0.337952,0.00608,0.234624,0.004736,0.005792,0.004768,0.006144,0.006144,0.064672,0.004992
+930,921.07,1.08569,0.308064,0.00496,0.208896,0.00528,0.00496,0.005696,0.00608,0.006176,0.059872,0.006144
+931,960.375,1.04126,0.434176,0.0056,0.315808,0.00528,0.005088,0.005696,0.015872,0.005056,0.060736,0.01504
+932,959.251,1.04248,0.358048,0.006144,0.257536,0.004608,0.005856,0.005408,0.00512,0.0072,0.060384,0.005792
+933,1475.24,0.677856,0.30608,0.005024,0.204224,0.004672,0.005824,0.004416,0.0072,0.005088,0.063488,0.006144
+934,944.432,1.05884,0.346016,0.005568,0.234112,0.005888,0.004352,0.006144,0.00592,0.00576,0.072288,0.005984
+935,1366.24,0.731934,0.330496,0.004864,0.228928,0.004544,0.005952,0.005408,0.005024,0.006144,0.063488,0.006144
+936,1096.65,0.911865,0.323584,0.006144,0.219136,0.006144,0.0056,0.004672,0.006112,0.006176,0.06464,0.00496
+937,606.007,1.65015,0.32768,0.008192,0.216064,0.00512,0.005344,0.004896,0.006144,0.006048,0.069728,0.006144
+938,1565.45,0.638794,0.313344,0.00592,0.202976,0.006048,0.005824,0.004608,0.006048,0.006176,0.0696,0.006144
+939,1265.37,0.790283,0.308416,0.005632,0.199168,0.006144,0.005152,0.005088,0.006144,0.005856,0.06976,0.005472
+940,1520.13,0.657837,0.310432,0.005568,0.201344,0.006048,0.005824,0.004672,0.005984,0.006144,0.069344,0.005504
+941,1013.36,0.986816,0.308768,0.006144,0.198016,0.004736,0.005536,0.006112,0.006304,0.006592,0.069664,0.005664
+942,1683.86,0.593872,0.311904,0.004896,0.202752,0.005344,0.004896,0.005728,0.006016,0.006016,0.070304,0.005952
+943,1316.62,0.759521,0.310592,0.006144,0.202304,0.004544,0.005824,0.004416,0.006144,0.006144,0.069568,0.005504
+944,752.388,1.3291,0.510848,0.00704,0.407296,0.004352,0.006144,0.00544,0.005824,0.00512,0.064736,0.004896
+945,1114.56,0.897217,0.302816,0.005856,0.198336,0.004704,0.005792,0.004608,0.007232,0.004896,0.065536,0.005856
+946,969.353,1.03162,0.320896,0.005632,0.2176,0.005568,0.004672,0.00592,0.005792,0.005728,0.06448,0.005504
+947,1386.36,0.721313,0.324608,0.00512,0.219136,0.005376,0.004864,0.006144,0.006144,0.006016,0.066688,0.00512
+948,1377.04,0.726196,0.323328,0.004544,0.219136,0.00528,0.00496,0.005632,0.005856,0.004896,0.067456,0.005568
+949,1342.51,0.744873,0.326784,0.00608,0.2192,0.005568,0.004672,0.005952,0.005984,0.005952,0.067872,0.005504
+950,1308.84,0.764038,0.313344,0.006144,0.206784,0.00528,0.005024,0.0056,0.005952,0.005984,0.066432,0.006144
+951,1370.13,0.729858,0.309728,0.004672,0.202656,0.005344,0.004896,0.005696,0.006208,0.005952,0.06928,0.005024
+952,569.839,1.75488,0.331264,0.008192,0.223232,0.005728,0.004512,0.006112,0.005888,0.005824,0.066144,0.005632
+953,1354.27,0.738403,0.311296,0.006144,0.20048,0.00432,0.006144,0.00544,0.00592,0.005024,0.072896,0.004928
+954,1416.81,0.705811,0.301056,0.006144,0.19664,0.00592,0.00432,0.006112,0.006176,0.006112,0.063488,0.006144
+955,1504.22,0.664795,0.30528,0.005568,0.201408,0.005312,0.004928,0.005984,0.005984,0.005856,0.065664,0.004576
+956,1365.79,0.732178,0.307424,0.0056,0.197376,0.005696,0.005632,0.005056,0.006144,0.005856,0.06992,0.006144
+957,1463.12,0.683472,0.3072,0.006144,0.19664,0.006112,0.005152,0.005056,0.006016,0.005888,0.07008,0.006112
+958,1368.76,0.730591,0.310272,0.00512,0.200704,0.00608,0.005216,0.005088,0.005664,0.00576,0.070528,0.006112
+959,1411.93,0.708252,0.312416,0.006048,0.202048,0.004896,0.005376,0.004864,0.006144,0.00592,0.071616,0.005504
+960,606.186,1.64966,0.516096,0.006304,0.406496,0.004992,0.005568,0.004672,0.006144,0.006144,0.070688,0.005088
+961,1128.53,0.886108,0.3072,0.006144,0.199808,0.004992,0.005504,0.004768,0.006112,0.006176,0.067584,0.006112
+962,1445.82,0.69165,0.304992,0.006048,0.196736,0.006112,0.005312,0.004928,0.006144,0.006144,0.067584,0.005984
+963,1545.08,0.647217,0.306208,0.00608,0.198016,0.0048,0.005696,0.004608,0.00608,0.006144,0.069216,0.005568
+964,1281.8,0.780151,0.305568,0.005568,0.1976,0.005504,0.005856,0.005056,0.006112,0.006144,0.069056,0.004672
+965,1032.91,0.96814,0.33616,0.005536,0.225984,0.004288,0.006144,0.005472,0.006016,0.004896,0.069632,0.008192
+966,1118.36,0.894165,0.356352,0.005824,0.248128,0.005536,0.004704,0.006144,0.006144,0.00608,0.068896,0.004896
+967,1296.82,0.771118,0.35616,0.005696,0.241792,0.00448,0.006016,0.005632,0.005856,0.007072,0.073728,0.005888
+968,486.895,2.05383,0.523936,0.00816,0.392384,0.00496,0.005792,0.018784,0.006144,0.006144,0.075776,0.005792
+969,1174.82,0.851196,0.324064,0.004736,0.212704,0.005792,0.004736,0.00592,0.005824,0.005824,0.072544,0.005984
+970,1509.77,0.662354,0.316928,0.006144,0.205888,0.005056,0.005408,0.004832,0.006144,0.006016,0.071808,0.005632
+971,1395.57,0.716553,0.311264,0.005984,0.198816,0.006144,0.005312,0.004928,0.006144,0.005952,0.071872,0.006112
+972,1265.17,0.790405,0.320192,0.004832,0.208896,0.005952,0.004288,0.006144,0.006144,0.005888,0.071936,0.006112
+973,1482.45,0.674561,0.313344,0.006144,0.200704,0.005536,0.004704,0.006176,0.007328,0.006016,0.070592,0.006144
+974,1185.36,0.843628,0.599968,0.006112,0.475168,0.008128,0.005216,0.00512,0.006112,0.006144,0.07168,0.016288
+975,820.924,1.21814,0.313152,0.006144,0.202176,0.004672,0.005824,0.004608,0.005952,0.006144,0.07168,0.005952
+976,1212.91,0.824463,0.313344,0.005984,0.200864,0.005952,0.004288,0.006144,0.005792,0.00576,0.073536,0.005024
+977,1450.17,0.689575,0.313984,0.004992,0.20176,0.005056,0.005408,0.00672,0.0056,0.006016,0.072512,0.00592
+978,1315.14,0.760376,0.313344,0.006144,0.196608,0.005888,0.004352,0.006144,0.00592,0.005664,0.076512,0.006112
+979,1509.49,0.662476,0.313728,0.005536,0.199136,0.004544,0.00592,0.005376,0.005088,0.006144,0.077376,0.004608
+980,1316.2,0.759766,0.30928,0.0056,0.197152,0.005408,0.004832,0.006144,0.00608,0.006016,0.073088,0.00496
+981,1100.48,0.908691,0.317664,0.005568,0.201472,0.006144,0.005344,0.004896,0.006144,0.006176,0.076896,0.005024
+982,791.345,1.26367,0.315712,0.004992,0.204544,0.004352,0.006016,0.005632,0.006112,0.005824,0.072672,0.005568
+983,1143.65,0.87439,0.325056,0.007584,0.213344,0.00448,0.006016,0.005408,0.00624,0.005888,0.070592,0.005504
+984,1174.82,0.851196,0.48608,0.0048,0.378304,0.004672,0.005856,0.005408,0.00512,0.006144,0.071168,0.004608
+985,1164.79,0.858521,0.303104,0.005664,0.199008,0.00528,0.005088,0.0056,0.005984,0.005856,0.065792,0.004832
+986,1444.29,0.692383,0.300288,0.005696,0.1984,0.0048,0.005792,0.00464,0.005952,0.006144,0.063392,0.005472
+987,1284.01,0.778809,0.304672,0.006144,0.200128,0.004672,0.006176,0.00576,0.006496,0.006144,0.063488,0.005664
+988,1416.08,0.706177,0.302976,0.005664,0.201184,0.00528,0.00496,0.004256,0.006016,0.006112,0.063488,0.006016
+989,1144.77,0.873535,0.303104,0.006144,0.2024,0.00448,0.006112,0.005696,0.005888,0.005824,0.060416,0.006144
+990,1541.59,0.648682,0.297408,0.0056,0.199648,0.005568,0.004672,0.005792,0.004448,0.006144,0.059392,0.006144
+991,1190.87,0.839722,0.49376,0.006912,0.393216,0.00592,0.004352,0.006112,0.006144,0.006112,0.059424,0.005568
+992,1073.66,0.931396,0.29568,0.004896,0.200064,0.004704,0.005792,0.004448,0.006144,0.006144,0.05888,0.004608
+993,1152.34,0.867798,0.30352,0.005568,0.201696,0.00544,0.0048,0.00576,0.006016,0.006016,0.06208,0.006144
+994,1378.2,0.725586,0.299008,0.005728,0.197056,0.006112,0.005888,0.005472,0.005152,0.006016,0.062944,0.00464
+995,1423.71,0.702393,0.299648,0.004768,0.20032,0.004448,0.005824,0.004576,0.005984,0.006144,0.062528,0.005056
+996,1321.72,0.756592,0.296224,0.005888,0.194848,0.0056,0.004608,0.005984,0.005792,0.005792,0.062208,0.005504
+997,1546.54,0.646606,0.299104,0.00576,0.197088,0.006016,0.004224,0.006144,0.006144,0.006112,0.061472,0.006144
+998,1016.25,0.984009,0.318944,0.005792,0.213344,0.005824,0.004416,0.006144,0.006144,0.00624,0.06544,0.0056
+999,1647.96,0.606812,0.308032,0.004928,0.205984,0.00496,0.0056,0.00464,0.006272,0.006016,0.064896,0.004736
+1000,1223.23,0.817505,0.521376,0.00576,0.417152,0.0072,0.00544,0.0048,0.006112,0.006144,0.063264,0.005504
+1001,731.625,1.36682,0.563776,0.004704,0.462016,0.004896,0.005632,0.004608,0.006144,0.006144,0.0648,0.004832
+1002,1328.36,0.752808,0.304544,0.005888,0.198496,0.004512,0.005984,0.005408,0.004992,0.006144,0.067584,0.005536
+1003,1573.57,0.635498,0.30224,0.005568,0.20336,0.005376,0.004832,0.006144,0.006112,0.005824,0.059616,0.005408
+1004,1306.33,0.765503,0.296864,0.006016,0.196736,0.006144,0.005216,0.005024,0.006144,0.006144,0.059392,0.006048
+1005,1499.54,0.66687,0.299456,0.004992,0.200704,0.005184,0.005056,0.005408,0.006016,0.0064,0.06,0.005696
+1006,1397.24,0.715698,0.297408,0.0056,0.196736,0.00496,0.005376,0.004864,0.006144,0.006016,0.06288,0.004832
+1007,1371.28,0.729248,0.306304,0.006176,0.20272,0.006144,0.005216,0.005056,0.00608,0.005856,0.063552,0.005504
+1008,1275.81,0.783813,0.31088,0.005568,0.207776,0.006112,0.00512,0.00512,0.006208,0.00608,0.06336,0.005536
+1009,912.148,1.09631,0.313344,0.00768,0.207104,0.004544,0.00592,0.005472,0.004992,0.006144,0.065536,0.005952
+1010,1062.93,0.940796,0.310112,0.00496,0.2048,0.00544,0.0048,0.006144,0.006144,0.006144,0.066624,0.005056
+1011,1313.24,0.761475,0.30544,0.005056,0.200736,0.005408,0.0048,0.006144,0.006176,0.006112,0.065504,0.005504
+1012,1384.95,0.722046,0.303232,0.005568,0.196736,0.004672,0.005792,0.00464,0.005952,0.006144,0.067584,0.006144
+1013,1551.81,0.644409,0.3072,0.005792,0.19696,0.00576,0.00448,0.006016,0.005856,0.005888,0.071744,0.004704
+1014,1354.5,0.738281,0.308832,0.006144,0.197664,0.005088,0.005376,0.004864,0.006144,0.006048,0.071776,0.005728
+1015,1434.93,0.696899,0.311296,0.005888,0.200928,0.00528,0.004992,0.005472,0.006016,0.005952,0.070432,0.006336
+1016,1227.63,0.814575,0.306528,0.006176,0.20272,0.00528,0.00496,0.005728,0.006016,0.00608,0.064,0.005568
+1017,1392.96,0.717896,0.52352,0.006144,0.415744,0.008192,0.005408,0.004832,0.006144,0.006112,0.06544,0.005504
+1018,904.694,1.10535,0.304448,0.006144,0.200064,0.004736,0.005728,0.004512,0.006144,0.006144,0.065472,0.005504
+1019,1157.55,0.863892,0.30208,0.00512,0.1984,0.004352,0.006112,0.005376,0.005984,0.005184,0.066688,0.004864
+1020,1317.68,0.758911,0.297184,0.005568,0.196864,0.00464,0.005856,0.005536,0.004992,0.006144,0.06288,0.004704
+1021,624.628,1.60095,0.31296,0.005856,0.209152,0.005248,0.005024,0.006144,0.006144,0.00608,0.063552,0.00576
+1022,895.301,1.11694,0.311488,0.005568,0.205568,0.006144,0.00528,0.004992,0.006112,0.006176,0.06656,0.005088
+1023,1405.15,0.71167,0.309888,0.004736,0.206848,0.006016,0.004224,0.006176,0.00608,0.005952,0.063712,0.006144
+1024,1232.44,0.811401,0.524288,0.006144,0.417472,0.006656,0.005952,0.00544,0.006112,0.005888,0.06448,0.006144
+1025,899.33,1.11194,0.311264,0.006144,0.2048,0.005504,0.004736,0.005888,0.006432,0.005952,0.065728,0.00608
+1026,1115.47,0.896484,0.305984,0.004928,0.20048,0.00432,0.006144,0.005312,0.006048,0.005152,0.067456,0.006144
+1027,1660.32,0.602295,0.303168,0.006144,0.198592,0.00528,0.005024,0.005504,0.004736,0.006144,0.067136,0.004608
+1028,1322.57,0.756104,0.301152,0.006016,0.198272,0.004608,0.005888,0.006112,0.005952,0.00576,0.063936,0.004608
+1029,1548,0.645996,0.303104,0.00592,0.200928,0.005376,0.004864,0.0056,0.006048,0.006304,0.06192,0.006144
+1030,1363.29,0.733521,0.305152,0.005792,0.196992,0.006112,0.005344,0.004896,0.006144,0.005856,0.067904,0.006112
+1031,1424.94,0.701782,0.309248,0.005792,0.201056,0.005312,0.00656,0.004608,0.006048,0.007584,0.066144,0.006144
+1032,1273.04,0.785522,0.311296,0.005568,0.205088,0.0048,0.005696,0.004544,0.006144,0.006144,0.067584,0.005728
+1033,1403.94,0.71228,0.312192,0.004992,0.20672,0.005248,0.00512,0.005536,0.006688,0.006208,0.065568,0.006112
+1034,678.033,1.47485,0.403296,0.008096,0.292384,0.004672,0.006144,0.005728,0.006016,0.006016,0.068256,0.005984
+1035,1184.16,0.844482,0.305696,0.004864,0.200192,0.004608,0.005856,0.00544,0.006112,0.005184,0.06752,0.00592
+1036,1373.11,0.728271,0.305312,0.0056,0.196288,0.00512,0.005344,0.006624,0.006176,0.005824,0.069696,0.00464
+1037,1472.59,0.679077,0.302144,0.006144,0.19568,0.005024,0.00544,0.006528,0.006048,0.005984,0.065792,0.005504
+1038,1341.19,0.745605,0.304384,0.006144,0.196608,0.005824,0.004416,0.006144,0.005952,0.005792,0.068,0.005504
+1039,922.523,1.08398,0.313312,0.006144,0.208896,0.006144,0.005312,0.00496,0.006112,0.006144,0.063488,0.006112
+1040,1534.37,0.651733,0.305632,0.005056,0.204192,0.004704,0.005792,0.00608,0.005792,0.004864,0.063488,0.005664
+1041,1070.43,0.934204,0.520384,0.00512,0.415232,0.006656,0.006016,0.005408,0.00496,0.006144,0.065312,0.005536
+1042,1087.63,0.919434,0.304032,0.005024,0.201952,0.004896,0.005504,0.004736,0.006144,0.006144,0.064704,0.004928
+1043,1006.02,0.994019,0.316032,0.004864,0.206816,0.005312,0.004928,0.005568,0.00672,0.006176,0.0696,0.006048
+1044,1506.16,0.66394,0.30944,0.0056,0.202688,0.004896,0.0056,0.00464,0.006144,0.00608,0.06768,0.006112
+1045,1329.22,0.752319,0.305216,0.004736,0.198336,0.004352,0.006144,0.005312,0.004928,0.006144,0.069632,0.005632
+1046,1512,0.661377,0.306176,0.00512,0.199808,0.004992,0.00528,0.00496,0.006144,0.00592,0.069184,0.004768
+1047,1398.43,0.715088,0.30512,0.005728,0.19488,0.00528,0.006432,0.004768,0.006144,0.006144,0.069632,0.006112
+1048,1418.28,0.705078,0.303904,0.004896,0.20192,0.004928,0.005536,0.004704,0.007328,0.00496,0.064704,0.004928
+1049,1321.72,0.756592,0.302688,0.005568,0.199392,0.006144,0.005312,0.004928,0.005824,0.005952,0.064,0.005568
+1050,1161.66,0.86084,0.503808,0.008192,0.39728,0.005376,0.004896,0.006144,0.00608,0.00576,0.063936,0.006144
+1051,1038.41,0.963013,0.309248,0.006144,0.200704,0.005312,0.004928,0.006176,0.006112,0.006176,0.067648,0.006048
+1052,1242.53,0.80481,0.305664,0.004672,0.20064,0.005568,0.004672,0.006144,0.0072,0.005248,0.066432,0.005088
+1053,1355.84,0.737549,0.30064,0.006144,0.19664,0.005408,0.0048,0.005472,0.005824,0.005088,0.065536,0.005728
+1054,1528.93,0.654053,0.303072,0.004896,0.197856,0.004896,0.005568,0.004672,0.006176,0.006112,0.067392,0.005504
+1055,1313.24,0.761475,0.298464,0.006144,0.196608,0.006016,0.004224,0.006144,0.006144,0.005984,0.0616,0.0056
+1056,1485.67,0.673096,0.305152,0.005728,0.199072,0.006048,0.004192,0.006144,0.006112,0.005856,0.065856,0.006144
+1057,1333.98,0.749634,0.3032,0.005568,0.196416,0.00496,0.005536,0.006112,0.00608,0.005888,0.066496,0.006144
+1058,797.353,1.25415,0.3072,0.006144,0.202752,0.006144,0.005248,0.004992,0.006144,0.005856,0.064896,0.005024
+1059,1134.47,0.88147,0.328736,0.008192,0.218368,0.004864,0.005632,0.004608,0.006144,0.006144,0.06928,0.005504
+1060,1384.02,0.722534,0.516096,0.006112,0.405536,0.006144,0.005376,0.004864,0.006176,0.006112,0.069632,0.006144
+1061,1105.98,0.904175,0.306624,0.006144,0.19808,0.004672,0.005792,0.004448,0.006144,0.006144,0.069632,0.005568
+1062,1463.38,0.68335,0.3072,0.005568,0.198496,0.004832,0.005632,0.006592,0.00608,0.006016,0.06784,0.006144
+1063,1373.81,0.727905,0.308864,0.005856,0.196544,0.004448,0.006144,0.005888,0.006016,0.005888,0.07232,0.00576
+1064,1456.87,0.686401,0.310464,0.006144,0.200704,0.00608,0.005472,0.004832,0.006176,0.006112,0.069408,0.005536
+1065,1267.72,0.788818,0.3072,0.00608,0.198016,0.0048,0.005664,0.005824,0.00608,0.006112,0.068512,0.006112
+1066,1456.61,0.686523,0.305152,0.006144,0.2024,0.004448,0.006048,0.004352,0.005984,0.006144,0.063488,0.006144
+1067,1306.75,0.765259,0.304928,0.004832,0.202592,0.004256,0.006144,0.00544,0.005888,0.005152,0.065088,0.005536
+1068,737.686,1.35559,0.321536,0.007712,0.215584,0.005856,0.005792,0.004736,0.006144,0.006144,0.063488,0.00608
+1069,1113.35,0.898193,0.303104,0.005568,0.199232,0.005856,0.004384,0.006144,0.006144,0.005952,0.064864,0.00496
+1070,1437.45,0.695679,0.305152,0.005664,0.201184,0.005824,0.005792,0.004768,0.006144,0.006144,0.063552,0.00608
+1071,1324.49,0.755005,0.299136,0.005568,0.197152,0.005248,0.00512,0.005664,0.005888,0.005888,0.063808,0.0048
+1072,1560.98,0.640625,0.305152,0.006144,0.198656,0.005632,0.005824,0.004928,0.006144,0.005952,0.065728,0.006144
+1073,1300.52,0.768921,0.300608,0.005568,0.198848,0.004608,0.005824,0.004576,0.005984,0.006144,0.063488,0.005568
+1074,1551.22,0.644653,0.303264,0.005568,0.2008,0.004736,0.00576,0.00448,0.006144,0.006144,0.064736,0.004896
+1075,1210.04,0.826416,0.302016,0.005056,0.198304,0.004448,0.00608,0.006208,0.005824,0.005824,0.064128,0.006144
+1076,1194.34,0.83728,0.500256,0.007104,0.394848,0.004512,0.006016,0.005408,0.006016,0.005184,0.06544,0.005728
+1077,808.847,1.23633,0.334432,0.004704,0.225312,0.006112,0.005504,0.004736,0.006144,0.006144,0.065536,0.01024
+1078,1439.97,0.694458,0.3192,0.006144,0.214304,0.004832,0.005664,0.004608,0.006112,0.006144,0.065536,0.005856
+1079,1238.02,0.807739,0.306208,0.006016,0.200832,0.005664,0.004576,0.00608,0.006208,0.006144,0.065056,0.005632
+1080,1626.04,0.61499,0.303424,0.004768,0.200704,0.006016,0.004224,0.006144,0.006144,0.005984,0.063648,0.005792
+1081,1297.23,0.770874,0.310656,0.00608,0.206272,0.004736,0.005728,0.004576,0.00608,0.00624,0.06544,0.005504
+1082,1461.81,0.684082,0.311328,0.00496,0.204736,0.00528,0.005024,0.00608,0.006016,0.005856,0.067872,0.005504
+1083,1310.51,0.763062,0.3072,0.006176,0.20272,0.005376,0.004864,0.005568,0.005952,0.004896,0.065504,0.006144
+1084,1441.75,0.693604,0.308576,0.005728,0.202528,0.004736,0.00576,0.004576,0.007616,0.006016,0.066112,0.005504
+1085,702.874,1.42273,0.3152,0.007936,0.207104,0.00608,0.005216,0.005088,0.006144,0.005792,0.065888,0.005952
+1086,983.906,1.01636,0.311168,0.006144,0.2048,0.006144,0.005216,0.005024,0.006144,0.005888,0.065792,0.006016
+1087,1217.06,0.821655,0.303456,0.005568,0.198784,0.004896,0.005536,0.004704,0.006144,0.006144,0.065536,0.006144
+1088,1641.68,0.609131,0.305152,0.005696,0.199104,0.006048,0.005216,0.00512,0.006144,0.005984,0.066784,0.005056
+1089,1323.64,0.755493,0.303168,0.006144,0.198656,0.005824,0.004416,0.006144,0.005888,0.005792,0.065696,0.004608
+1090,1562.17,0.640137,0.297024,0.006016,0.198016,0.004864,0.005632,0.004608,0.006016,0.005824,0.061472,0.004576
+1091,1300.73,0.768799,0.29936,0.005568,0.199584,0.005472,0.004768,0.005824,0.00624,0.00608,0.0608,0.005024
+1092,1464.69,0.682739,0.30688,0.0056,0.203456,0.004384,0.006144,0.006176,0.006112,0.006144,0.06336,0.005504
+1093,641.052,1.55994,0.317568,0.007744,0.213504,0.005344,0.004896,0.005728,0.005984,0.00656,0.0632,0.004608
+1094,1154.29,0.866333,0.307232,0.00608,0.203904,0.005056,0.00544,0.0048,0.006144,0.006144,0.063488,0.006176
+1095,1279.2,0.781738,0.29744,0.004704,0.196544,0.005568,0.004672,0.005984,0.00592,0.005792,0.062176,0.00608
+1096,954.334,1.04785,0.319424,0.0056,0.218912,0.004864,0.005632,0.004608,0.006144,0.006144,0.06144,0.00608
+1097,1516.48,0.659424,0.307264,0.005568,0.20688,0.004704,0.00576,0.004576,0.006048,0.006144,0.062784,0.0048
+1098,1364.65,0.732788,0.301248,0.0056,0.20144,0.005632,0.004608,0.005984,0.005824,0.005792,0.061792,0.004576
+1099,1468.89,0.680786,0.30768,0.00592,0.20672,0.004896,0.0056,0.004672,0.006112,0.005984,0.0632,0.004576
+1100,1399.39,0.7146,0.307392,0.0056,0.203744,0.005568,0.004672,0.005952,0.006336,0.006144,0.063488,0.005888
+1101,1143.34,0.874634,0.518336,0.004928,0.413696,0.008192,0.005408,0.004832,0.006144,0.006144,0.063456,0.005536
+1102,936.443,1.06787,0.534528,0.006176,0.432096,0.005408,0.004832,0.005792,0.006048,0.005984,0.063424,0.004768
+1103,1169.78,0.854858,0.304672,0.004704,0.202656,0.005152,0.005088,0.005376,0.006272,0.006048,0.063872,0.005504
+1104,1392.01,0.718384,0.29696,0.005664,0.19504,0.005632,0.004608,0.0056,0.005952,0.005856,0.063808,0.0048
+1105,1324.07,0.755249,0.301728,0.004704,0.198656,0.005504,0.004736,0.005952,0.006336,0.006144,0.06512,0.004576
+1106,1344.27,0.743896,0.303104,0.006144,0.196608,0.005504,0.004736,0.006144,0.006144,0.006144,0.066976,0.004704
+1107,1535.81,0.651123,0.31744,0.005824,0.196224,0.0048,0.005696,0.022976,0.006016,0.005824,0.063936,0.006144
+1108,1385.42,0.721802,0.303776,0.004768,0.200544,0.005312,0.005088,0.005568,0.006112,0.005984,0.064256,0.006144
+1109,1339.66,0.74646,0.311776,0.004992,0.204416,0.00448,0.005984,0.00544,0.00496,0.006144,0.069632,0.005728
+1110,740.553,1.35034,0.316576,0.008096,0.204896,0.00592,0.00432,0.006176,0.006112,0.006112,0.069408,0.005536
+1111,967.864,1.0332,0.30752,0.005568,0.199424,0.005312,0.005056,0.0056,0.00624,0.005824,0.068384,0.006112
+1112,1283.01,0.779419,0.303104,0.005952,0.198848,0.00528,0.004672,0.00544,0.005088,0.006144,0.065536,0.006144
+1113,1566.95,0.638184,0.30768,0.004672,0.197664,0.004992,0.005504,0.004768,0.006112,0.006144,0.072864,0.00496
+1114,1332.9,0.750244,0.299648,0.004768,0.196608,0.005792,0.004416,0.005888,0.006048,0.005984,0.06544,0.004704
+1115,673.906,1.48389,0.576128,0.005728,0.472,0.00608,0.00416,0.006144,0.006016,0.005824,0.065568,0.004608
+1116,1268.11,0.788574,0.346144,0.0056,0.24208,0.00528,0.00512,0.005568,0.005888,0.004928,0.065536,0.006144
+1117,1067.64,0.936646,0.50176,0.008192,0.396416,0.004992,0.005536,0.004704,0.006144,0.006144,0.063488,0.006144
+1118,1165.13,0.858276,0.33376,0.005568,0.231648,0.0056,0.005088,0.005984,0.006304,0.006144,0.06144,0.005984
+1119,1040.12,0.961426,0.304224,0.005888,0.202016,0.005088,0.005408,0.004832,0.006144,0.006144,0.0632,0.005504
+1120,1554.46,0.643311,0.3016,0.00512,0.199712,0.005056,0.005408,0.004832,0.006144,0.006144,0.063488,0.005696
+1121,1307.58,0.764771,0.301344,0.005568,0.197472,0.006048,0.005472,0.004896,0.006112,0.006144,0.06352,0.006112
+1122,1452.48,0.688477,0.30448,0.006144,0.200704,0.006144,0.005376,0.004896,0.006112,0.006016,0.063584,0.005504
+1123,1330.73,0.751465,0.298848,0.006144,0.197696,0.005056,0.00544,0.006592,0.005632,0.005984,0.06032,0.005984
+1124,1505.05,0.664429,0.305152,0.005728,0.2048,0.004512,0.005984,0.004288,0.006112,0.006144,0.06144,0.006144
+1125,1304.67,0.766479,0.303296,0.005568,0.200896,0.00448,0.005984,0.00544,0.006016,0.005184,0.065056,0.004672
+1126,719.417,1.39001,0.312128,0.006976,0.2048,0.006144,0.005216,0.006112,0.005152,0.006048,0.06672,0.00496
+1127,972.806,1.02795,0.303104,0.006144,0.2,0.0048,0.005952,0.005408,0.005152,0.006016,0.064896,0.004736
+1128,1531.79,0.652832,0.303136,0.006112,0.19872,0.005504,0.004704,0.00592,0.006368,0.006144,0.064672,0.004992
+1129,1281.6,0.780273,0.299008,0.005984,0.196768,0.005952,0.004288,0.006144,0.00608,0.005824,0.0632,0.004768
+1130,1558.9,0.641479,0.303104,0.004704,0.202144,0.004608,0.006144,0.005888,0.006112,0.005888,0.061984,0.005632
+1131,1285.22,0.778076,0.29616,0.005824,0.196928,0.005312,0.004928,0.005696,0.005632,0.005056,0.06128,0.005504
+1132,1485.4,0.673218,0.305152,0.006144,0.202656,0.00528,0.005056,0.006144,0.00608,0.006208,0.06144,0.006144
+1133,792.8,1.26135,0.2992,0.005568,0.200512,0.005056,0.00544,0.004832,0.006112,0.006144,0.060704,0.004832
+1134,806.696,1.23962,0.325632,0.009216,0.223648,0.004704,0.005792,0.004608,0.005984,0.00736,0.058176,0.006144
+1135,1079.6,0.92627,0.300704,0.006144,0.200704,0.006144,0.005216,0.006784,0.005632,0.005984,0.058304,0.005792
+1136,1524.09,0.656128,0.296992,0.005792,0.200384,0.004768,0.005728,0.004576,0.00608,0.006144,0.057344,0.006176
+1137,1292.73,0.77356,0.296992,0.006144,0.196608,0.00544,0.005856,0.00512,0.006112,0.00608,0.06096,0.004672
+1138,1449.91,0.689697,0.301056,0.005632,0.1992,0.005728,0.00448,0.006144,0.006144,0.006144,0.061472,0.006112
+1139,1318.53,0.758423,0.296864,0.004896,0.198464,0.004288,0.006144,0.005472,0.004768,0.006176,0.06112,0.005536
+1140,1575.38,0.634766,0.298624,0.005632,0.198432,0.005088,0.005376,0.004864,0.006144,0.006112,0.061472,0.005504
+1141,1222.14,0.818237,0.306272,0.005696,0.201152,0.005696,0.004544,0.006144,0.005952,0.00576,0.065824,0.005504
+1142,633.467,1.57861,0.319488,0.008192,0.212416,0.004672,0.005696,0.004576,0.006112,0.006144,0.066656,0.005024
+1143,972.229,1.02856,0.30528,0.005024,0.198656,0.006048,0.004192,0.006144,0.006144,0.005888,0.06768,0.005504
+1144,1542.75,0.648193,0.305088,0.005568,0.197632,0.00608,0.005216,0.005088,0.006112,0.005984,0.067776,0.005632
+1145,1258.95,0.794312,0.302848,0.006144,0.196384,0.00432,0.006144,0.004224,0.006016,0.006144,0.067584,0.005888
+1146,1540.72,0.649048,0.3072,0.006144,0.19984,0.00496,0.005536,0.006048,0.005824,0.00512,0.067584,0.006144
+1147,1309.88,0.763428,0.303872,0.004864,0.197792,0.00496,0.005504,0.00576,0.005248,0.006016,0.067584,0.006144
+1148,1468.36,0.68103,0.310016,0.004864,0.202752,0.005632,0.004608,0.006144,0.006176,0.006112,0.068704,0.005024
+1149,1208.97,0.827148,0.309568,0.005568,0.2016,0.005344,0.004896,0.006144,0.006144,0.005984,0.069248,0.00464
+1150,479.148,2.08704,0.324352,0.006944,0.212992,0.005792,0.004448,0.006144,0.006144,0.006144,0.069632,0.006112
+1151,1225.43,0.81604,0.31376,0.005568,0.2056,0.005504,0.004928,0.0056,0.005856,0.004928,0.069632,0.006144
+1152,1477.63,0.676758,0.308576,0.005728,0.203168,0.006144,0.005216,0.005024,0.006144,0.006144,0.065536,0.005472
+1153,1402.5,0.713013,0.305664,0.005568,0.201696,0.006144,0.00544,0.0048,0.006144,0.006176,0.065088,0.004608
+1154,1456.36,0.686646,0.305216,0.005568,0.201376,0.00544,0.004768,0.006144,0.006144,0.005984,0.063648,0.006144
+1155,1404.42,0.712036,0.2992,0.005536,0.200576,0.005024,0.005536,0.004704,0.006144,0.006176,0.060576,0.004928
+1156,1362.38,0.734009,0.311296,0.006176,0.202016,0.0048,0.005504,0.004736,0.006176,0.006112,0.069632,0.006144
+1157,1144.29,0.873901,0.542272,0.006144,0.432128,0.008,0.004384,0.006048,0.006144,0.006144,0.067584,0.005696
+1158,895.007,1.11731,0.318048,0.004704,0.210944,0.005344,0.004896,0.006144,0.006144,0.00608,0.067648,0.006144
+1159,1098.86,0.910034,0.301056,0.006144,0.198656,0.005376,0.004864,0.00576,0.005856,0.005984,0.063616,0.0048
+1160,1548.58,0.645752,0.299584,0.004768,0.198656,0.006144,0.005312,0.004928,0.006144,0.005888,0.061696,0.006048
+1161,1348.03,0.741821,0.303008,0.006144,0.196288,0.004416,0.00608,0.005408,0.004896,0.006144,0.067584,0.006048
+1162,1458.17,0.685791,0.303424,0.004704,0.200608,0.00528,0.004992,0.006112,0.006144,0.005824,0.063808,0.005952
+1163,1328.79,0.752563,0.30064,0.006048,0.196288,0.004512,0.005984,0.005728,0.00608,0.005888,0.064384,0.005728
+1164,1546.24,0.646729,0.298432,0.006144,0.196384,0.00432,0.006144,0.00544,0.006048,0.006016,0.062368,0.005568
+1165,1317.25,0.759155,0.305024,0.005632,0.198592,0.004704,0.00576,0.005888,0.005888,0.005024,0.067552,0.005984
+1166,1411.93,0.708252,0.305472,0.0056,0.201568,0.005888,0.004352,0.006144,0.005984,0.005856,0.065472,0.004608
+1167,756.138,1.32251,0.316064,0.006784,0.21264,0.004448,0.006016,0.005408,0.004992,0.006112,0.064864,0.0048
+1168,1198.54,0.834351,0.30992,0.0048,0.204608,0.00528,0.00512,0.006144,0.006144,0.006176,0.066816,0.004832
+1169,1018.91,0.981445,0.305088,0.00496,0.198656,0.005632,0.0064,0.005472,0.005184,0.005984,0.067296,0.005504
+1170,902.501,1.10803,0.331776,0.006144,0.22528,0.00608,0.005184,0.006144,0.005152,0.007616,0.065536,0.00464
+1171,1451.45,0.688965,0.317696,0.005536,0.21168,0.00528,0.005088,0.005536,0.006048,0.006016,0.067776,0.004736
+1172,1258.95,0.794312,0.332352,0.004736,0.227328,0.00608,0.005184,0.00512,0.006144,0.006176,0.065504,0.00608
+1173,1336.38,0.748291,0.333856,0.00608,0.228768,0.004768,0.005536,0.004704,0.007872,0.005856,0.065632,0.00464
+1174,1350.48,0.740479,0.526432,0.005024,0.415744,0.008192,0.00576,0.004576,0.006048,0.006144,0.069408,0.005536
+1175,833.198,1.2002,0.401248,0.005568,0.2968,0.004992,0.005504,0.004736,0.006176,0.006112,0.065536,0.005824
+1176,1049.31,0.953003,0.306976,0.005664,0.201184,0.00608,0.005216,0.005088,0.006144,0.006144,0.065536,0.00592
+1177,1491.35,0.670532,0.305664,0.004672,0.201856,0.004928,0.005536,0.004704,0.006144,0.006144,0.065536,0.006144
+1178,1257.6,0.795166,0.309248,0.006176,0.199872,0.004896,0.005632,0.004608,0.006144,0.006144,0.070944,0.004832
+1179,1465.47,0.682373,0.312064,0.005024,0.200672,0.005952,0.006368,0.006112,0.005984,0.00608,0.069856,0.006016
+1180,1319.16,0.758057,0.299008,0.006144,0.195872,0.004832,0.005664,0.004576,0.006144,0.006144,0.064576,0.005056
+1181,1415.59,0.706421,0.31744,0.005568,0.215136,0.004576,0.006112,0.005376,0.006112,0.004928,0.064736,0.004896
+1182,1303.63,0.76709,0.316928,0.005664,0.211872,0.006144,0.005408,0.004864,0.006112,0.006144,0.065504,0.005216
+1183,734.774,1.36096,0.323584,0.008,0.215232,0.005728,0.004512,0.006112,0.005856,0.00624,0.06688,0.005024
+1184,1163.8,0.859253,0.30928,0.005728,0.204384,0.004928,0.005536,0.004704,0.006144,0.006144,0.066624,0.005088
+1185,1448.89,0.690186,0.303136,0.005568,0.197216,0.005632,0.004608,0.006016,0.005984,0.005888,0.0672,0.005024
+1186,1513.39,0.660767,0.301472,0.0056,0.198944,0.004768,0.005888,0.004576,0.00592,0.006144,0.0648,0.004832
+1187,1340.09,0.746216,0.301376,0.0048,0.198656,0.006144,0.004096,0.005984,0.006016,0.006016,0.063904,0.00576
+1188,1500.37,0.666504,0.309408,0.00496,0.201984,0.004864,0.005632,0.004608,0.006176,0.005664,0.070016,0.005504
+1189,985.919,1.01428,0.305568,0.005568,0.198912,0.004832,0.00608,0.005728,0.006624,0.006144,0.067072,0.004608
+1190,949.247,1.05347,0.35712,0.005024,0.249792,0.005824,0.00448,0.006176,0.00592,0.006016,0.067904,0.005984
+1191,433.416,2.30725,0.367552,0.007104,0.263296,0.004992,0.005504,0.004736,0.006144,0.006144,0.064544,0.005088
+1192,1405.87,0.711304,0.31968,0.0048,0.215072,0.00576,0.004448,0.006144,0.006144,0.006144,0.065536,0.005632
+1193,1354.05,0.738525,0.311168,0.004832,0.2048,0.005696,0.004544,0.00608,0.006208,0.006144,0.067328,0.005536
+1194,1408.04,0.710205,0.31872,0.006144,0.208736,0.005312,0.00512,0.005312,0.00608,0.00496,0.071552,0.005504
+1195,1166.29,0.857422,0.321504,0.006144,0.210944,0.005792,0.004448,0.006144,0.006144,0.006144,0.069632,0.006112
+1196,1596.57,0.626343,0.31872,0.0056,0.211456,0.005312,0.005056,0.005536,0.005824,0.005024,0.069376,0.005536
+1197,1382.62,0.723267,0.311232,0.005664,0.203264,0.00576,0.005792,0.004832,0.006112,0.006112,0.067616,0.00608
+1198,1153.32,0.867065,0.526272,0.005568,0.41632,0.007584,0.005024,0.0056,0.006112,0.005856,0.068448,0.00576
+1199,948.697,1.05408,0.5096,0.006144,0.401408,0.005696,0.004544,0.00608,0.005888,0.005856,0.068192,0.005792
+1200,1136.2,0.880127,0.308832,0.004704,0.20208,0.004704,0.006144,0.005568,0.006048,0.006016,0.068096,0.005472
+1201,1418.53,0.704956,0.304864,0.004704,0.19808,0.004576,0.00592,0.004544,0.006944,0.00512,0.069472,0.005504
+1202,1301.14,0.768555,0.304576,0.006144,0.19664,0.005824,0.004384,0.00608,0.005888,0.00592,0.068128,0.005568
+1203,1555.34,0.642944,0.305888,0.00512,0.198656,0.005984,0.004256,0.006144,0.006144,0.006048,0.06768,0.005856
+1204,1347.15,0.74231,0.303104,0.006176,0.19584,0.004832,0.005696,0.004576,0.006112,0.006176,0.068768,0.004928
+1205,1368.07,0.730957,0.31456,0.006144,0.206848,0.005344,0.004896,0.00576,0.006432,0.005792,0.06784,0.005504
+1206,1350.92,0.740234,0.315328,0.005888,0.208736,0.004512,0.005984,0.005408,0.006528,0.00464,0.067552,0.00608
+1207,756.627,1.32166,0.318368,0.007072,0.208096,0.004896,0.005568,0.004672,0.007424,0.006112,0.069504,0.005024
+1208,569.284,1.75659,0.321536,0.0056,0.208672,0.004864,0.005632,0.004608,0.006144,0.006144,0.073728,0.006144
+1209,1664.36,0.60083,0.314592,0.006144,0.202752,0.006144,0.005248,0.004992,0.006144,0.005888,0.071744,0.005536
+1210,1286.43,0.777344,0.3112,0.0056,0.199456,0.005728,0.005728,0.00496,0.006112,0.006112,0.071712,0.005792
+1211,1505.33,0.664307,0.31024,0.005088,0.202688,0.00528,0.005024,0.005376,0.005984,0.005024,0.070656,0.00512
+1212,958.241,1.04358,0.340864,0.004992,0.229376,0.005728,0.004512,0.006144,0.006048,0.005856,0.07312,0.005088
+1213,1590.37,0.628784,0.310464,0.00608,0.198752,0.005632,0.004576,0.006112,0.005984,0.005888,0.071904,0.005536
+1214,739.951,1.35144,0.30528,0.007712,0.19312,0.006112,0.005216,0.005056,0.006208,0.00608,0.070784,0.004992
+1215,1099.89,0.90918,0.303168,0.0048,0.196448,0.004256,0.006144,0.005248,0.005184,0.005952,0.069632,0.005504
+1216,1318.74,0.758301,0.305152,0.006144,0.192512,0.005888,0.004416,0.00608,0.00608,0.005984,0.071904,0.006144
+1217,1450.42,0.689453,0.303392,0.004736,0.19456,0.005536,0.004704,0.005728,0.006048,0.006016,0.070272,0.005792
+1218,1331.6,0.750977,0.301696,0.004768,0.194528,0.00576,0.00448,0.005984,0.00608,0.005984,0.067968,0.006144
+1219,1505.88,0.664062,0.304512,0.00608,0.19632,0.005824,0.004768,0.005984,0.005888,0.005824,0.06832,0.005504
+1220,989.133,1.01099,0.301248,0.005568,0.19328,0.005664,0.004576,0.006144,0.006144,0.005792,0.06896,0.00512
+1221,1268.7,0.788208,0.322272,0.004928,0.213024,0.005856,0.004352,0.006144,0.006144,0.006144,0.069632,0.006048
+1222,785.427,1.27319,0.30944,0.00768,0.197312,0.005856,0.004384,0.007232,0.005056,0.006144,0.069632,0.006144
+1223,1058.95,0.944336,0.496992,0.00576,0.377216,0.00608,0.005184,0.015232,0.006272,0.00608,0.069664,0.005504
+1224,1253.75,0.797607,0.304864,0.004704,0.19456,0.00592,0.00432,0.006176,0.005984,0.005856,0.071808,0.005536
+1225,1374.27,0.727661,0.305152,0.005696,0.194592,0.004512,0.005408,0.004864,0.006112,0.006112,0.071712,0.006144
+1226,556.031,1.79846,0.418624,0.004928,0.298848,0.005312,0.005088,0.005536,0.006016,0.012576,0.074176,0.006144
+1227,1390.36,0.719238,0.317376,0.005568,0.211904,0.00528,0.005024,0.0056,0.005888,0.004896,0.067584,0.005632
+1228,1569.95,0.636963,0.306752,0.006144,0.198656,0.006144,0.005248,0.004992,0.006112,0.005888,0.067872,0.005696
+1229,796.268,1.25586,0.309248,0.007776,0.201152,0.006016,0.005216,0.00512,0.006176,0.006112,0.066624,0.005056
+1230,1276.01,0.783691,0.505952,0.028768,0.378784,0.005536,0.004704,0.006144,0.006144,0.006144,0.065152,0.004576
+1231,1204.71,0.830078,0.299552,0.004704,0.196544,0.00608,0.005216,0.005088,0.006144,0.005824,0.063808,0.006144
+1232,1398.43,0.715088,0.305152,0.006016,0.194432,0.004352,0.006144,0.005408,0.006048,0.005984,0.072128,0.00464
+1233,1391.78,0.718506,0.306208,0.005792,0.194912,0.00576,0.00448,0.006144,0.005888,0.006016,0.071712,0.005504
+1234,1330.52,0.751587,0.30528,0.0056,0.195232,0.005664,0.004576,0.006144,0.006144,0.006144,0.069632,0.006144
+1235,1534.37,0.651733,0.30608,0.005024,0.197952,0.0048,0.005664,0.004608,0.006112,0.006176,0.071168,0.004576
+1236,1275.22,0.78418,0.304064,0.005056,0.196,0.004704,0.00576,0.00464,0.005984,0.006144,0.07088,0.004896
+1237,1074.92,0.930298,0.503808,0.008192,0.393216,0.005696,0.004544,0.00608,0.005952,0.006016,0.067968,0.006144
+1238,1124.19,0.889526,0.299008,0.006144,0.19632,0.004384,0.006112,0.00528,0.005184,0.005952,0.064608,0.005024
+1239,1137.15,0.879395,0.305152,0.006144,0.198656,0.005312,0.004928,0.005792,0.00592,0.005984,0.067584,0.004832
+1240,1174.31,0.851562,0.303328,0.004864,0.196576,0.006176,0.005472,0.004768,0.006144,0.006144,0.067584,0.0056
+1241,1067.5,0.936768,0.303488,0.005536,0.193504,0.005536,0.004704,0.006048,0.005856,0.00592,0.07024,0.006144
+1242,1473.91,0.678467,0.304672,0.005568,0.199424,0.005408,0.004832,0.006144,0.006048,0.006016,0.065728,0.005504
+1243,1504.78,0.664551,0.304288,0.005664,0.197088,0.005952,0.004288,0.006144,0.006144,0.006144,0.06736,0.005504
+1244,1216.51,0.822021,0.311328,0.006144,0.206848,0.005312,0.004928,0.005728,0.005984,0.005984,0.065664,0.004736
+1245,1264,0.791138,0.3184,0.005056,0.21504,0.005344,0.004896,0.005728,0.00608,0.00608,0.065216,0.00496
+1246,794.954,1.25793,0.308608,0.008192,0.20064,0.00528,0.005024,0.005632,0.006016,0.006016,0.066304,0.005504
+1247,1482.45,0.674561,0.489472,0.012288,0.378272,0.004704,0.005824,0.00544,0.005184,0.00608,0.065536,0.006144
+1248,1118.67,0.893921,0.300576,0.00608,0.196672,0.005696,0.004544,0.005952,0.006016,0.005888,0.064064,0.005664
+1249,1367.16,0.731445,0.299168,0.0048,0.19664,0.005696,0.005856,0.0048,0.006176,0.006112,0.063488,0.0056
+1250,1305.91,0.765747,0.297696,0.004832,0.196032,0.004672,0.00592,0.005408,0.005056,0.006144,0.063488,0.006144
+1251,1540.72,0.649048,0.304864,0.006144,0.195744,0.00496,0.005632,0.00464,0.006112,0.006144,0.069632,0.005856
+1252,1447.09,0.69104,0.29696,0.005632,0.193024,0.005408,0.005856,0.005152,0.006112,0.006112,0.06352,0.006144
+1253,1384.02,0.722534,0.299008,0.006048,0.196512,0.004288,0.006144,0.005568,0.005856,0.00496,0.06496,0.004672
+1254,1195.91,0.836182,0.524288,0.006144,0.417024,0.006944,0.005824,0.005408,0.00512,0.006144,0.065536,0.006144
+1255,962.18,1.03931,0.30352,0.005568,0.194944,0.004736,0.005728,0.006112,0.005984,0.006016,0.06832,0.006112
+1256,1106.73,0.903564,0.314656,0.006144,0.200032,0.004768,0.005728,0.004544,0.006112,0.006144,0.07568,0.005504
+1257,1293.13,0.773315,0.317472,0.006144,0.197728,0.005024,0.005536,0.004704,0.006176,0.006112,0.081088,0.00496
+1258,1415.83,0.706299,0.311296,0.006144,0.193856,0.0048,0.005696,0.004608,0.00608,0.006144,0.07888,0.005088
+1259,1404.9,0.711792,0.313568,0.005568,0.19456,0.004896,0.005632,0.004608,0.006144,0.006144,0.079872,0.006144
+1260,1370.59,0.729614,0.312736,0.005984,0.194656,0.00528,0.005024,0.006144,0.005952,0.005856,0.078304,0.005536
+1261,1142.86,0.875,0.360512,0.005792,0.2288,0.005088,0.005408,0.004864,0.006112,0.006144,0.093312,0.004992
+1262,1563.36,0.639648,0.326304,0.004768,0.200032,0.004768,0.006144,0.006176,0.005952,0.005824,0.086496,0.006144
+1263,1222.5,0.817993,0.555904,0.004992,0.428032,0.008096,0.004352,0.005984,0.006144,0.005824,0.086336,0.006144
+1264,785.201,1.27356,0.325664,0.005728,0.192928,0.004096,0.006016,0.004224,0.006144,0.0072,0.094688,0.00464
+1265,1317.04,0.759277,0.31152,0.005568,0.194496,0.00496,0.005376,0.004896,0.006112,0.006144,0.079136,0.004832
+1266,1450.42,0.689453,0.31744,0.006144,0.197728,0.005024,0.0056,0.00464,0.006144,0.006144,0.079936,0.00608
+1267,1391.54,0.718628,0.31408,0.004832,0.196032,0.004672,0.005824,0.004576,0.006016,0.006112,0.081056,0.00496
+1268,1339,0.746826,0.315392,0.006144,0.194592,0.005696,0.004512,0.006144,0.005984,0.005984,0.08128,0.005056
+1269,1334.2,0.749512,0.312672,0.006144,0.193728,0.004928,0.005568,0.006016,0.006048,0.005984,0.07872,0.005536
+1270,1418.77,0.704834,0.315168,0.004704,0.199712,0.004992,0.005504,0.004736,0.006144,0.006144,0.077728,0.005504
+1271,1269.09,0.787964,0.577536,0.005792,0.441856,0.007008,0.005632,0.0128,0.007232,0.005056,0.086336,0.005824
+1272,834.046,1.19897,0.310112,0.00496,0.19456,0.005568,0.004672,0.005952,0.005824,0.005824,0.076608,0.006144
+1273,1293.34,0.773193,0.516896,0.026944,0.3832,0.00544,0.005056,0.005536,0.005888,0.00496,0.073728,0.006144
+1274,1180.74,0.846924,0.306944,0.006112,0.194592,0.00608,0.005216,0.005088,0.006176,0.006112,0.07168,0.005888
+1275,1210.76,0.825928,0.313376,0.006144,0.194368,0.005376,0.005056,0.005568,0.0064,0.005792,0.079744,0.004928
+1276,1728.27,0.578613,0.307232,0.005568,0.19312,0.00608,0.004288,0.006016,0.005888,0.00576,0.075584,0.004928
+1277,1335.94,0.748535,0.3072,0.005632,0.19408,0.005056,0.005216,0.005056,0.006144,0.006176,0.075328,0.004512
+1278,1463.12,0.683472,0.3072,0.005664,0.197088,0.005408,0.004832,0.005632,0.006048,0.005984,0.071584,0.00496
+1279,1340.75,0.74585,0.308096,0.005024,0.198656,0.005952,0.005312,0.005088,0.006144,0.006144,0.070784,0.004992
+1280,1121.73,0.891479,0.512032,0.008192,0.393216,0.006144,0.005248,0.005024,0.006112,0.006144,0.075776,0.006176
+1281,439.155,2.2771,0.390464,0.005568,0.271104,0.005984,0.004256,0.006176,0.006112,0.006016,0.079744,0.005504
+1282,1042.37,0.959351,0.343552,0.005568,0.231648,0.004768,0.005728,0.004576,0.006112,0.006112,0.073536,0.005504
+1283,1633.17,0.612305,0.320576,0.006144,0.206816,0.00528,0.004992,0.005504,0.006656,0.005856,0.073856,0.005472
+1284,1072.11,0.932739,0.315328,0.004704,0.202176,0.004672,0.005824,0.005536,0.005024,0.007552,0.07408,0.00576
+1285,1702.06,0.587524,0.315392,0.006144,0.200736,0.005952,0.005312,0.005088,0.006176,0.006112,0.073728,0.006144
+1286,1197.84,0.834839,0.337984,0.005568,0.225408,0.004576,0.00592,0.005408,0.006688,0.006016,0.073376,0.005024
+1287,1026.44,0.974243,0.505856,0.008192,0.392736,0.004576,0.005952,0.005408,0.005184,0.005984,0.07168,0.006144
+1288,1242.72,0.804688,0.33792,0.00592,0.227168,0.00448,0.006016,0.005408,0.005088,0.006048,0.071648,0.006144
+1289,1007.63,0.992432,0.342016,0.00592,0.231648,0.005312,0.004928,0.005728,0.005984,0.005952,0.0704,0.006144
+1290,1469.42,0.680542,0.321216,0.004704,0.212448,0.004608,0.005888,0.005408,0.005184,0.006048,0.071392,0.005536
+1291,1222.69,0.817871,0.314432,0.006016,0.202048,0.004928,0.005568,0.004672,0.006176,0.006112,0.073408,0.005504
+1292,1544.2,0.647583,0.311616,0.005568,0.203648,0.005568,0.004672,0.005952,0.005856,0.006016,0.069472,0.004864
+1293,1260.89,0.793091,0.312928,0.005888,0.20096,0.006144,0.005344,0.004896,0.006144,0.006144,0.07168,0.005728
+1294,1394.62,0.717041,0.311328,0.005568,0.20336,0.006048,0.005216,0.00512,0.006144,0.006144,0.068928,0.0048
+1295,1190.87,0.839722,0.31712,0.0056,0.20368,0.0056,0.00464,0.005984,0.006304,0.006144,0.0736,0.005568
+1296,1504.78,0.664551,0.315808,0.005568,0.20368,0.00528,0.005056,0.005632,0.00464,0.006112,0.073728,0.006112
+1297,743.713,1.3446,0.53248,0.007456,0.40624,0.005312,0.004928,0.005728,0.005824,0.004832,0.08736,0.0048
+1298,637.262,1.56921,0.382272,0.006016,0.270464,0.005344,0.004896,0.005728,0.005856,0.004832,0.0736,0.005536
+1299,1105.98,0.904175,0.362496,0.006144,0.234912,0.004704,0.005792,0.004576,0.013504,0.005984,0.080736,0.006144
+1300,1310.93,0.762817,0.342016,0.006176,0.229376,0.005408,0.0048,0.005856,0.006016,0.00608,0.072192,0.006112
+1301,1300.52,0.768921,0.325952,0.005536,0.215072,0.00496,0.005696,0.004608,0.00608,0.007616,0.07168,0.004704
+1302,1330.95,0.751343,0.311104,0.0056,0.201056,0.004288,0.006144,0.00544,0.00656,0.005824,0.07024,0.005952
+1303,775.611,1.28931,0.339968,0.008192,0.221216,0.005952,0.004256,0.006144,0.006176,0.006112,0.075776,0.006144
+1304,1293.75,0.772949,0.331072,0.00608,0.21648,0.004768,0.005728,0.004576,0.006112,0.006112,0.075712,0.005504
+1305,1106.58,0.903687,0.31344,0.006144,0.20624,0.004704,0.005792,0.004576,0.006016,0.007264,0.068096,0.004608
+1306,1328.58,0.752686,0.313344,0.005888,0.203008,0.0056,0.00464,0.005984,0.005888,0.005824,0.070368,0.006144
+1307,1493.26,0.669678,0.311904,0.004704,0.203968,0.004928,0.006144,0.00544,0.005984,0.006016,0.070144,0.004576
+1308,1405.39,0.711548,0.3072,0.006144,0.197984,0.004768,0.005728,0.004576,0.00608,0.006144,0.071168,0.004608
+1309,1305.5,0.765991,0.3072,0.005952,0.196832,0.005952,0.004256,0.006144,0.006144,0.006048,0.070944,0.004928
+1310,1346.48,0.742676,0.308448,0.005888,0.198176,0.004832,0.006144,0.005568,0.005952,0.004864,0.071104,0.00592
+1311,1397.24,0.715698,0.526336,0.00576,0.415328,0.006944,0.005696,0.004576,0.006112,0.006144,0.071168,0.004608
+1312,854.223,1.17065,0.31744,0.005568,0.202496,0.004928,0.005376,0.006336,0.00608,0.006048,0.074464,0.006144
+1313,1034.74,0.966431,0.315872,0.004768,0.200704,0.005472,0.004768,0.005792,0.00608,0.006016,0.07632,0.005952
+1314,1397.48,0.715576,0.31328,0.006144,0.196256,0.004448,0.006048,0.00608,0.005888,0.005792,0.076544,0.00608
+1315,1560.98,0.640625,0.31456,0.006112,0.196672,0.006112,0.005312,0.004928,0.006144,0.006144,0.0776,0.005536
+1316,769.491,1.29956,0.324768,0.006176,0.206528,0.005824,0.004704,0.005184,0.005056,0.00576,0.080064,0.005472
+1317,1632.2,0.612671,0.313408,0.005536,0.202656,0.004864,0.005728,0.004576,0.006112,0.006112,0.073056,0.004768
+1318,1285.22,0.778076,0.308384,0.006112,0.200096,0.004736,0.005728,0.004608,0.006048,0.006144,0.069408,0.005504
+1319,1416.08,0.706177,0.53248,0.006144,0.416864,0.007072,0.005568,0.004672,0.006144,0.006144,0.073728,0.006144
+1320,866.053,1.15466,0.314272,0.005056,0.201824,0.004992,0.005472,0.004768,0.006176,0.006112,0.0752,0.004672
+1321,999.878,1.00012,0.309728,0.0048,0.196608,0.005472,0.004768,0.006144,0.006176,0.006112,0.073728,0.00592
+1322,1423.71,0.702393,0.307008,0.006144,0.195904,0.0048,0.005952,0.005472,0.00496,0.006144,0.07168,0.005952
+1323,1496.53,0.668213,0.313312,0.0056,0.19712,0.00528,0.004992,0.005888,0.006048,0.0064,0.075904,0.00608
+1324,1397.71,0.715454,0.311232,0.004672,0.195712,0.004896,0.006016,0.00544,0.006016,0.005056,0.077824,0.0056
+1325,1357.42,0.736694,0.312768,0.006144,0.19456,0.006144,0.005344,0.004896,0.006144,0.006144,0.077824,0.005568
+1326,1345.6,0.743164,0.311648,0.005056,0.196288,0.004416,0.006048,0.005408,0.004928,0.006144,0.077344,0.006016
+1327,1343.17,0.744507,0.31264,0.005568,0.195296,0.005312,0.004928,0.006144,0.006144,0.006144,0.077568,0.005536
+1328,1382.38,0.723389,0.537376,0.004896,0.41568,0.007456,0.004896,0.00576,0.00608,0.006016,0.081888,0.004704
+1329,811.009,1.23303,0.312096,0.004896,0.197792,0.00496,0.005536,0.004704,0.006144,0.006144,0.077088,0.004832
+1330,1122.5,0.890869,0.313632,0.005568,0.19664,0.005088,0.005408,0.004832,0.006144,0.006144,0.077824,0.005984
+1331,1476.04,0.67749,0.308288,0.005728,0.196672,0.004448,0.006144,0.005664,0.006144,0.006016,0.071968,0.005504
+1332,1388.47,0.720215,0.305216,0.005568,0.195232,0.005568,0.00464,0.005888,0.006048,0.005952,0.071488,0.004832
+1333,1366.7,0.731689,0.3072,0.006144,0.194016,0.00464,0.005824,0.00608,0.006176,0.006016,0.073504,0.0048
+1334,1367.16,0.731445,0.305152,0.006144,0.193952,0.004704,0.005792,0.004608,0.006016,0.006112,0.071712,0.006112
+1335,879.725,1.13672,0.332704,0.004992,0.218944,0.004288,0.006144,0.005472,0.005888,0.005056,0.077344,0.004576
+1336,1523.24,0.656494,0.530432,0.006144,0.416992,0.006944,0.005696,0.004576,0.006112,0.006144,0.072896,0.004928
+1337,862.497,1.15942,0.312992,0.005568,0.199296,0.005376,0.004832,0.005792,0.005824,0.006016,0.074528,0.00576
+1338,1268.7,0.788208,0.49296,0.005728,0.381216,0.005376,0.004992,0.005632,0.005856,0.004896,0.073728,0.005536
+1339,1234.48,0.810059,0.309248,0.005728,0.195008,0.005792,0.005792,0.004768,0.006144,0.006144,0.074976,0.004896
+1340,1223.97,0.817017,0.305536,0.004832,0.19456,0.005952,0.00432,0.006112,0.005856,0.00576,0.072352,0.005792
+1341,1530.36,0.653442,0.306656,0.005952,0.194112,0.004736,0.005568,0.004704,0.006112,0.006144,0.073728,0.0056
+1342,1309.88,0.763428,0.303456,0.004544,0.194464,0.005664,0.004576,0.006048,0.005888,0.005824,0.07152,0.004928
+1343,1359.67,0.735474,0.310592,0.005536,0.193184,0.006144,0.005248,0.004992,0.006144,0.006144,0.077696,0.005504
+1344,1444.8,0.692139,0.316416,0.00512,0.200704,0.005632,0.004608,0.006144,0.006144,0.005952,0.077312,0.0048
+1345,751.422,1.33081,0.31472,0.008192,0.20016,0.00464,0.005856,0.005408,0.005216,0.006048,0.073664,0.005536
+1346,1263.61,0.791382,0.327552,0.005568,0.192928,0.004704,0.005376,0.004864,0.006144,0.006048,0.096352,0.005568
+1347,1230.03,0.812988,0.307776,0.00496,0.195584,0.00512,0.00544,0.0048,0.006144,0.006144,0.073728,0.005856
+1348,1412.9,0.707764,0.302752,0.00576,0.194144,0.004896,0.00608,0.00544,0.004864,0.006144,0.069632,0.005792
+1349,1366.47,0.731812,0.305056,0.004672,0.194432,0.005856,0.004384,0.006144,0.006144,0.006144,0.07168,0.0056
+1350,1307.58,0.764771,0.304832,0.006144,0.194272,0.004384,0.005984,0.004352,0.006048,0.006144,0.07168,0.005824
+1351,1446.07,0.691528,0.305152,0.006144,0.19456,0.006048,0.005344,0.004992,0.006144,0.006048,0.070816,0.005056
+1352,1375.42,0.727051,0.306432,0.005824,0.197952,0.00512,0.00544,0.0048,0.006144,0.006144,0.069504,0.005504
+1353,1306.12,0.765625,0.530624,0.005568,0.42224,0.006656,0.006016,0.005408,0.006016,0.004992,0.068928,0.0048
+1354,695.062,1.43872,0.32752,0.005568,0.219808,0.005792,0.004448,0.006144,0.005824,0.006144,0.067936,0.005856
+1355,993.692,1.00635,0.30208,0.0056,0.195104,0.006144,0.005344,0.004896,0.006144,0.006144,0.0672,0.005504
+1356,1247.45,0.801636,0.30096,0.0056,0.19264,0.004512,0.005824,0.004576,0.005984,0.006144,0.069632,0.006048
+1357,1679.03,0.595581,0.301824,0.004832,0.19456,0.005504,0.004736,0.005632,0.006016,0.005984,0.069888,0.004672
+1358,1353.83,0.738647,0.301024,0.005536,0.192416,0.0048,0.005664,0.004576,0.006144,0.006144,0.069632,0.006112
+1359,1449.4,0.689941,0.301792,0.004832,0.196608,0.005408,0.004832,0.005632,0.006048,0.006048,0.067552,0.004832
+1360,1363.52,0.733398,0.307936,0.004832,0.196608,0.006144,0.005312,0.006688,0.006016,0.006016,0.070176,0.006144
+1361,1388.95,0.719971,0.306784,0.004672,0.196608,0.005952,0.004256,0.006144,0.006144,0.006144,0.07136,0.005504
+1362,641.604,1.55859,0.305152,0.007872,0.19424,0.004736,0.0056,0.004832,0.005952,0.006144,0.069632,0.006144
+1363,1156.9,0.86438,0.305152,0.00576,0.194944,0.006016,0.004224,0.005824,0.005984,0.006016,0.07136,0.005024
+1364,1464.95,0.682617,0.303168,0.006176,0.194112,0.004512,0.005696,0.004608,0.006112,0.006112,0.071296,0.004544
+1365,1351.37,0.73999,0.306496,0.005888,0.196352,0.004608,0.005856,0.005696,0.005984,0.004992,0.07168,0.00544
+1366,1322.14,0.756348,0.305184,0.005888,0.194816,0.005408,0.004832,0.0056,0.006016,0.005984,0.070464,0.006176
+1367,1458.69,0.685547,0.30544,0.00496,0.194528,0.005248,0.004992,0.005472,0.006048,0.006016,0.072576,0.0056
+1368,1459.73,0.685059,0.307264,0.005568,0.194432,0.004864,0.005856,0.005472,0.005152,0.006048,0.07344,0.006432
+1369,1318.95,0.758179,0.309248,0.006144,0.19664,0.005568,0.00464,0.006144,0.006144,0.005984,0.07184,0.006144
+1370,750.527,1.3324,0.309504,0.00768,0.195328,0.005472,0.004768,0.005888,0.006016,0.006016,0.072192,0.006144
+1371,1219.59,0.819946,0.360448,0.006144,0.19456,0.005504,0.005824,0.005088,0.006112,0.006144,0.1024,0.028672
+1372,715.959,1.39673,0.389024,0.00576,0.258432,0.022176,0.0056,0.004992,0.00608,0.006176,0.07376,0.006048
+1373,1443.27,0.692871,0.313344,0.006112,0.198688,0.005984,0.004256,0.006144,0.006048,0.00592,0.074048,0.006144
+1374,1314.29,0.760864,0.3144,0.006144,0.196608,0.005952,0.00432,0.007392,0.005984,0.005056,0.07744,0.005504
+1375,1477.9,0.676636,0.308544,0.005984,0.194752,0.006016,0.004288,0.006048,0.006176,0.006112,0.073664,0.005504
+1376,1352.48,0.73938,0.33024,0.004704,0.214976,0.006112,0.005248,0.00608,0.005152,0.006048,0.075776,0.006144
+1377,1372.88,0.728394,0.31696,0.006144,0.195712,0.004992,0.006112,0.00544,0.005888,0.00512,0.081888,0.005664
+1378,725.405,1.37854,0.312,0.007008,0.196,0.004704,0.00576,0.004576,0.006048,0.006144,0.075776,0.005984
+1379,1416.81,0.705811,0.522272,0.004704,0.402528,0.005056,0.005504,0.004704,0.006144,0.006176,0.081888,0.005568
+1380,1004.17,0.99585,0.313376,0.00592,0.192736,0.005856,0.004384,0.006176,0.005952,0.005824,0.081728,0.0048
+1381,1545.08,0.647217,0.309248,0.005664,0.194112,0.005024,0.006144,0.005536,0.006016,0.005888,0.074752,0.006112
+1382,1355.84,0.737549,0.313792,0.005056,0.19456,0.005728,0.004512,0.0056,0.005984,0.005984,0.080736,0.005632
+1383,1457.65,0.686035,0.311296,0.005696,0.194816,0.004288,0.006144,0.006112,0.005856,0.005856,0.076384,0.006144
+1384,1189.66,0.840576,0.3104,0.005792,0.192864,0.006112,0.00528,0.004992,0.006144,0.006048,0.077696,0.005472
+1385,1622.5,0.616333,0.317216,0.005792,0.199008,0.005504,0.006432,0.004608,0.005984,0.006144,0.077824,0.00592
+1386,1062.79,0.940918,0.517728,0.008192,0.393184,0.005312,0.00496,0.005856,0.00608,0.006016,0.0824,0.005728
+1387,1139.68,0.877441,0.314176,0.004928,0.193952,0.004704,0.00576,0.00608,0.006016,0.005824,0.081824,0.005088
+1388,1072.53,0.932373,0.316832,0.005568,0.195552,0.006144,0.005824,0.004576,0.005984,0.006144,0.08112,0.00592
+1389,1281.2,0.780518,0.311296,0.006144,0.19376,0.004896,0.006144,0.005344,0.004928,0.006112,0.077824,0.006144
+1390,1413.14,0.707642,0.311296,0.006144,0.194368,0.004288,0.006144,0.006144,0.005984,0.005984,0.077504,0.004736
+1391,859.962,1.16284,0.332288,0.005088,0.210848,0.00416,0.004096,0.006144,0.012288,0.00608,0.077888,0.005696
+1392,1172.13,0.853149,0.3584,0.005792,0.239968,0.006144,0.005312,0.00496,0.006112,0.006144,0.077856,0.006112
+1393,1517.88,0.658813,0.320064,0.004704,0.20272,0.006144,0.005888,0.005536,0.006048,0.005056,0.077824,0.006144
+1394,1288.05,0.776367,0.608256,0.005888,0.466784,0.006624,0.005984,0.00544,0.01712,0.006208,0.07744,0.016768
+1395,810.929,1.23315,0.312416,0.005792,0.194912,0.00608,0.005216,0.005088,0.006144,0.006176,0.077504,0.005504
+1396,1143.02,0.874878,0.313344,0.006144,0.200128,0.004672,0.00576,0.00448,0.006144,0.005952,0.07392,0.006144
+1397,1343.17,0.744507,0.311456,0.005568,0.193248,0.005952,0.004288,0.006176,0.006112,0.006144,0.077824,0.006144
+1398,1390.12,0.71936,0.313344,0.005568,0.1952,0.00592,0.00432,0.006112,0.005984,0.006336,0.077824,0.00608
+1399,1383.08,0.723022,0.314496,0.005984,0.194112,0.004704,0.006144,0.006144,0.006144,0.006144,0.079584,0.005536
+1400,1417.06,0.705688,0.311488,0.005024,0.19456,0.00592,0.00432,0.006112,0.006016,0.005856,0.078176,0.005504
+1401,1245.55,0.802856,0.335392,0.005632,0.2176,0.005632,0.004608,0.006016,0.005984,0.00592,0.078336,0.005664
+1402,1309.67,0.76355,0.31536,0.0056,0.200928,0.004832,0.005664,0.004576,0.006144,0.006144,0.075776,0.005696
+1403,924.814,1.0813,0.314944,0.00768,0.19936,0.00608,0.006016,0.005408,0.005184,0.005984,0.073696,0.005536
+1404,1165.13,0.858276,0.356064,0.005568,0.207712,0.005472,0.004768,0.005792,0.005952,0.027168,0.088064,0.005568
+1405,1152.83,0.867432,0.310144,0.004992,0.19456,0.00528,0.00496,0.006144,0.006144,0.006112,0.075808,0.006144
+1406,1404.9,0.711792,0.31088,0.005824,0.19488,0.005472,0.005824,0.005088,0.006144,0.005856,0.076064,0.005728
+1407,1434.42,0.697144,0.30976,0.004672,0.194496,0.006144,0.005344,0.004896,0.006144,0.006144,0.075776,0.006144
+1408,1380.52,0.724365,0.309056,0.006144,0.192512,0.005792,0.005664,0.004928,0.006144,0.006144,0.075776,0.005952
+1409,1328.79,0.752563,0.311296,0.006144,0.193856,0.0048,0.005664,0.004576,0.006176,0.006112,0.077824,0.006144
+1410,1137.62,0.879028,0.327264,0.006144,0.208896,0.005312,0.004928,0.005696,0.005888,0.006112,0.078368,0.00592
+1411,1325.14,0.754639,0.591296,0.005568,0.471808,0.008096,0.005216,0.00512,0.006144,0.006144,0.077728,0.005472
+1412,686.672,1.4563,0.368608,0.00576,0.235904,0.005856,0.004384,0.005984,0.015808,0.00592,0.08288,0.006112
+1413,963.765,1.0376,0.380576,0.006016,0.262272,0.005888,0.004352,0.006144,0.005984,0.005856,0.078272,0.005792
+1414,1494.62,0.669067,0.322944,0.006112,0.202784,0.005696,0.00592,0.004768,0.006144,0.005984,0.080064,0.005472
+1415,1324.07,0.755249,0.314912,0.006144,0.198112,0.00464,0.006112,0.005504,0.004768,0.006144,0.077824,0.005664
+1416,1404.18,0.712158,0.314784,0.00624,0.196768,0.006016,0.005248,0.00512,0.006144,0.005824,0.07792,0.005504
+1417,1322.36,0.756226,0.313152,0.0056,0.196576,0.005024,0.005472,0.004768,0.006144,0.006144,0.077504,0.00592
+1418,1131.65,0.883667,0.316544,0.00592,0.200384,0.00464,0.005856,0.006432,0.005408,0.005984,0.076416,0.005504
+1419,1229.85,0.81311,0.537408,0.004928,0.421888,0.008,0.004352,0.00608,0.00608,0.005824,0.075584,0.004672
+1420,1007.13,0.99292,0.313728,0.0056,0.19888,0.0048,0.006144,0.005728,0.005984,0.005856,0.075936,0.0048
+1421,1097.68,0.911011,0.313504,0.005568,0.198464,0.004992,0.005504,0.004736,0.006144,0.006144,0.077184,0.004768
+1422,1509.21,0.662598,0.309664,0.005568,0.195552,0.0056,0.00464,0.00576,0.005888,0.005824,0.076032,0.0048
+1423,1422.22,0.703125,0.309248,0.006176,0.194176,0.004448,0.005888,0.005472,0.005024,0.006144,0.075776,0.006144
+1424,1396.52,0.716064,0.311296,0.006176,0.194368,0.004256,0.006144,0.005536,0.00608,0.006016,0.077696,0.005024
+1425,1315.35,0.760254,0.310624,0.006144,0.19392,0.004736,0.005792,0.004448,0.006144,0.006144,0.077792,0.005504
+1426,1479.23,0.676025,0.313504,0.0056,0.197344,0.005536,0.004672,0.006016,0.005952,0.005888,0.076352,0.006144
+1427,1274.42,0.784668,0.31744,0.005888,0.200768,0.004288,0.006144,0.005728,0.00608,0.005856,0.076544,0.006144
+1428,1200.82,0.832764,0.534464,0.006144,0.415744,0.007488,0.0048,0.005824,0.005888,0.005824,0.076672,0.00608
+1429,545.442,1.83337,0.5448,0.005568,0.40608,0.005344,0.015136,0.00544,0.015072,0.006144,0.079872,0.006144
+1430,1185.19,0.84375,0.354624,0.005568,0.238496,0.005824,0.004384,0.006176,0.005824,0.0056,0.077792,0.00496
+1431,1287.04,0.776978,0.322528,0.005088,0.206816,0.00528,0.004992,0.005632,0.006304,0.00592,0.076352,0.006144
+1432,1318.31,0.758545,0.321536,0.00608,0.20464,0.00432,0.006144,0.00544,0.006688,0.006016,0.077152,0.005056
+1433,1416.81,0.705811,0.321536,0.006016,0.20448,0.004544,0.005952,0.006336,0.006144,0.006144,0.077024,0.004896
+1434,1229.29,0.813477,0.315392,0.006144,0.2048,0.005952,0.005824,0.004608,0.006144,0.006144,0.070784,0.004992
+1435,1265.17,0.790405,0.319488,0.006176,0.208256,0.004704,0.005792,0.004576,0.006016,0.006176,0.071648,0.006144
+1436,767.616,1.30273,0.3264,0.006912,0.210944,0.005984,0.004288,0.006112,0.006176,0.006016,0.073824,0.006144
+1437,1067.64,0.936646,0.321152,0.005568,0.203328,0.005792,0.004448,0.006016,0.00608,0.006016,0.078176,0.005728
+1438,1460.51,0.684692,0.319488,0.006112,0.202784,0.0056,0.00464,0.005952,0.005824,0.00576,0.076672,0.006144
+1439,1290.08,0.775146,0.313376,0.005792,0.194912,0.006144,0.005248,0.004992,0.006144,0.006144,0.077824,0.006176
+1440,1508.1,0.663086,0.307968,0.004896,0.198624,0.005728,0.004512,0.006176,0.006112,0.006144,0.069632,0.006144
+1441,1379.82,0.724731,0.303104,0.005632,0.195072,0.00544,0.0048,0.0056,0.005824,0.004992,0.0696,0.006144
+1442,1313.24,0.761475,0.311136,0.006144,0.198336,0.004416,0.00608,0.00544,0.004864,0.006144,0.07376,0.005952
+1443,1415.59,0.706421,0.310368,0.00592,0.200928,0.005408,0.004832,0.005824,0.005792,0.00592,0.07024,0.005504
+1444,663.857,1.50635,0.31744,0.008192,0.202624,0.005312,0.005056,0.005536,0.00656,0.005984,0.073056,0.00512
+1445,1358.99,0.73584,0.511584,0.006144,0.397024,0.005408,0.00512,0.005536,0.006016,0.006016,0.074592,0.005728
+1446,849.352,1.17737,0.325248,0.005568,0.21184,0.005952,0.004288,0.006112,0.006112,0.005888,0.073984,0.005504
+1447,1522.39,0.65686,0.316576,0.005568,0.201344,0.005632,0.004608,0.007232,0.005088,0.006112,0.075488,0.005504
+1448,1217.42,0.821411,0.310784,0.00592,0.198688,0.004288,0.006144,0.004096,0.006144,0.006144,0.073728,0.005632
+1449,1229.66,0.813232,0.31152,0.0056,0.197376,0.005664,0.004576,0.006048,0.005856,0.005856,0.07584,0.004704
+1450,1159.19,0.862671,0.312992,0.006144,0.200576,0.00528,0.005088,0.005952,0.006016,0.006048,0.072096,0.005792
+1451,1495.98,0.668457,0.316672,0.005952,0.204992,0.005536,0.004704,0.006176,0.006112,0.00608,0.071616,0.005504
+1452,920.967,1.08582,0.308,0.006944,0.200032,0.004768,0.006016,0.005536,0.005952,0.005152,0.06864,0.00496
+1453,1342.07,0.745117,0.334144,0.005568,0.225184,0.005056,0.005248,0.004992,0.006144,0.006112,0.0712,0.00464
+1454,1057.44,0.945679,0.308672,0.0056,0.197152,0.005568,0.004672,0.006144,0.006176,0.006016,0.071776,0.005568
+1455,1497.35,0.667847,0.312032,0.004832,0.196608,0.006144,0.005728,0.00464,0.006112,0.006048,0.077152,0.004768
+1456,1426.43,0.70105,0.305952,0.004864,0.195936,0.004768,0.005536,0.004704,0.006144,0.006144,0.073248,0.004608
+1457,1383.78,0.722656,0.304352,0.006176,0.194528,0.005568,0.004672,0.006144,0.006144,0.006112,0.069504,0.005504
+1458,1321.5,0.756714,0.305152,0.005824,0.19488,0.005344,0.004896,0.0056,0.005856,0.004928,0.07168,0.006144
+1459,1424.45,0.702026,0.30944,0.005568,0.200512,0.005056,0.00544,0.0048,0.006144,0.006144,0.069632,0.006144
+1460,1279,0.78186,0.308608,0.006144,0.198496,0.00528,0.00512,0.0056,0.0064,0.005824,0.07024,0.005504
+1461,930.698,1.07446,0.31072,0.00768,0.197344,0.006144,0.005152,0.005088,0.006144,0.006144,0.071104,0.00592
+1462,1259.53,0.793945,0.519808,0.008192,0.405504,0.006144,0.005408,0.004832,0.006144,0.006144,0.07168,0.00576
+1463,1181.42,0.846436,0.298976,0.0048,0.19456,0.006048,0.004192,0.006176,0.005984,0.005664,0.066048,0.005504
+1464,1273.24,0.7854,0.304608,0.005856,0.194624,0.005792,0.004672,0.00608,0.005888,0.005792,0.070304,0.0056
+1465,703.72,1.42102,0.38096,0.0056,0.250432,0.005344,0.004896,0.01968,0.006464,0.006016,0.076384,0.006144
+1466,1591.61,0.628296,0.309248,0.006176,0.19824,0.00448,0.005984,0.005408,0.005088,0.006048,0.07168,0.006144
+1467,1373.81,0.727905,0.312288,0.005056,0.200576,0.005248,0.00512,0.006144,0.006048,0.005984,0.071936,0.006176
+1468,1311.35,0.762573,0.539008,0.004704,0.419776,0.007776,0.004512,0.006144,0.005984,0.00592,0.078208,0.005984
+1469,872.975,1.14551,0.318912,0.006144,0.198656,0.006144,0.005184,0.006112,0.005088,0.006144,0.079872,0.005568
+1470,1066.94,0.937256,0.310208,0.005056,0.196608,0.005536,0.004704,0.005952,0.006016,0.006496,0.073696,0.006144
+1471,1529.5,0.653809,0.31536,0.006144,0.19456,0.005888,0.005792,0.004704,0.006144,0.006144,0.079872,0.006112
+1472,1387.06,0.720947,0.305152,0.005728,0.19408,0.004992,0.004096,0.006144,0.006048,0.006016,0.072992,0.005056
+1473,1377.5,0.725952,0.311776,0.004704,0.195616,0.00496,0.005504,0.004736,0.006144,0.006112,0.079104,0.004896
+1474,1317.04,0.759277,0.311296,0.006144,0.192544,0.006112,0.005792,0.005504,0.005152,0.00608,0.077824,0.006144
+1475,1440.48,0.694214,0.319488,0.005728,0.194976,0.005248,0.004992,0.006144,0.006016,0.005792,0.084448,0.006144
+1476,1356.97,0.736938,0.3128,0.006176,0.195584,0.005088,0.006048,0.005408,0.00496,0.006112,0.077824,0.0056
+1477,737.686,1.35559,0.318304,0.007136,0.20016,0.00464,0.005856,0.004576,0.005952,0.006144,0.077824,0.006016
+1478,1232.62,0.811279,0.354304,0.006144,0.208864,0.00528,0.004992,0.0056,0.006112,0.025152,0.086016,0.006144
+1479,1239.52,0.806763,0.322144,0.004704,0.195744,0.00496,0.005536,0.004736,0.006112,0.006144,0.089088,0.00512
+1480,1213.27,0.824219,0.321536,0.00592,0.194208,0.005728,0.005088,0.005568,0.005984,0.005856,0.08704,0.006144
+1481,1421.98,0.703247,0.311296,0.006144,0.191968,0.00464,0.005696,0.004544,0.006144,0.006016,0.081536,0.004608
+1482,1413.63,0.707397,0.316288,0.005024,0.19456,0.006144,0.005344,0.004896,0.006144,0.00608,0.081984,0.006112
+1483,1441.75,0.693604,0.316288,0.004992,0.19456,0.005856,0.005824,0.004704,0.006176,0.006112,0.083296,0.004768
+1484,972.691,1.02808,0.339328,0.006144,0.218944,0.004288,0.006144,0.006048,0.004224,0.006112,0.08192,0.005504
+1485,1612.6,0.620117,0.53392,0.006144,0.415744,0.007488,0.0048,0.005824,0.005984,0.006048,0.076352,0.005536
+1486,852.268,1.17334,0.311584,0.005568,0.195424,0.005376,0.004864,0.005568,0.005824,0.004992,0.077824,0.006144
+1487,1108.98,0.901733,0.317408,0.005696,0.199104,0.005952,0.004288,0.006144,0.00592,0.005888,0.078304,0.006112
+1488,1423.46,0.702515,0.313216,0.005568,0.1952,0.00544,0.0048,0.0056,0.00608,0.006048,0.07856,0.00592
+1489,1355.62,0.737671,0.313504,0.005568,0.193248,0.006048,0.004288,0.006048,0.006016,0.006048,0.081248,0.004992
+1490,1331.82,0.750854,0.315136,0.006144,0.194528,0.005248,0.005024,0.005472,0.006016,0.004896,0.08192,0.005888
+1491,1402.26,0.713135,0.317664,0.004736,0.196608,0.005472,0.0048,0.006048,0.006016,0.005984,0.082272,0.005728
+1492,1100.04,0.909058,0.347456,0.005568,0.211648,0.005408,0.0048,0.00592,0.005856,0.00592,0.096416,0.00592
+1493,1506.71,0.663696,0.318784,0.006144,0.19456,0.006144,0.005248,0.004992,0.006144,0.006144,0.083904,0.005504
+1494,1032.91,0.96814,0.524544,0.00768,0.395424,0.004704,0.005824,0.004608,0.005952,0.006144,0.089408,0.0048
+1495,997.322,1.00269,0.406816,0.006144,0.275584,0.004992,0.005888,0.00544,0.005184,0.016288,0.081792,0.005504
+1496,1125.27,0.888672,0.319936,0.005568,0.195584,0.005952,0.004416,0.006016,0.006144,0.006112,0.0856,0.004544
+1497,1303.21,0.767334,0.31744,0.006144,0.192384,0.005312,0.005056,0.005504,0.006336,0.006016,0.084544,0.006144
+1498,1418.04,0.7052,0.313792,0.004704,0.195904,0.00464,0.006144,0.005664,0.005824,0.004896,0.081152,0.004864
+1499,1310.09,0.763306,0.313344,0.006144,0.192512,0.006016,0.004224,0.006144,0.006112,0.005952,0.080128,0.006112
+1500,1332.25,0.75061,0.314912,0.005632,0.193024,0.006048,0.004288,0.006048,0.006144,0.005824,0.082272,0.005632
+1501,1345.16,0.743408,0.315456,0.006144,0.195872,0.004832,0.005664,0.004608,0.006112,0.006144,0.081504,0.004576
+1502,1191.39,0.839355,0.522432,0.00768,0.39616,0.00576,0.00448,0.006144,0.00608,0.006208,0.083968,0.005952
+1503,700.77,1.427,0.35264,0.005568,0.221536,0.004704,0.005696,0.004608,0.00608,0.006144,0.08368,0.014624
+1504,1178.87,0.848267,0.319328,0.006144,0.199968,0.004832,0.005632,0.004608,0.006144,0.006144,0.079872,0.005984
+1505,1323.21,0.755737,0.312672,0.006144,0.194304,0.004352,0.006112,0.005344,0.00496,0.006112,0.079872,0.005472
+1506,1505.05,0.664429,0.312672,0.005728,0.194976,0.005632,0.004608,0.005472,0.005792,0.005152,0.079776,0.005536
+1507,1388.24,0.720337,0.30864,0.006144,0.192544,0.005568,0.00464,0.00576,0.005824,0.0048,0.077824,0.005536
+1508,1353.38,0.738892,0.316064,0.004768,0.19984,0.00496,0.005536,0.004704,0.006144,0.006176,0.07936,0.004576
+1509,1296,0.771606,0.3152,0.005664,0.197088,0.005696,0.004544,0.006144,0.006144,0.006176,0.077792,0.005952
+1510,1438.71,0.695068,0.531392,0.005088,0.415712,0.008192,0.005472,0.004768,0.006144,0.006176,0.073696,0.006144
+1511,872.325,1.14636,0.316928,0.006144,0.198656,0.005504,0.004736,0.00576,0.005824,0.005856,0.078784,0.005664
+1512,1266.54,0.789551,0.524064,0.0056,0.401952,0.00576,0.00448,0.006144,0.006144,0.005984,0.082112,0.005888
+1513,1154.13,0.866455,0.311904,0.004704,0.19456,0.005824,0.005792,0.004864,0.006048,0.006144,0.077824,0.006144
+1514,1401.54,0.713501,0.311296,0.006144,0.19456,0.005536,0.004704,0.005984,0.005952,0.005824,0.077504,0.005088
+1515,1435.18,0.696777,0.313024,0.006144,0.19392,0.004736,0.005792,0.004608,0.006016,0.006112,0.079872,0.005824
+1516,1317.68,0.758911,0.313344,0.005824,0.19488,0.005632,0.004608,0.006144,0.006144,0.006144,0.07904,0.004928
+1517,1305.71,0.765869,0.313344,0.006144,0.194336,0.00432,0.006144,0.006144,0.006144,0.006112,0.077856,0.006144
+1518,1259.73,0.793823,0.34064,0.004864,0.22288,0.004448,0.006048,0.005408,0.006976,0.006144,0.077856,0.006016
+1519,1165.46,0.858032,0.51232,0.007776,0.392992,0.005056,0.005504,0.004736,0.006144,0.006144,0.078944,0.005024
+1520,1058.81,0.944458,0.31232,0.006144,0.194464,0.00528,0.005056,0.0056,0.006016,0.005984,0.078272,0.005504
+1521,1128.53,0.886108,0.311296,0.006112,0.192576,0.005792,0.004416,0.006016,0.005888,0.005824,0.078528,0.006144
+1522,960.488,1.04114,0.359968,0.006176,0.230976,0.004512,0.005984,0.014496,0.00736,0.004928,0.079872,0.005664
+1523,1568.45,0.637573,0.315424,0.006144,0.1984,0.005856,0.004672,0.00592,0.00608,0.005984,0.077792,0.004576
+1524,1420,0.704224,0.325376,0.006144,0.201792,0.005056,0.006048,0.005472,0.004864,0.006144,0.083968,0.005888
+1525,1283.81,0.778931,0.31952,0.0056,0.193056,0.006144,0.005984,0.005408,0.005184,0.005984,0.087488,0.004672
+1526,1445.82,0.69165,0.333824,0.006176,0.215008,0.00592,0.00432,0.006144,0.005984,0.005888,0.07952,0.004864
+1527,1316.83,0.759399,0.314816,0.005568,0.196512,0.005056,0.005568,0.004672,0.006144,0.006144,0.079616,0.005536
+1528,734.511,1.36145,0.32768,0.008032,0.202048,0.00496,0.005536,0.004704,0.007328,0.005984,0.084576,0.004512
+1529,1072.25,0.932617,0.319168,0.006144,0.196224,0.00448,0.006016,0.00544,0.004928,0.006144,0.083968,0.005824
+1530,1463.64,0.683228,0.318208,0.00512,0.195776,0.004928,0.005568,0.004672,0.006144,0.006144,0.083968,0.005888
+1531,1362.83,0.733765,0.315392,0.005632,0.194144,0.005024,0.005888,0.00544,0.005184,0.006016,0.08192,0.006144
+1532,710.556,1.40735,0.318112,0.004736,0.196096,0.004608,0.005856,0.006112,0.005984,0.005888,0.083712,0.00512
+1533,1198.89,0.834106,0.317824,0.004832,0.194592,0.005984,0.005728,0.004672,0.006144,0.006112,0.083968,0.005792
+1534,1543.91,0.647705,0.320768,0.005856,0.198944,0.005504,0.004736,0.006144,0.006144,0.005888,0.082016,0.005536
+1535,761.834,1.31262,0.32768,0.008096,0.202208,0.004736,0.005728,0.004608,0.006144,0.006048,0.085056,0.005056
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..02f168c
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_512,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1246.76,0.850409,0.336729,0.006264,0.229651,0.00562972,0.00494619,0.00552738,0.00624531,0.00616044,0.0663155,0.00598881
+max_1024,1675.94,2.56445,0.79872,0.034816,0.556384,0.046272,0.027008,0.02048,0.030208,0.025088,0.382752,0.021984
+min_1024,389.947,0.59668,0.289216,0.004416,0.190688,0.004032,0.004064,0.004096,0.004864,0.004736,0.04432,0.004576
+512,796.577,1.25537,0.375872,0.006144,0.288768,0.005824,0.004416,0.005856,0.005952,0.0064,0.04528,0.007232
+513,569.284,1.75659,0.582752,0.006112,0.448544,0.036864,0.021696,0.004928,0.006144,0.006144,0.045152,0.007168
+514,796.732,1.25513,0.455712,0.005952,0.3704,0.004576,0.004256,0.005984,0.006144,0.006112,0.046464,0.005824
+515,922.211,1.08435,0.329728,0.006144,0.243712,0.005408,0.004768,0.0056,0.006016,0.00608,0.045856,0.006144
+516,1022.47,0.978027,0.324,0.006048,0.23808,0.00528,0.004832,0.005376,0.006272,0.006112,0.045856,0.006144
+517,1130.4,0.884644,0.334688,0.005984,0.246368,0.004512,0.005376,0.004864,0.006144,0.006176,0.049152,0.006112
+518,604.041,1.65552,0.341856,0.006144,0.255488,0.004608,0.004192,0.006048,0.006144,0.006048,0.0472,0.005984
+519,793.03,1.26099,0.5144,0.008096,0.426048,0.00464,0.00608,0.005472,0.005984,0.005984,0.046048,0.006048
+520,1150.89,0.868896,0.3328,0.006144,0.246944,0.004832,0.004224,0.005984,0.00624,0.006144,0.046496,0.005792
+521,1294.15,0.772705,0.309024,0.006144,0.223232,0.0056,0.00464,0.005568,0.005888,0.006464,0.045536,0.005952
+522,1268.5,0.78833,0.315712,0.005984,0.231104,0.004832,0.00416,0.006144,0.006144,0.006144,0.045184,0.006016
+523,1378.43,0.725464,0.315808,0.006112,0.229824,0.00528,0.0048,0.005376,0.006368,0.00608,0.045824,0.006144
+524,1346.26,0.742798,0.305184,0.006144,0.214848,0.004288,0.005376,0.004864,0.006144,0.006144,0.052352,0.005024
+525,1171.46,0.853638,0.321536,0.006144,0.231424,0.005792,0.005504,0.00512,0.006112,0.006144,0.049152,0.006144
+526,1278.4,0.782227,0.315392,0.006144,0.22528,0.004096,0.005536,0.004704,0.006144,0.006144,0.0512,0.006144
+527,908.909,1.10022,0.564128,0.006144,0.424864,0.046272,0.011072,0.006144,0.006144,0.006144,0.0512,0.006144
+528,894.518,1.11792,0.346752,0.005952,0.255904,0.005088,0.005216,0.005024,0.006144,0.006144,0.0512,0.00608
+529,1207.01,0.828491,0.319712,0.005984,0.231008,0.004896,0.004096,0.00608,0.00608,0.006016,0.049408,0.006144
+530,1264.78,0.790649,0.331776,0.005088,0.241664,0.004096,0.005792,0.004576,0.006016,0.006144,0.052576,0.005824
+531,1129.62,0.885254,0.343648,0.006112,0.253248,0.004864,0.004192,0.006016,0.006112,0.005984,0.050624,0.006496
+532,828.06,1.20764,0.357216,0.004928,0.271552,0.004864,0.00416,0.006016,0.006112,0.006144,0.047264,0.006176
+533,1439.72,0.69458,0.315264,0.006176,0.219104,0.004096,0.005568,0.004672,0.006144,0.006144,0.047136,0.016224
+534,792.11,1.26245,0.311296,0.006144,0.224768,0.004608,0.004096,0.006144,0.006144,0.006048,0.0472,0.006144
+535,929.536,1.07581,0.34352,0.008096,0.254048,0.004512,0.00512,0.00512,0.006144,0.006144,0.04832,0.006016
+536,1289.06,0.775757,0.341184,0.005952,0.254176,0.005664,0.004576,0.005632,0.005952,0.006048,0.04736,0.005824
+537,1238.02,0.807739,0.326208,0.005088,0.239648,0.00544,0.004768,0.005408,0.005984,0.005184,0.048704,0.005984
+538,1305.71,0.765869,0.319296,0.006144,0.22912,0.004352,0.005344,0.004896,0.006144,0.006144,0.051232,0.00592
+539,1334.85,0.749146,0.334208,0.006432,0.239488,0.004672,0.004096,0.006176,0.006016,0.00624,0.055072,0.006016
+540,1175.49,0.850708,0.382304,0.006016,0.287968,0.004832,0.004288,0.006144,0.006144,0.006144,0.054944,0.005824
+541,1097.68,0.911011,0.342016,0.006144,0.247712,0.004192,0.004096,0.005888,0.0064,0.0072,0.05424,0.006144
+542,864.135,1.15723,0.505888,0.020096,0.399296,0.00464,0.005568,0.004576,0.007296,0.005088,0.0544,0.004928
+543,1192.08,0.838867,0.305664,0.005984,0.213664,0.005824,0.004448,0.00576,0.005952,0.00608,0.051808,0.006144
+544,1527.5,0.654663,0.299584,0.005984,0.209632,0.004096,0.005536,0.004704,0.006144,0.006144,0.0512,0.006144
+545,1318.95,0.758179,0.303616,0.005984,0.209216,0.004608,0.004096,0.006144,0.006144,0.006144,0.055168,0.006112
+546,1438.45,0.69519,0.304928,0.006144,0.210464,0.004576,0.004096,0.006144,0.006144,0.006144,0.055296,0.00592
+547,1147.98,0.871094,0.311296,0.006144,0.217152,0.005824,0.004352,0.005824,0.005952,0.00576,0.054144,0.006144
+548,1088.06,0.919067,0.329792,0.00592,0.236384,0.00544,0.0048,0.005408,0.005984,0.005024,0.055008,0.005824
+549,1269.88,0.787476,0.334528,0.006048,0.240416,0.00576,0.00448,0.00576,0.006016,0.005984,0.05392,0.006144
+550,1168.45,0.855835,0.31744,0.006048,0.222048,0.00544,0.0048,0.00544,0.005984,0.00656,0.055296,0.005824
+551,1212.73,0.824585,0.536384,0.006144,0.423936,0.02256,0.005792,0.004512,0.006048,0.006144,0.055168,0.00608
+552,788.754,1.26782,0.332192,0.005952,0.238272,0.005568,0.004672,0.005536,0.006208,0.006048,0.05376,0.006176
+553,827.558,1.20837,0.341888,0.005952,0.248448,0.004096,0.005728,0.004544,0.006144,0.006112,0.05488,0.005984
+554,1297.43,0.770752,0.307424,0.005952,0.21728,0.00432,0.005344,0.004864,0.006144,0.006144,0.052544,0.004832
+555,1185.01,0.843872,0.30928,0.006144,0.219136,0.004096,0.0056,0.00464,0.006144,0.006176,0.051168,0.006176
+556,1042.5,0.959229,0.32544,0.006048,0.23152,0.005504,0.004736,0.005504,0.006016,0.005952,0.054208,0.005952
+557,927.851,1.07776,0.317376,0.006144,0.223232,0.005472,0.004768,0.00544,0.00608,0.006016,0.054144,0.00608
+558,846.106,1.18188,0.521632,0.008192,0.4256,0.00448,0.005728,0.004544,0.0072,0.00512,0.054784,0.005984
+559,1251.83,0.798828,0.309408,0.005952,0.219232,0.004576,0.004224,0.006016,0.006144,0.006144,0.051072,0.006048
+560,1328.36,0.752808,0.321088,0.005952,0.23536,0.004864,0.004224,0.005984,0.00608,0.005888,0.046944,0.005792
+561,1300.73,0.768799,0.332736,0.005216,0.244704,0.004832,0.004256,0.005984,0.006272,0.00608,0.049248,0.006144
+562,1256.63,0.795776,0.32976,0.006144,0.239616,0.00576,0.00448,0.005728,0.00592,0.006656,0.050624,0.004832
+563,1228.19,0.814209,0.3256,0.006144,0.235424,0.004192,0.005472,0.0048,0.006112,0.006144,0.0512,0.006112
+564,1235.41,0.809448,0.315744,0.005952,0.22816,0.00576,0.00448,0.005728,0.006016,0.006048,0.047744,0.005856
+565,975.47,1.02515,0.345568,0.006208,0.255936,0.00512,0.0048,0.00544,0.006208,0.005152,0.050688,0.006016
+566,714.647,1.39929,0.346944,0.008096,0.25488,0.005984,0.004256,0.005952,0.006336,0.006144,0.049152,0.006144
+567,987.345,1.01282,0.3208,0.006144,0.23264,0.004832,0.004192,0.006048,0.006176,0.005952,0.048768,0.006048
+568,1131.49,0.883789,0.332032,0.005952,0.243904,0.004352,0.005472,0.004768,0.006144,0.006144,0.049152,0.006144
+569,593.107,1.68604,0.353856,0.006016,0.27056,0.004352,0.00528,0.00496,0.006144,0.006176,0.04432,0.006048
+570,793.107,1.26086,0.340064,0.005984,0.255264,0.004896,0.004352,0.005824,0.006048,0.006112,0.045472,0.006112
+571,727.273,1.375,0.549184,0.006016,0.415904,0.030912,0.027008,0.005984,0.006304,0.006112,0.045024,0.00592
+572,1063.48,0.940308,0.323936,0.005216,0.239328,0.004288,0.005376,0.004864,0.006144,0.006144,0.046752,0.005824
+573,1274.82,0.784424,0.311296,0.006144,0.22528,0.00592,0.00432,0.00592,0.006304,0.006208,0.045152,0.006048
+574,1100.19,0.908936,0.320704,0.006144,0.23552,0.004096,0.00576,0.004512,0.006112,0.006144,0.046592,0.005824
+575,1045.43,0.956543,0.295104,0.006048,0.212352,0.004832,0.004192,0.006048,0.005952,0.005984,0.044544,0.005152
+576,1235.04,0.809692,0.337792,0.005984,0.253248,0.004864,0.004192,0.005984,0.006112,0.006336,0.044896,0.006176
+577,1162.98,0.859863,0.331456,0.006048,0.245856,0.0056,0.00464,0.005568,0.006208,0.006368,0.04512,0.006048
+578,1107.93,0.902588,0.30896,0.006144,0.218752,0.00448,0.005376,0.004864,0.006144,0.006144,0.051136,0.00592
+579,1047.17,0.954956,0.596736,0.00608,0.475808,0.00752,0.004928,0.006144,0.006144,0.016384,0.067584,0.006144
+580,817.239,1.22363,0.352256,0.006272,0.259968,0.005504,0.004736,0.005728,0.00608,0.005888,0.051936,0.006144
+581,1002.94,0.99707,0.328512,0.006144,0.237504,0.004832,0.004256,0.005984,0.00608,0.00624,0.051328,0.006144
+582,1377.04,0.726196,0.305152,0.006144,0.212992,0.005376,0.004864,0.005504,0.005888,0.006752,0.052832,0.0048
+583,1407.08,0.710693,0.305952,0.006048,0.215296,0.004736,0.004096,0.006176,0.006048,0.005888,0.05152,0.006144
+584,517.989,1.93054,0.3072,0.006144,0.21504,0.00576,0.00448,0.005728,0.005984,0.006048,0.051872,0.006144
+585,762.969,1.31067,0.53616,0.0288,0.41984,0.006144,0.005312,0.004928,0.006144,0.006144,0.052896,0.005952
+586,1340.31,0.746094,0.308,0.00512,0.221184,0.005184,0.0048,0.0056,0.00608,0.006176,0.047936,0.00592
+587,1215.07,0.822998,0.29776,0.005952,0.211936,0.005344,0.004896,0.005536,0.00608,0.005984,0.045888,0.006144
+588,1454.55,0.6875,0.296928,0.006048,0.209568,0.00544,0.0048,0.00544,0.006528,0.005952,0.047328,0.005824
+589,1400.58,0.713989,0.292864,0.006144,0.206496,0.004448,0.005184,0.005056,0.006176,0.006112,0.047104,0.006144
+590,1459.99,0.684937,0.29424,0.006144,0.206848,0.005632,0.004608,0.0056,0.005952,0.00592,0.047744,0.005792
+591,1340.97,0.745728,0.301344,0.005952,0.21056,0.004832,0.004224,0.006016,0.006272,0.006144,0.050912,0.006432
+592,1253.37,0.797852,0.32336,0.006144,0.232544,0.004864,0.005472,0.004928,0.006144,0.007264,0.050048,0.005952
+593,1269.49,0.78772,0.302304,0.006144,0.212992,0.005664,0.004576,0.005856,0.005984,0.005952,0.049152,0.005984
+594,632.929,1.57996,0.372736,0.008192,0.278336,0.004288,0.005376,0.004864,0.006144,0.006144,0.053248,0.006144
+595,1184.5,0.844238,0.332288,0.005984,0.238176,0.004192,0.00592,0.005856,0.005952,0.005984,0.054112,0.006112
+596,1178.37,0.848633,0.309248,0.006048,0.215008,0.004224,0.00544,0.0048,0.007616,0.006176,0.053792,0.006144
+597,1566.35,0.638428,0.292896,0.005984,0.202208,0.004864,0.004256,0.005952,0.00624,0.006112,0.051328,0.005952
+598,1335.07,0.749023,0.298112,0.006144,0.204,0.004864,0.004128,0.006048,0.00624,0.006144,0.054752,0.005792
+599,1253.75,0.797607,0.302368,0.005984,0.206848,0.004352,0.005888,0.005728,0.006432,0.006176,0.055008,0.005952
+600,1444.03,0.692505,0.311712,0.00656,0.210944,0.004288,0.005632,0.004544,0.006048,0.007168,0.061728,0.0048
+601,1120.35,0.892578,0.319488,0.006144,0.2184,0.004832,0.004096,0.006144,0.00608,0.006176,0.061472,0.006144
+602,531.086,1.88293,0.370688,0.008224,0.269632,0.004768,0.004096,0.006144,0.00608,0.006112,0.060672,0.00496
+603,1088.06,0.919067,0.356384,0.006144,0.256,0.005664,0.004576,0.005632,0.00608,0.006112,0.061056,0.00512
+604,1064.31,0.939575,0.332128,0.005984,0.238048,0.005568,0.004672,0.005536,0.00592,0.006016,0.055456,0.004928
+605,1341.85,0.745239,0.330368,0.005952,0.234144,0.004224,0.006112,0.005408,0.00624,0.00656,0.055552,0.006176
+606,1213.81,0.823853,0.340992,0.006144,0.24112,0.00464,0.004192,0.006048,0.006144,0.006144,0.06096,0.0056
+607,1313.45,0.761353,0.33008,0.005952,0.235424,0.004736,0.004096,0.006144,0.006144,0.006176,0.055264,0.006144
+608,1120.2,0.8927,0.3584,0.006144,0.264192,0.004096,0.0056,0.00464,0.006144,0.006144,0.05632,0.00512
+609,960.375,1.04126,0.564512,0.006144,0.417792,0.00784,0.004448,0.01024,0.030208,0.025088,0.056736,0.006016
+610,827.057,1.20911,0.33392,0.006144,0.239136,0.004672,0.004096,0.006144,0.006144,0.006144,0.055296,0.006144
+611,1254.52,0.797119,0.330432,0.006016,0.236352,0.004128,0.00576,0.004512,0.00608,0.006144,0.055296,0.006144
+612,1276.81,0.783203,0.326144,0.005952,0.237888,0.004704,0.005184,0.005056,0.006144,0.006144,0.049152,0.00592
+613,1559.49,0.641235,0.3072,0.007264,0.21312,0.004832,0.00416,0.006048,0.005952,0.005984,0.053696,0.006144
+614,954.445,1.04773,0.298688,0.006144,0.2048,0.005856,0.004384,0.006144,0.005984,0.005984,0.053568,0.005824
+615,1248.78,0.800781,0.649248,0.006144,0.556384,0.004768,0.004096,0.006144,0.006144,0.006144,0.05328,0.006144
+616,896.378,1.1156,0.545792,0.00512,0.41984,0.04432,0.004832,0.005376,0.006656,0.006048,0.047456,0.006144
+617,990.928,1.00916,0.305152,0.005984,0.213152,0.005344,0.004832,0.005408,0.006112,0.00608,0.052096,0.006144
+618,1467.57,0.681396,0.3016,0.006176,0.207072,0.004864,0.005216,0.005024,0.006144,0.006144,0.055136,0.005824
+619,1280,0.78125,0.297856,0.004992,0.204832,0.005696,0.004512,0.005728,0.006016,0.006688,0.053248,0.006144
+620,830.158,1.20459,0.32768,0.006144,0.2352,0.004416,0.005664,0.004608,0.006112,0.006144,0.054368,0.005024
+621,1032.26,0.96875,0.319392,0.005984,0.225184,0.004544,0.005792,0.004544,0.007072,0.00624,0.054048,0.005984
+622,1208.44,0.827515,0.358656,0.005024,0.261728,0.004512,0.005152,0.005088,0.006144,0.007552,0.057632,0.005824
+623,858.97,1.16418,0.55296,0.006144,0.421888,0.034464,0.007904,0.004736,0.007936,0.006112,0.057632,0.006144
+624,878.97,1.1377,0.313344,0.006144,0.217088,0.004096,0.005632,0.004608,0.006144,0.006144,0.058528,0.00496
+625,1430.17,0.699219,0.334976,0.006144,0.235552,0.00544,0.004768,0.00544,0.006848,0.006144,0.058688,0.005952
+626,1120.66,0.892334,0.329696,0.006144,0.230944,0.004576,0.00528,0.006048,0.006752,0.006016,0.057824,0.006112
+627,1497.9,0.667603,0.312736,0.006144,0.219136,0.005216,0.0048,0.005408,0.005152,0.006048,0.053248,0.007584
+628,1293.54,0.773071,0.303488,0.005984,0.211488,0.00544,0.0048,0.005408,0.006112,0.006272,0.05296,0.005024
+629,1330.52,0.751587,0.314816,0.006016,0.221312,0.005152,0.0048,0.00544,0.006688,0.006272,0.053184,0.005952
+630,1256.83,0.795654,0.298208,0.006144,0.210688,0.004352,0.005312,0.004928,0.006144,0.006144,0.04832,0.006176
+631,1185.01,0.843872,0.470048,0.006144,0.378336,0.00464,0.004096,0.006176,0.006112,0.006144,0.052448,0.005952
+632,593.15,1.68591,0.323488,0.008192,0.231424,0.005152,0.0048,0.004384,0.006144,0.006176,0.051168,0.006048
+633,1246.69,0.802124,0.311456,0.005952,0.225632,0.005216,0.0048,0.005472,0.006272,0.006304,0.045696,0.006112
+634,1413.14,0.707642,0.324704,0.006144,0.2352,0.004416,0.005248,0.004992,0.006144,0.006144,0.050656,0.00576
+635,1200.12,0.833252,0.31536,0.005952,0.224448,0.00512,0.0056,0.00464,0.007616,0.006016,0.049856,0.006112
+636,1339.66,0.74646,0.307616,0.00608,0.217984,0.005216,0.005024,0.005504,0.006016,0.006624,0.049344,0.005824
+637,598.437,1.67102,0.38912,0.006144,0.292352,0.004608,0.005152,0.005088,0.006144,0.006144,0.057184,0.006304
+638,830.242,1.20447,0.359008,0.006048,0.262016,0.004864,0.005472,0.004832,0.006144,0.006144,0.057344,0.006144
+639,820.759,1.21838,0.335456,0.008064,0.241888,0.00576,0.004448,0.00576,0.006304,0.005952,0.05136,0.00592
+640,1422.47,0.703003,0.321344,0.00608,0.2328,0.004864,0.00432,0.005856,0.006208,0.006336,0.049088,0.005792
+641,1247.83,0.801392,0.301568,0.005952,0.212736,0.004864,0.004288,0.005888,0.006368,0.00608,0.049248,0.006144
+642,1361.7,0.734375,0.318624,0.006016,0.228672,0.004928,0.004096,0.006144,0.006144,0.006144,0.050624,0.005856
+643,1146.86,0.871948,0.294496,0.006144,0.2048,0.004096,0.005696,0.004544,0.00624,0.007136,0.049792,0.006048
+644,1442,0.693481,0.296768,0.006016,0.20768,0.0056,0.00464,0.005536,0.006464,0.006016,0.048992,0.005824
+645,1238.21,0.807617,0.299136,0.006144,0.208896,0.004096,0.006144,0.005632,0.005824,0.004928,0.052864,0.004608
+646,669.993,1.49255,0.32576,0.008096,0.2296,0.005888,0.004352,0.005824,0.005984,0.00592,0.053952,0.006144
+647,1473.38,0.678711,0.2968,0.005984,0.20128,0.00576,0.00448,0.006144,0.006144,0.006176,0.054784,0.006048
+648,1343.61,0.744263,0.309056,0.005984,0.214848,0.00464,0.004096,0.006144,0.006144,0.006304,0.055104,0.005792
+649,1323,0.755859,0.29936,0.00608,0.20464,0.004672,0.004128,0.006112,0.007168,0.00512,0.055296,0.006144
+650,1272.05,0.786133,0.321344,0.006112,0.225312,0.005504,0.004736,0.006112,0.005952,0.006112,0.055552,0.005952
+651,1544.2,0.647583,0.301056,0.006144,0.206528,0.004416,0.005248,0.004992,0.006144,0.006144,0.055296,0.006144
+652,1419.27,0.70459,0.296992,0.006112,0.20272,0.00416,0.005504,0.004736,0.006144,0.006144,0.056576,0.004896
+653,1426.68,0.700928,0.301152,0.006112,0.20544,0.004256,0.005408,0.004832,0.006144,0.006144,0.0568,0.006016
+654,680.568,1.46936,0.559712,0.005952,0.417984,0.039712,0.005408,0.004832,0.006144,0.006144,0.057344,0.016192
+655,1308,0.764526,0.31936,0.00672,0.221344,0.005472,0.004768,0.005472,0.006816,0.006048,0.056704,0.006016
+656,1324.49,0.755005,0.299328,0.005056,0.200704,0.005568,0.004672,0.005472,0.006656,0.006112,0.059296,0.005792
+657,1398.67,0.714966,0.331424,0.006176,0.231424,0.005312,0.004896,0.005728,0.00656,0.006144,0.0592,0.005984
+658,1270.87,0.786865,0.298784,0.006112,0.200544,0.00432,0.005344,0.004864,0.006144,0.006176,0.05936,0.00592
+659,1483.79,0.67395,0.299392,0.006016,0.201152,0.004416,0.005248,0.004992,0.006144,0.006144,0.059296,0.005984
+660,1380.29,0.724487,0.294048,0.006144,0.200704,0.005248,0.0048,0.005376,0.005056,0.006144,0.054752,0.005824
+661,1431.17,0.69873,0.3048,0.006016,0.2096,0.004096,0.005696,0.004512,0.006144,0.006144,0.056672,0.00592
+662,1264.39,0.790894,0.316896,0.006144,0.219136,0.006144,0.004096,0.005984,0.006048,0.006272,0.05728,0.005792
+663,777.82,1.28564,0.557408,0.005088,0.41952,0.033056,0.018432,0.005984,0.006048,0.005952,0.057376,0.005952
+664,1290.08,0.775146,0.303072,0.006112,0.208928,0.00528,0.00496,0.005888,0.006048,0.00592,0.053824,0.006112
+665,1423.21,0.702637,0.299552,0.005984,0.206912,0.004576,0.00512,0.00512,0.006144,0.006144,0.054432,0.00512
+666,1255.86,0.796265,0.304608,0.005952,0.211296,0.005152,0.0048,0.004384,0.006144,0.006144,0.054912,0.005824
+667,1370.82,0.729492,0.328032,0.006496,0.233248,0.00432,0.005344,0.006048,0.00704,0.006144,0.053248,0.006144
+668,1463.38,0.68335,0.294688,0.006176,0.199904,0.004864,0.004096,0.006112,0.006176,0.006144,0.055296,0.00592
+669,1444.29,0.692383,0.299264,0.006048,0.205184,0.004608,0.004096,0.006144,0.006144,0.006144,0.054912,0.005984
+670,1342.95,0.744629,0.304704,0.006144,0.210944,0.005536,0.004704,0.005472,0.00608,0.006016,0.054016,0.005792
+671,1280,0.78125,0.470752,0.006144,0.376832,0.005824,0.004416,0.005792,0.006112,0.005952,0.053664,0.006016
+672,603.507,1.65698,0.320416,0.008096,0.224256,0.005824,0.004416,0.005792,0.005984,0.005984,0.05392,0.006144
+673,1076.2,0.929199,0.322976,0.006144,0.231424,0.00528,0.0048,0.005408,0.004992,0.006144,0.052832,0.005952
+674,1364.65,0.732788,0.319008,0.006144,0.223232,0.005216,0.004832,0.005568,0.00608,0.006816,0.055296,0.005824
+675,1475.77,0.677612,0.302272,0.006144,0.210144,0.004832,0.00416,0.006048,0.00624,0.006144,0.052608,0.005952
+676,1339.88,0.746338,0.305152,0.006144,0.21072,0.00432,0.005344,0.004896,0.007552,0.006304,0.053728,0.006144
+677,1209.87,0.826538,0.310848,0.007616,0.215488,0.004224,0.005408,0.004832,0.006144,0.006176,0.054976,0.005984
+678,1405.15,0.71167,0.306304,0.005984,0.211104,0.005664,0.004576,0.0056,0.006656,0.00592,0.054976,0.005824
+679,978.032,1.02246,0.331808,0.006112,0.236032,0.005408,0.004864,0.005408,0.006048,0.005952,0.05552,0.006464
+680,427.023,2.3418,0.31376,0.008064,0.219072,0.004864,0.004288,0.005888,0.006048,0.00592,0.05376,0.005856
+681,1474.18,0.678345,0.305152,0.006016,0.209024,0.005344,0.004832,0.005984,0.00608,0.00592,0.055808,0.006144
+682,1380.52,0.724365,0.296064,0.005952,0.198944,0.005792,0.004448,0.006176,0.006112,0.006144,0.056672,0.005824
+683,1351.37,0.73999,0.296992,0.005984,0.20112,0.00464,0.00416,0.00608,0.006144,0.006016,0.056832,0.006016
+684,1545.37,0.647095,0.297216,0.005952,0.204544,0.0048,0.004128,0.006112,0.006112,0.006016,0.05456,0.004992
+685,1288.46,0.776123,0.3112,0.006144,0.216672,0.004512,0.005152,0.005088,0.006144,0.006112,0.055328,0.006048
+686,995.625,1.00439,0.575072,0.005984,0.43776,0.046048,0.005728,0.004672,0.007296,0.005984,0.05552,0.00608
+687,883.902,1.13135,0.320192,0.00608,0.226016,0.005472,0.004768,0.00544,0.005984,0.006432,0.053824,0.006176
+688,1389.18,0.719849,0.303776,0.00608,0.2096,0.005504,0.004736,0.005472,0.005952,0.006144,0.055296,0.004992
+689,1162.81,0.859985,0.309248,0.00608,0.215072,0.004128,0.005536,0.004704,0.007264,0.00512,0.0552,0.006144
+690,1500.09,0.666626,0.30288,0.006144,0.208896,0.00576,0.00448,0.00576,0.006048,0.00608,0.053792,0.00592
+691,891.404,1.12183,0.354528,0.006368,0.263552,0.004736,0.004096,0.006144,0.006144,0.006144,0.0512,0.006144
+692,1138.25,0.87854,0.315904,0.00592,0.22592,0.004416,0.005248,0.004992,0.006144,0.006144,0.0512,0.00592
+693,888.985,1.12488,0.317152,0.00608,0.226048,0.005792,0.004448,0.006144,0.006144,0.006144,0.050336,0.006016
+694,691.133,1.4469,0.343808,0.008096,0.251936,0.00464,0.005632,0.004608,0.006144,0.006176,0.050752,0.005824
+695,1364.2,0.733032,0.30496,0.005984,0.215168,0.004768,0.004096,0.006144,0.006144,0.005696,0.050784,0.006176
+696,1449.4,0.689941,0.294784,0.005952,0.205184,0.004288,0.005408,0.004832,0.0072,0.00512,0.050976,0.005824
+697,1169.12,0.855347,0.301088,0.006144,0.21232,0.004768,0.004096,0.00608,0.00624,0.006016,0.049344,0.00608
+698,1396.28,0.716187,0.292864,0.006176,0.20272,0.004096,0.005536,0.004704,0.006144,0.006144,0.0512,0.006144
+699,1461.03,0.684448,0.29744,0.006336,0.20624,0.004864,0.004224,0.005952,0.006336,0.006144,0.0512,0.006144
+700,1048.78,0.953491,0.309184,0.006144,0.208416,0.004576,0.004096,0.006144,0.016384,0.00736,0.049984,0.00608
+701,1437.95,0.695435,0.551328,0.00608,0.461248,0.004128,0.0056,0.00464,0.006144,0.006144,0.0512,0.006144
+702,844.188,1.18457,0.309344,0.005952,0.219104,0.004384,0.005312,0.004928,0.006144,0.006048,0.052544,0.004928
+703,716.147,1.39636,0.3152,0.008224,0.22288,0.004416,0.00528,0.004992,0.006112,0.006144,0.051168,0.005984
+704,1226.35,0.81543,0.3072,0.005984,0.216544,0.0048,0.004096,0.006144,0.005888,0.005888,0.051712,0.006144
+705,1226.16,0.815552,0.331776,0.006144,0.238976,0.004736,0.004096,0.006144,0.006144,0.006144,0.053248,0.006144
+706,1407.32,0.710571,0.294976,0.005984,0.205056,0.00416,0.005696,0.004448,0.006144,0.007648,0.050848,0.004992
+707,1524.09,0.656128,0.29472,0.006144,0.202752,0.005344,0.0048,0.005504,0.006528,0.006016,0.051648,0.005984
+708,736.227,1.35828,0.34016,0.005024,0.231424,0.016384,0.012288,0.005984,0.006144,0.005952,0.051104,0.005856
+709,1104.64,0.905273,0.342016,0.006144,0.249856,0.005376,0.004832,0.005376,0.005984,0.00512,0.05312,0.006208
+710,997.443,1.00256,0.524288,0.034816,0.397312,0.006144,0.004096,0.006144,0.006144,0.006144,0.057344,0.006144
+711,1041.84,0.959839,0.333824,0.006144,0.23552,0.005248,0.004832,0.005376,0.006528,0.006112,0.05792,0.006144
+712,1403.94,0.71228,0.326016,0.005888,0.234112,0.005408,0.004832,0.005728,0.005824,0.005984,0.053376,0.004864
+713,1111.08,0.900024,0.323712,0.005952,0.231744,0.004096,0.005568,0.004672,0.006176,0.006112,0.053248,0.006144
+714,1195.56,0.836426,0.352256,0.006144,0.260096,0.005856,0.004384,0.005792,0.006048,0.005792,0.052,0.006144
+715,1012.48,0.987671,0.3048,0.00608,0.213056,0.004192,0.005696,0.004544,0.006048,0.006144,0.053024,0.006016
+716,1402.26,0.713135,0.301056,0.006144,0.208896,0.005184,0.004832,0.005376,0.005088,0.006208,0.053184,0.006144
+717,581.405,1.71997,0.323296,0.008192,0.2288,0.004672,0.004128,0.006112,0.006144,0.006144,0.053088,0.006016
+718,1457.91,0.685913,0.289952,0.006144,0.198496,0.004256,0.005408,0.004832,0.006144,0.005984,0.052864,0.005824
+719,1530.93,0.653198,0.294848,0.00608,0.202816,0.005248,0.0048,0.005408,0.005024,0.006144,0.053248,0.00608
+720,1321.29,0.756836,0.289216,0.006112,0.197088,0.004096,0.005696,0.004544,0.006176,0.006112,0.053248,0.006144
+721,1563.06,0.639771,0.292864,0.006144,0.200224,0.004576,0.004224,0.006016,0.006144,0.006144,0.053248,0.006144
+722,1352.26,0.739502,0.305184,0.006144,0.212736,0.004352,0.005312,0.006112,0.006016,0.005088,0.054272,0.005152
+723,1113.5,0.898071,0.299008,0.006144,0.206848,0.005632,0.004608,0.005504,0.006272,0.005984,0.051872,0.006144
+724,1170.62,0.854248,0.350912,0.006816,0.25808,0.0056,0.00464,0.004096,0.006144,0.006144,0.053248,0.006144
+725,593.838,1.68396,0.354336,0.008192,0.259072,0.004832,0.004384,0.005824,0.006208,0.006112,0.053728,0.005984
+726,1475.5,0.677734,0.300096,0.006144,0.202752,0.005472,0.004768,0.005376,0.00608,0.006144,0.057184,0.006176
+727,1460.77,0.68457,0.323936,0.006016,0.227168,0.004736,0.004096,0.006144,0.006144,0.006144,0.057344,0.006144
+728,1154.78,0.865967,0.301344,0.005952,0.204672,0.004704,0.004096,0.006176,0.006112,0.006144,0.057344,0.006144
+729,1313.24,0.761475,0.325184,0.006144,0.23072,0.0048,0.004096,0.006144,0.005856,0.006336,0.054784,0.006304
+730,1320.44,0.757324,0.317056,0.006144,0.223232,0.005664,0.004576,0.005632,0.005952,0.005856,0.054208,0.005792
+731,1155.92,0.865112,0.324608,0.00512,0.233472,0.005248,0.004832,0.005568,0.006208,0.005952,0.052064,0.006144
+732,1503.67,0.665039,0.490304,0.005952,0.398336,0.004096,0.00576,0.004512,0.006272,0.005984,0.053248,0.006144
+733,1046.5,0.955566,0.328096,0.005984,0.234048,0.005792,0.004448,0.005792,0.006048,0.005952,0.053888,0.006144
+734,953.334,1.04895,0.315392,0.008192,0.221056,0.004224,0.00544,0.0048,0.006144,0.006144,0.053248,0.006144
+735,1344.71,0.743652,0.310688,0.005984,0.20944,0.005856,0.004384,0.005792,0.006496,0.006144,0.06064,0.005952
+736,1366.7,0.731689,0.3096,0.005952,0.210976,0.004832,0.004192,0.005984,0.006304,0.006176,0.05936,0.005824
+737,1537.83,0.650269,0.300032,0.006048,0.2008,0.004096,0.005664,0.004576,0.00768,0.00624,0.058848,0.00608
+738,1402.02,0.713257,0.29696,0.006144,0.198624,0.004128,0.00544,0.0048,0.007584,0.006336,0.05776,0.006144
+739,1405.15,0.71167,0.293632,0.005984,0.19536,0.004224,0.005312,0.004928,0.006144,0.006144,0.059456,0.00608
+740,1366.93,0.731567,0.322048,0.005952,0.221888,0.00416,0.00576,0.004416,0.006144,0.006144,0.062624,0.00496
+741,1350.26,0.740601,0.493184,0.006144,0.378496,0.00448,0.00528,0.00496,0.006144,0.006144,0.064576,0.01696
+742,953.778,1.04846,0.55776,0.005984,0.424416,0.035168,0.004096,0.006144,0.006144,0.006144,0.064672,0.004992
+743,910.931,1.09778,0.315392,0.006144,0.208864,0.004128,0.005696,0.004544,0.006144,0.00752,0.066208,0.006144
+744,1010.61,0.989502,0.358688,0.005952,0.251584,0.004864,0.004192,0.006144,0.006112,0.006176,0.067584,0.00608
+745,1452.48,0.688477,0.315424,0.006144,0.208896,0.004224,0.005696,0.004416,0.006144,0.006144,0.067584,0.006176
+746,1450.68,0.689331,0.30736,0.005984,0.200512,0.004608,0.005216,0.005056,0.006112,0.006144,0.067584,0.006144
+747,1320.23,0.757446,0.329568,0.005984,0.222944,0.004768,0.004128,0.006112,0.006144,0.005952,0.067616,0.00592
+748,1367.84,0.731079,0.3096,0.00656,0.210944,0.004128,0.005632,0.004576,0.00736,0.006144,0.058176,0.00608
+749,1291.3,0.774414,0.34016,0.006048,0.239264,0.004736,0.005376,0.004864,0.006144,0.006144,0.06144,0.006144
+750,1060.18,0.943237,0.5592,0.005952,0.443776,0.014336,0.0048,0.005504,0.006656,0.006464,0.066848,0.004864
+751,841.327,1.1886,0.315168,0.006144,0.208896,0.005184,0.004768,0.004544,0.005984,0.006144,0.067392,0.006112
+752,1237.65,0.807983,0.307552,0.005984,0.201216,0.005824,0.004448,0.005664,0.006112,0.006368,0.065792,0.006144
+753,1417.55,0.705444,0.338048,0.005952,0.231744,0.00576,0.00448,0.006144,0.006144,0.006144,0.065536,0.006144
+754,1303.63,0.76709,0.306624,0.006144,0.201984,0.004832,0.004128,0.00608,0.006112,0.006112,0.065408,0.005824
+755,1473.65,0.678589,0.309248,0.006144,0.2048,0.005792,0.00448,0.005696,0.006016,0.006176,0.064,0.006144
+756,1253.75,0.797607,0.307232,0.006144,0.201856,0.004864,0.004224,0.006016,0.006272,0.006144,0.065504,0.006208
+757,1332.25,0.75061,0.319232,0.005984,0.21472,0.004864,0.00432,0.005856,0.0064,0.006144,0.064864,0.00608
+758,721.381,1.38623,0.318912,0.005984,0.216864,0.00448,0.005184,0.005088,0.006112,0.006048,0.06336,0.005792
+759,872.696,1.14587,0.341952,0.008192,0.236576,0.005088,0.004096,0.00608,0.005984,0.005888,0.063968,0.00608
+760,1358.09,0.736328,0.31536,0.006112,0.208608,0.004416,0.005248,0.004992,0.006144,0.006144,0.067584,0.006112
+761,1461.29,0.684326,0.307776,0.005952,0.20352,0.005664,0.004576,0.005472,0.00608,0.006048,0.06432,0.006144
+762,675.796,1.47974,0.335904,0.006176,0.232512,0.004864,0.004256,0.005984,0.005952,0.006048,0.065088,0.005024
+763,796.5,1.25549,0.351296,0.006048,0.243808,0.005184,0.005056,0.006112,0.006176,0.006144,0.066592,0.006176
+764,1325.35,0.754517,0.476576,0.006144,0.376832,0.005696,0.004576,0.00592,0.006208,0.006112,0.059264,0.005824
+765,853.6,1.17151,0.530656,0.008,0.426048,0.005792,0.004576,0.006048,0.00624,0.006112,0.062688,0.005152
+766,1259.15,0.794189,0.314944,0.006144,0.212384,0.004704,0.004096,0.006144,0.006144,0.006016,0.063488,0.005824
+767,1447.61,0.690796,0.310752,0.006144,0.206848,0.005504,0.004736,0.005472,0.006048,0.00624,0.063552,0.006208
+768,1179.72,0.847656,0.303008,0.006144,0.20464,0.004256,0.00544,0.0048,0.00752,0.00608,0.05808,0.006048
+769,1545.95,0.646851,0.298848,0.006112,0.201024,0.005536,0.004704,0.005472,0.005984,0.00496,0.059072,0.005984
+770,1410.95,0.70874,0.30448,0.005952,0.205184,0.00576,0.00448,0.005888,0.0064,0.006144,0.058528,0.006144
+771,1426.68,0.700928,0.302144,0.006144,0.202752,0.005376,0.0048,0.005376,0.006976,0.006144,0.057344,0.007232
+772,1237.84,0.807861,0.308,0.006336,0.211552,0.005568,0.004672,0.005856,0.005952,0.006528,0.055392,0.006144
+773,1063.76,0.940063,0.325664,0.006144,0.229408,0.00528,0.0048,0.005376,0.00512,0.007392,0.055968,0.006176
+774,1083.45,0.922974,0.518752,0.008,0.42016,0.00464,0.0056,0.004544,0.007488,0.006176,0.055968,0.006176
+775,1109.73,0.901123,0.31648,0.006048,0.219232,0.005536,0.004704,0.005568,0.00608,0.006304,0.056992,0.006016
+776,1282.2,0.779907,0.306304,0.006144,0.208896,0.00576,0.00448,0.005728,0.00656,0.00576,0.057152,0.005824
+777,1436.19,0.696289,0.29696,0.006144,0.200448,0.004352,0.005312,0.004928,0.006144,0.006144,0.057344,0.006144
+778,1349.81,0.740845,0.301056,0.004992,0.208896,0.004128,0.005632,0.004576,0.006144,0.006144,0.054688,0.005856
+779,1387.77,0.720581,0.305184,0.006112,0.207168,0.00464,0.004096,0.006144,0.006112,0.005952,0.058656,0.006304
+780,638.603,1.56592,0.332512,0.005952,0.233568,0.004832,0.004224,0.005984,0.006272,0.006144,0.059392,0.006144
+781,848.472,1.17859,0.579584,0.00624,0.44192,0.040384,0.007072,0.006144,0.006144,0.006144,0.059392,0.006144
+782,1138.57,0.878296,0.31936,0.006144,0.217088,0.004096,0.005664,0.004576,0.006144,0.0072,0.062432,0.006016
+783,1167.12,0.856812,0.312736,0.006144,0.208832,0.00416,0.005504,0.004736,0.0072,0.00512,0.06496,0.00608
+784,1420.74,0.703857,0.309248,0.006144,0.206048,0.004832,0.004192,0.006016,0.00624,0.006304,0.063328,0.006144
+785,1435.68,0.696533,0.31568,0.005984,0.211936,0.005312,0.0048,0.005376,0.00704,0.00592,0.063328,0.005984
+786,1347.59,0.742065,0.302816,0.005952,0.202944,0.004768,0.005248,0.004992,0.006176,0.006112,0.0608,0.005824
+787,1346.04,0.74292,0.295968,0.006176,0.198656,0.005376,0.0048,0.005376,0.006048,0.004992,0.058624,0.00592
+788,1135.1,0.880981,0.325088,0.005952,0.227328,0.004512,0.005184,0.005056,0.006144,0.00752,0.057568,0.005824
+789,799.766,1.25037,0.356352,0.006144,0.25936,0.004832,0.004192,0.006048,0.006144,0.006048,0.05744,0.006144
+790,728.761,1.37219,0.368096,0.008064,0.268864,0.005728,0.00448,0.005696,0.005984,0.005984,0.057504,0.005792
+791,1169.12,0.855347,0.339968,0.006144,0.239616,0.005728,0.004512,0.005632,0.006016,0.00592,0.060256,0.006144
+792,1358.32,0.736206,0.330144,0.005952,0.229536,0.004768,0.004096,0.006144,0.006144,0.006144,0.06144,0.00592
+793,1282.61,0.779663,0.324448,0.006048,0.224192,0.005152,0.0048,0.004384,0.006144,0.006144,0.06144,0.006144
+794,1430.17,0.699219,0.317568,0.006016,0.2216,0.004096,0.005632,0.004608,0.006144,0.006176,0.057312,0.005984
+795,1074.08,0.93103,0.330688,0.005952,0.23584,0.004736,0.004096,0.006144,0.006144,0.005984,0.05664,0.005152
+796,1434.93,0.696899,0.559104,0.005984,0.4584,0.004608,0.004256,0.005984,0.006144,0.006144,0.06144,0.006144
+797,785.276,1.27344,0.337248,0.018016,0.225056,0.004736,0.004096,0.006144,0.005952,0.005984,0.06128,0.005984
+798,766.682,1.30432,0.323136,0.008192,0.22016,0.004832,0.004384,0.005824,0.006464,0.006144,0.061344,0.005792
+799,1476.3,0.677368,0.303904,0.005984,0.203616,0.004096,0.005632,0.004608,0.006144,0.006144,0.06256,0.00512
+800,1297.23,0.770874,0.294976,0.006016,0.199424,0.004096,0.005568,0.004704,0.006112,0.006144,0.057088,0.005824
+801,1373.34,0.728149,0.303296,0.005248,0.206656,0.005824,0.004416,0.005792,0.006496,0.006144,0.055296,0.007424
+802,1487.02,0.672485,0.292864,0.006144,0.199744,0.004864,0.004288,0.005952,0.006048,0.006304,0.053376,0.006144
+803,1133.21,0.882446,0.3064,0.006144,0.212736,0.004352,0.005408,0.004832,0.006144,0.006144,0.054528,0.006112
+804,1161.33,0.861084,0.47104,0.006144,0.376832,0.005632,0.004608,0.00576,0.005952,0.006112,0.053856,0.006144
+805,674.683,1.48218,0.32144,0.007968,0.225344,0.004864,0.004192,0.005984,0.00608,0.005984,0.055008,0.006016
+806,1497.35,0.667847,0.309088,0.006144,0.21504,0.005184,0.0048,0.004352,0.006144,0.006176,0.055232,0.006016
+807,1458.43,0.685669,0.2936,0.005984,0.199552,0.005728,0.004512,0.005664,0.00608,0.00592,0.054016,0.006144
+808,1364.2,0.733032,0.292576,0.005952,0.19888,0.005376,0.004672,0.005408,0.006208,0.006112,0.054112,0.005856
+809,1441.49,0.693726,0.294912,0.006144,0.2048,0.005824,0.004416,0.00576,0.006176,0.005696,0.049952,0.006144
+810,1302.38,0.767822,0.290848,0.005952,0.2,0.004832,0.004288,0.006144,0.006144,0.006144,0.0512,0.006144
+811,1113.35,0.898193,0.3128,0.006144,0.222304,0.004864,0.004256,0.005984,0.005984,0.005984,0.051264,0.006016
+812,1239.9,0.806519,0.557056,0.006144,0.466944,0.005344,0.004896,0.005408,0.00608,0.006112,0.049984,0.006144
+813,761.48,1.31323,0.305632,0.007168,0.212992,0.004096,0.005792,0.004544,0.00608,0.007328,0.051648,0.005984
+814,1389.65,0.719604,0.290752,0.00592,0.19888,0.005792,0.004448,0.005792,0.005952,0.00592,0.051968,0.00608
+815,897.36,1.11438,0.321504,0.006144,0.227328,0.005856,0.004384,0.00608,0.006208,0.006144,0.053248,0.006112
+816,1261.47,0.792725,0.321664,0.005952,0.229664,0.005312,0.004704,0.005408,0.005088,0.006112,0.054304,0.00512
+817,1426.18,0.701172,0.332032,0.005952,0.235296,0.004768,0.004096,0.006144,0.006144,0.006176,0.057312,0.006144
+818,1380.52,0.724365,0.325568,0.006144,0.227328,0.005664,0.004576,0.005632,0.006656,0.006144,0.057344,0.00608
+819,1320.65,0.757202,0.332352,0.006112,0.236,0.00576,0.00448,0.005824,0.006144,0.00592,0.05696,0.005152
+820,904.294,1.10583,0.547168,0.00592,0.451008,0.004224,0.005504,0.004736,0.006144,0.006144,0.057344,0.006144
+821,714.398,1.39978,0.328256,0.008096,0.232096,0.00416,0.005312,0.004928,0.006144,0.006144,0.055296,0.00608
+822,1409.26,0.709595,0.329696,0.006144,0.232768,0.0048,0.005504,0.004736,0.006144,0.006176,0.057312,0.006112
+823,1329.87,0.751953,0.32576,0.005984,0.22352,0.005632,0.004608,0.005568,0.006144,0.00592,0.06224,0.006144
+824,1368.76,0.730591,0.33024,0.005952,0.229056,0.00496,0.004224,0.00608,0.006208,0.006144,0.062464,0.005152
+825,1096.51,0.911987,0.327488,0.006144,0.224352,0.004864,0.004256,0.00592,0.006048,0.006496,0.063168,0.00624
+826,1431.92,0.698364,0.306656,0.005984,0.204992,0.005504,0.004704,0.005568,0.00624,0.005728,0.062144,0.005792
+827,1306.96,0.765137,0.333344,0.005952,0.231456,0.004608,0.005184,0.005056,0.006144,0.006112,0.062816,0.006016
+828,1481.91,0.674805,0.526336,0.00608,0.425184,0.004928,0.004128,0.006112,0.006176,0.006112,0.061472,0.006144
+829,596.302,1.677,0.33968,0.008128,0.235776,0.005504,0.004736,0.005472,0.005984,0.006016,0.062112,0.005952
+830,1400.34,0.714111,0.310912,0.006144,0.208768,0.004224,0.00544,0.004832,0.006112,0.006144,0.063424,0.005824
+831,1448.37,0.69043,0.305248,0.005984,0.202944,0.00432,0.005344,0.004896,0.006144,0.006144,0.063488,0.005984
+832,1420,0.704224,0.30368,0.005952,0.201056,0.004512,0.005248,0.006048,0.005088,0.006144,0.063488,0.006144
+833,817.973,1.22253,0.33984,0.006144,0.23552,0.00528,0.0048,0.006048,0.005984,0.005984,0.064064,0.006016
+834,1490,0.671143,0.318336,0.006496,0.214752,0.004864,0.00416,0.006048,0.005952,0.006464,0.063456,0.006144
+835,1274.03,0.784912,0.337248,0.006272,0.233568,0.005344,0.0048,0.005408,0.006592,0.006272,0.061696,0.007296
+836,834.386,1.19849,0.483328,0.004992,0.377856,0.004928,0.005312,0.00512,0.006112,0.006144,0.067072,0.005792
+837,1127.75,0.886719,0.324832,0.008192,0.22032,0.004864,0.004192,0.00608,0.006208,0.006144,0.062848,0.005984
+838,1387.06,0.720947,0.315392,0.006144,0.212992,0.005568,0.004672,0.005536,0.006432,0.00624,0.061664,0.006144
+839,1332.03,0.750732,0.312448,0.006112,0.210016,0.004864,0.004288,0.00592,0.006112,0.006304,0.062848,0.005984
+840,1262.64,0.791992,0.312576,0.006144,0.21056,0.004512,0.005152,0.005088,0.006112,0.006144,0.06304,0.005824
+841,1485.67,0.673096,0.313152,0.006144,0.212768,0.00432,0.005536,0.004736,0.006112,0.006144,0.06144,0.005952
+842,1322.14,0.756348,0.305152,0.006144,0.202752,0.004096,0.005664,0.004576,0.006144,0.006144,0.063488,0.006144
+843,1107.03,0.90332,0.320448,0.005024,0.219136,0.005376,0.004832,0.00544,0.00624,0.004736,0.063488,0.006176
+844,1322.36,0.756226,0.330304,0.005952,0.225248,0.005088,0.00576,0.005856,0.006016,0.006016,0.064416,0.005952
+845,648.768,1.54138,0.336032,0.008096,0.229536,0.004224,0.00544,0.0048,0.006176,0.006112,0.065536,0.006112
+846,1422.22,0.703125,0.30944,0.006048,0.203648,0.005856,0.004384,0.005856,0.006176,0.00624,0.06544,0.005792
+847,1390.83,0.718994,0.311872,0.005952,0.207616,0.004096,0.005536,0.004704,0.006144,0.006144,0.065536,0.006144
+848,1383.55,0.722778,0.311296,0.006144,0.20672,0.004224,0.005504,0.004736,0.006144,0.007328,0.064352,0.006144
+849,1146.38,0.872314,0.3048,0.006144,0.200224,0.004576,0.004096,0.006144,0.006144,0.006144,0.065344,0.005984
+850,1631.22,0.613037,0.30464,0.006144,0.202336,0.004512,0.005152,0.005088,0.0072,0.006112,0.062272,0.005824
+851,631.076,1.58459,0.31328,0.006144,0.212928,0.00416,0.005504,0.004736,0.006144,0.006144,0.06144,0.00608
+852,860.143,1.1626,0.664224,0.005952,0.52304,0.03488,0.018432,0.005792,0.006496,0.006144,0.057344,0.006144
+853,1048.37,0.953857,0.314688,0.006144,0.217088,0.005504,0.004736,0.005504,0.005984,0.00592,0.057792,0.006016
+854,1460.51,0.684692,0.303104,0.006144,0.2048,0.00512,0.005088,0.005696,0.005952,0.00592,0.059392,0.004992
+855,1472.06,0.679321,0.300992,0.006176,0.20272,0.004096,0.005632,0.004608,0.006144,0.006144,0.059392,0.00608
+856,1329.44,0.752197,0.299392,0.005984,0.19824,0.004832,0.004352,0.005888,0.00592,0.005952,0.062112,0.006112
+857,1535.81,0.651123,0.301824,0.005216,0.198528,0.005696,0.004512,0.006144,0.006144,0.006144,0.063296,0.006144
+858,1326.42,0.753906,0.302432,0.00608,0.200768,0.004096,0.006144,0.006112,0.00608,0.006016,0.06128,0.005856
+859,1305.5,0.765991,0.316672,0.006144,0.217088,0.004096,0.00576,0.004544,0.00608,0.006144,0.059392,0.007424
+860,1451.45,0.688965,0.516096,0.00592,0.417984,0.004128,0.0056,0.00464,0.006176,0.006144,0.060448,0.005056
+861,768.12,1.30188,0.51968,0.008192,0.418816,0.00512,0.0056,0.00464,0.006176,0.006112,0.058944,0.00608
+862,1350.03,0.740723,0.30528,0.005984,0.20864,0.00464,0.004096,0.006144,0.006144,0.006144,0.057344,0.006144
+863,1380.98,0.724121,0.29744,0.005952,0.19936,0.005248,0.0048,0.00432,0.006112,0.006144,0.059392,0.006112
+864,1476.3,0.677368,0.301568,0.005984,0.203424,0.005728,0.004512,0.006144,0.006144,0.006144,0.057344,0.006144
+865,1334.2,0.749512,0.299744,0.006048,0.201536,0.005568,0.004672,0.0056,0.006688,0.006144,0.057344,0.006144
+866,1425.94,0.701294,0.309568,0.005952,0.205312,0.005632,0.004608,0.006144,0.006144,0.006144,0.063488,0.006144
+867,1365.33,0.732422,0.305152,0.005216,0.202624,0.005856,0.004384,0.005888,0.006432,0.006112,0.062688,0.005952
+868,1213.99,0.82373,0.3072,0.006144,0.210208,0.004832,0.004096,0.006176,0.006112,0.006016,0.057472,0.006144
+869,1486.75,0.672607,0.476512,0.006144,0.378368,0.004608,0.005152,0.005088,0.006144,0.006144,0.0584,0.006464
+870,876.712,1.14062,0.495232,0.008192,0.393216,0.006144,0.004096,0.006144,0.006144,0.006144,0.059296,0.005856
+871,492.249,2.03149,0.33392,0.006112,0.222592,0.004768,0.004096,0.006144,0.006144,0.006144,0.06144,0.01648
+872,898.64,1.11279,0.343968,0.006144,0.24368,0.005152,0.004832,0.005408,0.005152,0.006144,0.061408,0.006048
+873,1561.57,0.640381,0.320288,0.005952,0.217408,0.004768,0.004096,0.006176,0.006112,0.006144,0.063488,0.006144
+874,1398.43,0.715088,0.305248,0.005984,0.20848,0.004768,0.004096,0.006176,0.006112,0.006144,0.058432,0.005056
+875,1156.41,0.864746,0.329984,0.00608,0.226784,0.004864,0.004192,0.00608,0.00624,0.006016,0.063584,0.006144
+876,867.337,1.15295,0.53392,0.006272,0.415296,0.028416,0.0048,0.006016,0.006112,0.005312,0.056288,0.005408
+877,1327.28,0.753418,0.307488,0.00608,0.212576,0.004864,0.00544,0.0048,0.007296,0.004992,0.05664,0.0048
+878,1197.49,0.835083,0.308576,0.006144,0.210944,0.005696,0.004544,0.005696,0.006272,0.006176,0.057248,0.005856
+879,1675.94,0.59668,0.301728,0.00608,0.203488,0.005568,0.004672,0.0056,0.00624,0.006112,0.057824,0.006144
+880,1401.06,0.713745,0.301152,0.005952,0.202432,0.004704,0.004096,0.006144,0.006176,0.006112,0.059424,0.006112
+881,1373.34,0.728149,0.303104,0.006144,0.208224,0.004768,0.004128,0.006112,0.006144,0.006144,0.055296,0.006144
+882,1400.58,0.713989,0.30224,0.006112,0.20688,0.005344,0.0048,0.00544,0.006336,0.006752,0.054688,0.005888
+883,1036.7,0.9646,0.315392,0.006144,0.220224,0.004832,0.00432,0.006048,0.006112,0.006304,0.055264,0.006144
+884,779.745,1.28247,0.319392,0.006144,0.222336,0.004992,0.005248,0.004992,0.007264,0.006976,0.055392,0.006048
+885,1255.29,0.796631,0.553568,0.006048,0.420544,0.04096,0.007168,0.00512,0.006144,0.006144,0.055296,0.006144
+886,878.687,1.13806,0.321536,0.00608,0.226464,0.004864,0.004256,0.005952,0.005952,0.006528,0.055296,0.006144
+887,1208.08,0.827759,0.30816,0.005248,0.21488,0.005408,0.0048,0.005376,0.006176,0.00608,0.054048,0.006144
+888,785.577,1.27295,0.57344,0.006144,0.478208,0.004832,0.004384,0.005888,0.006336,0.00608,0.055424,0.006144
+889,1401.78,0.713379,0.313632,0.005984,0.213216,0.00432,0.005312,0.004928,0.006144,0.006144,0.06144,0.006144
+890,911.64,1.09692,0.311296,0.006144,0.210912,0.004128,0.005536,0.004704,0.007712,0.005952,0.060064,0.006144
+891,1372.65,0.728516,0.311296,0.006144,0.210144,0.004832,0.00416,0.006144,0.006144,0.006144,0.061472,0.006112
+892,1265.17,0.790405,0.546592,0.005952,0.424384,0.026336,0.004544,0.00576,0.00656,0.006112,0.06112,0.005824
+893,814.233,1.22815,0.313216,0.005984,0.21328,0.005248,0.0048,0.005408,0.006784,0.006208,0.05952,0.005984
+894,1279.8,0.781372,0.329728,0.006144,0.229376,0.005184,0.0048,0.00544,0.006112,0.006112,0.060416,0.006144
+895,1236.9,0.808472,0.31744,0.006048,0.21104,0.006144,0.004096,0.006144,0.006144,0.006144,0.065536,0.006144
+896,1399.86,0.714355,0.350208,0.006144,0.249856,0.005152,0.004832,0.005408,0.00656,0.006048,0.061216,0.004992
+897,1242.15,0.805054,0.30912,0.006176,0.208864,0.004096,0.005632,0.004608,0.007424,0.006304,0.06,0.006016
+898,1113.19,0.898315,0.31856,0.006144,0.216864,0.00432,0.005504,0.004768,0.006112,0.006176,0.062592,0.00608
+899,1405.63,0.711426,0.341696,0.006144,0.2392,0.004512,0.004384,0.005856,0.007616,0.006304,0.061504,0.006176
+900,815.287,1.22656,0.342016,0.006144,0.237248,0.004416,0.005216,0.005024,0.006144,0.006144,0.065536,0.006144
+901,1636.76,0.610962,0.310816,0.006048,0.206976,0.004096,0.005664,0.004576,0.006144,0.006144,0.06512,0.006048
+902,1384.25,0.722412,0.305152,0.006144,0.202784,0.004064,0.005728,0.004544,0.006112,0.006144,0.063488,0.006144
+903,1383.78,0.722656,0.308416,0.005952,0.207136,0.00576,0.00448,0.005792,0.006496,0.006144,0.060512,0.006144
+904,1382.15,0.723511,0.307424,0.005952,0.203168,0.005472,0.004768,0.005504,0.006016,0.004992,0.06656,0.004992
+905,1430.42,0.699097,0.311296,0.006176,0.206144,0.004768,0.004128,0.006112,0.005952,0.005952,0.06592,0.006144
+906,389.947,2.56445,0.33664,0.006176,0.230112,0.005632,0.004608,0.005568,0.006432,0.006272,0.065728,0.006112
+907,825.058,1.21204,0.56608,0.005984,0.418752,0.034816,0.01344,0.004992,0.006144,0.006048,0.069728,0.006176
+908,933.987,1.07068,0.329984,0.006016,0.219552,0.005504,0.004704,0.005696,0.00592,0.006144,0.070304,0.006144
+909,1295.18,0.772095,0.36864,0.006144,0.257312,0.004832,0.005504,0.004736,0.006144,0.00736,0.070464,0.006144
+910,1433.42,0.697632,0.315232,0.005952,0.2032,0.00544,0.0048,0.005408,0.00688,0.006144,0.071584,0.005824
+911,1288.86,0.775879,0.31744,0.006176,0.206816,0.005472,0.0048,0.005376,0.006176,0.006112,0.070368,0.006144
+912,1345.38,0.743286,0.312736,0.006144,0.208416,0.004576,0.004224,0.006048,0.006112,0.006144,0.064768,0.006304
+913,1553.87,0.643555,0.323744,0.006144,0.221184,0.004128,0.00544,0.004768,0.006144,0.006144,0.064672,0.00512
+914,1053.09,0.949585,0.31744,0.006144,0.21408,0.004864,0.004288,0.006144,0.006048,0.006016,0.063712,0.006144
+915,1049.18,0.953125,0.557248,0.006144,0.423936,0.034688,0.005312,0.005056,0.006144,0.006144,0.064672,0.005152
+916,956.004,1.04602,0.35024,0.006016,0.247552,0.00448,0.005216,0.005024,0.006144,0.006112,0.064544,0.005152
+917,1274.42,0.784668,0.3176,0.006144,0.21504,0.00416,0.005696,0.004544,0.00608,0.006144,0.064672,0.00512
+918,1293.13,0.773315,0.315392,0.006144,0.212,0.00496,0.004224,0.006144,0.00608,0.005952,0.06496,0.004928
+919,1458.69,0.685547,0.333792,0.005952,0.229792,0.004256,0.00544,0.0048,0.006144,0.006144,0.065312,0.005952
+920,1354.95,0.738037,0.312992,0.005952,0.209152,0.00576,0.00448,0.005728,0.006048,0.005952,0.064064,0.005856
+921,952.115,1.05029,0.313696,0.006016,0.209376,0.006144,0.006144,0.006144,0.006144,0.006144,0.06144,0.006144
+922,1568.75,0.637451,0.311424,0.005952,0.209248,0.005408,0.004288,0.004608,0.006144,0.006144,0.06464,0.004992
+923,824.809,1.2124,0.6648,0.006144,0.519744,0.006592,0.006144,0.005472,0.006272,0.006624,0.101888,0.00592
+924,976.866,1.02368,0.350112,0.006048,0.249568,0.004384,0.00528,0.00496,0.006144,0.006144,0.06144,0.006144
+925,1250.31,0.799805,0.325632,0.006144,0.22528,0.005536,0.004704,0.005504,0.006208,0.00624,0.059872,0.006144
+926,1228.92,0.813721,0.340128,0.006304,0.239616,0.005472,0.004768,0.006112,0.00592,0.00592,0.059872,0.006144
+927,1226.16,0.815552,0.309824,0.006464,0.208672,0.004576,0.004224,0.006016,0.006144,0.006144,0.06144,0.006144
+928,1427.68,0.700439,0.319968,0.006048,0.219712,0.005216,0.0048,0.006048,0.005824,0.005984,0.060192,0.006144
+929,1446.84,0.691162,0.319072,0.006144,0.213376,0.004096,0.005696,0.004576,0.006208,0.007552,0.065312,0.006112
+930,1043.57,0.958252,0.31344,0.005952,0.213056,0.004288,0.005376,0.004864,0.007264,0.007008,0.060704,0.004928
+931,992.849,1.0072,0.561152,0.006144,0.41984,0.04096,0.0096,0.004736,0.006144,0.006176,0.061408,0.006144
+932,868.441,1.15149,0.336672,0.005952,0.236544,0.005504,0.004704,0.00544,0.006144,0.00608,0.06016,0.006144
+933,1379.36,0.724976,0.312288,0.00496,0.210912,0.004128,0.005536,0.004704,0.006144,0.006144,0.064608,0.005152
+934,1470.47,0.680054,0.31088,0.005984,0.209504,0.004256,0.005376,0.004864,0.006176,0.006144,0.062784,0.005792
+935,1335.94,0.748535,0.302912,0.006144,0.198656,0.004096,0.005664,0.004576,0.006144,0.00624,0.065408,0.005984
+936,1284.21,0.778687,0.301216,0.005984,0.197088,0.00544,0.0048,0.005408,0.006112,0.00608,0.06432,0.005984
+937,1581.77,0.632202,0.3072,0.006144,0.198336,0.004416,0.005248,0.005024,0.006112,0.006144,0.069632,0.006144
+938,1407.8,0.710327,0.313056,0.006144,0.204032,0.004864,0.004096,0.006112,0.006016,0.005824,0.070112,0.005856
+939,1126.2,0.887939,0.488896,0.006144,0.376832,0.005664,0.004576,0.005632,0.006112,0.006048,0.071776,0.006112
+940,841.154,1.18884,0.31744,0.008192,0.2048,0.005376,0.0048,0.005408,0.005984,0.005056,0.07168,0.006144
+941,1122.04,0.891235,0.322336,0.006016,0.211872,0.005504,0.004736,0.005504,0.006016,0.006016,0.070528,0.006144
+942,1543.33,0.647949,0.315424,0.00608,0.204864,0.005696,0.004544,0.00576,0.00592,0.005984,0.071488,0.005088
+943,1491.62,0.67041,0.309248,0.006144,0.19808,0.004672,0.00416,0.006112,0.006112,0.006144,0.07168,0.006144
+944,1421.73,0.703369,0.30272,0.006144,0.19664,0.0056,0.004608,0.006144,0.006144,0.006144,0.065472,0.005824
+945,1226.35,0.81543,0.303104,0.006144,0.19456,0.005536,0.004704,0.005536,0.005824,0.005088,0.069568,0.006144
+946,1159.52,0.862427,0.305056,0.006016,0.199072,0.005312,0.0048,0.0056,0.00592,0.006176,0.066368,0.005792
+947,1558.3,0.641724,0.309216,0.006016,0.202336,0.004832,0.00416,0.006048,0.00624,0.006144,0.067616,0.005824
+948,856.098,1.16809,0.52624,0.02848,0.396544,0.005056,0.005184,0.005056,0.006144,0.006144,0.067584,0.006048
+949,1260.31,0.793457,0.318272,0.005984,0.201696,0.004096,0.005824,0.014656,0.006144,0.006144,0.067584,0.006144
+950,1449.91,0.689697,0.304128,0.005088,0.198688,0.004064,0.005824,0.00544,0.005248,0.007136,0.06768,0.00496
+951,1302.8,0.767578,0.305408,0.005984,0.197056,0.004448,0.005216,0.005024,0.006144,0.006144,0.069472,0.00592
+952,1461.81,0.684082,0.303648,0.005824,0.198752,0.004832,0.004128,0.006144,0.006144,0.006144,0.065536,0.006144
+953,1449.14,0.690063,0.30528,0.006144,0.19456,0.005728,0.004512,0.005696,0.005984,0.005952,0.071584,0.00512
+954,1420.25,0.704102,0.303584,0.005952,0.199328,0.005728,0.004512,0.005696,0.005728,0.00496,0.065536,0.006144
+955,1233.73,0.810547,0.305408,0.00608,0.200192,0.004832,0.004192,0.006176,0.006112,0.006144,0.065536,0.006144
+956,1294.36,0.772583,0.582112,0.00592,0.469984,0.005696,0.004544,0.0056,0.00624,0.00624,0.072032,0.005856
+957,589.013,1.69775,0.326272,0.008096,0.213152,0.004672,0.004096,0.006144,0.006144,0.006144,0.071776,0.006048
+958,1288.66,0.776001,0.314656,0.006144,0.202784,0.0056,0.004608,0.005568,0.00608,0.00592,0.072096,0.005856
+959,1454.55,0.6875,0.310112,0.006048,0.198816,0.004864,0.00416,0.006112,0.006144,0.006144,0.07168,0.006144
+960,971.768,1.02905,0.32896,0.006144,0.219136,0.004096,0.005728,0.004512,0.006176,0.006112,0.071104,0.005952
+961,1374.96,0.727295,0.328576,0.004992,0.2104,0.00464,0.005664,0.004576,0.006144,0.017696,0.06832,0.006144
+962,1460.51,0.684692,0.31008,0.006016,0.201664,0.005472,0.004768,0.00544,0.006592,0.006016,0.067968,0.006144
+963,1181.6,0.846313,0.31952,0.006368,0.207072,0.005696,0.004512,0.005728,0.005952,0.006272,0.071616,0.006304
+964,1301.76,0.768188,0.489472,0.006144,0.378624,0.004352,0.005376,0.004864,0.006144,0.006144,0.07168,0.006144
+965,1061.41,0.942139,0.56016,0.00608,0.447392,0.007616,0.004672,0.006016,0.006016,0.006048,0.0712,0.00512
+966,901.508,1.10925,0.31456,0.006144,0.20192,0.004864,0.00416,0.005728,0.00656,0.006144,0.072896,0.006144
+967,1220.86,0.819092,0.311552,0.006176,0.197984,0.004864,0.004224,0.005856,0.006016,0.00608,0.075232,0.00512
+968,1533.22,0.652222,0.340352,0.005952,0.2232,0.004832,0.004096,0.006144,0.006144,0.006048,0.07792,0.006016
+969,1396.05,0.716309,0.313536,0.007232,0.199328,0.004384,0.00528,0.00496,0.006144,0.006144,0.074944,0.00512
+970,1223.78,0.817139,0.316,0.005952,0.203552,0.006144,0.004096,0.005856,0.005888,0.006336,0.072032,0.006144
+971,1193.47,0.837891,0.32128,0.006144,0.206848,0.00576,0.00448,0.005792,0.006496,0.006144,0.07328,0.006336
+972,1491.08,0.670654,0.315616,0.005952,0.202912,0.004352,0.005888,0.005376,0.005152,0.006112,0.073728,0.006144
+973,1181.94,0.846069,0.571392,0.006144,0.421888,0.042976,0.00528,0.004992,0.006144,0.006144,0.07168,0.006144
+974,817.076,1.22388,0.322912,0.006144,0.208704,0.004288,0.005728,0.004544,0.006112,0.006144,0.075296,0.005952
+975,1301.97,0.768066,0.309888,0.005952,0.19696,0.004576,0.00512,0.005152,0.006112,0.00608,0.073792,0.006144
+976,1415.83,0.706299,0.314528,0.006144,0.198656,0.005184,0.0048,0.00544,0.005056,0.006144,0.077152,0.005952
+977,1446.84,0.691162,0.323008,0.006176,0.206816,0.0056,0.00464,0.0056,0.00624,0.006016,0.075968,0.005952
+978,1308.84,0.764038,0.31472,0.00592,0.197088,0.00528,0.0048,0.005376,0.00608,0.006368,0.077952,0.005856
+979,1008.37,0.991699,0.32768,0.006144,0.210848,0.004192,0.005536,0.004704,0.006144,0.006144,0.077824,0.006144
+980,1144.29,0.873901,0.342752,0.005952,0.229824,0.004576,0.004096,0.006144,0.006144,0.006016,0.073856,0.006144
+981,765.822,1.30579,0.51728,0.008192,0.397312,0.006144,0.005408,0.004864,0.006112,0.006144,0.077152,0.005952
+982,1115.77,0.89624,0.328384,0.005024,0.214048,0.004832,0.00432,0.005888,0.005888,0.005984,0.076448,0.005952
+983,1432.42,0.69812,0.311296,0.006304,0.200544,0.005216,0.004832,0.005312,0.00512,0.006144,0.07168,0.006144
+984,1413.14,0.707642,0.312064,0.005952,0.201472,0.004256,0.005568,0.004672,0.006144,0.006144,0.07168,0.006176
+985,1242.53,0.80481,0.30176,0.006304,0.19632,0.004864,0.00416,0.006048,0.006208,0.006208,0.0656,0.006048
+986,1598.75,0.625488,0.306464,0.006144,0.202784,0.005376,0.004832,0.005408,0.00592,0.00512,0.065024,0.005856
+987,1389.42,0.719727,0.299712,0.005952,0.195488,0.005728,0.00448,0.005792,0.006112,0.00608,0.063968,0.006112
+988,1406.83,0.710815,0.309152,0.006048,0.2048,0.004096,0.005984,0.005696,0.006016,0.005888,0.06448,0.006144
+989,1419.76,0.704346,0.479232,0.006144,0.376832,0.005824,0.004416,0.005792,0.006112,0.00592,0.062048,0.006144
+990,1145.89,0.872681,0.306112,0.005056,0.2048,0.005312,0.004768,0.004256,0.007264,0.005024,0.063488,0.006144
+991,687.133,1.45532,0.31712,0.008192,0.212992,0.004096,0.005824,0.004544,0.006016,0.007648,0.061568,0.00624
+992,1288.46,0.776123,0.30288,0.005952,0.200928,0.005536,0.004704,0.005472,0.006176,0.005952,0.062272,0.005888
+993,1444.54,0.692261,0.298944,0.006144,0.195968,0.004736,0.004096,0.006144,0.006176,0.006112,0.063488,0.00608
+994,1610.38,0.620972,0.303168,0.006048,0.200992,0.004576,0.005344,0.004896,0.006176,0.006112,0.063136,0.005888
+995,1311.14,0.762695,0.300512,0.006112,0.19664,0.005856,0.004384,0.006144,0.006144,0.006144,0.063136,0.005952
+996,1524.94,0.655762,0.301408,0.005952,0.1992,0.005696,0.004544,0.005664,0.006048,0.006016,0.062144,0.006144
+997,1406.59,0.710938,0.309792,0.006112,0.207072,0.004448,0.005312,0.004928,0.007328,0.006048,0.0624,0.006144
+998,559.295,1.78796,0.325888,0.00592,0.220096,0.0056,0.005792,0.004992,0.006144,0.006144,0.065536,0.005664
+999,1012.61,0.987549,0.331072,0.008192,0.224672,0.004704,0.005248,0.004992,0.006144,0.006144,0.065024,0.005952
+1000,1262.25,0.792236,0.313344,0.006144,0.208576,0.004416,0.005248,0.004992,0.006144,0.006176,0.065504,0.006144
+1001,1116.08,0.895996,0.307296,0.005952,0.202144,0.004832,0.004256,0.005952,0.00608,0.006176,0.06576,0.006144
+1002,1588.52,0.629517,0.315392,0.006144,0.204064,0.004832,0.005536,0.00592,0.006592,0.00608,0.07008,0.006144
+1003,1295.59,0.771851,0.302432,0.006048,0.202688,0.004256,0.005408,0.004832,0.005952,0.006048,0.061248,0.005952
+1004,1275.42,0.784058,0.306112,0.006592,0.20528,0.00416,0.005728,0.00576,0.006048,0.006016,0.060384,0.006144
+1005,1221.59,0.818604,0.477184,0.006144,0.376832,0.006144,0.00512,0.00512,0.006144,0.006048,0.05952,0.006112
+1006,1021.83,0.978638,0.541568,0.004992,0.44032,0.00816,0.004128,0.006048,0.00624,0.006144,0.06048,0.005056
+1007,946.177,1.05688,0.309088,0.006112,0.20688,0.00448,0.005216,0.005024,0.006176,0.006112,0.063168,0.00592
+1008,1462.07,0.68396,0.305184,0.006144,0.204736,0.00416,0.005504,0.004736,0.006144,0.006176,0.062656,0.004928
+1009,1523.24,0.656494,0.306656,0.006144,0.201856,0.004832,0.004256,0.00576,0.006048,0.006016,0.065504,0.00624
+1010,1258.37,0.794678,0.29904,0.006144,0.19456,0.00512,0.0048,0.004544,0.007072,0.00512,0.066816,0.004864
+1011,1494.35,0.669189,0.325632,0.006144,0.221184,0.00608,0.00416,0.006048,0.005664,0.00624,0.063968,0.006144
+1012,1361.48,0.734497,0.305152,0.006112,0.198688,0.005824,0.004416,0.00576,0.006016,0.005984,0.067456,0.004896
+1013,1352.48,0.73938,0.316704,0.006144,0.208896,0.005152,0.0048,0.004544,0.006016,0.006112,0.069088,0.005952
+1014,981.666,1.01868,0.544224,0.005984,0.431936,0.00688,0.005472,0.004768,0.006144,0.007232,0.069984,0.005824
+1015,898.443,1.11304,0.305792,0.006528,0.198912,0.005504,0.004768,0.00544,0.00624,0.006176,0.06608,0.006144
+1016,1493.26,0.669678,0.295232,0.005984,0.194272,0.004832,0.004128,0.006144,0.006048,0.005952,0.062752,0.00512
+1017,1524.66,0.655884,0.3008,0.006048,0.197408,0.005344,0.004832,0.005376,0.006048,0.005088,0.064704,0.005952
+1018,1230.21,0.812866,0.299136,0.005952,0.194944,0.005344,0.0048,0.00608,0.00608,0.00608,0.063744,0.006112
+1019,1661.33,0.601929,0.300096,0.006144,0.196608,0.005504,0.004736,0.005472,0.006432,0.00608,0.063168,0.005952
+1020,1319.16,0.758057,0.298976,0.006144,0.196608,0.005664,0.004576,0.006144,0.006144,0.006112,0.061472,0.006112
+1021,620.136,1.61255,0.299744,0.00608,0.197408,0.004096,0.005792,0.004544,0.006048,0.006144,0.063488,0.006144
+1022,600.103,1.66638,0.315392,0.008224,0.208576,0.004384,0.00528,0.004992,0.006112,0.007296,0.064416,0.006112
+1023,1546.83,0.646484,0.301344,0.005984,0.19632,0.004672,0.004096,0.006144,0.006144,0.006144,0.06672,0.00512
+1024,1501.19,0.666138,0.304576,0.006144,0.198656,0.00576,0.00448,0.005568,0.006048,0.005888,0.066272,0.00576
+1025,1409.5,0.709473,0.30176,0.006112,0.195168,0.005856,0.004384,0.005984,0.006304,0.005952,0.06688,0.00512
+1026,1301.97,0.768066,0.310752,0.005984,0.198912,0.005856,0.004384,0.006144,0.006144,0.006112,0.071424,0.005792
+1027,1515.07,0.660034,0.309248,0.006144,0.197984,0.004768,0.004096,0.006144,0.006144,0.006144,0.07168,0.006144
+1028,1402.74,0.712891,0.304928,0.006144,0.199808,0.004832,0.004256,0.006144,0.006144,0.006016,0.065664,0.00592
+1029,1361.02,0.734741,0.308192,0.005056,0.202752,0.005632,0.004608,0.0056,0.006208,0.006208,0.065952,0.006176
+1030,1025.67,0.974976,0.48992,0.00816,0.377696,0.005696,0.004544,0.005664,0.005952,0.005952,0.070464,0.005792
+1031,725.726,1.37793,0.322688,0.006144,0.208896,0.005792,0.004448,0.006144,0.006144,0.006144,0.073056,0.00592
+1032,1422.96,0.702759,0.31728,0.006144,0.20592,0.004864,0.004256,0.005984,0.005888,0.006048,0.072192,0.005984
+1033,1381.92,0.723633,0.306656,0.006144,0.19456,0.00576,0.00448,0.00576,0.005984,0.006272,0.071776,0.00592
+1034,1402.74,0.712891,0.312448,0.005952,0.200544,0.00448,0.005856,0.005536,0.004992,0.006176,0.073056,0.005856
+1035,1327.93,0.753052,0.304512,0.005952,0.196928,0.005856,0.004384,0.005888,0.006208,0.006016,0.067296,0.005984
+1036,1502.29,0.665649,0.313344,0.006144,0.202752,0.005312,0.0048,0.00608,0.006112,0.005952,0.07008,0.006112
+1037,1202.05,0.831909,0.3288,0.006144,0.219136,0.005376,0.0048,0.00544,0.006144,0.006624,0.06912,0.006016
+1038,1489.73,0.671265,0.313344,0.006144,0.202752,0.00528,0.00496,0.005952,0.005952,0.006304,0.069856,0.006144
+1039,679.383,1.47192,0.30496,0.008064,0.197504,0.005536,0.004704,0.005536,0.006752,0.006144,0.064768,0.005952
+1040,1636.44,0.611084,0.301888,0.005024,0.199712,0.004864,0.004224,0.005984,0.00608,0.00608,0.063776,0.006144
+1041,1189.66,0.840576,0.29696,0.006144,0.19456,0.00512,0.004832,0.005728,0.006272,0.006048,0.062208,0.006048
+1042,1670.81,0.598511,0.303936,0.005952,0.200704,0.005056,0.00416,0.006048,0.00592,0.00592,0.064032,0.006144
+1043,1465.47,0.682373,0.304576,0.006144,0.196192,0.004512,0.00512,0.00512,0.006048,0.00592,0.0696,0.00592
+1044,1439.97,0.694458,0.30912,0.005024,0.200672,0.00544,0.0048,0.005408,0.00608,0.006112,0.069792,0.005792
+1045,1265.56,0.790161,0.311776,0.005952,0.202944,0.004768,0.004096,0.006144,0.005952,0.006016,0.06992,0.005984
+1046,1390.6,0.719116,0.310112,0.006016,0.201696,0.004096,0.0056,0.00464,0.006144,0.006144,0.070976,0.0048
+1047,1384.95,0.722046,0.54576,0.005088,0.434176,0.007744,0.004544,0.006144,0.006048,0.00592,0.069952,0.006144
+1048,691.075,1.44702,0.300544,0.006144,0.196608,0.005568,0.004672,0.005536,0.005984,0.006112,0.064128,0.005792
+1049,1618.01,0.618042,0.302976,0.006048,0.198848,0.004096,0.005568,0.004704,0.006272,0.005984,0.065504,0.005952
+1050,1350.03,0.740723,0.300288,0.006144,0.195776,0.004864,0.00528,0.005024,0.006144,0.006144,0.064992,0.00592
+1051,880.671,1.1355,0.346336,0.005952,0.23104,0.01312,0.004288,0.006112,0.006016,0.006048,0.067808,0.005952
+1052,1554.46,0.643311,0.304864,0.005952,0.199552,0.005856,0.004384,0.005792,0.006496,0.006144,0.064896,0.005792
+1053,1451.45,0.688965,0.305056,0.004992,0.200704,0.005824,0.004416,0.005664,0.005984,0.006656,0.064864,0.005952
+1054,1482.98,0.674316,0.312736,0.005984,0.202144,0.004832,0.00416,0.006176,0.006112,0.006112,0.071392,0.005824
+1055,1284.01,0.778809,0.30096,0.006048,0.19328,0.005536,0.004192,0.004608,0.006304,0.005984,0.069056,0.005952
+1056,729.735,1.37036,0.315424,0.008192,0.202752,0.005376,0.0048,0.005376,0.00672,0.006048,0.071168,0.004992
+1057,1369.44,0.730225,0.305248,0.005952,0.194944,0.005472,0.004768,0.00544,0.005984,0.00512,0.07152,0.006048
+1058,1545.08,0.647217,0.308192,0.005088,0.198656,0.005536,0.004704,0.00576,0.006048,0.006112,0.071168,0.00512
+1059,1217.06,0.821655,0.311328,0.006176,0.195968,0.004704,0.00544,0.0048,0.006144,0.006176,0.075744,0.006176
+1060,1525.23,0.65564,0.313824,0.005952,0.198496,0.004864,0.00416,0.006048,0.006176,0.006144,0.07584,0.006144
+1061,1467.57,0.681396,0.313312,0.006144,0.198016,0.004736,0.004096,0.006176,0.006112,0.006048,0.075872,0.006112
+1062,1407.08,0.710693,0.331552,0.006144,0.21504,0.005312,0.004768,0.005408,0.006112,0.006144,0.076704,0.00592
+1063,1185.01,0.843872,0.315072,0.006176,0.198624,0.004096,0.00608,0.00544,0.006048,0.006016,0.07616,0.006432
+1064,1432.67,0.697998,0.556448,0.00608,0.43664,0.008064,0.004224,0.006016,0.006272,0.006144,0.077024,0.005984
+1065,677.249,1.47656,0.311296,0.006144,0.196608,0.005184,0.004832,0.00544,0.006048,0.00512,0.075776,0.006144
+1066,1615.78,0.618896,0.30784,0.005952,0.199456,0.005152,0.0048,0.004416,0.006112,0.006304,0.070624,0.005024
+1067,1148.46,0.870728,0.303232,0.005984,0.194816,0.0056,0.00464,0.005632,0.006304,0.006016,0.068064,0.006176
+1068,1652.95,0.60498,0.309344,0.005952,0.202496,0.00464,0.004192,0.006048,0.006144,0.006144,0.068704,0.005024
+1069,1354.72,0.738159,0.305216,0.00608,0.19552,0.005216,0.004768,0.005792,0.006368,0.006208,0.06928,0.005984
+1070,1015.5,0.984741,0.30496,0.005984,0.198368,0.004768,0.004064,0.006144,0.006048,0.005984,0.06784,0.00576
+1071,1274.62,0.784546,0.356352,0.006048,0.248672,0.005248,0.0048,0.00544,0.006208,0.00624,0.067712,0.005984
+1072,1335.72,0.748657,0.527968,0.006208,0.41568,0.005184,0.004832,0.005408,0.005056,0.007616,0.07216,0.005824
+1073,618.217,1.61755,0.3272,0.008096,0.217536,0.005088,0.004832,0.005408,0.00512,0.006176,0.06896,0.005984
+1074,1459.21,0.685303,0.319488,0.006144,0.212992,0.004096,0.005824,0.004512,0.006048,0.006144,0.067584,0.006144
+1075,1242.15,0.805054,0.307776,0.005952,0.20112,0.004448,0.005248,0.004992,0.006144,0.006144,0.067584,0.006144
+1076,1454.03,0.687744,0.323136,0.005952,0.215584,0.004096,0.0056,0.00464,0.006144,0.006176,0.069152,0.005792
+1077,1353.38,0.738892,0.311008,0.00608,0.202112,0.0048,0.004096,0.007456,0.006112,0.005984,0.068512,0.005856
+1078,1460.77,0.68457,0.311648,0.006144,0.199168,0.005312,0.0048,0.005408,0.005984,0.006656,0.072192,0.005984
+1079,1382.85,0.723145,0.306528,0.006144,0.196512,0.004192,0.005472,0.004768,0.006144,0.0072,0.070144,0.005952
+1080,1259.73,0.793823,0.305344,0.005984,0.196928,0.004128,0.005536,0.004704,0.006144,0.007328,0.0696,0.004992
+1081,653.634,1.52991,0.313344,0.008192,0.200736,0.005696,0.004512,0.005728,0.00656,0.006144,0.069632,0.006144
+1082,1578.12,0.633667,0.31712,0.005952,0.200448,0.004864,0.004128,0.006144,0.006144,0.006144,0.077472,0.005824
+1083,1214.17,0.823608,0.337984,0.006016,0.228032,0.005376,0.004864,0.006016,0.006016,0.005984,0.069696,0.005984
+1084,1530.93,0.653198,0.3072,0.006144,0.197888,0.004864,0.004096,0.006144,0.006176,0.006112,0.069632,0.006144
+1085,1277.21,0.782959,0.31136,0.005984,0.198976,0.004512,0.006144,0.005568,0.00608,0.005984,0.072128,0.005984
+1086,1374.04,0.727783,0.310112,0.00496,0.200096,0.004704,0.005664,0.004576,0.006144,0.006144,0.07168,0.006144
+1087,1068.48,0.935913,0.319872,0.006016,0.209408,0.004096,0.005792,0.004544,0.006048,0.006176,0.07168,0.006112
+1088,1413.14,0.707642,0.318368,0.005056,0.208864,0.004288,0.0056,0.004544,0.006048,0.006144,0.07168,0.006144
+1089,910.526,1.09827,0.351776,0.006144,0.241248,0.004512,0.005152,0.005088,0.006144,0.006144,0.071328,0.006016
+1090,661.445,1.51184,0.33792,0.008192,0.229376,0.005856,0.004384,0.005856,0.006048,0.006016,0.066048,0.006144
+1091,1515.63,0.65979,0.30928,0.006144,0.202176,0.004672,0.004096,0.006144,0.006144,0.006144,0.067584,0.006176
+1092,1513.95,0.660522,0.305632,0.005984,0.197248,0.005568,0.004672,0.006144,0.006176,0.006112,0.068896,0.004832
+1093,1387.77,0.720581,0.305536,0.005952,0.1984,0.004864,0.00416,0.00608,0.006208,0.006112,0.067616,0.006144
+1094,1396.05,0.716309,0.310272,0.00608,0.202368,0.004544,0.004096,0.006144,0.006144,0.006144,0.06896,0.005792
+1095,1364.2,0.733032,0.303168,0.005984,0.196736,0.004192,0.005632,0.004608,0.006144,0.006144,0.067584,0.006144
+1096,1344.94,0.74353,0.311712,0.005984,0.205408,0.004064,0.005728,0.004512,0.006176,0.006112,0.067584,0.006144
+1097,1133.06,0.882568,0.547904,0.006144,0.43984,0.006624,0.006144,0.005504,0.005984,0.00592,0.06576,0.005984
+1098,875.869,1.14172,0.303104,0.006144,0.198656,0.004096,0.005696,0.004544,0.006176,0.006112,0.065536,0.006144
+1099,1421.98,0.703247,0.299744,0.005984,0.193248,0.005792,0.004448,0.00576,0.006112,0.006144,0.067136,0.00512
+1100,1413.88,0.707275,0.29936,0.004992,0.194208,0.004448,0.005216,0.005024,0.006144,0.00608,0.067424,0.005824
+1101,1400.1,0.714233,0.30096,0.006144,0.192512,0.0056,0.00464,0.005568,0.00624,0.006464,0.067744,0.006048
+1102,1423.95,0.702271,0.301056,0.006016,0.194688,0.00544,0.0048,0.006144,0.006144,0.006144,0.065536,0.006144
+1103,1403.22,0.712646,0.301472,0.005984,0.196704,0.004576,0.00416,0.00608,0.005696,0.006016,0.066112,0.006144
+1104,1458.17,0.685791,0.29744,0.005952,0.192736,0.004544,0.005536,0.004704,0.006144,0.006176,0.065504,0.006144
+1105,1392.01,0.718384,0.299712,0.005952,0.194528,0.004864,0.004352,0.005824,0.006144,0.006112,0.065888,0.006048
+1106,624.914,1.60022,0.315776,0.008096,0.2072,0.004224,0.005408,0.004832,0.006144,0.006144,0.067584,0.006144
+1107,1089.36,0.917969,0.321536,0.006208,0.196608,0.004032,0.004096,0.018368,0.005536,0.006816,0.073728,0.006144
+1108,1572.96,0.635742,0.304672,0.006144,0.198496,0.004256,0.00544,0.004832,0.006112,0.006144,0.067488,0.00576
+1109,1443.52,0.692749,0.30752,0.005952,0.195008,0.004096,0.005792,0.006496,0.006144,0.006144,0.072768,0.00512
+1110,1388,0.720459,0.305408,0.005984,0.194976,0.004096,0.0056,0.00464,0.006144,0.006144,0.072768,0.005056
+1111,1413.14,0.707642,0.306304,0.006144,0.19456,0.005504,0.004704,0.00528,0.006144,0.006016,0.071968,0.005984
+1112,1396.76,0.715942,0.30416,0.006144,0.196512,0.004192,0.005472,0.004768,0.006144,0.006144,0.068992,0.005792
+1113,1340.31,0.746094,0.33792,0.006112,0.225312,0.00416,0.00608,0.00576,0.005984,0.005952,0.072416,0.006144
+1114,1360.12,0.735229,0.3072,0.006144,0.201856,0.004864,0.004224,0.00592,0.005952,0.006112,0.065984,0.006144
+1115,1349.37,0.741089,0.314656,0.006144,0.208928,0.005568,0.00464,0.005632,0.00624,0.006016,0.065568,0.00592
+1116,1383.55,0.722778,0.324672,0.006144,0.219136,0.005792,0.004448,0.006048,0.00624,0.006144,0.064928,0.005792
+1117,1340.09,0.746216,0.325952,0.005952,0.21984,0.005216,0.004832,0.005824,0.006336,0.00624,0.06576,0.005952
+1118,1394.86,0.716919,0.297056,0.006208,0.194208,0.00448,0.005184,0.005024,0.006144,0.006016,0.064864,0.004928
+1119,1396.52,0.716064,0.296992,0.006144,0.192512,0.00512,0.00512,0.005632,0.006016,0.00592,0.064352,0.006176
+1120,1411.93,0.708252,0.302816,0.006144,0.198656,0.005152,0.004896,0.00544,0.006048,0.00512,0.065504,0.005856
+1121,1327.07,0.75354,0.29616,0.006144,0.193888,0.004768,0.004096,0.006144,0.006144,0.006144,0.062816,0.006016
+1122,1433.92,0.697388,0.290848,0.005952,0.190688,0.005216,0.005024,0.006016,0.00624,0.00608,0.06064,0.004992
+1123,1377.73,0.72583,0.308832,0.006144,0.208864,0.004128,0.005472,0.004768,0.006144,0.006144,0.061184,0.005984
+1124,1294.15,0.772705,0.2936,0.006048,0.193344,0.004096,0.005792,0.004448,0.006144,0.007296,0.060288,0.006144
+1125,1397.95,0.715332,0.294912,0.006144,0.192512,0.004096,0.005664,0.004576,0.007296,0.006048,0.062112,0.006464
+1126,1449.4,0.689941,0.293472,0.005056,0.191744,0.004864,0.005408,0.004832,0.006144,0.006176,0.063424,0.005824
+1127,1423.46,0.702515,0.291712,0.005056,0.192128,0.00448,0.005856,0.005568,0.006048,0.006176,0.06032,0.00608
+1128,1411.93,0.708252,0.29472,0.006144,0.193664,0.004832,0.004256,0.006144,0.006144,0.006144,0.06144,0.005952
+1129,1033.43,0.967651,0.315872,0.005952,0.216704,0.00464,0.004576,0.005792,0.006112,0.006144,0.059776,0.006176
+1130,1623.46,0.615967,0.298176,0.006144,0.198016,0.004736,0.004096,0.006144,0.006144,0.006144,0.06096,0.005792
+1131,1482.45,0.674561,0.296576,0.006144,0.196448,0.004256,0.005312,0.004928,0.006144,0.006144,0.061216,0.005984
+1132,1446.07,0.691528,0.294912,0.00608,0.194624,0.004096,0.005632,0.004608,0.006144,0.007648,0.059936,0.006144
+1133,1419.02,0.704712,0.294912,0.006144,0.19456,0.005216,0.004832,0.005504,0.006048,0.005088,0.061376,0.006144
+1134,1424.7,0.701904,0.292864,0.005952,0.193312,0.004096,0.005824,0.004416,0.00624,0.006048,0.061024,0.005952
+1135,1431.17,0.69873,0.291264,0.006048,0.191424,0.005792,0.004448,0.005568,0.006208,0.006144,0.059712,0.00592
+1136,1435.43,0.696655,0.290816,0.00608,0.192576,0.004096,0.005664,0.005696,0.00608,0.005088,0.06064,0.004896
+1137,1430.92,0.698853,0.29424,0.006144,0.192512,0.004096,0.005792,0.005664,0.006208,0.006112,0.061792,0.00592
+1138,1430.92,0.698853,0.29456,0.006144,0.193536,0.004864,0.004352,0.005696,0.006016,0.005984,0.06208,0.005888
+1139,1450.94,0.689209,0.29296,0.006144,0.192512,0.004096,0.005632,0.004608,0.006144,0.006144,0.06256,0.00512
+1140,1423.71,0.702393,0.29696,0.006144,0.192512,0.005824,0.004416,0.00608,0.005952,0.006112,0.063776,0.006144
+1141,1425.69,0.701416,0.298656,0.005984,0.192896,0.004128,0.005536,0.004768,0.00608,0.006144,0.067168,0.005952
+1142,1387.77,0.720581,0.299264,0.005984,0.191328,0.00576,0.00448,0.005728,0.006016,0.006144,0.067968,0.005856
+1143,1339.66,0.74646,0.335744,0.006048,0.224896,0.004576,0.004096,0.006144,0.006144,0.006144,0.07168,0.006016
+1144,1297.85,0.770508,0.325632,0.005984,0.2152,0.005632,0.004608,0.0056,0.00624,0.006048,0.070176,0.006144
+1145,1474.18,0.678345,0.302336,0.006144,0.192512,0.004096,0.0056,0.00464,0.006144,0.006144,0.071104,0.005952
+1146,1381.68,0.723755,0.302752,0.005952,0.191968,0.004864,0.005408,0.004928,0.006144,0.006144,0.071392,0.005952
+1147,1157.88,0.863647,0.320544,0.00512,0.212,0.004864,0.00432,0.00592,0.00608,0.006048,0.070016,0.006176
+1148,1528.64,0.654175,0.306528,0.006144,0.196608,0.004096,0.005632,0.00464,0.006112,0.006144,0.071072,0.00608
+1149,1402.98,0.712769,0.303104,0.006144,0.192192,0.004416,0.005792,0.004576,0.006048,0.006112,0.07168,0.006144
+1150,715.709,1.39722,0.331776,0.006144,0.208896,0.004096,0.005632,0.004608,0.014272,0.006112,0.075872,0.006144
+1151,1550.05,0.645142,0.318304,0.005056,0.208832,0.004128,0.005504,0.004736,0.007456,0.005984,0.070528,0.00608
+1152,1339.66,0.74646,0.302688,0.005952,0.195328,0.005472,0.004768,0.006144,0.006144,0.006144,0.066784,0.005952
+1153,1173.64,0.852051,0.312832,0.006144,0.206848,0.005152,0.0048,0.005408,0.00624,0.006048,0.06624,0.005952
+1154,1473.12,0.678833,0.32368,0.005984,0.203264,0.004384,0.005184,0.005056,0.006144,0.006144,0.065536,0.021984
+1155,1401.3,0.713623,0.294912,0.006144,0.193984,0.004672,0.004096,0.006144,0.005984,0.00592,0.061824,0.006144
+1156,1152.34,0.867798,0.317632,0.006112,0.208896,0.004128,0.005504,0.004768,0.006112,0.006144,0.070752,0.005216
+1157,1513.11,0.660889,0.31728,0.005952,0.208864,0.004864,0.004128,0.00608,0.006208,0.006144,0.069088,0.005952
+1158,1463.38,0.68335,0.307296,0.005952,0.199424,0.00528,0.0048,0.005664,0.006144,0.006208,0.067872,0.005952
+1159,1416.32,0.706055,0.300352,0.006144,0.19664,0.005792,0.004416,0.005632,0.006048,0.006112,0.063584,0.005984
+1160,1330.52,0.751587,0.301056,0.006144,0.19664,0.005536,0.004672,0.00592,0.006048,0.00592,0.064032,0.006144
+1161,1384.25,0.722412,0.313728,0.005984,0.205344,0.00544,0.004832,0.005376,0.004864,0.006112,0.069632,0.006144
+1162,1392.72,0.718018,0.32816,0.006624,0.223232,0.005728,0.004544,0.006144,0.006112,0.006048,0.063584,0.006144
+1163,1387.53,0.720703,0.303584,0.006016,0.198464,0.004832,0.00416,0.00608,0.006208,0.00608,0.0656,0.006144
+1164,1400.34,0.714111,0.302304,0.00608,0.19872,0.005312,0.004768,0.005408,0.006016,0.00512,0.065056,0.005824
+1165,1403.94,0.71228,0.3072,0.006144,0.198656,0.005696,0.004544,0.00592,0.006112,0.006048,0.067936,0.006144
+1166,1401.3,0.713623,0.301056,0.006144,0.19456,0.005472,0.004768,0.005248,0.006048,0.005152,0.06752,0.006144
+1167,1408.29,0.710083,0.299328,0.005952,0.19408,0.004864,0.004256,0.005824,0.006464,0.006176,0.066592,0.00512
+1168,1393.43,0.717651,0.299872,0.004992,0.196576,0.004128,0.0056,0.004608,0.006144,0.006144,0.066592,0.005088
+1169,1342.07,0.745117,0.327712,0.005088,0.22096,0.00432,0.005344,0.004896,0.006144,0.006144,0.068832,0.005984
+1170,1415.34,0.706543,0.303104,0.006144,0.196352,0.004352,0.005472,0.004768,0.006144,0.006144,0.067584,0.006144
+1171,882.759,1.13281,0.36864,0.006144,0.260128,0.00512,0.0048,0.004384,0.00768,0.006112,0.068128,0.006144
+1172,1456.87,0.686401,0.319488,0.006144,0.212768,0.00432,0.005376,0.004896,0.006112,0.006144,0.067584,0.006144
+1173,1373.34,0.728149,0.333216,0.006144,0.227328,0.005216,0.00496,0.00528,0.005216,0.005952,0.067168,0.005952
+1174,1265.96,0.789917,0.318784,0.006144,0.208896,0.005248,0.0048,0.005408,0.006912,0.00592,0.069664,0.005792
+1175,1545.37,0.647095,0.307296,0.006048,0.201216,0.004096,0.005568,0.004672,0.006144,0.006144,0.06736,0.006048
+1176,1400.1,0.714233,0.305152,0.006112,0.200256,0.004576,0.00432,0.00592,0.006112,0.00608,0.065632,0.006144
+1177,1402.74,0.712891,0.303744,0.00496,0.196608,0.005696,0.004544,0.005664,0.006624,0.006144,0.066976,0.006528
+1178,1427.43,0.700562,0.3072,0.006144,0.198656,0.005312,0.004896,0.005376,0.00608,0.004992,0.07072,0.005024
+1179,1229.48,0.813354,0.31232,0.004928,0.202752,0.005344,0.004896,0.006144,0.006176,0.00608,0.07088,0.00512
+1180,1597.5,0.625977,0.30464,0.006144,0.198656,0.005408,0.0048,0.005376,0.006112,0.006048,0.066272,0.005824
+1181,1425.94,0.701294,0.303104,0.006144,0.198368,0.004384,0.00528,0.00496,0.006144,0.006144,0.065536,0.006144
+1182,1452.22,0.688599,0.30144,0.005056,0.19792,0.004832,0.004096,0.006144,0.006144,0.00608,0.065376,0.005792
+1183,1419.02,0.704712,0.300736,0.006144,0.195744,0.004832,0.004224,0.005856,0.00608,0.005952,0.065952,0.005952
+1184,1418.77,0.704834,0.299008,0.006144,0.19456,0.005312,0.004736,0.00432,0.006112,0.006144,0.06672,0.00496
+1185,1392.49,0.71814,0.301824,0.006048,0.197344,0.005472,0.0048,0.005408,0.005888,0.006144,0.0656,0.00512
+1186,1425.69,0.701416,0.30016,0.006144,0.197728,0.004864,0.004256,0.005984,0.00608,0.006016,0.063264,0.005824
+1187,1429.92,0.699341,0.299072,0.006048,0.194592,0.004544,0.004096,0.006144,0.006144,0.006144,0.065408,0.005952
+1188,1390.36,0.719238,0.308512,0.006144,0.19824,0.004512,0.00512,0.00512,0.006144,0.006144,0.071296,0.005792
+1189,1357.64,0.736572,0.313536,0.00608,0.206112,0.004864,0.004224,0.005984,0.005888,0.006144,0.069088,0.005152
+1190,1380.52,0.724365,0.3072,0.005952,0.198944,0.004096,0.005632,0.005952,0.006016,0.006048,0.068512,0.006048
+1191,604.977,1.65295,0.305088,0.006144,0.200192,0.004608,0.004096,0.006144,0.007328,0.00512,0.065376,0.00608
+1192,1321.08,0.756958,0.319488,0.006144,0.214912,0.004224,0.0056,0.00464,0.007392,0.00608,0.064384,0.006112
+1193,1569.05,0.637329,0.309344,0.006112,0.201056,0.005472,0.004928,0.005312,0.006272,0.006144,0.068064,0.005984
+1194,1210.4,0.826172,0.3072,0.006144,0.198656,0.004096,0.005536,0.004704,0.006144,0.006144,0.070976,0.0048
+1195,1542.75,0.648193,0.31744,0.006144,0.2048,0.006016,0.004224,0.005792,0.006496,0.006144,0.07168,0.006144
+1196,1301.14,0.768555,0.340768,0.005984,0.233856,0.004704,0.004096,0.006112,0.006144,0.006016,0.067712,0.006144
+1197,1395.57,0.716553,0.31584,0.00608,0.206784,0.004672,0.004096,0.006144,0.006144,0.006144,0.069632,0.006144
+1198,1278,0.782471,0.3584,0.006144,0.24976,0.004192,0.005472,0.004768,0.006144,0.006144,0.069632,0.006144
+1199,1472.06,0.679321,0.306912,0.006144,0.196256,0.004448,0.005216,0.005024,0.006144,0.006144,0.071552,0.005984
+1200,1396.52,0.716064,0.313344,0.006144,0.20256,0.004288,0.005376,0.006464,0.00608,0.006144,0.070144,0.006144
+1201,1404.9,0.711792,0.307168,0.007712,0.19504,0.005504,0.004736,0.006144,0.006144,0.006048,0.069728,0.006112
+1202,1405.39,0.711548,0.3072,0.006144,0.198656,0.005696,0.004544,0.005472,0.00592,0.005152,0.069472,0.006144
+1203,1422.47,0.703003,0.305184,0.006144,0.19584,0.004864,0.004096,0.005952,0.006304,0.006176,0.069632,0.006176
+1204,1415.34,0.706543,0.309088,0.006144,0.198592,0.00416,0.005376,0.004864,0.006144,0.006144,0.07168,0.005984
+1205,1356.97,0.736938,0.305152,0.006144,0.19584,0.004864,0.004096,0.006112,0.006016,0.005952,0.07008,0.006048
+1206,1399.62,0.714478,0.30304,0.006176,0.19248,0.005536,0.004704,0.005984,0.00608,0.006016,0.069664,0.0064
+1207,1201.53,0.832275,0.335872,0.006144,0.21024,0.0048,0.004096,0.006144,0.006144,0.006144,0.086016,0.006144
+1208,1381.68,0.723755,0.309824,0.00592,0.197088,0.004416,0.005248,0.005024,0.006112,0.006144,0.073728,0.006144
+1209,1327.71,0.753174,0.3072,0.005984,0.196544,0.004352,0.005376,0.004832,0.006144,0.006176,0.071648,0.006144
+1210,1430.17,0.699219,0.3072,0.006144,0.194592,0.005568,0.00464,0.005504,0.006208,0.006112,0.072288,0.006144
+1211,1407.08,0.710693,0.310656,0.006048,0.198208,0.004736,0.005472,0.004768,0.006144,0.006144,0.073216,0.00592
+1212,905.393,1.10449,0.305472,0.006048,0.194208,0.004864,0.004096,0.006048,0.00624,0.006144,0.072704,0.00512
+1213,1464.43,0.682861,0.319488,0.006144,0.206848,0.00576,0.00448,0.005792,0.006272,0.005888,0.07216,0.006144
+1214,1367.38,0.731323,0.331744,0.006048,0.220448,0.004864,0.00416,0.006144,0.006144,0.006144,0.07168,0.006112
+1215,1403.94,0.71228,0.307904,0.006048,0.197184,0.00432,0.00544,0.0048,0.006144,0.006176,0.071648,0.006144
+1216,1396.52,0.716064,0.309248,0.006144,0.197728,0.004832,0.004288,0.00576,0.006528,0.005984,0.07184,0.006144
+1217,1415.83,0.706299,0.309248,0.006144,0.196,0.004704,0.004128,0.006112,0.006144,0.00624,0.073664,0.006112
+1218,1390.36,0.719238,0.309248,0.006144,0.197792,0.004864,0.004192,0.005984,0.006016,0.006112,0.07312,0.005024
+1219,1342.73,0.744751,0.332928,0.006144,0.221184,0.004096,0.006144,0.005472,0.006112,0.006112,0.071712,0.005952
+1220,1397.24,0.715698,0.306688,0.005952,0.194944,0.004096,0.005632,0.004608,0.006144,0.006144,0.073408,0.00576
+1221,1403.7,0.712402,0.311296,0.006144,0.200032,0.004736,0.004128,0.005888,0.006144,0.006112,0.071968,0.006144
+1222,1370.59,0.729614,0.311488,0.005984,0.1992,0.005504,0.004736,0.005504,0.005984,0.006016,0.072608,0.005952
+1223,1415.83,0.706299,0.309376,0.005952,0.196928,0.005152,0.004832,0.005632,0.006144,0.006112,0.07248,0.006144
+1224,1347.37,0.742188,0.332992,0.005984,0.219296,0.005696,0.004544,0.005664,0.006144,0.006208,0.073664,0.005792
+1225,1316.41,0.759644,0.334432,0.006048,0.22192,0.005152,0.004832,0.005376,0.006656,0.006016,0.072288,0.006144
+1226,1319.16,0.758057,0.34048,0.005984,0.235232,0.004864,0.004288,0.005888,0.006336,0.006112,0.066784,0.004992
+1227,1421.98,0.703247,0.323648,0.006144,0.218624,0.004608,0.00512,0.005152,0.006112,0.006144,0.066592,0.005152
+1228,1377.73,0.72583,0.323584,0.006144,0.218464,0.004768,0.004096,0.006048,0.006048,0.006368,0.06672,0.004928
+1229,1375.19,0.727173,0.319488,0.006176,0.216384,0.004768,0.004096,0.006048,0.00608,0.006048,0.063744,0.006144
+1230,1392.25,0.718262,0.321568,0.006048,0.218976,0.004352,0.00528,0.00496,0.006144,0.006144,0.063488,0.006176
+1231,1356.07,0.737427,0.32784,0.006144,0.222464,0.004832,0.004128,0.007296,0.006112,0.00512,0.066592,0.005152
+1232,1395.81,0.716431,0.308608,0.005952,0.198112,0.004864,0.004224,0.005856,0.006208,0.006112,0.071488,0.005792
+1233,1373.57,0.728027,0.306304,0.006144,0.198656,0.005536,0.004704,0.005504,0.006784,0.006144,0.066912,0.00592
+1234,1137.46,0.87915,0.334304,0.005952,0.22832,0.004096,0.005568,0.004672,0.006144,0.006144,0.067424,0.005984
+1235,1542.75,0.648193,0.313344,0.006144,0.208352,0.00464,0.00416,0.00608,0.006144,0.006144,0.065536,0.006144
+1236,1281,0.78064,0.32336,0.006144,0.21504,0.005216,0.0048,0.005408,0.006112,0.007104,0.067616,0.00592
+1237,1353.15,0.739014,0.31568,0.005984,0.2088,0.004832,0.004352,0.005952,0.006048,0.006112,0.06768,0.00592
+1238,1520.13,0.657837,0.3056,0.005952,0.201312,0.005216,0.0048,0.005408,0.005248,0.00704,0.064416,0.006208
+1239,1253.56,0.797729,0.305248,0.006176,0.200704,0.005248,0.0048,0.00544,0.00624,0.006048,0.065472,0.00512
+1240,1582.38,0.631958,0.307872,0.005952,0.203616,0.00512,0.0048,0.004544,0.007168,0.006368,0.06416,0.006144
+1241,1346.48,0.742676,0.302208,0.006208,0.199584,0.005216,0.004768,0.004544,0.005952,0.006144,0.064672,0.00512
+1242,1456.61,0.686523,0.306688,0.006144,0.200704,0.005152,0.0048,0.00544,0.006112,0.006144,0.0664,0.005792
+1243,1357.42,0.736694,0.330112,0.005984,0.222976,0.004864,0.004128,0.00608,0.006208,0.006144,0.067584,0.006144
+1244,1290.49,0.774902,0.309312,0.005984,0.202784,0.004288,0.005376,0.004864,0.007168,0.005152,0.067552,0.006144
+1245,1346.04,0.74292,0.351072,0.006048,0.242624,0.005184,0.005056,0.006144,0.006176,0.006112,0.067328,0.0064
+1246,1113.04,0.898438,0.31584,0.005984,0.207456,0.00528,0.004832,0.005696,0.006304,0.006048,0.068096,0.006144
+1247,1400.58,0.713989,0.305152,0.006144,0.200704,0.0056,0.00464,0.005568,0.005984,0.005984,0.064384,0.006144
+1248,1404.42,0.712036,0.30688,0.005952,0.201344,0.004128,0.005696,0.004576,0.00608,0.006144,0.067136,0.005824
+1249,1310.3,0.763184,0.307872,0.005024,0.203808,0.004864,0.00432,0.006144,0.006176,0.006112,0.065472,0.005952
+1250,1519.01,0.658325,0.303136,0.006144,0.200704,0.004096,0.005632,0.004608,0.006144,0.006144,0.064544,0.00512
+1251,1384.49,0.72229,0.305184,0.005952,0.1968,0.005632,0.004608,0.005632,0.005856,0.005952,0.068576,0.006176
+1252,1309.04,0.763916,0.299648,0.005952,0.195392,0.005792,0.004448,0.005184,0.00512,0.00608,0.065536,0.006144
+1253,1444.29,0.692383,0.307424,0.005952,0.203136,0.006144,0.004096,0.006144,0.006144,0.006112,0.06352,0.006176
+1254,1242.72,0.804688,0.336416,0.005984,0.227584,0.004576,0.005088,0.00512,0.006176,0.006112,0.069632,0.006144
+1255,806.299,1.24023,0.558208,0.006112,0.446048,0.006592,0.006144,0.005472,0.006272,0.006144,0.069408,0.006016
+1256,1032.13,0.968872,0.3208,0.006144,0.202752,0.005536,0.004704,0.005504,0.006048,0.006112,0.078176,0.005824
+1257,1335.07,0.749023,0.323712,0.006048,0.200832,0.005472,0.004736,0.005472,0.006592,0.005952,0.083488,0.00512
+1258,1425.69,0.701416,0.326528,0.005024,0.205792,0.004864,0.004384,0.006112,0.007264,0.006048,0.081984,0.005056
+1259,1347.37,0.742188,0.32208,0.005952,0.198592,0.004864,0.004288,0.005888,0.0064,0.006112,0.083936,0.006048
+1260,1392.01,0.718384,0.319488,0.006144,0.200704,0.004128,0.0056,0.004608,0.006144,0.006144,0.081088,0.004928
+1261,1345.6,0.743164,0.324352,0.005952,0.197568,0.005728,0.004512,0.005664,0.006208,0.006144,0.086432,0.006144
+1262,1398.67,0.714966,0.333824,0.006144,0.204288,0.004608,0.005728,0.004544,0.006112,0.006144,0.091136,0.00512
+1263,1213.09,0.824341,0.509408,0.00544,0.377664,0.005952,0.004288,0.006144,0.006144,0.006144,0.09168,0.005952
+1264,708.651,1.41113,0.341792,0.008096,0.2096,0.005216,0.004768,0.005376,0.006304,0.006112,0.090496,0.005824
+1265,1441.49,0.693726,0.318464,0.006144,0.198336,0.004416,0.005248,0.004992,0.006144,0.006144,0.080896,0.006144
+1266,1472.85,0.678955,0.32128,0.006144,0.19984,0.004864,0.004192,0.006144,0.006144,0.006048,0.082016,0.005888
+1267,1248.4,0.801025,0.321472,0.006048,0.199936,0.004832,0.004224,0.006144,0.006144,0.006144,0.08192,0.00608
+1268,1480.04,0.675659,0.323488,0.005952,0.199712,0.005728,0.00448,0.006144,0.006176,0.006048,0.083456,0.005792
+1269,1294.77,0.772339,0.317696,0.005952,0.199008,0.004192,0.00544,0.0048,0.007392,0.006048,0.07872,0.006144
+1270,1456.87,0.686401,0.31808,0.006048,0.20144,0.005248,0.0048,0.005344,0.006112,0.00512,0.077824,0.006144
+1271,1332.03,0.750732,0.33296,0.006176,0.20624,0.004672,0.004096,0.006144,0.006144,0.00608,0.087424,0.005984
+1272,686.155,1.4574,0.338656,0.008064,0.219552,0.004736,0.004064,0.006144,0.006144,0.006112,0.077856,0.005984
+1273,1293.13,0.773315,0.31744,0.006176,0.204352,0.004512,0.005152,0.005088,0.007168,0.00672,0.07216,0.006112
+1274,1476.57,0.677246,0.311328,0.006144,0.200704,0.005824,0.004416,0.00576,0.005952,0.006112,0.071424,0.004992
+1275,1430.42,0.699097,0.321344,0.005952,0.19904,0.005376,0.0048,0.00592,0.006208,0.00608,0.081984,0.005984
+1276,1210.04,0.826416,0.315008,0.006144,0.198304,0.004448,0.005184,0.005056,0.007264,0.00512,0.077664,0.005824
+1277,1485.4,0.673218,0.313568,0.005952,0.197024,0.005312,0.0048,0.005408,0.00496,0.006144,0.077824,0.006144
+1278,1435.18,0.696777,0.315424,0.005952,0.20208,0.005088,0.005952,0.005344,0.00512,0.006112,0.073728,0.006048
+1279,1453.77,0.687866,0.316192,0.005952,0.203648,0.004192,0.005504,0.004736,0.006144,0.006144,0.073728,0.006144
+1280,1326,0.75415,0.489216,0.006112,0.371936,0.004928,0.004192,0.006176,0.006112,0.006144,0.077792,0.005824
+1281,741.022,1.34949,0.340064,0.008096,0.217504,0.005152,0.004832,0.004448,0.006048,0.006176,0.081888,0.00592
+1282,1353.83,0.738647,0.315392,0.006176,0.197984,0.004768,0.004064,0.007424,0.00624,0.006176,0.076416,0.006144
+1283,1521.26,0.657349,0.317408,0.006144,0.200704,0.004096,0.005856,0.004512,0.007072,0.006144,0.076768,0.006112
+1284,1232.62,0.811279,0.3096,0.006016,0.19664,0.004544,0.005152,0.005088,0.00608,0.006016,0.075008,0.005056
+1285,1506.44,0.663818,0.315744,0.005984,0.200832,0.00448,0.005152,0.005088,0.006144,0.006144,0.075776,0.006144
+1286,1264.59,0.790771,0.314624,0.005984,0.200672,0.004448,0.00592,0.005376,0.005088,0.0072,0.073888,0.006048
+1287,1479.23,0.676025,0.31344,0.006144,0.202752,0.004096,0.0056,0.00464,0.006176,0.006112,0.072768,0.005152
+1288,1290.08,0.775146,0.31744,0.006144,0.205888,0.005056,0.004128,0.00608,0.006016,0.006304,0.072768,0.005056
+1289,920.449,1.08643,0.571424,0.006112,0.421952,0.036864,0.01232,0.006112,0.006144,0.006048,0.06976,0.006112
+1290,967.407,1.03369,0.31328,0.005984,0.202912,0.004864,0.004096,0.006048,0.006176,0.006112,0.071264,0.005824
+1291,1516.19,0.659546,0.317056,0.00608,0.203936,0.004832,0.00432,0.006144,0.006272,0.006208,0.07328,0.005984
+1292,1270.67,0.786987,0.310656,0.005984,0.202944,0.004224,0.005696,0.00448,0.00624,0.005984,0.06928,0.005824
+1293,892.375,1.12061,0.317632,0.006144,0.210112,0.004864,0.00416,0.005984,0.00624,0.005888,0.06912,0.00512
+1294,1661.66,0.601807,0.31312,0.005952,0.204896,0.004288,0.005504,0.004768,0.006112,0.006144,0.069632,0.005824
+1295,1352.48,0.73938,0.313664,0.00608,0.20112,0.004096,0.005696,0.004576,0.006304,0.006176,0.073504,0.006112
+1296,1305.71,0.765869,0.313344,0.006144,0.20192,0.004864,0.00416,0.005984,0.005952,0.006048,0.072128,0.006144
+1297,1176.67,0.849854,0.79872,0.006144,0.376832,0.005568,0.004672,0.005536,0.005952,0.00512,0.382752,0.006144
+1298,650.21,1.53796,0.31968,0.005984,0.207168,0.004096,0.005824,0.006464,0.006144,0.006144,0.071776,0.00608
+1299,1415.34,0.706543,0.311296,0.006176,0.198624,0.005824,0.004416,0.006144,0.006144,0.006144,0.07168,0.006144
+1300,1337.47,0.747681,0.34272,0.00496,0.22704,0.004384,0.00576,0.004576,0.012192,0.006176,0.071648,0.005984
+1301,1142.86,0.875,0.356864,0.006048,0.239712,0.004576,0.004096,0.006144,0.013568,0.00592,0.070624,0.006176
+1302,1256.25,0.796021,0.309376,0.005984,0.197184,0.005216,0.004832,0.005856,0.006208,0.006208,0.072032,0.005856
+1303,1604.7,0.623169,0.317856,0.005984,0.20288,0.004672,0.004096,0.006144,0.00608,0.006112,0.075872,0.006016
+1304,1311.35,0.762573,0.319008,0.006176,0.204192,0.004672,0.004096,0.006144,0.006144,0.006144,0.075488,0.005952
+1305,1416.81,0.705811,0.48496,0.006144,0.376832,0.005408,0.004832,0.005344,0.00624,0.006016,0.067744,0.0064
+1306,714.024,1.40051,0.319776,0.008096,0.211328,0.004096,0.0056,0.00464,0.006144,0.006144,0.067616,0.006112
+1307,1374.27,0.727661,0.339968,0.006112,0.21712,0.0056,0.00464,0.02048,0.006144,0.006144,0.067584,0.006144
+1308,1204,0.830566,0.33792,0.006176,0.215008,0.005504,0.004736,0.005408,0.00688,0.02,0.068064,0.006144
+1309,1412.17,0.70813,0.309984,0.005952,0.20352,0.004256,0.005408,0.004832,0.006144,0.006144,0.067584,0.006144
+1310,1494.35,0.669189,0.31456,0.006144,0.201856,0.004864,0.004224,0.00592,0.005856,0.005952,0.07392,0.005824
+1311,761.692,1.31287,0.317472,0.005952,0.204832,0.004288,0.005344,0.004896,0.006144,0.006144,0.073728,0.006144
+1312,1533.8,0.651978,0.320096,0.006016,0.207168,0.004512,0.005152,0.005088,0.006144,0.006144,0.073728,0.006144
+1313,1330.09,0.751831,0.489792,0.006016,0.377312,0.005152,0.005088,0.005792,0.006336,0.006048,0.071936,0.006112
+1314,629.331,1.58899,0.325088,0.008192,0.208896,0.006112,0.004128,0.006048,0.00624,0.006144,0.073536,0.005792
+1315,1530.36,0.653442,0.311136,0.005984,0.198976,0.004544,0.00512,0.00512,0.006144,0.006144,0.073088,0.006016
+1316,1280.2,0.781128,0.310752,0.006144,0.198656,0.004096,0.0056,0.00464,0.006144,0.006144,0.073536,0.005792
+1317,1544.2,0.647583,0.312192,0.005216,0.20048,0.005152,0.004832,0.0064,0.006144,0.006144,0.07168,0.006144
+1318,1170.29,0.854492,0.30656,0.006144,0.198688,0.005632,0.004608,0.005504,0.006272,0.006144,0.067744,0.005824
+1319,1495.44,0.668701,0.339808,0.006144,0.227328,0.005632,0.004608,0.006144,0.006144,0.006144,0.071648,0.006016
+1320,1147.34,0.871582,0.31952,0.006144,0.200736,0.00512,0.0048,0.004544,0.007296,0.006048,0.07888,0.005952
+1321,1423.21,0.702637,0.326688,0.006144,0.208896,0.004128,0.005408,0.0048,0.006144,0.006176,0.078976,0.006016
+1322,676.187,1.47888,0.329312,0.008064,0.21152,0.006144,0.004096,0.006112,0.006048,0.006016,0.07552,0.005792
+1323,1578.72,0.633423,0.323104,0.007584,0.202432,0.004832,0.004288,0.00592,0.006368,0.006144,0.079584,0.005952
+1324,1223.6,0.817261,0.313344,0.00608,0.19584,0.004864,0.00416,0.006144,0.006144,0.006144,0.077824,0.006144
+1325,1504.5,0.664673,0.315648,0.006016,0.19904,0.004096,0.005696,0.004544,0.006144,0.006144,0.077824,0.006144
+1326,1299.49,0.769531,0.3192,0.006144,0.200704,0.00512,0.00512,0.005664,0.005952,0.005952,0.078592,0.005952
+1327,1402.02,0.713257,0.325888,0.005952,0.204896,0.004416,0.005216,0.006048,0.006944,0.006016,0.080224,0.006176
+1328,1294.97,0.772217,0.322656,0.006144,0.198624,0.004128,0.005536,0.004704,0.006144,0.006144,0.08544,0.005792
+1329,1484.6,0.673584,0.323712,0.00608,0.204,0.004832,0.004352,0.005792,0.00608,0.006048,0.080384,0.006144
+1330,855.651,1.1687,0.561536,0.005984,0.42816,0.016928,0.005664,0.004512,0.007296,0.005952,0.080896,0.006144
+1331,1042.9,0.958862,0.319808,0.006016,0.20496,0.00448,0.005184,0.005056,0.006144,0.006144,0.075744,0.00608
+1332,1374.73,0.727417,0.33904,0.006144,0.223232,0.004096,0.005664,0.004576,0.008192,0.006176,0.0752,0.00576
+1333,1363.52,0.733398,0.319744,0.005984,0.205216,0.004128,0.005536,0.005728,0.006304,0.006144,0.07456,0.006144
+1334,1152.02,0.868042,0.372736,0.006144,0.260096,0.005152,0.004832,0.005376,0.006272,0.006112,0.07392,0.004832
+1335,1443.02,0.692993,0.322912,0.006144,0.20432,0.004576,0.004224,0.006016,0.006144,0.006144,0.079328,0.006016
+1336,1344.49,0.743774,0.315392,0.006144,0.200704,0.005472,0.004768,0.00544,0.005984,0.006112,0.075904,0.004864
+1337,1413.63,0.707397,0.321152,0.006144,0.2048,0.006144,0.00416,0.00608,0.006144,0.006144,0.075584,0.005952
+1338,1279.6,0.781494,0.533696,0.006144,0.41984,0.004096,0.005632,0.004608,0.006144,0.006144,0.075264,0.005824
+1339,732.868,1.3645,0.327552,0.008128,0.208704,0.004576,0.004096,0.006144,0.007584,0.006176,0.076192,0.005952
+1340,1259.92,0.793701,0.315392,0.006144,0.200736,0.005664,0.004544,0.006144,0.006144,0.006144,0.073728,0.006144
+1341,1573.57,0.635498,0.31744,0.006144,0.200256,0.004544,0.00512,0.006464,0.006112,0.006016,0.07664,0.006144
+1342,1331.38,0.751099,0.316608,0.006016,0.200928,0.004096,0.00576,0.004544,0.00736,0.004864,0.077248,0.005792
+1343,1153.8,0.866699,0.321536,0.006144,0.204096,0.0048,0.004128,0.006112,0.006176,0.006112,0.077824,0.006144
+1344,1403.7,0.712402,0.349664,0.006144,0.23248,0.004864,0.00432,0.00576,0.006304,0.006112,0.077824,0.005856
+1345,1213.09,0.824341,0.31744,0.006144,0.205856,0.004832,0.004352,0.005792,0.00608,0.005952,0.072288,0.006144
+1346,1481.11,0.675171,0.320736,0.00592,0.209312,0.005824,0.004352,0.005856,0.006272,0.005856,0.07152,0.005824
+1347,995.504,1.00452,0.4944,0.008096,0.379552,0.004352,0.005376,0.004864,0.006144,0.006144,0.073728,0.006144
+1348,584.558,1.71069,0.373728,0.00512,0.265888,0.004416,0.004224,0.006016,0.006144,0.006144,0.069632,0.006144
+1349,1381.92,0.723633,0.343104,0.006144,0.231296,0.004224,0.00544,0.0048,0.006144,0.006144,0.072928,0.005984
+1350,1468.36,0.68103,0.313568,0.006016,0.203168,0.005856,0.004384,0.006144,0.006144,0.006176,0.0696,0.00608
+1351,1272.64,0.785767,0.31008,0.006016,0.201664,0.005248,0.0048,0.004512,0.00592,0.006144,0.069632,0.006144
+1352,1468.89,0.680786,0.307744,0.005024,0.202752,0.004096,0.005728,0.004512,0.006144,0.006144,0.067552,0.005792
+1353,1262.06,0.792358,0.313408,0.005984,0.20576,0.004096,0.0056,0.00464,0.007392,0.004896,0.069056,0.005984
+1354,1266.15,0.789795,0.326464,0.005952,0.218112,0.005824,0.004416,0.005792,0.00608,0.006592,0.067648,0.006048
+1355,640,1.5625,0.3344,0.008128,0.223168,0.0048,0.004096,0.006144,0.006144,0.006144,0.069632,0.006144
+1356,1505.88,0.664062,0.313664,0.005952,0.204544,0.004864,0.004096,0.006144,0.00592,0.00608,0.06992,0.006144
+1357,1223.05,0.817627,0.311168,0.00608,0.201184,0.005376,0.0048,0.005408,0.006144,0.006048,0.070144,0.005984
+1358,1606.9,0.622314,0.3136,0.005984,0.203552,0.005248,0.0048,0.006048,0.006336,0.00608,0.06976,0.005792
+1359,1345.82,0.743042,0.310656,0.006144,0.202752,0.005312,0.0048,0.00528,0.006304,0.00608,0.068,0.005984
+1360,1311.14,0.762695,0.311968,0.005984,0.201536,0.005856,0.004384,0.00592,0.006144,0.006048,0.071072,0.005024
+1361,1420,0.704224,0.311264,0.00608,0.197472,0.005472,0.004768,0.005472,0.006272,0.006176,0.073568,0.005984
+1362,720.239,1.38843,0.49264,0.006144,0.37888,0.005216,0.004832,0.005408,0.006112,0.006176,0.074016,0.005856
+1363,705.538,1.41736,0.323808,0.008736,0.207168,0.004096,0.006144,0.006144,0.006144,0.00608,0.073376,0.00592
+1364,1383.32,0.7229,0.314784,0.006144,0.200736,0.00528,0.0048,0.005376,0.004992,0.006176,0.075424,0.005856
+1365,1461.55,0.684204,0.313856,0.00608,0.20032,0.004832,0.00432,0.005824,0.006464,0.006144,0.073728,0.006144
+1366,899.923,1.11121,0.335648,0.004416,0.224192,0.004864,0.004224,0.005984,0.006048,0.006048,0.0736,0.006272
+1367,1483.52,0.674072,0.319488,0.006144,0.207904,0.004832,0.004352,0.005888,0.006368,0.006112,0.071744,0.006144
+1368,1396.52,0.716064,0.314112,0.00608,0.20096,0.004672,0.00528,0.00496,0.006144,0.006144,0.073728,0.006144
+1369,1449.4,0.689941,0.3168,0.006016,0.202976,0.005152,0.004928,0.00544,0.00656,0.006112,0.073664,0.005952
+1370,1270.08,0.787354,0.488288,0.005984,0.37568,0.004192,0.005568,0.004672,0.006144,0.006144,0.074752,0.005152
+1371,759.926,1.31592,0.328864,0.008192,0.210944,0.004096,0.0056,0.00464,0.007552,0.006368,0.075488,0.005984
+1372,1266.74,0.789429,0.35152,0.006144,0.23552,0.0056,0.004672,0.005504,0.006112,0.006112,0.075904,0.005952
+1373,1327.93,0.753052,0.313344,0.006176,0.198624,0.005184,0.0048,0.005408,0.00512,0.006112,0.075776,0.006144
+1374,1441.24,0.693848,0.318048,0.005952,0.202784,0.004864,0.004128,0.006112,0.006144,0.006144,0.075776,0.006144
+1375,1325.35,0.754517,0.311296,0.00608,0.196672,0.004096,0.005632,0.004608,0.006144,0.006144,0.075776,0.006144
+1376,1347.81,0.741943,0.313568,0.006048,0.200288,0.0048,0.004096,0.006144,0.006144,0.006144,0.074944,0.00496
+1377,1358.99,0.73584,0.325184,0.006144,0.202624,0.004256,0.005408,0.004832,0.006112,0.006144,0.083488,0.006176
+1378,1354.05,0.738525,0.320544,0.006144,0.2048,0.005344,0.0048,0.005376,0.006048,0.00656,0.07568,0.005792
+1379,994.899,1.00513,0.50288,0.011168,0.377888,0.004896,0.004288,0.00592,0.006048,0.006112,0.081408,0.005152
+1380,749.428,1.33435,0.325696,0.005952,0.204768,0.004384,0.005216,0.00608,0.006176,0.005056,0.083008,0.005056
+1381,1372.42,0.728638,0.31744,0.00624,0.200608,0.00576,0.00448,0.005728,0.006336,0.006112,0.076032,0.006144
+1382,1471,0.67981,0.321824,0.00608,0.20096,0.004192,0.005728,0.004512,0.00624,0.006272,0.082752,0.005088
+1383,1330.95,0.751343,0.31984,0.006336,0.200224,0.004736,0.004096,0.007584,0.00592,0.006144,0.078656,0.006144
+1384,1318.74,0.758301,0.321056,0.006144,0.20272,0.004128,0.005536,0.004704,0.007424,0.006016,0.07856,0.005824
+1385,1025.92,0.974731,0.34144,0.005984,0.221632,0.004096,0.005728,0.004544,0.007168,0.00528,0.07968,0.007328
+1386,1335.29,0.748901,0.331776,0.005952,0.209088,0.004096,0.005696,0.004544,0.006144,0.006144,0.083968,0.006144
+1387,1183.64,0.844849,0.569344,0.006144,0.435424,0.015136,0.005536,0.004736,0.006112,0.006144,0.083968,0.006144
+1388,844.362,1.18433,0.32768,0.006144,0.204832,0.005696,0.004512,0.005728,0.006464,0.00592,0.08224,0.006144
+1389,1168.78,0.855591,0.319776,0.00512,0.200704,0.00576,0.00448,0.005728,0.006208,0.006048,0.079744,0.005984
+1390,1385.19,0.721924,0.343936,0.006144,0.224704,0.004672,0.004096,0.006144,0.006144,0.006144,0.079872,0.006016
+1391,1398.91,0.714844,0.321824,0.006112,0.203296,0.00432,0.005344,0.004896,0.006144,0.006144,0.079584,0.005984
+1392,1405.39,0.711548,0.319488,0.006144,0.199712,0.004832,0.004384,0.005888,0.005952,0.00592,0.081824,0.004832
+1393,1352.93,0.739136,0.32064,0.005248,0.202272,0.004416,0.005152,0.006336,0.006272,0.006112,0.079712,0.00512
+1394,1203.11,0.831177,0.347008,0.004992,0.227328,0.005536,0.004704,0.005504,0.00624,0.006688,0.079872,0.006144
+1395,1435.68,0.696533,0.48928,0.005856,0.373376,0.00416,0.006048,0.00544,0.006208,0.006208,0.075968,0.006016
+1396,748.743,1.33557,0.331872,0.008096,0.211936,0.005312,0.004768,0.006048,0.005824,0.006048,0.077824,0.006016
+1397,1301.76,0.768188,0.324736,0.006144,0.200736,0.00576,0.004448,0.005792,0.006528,0.006112,0.083264,0.005952
+1398,1325.57,0.754395,0.325632,0.006144,0.201728,0.004896,0.00432,0.005856,0.006432,0.006144,0.08528,0.004832
+1399,1502.57,0.665527,0.327072,0.006144,0.201824,0.004832,0.004288,0.006144,0.006144,0.006144,0.085536,0.006016
+1400,1304.87,0.766357,0.319424,0.006144,0.197952,0.0048,0.004128,0.006112,0.006016,0.006048,0.082144,0.00608
+1401,1376.11,0.726685,0.326176,0.005984,0.205472,0.00512,0.0048,0.004544,0.00736,0.006112,0.080608,0.006176
+1402,1251.64,0.79895,0.315488,0.005952,0.200896,0.00416,0.005504,0.006496,0.006112,0.006144,0.075168,0.005056
+1403,1311.14,0.762695,0.368608,0.005056,0.255232,0.004832,0.004128,0.006112,0.006016,0.00608,0.0752,0.005952
+1404,1183.99,0.844604,0.562208,0.006144,0.43536,0.016384,0.0048,0.006048,0.0064,0.006144,0.075104,0.005824
+1405,746.288,1.33997,0.357056,0.005952,0.240512,0.005536,0.004672,0.005536,0.006048,0.005952,0.077728,0.00512
+1406,1645.64,0.607666,0.31744,0.006144,0.20208,0.004768,0.004096,0.00608,0.006208,0.006144,0.075776,0.006144
+1407,1373.34,0.728149,0.322304,0.00592,0.2056,0.004288,0.005408,0.004832,0.007168,0.006144,0.0768,0.006144
+1408,1391.07,0.718872,0.317952,0.005984,0.200416,0.004832,0.005408,0.005056,0.006144,0.006144,0.079008,0.00496
+1409,1346.26,0.742798,0.320256,0.005984,0.20064,0.004832,0.004352,0.005856,0.006432,0.006144,0.079872,0.006144
+1410,1228.19,0.814209,0.32112,0.005952,0.2008,0.00448,0.005856,0.004544,0.005984,0.007232,0.080512,0.00576
+1411,1591.92,0.628174,0.321856,0.005952,0.20448,0.0048,0.004096,0.006144,0.006112,0.005856,0.079296,0.00512
+1412,1131.18,0.884033,0.33376,0.006144,0.20688,0.005952,0.004256,0.005504,0.006272,0.00592,0.086752,0.00608
+1413,797.741,1.25354,0.364544,0.008192,0.243232,0.004576,0.004096,0.006144,0.006144,0.006144,0.079872,0.006144
+1414,1131.18,0.884033,0.352096,0.005984,0.231424,0.004832,0.004096,0.00608,0.006208,0.006144,0.081504,0.005824
+1415,1541.01,0.648926,0.321664,0.006016,0.205056,0.004096,0.005696,0.004544,0.006144,0.006176,0.077824,0.006112
+1416,1330.09,0.751831,0.319488,0.006144,0.200736,0.005408,0.0048,0.00544,0.006016,0.006016,0.080032,0.004896
+1417,1365.11,0.732544,0.3248,0.006144,0.204832,0.004064,0.005632,0.006112,0.00608,0.00624,0.079744,0.005952
+1418,1219.41,0.820068,0.327264,0.006016,0.20704,0.005472,0.004832,0.00544,0.006304,0.006304,0.080032,0.005824
+1419,1432.17,0.698242,0.347552,0.007296,0.226208,0.005664,0.004544,0.005664,0.006656,0.006112,0.079456,0.005952
+1420,987.464,1.0127,0.340096,0.005952,0.221504,0.005952,0.004288,0.00592,0.006016,0.006112,0.078208,0.006144
+1421,815.043,1.22693,0.518272,0.008096,0.395968,0.004384,0.006144,0.005568,0.006336,0.00608,0.079776,0.00592
+1422,1197.31,0.835205,0.319264,0.006144,0.199872,0.004864,0.00416,0.006048,0.006176,0.006112,0.079968,0.00592
+1423,1344.71,0.743652,0.346112,0.006144,0.228896,0.004576,0.005248,0.004992,0.006176,0.006112,0.078848,0.00512
+1424,1124.97,0.888916,0.334752,0.006048,0.216032,0.004096,0.005632,0.004608,0.006208,0.00608,0.08112,0.004928
+1425,1404.42,0.712036,0.331136,0.006272,0.211072,0.005312,0.0048,0.00544,0.006144,0.006112,0.079744,0.00624
+1426,1433.42,0.697632,0.32704,0.006144,0.208896,0.005248,0.0048,0.005408,0.005024,0.006144,0.079552,0.005824
+1427,1358.09,0.736328,0.325056,0.006144,0.2064,0.004544,0.004096,0.006144,0.006144,0.006176,0.079392,0.006016
+1428,1163.97,0.859131,0.348576,0.005952,0.229984,0.005344,0.0048,0.005408,0.005952,0.00512,0.080992,0.005024
+1429,1239.9,0.806519,0.553312,0.005984,0.430944,0.008192,0.005664,0.004608,0.006112,0.006144,0.07968,0.005984
+1430,746.492,1.3396,0.32704,0.006048,0.206944,0.005664,0.004576,0.005856,0.006432,0.006144,0.079584,0.005792
+1431,1663.35,0.601196,0.317344,0.006144,0.198688,0.004064,0.005728,0.004512,0.006176,0.006112,0.079872,0.006048
+1432,1337.69,0.747559,0.315392,0.006144,0.196608,0.005152,0.0048,0.00544,0.005088,0.006144,0.079872,0.006144
+1433,1438.96,0.694946,0.32064,0.006144,0.202752,0.004096,0.005696,0.004544,0.006144,0.006144,0.0792,0.00592
+1434,1332.03,0.750732,0.313312,0.006048,0.1984,0.004448,0.005216,0.005024,0.006144,0.006144,0.075776,0.006112
+1435,1349.14,0.741211,0.3112,0.006144,0.196608,0.00416,0.005664,0.004512,0.006144,0.006144,0.075776,0.006048
+1436,1208.08,0.827759,0.328992,0.006144,0.213024,0.005696,0.004512,0.005696,0.006304,0.006048,0.075744,0.005824
+1437,1296.41,0.771362,0.322368,0.006016,0.20512,0.004736,0.004096,0.00544,0.006016,0.006048,0.08032,0.004576
+1438,727.208,1.37512,0.32496,0.00816,0.204064,0.004864,0.004096,0.006112,0.006112,0.005952,0.079776,0.005824
+1439,1662,0.601685,0.320928,0.006144,0.198688,0.0056,0.004608,0.0056,0.006688,0.006144,0.081472,0.005984
+1440,1316.83,0.759399,0.308096,0.004992,0.198592,0.00416,0.005504,0.004768,0.006112,0.006144,0.07168,0.006144
+1441,1404.18,0.712158,0.311744,0.005984,0.200288,0.004864,0.004352,0.006144,0.006144,0.006144,0.07168,0.006144
+1442,1419.02,0.704712,0.309248,0.005984,0.1976,0.00576,0.00448,0.005728,0.006112,0.005856,0.071904,0.005824
+1443,1097.09,0.911499,0.31872,0.006144,0.206848,0.005184,0.004832,0.005408,0.00624,0.006176,0.071968,0.00592
+1444,1419.51,0.704468,0.344064,0.006144,0.230816,0.004704,0.004096,0.006144,0.006176,0.006112,0.073728,0.006144
+1445,1203.64,0.830811,0.356384,0.005984,0.241952,0.004512,0.00512,0.00512,0.006144,0.006144,0.07536,0.006048
+1446,1066.39,0.937744,0.558848,0.006144,0.436224,0.011552,0.0048,0.005408,0.006688,0.006112,0.076032,0.005888
+1447,888.6,1.12537,0.329728,0.006144,0.21232,0.004768,0.004096,0.006144,0.007424,0.005952,0.076736,0.006144
+1448,1507.82,0.663208,0.315392,0.006144,0.200736,0.005344,0.0048,0.00544,0.00608,0.00624,0.07552,0.005088
+1449,1349.59,0.740967,0.320224,0.005984,0.201568,0.004096,0.006144,0.005504,0.00608,0.006208,0.078464,0.006176
+1450,1398.19,0.71521,0.338368,0.006016,0.225152,0.0048,0.004096,0.006272,0.006016,0.006176,0.073696,0.006144
+1451,1372.42,0.728638,0.312736,0.006144,0.198656,0.006144,0.004096,0.006144,0.006144,0.006144,0.07328,0.005984
+1452,1436.69,0.696045,0.309696,0.005984,0.199552,0.005856,0.004384,0.006144,0.006144,0.006144,0.069632,0.005856
+1453,1077.61,0.927979,0.31744,0.006144,0.203776,0.004832,0.004384,0.005888,0.005888,0.006528,0.07376,0.00624
+1454,1377.73,0.72583,0.336224,0.006016,0.221696,0.005632,0.004576,0.006144,0.007808,0.005952,0.072288,0.006112
+1455,709.326,1.40979,0.332192,0.008064,0.213536,0.00528,0.0048,0.00544,0.00608,0.005024,0.078848,0.00512
+1456,1296.82,0.771118,0.316512,0.006144,0.202432,0.004416,0.005248,0.004992,0.006144,0.006144,0.075168,0.005824
+1457,1485.94,0.672974,0.308096,0.005056,0.19664,0.004064,0.005696,0.004544,0.006144,0.006144,0.073568,0.00624
+1458,1462.86,0.683594,0.31856,0.006176,0.20272,0.005536,0.004704,0.006144,0.006144,0.006144,0.075168,0.005824
+1459,1353.6,0.73877,0.315456,0.00608,0.200576,0.004864,0.004224,0.006176,0.006048,0.005952,0.075552,0.005984
+1460,1416.57,0.705933,0.31536,0.006144,0.200704,0.004096,0.0056,0.00464,0.006176,0.006112,0.075776,0.006112
+1461,1323.64,0.755493,0.315232,0.006176,0.199904,0.004832,0.004128,0.005568,0.006208,0.006016,0.076416,0.005984
+1462,805.19,1.24194,0.339424,0.006144,0.222912,0.004416,0.005248,0.004992,0.006144,0.006144,0.075776,0.007648
+1463,732.344,1.36548,0.345408,0.008192,0.232704,0.004832,0.004128,0.006112,0.006176,0.00608,0.0712,0.005984
+1464,1555.05,0.643066,0.319552,0.005952,0.209248,0.004192,0.005472,0.0048,0.006112,0.006176,0.071648,0.005952
+1465,1411.93,0.708252,0.321632,0.005952,0.207712,0.00544,0.004768,0.005408,0.00656,0.006144,0.073664,0.005984
+1466,1330.52,0.751587,0.317184,0.006048,0.2048,0.004448,0.005216,0.005056,0.006112,0.006144,0.073568,0.005792
+1467,1267.33,0.789062,0.325248,0.006752,0.210944,0.004096,0.005568,0.004672,0.007616,0.00608,0.073568,0.005952
+1468,1478.97,0.676147,0.32032,0.005952,0.201728,0.005408,0.004768,0.005472,0.005984,0.004992,0.080064,0.005952
+1469,1317.47,0.759033,0.31744,0.006144,0.198208,0.004544,0.004096,0.006144,0.006144,0.006144,0.079968,0.006048
+1470,1201.53,0.832275,0.32,0.00592,0.205344,0.004288,0.005376,0.004864,0.006144,0.006144,0.075776,0.006144
+1471,974.31,1.02637,0.606432,0.005984,0.483712,0.007648,0.00464,0.006048,0.006016,0.005952,0.080288,0.006144
+1472,898.147,1.1134,0.31744,0.006144,0.2048,0.005248,0.0048,0.00544,0.006976,0.005952,0.071936,0.006144
+1473,1479.5,0.675903,0.316256,0.005984,0.199296,0.00448,0.004352,0.005888,0.006144,0.006144,0.07792,0.006048
+1474,1422.96,0.702759,0.319264,0.006048,0.201088,0.005696,0.004544,0.005792,0.00608,0.00608,0.078112,0.005824
+1475,1362.38,0.734009,0.314592,0.006048,0.196768,0.004256,0.005408,0.0048,0.006144,0.007328,0.077984,0.005856
+1476,1450.42,0.689453,0.315168,0.006016,0.197792,0.004864,0.00432,0.005792,0.005984,0.006112,0.078368,0.00592
+1477,1194.17,0.837402,0.32992,0.007296,0.211872,0.005184,0.0048,0.005408,0.00608,0.00512,0.07904,0.00512
+1478,1236.53,0.808716,0.320736,0.00608,0.204032,0.004864,0.004128,0.00608,0.006016,0.00592,0.077792,0.005824
+1479,1318.31,0.758545,0.386048,0.00512,0.262048,0.005216,0.0048,0.00544,0.00512,0.006144,0.086016,0.006144
+1480,472.788,2.11511,0.346624,0.008064,0.217952,0.0056,0.00464,0.005568,0.00608,0.005888,0.086912,0.00592
+1481,1479.77,0.675781,0.324064,0.005984,0.2048,0.004864,0.004128,0.006112,0.006176,0.00608,0.079968,0.005952
+1482,1261.86,0.79248,0.339968,0.006144,0.221184,0.004096,0.005696,0.004544,0.006144,0.006144,0.079872,0.006144
+1483,1203.64,0.830811,0.342752,0.005024,0.210944,0.004096,0.0056,0.00464,0.006144,0.006144,0.081664,0.018496
+1484,1397.24,0.715698,0.360416,0.006144,0.239616,0.005184,0.0048,0.005408,0.006272,0.00624,0.08064,0.006112
+1485,1366.7,0.731689,0.31344,0.006144,0.197664,0.004832,0.004352,0.006144,0.006144,0.006144,0.076896,0.00512
+1486,1340.75,0.74585,0.325888,0.004992,0.208032,0.004864,0.00416,0.006176,0.006112,0.006144,0.079584,0.005824
+1487,1105.98,0.904175,0.557088,0.005952,0.4344,0.008192,0.005536,0.004704,0.006144,0.006144,0.079872,0.006144
+1488,916.844,1.0907,0.322176,0.005952,0.202784,0.004832,0.00432,0.006144,0.006144,0.006144,0.079872,0.005984
+1489,1282.4,0.779785,0.320544,0.006144,0.196608,0.004096,0.0056,0.006048,0.006784,0.006112,0.0832,0.005952
+1490,1402.74,0.712891,0.319744,0.005952,0.196736,0.004416,0.005248,0.004992,0.006144,0.007456,0.082656,0.006144
+1491,1384.02,0.722534,0.34816,0.006144,0.225152,0.004224,0.006144,0.006144,0.006144,0.005952,0.082112,0.006144
+1492,1360.12,0.735229,0.323808,0.006048,0.196928,0.00512,0.0048,0.004544,0.006048,0.006112,0.088064,0.006144
+1493,1405.15,0.71167,0.324672,0.006144,0.196224,0.00448,0.005184,0.005056,0.006016,0.005952,0.088384,0.007232
+1494,1162.98,0.859863,0.342016,0.006144,0.214912,0.004224,0.005408,0.004832,0.007232,0.006112,0.08832,0.004832
+1495,1437.95,0.695435,0.360448,0.006144,0.235232,0.004384,0.00544,0.005888,0.005184,0.007072,0.08496,0.006144
+1496,646.516,1.54675,0.33104,0.008192,0.202336,0.004512,0.00512,0.00512,0.006144,0.006144,0.087648,0.005824
+1497,1519.57,0.658081,0.333824,0.006144,0.206848,0.005728,0.004512,0.005536,0.006112,0.00608,0.08672,0.006144
+1498,751.284,1.33105,0.320768,0.005952,0.200608,0.004384,0.00528,0.00496,0.006144,0.006144,0.081472,0.005824
+1499,1574.78,0.63501,0.325632,0.006144,0.2048,0.004096,0.0056,0.006432,0.00624,0.006112,0.080096,0.006112
+1500,1325.57,0.754395,0.319872,0.006496,0.198656,0.005792,0.004448,0.005728,0.00656,0.006144,0.08096,0.005088
+1501,1353.15,0.739014,0.321728,0.005792,0.200736,0.004608,0.004096,0.00752,0.00624,0.006048,0.080544,0.006144
+1502,1362.61,0.733887,0.320288,0.005984,0.199616,0.005632,0.004608,0.0056,0.006592,0.00592,0.080192,0.006144
+1503,1308.42,0.764282,0.495616,0.006144,0.376096,0.004832,0.00416,0.00608,0.006144,0.006048,0.079968,0.006144
+1504,709.694,1.40906,0.317888,0.008064,0.1976,0.005536,0.004704,0.005504,0.005984,0.006112,0.07856,0.005824
+1505,1393.2,0.717773,0.318496,0.006144,0.198656,0.005664,0.004576,0.0056,0.00608,0.006144,0.07968,0.005952
+1506,1358.09,0.736328,0.31744,0.006176,0.200288,0.00448,0.005184,0.005056,0.006176,0.006112,0.077824,0.006144
+1507,1493.53,0.669556,0.319168,0.006144,0.200352,0.004448,0.005184,0.005056,0.006144,0.006144,0.079712,0.005984
+1508,1384.49,0.72229,0.313376,0.006144,0.196384,0.00432,0.005344,0.004896,0.006144,0.006144,0.077824,0.006176
+1509,1281,0.78064,0.317696,0.005984,0.199008,0.004704,0.004128,0.00608,0.006112,0.00608,0.079648,0.005952
+1510,1354.72,0.738159,0.321536,0.006144,0.202752,0.004192,0.006048,0.005728,0.00608,0.006144,0.078304,0.006144
+1511,1345.38,0.743286,0.321536,0.006144,0.202752,0.005824,0.004416,0.005792,0.005856,0.005984,0.078624,0.006144
+1512,691.133,1.4469,0.335808,0.008192,0.212992,0.005824,0.004416,0.005792,0.0064,0.00624,0.079872,0.00608
+1513,1316.41,0.759644,0.319872,0.006048,0.200864,0.004416,0.005248,0.004992,0.006144,0.006144,0.079872,0.006144
+1514,1446.84,0.691162,0.317216,0.006144,0.196608,0.005536,0.004704,0.006176,0.006112,0.006144,0.079872,0.00592
+1515,1422.22,0.703125,0.346144,0.006048,0.22608,0.005312,0.0048,0.00528,0.006208,0.00608,0.080384,0.005952
+1516,1358.77,0.735962,0.318816,0.005952,0.196896,0.005856,0.004384,0.006144,0.006144,0.006144,0.08144,0.005856
+1517,745.88,1.3407,0.383168,0.005952,0.262688,0.00528,0.0048,0.005408,0.00512,0.006016,0.08192,0.005984
+1518,1145.09,0.873291,0.342752,0.006048,0.223616,0.004544,0.00512,0.00512,0.006144,0.006144,0.079872,0.006144
+1519,1249.35,0.800415,0.505888,0.006144,0.38608,0.004928,0.004256,0.005984,0.00608,0.006112,0.080128,0.006176
+1520,543.38,1.84033,0.346528,0.008096,0.223776,0.0056,0.004608,0.005632,0.006048,0.00608,0.081728,0.00496
+1521,1554.16,0.643433,0.333568,0.006208,0.212704,0.00432,0.005344,0.004896,0.006144,0.006144,0.081856,0.005952
+1522,1241.21,0.805664,0.324352,0.006048,0.203744,0.004096,0.005824,0.004512,0.007136,0.006144,0.080864,0.005984
+1523,1455.32,0.687134,0.32688,0.005984,0.205152,0.005696,0.004544,0.005824,0.006208,0.00608,0.08144,0.005952
+1524,1263.61,0.791382,0.327392,0.006144,0.199744,0.004832,0.00432,0.005728,0.006048,0.005984,0.088736,0.005856
+1525,1465.47,0.682373,0.333568,0.005952,0.205568,0.005632,0.004608,0.005664,0.005728,0.005216,0.089216,0.005984
+1526,1174.31,0.851562,0.36352,0.006048,0.241216,0.00464,0.004192,0.006048,0.006144,0.006144,0.083168,0.00592
+1527,1343.83,0.744141,0.499968,0.006368,0.374976,0.005824,0.005472,0.006592,0.006688,0.006112,0.081952,0.005984
+1528,792.493,1.26184,0.329728,0.008192,0.202528,0.00432,0.005216,0.005024,0.006144,0.006016,0.0872,0.005088
+1529,1293.95,0.772827,0.324288,0.005952,0.197504,0.00528,0.004768,0.005376,0.006272,0.006112,0.08688,0.006144
+1530,1280.8,0.780762,0.323584,0.006048,0.198752,0.004128,0.0056,0.00464,0.006112,0.007232,0.084928,0.006144
+1531,1488.1,0.671997,0.330272,0.005984,0.20496,0.00464,0.004096,0.007488,0.00592,0.005024,0.086016,0.006144
+1532,698.917,1.43079,0.322144,0.005984,0.197152,0.00432,0.005344,0.004896,0.006144,0.006144,0.087328,0.004832
+1533,1123.89,0.889771,0.331424,0.006208,0.202688,0.005216,0.004928,0.006176,0.00624,0.006112,0.08784,0.006016
+1534,1431.42,0.698608,0.339264,0.005984,0.213312,0.005696,0.004544,0.005664,0.006624,0.006144,0.085568,0.005728
+1535,732.737,1.36475,0.542368,0.008192,0.411328,0.00544,0.00512,0.005536,0.006464,0.006144,0.08816,0.005984
diff --git a/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..e810d2a
--- /dev/null
+++ b/profile/Vis_0/BlockSizeCmp/CIS565Proj1,Boid_5000,BkSize_64,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1253.11,0.844825,0.333226,0.00568269,0.231941,0.00574375,0.00509494,0.00536834,0.00595531,0.00587894,0.0621341,0.00542672
+max_1024,1822.47,3.54883,0.821504,0.0512,0.71552,0.045152,0.028672,0.02256,0.017376,0.014528,0.086944,0.016384
+min_1024,281.783,0.548706,0.280576,0.00432,0.189568,0.004096,0.004096,0.004096,0.004512,0.004608,0.041728,0.004192
+512,1227.82,0.814453,0.32352,0.005472,0.240544,0.005536,0.004704,0.005824,0.00576,0.006112,0.043744,0.005824
+513,1092.7,0.915161,0.322016,0.004672,0.239104,0.004608,0.00544,0.0048,0.006176,0.00576,0.045408,0.006048
+514,1075.35,0.929932,0.315616,0.00544,0.232384,0.00544,0.004768,0.005504,0.005824,0.005056,0.045056,0.006144
+515,1389.89,0.719482,0.303104,0.006144,0.217088,0.00608,0.00416,0.006144,0.005824,0.006048,0.046688,0.004928
+516,1336.6,0.748169,0.3016,0.00464,0.221184,0.005952,0.004288,0.005984,0.005792,0.005792,0.042048,0.00592
+517,1008.12,0.991943,0.532512,0.004896,0.425984,0.024704,0.006016,0.005632,0.00576,0.005024,0.04896,0.005536
+518,1094.16,0.91394,0.296352,0.006144,0.21504,0.005152,0.005024,0.00528,0.005024,0.006176,0.042976,0.005536
+519,1283.41,0.779175,0.2888,0.006144,0.207936,0.005056,0.004096,0.006144,0.005792,0.005696,0.0432,0.004736
+520,1175.15,0.850952,0.327456,0.004608,0.246944,0.00496,0.004096,0.006144,0.005952,0.006336,0.043008,0.005408
+521,1216.15,0.822266,0.344576,0.00464,0.26416,0.005568,0.004672,0.0056,0.005792,0.004992,0.043008,0.006144
+522,959.7,1.04199,0.30928,0.005664,0.227584,0.00432,0.005728,0.004512,0.006144,0.006144,0.044512,0.004672
+523,1432.17,0.698242,0.290848,0.005472,0.207136,0.004512,0.005568,0.004672,0.006176,0.007232,0.04512,0.00496
+524,1300.11,0.769165,0.302368,0.00608,0.215136,0.00544,0.004768,0.005568,0.00608,0.00576,0.048128,0.005408
+525,839.774,1.1908,0.5424,0.005696,0.432576,0.029888,0.004928,0.00592,0.0056,0.00496,0.047008,0.005824
+526,873.068,1.14539,0.33504,0.006144,0.24896,0.004992,0.00416,0.00608,0.005952,0.00576,0.047584,0.005408
+527,597.041,1.67493,0.332032,0.005472,0.246656,0.005984,0.004256,0.006016,0.00576,0.00576,0.047648,0.00448
+528,918.798,1.08838,0.464896,0.0056,0.378656,0.004864,0.005248,0.004992,0.006144,0.005824,0.048864,0.004704
+529,680.964,1.46851,0.346368,0.005472,0.260736,0.004384,0.005696,0.004576,0.006112,0.005952,0.048992,0.004448
+530,1275.42,0.784058,0.313472,0.005088,0.227328,0.004096,0.006144,0.00544,0.005856,0.005088,0.049024,0.005408
+531,633.027,1.57971,0.364096,0.007616,0.276864,0.004512,0.005536,0.004704,0.006144,0.006144,0.047104,0.005472
+532,1093,0.914917,0.33408,0.00544,0.25072,0.004192,0.005888,0.004352,0.006144,0.006144,0.046688,0.004512
+533,1016.13,0.984131,0.330496,0.004928,0.247744,0.00416,0.00592,0.005888,0.005856,0.004864,0.045056,0.00608
+534,970.386,1.03052,0.535968,0.005728,0.453024,0.005824,0.004448,0.005856,0.005728,0.004768,0.045056,0.005536
+535,823.399,1.21448,0.358688,0.004832,0.27648,0.005376,0.004864,0.005696,0.005792,0.004896,0.045056,0.005696
+536,546.133,1.83105,0.380832,0.005792,0.297312,0.005888,0.004352,0.00608,0.006208,0.005888,0.043264,0.006048
+537,673.85,1.48401,0.427968,0.006912,0.343296,0.004864,0.005376,0.004864,0.006144,0.005824,0.045376,0.005312
+538,1082.45,0.923828,0.31888,0.006144,0.232992,0.004576,0.005504,0.004736,0.006144,0.005824,0.047424,0.005536
+539,463.427,2.15784,0.702464,0.00592,0.603808,0.004672,0.005344,0.004896,0.006144,0.00576,0.049536,0.016384
+540,306.232,3.2655,0.333472,0.006144,0.243712,0.005472,0.004768,0.005504,0.005824,0.005056,0.0512,0.005792
+541,962.293,1.03918,0.372768,0.008,0.282816,0.005792,0.004448,0.005824,0.005792,0.004928,0.050592,0.004576
+542,380.917,2.62524,0.351648,0.005472,0.264544,0.004416,0.005632,0.004608,0.006144,0.006144,0.049152,0.005536
+543,281.783,3.54883,0.475136,0.007584,0.388832,0.004992,0.004224,0.006016,0.005856,0.006144,0.045344,0.006144
+544,1044.1,0.957764,0.366592,0.005696,0.28272,0.004448,0.0056,0.004672,0.006112,0.006048,0.046848,0.004448
+545,1200.29,0.83313,0.326016,0.00448,0.241472,0.004288,0.00576,0.00448,0.006144,0.00736,0.047584,0.004448
+546,1111.38,0.89978,0.362208,0.005728,0.274848,0.005376,0.004864,0.005312,0.00496,0.006112,0.049152,0.005856
+547,1215.97,0.822388,0.311296,0.006144,0.223232,0.004096,0.005952,0.004288,0.006144,0.006176,0.04912,0.006144
+548,1066.39,0.937744,0.36864,0.006144,0.280576,0.005536,0.004704,0.0056,0.005792,0.004992,0.050368,0.004928
+549,995.988,1.00403,0.33488,0.005568,0.246144,0.004288,0.00576,0.00448,0.006144,0.006144,0.050944,0.005408
+550,505.367,1.97876,0.366592,0.008224,0.27776,0.004832,0.005216,0.005024,0.006144,0.00576,0.048928,0.004704
+551,1046.9,0.9552,0.337056,0.005536,0.250464,0.005568,0.004672,0.005632,0.005792,0.00496,0.049056,0.005376
+552,746.832,1.33899,0.333696,0.005856,0.246048,0.005408,0.004832,0.00544,0.006048,0.00608,0.047968,0.006016
+553,1013.74,0.98645,0.33632,0.004672,0.249376,0.004576,0.005472,0.004768,0.006144,0.006144,0.049152,0.006016
+554,982.49,1.01782,0.330944,0.005664,0.24528,0.005056,0.0056,0.00464,0.006144,0.006016,0.047104,0.00544
+555,1306.96,0.765137,0.333536,0.004768,0.247776,0.004128,0.00592,0.004416,0.006048,0.006144,0.048928,0.005408
+556,607.13,1.64709,0.36112,0.007168,0.270336,0.005728,0.004512,0.00576,0.006304,0.005824,0.049696,0.005792
+557,1271.85,0.786255,0.305152,0.006144,0.218912,0.00432,0.005728,0.004512,0.006144,0.006048,0.0472,0.006144
+558,1339.44,0.746582,0.32368,0.00512,0.237568,0.005792,0.004448,0.005792,0.005728,0.004864,0.048992,0.005376
+559,1151.69,0.868286,0.339968,0.006144,0.256192,0.00512,0.004928,0.0056,0.00464,0.006144,0.046976,0.004224
+560,1300.52,0.768921,0.291232,0.004512,0.210944,0.005664,0.005632,0.005088,0.005952,0.005664,0.043328,0.004448
+561,1313.45,0.761353,0.30544,0.0048,0.219008,0.004224,0.005824,0.004416,0.006176,0.007488,0.047776,0.005728
+562,1310.51,0.763062,0.30832,0.016416,0.210304,0.004704,0.005344,0.004896,0.006144,0.005952,0.049152,0.005408
+563,1168.62,0.855713,0.53216,0.005472,0.443104,0.0064,0.006144,0.005504,0.005792,0.005088,0.049152,0.005504
+564,1031.74,0.969238,0.288768,0.005856,0.20816,0.005088,0.004128,0.006112,0.006176,0.006144,0.04272,0.004384
+565,1344.27,0.743896,0.293472,0.004736,0.210944,0.005888,0.004352,0.00592,0.005952,0.00576,0.043808,0.006112
+566,1369.21,0.730347,0.283552,0.005024,0.202752,0.0056,0.00464,0.0056,0.005856,0.004928,0.044256,0.004896
+567,621.265,1.60962,0.649248,0.005632,0.56768,0.004224,0.005824,0.004416,0.006144,0.006144,0.044352,0.004832
+568,1352.04,0.739624,0.298208,0.006176,0.215008,0.005568,0.004672,0.005824,0.005856,0.006496,0.043232,0.005376
+569,1298.05,0.770386,0.316256,0.004928,0.23552,0.005952,0.004288,0.006016,0.00576,0.005728,0.0432,0.004864
+570,1129.15,0.88562,0.312416,0.006048,0.23152,0.00544,0.0048,0.00544,0.006016,0.00496,0.042784,0.005408
+571,653.947,1.52917,0.354304,0.008192,0.268288,0.005472,0.004768,0.005504,0.005792,0.005088,0.045056,0.006144
+572,1103,0.906616,0.314336,0.005088,0.233472,0.005632,0.004608,0.005696,0.00576,0.006176,0.043488,0.004416
+573,1420.74,0.703857,0.300928,0.00448,0.221152,0.005472,0.004768,0.005536,0.00592,0.004928,0.043008,0.005664
+574,1315.98,0.759888,0.304768,0.005952,0.222752,0.004768,0.00528,0.00496,0.006144,0.006144,0.043008,0.00576
+575,1193.82,0.837646,0.31392,0.005056,0.23296,0.004608,0.00544,0.0048,0.006144,0.005888,0.043264,0.00576
+576,1283.21,0.779297,0.310688,0.005632,0.229888,0.00512,0.004992,0.005248,0.00512,0.006144,0.043008,0.005536
+577,1255.86,0.796265,0.294496,0.006144,0.212992,0.005312,0.004928,0.005376,0.00656,0.005728,0.041728,0.005728
+578,951.673,1.05078,0.559392,0.004928,0.454464,0.018624,0.006144,0.008064,0.007616,0.005984,0.047968,0.0056
+579,1199.06,0.833984,0.307008,0.004768,0.219136,0.00512,0.004992,0.005504,0.006432,0.005792,0.049856,0.005408
+580,1278.4,0.782227,0.303104,0.005664,0.215424,0.004192,0.005856,0.004416,0.006112,0.006144,0.049152,0.006144
+581,1366.02,0.732056,0.32208,0.01488,0.225312,0.00592,0.004288,0.006016,0.005888,0.005888,0.049056,0.004832
+582,1320.86,0.75708,0.292864,0.006144,0.203872,0.005024,0.00416,0.00608,0.006176,0.006112,0.050432,0.004864
+583,1266.74,0.789429,0.493792,0.004736,0.40672,0.004928,0.005184,0.005088,0.006048,0.00576,0.0496,0.005728
+584,799.766,1.25037,0.315168,0.005856,0.226688,0.005024,0.00416,0.00608,0.005792,0.00576,0.049888,0.00592
+585,885.239,1.12964,0.338016,0.005408,0.252,0.004832,0.005216,0.005024,0.006016,0.005792,0.04928,0.004448
+586,1000,1,0.375776,0.005088,0.292576,0.005472,0.005024,0.00528,0.005024,0.006112,0.046496,0.004704
+587,647.333,1.5448,0.340576,0.008224,0.25648,0.00416,0.005888,0.004352,0.006144,0.006144,0.044288,0.004896
+588,1244.61,0.803467,0.306816,0.005504,0.225856,0.00416,0.00592,0.004352,0.006112,0.006144,0.043008,0.00576
+589,1273.04,0.785522,0.313888,0.004928,0.233472,0.00528,0.00496,0.005312,0.00496,0.006112,0.04304,0.005824
+590,1080.03,0.925903,0.31744,0.006144,0.235072,0.004544,0.005536,0.004704,0.006144,0.005888,0.043264,0.006144
+591,1324.49,0.755005,0.311296,0.00592,0.228608,0.005056,0.004128,0.006016,0.005824,0.005792,0.045408,0.004544
+592,1354.27,0.738403,0.297408,0.004832,0.212704,0.004384,0.006144,0.00544,0.006528,0.00576,0.04576,0.005856
+593,1300.32,0.769043,0.535392,0.00496,0.427296,0.029408,0.005536,0.005888,0.00496,0.006176,0.0464,0.004768
+594,768.913,1.30054,0.303808,0.0048,0.217088,0.005312,0.004928,0.005376,0.004928,0.00608,0.050848,0.004448
+595,1281.8,0.780151,0.321536,0.00608,0.231488,0.005952,0.004288,0.006016,0.006272,0.006016,0.050592,0.004832
+596,1433.42,0.697632,0.311808,0.004608,0.22464,0.004736,0.005408,0.004832,0.006144,0.005856,0.05056,0.005024
+597,1276.41,0.783447,0.292896,0.006144,0.20816,0.004832,0.005248,0.004992,0.006144,0.006144,0.04672,0.004512
+598,1177.18,0.849487,0.465152,0.004768,0.376832,0.005824,0.004416,0.005856,0.005792,0.005792,0.050144,0.005728
+599,1432.67,0.697998,0.311904,0.004768,0.221184,0.005792,0.004448,0.005824,0.005824,0.006784,0.0512,0.00608
+600,1279.8,0.781372,0.313344,0.005504,0.217728,0.00528,0.00496,0.00528,0.006368,0.005888,0.05792,0.004416
+601,1392.01,0.718384,0.30272,0.004704,0.206848,0.005984,0.004288,0.006016,0.005728,0.00576,0.057984,0.005408
+602,896.967,1.11487,0.493312,0.007584,0.395392,0.00464,0.0056,0.00464,0.006144,0.006016,0.057472,0.005824
+603,1044.63,0.957275,0.32752,0.004448,0.232672,0.004896,0.005312,0.004928,0.006144,0.00576,0.057728,0.005632
+604,1318.1,0.758667,0.30288,0.00544,0.211744,0.00544,0.0048,0.005504,0.005856,0.005056,0.053216,0.005824
+605,1616.42,0.618652,0.289728,0.005056,0.200576,0.004224,0.005824,0.004416,0.006144,0.006144,0.052608,0.004736
+606,1363.74,0.733276,0.301056,0.00608,0.204896,0.00592,0.00432,0.005952,0.005696,0.005792,0.056256,0.006144
+607,1065.14,0.938843,0.293984,0.005856,0.202144,0.004992,0.004096,0.006144,0.007392,0.00592,0.051968,0.005472
+608,1271.85,0.786255,0.293248,0.004864,0.204128,0.004768,0.00528,0.00496,0.006048,0.005856,0.051584,0.00576
+609,1228.19,0.814209,0.29376,0.004992,0.2048,0.005312,0.004928,0.005344,0.004896,0.006144,0.052448,0.004896
+610,1089.8,0.917603,0.550656,0.004704,0.417792,0.043008,0.01024,0.006016,0.005952,0.00592,0.051616,0.005408
+611,1041.31,0.960327,0.3208,0.005504,0.232064,0.00576,0.00448,0.005792,0.005824,0.00496,0.051008,0.005408
+612,1482.18,0.674683,0.291488,0.004768,0.208928,0.006112,0.004096,0.006144,0.006144,0.005984,0.044608,0.004704
+613,1213.27,0.824219,0.305152,0.00576,0.216608,0.00496,0.004224,0.006016,0.005984,0.00592,0.050784,0.004896
+614,1510.88,0.661865,0.284672,0.0056,0.195104,0.006016,0.004224,0.006144,0.005856,0.006432,0.049152,0.006144
+615,1579.03,0.633301,0.4632,0.004576,0.375936,0.004992,0.005248,0.004992,0.006144,0.005824,0.049472,0.006016
+616,1049.05,0.953247,0.288096,0.00544,0.205728,0.00592,0.004352,0.00592,0.00576,0.005792,0.043808,0.005376
+617,1415.1,0.706665,0.289664,0.004992,0.206432,0.004512,0.005408,0.004832,0.006144,0.005856,0.046368,0.00512
+618,1364.65,0.732788,0.317536,0.005472,0.230048,0.005664,0.004608,0.005664,0.004544,0.006144,0.050912,0.00448
+619,1367.84,0.731079,0.29376,0.00496,0.207968,0.005024,0.004192,0.006048,0.005472,0.005888,0.049504,0.004704
+620,509.073,1.96436,0.311296,0.007648,0.221568,0.004256,0.006144,0.005376,0.004864,0.006144,0.049152,0.006144
+621,1336.16,0.748413,0.300512,0.00576,0.21136,0.005472,0.004736,0.005568,0.006624,0.005824,0.049568,0.0056
+622,1301.35,0.768433,0.32512,0.005984,0.232832,0.004896,0.005184,0.005056,0.005984,0.005632,0.053824,0.005728
+623,981.666,1.01868,0.307296,0.005728,0.213504,0.005632,0.004608,0.005664,0.005952,0.006848,0.053216,0.006144
+624,1427.18,0.700684,0.298208,0.006144,0.202752,0.005408,0.004832,0.006144,0.006144,0.007232,0.054176,0.005376
+625,1308.63,0.76416,0.311296,0.00592,0.218944,0.004512,0.005568,0.004672,0.006144,0.006016,0.054496,0.005024
+626,1162.98,0.859863,0.540832,0.005472,0.420672,0.032768,0.005856,0.004416,0.006112,0.006144,0.053248,0.006144
+627,899.133,1.11218,0.303104,0.006048,0.216256,0.005024,0.005152,0.005088,0.006016,0.005728,0.048832,0.00496
+628,1484.6,0.673584,0.312992,0.005536,0.225696,0.004288,0.005792,0.004448,0.006144,0.00608,0.049216,0.005792
+629,1283.41,0.779175,0.313152,0.005696,0.22512,0.004704,0.005344,0.004896,0.006112,0.005568,0.04976,0.005952
+630,1346.48,0.742676,0.301088,0.005888,0.215296,0.005696,0.004544,0.005856,0.006432,0.006144,0.046656,0.004576
+631,1266.15,0.789795,0.466816,0.006048,0.376832,0.00576,0.005632,0.004992,0.006112,0.005792,0.049536,0.006112
+632,1260.7,0.793213,0.309248,0.006144,0.223072,0.004256,0.005792,0.004448,0.006144,0.006144,0.04832,0.004928
+633,1179.21,0.848022,0.317344,0.005824,0.233792,0.004096,0.005984,0.005312,0.005088,0.006176,0.045024,0.006048
+634,1625.07,0.615356,0.294944,0.004512,0.202752,0.005344,0.004864,0.005568,0.00592,0.004896,0.048128,0.01296
+635,1410.47,0.708984,0.530048,0.005472,0.442816,0.006432,0.00608,0.005504,0.005824,0.005056,0.047104,0.00576
+636,809.886,1.23474,0.280576,0.005888,0.19616,0.0048,0.005248,0.004992,0.006016,0.00576,0.046912,0.0048
+637,1469.42,0.680542,0.294944,0.0056,0.202912,0.00448,0.0056,0.00464,0.006144,0.006144,0.054944,0.00448
+638,1317.25,0.759155,0.288768,0.005984,0.196544,0.00432,0.005728,0.004512,0.006144,0.005888,0.053504,0.006144
+639,1215.79,0.82251,0.294016,0.005824,0.206784,0.00448,0.005568,0.004672,0.006144,0.006048,0.04912,0.005376
+640,1342.29,0.744995,0.298368,0.00592,0.212768,0.004544,0.005664,0.004576,0.007392,0.00496,0.04704,0.005504
+641,1344.27,0.743896,0.284672,0.006144,0.198656,0.005632,0.004608,0.005696,0.00576,0.006464,0.045568,0.006144
+642,1305.29,0.766113,0.310656,0.006144,0.225312,0.005408,0.0048,0.005472,0.005888,0.005024,0.047104,0.005504
+643,1266.93,0.789307,0.313696,0.004576,0.22896,0.004384,0.005696,0.004544,0.006144,0.007232,0.046016,0.006144
+644,737.287,1.35632,0.302912,0.00688,0.21712,0.005216,0.004992,0.00528,0.00496,0.006144,0.04688,0.00544
+645,1451.97,0.688721,0.291648,0.004896,0.203776,0.005056,0.00416,0.006144,0.005792,0.006496,0.049152,0.006176
+646,1485.4,0.673218,0.289376,0.004704,0.202464,0.004384,0.005664,0.004608,0.006144,0.006112,0.05024,0.005056
+647,1402.74,0.712891,0.29056,0.00592,0.203008,0.005664,0.004576,0.005536,0.006016,0.005888,0.048064,0.005888
+648,1388,0.720459,0.286272,0.006144,0.200416,0.004384,0.004288,0.005952,0.006144,0.006144,0.047104,0.005696
+649,1132.74,0.882812,0.28672,0.006016,0.198816,0.005792,0.004448,0.005856,0.005888,0.005952,0.047808,0.006144
+650,1261.67,0.792603,0.301216,0.005472,0.213824,0.0056,0.00464,0.005632,0.00592,0.004832,0.050528,0.004768
+651,1634.15,0.611938,0.292768,0.006144,0.202752,0.005952,0.004288,0.006144,0.006144,0.00608,0.049216,0.006048
+652,1304.25,0.766724,0.291648,0.004928,0.202624,0.004192,0.005888,0.004352,0.007328,0.00496,0.052736,0.00464
+653,691.308,1.44653,0.29696,0.008096,0.202848,0.005664,0.004576,0.005728,0.005856,0.0048,0.054368,0.005024
+654,1578.12,0.633667,0.289728,0.005056,0.198656,0.005504,0.004768,0.005504,0.005824,0.005024,0.054528,0.004864
+655,1461.55,0.684204,0.291744,0.005056,0.20272,0.004096,0.006016,0.00528,0.005088,0.006144,0.052288,0.005056
+656,1279.6,0.781494,0.29328,0.004512,0.20208,0.004768,0.005344,0.004896,0.006144,0.006144,0.0544,0.004992
+657,1544.2,0.647583,0.470368,0.00544,0.37872,0.005088,0.00528,0.00496,0.006144,0.005728,0.0536,0.005408
+658,856.187,1.16797,0.303104,0.005888,0.21104,0.004256,0.005824,0.004416,0.006144,0.006144,0.054976,0.004416
+659,1127.91,0.886597,0.379456,0.004672,0.288352,0.004512,0.005504,0.004736,0.006144,0.006048,0.053344,0.006144
+660,1058.81,0.944458,0.483072,0.00688,0.393184,0.005856,0.004384,0.006016,0.005792,0.005696,0.049888,0.005376
+661,1205.95,0.829224,0.299904,0.00496,0.210528,0.004512,0.005536,0.004704,0.006144,0.006016,0.052928,0.004576
+662,1461.81,0.684082,0.294912,0.006144,0.204128,0.004768,0.00528,0.00496,0.005984,0.005824,0.05168,0.006144
+663,1179.38,0.8479,0.292928,0.00544,0.20144,0.005984,0.004256,0.005984,0.006048,0.005952,0.05296,0.004864
+664,1278.6,0.782104,0.31744,0.00608,0.226464,0.005024,0.00416,0.00608,0.005888,0.0064,0.052256,0.005088
+665,1530.36,0.653442,0.464704,0.004928,0.377792,0.005088,0.005696,0.004544,0.006144,0.006144,0.04896,0.005408
+666,1142.38,0.875366,0.2968,0.00576,0.204384,0.004896,0.005184,0.006496,0.006752,0.006016,0.051328,0.005984
+667,1251.45,0.799072,0.288768,0.006144,0.19856,0.004192,0.005888,0.004352,0.006176,0.006144,0.051168,0.006144
+668,1713.45,0.583618,0.285216,0.00464,0.196,0.004704,0.005376,0.004864,0.006144,0.006144,0.052256,0.005088
+669,1438.45,0.69519,0.539424,0.004928,0.432128,0.020576,0.006048,0.005632,0.005824,0.004928,0.053248,0.006112
+670,796.345,1.25574,0.286592,0.005664,0.198464,0.004768,0.00528,0.00496,0.00592,0.00576,0.04976,0.006016
+671,1613.55,0.619751,0.290752,0.004544,0.204032,0.004864,0.005792,0.004448,0.006144,0.005824,0.049472,0.005632
+672,1354.95,0.738037,0.288768,0.006144,0.202656,0.004192,0.005888,0.004384,0.006112,0.006144,0.049056,0.004192
+673,1492.17,0.670166,0.285856,0.006144,0.198656,0.005344,0.004896,0.005408,0.006656,0.00576,0.047584,0.005408
+674,1443.27,0.692871,0.468544,0.00608,0.378272,0.004768,0.005312,0.004928,0.006144,0.006144,0.0512,0.005696
+675,1104.79,0.905151,0.286784,0.005472,0.199104,0.004384,0.005664,0.004608,0.006112,0.006176,0.050784,0.00448
+676,1320.01,0.757568,0.31312,0.004736,0.2248,0.004576,0.005504,0.005888,0.005024,0.006112,0.051072,0.005408
+677,1494.07,0.669312,0.290816,0.005984,0.202048,0.00496,0.004192,0.006048,0.005888,0.00576,0.05104,0.004896
+678,1067.92,0.936401,0.532864,0.004512,0.42592,0.024384,0.004352,0.005888,0.005696,0.004928,0.051072,0.006112
+679,897.95,1.11365,0.317248,0.006144,0.228384,0.005056,0.004128,0.006144,0.005792,0.00576,0.049888,0.005952
+680,661.392,1.51196,0.31872,0.005952,0.229568,0.005152,0.004992,0.005248,0.00512,0.007264,0.050048,0.005376
+681,1461.29,0.684326,0.296992,0.006144,0.206464,0.00448,0.005568,0.004672,0.007424,0.004864,0.052832,0.004544
+682,1375.88,0.726807,0.285088,0.004544,0.197664,0.005024,0.004128,0.006144,0.005952,0.005696,0.051488,0.004448
+683,1420.74,0.703857,0.286176,0.006016,0.194688,0.005504,0.004768,0.005536,0.005824,0.00608,0.05216,0.0056
+684,1322.57,0.756104,0.306208,0.005632,0.213504,0.006016,0.004224,0.006048,0.005696,0.005824,0.053856,0.005408
+685,1356.07,0.737427,0.308192,0.005088,0.219168,0.005472,0.004736,0.005536,0.005952,0.004896,0.0512,0.006144
+686,977.682,1.02283,0.553856,0.004992,0.42384,0.045152,0.005696,0.004544,0.006144,0.00608,0.05264,0.004768
+687,1036.96,0.964355,0.321344,0.006144,0.231424,0.006048,0.004192,0.00608,0.005792,0.005824,0.049888,0.005952
+688,997.322,1.00269,0.298016,0.006144,0.208,0.004992,0.004192,0.006048,0.005888,0.006304,0.051232,0.005216
+689,1520.13,0.657837,0.28848,0.004736,0.200512,0.004288,0.00576,0.00448,0.007232,0.005056,0.051008,0.005408
+690,1472.32,0.679199,0.463328,0.004608,0.374784,0.005696,0.005632,0.005056,0.00608,0.005696,0.049664,0.006112
+691,1170.79,0.854126,0.289088,0.005472,0.203744,0.004096,0.006016,0.00528,0.00512,0.006112,0.048544,0.004704
+692,1274.42,0.784668,0.306208,0.006144,0.220896,0.004384,0.005696,0.004544,0.006144,0.006144,0.046848,0.005408
+693,1490.81,0.670776,0.28688,0.00528,0.201344,0.004448,0.0056,0.00464,0.007872,0.005824,0.047104,0.004768
+694,1195.04,0.836792,0.530464,0.00544,0.418496,0.033792,0.004992,0.005312,0.005056,0.006144,0.046784,0.004448
+695,746.492,1.3396,0.291328,0.005056,0.206816,0.005536,0.004704,0.005568,0.00576,0.005056,0.047136,0.005696
+696,877.088,1.14014,0.356256,0.00576,0.27072,0.00544,0.0048,0.005472,0.00608,0.00592,0.046016,0.006048
+697,1337.03,0.747925,0.301504,0.005568,0.217888,0.005664,0.0048,0.005472,0.00496,0.005952,0.046656,0.004544
+698,1307.79,0.764648,0.465344,0.004768,0.37888,0.005888,0.004352,0.00592,0.005888,0.005824,0.047904,0.00592
+699,1263.22,0.791626,0.298496,0.00608,0.210848,0.004256,0.005824,0.004416,0.006144,0.005984,0.049312,0.005632
+700,1494.62,0.669067,0.29696,0.005728,0.210464,0.004992,0.004096,0.006144,0.006048,0.00592,0.048576,0.004992
+701,1413.39,0.70752,0.292896,0.006144,0.206464,0.00448,0.005824,0.004448,0.006112,0.006176,0.048672,0.004576
+702,963.651,1.03772,0.545568,0.004864,0.413696,0.033888,0.02112,0.004416,0.006112,0.006144,0.050784,0.004544
+703,1109.73,0.901123,0.299392,0.004512,0.212576,0.00448,0.0056,0.00464,0.006144,0.006144,0.0504,0.004896
+704,1350.92,0.740234,0.297792,0.004928,0.209952,0.005056,0.004128,0.006112,0.005984,0.005888,0.050944,0.0048
+705,1353.38,0.738892,0.316704,0.006144,0.22528,0.005728,0.004512,0.0056,0.006464,0.005984,0.051584,0.005408
+706,1183.64,0.844849,0.293984,0.006048,0.206944,0.005824,0.004416,0.005888,0.006048,0.005696,0.047712,0.005408
+707,1213.09,0.824341,0.309472,0.00544,0.222112,0.00592,0.00432,0.005984,0.005792,0.006336,0.047424,0.006144
+708,1444.29,0.692383,0.302976,0.004736,0.219104,0.005696,0.004544,0.00576,0.005888,0.00576,0.04608,0.005408
+709,1111.38,0.89978,0.318144,0.0048,0.228672,0.0048,0.00544,0.0048,0.006144,0.005888,0.051456,0.006144
+710,1431.67,0.698486,0.310176,0.005024,0.221184,0.00592,0.00432,0.005952,0.00576,0.005728,0.051552,0.004736
+711,711.111,1.40625,0.35024,0.007552,0.258144,0.00464,0.005408,0.004832,0.006144,0.005888,0.052672,0.00496
+712,1370.13,0.729858,0.288192,0.006144,0.200704,0.005568,0.004672,0.005568,0.005792,0.005024,0.049152,0.005568
+713,1552.99,0.643921,0.290816,0.006144,0.204224,0.004672,0.005376,0.005952,0.005056,0.006144,0.048832,0.004416
+714,938.481,1.06555,0.309696,0.004544,0.218144,0.005056,0.004128,0.006144,0.005856,0.005792,0.053888,0.006144
+715,942.042,1.06152,0.338208,0.005472,0.2488,0.00544,0.0048,0.005504,0.005792,0.005056,0.052832,0.004512
+716,980.022,1.02039,0.307232,0.006144,0.214528,0.004608,0.00544,0.004832,0.007616,0.00464,0.054944,0.00448
+717,1315.56,0.760132,0.319488,0.006144,0.233344,0.004224,0.005728,0.004512,0.006144,0.006144,0.048192,0.005056
+718,852.445,1.1731,0.32096,0.005472,0.232128,0.004384,0.005664,0.004576,0.006144,0.006144,0.050656,0.005792
+719,829.738,1.2052,0.3696,0.007104,0.277824,0.0048,0.005248,0.004992,0.006112,0.00576,0.051808,0.005952
+720,755.371,1.32385,0.303232,0.00544,0.211776,0.005248,0.004992,0.005248,0.005024,0.006112,0.053248,0.006144
+721,1362.83,0.733765,0.514592,0.00464,0.423936,0.005184,0.004992,0.005312,0.004992,0.006144,0.053248,0.006144
+722,1158.7,0.863037,0.29696,0.005504,0.202944,0.004544,0.005504,0.004736,0.006144,0.005888,0.055552,0.006144
+723,1266.15,0.789795,0.315744,0.004576,0.226208,0.005056,0.004128,0.006144,0.005856,0.005824,0.051808,0.006144
+724,1478.43,0.676392,0.29424,0.005568,0.203328,0.005376,0.004864,0.00544,0.004928,0.006016,0.053248,0.005472
+725,1079.74,0.926147,0.487424,0.01024,0.393216,0.005728,0.004512,0.006144,0.005984,0.005792,0.050912,0.004896
+726,1086.04,0.920776,0.292864,0.005504,0.200992,0.005632,0.00496,0.005312,0.004928,0.00736,0.053568,0.004608
+727,1282.2,0.779907,0.299008,0.005504,0.207488,0.005376,0.004864,0.00544,0.006016,0.006464,0.053312,0.004544
+728,1536.38,0.650879,0.29696,0.005952,0.204992,0.005536,0.004704,0.005536,0.004704,0.006144,0.054816,0.004576
+729,1282,0.780029,0.297152,0.005408,0.207776,0.004096,0.005984,0.005312,0.005088,0.006144,0.0512,0.006144
+730,1418.28,0.705078,0.467776,0.00496,0.377888,0.005056,0.004192,0.006048,0.005888,0.00576,0.05184,0.006144
+731,1122.35,0.890991,0.296736,0.005472,0.207392,0.004256,0.005792,0.004448,0.007424,0.006144,0.04992,0.005888
+732,1290.49,0.774902,0.313504,0.005472,0.223488,0.004672,0.005984,0.00528,0.00512,0.006144,0.052288,0.005056
+733,1369.9,0.72998,0.297088,0.004672,0.208896,0.00512,0.004992,0.005312,0.005056,0.006144,0.0512,0.005696
+734,700.53,1.42749,0.319136,0.007616,0.227936,0.005696,0.004544,0.005696,0.005824,0.004896,0.051168,0.00576
+735,1461.55,0.684204,0.296992,0.005568,0.20128,0.00544,0.0048,0.005504,0.004736,0.007392,0.057344,0.004928
+736,1353.38,0.738892,0.300832,0.005472,0.206976,0.00464,0.005408,0.004832,0.00592,0.005792,0.055872,0.00592
+737,1240.65,0.80603,0.290816,0.006144,0.19792,0.004832,0.005248,0.004992,0.00608,0.006208,0.054432,0.00496
+738,1594.39,0.627197,0.295104,0.0048,0.201824,0.005024,0.006016,0.005952,0.006016,0.00576,0.05408,0.005632
+739,1034.21,0.966919,0.30496,0.006144,0.210016,0.005024,0.004096,0.006144,0.005952,0.00576,0.055904,0.00592
+740,708.038,1.41235,0.307712,0.004992,0.210944,0.00544,0.0048,0.005472,0.006144,0.005856,0.058304,0.00576
+741,1067.64,0.936646,0.494528,0.007104,0.395008,0.004352,0.006144,0.00544,0.005856,0.005088,0.059424,0.006112
+742,1147.98,0.871094,0.302272,0.005856,0.204544,0.00464,0.005408,0.004832,0.006144,0.006144,0.059328,0.005376
+743,1401.78,0.713379,0.3072,0.006144,0.206848,0.005856,0.004384,0.00592,0.00592,0.005888,0.061312,0.004928
+744,1264.2,0.791016,0.304992,0.005792,0.2048,0.004448,0.005632,0.004608,0.006144,0.006144,0.06144,0.005984
+745,1489.18,0.671509,0.300224,0.0056,0.20032,0.005024,0.004096,0.006144,0.006016,0.00576,0.061856,0.005408
+746,1497.9,0.667603,0.475872,0.004832,0.376544,0.004384,0.005728,0.004512,0.006144,0.006144,0.06144,0.006144
+747,1115.47,0.896484,0.315392,0.005504,0.21568,0.00544,0.0048,0.005504,0.00576,0.00512,0.0632,0.004384
+748,1290.49,0.774902,0.326624,0.005088,0.232992,0.004576,0.005504,0.004736,0.006144,0.007424,0.054016,0.006144
+749,1119.13,0.893555,0.324576,0.005088,0.229376,0.005504,0.004736,0.005536,0.005792,0.005056,0.058592,0.004896
+750,891.307,1.12195,0.540096,0.0512,0.394464,0.004928,0.005184,0.005024,0.006048,0.005728,0.061952,0.005568
+751,1277.21,0.782959,0.304672,0.005728,0.205216,0.005184,0.004992,0.00528,0.005024,0.006144,0.06144,0.005664
+752,1203.82,0.830688,0.309536,0.005088,0.210592,0.004448,0.0056,0.00464,0.006144,0.006112,0.061472,0.00544
+753,1354.95,0.738037,0.308448,0.005472,0.209344,0.00432,0.005696,0.004544,0.006144,0.006144,0.061376,0.005408
+754,1311.56,0.762451,0.306016,0.00496,0.206848,0.006016,0.004224,0.00608,0.006208,0.005824,0.059712,0.006144
+755,1104.79,0.905151,0.299008,0.006144,0.198688,0.005952,0.004288,0.006112,0.006144,0.006144,0.059392,0.006144
+756,709.264,1.40991,0.303104,0.006016,0.20496,0.005696,0.004512,0.00576,0.005664,0.00496,0.060704,0.004832
+757,1118.82,0.893799,0.492096,0.00672,0.393216,0.005984,0.005504,0.004896,0.006144,0.005856,0.058816,0.00496
+758,1140.95,0.876465,0.302944,0.0056,0.204416,0.005024,0.00416,0.00608,0.005856,0.005792,0.060032,0.005984
+759,1155.76,0.865234,0.32352,0.005856,0.2248,0.004864,0.005184,0.005056,0.005984,0.005824,0.059872,0.00608
+760,1280.4,0.781006,0.319328,0.006144,0.214784,0.004352,0.005696,0.004544,0.006144,0.006048,0.065632,0.005984
+761,1555.05,0.643066,0.300448,0.006144,0.202528,0.00432,0.005728,0.004512,0.006144,0.006048,0.059488,0.005536
+762,1443.27,0.692871,0.475712,0.00464,0.378624,0.004352,0.005856,0.004384,0.006144,0.006144,0.06048,0.005088
+763,1025.67,0.974976,0.297056,0.004608,0.198656,0.005568,0.004672,0.0056,0.006624,0.005888,0.059712,0.005728
+764,1213.63,0.823975,0.319296,0.00544,0.225984,0.005568,0.004704,0.005568,0.005856,0.00496,0.055264,0.005952
+765,1473.38,0.678711,0.31344,0.005472,0.219008,0.004992,0.004192,0.006048,0.006016,0.005888,0.057152,0.004672
+766,746.764,1.33911,0.323584,0.007936,0.225536,0.005408,0.004832,0.005472,0.005792,0.005152,0.058592,0.004864
+767,1390.83,0.718994,0.307232,0.006144,0.21072,0.00432,0.005728,0.004512,0.006144,0.006144,0.058592,0.004928
+768,1162.65,0.860107,0.301056,0.00576,0.21056,0.004864,0.005184,0.005056,0.006048,0.005792,0.051648,0.006144
+769,1389.65,0.719604,0.302368,0.005824,0.211264,0.00576,0.00448,0.005824,0.005664,0.005056,0.053088,0.005408
+770,1552.1,0.644287,0.299744,0.004832,0.208192,0.0048,0.005248,0.004992,0.006144,0.006144,0.054912,0.00448
+771,974.426,1.02625,0.289728,0.005056,0.200288,0.004512,0.005536,0.004704,0.006144,0.006144,0.0512,0.006144
+772,901.111,1.10974,0.299008,0.005792,0.208704,0.00464,0.005408,0.004832,0.006144,0.005824,0.053024,0.00464
+773,1082.74,0.923584,0.552096,0.005472,0.420672,0.045056,0.006144,0.005248,0.004992,0.006144,0.052992,0.005376
+774,982.136,1.01819,0.301056,0.005856,0.211232,0.004096,0.005952,0.004352,0.00608,0.006144,0.0512,0.006144
+775,1400.34,0.714111,0.320736,0.00592,0.227168,0.00448,0.005568,0.004672,0.006176,0.007264,0.054112,0.005376
+776,1423.71,0.702393,0.290848,0.006144,0.199776,0.005024,0.004096,0.006144,0.005888,0.005792,0.053344,0.00464
+777,1284.62,0.778442,0.296096,0.00608,0.204864,0.005856,0.004384,0.005888,0.005824,0.005792,0.052,0.005408
+778,784.149,1.27527,0.289536,0.004864,0.202368,0.00448,0.00544,0.0048,0.006144,0.005984,0.049312,0.006144
+779,1178.37,0.848633,0.310688,0.005984,0.217248,0.00544,0.0048,0.005472,0.005792,0.00512,0.055296,0.005536
+780,1332.03,0.750732,0.328192,0.004608,0.23552,0.005696,0.004544,0.00576,0.005824,0.0048,0.055296,0.006144
+781,1246.88,0.802002,0.330016,0.004576,0.237536,0.00576,0.00448,0.006112,0.005792,0.005792,0.053984,0.005984
+782,1373.57,0.728027,0.550944,0.00544,0.420096,0.040512,0.004992,0.005312,0.005984,0.00512,0.05904,0.004448
+783,785.427,1.27319,0.301152,0.005088,0.2048,0.00512,0.004992,0.00528,0.005088,0.006144,0.059264,0.005376
+784,1212.37,0.824829,0.328768,0.006144,0.221184,0.005184,0.015296,0.0056,0.006016,0.00592,0.058016,0.005408
+785,1531.5,0.652954,0.299008,0.005728,0.203168,0.00544,0.0048,0.005504,0.005824,0.005056,0.057344,0.006144
+786,1425.19,0.70166,0.473664,0.004672,0.376832,0.00608,0.00416,0.006112,0.005792,0.005728,0.059584,0.004704
+787,1164.96,0.858398,0.297312,0.005472,0.203776,0.005248,0.004992,0.00528,0.006336,0.004928,0.0568,0.00448
+788,1385.19,0.721924,0.299584,0.004704,0.2088,0.004192,0.005888,0.00544,0.006592,0.005952,0.051904,0.006112
+789,1359.22,0.735718,0.30464,0.00592,0.211072,0.004192,0.005888,0.004384,0.006112,0.006176,0.055264,0.005632
+790,703.236,1.422,0.364928,0.007552,0.26928,0.004128,0.00592,0.00432,0.006144,0.006144,0.055296,0.006144
+791,1532.93,0.652344,0.301088,0.005472,0.204768,0.004832,0.005216,0.005024,0.005856,0.005728,0.059296,0.004896
+792,1249.35,0.800415,0.295776,0.00496,0.202144,0.004704,0.005344,0.004928,0.006112,0.005824,0.057344,0.004416
+793,1474.18,0.678345,0.310336,0.00576,0.215136,0.004384,0.005664,0.004576,0.00736,0.004928,0.057152,0.005376
+794,1304.87,0.766357,0.306624,0.006144,0.214592,0.004544,0.005504,0.004736,0.006144,0.006144,0.053248,0.005568
+795,1010.48,0.989624,0.303104,0.006144,0.212992,0.005376,0.004864,0.00544,0.005856,0.005088,0.0512,0.006144
+796,717.15,1.39441,0.311808,0.00464,0.215008,0.0056,0.00464,0.006112,0.006176,0.006176,0.05872,0.004736
+797,1019.92,0.980469,0.328736,0.006144,0.23296,0.004608,0.005472,0.0048,0.006112,0.005888,0.057568,0.005184
+798,734.116,1.36218,0.331168,0.007808,0.233856,0.005888,0.004352,0.00592,0.005888,0.00576,0.05616,0.005536
+799,1340.75,0.74585,0.325344,0.005664,0.229792,0.00416,0.005888,0.004384,0.006112,0.006144,0.057344,0.005856
+800,1335.72,0.748657,0.318848,0.006144,0.229376,0.006048,0.004192,0.00608,0.005792,0.00576,0.049952,0.005504
+801,1446.33,0.691406,0.300896,0.004896,0.212096,0.004992,0.004192,0.006048,0.006144,0.006144,0.051008,0.005376
+802,1129.31,0.885498,0.303104,0.006144,0.214176,0.00496,0.004192,0.006048,0.006016,0.005568,0.051104,0.004896
+803,1461.81,0.684082,0.301088,0.00592,0.211168,0.005792,0.004448,0.005824,0.005824,0.006048,0.051424,0.00464
+804,1219.05,0.820312,0.315392,0.005632,0.225088,0.0048,0.005248,0.004992,0.006112,0.005792,0.051616,0.006112
+805,1191.04,0.8396,0.342016,0.006144,0.251904,0.005312,0.004896,0.00528,0.004992,0.006144,0.052576,0.004768
+806,691.191,1.44678,0.32768,0.00816,0.236992,0.004704,0.005344,0.004896,0.006144,0.00592,0.051104,0.004416
+807,1248.97,0.800659,0.303104,0.006048,0.212288,0.004896,0.005152,0.005088,0.007232,0.005056,0.052288,0.005056
+808,1297.64,0.77063,0.324,0.004512,0.23552,0.005824,0.004416,0.005888,0.0064,0.006144,0.050688,0.004608
+809,1487.56,0.672241,0.289888,0.005728,0.203168,0.005952,0.004288,0.006016,0.005536,0.004928,0.048864,0.005408
+810,1093.87,0.914185,0.288864,0.005472,0.202912,0.004672,0.006016,0.005312,0.005056,0.006144,0.048544,0.004736
+811,1399.86,0.714355,0.2904,0.005472,0.203456,0.006048,0.004192,0.006112,0.005888,0.005728,0.047808,0.005696
+812,1146.86,0.871948,0.315264,0.006112,0.2288,0.004704,0.005344,0.004896,0.006144,0.005856,0.047392,0.006016
+813,1668.09,0.599487,0.547776,0.005056,0.413696,0.02224,0.028672,0.012576,0.006144,0.006144,0.047104,0.006144
+814,705.903,1.41663,0.335904,0.005472,0.248576,0.005216,0.005024,0.00528,0.004992,0.006112,0.049184,0.006048
+815,1400.34,0.714111,0.300192,0.005472,0.2136,0.004288,0.005664,0.004576,0.007264,0.005024,0.048928,0.005376
+816,1360.57,0.734985,0.300992,0.005632,0.209408,0.006016,0.004224,0.005952,0.006144,0.005856,0.05168,0.00608
+817,1502.84,0.665405,0.300768,0.005824,0.206592,0.004672,0.005408,0.004832,0.006144,0.006144,0.055296,0.005856
+818,1439.72,0.69458,0.47088,0.0048,0.377856,0.005088,0.00416,0.006112,0.005792,0.005792,0.055872,0.005408
+819,1098.42,0.9104,0.29776,0.00512,0.204384,0.00448,0.005568,0.004672,0.006144,0.006048,0.055392,0.005952
+820,1427.68,0.700439,0.313344,0.005824,0.22064,0.00496,0.004224,0.006048,0.005952,0.005728,0.055424,0.004544
+821,1427.18,0.700684,0.295552,0.004736,0.205952,0.004992,0.004192,0.006048,0.005984,0.005664,0.053152,0.004832
+822,695.475,1.43787,0.305376,0.006848,0.212608,0.004448,0.0056,0.00464,0.007264,0.005024,0.053248,0.005696
+823,1552.99,0.643921,0.298784,0.00464,0.202752,0.005568,0.004672,0.0056,0.00656,0.00576,0.057856,0.005376
+824,1413.63,0.707397,0.292384,0.005984,0.196512,0.004352,0.005696,0.004544,0.00736,0.004928,0.057344,0.005664
+825,1303.63,0.76709,0.289248,0.004576,0.194592,0.005504,0.004736,0.006112,0.005856,0.006336,0.056544,0.004992
+826,1698.53,0.588745,0.290784,0.00576,0.194816,0.004224,0.005632,0.004608,0.006144,0.00608,0.057408,0.006112
+827,1171.96,0.853271,0.294912,0.005952,0.198848,0.005152,0.004864,0.004352,0.006112,0.006176,0.058592,0.004864
+828,1472.85,0.678955,0.289344,0.004768,0.193888,0.004768,0.00528,0.00496,0.006144,0.006144,0.057344,0.006048
+829,1354.72,0.738159,0.29696,0.006048,0.200576,0.00432,0.005728,0.004512,0.006144,0.006144,0.057344,0.006144
+830,1436.69,0.696045,0.2952,0.004512,0.200672,0.004128,0.00592,0.00432,0.006144,0.006144,0.057344,0.006016
+831,703.841,1.42078,0.30976,0.00672,0.212864,0.00416,0.005888,0.004384,0.006112,0.006144,0.058848,0.00464
+832,1707.02,0.585815,0.293024,0.004992,0.19456,0.006048,0.004192,0.007264,0.005024,0.006144,0.059392,0.005408
+833,1063.21,0.940552,0.30768,0.004768,0.212128,0.00496,0.004096,0.006144,0.006048,0.00624,0.057344,0.005952
+834,1495.16,0.668823,0.30112,0.00512,0.204,0.004896,0.005152,0.00512,0.006112,0.00608,0.059232,0.005408
+835,1479.5,0.675903,0.335744,0.006144,0.239072,0.00464,0.004096,0.006144,0.006144,0.00608,0.057408,0.006016
+836,1120.2,0.8927,0.291168,0.004448,0.193984,0.004672,0.005408,0.004832,0.006144,0.005888,0.059648,0.006144
+837,1190.52,0.839966,0.303136,0.006144,0.208928,0.00528,0.004928,0.005312,0.004928,0.006144,0.056992,0.00448
+838,1394.15,0.717285,0.296256,0.005536,0.201344,0.005472,0.004768,0.005504,0.00592,0.004928,0.057344,0.00544
+839,751.56,1.33057,0.3,0.007136,0.204256,0.00464,0.005472,0.004768,0.006144,0.005952,0.055488,0.006144
+840,1450.17,0.689575,0.303424,0.005472,0.20544,0.004448,0.0056,0.00464,0.006144,0.006144,0.060544,0.004992
+841,1555.05,0.643066,0.295424,0.004576,0.20064,0.004192,0.005856,0.004384,0.006112,0.006144,0.058912,0.004608
+842,1395.33,0.716675,0.290848,0.005472,0.194784,0.004576,0.005472,0.0064,0.005888,0.005824,0.057408,0.005024
+843,1558.3,0.641724,0.29696,0.006048,0.2008,0.005376,0.004864,0.0056,0.005888,0.004896,0.057344,0.006144
+844,1333.12,0.750122,0.47392,0.004928,0.377888,0.005088,0.0056,0.00464,0.006144,0.006144,0.057344,0.006144
+845,1112.59,0.898804,0.306144,0.005056,0.21232,0.004768,0.00528,0.00496,0.006048,0.00576,0.057216,0.004736
+846,1459.47,0.685181,0.300416,0.005472,0.204768,0.004864,0.005152,0.005088,0.006016,0.005792,0.057824,0.00544
+847,1424.45,0.702026,0.302592,0.00544,0.207072,0.004704,0.005344,0.004896,0.006144,0.006048,0.05744,0.005504
+848,781.679,1.2793,0.298144,0.007552,0.200768,0.004736,0.005312,0.004928,0.00608,0.005728,0.057632,0.005408
+849,1472.32,0.679199,0.295136,0.004928,0.198656,0.00592,0.00432,0.005952,0.005792,0.00576,0.058272,0.005536
+850,1419.76,0.704346,0.290816,0.005696,0.196032,0.005056,0.00416,0.006144,0.005888,0.0064,0.056896,0.004544
+851,778.337,1.28479,0.29184,0.006144,0.19456,0.005728,0.004544,0.006112,0.006144,0.006144,0.057056,0.005408
+852,868.073,1.15198,0.48096,0.006144,0.387072,0.005248,0.004992,0.005312,0.006048,0.005024,0.055296,0.005824
+853,1572.66,0.635864,0.296,0.006144,0.202272,0.004576,0.005472,0.004768,0.006144,0.006016,0.055232,0.005376
+854,1314.08,0.760986,0.299616,0.004672,0.2048,0.00512,0.004992,0.00528,0.005088,0.006144,0.057344,0.006176
+855,1206.66,0.828735,0.544032,0.005504,0.438912,0.008192,0.005536,0.004704,0.006144,0.006144,0.053248,0.015648
+856,963.311,1.03809,0.292896,0.005984,0.200512,0.004448,0.0056,0.00464,0.006144,0.006144,0.05488,0.004544
+857,1437.7,0.695557,0.296224,0.005568,0.200448,0.004928,0.00512,0.00512,0.005888,0.005856,0.057888,0.005408
+858,1443.78,0.692627,0.290144,0.005888,0.194848,0.005952,0.004256,0.006144,0.006176,0.006016,0.055392,0.005472
+859,1315.98,0.759888,0.292032,0.006144,0.198656,0.005504,0.004736,0.005568,0.005728,0.005088,0.055232,0.005376
+860,1543.91,0.647705,0.28704,0.00544,0.194816,0.004864,0.005152,0.005088,0.006112,0.006016,0.055008,0.004544
+861,1196.26,0.835938,0.290816,0.006048,0.198656,0.004192,0.005824,0.004416,0.0072,0.005088,0.054624,0.004768
+862,1483.25,0.674194,0.295424,0.004576,0.2048,0.00528,0.00496,0.005472,0.005888,0.005024,0.054848,0.004576
+863,1425.19,0.70166,0.29696,0.006144,0.201856,0.004992,0.004192,0.006048,0.005888,0.005568,0.057184,0.005088
+864,1410.47,0.708984,0.534048,0.004576,0.425984,0.02176,0.004864,0.00544,0.006048,0.00592,0.054048,0.005408
+865,865.322,1.15564,0.289984,0.006144,0.196608,0.005248,0.004992,0.00528,0.006144,0.004992,0.055168,0.005408
+866,1390.12,0.71936,0.29696,0.00544,0.195264,0.005312,0.004928,0.006144,0.006144,0.005856,0.063264,0.004608
+867,1545.08,0.647217,0.300416,0.006144,0.198688,0.006112,0.005216,0.005024,0.005984,0.005728,0.062016,0.005504
+868,1357.87,0.73645,0.290816,0.006144,0.19456,0.005728,0.004512,0.005952,0.005536,0.004928,0.058336,0.00512
+869,1478.17,0.676514,0.292864,0.006144,0.196608,0.005632,0.004608,0.005632,0.005792,0.00496,0.057344,0.006144
+870,1170.95,0.854004,0.291648,0.00496,0.196608,0.005376,0.004896,0.005376,0.004832,0.006144,0.057344,0.006112
+871,1509.21,0.662598,0.2936,0.004992,0.198656,0.005536,0.004704,0.005824,0.005792,0.004768,0.057344,0.005984
+872,1069.73,0.934814,0.31744,0.00576,0.219008,0.004608,0.00544,0.0048,0.006144,0.006016,0.060672,0.004992
+873,1558.6,0.641602,0.548864,0.00608,0.444416,0.007264,0.005088,0.00576,0.005952,0.005888,0.063424,0.004992
+874,859.331,1.1637,0.304352,0.00592,0.207072,0.005568,0.004672,0.005632,0.00576,0.004992,0.059296,0.00544
+875,1337.91,0.747437,0.304896,0.005472,0.201504,0.00608,0.00416,0.00608,0.005952,0.00576,0.064128,0.00576
+876,1491.62,0.67041,0.302912,0.006144,0.2048,0.005344,0.004896,0.005632,0.005856,0.004896,0.059392,0.005952
+877,1212.91,0.824463,0.293408,0.005056,0.196608,0.005728,0.004512,0.005728,0.005792,0.00496,0.059296,0.005728
+878,1478.43,0.676392,0.291008,0.004544,0.198592,0.005344,0.004896,0.005376,0.004896,0.006112,0.055296,0.005952
+879,1245.36,0.802979,0.29472,0.00608,0.198752,0.005856,0.004352,0.005888,0.005696,0.0048,0.057344,0.005952
+880,1328.36,0.752808,0.292864,0.005568,0.197184,0.00576,0.00448,0.005792,0.005888,0.005824,0.057312,0.005056
+881,1540.43,0.64917,0.290976,0.00512,0.199776,0.005024,0.004128,0.006112,0.006112,0.006048,0.053376,0.00528
+882,1420.5,0.703979,0.287136,0.004512,0.198432,0.005632,0.004832,0.005248,0.004992,0.006144,0.052704,0.00464
+883,1049.58,0.952759,0.490912,0.008192,0.395264,0.006048,0.005536,0.0048,0.006144,0.005792,0.0536,0.005536
+884,1228.92,0.813721,0.290816,0.006144,0.198656,0.005824,0.004416,0.005888,0.005536,0.00496,0.0544,0.004992
+885,1403.46,0.712524,0.290816,0.005632,0.200256,0.005056,0.00416,0.00608,0.005984,0.005856,0.052704,0.005088
+886,1429.17,0.699707,0.29136,0.00464,0.199872,0.004928,0.005632,0.004608,0.006144,0.006144,0.05488,0.004512
+887,1467.57,0.681396,0.28672,0.00592,0.194784,0.00544,0.0048,0.005728,0.005728,0.00496,0.054464,0.004896
+888,1256.44,0.795898,0.290816,0.006144,0.200704,0.0056,0.00464,0.005632,0.005728,0.005024,0.053024,0.00432
+889,1317.47,0.759033,0.293344,0.004608,0.198592,0.004128,0.005952,0.004384,0.006144,0.006048,0.058464,0.005024
+890,1368.98,0.730469,0.297952,0.005088,0.202752,0.005344,0.004896,0.005376,0.00592,0.005088,0.0584,0.005088
+891,1589.14,0.629272,0.297984,0.005696,0.20224,0.005056,0.004096,0.006048,0.006176,0.005824,0.057472,0.005376
+892,629.912,1.58752,0.323584,0.008192,0.224288,0.005088,0.004096,0.006144,0.006144,0.006144,0.05872,0.004768
+893,1584.22,0.631226,0.297472,0.004608,0.20208,0.004768,0.005312,0.00496,0.006112,0.006176,0.058656,0.0048
+894,1452.74,0.688354,0.29568,0.004832,0.200032,0.004768,0.00528,0.00496,0.006144,0.005792,0.0592,0.004672
+895,1461.29,0.684326,0.300352,0.006016,0.20288,0.00528,0.00496,0.006112,0.005824,0.005728,0.058112,0.00544
+896,1389.89,0.719482,0.472288,0.005888,0.376224,0.00496,0.005152,0.005088,0.005984,0.00576,0.057824,0.005408
+897,1138.57,0.878296,0.290816,0.005888,0.196384,0.004576,0.005472,0.00592,0.005024,0.006112,0.056832,0.004608
+898,1405.39,0.711548,0.300928,0.005952,0.200896,0.005696,0.004544,0.00576,0.00656,0.005824,0.05968,0.006016
+899,1477.37,0.67688,0.305696,0.00464,0.198656,0.004096,0.005984,0.005312,0.016576,0.006368,0.059232,0.004832
+900,1358.99,0.73584,0.540704,0.005472,0.426592,0.014656,0.00544,0.0048,0.006176,0.005792,0.065856,0.00592
+901,852.978,1.17236,0.297088,0.005472,0.197408,0.005184,0.004992,0.00416,0.006144,0.006144,0.06144,0.006144
+902,1444.03,0.692505,0.299008,0.006048,0.198784,0.00544,0.004768,0.005408,0.00608,0.005952,0.061888,0.00464
+903,1366.02,0.732056,0.292864,0.00576,0.20016,0.005024,0.00416,0.00608,0.006016,0.006112,0.054592,0.00496
+904,1392.01,0.718384,0.303104,0.005536,0.205408,0.005536,0.004704,0.005568,0.005856,0.00496,0.059392,0.006144
+905,1477.63,0.676758,0.475168,0.005792,0.376512,0.004768,0.005344,0.004896,0.006144,0.005824,0.060992,0.004896
+906,1114.71,0.897095,0.299136,0.00512,0.196608,0.005376,0.004864,0.006016,0.005888,0.005984,0.063904,0.005376
+907,1396.28,0.716187,0.311936,0.004736,0.206752,0.004192,0.005856,0.004384,0.006144,0.005888,0.06784,0.006144
+908,1334.85,0.749146,0.313376,0.00512,0.206848,0.00576,0.00448,0.005824,0.005824,0.005792,0.068352,0.005376
+909,981.078,1.01929,0.515616,0.020352,0.394976,0.004512,0.006112,0.00528,0.005024,0.006112,0.067584,0.005664
+910,1091.83,0.915894,0.305408,0.004832,0.200704,0.006016,0.004224,0.005856,0.00592,0.00576,0.066432,0.005664
+911,804.478,1.24304,0.305216,0.0056,0.199648,0.005312,0.004896,0.005952,0.005888,0.005824,0.066304,0.005792
+912,1217.6,0.821289,0.31184,0.004608,0.210944,0.005632,0.004608,0.005568,0.005792,0.00656,0.063296,0.004832
+913,1626.69,0.614746,0.478272,0.00592,0.37696,0.004192,0.006048,0.005312,0.005056,0.006112,0.063264,0.005408
+914,1097.09,0.911499,0.305184,0.005856,0.20304,0.006048,0.004192,0.006144,0.007456,0.004864,0.062912,0.004672
+915,1385.42,0.721802,0.315808,0.004512,0.215072,0.00576,0.004448,0.006144,0.006144,0.00608,0.061504,0.006144
+916,1282.61,0.779663,0.29872,0.006144,0.199712,0.005056,0.004128,0.006112,0.005856,0.005728,0.060128,0.005856
+917,1417.55,0.705444,0.606208,0.006144,0.472896,0.039104,0.006144,0.005344,0.004896,0.006144,0.059392,0.006144
+918,797.12,1.25452,0.298944,0.006144,0.199968,0.004832,0.004128,0.006112,0.005984,0.005952,0.059776,0.006048
+919,1635.78,0.611328,0.3016,0.004864,0.20272,0.005888,0.005728,0.004768,0.006144,0.006048,0.059488,0.005952
+920,1205.95,0.829224,0.296384,0.004512,0.198656,0.00576,0.00448,0.005792,0.005632,0.00496,0.061184,0.005408
+921,1595.95,0.626587,0.30112,0.004608,0.2048,0.005216,0.004992,0.004128,0.006144,0.006144,0.059392,0.005696
+922,1183.13,0.845215,0.298624,0.005664,0.199136,0.005216,0.004992,0.005312,0.005056,0.006048,0.06144,0.00576
+923,1247.45,0.801636,0.295264,0.005024,0.198656,0.00544,0.0048,0.005504,0.004768,0.006112,0.059392,0.005568
+924,1454.29,0.687622,0.303104,0.00592,0.204864,0.004256,0.005792,0.004448,0.006144,0.006144,0.060768,0.004768
+925,1396.76,0.715942,0.305184,0.00544,0.209696,0.006048,0.004192,0.005984,0.005856,0.00592,0.056,0.006048
+926,759.151,1.31726,0.301056,0.00784,0.203104,0.005536,0.004704,0.005568,0.006144,0.00576,0.057856,0.004544
+927,1670.81,0.598511,0.294752,0.005888,0.200256,0.0048,0.005248,0.004992,0.006144,0.006144,0.055296,0.005984
+928,1238.02,0.807739,0.293184,0.005472,0.1976,0.005664,0.004576,0.005824,0.005792,0.006176,0.057664,0.004416
+929,1522.11,0.656982,0.299008,0.005728,0.201152,0.005888,0.00432,0.005984,0.006048,0.006048,0.058976,0.004864
+930,690.26,1.44873,0.29648,0.006144,0.199904,0.004896,0.005184,0.005056,0.005952,0.005696,0.057984,0.005664
+931,1413.63,0.707397,0.30256,0.006144,0.20688,0.005376,0.004832,0.00544,0.004832,0.006112,0.057344,0.0056
+932,1252.41,0.798462,0.303136,0.005824,0.211264,0.005632,0.004608,0.005728,0.005792,0.004928,0.05488,0.00448
+933,1432.67,0.697998,0.54544,0.0048,0.437696,0.01696,0.005856,0.004384,0.006144,0.006176,0.057312,0.006112
+934,869.916,1.14954,0.297184,0.005472,0.203072,0.004672,0.005408,0.004832,0.006144,0.006016,0.05696,0.004608
+935,1414.61,0.706909,0.301056,0.005536,0.201312,0.005984,0.004256,0.006016,0.006272,0.005984,0.06112,0.004576
+936,1419.27,0.70459,0.302112,0.006048,0.20208,0.004864,0.005792,0.004448,0.006144,0.006048,0.061312,0.005376
+937,1336.81,0.748047,0.299104,0.004512,0.19664,0.0056,0.004608,0.005696,0.005632,0.005056,0.065568,0.005792
+938,1492.98,0.6698,0.301056,0.006112,0.19792,0.004864,0.005216,0.005056,0.006112,0.005952,0.06368,0.006144
+939,1197.14,0.835327,0.301056,0.005504,0.1952,0.005344,0.004896,0.005216,0.005024,0.006144,0.068864,0.004864
+940,1082.45,0.923828,0.301312,0.004512,0.19648,0.004224,0.005856,0.00576,0.00592,0.004992,0.067616,0.005952
+941,1567.85,0.637817,0.304576,0.006144,0.200576,0.004224,0.005824,0.004416,0.006144,0.006144,0.065536,0.005568
+942,1159.68,0.862305,0.559456,0.004992,0.45168,0.007072,0.00512,0.00512,0.006048,0.005824,0.068,0.0056
+943,1007.87,0.992188,0.305248,0.005344,0.197504,0.005824,0.004416,0.006144,0.006144,0.006144,0.067584,0.006144
+944,1375.65,0.726929,0.29488,0.004928,0.196608,0.005952,0.004288,0.005632,0.005792,0.00496,0.061312,0.005408
+945,1398.43,0.715088,0.299008,0.006144,0.196608,0.005504,0.004736,0.005952,0.005856,0.005728,0.06384,0.00464
+946,1462.33,0.683838,0.296064,0.00608,0.196672,0.005472,0.004768,0.005216,0.005024,0.006144,0.06128,0.005408
+947,1381.68,0.723755,0.3072,0.006144,0.206528,0.00432,0.005568,0.004704,0.005824,0.005504,0.062464,0.006144
+948,995.867,1.00415,0.29696,0.006144,0.195808,0.004896,0.005184,0.005056,0.006016,0.00576,0.06304,0.005056
+949,724.507,1.38025,0.319488,0.006144,0.217088,0.004096,0.006016,0.00528,0.005088,0.006144,0.063488,0.006144
+950,850.763,1.17542,0.557056,0.006144,0.417792,0.034816,0.012288,0.00608,0.005856,0.00592,0.063264,0.004896
+951,863.133,1.15857,0.302784,0.00544,0.199616,0.005664,0.004576,0.005568,0.005856,0.00496,0.065536,0.005568
+952,1591.61,0.628296,0.296992,0.005504,0.198848,0.004544,0.005472,0.004768,0.006144,0.005824,0.061248,0.00464
+953,1468.63,0.680908,0.301632,0.004672,0.198432,0.00432,0.005728,0.004512,0.006144,0.00608,0.0656,0.006144
+954,1089.65,0.917725,0.295904,0.005088,0.197792,0.00496,0.004224,0.006016,0.006144,0.005856,0.060992,0.004832
+955,1170.29,0.854492,0.29648,0.005536,0.197184,0.004128,0.00576,0.00448,0.006144,0.005888,0.061696,0.005664
+956,1075.63,0.929688,0.3032,0.0048,0.198048,0.004704,0.005344,0.004896,0.006144,0.006144,0.067584,0.005536
+957,1291.5,0.774292,0.308416,0.006144,0.200704,0.005984,0.004256,0.006048,0.005856,0.006368,0.06768,0.005376
+958,1258.95,0.794312,0.500992,0.007616,0.393312,0.004704,0.00544,0.0048,0.006144,0.00592,0.067648,0.005408
+959,1053.77,0.948975,0.308768,0.00448,0.204352,0.004512,0.005568,0.004672,0.006144,0.00608,0.067648,0.005312
+960,1364.42,0.73291,0.303296,0.005472,0.197536,0.005792,0.004448,0.006144,0.006144,0.005824,0.065856,0.00608
+961,1387.06,0.720947,0.299392,0.0048,0.197888,0.004864,0.005184,0.005056,0.005984,0.005632,0.06416,0.005824
+962,1405.87,0.711304,0.30224,0.005696,0.198784,0.004416,0.005664,0.004576,0.006176,0.006112,0.065472,0.005344
+963,1495.16,0.668823,0.481632,0.004416,0.37888,0.005312,0.004928,0.005344,0.004928,0.006112,0.066752,0.00496
+964,1111.68,0.899536,0.3008,0.005504,0.1968,0.004544,0.005504,0.004736,0.006144,0.006112,0.065568,0.005888
+965,1402.98,0.712769,0.305536,0.00448,0.202752,0.005696,0.004544,0.006144,0.005888,0.00592,0.065504,0.004608
+966,1146.38,0.872314,0.303264,0.005472,0.197408,0.005792,0.004448,0.006144,0.006144,0.006144,0.067104,0.004608
+967,671.806,1.48853,0.349952,0.006784,0.237568,0.00576,0.004448,0.006144,0.006144,0.005824,0.071872,0.005408
+968,1396.05,0.716309,0.321536,0.005888,0.210592,0.004704,0.005376,0.004864,0.006144,0.006144,0.07312,0.004704
+969,1493.26,0.669678,0.309152,0.005696,0.199104,0.004096,0.005984,0.006144,0.005792,0.00576,0.070528,0.006048
+970,1380.52,0.724365,0.306848,0.006144,0.198048,0.004704,0.005344,0.004896,0.006048,0.005728,0.070144,0.005792
+971,1396.76,0.715942,0.533984,0.0056,0.426048,0.004576,0.005504,0.004736,0.006144,0.00592,0.069856,0.0056
+972,1022.59,0.977905,0.306688,0.006144,0.198016,0.004736,0.005344,0.004896,0.005888,0.005696,0.070336,0.005632
+973,1394.86,0.716919,0.309696,0.004608,0.2048,0.005184,0.004992,0.005536,0.005888,0.005024,0.067584,0.00608
+974,994.054,1.00598,0.312896,0.005664,0.203232,0.005504,0.004736,0.005536,0.006016,0.005952,0.07056,0.005696
+975,790.581,1.26489,0.315392,0.008192,0.204448,0.004448,0.0056,0.00464,0.006144,0.005856,0.06992,0.006144
+976,1352.26,0.739502,0.311456,0.005472,0.20112,0.004512,0.006144,0.005152,0.005088,0.006144,0.072864,0.00496
+977,1562.76,0.639893,0.309248,0.005824,0.198688,0.004384,0.005664,0.004576,0.006144,0.006144,0.07168,0.006144
+978,1137.62,0.879028,0.311872,0.004672,0.200704,0.005184,0.00496,0.00544,0.00496,0.00608,0.075264,0.004608
+979,1586.06,0.630493,0.312672,0.00608,0.200768,0.006144,0.004096,0.006144,0.005344,0.004896,0.073728,0.005472
+980,1067.64,0.936646,0.308928,0.006144,0.197792,0.00496,0.004224,0.006048,0.006112,0.006176,0.071648,0.005824
+981,1169.28,0.855225,0.325856,0.00432,0.216288,0.004896,0.00512,0.00512,0.006144,0.005952,0.0736,0.004416
+982,1397,0.71582,0.311104,0.005504,0.201344,0.005216,0.004896,0.00528,0.005088,0.006144,0.07168,0.005952
+983,1489.18,0.671509,0.307744,0.0048,0.200704,0.005248,0.004992,0.006144,0.006144,0.006144,0.067584,0.005984
+984,712.162,1.40417,0.323584,0.008192,0.214688,0.004448,0.0056,0.00464,0.006144,0.00608,0.069024,0.004768
+985,955.001,1.04712,0.317888,0.004512,0.218944,0.00432,0.005728,0.00448,0.006144,0.006144,0.06304,0.004576
+986,1384.25,0.722412,0.325952,0.00544,0.226336,0.005952,0.004256,0.00608,0.00576,0.005664,0.06032,0.006144
+987,1428.17,0.700195,0.523648,0.005472,0.42416,0.0048,0.005344,0.004896,0.006144,0.005792,0.061632,0.005408
+988,1127.44,0.886963,0.301056,0.005792,0.201056,0.005344,0.004896,0.0056,0.00608,0.005888,0.061696,0.004704
+989,1086.18,0.920654,0.314784,0.00544,0.217984,0.005184,0.004992,0.005312,0.004992,0.006112,0.05936,0.005408
+990,1439.72,0.69458,0.302784,0.0056,0.205216,0.004224,0.005824,0.004416,0.006144,0.006144,0.059392,0.005824
+991,793.491,1.26025,0.311296,0.008192,0.212992,0.00544,0.0048,0.005504,0.005888,0.006464,0.057152,0.004864
+992,1416.57,0.705933,0.296832,0.006112,0.200032,0.0048,0.00528,0.00496,0.006144,0.006144,0.057344,0.006016
+993,1789.43,0.558838,0.293216,0.004736,0.196608,0.005664,0.004576,0.005632,0.005952,0.005888,0.058304,0.005856
+994,1397,0.71582,0.29696,0.006144,0.2,0.0048,0.00544,0.0048,0.006144,0.006144,0.05872,0.004768
+995,1399.15,0.714722,0.290912,0.00544,0.196512,0.004992,0.004096,0.006144,0.005728,0.005792,0.057792,0.004416
+996,1407.08,0.710693,0.475136,0.006144,0.376832,0.00592,0.00432,0.00592,0.005888,0.006496,0.057472,0.006144
+997,1164.79,0.858521,0.29696,0.005632,0.201216,0.005248,0.004992,0.005312,0.004928,0.006144,0.058656,0.004832
+998,1391.78,0.718506,0.301248,0.00544,0.203648,0.005536,0.004704,0.005568,0.005824,0.005024,0.06048,0.005024
+999,1408.04,0.710205,0.305152,0.005568,0.206592,0.004928,0.00512,0.00512,0.00592,0.00576,0.061312,0.004832
+1000,602.663,1.6593,0.317536,0.007456,0.215872,0.005824,0.004416,0.005856,0.005824,0.00576,0.061568,0.00496
+1001,1526.36,0.655151,0.301376,0.00544,0.201728,0.005536,0.004704,0.0056,0.005728,0.006144,0.061792,0.004704
+1002,1369.21,0.730347,0.304768,0.005472,0.19968,0.006048,0.004192,0.006048,0.005792,0.005792,0.066336,0.005408
+1003,1460.51,0.684692,0.299296,0.00448,0.204256,0.00464,0.005408,0.004832,0.006144,0.006144,0.057344,0.006048
+1004,961.277,1.04028,0.475136,0.005472,0.379552,0.005792,0.004448,0.005824,0.005792,0.0048,0.058656,0.0048
+1005,1455.32,0.687134,0.301152,0.005408,0.204992,0.004736,0.005312,0.004928,0.00752,0.006048,0.057152,0.005056
+1006,1171.96,0.853271,0.29936,0.004608,0.205856,0.005056,0.004128,0.006144,0.00576,0.00576,0.056064,0.005984
+1007,1696.42,0.589478,0.299008,0.006144,0.200736,0.005696,0.004512,0.005824,0.005856,0.00576,0.059456,0.005024
+1008,621.124,1.60999,0.322112,0.00672,0.223232,0.004096,0.005984,0.00528,0.005216,0.006048,0.061056,0.00448
+1009,1506.44,0.663818,0.302624,0.0056,0.202656,0.004736,0.005312,0.004928,0.006144,0.00592,0.061664,0.005664
+1010,1376.58,0.72644,0.30288,0.005504,0.202464,0.005024,0.004128,0.006144,0.005856,0.005728,0.062112,0.00592
+1011,1356.74,0.737061,0.301568,0.004608,0.200736,0.005664,0.004544,0.006144,0.006144,0.006144,0.061472,0.006112
+1012,1360.12,0.735229,0.30512,0.006112,0.200352,0.00448,0.005984,0.004384,0.006016,0.006144,0.065536,0.006112
+1013,1112.59,0.898804,0.308992,0.00592,0.200384,0.00464,0.00544,0.0048,0.006176,0.006112,0.069632,0.005888
+1014,1306.96,0.765137,0.313568,0.004896,0.206208,0.004736,0.005344,0.004896,0.006144,0.00576,0.070016,0.005568
+1015,1333.12,0.750122,0.3072,0.006144,0.201984,0.004864,0.005184,0.005056,0.006016,0.00624,0.066976,0.004736
+1016,1433.67,0.69751,0.30688,0.005472,0.207296,0.005664,0.004864,0.00544,0.004928,0.006016,0.06144,0.00576
+1017,709.756,1.40894,0.323584,0.008192,0.220512,0.004768,0.00528,0.00496,0.006144,0.005792,0.061792,0.006144
+1018,1222.5,0.817993,0.31888,0.006144,0.217088,0.00544,0.0048,0.005472,0.004928,0.007296,0.062176,0.005536
+1019,1504.78,0.664551,0.298144,0.006016,0.196768,0.005184,0.004992,0.005312,0.00608,0.005024,0.06336,0.005408
+1020,1506.44,0.663818,0.29744,0.004576,0.2,0.0048,0.005248,0.004992,0.005888,0.005728,0.060128,0.00608
+1021,648.46,1.54211,0.322496,0.005024,0.224512,0.004864,0.005216,0.005024,0.006144,0.005984,0.061152,0.004576
+1022,868.625,1.15125,0.333984,0.00496,0.235552,0.005504,0.004704,0.00544,0.005856,0.005088,0.06144,0.00544
+1023,1002.32,0.997681,0.551008,0.005472,0.422624,0.034848,0.006112,0.00528,0.00496,0.006144,0.06096,0.004608
+1024,969.812,1.03113,0.316032,0.00496,0.217088,0.00528,0.00496,0.00528,0.004992,0.006112,0.06144,0.00592
+1025,1264.2,0.791016,0.324448,0.00496,0.223232,0.005952,0.004288,0.006016,0.005824,0.006368,0.061664,0.006144
+1026,1393.91,0.717407,0.316672,0.006144,0.208576,0.004416,0.006144,0.005408,0.00672,0.006048,0.067808,0.005408
+1027,1368.98,0.730469,0.30096,0.004736,0.198656,0.005184,0.004992,0.005312,0.004992,0.006144,0.065536,0.005408
+1028,1174.82,0.851196,0.307232,0.005632,0.20864,0.004864,0.004128,0.006016,0.005824,0.005888,0.061088,0.005152
+1029,1308.63,0.76416,0.299008,0.0056,0.1992,0.00576,0.005632,0.004992,0.006112,0.005888,0.05968,0.006144
+1030,1008,0.992065,0.309632,0.004928,0.205952,0.004992,0.004192,0.006048,0.005856,0.005792,0.066176,0.005696
+1031,1140.31,0.876953,0.54512,0.004992,0.438272,0.00768,0.004608,0.006144,0.00592,0.00576,0.066144,0.0056
+1032,833.282,1.20007,0.305152,0.005472,0.201376,0.005824,0.004416,0.005888,0.00576,0.00576,0.066144,0.004512
+1033,1151.05,0.868774,0.308576,0.005664,0.204576,0.0048,0.00528,0.00496,0.006144,0.005824,0.065856,0.005472
+1034,1697.12,0.589233,0.30944,0.005472,0.205568,0.00416,0.005632,0.004608,0.006144,0.006112,0.067072,0.004672
+1035,1241.4,0.805542,0.305152,0.00608,0.202816,0.005248,0.004992,0.005152,0.00512,0.006112,0.064672,0.00496
+1036,1356.74,0.737061,0.301056,0.005696,0.197056,0.005376,0.004864,0.005248,0.004992,0.006144,0.066784,0.004896
+1037,1430.17,0.699219,0.300448,0.006176,0.19632,0.004352,0.005696,0.004544,0.006144,0.006144,0.065536,0.005536
+1038,1416.32,0.706055,0.3072,0.005952,0.20208,0.00496,0.004224,0.006016,0.005952,0.00576,0.066112,0.006144
+1039,1387.53,0.720703,0.301024,0.005408,0.20096,0.004736,0.005344,0.004896,0.006144,0.006144,0.06144,0.005952
+1040,574.112,1.74182,0.333856,0.007712,0.23296,0.005056,0.004128,0.006144,0.005792,0.005824,0.061568,0.004672
+1041,1222.69,0.817871,0.327776,0.004576,0.227296,0.005312,0.004928,0.005376,0.00496,0.007296,0.062272,0.00576
+1042,1577.2,0.634033,0.342848,0.004896,0.241664,0.005792,0.00448,0.005792,0.006048,0.006464,0.062688,0.005024
+1043,1290.08,0.775146,0.31584,0.004544,0.214048,0.005088,0.004096,0.006144,0.005856,0.006464,0.06512,0.00448
+1044,1066.94,0.937256,0.31328,0.006144,0.208896,0.005952,0.004288,0.005952,0.00576,0.006112,0.064096,0.00608
+1045,1195.74,0.836304,0.341792,0.005792,0.23792,0.005696,0.004544,0.006016,0.005792,0.00576,0.064352,0.00592
+1046,1153.97,0.866577,0.331328,0.006144,0.226816,0.004608,0.00544,0.0048,0.006144,0.00592,0.06576,0.005696
+1047,1135.73,0.880493,0.317312,0.00592,0.21232,0.004992,0.004096,0.006144,0.006048,0.005696,0.06608,0.006016
+1048,699.274,1.43005,0.31952,0.008192,0.217088,0.006016,0.004224,0.006048,0.006048,0.005952,0.061408,0.004544
+1049,1438.2,0.695312,0.3112,0.004768,0.212384,0.004704,0.005344,0.004896,0.006144,0.005888,0.061664,0.005408
+1050,1263.22,0.791626,0.374816,0.005472,0.266048,0.004992,0.004192,0.006048,0.005952,0.014528,0.06144,0.006144
+1051,1126.98,0.887329,0.325664,0.00544,0.22192,0.005984,0.004256,0.006176,0.0072,0.005056,0.063488,0.006144
+1052,931.015,1.0741,0.300544,0.004512,0.202752,0.005536,0.004704,0.005536,0.005728,0.00512,0.06128,0.005376
+1053,1531.79,0.652832,0.317472,0.00608,0.22096,0.004384,0.005664,0.004576,0.006144,0.006112,0.058848,0.004704
+1054,1388.24,0.720337,0.311296,0.004672,0.208128,0.004864,0.005184,0.005056,0.006144,0.006144,0.065536,0.005568
+1055,706.694,1.41504,0.323584,0.007584,0.223328,0.004608,0.00544,0.0048,0.006144,0.006144,0.060608,0.004928
+1056,1300.52,0.768921,0.310848,0.004544,0.208672,0.004288,0.00576,0.00448,0.006144,0.006144,0.065408,0.005408
+1057,966.95,1.03418,0.317312,0.0056,0.213504,0.004128,0.00592,0.00432,0.006144,0.006144,0.065536,0.006016
+1058,1358.99,0.73584,0.313376,0.005472,0.210816,0.004928,0.00512,0.00512,0.006144,0.006144,0.06464,0.004992
+1059,1475.5,0.677734,0.482912,0.00544,0.377376,0.004352,0.005504,0.004736,0.006144,0.006144,0.067584,0.005632
+1060,1138.25,0.87854,0.3072,0.005632,0.2008,0.004512,0.005536,0.004704,0.006144,0.006176,0.067552,0.006144
+1061,1302.38,0.767822,0.321536,0.006144,0.21456,0.004576,0.005504,0.004736,0.006144,0.006144,0.06912,0.004608
+1062,1307.16,0.765015,0.316032,0.0048,0.208928,0.005728,0.00448,0.00576,0.005984,0.006016,0.068256,0.00608
+1063,675.239,1.48096,0.326848,0.008032,0.2152,0.005824,0.004416,0.00592,0.005888,0.005824,0.070368,0.005376
+1064,1373.81,0.727905,0.30608,0.005024,0.198656,0.006144,0.005184,0.005056,0.006144,0.00592,0.069088,0.004864
+1065,1483.25,0.674194,0.307488,0.004992,0.200064,0.004736,0.005344,0.004896,0.006144,0.006144,0.069632,0.005536
+1066,1407.32,0.710571,0.302144,0.006048,0.2,0.004896,0.004096,0.006144,0.00592,0.00592,0.063712,0.005408
+1067,1314.51,0.760742,0.35952,0.005824,0.259456,0.004864,0.004288,0.005504,0.004736,0.006144,0.063328,0.005376
+1068,1031.22,0.969727,0.32768,0.006144,0.227072,0.004352,0.005536,0.004704,0.006144,0.006048,0.063264,0.004416
+1069,988.536,1.0116,0.3072,0.006144,0.206048,0.004896,0.005152,0.005088,0.006176,0.006112,0.061568,0.006016
+1070,1528.93,0.654053,0.311456,0.004704,0.209952,0.005056,0.004128,0.006144,0.005728,0.0056,0.064448,0.005696
+1071,742.163,1.34741,0.325984,0.0072,0.22288,0.004416,0.005632,0.004608,0.006176,0.006112,0.063488,0.005472
+1072,1324.07,0.755249,0.309184,0.006144,0.20384,0.005056,0.004096,0.006144,0.006176,0.006112,0.065536,0.00608
+1073,1454.8,0.687378,0.301056,0.006144,0.198688,0.005824,0.004384,0.005888,0.005856,0.006688,0.062752,0.004832
+1074,1415.59,0.706421,0.30208,0.00512,0.202752,0.004096,0.005984,0.004416,0.006016,0.006112,0.06144,0.006144
+1075,897.655,1.11401,0.315648,0.00544,0.211904,0.006048,0.005408,0.004928,0.005888,0.005824,0.064064,0.006144
+1076,1462.86,0.683594,0.3072,0.006144,0.202752,0.005632,0.004608,0.005632,0.006624,0.006176,0.063488,0.006144
+1077,1498.45,0.667358,0.304672,0.004608,0.2048,0.005376,0.004864,0.00544,0.005856,0.00512,0.063232,0.005376
+1078,1478.7,0.67627,0.3072,0.006144,0.204544,0.004352,0.005696,0.004544,0.006144,0.006144,0.063488,0.006144
+1079,1344.05,0.744019,0.55296,0.006144,0.448512,0.007776,0.004512,0.005792,0.00592,0.00592,0.063392,0.004992
+1080,833.706,1.19946,0.301376,0.00544,0.201024,0.004768,0.00528,0.00496,0.006112,0.005728,0.062976,0.005088
+1081,1453.77,0.687866,0.303648,0.00464,0.202752,0.005984,0.004256,0.005984,0.00592,0.005824,0.062144,0.006144
+1082,1252.6,0.79834,0.326624,0.005088,0.221184,0.005664,0.004576,0.005696,0.005824,0.006304,0.067904,0.004384
+1083,1497.62,0.667725,0.303872,0.005056,0.202464,0.005632,0.004896,0.005408,0.005856,0.00512,0.063488,0.005952
+1084,1329.44,0.752197,0.480384,0.005472,0.377344,0.004256,0.005856,0.004416,0.006112,0.006144,0.065408,0.005376
+1085,1102.26,0.907227,0.311328,0.005664,0.209184,0.004288,0.005792,0.00448,0.006112,0.006144,0.06496,0.004704
+1086,1467.84,0.681274,0.313344,0.006144,0.208416,0.005632,0.004992,0.00528,0.005088,0.006112,0.065536,0.006144
+1087,1133.53,0.882202,0.309248,0.004928,0.208896,0.00512,0.005024,0.00528,0.005056,0.006144,0.063392,0.005408
+1088,819.036,1.22095,0.328672,0.007136,0.227296,0.005984,0.004256,0.005984,0.005824,0.00576,0.061984,0.004448
+1089,1391.54,0.718628,0.303648,0.00464,0.2048,0.005408,0.004832,0.005472,0.004768,0.006144,0.062784,0.0048
+1090,1481.64,0.674927,0.297856,0.00496,0.202752,0.005376,0.004864,0.005408,0.005856,0.00512,0.058912,0.004608
+1091,1118.82,0.893799,0.301056,0.005792,0.203104,0.005216,0.004992,0.00528,0.004992,0.007424,0.059424,0.004832
+1092,1384.49,0.72229,0.29888,0.006144,0.202752,0.00512,0.004992,0.005248,0.00512,0.006144,0.057344,0.006016
+1093,1282.61,0.779663,0.305216,0.00544,0.209632,0.004128,0.00592,0.004352,0.006112,0.006144,0.058656,0.004832
+1094,911.032,1.09766,0.301344,0.004864,0.20448,0.004416,0.006144,0.005472,0.00592,0.006016,0.058368,0.005664
+1095,1202.76,0.831421,0.625856,0.00608,0.503424,0.030464,0.0048,0.005824,0.00576,0.004928,0.0592,0.005376
+1096,740.152,1.35107,0.321952,0.00448,0.226848,0.004576,0.005472,0.0048,0.006112,0.005888,0.05888,0.004896
+1097,1458.17,0.685791,0.296768,0.004768,0.200064,0.004704,0.005344,0.004896,0.006144,0.006144,0.059296,0.005408
+1098,1418.77,0.704834,0.297728,0.004864,0.200704,0.005696,0.004576,0.005568,0.00464,0.006144,0.061056,0.00448
+1099,1561.87,0.640259,0.2992,0.004768,0.198624,0.005632,0.004608,0.005568,0.005856,0.00496,0.063488,0.005696
+1100,1398.91,0.714844,0.301056,0.006144,0.198656,0.005888,0.004384,0.005856,0.005888,0.005984,0.063232,0.005024
+1101,1008.99,0.991089,0.302624,0.006144,0.200704,0.0056,0.00464,0.005856,0.00576,0.005856,0.0624,0.005664
+1102,1416.81,0.705811,0.3072,0.006144,0.2048,0.00576,0.004512,0.005792,0.005792,0.005952,0.062304,0.006144
+1103,1346.7,0.742554,0.311936,0.004704,0.21296,0.005248,0.004992,0.005248,0.005024,0.006144,0.06304,0.004576
+1104,1367.84,0.731079,0.543936,0.005888,0.424192,0.022528,0.00528,0.00496,0.006144,0.006144,0.063392,0.005408
+1105,796.268,1.25586,0.304896,0.005536,0.20336,0.006016,0.004224,0.00608,0.0056,0.00576,0.062432,0.005888
+1106,1514.23,0.6604,0.304128,0.00512,0.202752,0.005888,0.004352,0.005888,0.006304,0.005952,0.063168,0.004704
+1107,1317.89,0.758789,0.305536,0.004576,0.189568,0.004896,0.004096,0.02256,0.005792,0.00592,0.06304,0.005088
+1108,1694.31,0.59021,0.301344,0.004928,0.200704,0.005184,0.004992,0.006208,0.005824,0.00576,0.062144,0.0056
+1109,1388.47,0.720215,0.479552,0.00544,0.374944,0.004928,0.005152,0.005088,0.006144,0.00592,0.067168,0.004768
+1110,1127.13,0.887207,0.301056,0.005824,0.196416,0.004608,0.005472,0.004768,0.006144,0.005728,0.06704,0.005056
+1111,1463.38,0.68335,0.301056,0.004512,0.196608,0.005888,0.004352,0.005952,0.005792,0.00576,0.066464,0.005728
+1112,1341.19,0.745605,0.30688,0.00608,0.20432,0.00464,0.005376,0.004864,0.006144,0.005824,0.063808,0.005824
+1113,572.467,1.74683,0.343712,0.008192,0.235392,0.004224,0.005824,0.004448,0.006112,0.007232,0.066528,0.00576
+1114,1561.57,0.640381,0.30336,0.004736,0.20416,0.004736,0.005376,0.004864,0.006144,0.00592,0.061664,0.00576
+1115,1369.67,0.730103,0.299136,0.00544,0.19744,0.005376,0.004864,0.006144,0.005856,0.005728,0.06368,0.004608
+1116,1518.44,0.658569,0.299904,0.004992,0.198656,0.005952,0.004288,0.005984,0.005824,0.005952,0.063488,0.004768
+1117,1280.6,0.780884,0.33008,0.004576,0.232384,0.005056,0.00544,0.004768,0.006112,0.005696,0.059904,0.006144
+1118,1104.49,0.905396,0.305152,0.005664,0.209376,0.004096,0.005952,0.00432,0.007424,0.005952,0.057856,0.004512
+1119,1430.17,0.699219,0.295296,0.00448,0.198688,0.00528,0.004928,0.005344,0.00496,0.006112,0.05936,0.006144
+1120,1374.73,0.727417,0.309056,0.006144,0.208896,0.005376,0.004864,0.005408,0.004832,0.006144,0.06144,0.005952
+1121,772.757,1.29407,0.314976,0.007584,0.214848,0.005024,0.004096,0.006144,0.005824,0.006112,0.059744,0.0056
+1122,1466.52,0.681885,0.299072,0.004992,0.200736,0.005952,0.005632,0.004768,0.006144,0.005824,0.059616,0.005408
+1123,1430.42,0.699097,0.294912,0.005984,0.198816,0.005248,0.004992,0.00528,0.004992,0.006112,0.058944,0.004544
+1124,1401.06,0.713745,0.296864,0.005472,0.199552,0.005632,0.004608,0.00592,0.006048,0.005792,0.058016,0.005824
+1125,1202.41,0.831665,0.299072,0.00544,0.197376,0.005728,0.004512,0.005824,0.00608,0.00576,0.062208,0.006144
+1126,1822.47,0.548706,0.47712,0.004736,0.376832,0.006016,0.004224,0.00608,0.005856,0.005856,0.06208,0.00544
+1127,1083.45,0.922974,0.296768,0.005568,0.196448,0.004832,0.005248,0.004992,0.00608,0.005824,0.061824,0.005952
+1128,1347.81,0.741943,0.304,0.004992,0.20656,0.004384,0.005536,0.004704,0.006144,0.006144,0.060992,0.004544
+1129,1361.25,0.734619,0.54272,0.00608,0.42752,0.020256,0.004896,0.00592,0.005856,0.005728,0.06032,0.006144
+1130,783.773,1.27588,0.29904,0.005472,0.201376,0.005408,0.004832,0.005408,0.00688,0.005664,0.059104,0.004896
+1131,1638.4,0.610352,0.29952,0.00496,0.204544,0.004352,0.005696,0.004544,0.006144,0.006176,0.057312,0.005792
+1132,965.924,1.03528,0.30368,0.004672,0.210944,0.00512,0.004992,0.00528,0.005088,0.006144,0.056736,0.004704
+1133,1463.64,0.683228,0.304096,0.005088,0.208896,0.00592,0.00432,0.005952,0.005792,0.005824,0.05616,0.006144
+1134,1498.45,0.667358,0.292672,0.005664,0.198272,0.00496,0.004192,0.006048,0.007328,0.00496,0.055296,0.005952
+1135,1083.45,0.922974,0.298912,0.00608,0.200768,0.006016,0.005376,0.004992,0.006144,0.006048,0.05744,0.006048
+1136,1328.15,0.75293,0.292864,0.0056,0.200256,0.005056,0.004128,0.006112,0.005824,0.005792,0.053952,0.006144
+1137,1490.54,0.670898,0.306432,0.006144,0.208,0.004992,0.004192,0.006048,0.006144,0.006144,0.05936,0.005408
+1138,1150.4,0.869263,0.494944,0.007584,0.395872,0.004288,0.006112,0.005632,0.005984,0.005952,0.058112,0.005408
+1139,927.431,1.07825,0.363456,0.005056,0.260096,0.004096,0.005952,0.004288,0.006144,0.013984,0.057696,0.006144
+1140,1526.65,0.655029,0.333856,0.005472,0.236224,0.006048,0.004192,0.006048,0.005888,0.005632,0.059648,0.004704
+1141,1290.69,0.77478,0.305632,0.004576,0.204448,0.004448,0.0056,0.00464,0.006144,0.006144,0.063488,0.006144
+1142,1358.32,0.736206,0.301408,0.004928,0.20016,0.00464,0.00544,0.0048,0.006144,0.005888,0.063744,0.005664
+1143,1483.79,0.67395,0.477184,0.005856,0.375072,0.006048,0.004192,0.006112,0.005856,0.00576,0.063552,0.004736
+1144,1137.62,0.879028,0.299616,0.004704,0.198688,0.005312,0.004896,0.005312,0.004928,0.006144,0.063488,0.006144
+1145,1418.04,0.7052,0.29968,0.004768,0.198464,0.004288,0.005888,0.004352,0.006144,0.006144,0.063488,0.006144
+1146,1257.99,0.794922,0.30688,0.004768,0.206176,0.004768,0.005312,0.004928,0.006176,0.006048,0.06352,0.005184
+1147,1162.32,0.860352,0.508512,0.01904,0.393216,0.005504,0.004736,0.006048,0.00608,0.00592,0.063136,0.004832
+1148,1124.81,0.889038,0.301056,0.00576,0.200096,0.005056,0.004128,0.006144,0.00592,0.00576,0.063456,0.004736
+1149,1354.27,0.738403,0.30528,0.00544,0.201728,0.005152,0.004992,0.005952,0.005856,0.005792,0.064416,0.005952
+1150,1410.71,0.708862,0.306304,0.00544,0.201504,0.005504,0.004736,0.005824,0.005984,0.005952,0.065952,0.005408
+1151,1450.94,0.689209,0.308096,0.004992,0.2048,0.005728,0.004512,0.005632,0.005824,0.00496,0.065504,0.006144
+1152,903.496,1.10681,0.477184,0.006144,0.378688,0.004288,0.005824,0.004416,0.006144,0.006144,0.060928,0.004608
+1153,1699.59,0.588379,0.300384,0.006144,0.200544,0.004256,0.005792,0.00448,0.007872,0.005792,0.060032,0.005472
+1154,1299.49,0.769531,0.305152,0.005728,0.20672,0.00464,0.005408,0.004832,0.006144,0.005824,0.061056,0.0048
+1155,1426.93,0.700806,0.586912,0.00544,0.488224,0.00752,0.004768,0.006016,0.005888,0.005856,0.057792,0.005408
+1156,819.692,1.21997,0.313152,0.006144,0.206336,0.004608,0.00544,0.0048,0.006144,0.006176,0.067552,0.005952
+1157,1209.87,0.826538,0.304384,0.00608,0.200192,0.004672,0.005376,0.004864,0.006144,0.00592,0.065728,0.005408
+1158,1461.29,0.684326,0.303712,0.004704,0.201856,0.004992,0.004096,0.006112,0.005856,0.0056,0.065792,0.004704
+1159,1597.82,0.625854,0.303104,0.006112,0.202784,0.005856,0.004416,0.005856,0.005824,0.005792,0.060352,0.006112
+1160,1432.92,0.697876,0.303104,0.006144,0.202752,0.005856,0.004384,0.005664,0.005856,0.004864,0.06144,0.006144
+1161,1183.13,0.845215,0.306144,0.005088,0.201984,0.004864,0.006016,0.00528,0.00512,0.006112,0.065536,0.006144
+1162,1388.24,0.720337,0.29696,0.006144,0.196352,0.004352,0.005696,0.004544,0.006176,0.00592,0.061632,0.006144
+1163,1361.7,0.734375,0.305312,0.004832,0.2048,0.00576,0.00448,0.005504,0.005952,0.004928,0.063488,0.005568
+1164,1410.23,0.709106,0.537984,0.00544,0.437152,0.007424,0.004864,0.005408,0.005888,0.005088,0.061312,0.005408
+1165,854.401,1.17041,0.303104,0.006048,0.2008,0.00576,0.00448,0.00608,0.005952,0.005792,0.063136,0.005056
+1166,1420.25,0.704102,0.299488,0.004576,0.200608,0.004192,0.005888,0.004384,0.006112,0.006144,0.063136,0.004448
+1167,1417.06,0.705688,0.295936,0.005888,0.194848,0.0056,0.004608,0.005696,0.006016,0.005824,0.062048,0.005408
+1168,1463.9,0.683105,0.299296,0.005056,0.198112,0.00464,0.005408,0.004864,0.006112,0.005888,0.063744,0.005472
+1169,1430.92,0.698853,0.298784,0.005472,0.195552,0.005856,0.005696,0.004832,0.006144,0.006144,0.063488,0.0056
+1170,1423.21,0.702637,0.295936,0.0056,0.19472,0.00448,0.005696,0.004576,0.006112,0.006144,0.063232,0.005376
+1171,1343.39,0.744385,0.321568,0.0056,0.219168,0.004608,0.005472,0.004768,0.006144,0.005952,0.064992,0.004864
+1172,1099.45,0.909546,0.34224,0.00544,0.240544,0.006048,0.004192,0.006176,0.006112,0.006144,0.062464,0.00512
+1173,1343.83,0.744141,0.333824,0.006144,0.232608,0.00496,0.004224,0.006016,0.006144,0.005888,0.063232,0.004608
+1174,1474.71,0.678101,0.305696,0.004608,0.202752,0.00512,0.004992,0.00528,0.005088,0.006144,0.067264,0.004448
+1175,1414.12,0.707153,0.304384,0.006144,0.200288,0.004512,0.005536,0.004704,0.006176,0.006112,0.065536,0.005376
+1176,1415.83,0.706299,0.303168,0.005472,0.200992,0.004544,0.005792,0.004448,0.006144,0.006144,0.064512,0.00512
+1177,1436.44,0.696167,0.29632,0.005312,0.194592,0.004992,0.004128,0.006048,0.005888,0.005824,0.064128,0.005408
+1178,1414.61,0.706909,0.300832,0.00576,0.19648,0.004608,0.005312,0.004928,0.006144,0.005728,0.065952,0.00592
+1179,1416.81,0.705811,0.303072,0.006144,0.19664,0.005888,0.00432,0.006048,0.005856,0.005888,0.066176,0.006112
+1180,1363.52,0.733398,0.302688,0.005856,0.202496,0.00464,0.00592,0.00448,0.005984,0.006144,0.06144,0.005728
+1181,1440.48,0.694214,0.296544,0.00544,0.195424,0.005408,0.004832,0.006144,0.006144,0.005984,0.0616,0.005568
+1182,1386.36,0.721313,0.301088,0.006144,0.197984,0.004768,0.005312,0.004928,0.007232,0.005056,0.065056,0.004608
+1183,1403.94,0.71228,0.32768,0.006144,0.222944,0.004384,0.005664,0.00592,0.005888,0.005056,0.067168,0.004512
+1184,1456.1,0.686768,0.302816,0.005472,0.199136,0.004416,0.005664,0.004576,0.006144,0.006144,0.065536,0.005728
+1185,1383.08,0.723022,0.3072,0.006144,0.202112,0.004736,0.005248,0.004992,0.006112,0.005856,0.066944,0.005056
+1186,1437.45,0.695679,0.298464,0.006144,0.196064,0.00464,0.005344,0.004896,0.006144,0.00576,0.063872,0.0056
+1187,1435.68,0.696533,0.29904,0.006048,0.194656,0.006016,0.005728,0.00464,0.006144,0.006144,0.064864,0.0048
+1188,1415.1,0.706665,0.300512,0.004544,0.196128,0.004576,0.005696,0.004544,0.006144,0.006144,0.067328,0.005408
+1189,1380.98,0.724121,0.299008,0.005824,0.19488,0.005248,0.004992,0.005344,0.005952,0.005088,0.066784,0.004896
+1190,1419.27,0.70459,0.304,0.004992,0.198688,0.005696,0.004512,0.005792,0.005664,0.004928,0.067584,0.006144
+1191,673.85,1.48401,0.300096,0.005984,0.1968,0.005472,0.004736,0.005536,0.005856,0.004992,0.065312,0.005408
+1192,1619.93,0.61731,0.306464,0.005536,0.201376,0.006016,0.00416,0.006112,0.007296,0.005024,0.065536,0.005408
+1193,1140.47,0.876831,0.338784,0.00496,0.2352,0.004416,0.005632,0.004608,0.006144,0.006112,0.065568,0.006144
+1194,1569.05,0.637329,0.309344,0.00544,0.202816,0.004832,0.005216,0.005024,0.006016,0.005792,0.069728,0.00448
+1195,1376.81,0.726318,0.3152,0.006016,0.206976,0.005184,0.004992,0.005312,0.004992,0.006144,0.069632,0.005952
+1196,1230.77,0.8125,0.328736,0.005504,0.223584,0.004384,0.005664,0.004576,0.006144,0.006144,0.06736,0.005376
+1197,1197.84,0.834839,0.33168,0.005472,0.225952,0.006048,0.004192,0.00608,0.005824,0.006272,0.065792,0.006048
+1198,1567.25,0.638062,0.3048,0.00592,0.19872,0.004256,0.005824,0.004416,0.006176,0.006112,0.067584,0.005792
+1199,1424.7,0.701904,0.305152,0.00592,0.2008,0.004224,0.005824,0.004416,0.006176,0.006112,0.067488,0.004192
+1200,1355.39,0.737793,0.30912,0.00544,0.203008,0.004576,0.005504,0.004768,0.006112,0.006144,0.067584,0.005984
+1201,1385.89,0.721558,0.3056,0.004544,0.201856,0.004992,0.00416,0.00608,0.005728,0.005792,0.066304,0.006144
+1202,1420.99,0.703735,0.301376,0.004928,0.19664,0.005888,0.00432,0.005696,0.005824,0.004864,0.067584,0.005632
+1203,1387.53,0.720703,0.301088,0.004768,0.19664,0.005984,0.004224,0.00608,0.005792,0.006272,0.065824,0.005504
+1204,1434.68,0.697021,0.304768,0.00448,0.200608,0.004192,0.006048,0.005312,0.005216,0.005952,0.067552,0.005408
+1205,1418.53,0.704956,0.302272,0.00592,0.19856,0.004416,0.00576,0.00448,0.00608,0.005792,0.065888,0.005376
+1206,1405.39,0.711548,0.299488,0.004608,0.194592,0.005856,0.004352,0.005888,0.006016,0.005952,0.066112,0.006112
+1207,1417.55,0.705444,0.301216,0.005472,0.194592,0.004896,0.005152,0.005088,0.006144,0.006112,0.068832,0.004928
+1208,1416.32,0.706055,0.312224,0.004992,0.202112,0.004736,0.005312,0.004928,0.005984,0.005568,0.07376,0.004832
+1209,1379.12,0.725098,0.306272,0.006144,0.199776,0.005024,0.004096,0.006144,0.006144,0.006144,0.067392,0.005408
+1210,1356.07,0.737427,0.30928,0.00464,0.20432,0.004576,0.005472,0.004768,0.006144,0.006144,0.067584,0.005632
+1211,1456.61,0.686523,0.303584,0.004544,0.198688,0.005216,0.004992,0.005952,0.006016,0.005856,0.067488,0.004832
+1212,1422.96,0.702759,0.302464,0.0056,0.196544,0.004704,0.005376,0.004864,0.006144,0.005792,0.067936,0.005504
+1213,1411.2,0.708618,0.302784,0.006144,0.194592,0.00576,0.004448,0.005856,0.006208,0.005888,0.068064,0.005824
+1214,836.687,1.19519,0.3072,0.006144,0.201824,0.005024,0.004096,0.006144,0.006048,0.005952,0.067296,0.004672
+1215,1569.35,0.637207,0.309696,0.004576,0.206176,0.004736,0.005312,0.004928,0.006144,0.005952,0.067008,0.004864
+1216,1444.54,0.692261,0.305568,0.004512,0.199904,0.004896,0.005792,0.00576,0.004832,0.006144,0.068928,0.0048
+1217,1440.73,0.694092,0.305184,0.005696,0.20064,0.004608,0.005472,0.004768,0.006176,0.006112,0.067264,0.004448
+1218,1413.14,0.707642,0.301088,0.00608,0.194624,0.005504,0.004736,0.005472,0.005888,0.006464,0.06784,0.00448
+1219,1402.26,0.713135,0.30352,0.005664,0.199168,0.004448,0.0056,0.00464,0.006144,0.006144,0.067072,0.00464
+1220,1348.92,0.741333,0.299488,0.004992,0.194304,0.004352,0.005696,0.004544,0.007456,0.004832,0.067584,0.005728
+1221,1437.45,0.695679,0.303104,0.004768,0.198656,0.00592,0.00432,0.005792,0.00592,0.005856,0.0664,0.005472
+1222,1397.71,0.715454,0.304448,0.006112,0.197728,0.005056,0.005632,0.004608,0.007264,0.005056,0.067552,0.00544
+1223,1435.68,0.696533,0.299584,0.004672,0.195904,0.0048,0.005248,0.004992,0.006112,0.00576,0.067552,0.004544
+1224,1441.49,0.693726,0.306784,0.005472,0.199296,0.00416,0.005888,0.0064,0.005952,0.005888,0.068032,0.005696
+1225,1423.71,0.702393,0.306304,0.00608,0.198752,0.005984,0.004224,0.006144,0.005888,0.005792,0.068032,0.005408
+1226,1386.59,0.721191,0.296672,0.006144,0.19456,0.004192,0.005888,0.004256,0.006144,0.006144,0.063488,0.005856
+1227,1421.48,0.703491,0.29904,0.005792,0.196768,0.004288,0.00592,0.005952,0.004512,0.006144,0.065248,0.004416
+1228,1414.61,0.706909,0.29696,0.006144,0.19456,0.005632,0.00464,0.005632,0.005664,0.005056,0.064896,0.004736
+1229,1286.63,0.777222,0.305376,0.00544,0.20368,0.005568,0.004672,0.005632,0.006464,0.006336,0.062784,0.0048
+1230,1446.58,0.691284,0.301472,0.00448,0.202752,0.005568,0.004672,0.005632,0.00592,0.005952,0.061856,0.00464
+1231,1445.31,0.691895,0.298912,0.00608,0.198592,0.004224,0.005824,0.006016,0.005856,0.004928,0.061344,0.006048
+1232,1436.19,0.696289,0.305408,0.005664,0.199168,0.00432,0.005952,0.005312,0.00512,0.006144,0.067584,0.006144
+1233,1387.53,0.720703,0.305152,0.005984,0.198816,0.005824,0.004416,0.005952,0.005888,0.005888,0.067744,0.00464
+1234,1379.59,0.724854,0.304928,0.005472,0.200608,0.005088,0.004128,0.005856,0.005792,0.004768,0.067552,0.005664
+1235,1500.64,0.666382,0.30432,0.00544,0.19952,0.005152,0.005088,0.005856,0.005824,0.005792,0.06624,0.005408
+1236,1160.01,0.862061,0.314336,0.005056,0.209984,0.005056,0.005632,0.004608,0.006144,0.006144,0.067104,0.004608
+1237,1624.43,0.615601,0.301088,0.004544,0.19856,0.004128,0.00592,0.004512,0.005952,0.006144,0.065536,0.005792
+1238,1371.51,0.729126,0.301536,0.004576,0.204032,0.004864,0.005184,0.005056,0.006048,0.005824,0.061472,0.00448
+1239,1404.66,0.711914,0.305824,0.004896,0.20416,0.004736,0.005312,0.004928,0.00608,0.005888,0.063808,0.006016
+1240,1436.94,0.695923,0.302368,0.006112,0.198688,0.006048,0.004192,0.00608,0.006048,0.005952,0.06384,0.005408
+1241,1394.38,0.717163,0.299808,0.004896,0.198656,0.005568,0.004672,0.0056,0.005824,0.004992,0.06448,0.00512
+1242,1395.57,0.716553,0.29552,0.004704,0.196352,0.004352,0.005696,0.004544,0.006144,0.006144,0.062784,0.0048
+1243,1459.21,0.685303,0.301056,0.006144,0.198656,0.005792,0.004448,0.005696,0.005888,0.00496,0.063328,0.006144
+1244,1386.83,0.721069,0.29888,0.005792,0.196832,0.004224,0.006144,0.005632,0.005824,0.004928,0.063488,0.006016
+1245,1389.18,0.719849,0.301376,0.004416,0.200704,0.005728,0.004512,0.006176,0.006112,0.006144,0.06288,0.004704
+1246,1427.68,0.700439,0.300928,0.005824,0.198976,0.005248,0.004992,0.005184,0.005248,0.005952,0.063488,0.006016
+1247,1417.55,0.705444,0.299712,0.005088,0.200704,0.005728,0.004512,0.005664,0.00592,0.005856,0.060384,0.005856
+1248,1398.19,0.71521,0.303104,0.005536,0.20336,0.00576,0.00448,0.005792,0.00576,0.005856,0.060416,0.006144
+1249,1377.5,0.725952,0.303104,0.005856,0.20432,0.004864,0.005184,0.005056,0.006144,0.006144,0.059392,0.006144
+1250,1392.25,0.718262,0.298464,0.006016,0.198784,0.005856,0.004384,0.00576,0.005728,0.004896,0.06144,0.0056
+1251,1411.68,0.708374,0.305152,0.005888,0.202752,0.004384,0.005984,0.005312,0.005056,0.006144,0.065024,0.004608
+1252,1424.7,0.701904,0.299008,0.005632,0.2008,0.004512,0.005376,0.004864,0.006144,0.006144,0.059392,0.006144
+1253,1443.27,0.692871,0.2968,0.00544,0.198848,0.004672,0.005376,0.004864,0.006144,0.005856,0.05968,0.00592
+1254,1426.68,0.700928,0.303264,0.005472,0.201088,0.004544,0.005504,0.006048,0.004928,0.006048,0.064672,0.00496
+1255,1436.44,0.696167,0.30112,0.00544,0.199424,0.004096,0.006048,0.00528,0.005056,0.006144,0.065056,0.004576
+1256,1386.59,0.721191,0.311904,0.00512,0.198656,0.006112,0.005408,0.005952,0.00528,0.00592,0.073728,0.005728
+1257,1401.06,0.713745,0.31744,0.0056,0.20048,0.004864,0.005216,0.005024,0.006144,0.005984,0.077984,0.006144
+1258,1092.27,0.915527,0.331776,0.0056,0.215584,0.005792,0.004448,0.005824,0.006048,0.00592,0.076416,0.006144
+1259,1526.65,0.655029,0.321056,0.005472,0.20512,0.004544,0.005504,0.004736,0.006144,0.006144,0.077824,0.005568
+1260,1366.7,0.731689,0.31744,0.005856,0.202432,0.004704,0.005376,0.004896,0.006112,0.006144,0.07712,0.0048
+1261,1402.02,0.713257,0.322912,0.0056,0.202464,0.004928,0.00512,0.00512,0.006144,0.006048,0.082048,0.00544
+1262,1422.22,0.703125,0.321248,0.006144,0.198656,0.005184,0.004992,0.00528,0.005024,0.006144,0.083968,0.005856
+1263,1357.19,0.736816,0.319488,0.005568,0.197184,0.005184,0.004992,0.00592,0.005952,0.005792,0.083936,0.00496
+1264,1381.22,0.723999,0.321344,0.006144,0.197664,0.005056,0.004128,0.006112,0.005984,0.00592,0.084384,0.005952
+1265,1348.26,0.741699,0.315104,0.005792,0.199008,0.005472,0.004768,0.00544,0.005984,0.00496,0.077824,0.005856
+1266,1379.12,0.725098,0.312288,0.00512,0.196576,0.005184,0.00496,0.00528,0.006688,0.005952,0.077856,0.004672
+1267,1396.28,0.716187,0.316992,0.005952,0.200032,0.00496,0.004096,0.006144,0.006144,0.006144,0.077824,0.005696
+1268,1304.46,0.766602,0.325984,0.005152,0.208896,0.005888,0.00432,0.005952,0.005856,0.005792,0.078656,0.005472
+1269,1428.92,0.699829,0.313088,0.004576,0.198656,0.005152,0.005024,0.00528,0.005024,0.006144,0.077824,0.005408
+1270,1377.27,0.726074,0.31408,0.004832,0.202144,0.004704,0.005344,0.004896,0.00608,0.00592,0.075072,0.005088
+1271,1401.3,0.713623,0.32224,0.00496,0.202752,0.00576,0.00448,0.005216,0.005024,0.006144,0.08192,0.005984
+1272,1396.28,0.716187,0.309536,0.005472,0.196928,0.004736,0.005312,0.004928,0.006048,0.00576,0.074208,0.006144
+1273,1382.15,0.723511,0.303168,0.005408,0.197408,0.00544,0.0048,0.005376,0.005888,0.00512,0.06928,0.004448
+1274,1394.15,0.717285,0.30736,0.00512,0.200704,0.00576,0.00448,0.005824,0.005952,0.005824,0.06832,0.005376
+1275,1422.96,0.702759,0.310912,0.00544,0.19536,0.005536,0.004704,0.005568,0.006144,0.005792,0.076704,0.005664
+1276,1393.43,0.717651,0.309216,0.005632,0.199168,0.005184,0.005056,0.005952,0.005728,0.004736,0.071648,0.006112
+1277,1389.65,0.719604,0.303104,0.005504,0.1952,0.005184,0.004992,0.005312,0.004992,0.006144,0.071392,0.004384
+1278,1361.7,0.734375,0.30928,0.005568,0.201248,0.004128,0.00592,0.00432,0.006144,0.006144,0.071328,0.00448
+1279,902.103,1.10852,0.31968,0.005472,0.211808,0.005408,0.004832,0.00608,0.005888,0.005856,0.069568,0.004768
+1280,1404.66,0.711914,0.330144,0.004544,0.220576,0.004672,0.005408,0.004832,0.006144,0.006144,0.072896,0.004928
+1281,1321.5,0.756714,0.321888,0.004448,0.208768,0.004224,0.005824,0.004416,0.006112,0.00576,0.077408,0.004928
+1282,1418.28,0.705078,0.321504,0.005824,0.211232,0.004128,0.00592,0.004416,0.007392,0.004864,0.071616,0.006112
+1283,1416.81,0.705811,0.310752,0.006144,0.199744,0.005056,0.004096,0.006144,0.005728,0.005792,0.072448,0.0056
+1284,1424.94,0.701782,0.308224,0.005088,0.196608,0.005632,0.004608,0.005664,0.006624,0.005856,0.073312,0.004832
+1285,1405.87,0.711304,0.30544,0.00544,0.194688,0.00496,0.004192,0.006048,0.005888,0.005888,0.073536,0.0048
+1286,1068.48,0.935913,0.313344,0.006144,0.202752,0.00528,0.00496,0.00528,0.006432,0.005856,0.072224,0.004416
+1287,1531.21,0.653076,0.313344,0.00592,0.205024,0.004096,0.005952,0.005312,0.00512,0.006144,0.071392,0.004384
+1288,1467.31,0.681519,0.309248,0.0056,0.201184,0.00416,0.005792,0.004448,0.006144,0.006144,0.070976,0.0048
+1289,1359.44,0.735596,0.30448,0.005472,0.199424,0.004288,0.00576,0.00448,0.006144,0.006144,0.06736,0.005408
+1290,1432.67,0.697998,0.304448,0.005824,0.196928,0.00512,0.004992,0.00528,0.005088,0.006144,0.069632,0.00544
+1291,1405.39,0.711548,0.308224,0.00512,0.200384,0.004416,0.0056,0.00464,0.006176,0.006112,0.07072,0.005056
+1292,1406.35,0.71106,0.301056,0.005568,0.197184,0.005184,0.00496,0.00592,0.006112,0.00592,0.065696,0.004512
+1293,1434.17,0.697266,0.30112,0.00464,0.19456,0.006048,0.004192,0.005952,0.00576,0.00656,0.067744,0.005664
+1294,1391.54,0.718628,0.301632,0.004672,0.198656,0.005408,0.004832,0.00544,0.005024,0.00592,0.065536,0.006144
+1295,1449.65,0.689819,0.30656,0.005664,0.19712,0.0056,0.00464,0.005888,0.00608,0.006016,0.07008,0.005472
+1296,1363.74,0.733276,0.31584,0.004544,0.2088,0.004192,0.005888,0.004384,0.006112,0.006144,0.071392,0.004384
+1297,1366.24,0.731934,0.317472,0.005472,0.193344,0.00528,0.00496,0.005344,0.004928,0.006112,0.086016,0.006016
+1298,1369.21,0.730347,0.308192,0.005088,0.199904,0.004896,0.005152,0.005088,0.006144,0.006144,0.069632,0.006144
+1299,1430.17,0.699219,0.305152,0.006144,0.196608,0.005184,0.005024,0.00528,0.005088,0.006048,0.071008,0.004768
+1300,587.999,1.70068,0.821504,0.005472,0.71552,0.004256,0.005792,0.004448,0.006176,0.006112,0.068768,0.00496
+1301,1285.02,0.778198,0.342016,0.004576,0.233472,0.005472,0.004768,0.005536,0.006016,0.00592,0.070592,0.005664
+1302,1342.95,0.744629,0.32768,0.005664,0.221664,0.005632,0.004608,0.005664,0.00576,0.00496,0.0688,0.004928
+1303,1316.41,0.759644,0.331808,0.00576,0.2208,0.004864,0.005184,0.005056,0.006144,0.006016,0.07296,0.005024
+1304,1334.85,0.749146,0.338688,0.004864,0.229376,0.006016,0.004224,0.006048,0.005792,0.00576,0.070464,0.006144
+1305,1388.47,0.720215,0.313472,0.00544,0.209728,0.00528,0.00496,0.004096,0.00624,0.006048,0.066976,0.004704
+1306,1362.38,0.734009,0.305536,0.005024,0.201888,0.00496,0.004096,0.006144,0.006016,0.00576,0.066048,0.0056
+1307,1452.74,0.688354,0.307296,0.005472,0.199424,0.00576,0.00448,0.005792,0.005888,0.005792,0.068544,0.006144
+1308,1359.22,0.735718,0.299008,0.005984,0.19472,0.005472,0.004768,0.005472,0.0048,0.006112,0.066624,0.005056
+1309,1445.82,0.69165,0.305472,0.004576,0.200608,0.005504,0.004704,0.006144,0.005824,0.005824,0.066208,0.00608
+1310,1383.78,0.722656,0.302848,0.005472,0.197408,0.005792,0.004448,0.005664,0.004576,0.006176,0.067552,0.00576
+1311,1421.24,0.703613,0.48336,0.005696,0.378528,0.004896,0.005216,0.005024,0.006144,0.005792,0.065888,0.006176
+1312,1080.45,0.925537,0.30304,0.004864,0.19616,0.004544,0.005536,0.004704,0.006144,0.006144,0.069504,0.00544
+1313,1386.13,0.721436,0.315392,0.00608,0.20656,0.004448,0.0056,0.00464,0.006144,0.006144,0.069632,0.006144
+1314,1272.64,0.785767,0.3112,0.006144,0.200704,0.00512,0.004992,0.00528,0.005088,0.006144,0.07168,0.006048
+1315,894.812,1.11755,0.523456,0.008096,0.411744,0.005696,0.004544,0.006144,0.005952,0.005824,0.070144,0.005312
+1316,1053.5,0.949219,0.312736,0.004576,0.203968,0.0048,0.005248,0.005024,0.00608,0.00592,0.071712,0.005408
+1317,1400.58,0.713989,0.307392,0.00544,0.199552,0.0056,0.004608,0.005664,0.006304,0.005792,0.069408,0.005024
+1318,1457.91,0.685913,0.302336,0.005792,0.196672,0.004384,0.005696,0.004544,0.007904,0.006112,0.065856,0.005376
+1319,1217.78,0.821167,0.305152,0.005888,0.198912,0.006016,0.005632,0.004768,0.006112,0.006144,0.067328,0.004352
+1320,1350.03,0.740723,0.311968,0.004768,0.202592,0.004256,0.006144,0.005568,0.006048,0.00496,0.073152,0.00448
+1321,1345.82,0.743042,0.310912,0.004512,0.200704,0.005952,0.004288,0.006144,0.006144,0.006112,0.071648,0.005408
+1322,1121.42,0.891724,0.329888,0.005376,0.22416,0.00544,0.0048,0.005504,0.005888,0.004992,0.069312,0.004416
+1323,1019.54,0.980835,0.65712,0.006144,0.54272,0.007712,0.004576,0.005728,0.005792,0.004896,0.073696,0.005856
+1324,1052.42,0.950195,0.32144,0.004608,0.210048,0.004992,0.004192,0.006048,0.006016,0.005856,0.074144,0.005536
+1325,1592.23,0.628052,0.318272,0.004928,0.206848,0.005152,0.005024,0.005248,0.005056,0.006144,0.074752,0.00512
+1326,1297.85,0.770508,0.3192,0.006112,0.205856,0.005088,0.004128,0.006112,0.00592,0.005792,0.074336,0.005856
+1327,1471,0.67981,0.313856,0.004832,0.20048,0.00432,0.005792,0.006016,0.005888,0.005856,0.074752,0.00592
+1328,1401.06,0.713745,0.4936,0.005888,0.377088,0.005152,0.005024,0.00528,0.00608,0.005088,0.079296,0.004704
+1329,1011.11,0.989014,0.309696,0.004576,0.196576,0.005728,0.004512,0.005728,0.005952,0.005856,0.07616,0.004608
+1330,1362.83,0.733765,0.317632,0.005472,0.204864,0.004896,0.00416,0.00608,0.00592,0.005792,0.074304,0.006144
+1331,1424.45,0.702026,0.314848,0.005504,0.207456,0.004128,0.00592,0.005568,0.006368,0.005984,0.06832,0.0056
+1332,1116.99,0.895264,0.505344,0.008192,0.395264,0.005664,0.004576,0.005664,0.00592,0.005888,0.068544,0.005632
+1333,1116.23,0.895874,0.307808,0.004704,0.200704,0.005376,0.004864,0.005728,0.006016,0.005984,0.068288,0.006144
+1334,1403.22,0.712646,0.3072,0.006144,0.20064,0.00416,0.005856,0.004416,0.006112,0.006144,0.068864,0.004864
+1335,1232.81,0.811157,0.309248,0.00544,0.196992,0.004416,0.005632,0.00464,0.006112,0.006144,0.073728,0.006144
+1336,1057.31,0.945801,0.32368,0.005472,0.215744,0.00416,0.005888,0.004384,0.006112,0.006144,0.071008,0.004768
+1337,1100.78,0.908447,0.313856,0.004736,0.206816,0.004096,0.005984,0.00528,0.00512,0.006112,0.069664,0.006048
+1338,1030.18,0.970703,0.303232,0.005472,0.195392,0.005536,0.004704,0.005568,0.005728,0.005088,0.069632,0.006112
+1339,1473.91,0.678467,0.310848,0.006144,0.198656,0.005856,0.004384,0.00592,0.005856,0.004608,0.073728,0.005696
+1340,821.006,1.21802,0.321216,0.007584,0.211936,0.004128,0.005952,0.004384,0.006048,0.006144,0.069632,0.005408
+1341,1386.36,0.721313,0.306432,0.006144,0.19456,0.005856,0.004384,0.00592,0.00576,0.005888,0.072544,0.005376
+1342,1243.28,0.804321,0.306528,0.005856,0.196896,0.005248,0.004992,0.00528,0.006016,0.005088,0.07168,0.005472
+1343,1659.64,0.602539,0.313376,0.005472,0.19936,0.005728,0.00448,0.006144,0.005952,0.005792,0.075392,0.005056
+1344,1232.44,0.811401,0.311488,0.005504,0.199136,0.004448,0.0056,0.00464,0.006144,0.006144,0.075264,0.004608
+1345,1523.53,0.656372,0.48368,0.00448,0.377888,0.005056,0.00416,0.00608,0.006016,0.00592,0.069056,0.005024
+1346,977.332,1.02319,0.303648,0.004768,0.197824,0.004928,0.005184,0.005056,0.006112,0.00592,0.06784,0.006016
+1347,1616.42,0.618652,0.312352,0.005888,0.202272,0.004832,0.005248,0.004992,0.006144,0.005728,0.07184,0.005408
+1348,1297.02,0.770996,0.310816,0.004608,0.206848,0.005152,0.00496,0.00528,0.005088,0.006144,0.06736,0.005376
+1349,733.459,1.3634,0.315392,0.007648,0.206784,0.004704,0.005344,0.004896,0.006144,0.006144,0.068768,0.00496
+1350,1249.92,0.800049,0.305632,0.004992,0.198656,0.005216,0.004992,0.00528,0.005024,0.006112,0.069632,0.005728
+1351,1616.74,0.61853,0.305088,0.005536,0.197216,0.005856,0.004384,0.006112,0.005856,0.005824,0.068224,0.00608
+1352,1290.89,0.774658,0.305152,0.00608,0.200768,0.005568,0.004672,0.005344,0.005984,0.005056,0.067168,0.004512
+1353,1207.01,0.828491,0.596032,0.006144,0.493568,0.005568,0.004672,0.005632,0.005888,0.004864,0.065248,0.004448
+1354,729.41,1.37097,0.310624,0.0056,0.207392,0.005984,0.004256,0.006144,0.006048,0.005952,0.063776,0.005472
+1355,1355.62,0.737671,0.325984,0.004608,0.223104,0.00544,0.004768,0.005536,0.005984,0.00592,0.06448,0.006144
+1356,1342.95,0.744629,0.547136,0.005472,0.441312,0.007296,0.004992,0.00528,0.00496,0.006144,0.065536,0.006144
+1357,929.536,1.07581,0.309056,0.005856,0.205088,0.004128,0.005952,0.005472,0.004928,0.006144,0.065536,0.005952
+1358,1197.31,0.835205,0.3072,0.006144,0.20048,0.00432,0.005728,0.004512,0.006144,0.006144,0.068768,0.00496
+1359,1605.02,0.623047,0.304704,0.00464,0.200384,0.004416,0.005632,0.004608,0.007616,0.005952,0.066048,0.005408
+1360,1370.59,0.729614,0.301344,0.005472,0.197568,0.005312,0.004896,0.005376,0.004992,0.006016,0.067008,0.004704
+1361,1247.45,0.801636,0.299552,0.005024,0.19456,0.004096,0.006144,0.005984,0.005824,0.005696,0.066464,0.00576
+1362,715.209,1.39819,0.307968,0.004864,0.202752,0.005184,0.004992,0.005248,0.005056,0.006176,0.067552,0.006144
+1363,1403.94,0.71228,0.309248,0.006144,0.200704,0.005152,0.004992,0.00528,0.005088,0.006112,0.070784,0.004992
+1364,1334.2,0.749512,0.556544,0.005504,0.44448,0.00672,0.005536,0.004704,0.006144,0.006144,0.07168,0.005632
+1365,837.542,1.19397,0.311296,0.006144,0.204704,0.004192,0.005856,0.004384,0.006176,0.006112,0.067584,0.006144
+1366,1455.58,0.687012,0.305152,0.00592,0.198912,0.005792,0.004448,0.005824,0.006112,0.005856,0.067872,0.004416
+1367,1403.46,0.712524,0.305152,0.006144,0.198016,0.004736,0.005312,0.004928,0.006144,0.006144,0.06928,0.004448
+1368,1303.84,0.766968,0.303968,0.00496,0.196608,0.005792,0.004448,0.005856,0.006176,0.005824,0.06816,0.006144
+1369,1503.12,0.665283,0.55392,0.005056,0.444384,0.005984,0.004256,0.006016,0.005792,0.005792,0.07216,0.00448
+1370,1028.11,0.972656,0.309632,0.005536,0.199328,0.004416,0.005632,0.004608,0.006144,0.006144,0.07168,0.006144
+1371,1347.37,0.742188,0.312832,0.006144,0.200704,0.005696,0.004544,0.00576,0.005824,0.004832,0.073696,0.005632
+1372,647.333,1.5448,0.319328,0.006144,0.206848,0.005696,0.004544,0.005696,0.005824,0.004896,0.073696,0.005984
+1373,1210.94,0.825806,0.335136,0.007616,0.221216,0.00464,0.005408,0.004832,0.006144,0.005792,0.07408,0.005408
+1374,1511.72,0.661499,0.315296,0.00544,0.201536,0.005344,0.004864,0.005408,0.004832,0.006144,0.075776,0.005952
+1375,1135.88,0.880371,0.33536,0.005568,0.213568,0.005216,0.004896,0.00528,0.017376,0.007424,0.0704,0.005632
+1376,1285.62,0.777832,0.311296,0.005824,0.203008,0.00416,0.005984,0.00528,0.00512,0.006144,0.070944,0.004832
+1377,1554.46,0.643311,0.491712,0.00544,0.37568,0.005728,0.004512,0.005824,0.005824,0.004768,0.078912,0.005024
+1378,1139.2,0.877808,0.313376,0.005472,0.202976,0.004544,0.005504,0.004736,0.006144,0.006144,0.073152,0.004704
+1379,1409.26,0.709595,0.321312,0.005984,0.202912,0.005856,0.004384,0.005952,0.00736,0.005216,0.077728,0.00592
+1380,1170.29,0.854492,0.320448,0.005056,0.205856,0.005088,0.004224,0.006016,0.00592,0.006368,0.077472,0.004448
+1381,625.153,1.59961,0.324832,0.008224,0.208608,0.004352,0.005696,0.004576,0.006144,0.007264,0.074592,0.005376
+1382,1434.93,0.696899,0.3232,0.005824,0.206624,0.00464,0.005408,0.004832,0.006144,0.00592,0.078048,0.00576
+1383,1439.97,0.694458,0.316864,0.00544,0.2032,0.004608,0.00544,0.0048,0.006144,0.005984,0.07584,0.005408
+1384,1215.43,0.822754,0.312704,0.0056,0.201056,0.004288,0.005792,0.004448,0.006144,0.006144,0.073728,0.005504
+1385,1627.33,0.614502,0.489504,0.005984,0.374944,0.005376,0.004864,0.00544,0.005824,0.00512,0.077504,0.004448
+1386,1105.98,0.904175,0.317792,0.004544,0.19856,0.005472,0.004768,0.005536,0.006752,0.006016,0.08,0.006144
+1387,1303.42,0.767212,0.318464,0.005504,0.199296,0.0056,0.00464,0.005664,0.005888,0.004928,0.081568,0.005376
+1388,1299.9,0.769287,0.323136,0.005536,0.205408,0.005856,0.004384,0.005856,0.005984,0.005568,0.078848,0.005696
+1389,748.06,1.33679,0.323488,0.006752,0.2088,0.004192,0.005888,0.00432,0.006144,0.006176,0.075744,0.005472
+1390,943.67,1.05969,0.333824,0.005504,0.219776,0.005312,0.004928,0.005344,0.00496,0.00608,0.076896,0.005024
+1391,1440.99,0.69397,0.336512,0.004736,0.21056,0.00448,0.006144,0.014336,0.006144,0.006144,0.079008,0.00496
+1392,1406.59,0.710938,0.319872,0.00448,0.2048,0.004096,0.005952,0.004288,0.006144,0.006144,0.077824,0.006144
+1393,1164.96,0.858398,0.497888,0.004576,0.38624,0.004672,0.00544,0.0048,0.006144,0.005984,0.075392,0.00464
+1394,867.245,1.15308,0.323232,0.005536,0.209216,0.004384,0.005696,0.004544,0.006144,0.006144,0.075776,0.005792
+1395,1266.93,0.789307,0.320192,0.0048,0.20992,0.005056,0.00416,0.006144,0.00592,0.00592,0.072128,0.006144
+1396,1397,0.71582,0.313184,0.00576,0.202464,0.004768,0.00528,0.00496,0.006176,0.005824,0.071968,0.005984
+1397,773.268,1.29321,0.321056,0.008192,0.202752,0.005632,0.004608,0.005664,0.006624,0.006112,0.075808,0.005664
+1398,1445.82,0.69165,0.317952,0.004896,0.200704,0.005728,0.005632,0.005024,0.006144,0.005984,0.077984,0.005856
+1399,1263.22,0.791626,0.313568,0.005472,0.19664,0.00496,0.00512,0.00512,0.005952,0.006048,0.079328,0.004928
+1400,1585.45,0.630737,0.314944,0.005888,0.198912,0.005216,0.00496,0.00528,0.005024,0.006144,0.077824,0.005696
+1401,1326.21,0.754028,0.491072,0.005568,0.375136,0.00432,0.00576,0.00448,0.006144,0.006144,0.077824,0.005696
+1402,1166.12,0.857544,0.30624,0.006112,0.19568,0.005056,0.004096,0.006144,0.006144,0.005952,0.071648,0.005408
+1403,1344.49,0.743774,0.307968,0.004896,0.198656,0.005248,0.004992,0.005312,0.005952,0.00512,0.07168,0.006112
+1404,1333.77,0.749756,0.314624,0.005568,0.205376,0.005632,0.004608,0.005632,0.006016,0.004736,0.07168,0.005376
+1405,746.968,1.33875,0.315808,0.007552,0.202912,0.00496,0.004096,0.006144,0.006144,0.006144,0.07296,0.004896
+1406,1409.98,0.709229,0.309344,0.00544,0.198848,0.004672,0.005376,0.004896,0.006112,0.005728,0.073536,0.004736
+1407,1323.21,0.755737,0.304448,0.005792,0.192864,0.005664,0.004576,0.005728,0.005856,0.00496,0.073568,0.00544
+1408,1457.39,0.686157,0.311392,0.005472,0.203328,0.004256,0.005792,0.004448,0.006144,0.006144,0.070976,0.004832
+1409,730.776,1.36841,0.315328,0.005472,0.20544,0.004416,0.004096,0.005152,0.005088,0.0056,0.074272,0.005792
+1410,1359.44,0.735596,0.313984,0.004736,0.202752,0.005536,0.004704,0.005536,0.006432,0.00592,0.073472,0.004896
+1411,1388.95,0.719971,0.315328,0.00544,0.203776,0.005312,0.004928,0.005376,0.004864,0.006144,0.07376,0.005728
+1412,1182.79,0.845459,0.317728,0.005472,0.202912,0.004864,0.005184,0.005056,0.005888,0.0056,0.078176,0.004576
+1413,1644.65,0.608032,0.554784,0.006144,0.439712,0.006752,0.006016,0.005888,0.005888,0.005792,0.072672,0.00592
+1414,736.293,1.35815,0.318688,0.005728,0.20112,0.005504,0.004736,0.005504,0.004768,0.006112,0.079808,0.005408
+1415,1603.13,0.623779,0.309248,0.005632,0.199168,0.005696,0.004544,0.005728,0.005856,0.00496,0.072704,0.00496
+1416,1361.93,0.734253,0.312576,0.00544,0.199552,0.00416,0.005888,0.005824,0.005792,0.005024,0.07552,0.005376
+1417,1464.95,0.682617,0.309792,0.004704,0.198656,0.005312,0.004928,0.00576,0.005824,0.00496,0.073568,0.00608
+1418,1165.62,0.85791,0.308672,0.005984,0.19472,0.005536,0.004704,0.0056,0.005952,0.005952,0.074656,0.005568
+1419,1443.52,0.692749,0.308896,0.005952,0.194752,0.005888,0.004352,0.005792,0.006144,0.00576,0.074464,0.005792
+1420,1407.32,0.710571,0.313344,0.005728,0.20032,0.004896,0.005184,0.005056,0.00608,0.005856,0.07408,0.006144
+1421,1195.91,0.836182,0.560192,0.005664,0.442848,0.007264,0.005024,0.005792,0.005888,0.005792,0.076512,0.005408
+1422,900.616,1.11035,0.309216,0.00576,0.19616,0.004928,0.00512,0.00512,0.00592,0.005888,0.074208,0.006112
+1423,1468.89,0.680786,0.308448,0.005472,0.196768,0.004608,0.00544,0.0048,0.006144,0.005952,0.073888,0.005376
+1424,1328.15,0.75293,0.309216,0.00544,0.195392,0.00528,0.00496,0.005344,0.004928,0.006112,0.075776,0.005984
+1425,1458.43,0.685669,0.310752,0.005888,0.196864,0.005536,0.004704,0.005536,0.005824,0.005024,0.075776,0.0056
+1426,1122.35,0.890991,0.311072,0.006144,0.196608,0.006144,0.005504,0.004736,0.006144,0.006144,0.073728,0.00592
+1427,1222.32,0.818115,0.308512,0.00544,0.195392,0.005696,0.004544,0.00576,0.005824,0.004928,0.07552,0.005408
+1428,1331.82,0.750854,0.309344,0.004608,0.197888,0.004864,0.005184,0.005056,0.005952,0.005792,0.074272,0.005728
+1429,1477.9,0.676636,0.307232,0.005408,0.195296,0.005888,0.004352,0.005952,0.005888,0.00576,0.07424,0.004448
+1430,1374.27,0.727661,0.563104,0.006144,0.446464,0.007904,0.004384,0.005856,0.005792,0.004928,0.075584,0.006048
+1431,823.813,1.21387,0.310944,0.00544,0.197344,0.004256,0.00592,0.004448,0.006016,0.006176,0.075744,0.0056
+1432,1364.65,0.732788,0.309408,0.004768,0.196608,0.005248,0.004992,0.00528,0.00496,0.006144,0.075776,0.005632
+1433,1102.26,0.907227,0.337184,0.006144,0.223232,0.005248,0.004992,0.005312,0.005984,0.00512,0.075744,0.005408
+1434,1633.17,0.612305,0.3088,0.005472,0.201024,0.004512,0.005568,0.004672,0.006144,0.006144,0.069632,0.005632
+1435,1356.07,0.737427,0.48464,0.006144,0.376832,0.005728,0.004512,0.006144,0.00608,0.005728,0.068064,0.005408
+1436,1183.99,0.844604,0.305152,0.006144,0.19456,0.005152,0.004992,0.004192,0.006144,0.006144,0.07168,0.006144
+1437,1404.66,0.711914,0.315392,0.006144,0.198656,0.005664,0.004576,0.005824,0.006144,0.005952,0.076288,0.006144
+1438,1365.79,0.732178,0.6128,0.004576,0.497344,0.006464,0.00576,0.004448,0.006144,0.006144,0.075776,0.006144
+1439,775.317,1.28979,0.31168,0.004768,0.196608,0.005504,0.004736,0.005568,0.005792,0.005216,0.077632,0.005856
+1440,1470.47,0.680054,0.301408,0.005472,0.195168,0.004512,0.005536,0.005824,0.005216,0.005952,0.068736,0.004992
+1441,1371.96,0.728882,0.304192,0.005696,0.197056,0.00512,0.005024,0.006112,0.00576,0.00576,0.068288,0.005376
+1442,1480.84,0.675293,0.309056,0.004768,0.20064,0.005248,0.004992,0.005344,0.00496,0.006144,0.071552,0.005408
+1443,1201.7,0.832153,0.301056,0.005472,0.19472,0.005664,0.004992,0.005312,0.005024,0.006144,0.068864,0.004864
+1444,1382.15,0.723511,0.305152,0.006144,0.196608,0.005312,0.004928,0.005344,0.00496,0.00608,0.069632,0.006144
+1445,1420,0.704224,0.304864,0.006016,0.19376,0.005024,0.004128,0.006112,0.006144,0.006144,0.07168,0.005856
+1446,1377.96,0.725708,0.303808,0.005088,0.195936,0.004768,0.005312,0.004928,0.006144,0.00592,0.069856,0.005856
+1447,1354.5,0.738281,0.304992,0.006144,0.194592,0.00576,0.004448,0.005856,0.00576,0.00496,0.07152,0.005952
+1448,1368.07,0.730957,0.565696,0.004512,0.428032,0.03632,0.00464,0.006144,0.005888,0.005792,0.069728,0.00464
+1449,830.663,1.20386,0.311296,0.005728,0.199072,0.006048,0.004192,0.006112,0.006176,0.005888,0.071936,0.006144
+1450,1545.95,0.646851,0.30784,0.004768,0.20208,0.004768,0.005536,0.004704,0.006144,0.006144,0.067584,0.006112
+1451,1164.63,0.858643,0.302176,0.005856,0.196896,0.005152,0.004992,0.005312,0.005024,0.006176,0.06736,0.005408
+1452,1473.12,0.678833,0.297536,0.005088,0.194528,0.00416,0.005888,0.004384,0.00608,0.007264,0.064416,0.005728
+1453,920.656,1.08618,0.309248,0.00608,0.204096,0.004864,0.005184,0.005056,0.00608,0.00576,0.067648,0.00448
+1454,1316.41,0.759644,0.327072,0.005824,0.216896,0.004608,0.005728,0.00592,0.005792,0.005248,0.07152,0.005536
+1455,1388.47,0.720215,0.319488,0.006144,0.206688,0.004256,0.005792,0.004448,0.006144,0.006144,0.073728,0.006144
+1456,680.851,1.46875,0.32096,0.007552,0.211872,0.005664,0.004544,0.005728,0.005792,0.004864,0.069536,0.005408
+1457,1598.13,0.625732,0.311296,0.006144,0.204064,0.004832,0.005216,0.005024,0.006144,0.006112,0.068864,0.004896
+1458,1397,0.71582,0.311904,0.004704,0.204512,0.004384,0.005696,0.004544,0.006144,0.006144,0.07136,0.004416
+1459,1057.17,0.945923,0.313376,0.005536,0.206784,0.004768,0.00528,0.00496,0.006144,0.005856,0.069184,0.004864
+1460,1377.04,0.726196,0.311296,0.006144,0.202752,0.005216,0.005024,0.005376,0.004896,0.006112,0.069632,0.006144
+1461,1124.19,0.889526,0.310144,0.004992,0.200704,0.005792,0.004448,0.006144,0.006144,0.005856,0.07104,0.005024
+1462,1352.26,0.739502,0.320064,0.004672,0.212192,0.004896,0.005152,0.005088,0.006144,0.00592,0.07152,0.00448
+1463,1339.44,0.746582,0.316736,0.006176,0.210464,0.004544,0.005536,0.004704,0.006144,0.006144,0.067584,0.00544
+1464,1420.5,0.703979,0.558752,0.005312,0.447136,0.006432,0.00576,0.00448,0.006112,0.006144,0.07168,0.005696
+1465,822.49,1.21582,0.314336,0.005056,0.202752,0.006048,0.004192,0.006112,0.005824,0.005792,0.074144,0.004416
+1466,1452.22,0.688599,0.311808,0.005056,0.200704,0.005216,0.005024,0.00528,0.00496,0.006144,0.073728,0.005696
+1467,1335.07,0.749023,0.313344,0.006144,0.200704,0.005824,0.004416,0.005888,0.005728,0.00592,0.074016,0.004704
+1468,1294.36,0.772583,0.317344,0.00608,0.200288,0.004576,0.005472,0.004768,0.006144,0.006144,0.077824,0.006048
+1469,1366.24,0.731934,0.494752,0.00544,0.376864,0.0048,0.005312,0.004928,0.006112,0.00592,0.079968,0.005408
+1470,1147.34,0.871582,0.3072,0.005632,0.196224,0.004992,0.004224,0.006016,0.006048,0.005696,0.073792,0.004576
+1471,794.491,1.25867,0.326208,0.004672,0.208928,0.005312,0.004896,0.005408,0.00496,0.006016,0.081376,0.00464
+1472,1356.07,0.737427,0.547168,0.004992,0.437792,0.006624,0.0056,0.00464,0.006144,0.006144,0.069632,0.0056
+1473,846.194,1.18176,0.314016,0.004736,0.200704,0.005376,0.004864,0.005408,0.004928,0.006048,0.077376,0.004576
+1474,1461.55,0.684204,0.31696,0.005952,0.202944,0.005152,0.004992,0.00528,0.005056,0.006144,0.075776,0.005664
+1475,1360.8,0.734863,0.313888,0.00464,0.200704,0.005152,0.004992,0.00528,0.005056,0.006144,0.077248,0.004672
+1476,1296.61,0.77124,0.313344,0.005472,0.199328,0.005344,0.004928,0.005312,0.006944,0.005824,0.075456,0.004736
+1477,1342.29,0.744995,0.49152,0.006112,0.376864,0.006144,0.004096,0.006144,0.006048,0.005888,0.07584,0.004384
+1478,1174.14,0.851685,0.31328,0.006144,0.196576,0.004128,0.00592,0.004384,0.007616,0.006592,0.07584,0.00608
+1479,1330.95,0.751343,0.327008,0.005408,0.20368,0.006048,0.004192,0.00608,0.00592,0.005824,0.084448,0.005408
+1480,1238.77,0.807251,0.350208,0.0056,0.227776,0.004192,0.005856,0.004384,0.006144,0.006144,0.083968,0.006144
+1481,1313.45,0.761353,0.562752,0.006144,0.434176,0.015744,0.004736,0.006144,0.006016,0.005824,0.078304,0.005664
+1482,791.268,1.26379,0.319584,0.005472,0.203552,0.005184,0.004992,0.005632,0.005952,0.004832,0.079104,0.004864
+1483,1520.98,0.657471,0.334432,0.004704,0.215072,0.005248,0.00496,0.005344,0.006528,0.00608,0.080352,0.006144
+1484,1292.32,0.773804,0.323584,0.005792,0.205088,0.00416,0.005792,0.004448,0.006144,0.006016,0.081568,0.004576
+1485,1257.99,0.794922,0.37264,0.005696,0.256448,0.004192,0.005792,0.004352,0.006144,0.006144,0.077824,0.006048
+1486,1010.73,0.98938,0.31296,0.005472,0.19952,0.006016,0.004192,0.006048,0.005952,0.00592,0.07424,0.0056
+1487,1444.03,0.692505,0.31776,0.00544,0.205856,0.005216,0.004992,0.005312,0.00496,0.006112,0.073728,0.006144
+1488,1358.09,0.736328,0.32352,0.00576,0.20928,0.005536,0.004704,0.005568,0.00608,0.005984,0.07456,0.006048
+1489,1286.84,0.7771,0.555456,0.004576,0.430048,0.014496,0.005984,0.005632,0.005824,0.00496,0.077792,0.006144
+1490,860.595,1.16199,0.330496,0.004864,0.216896,0.004288,0.00576,0.00448,0.006144,0.006176,0.077088,0.0048
+1491,1076.76,0.928711,0.319712,0.00544,0.205536,0.004288,0.005792,0.004448,0.006144,0.006144,0.075776,0.006144
+1492,1350.26,0.740601,0.3248,0.006048,0.208416,0.004576,0.005344,0.004896,0.006144,0.005792,0.078176,0.005408
+1493,1492.17,0.670166,0.32368,0.00544,0.203552,0.0056,0.00464,0.005664,0.006528,0.005696,0.081888,0.004672
+1494,1232.62,0.811279,0.323328,0.006144,0.204384,0.004512,0.005536,0.004704,0.006144,0.00608,0.079936,0.005888
+1495,1339.66,0.74646,0.316928,0.006144,0.198656,0.005536,0.004704,0.005536,0.005984,0.00592,0.078816,0.005632
+1496,1229.29,0.813477,0.333216,0.00592,0.211168,0.005376,0.004864,0.005408,0.006048,0.00624,0.082656,0.005536
+1497,1381.22,0.723999,0.567456,0.004576,0.431744,0.020384,0.004576,0.006144,0.006016,0.005888,0.082304,0.005824
+1498,848.209,1.17896,0.319072,0.004704,0.203808,0.005056,0.004128,0.006144,0.006144,0.005888,0.077792,0.005408
+1499,1380.75,0.724243,0.316672,0.0056,0.20048,0.004864,0.005184,0.005056,0.006112,0.006176,0.077824,0.005376
+1500,1363.29,0.733521,0.329312,0.00464,0.212256,0.004832,0.005248,0.004992,0.00608,0.00608,0.079744,0.00544
+1501,1379.36,0.724976,0.325568,0.006144,0.208352,0.00464,0.005408,0.004832,0.006144,0.006144,0.077824,0.00608
+1502,1193.99,0.837524,0.55296,0.006112,0.434208,0.00528,0.00496,0.005344,0.004896,0.006144,0.079936,0.00608
+1503,1032.39,0.968628,0.3544,0.00544,0.23632,0.005504,0.004736,0.005568,0.006048,0.00656,0.07952,0.004704
+1504,1463.64,0.683228,0.327328,0.006016,0.211264,0.005536,0.004704,0.005568,0.00592,0.004896,0.077824,0.0056
+1505,1353.83,0.738647,0.323584,0.005472,0.209568,0.005824,0.004416,0.005824,0.005824,0.004736,0.07712,0.0048
+1506,1251.45,0.799072,0.555616,0.004672,0.44032,0.007648,0.00464,0.005664,0.005824,0.004896,0.077376,0.004576
+1507,866.053,1.15466,0.322208,0.004896,0.208864,0.005632,0.00464,0.005728,0.005856,0.004928,0.075648,0.006016
+1508,808.927,1.23621,0.31168,0.00496,0.198336,0.004384,0.005664,0.004576,0.006144,0.006144,0.075776,0.005696
+1509,1214.53,0.823364,0.394368,0.005984,0.278624,0.00416,0.005888,0.004352,0.007616,0.005856,0.07648,0.005408
+1510,1301.14,0.768555,0.487808,0.005504,0.377856,0.005536,0.004704,0.0056,0.005952,0.00592,0.07232,0.004416
+1511,1109.43,0.901367,0.317984,0.004672,0.202048,0.004768,0.005312,0.004928,0.006176,0.006112,0.079072,0.004896
+1512,1317.04,0.759277,0.324992,0.005632,0.20928,0.004224,0.005824,0.004416,0.006144,0.006144,0.077824,0.005504
+1513,1341.63,0.745361,0.335712,0.004448,0.221184,0.005728,0.004512,0.00576,0.005856,0.004928,0.077664,0.005632
+1514,582.314,1.71729,0.35568,0.023616,0.22368,0.004608,0.005472,0.004768,0.006144,0.005824,0.076096,0.005472
+1515,1370.13,0.729858,0.321536,0.006016,0.206592,0.00448,0.005568,0.004672,0.006144,0.006016,0.077312,0.004736
+1516,1378.2,0.725586,0.32016,0.004768,0.2048,0.005728,0.004512,0.00576,0.005952,0.005952,0.076544,0.006144
+1517,1340.31,0.746094,0.324224,0.004736,0.208832,0.00416,0.005856,0.004384,0.007456,0.005888,0.076768,0.006144
+1518,1075.91,0.929443,0.315232,0.004928,0.200352,0.004448,0.005568,0.004672,0.006144,0.006144,0.077568,0.005408
+1519,1466,0.682129,0.31552,0.004672,0.200704,0.005408,0.004832,0.005472,0.006368,0.005792,0.076576,0.005696
+1520,1420.74,0.703857,0.321984,0.004576,0.208864,0.005344,0.004896,0.005408,0.004832,0.006176,0.075744,0.006144
+1521,1101.08,0.908203,0.36464,0.004448,0.250944,0.005056,0.00416,0.00608,0.006144,0.006112,0.07584,0.005856
+1522,743.173,1.34558,0.335744,0.00672,0.219008,0.004192,0.00576,0.004512,0.007808,0.00592,0.076352,0.005472
+1523,1200.47,0.833008,0.32768,0.005792,0.211136,0.004256,0.005824,0.004416,0.008128,0.005952,0.076032,0.006144
+1524,1207.55,0.828125,0.345728,0.00544,0.224096,0.005344,0.004896,0.005376,0.004896,0.007488,0.082592,0.0056
+1525,1484.86,0.673462,0.34256,0.00464,0.222304,0.005024,0.004128,0.006112,0.006144,0.006016,0.083104,0.005088
+1526,848.736,1.17822,0.358432,0.0056,0.242208,0.005664,0.004576,0.005728,0.00608,0.006464,0.077568,0.004544
+1527,1125.27,0.888672,0.333888,0.00544,0.21888,0.005088,0.005632,0.004608,0.006144,0.006144,0.077408,0.004544
+1528,1403.46,0.712524,0.345312,0.005728,0.219584,0.005504,0.004704,0.005568,0.005952,0.005888,0.086944,0.00544
+1529,989.253,1.01086,0.567296,0.00544,0.434688,0.020672,0.005568,0.004672,0.006144,0.006144,0.079552,0.004416
+1530,946.177,1.05688,0.357504,0.005728,0.237984,0.005856,0.004416,0.005856,0.005888,0.00576,0.080608,0.005408
+1531,1194.69,0.837036,0.321536,0.006048,0.204928,0.005312,0.004896,0.005376,0.004896,0.006112,0.079584,0.004384
+1532,747.104,1.3385,0.331776,0.00592,0.21264,0.004672,0.005376,0.004864,0.006144,0.006048,0.081344,0.004768
+1533,986.394,1.01379,0.321664,0.00544,0.201568,0.005728,0.004512,0.005728,0.006528,0.006048,0.081024,0.005088
+1534,1492.44,0.670044,0.321792,0.00512,0.2048,0.005216,0.005024,0.00528,0.00496,0.006176,0.079776,0.00544
+1535,1249.54,0.800293,0.33568,0.005504,0.21568,0.005888,0.004352,0.00592,0.005792,0.006368,0.080224,0.005952
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..a252279
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1473.79,0.728235,0.227497,0.00584494,0.171657,0.00551991,0.00502431,0.00553197,0.00558966,0.00548406,0.0175147,0.00533097
+max_1024,2067.12,5.24915,4.67184,0.3216,4.61328,0.040864,0.022912,0.021184,0.032832,0.016768,0.045088,0.020352
+min_1024,190.507,0.483765,0.167904,0.004064,0.112256,0.004064,0.004064,0.004096,0.004064,0.004096,0.016032,0.004064
+512,1797.28,0.556396,0.192512,0.005536,0.137824,0.005728,0.004512,0.005792,0.004448,0.006144,0.017568,0.00496
+513,1772.78,0.564087,0.186752,0.005056,0.132416,0.004832,0.005664,0.004544,0.00608,0.00544,0.017152,0.005568
+514,1497.62,0.667725,0.418176,0.00448,0.364544,0.0056,0.00464,0.005632,0.00464,0.006112,0.017664,0.004864
+515,1273.63,0.785156,0.185184,0.00496,0.130944,0.005632,0.004768,0.005408,0.004832,0.006112,0.01744,0.005088
+516,1560.68,0.640747,0.184576,0.00432,0.130656,0.0056,0.004896,0.005376,0.005024,0.006144,0.017664,0.004896
+517,1730.83,0.577759,0.195776,0.005664,0.139744,0.006144,0.005248,0.004992,0.005888,0.005408,0.017376,0.005312
+518,1567.25,0.638062,0.191712,0.006144,0.137088,0.004224,0.005632,0.004608,0.00608,0.005248,0.017344,0.005344
+519,1770.86,0.564697,0.191104,0.004736,0.137216,0.006144,0.005152,0.005088,0.005568,0.004672,0.018176,0.004352
+520,1663.69,0.601074,0.197536,0.005024,0.14336,0.006176,0.004064,0.006144,0.0056,0.00464,0.01824,0.004288
+521,680.229,1.47009,0.194784,0.005344,0.13984,0.0056,0.004896,0.00544,0.006528,0.004608,0.01824,0.004288
+522,1297.64,0.77063,0.200704,0.008192,0.142656,0.0048,0.0056,0.00464,0.006144,0.005952,0.016576,0.006144
+523,1465.47,0.682373,0.223232,0.005376,0.168704,0.006176,0.004064,0.006144,0.005632,0.00464,0.018048,0.004448
+524,1587.9,0.629761,0.186496,0.005376,0.131488,0.0056,0.004896,0.005984,0.005536,0.005088,0.01776,0.004768
+525,1584.83,0.630981,0.186688,0.004768,0.132192,0.005024,0.005504,0.004736,0.00608,0.005376,0.017216,0.005792
+526,1178.87,0.848267,0.210656,0.0048,0.15568,0.005248,0.004928,0.005312,0.006528,0.004576,0.018304,0.00528
+527,1052.28,0.950317,0.213952,0.005056,0.159744,0.006176,0.005536,0.004672,0.006176,0.005408,0.016736,0.004448
+528,1354.5,0.738281,0.219104,0.00576,0.164192,0.005696,0.004544,0.006144,0.00576,0.004544,0.0176,0.004864
+529,1005.89,0.994141,0.227328,0.005984,0.172192,0.005792,0.004448,0.005824,0.005472,0.005088,0.018464,0.004064
+530,579.677,1.7251,0.227584,0.006688,0.171456,0.004448,0.005408,0.004832,0.005952,0.006112,0.016608,0.00608
+531,767.4,1.3031,0.420064,0.00496,0.366016,0.004672,0.00544,0.004768,0.006048,0.00544,0.017184,0.005536
+532,1541.88,0.64856,0.218784,0.005824,0.16208,0.006176,0.005152,0.005056,0.006144,0.005632,0.016896,0.005824
+533,1759.07,0.568481,0.184864,0.00464,0.131104,0.005952,0.004256,0.006048,0.005504,0.004864,0.01776,0.004736
+534,1646.63,0.6073,0.183616,0.005536,0.127584,0.005472,0.004768,0.005536,0.006528,0.005472,0.01728,0.00544
+535,1658.64,0.602905,0.18912,0.004768,0.13312,0.005824,0.004416,0.006144,0.005984,0.00544,0.017248,0.006176
+536,1434.42,0.697144,0.20656,0.005728,0.151552,0.005632,0.004896,0.005344,0.005056,0.005792,0.016704,0.005856
+537,1138.41,0.878418,0.6656,0.006112,0.610368,0.005888,0.00432,0.006016,0.005472,0.004896,0.017952,0.004576
+538,1254.52,0.797119,0.19168,0.006144,0.135136,0.005504,0.004768,0.006144,0.005856,0.00544,0.017376,0.005312
+539,1731.92,0.577393,0.190304,0.004736,0.134656,0.004608,0.00592,0.006368,0.00592,0.00544,0.017312,0.005344
+540,1125.27,0.888672,0.200416,0.005472,0.146208,0.0056,0.004768,0.005472,0.004768,0.006112,0.016416,0.0056
+541,1396.05,0.716309,0.20864,0.006048,0.153088,0.004704,0.005824,0.004544,0.006016,0.005728,0.016832,0.005856
+542,1357.42,0.736694,0.212992,0.005792,0.15808,0.005248,0.004928,0.005312,0.00608,0.005056,0.017664,0.004832
+543,1209.87,0.826538,0.208896,0.006144,0.1536,0.006048,0.004224,0.006048,0.005344,0.00496,0.017856,0.004672
+544,1445.82,0.69165,0.236544,0.006112,0.180224,0.006144,0.004096,0.006176,0.0056,0.004608,0.018304,0.00528
+545,1326.85,0.753662,0.227392,0.005344,0.172864,0.005728,0.004544,0.006016,0.005472,0.004896,0.017792,0.004736
+546,1197.84,0.834839,0.54768,0.004992,0.483296,0.014368,0.006144,0.005568,0.005696,0.005088,0.017792,0.004736
+547,862.316,1.15967,0.222688,0.004544,0.167936,0.006016,0.004224,0.00608,0.005664,0.004672,0.018272,0.00528
+548,1377.96,0.725708,0.2232,0.005408,0.16864,0.006144,0.004096,0.006112,0.005472,0.0048,0.018048,0.00448
+549,1071.69,0.933105,0.41936,0.004128,0.365632,0.005056,0.005472,0.004768,0.006144,0.006144,0.016416,0.0056
+550,1304.46,0.766602,0.267488,0.006144,0.213024,0.005184,0.004928,0.005344,0.005024,0.005888,0.016608,0.005344
+551,1411.93,0.708252,0.222368,0.005984,0.166048,0.006144,0.005248,0.005024,0.005792,0.00544,0.017408,0.00528
+552,1270.47,0.787109,0.252992,0.005856,0.196896,0.005792,0.00448,0.006112,0.00592,0.005408,0.017344,0.005184
+553,1410.23,0.709106,0.20272,0.00608,0.147488,0.005984,0.004288,0.006016,0.00544,0.004896,0.01792,0.004608
+554,1672.18,0.598022,0.19456,0.0056,0.140928,0.00496,0.00416,0.006144,0.005344,0.004896,0.017984,0.004544
+555,1398.91,0.714844,0.22528,0.005792,0.171616,0.004896,0.005632,0.004576,0.006144,0.005568,0.016672,0.004384
+556,823.234,1.21472,0.254816,0.007008,0.197888,0.004864,0.005632,0.00608,0.004672,0.006144,0.017504,0.005024
+557,1382.38,0.723389,0.217664,0.005024,0.163008,0.004928,0.0056,0.00464,0.006176,0.005568,0.016928,0.005792
+558,1182.62,0.845581,0.212992,0.005824,0.158048,0.005664,0.004576,0.005664,0.004544,0.006144,0.017696,0.004832
+559,744.457,1.34326,0.19456,0.006144,0.139296,0.006144,0.004128,0.00608,0.0056,0.00464,0.01824,0.004288
+560,1542.17,0.648438,0.194912,0.004448,0.141312,0.005664,0.004576,0.005728,0.005856,0.004832,0.018112,0.004384
+561,1491.9,0.670288,0.19472,0.005344,0.140224,0.005664,0.004576,0.005728,0.004512,0.006144,0.017536,0.004992
+562,1731.92,0.577393,0.188992,0.00512,0.135168,0.004064,0.005856,0.004544,0.006016,0.005536,0.01696,0.005728
+563,1746.32,0.572632,0.194368,0.004544,0.140352,0.005056,0.005472,0.004768,0.006048,0.005408,0.017216,0.005504
+564,810.287,1.23413,0.193408,0.007008,0.136352,0.00496,0.005536,0.004704,0.00608,0.006208,0.017824,0.004736
+565,1718.84,0.581787,0.191424,0.005056,0.137216,0.005664,0.004576,0.0056,0.00464,0.006144,0.017536,0.004992
+566,1160.18,0.861938,0.221248,0.004416,0.167936,0.00512,0.004928,0.005984,0.004448,0.006144,0.016416,0.005856
+567,1714.52,0.583252,0.193152,0.004736,0.1392,0.0056,0.004704,0.005568,0.004672,0.006112,0.01744,0.00512
+568,1722.82,0.580444,0.199136,0.004576,0.145152,0.0056,0.004896,0.00544,0.004832,0.005888,0.016608,0.006144
+569,1467.84,0.681274,0.196032,0.006112,0.139264,0.006048,0.004192,0.006048,0.005472,0.006176,0.017152,0.005568
+570,1696.42,0.589478,0.206848,0.005728,0.151968,0.004096,0.005984,0.005376,0.005056,0.00592,0.016576,0.006144
+571,1443.02,0.692993,0.186368,0.00576,0.129408,0.005856,0.004416,0.006112,0.007168,0.00512,0.017728,0.0048
+572,1596.57,0.626343,0.217056,0.006048,0.161568,0.005632,0.004896,0.005344,0.00496,0.00592,0.016576,0.006112
+573,1451.2,0.689087,0.49664,0.005344,0.410176,0.034144,0.00704,0.005952,0.005824,0.00464,0.018208,0.005312
+574,878.97,1.1377,0.202688,0.004608,0.148544,0.004928,0.004224,0.006144,0.006112,0.005408,0.017152,0.005568
+575,1735.59,0.576172,0.188384,0.005792,0.133376,0.005632,0.004704,0.0056,0.004608,0.006176,0.018272,0.004224
+576,1499.27,0.666992,0.232768,0.006144,0.177504,0.004768,0.004096,0.006144,0.006112,0.00544,0.017152,0.005408
+577,1325.14,0.754639,0.184448,0.005344,0.12992,0.006144,0.004128,0.006112,0.005152,0.005088,0.01776,0.0048
+578,1626.36,0.614868,0.181216,0.005088,0.126976,0.00512,0.004896,0.005856,0.004608,0.006176,0.017632,0.004864
+579,1769.33,0.565186,0.188416,0.005696,0.133408,0.005632,0.004768,0.005536,0.004704,0.005984,0.016576,0.006112
+580,1626.36,0.614868,0.18224,0.005856,0.126432,0.004928,0.005568,0.004672,0.006176,0.00592,0.016608,0.00608
+581,1189.14,0.840942,0.212704,0.005568,0.157312,0.004992,0.004192,0.006112,0.006112,0.005696,0.016864,0.005856
+582,1473.12,0.678833,0.194976,0.004512,0.141344,0.005696,0.004544,0.00576,0.005472,0.00512,0.017632,0.004896
+583,885.239,1.12964,0.421888,0.008192,0.364544,0.006176,0.004064,0.006144,0.0056,0.00464,0.01808,0.004448
+584,1881.92,0.531372,0.190432,0.004736,0.134976,0.0056,0.004864,0.005376,0.006048,0.00608,0.017312,0.00544
+585,1717.76,0.582153,0.185472,0.005728,0.129472,0.006112,0.005248,0.004992,0.00576,0.004576,0.018304,0.00528
+586,1518.16,0.658691,0.405088,0.006144,0.350144,0.004256,0.005664,0.004544,0.006112,0.005536,0.01696,0.005728
+587,1208.62,0.827393,0.194336,0.004416,0.14064,0.004768,0.00576,0.00448,0.006144,0.00544,0.017088,0.0056
+588,1657.63,0.603271,0.184352,0.0056,0.128864,0.0048,0.006144,0.005504,0.004736,0.006144,0.017504,0.005056
+589,1698.53,0.588745,0.194912,0.004448,0.141312,0.006144,0.004096,0.006144,0.005504,0.004736,0.018144,0.004384
+590,1506.44,0.663818,0.186848,0.005024,0.13312,0.005504,0.004736,0.005536,0.004704,0.006048,0.01648,0.005696
+591,1182.62,0.845581,0.253952,0.0056,0.199232,0.005824,0.004416,0.005888,0.005504,0.00496,0.017888,0.00464
+592,1368.76,0.730591,0.223264,0.005824,0.167872,0.0056,0.004928,0.005376,0.00496,0.00608,0.016448,0.006176
+593,1124.97,0.888916,0.661952,0.005024,0.607584,0.0048,0.005536,0.004704,0.006112,0.005472,0.017056,0.005664
+594,1345.16,0.743408,0.190304,0.006176,0.135136,0.005152,0.004896,0.005408,0.005056,0.005792,0.016736,0.005952
+595,1665.04,0.600586,0.184576,0.004384,0.130944,0.005632,0.004768,0.00544,0.004768,0.005952,0.016576,0.006112
+596,1242.34,0.804932,0.382976,0.005952,0.327392,0.005632,0.004896,0.005888,0.004544,0.006144,0.017632,0.004896
+597,1619.29,0.617554,0.184288,0.006144,0.126976,0.006144,0.005984,0.005376,0.005024,0.00592,0.016608,0.006112
+598,1756.06,0.569458,0.188448,0.005312,0.133792,0.00432,0.005568,0.00464,0.007168,0.005152,0.017728,0.004768
+599,1494.07,0.669312,0.183104,0.004928,0.128704,0.004448,0.00544,0.006528,0.005472,0.005088,0.017728,0.004768
+600,1838.83,0.543823,0.188992,0.00496,0.13312,0.005888,0.004352,0.006144,0.006176,0.005664,0.016832,0.005856
+601,1638.07,0.610474,0.186368,0.006144,0.131072,0.006144,0.004096,0.006144,0.005536,0.004704,0.018112,0.004416
+602,1479.77,0.675781,0.189632,0.005792,0.13552,0.004096,0.005856,0.004544,0.005984,0.005152,0.017376,0.005312
+603,710.803,1.40686,0.219136,0.007456,0.162528,0.006144,0.005248,0.005024,0.005952,0.00544,0.016704,0.00464
+604,1258.95,0.794312,0.198656,0.005728,0.14336,0.0056,0.004896,0.005312,0.00512,0.006048,0.016448,0.006144
+605,1295.38,0.771973,0.198656,0.005952,0.144608,0.005088,0.00544,0.004832,0.0056,0.006336,0.016192,0.004608
+606,1406.59,0.710938,0.196608,0.00608,0.141408,0.005184,0.004928,0.00544,0.004928,0.006016,0.016512,0.006112
+607,1433.42,0.697632,0.19184,0.006144,0.136256,0.005088,0.00544,0.0048,0.006016,0.005408,0.017216,0.005472
+608,1752.67,0.570557,0.205536,0.004896,0.151264,0.0056,0.004704,0.005344,0.00512,0.005824,0.016704,0.00608
+609,1558.01,0.641846,0.18464,0.004864,0.129024,0.006144,0.00528,0.00496,0.006144,0.005792,0.016736,0.005696
+610,1614.82,0.619263,0.215456,0.004512,0.161152,0.004768,0.004064,0.006144,0.006144,0.006016,0.016512,0.006144
+611,1382.38,0.723389,0.221184,0.006176,0.165856,0.006016,0.004256,0.006048,0.005472,0.004832,0.018016,0.004512
+612,793.722,1.25989,0.210944,0.008,0.153792,0.005728,0.004512,0.00592,0.00544,0.005056,0.01776,0.004736
+613,1268.31,0.788452,0.20224,0.005952,0.146944,0.0048,0.005728,0.004544,0.006144,0.00544,0.017056,0.005632
+614,1701,0.587891,0.190464,0.005376,0.136992,0.004928,0.004288,0.006016,0.005504,0.004832,0.017856,0.004672
+615,1513.39,0.660767,0.184992,0.004864,0.129024,0.006144,0.005376,0.004864,0.006144,0.005888,0.01664,0.006048
+616,1581.77,0.632202,0.19808,0.005728,0.142784,0.005088,0.00544,0.0048,0.007392,0.004896,0.016416,0.005536
+617,1702.41,0.587402,0.19344,0.004992,0.138976,0.0056,0.004928,0.005376,0.004864,0.006048,0.016512,0.006144
+618,1626.69,0.614746,0.184928,0.004704,0.131072,0.005344,0.004896,0.005376,0.004864,0.006016,0.016512,0.006144
+619,1775.47,0.563232,0.18304,0.004864,0.12864,0.005632,0.004896,0.005408,0.004928,0.005952,0.016576,0.006144
+620,1467.57,0.681396,0.194944,0.00448,0.141056,0.005632,0.004864,0.005472,0.004768,0.006144,0.01744,0.005088
+621,1473.12,0.678833,0.215072,0.005632,0.160256,0.005632,0.004608,0.0056,0.00464,0.006176,0.017504,0.005024
+622,695.829,1.43713,0.206848,0.007744,0.149984,0.005536,0.004704,0.0056,0.004608,0.006144,0.017632,0.004896
+623,1703.12,0.587158,0.190464,0.005376,0.135936,0.006144,0.004128,0.006112,0.005504,0.004736,0.018112,0.004416
+624,1221.96,0.818359,0.45264,0.005376,0.397696,0.005632,0.004896,0.005408,0.00496,0.00608,0.016448,0.006144
+625,1315.56,0.760132,0.192544,0.004704,0.138464,0.004864,0.005664,0.004608,0.006112,0.005376,0.017152,0.0056
+626,1338.12,0.747314,0.184896,0.004672,0.131072,0.005216,0.004896,0.005312,0.00608,0.00512,0.017632,0.004896
+627,1798.86,0.555908,0.19424,0.004704,0.139264,0.006144,0.004096,0.006144,0.00576,0.004544,0.018304,0.00528
+628,1716.32,0.582642,0.188256,0.00576,0.133504,0.005632,0.004608,0.005696,0.004544,0.005824,0.016704,0.005984
+629,1356.52,0.737183,0.194144,0.005728,0.139136,0.004672,0.005856,0.004544,0.005952,0.005536,0.016992,0.005728
+630,1688.38,0.592285,0.201664,0.005056,0.147488,0.004064,0.00608,0.005376,0.004928,0.006144,0.017952,0.004576
+631,1109.13,0.901611,0.653312,0.005376,0.5984,0.005632,0.005024,0.005504,0.004704,0.006144,0.017472,0.005056
+632,1168.28,0.855957,0.196064,0.0056,0.139808,0.006176,0.005312,0.004896,0.006112,0.00544,0.01712,0.0056
+633,1584.83,0.630981,0.187328,0.005056,0.13312,0.005888,0.004352,0.00592,0.005632,0.004832,0.01824,0.004288
+634,1820.44,0.549316,0.372704,0.006112,0.317472,0.005856,0.004384,0.005888,0.005472,0.004992,0.017856,0.004672
+635,1141.42,0.876099,0.182272,0.005952,0.127168,0.005792,0.004448,0.005696,0.004544,0.006176,0.017632,0.004864
+636,1865.63,0.536011,0.186688,0.004416,0.133152,0.005728,0.004512,0.005536,0.004672,0.006144,0.0176,0.004928
+637,1722.09,0.580688,0.184224,0.005472,0.129376,0.0056,0.004896,0.005248,0.005056,0.005856,0.016672,0.006048
+638,1556.23,0.642578,0.186368,0.005376,0.13184,0.005568,0.004672,0.005664,0.004576,0.006144,0.017504,0.005024
+639,1372.88,0.728394,0.212384,0.004416,0.158848,0.004928,0.0056,0.00464,0.005984,0.004256,0.018432,0.00528
+640,1862.66,0.536865,0.199424,0.004832,0.143392,0.006144,0.005344,0.006112,0.004928,0.006112,0.017472,0.005088
+641,927.011,1.07874,0.424512,0.007136,0.36784,0.004896,0.005632,0.004608,0.006144,0.005536,0.016992,0.005728
+642,1693.96,0.590332,0.182272,0.005408,0.12768,0.004128,0.006144,0.0056,0.004672,0.006112,0.017504,0.005024
+643,1546.54,0.646606,0.193504,0.005056,0.1392,0.005632,0.004672,0.005664,0.004576,0.006176,0.017568,0.00496
+644,1779.32,0.562012,0.18432,0.006144,0.12912,0.00608,0.005344,0.004864,0.00592,0.005408,0.017344,0.004096
+645,1347.15,0.74231,0.187808,0.005792,0.131424,0.006176,0.004064,0.00608,0.005504,0.006048,0.017184,0.005536
+646,837.029,1.1947,0.183968,0.004672,0.130688,0.00448,0.005408,0.005856,0.00512,0.005792,0.016672,0.00528
+647,721.826,1.38538,0.628352,0.00576,0.573824,0.0056,0.004672,0.005664,0.004544,0.006144,0.016384,0.00576
+648,1477.63,0.676758,0.206944,0.005344,0.152448,0.006176,0.00512,0.005088,0.005696,0.004544,0.018112,0.004416
+649,1281.2,0.780518,0.223424,0.005376,0.168896,0.006176,0.005184,0.005024,0.005792,0.004544,0.017536,0.004896
+650,890.725,1.12268,0.204672,0.008096,0.147552,0.00512,0.004896,0.005408,0.005056,0.005856,0.016672,0.006016
+651,1633.17,0.612305,0.192224,0.004384,0.138752,0.00464,0.005888,0.005568,0.004896,0.00576,0.016768,0.005568
+652,1509.77,0.662354,0.192384,0.004064,0.140416,0.004416,0.00448,0.00544,0.004992,0.006144,0.016416,0.006016
+653,722.271,1.38452,0.167936,0.005728,0.117152,0.005152,0.004384,0.0048,0.00544,0.0048,0.016384,0.004096
+654,1386.13,0.721436,0.196608,0.005472,0.143264,0.004864,0.004096,0.006144,0.005408,0.004832,0.017888,0.00464
+655,1622.5,0.616333,0.190432,0.006112,0.135168,0.00592,0.004352,0.006048,0.005344,0.00496,0.017888,0.00464
+656,1270.47,0.787109,0.185664,0.005344,0.129888,0.006048,0.004192,0.006144,0.005856,0.005472,0.017344,0.005376
+657,1700.29,0.588135,0.201536,0.004928,0.14864,0.00496,0.005568,0.004672,0.006144,0.005408,0.016512,0.004704
+658,753.426,1.32727,0.197184,0.00672,0.141312,0.005856,0.004416,0.005856,0.005472,0.005024,0.017696,0.004832
+659,1818.02,0.550049,0.185152,0.004928,0.129024,0.006176,0.005632,0.006176,0.004544,0.006144,0.017632,0.004896
+660,1712.73,0.583862,0.194144,0.006144,0.137216,0.006176,0.004064,0.006176,0.006112,0.005568,0.01696,0.005728
+661,1086.04,0.920776,0.179712,0.00576,0.12448,0.004928,0.0056,0.00464,0.006144,0.00544,0.01712,0.0056
+662,1854.23,0.539307,0.18592,0.006144,0.130368,0.0048,0.004096,0.006144,0.006144,0.005568,0.01696,0.005696
+663,1617.37,0.618286,0.176928,0.005024,0.1224,0.005632,0.004896,0.005376,0.005088,0.005824,0.016672,0.006016
+664,1498.72,0.667236,0.180192,0.006112,0.124928,0.006144,0.004128,0.006112,0.005536,0.004704,0.018176,0.004352
+665,1230.03,0.812988,0.196544,0.005408,0.141888,0.005632,0.0048,0.005504,0.004704,0.006144,0.016384,0.00608
+666,1301.35,0.768433,0.21296,0.005376,0.158144,0.004512,0.005344,0.004896,0.00592,0.005952,0.016768,0.006048
+667,1489.45,0.671387,0.219872,0.004832,0.165888,0.006112,0.00416,0.006048,0.005504,0.0048,0.01648,0.006048
+668,1066.11,0.937988,0.45328,0.004768,0.363872,0.040864,0.004896,0.005408,0.004832,0.006048,0.01648,0.006112
+669,1209.87,0.826538,0.190624,0.005344,0.135968,0.0056,0.0048,0.005376,0.004864,0.006016,0.016512,0.006144
+670,1235.6,0.809326,0.384736,0.005376,0.330464,0.004096,0.005792,0.004544,0.006048,0.005696,0.016832,0.005888
+671,1942.15,0.514893,0.18432,0.005408,0.12976,0.00576,0.00448,0.006048,0.005568,0.004768,0.01808,0.004448
+672,1649.62,0.606201,0.178176,0.00576,0.123264,0.005632,0.004608,0.005536,0.004704,0.006176,0.017472,0.005024
+673,1487.02,0.672485,0.183776,0.006144,0.128352,0.0048,0.005696,0.004576,0.00608,0.005888,0.01664,0.0056
+674,1845.88,0.541748,0.184256,0.0048,0.130336,0.004864,0.004064,0.006144,0.005824,0.005536,0.017312,0.005376
+675,1268.9,0.788086,0.195584,0.006112,0.139296,0.00592,0.00432,0.006144,0.005696,0.004544,0.018272,0.00528
+676,1369.9,0.72998,0.254816,0.00496,0.200704,0.006048,0.004192,0.006112,0.005472,0.0048,0.017952,0.004576
+677,883.616,1.13171,0.197472,0.007008,0.14032,0.005088,0.00544,0.0048,0.00608,0.006208,0.017952,0.004576
+678,1546.83,0.646484,0.195072,0.004608,0.141344,0.005536,0.004704,0.005568,0.004672,0.006112,0.018208,0.00432
+679,1681.1,0.594849,0.19104,0.004768,0.136672,0.004672,0.005856,0.004448,0.006048,0.005888,0.01664,0.006048
+680,706.024,1.41638,0.387936,0.004928,0.332896,0.005056,0.005472,0.006464,0.005472,0.005088,0.017792,0.004768
+681,1821.66,0.54895,0.18768,0.005344,0.132,0.006176,0.005248,0.00496,0.005856,0.00544,0.017376,0.00528
+682,1742.24,0.573975,0.179616,0.005472,0.125632,0.005152,0.004896,0.00432,0.00608,0.005376,0.017184,0.005504
+683,1796.49,0.556641,0.188832,0.00448,0.134528,0.004768,0.006112,0.005632,0.004608,0.006144,0.017568,0.004992
+684,1327.93,0.753052,0.200064,0.00448,0.14544,0.006144,0.004064,0.006144,0.005664,0.004576,0.018176,0.005376
+685,1508.66,0.662842,0.186368,0.00576,0.131456,0.006176,0.004064,0.006144,0.005536,0.004704,0.018112,0.004416
+686,748.47,1.33606,0.211584,0.006784,0.155392,0.004384,0.005472,0.004768,0.006112,0.005952,0.016576,0.006144
+687,1515.91,0.659668,0.190752,0.004384,0.136928,0.00544,0.00512,0.00544,0.0048,0.005952,0.016544,0.006144
+688,1704.18,0.586792,0.188416,0.005728,0.133536,0.00576,0.00448,0.005536,0.004704,0.006144,0.017568,0.00496
+689,1258.95,0.794312,0.18656,0.005376,0.132064,0.005824,0.004416,0.006112,0.005472,0.004768,0.018112,0.004416
+690,1773.54,0.563843,0.194528,0.006112,0.139136,0.004224,0.005664,0.00576,0.004992,0.006112,0.017856,0.004672
+691,1712.02,0.584106,0.186112,0.005792,0.13088,0.00464,0.005888,0.004448,0.006048,0.005696,0.016832,0.005888
+692,1740.02,0.574707,0.182848,0.004992,0.128192,0.00496,0.005568,0.004672,0.006112,0.005632,0.016896,0.005824
+693,1420.25,0.704102,0.178304,0.00528,0.12384,0.005728,0.004512,0.005888,0.005472,0.005024,0.017856,0.004704
+694,1476.3,0.677368,0.192512,0.005664,0.137696,0.005696,0.004576,0.006048,0.005312,0.004992,0.017664,0.004864
+695,1600.63,0.624756,0.21408,0.006048,0.157792,0.006144,0.004096,0.006144,0.00576,0.00448,0.018336,0.00528
+696,816.424,1.22485,0.1968,0.007008,0.140352,0.005056,0.005472,0.004768,0.006048,0.005376,0.017248,0.005472
+697,1714.52,0.583252,0.19456,0.005344,0.140096,0.005792,0.004448,0.005856,0.005504,0.004992,0.01776,0.004768
+698,1567.85,0.637817,0.192416,0.004896,0.138688,0.004704,0.005184,0.005024,0.005824,0.004544,0.018304,0.005248
+699,1307.79,0.764648,0.192512,0.004736,0.138368,0.004992,0.005536,0.004704,0.006016,0.005408,0.017248,0.005504
+700,1824.5,0.548096,0.186688,0.004416,0.13312,0.005728,0.004544,0.005696,0.004544,0.005984,0.016512,0.006144
+701,1600.63,0.624756,0.184576,0.004352,0.130496,0.004704,0.005824,0.004576,0.005952,0.006144,0.017504,0.005024
+702,1419.51,0.704468,0.181504,0.005472,0.1272,0.004576,0.00528,0.004928,0.005888,0.00544,0.017344,0.005376
+703,1869.04,0.535034,0.188416,0.006144,0.133152,0.006112,0.004096,0.006144,0.005632,0.004608,0.01824,0.004288
+704,1591.61,0.628296,0.197536,0.005024,0.141312,0.006144,0.005344,0.004896,0.006176,0.006112,0.017728,0.0048
+705,1627.98,0.614258,0.186368,0.005696,0.132672,0.005024,0.00512,0.005088,0.005728,0.004512,0.018208,0.00432
+706,661.392,1.51196,0.194464,0.006912,0.138624,0.004736,0.005152,0.005088,0.005696,0.0056,0.017376,0.00528
+707,904.194,1.10596,0.184224,0.004896,0.129024,0.006176,0.005152,0.005056,0.005792,0.004448,0.0184,0.00528
+708,1358.54,0.736084,0.184864,0.004608,0.131072,0.005984,0.004256,0.006016,0.005472,0.004896,0.017984,0.004576
+709,1728.63,0.578491,0.186432,0.005344,0.131936,0.006144,0.004096,0.006144,0.005472,0.004768,0.017952,0.004576
+710,1721.73,0.580811,0.183392,0.006144,0.126976,0.005664,0.004576,0.005728,0.006144,0.004512,0.018368,0.00528
+711,1646.3,0.607422,0.187168,0.004896,0.132992,0.0056,0.004768,0.005568,0.00624,0.004576,0.017728,0.0048
+712,1723.18,0.580322,0.184416,0.00464,0.130464,0.004704,0.005792,0.004544,0.006048,0.005504,0.017024,0.005696
+713,1448.89,0.690186,0.193056,0.00464,0.13888,0.0056,0.004928,0.005376,0.004992,0.005952,0.016544,0.006144
+714,1738.54,0.575195,0.194816,0.004352,0.141152,0.004256,0.0056,0.00464,0.007328,0.00496,0.017888,0.00464
+715,766.467,1.30469,0.202496,0.008128,0.143424,0.00608,0.00416,0.006112,0.005472,0.006752,0.01648,0.005888
+716,1835.54,0.5448,0.190464,0.00544,0.135904,0.006112,0.004128,0.00592,0.00544,0.004992,0.017888,0.00464
+717,1643.33,0.608521,0.19456,0.006112,0.139296,0.005696,0.004544,0.005504,0.004768,0.006112,0.017504,0.005024
+718,1421.48,0.703491,0.186368,0.005504,0.131744,0.005728,0.004512,0.005824,0.005472,0.005056,0.017824,0.004704
+719,1687.68,0.592529,0.182272,0.005888,0.127264,0.005664,0.004544,0.005568,0.004704,0.006112,0.018176,0.004352
+720,1636.44,0.611084,0.182272,0.005664,0.127456,0.005824,0.004416,0.005984,0.005472,0.004928,0.017952,0.004576
+721,1809.99,0.55249,0.181792,0.005792,0.126496,0.004928,0.0056,0.00464,0.006144,0.005472,0.017056,0.005664
+722,1586.06,0.630493,0.17968,0.006144,0.124768,0.004256,0.0056,0.00464,0.006176,0.005408,0.01712,0.005568
+723,1655.62,0.604004,0.192896,0.0048,0.137216,0.006144,0.005664,0.004672,0.00608,0.005664,0.016832,0.005824
+724,1722.82,0.580444,0.18432,0.00576,0.129408,0.005664,0.004576,0.00576,0.00448,0.006144,0.0176,0.004928
+725,844.014,1.18481,0.204832,0.00784,0.147808,0.005664,0.004576,0.005664,0.004576,0.006144,0.017888,0.004672
+726,1756.43,0.569336,0.182144,0.005376,0.127904,0.004096,0.005888,0.004544,0.005984,0.005696,0.0168,0.005856
+727,1615.78,0.618896,0.180256,0.0048,0.124928,0.006176,0.00544,0.004768,0.006016,0.00544,0.017216,0.005472
+728,1214.53,0.823364,0.417056,0.005664,0.360928,0.006176,0.005216,0.005024,0.005856,0.00544,0.017344,0.005408
+729,1724.99,0.579712,0.181152,0.005024,0.126976,0.005856,0.004384,0.005792,0.005728,0.004864,0.017984,0.004544
+730,1041.05,0.960571,0.19248,0.005984,0.137344,0.005152,0.004896,0.005376,0.005056,0.006144,0.017664,0.004864
+731,1849.63,0.540649,0.188416,0.005888,0.133376,0.006176,0.004064,0.006144,0.005344,0.004896,0.017952,0.004576
+732,1730.83,0.577759,0.188608,0.005024,0.134304,0.00496,0.005536,0.004704,0.00608,0.005312,0.01728,0.005408
+733,1641.35,0.609253,0.218752,0.00576,0.163552,0.0048,0.005728,0.004544,0.00608,0.0056,0.016928,0.00576
+734,1453.51,0.687988,0.19296,0.00512,0.139264,0.004096,0.005824,0.004544,0.006048,0.005504,0.016992,0.005568
+735,772.612,1.29431,0.200064,0.007488,0.142336,0.006176,0.005248,0.00496,0.00576,0.00448,0.018336,0.00528
+736,1666.06,0.60022,0.1864,0.005344,0.131904,0.006016,0.004224,0.006144,0.005504,0.004736,0.018144,0.004384
+737,1810.39,0.552368,0.190304,0.004768,0.13504,0.0056,0.004768,0.005536,0.006624,0.005312,0.017344,0.005312
+738,1387.3,0.720825,0.182176,0.005536,0.127456,0.004224,0.005632,0.004608,0.006144,0.005856,0.016672,0.006048
+739,1606.59,0.622437,0.18848,0.005344,0.133984,0.005984,0.004256,0.00592,0.005632,0.004832,0.017984,0.004544
+740,1821.25,0.549072,0.189952,0.00576,0.13472,0.004928,0.0056,0.00464,0.006176,0.00544,0.017088,0.0056
+741,1497.62,0.667725,0.186816,0.004544,0.132416,0.0048,0.00576,0.005824,0.0048,0.006112,0.016416,0.006144
+742,1685.94,0.59314,0.185024,0.0048,0.131072,0.005792,0.004448,0.005888,0.004352,0.006144,0.017696,0.004832
+743,1847.13,0.541382,0.189664,0.006016,0.133248,0.006176,0.00528,0.004928,0.005888,0.005408,0.017376,0.005344
+744,1614.82,0.619263,0.185472,0.006016,0.129152,0.006176,0.005152,0.005088,0.005728,0.00448,0.0184,0.00528
+745,1082.88,0.923462,0.655424,0.004704,0.601216,0.004992,0.005568,0.004672,0.006144,0.005408,0.017152,0.005568
+746,1352.26,0.739502,0.180992,0.004864,0.126976,0.00576,0.00448,0.005792,0.00448,0.006144,0.018176,0.00432
+747,1548.58,0.645752,0.182656,0.005024,0.127008,0.006048,0.00416,0.006144,0.006144,0.00544,0.017088,0.0056
+748,1789.04,0.55896,0.407872,0.004416,0.354304,0.00608,0.00416,0.006112,0.00544,0.004832,0.018048,0.00448
+749,1171.46,0.853638,0.188384,0.006144,0.132928,0.005632,0.004832,0.005472,0.004768,0.005952,0.016544,0.006112
+750,1886.69,0.530029,0.187904,0.005696,0.133024,0.004672,0.0056,0.004608,0.006144,0.005568,0.01696,0.005632
+751,1467.31,0.681519,0.188064,0.006144,0.132448,0.004768,0.00576,0.004544,0.006112,0.005568,0.016928,0.005792
+752,1852.56,0.539795,0.184608,0.004384,0.131072,0.005664,0.004576,0.005664,0.004576,0.006144,0.017632,0.004896
+753,1021.19,0.979248,0.198592,0.005376,0.14208,0.006176,0.005152,0.005056,0.00576,0.00608,0.016864,0.006048
+754,1557.71,0.641968,0.19824,0.005344,0.144128,0.004288,0.0056,0.00464,0.006112,0.00544,0.01712,0.005568
+755,685.925,1.45789,0.20688,0.006624,0.149504,0.006144,0.005344,0.004896,0.005952,0.00544,0.01728,0.005696
+756,1649.62,0.606201,0.208832,0.005984,0.15376,0.005984,0.004256,0.005984,0.005504,0.004896,0.016384,0.00608
+757,1594.08,0.627319,0.215008,0.005344,0.16,0.004704,0.005728,0.004512,0.006176,0.00592,0.016576,0.006048
+758,1225.06,0.816284,0.182272,0.005856,0.128416,0.00496,0.00416,0.006112,0.005472,0.0048,0.018048,0.004448
+759,1733.76,0.576782,0.186528,0.005344,0.131072,0.005056,0.006144,0.005504,0.004736,0.006144,0.01744,0.005088
+760,1702.06,0.587524,0.180672,0.005024,0.126432,0.00464,0.005728,0.004512,0.006144,0.00544,0.017088,0.005664
+761,1630.9,0.613159,0.188384,0.006016,0.131168,0.006144,0.005216,0.005024,0.006144,0.006112,0.016416,0.006144
+762,1766.66,0.56604,0.17792,0.006016,0.12304,0.004064,0.00592,0.004352,0.006144,0.005696,0.0168,0.005888
+763,1622.5,0.616333,0.18208,0.004768,0.126976,0.006144,0.005248,0.004992,0.005824,0.004416,0.018432,0.00528
+764,1121.73,0.891479,0.702464,0.006144,0.646944,0.0056,0.004896,0.005984,0.005472,0.004896,0.017952,0.004576
+765,1279.6,0.781494,0.18688,0.00464,0.133088,0.005632,0.00464,0.005664,0.006048,0.00464,0.018208,0.00432
+766,1533.22,0.652222,0.183264,0.005088,0.129024,0.004096,0.005856,0.006208,0.005504,0.00496,0.017952,0.004576
+767,1792.56,0.557861,0.183552,0.006144,0.128128,0.004992,0.005376,0.004864,0.005952,0.00544,0.01728,0.005376
+768,1441.75,0.693604,0.189952,0.005632,0.134976,0.0048,0.005728,0.004576,0.006048,0.00544,0.01712,0.005632
+769,1600,0.625,0.190304,0.006144,0.134784,0.0056,0.004928,0.005408,0.004928,0.005824,0.016704,0.005984
+770,1850.88,0.540283,0.182304,0.005376,0.129184,0.004736,0.004096,0.00608,0.005472,0.004832,0.017984,0.004544
+771,1553.87,0.643555,0.184288,0.00592,0.129216,0.00592,0.004352,0.005952,0.005504,0.004896,0.017952,0.004576
+772,1836.36,0.544556,0.182528,0.005344,0.128,0.006176,0.004064,0.006144,0.005408,0.004832,0.018016,0.004544
+773,1267.52,0.78894,0.188288,0.00608,0.132672,0.005632,0.004896,0.005408,0.005024,0.005856,0.016672,0.006048
+774,1909.56,0.523682,0.190528,0.005376,0.13552,0.004704,0.005152,0.005056,0.006144,0.005856,0.016672,0.006048
+775,630.639,1.58569,0.221184,0.008192,0.16384,0.006144,0.004096,0.006144,0.005504,0.004768,0.017824,0.004672
+776,1573.57,0.635498,0.19664,0.006016,0.14144,0.005728,0.004512,0.00576,0.00448,0.006144,0.017728,0.004832
+777,1678.69,0.595703,0.190464,0.006144,0.13696,0.0056,0.004896,0.005248,0.006048,0.005088,0.016032,0.004448
+778,1065.83,0.938232,0.2272,0.004896,0.172032,0.0056,0.00464,0.006144,0.005728,0.004544,0.0184,0.005216
+779,1813.19,0.551514,0.192256,0.005696,0.137088,0.004672,0.005888,0.004544,0.005952,0.005728,0.0168,0.005888
+780,1658.97,0.602783,0.182336,0.005344,0.127808,0.005632,0.004608,0.005664,0.004576,0.006176,0.017536,0.004992
+781,1725.72,0.579468,0.18816,0.006144,0.132448,0.004768,0.00576,0.004544,0.00608,0.005728,0.0168,0.005888
+782,1219.23,0.82019,0.185696,0.005472,0.129184,0.00464,0.00528,0.00496,0.00768,0.00576,0.017248,0.005472
+783,1759.83,0.568237,0.185504,0.006112,0.129056,0.006144,0.005312,0.004928,0.005824,0.00544,0.017408,0.00528
+784,1174.99,0.851074,0.682688,0.004768,0.628672,0.005632,0.004672,0.005664,0.00464,0.00608,0.017632,0.004928
+785,1174.31,0.851562,0.188288,0.006112,0.131072,0.006176,0.005248,0.00608,0.005024,0.005856,0.016672,0.006048
+786,1822.06,0.548828,0.18288,0.004704,0.13008,0.00496,0.004224,0.006048,0.005312,0.005024,0.017856,0.004672
+787,1534.08,0.651855,0.184704,0.00448,0.131072,0.005856,0.005504,0.005024,0.005824,0.004416,0.0184,0.004128
+788,1434.42,0.697144,0.189888,0.005952,0.134528,0.004928,0.005536,0.004704,0.006144,0.00544,0.017088,0.005568
+789,1697.47,0.589111,0.186272,0.005952,0.130752,0.004608,0.00592,0.005408,0.005056,0.005856,0.016672,0.006048
+790,1659.98,0.602417,0.188352,0.0056,0.133664,0.004096,0.005792,0.0056,0.004992,0.005952,0.016576,0.00608
+791,1556.53,0.642456,0.18432,0.006144,0.126976,0.006176,0.005152,0.00656,0.00464,0.006144,0.017568,0.00496
+792,1495.16,0.668823,0.18272,0.004928,0.126976,0.006176,0.00528,0.00496,0.006112,0.005504,0.017024,0.00576
+793,1790.21,0.558594,0.191936,0.00592,0.135392,0.006048,0.004192,0.006144,0.005504,0.00608,0.017088,0.005568
+794,1321.29,0.756836,0.459296,0.005088,0.40144,0.008096,0.005664,0.00464,0.006144,0.005536,0.016992,0.005696
+795,1024.51,0.976074,0.198112,0.006144,0.142336,0.00512,0.00544,0.0048,0.006016,0.005312,0.017344,0.0056
+796,1622.82,0.616211,0.194816,0.005376,0.140128,0.005632,0.004768,0.005504,0.004736,0.006016,0.016544,0.006112
+797,950.569,1.052,0.20032,0.005376,0.146176,0.005792,0.004448,0.00592,0.005472,0.004992,0.016384,0.00576
+798,1593.15,0.627686,0.188928,0.004576,0.135168,0.005312,0.004928,0.005248,0.004992,0.00592,0.016608,0.006176
+799,1776.62,0.562866,0.187712,0.005664,0.131552,0.005824,0.004416,0.006144,0.005984,0.00544,0.017248,0.00544
+800,1598.13,0.625732,0.18224,0.006112,0.126976,0.006144,0.004096,0.006144,0.005472,0.0048,0.018112,0.004384
+801,1500.64,0.666382,0.188288,0.004928,0.13312,0.006176,0.004064,0.006144,0.005632,0.004608,0.018336,0.00528
+802,1456.1,0.686768,0.186304,0.004864,0.131072,0.00592,0.004352,0.00592,0.005472,0.006016,0.017376,0.005312
+803,1679.38,0.595459,0.19456,0.006048,0.13936,0.006112,0.004128,0.006144,0.005312,0.004928,0.017984,0.004544
+804,1221.05,0.81897,0.660576,0.006144,0.60416,0.006144,0.005216,0.005056,0.005728,0.004544,0.018304,0.00528
+805,1252.79,0.798218,0.190336,0.005664,0.1336,0.006112,0.004128,0.006144,0.006144,0.005824,0.016704,0.006016
+806,1580.86,0.632568,0.182688,0.004672,0.129024,0.005184,0.004896,0.005344,0.005088,0.005792,0.016736,0.005952
+807,1868.19,0.535278,0.186304,0.004416,0.132704,0.0056,0.0048,0.004384,0.006144,0.0056,0.016928,0.005728
+808,1371.05,0.72937,0.181792,0.006144,0.126304,0.004768,0.005728,0.004512,0.006176,0.00544,0.017056,0.005664
+809,1783.2,0.560791,0.18432,0.0056,0.129568,0.0056,0.004672,0.005632,0.004576,0.006144,0.016384,0.006144
+810,1677.31,0.596191,0.186368,0.005696,0.13152,0.005568,0.004672,0.005536,0.004704,0.006048,0.01648,0.006144
+811,1677.31,0.596191,0.184384,0.004576,0.130368,0.0048,0.005728,0.004576,0.006112,0.005536,0.01696,0.005728
+812,1702.41,0.587402,0.179904,0.005344,0.124896,0.004928,0.0056,0.0048,0.005984,0.005664,0.016896,0.005792
+813,1432.92,0.697876,0.204832,0.005824,0.14976,0.0056,0.004704,0.005696,0.004544,0.006176,0.0176,0.004928
+814,1834.3,0.545166,0.192512,0.0056,0.13776,0.005216,0.004928,0.006176,0.005472,0.004832,0.017824,0.004704
+815,793.491,1.26025,0.198976,0.006624,0.143232,0.005792,0.004416,0.005856,0.005472,0.005056,0.01776,0.004768
+816,1501.74,0.665894,0.221184,0.005376,0.165824,0.00496,0.005568,0.00464,0.006176,0.006048,0.01648,0.006112
+817,1815.2,0.550903,0.188416,0.006176,0.1328,0.0056,0.004896,0.005408,0.006528,0.00448,0.018368,0.00416
+818,1195.39,0.836548,0.382976,0.00608,0.327744,0.005664,0.004608,0.005664,0.004576,0.006112,0.017632,0.004896
+819,1839.25,0.543701,0.188032,0.004384,0.134528,0.004672,0.005856,0.004416,0.006048,0.00544,0.017152,0.005536
+820,1366.02,0.732056,0.212288,0.00432,0.159296,0.0056,0.004896,0.005344,0.005088,0.005824,0.016672,0.005248
+821,1724.63,0.579834,0.193824,0.005344,0.13808,0.006144,0.005184,0.005056,0.00592,0.005408,0.017344,0.005344
+822,1633.17,0.612305,0.19472,0.005376,0.140192,0.005856,0.004384,0.005888,0.00544,0.005088,0.018048,0.004448
+823,1615.14,0.619141,0.193504,0.005088,0.139264,0.00608,0.00416,0.00608,0.005472,0.004864,0.017984,0.004512
+824,1614.82,0.619263,0.206848,0.005056,0.151552,0.006016,0.004224,0.006112,0.005504,0.0048,0.018336,0.005248
+825,1415.1,0.706665,0.46832,0.006112,0.372416,0.006528,0.004096,0.006112,0.00576,0.016768,0.045088,0.00544
+826,954.556,1.04761,0.190624,0.005344,0.137376,0.004896,0.004096,0.006144,0.005504,0.004736,0.018048,0.00448
+827,1756.06,0.569458,0.19024,0.00448,0.135168,0.006048,0.004192,0.006112,0.006144,0.00544,0.017088,0.005568
+828,1189.31,0.84082,0.386688,0.005824,0.331456,0.004736,0.00576,0.00448,0.006144,0.005568,0.016992,0.005728
+829,1800.44,0.55542,0.188416,0.00608,0.133152,0.0056,0.004672,0.0056,0.00464,0.006048,0.01648,0.006144
+830,1629.92,0.613525,0.180224,0.006144,0.126144,0.00496,0.004096,0.006112,0.005536,0.004704,0.018144,0.004384
+831,1537.83,0.650269,0.184544,0.004832,0.130176,0.004992,0.005536,0.004704,0.00608,0.005504,0.01712,0.0056
+832,1789.82,0.558716,0.189568,0.005984,0.13312,0.0056,0.0048,0.006176,0.005696,0.004512,0.0184,0.00528
+833,1263.22,0.791626,0.190464,0.00544,0.135872,0.00592,0.00432,0.006048,0.005312,0.005024,0.017632,0.004896
+834,1574.17,0.635254,0.215008,0.0056,0.161568,0.004832,0.004128,0.006112,0.005696,0.004544,0.018176,0.004352
+835,724.763,1.37976,0.20688,0.008192,0.149504,0.005664,0.004576,0.00576,0.00448,0.006144,0.017696,0.004864
+836,1599.38,0.625244,0.190752,0.004864,0.135168,0.006144,0.004096,0.006144,0.006144,0.005504,0.017024,0.005664
+837,1474.71,0.678101,0.195904,0.005856,0.140704,0.004992,0.005568,0.004672,0.006016,0.005376,0.01728,0.00544
+838,1292.52,0.773682,0.186368,0.006144,0.131104,0.005504,0.004736,0.005504,0.00576,0.005088,0.017888,0.00464
+839,1625.72,0.615112,0.187232,0.00496,0.13312,0.006048,0.004192,0.006176,0.004064,0.006176,0.017568,0.004928
+840,1435.18,0.696777,0.186368,0.005344,0.131168,0.0048,0.005696,0.006016,0.004672,0.006144,0.017568,0.00496
+841,1686.64,0.592896,0.184352,0.005344,0.129888,0.006016,0.004224,0.005984,0.005472,0.004896,0.017952,0.004576
+842,1059.63,0.943726,0.212832,0.005376,0.157952,0.00464,0.005248,0.00496,0.006144,0.005824,0.016704,0.005984
+843,1529.5,0.653809,0.21504,0.005536,0.160352,0.006144,0.004096,0.006144,0.0056,0.00464,0.017728,0.0048
+844,783.923,1.27563,0.747456,0.00576,0.69216,0.005632,0.004928,0.005408,0.00496,0.00592,0.016608,0.00608
+845,1660.99,0.602051,0.202208,0.006016,0.145536,0.005952,0.005504,0.00496,0.006112,0.00544,0.017088,0.0056
+846,1598.44,0.62561,0.200768,0.005344,0.146336,0.005184,0.004928,0.005376,0.005024,0.005888,0.01664,0.006048
+847,1258.57,0.794556,0.20272,0.006112,0.147264,0.005632,0.0048,0.005536,0.004704,0.006112,0.016416,0.006144
+848,1333.55,0.749878,0.244256,0.00464,0.18992,0.00464,0.005888,0.004352,0.006176,0.006112,0.01776,0.004768
+849,1558.01,0.641846,0.20896,0.005344,0.154464,0.005984,0.004256,0.005984,0.005504,0.004896,0.01808,0.004448
+850,1782.42,0.561035,0.188416,0.006144,0.133152,0.005536,0.004704,0.0056,0.00464,0.006112,0.018176,0.004352
+851,792.34,1.26208,0.189888,0.005344,0.135104,0.004992,0.005536,0.004704,0.006112,0.005408,0.017184,0.005504
+852,1544.79,0.647339,0.196064,0.006176,0.140768,0.005632,0.004896,0.005408,0.005056,0.006144,0.016384,0.0056
+853,848.297,1.17883,0.192928,0.006624,0.137152,0.00544,0.004832,0.005472,0.004768,0.005952,0.016544,0.006144
+854,1785.53,0.560059,0.188416,0.005984,0.134528,0.004928,0.004064,0.006144,0.005664,0.004608,0.01824,0.004256
+855,1601.88,0.624268,0.186368,0.006112,0.131072,0.005664,0.004576,0.005728,0.004512,0.006144,0.017472,0.005088
+856,1432.67,0.697998,0.184544,0.004832,0.130464,0.004704,0.005824,0.004544,0.005984,0.005472,0.017056,0.005664
+857,1554.46,0.643311,0.186368,0.0056,0.131392,0.0056,0.004864,0.005408,0.004832,0.00608,0.016448,0.006144
+858,1780.1,0.561768,0.189632,0.005376,0.135712,0.004352,0.005504,0.004736,0.005856,0.005408,0.017376,0.005312
+859,1603.13,0.623779,0.186368,0.006144,0.131072,0.005632,0.00464,0.006112,0.005568,0.004672,0.018176,0.004352
+860,1822.88,0.548584,0.192384,0.006112,0.13712,0.005632,0.004704,0.00592,0.005536,0.00496,0.016352,0.006048
+861,1603.44,0.623657,0.188672,0.004576,0.13312,0.006176,0.00528,0.004928,0.006144,0.005728,0.016832,0.005888
+862,1653.95,0.604614,0.182048,0.005536,0.127328,0.004384,0.005472,0.006048,0.004832,0.00592,0.016608,0.00592
+863,832.774,1.20081,0.466944,0.008192,0.411648,0.005792,0.00448,0.00576,0.005472,0.00512,0.016384,0.004096
+864,1328.15,0.75293,0.193888,0.006112,0.138688,0.004704,0.005824,0.004544,0.006048,0.005472,0.017056,0.00544
+865,1691.86,0.591064,0.18432,0.005568,0.129088,0.004608,0.00592,0.006016,0.005696,0.004896,0.017952,0.004576
+866,1203.64,0.830811,0.1864,0.004864,0.133088,0.004128,0.005696,0.004544,0.006144,0.00528,0.017248,0.005408
+867,1920.75,0.52063,0.18816,0.004512,0.132768,0.0056,0.004928,0.006208,0.005824,0.005632,0.017216,0.005472
+868,1628.95,0.613892,0.188416,0.006144,0.13312,0.006048,0.004224,0.006048,0.00544,0.004864,0.018016,0.004512
+869,1545.08,0.647217,0.193856,0.006144,0.137248,0.005824,0.004416,0.005888,0.00608,0.005568,0.01728,0.005408
+870,1572.96,0.635742,0.215136,0.005376,0.161856,0.004896,0.004128,0.006112,0.005376,0.004864,0.017856,0.004672
+871,1223.23,0.817505,0.243392,0.005792,0.18816,0.004736,0.005792,0.004544,0.006016,0.005664,0.016864,0.005824
+872,1102.56,0.906982,0.70864,0.005344,0.654176,0.005664,0.004544,0.005696,0.004544,0.006176,0.0176,0.004896
+873,1346.48,0.742676,0.191456,0.005088,0.137248,0.006048,0.00416,0.005984,0.005472,0.004928,0.017888,0.00464
+874,1555.64,0.642822,0.185056,0.005088,0.130208,0.00496,0.004096,0.006112,0.006208,0.00608,0.016416,0.005888
+875,1471,0.67981,0.19248,0.005984,0.135296,0.006144,0.004096,0.006144,0.006144,0.006144,0.016384,0.006144
+876,1125.74,0.888306,0.210208,0.005344,0.155616,0.004928,0.005568,0.004672,0.006112,0.005408,0.017152,0.005408
+877,1458.95,0.685425,0.20704,0.005344,0.152512,0.005632,0.004608,0.00576,0.00448,0.007232,0.017024,0.004448
+878,1362.61,0.733887,0.236224,0.0048,0.182304,0.005472,0.004768,0.005504,0.004704,0.006144,0.017984,0.004544
+879,1713.45,0.583618,0.190496,0.005888,0.135424,0.00608,0.00416,0.00608,0.005344,0.00496,0.017728,0.004832
+880,1663.69,0.601074,0.208736,0.005792,0.153408,0.00464,0.005888,0.004544,0.005952,0.00576,0.0168,0.005952
+881,1417.3,0.705566,0.213216,0.004704,0.159616,0.005632,0.004768,0.00544,0.004768,0.006144,0.016416,0.005728
+882,1116.08,0.895996,0.661472,0.004832,0.606208,0.006144,0.005408,0.004864,0.00592,0.00544,0.01728,0.005376
+883,1168.12,0.856079,0.198464,0.004896,0.142816,0.004672,0.005888,0.005344,0.005088,0.006176,0.018304,0.00528
+884,1128.06,0.886475,0.205376,0.004896,0.1512,0.005632,0.004896,0.006048,0.005472,0.004928,0.016384,0.00592
+885,1313.66,0.76123,0.198688,0.00576,0.143744,0.006112,0.004128,0.006144,0.005472,0.004768,0.01808,0.00448
+886,1810.39,0.552368,0.201216,0.004896,0.146912,0.004672,0.005184,0.005024,0.006144,0.005696,0.016832,0.005856
+887,1621.54,0.616699,0.19104,0.004864,0.135168,0.005856,0.004416,0.006112,0.006144,0.005792,0.016736,0.005952
+888,1445.05,0.692017,0.193824,0.005632,0.137728,0.006144,0.00528,0.00496,0.005888,0.00544,0.017344,0.005408
+889,1632.2,0.612671,0.198784,0.005344,0.14432,0.005536,0.004704,0.005632,0.004576,0.006144,0.017632,0.004896
+890,1622.82,0.616211,0.19184,0.00544,0.137664,0.004384,0.005472,0.004736,0.00608,0.005312,0.01728,0.005472
+891,1464.69,0.682739,0.212992,0.005376,0.158496,0.005696,0.004544,0.005696,0.004512,0.006144,0.017504,0.005024
+892,740.219,1.35095,0.202208,0.006624,0.145376,0.006176,0.004064,0.006144,0.005568,0.004672,0.018144,0.00544
+893,1722.82,0.580444,0.19456,0.005888,0.13952,0.006176,0.004064,0.006144,0.005664,0.004576,0.018272,0.004256
+894,1650.61,0.605835,0.188416,0.005376,0.135712,0.00432,0.005536,0.004704,0.005984,0.005472,0.016768,0.004544
+895,1362.16,0.734131,0.186976,0.004672,0.132928,0.0056,0.004832,0.005472,0.004768,0.006176,0.01744,0.005088
+896,1741.5,0.574219,0.192512,0.005632,0.137728,0.005856,0.004416,0.006112,0.005664,0.004576,0.017696,0.004832
+897,1681.1,0.594849,0.18432,0.006144,0.129024,0.006144,0.004096,0.006144,0.005664,0.004576,0.018272,0.004256
+898,1514.51,0.660278,0.186336,0.005888,0.131296,0.005696,0.004576,0.005728,0.00448,0.006144,0.017632,0.004896
+899,1864.36,0.536377,0.181792,0.005376,0.12688,0.00496,0.005568,0.004672,0.006144,0.005472,0.017056,0.005664
+900,1533.22,0.652222,0.192544,0.004512,0.138816,0.0056,0.004896,0.005344,0.005056,0.005632,0.016896,0.005792
+901,1828.57,0.546875,0.1816,0.006144,0.124928,0.006144,0.005312,0.004928,0.006016,0.00544,0.017216,0.005472
+902,678.202,1.47449,0.192512,0.007616,0.117312,0.00576,0.022912,0.006144,0.00592,0.00544,0.016704,0.004704
+903,1640.7,0.609497,0.181632,0.006144,0.124928,0.00592,0.005824,0.00464,0.006144,0.005376,0.017152,0.005504
+904,1597.82,0.625854,0.179328,0.005344,0.123712,0.006144,0.00512,0.00512,0.005696,0.004544,0.018368,0.00528
+905,1611.01,0.620728,0.182272,0.0056,0.127328,0.0056,0.004736,0.005632,0.004704,0.006176,0.017472,0.005024
+906,1666.4,0.600098,0.178176,0.006144,0.122912,0.004064,0.006176,0.005664,0.004544,0.006144,0.017696,0.004832
+907,1752.3,0.570679,0.182304,0.004736,0.126976,0.006144,0.005472,0.004768,0.006112,0.00544,0.01712,0.005536
+908,1556.23,0.642578,0.183648,0.005344,0.127872,0.00592,0.005536,0.004928,0.005888,0.00544,0.017344,0.005376
+909,1827.35,0.547241,0.183776,0.005536,0.127584,0.005856,0.004384,0.006144,0.006144,0.00544,0.017088,0.0056
+910,1358.09,0.736328,0.202624,0.005312,0.148288,0.004064,0.005856,0.004544,0.006016,0.005696,0.016832,0.006016
+911,1734.12,0.57666,0.194592,0.006144,0.139264,0.005632,0.004608,0.005696,0.004544,0.006176,0.017632,0.004896
+912,782.277,1.27832,0.18672,0.006624,0.130944,0.00576,0.004512,0.005696,0.004512,0.006144,0.017536,0.004992
+913,1643.66,0.608398,0.198208,0.004384,0.144416,0.005088,0.00544,0.0048,0.006016,0.005408,0.017248,0.005408
+914,1839.25,0.543701,0.17984,0.005312,0.125696,0.004192,0.005664,0.004576,0.006144,0.005536,0.016992,0.005728
+915,1415.83,0.706299,0.186752,0.00448,0.13312,0.005888,0.004352,0.005728,0.004512,0.006144,0.0176,0.004928
+916,1577.81,0.633789,0.180224,0.005728,0.125344,0.006176,0.00512,0.005088,0.0056,0.00464,0.018272,0.004256
+917,1807.19,0.553345,0.182272,0.006016,0.127104,0.005696,0.005632,0.005056,0.005728,0.004544,0.01824,0.004256
+918,1082.6,0.923706,0.190208,0.005824,0.134976,0.004576,0.00528,0.00496,0.006144,0.005728,0.0168,0.00592
+919,1762.86,0.567261,0.186432,0.00496,0.131072,0.006176,0.00528,0.004928,0.005888,0.00544,0.017344,0.005344
+920,1456.1,0.686768,0.229376,0.00544,0.174624,0.0056,0.004832,0.005504,0.004704,0.006016,0.016512,0.006144
+921,1195.74,0.836304,0.665376,0.006144,0.609824,0.005632,0.004896,0.005376,0.005056,0.005824,0.016704,0.00592
+922,1326.21,0.754028,0.184992,0.004768,0.132096,0.00496,0.004288,0.005856,0.005504,0.004992,0.01792,0.004608
+923,1397.24,0.715698,0.182784,0.004608,0.128224,0.004928,0.005856,0.00544,0.005056,0.006144,0.017728,0.0048
+924,1871.17,0.534424,0.188608,0.004672,0.1344,0.004864,0.005696,0.004544,0.006144,0.005568,0.01696,0.00576
+925,1347.59,0.742065,0.188416,0.005664,0.133472,0.0056,0.004768,0.006144,0.005568,0.004672,0.018144,0.004384
+926,1780.87,0.561523,0.181472,0.005952,0.126528,0.004704,0.004096,0.006176,0.005856,0.00544,0.017344,0.005376
+927,1490.81,0.670776,0.180224,0.00592,0.125184,0.005984,0.004256,0.006016,0.005504,0.004832,0.017984,0.004544
+928,1871.17,0.534424,0.18576,0.005536,0.130848,0.004928,0.005472,0.004768,0.006048,0.00544,0.017216,0.005504
+929,1604.7,0.623169,0.184448,0.004704,0.130624,0.004544,0.005664,0.004576,0.006144,0.005504,0.017024,0.005664
+930,1524.09,0.656128,0.186368,0.00544,0.131808,0.005376,0.004864,0.005376,0.004832,0.006112,0.01744,0.00512
+931,1575.69,0.634644,0.196608,0.006016,0.141088,0.0056,0.004896,0.005408,0.004928,0.006144,0.017536,0.004992
+932,887.541,1.12671,0.199328,0.006816,0.14336,0.005984,0.004256,0.006112,0.005472,0.0048,0.018112,0.004416
+933,1647.63,0.606934,0.190464,0.006016,0.13456,0.004832,0.005664,0.005856,0.004896,0.006112,0.016384,0.006144
+934,1663.01,0.601318,0.18784,0.004448,0.133152,0.005152,0.004928,0.006272,0.005728,0.004512,0.0184,0.005248
+935,1225.61,0.815918,0.407552,0.005312,0.353088,0.006176,0.004064,0.006144,0.005536,0.004704,0.01808,0.004448
+936,1777.39,0.562622,0.186464,0.005344,0.131264,0.0048,0.006144,0.005504,0.004736,0.006144,0.017472,0.005056
+937,1533.22,0.652222,0.183616,0.005344,0.127968,0.006144,0.004128,0.006112,0.005664,0.004576,0.0184,0.00528
+938,1954.66,0.511597,0.183744,0.006112,0.128928,0.004224,0.0056,0.00464,0.006112,0.00544,0.01712,0.005568
+939,1424.2,0.702148,0.178528,0.004448,0.124928,0.006144,0.004128,0.006048,0.005472,0.004832,0.017952,0.004576
+940,888.214,1.12585,0.190144,0.006112,0.133184,0.00576,0.00448,0.005856,0.005472,0.006528,0.016928,0.005824
+941,1373.11,0.728271,0.200704,0.005376,0.14608,0.0056,0.004736,0.005536,0.005984,0.004864,0.01808,0.004448
+942,840.033,1.19043,0.18768,0.007744,0.131104,0.004512,0.005344,0.004896,0.00592,0.00544,0.017312,0.005408
+943,1778.16,0.562378,0.181984,0.006144,0.126208,0.004864,0.005856,0.004512,0.006016,0.005696,0.016864,0.005824
+944,1525.23,0.65564,0.41376,0.006144,0.3584,0.006144,0.005248,0.004992,0.005856,0.005408,0.017408,0.00416
+945,1231.14,0.812256,0.181568,0.005568,0.126624,0.005024,0.005568,0.004672,0.005984,0.00544,0.01728,0.005408
+946,1913.12,0.522705,0.182272,0.00592,0.1272,0.00512,0.004928,0.004416,0.006048,0.006112,0.017568,0.00496
+947,1666.4,0.600098,0.182912,0.004896,0.126976,0.006176,0.005952,0.005376,0.005024,0.005856,0.016672,0.005984
+948,1504.78,0.664551,0.184352,0.004864,0.130144,0.005024,0.005536,0.004704,0.00608,0.00528,0.017312,0.005408
+949,1336.6,0.748169,0.194176,0.00432,0.130272,0.004896,0.0056,0.004672,0.006112,0.014336,0.018432,0.005536
+950,1699.59,0.588379,0.191392,0.005024,0.137216,0.005856,0.004384,0.005952,0.005472,0.004992,0.017888,0.004608
+951,1192.78,0.838379,0.657408,0.005888,0.6024,0.005728,0.005504,0.00512,0.005696,0.004544,0.018272,0.004256
+952,1230.95,0.812378,0.18512,0.004928,0.13104,0.0056,0.004672,0.00592,0.005472,0.00496,0.01792,0.004608
+953,1566.65,0.638306,0.19184,0.006144,0.135168,0.006176,0.004064,0.006176,0.006112,0.005472,0.017056,0.005472
+954,1885.39,0.530396,0.18608,0.00464,0.132192,0.00496,0.00416,0.00592,0.005504,0.00608,0.017088,0.005536
+955,1128.69,0.885986,0.185472,0.006112,0.129056,0.005824,0.005504,0.005024,0.005856,0.005408,0.017408,0.00528
+956,1707.38,0.585693,0.182272,0.005536,0.127584,0.006112,0.004128,0.005952,0.00576,0.004672,0.018208,0.00432
+957,1560.08,0.640991,0.183424,0.005536,0.127584,0.006176,0.00528,0.00496,0.005824,0.005408,0.017376,0.00528
+958,1908.67,0.523926,0.182272,0.005632,0.128832,0.004832,0.004064,0.006144,0.005536,0.004704,0.018208,0.00432
+959,1304.25,0.766724,0.180224,0.005888,0.12464,0.00464,0.006144,0.005408,0.004864,0.006048,0.01648,0.006112
+960,1643.33,0.608521,0.186976,0.004704,0.13296,0.005632,0.004768,0.005536,0.006176,0.004672,0.018208,0.00432
+961,997.322,1.00269,0.412096,0.007136,0.355648,0.004832,0.005696,0.004544,0.006112,0.005408,0.01712,0.0056
+962,1044.63,0.957275,0.21296,0.004928,0.15968,0.00416,0.005696,0.00608,0.004608,0.006144,0.016384,0.00528
+963,1726.09,0.579346,0.198688,0.00448,0.145312,0.0056,0.004768,0.005504,0.005792,0.005056,0.016384,0.005792
+964,1087.48,0.919556,0.420832,0.005088,0.354304,0.006144,0.005376,0.004864,0.005952,0.016384,0.017888,0.004832
+965,1513.67,0.660645,0.190464,0.005856,0.1352,0.0056,0.004896,0.005504,0.00576,0.005088,0.017728,0.004832
+966,1557.71,0.641968,0.186912,0.004864,0.132832,0.004416,0.005408,0.0048,0.006144,0.00576,0.016768,0.00592
+967,1804.8,0.554077,0.188992,0.004672,0.135168,0.006176,0.004064,0.006144,0.00544,0.0048,0.018016,0.004512
+968,1713.09,0.58374,0.183904,0.005376,0.127744,0.006144,0.005344,0.004896,0.006144,0.005504,0.017024,0.005728
+969,1359.89,0.735352,0.188896,0.004576,0.134592,0.004672,0.005888,0.004544,0.007392,0.004704,0.018048,0.00448
+970,1367.38,0.731323,0.192704,0.005344,0.13776,0.004576,0.00528,0.004928,0.00592,0.006368,0.017632,0.004896
+971,992.128,1.00793,0.19504,0.006976,0.137216,0.006176,0.004096,0.006112,0.006144,0.005664,0.016864,0.005792
+972,1861.82,0.537109,0.186464,0.005312,0.132,0.005632,0.004608,0.005184,0.005088,0.00592,0.016608,0.006112
+973,1604.7,0.623169,0.18256,0.004384,0.129024,0.006176,0.005088,0.00512,0.005664,0.004576,0.018208,0.00432
+974,1314.08,0.760986,0.382944,0.00592,0.327936,0.00544,0.0048,0.005472,0.004736,0.006144,0.016384,0.006112
+975,1572.96,0.635742,0.18432,0.005856,0.129248,0.005408,0.004896,0.005312,0.00496,0.00592,0.016576,0.006144
+976,1808.39,0.552979,0.186624,0.004992,0.132096,0.00512,0.005408,0.004832,0.005984,0.00544,0.017248,0.005504
+977,1536.96,0.650635,0.184288,0.00544,0.129056,0.004736,0.006176,0.005696,0.004512,0.006144,0.017664,0.004864
+978,1741.5,0.574219,0.1848,0.004576,0.13232,0.004896,0.004096,0.006176,0.005536,0.004704,0.018208,0.004288
+979,1342.07,0.745117,0.194336,0.005856,0.13904,0.005632,0.004896,0.00432,0.006144,0.005696,0.016832,0.00592
+980,1783.2,0.560791,0.194336,0.006144,0.138816,0.0056,0.004928,0.00432,0.00608,0.005664,0.016864,0.00592
+981,1064.03,0.939819,0.663872,0.004448,0.60976,0.00464,0.005888,0.005408,0.005088,0.005888,0.01664,0.006112
+982,1357.42,0.736694,0.182944,0.004768,0.130272,0.004928,0.004064,0.006176,0.005504,0.004736,0.017472,0.005024
+983,1510.05,0.662231,0.184832,0.004608,0.131072,0.005984,0.004256,0.005888,0.005472,0.005024,0.017888,0.00464
+984,729.865,1.37012,0.184096,0.004672,0.130848,0.005632,0.004768,0.005408,0.004896,0.005152,0.017376,0.005344
+985,1949.55,0.512939,0.188544,0.005344,0.134048,0.0056,0.00464,0.005632,0.00464,0.006048,0.017472,0.00512
+986,1584.83,0.630981,0.192512,0.005376,0.124704,0.00496,0.004224,0.006016,0.005472,0.004896,0.017984,0.01888
+987,1383.32,0.7229,0.1944,0.005984,0.125088,0.006016,0.004224,0.005792,0.005536,0.005056,0.017824,0.01888
+988,1837.6,0.544189,0.189888,0.005696,0.123136,0.0056,0.004832,0.005632,0.004608,0.006176,0.028544,0.005664
+989,1201.53,0.832275,0.197792,0.005664,0.141792,0.005888,0.005504,0.004992,0.005792,0.004544,0.018336,0.00528
+990,1289.88,0.775269,0.208448,0.005984,0.14144,0.00512,0.005056,0.005408,0.004928,0.006112,0.017984,0.016416
+991,892.375,1.12061,0.198752,0.006816,0.126976,0.006144,0.004096,0.006144,0.005536,0.004704,0.018208,0.020128
+992,1653.28,0.604858,0.188416,0.005632,0.123392,0.006016,0.004224,0.006144,0.005728,0.004512,0.026624,0.006144
+993,1273.04,0.785522,0.400416,0.00512,0.333824,0.006176,0.004064,0.005888,0.005472,0.00608,0.027616,0.006176
+994,1474.71,0.678101,0.17616,0.005792,0.12112,0.004192,0.005792,0.004544,0.006016,0.005696,0.018336,0.004672
+995,1840.49,0.543335,0.182304,0.004384,0.127008,0.006112,0.00512,0.00512,0.005536,0.004704,0.018464,0.005856
+996,1801.23,0.555176,0.180192,0.005632,0.12512,0.005632,0.004896,0.00528,0.00496,0.005952,0.018336,0.004384
+997,1688.72,0.592163,0.184,0.006112,0.126208,0.004896,0.006112,0.0056,0.00608,0.004704,0.018432,0.005856
+998,1101.52,0.907837,0.2048,0.006144,0.15072,0.004928,0.004128,0.006112,0.005376,0.004864,0.018208,0.00432
+999,1883.22,0.531006,0.186688,0.004416,0.13312,0.005632,0.004608,0.005568,0.006112,0.004704,0.018176,0.004352
+1000,1131.18,0.884033,0.673984,0.005344,0.619296,0.005632,0.0048,0.00544,0.004768,0.006144,0.017408,0.005152
+1001,1259.15,0.794189,0.183584,0.005664,0.128608,0.005024,0.005472,0.004768,0.00592,0.00544,0.01728,0.005408
+1002,1724.27,0.579956,0.178528,0.0048,0.12288,0.005696,0.005824,0.004864,0.005952,0.005344,0.017376,0.005792
+1003,1252.98,0.798096,0.37968,0.004896,0.325664,0.005856,0.004352,0.005728,0.004512,0.006176,0.018112,0.004384
+1004,1609.43,0.621338,0.178144,0.005824,0.12112,0.006176,0.005696,0.004512,0.006144,0.005472,0.017056,0.006144
+1005,1848.79,0.540894,0.178688,0.004608,0.12288,0.006144,0.005728,0.005632,0.005056,0.005824,0.017888,0.004928
+1006,1510.05,0.662231,0.176128,0.006144,0.120864,0.005568,0.00464,0.005472,0.004768,0.006144,0.01792,0.004608
+1007,1903.79,0.525269,0.188992,0.004896,0.13312,0.006144,0.005152,0.004928,0.005472,0.00608,0.01728,0.00592
+1008,780.19,1.28174,0.182208,0.004544,0.126976,0.006144,0.00528,0.00496,0.005856,0.004384,0.018464,0.0056
+1009,1182.45,0.845703,0.660352,0.004992,0.605312,0.004992,0.005536,0.004736,0.00608,0.005472,0.018272,0.00496
+1010,1145.89,0.872681,0.181472,0.006144,0.124928,0.005856,0.004384,0.00576,0.00448,0.006144,0.018432,0.005344
+1011,1876.32,0.532959,0.187808,0.005344,0.131392,0.004736,0.006144,0.005696,0.004544,0.006144,0.018432,0.005376
+1012,1616.74,0.61853,0.180224,0.005408,0.125472,0.005632,0.004832,0.005568,0.00464,0.006144,0.017856,0.004672
+1013,1524.94,0.655762,0.182656,0.004512,0.128192,0.004896,0.006144,0.005888,0.005472,0.005056,0.018208,0.004288
+1014,1657.96,0.603149,0.178912,0.0048,0.124512,0.004544,0.00592,0.004384,0.006048,0.005664,0.016864,0.006176
+1015,1726.09,0.579346,0.182784,0.004608,0.128448,0.004704,0.006048,0.005376,0.004928,0.005952,0.017824,0.004896
+1016,1577.2,0.634033,0.182656,0.005536,0.12768,0.005632,0.004928,0.005824,0.00544,0.005088,0.01808,0.004448
+1017,1878.04,0.532471,0.182272,0.005984,0.126624,0.004608,0.006016,0.005344,0.005056,0.005856,0.017792,0.004992
+1018,1618.97,0.617676,0.184832,0.004576,0.130592,0.004576,0.00592,0.005376,0.005088,0.005792,0.016768,0.006144
+1019,1478.97,0.676147,0.180224,0.00608,0.124992,0.006144,0.00528,0.00496,0.005696,0.004544,0.01824,0.004288
+1020,1005.65,0.994385,0.413728,0.00768,0.356864,0.005696,0.004544,0.00576,0.004672,0.005952,0.01808,0.00448
+1021,790.581,1.26489,0.188416,0.006144,0.133152,0.00576,0.004448,0.005824,0.005472,0.005088,0.018176,0.004352
+1022,1088.35,0.918823,0.383296,0.004416,0.329728,0.0056,0.00464,0.005568,0.004672,0.006144,0.017952,0.004576
+1023,1634.48,0.611816,0.178848,0.004768,0.124928,0.005824,0.004416,0.006112,0.005472,0.0048,0.018432,0.004096
+1024,1214.53,0.823364,0.182752,0.005088,0.126976,0.005856,0.005536,0.004992,0.005856,0.00544,0.017376,0.005632
+1025,1001.34,0.998657,0.219328,0.005344,0.164768,0.0056,0.004736,0.0056,0.004608,0.006144,0.017952,0.004576
+1026,1419.76,0.704346,0.192416,0.005536,0.135776,0.005856,0.004384,0.00592,0.005536,0.004928,0.018432,0.006048
+1027,1106.73,0.903564,0.19456,0.005792,0.139616,0.006144,0.005152,0.005088,0.005536,0.004736,0.017952,0.004544
+1028,998.051,1.00195,0.186368,0.008192,0.128992,0.006176,0.004064,0.006112,0.005472,0.0048,0.017728,0.004832
+1029,1828.57,0.546875,0.200544,0.0056,0.129568,0.00592,0.004288,0.00608,0.005632,0.004672,0.018432,0.020352
+1030,1328.58,0.752686,0.189376,0.005056,0.124,0.00496,0.004192,0.006016,0.005472,0.004864,0.028672,0.006144
+1031,1204.88,0.829956,0.18896,0.004896,0.132992,0.0056,0.0048,0.006016,0.004192,0.006144,0.018432,0.005888
+1032,1676.63,0.596436,0.185952,0.005344,0.129632,0.005632,0.004992,0.005472,0.004768,0.006112,0.018464,0.005536
+1033,1749.68,0.571533,0.189728,0.005728,0.131488,0.006176,0.005952,0.005408,0.004992,0.00592,0.018656,0.005408
+1034,1492.98,0.6698,0.182112,0.006144,0.124928,0.005632,0.004608,0.005824,0.005472,0.005088,0.018432,0.005984
+1035,1912.23,0.522949,0.190464,0.005504,0.133504,0.005632,0.004864,0.00592,0.005472,0.004992,0.018464,0.006112
+1036,1517.88,0.658813,0.213056,0.005344,0.156512,0.006176,0.005344,0.004896,0.00592,0.00544,0.018848,0.004576
+1037,1147.82,0.871216,0.663552,0.006048,0.606304,0.005824,0.004416,0.005824,0.005472,0.005088,0.018432,0.006144
+1038,1060.59,0.942871,0.18432,0.006048,0.127072,0.005376,0.004864,0.006016,0.005472,0.004896,0.018432,0.006144
+1039,1935.73,0.516602,0.188224,0.005984,0.131264,0.005728,0.00448,0.005664,0.004576,0.006144,0.018432,0.005952
+1040,1631.22,0.613037,0.181344,0.006144,0.124384,0.004672,0.005856,0.004352,0.006144,0.005696,0.018848,0.005248
+1041,1248.59,0.800903,0.385856,0.004928,0.329728,0.006144,0.004128,0.00608,0.005472,0.0048,0.01952,0.005056
+1042,1673.54,0.597534,0.18096,0.004832,0.126368,0.004736,0.004064,0.006144,0.0056,0.00464,0.019648,0.004928
+1043,1545.37,0.647095,0.18752,0.006144,0.130272,0.004896,0.005824,0.004544,0.006016,0.005696,0.01888,0.005248
+1044,1638.73,0.610229,0.218016,0.005024,0.161792,0.006176,0.004064,0.006144,0.005504,0.004768,0.019488,0.005056
+1045,1744.09,0.573364,0.18992,0.006144,0.133024,0.004192,0.006176,0.005408,0.0048,0.006112,0.018464,0.0056
+1046,814.881,1.22717,0.191936,0.005344,0.136128,0.005632,0.004608,0.005632,0.006048,0.004704,0.018432,0.005408
+1047,753.495,1.32715,0.20128,0.006688,0.14336,0.006176,0.005216,0.004992,0.005824,0.006112,0.018208,0.004704
+1048,1898.05,0.526855,0.184032,0.005664,0.12848,0.00512,0.005376,0.004864,0.005664,0.004576,0.018432,0.005856
+1049,1704.89,0.586548,0.186272,0.00544,0.129728,0.006144,0.004096,0.006144,0.00576,0.004544,0.018368,0.006048
+1050,1207.55,0.828125,0.380544,0.00576,0.325088,0.00496,0.004192,0.00608,0.005568,0.004704,0.018432,0.00576
+1051,1659.98,0.602417,0.180224,0.005728,0.123296,0.005664,0.004608,0.006112,0.006144,0.005792,0.018176,0.004704
+1052,1705.25,0.586426,0.180256,0.005952,0.124896,0.0056,0.004864,0.005408,0.004864,0.00608,0.018208,0.004384
+1053,1770.86,0.564697,0.18432,0.006016,0.127104,0.005696,0.00608,0.004608,0.006144,0.005472,0.018592,0.004608
+1054,1530.93,0.653198,0.177856,0.005472,0.122752,0.004896,0.004128,0.006048,0.005504,0.0048,0.018432,0.005824
+1055,1436.69,0.696045,0.192928,0.004512,0.138368,0.005024,0.005536,0.004672,0.006016,0.005408,0.018592,0.0048
+1056,1952.34,0.512207,0.186368,0.005728,0.12944,0.005792,0.004448,0.006144,0.006048,0.005408,0.018592,0.004768
+1057,1128.06,0.886475,0.675808,0.005472,0.619168,0.006112,0.005248,0.004992,0.005824,0.004416,0.019616,0.00496
+1058,1235.04,0.809692,0.180512,0.004384,0.126592,0.00448,0.00544,0.0048,0.005984,0.005408,0.018624,0.0048
+1059,1568.45,0.637573,0.182752,0.00496,0.12656,0.005632,0.004992,0.005824,0.005472,0.005088,0.018432,0.005792
+1060,1625.07,0.615356,0.202304,0.006112,0.145376,0.00416,0.005408,0.0048,0.006144,0.006176,0.0184,0.005728
+1061,1295.59,0.771851,0.18624,0.004992,0.13104,0.0056,0.00464,0.005696,0.004544,0.005888,0.01856,0.00528
+1062,1806.39,0.553589,0.179968,0.004832,0.124896,0.005216,0.004896,0.005344,0.005024,0.005856,0.018656,0.005248
+1063,1701.35,0.587769,0.186368,0.005984,0.129216,0.006112,0.00528,0.00496,0.006144,0.00544,0.018624,0.004608
+1064,1592.54,0.62793,0.181792,0.004416,0.126976,0.005888,0.004352,0.005792,0.004448,0.006176,0.0184,0.005344
+1065,1811.19,0.552124,0.1832,0.005024,0.129024,0.005888,0.004352,0.005888,0.005504,0.004992,0.018432,0.004096
+1066,1516.19,0.659546,0.192,0.004576,0.137248,0.005408,0.004832,0.00576,0.005472,0.00512,0.018336,0.005248
+1067,1122.35,0.890991,0.671744,0.005856,0.616416,0.0056,0.004928,0.005312,0.00496,0.006016,0.018048,0.004608
+1068,870.841,1.14832,0.190432,0.00432,0.135168,0.006144,0.00512,0.005152,0.005664,0.0064,0.016576,0.005888
+1069,1288.46,0.776123,0.230016,0.0048,0.174112,0.006016,0.004192,0.00608,0.005984,0.005504,0.017248,0.00608
+1070,1389.89,0.719482,0.386752,0.005344,0.332256,0.00448,0.005376,0.004864,0.005824,0.00544,0.017408,0.00576
+1071,1679.72,0.595337,0.181696,0.005568,0.125504,0.006144,0.004128,0.006112,0.005664,0.004576,0.018432,0.005568
+1072,1721.73,0.580811,0.182272,0.005824,0.127104,0.005632,0.004736,0.005632,0.004672,0.006144,0.017952,0.004576
+1073,1616.1,0.618774,0.183456,0.00576,0.12736,0.00608,0.004192,0.005984,0.005472,0.004896,0.018432,0.00528
+1074,1759.07,0.568481,0.182272,0.006112,0.126848,0.004256,0.0056,0.004832,0.005984,0.005664,0.017856,0.00512
+1075,793.568,1.26013,0.206848,0.005568,0.150112,0.005984,0.004256,0.006048,0.00624,0.00576,0.017888,0.004992
+1076,1576.29,0.634399,0.209312,0.004544,0.1552,0.0056,0.004896,0.005376,0.005024,0.005856,0.017824,0.004992
+1077,795.34,1.25732,0.204768,0.008192,0.146656,0.004896,0.005632,0.004608,0.006144,0.005504,0.017024,0.006112
+1078,1784.75,0.560303,0.195808,0.005824,0.141152,0.004576,0.005312,0.00496,0.005664,0.004544,0.018432,0.005344
+1079,1273.04,0.785522,0.393216,0.005824,0.33824,0.006016,0.004224,0.006048,0.005472,0.004864,0.018112,0.004416
+1080,1657.96,0.603149,0.188416,0.005888,0.133408,0.005952,0.004256,0.006016,0.004224,0.006144,0.017728,0.0048
+1081,1566.95,0.638184,0.187264,0.004992,0.13312,0.005856,0.004384,0.00592,0.005504,0.00496,0.017984,0.004544
+1082,1774.31,0.563599,0.182304,0.005408,0.128768,0.00496,0.004256,0.005952,0.005312,0.005088,0.018112,0.004448
+1083,1463.12,0.683472,0.182272,0.006144,0.126176,0.004928,0.005568,0.006656,0.005504,0.004768,0.01808,0.004448
+1084,1472.32,0.679199,0.185472,0.005408,0.12976,0.005728,0.004512,0.00576,0.006048,0.00464,0.018336,0.00528
+1085,1844.21,0.542236,0.186336,0.005696,0.131136,0.005632,0.004928,0.005376,0.004928,0.005888,0.016608,0.006144
+1086,713.589,1.40137,0.186368,0.007744,0.129472,0.005408,0.004864,0.00544,0.006112,0.0048,0.018112,0.004416
+1087,1825.72,0.547729,0.186272,0.004704,0.132224,0.004992,0.005568,0.00464,0.005984,0.00544,0.017248,0.005472
+1088,1842.97,0.542603,0.179296,0.005504,0.125024,0.00464,0.005728,0.004512,0.005824,0.004544,0.018272,0.005248
+1089,1108.08,0.902466,0.387872,0.004896,0.335456,0.0056,0.004928,0.005344,0.005056,0.005536,0.016224,0.004832
+1090,1956.06,0.51123,0.178464,0.004352,0.124928,0.005632,0.004608,0.005472,0.004768,0.00608,0.017472,0.005152
+1091,1757.94,0.568848,0.18432,0.006144,0.129024,0.005984,0.004288,0.006144,0.005536,0.004672,0.018208,0.00432
+1092,1569.05,0.637329,0.180704,0.004576,0.126816,0.005632,0.004768,0.005984,0.005504,0.004928,0.017984,0.004512
+1093,1809.99,0.55249,0.180928,0.0048,0.12688,0.005632,0.004736,0.00592,0.005472,0.00496,0.01792,0.004608
+1094,1268.9,0.788086,0.186784,0.004992,0.13312,0.005152,0.004896,0.004288,0.006144,0.005504,0.017024,0.005664
+1095,1952.8,0.512085,0.184224,0.004768,0.130176,0.004992,0.005536,0.004704,0.006112,0.00528,0.01728,0.005376
+1096,1102.41,0.907104,0.656288,0.005024,0.60192,0.0056,0.004864,0.00544,0.004768,0.006112,0.016416,0.006144
+1097,1310.93,0.762817,0.18832,0.006144,0.131104,0.006112,0.004128,0.006112,0.006176,0.005824,0.016704,0.006016
+1098,1660.65,0.602173,0.178624,0.004544,0.12608,0.00496,0.004128,0.00608,0.00528,0.005024,0.017824,0.004704
+1099,1526.93,0.654907,0.181408,0.005824,0.125248,0.00528,0.00496,0.005376,0.00592,0.005088,0.018176,0.005536
+1100,1309.46,0.763672,0.178176,0.005504,0.12352,0.006144,0.004096,0.006144,0.005536,0.004704,0.018176,0.004352
+1101,1802.82,0.554688,0.178752,0.004672,0.12432,0.004704,0.006144,0.005568,0.004704,0.006112,0.017536,0.004992
+1102,1549.17,0.645508,0.180224,0.006144,0.126144,0.004928,0.004096,0.006144,0.005824,0.004416,0.01824,0.004288
+1103,1893.67,0.528076,0.186336,0.00592,0.131296,0.005696,0.004544,0.005792,0.005472,0.00512,0.016416,0.00608
+1104,1593.46,0.627563,0.182528,0.004384,0.130176,0.004928,0.00544,0.004832,0.005824,0.00544,0.017216,0.004288
+1105,1388.95,0.719971,0.202752,0.00608,0.14752,0.006112,0.004128,0.006112,0.004128,0.006144,0.017408,0.00512
+1106,1172.63,0.852783,0.660928,0.006176,0.604128,0.006144,0.005856,0.004544,0.005984,0.005632,0.016896,0.005568
+1107,1311.98,0.762207,0.188096,0.00464,0.134432,0.004832,0.005728,0.004512,0.00608,0.005408,0.017184,0.00528
+1108,1573.57,0.635498,0.183456,0.006144,0.126528,0.005632,0.005088,0.005888,0.005632,0.006112,0.017184,0.005248
+1109,1929.35,0.518311,0.180576,0.004448,0.126976,0.005792,0.004448,0.00592,0.005472,0.005024,0.0176,0.004896
+1110,1352.93,0.739136,0.178112,0.006112,0.12288,0.004096,0.005856,0.004384,0.006144,0.00576,0.016768,0.006112
+1111,1767.42,0.565796,0.182528,0.005472,0.127904,0.00576,0.004512,0.006144,0.005696,0.004512,0.018144,0.004384
+1112,1584.53,0.631104,0.182272,0.005824,0.127296,0.006144,0.004096,0.006016,0.005472,0.004896,0.017792,0.004736
+1113,1826.53,0.547485,0.180768,0.00464,0.126944,0.005792,0.004448,0.005696,0.004544,0.006144,0.017568,0.004992
+1114,1567.25,0.638062,0.179936,0.004768,0.12688,0.004192,0.005536,0.004704,0.00592,0.005408,0.01728,0.005248
+1115,1802.02,0.554932,0.192448,0.005344,0.138176,0.005216,0.004928,0.004384,0.005984,0.00576,0.016768,0.005888
+1116,1557.12,0.642212,0.184608,0.004928,0.130368,0.0048,0.005568,0.004736,0.006112,0.0056,0.016896,0.0056
+1117,742.702,1.34644,0.185344,0.007136,0.129024,0.006176,0.004064,0.006144,0.005632,0.00464,0.017984,0.004544
+1118,1782.03,0.561157,0.185888,0.00544,0.131776,0.004096,0.005824,0.004576,0.006016,0.005696,0.016832,0.005632
+1119,1566.05,0.63855,0.185088,0.004864,0.131072,0.005696,0.004544,0.005792,0.005504,0.005088,0.0176,0.004928
+1120,1288.66,0.776001,0.396128,0.00496,0.341376,0.004736,0.006176,0.005568,0.00464,0.006144,0.016384,0.006144
+1121,1687.68,0.592529,0.187328,0.005056,0.131072,0.006176,0.005344,0.00608,0.004928,0.006048,0.01648,0.006144
+1122,1709.16,0.585083,0.18432,0.005376,0.130848,0.004928,0.004288,0.00608,0.005472,0.0048,0.01792,0.004608
+1123,1558.9,0.641479,0.187456,0.0056,0.124512,0.005056,0.005376,0.004864,0.005792,0.004448,0.0184,0.013408
+1124,1889.3,0.529297,0.180224,0.005728,0.125344,0.006048,0.005216,0.005152,0.0056,0.00464,0.01824,0.004256
+1125,1463.12,0.683472,0.184352,0.004832,0.129024,0.005856,0.004416,0.005888,0.005472,0.006112,0.017344,0.005408
+1126,1794.52,0.557251,0.184416,0.004928,0.130944,0.004224,0.005632,0.004608,0.006144,0.005312,0.017216,0.005408
+1127,579.104,1.72681,0.221184,0.008192,0.1536,0.006144,0.005408,0.004832,0.005984,0.0056,0.02672,0.004704
+1128,1400.1,0.714233,0.205216,0.014752,0.141248,0.005632,0.004672,0.006176,0.005568,0.00464,0.018176,0.004352
+1129,1200.29,0.83313,0.475136,0.013888,0.412128,0.006112,0.004096,0.006144,0.005632,0.004608,0.018208,0.00432
+1130,1095.77,0.912598,0.306848,0.005728,0.244128,0.005888,0.004352,0.005952,0.005472,0.004992,0.016352,0.013984
+1131,1304.25,0.766724,0.215328,0.004768,0.161248,0.004672,0.005824,0.005504,0.005024,0.00576,0.016768,0.00576
+1132,1611.01,0.620728,0.22544,0.004416,0.17152,0.004608,0.00592,0.006144,0.005472,0.004992,0.016384,0.005984
+1133,1618.33,0.61792,0.19248,0.006112,0.136448,0.004864,0.005664,0.00608,0.00464,0.006144,0.017632,0.004896
+1134,1776.62,0.562866,0.186144,0.004576,0.131072,0.005856,0.004416,0.005888,0.00608,0.005568,0.017248,0.00544
+1135,1667.07,0.599854,0.18432,0.005376,0.12928,0.004608,0.00592,0.005344,0.005152,0.006112,0.017728,0.0048
+1136,1129.78,0.885132,0.696352,0.006144,0.640768,0.005632,0.004864,0.005408,0.004832,0.006048,0.01648,0.006176
+1137,1189.83,0.840454,0.180864,0.004704,0.126976,0.005952,0.004288,0.005856,0.005472,0.005056,0.017792,0.004768
+1138,1820.44,0.549316,0.182272,0.005376,0.12912,0.004768,0.004096,0.006112,0.005472,0.0048,0.018016,0.004512
+1139,1289.88,0.775269,0.179872,0.005568,0.124928,0.004672,0.005888,0.004352,0.006144,0.005568,0.01696,0.005792
+1140,1883.22,0.531006,0.18432,0.005568,0.1296,0.005696,0.004576,0.005664,0.004544,0.006144,0.017632,0.004896
+1141,1586.06,0.630493,0.180608,0.004448,0.126528,0.005632,0.004928,0.0056,0.004768,0.006144,0.01744,0.00512
+1142,1822.47,0.548706,0.182048,0.005472,0.126752,0.00496,0.004128,0.006112,0.006176,0.00576,0.016768,0.00592
+1143,1559.19,0.641357,0.1784,0.005344,0.123712,0.0056,0.004864,0.005472,0.004768,0.006112,0.017472,0.005056
+1144,1634.8,0.611694,0.19488,0.004416,0.139296,0.006048,0.005856,0.004544,0.00608,0.006112,0.017536,0.004992
+1145,1705.25,0.586426,0.182176,0.006048,0.126944,0.005632,0.004672,0.0056,0.004608,0.006144,0.017568,0.00496
+1146,1764,0.566895,0.443936,0.005888,0.386336,0.007168,0.005632,0.004576,0.006144,0.005504,0.017024,0.005664
+1147,848.912,1.17798,0.182048,0.006144,0.126464,0.004608,0.005888,0.004352,0.006176,0.005696,0.0168,0.00592
+1148,1915.36,0.522095,0.182784,0.004608,0.12896,0.0056,0.004736,0.006112,0.005536,0.004704,0.018176,0.004352
+1149,1217.78,0.821167,0.477184,0.006144,0.421888,0.005632,0.00464,0.005632,0.004576,0.006144,0.0176,0.004928
+1150,1118.82,0.893799,0.31952,0.005344,0.265056,0.005888,0.004352,0.006112,0.00576,0.00448,0.018272,0.004256
+1151,1656.29,0.60376,0.19376,0.005408,0.137952,0.006144,0.005376,0.004864,0.005856,0.005408,0.017408,0.005344
+1152,1545.37,0.647095,0.194368,0.004608,0.140416,0.005024,0.005504,0.004736,0.006048,0.005408,0.017184,0.00544
+1153,1671.84,0.598145,0.184576,0.004352,0.130912,0.005632,0.004768,0.005472,0.00608,0.004832,0.017792,0.004736
+1154,1709.16,0.585083,0.18992,0.006176,0.135136,0.005184,0.004896,0.005344,0.005056,0.005632,0.016896,0.0056
+1155,1646.96,0.607178,0.188896,0.004544,0.135168,0.005856,0.004384,0.005952,0.005472,0.00496,0.017856,0.004704
+1156,1575.38,0.634766,0.186816,0.0048,0.132576,0.00464,0.005888,0.004544,0.005952,0.005728,0.0168,0.005888
+1157,775.537,1.28943,0.217056,0.007552,0.16144,0.005056,0.005472,0.004768,0.006048,0.005408,0.016576,0.004736
+1158,1835.13,0.544922,0.186368,0.005984,0.132608,0.004768,0.004096,0.006144,0.005632,0.004608,0.01808,0.004448
+1159,1194.52,0.837158,0.385248,0.004576,0.331328,0.005632,0.004928,0.005376,0.004992,0.005728,0.0168,0.005888
+1160,1806.39,0.553589,0.179552,0.0056,0.124832,0.004736,0.005792,0.00448,0.006112,0.00544,0.017088,0.005472
+1161,1699.94,0.588257,0.181472,0.005408,0.125664,0.006176,0.005312,0.004896,0.00592,0.005408,0.017344,0.005344
+1162,1561.57,0.640381,0.180928,0.004896,0.126976,0.005792,0.004448,0.00528,0.00496,0.005888,0.01664,0.006048
+1163,1825.31,0.547852,0.181312,0.005344,0.125792,0.006176,0.005312,0.004896,0.00592,0.00544,0.017312,0.00512
+1164,1318.31,0.758545,0.186368,0.006144,0.131072,0.006176,0.004064,0.00608,0.005504,0.0048,0.018048,0.00448
+1165,1547.7,0.646118,0.178816,0.004736,0.12496,0.005792,0.004448,0.005824,0.005472,0.005056,0.017824,0.004704
+1166,929.958,1.07532,0.189824,0.007584,0.132832,0.00496,0.004128,0.006144,0.00608,0.00544,0.017152,0.005504
+1167,1896.74,0.527222,0.18544,0.00576,0.129344,0.0056,0.004704,0.005856,0.00608,0.004544,0.018272,0.00528
+1168,1628.63,0.614014,0.18096,0.004832,0.126848,0.005632,0.004768,0.006048,0.005472,0.004864,0.01744,0.005056
+1169,1565.15,0.638916,0.360416,0.005504,0.305792,0.006112,0.004096,0.006144,0.005472,0.004768,0.018112,0.004416
+1170,1313.66,0.76123,0.178176,0.006144,0.124256,0.004768,0.005152,0.005088,0.005696,0.004544,0.018272,0.004256
+1171,1083.17,0.923218,0.206848,0.005696,0.151104,0.004992,0.006112,0.006176,0.006144,0.00544,0.016096,0.005088
+1172,1942.15,0.514893,0.18336,0.005536,0.127584,0.005728,0.004544,0.006112,0.005824,0.004416,0.0184,0.005216
+1173,1746.32,0.572632,0.178464,0.004384,0.124928,0.005824,0.004416,0.00592,0.005504,0.004992,0.017824,0.004672
+1174,1590.99,0.62854,0.19552,0.005056,0.141312,0.00592,0.004352,0.005824,0.005472,0.005056,0.017824,0.004704
+1175,1600.94,0.624634,0.184896,0.004672,0.13056,0.004608,0.00592,0.005792,0.004672,0.006144,0.017536,0.004992
+1176,1202.58,0.831543,0.65536,0.005792,0.600128,0.005632,0.004896,0.005376,0.004896,0.005984,0.016512,0.006144
+1177,1255.86,0.796265,0.180256,0.005344,0.125728,0.005632,0.004608,0.005792,0.005504,0.00512,0.01776,0.004768
+1178,1645.31,0.607788,0.178592,0.004512,0.126432,0.004672,0.005216,0.005024,0.005568,0.00464,0.018208,0.00432
+1179,1583.91,0.631348,0.178208,0.0048,0.124928,0.005376,0.004864,0.005408,0.004832,0.00608,0.016448,0.005472
+1180,1382.15,0.723511,0.178816,0.004736,0.124224,0.0048,0.005728,0.005888,0.004768,0.006144,0.017472,0.005056
+1181,1735.23,0.576294,0.18336,0.006048,0.127072,0.00592,0.00432,0.006144,0.00576,0.004512,0.018304,0.00528
+1182,1624.43,0.615601,0.18224,0.005376,0.127936,0.005504,0.004736,0.005504,0.004736,0.00592,0.016608,0.00592
+1183,1596.57,0.626343,0.18208,0.004896,0.126976,0.006144,0.00528,0.00496,0.00592,0.00544,0.017184,0.00528
+1184,1815.6,0.550781,0.17872,0.00464,0.124928,0.006176,0.005088,0.00512,0.005504,0.004736,0.017472,0.005056
+1185,1636.11,0.611206,0.181536,0.00608,0.12608,0.005056,0.005472,0.004768,0.006048,0.005536,0.017088,0.005408
+1186,1412.66,0.707886,0.178208,0.00592,0.123104,0.004096,0.005856,0.006464,0.005664,0.004544,0.018112,0.004448
+1187,946.614,1.0564,0.190112,0.00816,0.132768,0.0056,0.004928,0.00528,0.005056,0.005856,0.016672,0.005792
+1188,1906.89,0.524414,0.18432,0.005728,0.12944,0.006048,0.005504,0.004832,0.006112,0.00544,0.016608,0.004608
+1189,1500.09,0.666626,0.179712,0.005984,0.12304,0.006144,0.00576,0.004544,0.00608,0.005632,0.016928,0.0056
+1190,1170.29,0.854492,0.180352,0.005344,0.125856,0.005472,0.004768,0.006016,0.005472,0.004896,0.017984,0.004544
+1191,773.925,1.29211,0.184544,0.004672,0.130432,0.004736,0.005792,0.00544,0.00512,0.005792,0.016736,0.005824
+1192,2067.12,0.483765,0.182272,0.005504,0.127616,0.005728,0.004512,0.006048,0.005472,0.004896,0.017728,0.004768
+1193,668.298,1.49634,0.198656,0.005696,0.143808,0.005792,0.004448,0.005856,0.005504,0.005024,0.0176,0.004928
+1194,1430.67,0.698975,0.182272,0.005536,0.129408,0.004352,0.005536,0.004672,0.005952,0.004288,0.018176,0.004352
+1195,995.867,1.00415,0.190464,0.008192,0.131072,0.006144,0.004096,0.00768,0.004608,0.006176,0.016352,0.006144
+1196,1657.96,0.603149,0.18816,0.006144,0.132896,0.005536,0.004928,0.005216,0.005024,0.005888,0.01664,0.005888
+1197,1836.77,0.544434,0.181536,0.006144,0.124928,0.006176,0.005312,0.004896,0.006176,0.00544,0.017056,0.005408
+1198,1253.75,0.797607,0.180224,0.006144,0.124672,0.004352,0.005504,0.004736,0.006176,0.006112,0.01744,0.005088
+1199,1855.91,0.538818,0.181728,0.005728,0.127008,0.005632,0.004704,0.004416,0.006112,0.005568,0.01696,0.0056
+1200,1616.74,0.61853,0.177504,0.005376,0.122912,0.004896,0.005504,0.004736,0.006144,0.005472,0.017056,0.005408
+1201,1876.75,0.532837,0.180224,0.005568,0.125504,0.005664,0.004576,0.005984,0.005472,0.004928,0.017696,0.004832
+1202,1588.52,0.629517,0.178208,0.005376,0.123648,0.005408,0.004832,0.005952,0.005472,0.00496,0.017888,0.004672
+1203,1785.53,0.560059,0.18432,0.006048,0.129152,0.005888,0.004352,0.0056,0.004608,0.006176,0.017568,0.004928
+1204,1533.8,0.651978,0.184512,0.005056,0.129024,0.005696,0.004544,0.00576,0.006368,0.005408,0.01728,0.005376
+1205,799.61,1.25061,0.186368,0.008192,0.128352,0.004768,0.00576,0.005952,0.004672,0.006144,0.017472,0.005056
+1206,1927.53,0.518799,0.18224,0.006112,0.126976,0.004096,0.006176,0.005472,0.004736,0.006144,0.017472,0.005056
+1207,1755.3,0.569702,0.180096,0.00544,0.125184,0.0056,0.004928,0.005376,0.005024,0.005888,0.01664,0.006016
+1208,1245.55,0.802856,0.383008,0.005664,0.32816,0.0056,0.00464,0.006112,0.005472,0.004832,0.017984,0.004544
+1209,1726.45,0.579224,0.1776,0.005792,0.122272,0.005088,0.005472,0.004768,0.006112,0.005408,0.01712,0.005568
+1210,1659.98,0.602417,0.178368,0.004736,0.124864,0.004128,0.005728,0.004512,0.006176,0.005536,0.01696,0.005728
+1211,1649.29,0.606323,0.184192,0.006112,0.128672,0.005632,0.004768,0.005472,0.004992,0.005888,0.01664,0.006016
+1212,1822.88,0.548584,0.183584,0.00576,0.12848,0.005024,0.005504,0.004736,0.005952,0.00544,0.01728,0.005408
+1213,1584.83,0.630981,0.18224,0.006112,0.126976,0.00592,0.004352,0.005888,0.00432,0.006144,0.017472,0.005056
+1214,1788.65,0.559082,0.182144,0.005376,0.127296,0.0048,0.004064,0.006144,0.006144,0.005632,0.016896,0.005792
+1215,1112.59,0.898804,0.655168,0.004544,0.601376,0.0048,0.005536,0.004704,0.006112,0.00544,0.017152,0.005504
+1216,1285.62,0.777832,0.18096,0.004832,0.126976,0.005664,0.004608,0.005696,0.004544,0.006016,0.01648,0.006144
+1217,969.697,1.03125,0.2104,0.005344,0.15664,0.006144,0.004096,0.006176,0.005472,0.004736,0.016384,0.005408
+1218,1153.48,0.866943,0.389696,0.004672,0.335136,0.004832,0.004128,0.006112,0.0056,0.006656,0.016416,0.006144
+1219,1852.56,0.539795,0.193568,0.005632,0.138976,0.004928,0.005184,0.005024,0.005696,0.004544,0.018336,0.005248
+1220,1787.87,0.559326,0.18432,0.0056,0.129376,0.005632,0.004832,0.005472,0.004736,0.006144,0.017472,0.005056
+1221,1664.36,0.60083,0.178528,0.004448,0.124928,0.006144,0.004096,0.006144,0.005568,0.004672,0.018144,0.004384
+1222,1716.32,0.582642,0.176544,0.004512,0.12288,0.005568,0.004672,0.005856,0.005472,0.005056,0.017792,0.004736
+1223,1546.24,0.646729,0.189024,0.004736,0.134272,0.004992,0.006176,0.005408,0.004832,0.00608,0.016416,0.006112
+1224,1649.95,0.606079,0.183104,0.004992,0.128,0.00512,0.005408,0.00608,0.004864,0.006016,0.016512,0.006112
+1225,733.262,1.36377,0.188448,0.008096,0.131168,0.005792,0.00448,0.005824,0.004384,0.006144,0.0176,0.00496
+1226,1842.56,0.542725,0.183936,0.006048,0.129056,0.004192,0.005696,0.004512,0.006144,0.005536,0.016992,0.00576
+1227,1594.08,0.627319,0.183616,0.005696,0.128928,0.00464,0.0056,0.00464,0.005984,0.00544,0.017248,0.00544
+1228,1304.67,0.766479,0.386688,0.00592,0.331264,0.004832,0.005696,0.004576,0.006112,0.0056,0.016928,0.00576
+1229,1622.82,0.616211,0.182304,0.005344,0.127648,0.0056,0.004768,0.005408,0.004832,0.006048,0.01648,0.006176
+1230,1822.06,0.548828,0.18384,0.0056,0.128736,0.004928,0.004096,0.006144,0.006176,0.005472,0.017024,0.005664
+1231,1565.75,0.638672,0.181792,0.00576,0.126944,0.0056,0.005024,0.004096,0.006176,0.005536,0.016992,0.005664
+1232,1851.72,0.540039,0.182944,0.004736,0.129024,0.00608,0.00416,0.005792,0.004448,0.006176,0.0176,0.004928
+1233,1429.92,0.699341,0.190368,0.00592,0.134464,0.005024,0.00592,0.005472,0.004992,0.005888,0.01664,0.006048
+1234,1806.79,0.553467,0.184576,0.004352,0.132224,0.00496,0.004128,0.006112,0.005536,0.004736,0.018048,0.00448
+1235,831.506,1.20264,0.188288,0.007904,0.129344,0.006112,0.00528,0.00496,0.006176,0.005792,0.016736,0.005984
+1236,1938.48,0.515869,0.184192,0.004416,0.130464,0.004704,0.005824,0.004448,0.006112,0.005568,0.01696,0.005696
+1237,1478.17,0.676514,0.181632,0.005504,0.1256,0.006112,0.005536,0.004704,0.006112,0.005408,0.017152,0.005504
+1238,1667.07,0.599854,0.197696,0.005376,0.142144,0.005792,0.00448,0.006112,0.005664,0.004576,0.018304,0.005248
+1239,858.88,1.16431,0.192928,0.004512,0.139264,0.006176,0.004064,0.006144,0.005632,0.004608,0.017888,0.00464
+1240,1665.72,0.600342,0.205344,0.00464,0.151552,0.006144,0.004096,0.006144,0.005568,0.004672,0.018176,0.004352
+1241,1418.53,0.704956,0.229536,0.004576,0.17408,0.005728,0.004512,0.006144,0.006144,0.005664,0.016864,0.005824
+1242,1449.65,0.689819,0.18912,0.004768,0.1352,0.005312,0.004864,0.00576,0.004512,0.006144,0.0176,0.00496
+1243,1775.85,0.56311,0.189312,0.004992,0.13504,0.0056,0.0048,0.005792,0.005568,0.004992,0.017856,0.004672
+1244,866.787,1.15369,0.190464,0.005536,0.135008,0.004864,0.005664,0.004576,0.006144,0.006144,0.017568,0.00496
+1245,1175.66,0.850586,0.198496,0.00816,0.140544,0.004864,0.005984,0.005376,0.005024,0.005888,0.01664,0.006016
+1246,1804.41,0.554199,0.191808,0.006176,0.13632,0.004928,0.00416,0.006112,0.005856,0.005536,0.01728,0.00544
+1247,921.589,1.08508,0.399104,0.005824,0.342304,0.00608,0.005568,0.004832,0.006048,0.005664,0.016864,0.00592
+1248,1770.86,0.564697,0.186976,0.004672,0.132864,0.0056,0.004896,0.005664,0.004576,0.006176,0.017536,0.004992
+1249,1788.65,0.559082,0.190304,0.005536,0.135488,0.0056,0.004896,0.005408,0.004864,0.005856,0.016672,0.005984
+1250,1544.79,0.647339,0.178688,0.004608,0.12608,0.00496,0.004128,0.006048,0.005472,0.004864,0.017952,0.004576
+1251,1849.21,0.540771,0.188256,0.004416,0.134464,0.0048,0.00576,0.00448,0.006176,0.005408,0.017088,0.005664
+1252,1691.16,0.591309,0.185696,0.00592,0.12928,0.006112,0.00528,0.00496,0.006016,0.00544,0.017216,0.005472
+1253,1642.01,0.609009,0.190176,0.004768,0.135168,0.006144,0.005152,0.00512,0.005728,0.00448,0.018336,0.00528
+1254,1122.96,0.890503,0.663552,0.00608,0.607744,0.004704,0.006112,0.005696,0.004544,0.006144,0.017664,0.004864
+1255,1231.51,0.812012,0.182624,0.004448,0.128576,0.0056,0.005088,0.005728,0.004512,0.006144,0.017696,0.004832
+1256,1635.13,0.611572,0.182272,0.00576,0.127328,0.005632,0.004672,0.005696,0.004512,0.006144,0.017632,0.004896
+1257,1869.47,0.534912,0.184128,0.005536,0.127584,0.006144,0.006176,0.005536,0.004672,0.006176,0.016352,0.005952
+1258,1077.61,0.927979,0.188416,0.006144,0.13312,0.005568,0.004672,0.005568,0.005952,0.004864,0.017536,0.004992
+1259,1722.46,0.580566,0.180768,0.00464,0.126976,0.00576,0.00448,0.00576,0.005504,0.00512,0.017952,0.004576
+1260,1603.76,0.623535,0.185984,0.005504,0.129632,0.005696,0.004576,0.006112,0.006144,0.005632,0.016896,0.005792
+1261,1806.79,0.553467,0.183168,0.00512,0.128064,0.005056,0.00544,0.00592,0.005024,0.005888,0.016672,0.005984
+1262,1507.27,0.663452,0.180224,0.006016,0.124448,0.004704,0.005152,0.005088,0.006176,0.006112,0.017568,0.00496
+1263,1623.79,0.615845,0.188416,0.005376,0.135104,0.004928,0.0056,0.00464,0.006144,0.005536,0.01664,0.004448
+1264,1891.04,0.528809,0.181664,0.006144,0.126048,0.005024,0.005472,0.004768,0.006144,0.00544,0.017088,0.005536
+1265,927.956,1.07764,0.184832,0.00672,0.129024,0.005888,0.004352,0.005952,0.005504,0.004864,0.016448,0.00608
+1266,1690.12,0.591675,0.179488,0.005344,0.125376,0.004448,0.005408,0.004832,0.006016,0.005408,0.017248,0.005408
+1267,1675.94,0.59668,0.182752,0.005088,0.126976,0.006144,0.004128,0.006112,0.006144,0.005472,0.017056,0.005632
+1268,1330.52,0.751587,0.180576,0.004448,0.126912,0.005632,0.004704,0.0056,0.004608,0.006144,0.018272,0.004256
+1269,1865.63,0.536011,0.186368,0.005824,0.131392,0.005792,0.004448,0.006144,0.005664,0.004608,0.01824,0.004256
+1270,1468.1,0.681152,0.179872,0.0056,0.125184,0.004416,0.00544,0.0048,0.006016,0.00544,0.017184,0.005792
+1271,1818.02,0.550049,0.188384,0.006112,0.133152,0.005824,0.004384,0.006144,0.005664,0.004576,0.01824,0.004288
+1272,1631.22,0.613037,0.181088,0.00496,0.126656,0.0056,0.004896,0.005728,0.004576,0.006144,0.017664,0.004864
+1273,1774.31,0.563599,0.188384,0.00608,0.133152,0.005792,0.004448,0.005856,0.005504,0.005024,0.017824,0.004704
+1274,1515.35,0.659912,0.187008,0.0048,0.13312,0.005472,0.004768,0.005472,0.004768,0.005952,0.016576,0.00608
+1275,1108.68,0.901978,0.659232,0.005792,0.603936,0.00464,0.005888,0.004352,0.006144,0.00576,0.016768,0.005952
+1276,1262.06,0.792358,0.183584,0.006176,0.128128,0.004992,0.005504,0.004704,0.006144,0.005856,0.016672,0.005408
+1277,1787.48,0.559448,0.190752,0.004448,0.1352,0.006144,0.00512,0.00624,0.004992,0.00592,0.016608,0.00608
+1278,1337.47,0.747681,0.209024,0.004576,0.155552,0.004192,0.004128,0.006112,0.005856,0.00592,0.016896,0.005792
+1279,1477.9,0.676636,0.188448,0.006144,0.133152,0.00544,0.004768,0.005952,0.005536,0.004928,0.017952,0.004576
+1280,1709.16,0.585083,0.18384,0.004512,0.129024,0.0056,0.00464,0.006144,0.005792,0.004576,0.018304,0.005248
+1281,480.61,2.08069,0.600096,0.006016,0.548384,0.004704,0.004096,0.006176,0.005728,0.004512,0.016352,0.004128
+1282,1531.79,0.652832,0.219104,0.006112,0.165024,0.00496,0.004096,0.006144,0.005472,0.004768,0.018016,0.004512
+1283,1090.09,0.917358,0.499712,0.005536,0.430336,0.020864,0.004064,0.006144,0.0056,0.00464,0.018176,0.004352
+1284,1111.83,0.899414,0.190176,0.005344,0.135264,0.00496,0.005536,0.004704,0.006144,0.005504,0.017024,0.005696
+1285,1901.58,0.525879,0.189856,0.006144,0.1344,0.004864,0.005664,0.004576,0.00608,0.00544,0.017152,0.005536
+1286,1142.22,0.875488,0.387296,0.004576,0.334144,0.00416,0.005696,0.004544,0.006112,0.00544,0.017088,0.005536
+1287,1751.18,0.571045,0.186336,0.006112,0.131072,0.005696,0.004544,0.00576,0.00448,0.006144,0.017728,0.0048
+1288,1210.94,0.825806,0.188,0.005792,0.132704,0.004864,0.005664,0.004576,0.006176,0.0056,0.016896,0.005728
+1289,1433.42,0.697632,0.235968,0.004512,0.182272,0.006176,0.005376,0.004832,0.005984,0.005536,0.016736,0.004544
+1290,1366.93,0.731567,0.216864,0.005888,0.162048,0.005472,0.004768,0.005536,0.004736,0.006112,0.016384,0.00592
+1291,1509.21,0.662598,0.206816,0.005696,0.151968,0.005792,0.00448,0.00576,0.005504,0.005088,0.017728,0.0048
+1292,1727.91,0.578735,0.189024,0.004672,0.135168,0.006176,0.004064,0.006144,0.00544,0.0048,0.018048,0.004512
+1293,1133.37,0.882324,0.676192,0.004928,0.621856,0.004832,0.005696,0.004544,0.006176,0.005504,0.016992,0.005664
+1294,1180.74,0.846924,0.18256,0.00496,0.128896,0.004224,0.005632,0.00464,0.00608,0.005408,0.017152,0.005568
+1295,1732.29,0.577271,0.185088,0.004864,0.130368,0.0048,0.005728,0.005984,0.004672,0.006144,0.017472,0.005056
+1296,1452.22,0.688599,0.186656,0.004704,0.130816,0.0056,0.004864,0.00608,0.00624,0.005696,0.016832,0.005824
+1297,1057.99,0.94519,0.271456,0.005952,0.202176,0.004832,0.018432,0.006144,0.006048,0.00544,0.017184,0.005248
+1298,1272.84,0.785645,0.25552,0.005312,0.18944,0.005568,0.004704,0.015808,0.005856,0.00608,0.01728,0.005472
+1299,1650.95,0.605713,0.20032,0.005664,0.145216,0.004768,0.005728,0.004544,0.006112,0.0056,0.016928,0.00576
+1300,1313.03,0.761597,0.192544,0.005344,0.137408,0.004736,0.006176,0.0056,0.005728,0.005024,0.017888,0.00464
+1301,963.651,1.03772,0.204224,0.005984,0.148736,0.005024,0.005504,0.004736,0.006112,0.005408,0.017152,0.005568
+1302,882.759,1.13281,0.247712,0.007456,0.18208,0.004928,0.004192,0.014336,0.006144,0.006112,0.016416,0.006048
+1303,1617.69,0.618164,0.22528,0.005408,0.170752,0.006016,0.004224,0.006048,0.005472,0.004832,0.016416,0.006112
+1304,1397.48,0.715576,0.410112,0.004608,0.356352,0.005696,0.004544,0.005696,0.004576,0.006144,0.017568,0.004928
+1305,1236.53,0.808716,0.190464,0.006144,0.134656,0.004608,0.00592,0.005632,0.004832,0.006144,0.017408,0.00512
+1306,1363.52,0.733398,0.280096,0.005568,0.2256,0.004352,0.005536,0.004704,0.006048,0.005632,0.016992,0.005664
+1307,1727.18,0.578979,0.188416,0.00544,0.13296,0.00496,0.005568,0.004672,0.006144,0.006144,0.017664,0.004864
+1308,1638.4,0.610352,0.190432,0.006112,0.135072,0.005632,0.004704,0.0056,0.00464,0.006144,0.017568,0.00496
+1309,1508.1,0.663086,0.192384,0.005408,0.137504,0.005632,0.004896,0.005376,0.004992,0.005888,0.01664,0.006048
+1310,1632.52,0.612549,0.205568,0.00496,0.150848,0.0048,0.004096,0.006144,0.005632,0.006368,0.016672,0.006048
+1311,769.274,1.29993,0.200896,0.007488,0.144256,0.006048,0.004224,0.006016,0.005504,0.004832,0.018112,0.004416
+1312,1797.67,0.556274,0.188416,0.006144,0.1328,0.0056,0.004928,0.005344,0.006208,0.004864,0.01824,0.004288
+1313,1486.21,0.672852,0.220896,0.006144,0.165504,0.005632,0.004896,0.005344,0.005024,0.005696,0.0168,0.005856
+1314,886.484,1.12805,0.192512,0.006176,0.138336,0.004768,0.004352,0.00592,0.005344,0.005088,0.01776,0.004768
+1315,1806.39,0.553589,0.18656,0.004992,0.132352,0.004864,0.005664,0.004608,0.006144,0.005504,0.017024,0.005408
+1316,1507.27,0.663452,0.184256,0.006048,0.127072,0.006176,0.005184,0.005024,0.006144,0.00592,0.016608,0.00608
+1317,1880.62,0.531738,0.18432,0.00544,0.12944,0.0056,0.004896,0.0056,0.004672,0.006176,0.017536,0.00496
+1318,1535.23,0.651367,0.187008,0.004896,0.131072,0.00544,0.0048,0.005504,0.006656,0.005408,0.017248,0.005984
+1319,1610.38,0.620972,0.196608,0.006144,0.141088,0.005632,0.004832,0.0056,0.005728,0.005056,0.01776,0.004768
+1320,982.372,1.01794,0.659488,0.005376,0.604992,0.006112,0.005152,0.005088,0.005696,0.004544,0.018304,0.004224
+1321,1030.31,0.970581,0.208896,0.005888,0.155712,0.0056,0.004832,0.00576,0.00448,0.006144,0.016384,0.004096
+1322,1713.81,0.583496,0.186336,0.005536,0.132704,0.00496,0.004224,0.006048,0.00544,0.004896,0.017952,0.004576
+1323,1264.78,0.790649,0.40976,0.004832,0.35456,0.006112,0.005152,0.005088,0.005888,0.005408,0.017376,0.005344
+1324,1537.83,0.650269,0.183072,0.004896,0.129024,0.006144,0.004096,0.006112,0.004128,0.006144,0.017696,0.004832
+1325,1793.74,0.557495,0.188224,0.00544,0.133376,0.005632,0.004896,0.005312,0.005088,0.005824,0.016704,0.005952
+1326,1562.76,0.639893,0.18432,0.005632,0.13072,0.004928,0.00416,0.006112,0.00528,0.00496,0.01792,0.004608
+1327,1813.59,0.551392,0.188992,0.004672,0.134592,0.004672,0.005856,0.005664,0.004864,0.006048,0.01648,0.006144
+1328,1369.9,0.72998,0.233504,0.0056,0.178688,0.0056,0.004672,0.0056,0.00464,0.006112,0.016416,0.006176
+1329,1789.82,0.558716,0.193184,0.004768,0.138528,0.004832,0.005728,0.005824,0.004832,0.006176,0.017408,0.005088
+1330,1055.81,0.947144,0.67584,0.005632,0.61904,0.006112,0.006016,0.005568,0.004832,0.006048,0.01648,0.006112
+1331,1323.85,0.755371,0.18784,0.005472,0.13296,0.004928,0.0056,0.00464,0.006144,0.00544,0.01712,0.005536
+1332,1654.95,0.604248,0.185408,0.006176,0.128992,0.006176,0.005088,0.005152,0.005728,0.004544,0.018304,0.005248
+1333,1560.68,0.640747,0.219232,0.005344,0.164832,0.004096,0.006144,0.005568,0.004672,0.005856,0.016672,0.006048
+1334,1245.55,0.802856,0.181952,0.004768,0.126944,0.00416,0.005856,0.0064,0.005696,0.004512,0.018368,0.005248
+1335,1680.76,0.594971,0.191168,0.0048,0.13712,0.0056,0.004736,0.006112,0.005472,0.0048,0.018048,0.00448
+1336,1619.29,0.617554,0.182432,0.005344,0.127936,0.005728,0.004544,0.006112,0.005664,0.004576,0.01824,0.004288
+1337,1560.98,0.640625,0.181056,0.004928,0.126976,0.00592,0.004352,0.005984,0.004224,0.006144,0.01744,0.005088
+1338,1914.02,0.522461,0.180576,0.004608,0.126976,0.00544,0.0048,0.005408,0.004832,0.005856,0.016672,0.005984
+1339,1473.38,0.678711,0.18992,0.005504,0.13376,0.006144,0.004096,0.006144,0.006176,0.00544,0.017056,0.0056
+1340,1817.21,0.550293,0.451744,0.005344,0.39536,0.006976,0.00512,0.00512,0.005664,0.004576,0.018304,0.00528
+1341,887.252,1.12708,0.181856,0.004704,0.127008,0.006112,0.004096,0.006144,0.005664,0.004576,0.018272,0.00528
+1342,1673.2,0.597656,0.18896,0.00464,0.135168,0.004096,0.005664,0.004576,0.006144,0.006144,0.01744,0.005088
+1343,1641.03,0.609375,0.183648,0.005312,0.128,0.006176,0.005344,0.004896,0.005824,0.00544,0.017376,0.00528
+1344,1079.03,0.926758,0.209984,0.005472,0.15552,0.004896,0.005632,0.00464,0.006112,0.005408,0.016704,0.0056
+1345,973.153,1.02759,0.237568,0.00592,0.1672,0.005056,0.005472,0.016768,0.005888,0.004608,0.02048,0.006176
+1346,1829.8,0.546509,0.194048,0.006144,0.139264,0.005632,0.004608,0.005632,0.004608,0.006144,0.016416,0.0056
+1347,1444.03,0.692505,0.198592,0.00464,0.144704,0.004832,0.005696,0.004544,0.006112,0.005568,0.01696,0.005536
+1348,1305.71,0.765869,0.282624,0.006144,0.210944,0.006144,0.004096,0.006144,0.016384,0.005664,0.022112,0.004992
+1349,1243.85,0.803955,0.261888,0.005984,0.198816,0.006144,0.005344,0.01104,0.006144,0.005696,0.016832,0.005888
+1350,1112.74,0.898682,0.666144,0.004608,0.611392,0.005056,0.006144,0.005376,0.004864,0.006016,0.016512,0.006176
+1351,1265.96,0.789917,0.185472,0.005536,0.130688,0.005088,0.005472,0.0048,0.00576,0.004448,0.0184,0.00528
+1352,1757.56,0.56897,0.188416,0.005664,0.135072,0.004672,0.005856,0.004512,0.006016,0.005664,0.016704,0.004256
+1353,1351.59,0.739868,0.186624,0.004512,0.132288,0.00496,0.005888,0.005408,0.005056,0.005824,0.016704,0.005984
+1354,1630.57,0.613281,0.190432,0.005376,0.1352,0.00496,0.00416,0.006144,0.006144,0.005792,0.016736,0.00592
+1355,1744.09,0.573364,0.182272,0.00544,0.127712,0.006112,0.004096,0.006144,0.005664,0.004576,0.01824,0.004288
+1356,1631.22,0.613037,0.181952,0.005344,0.125888,0.006176,0.00528,0.004928,0.006144,0.005504,0.017024,0.005664
+1357,1658.3,0.603027,0.188832,0.004704,0.134592,0.004672,0.005856,0.004544,0.005984,0.005792,0.016768,0.00592
+1358,1629.92,0.613525,0.190848,0.00448,0.138624,0.004736,0.004192,0.006048,0.005536,0.004704,0.018176,0.004352
+1359,1897.61,0.526978,0.167904,0.005568,0.115328,0.005248,0.004896,0.006112,0.004288,0.005984,0.016288,0.004192
+1360,1167.62,0.856445,0.665984,0.004608,0.612032,0.0056,0.004896,0.005312,0.004992,0.00592,0.016608,0.006016
+1361,1310.09,0.763306,0.188448,0.006016,0.133248,0.005824,0.004416,0.00592,0.004352,0.006112,0.017664,0.004896
+1362,824.394,1.21301,0.182432,0.004608,0.128256,0.004864,0.004096,0.006048,0.00608,0.005408,0.017312,0.00576
+1363,1333.12,0.750122,0.192512,0.005632,0.137344,0.005632,0.005024,0.005824,0.004384,0.006144,0.01776,0.004768
+1364,1592.54,0.62793,0.186016,0.004768,0.132096,0.005152,0.005344,0.004864,0.005696,0.004544,0.018304,0.005248
+1365,1048.24,0.953979,0.19264,0.00496,0.139264,0.005696,0.004544,0.005728,0.004512,0.00608,0.016448,0.005408
+1366,1747.44,0.572266,0.206432,0.005696,0.139712,0.006144,0.005536,0.012864,0.008192,0.005888,0.01664,0.00576
+1367,1512.56,0.661133,0.18176,0.006112,0.126368,0.004704,0.005824,0.004544,0.006016,0.005632,0.016896,0.005664
+1368,1982.58,0.504395,0.179488,0.005568,0.123456,0.006144,0.005152,0.005088,0.006016,0.005408,0.017248,0.005408
+1369,1496.26,0.668335,0.173664,0.004672,0.118304,0.005632,0.004928,0.006336,0.005888,0.004352,0.018304,0.005248
+1370,517.204,1.93347,0.181696,0.008128,0.12464,0.004448,0.005536,0.004704,0.006048,0.005536,0.017088,0.005568
+1371,1836.36,0.544556,0.173472,0.006112,0.11808,0.004832,0.005664,0.004576,0.00608,0.005408,0.017184,0.005536
+1372,1906.45,0.524536,0.176608,0.004576,0.12288,0.006144,0.004096,0.006176,0.0056,0.004608,0.018272,0.004256
+1373,1467.31,0.681519,0.168544,0.004864,0.116704,0.004128,0.00528,0.004928,0.006144,0.00576,0.01616,0.004576
+1374,1599.06,0.625366,0.192384,0.004448,0.112256,0.004256,0.004352,0.006048,0.032832,0.00592,0.016608,0.005664
+1375,1662,0.601685,0.193856,0.005312,0.136192,0.006144,0.005568,0.006112,0.006144,0.004704,0.018144,0.005536
+1376,443.578,2.25439,0.745792,0.3216,0.372448,0.006688,0.005856,0.004384,0.006144,0.005728,0.01792,0.005024
+1377,1729.36,0.578247,0.200064,0.007456,0.139392,0.005888,0.00496,0.008192,0.006144,0.006048,0.016064,0.00592
+1378,1533.8,0.651978,0.186496,0.00832,0.129024,0.005728,0.004544,0.00576,0.00448,0.005952,0.016544,0.006144
+1379,1809.59,0.552612,0.191808,0.005344,0.136096,0.005696,0.004576,0.006112,0.00576,0.005568,0.017344,0.005312
+1380,1249.35,0.800415,0.188736,0.006464,0.132832,0.0056,0.004896,0.005408,0.004864,0.005792,0.016736,0.006144
+1381,1734.12,0.57666,0.198624,0.005376,0.143488,0.006016,0.004864,0.00544,0.004768,0.005952,0.016576,0.006144
+1382,1533.8,0.651978,0.182336,0.005376,0.127584,0.004384,0.005472,0.004736,0.006144,0.005984,0.016544,0.006112
+1383,1224.51,0.81665,0.192288,0.006144,0.136352,0.00496,0.005568,0.004672,0.006144,0.005472,0.017056,0.00592
+1384,1840.9,0.543213,0.189184,0.006912,0.131008,0.006048,0.004288,0.006112,0.005504,0.004736,0.018112,0.006464
+1385,864.317,1.15698,0.207552,0.0048,0.15504,0.004704,0.005824,0.004544,0.006016,0.005696,0.016384,0.004544
+1386,1020.05,0.980347,0.242912,0.007584,0.186496,0.004576,0.00528,0.00496,0.005824,0.00608,0.0168,0.005312
+1387,1686.99,0.592773,0.195904,0.006144,0.140288,0.00512,0.005408,0.004832,0.005984,0.005408,0.017312,0.005408
+1388,1542.75,0.648193,0.189568,0.005952,0.134656,0.0048,0.005728,0.004512,0.006144,0.005568,0.01696,0.005248
+1389,1220.86,0.819092,0.387072,0.005504,0.332256,0.005632,0.004768,0.005856,0.005568,0.00496,0.017888,0.00464
+1390,1768.18,0.565552,0.189824,0.006048,0.134976,0.004384,0.005472,0.004768,0.006048,0.00544,0.017216,0.005472
+1391,1671.5,0.598267,0.188384,0.004608,0.133056,0.0056,0.004704,0.006176,0.00608,0.00544,0.01712,0.0056
+1392,1748.19,0.572021,0.189504,0.006176,0.132608,0.005632,0.004896,0.006336,0.00576,0.00448,0.018368,0.005248
+1393,1658.3,0.603027,0.18432,0.005888,0.129312,0.006112,0.004128,0.006112,0.005504,0.004736,0.018048,0.00448
+1394,1630.57,0.613281,0.192544,0.005664,0.138752,0.00496,0.004224,0.005792,0.005472,0.00512,0.017504,0.005056
+1395,1644.98,0.60791,0.193856,0.00608,0.138432,0.005024,0.005536,0.004672,0.005984,0.00544,0.017248,0.00544
+1396,824.809,1.2124,0.189696,0.007712,0.131552,0.006144,0.005152,0.005088,0.005664,0.005696,0.017312,0.005376
+1397,1654.28,0.604492,0.184832,0.004608,0.131072,0.005824,0.004448,0.005824,0.005728,0.0048,0.01808,0.004448
+1398,1653.28,0.604858,0.21664,0.005568,0.16032,0.005824,0.005504,0.005056,0.006176,0.005504,0.017024,0.005664
+1399,1180.57,0.847046,0.389152,0.006016,0.33312,0.00512,0.005984,0.005344,0.005056,0.005824,0.016704,0.005984
+1400,1649.62,0.606201,0.221184,0.004352,0.16752,0.0056,0.004896,0.004448,0.005952,0.00576,0.016768,0.005888
+1401,1667.75,0.599609,0.185696,0.00576,0.130496,0.005088,0.00544,0.004768,0.00592,0.005408,0.017344,0.005472
+1402,1413.14,0.707642,0.18432,0.005792,0.129376,0.005952,0.004288,0.006016,0.005472,0.004896,0.018176,0.004352
+1403,1891.04,0.528809,0.1928,0.00512,0.138272,0.005088,0.005408,0.004832,0.00592,0.00544,0.017312,0.005408
+1404,1524.66,0.655884,0.194528,0.006112,0.137216,0.006144,0.005216,0.006592,0.004576,0.006144,0.017696,0.004832
+1405,1850.05,0.540527,0.182272,0.006144,0.126848,0.005632,0.004768,0.005504,0.004736,0.005984,0.016512,0.006144
+1406,984.497,1.01575,0.656032,0.004768,0.601344,0.004896,0.006112,0.005536,0.004704,0.006144,0.017504,0.005024
+1407,959.138,1.0426,0.198848,0.005344,0.14432,0.005728,0.004512,0.005792,0.005472,0.005152,0.017568,0.00496
+1408,1600.94,0.624634,0.200736,0.006144,0.145312,0.0056,0.004736,0.005472,0.006112,0.0048,0.017696,0.004864
+1409,1260.5,0.793335,0.192832,0.004832,0.1392,0.0056,0.004672,0.0056,0.00464,0.0056,0.016928,0.00576
+1410,1174.14,0.851685,0.20784,0.005824,0.15296,0.00496,0.00416,0.005984,0.005472,0.0064,0.016864,0.005216
+1411,1870.75,0.534546,0.186368,0.00608,0.131136,0.00576,0.00448,0.005664,0.004576,0.006144,0.017632,0.004896
+1412,1707.02,0.585815,0.194688,0.004896,0.12192,0.005056,0.022528,0.006144,0.006112,0.005312,0.017248,0.005472
+1413,1670.47,0.598633,0.186016,0.005952,0.131136,0.0056,0.004768,0.005504,0.004736,0.005696,0.016832,0.005792
+1414,1500.64,0.666382,0.191552,0.006144,0.137088,0.004256,0.0056,0.00464,0.005952,0.005696,0.016928,0.005248
+1415,1475.5,0.677734,0.19392,0.005504,0.137856,0.006176,0.005312,0.004896,0.00608,0.00544,0.017152,0.005504
+1416,709.387,1.40967,0.196608,0.008192,0.139264,0.006144,0.004096,0.006176,0.005568,0.00464,0.01808,0.004448
+1417,1924.36,0.519653,0.184256,0.006144,0.128768,0.005632,0.004896,0.005312,0.004896,0.005984,0.016544,0.00608
+1418,1552.69,0.644043,0.3952,0.0056,0.340544,0.005152,0.004896,0.005408,0.004992,0.00592,0.016608,0.00608
+1419,1283.81,0.778931,0.1904,0.005984,0.134816,0.004608,0.005888,0.004576,0.005952,0.00592,0.016608,0.006048
+1420,1682.14,0.594482,0.18224,0.004704,0.12816,0.00496,0.005568,0.004672,0.006048,0.00544,0.017184,0.005504
+1421,1770.1,0.564941,0.187136,0.004864,0.133152,0.005696,0.004544,0.00576,0.00448,0.00608,0.01744,0.00512
+1422,1578.42,0.633545,0.181024,0.004896,0.126976,0.005952,0.004288,0.006016,0.005344,0.005024,0.017824,0.004704
+1423,1868.61,0.535156,0.18656,0.005344,0.132064,0.005952,0.00432,0.005952,0.00576,0.00464,0.018176,0.004352
+1424,1602.19,0.624146,0.191776,0.005344,0.135968,0.005824,0.004448,0.006112,0.005984,0.00544,0.017248,0.005408
+1425,1645.31,0.607788,0.187456,0.006144,0.130592,0.005632,0.004896,0.006368,0.005824,0.005408,0.017344,0.005248
+1426,821.418,1.21741,0.196768,0.006752,0.141312,0.004096,0.005856,0.004512,0.006016,0.005536,0.016992,0.005696
+1427,1677.66,0.596069,0.183552,0.005344,0.1296,0.004512,0.005344,0.004864,0.005856,0.005408,0.017376,0.005248
+1428,1743.35,0.573608,0.190336,0.004896,0.135072,0.0056,0.004736,0.006176,0.005696,0.004512,0.018368,0.00528
+1429,1129.46,0.885376,0.221408,0.005344,0.166432,0.0056,0.004928,0.00544,0.004992,0.00592,0.017664,0.005088
+1430,1532.07,0.65271,0.215872,0.004928,0.161632,0.004256,0.0056,0.00464,0.006176,0.006112,0.018176,0.004352
+1431,1311.98,0.762207,0.205056,0.004352,0.150944,0.004704,0.005824,0.004544,0.006048,0.006112,0.017536,0.004992
+1432,1099.15,0.90979,0.288768,0.005952,0.219328,0.006144,0.005408,0.004832,0.016384,0.00544,0.019136,0.006144
+1433,1466.52,0.681885,0.212992,0.006144,0.157728,0.006112,0.004096,0.006144,0.005632,0.004608,0.01744,0.005088
+1434,1709.52,0.584961,0.19392,0.00592,0.138848,0.004768,0.005088,0.005152,0.005696,0.004512,0.018336,0.0056
+1435,757.256,1.32056,0.206272,0.008192,0.14928,0.005568,0.004896,0.005376,0.004896,0.005984,0.016512,0.005568
+1436,1586.67,0.630249,0.198656,0.006112,0.143392,0.006176,0.005088,0.00512,0.005856,0.00544,0.016672,0.0048
+1437,1305.08,0.766235,0.193952,0.005344,0.1416,0.005888,0.0048,0.005536,0.004768,0.004096,0.016384,0.005536
+1438,1590.68,0.628662,0.196448,0.004352,0.14336,0.0056,0.00464,0.0056,0.00464,0.006176,0.016352,0.005728
+1439,1267.92,0.788696,0.193248,0.00512,0.139232,0.005728,0.004512,0.005824,0.005472,0.005088,0.016384,0.005888
+1440,190.507,5.24915,4.67184,0.004992,4.61328,0.008448,0.004736,0.005728,0.005632,0.004992,0.01808,0.005952
+1441,655.046,1.52661,0.915328,0.006176,0.85808,0.006144,0.005312,0.004928,0.005664,0.005664,0.016608,0.006752
+1442,560.75,1.78333,0.479072,0.006464,0.423008,0.00512,0.006048,0.005856,0.005472,0.005056,0.016384,0.005664
+1443,930.169,1.07507,0.594816,0.004992,0.540672,0.006112,0.004128,0.006112,0.00544,0.004832,0.018176,0.004352
+1444,703.599,1.42126,0.206848,0.01024,0.146976,0.005632,0.004896,0.006144,0.005472,0.00496,0.01648,0.006048
+1445,1444.03,0.692505,0.189248,0.006688,0.131552,0.006176,0.00512,0.005088,0.005664,0.006048,0.01696,0.005952
+1446,1002.94,0.99707,0.196608,0.006112,0.143392,0.0056,0.00416,0.004576,0.006144,0.005536,0.016416,0.004672
+1447,2053.13,0.487061,0.181696,0.006144,0.126048,0.005024,0.005504,0.004736,0.006144,0.00544,0.017088,0.005568
+1448,1698.53,0.588745,0.180224,0.006048,0.125056,0.005984,0.004224,0.005984,0.005472,0.00496,0.01792,0.004576
+1449,1662.68,0.60144,0.181952,0.005344,0.125792,0.006144,0.005344,0.004896,0.006144,0.005632,0.016896,0.00576
+1450,1559.79,0.641113,0.180512,0.00496,0.126432,0.004672,0.005184,0.005056,0.006048,0.00544,0.017152,0.005568
+1451,1379.82,0.724731,0.181824,0.004608,0.126432,0.00464,0.005856,0.006432,0.00576,0.00448,0.018336,0.00528
+1452,1639.38,0.609985,0.182272,0.005664,0.127488,0.005856,0.004352,0.005984,0.005504,0.004896,0.017984,0.004544
+1453,727.466,1.37463,0.190464,0.008224,0.133088,0.006144,0.005216,0.005024,0.005792,0.004448,0.017696,0.004832
+1454,1807.59,0.553223,0.176128,0.00592,0.122528,0.004704,0.005152,0.005056,0.005632,0.004608,0.018272,0.004256
+1455,1918.5,0.52124,0.18208,0.005376,0.12704,0.004992,0.00576,0.004544,0.00608,0.005632,0.016896,0.00576
+1456,1220.68,0.819214,0.381408,0.004576,0.32768,0.006016,0.004224,0.006112,0.005536,0.004736,0.017728,0.0048
+1457,1711.66,0.584229,0.182304,0.005632,0.127488,0.005632,0.004608,0.005888,0.005472,0.005024,0.017728,0.004832
+1458,1554.16,0.643433,0.178848,0.004768,0.126144,0.004928,0.004128,0.005984,0.005504,0.004864,0.017984,0.004544
+1459,1831.43,0.546021,0.180224,0.006112,0.124928,0.006144,0.005184,0.005088,0.005536,0.004672,0.018144,0.004416
+1460,1545.37,0.647095,0.182272,0.005344,0.12736,0.0056,0.005088,0.005888,0.005504,0.00496,0.017952,0.004576
+1461,621.784,1.60828,0.186336,0.005888,0.131008,0.005632,0.004896,0.005344,0.004896,0.005984,0.016544,0.006144
+1462,1040.52,0.96106,0.193984,0.007488,0.13616,0.005344,0.004896,0.005376,0.004864,0.007168,0.017408,0.00528
+1463,1791.78,0.558105,0.188416,0.005888,0.133216,0.005632,0.0048,0.005472,0.004768,0.00608,0.016448,0.006112
+1464,1739.65,0.574829,0.178176,0.005984,0.12304,0.006176,0.005184,0.005024,0.005632,0.00464,0.018208,0.004288
+1465,1272.64,0.785767,0.384864,0.005696,0.3296,0.004672,0.005856,0.005664,0.004864,0.006016,0.016512,0.005984
+1466,1616.1,0.618774,0.182272,0.00608,0.12704,0.00528,0.004928,0.005344,0.004928,0.005984,0.016544,0.006144
+1467,1865.63,0.536011,0.18432,0.005504,0.129472,0.0056,0.004832,0.005536,0.004736,0.006112,0.01744,0.005088
+1468,1476.57,0.677246,0.182272,0.006016,0.126976,0.005632,0.004736,0.006144,0.005568,0.004672,0.018144,0.004384
+1469,1857.18,0.538452,0.186592,0.004736,0.13248,0.004768,0.005728,0.004544,0.00608,0.005568,0.01696,0.005728
+1470,1220.32,0.819458,0.181856,0.005344,0.127808,0.005632,0.00464,0.0056,0.00464,0.006112,0.016384,0.005696
+1471,2052.62,0.487183,0.184544,0.004864,0.130208,0.00496,0.005568,0.004672,0.006144,0.005472,0.017056,0.0056
+1472,1119.74,0.893066,0.662944,0.004448,0.608288,0.006112,0.004096,0.006144,0.005696,0.004544,0.018336,0.00528
+1473,1321.93,0.75647,0.176768,0.004736,0.122656,0.0056,0.004864,0.005984,0.005472,0.004928,0.017824,0.004704
+1474,1563.06,0.639771,0.178144,0.006144,0.12288,0.004096,0.005792,0.004608,0.006016,0.005888,0.016608,0.006112
+1475,1505.61,0.664185,0.176672,0.00464,0.124544,0.00448,0.006144,0.005568,0.004672,0.006144,0.016192,0.004288
+1476,1510.6,0.661987,0.17488,0.004896,0.120832,0.006176,0.004064,0.006144,0.005504,0.004736,0.018144,0.004384
+1477,1687.33,0.592651,0.180192,0.006112,0.12448,0.0056,0.00512,0.00592,0.005472,0.00496,0.017792,0.004736
+1478,1592.23,0.628052,0.17952,0.005376,0.125728,0.00416,0.005536,0.004672,0.005952,0.00544,0.01728,0.005376
+1479,1880.19,0.53186,0.181312,0.005344,0.12576,0.005728,0.004512,0.005696,0.004544,0.006144,0.018304,0.00528
+1480,1602.19,0.624146,0.177728,0.006144,0.120832,0.006144,0.005664,0.004576,0.006144,0.005536,0.016992,0.005696
+1481,1372.88,0.728394,0.225152,0.004864,0.171648,0.005632,0.004896,0.005344,0.005024,0.005856,0.01664,0.005248
+1482,1078.32,0.927368,0.68848,0.004608,0.63408,0.004896,0.006176,0.005568,0.00464,0.006144,0.016416,0.005952
+1483,912.046,1.09644,0.2408,0.005504,0.185984,0.005152,0.005344,0.004864,0.00592,0.00608,0.016672,0.00528
+1484,1668.09,0.599487,0.187776,0.00544,0.131744,0.006176,0.005184,0.005024,0.005792,0.005696,0.017184,0.005536
+1485,1720.65,0.581177,0.403584,0.005344,0.34912,0.006112,0.004096,0.006144,0.005664,0.004576,0.01824,0.004288
+1486,1264.98,0.790527,0.180832,0.004704,0.126976,0.004096,0.006048,0.005472,0.004896,0.006048,0.016448,0.006144
+1487,1579.33,0.633179,0.181312,0.00576,0.1248,0.004608,0.00592,0.006368,0.005728,0.004544,0.018304,0.00528
+1488,1695.72,0.589722,0.18992,0.005312,0.134016,0.00592,0.005504,0.004928,0.006112,0.00544,0.01712,0.005568
+1489,1604.39,0.623291,0.216256,0.005248,0.161824,0.004992,0.005504,0.004736,0.005856,0.00544,0.017376,0.00528
+1490,1532.07,0.65271,0.18432,0.005984,0.127136,0.005248,0.004992,0.006144,0.007328,0.00496,0.01792,0.004608
+1491,1785.53,0.560059,0.190464,0.005728,0.135264,0.005632,0.004896,0.005824,0.005536,0.005056,0.01776,0.004768
+1492,1123.42,0.890137,0.661504,0.00608,0.606272,0.005984,0.004256,0.005984,0.005504,0.004896,0.017952,0.004576
+1493,1209.87,0.826538,0.184096,0.00464,0.129024,0.00592,0.005504,0.00496,0.005952,0.005408,0.017312,0.005376
+1494,1711.66,0.584229,0.181824,0.004512,0.128416,0.004736,0.005184,0.005024,0.005824,0.00544,0.017408,0.00528
+1495,1647.96,0.606812,0.18368,0.005536,0.12864,0.005056,0.005344,0.004896,0.006144,0.005408,0.017152,0.005504
+1496,1453.51,0.687988,0.17632,0.005376,0.121792,0.006144,0.00432,0.00592,0.005664,0.004576,0.018272,0.004256
+1497,1701.7,0.587646,0.179392,0.005952,0.123072,0.00592,0.00432,0.006144,0.00592,0.005408,0.017344,0.005312
+1498,1750.05,0.571411,0.180224,0.006144,0.124928,0.005216,0.005056,0.006016,0.005472,0.004864,0.018016,0.004512
+1499,1579.33,0.633179,0.17632,0.004768,0.120832,0.006176,0.005664,0.004576,0.006112,0.005536,0.016992,0.005664
+1500,1875.03,0.533325,0.179424,0.005728,0.123296,0.005792,0.005536,0.005056,0.005792,0.005632,0.017248,0.005344
+1501,1536.67,0.650757,0.180608,0.004448,0.126784,0.005632,0.0048,0.005504,0.004736,0.006176,0.017408,0.00512
+1502,1624.75,0.615479,0.19488,0.005088,0.12656,0.004512,0.005344,0.018816,0.006304,0.005536,0.017248,0.005472
+1503,939.881,1.06396,0.182272,0.007904,0.124896,0.0056,0.004928,0.006176,0.005728,0.004512,0.018368,0.00416
+1504,1793.34,0.557617,0.182976,0.0048,0.128928,0.0056,0.004736,0.005344,0.004928,0.005984,0.016544,0.006112
+1505,1432.92,0.697876,0.182272,0.00608,0.12672,0.0056,0.00496,0.00544,0.0048,0.00608,0.016448,0.006144
+1506,1009.36,0.990723,0.202304,0.00576,0.149216,0.004768,0.004096,0.006176,0.005632,0.004576,0.0176,0.00448
+1507,1217.42,0.821411,0.199776,0.005568,0.145536,0.0056,0.004896,0.005376,0.005024,0.005856,0.01664,0.00528
+1508,1830.21,0.546387,0.187968,0.005312,0.131904,0.005632,0.00464,0.006144,0.006144,0.00544,0.017088,0.005664
+1509,1741.13,0.574341,0.178976,0.004864,0.12288,0.006144,0.006016,0.005408,0.00496,0.006144,0.017824,0.004736
+1510,1733.02,0.577026,0.175712,0.00544,0.121216,0.004416,0.005696,0.004576,0.006112,0.005536,0.01696,0.00576
+1511,1627.98,0.614258,0.185952,0.005536,0.129632,0.005792,0.00448,0.006144,0.006112,0.005568,0.01696,0.005728
+1512,1579.33,0.633179,0.180224,0.005856,0.125056,0.005632,0.004768,0.005568,0.004672,0.006144,0.017504,0.005024
+1513,784.975,1.27393,0.1864,0.007776,0.128704,0.004864,0.005632,0.00608,0.00464,0.006144,0.0176,0.00496
+1514,1843.8,0.542358,0.18176,0.005568,0.127552,0.005152,0.004928,0.004384,0.005984,0.005728,0.0168,0.005664
+1515,1600.63,0.624756,0.18368,0.006144,0.126976,0.006144,0.00592,0.005632,0.004864,0.005984,0.016544,0.005472
+1516,1161.99,0.860596,0.180064,0.00576,0.124992,0.005632,0.004896,0.005184,0.005056,0.005856,0.016672,0.006016
+1517,1720.29,0.581299,0.178816,0.004736,0.12496,0.006112,0.004096,0.006144,0.005536,0.004704,0.017952,0.004576
+1518,1726.09,0.579346,0.175232,0.005984,0.120448,0.004672,0.005184,0.005056,0.005728,0.00448,0.0184,0.00528
+1519,1564.25,0.639282,0.179008,0.004928,0.124192,0.004832,0.006144,0.005536,0.004704,0.006144,0.01744,0.005088
+1520,1922.1,0.520264,0.17984,0.005408,0.124672,0.005088,0.005664,0.004576,0.006144,0.005568,0.01696,0.00576
+1521,1390.83,0.718994,0.202048,0.005344,0.130912,0.005088,0.00544,0.021184,0.005888,0.005504,0.01728,0.005408
+1522,1674.23,0.59729,0.485376,0.005952,0.428224,0.007648,0.004672,0.006112,0.005536,0.004704,0.018112,0.004416
+1523,873.254,1.14514,0.180832,0.004736,0.124896,0.006144,0.005248,0.004992,0.006176,0.006112,0.017472,0.005056
+1524,1777.78,0.5625,0.180224,0.005856,0.124448,0.004864,0.006144,0.005664,0.004576,0.006144,0.017664,0.004864
+1525,1750.43,0.571289,0.178016,0.005952,0.121024,0.006176,0.005888,0.005344,0.00512,0.005792,0.016736,0.005984
+1526,1228.37,0.814087,0.384,0.006016,0.329184,0.004768,0.005216,0.005024,0.00576,0.00448,0.018304,0.005248
+1527,1602.19,0.624146,0.178144,0.005792,0.1232,0.005888,0.004352,0.006016,0.005504,0.004896,0.017952,0.004544
+1528,1863.09,0.536743,0.178144,0.006112,0.122848,0.0056,0.004672,0.00576,0.00448,0.006144,0.017664,0.004864
+1529,727.273,1.375,0.253824,0.005344,0.181088,0.006144,0.005344,0.004896,0.016032,0.005824,0.0232,0.005952
+1530,1742.61,0.573853,0.188256,0.004544,0.134912,0.004352,0.005504,0.004736,0.00608,0.005408,0.017184,0.005536
+1531,1770.86,0.564697,0.192832,0.004448,0.13872,0.004608,0.006144,0.005888,0.005472,0.005056,0.017792,0.004704
+1532,540.583,1.84985,0.185216,0.00704,0.129024,0.005856,0.004384,0.005984,0.005472,0.00496,0.017888,0.004608
+1533,1377.96,0.725708,0.183488,0.005344,0.127968,0.005856,0.004416,0.006112,0.005696,0.004544,0.018272,0.00528
+1534,1404.18,0.712158,0.178464,0.004384,0.124928,0.004096,0.005888,0.005856,0.00464,0.006144,0.017504,0.005024
+1535,1765.14,0.566528,0.178176,0.00576,0.123264,0.005664,0.004608,0.005696,0.004544,0.006112,0.017472,0.005056
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..6400e4a
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,1361.77,1.00965,0.320645,0.315345,0.00529947
+max_1024,6289.44,209.787,0.640608,0.635296,0.020864
+min_1024,4.76675,0.158997,0.28672,0.281504,0.004064
+512,6289.44,0.158997,0.288768,0.284,0.004768
+513,4.76675,209.787,0.287744,0.283072,0.004672
+514,3040.83,0.328857,0.288352,0.28288,0.005472
+515,656.831,1.52246,0.29216,0.285792,0.006368
+516,1942.15,0.514893,0.288416,0.282656,0.00576
+517,2368.31,0.422241,0.288736,0.282656,0.00608
+518,1184.33,0.84436,0.287424,0.283136,0.004288
+519,1960.28,0.510132,0.288768,0.28368,0.005088
+520,1236.16,0.80896,0.288704,0.282624,0.00608
+521,1575.38,0.634766,0.288288,0.283008,0.00528
+522,1620.57,0.617065,0.288768,0.283808,0.00496
+523,1490,0.671143,0.288768,0.283904,0.004864
+524,1002.69,0.997314,0.288416,0.282624,0.005792
+525,2025.72,0.493652,0.28864,0.283392,0.005248
+526,1599.06,0.625366,0.542336,0.536576,0.00576
+527,958.353,1.04346,0.28832,0.282624,0.005696
+528,1398.43,0.715088,0.288384,0.282976,0.005408
+529,1365.33,0.732422,0.288352,0.282624,0.005728
+530,1604.07,0.623413,0.28768,0.283104,0.004576
+531,1278,0.782471,0.288768,0.283808,0.00496
+532,1555.05,0.643066,0.288768,0.284064,0.004704
+533,1354.05,0.738525,0.28832,0.283104,0.005216
+534,1591.3,0.628418,0.28832,0.282624,0.005696
+535,1170.29,0.854492,0.287296,0.28288,0.004416
+536,1598.75,0.625488,0.609664,0.60416,0.005504
+537,674.128,1.4834,0.288768,0.283936,0.004832
+538,1297.02,0.770996,0.288736,0.282624,0.006112
+539,1839.66,0.543579,0.288288,0.282944,0.005344
+540,943.453,1.05994,0.288768,0.284,0.004768
+541,2305.01,0.433838,0.288768,0.283936,0.004832
+542,1257.6,0.795166,0.288768,0.282624,0.006144
+543,1624.75,0.615479,0.288768,0.282624,0.006144
+544,1615.78,0.618896,0.288352,0.282656,0.005696
+545,1414.85,0.706787,0.60416,0.599232,0.004928
+546,771.738,1.29578,0.287552,0.283104,0.004448
+547,1091.54,0.916138,0.288288,0.28304,0.005248
+548,1546.24,0.646729,0.288416,0.282912,0.005504
+549,1479.23,0.676025,0.287488,0.283136,0.004352
+550,1354.05,0.738525,0.288448,0.282624,0.005824
+551,1490.81,0.670776,0.288288,0.282656,0.005632
+552,1348.92,0.741333,0.288448,0.28272,0.005728
+553,1490.27,0.671021,0.53856,0.53248,0.00608
+554,956.451,1.04553,0.290816,0.286112,0.004704
+555,718.912,1.39099,0.288768,0.284,0.004768
+556,955.447,1.04663,0.288384,0.282912,0.005472
+557,3239.23,0.308716,0.28832,0.283104,0.005216
+558,1294.77,0.772339,0.288768,0.283904,0.004864
+559,1352.48,0.73938,0.28832,0.282912,0.005408
+560,1579.03,0.633301,0.2888,0.283904,0.004896
+561,1265.96,0.789917,0.288256,0.282624,0.005632
+562,1353.38,0.738892,0.604224,0.599744,0.00448
+563,1033.17,0.967896,0.287456,0.28304,0.004416
+564,1061.69,0.941895,0.288416,0.282624,0.005792
+565,1317.47,0.759033,0.287488,0.283104,0.004384
+566,1530.07,0.653564,0.28864,0.282656,0.005984
+567,1309.88,0.763428,0.288768,0.283712,0.005056
+568,1522.39,0.65686,0.288768,0.28384,0.004928
+569,1372.65,0.728516,0.288288,0.282976,0.005312
+570,1518.44,0.658569,0.288768,0.283712,0.005056
+571,1076.9,0.928589,0.613984,0.608256,0.005728
+572,903.098,1.1073,0.288416,0.283104,0.005312
+573,1137.15,0.879395,0.288768,0.284,0.004768
+574,1546.54,0.646606,0.288288,0.283072,0.005216
+575,1211.12,0.825684,0.29696,0.282624,0.014336
+576,800.469,1.24927,0.288768,0.283648,0.00512
+577,1554.16,0.643433,0.28848,0.282624,0.005856
+578,1329.01,0.752441,0.28832,0.282944,0.005376
+579,1359.22,0.735718,0.607744,0.602144,0.0056
+580,957.569,1.04431,0.288384,0.283104,0.00528
+581,1026.7,0.973999,0.287488,0.283072,0.004416
+582,1497.35,0.667847,0.288768,0.284,0.004768
+583,1262.83,0.79187,0.288768,0.28368,0.005088
+584,1582.69,0.631836,0.288768,0.284,0.004768
+585,1409.5,0.709473,0.287648,0.283072,0.004576
+586,1474.71,0.678101,0.288448,0.28288,0.005568
+587,1239.15,0.807007,0.288032,0.282624,0.005408
+588,1460.51,0.684692,0.568896,0.5632,0.005696
+589,704.688,1.41907,0.288224,0.282656,0.005568
+590,1598.13,0.625732,0.28832,0.282784,0.005536
+591,1482.18,0.674683,0.28832,0.282624,0.005696
+592,1200.47,0.833008,0.288736,0.282624,0.006112
+593,1620.89,0.616943,0.28832,0.282624,0.005696
+594,1552.99,0.643921,0.288768,0.28384,0.004928
+595,723.803,1.38159,0.287296,0.283072,0.004224
+596,1281.2,0.780518,0.540704,0.536064,0.00464
+597,2207.49,0.453003,0.289728,0.285504,0.004224
+598,673.075,1.48572,0.288768,0.282624,0.006144
+599,1060.73,0.942749,0.29696,0.282624,0.014336
+600,1682.48,0.59436,0.287744,0.283104,0.00464
+601,948.258,1.05457,0.288768,0.283936,0.004832
+602,1735.96,0.57605,0.288672,0.282624,0.006048
+603,1361.93,0.734253,0.288768,0.284,0.004768
+604,768.985,1.30042,0.288416,0.282624,0.005792
+605,1488.91,0.671631,0.290432,0.284864,0.005568
+606,860.143,1.1626,0.288384,0.282624,0.00576
+607,2431.58,0.411255,0.288768,0.284064,0.004704
+608,1208.79,0.827271,0.28752,0.283072,0.004448
+609,916.946,1.09058,0.288576,0.282624,0.005952
+610,3446.36,0.290161,0.288768,0.28368,0.005088
+611,1492.98,0.6698,0.288256,0.282688,0.005568
+612,1834.3,0.545166,0.287584,0.283072,0.004512
+613,1310.09,0.763306,0.600704,0.59488,0.005824
+614,693.649,1.44165,0.287456,0.282496,0.00496
+615,1429.67,0.699463,0.288672,0.282624,0.006048
+616,940.96,1.06274,0.288768,0.283968,0.0048
+617,1873.74,0.533691,0.288768,0.282624,0.006144
+618,1523.24,0.656494,0.287648,0.283136,0.004512
+619,1345.38,0.743286,0.288256,0.283072,0.005184
+620,1322.36,0.756226,0.288768,0.284032,0.004736
+621,974.31,1.02637,0.539968,0.53456,0.005408
+622,815.53,1.2262,0.289792,0.285248,0.004544
+623,695.652,1.4375,0.28848,0.282624,0.005856
+624,1252.98,0.798096,0.287584,0.283136,0.004448
+625,1332.03,0.750732,0.287584,0.283104,0.00448
+626,1260.7,0.793213,0.288352,0.282624,0.005728
+627,1600.94,0.624634,0.287424,0.28304,0.004384
+628,3160.49,0.316406,0.288768,0.282624,0.006144
+629,849.176,1.17761,0.288032,0.282624,0.005408
+630,3274.18,0.30542,0.569568,0.563456,0.006112
+631,818.218,1.22217,0.288544,0.282624,0.00592
+632,1365.33,0.732422,0.288576,0.282624,0.005952
+633,1403.94,0.71228,0.288768,0.284064,0.004704
+634,1483.79,0.67395,0.288352,0.282944,0.005408
+635,1490.54,0.670898,0.288672,0.282624,0.006048
+636,1412.41,0.708008,0.2888,0.283776,0.005024
+637,1447.86,0.690674,0.288768,0.283744,0.005024
+638,1001.71,0.998291,0.538624,0.534272,0.004352
+639,1170.62,0.854248,0.616448,0.612,0.004448
+640,944.649,1.05859,0.28768,0.283104,0.004576
+641,1102.11,0.907349,0.287744,0.283104,0.00464
+642,770.577,1.29773,0.288768,0.283904,0.004864
+643,3120.76,0.320435,0.287328,0.283072,0.004256
+644,1400.82,0.713867,0.288768,0.282624,0.006144
+645,1665.38,0.600464,0.288704,0.282624,0.00608
+646,1298.05,0.770386,0.28832,0.282624,0.005696
+647,1418.77,0.704834,0.612352,0.608192,0.00416
+648,852.091,1.17358,0.288416,0.282656,0.00576
+649,1137.46,0.87915,0.28832,0.282912,0.005408
+650,1694.31,0.59021,0.287552,0.283104,0.004448
+651,1262.83,0.79187,0.288288,0.283104,0.005184
+652,1368.07,0.730957,0.288768,0.284064,0.004704
+653,1740.02,0.574707,0.287392,0.283072,0.00432
+654,1329.44,0.752197,0.288544,0.282624,0.00592
+655,1329.87,0.751953,0.288416,0.282624,0.005792
+656,1481.11,0.675171,0.288768,0.284416,0.004352
+657,1325.78,0.754272,0.290816,0.286272,0.004544
+658,660.539,1.51392,0.288512,0.282656,0.005856
+659,1747.81,0.572144,0.287328,0.28304,0.004288
+660,973.731,1.02698,0.28752,0.283104,0.004416
+661,2848.4,0.351074,0.28832,0.282624,0.005696
+662,1181.42,0.846436,0.287648,0.283072,0.004576
+663,1054.31,0.948486,0.288288,0.283104,0.005184
+664,2103.21,0.475464,0.287584,0.283072,0.004512
+665,771.157,1.29675,0.290464,0.285216,0.005248
+666,1140.15,0.877075,0.288768,0.283904,0.004864
+667,1529.79,0.653687,0.288256,0.282624,0.005632
+668,1439.47,0.694702,0.287456,0.283104,0.004352
+669,1477.9,0.676636,0.288768,0.284,0.004768
+670,1415.34,0.706543,0.288768,0.282624,0.006144
+671,1547.41,0.64624,0.288576,0.282624,0.005952
+672,1160.34,0.861816,0.287744,0.282976,0.004768
+673,1424.2,0.702148,0.539264,0.533408,0.005856
+674,977.449,1.02307,0.288384,0.282624,0.00576
+675,1350.92,0.740234,0.289984,0.284704,0.00528
+676,872.882,1.14563,0.288416,0.282688,0.005728
+677,1603.13,0.623779,0.288288,0.282944,0.005344
+678,1503.67,0.665039,0.287328,0.28304,0.004288
+679,1173.47,0.852173,0.287456,0.28304,0.004416
+680,1222.32,0.818115,0.288384,0.282752,0.005632
+681,565.199,1.76929,0.640608,0.635296,0.005312
+682,878.499,1.13831,0.287712,0.283072,0.00464
+683,1427.18,0.700684,0.288768,0.283776,0.004992
+684,1546.83,0.646484,0.288768,0.28368,0.005088
+685,1328.36,0.752808,0.287744,0.283104,0.00464
+686,1719.56,0.581543,0.288448,0.282624,0.005824
+687,1360.57,0.734985,0.28848,0.282624,0.005856
+688,772.102,1.29517,0.287488,0.28304,0.004448
+689,655.412,1.52576,0.28672,0.282336,0.004384
+690,2432.3,0.411133,0.290816,0.285888,0.004928
+691,1529.79,0.653687,0.288736,0.282624,0.006112
+692,1449.4,0.689941,0.288768,0.282656,0.006112
+693,1206.48,0.828857,0.288224,0.282656,0.005568
+694,1657.63,0.603271,0.288768,0.282688,0.00608
+695,1544.2,0.647583,0.288288,0.283072,0.005216
+696,246.539,4.05615,0.290816,0.286144,0.004672
+697,1749.68,0.571533,0.288256,0.282624,0.005632
+698,1935.27,0.516724,0.288768,0.283968,0.0048
+699,1255.09,0.796753,0.288256,0.283072,0.005184
+700,1378.89,0.72522,0.288768,0.283744,0.005024
+701,792.186,1.26233,0.288256,0.283072,0.005184
+702,1630.25,0.613403,0.287648,0.283072,0.004576
+703,2696.51,0.37085,0.539104,0.53344,0.005664
+704,592.979,1.6864,0.617696,0.612352,0.005344
+705,1974.93,0.506348,0.288768,0.282624,0.006144
+706,1237.09,0.80835,0.288768,0.283936,0.004832
+707,1431.17,0.69873,0.288352,0.282912,0.00544
+708,910.121,1.09875,0.288448,0.283072,0.005376
+709,1076.48,0.928955,0.288256,0.283072,0.005184
+710,2438.82,0.410034,0.288384,0.28304,0.005344
+711,1448.63,0.690308,0.288256,0.282624,0.005632
+712,1431.92,0.698364,0.28976,0.28528,0.00448
+713,584.558,1.71069,0.287584,0.283072,0.004512
+714,1970.65,0.507446,0.288768,0.284,0.004768
+715,1340.75,0.74585,0.28672,0.281856,0.004864
+716,647.589,1.54419,0.28688,0.282208,0.004672
+717,1317.89,0.758789,0.288352,0.282624,0.005728
+718,1899.81,0.526367,0.287616,0.283136,0.00448
+719,1621.86,0.616577,0.53888,0.53392,0.00496
+720,1005.77,0.994263,0.290752,0.284672,0.00608
+721,636.816,1.57031,0.288288,0.282752,0.005536
+722,1658.64,0.602905,0.288768,0.283936,0.004832
+723,1512.56,0.661133,0.288768,0.283808,0.00496
+724,1326.85,0.753662,0.288704,0.282624,0.00608
+725,1596.88,0.626221,0.288384,0.282624,0.00576
+726,1222.69,0.817871,0.288352,0.282976,0.005376
+727,1402.5,0.713013,0.538624,0.5336,0.005024
+728,1113.65,0.897949,0.559104,0.554368,0.004736
+729,876.994,1.14026,0.299008,0.282624,0.016384
+730,1348.7,0.741455,0.28768,0.283168,0.004512
+731,1555.05,0.643066,0.28752,0.283072,0.004448
+732,1324.92,0.754761,0.288416,0.282944,0.005472
+733,1468.63,0.680908,0.288768,0.283776,0.004992
+734,1380.29,0.724487,0.288736,0.282656,0.00608
+735,1521.55,0.657227,0.287392,0.28304,0.004352
+736,1372.42,0.728638,0.540672,0.535584,0.005088
+737,1052.01,0.950562,0.622592,0.61792,0.004672
+738,917.152,1.09033,0.288416,0.28304,0.005376
+739,1130.4,0.884644,0.288288,0.28304,0.005248
+740,1459.99,0.684937,0.28672,0.282464,0.004256
+741,717.401,1.39392,0.288768,0.284064,0.004704
+742,2508.27,0.398682,0.287168,0.28272,0.004448
+743,2433.75,0.410889,0.287264,0.283072,0.004192
+744,1174.99,0.851074,0.288768,0.283712,0.005056
+745,1222.32,0.818115,0.60432,0.598464,0.005856
+746,951.894,1.05054,0.288704,0.282624,0.00608
+747,1259.53,0.793945,0.288256,0.282784,0.005472
+748,1325.14,0.754639,0.28848,0.283136,0.005344
+749,1433.92,0.697388,0.288576,0.282624,0.005952
+750,1400.58,0.713989,0.288768,0.284032,0.004736
+751,1344.05,0.744019,0.287712,0.283072,0.00464
+752,1426.93,0.700806,0.2888,0.283744,0.005056
+753,1174.99,0.851074,0.287104,0.281504,0.0056
+754,1553.87,0.643555,0.290016,0.284672,0.005344
+755,1317.68,0.758911,0.290816,0.286176,0.00464
+756,631.076,1.58459,0.28752,0.283072,0.004448
+757,1643,0.608643,0.288768,0.282624,0.006144
+758,1427.18,0.700684,0.28832,0.282624,0.005696
+759,1262.83,0.79187,0.288736,0.283776,0.00496
+760,974.774,1.02588,0.288448,0.282624,0.005824
+761,2191.55,0.456299,0.288768,0.283936,0.004832
+762,1110.78,0.900269,0.54112,0.534976,0.006144
+763,1158.37,0.863281,0.290432,0.284896,0.005536
+764,796.19,1.25598,0.28768,0.283104,0.004576
+765,1499.27,0.666992,0.288768,0.283648,0.00512
+766,1357.87,0.73645,0.288416,0.283072,0.005344
+767,1391.07,0.718872,0.288352,0.282624,0.005728
+768,1431.42,0.698608,0.288352,0.282656,0.005696
+769,1476.57,0.677246,0.288768,0.28368,0.005088
+770,1212.37,0.824829,0.538848,0.534272,0.004576
+771,1060.04,0.943359,0.601376,0.595968,0.005408
+772,959.251,1.04248,0.288704,0.282784,0.00592
+773,1157.88,0.863647,0.28832,0.282912,0.005408
+774,1337.69,0.747559,0.288736,0.282624,0.006112
+775,1355.62,0.737671,0.28832,0.282688,0.005632
+776,1428.67,0.699951,0.287648,0.283168,0.00448
+777,1545.66,0.646973,0.287424,0.283008,0.004416
+778,1433.17,0.697754,0.288224,0.282656,0.005568
+779,1168.28,0.855957,0.54272,0.5384,0.00432
+780,644.583,1.55139,0.568096,0.563648,0.004448
+781,1115.77,0.89624,0.288768,0.283744,0.005024
+782,1459.47,0.685181,0.288672,0.282624,0.006048
+783,1420,0.704224,0.288736,0.282624,0.006112
+784,1292.32,0.773804,0.288352,0.283104,0.005248
+785,1491.35,0.670532,0.287584,0.283072,0.004512
+786,1387.53,0.720703,0.288352,0.282656,0.005696
+787,1314.93,0.760498,0.538624,0.533728,0.004896
+788,966.266,1.03491,0.611552,0.606176,0.005376
+789,946.396,1.05664,0.288288,0.282688,0.0056
+790,1102.41,0.907104,0.288768,0.282624,0.006144
+791,1413.14,0.707642,0.287616,0.283072,0.004544
+792,1321.93,0.75647,0.287456,0.283008,0.004448
+793,1734.12,0.57666,0.287296,0.283072,0.004224
+794,1381.22,0.723999,0.287552,0.283136,0.004416
+795,1422.47,0.703003,0.288768,0.284064,0.004704
+796,1145.89,0.872681,0.288768,0.284704,0.004064
+797,1481.37,0.675049,0.60176,0.596288,0.005472
+798,524.725,1.90576,0.288256,0.282784,0.005472
+799,2770.38,0.360962,0.287328,0.283072,0.004256
+800,2333.9,0.428467,0.287424,0.283104,0.00432
+801,1284.62,0.778442,0.288704,0.282624,0.00608
+802,1425.69,0.701416,0.287488,0.283136,0.004352
+803,1350.03,0.740723,0.288768,0.284096,0.004672
+804,1084.03,0.922485,0.28768,0.283136,0.004544
+805,1745.21,0.572998,0.288768,0.28368,0.005088
+806,1298.26,0.770264,0.288352,0.282752,0.0056
+807,1416.08,0.706177,0.610304,0.605568,0.004736
+808,805.744,1.24109,0.287648,0.283104,0.004544
+809,1276.81,0.783203,0.28864,0.282624,0.006016
+810,1636.44,0.611084,0.28832,0.28272,0.0056
+811,1393.2,0.717773,0.287648,0.28304,0.004608
+812,1565.45,0.638794,0.288768,0.282624,0.006144
+813,1392.72,0.718018,0.287264,0.282464,0.0048
+814,1349.37,0.741089,0.288512,0.282624,0.005888
+815,1132.12,0.883301,0.623936,0.618496,0.00544
+816,929.114,1.07629,0.28832,0.28304,0.00528
+817,1058.12,0.945068,0.287808,0.282624,0.005184
+818,875.588,1.14209,0.287552,0.283072,0.00448
+819,2757.32,0.362671,0.287552,0.28304,0.004512
+820,1692.21,0.590942,0.288768,0.283648,0.00512
+821,1423.46,0.702515,0.288448,0.282656,0.005792
+822,1217.24,0.821533,0.537056,0.532288,0.004768
+823,878.97,1.1377,0.615136,0.609184,0.005952
+824,1050.93,0.951538,0.2888,0.28368,0.00512
+825,1064.59,0.939331,0.288768,0.283904,0.004864
+826,1291.1,0.774536,0.288512,0.282656,0.005856
+827,1196.61,0.835693,0.288768,0.282624,0.006144
+828,1149.92,0.869629,0.2888,0.282624,0.006176
+829,2301.12,0.43457,0.28864,0.282624,0.006016
+830,1103.89,0.905884,0.288768,0.282624,0.006144
+831,1804.8,0.554077,0.288768,0.28432,0.004448
+832,1196.96,0.835449,0.288384,0.28304,0.005344
+833,1007.13,0.99292,0.290816,0.286176,0.00464
+834,746.288,1.33997,0.288352,0.282752,0.0056
+835,1622.18,0.616455,0.287648,0.283104,0.004544
+836,1511.16,0.661743,0.287712,0.28304,0.004672
+837,924.083,1.08215,0.288448,0.282624,0.005824
+838,1016.5,0.983765,0.538656,0.534208,0.004448
+839,837.885,1.19348,0.287744,0.283104,0.00464
+840,620.935,1.61047,0.290688,0.284672,0.006016
+841,2726.12,0.366821,0.28736,0.283072,0.004288
+842,1691.51,0.591187,0.288768,0.284096,0.004672
+843,1397.71,0.715454,0.288288,0.283072,0.005216
+844,579.718,1.72498,0.287712,0.283072,0.00464
+845,1850.88,0.540283,0.287648,0.283072,0.004576
+846,1960.75,0.51001,0.28768,0.28336,0.00432
+847,894.616,1.1178,0.288512,0.282624,0.005888
+848,2588.31,0.386353,0.290624,0.284672,0.005952
+849,521.12,1.91895,0.288608,0.282624,0.005984
+850,1404.42,0.712036,0.288512,0.282624,0.005888
+851,585.645,1.70752,0.288768,0.282624,0.006144
+852,2220.05,0.450439,0.290048,0.284672,0.005376
+853,683.464,1.46313,0.297504,0.291776,0.005728
+854,2063.48,0.484619,0.580096,0.57424,0.005856
+855,626.683,1.5957,0.288768,0.283936,0.004832
+856,990.449,1.00964,0.288672,0.282624,0.006048
+857,2053.13,0.487061,0.287712,0.283104,0.004608
+858,1101.37,0.907959,0.287488,0.283136,0.004352
+859,2009.32,0.497681,0.288448,0.282624,0.005824
+860,1146.7,0.87207,0.539072,0.534144,0.004928
+861,860.323,1.16235,0.626144,0.62048,0.005664
+862,682.155,1.46594,0.287488,0.283104,0.004384
+863,2274.29,0.439697,0.288768,0.28384,0.004928
+864,1487.56,0.672241,0.288352,0.283136,0.005216
+865,1802.82,0.554688,0.288608,0.282624,0.005984
+866,1326.85,0.753662,0.288672,0.282624,0.006048
+867,1352.48,0.73938,0.287424,0.28304,0.004384
+868,1221.05,0.81897,0.2872,0.282272,0.004928
+869,1009.99,0.990112,0.288608,0.283104,0.005504
+870,1321.29,0.756836,0.291008,0.285472,0.005536
+871,777.008,1.28699,0.288288,0.283104,0.005184
+872,1392.25,0.718262,0.28832,0.282624,0.005696
+873,1425.94,0.701294,0.288224,0.282848,0.005376
+874,1550.05,0.645142,0.288768,0.282624,0.006144
+875,933.987,1.07068,0.288768,0.283968,0.0048
+876,2125.58,0.470459,0.287488,0.283136,0.004352
+877,1762.86,0.567261,0.539168,0.533472,0.005696
+878,947.709,1.05518,0.61248,0.608096,0.004384
+879,914.592,1.09338,0.288576,0.282624,0.005952
+880,1015.87,0.984375,0.28848,0.283136,0.005344
+881,1394.62,0.717041,0.288608,0.282624,0.005984
+882,1816.01,0.550659,0.288512,0.282976,0.005536
+883,1279.4,0.781616,0.288768,0.282624,0.006144
+884,1599.38,0.625244,0.28864,0.282624,0.006016
+885,1190.52,0.839966,0.287392,0.283136,0.004256
+886,1032.52,0.968506,0.288736,0.28304,0.005696
+887,2210.47,0.452393,0.616992,0.611936,0.005056
+888,835.407,1.19702,0.288768,0.283808,0.00496
+889,1124.81,0.889038,0.288768,0.28384,0.004928
+890,1679.03,0.595581,0.288512,0.2832,0.005312
+891,1287.24,0.776855,0.287488,0.2832,0.004288
+892,1670.13,0.598755,0.2888,0.282624,0.006176
+893,1409.26,0.709595,0.290112,0.28464,0.005472
+894,1375.88,0.726807,0.288768,0.282624,0.006144
+895,689.156,1.45105,0.288384,0.283168,0.005216
+896,2083.95,0.479858,0.609984,0.604192,0.005792
+897,1355.17,0.737915,0.288768,0.283744,0.005024
+898,1131.96,0.883423,0.288672,0.282656,0.006016
+899,1463.38,0.68335,0.28832,0.28288,0.00544
+900,1388,0.720459,0.287616,0.283136,0.00448
+901,1386.13,0.721436,0.288416,0.282624,0.005792
+902,1287.65,0.776611,0.288448,0.282624,0.005824
+903,1384.95,0.722046,0.538624,0.534208,0.004416
+904,1021.06,0.97937,0.28848,0.282624,0.005856
+905,1379.12,0.725098,0.622592,0.618112,0.00448
+906,922.73,1.08374,0.288512,0.28272,0.005792
+907,1087.92,0.919189,0.288416,0.282688,0.005728
+908,1501.19,0.666138,0.288672,0.282624,0.006048
+909,1292.73,0.77356,0.287584,0.2832,0.004384
+910,1567.25,0.638062,0.28832,0.282976,0.005344
+911,1459.21,0.685303,0.288352,0.283072,0.00528
+912,1077.89,0.927734,0.28944,0.28496,0.00448
+913,1500.92,0.66626,0.612512,0.607936,0.004576
+914,611.07,1.63647,0.288768,0.282624,0.006144
+915,1819.64,0.549561,0.288704,0.282624,0.00608
+916,2091.4,0.478149,0.288768,0.28384,0.004928
+917,1174.14,0.851685,0.288,0.282784,0.005216
+918,1840.49,0.543335,0.28752,0.2832,0.00432
+919,1079.17,0.926636,0.288768,0.282624,0.006144
+920,1698.88,0.588623,0.288544,0.282752,0.005792
+921,1564.85,0.639038,0.288768,0.28432,0.004448
+922,1351.82,0.739746,0.622816,0.616896,0.00592
+923,874,1.14417,0.288768,0.282624,0.006144
+924,1108.83,0.901855,0.288512,0.28288,0.005632
+925,1328.36,0.752808,0.288448,0.282624,0.005824
+926,1519.85,0.657959,0.287552,0.283168,0.004384
+927,1490,0.671143,0.288736,0.282656,0.00608
+928,1365.11,0.732544,0.288768,0.283904,0.004864
+929,1390.36,0.719238,0.287456,0.282432,0.005024
+930,1498.17,0.66748,0.2904,0.284672,0.005728
+931,1190.35,0.840088,0.601728,0.596416,0.005312
+932,931.65,1.07336,0.288704,0.282624,0.00608
+933,1183.47,0.844971,0.287424,0.283168,0.004256
+934,735.236,1.36011,0.287904,0.282624,0.00528
+935,2271.14,0.440308,0.28832,0.282656,0.005664
+936,2262.36,0.442017,0.288416,0.282816,0.0056
+937,1451.45,0.688965,0.288768,0.28384,0.004928
+938,1124.19,0.889526,0.54048,0.53456,0.00592
+939,1346.93,0.742432,0.28768,0.2832,0.00448
+940,1401.54,0.713501,0.609792,0.60416,0.005632
+941,917.768,1.0896,0.288416,0.283008,0.005408
+942,1114.56,0.897217,0.28848,0.282944,0.005536
+943,1471.79,0.679443,0.287648,0.2832,0.004448
+944,1397.95,0.715332,0.288768,0.283744,0.005024
+945,1536.67,0.650757,0.287584,0.283168,0.004416
+946,1382.38,0.723389,0.288544,0.282624,0.00592
+947,1452.22,0.688599,0.538848,0.532896,0.005952
+948,934.626,1.06995,0.610656,0.604544,0.006112
+949,934.413,1.07019,0.287744,0.283232,0.004512
+950,1066.53,0.937622,0.288448,0.282624,0.005824
+951,1674.57,0.597168,0.288384,0.282976,0.005408
+952,1620.57,0.617065,0.288768,0.28384,0.004928
+953,1378.89,0.72522,0.288608,0.282624,0.005984
+954,1208.97,0.827148,0.287712,0.283264,0.004448
+955,1624.43,0.615601,0.288768,0.284224,0.004544
+956,1162.81,0.859985,0.290368,0.284768,0.0056
+957,1148.14,0.870972,0.60448,0.598336,0.006144
+958,1087.34,0.919678,0.287552,0.283136,0.004416
+959,1011.73,0.988403,0.287456,0.283136,0.00432
+960,1898.93,0.526611,0.288512,0.28288,0.005632
+961,1515.35,0.659912,0.288768,0.283808,0.00496
+962,1283.61,0.779053,0.28848,0.28272,0.00576
+963,1261.08,0.792969,0.288448,0.282848,0.0056
+964,1770.48,0.564819,0.288768,0.284224,0.004544
+965,1003.31,0.996704,0.288864,0.282816,0.006048
+966,1702.06,0.587524,0.290528,0.285024,0.005504
+967,763.752,1.30933,0.287712,0.2832,0.004512
+968,1463.64,0.683228,0.288416,0.282848,0.005568
+969,1397.48,0.715576,0.288416,0.2832,0.005216
+970,1414.85,0.706787,0.288768,0.284128,0.00464
+971,1486.75,0.672607,0.28832,0.282752,0.005568
+972,1474.97,0.677979,0.288768,0.28368,0.005088
+973,942.584,1.06091,0.287456,0.282432,0.005024
+974,1252.03,0.798706,0.288768,0.284352,0.004416
+975,1546.24,0.646729,0.289568,0.285312,0.004256
+976,714.897,1.3988,0.288768,0.283904,0.004864
+977,1604.07,0.623413,0.288768,0.283968,0.0048
+978,1339,0.746826,0.28768,0.283232,0.004448
+979,1539.85,0.649414,0.288544,0.282624,0.00592
+980,1389.89,0.719482,0.288768,0.283872,0.004896
+981,1486.48,0.672729,0.288768,0.283936,0.004832
+982,1386.59,0.721191,0.537248,0.5328,0.004448
+983,749.086,1.33496,0.290816,0.286048,0.004768
+984,1013.74,0.98645,0.288768,0.282624,0.006144
+985,1270.67,0.786987,0.288384,0.282688,0.005696
+986,1717.04,0.582397,0.288768,0.283872,0.004896
+987,1510.32,0.662109,0.288352,0.28272,0.005632
+988,1373.81,0.727905,0.287744,0.283232,0.004512
+989,1557.71,0.641968,0.287456,0.2832,0.004256
+990,1238.21,0.807617,0.287712,0.283232,0.00448
+991,1610.38,0.620972,0.288864,0.282912,0.005952
+992,1210.22,0.826294,0.61648,0.610656,0.005824
+993,701.37,1.42578,0.288608,0.282624,0.005984
+994,2091.93,0.478027,0.288768,0.283712,0.005056
+995,1429.92,0.699341,0.288352,0.282624,0.005728
+996,1296.2,0.771484,0.287712,0.283232,0.00448
+997,1524.09,0.656128,0.288768,0.283776,0.004992
+998,1413.63,0.707397,0.28736,0.283168,0.004192
+999,1527.79,0.654541,0.28768,0.2832,0.00448
+1000,1110.63,0.900391,0.290176,0.28496,0.005216
+1001,1522.11,0.656982,0.60384,0.597952,0.005888
+1002,953.223,1.04907,0.288576,0.283232,0.005344
+1003,1115.01,0.896851,0.288768,0.284128,0.00464
+1004,1318.53,0.758423,0.28848,0.2832,0.00528
+1005,1573.27,0.63562,0.288512,0.282656,0.005856
+1006,1405.87,0.711304,0.28832,0.28272,0.0056
+1007,1511.72,0.661499,0.288768,0.283936,0.004832
+1008,1421.98,0.703247,0.287648,0.283168,0.00448
+1009,1126.51,0.887695,0.288224,0.282752,0.005472
+1010,1498.72,0.667236,0.288768,0.282656,0.006112
+1011,1460.25,0.684814,0.290528,0.285248,0.00528
+1012,725.984,1.37744,0.288256,0.283008,0.005248
+1013,861.771,1.1604,0.287616,0.283168,0.004448
+1014,3343.67,0.299072,0.287584,0.283136,0.004448
+1015,1549.46,0.645386,0.288768,0.28416,0.004608
+1016,1448.37,0.69043,0.288768,0.28272,0.006048
+1017,1108.68,0.901978,0.286944,0.282816,0.004128
+1018,1590.37,0.628784,0.288768,0.282656,0.006112
+1019,825.557,1.2113,0.290432,0.284736,0.005696
+1020,947.6,1.0553,0.288768,0.282624,0.006144
+1021,597.085,1.6748,0.288768,0.283968,0.0048
+1022,3312.58,0.30188,0.288768,0.284,0.004768
+1023,1852.14,0.539917,0.288768,0.283872,0.004896
+1024,1534.66,0.651611,0.288672,0.282624,0.006048
+1025,1181.08,0.84668,0.28736,0.282848,0.004512
+1026,1798.46,0.55603,0.288512,0.283232,0.00528
+1027,1097.98,0.910767,0.570272,0.565696,0.004576
+1028,892.18,1.12085,0.288512,0.282624,0.005888
+1029,1450.17,0.689575,0.288736,0.28288,0.005856
+1030,1325.78,0.754272,0.287424,0.2832,0.004224
+1031,1347.81,0.741943,0.288384,0.282976,0.005408
+1032,1668.77,0.599243,0.288768,0.284064,0.004704
+1033,1050.93,0.951538,0.288352,0.283136,0.005216
+1034,1697.12,0.589233,0.288672,0.282624,0.006048
+1035,1472.32,0.679199,0.288384,0.283072,0.005312
+1036,1252.6,0.79834,0.60992,0.604192,0.005728
+1037,872.975,1.14551,0.288768,0.283936,0.004832
+1038,750.802,1.33191,0.288768,0.283904,0.004864
+1039,1982.1,0.504517,0.288384,0.28288,0.005504
+1040,1448.37,0.69043,0.28848,0.282624,0.005856
+1041,1394.86,0.716919,0.288576,0.282624,0.005952
+1042,1498.72,0.667236,0.287584,0.283232,0.004352
+1043,1243.66,0.804077,0.288768,0.284,0.004768
+1044,1198.89,0.834106,0.288512,0.282976,0.005536
+1045,1390.12,0.71936,0.29056,0.284672,0.005888
+1046,618.591,1.61658,0.288768,0.283712,0.005056
+1047,1492.17,0.670166,0.288768,0.28368,0.005088
+1048,1426.18,0.701172,0.287488,0.283232,0.004256
+1049,1489.45,0.671387,0.288672,0.282624,0.006048
+1050,1478.43,0.676392,0.2888,0.282624,0.006176
+1051,1344.71,0.743652,0.544608,0.539296,0.005312
+1052,803.61,1.24438,0.576,0.57152,0.00448
+1053,927.221,1.07849,0.288256,0.282752,0.005504
+1054,1379.59,0.724854,0.288416,0.282624,0.005792
+1055,1577.81,0.633789,0.288416,0.282752,0.005664
+1056,1376.34,0.726562,0.288992,0.282848,0.006144
+1057,1508.66,0.662842,0.288352,0.283168,0.005184
+1058,1454.55,0.6875,0.288544,0.283072,0.005472
+1059,1423.21,0.702637,0.287616,0.28304,0.004576
+1060,1296.2,0.771484,0.290176,0.284672,0.005504
+1061,1278.8,0.781982,0.613664,0.608256,0.005408
+1062,942.259,1.06128,0.288768,0.28368,0.005088
+1063,1025.41,0.97522,0.288768,0.284,0.004768
+1064,1446.33,0.691406,0.288448,0.28288,0.005568
+1065,1566.95,0.638184,0.288768,0.284032,0.004736
+1066,1420.25,0.704102,0.28768,0.283232,0.004448
+1067,1491.35,0.670532,0.288768,0.283712,0.005056
+1068,1381.22,0.723999,0.28864,0.282624,0.006016
+1069,1400.1,0.714233,0.288768,0.283648,0.00512
+1070,1099.01,0.909912,0.604352,0.598304,0.006048
+1071,834.981,1.19763,0.288384,0.282784,0.0056
+1072,1358.54,0.736084,0.287616,0.283168,0.004448
+1073,1644.98,0.60791,0.287584,0.283136,0.004448
+1074,1459.21,0.685303,0.288448,0.28304,0.005408
+1075,1415.1,0.706665,0.287488,0.2832,0.004288
+1076,1366.47,0.731812,0.288672,0.282624,0.006048
+1077,1334.2,0.749512,0.28848,0.283104,0.005376
+1078,1333.12,0.750122,0.288768,0.284064,0.004704
+1079,1523.81,0.65625,0.287616,0.2832,0.004416
+1080,1414.36,0.707031,0.290624,0.285216,0.005408
+1081,708.222,1.41199,0.28752,0.2832,0.00432
+1082,1489.73,0.671265,0.288768,0.282624,0.006144
+1083,1451.2,0.689087,0.288352,0.283104,0.005248
+1084,1504.78,0.664551,0.28864,0.282624,0.006016
+1085,1283.21,0.779297,0.288416,0.283008,0.005408
+1086,1140.15,0.877075,0.288224,0.283008,0.005216
+1087,1775.85,0.56311,0.60016,0.595712,0.004448
+1088,710.679,1.4071,0.288512,0.2832,0.005312
+1089,1244.04,0.803833,0.288416,0.283072,0.005344
+1090,1438.71,0.695068,0.287104,0.282272,0.004832
+1091,1309.88,0.763428,0.288768,0.282624,0.006144
+1092,1365.33,0.732422,0.288768,0.284032,0.004736
+1093,1488.37,0.671875,0.288768,0.283776,0.004992
+1094,1387.53,0.720703,0.28832,0.282912,0.005408
+1095,1588.83,0.629395,0.539168,0.533024,0.006144
+1096,1025.41,0.97522,0.28848,0.2832,0.00528
+1097,1383.55,0.722778,0.290528,0.285216,0.005312
+1098,789.21,1.26709,0.288768,0.284192,0.004576
+1099,1528.07,0.654419,0.28848,0.282624,0.005856
+1100,1574.78,0.63501,0.28848,0.282816,0.005664
+1101,1442.51,0.693237,0.288768,0.282624,0.006144
+1102,1455.06,0.687256,0.288768,0.283648,0.00512
+1103,1351.82,0.739746,0.288384,0.282944,0.00544
+1104,1276.01,0.783691,0.540672,0.535712,0.00496
+1105,881.334,1.13464,0.290816,0.28576,0.005056
+1106,943.018,1.06042,0.288832,0.282848,0.005984
+1107,1482.45,0.674561,0.288512,0.282624,0.005888
+1108,1433.17,0.697754,0.288768,0.283776,0.004992
+1109,1491.9,0.670288,0.288768,0.284096,0.004672
+1110,1472.85,0.678955,0.288032,0.282624,0.005408
+1111,890.532,1.12292,0.288768,0.282624,0.006144
+1112,2132.22,0.468994,0.288768,0.283712,0.005056
+1113,1111.83,0.899414,0.288768,0.284128,0.00464
+1114,1632.52,0.612549,0.609824,0.604608,0.005216
+1115,900.913,1.10999,0.288768,0.283936,0.004832
+1116,1227.27,0.814819,0.288384,0.283008,0.005376
+1117,1403.22,0.712646,0.28832,0.28272,0.0056
+1118,1516.48,0.659424,0.288512,0.282624,0.005888
+1119,1409.98,0.709229,0.288672,0.282944,0.005728
+1120,1486.21,0.672852,0.288544,0.282944,0.0056
+1121,1134.15,0.881714,0.287168,0.282304,0.004864
+1122,1517.04,0.65918,0.62,0.614304,0.005696
+1123,821.006,1.21802,0.288416,0.282848,0.005568
+1124,1332.03,0.750732,0.288768,0.283648,0.00512
+1125,1290.08,0.775146,0.288768,0.282624,0.006144
+1126,1656.62,0.603638,0.288768,0.28416,0.004608
+1127,1282.2,0.779907,0.28768,0.2832,0.00448
+1128,1708.09,0.585449,0.288512,0.282656,0.005856
+1129,1377.73,0.72583,0.288384,0.283168,0.005216
+1130,1008.74,0.991333,0.288768,0.284032,0.004736
+1131,1331.82,0.750854,0.288768,0.284256,0.004512
+1132,1708.09,0.585449,0.60768,0.602112,0.005568
+1133,932.499,1.07239,0.288768,0.284032,0.004736
+1134,1177.18,0.849487,0.28832,0.283104,0.005216
+1135,1418.04,0.7052,0.287168,0.282656,0.004512
+1136,1612.28,0.620239,0.288768,0.283872,0.004896
+1137,1397.95,0.715332,0.288768,0.283776,0.004992
+1138,1487.29,0.672363,0.28768,0.283232,0.004448
+1139,1178.87,0.848267,0.287392,0.283008,0.004384
+1140,1589.14,0.629272,0.607872,0.602112,0.00576
+1141,840.722,1.18945,0.287488,0.2832,0.004288
+1142,1108.23,0.902344,0.288768,0.284096,0.004672
+1143,1390.6,0.719116,0.288768,0.28416,0.004608
+1144,1491.08,0.670654,0.288512,0.28288,0.005632
+1145,1578.12,0.633667,0.288768,0.283904,0.004864
+1146,1352.93,0.739136,0.288768,0.282624,0.006144
+1147,1521.83,0.657104,0.28912,0.283232,0.005888
+1148,1138.89,0.878052,0.28768,0.281536,0.006144
+1149,1585.14,0.630859,0.5976,0.591872,0.005728
+1150,840.291,1.19006,0.288416,0.282688,0.005728
+1151,937.836,1.06628,0.288768,0.283936,0.004832
+1152,1593.46,0.627563,0.288768,0.284,0.004768
+1153,1374.04,0.727783,0.288416,0.283136,0.00528
+1154,1801.63,0.555054,0.288768,0.284096,0.004672
+1155,1423.71,0.702393,0.288384,0.282912,0.005472
+1156,1436.69,0.696045,0.287648,0.2832,0.004448
+1157,1378.89,0.72522,0.538656,0.53296,0.005696
+1158,1026.31,0.974365,0.289632,0.285344,0.004288
+1159,631.66,1.58313,0.288384,0.283136,0.005248
+1160,1470.47,0.680054,0.288896,0.282752,0.006144
+1161,1393.2,0.717773,0.288768,0.283712,0.005056
+1162,1555.94,0.6427,0.288672,0.282624,0.006048
+1163,1409.74,0.709351,0.288416,0.282912,0.005504
+1164,1501.19,0.666138,0.287392,0.282848,0.004544
+1165,1210.94,0.825806,0.288768,0.283936,0.004832
+1166,1513.39,0.660767,0.604096,0.598016,0.00608
+1167,939.881,1.06396,0.288768,0.28384,0.004928
+1168,1094.02,0.914062,0.288768,0.284224,0.004544
+1169,1375.19,0.727173,0.288768,0.284032,0.004736
+1170,857.621,1.16602,0.288736,0.284192,0.004544
+1171,3537.13,0.282715,0.288512,0.282624,0.005888
+1172,1412.41,0.708008,0.288512,0.2832,0.005312
+1173,1524.09,0.656128,0.288128,0.282624,0.005504
+1174,1098.71,0.910156,0.287936,0.282624,0.005312
+1175,1699.23,0.588501,0.61696,0.611136,0.005824
+1176,773.195,1.29333,0.288,0.282784,0.005216
+1177,1170.45,0.85437,0.288768,0.284128,0.00464
+1178,1413.63,0.707397,0.288416,0.282816,0.0056
+1179,1506.71,0.663696,0.288512,0.2832,0.005312
+1180,1400.34,0.714111,0.287648,0.283232,0.004416
+1181,1352.04,0.739624,0.288704,0.282624,0.00608
+1182,1483.79,0.67395,0.288672,0.282624,0.006048
+1183,1457.91,0.685913,0.539264,0.53312,0.006144
+1184,1021.57,0.978882,0.62384,0.61856,0.00528
+1185,991.648,1.00842,0.288416,0.282688,0.005728
+1186,1054.58,0.948242,0.288544,0.28304,0.005504
+1187,1556.23,0.642578,0.288768,0.282624,0.006144
+1188,1399.86,0.714355,0.288352,0.28272,0.005632
+1189,1532.65,0.652466,0.28752,0.282816,0.004704
+1190,909.515,1.09949,0.288416,0.283104,0.005312
+1191,2256.13,0.443237,0.287616,0.282912,0.004704
+1192,498.57,2.00574,0.290816,0.284672,0.006144
+1193,1630.57,0.613281,0.288416,0.282848,0.005568
+1194,1385.42,0.721802,0.288544,0.282624,0.00592
+1195,1560.98,0.640625,0.288416,0.282752,0.005664
+1196,1439.97,0.694458,0.28848,0.282816,0.005664
+1197,1358.77,0.735962,0.28816,0.282976,0.005184
+1198,1423.21,0.702637,0.288416,0.282752,0.005664
+1199,1517.6,0.658936,0.288768,0.283808,0.00496
+1200,1356.74,0.737061,0.53872,0.533024,0.005696
+1201,900.121,1.11096,0.290816,0.286144,0.004672
+1202,860.323,1.16235,0.288768,0.283968,0.0048
+1203,1551.52,0.644531,0.288352,0.283008,0.005344
+1204,1358.99,0.73584,0.288416,0.282752,0.005664
+1205,1540.43,0.64917,0.288768,0.283968,0.0048
+1206,1356.74,0.737061,0.288736,0.282624,0.006112
+1207,1526.93,0.654907,0.288384,0.283168,0.005216
+1208,1457.13,0.686279,0.288416,0.282656,0.00576
+1209,805.427,1.24158,0.288768,0.284256,0.004512
+1210,2408,0.415283,0.608064,0.602336,0.005728
+1211,1021.57,0.978882,0.28848,0.282656,0.005824
+1212,1143.02,0.874878,0.287648,0.2832,0.004448
+1213,1491.9,0.670288,0.288768,0.282624,0.006144
+1214,1391.54,0.718628,0.288768,0.283872,0.004896
+1215,1461.81,0.684082,0.288768,0.284192,0.004576
+1216,1488.64,0.671753,0.288768,0.284,0.004768
+1217,1443.27,0.692871,0.288416,0.283072,0.005344
+1218,1346.04,0.74292,0.600672,0.595936,0.004736
+1219,876.525,1.14087,0.288768,0.283968,0.0048
+1220,1147.5,0.87146,0.288768,0.283264,0.005504
+1221,1348.26,0.741699,0.288768,0.284128,0.00464
+1222,1531.79,0.652832,0.287616,0.2832,0.004416
+1223,1388.47,0.720215,0.287456,0.2832,0.004256
+1224,1472.06,0.679321,0.288672,0.282656,0.006016
+1225,1376.34,0.726562,0.288448,0.283072,0.005376
+1226,1451.45,0.688965,0.288704,0.282624,0.00608
+1227,1432.42,0.69812,0.613376,0.60816,0.005216
+1228,817.646,1.22302,0.288576,0.282624,0.005952
+1229,1032,0.968994,0.28736,0.283168,0.004192
+1230,1585.75,0.630615,0.28864,0.282624,0.006016
+1231,1324.92,0.754761,0.288768,0.284064,0.004704
+1232,1566.35,0.638428,0.288704,0.2832,0.005504
+1233,1372.19,0.72876,0.287488,0.2832,0.004288
+1234,1483.52,0.674072,0.288768,0.284,0.004768
+1235,1461.03,0.684448,0.288384,0.282624,0.00576
+1236,1220.68,0.819214,0.610304,0.60416,0.006144
+1237,983.315,1.01697,0.288576,0.282624,0.005952
+1238,1082.17,0.924072,0.288384,0.282624,0.00576
+1239,1417.55,0.705444,0.288416,0.283072,0.005344
+1240,1436.19,0.696289,0.288768,0.282624,0.006144
+1241,1400.1,0.714233,0.28848,0.282624,0.005856
+1242,1558.6,0.641602,0.288768,0.28368,0.005088
+1243,1407.32,0.710571,0.288416,0.282816,0.0056
+1244,1451.71,0.688843,0.28864,0.282624,0.006016
+1245,1151.69,0.868286,0.608544,0.602432,0.006112
+1246,1043.04,0.95874,0.288768,0.28384,0.004928
+1247,1032.39,0.968628,0.288416,0.28288,0.005536
+1248,1367.61,0.731201,0.302848,0.283968,0.01888
+1249,844.71,1.18384,0.288768,0.283648,0.00512
+1250,2199.19,0.454712,0.288512,0.282752,0.00576
+1251,1617.37,0.618286,0.288768,0.283936,0.004832
+1252,1208.08,0.827759,0.289472,0.2832,0.006272
+1253,1452.22,0.688599,0.547328,0.541408,0.00592
+1254,1034.74,0.966431,0.576288,0.571424,0.004864
+1255,860.866,1.16162,0.288384,0.282752,0.005632
+1256,1548,0.645996,0.288544,0.283264,0.00528
+1257,1323.21,0.755737,0.28768,0.2832,0.00448
+1258,1472.32,0.679199,0.288768,0.284192,0.004576
+1259,1519.29,0.658203,0.288768,0.282656,0.006112
+1260,1314.72,0.76062,0.288768,0.283936,0.004832
+1261,1472.59,0.679077,0.288768,0.284224,0.004544
+1262,1341.19,0.745605,0.549408,0.544352,0.005056
+1263,975.935,1.02466,0.289536,0.285312,0.004224
+1264,765.178,1.30688,0.288576,0.282624,0.005952
+1265,1525.8,0.655396,0.288384,0.282752,0.005632
+1266,1510.05,0.662231,0.288448,0.282816,0.005632
+1267,1452.22,0.688599,0.288544,0.282656,0.005888
+1268,1397,0.71582,0.28768,0.283232,0.004448
+1269,823.813,1.21387,0.290816,0.28624,0.004576
+1270,1421.48,0.703491,0.28832,0.283104,0.005216
+1271,2618.09,0.381958,0.599008,0.59424,0.004768
+1272,891.21,1.12207,0.28864,0.282624,0.006016
+1273,1052.28,0.950317,0.288448,0.282848,0.0056
+1274,1461.29,0.684326,0.288768,0.283648,0.00512
+1275,1519.01,0.658325,0.288416,0.282848,0.005568
+1276,1442.76,0.693115,0.288384,0.282624,0.00576
+1277,1399.15,0.714722,0.288768,0.284096,0.004672
+1278,1380.98,0.724121,0.288768,0.283744,0.005024
+1279,1092.27,0.915527,0.286976,0.282272,0.004704
+1280,1722.82,0.580444,0.289632,0.285312,0.00432
+1281,542.876,1.84204,0.28768,0.2832,0.00448
+1282,1492.71,0.669922,0.28768,0.283232,0.004448
+1283,1565.15,0.638916,0.288416,0.28304,0.005376
+1284,1355.39,0.737793,0.288512,0.2832,0.005312
+1285,1466.26,0.682007,0.288608,0.282624,0.005984
+1286,1397.24,0.715698,0.288672,0.282624,0.006048
+1287,1511.16,0.661743,0.287616,0.2832,0.004416
+1288,1080.45,0.925537,0.289568,0.284992,0.004576
+1289,1325.57,0.754395,0.290816,0.285856,0.00496
+1290,582.563,1.71655,0.288768,0.284064,0.004704
+1291,1831.02,0.546143,0.288384,0.282688,0.005696
+1292,1358.09,0.736328,0.288768,0.284192,0.004576
+1293,1558.01,0.641846,0.288384,0.283136,0.005248
+1294,1358.77,0.735962,0.288768,0.283904,0.004864
+1295,1469.68,0.68042,0.287584,0.283104,0.00448
+1296,1346.93,0.742432,0.537824,0.53248,0.005344
+1297,809.246,1.23572,0.289792,0.285312,0.00448
+1298,1026.31,0.974365,0.288352,0.282976,0.005376
+1299,1549.75,0.645264,0.288768,0.28368,0.005088
+1300,1448.89,0.690186,0.288512,0.283072,0.00544
+1301,1432.67,0.697998,0.288768,0.28368,0.005088
+1302,1381.22,0.723999,0.288768,0.283744,0.005024
+1303,1483.52,0.674072,0.288352,0.283072,0.00528
+1304,1435.68,0.696533,0.288736,0.282624,0.006112
+1305,1345.6,0.743164,0.534528,0.529696,0.004832
+1306,1038.28,0.963135,0.29168,0.287008,0.004672
+1307,813.667,1.229,0.287392,0.283136,0.004256
+1308,1599.69,0.625122,0.288288,0.282624,0.005664
+1309,719.606,1.38965,0.288768,0.284032,0.004736
+1310,2662.33,0.37561,0.288352,0.282688,0.005664
+1311,2215.85,0.451294,0.28864,0.282624,0.006016
+1312,1427.43,0.700562,0.288512,0.283232,0.00528
+1313,1223.05,0.817627,0.288384,0.282624,0.00576
+1314,1338.78,0.746948,0.607456,0.602112,0.005344
+1315,1016.5,0.983765,0.288384,0.282816,0.005568
+1316,1058.95,0.944336,0.287744,0.283232,0.004512
+1317,1404.42,0.712036,0.288576,0.282624,0.005952
+1318,1553.87,0.643555,0.288768,0.284032,0.004736
+1319,1368.53,0.730713,0.288384,0.282784,0.0056
+1320,1552.69,0.644043,0.288576,0.283264,0.005312
+1321,1320.23,0.757446,0.288768,0.284096,0.004672
+1322,715.896,1.39685,0.288768,0.282624,0.006144
+1323,2597.34,0.38501,0.59792,0.592224,0.005696
+1324,1089.8,0.917603,0.28848,0.28304,0.00544
+1325,1026.7,0.973999,0.286944,0.28272,0.004224
+1326,1553.87,0.643555,0.288768,0.283904,0.004864
+1327,1420.5,0.703979,0.288768,0.282624,0.006144
+1328,1552.1,0.644287,0.288768,0.282624,0.006144
+1329,755.023,1.32446,0.287872,0.282624,0.005248
+1330,2071.3,0.482788,0.28848,0.282656,0.005824
+1331,1644.98,0.60791,0.533152,0.527264,0.005888
+1332,1042.37,0.959351,0.290816,0.286432,0.004384
+1333,815.124,1.22681,0.288416,0.28304,0.005376
+1334,1379.12,0.725098,0.288768,0.28416,0.004608
+1335,1434.42,0.697144,0.288768,0.28384,0.004928
+1336,1517.04,0.65918,0.288768,0.283808,0.00496
+1337,1430.92,0.698853,0.287648,0.281568,0.00608
+1338,1450.68,0.689331,0.288448,0.283136,0.005312
+1339,1373.57,0.728027,0.288768,0.284192,0.004576
+1340,1195.74,0.836304,0.61344,0.608128,0.005312
+1341,1012.11,0.988037,0.297024,0.291008,0.006016
+1342,901.309,1.1095,0.288768,0.284224,0.004544
+1343,1622.18,0.616455,0.287712,0.283232,0.00448
+1344,1540.14,0.649292,0.288512,0.282624,0.005888
+1345,1403.94,0.71228,0.288512,0.282624,0.005888
+1346,1497.35,0.667847,0.28848,0.282912,0.005568
+1347,1342.29,0.744995,0.287456,0.2832,0.004256
+1348,1291.71,0.77417,0.288544,0.282624,0.00592
+1349,1111.38,0.89978,0.288768,0.282912,0.005856
+1350,1600.94,0.624634,0.290816,0.286112,0.004704
+1351,684.378,1.46118,0.287552,0.283168,0.004384
+1352,1867.34,0.535522,0.28848,0.283232,0.005248
+1353,1412.9,0.707764,0.287744,0.283136,0.004608
+1354,1558.6,0.641602,0.287712,0.283232,0.00448
+1355,1300.32,0.769043,0.287584,0.2832,0.004384
+1356,1524.94,0.655762,0.28864,0.282624,0.006016
+1357,1177.01,0.849609,0.538624,0.53408,0.004544
+1358,1149.43,0.869995,0.598048,0.5936,0.004448
+1359,955.781,1.04626,0.304576,0.283712,0.020864
+1360,1020.17,0.980225,0.288512,0.2832,0.005312
+1361,1250.5,0.799683,0.288416,0.28288,0.005536
+1362,704.567,1.41931,0.288512,0.282944,0.005568
+1363,4617.81,0.216553,0.288384,0.283136,0.005248
+1364,1338.78,0.746948,0.288544,0.282656,0.005888
+1365,604.799,1.65344,0.538624,0.534144,0.00448
+1366,1665.38,0.600464,0.289792,0.285216,0.004576
+1367,932.18,1.07275,0.288768,0.283808,0.00496
+1368,1480.84,0.675293,0.288448,0.2832,0.005248
+1369,1373.57,0.728027,0.288512,0.282624,0.005888
+1370,1577.2,0.634033,0.28848,0.282624,0.005856
+1371,1561.87,0.640259,0.288384,0.282976,0.005408
+1372,1371.96,0.728882,0.287744,0.283232,0.004512
+1373,1587.9,0.629761,0.288768,0.284032,0.004736
+1374,1095.77,0.912598,0.61104,0.604992,0.006048
+1375,964.786,1.0365,0.288416,0.2832,0.005216
+1376,1118.21,0.894287,0.288768,0.28368,0.005088
+1377,1344.05,0.744019,0.288352,0.282784,0.005568
+1378,1540.14,0.649292,0.288768,0.283776,0.004992
+1379,1356.52,0.737183,0.288544,0.282624,0.00592
+1380,1571.76,0.63623,0.288512,0.282624,0.005888
+1381,1441.24,0.693848,0.288384,0.283072,0.005312
+1382,1408.04,0.710205,0.288416,0.282624,0.005792
+1383,1047.97,0.954224,0.602176,0.597728,0.004448
+1384,1055.81,0.947144,0.28864,0.282624,0.006016
+1385,978.851,1.02161,0.287552,0.283168,0.004384
+1386,1758.69,0.568604,0.288544,0.282624,0.00592
+1387,1364.65,0.732788,0.288416,0.282816,0.0056
+1388,1491.62,0.67041,0.288544,0.282656,0.005888
+1389,1438.2,0.695312,0.288352,0.283168,0.005184
+1390,1437.95,0.695435,0.288768,0.28384,0.004928
+1391,1285.62,0.777832,0.288416,0.28288,0.005536
+1392,1352.93,0.739136,0.605472,0.600064,0.005408
+1393,989.133,1.01099,0.288768,0.283904,0.004864
+1394,1033.43,0.967651,0.288704,0.282624,0.00608
+1395,1461.55,0.684204,0.288672,0.282624,0.006048
+1396,1525.51,0.655518,0.28768,0.283232,0.004448
+1397,1451.45,0.688965,0.288576,0.282624,0.005952
+1398,1409.01,0.709717,0.288768,0.283776,0.004992
+1399,1391.3,0.71875,0.288768,0.284064,0.004704
+1400,1488.64,0.671753,0.288448,0.283168,0.00528
+1401,1234.11,0.810303,0.609056,0.604608,0.004448
+1402,933.455,1.07129,0.288448,0.282912,0.005536
+1403,943.018,1.06042,0.287616,0.2832,0.004416
+1404,1717.04,0.582397,0.287072,0.282688,0.004384
+1405,1382.38,0.723389,0.288384,0.283168,0.005216
+1406,1492.71,0.669922,0.287552,0.2832,0.004352
+1407,1370.82,0.729492,0.288384,0.283104,0.00528
+1408,1505.05,0.664429,0.288512,0.282944,0.005568
+1409,956.116,1.0459,0.288416,0.282656,0.00576
+1410,2264.23,0.44165,0.608736,0.602592,0.006144
+1411,896.771,1.11511,0.287712,0.2832,0.004512
+1412,1136.2,0.880127,0.288768,0.282624,0.006144
+1413,1251.45,0.799072,0.288768,0.282624,0.006144
+1414,1664.7,0.600708,0.288416,0.283104,0.005312
+1415,1368.76,0.730591,0.288768,0.28368,0.005088
+1416,1517.32,0.659058,0.28768,0.283232,0.004448
+1417,1468.1,0.681152,0.288768,0.284128,0.00464
+1418,1003.92,0.996094,0.288768,0.283968,0.0048
+1419,1955.6,0.511353,0.602112,0.595968,0.006144
+1420,945.303,1.05786,0.28848,0.28304,0.00544
+1421,1088.06,0.919067,0.288768,0.282624,0.006144
+1422,1372.42,0.728638,0.288768,0.28416,0.004608
+1423,963.085,1.03833,0.288768,0.284032,0.004736
+1424,1709.87,0.584839,0.288512,0.283232,0.00528
+1425,1782.42,0.561035,0.288384,0.282624,0.00576
+1426,1373.34,0.728149,0.288512,0.2832,0.005312
+1427,1555.94,0.6427,0.287424,0.283168,0.004256
+1428,1375.88,0.726807,0.569952,0.565088,0.004864
+1429,686.097,1.45752,0.288704,0.282624,0.00608
+1430,1791.38,0.558228,0.28768,0.2832,0.00448
+1431,1356.97,0.736938,0.288352,0.283136,0.005216
+1432,1497.08,0.667969,0.288768,0.28272,0.006048
+1433,1451.2,0.689087,0.288768,0.28384,0.004928
+1434,1450.17,0.689575,0.288544,0.28272,0.005824
+1435,1384.72,0.722168,0.288384,0.282784,0.0056
+1436,1415.83,0.706299,0.288608,0.282624,0.005984
+1437,1416.32,0.706055,0.290528,0.284896,0.005632
+1438,718.66,1.39148,0.288768,0.282624,0.006144
+1439,1459.47,0.685181,0.288768,0.283904,0.004864
+1440,1490,0.671143,0.287648,0.2832,0.004448
+1441,1484.6,0.673584,0.288416,0.282944,0.005472
+1442,1383.55,0.722778,0.300512,0.294912,0.0056
+1443,885.143,1.12976,0.28832,0.282624,0.005696
+1444,1798.07,0.556152,0.298592,0.292864,0.005728
+1445,1346.04,0.74292,0.5384,0.532832,0.005568
+1446,1017.64,0.982666,0.290816,0.285984,0.004832
+1447,886.292,1.1283,0.28768,0.2832,0.00448
+1448,1447.35,0.690918,0.288768,0.283968,0.0048
+1449,1542.46,0.648315,0.288416,0.282944,0.005472
+1450,1446.07,0.691528,0.28848,0.28272,0.00576
+1451,1447.09,0.69104,0.288416,0.283136,0.00528
+1452,1375.65,0.726929,0.288768,0.284064,0.004704
+1453,1481.37,0.675049,0.287456,0.2832,0.004256
+1454,1409.01,0.709717,0.550976,0.546208,0.004768
+1455,995.625,1.00439,0.290848,0.28544,0.005408
+1456,821.5,1.21729,0.288768,0.283776,0.004992
+1457,1527.79,0.654541,0.288384,0.28288,0.005504
+1458,1457.39,0.686157,0.2888,0.283808,0.004992
+1459,1375.19,0.727173,0.287584,0.283168,0.004416
+1460,1420.74,0.703857,0.288768,0.282656,0.006112
+1461,1508.1,0.663086,0.288768,0.282624,0.006144
+1462,1364.65,0.732788,0.288704,0.283744,0.00496
+1463,987.464,1.0127,0.287552,0.2816,0.005952
+1464,1465.21,0.682495,0.29056,0.284928,0.005632
+1465,833.876,1.19922,0.288352,0.28304,0.005312
+1466,1592.54,0.62793,0.288768,0.283936,0.004832
+1467,1329.44,0.752197,0.288768,0.283904,0.004864
+1468,1461.03,0.684448,0.28848,0.282944,0.005536
+1469,1403.46,0.712524,0.288448,0.282624,0.005824
+1470,1385.19,0.721924,0.288416,0.2832,0.005216
+1471,1454.03,0.687744,0.288416,0.282688,0.005728
+1472,1280.4,0.781006,0.604352,0.598208,0.006144
+1473,935.587,1.06885,0.28832,0.282944,0.005376
+1474,1131.65,0.883667,0.288544,0.283072,0.005472
+1475,1459.99,0.684937,0.288416,0.2832,0.005216
+1476,1471.53,0.679565,0.2888,0.283808,0.004992
+1477,1484.6,0.673584,0.288416,0.282816,0.0056
+1478,1451.71,0.688843,0.288416,0.282848,0.005568
+1479,1360.57,0.734985,0.288768,0.284032,0.004736
+1480,1528.07,0.654419,0.288768,0.282624,0.006144
+1481,1011.98,0.988159,0.611872,0.606208,0.005664
+1482,615.015,1.62598,0.28848,0.282624,0.005856
+1483,1673.2,0.597656,0.288768,0.282624,0.006144
+1484,1433.92,0.697388,0.28864,0.282624,0.006016
+1485,995.625,1.00439,0.288448,0.282816,0.005632
+1486,1872.89,0.533936,0.288416,0.282912,0.005504
+1487,1692.91,0.590698,0.28752,0.283104,0.004416
+1488,1382.62,0.723267,0.288512,0.2832,0.005312
+1489,1490.27,0.671021,0.534528,0.530272,0.004256
+1490,940.42,1.06335,0.292608,0.28672,0.005888
+1491,810.929,1.23315,0.288512,0.282624,0.005888
+1492,1486.48,0.672729,0.288512,0.283232,0.00528
+1493,1500.37,0.666504,0.288768,0.282624,0.006144
+1494,1333.98,0.749634,0.28768,0.283136,0.004544
+1495,1376.11,0.726685,0.288384,0.282624,0.00576
+1496,1586.37,0.630371,0.288704,0.282624,0.00608
+1497,1344.49,0.743774,0.288768,0.283936,0.004832
+1498,1379.12,0.725098,0.613248,0.6088,0.004448
+1499,843.493,1.18555,0.288768,0.283872,0.004896
+1500,1146.54,0.872192,0.288768,0.283744,0.005024
+1501,1252.98,0.798096,0.287744,0.283168,0.004576
+1502,1500.37,0.666504,0.288416,0.282816,0.0056
+1503,1487.29,0.672363,0.287456,0.2832,0.004256
+1504,1473.38,0.678711,0.288704,0.282624,0.00608
+1505,1442.76,0.693115,0.288352,0.28272,0.005632
+1506,1407.56,0.710449,0.288416,0.282624,0.005792
+1507,1326.64,0.753784,0.290816,0.285824,0.004992
+1508,609.705,1.64014,0.288448,0.283232,0.005216
+1509,1580.55,0.63269,0.288416,0.28288,0.005536
+1510,1392.49,0.71814,0.28848,0.282624,0.005856
+1511,1488.37,0.671875,0.288448,0.282976,0.005472
+1512,1424.7,0.701904,0.288768,0.282624,0.006144
+1513,1444.03,0.692505,0.288768,0.282624,0.006144
+1514,1391.54,0.718628,0.288768,0.283808,0.00496
+1515,1365.11,0.732544,0.554592,0.548864,0.005728
+1516,939.019,1.06494,0.291136,0.285248,0.005888
+1517,950.9,1.05164,0.288512,0.282624,0.005888
+1518,1479.77,0.675781,0.288416,0.282688,0.005728
+1519,1465.21,0.682495,0.288384,0.283104,0.00528
+1520,1498.45,0.667358,0.288768,0.284,0.004768
+1521,1352.04,0.739624,0.294912,0.289824,0.005088
+1522,1037.62,0.963745,0.28848,0.2832,0.00528
+1523,1938.93,0.515747,0.288768,0.283776,0.004992
+1524,1365.56,0.7323,0.540032,0.534656,0.005376
+1525,1055.94,0.947021,0.290592,0.28528,0.005312
+1526,805.982,1.24072,0.287616,0.2832,0.004416
+1527,1507.27,0.663452,0.28752,0.2832,0.00432
+1528,1476.04,0.67749,0.28848,0.282816,0.005664
+1529,1447.61,0.690796,0.287712,0.2832,0.004512
+1530,1368.3,0.730835,0.288768,0.28384,0.004928
+1531,1522.39,0.65686,0.288768,0.284064,0.004704
+1532,611.07,1.63647,0.287712,0.283232,0.00448
+1533,4098.05,0.244019,0.55936,0.5536,0.00576
+1534,896.28,1.11572,0.287616,0.2832,0.004416
+1535,1504.5,0.664673,0.288608,0.282624,0.005984
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..4908c36
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,1540.21,0.690217,0.208681,0.00553103,0.162356,0.00552391,0.00496084,0.00542234,0.0195947,0.00529241
+max_1024,2181.62,1.99329,0.704384,0.037472,0.658304,0.0368,0.021024,0.032704,0.040608,0.02768
+min_1024,501.684,0.458374,0.163232,0.004192,0.117536,0.004096,0.004064,0.004096,0.018336,0.004096
+512,789.667,1.26636,0.171968,0.007072,0.124928,0.005696,0.004544,0.005632,0.01888,0.005216
+513,1699.94,0.588257,0.17728,0.006144,0.130752,0.005536,0.004896,0.004224,0.02048,0.005248
+514,1942.61,0.514771,0.167936,0.005728,0.121248,0.006144,0.00528,0.00496,0.019808,0.004768
+515,1685.25,0.593384,0.16816,0.00432,0.12288,0.006144,0.00416,0.00608,0.019488,0.005088
+516,1310.3,0.763184,0.368544,0.0056,0.32208,0.005568,0.004672,0.005504,0.019072,0.006048
+517,1792.95,0.557739,0.172032,0.00544,0.1272,0.004576,0.005632,0.004608,0.020128,0.004448
+518,1733.76,0.576782,0.17408,0.005856,0.127008,0.005504,0.004992,0.006144,0.019648,0.004928
+519,1731.19,0.577637,0.174112,0.00464,0.128352,0.004768,0.006144,0.005408,0.019168,0.005632
+520,1560.08,0.640991,0.173088,0.005536,0.127584,0.005504,0.004736,0.00544,0.019104,0.005184
+521,1249.54,0.800293,0.188416,0.005472,0.143072,0.005056,0.005344,0.004896,0.020128,0.004448
+522,857.801,1.16577,0.401408,0.008192,0.353664,0.004736,0.00544,0.0048,0.019808,0.004768
+523,1510.05,0.662231,0.182272,0.005536,0.135776,0.006144,0.005248,0.004992,0.019872,0.004704
+524,1933.44,0.517212,0.17088,0.00496,0.126976,0.00512,0.004864,0.004352,0.020128,0.00448
+525,1412.41,0.708008,0.17136,0.005472,0.124672,0.005024,0.005376,0.006016,0.019328,0.005472
+526,1431.42,0.698608,0.37104,0.0056,0.326112,0.005536,0.004864,0.004352,0.02,0.004576
+527,591.822,1.6897,0.692224,0.005504,0.645792,0.006112,0.004096,0.006144,0.019616,0.00496
+528,1621.54,0.616699,0.192256,0.00576,0.147328,0.004608,0.005216,0.005024,0.018432,0.005888
+529,1490.54,0.670898,0.206848,0.006048,0.15984,0.005856,0.004384,0.005952,0.018624,0.006144
+530,765.178,1.30688,0.403584,0.007456,0.356448,0.004736,0.00576,0.00448,0.020288,0.004416
+531,1676.97,0.596313,0.178176,0.005536,0.132704,0.00512,0.005376,0.00592,0.018848,0.004672
+532,2028.22,0.493042,0.17344,0.005344,0.127776,0.005344,0.004896,0.005312,0.019264,0.005504
+533,1512.83,0.661011,0.170784,0.004896,0.124736,0.005536,0.004896,0.006112,0.019552,0.005056
+534,2056.74,0.486206,0.171488,0.006016,0.124448,0.004704,0.005696,0.004544,0.020288,0.005792
+535,1286.63,0.777222,0.166048,0.005312,0.119776,0.006144,0.005152,0.005088,0.020064,0.004512
+536,1848.38,0.541016,0.169984,0.006016,0.124416,0.004736,0.00528,0.00496,0.019936,0.00464
+537,1829.8,0.546509,0.169984,0.006144,0.12288,0.005984,0.004256,0.006176,0.020064,0.00448
+538,1327.5,0.753296,0.194368,0.006048,0.147296,0.005536,0.004928,0.005312,0.019296,0.005952
+539,1799.25,0.555786,0.169664,0.005344,0.123616,0.005536,0.004864,0.005344,0.019264,0.005696
+540,1600,0.625,0.175264,0.005792,0.129376,0.005504,0.004736,0.005312,0.019264,0.00528
+541,851.471,1.17444,0.183584,0.008192,0.135168,0.005952,0.004288,0.00592,0.018656,0.005408
+542,1506.99,0.663574,0.182272,0.005696,0.137152,0.004608,0.005792,0.004448,0.01984,0.004736
+543,2040.35,0.490112,0.167936,0.00544,0.12288,0.0048,0.0056,0.00464,0.020288,0.004288
+544,1688.38,0.592285,0.16816,0.0056,0.123648,0.004096,0.005696,0.004544,0.020288,0.004288
+545,1205.41,0.82959,0.3688,0.006048,0.32288,0.004896,0.005504,0.004736,0.02032,0.004416
+546,1553.28,0.643799,0.172832,0.004896,0.127008,0.005728,0.00448,0.006144,0.019872,0.004704
+547,1874.17,0.533569,0.169472,0.005792,0.121184,0.006144,0.004096,0.007392,0.019232,0.005632
+548,1824.91,0.547974,0.16768,0.005632,0.12128,0.00416,0.005632,0.004608,0.020416,0.005952
+549,1003.06,0.996948,0.178112,0.005568,0.132992,0.0048,0.0056,0.00464,0.018624,0.005888
+550,1168.62,0.855713,0.202112,0.004576,0.1576,0.0056,0.00464,0.005504,0.018976,0.005216
+551,881.619,1.13428,0.192,0.008192,0.143392,0.006112,0.00416,0.00608,0.018432,0.005632
+552,2038.32,0.490601,0.169888,0.005344,0.12384,0.00432,0.005632,0.00592,0.018944,0.005888
+553,1549.46,0.645386,0.173952,0.004864,0.12848,0.00464,0.005824,0.004416,0.02048,0.005248
+554,1956.06,0.51123,0.17968,0.005312,0.1336,0.00464,0.00576,0.00656,0.0184,0.005408
+555,1432.67,0.697998,0.1728,0.005024,0.126976,0.00576,0.00448,0.00576,0.018816,0.005984
+556,1765.52,0.566406,0.16384,0.005792,0.118912,0.00432,0.005472,0.004768,0.020032,0.004544
+557,1834.71,0.545044,0.16912,0.006144,0.122496,0.005536,0.004928,0.005312,0.019424,0.00528
+558,1359.89,0.735352,0.173024,0.005088,0.129024,0.005408,0.00432,0.004608,0.020192,0.004384
+559,1563.36,0.639648,0.183552,0.005312,0.137792,0.005536,0.004864,0.005344,0.019424,0.00528
+560,1820.04,0.549438,0.438368,0.005344,0.371168,0.026528,0.004608,0.006144,0.01968,0.004896
+561,893.738,1.1189,0.174144,0.005344,0.12784,0.006144,0.00528,0.00496,0.019808,0.004768
+562,1920.3,0.520752,0.17968,0.005792,0.133344,0.005536,0.004832,0.005376,0.0192,0.0056
+563,1667.75,0.599609,0.17616,0.005408,0.12976,0.006144,0.005184,0.005056,0.019776,0.004832
+564,1614.82,0.619263,0.177792,0.004672,0.132512,0.004704,0.004096,0.006144,0.020448,0.005216
+565,1962.16,0.509644,0.374848,0.004576,0.329728,0.005536,0.004704,0.005536,0.01904,0.005728
+566,1264.2,0.791016,0.169408,0.006144,0.122784,0.005536,0.0048,0.005376,0.0192,0.005568
+567,1491.35,0.670532,0.168032,0.005312,0.12176,0.005984,0.004256,0.005952,0.018624,0.006144
+568,1997.56,0.50061,0.165824,0.00448,0.120832,0.005696,0.004544,0.005536,0.01904,0.005696
+569,1628.63,0.614014,0.174208,0.005344,0.127904,0.006144,0.004096,0.006144,0.01968,0.004896
+570,1756.81,0.569214,0.16976,0.005344,0.123712,0.005664,0.004576,0.005664,0.018912,0.005888
+571,603.551,1.65686,0.213024,0.006464,0.165888,0.006048,0.004192,0.006016,0.018592,0.005824
+572,1923.46,0.519897,0.180512,0.004576,0.136576,0.004544,0.005312,0.004928,0.019648,0.004928
+573,1710.23,0.584717,0.1744,0.00432,0.129024,0.006144,0.005632,0.004608,0.020288,0.004384
+574,1723.54,0.5802,0.179136,0.005056,0.13312,0.005536,0.004704,0.006144,0.01952,0.005056
+575,1297.85,0.770508,0.376832,0.006144,0.330912,0.004992,0.005408,0.0048,0.020096,0.00448
+576,1619.29,0.617554,0.171392,0.006016,0.125056,0.005472,0.004768,0.005408,0.019168,0.005504
+577,1912.23,0.522949,0.170336,0.004448,0.124928,0.006144,0.005248,0.004992,0.019936,0.00464
+578,1507.55,0.66333,0.174208,0.004704,0.129024,0.005632,0.004608,0.005568,0.019008,0.005664
+579,1926.17,0.519165,0.178112,0.004544,0.132672,0.005536,0.005024,0.005696,0.01888,0.00576
+580,1651.28,0.605591,0.175808,0.005344,0.13136,0.004704,0.00512,0.005088,0.018432,0.00576
+581,1096.07,0.912354,0.650912,0.005504,0.6048,0.005696,0.004544,0.005664,0.018912,0.005792
+582,1254.9,0.796875,0.181952,0.00544,0.136096,0.005888,0.004352,0.005632,0.018944,0.0056
+583,1467.84,0.681274,0.177056,0.005024,0.132128,0.005088,0.00544,0.0048,0.020192,0.004384
+584,2022.22,0.494507,0.172704,0.004832,0.128064,0.004928,0.004224,0.00592,0.018656,0.00608
+585,1603.44,0.623657,0.17024,0.004448,0.124928,0.005888,0.004352,0.005856,0.01872,0.006048
+586,1632.2,0.612671,0.175168,0.006144,0.128768,0.005536,0.004672,0.004384,0.02048,0.005184
+587,1676.28,0.596558,0.165856,0.004736,0.120832,0.00608,0.00416,0.006048,0.018528,0.005472
+588,1765.14,0.566528,0.178208,0.005408,0.133216,0.004768,0.004096,0.006112,0.01952,0.005088
+589,1076.76,0.928711,0.171008,0.00512,0.124928,0.005664,0.004576,0.005632,0.018976,0.006112
+590,1787.09,0.55957,0.174016,0.004896,0.129024,0.00592,0.00432,0.005856,0.01872,0.00528
+591,740.486,1.35046,0.177568,0.008192,0.129024,0.005984,0.004256,0.006048,0.018528,0.005536
+592,1833.07,0.545532,0.176224,0.005344,0.131136,0.004928,0.004096,0.00608,0.019872,0.004768
+593,1721.37,0.580933,0.176032,0.00592,0.128288,0.005056,0.00544,0.006528,0.018784,0.006016
+594,916.434,1.09119,0.192512,0.006144,0.147488,0.006112,0.004096,0.006144,0.018432,0.004096
+595,1394.15,0.717285,0.17984,0.006112,0.133184,0.006112,0.00512,0.00512,0.018432,0.00576
+596,1666.4,0.600098,0.171616,0.005696,0.125376,0.005504,0.004768,0.005472,0.019072,0.005728
+597,1798.07,0.556152,0.18112,0.005088,0.135072,0.005536,0.0048,0.005888,0.018688,0.006048
+598,1493.53,0.669556,0.171264,0.005824,0.124992,0.005536,0.004864,0.005312,0.01936,0.005376
+599,1863.09,0.536743,0.176192,0.005344,0.12992,0.006112,0.005248,0.004992,0.018432,0.006144
+600,1496.8,0.668091,0.174144,0.005344,0.129632,0.004352,0.00544,0.0048,0.020032,0.004544
+601,823.482,1.21436,0.180064,0.008192,0.131072,0.005952,0.004288,0.006144,0.018432,0.005984
+602,1923.46,0.519897,0.171328,0.005632,0.125152,0.005536,0.00496,0.005312,0.019296,0.00544
+603,1483.25,0.674194,0.173888,0.006048,0.127072,0.006144,0.00528,0.00496,0.018432,0.005952
+604,1805.2,0.553955,0.16976,0.005344,0.123808,0.005632,0.00464,0.005568,0.019008,0.00576
+605,1772.39,0.564209,0.412032,0.004928,0.36656,0.005536,0.004736,0.005472,0.019104,0.005696
+606,1339.44,0.746582,0.16736,0.00592,0.121056,0.0056,0.00464,0.005568,0.019008,0.005568
+607,1731.92,0.577393,0.16784,0.00576,0.121216,0.006144,0.005152,0.005088,0.018432,0.006048
+608,1718.48,0.581909,0.16752,0.005696,0.12128,0.005632,0.004608,0.005536,0.01904,0.005728
+609,1756.06,0.569458,0.171104,0.006176,0.124576,0.005536,0.004864,0.005344,0.019392,0.005216
+610,1746.32,0.572632,0.167936,0.005792,0.12304,0.005568,0.004864,0.005312,0.018784,0.004576
+611,841.068,1.18896,0.17408,0.008192,0.1264,0.004672,0.005824,0.004416,0.019808,0.004768
+612,1689.07,0.592041,0.16704,0.005376,0.1216,0.004096,0.005888,0.004352,0.02048,0.005248
+613,1905.56,0.52478,0.17584,0.00432,0.130976,0.005312,0.005024,0.005504,0.019072,0.005632
+614,1729.36,0.578247,0.163232,0.005376,0.117536,0.006144,0.004096,0.006144,0.018432,0.005504
+615,1649.95,0.606079,0.170016,0.005312,0.123776,0.006112,0.005184,0.005056,0.019808,0.004768
+616,1303.01,0.767456,0.368288,0.005312,0.322432,0.005728,0.004512,0.005504,0.019072,0.005728
+617,1354.72,0.738159,0.181376,0.005024,0.137216,0.005664,0.004576,0.005632,0.018848,0.004416
+618,1863.94,0.536499,0.17424,0.005376,0.127904,0.006144,0.005248,0.004992,0.020032,0.004544
+619,1348.92,0.741333,0.168704,0.004864,0.12288,0.005888,0.004352,0.006144,0.019744,0.004832
+620,1961.22,0.509888,0.1816,0.005376,0.135936,0.005312,0.004864,0.005312,0.019328,0.005472
+621,1065.42,0.938599,0.645056,0.005824,0.598336,0.006144,0.005248,0.004992,0.018432,0.00608
+622,1378.89,0.72522,0.176352,0.005344,0.13152,0.004672,0.005696,0.004544,0.01984,0.004736
+623,1370.13,0.729858,0.181632,0.00528,0.135456,0.004768,0.005728,0.004512,0.02048,0.005408
+624,2086.6,0.479248,0.173536,0.005472,0.127648,0.005376,0.004864,0.005376,0.0192,0.0056
+625,1482.45,0.674561,0.176704,0.004672,0.132384,0.004832,0.0056,0.00464,0.020288,0.004288
+626,1613.23,0.619873,0.354304,0.006016,0.307328,0.006144,0.00528,0.00496,0.019936,0.00464
+627,1555.94,0.6427,0.16928,0.005632,0.123264,0.005536,0.004832,0.005184,0.019392,0.00544
+628,1735.96,0.57605,0.1696,0.004576,0.1248,0.00544,0.004704,0.005344,0.019296,0.00544
+629,1778.16,0.562378,0.167936,0.005376,0.123232,0.004576,0.005856,0.00432,0.02016,0.004416
+630,1701.7,0.587646,0.170592,0.004704,0.124928,0.006144,0.005184,0.005056,0.019776,0.0048
+631,1727.54,0.578857,0.173376,0.0056,0.12736,0.005536,0.004864,0.005344,0.019232,0.00544
+632,795.494,1.25708,0.176736,0.007008,0.13072,0.004448,0.005312,0.004928,0.018432,0.005888
+633,1646.3,0.607422,0.16368,0.004736,0.118784,0.00592,0.00432,0.005888,0.018688,0.005344
+634,1890.17,0.529053,0.176704,0.004672,0.131072,0.006144,0.004128,0.006112,0.019552,0.005024
+635,1735.59,0.576172,0.17408,0.005792,0.128448,0.005024,0.005408,0.004832,0.020032,0.004544
+636,1745.21,0.572998,0.168128,0.004544,0.12272,0.005824,0.004416,0.005792,0.018784,0.006048
+637,1404.42,0.712036,0.168032,0.005376,0.122656,0.005088,0.005344,0.004896,0.020256,0.004416
+638,1813.19,0.551514,0.16704,0.00592,0.12064,0.005536,0.004896,0.00432,0.02048,0.005248
+639,1536.96,0.650635,0.171968,0.005024,0.124928,0.006144,0.00528,0.00496,0.019904,0.005728
+640,1928.89,0.518433,0.166944,0.00608,0.120896,0.005216,0.004864,0.004256,0.020416,0.005216
+641,1025.28,0.975342,0.249856,0.005312,0.2032,0.00448,0.006176,0.006112,0.019744,0.004832
+642,1632.2,0.612671,0.197248,0.004736,0.152832,0.004864,0.005536,0.004704,0.019488,0.005088
+643,757.957,1.31934,0.18672,0.006496,0.140768,0.00464,0.005792,0.005536,0.018848,0.00464
+644,1666.73,0.599976,0.164032,0.00544,0.119456,0.00432,0.005472,0.004768,0.019968,0.004608
+645,1626.36,0.614868,0.17824,0.005312,0.133344,0.004768,0.005632,0.004608,0.02016,0.004416
+646,1990.77,0.502319,0.178272,0.004768,0.132992,0.005536,0.004832,0.005344,0.019232,0.005568
+647,1514.23,0.6604,0.172032,0.006144,0.12624,0.004832,0.005568,0.004672,0.020192,0.004384
+648,1730.83,0.577759,0.172032,0.006048,0.12688,0.004288,0.005536,0.004704,0.020064,0.004512
+649,1731.56,0.577515,0.172128,0.005344,0.126848,0.00512,0.005312,0.004928,0.019616,0.00496
+650,1284.42,0.778564,0.172032,0.005952,0.12512,0.00576,0.00448,0.006144,0.019872,0.004704
+651,1910.45,0.523438,0.174656,0.004576,0.130368,0.0048,0.0056,0.00464,0.020256,0.004416
+652,815.693,1.22595,0.17648,0.007168,0.130208,0.004928,0.004128,0.006048,0.018528,0.005472
+653,1650.61,0.605835,0.17248,0.004544,0.128128,0.004992,0.005408,0.004832,0.019872,0.004704
+654,1798.46,0.55603,0.17648,0.00496,0.131072,0.005664,0.004576,0.0056,0.019008,0.0056
+655,1883.22,0.531006,0.178176,0.00592,0.131296,0.00608,0.00416,0.006112,0.019648,0.00496
+656,1683.86,0.593872,0.17408,0.006144,0.128736,0.004384,0.005376,0.004896,0.02,0.004544
+657,1208.08,0.827759,0.374784,0.006144,0.32768,0.006144,0.004288,0.005952,0.019712,0.004864
+658,1709.52,0.584961,0.17408,0.00544,0.12768,0.006144,0.004288,0.005952,0.019776,0.0048
+659,1966.39,0.508545,0.168064,0.006144,0.122304,0.004672,0.005856,0.004384,0.02032,0.004384
+660,1678,0.595947,0.16944,0.005984,0.12304,0.00544,0.0048,0.00544,0.019136,0.0056
+661,1431.42,0.698608,0.194048,0.00592,0.146688,0.005088,0.005344,0.004896,0.02048,0.005632
+662,1742.61,0.573853,0.47792,0.00512,0.43008,0.007616,0.004672,0.005568,0.019008,0.005856
+663,896.574,1.11536,0.180224,0.006144,0.135168,0.005344,0.004896,0.005344,0.018816,0.004512
+664,1476.3,0.677368,0.173856,0.00576,0.127392,0.00576,0.004448,0.005728,0.018848,0.00592
+665,905.694,1.10413,0.202656,0.005472,0.157568,0.004896,0.005504,0.004736,0.018528,0.005952
+666,1729.36,0.578247,0.194624,0.005376,0.150144,0.005536,0.004864,0.005312,0.018848,0.004544
+667,1594.08,0.627319,0.17056,0.004704,0.124896,0.006144,0.005184,0.005056,0.019904,0.004672
+668,1733.76,0.576782,0.169984,0.006176,0.124288,0.004704,0.005408,0.004832,0.020064,0.004512
+669,1598.75,0.625488,0.171808,0.005312,0.125408,0.004544,0.006112,0.005376,0.019232,0.005824
+670,1942.61,0.514771,0.174176,0.004896,0.127008,0.006112,0.004096,0.006144,0.02048,0.00544
+671,1544.79,0.647339,0.175232,0.00576,0.128576,0.004928,0.005472,0.004768,0.02048,0.005248
+672,1016.38,0.983887,0.651872,0.004704,0.606208,0.005632,0.004608,0.006144,0.019712,0.004864
+673,1500.64,0.666382,0.17184,0.006144,0.124928,0.00576,0.00448,0.005824,0.018784,0.00592
+674,1778.94,0.562134,0.16576,0.0056,0.119392,0.005728,0.004544,0.005696,0.018848,0.005952
+675,1886.69,0.530029,0.172032,0.006016,0.125056,0.006144,0.005248,0.004992,0.019872,0.004704
+676,1579.33,0.633179,0.168096,0.0056,0.123424,0.004224,0.005792,0.00432,0.020352,0.004384
+677,1839.66,0.543579,0.169248,0.005312,0.123424,0.004544,0.005888,0.004352,0.02048,0.005248
+678,1211.3,0.825562,0.16912,0.005312,0.123584,0.005536,0.004896,0.00528,0.019296,0.005216
+679,1595.95,0.626587,0.167936,0.005696,0.121312,0.006112,0.004128,0.00608,0.019776,0.004832
+680,806.061,1.2406,0.175648,0.004576,0.130912,0.005312,0.004864,0.00528,0.019328,0.005376
+681,1789.82,0.558716,0.176288,0.004512,0.131072,0.006144,0.005216,0.005024,0.018432,0.005888
+682,1824.5,0.548096,0.17856,0.00448,0.134688,0.004576,0.005824,0.004416,0.019712,0.004864
+683,832.267,1.20154,0.1808,0.00672,0.134496,0.004768,0.005632,0.004608,0.019552,0.005024
+684,1610.06,0.621094,0.182272,0.006144,0.136672,0.00464,0.005152,0.005088,0.019712,0.004864
+685,1880.19,0.53186,0.169856,0.004768,0.1248,0.005536,0.00464,0.005312,0.019456,0.005344
+686,1704.18,0.586792,0.175072,0.004928,0.129024,0.006144,0.004096,0.006144,0.020352,0.004384
+687,808.527,1.23682,0.379104,0.004416,0.333824,0.006144,0.005184,0.005056,0.018432,0.006048
+688,1759.83,0.568237,0.180416,0.005344,0.135744,0.004512,0.00528,0.00496,0.01984,0.004736
+689,1551.22,0.644653,0.167936,0.005408,0.121568,0.005792,0.004448,0.00608,0.019552,0.005088
+690,1985.46,0.503662,0.173664,0.005888,0.1272,0.005568,0.004704,0.005472,0.019104,0.005728
+691,1654.95,0.604248,0.179936,0.00576,0.133536,0.006112,0.00512,0.00512,0.018432,0.005856
+692,795.649,1.25684,0.179904,0.008192,0.131072,0.005568,0.004704,0.005568,0.019008,0.005792
+693,1797.67,0.556274,0.1712,0.00544,0.125248,0.005536,0.004896,0.005312,0.019456,0.005312
+694,1621.22,0.616821,0.172032,0.006144,0.126208,0.004864,0.005568,0.004672,0.019968,0.004608
+695,1724.27,0.579956,0.166208,0.004416,0.122528,0.004448,0.005664,0.004576,0.02016,0.004416
+696,1942.15,0.514893,0.176128,0.00592,0.129248,0.004096,0.005792,0.006464,0.019872,0.004736
+697,1385.66,0.72168,0.172096,0.005408,0.125728,0.006048,0.005248,0.005088,0.01984,0.004736
+698,1867.76,0.5354,0.17152,0.005376,0.125728,0.005536,0.004864,0.005152,0.019424,0.00544
+699,1703.47,0.587036,0.175488,0.00592,0.129248,0.006016,0.004224,0.00528,0.019296,0.005504
+700,1368.07,0.730957,0.168288,0.004768,0.12288,0.005568,0.004672,0.005536,0.01904,0.005824
+701,1789.43,0.558838,0.182912,0.004736,0.13856,0.0048,0.0056,0.00464,0.01952,0.005056
+702,1718.48,0.581909,0.471584,0.004544,0.425824,0.00624,0.005728,0.004512,0.02032,0.004416
+703,884.283,1.13086,0.179296,0.005952,0.132768,0.00464,0.005824,0.004416,0.020448,0.005248
+704,1878.04,0.532471,0.176064,0.006144,0.129024,0.005984,0.004256,0.00592,0.018688,0.006048
+705,1759.45,0.568359,0.1792,0.00512,0.13312,0.005984,0.004256,0.005984,0.018592,0.006144
+706,1742.24,0.573975,0.169536,0.006176,0.122848,0.005664,0.004576,0.005472,0.019104,0.005696
+707,1451.71,0.688843,0.167424,0.00576,0.121248,0.00608,0.004128,0.006144,0.018432,0.005632
+708,1227.63,0.814575,0.168096,0.004544,0.122816,0.005696,0.004544,0.005696,0.01888,0.00592
+709,1777.39,0.562622,0.176032,0.004288,0.131072,0.005728,0.004512,0.005632,0.018944,0.005856
+710,1946.77,0.513672,0.17408,0.005824,0.129088,0.005536,0.004608,0.004448,0.020128,0.004448
+711,1221.23,0.818848,0.187008,0.004736,0.143232,0.005504,0.004864,0.005376,0.019008,0.004288
+712,995.625,1.00439,0.656832,0.005952,0.609696,0.004896,0.006144,0.005344,0.019232,0.005568
+713,1237.65,0.807983,0.178176,0.005568,0.132928,0.004864,0.005536,0.004704,0.020064,0.004512
+714,1771.24,0.564575,0.175168,0.005856,0.128864,0.004544,0.005856,0.004384,0.020448,0.005216
+715,1624.75,0.615479,0.177504,0.006048,0.130656,0.004608,0.005824,0.0056,0.019296,0.005472
+716,1510.6,0.661987,0.17616,0.005376,0.129824,0.0056,0.00464,0.00592,0.018656,0.006144
+717,1966.39,0.508545,0.17008,0.005312,0.125536,0.00448,0.005888,0.004352,0.018432,0.00608
+718,1363.29,0.733521,0.178208,0.00464,0.133056,0.005568,0.004736,0.00544,0.019136,0.005632
+719,1765.9,0.566284,0.170016,0.005408,0.125088,0.004672,0.005728,0.004512,0.020224,0.004384
+720,1448.63,0.690308,0.170304,0.004448,0.126048,0.004896,0.004224,0.00592,0.018656,0.006112
+721,2078.13,0.481201,0.173344,0.004544,0.128352,0.004608,0.005856,0.004384,0.020384,0.005216
+722,1385.89,0.721558,0.186368,0.005952,0.140768,0.004832,0.0056,0.00464,0.019872,0.004704
+723,1892.35,0.528442,0.178464,0.004832,0.13312,0.006144,0.004096,0.006144,0.018432,0.005696
+724,685.925,1.45789,0.198656,0.008192,0.149504,0.004128,0.005824,0.004384,0.021664,0.00496
+725,1432.17,0.698242,0.192512,0.005696,0.146912,0.005088,0.005504,0.004736,0.020192,0.004384
+726,1897.61,0.526978,0.176416,0.004832,0.131072,0.006112,0.004096,0.006144,0.018432,0.005728
+727,1482.98,0.674316,0.18528,0.005056,0.14304,0.004416,0.004096,0.005728,0.018336,0.004608
+728,1332.9,0.750244,0.182112,0.005888,0.136768,0.0048,0.005312,0.004928,0.018464,0.005952
+729,1609.11,0.62146,0.194688,0.005408,0.150048,0.005536,0.004992,0.005312,0.018784,0.004608
+730,1519.85,0.657959,0.183392,0.005792,0.137536,0.004128,0.005728,0.004512,0.02048,0.005216
+731,1936.19,0.516479,0.177248,0.005056,0.13312,0.005696,0.004544,0.005664,0.018784,0.004384
+732,1570.55,0.636719,0.176128,0.006144,0.130496,0.004672,0.00512,0.00512,0.019648,0.004928
+733,559.066,1.7887,0.434176,0.01184,0.381408,0.005984,0.004256,0.006016,0.018528,0.006144
+734,1671.5,0.598267,0.19712,0.004608,0.151552,0.006144,0.004096,0.006144,0.019648,0.004928
+735,1658.3,0.603027,0.191744,0.005792,0.14576,0.00592,0.004352,0.005856,0.018688,0.005376
+736,1729.73,0.578125,0.178016,0.005344,0.1336,0.004448,0.005344,0.004896,0.018432,0.005952
+737,1393.43,0.717651,0.175968,0.004768,0.13072,0.005568,0.004896,0.005344,0.01936,0.005312
+738,1817.62,0.550171,0.176128,0.00544,0.129728,0.006112,0.004128,0.006112,0.019552,0.005056
+739,1644.32,0.608154,0.17392,0.00544,0.127808,0.005664,0.004576,0.005664,0.018912,0.005856
+740,1233.73,0.810547,0.192512,0.005472,0.148128,0.005216,0.004928,0.005312,0.019136,0.00432
+741,1590.68,0.628662,0.188704,0.00448,0.14336,0.005472,0.004768,0.00592,0.018656,0.006048
+742,1021.45,0.979004,0.699584,0.005344,0.654208,0.00592,0.00432,0.005856,0.01872,0.005216
+743,1213.45,0.824097,0.176128,0.006144,0.1288,0.005536,0.004928,0.006144,0.019648,0.004928
+744,2010.8,0.497314,0.168448,0.004608,0.124736,0.004288,0.005536,0.004704,0.020096,0.00448
+745,1558.6,0.641602,0.18192,0.004448,0.137184,0.005536,0.004736,0.00544,0.019136,0.00544
+746,1959.34,0.510376,0.171776,0.004768,0.126464,0.004608,0.00576,0.00448,0.020416,0.00528
+747,1293.13,0.773315,0.16832,0.00448,0.12288,0.006144,0.005312,0.004928,0.01984,0.004736
+748,1993.19,0.501709,0.167936,0.006176,0.122336,0.004608,0.005184,0.005056,0.019616,0.00496
+749,1733.02,0.577026,0.176832,0.004832,0.130752,0.005536,0.005024,0.005856,0.01872,0.006112
+750,1701,0.587891,0.173472,0.006144,0.126592,0.005504,0.004864,0.004352,0.020288,0.005728
+751,1723.18,0.580322,0.175296,0.005856,0.127264,0.005984,0.004256,0.0072,0.019424,0.005312
+752,1701.35,0.587769,0.174208,0.004928,0.129024,0.005472,0.004768,0.00544,0.019136,0.00544
+753,1088.2,0.918945,0.651264,0.00544,0.604864,0.006048,0.004192,0.00608,0.01952,0.00512
+754,1374.5,0.727539,0.173888,0.004896,0.128544,0.004576,0.005792,0.004448,0.020416,0.005216
+755,1007.87,0.992188,0.18144,0.00576,0.135424,0.005536,0.004832,0.005376,0.0192,0.005312
+756,1873.31,0.533813,0.182144,0.004576,0.137216,0.005344,0.004896,0.005376,0.0192,0.005536
+757,1233.73,0.810547,0.369984,0.006144,0.323584,0.00576,0.00448,0.005728,0.018848,0.00544
+758,1961.69,0.509766,0.163808,0.005376,0.11776,0.005888,0.00432,0.005696,0.01888,0.005888
+759,1600.94,0.624634,0.168224,0.004384,0.122912,0.005984,0.004224,0.005952,0.018624,0.006144
+760,1931.62,0.5177,0.167008,0.005664,0.121312,0.004288,0.005664,0.00448,0.020384,0.005216
+761,1475.24,0.677856,0.174016,0.004864,0.128416,0.004672,0.005824,0.004416,0.02048,0.005344
+762,1838.42,0.543945,0.187232,0.00496,0.141312,0.00608,0.00416,0.006016,0.01856,0.006144
+763,957.457,1.04443,0.432736,0.037472,0.355808,0.00464,0.00576,0.004544,0.019584,0.004928
+764,1752.3,0.570679,0.169056,0.005376,0.123648,0.00416,0.005632,0.004608,0.020384,0.005248
+765,1841.73,0.542969,0.166272,0.004448,0.120832,0.006144,0.005184,0.005056,0.019808,0.0048
+766,1629.28,0.61377,0.177824,0.004576,0.131104,0.006112,0.005792,0.004448,0.02048,0.005312
+767,1722.46,0.580566,0.16384,0.00528,0.11904,0.004704,0.005728,0.004512,0.020224,0.004352
+768,1210.94,0.825806,0.36944,0.005088,0.323552,0.00576,0.00448,0.005728,0.018848,0.005984
+769,1775.47,0.563232,0.168736,0.004768,0.124192,0.004832,0.005632,0.004608,0.020288,0.004416
+770,1718.12,0.582031,0.16896,0.00496,0.12416,0.004864,0.0056,0.00464,0.020352,0.004384
+771,1946.77,0.513672,0.169824,0.005408,0.121568,0.006144,0.005152,0.006624,0.018944,0.005984
+772,1584.83,0.630981,0.16768,0.004448,0.12288,0.004096,0.005792,0.004448,0.020288,0.005728
+773,1915.36,0.522095,0.167104,0.005536,0.121472,0.005888,0.00432,0.005888,0.018688,0.005312
+774,976.866,1.02368,0.173152,0.008192,0.124352,0.004672,0.005696,0.004544,0.02048,0.005216
+775,1753.42,0.570312,0.172096,0.005312,0.125824,0.005888,0.004352,0.005952,0.018624,0.006144
+776,1688.03,0.592407,0.17456,0.004576,0.13072,0.00448,0.005312,0.004896,0.019808,0.004768
+777,1707.73,0.585571,0.165888,0.005408,0.11952,0.00608,0.00416,0.006048,0.019648,0.005024
+778,1801.23,0.555176,0.164512,0.004832,0.118752,0.006016,0.004224,0.006144,0.018432,0.006112
+779,949.137,1.05359,0.374976,0.004448,0.329728,0.006144,0.004192,0.006048,0.018464,0.005952
+780,1681.79,0.594604,0.18352,0.005728,0.137632,0.005376,0.004864,0.005312,0.019264,0.005344
+781,1635.13,0.611572,0.176128,0.006048,0.130784,0.005536,0.004992,0.005312,0.01888,0.004576
+782,1627.66,0.61438,0.190592,0.004608,0.145408,0.00592,0.00432,0.005856,0.01872,0.00576
+783,1251.07,0.799316,0.200864,0.00496,0.15568,0.005728,0.00448,0.005696,0.018784,0.005536
+784,777.672,1.28589,0.231424,0.007488,0.18432,0.0048,0.005248,0.004992,0.02,0.004576
+785,1542.46,0.648315,0.198656,0.005344,0.152384,0.006112,0.00416,0.00608,0.019584,0.004992
+786,1800.44,0.55542,0.186432,0.005376,0.141824,0.005536,0.00496,0.005248,0.018784,0.004704
+787,1911.79,0.523071,0.171392,0.006144,0.124736,0.005536,0.004864,0.005312,0.019296,0.005504
+788,1560.68,0.640747,0.169824,0.006144,0.124736,0.00544,0.004096,0.004992,0.018432,0.005984
+789,1285.83,0.77771,0.17344,0.0056,0.12656,0.005056,0.00608,0.005344,0.019296,0.005504
+790,1630.9,0.613159,0.168608,0.004896,0.12288,0.00592,0.00432,0.005824,0.018752,0.006016
+791,1912.68,0.522827,0.175808,0.004448,0.130848,0.005536,0.004896,0.005248,0.01936,0.005472
+792,1749.68,0.571533,0.176128,0.005536,0.131008,0.004768,0.004096,0.006144,0.019488,0.005088
+793,1602.5,0.624023,0.165888,0.005632,0.12064,0.0048,0.005632,0.004608,0.019776,0.0048
+794,893.25,1.11951,0.178272,0.007424,0.131872,0.005536,0.004768,0.005344,0.018784,0.004544
+795,1663.69,0.601074,0.177824,0.004416,0.132384,0.004832,0.0056,0.00576,0.01936,0.005472
+796,1933.9,0.51709,0.173888,0.006112,0.127008,0.005216,0.004992,0.005312,0.019296,0.005952
+797,1612.6,0.620117,0.167936,0.00592,0.12256,0.00464,0.005792,0.004448,0.019776,0.0048
+798,1934.81,0.516846,0.1728,0.00496,0.127008,0.005728,0.00448,0.005856,0.01872,0.006048
+799,1208.08,0.827759,0.372544,0.005312,0.326304,0.005568,0.00496,0.0056,0.018976,0.005824
+800,1695.01,0.589966,0.17008,0.004544,0.124928,0.005824,0.004416,0.0056,0.018976,0.005792
+801,1606.27,0.622559,0.176096,0.005728,0.12944,0.006112,0.004128,0.005952,0.018624,0.006112
+802,1175.83,0.850464,0.208704,0.006176,0.16176,0.006144,0.005312,0.004928,0.018432,0.005952
+803,1423.21,0.702637,0.213152,0.0056,0.16848,0.0056,0.00464,0.0056,0.018816,0.004416
+804,1107.33,0.903076,0.494336,0.004992,0.404992,0.006624,0.015488,0.029568,0.026624,0.006048
+805,1164.3,0.858887,0.22336,0.005952,0.177536,0.004928,0.005536,0.004704,0.020288,0.004416
+806,1558.3,0.641724,0.178336,0.004992,0.13312,0.006016,0.004192,0.005984,0.018592,0.00544
+807,1985.94,0.50354,0.175968,0.005312,0.129952,0.005952,0.004288,0.005952,0.018624,0.005888
+808,1602.82,0.623901,0.175296,0.005888,0.130336,0.004928,0.004256,0.00592,0.018656,0.005312
+809,1587.29,0.630005,0.178112,0.004544,0.132928,0.005728,0.004512,0.005568,0.019008,0.005824
+810,1725.72,0.579468,0.16896,0.005376,0.123264,0.005536,0.004896,0.004288,0.020384,0.005216
+811,1707.38,0.585693,0.172128,0.005792,0.127328,0.0056,0.00464,0.005568,0.018816,0.004384
+812,1726.09,0.579346,0.172032,0.005344,0.127648,0.004224,0.005568,0.004672,0.02016,0.004416
+813,1684.56,0.593628,0.177632,0.006112,0.130848,0.005536,0.004896,0.005312,0.019328,0.0056
+814,1024,0.976562,0.676576,0.004832,0.630848,0.00608,0.00528,0.00496,0.019872,0.004704
+815,1414.12,0.707153,0.177088,0.005056,0.132224,0.004992,0.00544,0.0048,0.02,0.004576
+816,1549.46,0.645386,0.16992,0.004544,0.124832,0.005568,0.004672,0.005504,0.019072,0.005728
+817,2023.72,0.494141,0.178144,0.005312,0.131936,0.005856,0.004384,0.005824,0.018752,0.00608
+818,1556.23,0.642578,0.180224,0.005696,0.134656,0.005056,0.005472,0.004768,0.020096,0.00448
+819,1866.48,0.535767,0.17408,0.005024,0.128544,0.004576,0.005824,0.004416,0.02048,0.005216
+820,1500.64,0.666382,0.168608,0.004768,0.124928,0.005216,0.004928,0.004224,0.020064,0.00448
+821,1449.14,0.690063,0.16944,0.005568,0.123424,0.005504,0.004768,0.005408,0.019168,0.0056
+822,2109.17,0.474121,0.1664,0.00464,0.122272,0.004672,0.00576,0.00448,0.020352,0.004224
+823,1760.58,0.567993,0.17408,0.00608,0.12704,0.006016,0.004224,0.006144,0.019744,0.004832
+824,1698.18,0.588867,0.16944,0.006112,0.122912,0.00544,0.0048,0.005216,0.01936,0.0056
+825,1621.22,0.616821,0.166048,0.005344,0.119136,0.004704,0.005728,0.0064,0.018592,0.006144
+826,594.917,1.68091,0.213152,0.007424,0.164768,0.006144,0.004096,0.006144,0.01968,0.004896
+827,1241.96,0.805176,0.202848,0.005344,0.156544,0.006144,0.005248,0.004992,0.019808,0.004768
+828,1534.37,0.651733,0.19792,0.005376,0.152512,0.005664,0.004576,0.005664,0.018912,0.005216
+829,1374.96,0.727295,0.38912,0.006144,0.34352,0.00464,0.00512,0.00512,0.019808,0.004768
+830,1685.6,0.593262,0.17408,0.006144,0.126976,0.006144,0.004096,0.00608,0.01856,0.00608
+831,1504.78,0.664551,0.17504,0.005056,0.13024,0.004928,0.005472,0.004768,0.019488,0.005088
+832,1587.29,0.630005,0.181792,0.005312,0.136032,0.00416,0.005632,0.005888,0.019136,0.005632
+833,1986.9,0.503296,0.178176,0.005856,0.13136,0.006144,0.00528,0.00496,0.019872,0.004704
+834,1707.02,0.585815,0.46032,0.00464,0.41344,0.0064,0.005728,0.004512,0.020384,0.005216
+835,897.262,1.1145,0.174112,0.00576,0.126976,0.005536,0.004864,0.006208,0.01968,0.005088
+836,1748.19,0.572021,0.1736,0.006112,0.127008,0.005568,0.004672,0.005536,0.01904,0.005664
+837,1716.32,0.582642,0.16336,0.004448,0.118432,0.005536,0.004896,0.00432,0.020416,0.005312
+838,1727.91,0.578735,0.167936,0.0056,0.122592,0.004928,0.005344,0.004896,0.019904,0.004672
+839,1648.95,0.606445,0.1688,0.004928,0.12288,0.006144,0.004096,0.006144,0.01968,0.004928
+840,1445.31,0.691895,0.176096,0.005088,0.131072,0.004128,0.00576,0.004448,0.020384,0.005216
+841,1688.72,0.592163,0.175008,0.005024,0.129024,0.006144,0.004256,0.005984,0.019648,0.004928
+842,1618.97,0.617676,0.167936,0.006048,0.122144,0.004832,0.005568,0.004672,0.020256,0.004416
+843,1790.6,0.558472,0.171328,0.00544,0.124832,0.004896,0.005888,0.005408,0.019424,0.00544
+844,1727.54,0.578857,0.1832,0.005024,0.13872,0.00464,0.005216,0.005024,0.018432,0.006144
+845,1547.41,0.64624,0.197216,0.004896,0.151552,0.006144,0.005248,0.004992,0.018432,0.005952
+846,840.378,1.18994,0.180256,0.008192,0.131072,0.006112,0.004128,0.006144,0.02,0.004608
+847,1617.05,0.618408,0.169984,0.005728,0.124672,0.004768,0.005632,0.004608,0.02016,0.004416
+848,1437.45,0.695679,0.180992,0.004864,0.1352,0.005792,0.004416,0.00576,0.018816,0.006144
+849,1860.97,0.537354,0.172032,0.005888,0.125184,0.006144,0.005184,0.005056,0.019584,0.004992
+850,1387.06,0.720947,0.36912,0.004672,0.323584,0.00592,0.00432,0.00592,0.018656,0.006048
+851,895.105,1.11719,0.169504,0.005408,0.123552,0.005536,0.004896,0.005312,0.019296,0.005504
+852,1728.27,0.578613,0.166976,0.005696,0.12128,0.004224,0.005664,0.004448,0.020448,0.005216
+853,1560.38,0.640869,0.173952,0.006144,0.126976,0.005536,0.004704,0.005824,0.018752,0.006016
+854,1757.19,0.569092,0.171616,0.005376,0.125728,0.006112,0.004096,0.006144,0.018432,0.005728
+855,783.099,1.27698,0.176448,0.006464,0.129024,0.005728,0.004512,0.005696,0.018912,0.006112
+856,1866.91,0.535645,0.178368,0.00464,0.13312,0.005536,0.004704,0.005504,0.019072,0.005792
+857,1708.8,0.585205,0.173248,0.005696,0.126528,0.004992,0.005984,0.005376,0.01936,0.005312
+858,1860.97,0.537354,0.172032,0.005408,0.125664,0.006144,0.004096,0.006144,0.019488,0.005088
+859,1673.54,0.597534,0.165888,0.006144,0.11872,0.005568,0.004736,0.005984,0.019616,0.00512
+860,1177.18,0.849487,0.171424,0.006144,0.124928,0.005408,0.004832,0.005216,0.01936,0.005536
+861,1578.12,0.633667,0.17232,0.004384,0.126976,0.006048,0.004192,0.006016,0.01856,0.006144
+862,1789.43,0.558838,0.178176,0.006144,0.131072,0.006144,0.004096,0.006144,0.019584,0.004992
+863,1472.06,0.679321,0.172192,0.005312,0.127744,0.005568,0.004864,0.005312,0.01888,0.004512
+864,1802.42,0.55481,0.181888,0.004576,0.137216,0.004096,0.005824,0.004416,0.02048,0.00528
+865,1019.03,0.981323,0.40192,0.007104,0.354336,0.006016,0.004192,0.005888,0.018688,0.005696
+866,1555.94,0.6427,0.172064,0.005728,0.125344,0.006144,0.005152,0.005088,0.019776,0.004832
+867,1836.36,0.544556,0.171584,0.004544,0.126688,0.005504,0.004896,0.005312,0.019264,0.005376
+868,1671.5,0.598267,0.1688,0.00496,0.12464,0.004384,0.005248,0.004992,0.01984,0.004736
+869,1595.02,0.626953,0.169216,0.005984,0.122816,0.005536,0.004768,0.005312,0.019424,0.005376
+870,1912.68,0.522827,0.401408,0.006016,0.355808,0.004768,0.005632,0.004608,0.020224,0.004352
+871,1319.16,0.758057,0.173088,0.005568,0.126944,0.004704,0.005792,0.004448,0.020384,0.005248
+872,1490,0.671143,0.170048,0.005792,0.1248,0.004576,0.005472,0.004768,0.020224,0.004416
+873,1555.64,0.642822,0.166048,0.005312,0.121056,0.004864,0.004096,0.006144,0.019616,0.00496
+874,2008.83,0.497803,0.170048,0.005472,0.123488,0.005536,0.004864,0.005984,0.018688,0.006016
+875,1680.76,0.594971,0.1664,0.004832,0.120832,0.0056,0.00464,0.005632,0.018944,0.00592
+876,972.229,1.02856,0.402496,0.007776,0.352672,0.006144,0.005856,0.004384,0.020448,0.005216
+877,1925.26,0.519409,0.171616,0.005312,0.12512,0.0048,0.0056,0.006016,0.019104,0.005664
+878,1401.54,0.713501,0.178048,0.005664,0.131552,0.006144,0.00528,0.00496,0.019776,0.004672
+879,1202.76,0.831421,0.198656,0.005504,0.152224,0.006112,0.00528,0.00496,0.019936,0.00464
+880,1307.58,0.764771,0.199392,0.004832,0.156672,0.00496,0.004256,0.004096,0.019552,0.005024
+881,1217.78,0.821167,0.233472,0.006016,0.188256,0.005536,0.004992,0.005344,0.018848,0.00448
+882,1567.25,0.638062,0.193152,0.005024,0.146464,0.005088,0.005312,0.004928,0.02048,0.005856
+883,902.6,1.10791,0.196608,0.005984,0.151424,0.005504,0.00496,0.005344,0.018752,0.00464
+884,1376.58,0.72644,0.199392,0.004832,0.1536,0.005632,0.004608,0.00544,0.019136,0.006144
+885,1380.29,0.724487,0.193728,0.005344,0.148256,0.006048,0.004192,0.005824,0.018752,0.005312
+886,868.349,1.15161,0.198432,0.008192,0.149504,0.005984,0.004256,0.00592,0.018656,0.00592
+887,1577.51,0.633911,0.177216,0.006144,0.130592,0.004576,0.005856,0.004384,0.020448,0.005216
+888,1927.53,0.518799,0.176448,0.004544,0.132224,0.004864,0.004096,0.006144,0.019616,0.00496
+889,1065.7,0.938354,0.382976,0.005504,0.336032,0.004576,0.005952,0.00592,0.018848,0.006144
+890,1973.98,0.506592,0.177568,0.004352,0.131104,0.006112,0.005216,0.005024,0.02048,0.00528
+891,1615.46,0.619019,0.190112,0.005408,0.144096,0.006144,0.004096,0.006144,0.018432,0.005792
+892,1727.18,0.578979,0.185632,0.006144,0.139264,0.005184,0.004896,0.005312,0.019424,0.005408
+893,1531.79,0.652832,0.18432,0.006048,0.1392,0.005536,0.004864,0.005312,0.018848,0.004512
+894,1375.88,0.726807,0.212992,0.006016,0.166016,0.006144,0.004096,0.006144,0.019744,0.004832
+895,899.034,1.1123,0.20496,0.006464,0.158816,0.005024,0.005344,0.004896,0.018432,0.005984
+896,1664.03,0.600952,0.182944,0.004928,0.138944,0.004384,0.005408,0.004832,0.018432,0.006016
+897,1515.63,0.65979,0.198656,0.00608,0.151616,0.005728,0.004512,0.005824,0.019776,0.00512
+898,1670.81,0.598511,0.198208,0.004576,0.1536,0.005824,0.004416,0.005792,0.018784,0.005216
+899,948.697,1.05408,0.400736,0.005984,0.354464,0.005408,0.004832,0.005376,0.0192,0.005472
+900,1430.67,0.698975,0.193952,0.00576,0.14784,0.005632,0.004608,0.006048,0.018528,0.005536
+901,1402.5,0.713013,0.234528,0.005312,0.189248,0.005728,0.004544,0.005696,0.018784,0.005216
+902,1387.77,0.720581,0.2416,0.006048,0.194688,0.00608,0.004128,0.006016,0.01856,0.00608
+903,1522.68,0.656738,0.204608,0.004608,0.159744,0.006048,0.004192,0.005984,0.018592,0.00544
+904,790.81,1.26453,0.179168,0.00704,0.13312,0.005568,0.004672,0.005504,0.01888,0.004384
+905,1817.62,0.550171,0.170112,0.00528,0.125088,0.004928,0.005536,0.004704,0.020064,0.004512
+906,1525.23,0.65564,0.175616,0.005664,0.129312,0.005536,0.004864,0.005408,0.0192,0.005632
+907,1995.62,0.501099,0.172064,0.005952,0.12512,0.006144,0.00544,0.0048,0.020064,0.004544
+908,1593.15,0.627686,0.408352,0.004896,0.363904,0.004736,0.005152,0.005088,0.019744,0.004832
+909,1303.21,0.767334,0.177504,0.005632,0.13104,0.00464,0.005824,0.005632,0.019264,0.005472
+910,1673.54,0.597534,0.186432,0.00544,0.140224,0.005824,0.004416,0.00576,0.018816,0.005952
+911,1428.42,0.700073,0.19632,0.005312,0.150336,0.005536,0.0048,0.005408,0.019168,0.00576
+912,1343.17,0.744507,0.198464,0.00608,0.1528,0.004928,0.004128,0.006048,0.018528,0.005952
+913,1802.02,0.554932,0.188032,0.005472,0.141504,0.004576,0.005856,0.004384,0.02048,0.00576
+914,783.099,1.27698,0.173632,0.008192,0.124928,0.005536,0.004704,0.005472,0.019104,0.005696
+915,1806.39,0.553589,0.167936,0.005984,0.121024,0.005952,0.004256,0.005984,0.018592,0.006144
+916,1803.61,0.554443,0.165888,0.005984,0.120256,0.004832,0.004096,0.006144,0.019648,0.004928
+917,1596.88,0.626221,0.165888,0.005856,0.119072,0.006144,0.004096,0.006144,0.019456,0.00512
+918,1916.26,0.521851,0.415776,0.005408,0.369088,0.004576,0.005824,0.00592,0.019008,0.005952
+919,1248.97,0.800659,0.165888,0.005664,0.119264,0.006144,0.004288,0.005952,0.019744,0.004832
+920,1773.93,0.563721,0.166176,0.004384,0.12288,0.004224,0.005664,0.004448,0.02032,0.004256
+921,1130.09,0.884888,0.192512,0.005632,0.14592,0.005856,0.004384,0.005824,0.018752,0.006144
+922,1485.94,0.672974,0.189024,0.004704,0.144896,0.004608,0.005696,0.004544,0.02032,0.004256
+923,1810.39,0.552368,0.176128,0.00544,0.13104,0.004832,0.005568,0.004672,0.020128,0.004448
+924,803.295,1.24487,0.17408,0.008224,0.126304,0.004736,0.004288,0.005952,0.019776,0.0048
+925,1736.33,0.575928,0.17728,0.005856,0.129312,0.005792,0.005632,0.00496,0.02,0.005728
+926,1670.13,0.598755,0.180768,0.00464,0.135168,0.005632,0.004608,0.00544,0.019136,0.006144
+927,1738.17,0.575317,0.178208,0.004736,0.132256,0.00496,0.005952,0.005312,0.019456,0.005536
+928,1230.21,0.812866,0.395264,0.005664,0.350208,0.004576,0.005216,0.005024,0.020192,0.004384
+929,1700.64,0.588013,0.172032,0.006144,0.12496,0.006112,0.004096,0.006144,0.02016,0.004416
+930,1609.11,0.62146,0.170528,0.00464,0.124928,0.00576,0.00448,0.005728,0.01888,0.006112
+931,1903.79,0.525269,0.172,0.006112,0.12496,0.00592,0.00432,0.005888,0.018688,0.006112
+932,1696.77,0.589355,0.173952,0.004576,0.128864,0.005568,0.00464,0.005568,0.019008,0.005728
+933,1666.4,0.600098,0.180096,0.004672,0.134976,0.005568,0.004864,0.005312,0.019264,0.00544
+934,972.344,1.02844,0.651264,0.005792,0.605728,0.004928,0.005472,0.004768,0.020064,0.004512
+935,1701,0.587891,0.170016,0.005472,0.124608,0.005088,0.005344,0.004896,0.018432,0.006176
+936,1620.25,0.617188,0.176128,0.005888,0.130592,0.004832,0.004096,0.006048,0.019744,0.004928
+937,1796.49,0.556641,0.173248,0.005504,0.1272,0.004512,0.005888,0.004352,0.02048,0.005312
+938,1534.94,0.651489,0.17616,0.006144,0.129024,0.005792,0.004448,0.005984,0.018592,0.006176
+939,1563.36,0.639648,0.17376,0.005472,0.127456,0.005536,0.004896,0.005376,0.0192,0.005824
+940,1722.09,0.580688,0.16832,0.00448,0.124352,0.004672,0.00512,0.00512,0.019744,0.004832
+941,1698.18,0.588867,0.164096,0.00464,0.118784,0.005792,0.004448,0.005664,0.018912,0.005856
+942,1879.76,0.531982,0.168256,0.004576,0.123904,0.00496,0.00544,0.0048,0.020128,0.004448
+943,1632.52,0.612549,0.17296,0.005024,0.126976,0.006144,0.005152,0.005088,0.019776,0.0048
+944,850.852,1.17529,0.68608,0.00576,0.63936,0.0056,0.00464,0.006144,0.01968,0.004896
+945,1701,0.587891,0.176928,0.004896,0.131072,0.006144,0.004096,0.006144,0.019552,0.005024
+946,1830.21,0.546387,0.176128,0.006144,0.130624,0.004544,0.005856,0.004384,0.020032,0.004544
+947,1736.33,0.575928,0.171296,0.005344,0.12544,0.005504,0.004928,0.00528,0.019424,0.005376
+948,1721.01,0.581055,0.176032,0.004576,0.130976,0.00544,0.0048,0.005472,0.019104,0.005664
+949,1773.93,0.563721,0.172544,0.004608,0.126976,0.006048,0.005472,0.004864,0.020032,0.004544
+950,1443.02,0.692993,0.172032,0.006144,0.12624,0.004832,0.005568,0.004672,0.020256,0.00432
+951,1807.19,0.553345,0.168736,0.004896,0.12288,0.006144,0.004096,0.006048,0.019552,0.00512
+952,1625.4,0.615234,0.17408,0.005632,0.128512,0.00512,0.005856,0.004384,0.019712,0.004864
+953,1845.05,0.541992,0.172192,0.005408,0.1256,0.005536,0.004928,0.005408,0.019168,0.006144
+954,1478.43,0.676392,0.176128,0.00608,0.131104,0.005536,0.004736,0.005504,0.018752,0.004416
+955,1227.08,0.814941,0.649248,0.006016,0.603328,0.005056,0.005376,0.004864,0.02,0.004608
+956,1233.18,0.810913,0.168096,0.006016,0.122912,0.004192,0.0056,0.00464,0.02032,0.004416
+957,1709.16,0.585083,0.175744,0.004416,0.130784,0.005536,0.004928,0.00416,0.02048,0.00544
+958,1844.63,0.542114,0.16512,0.005376,0.119456,0.005536,0.004864,0.004256,0.020416,0.005216
+959,1663.69,0.601074,0.176064,0.004416,0.1304,0.004768,0.005632,0.006048,0.01904,0.00576
+960,1803.61,0.554443,0.167968,0.005728,0.122688,0.004704,0.004096,0.006144,0.019616,0.004992
+961,1462.33,0.683838,0.166624,0.004832,0.122016,0.00496,0.00544,0.0048,0.019488,0.005088
+962,1824.09,0.548218,0.17456,0.004576,0.129024,0.005792,0.004448,0.006144,0.01968,0.004896
+963,1772.39,0.564209,0.167936,0.006016,0.12096,0.006144,0.005408,0.004832,0.020064,0.004512
+964,1633.17,0.612305,0.166784,0.004992,0.120832,0.005664,0.005696,0.005024,0.020064,0.004512
+965,1764.76,0.56665,0.17216,0.00528,0.127552,0.004576,0.005824,0.004352,0.019776,0.0048
+966,1638.4,0.610352,0.17008,0.005504,0.124896,0.004768,0.005632,0.004608,0.020256,0.004416
+967,821.418,1.21741,0.176992,0.007008,0.129024,0.006144,0.004128,0.006112,0.019648,0.004928
+968,983.788,1.01648,0.217088,0.005792,0.164192,0.013824,0.004608,0.005472,0.018688,0.004512
+969,1952.34,0.512207,0.178496,0.004416,0.13312,0.006144,0.004096,0.006144,0.019616,0.00496
+970,1618.65,0.617798,0.17008,0.005344,0.123744,0.006144,0.004256,0.005984,0.019936,0.004672
+971,1366.7,0.731689,0.166912,0.00512,0.122176,0.0048,0.005632,0.004608,0.02032,0.004256
+972,1880.19,0.53186,0.1712,0.006144,0.12496,0.005728,0.00448,0.005536,0.01904,0.005312
+973,1657.29,0.603394,0.169984,0.005568,0.123456,0.006144,0.005376,0.004864,0.020128,0.004448
+974,2006.86,0.498291,0.171872,0.0056,0.125344,0.005536,0.004832,0.00576,0.018816,0.005984
+975,1714.17,0.583374,0.167968,0.004768,0.12288,0.005248,0.004896,0.005312,0.01936,0.005504
+976,1129.31,0.885498,0.653152,0.006144,0.605792,0.005536,0.00512,0.005728,0.018848,0.005984
+977,1217.6,0.821289,0.169984,0.005472,0.123584,0.006112,0.004192,0.006048,0.019744,0.004832
+978,1995.62,0.501099,0.165664,0.004768,0.120832,0.005568,0.004672,0.005536,0.01904,0.005248
+979,1773.16,0.563965,0.170496,0.004608,0.124928,0.006048,0.004192,0.006016,0.020032,0.004672
+980,1729,0.578369,0.172032,0.005824,0.126624,0.004768,0.004288,0.005952,0.019968,0.004608
+981,1372.19,0.72876,0.172032,0.006112,0.12496,0.006048,0.004192,0.005984,0.020032,0.004704
+982,1294.97,0.772217,0.175264,0.006144,0.128224,0.004896,0.005504,0.004736,0.02048,0.00528
+983,1468.89,0.680786,0.16816,0.00432,0.12288,0.005728,0.004512,0.005984,0.019968,0.004768
+984,1676.97,0.596313,0.168928,0.005088,0.124704,0.004352,0.005216,0.004992,0.020288,0.004288
+985,1830.21,0.546387,0.17136,0.005344,0.125344,0.004544,0.005856,0.004384,0.02048,0.005408
+986,1618.65,0.617798,0.171936,0.005952,0.125024,0.005536,0.0048,0.005408,0.019168,0.006048
+987,892.666,1.12024,0.176128,0.008192,0.126976,0.00608,0.00416,0.006112,0.02,0.004608
+988,1934.36,0.516968,0.167936,0.006112,0.121984,0.004992,0.004128,0.00608,0.02,0.00464
+989,1740.39,0.574585,0.167296,0.00432,0.122048,0.004928,0.005248,0.004992,0.02048,0.00528
+990,1659.31,0.602661,0.169216,0.005312,0.122976,0.005024,0.005408,0.004832,0.020416,0.005248
+991,1639.06,0.610107,0.167552,0.006144,0.120512,0.005536,0.004864,0.004448,0.020288,0.00576
+992,1126.98,0.887329,0.387232,0.004544,0.3416,0.004416,0.005472,0.004768,0.02048,0.005952
+993,1888.43,0.529541,0.169184,0.005632,0.121344,0.006144,0.004096,0.006144,0.02048,0.005344
+994,1635.13,0.611572,0.171488,0.005856,0.123168,0.00576,0.00448,0.006144,0.02048,0.0056
+995,1878.47,0.532349,0.176064,0.006144,0.12832,0.0048,0.0056,0.00464,0.02048,0.00608
+996,1531.21,0.653076,0.176288,0.005056,0.13024,0.004928,0.004096,0.006112,0.020512,0.005344
+997,1792.17,0.557983,0.48128,0.006144,0.432128,0.007424,0.004864,0.005312,0.02064,0.004768
+998,907.098,1.10242,0.17744,0.00592,0.130816,0.004576,0.005856,0.004384,0.020416,0.005472
+999,1664.03,0.600952,0.175232,0.005856,0.128576,0.004832,0.005568,0.004672,0.02048,0.005248
+1000,1645.97,0.607544,0.171392,0.005696,0.125376,0.005728,0.004512,0.00592,0.018656,0.005504
+1001,1875.89,0.533081,0.18128,0.00608,0.13488,0.005568,0.004864,0.004256,0.020416,0.005216
+1002,1584.53,0.631104,0.171808,0.005664,0.12448,0.005024,0.00544,0.0048,0.02048,0.00592
+1003,1612.6,0.620117,0.175072,0.005088,0.128992,0.005536,0.004736,0.005504,0.020416,0.0048
+1004,1610.7,0.62085,0.170976,0.005088,0.124928,0.005888,0.004352,0.005696,0.02032,0.004704
+1005,1857.6,0.53833,0.169152,0.005952,0.121024,0.006144,0.005152,0.005088,0.02048,0.005312
+1006,1590.68,0.628662,0.177344,0.005504,0.130688,0.00512,0.005312,0.004928,0.02048,0.005312
+1007,1603.44,0.623657,0.171552,0.006176,0.124128,0.004864,0.005536,0.004704,0.02048,0.005664
+1008,1627.01,0.614624,0.170016,0.005792,0.123232,0.005568,0.004672,0.005568,0.020256,0.004928
+1009,911.032,1.09766,0.17664,0.006816,0.129024,0.00576,0.00448,0.005728,0.018848,0.005984
+1010,1926.62,0.519043,0.16912,0.005376,0.12176,0.006144,0.004096,0.006112,0.020416,0.005216
+1011,1719.2,0.581665,0.182368,0.005376,0.136032,0.005664,0.004576,0.005536,0.020416,0.004768
+1012,1741.13,0.574341,0.170944,0.005056,0.126016,0.004928,0.004224,0.005952,0.01984,0.004928
+1013,1543.33,0.647949,0.415744,0.005504,0.36928,0.00592,0.00432,0.005952,0.019872,0.004896
+1014,1288.66,0.776001,0.168256,0.004576,0.124096,0.004768,0.005632,0.004608,0.020352,0.004224
+1015,1765.52,0.566406,0.172128,0.00464,0.126464,0.004608,0.005792,0.005568,0.01936,0.005696
+1016,1266.35,0.789673,0.184224,0.005888,0.137472,0.005568,0.004672,0.005568,0.019008,0.006048
+1017,1731.19,0.577637,0.176704,0.004672,0.131072,0.005696,0.004544,0.005696,0.01888,0.006144
+1018,1902.02,0.525757,0.460608,0.006144,0.411648,0.00752,0.004768,0.00544,0.019136,0.005952
+1019,814.638,1.22754,0.173312,0.005696,0.126816,0.004704,0.005696,0.004544,0.02048,0.005376
+1020,1933.44,0.517212,0.172224,0.00464,0.126976,0.005344,0.004864,0.005344,0.019296,0.00576
+1021,804.399,1.24316,0.165952,0.005312,0.11936,0.005536,0.004928,0.005344,0.019328,0.006144
+1022,1418.28,0.705078,0.39728,0.006048,0.350304,0.005728,0.004512,0.005664,0.018912,0.006112
+1023,1238.96,0.807129,0.166464,0.004672,0.120832,0.005888,0.004352,0.005856,0.019872,0.004992
+1024,1775.85,0.56311,0.1664,0.004608,0.120832,0.005824,0.004416,0.006048,0.01984,0.004832
+1025,1594.39,0.627197,0.167424,0.004544,0.122016,0.00496,0.005536,0.004704,0.020448,0.005216
+1026,1913.12,0.522705,0.176128,0.00576,0.128576,0.004928,0.005472,0.004768,0.021856,0.004768
+1027,1395.33,0.716675,0.17408,0.006144,0.126976,0.006144,0.004256,0.005952,0.020096,0.004512
+1028,911.843,1.09668,0.174816,0.00688,0.126976,0.005792,0.004448,0.005696,0.020064,0.00496
+1029,1676.28,0.596558,0.174272,0.005024,0.128256,0.004864,0.005536,0.004704,0.02048,0.005408
+1030,1762.48,0.567383,0.174464,0.004576,0.128896,0.00608,0.00416,0.0056,0.020032,0.00512
+1031,1673.89,0.597412,0.175424,0.006144,0.126208,0.004864,0.005536,0.006464,0.020768,0.00544
+1032,1590.37,0.628784,0.167936,0.006144,0.120832,0.005184,0.004864,0.004288,0.021728,0.004896
+1033,1482.71,0.674438,0.174272,0.005312,0.127872,0.005568,0.0048,0.005408,0.020736,0.004576
+1034,1866.91,0.535645,0.177152,0.006144,0.128384,0.004736,0.006144,0.0056,0.020928,0.005216
+1035,1780.87,0.561523,0.176128,0.005824,0.128704,0.004736,0.005792,0.004448,0.02176,0.004864
+1036,1740.39,0.574585,0.16896,0.00608,0.120896,0.005792,0.004448,0.005632,0.020896,0.005216
+1037,1545.08,0.647217,0.174304,0.004288,0.126976,0.006144,0.004096,0.006144,0.02048,0.006176
+1038,926.487,1.07935,0.43376,0.00608,0.370752,0.006144,0.005184,0.004576,0.034496,0.006528
+1039,1113.95,0.897705,0.178848,0.005024,0.131072,0.006144,0.004096,0.006144,0.02048,0.005888
+1040,1747.07,0.572388,0.170816,0.00512,0.124288,0.004704,0.005248,0.004992,0.02048,0.005984
+1041,1745.95,0.572754,0.166048,0.004832,0.118784,0.005984,0.004256,0.005984,0.02064,0.005568
+1042,1746.32,0.572632,0.167936,0.005792,0.121024,0.005536,0.004864,0.005376,0.020992,0.004352
+1043,1288.05,0.776367,0.36992,0.00528,0.322304,0.005536,0.0048,0.005408,0.021216,0.005376
+1044,1561.57,0.640381,0.167936,0.005376,0.1216,0.005216,0.004864,0.005312,0.02096,0.004608
+1045,1944,0.514404,0.165504,0.005312,0.117728,0.006144,0.004256,0.005984,0.02048,0.0056
+1046,1757.94,0.568848,0.170592,0.00464,0.124928,0.005888,0.004384,0.005696,0.02064,0.004416
+1047,1639.38,0.609985,0.17104,0.005856,0.1232,0.005664,0.004544,0.0056,0.020672,0.005504
+1048,1826.53,0.547485,0.17392,0.005856,0.127168,0.004192,0.005664,0.004576,0.02048,0.005984
+1049,1169.95,0.854736,0.651424,0.00448,0.605376,0.004928,0.005472,0.004768,0.02048,0.00592
+1050,1287.24,0.776855,0.17408,0.005888,0.126688,0.00464,0.005824,0.00448,0.020416,0.006144
+1051,1642.67,0.608765,0.173248,0.00544,0.125632,0.006144,0.004096,0.006048,0.020576,0.005312
+1052,1885.39,0.530396,0.165984,0.005408,0.119616,0.005632,0.004608,0.005536,0.020288,0.004896
+1053,1610.38,0.620972,0.167136,0.005568,0.11936,0.006048,0.004192,0.005856,0.020768,0.005344
+1054,1320.65,0.757202,0.372736,0.006144,0.325632,0.0056,0.00464,0.005568,0.020768,0.004384
+1055,1570.85,0.636597,0.173376,0.005376,0.125856,0.005536,0.004768,0.005728,0.020896,0.005216
+1056,1544.79,0.647339,0.176768,0.004736,0.13104,0.004128,0.005856,0.004384,0.021696,0.004928
+1057,2070.26,0.483032,0.168096,0.005344,0.121696,0.005344,0.004928,0.004128,0.021984,0.004672
+1058,1645.31,0.607788,0.17712,0.005088,0.131008,0.005536,0.004768,0.00544,0.0208,0.00448
+1059,1140.15,0.877075,0.692096,0.006144,0.643072,0.006144,0.005376,0.004896,0.020448,0.006016
+1060,1094.02,0.914062,0.170528,0.00464,0.12448,0.004544,0.005664,0.004576,0.021568,0.005056
+1061,1065,0.938965,0.190464,0.00592,0.143584,0.005664,0.004576,0.005536,0.020832,0.004352
+1062,1710.94,0.584473,0.176128,0.006176,0.128832,0.005536,0.004864,0.005344,0.020736,0.00464
+1063,1798.86,0.555908,0.178112,0.004416,0.131072,0.006144,0.004096,0.006144,0.02048,0.00576
+1064,1298.46,0.770142,0.16736,0.006176,0.120384,0.004512,0.00528,0.004992,0.020448,0.005568
+1065,1854.23,0.539307,0.178176,0.0056,0.131616,0.005792,0.004448,0.005728,0.020384,0.004608
+1066,1798.86,0.555908,0.169952,0.005856,0.122976,0.005536,0.004864,0.005312,0.019296,0.006112
+1067,1731.92,0.577393,0.175648,0.005344,0.129376,0.004544,0.005472,0.004768,0.02048,0.005664
+1068,1733.76,0.576782,0.167968,0.00464,0.122784,0.004192,0.0056,0.00464,0.02048,0.005632
+1069,1113.19,0.898315,0.65872,0.005536,0.610912,0.006016,0.004224,0.006144,0.02048,0.005408
+1070,1329.65,0.752075,0.165984,0.00464,0.120416,0.005536,0.004896,0.00432,0.02048,0.005696
+1071,1794.13,0.557373,0.171072,0.005504,0.12352,0.005696,0.005728,0.00496,0.020448,0.005216
+1072,1634.15,0.611938,0.17648,0.004864,0.1304,0.004768,0.005824,0.004416,0.02048,0.005728
+1073,1653.95,0.604614,0.17696,0.00496,0.13104,0.006144,0.004096,0.006144,0.020096,0.00448
+1074,1646.63,0.6073,0.17072,0.004832,0.126016,0.005056,0.005376,0.004864,0.020352,0.004224
+1075,1463.38,0.68335,0.172032,0.005696,0.125376,0.006144,0.004096,0.00608,0.020096,0.004544
+1076,1637.42,0.610718,0.170272,0.004576,0.124736,0.005312,0.004864,0.006112,0.019968,0.004704
+1077,2090.33,0.478394,0.169376,0.005824,0.122784,0.004512,0.00592,0.00432,0.02048,0.005536
+1078,1714.52,0.583252,0.173216,0.006016,0.12656,0.00464,0.005728,0.004512,0.02048,0.00528
+1079,1558.01,0.641846,0.170304,0.004416,0.126112,0.00496,0.00544,0.0048,0.020352,0.004224
+1080,1208.62,0.827393,0.658528,0.006144,0.610304,0.006144,0.005696,0.004544,0.02048,0.005216
+1081,1270.47,0.787109,0.17408,0.005536,0.127584,0.006144,0.005312,0.004928,0.02016,0.004416
+1082,1747.07,0.572388,0.179936,0.005728,0.133504,0.005504,0.004768,0.005472,0.019104,0.005856
+1083,1774.31,0.563599,0.176128,0.005792,0.129408,0.00576,0.004448,0.006048,0.019872,0.0048
+1084,1665.04,0.600586,0.16416,0.004832,0.118784,0.0056,0.00464,0.005376,0.0192,0.005728
+1085,946.724,1.05627,0.181056,0.004928,0.135168,0.006144,0.005216,0.005024,0.019456,0.00512
+1086,1550.05,0.645142,0.20224,0.006144,0.155232,0.005536,0.00512,0.005568,0.019008,0.005632
+1087,1718.48,0.581909,0.182272,0.005664,0.135648,0.00576,0.00448,0.005728,0.018848,0.006144
+1088,1792.56,0.557861,0.18752,0.005472,0.139936,0.005632,0.004608,0.006144,0.02048,0.005248
+1089,1467.84,0.681274,0.195744,0.00608,0.14752,0.005696,0.004544,0.005664,0.02096,0.00528
+1090,1669.45,0.598999,0.182272,0.005504,0.13584,0.006048,0.00416,0.006016,0.019744,0.00496
+1091,1013.86,0.986328,0.403456,0.007744,0.354784,0.00592,0.004288,0.006016,0.019808,0.004896
+1092,1887.99,0.529663,0.171008,0.005664,0.125408,0.004256,0.005664,0.004416,0.020384,0.005216
+1093,1708.45,0.585327,0.174272,0.00464,0.128896,0.005536,0.004832,0.005376,0.0192,0.005792
+1094,1767.8,0.565674,0.169312,0.005984,0.122688,0.005568,0.004832,0.005344,0.019424,0.005472
+1095,1646.63,0.6073,0.170144,0.005056,0.124352,0.004672,0.00576,0.00448,0.02048,0.005344
+1096,1380.05,0.724609,0.170944,0.005056,0.126464,0.00464,0.005152,0.005056,0.02,0.004576
+1097,1790.6,0.558472,0.168256,0.004416,0.12288,0.006112,0.004128,0.00608,0.01968,0.00496
+1098,1633.5,0.612183,0.176128,0.006112,0.129056,0.006144,0.004096,0.00608,0.01968,0.00496
+1099,1772.39,0.564209,0.167936,0.005312,0.121696,0.006112,0.004352,0.005888,0.019968,0.004608
+1100,1482.71,0.674438,0.180224,0.006144,0.135168,0.005152,0.004832,0.004352,0.019936,0.00464
+1101,1734.86,0.576416,0.171456,0.005856,0.125216,0.005888,0.004352,0.005856,0.01872,0.005568
+1102,728.307,1.37305,0.174208,0.008192,0.126976,0.005568,0.004672,0.005504,0.018912,0.004384
+1103,1793.34,0.557617,0.18128,0.006112,0.133152,0.005664,0.004576,0.006144,0.020384,0.005248
+1104,1616.42,0.618652,0.17408,0.005984,0.127136,0.005856,0.004384,0.005856,0.01872,0.006144
+1105,1573.87,0.635376,0.169984,0.005536,0.123488,0.006144,0.004256,0.005984,0.019584,0.004992
+1106,1435.18,0.696777,0.36736,0.004864,0.322848,0.004832,0.005664,0.004576,0.01968,0.004896
+1107,1639.06,0.610107,0.170752,0.00496,0.124928,0.005984,0.004256,0.005888,0.01872,0.006016
+1108,705.72,1.41699,0.167872,0.005568,0.12288,0.004672,0.00512,0.00512,0.018432,0.00608
+1109,544.066,1.83801,0.704384,0.005312,0.658304,0.005792,0.004448,0.00576,0.018848,0.00592
+1110,1589.14,0.629272,0.186272,0.0048,0.140992,0.005536,0.004832,0.005344,0.019424,0.005344
+1111,1513.39,0.660767,0.186784,0.00448,0.141312,0.006144,0.00528,0.00496,0.020224,0.004384
+1112,1637.74,0.610596,0.175488,0.005344,0.129856,0.005312,0.004896,0.005312,0.019296,0.005472
+1113,1795.31,0.557007,0.180736,0.004704,0.135168,0.005728,0.004512,0.005728,0.018848,0.006048
+1114,1444.54,0.692261,0.169792,0.005664,0.12336,0.005728,0.004512,0.00576,0.018816,0.005952
+1115,1875.46,0.533203,0.169792,0.004416,0.1248,0.005536,0.004832,0.005408,0.019168,0.005632
+1116,1765.9,0.566284,0.165088,0.005504,0.119424,0.005312,0.004864,0.005216,0.019424,0.005344
+1117,1577.51,0.633911,0.175328,0.006048,0.12896,0.005504,0.004896,0.005152,0.019424,0.005344
+1118,1853.39,0.539551,0.16992,0.004832,0.123936,0.005088,0.005312,0.006016,0.019392,0.005344
+1119,1799.25,0.555786,0.166784,0.004992,0.121856,0.00512,0.005344,0.004896,0.019872,0.004704
+1120,1065,0.938965,0.651264,0.006144,0.60416,0.006144,0.005536,0.004704,0.02016,0.004416
+1121,1333.12,0.750122,0.169984,0.005632,0.123392,0.006144,0.005184,0.005056,0.01984,0.004736
+1122,1821.25,0.549072,0.17632,0.004928,0.13008,0.005088,0.006144,0.005344,0.019232,0.005504
+1123,1643.99,0.608276,0.169984,0.006144,0.12288,0.006144,0.005184,0.005056,0.019968,0.004608
+1124,1560.08,0.640991,0.1664,0.004608,0.122112,0.004864,0.004096,0.005952,0.018624,0.006144
+1125,1673.2,0.597656,0.165344,0.004544,0.120832,0.005696,0.004544,0.005696,0.01888,0.005152
+1126,1762.1,0.567505,0.175712,0.005376,0.129632,0.005536,0.004864,0.005376,0.019392,0.005536
+1127,1756.43,0.569336,0.170016,0.006144,0.12288,0.005632,0.004608,0.006144,0.019808,0.0048
+1128,1770.1,0.564941,0.16384,0.005632,0.119232,0.00416,0.005408,0.004832,0.020128,0.004448
+1129,1653.61,0.604736,0.180288,0.00528,0.135552,0.00464,0.00528,0.00496,0.019872,0.004704
+1130,1719.56,0.581543,0.16896,0.005312,0.123264,0.004544,0.005856,0.004384,0.020384,0.005216
+1131,770.577,1.29773,0.177312,0.00752,0.129696,0.006048,0.004192,0.00576,0.018816,0.00528
+1132,1307.16,0.765015,0.180352,0.004928,0.136512,0.0048,0.004064,0.006144,0.018432,0.005472
+1133,1630.25,0.613403,0.193888,0.0056,0.147776,0.005568,0.004864,0.005312,0.019296,0.005472
+1134,1902.02,0.525757,0.18352,0.006144,0.136928,0.005536,0.004864,0.005312,0.019392,0.005344
+1135,1182.45,0.845703,0.381312,0.004544,0.335872,0.005792,0.004448,0.005824,0.018752,0.00608
+1136,1579.64,0.633057,0.182496,0.004576,0.137024,0.005888,0.004352,0.005856,0.018752,0.006048
+1137,1921.2,0.520508,0.169408,0.005344,0.12352,0.005536,0.004896,0.005344,0.019328,0.00544
+1138,1794.92,0.557129,0.168512,0.004672,0.12288,0.006144,0.004128,0.00608,0.019584,0.005024
+1139,1714.88,0.58313,0.179456,0.005888,0.13296,0.005536,0.004864,0.004352,0.02048,0.005376
+1140,1638.07,0.610474,0.172032,0.005728,0.127264,0.004224,0.0056,0.00464,0.018432,0.006144
+1141,820.02,1.21948,0.175584,0.007744,0.127424,0.006144,0.004128,0.006112,0.018432,0.0056
+1142,1714.52,0.583252,0.177824,0.005344,0.131936,0.005696,0.004512,0.005632,0.018944,0.00576
+1143,1799.65,0.555664,0.17408,0.005856,0.128768,0.00464,0.005632,0.004608,0.020192,0.004384
+1144,1716.32,0.582642,0.16832,0.004608,0.123936,0.00496,0.004224,0.00608,0.018496,0.006016
+1145,1690.47,0.591553,0.177248,0.005792,0.129376,0.006144,0.005792,0.004448,0.020448,0.005248
+1146,1378.66,0.725342,0.166528,0.004736,0.120832,0.005504,0.004736,0.006144,0.019712,0.004864
+1147,1815.6,0.550781,0.17408,0.005472,0.127648,0.006144,0.005152,0.005088,0.01984,0.004736
+1148,1625.72,0.615112,0.167936,0.005984,0.122304,0.004832,0.0056,0.00464,0.02032,0.004256
+1149,1303.63,0.76709,0.17472,0.004704,0.13008,0.005088,0.005248,0.004992,0.01968,0.004928
+1150,1874.6,0.533447,0.173152,0.00592,0.12672,0.004576,0.005824,0.004416,0.02048,0.005216
+1151,1335.72,0.748657,0.45712,0.004544,0.411008,0.006752,0.00544,0.0048,0.020064,0.004512
+1152,1080.17,0.925781,0.167936,0.005952,0.121024,0.005568,0.004672,0.006144,0.019744,0.004832
+1153,1699.59,0.588379,0.177184,0.005888,0.130816,0.004608,0.005824,0.00448,0.02032,0.005248
+1154,1759.83,0.568237,0.169984,0.005888,0.123136,0.006144,0.005152,0.005088,0.019584,0.004992
+1155,1940.77,0.515259,0.169952,0.005312,0.123712,0.00592,0.00432,0.00592,0.018656,0.006112
+1156,1126.05,0.888062,0.37584,0.00528,0.330592,0.004192,0.005664,0.00448,0.020416,0.005216
+1157,1938.93,0.515747,0.175648,0.005312,0.1296,0.005536,0.00496,0.004256,0.02048,0.005504
+1158,1505.61,0.664185,0.175104,0.005568,0.129088,0.004608,0.005792,0.004448,0.020384,0.005216
+1159,1970.18,0.507568,0.17184,0.0056,0.125472,0.005824,0.004416,0.00576,0.018816,0.005952
+1160,1569.95,0.636963,0.177568,0.005728,0.131488,0.005376,0.004832,0.005344,0.019264,0.005536
+1161,1428.17,0.700195,0.180224,0.005536,0.133728,0.006144,0.005248,0.004992,0.02016,0.004416
+1162,844.275,1.18445,0.1792,0.008192,0.129024,0.005728,0.004512,0.006144,0.020384,0.005216
+1163,1679.72,0.595337,0.172064,0.005376,0.125696,0.006144,0.005312,0.004928,0.020032,0.004576
+1164,1938.02,0.515991,0.174048,0.004896,0.129024,0.004096,0.005664,0.004576,0.020352,0.00544
+1165,1555.94,0.6427,0.169984,0.005696,0.12448,0.004992,0.005472,0.004768,0.020096,0.00448
+1166,1614.82,0.619263,0.169056,0.005344,0.123296,0.004576,0.006144,0.005472,0.01872,0.005504
+1167,1335.51,0.748779,0.171488,0.005696,0.124928,0.004544,0.005888,0.00448,0.020352,0.0056
+1168,1782.03,0.561157,0.170016,0.005664,0.124992,0.004512,0.00512,0.00512,0.019712,0.004896
+1169,1673.2,0.597656,0.172128,0.005568,0.126784,0.004864,0.005568,0.004672,0.020288,0.004384
+1170,1765.14,0.566528,0.176128,0.005536,0.129632,0.006144,0.005248,0.004992,0.019872,0.004704
+1171,1534.37,0.651733,0.173216,0.005536,0.125536,0.005824,0.004448,0.006112,0.02048,0.00528
+1172,1104.49,0.905396,0.6472,0.005344,0.600896,0.006048,0.005536,0.0048,0.02,0.004576
+1173,1274.62,0.784546,0.172512,0.004576,0.128416,0.004704,0.005728,0.004512,0.019712,0.004864
+1174,2181.62,0.458374,0.171168,0.005312,0.12544,0.005536,0.004896,0.004256,0.02048,0.005248
+1175,1564.25,0.639282,0.17776,0.005888,0.13088,0.004544,0.006144,0.005536,0.01904,0.005728
+1176,1694.66,0.590088,0.171872,0.00608,0.125024,0.005696,0.004512,0.005856,0.01872,0.005984
+1177,1386.13,0.721436,0.3912,0.004192,0.347168,0.004992,0.005472,0.004768,0.020064,0.004544
+1178,1700.64,0.588013,0.168704,0.004864,0.124608,0.005536,0.00464,0.00448,0.019904,0.004672
+1179,1458.17,0.685791,0.184128,0.004864,0.139296,0.005856,0.004384,0.005824,0.018752,0.005152
+1180,1859.28,0.537842,0.1784,0.00464,0.1328,0.004416,0.005408,0.0064,0.018912,0.005824
+1181,1512.83,0.661011,0.186368,0.006144,0.139264,0.006144,0.004096,0.006144,0.01968,0.004896
+1182,1913.12,0.522705,0.4608,0.005824,0.413152,0.007008,0.004096,0.006144,0.01968,0.004896
+1183,893.543,1.11914,0.181344,0.006144,0.13488,0.005536,0.004864,0.004224,0.02048,0.005216
+1184,1751.18,0.571045,0.171648,0.005952,0.12448,0.004736,0.004096,0.007552,0.019072,0.00576
+1185,1641.68,0.609131,0.169472,0.005344,0.12368,0.005664,0.004576,0.00544,0.019136,0.005632
+1186,1924.81,0.519531,0.17408,0.005344,0.127776,0.006144,0.004128,0.00608,0.01952,0.005088
+1187,1688.03,0.592407,0.168192,0.00448,0.12288,0.005856,0.004384,0.005824,0.018752,0.006016
+1188,1282.61,0.779663,0.165888,0.005632,0.121024,0.004416,0.005376,0.004864,0.020032,0.004544
+1189,1747.07,0.572388,0.170496,0.00496,0.124608,0.005536,0.005024,0.005536,0.01904,0.005792
+1190,1946.77,0.513672,0.174112,0.004992,0.128992,0.005632,0.004608,0.005408,0.019168,0.005312
+1191,753.981,1.32629,0.171872,0.005312,0.12592,0.005344,0.004864,0.0056,0.019008,0.005824
+1192,1871.17,0.534424,0.1848,0.004576,0.141184,0.004224,0.005536,0.004704,0.018656,0.00592
+1193,778.189,1.28503,0.182272,0.008032,0.13504,0.005536,0.00496,0.00544,0.01888,0.004384
+1194,1762.86,0.567261,0.182816,0.00512,0.137184,0.005696,0.004544,0.005504,0.019072,0.005696
+1195,1741.13,0.574341,0.173728,0.005568,0.127552,0.005632,0.004608,0.005632,0.018976,0.00576
+1196,1834.3,0.545166,0.171488,0.006144,0.12496,0.005696,0.004512,0.005664,0.018912,0.0056
+1197,1251.26,0.799194,0.390976,0.004768,0.345952,0.005536,0.004896,0.005216,0.019328,0.00528
+1198,1709.87,0.584839,0.173408,0.005664,0.127328,0.005568,0.0048,0.005344,0.019232,0.005472
+1199,1755.3,0.569702,0.173696,0.006144,0.126816,0.005536,0.004864,0.005344,0.019232,0.00576
+1200,1717.04,0.582397,0.170784,0.004896,0.126848,0.004224,0.005472,0.004768,0.020096,0.00448
+1201,1595.64,0.626709,0.177504,0.005344,0.131616,0.005536,0.0048,0.00432,0.02048,0.005408
+1202,966.266,1.03491,0.188736,0.004416,0.145408,0.005728,0.004512,0.005696,0.018688,0.004288
+1203,1276.01,0.783691,0.190048,0.008096,0.141376,0.005536,0.004736,0.005568,0.019008,0.005728
+1204,1788.65,0.559082,0.170176,0.004384,0.126624,0.004352,0.005472,0.004736,0.02,0.004608
+1205,1568.15,0.637695,0.178752,0.004928,0.13312,0.005664,0.004576,0.005728,0.018848,0.005888
+1206,1822.47,0.548706,0.171168,0.006144,0.124608,0.005536,0.004864,0.005312,0.019424,0.00528
+1207,1409.98,0.709229,0.172352,0.004576,0.126816,0.006144,0.004096,0.006144,0.019712,0.004864
+1208,1719.56,0.581543,0.17408,0.005984,0.128288,0.004896,0.004192,0.006048,0.018528,0.006144
+1209,1623.14,0.616089,0.183616,0.005792,0.137568,0.005536,0.004704,0.005312,0.019264,0.00544
+1210,1695.01,0.589966,0.176128,0.00608,0.130368,0.004864,0.005568,0.004672,0.020128,0.004448
+1211,1532.93,0.652344,0.178176,0.0056,0.132832,0.004928,0.005472,0.004768,0.019968,0.004608
+1212,1748.56,0.571899,0.182112,0.006112,0.1352,0.005856,0.004384,0.005792,0.018784,0.005984
+1213,1384.02,0.722534,0.491168,0.005312,0.4,0.034592,0.021024,0.005344,0.019232,0.005664
+1214,939.019,1.06494,0.201952,0.006112,0.15568,0.006048,0.004192,0.005984,0.018592,0.005344
+1215,1883.22,0.531006,0.178176,0.005728,0.131488,0.00608,0.00416,0.00608,0.018496,0.006144
+1216,1619.61,0.617432,0.208704,0.004768,0.163872,0.00528,0.004864,0.005216,0.019424,0.00528
+1217,1654.62,0.60437,0.184064,0.005696,0.137376,0.005536,0.005024,0.005568,0.019008,0.005856
+1218,1301.35,0.768433,0.37584,0.005696,0.329696,0.004576,0.005888,0.004352,0.020416,0.005216
+1219,1729.36,0.578247,0.172032,0.005632,0.12544,0.006048,0.004224,0.006048,0.019552,0.005088
+1220,1549.46,0.645386,0.167936,0.005984,0.122624,0.004512,0.00528,0.00496,0.019808,0.004768
+1221,1913.12,0.522705,0.177248,0.006144,0.131072,0.005856,0.004384,0.004096,0.02048,0.005216
+1222,1623.14,0.616089,0.174592,0.004608,0.129024,0.006144,0.005248,0.004992,0.019808,0.004768
+1223,1450.17,0.689575,0.17408,0.005856,0.127264,0.006144,0.004096,0.006144,0.019552,0.005024
+1224,501.684,1.99329,0.4352,0.008064,0.385152,0.006144,0.005824,0.004448,0.020352,0.005216
+1225,1500.92,0.66626,0.187712,0.006144,0.140768,0.00464,0.005824,0.004416,0.02048,0.00544
+1226,1697.47,0.589111,0.176768,0.004864,0.13088,0.005536,0.004896,0.005376,0.0192,0.006016
+1227,1161.99,0.860596,0.173984,0.00464,0.129024,0.00608,0.00416,0.00608,0.018496,0.005504
+1228,1652.95,0.60498,0.192512,0.006112,0.146656,0.004928,0.004096,0.00608,0.018496,0.006144
+1229,1685.25,0.593384,0.18432,0.00576,0.138848,0.004896,0.005504,0.004736,0.02016,0.004416
+1230,1796.1,0.556763,0.17936,0.005792,0.134624,0.004928,0.00416,0.006016,0.01856,0.00528
+1231,1558.9,0.641479,0.1816,0.00608,0.135232,0.005344,0.004864,0.005312,0.019296,0.005472
+1232,1606.9,0.622314,0.245376,0.005344,0.1832,0.02064,0.005664,0.004416,0.020416,0.005696
+1233,609.207,1.64148,0.178176,0.00752,0.129728,0.006016,0.004192,0.006016,0.01856,0.006144
+1234,1727.91,0.578735,0.17568,0.005664,0.129504,0.005536,0.004768,0.005376,0.0192,0.005632
+1235,1618.97,0.617676,0.179744,0.005344,0.133792,0.005536,0.004832,0.005248,0.019328,0.005664
+1236,1988.83,0.502808,0.183296,0.005536,0.13904,0.004384,0.00464,0.004256,0.020224,0.005216
+1237,1197.66,0.834961,0.180256,0.005312,0.133984,0.005632,0.004608,0.0056,0.018976,0.006144
+1238,1453.77,0.687866,0.180384,0.005056,0.134144,0.00512,0.005312,0.006048,0.01936,0.005344
+1239,1992.7,0.501831,0.174048,0.004544,0.128416,0.004576,0.005888,0.005728,0.019104,0.005792
+1240,1601.56,0.62439,0.194784,0.004992,0.149504,0.00528,0.004928,0.005312,0.019296,0.005472
+1241,1596.57,0.626343,0.180224,0.004576,0.135168,0.006144,0.004096,0.006144,0.018432,0.005664
+1242,809.086,1.23596,0.21088,0.008192,0.161792,0.006144,0.004192,0.006048,0.018432,0.00608
+1243,1604.39,0.623291,0.20704,0.004576,0.161472,0.005536,0.005024,0.005696,0.01888,0.005856
+1244,1342.29,0.744995,0.22016,0.005152,0.1752,0.004928,0.00416,0.006016,0.019584,0.00512
+1245,930.486,1.07471,0.211808,0.00496,0.165888,0.006144,0.004096,0.006112,0.019552,0.005056
+1246,1308.21,0.764404,0.20016,0.005664,0.15408,0.00592,0.00432,0.005888,0.018688,0.0056
+1247,1497.9,0.667603,0.18144,0.005856,0.135456,0.005888,0.004352,0.005856,0.01872,0.005312
+1248,1915.36,0.522095,0.181536,0.005376,0.135968,0.004128,0.005952,0.005344,0.019392,0.005376
+1249,1428.67,0.699951,0.206528,0.005376,0.15856,0.006144,0.005184,0.005056,0.02048,0.005728
+1250,1659.98,0.602417,0.182336,0.00608,0.13728,0.005568,0.004672,0.005536,0.018816,0.004384
+1251,1663.35,0.601196,0.176128,0.005536,0.129632,0.006144,0.004096,0.006144,0.01968,0.004896
+1252,1192.78,0.838379,0.65536,0.006144,0.608256,0.005984,0.005536,0.004864,0.020128,0.004448
+1253,1300.94,0.768677,0.178464,0.004384,0.13424,0.005024,0.005408,0.004832,0.020128,0.004448
+1254,1775.47,0.563232,0.180896,0.004736,0.135168,0.00592,0.00432,0.005888,0.018688,0.006176
+1255,1567.55,0.637939,0.17952,0.005568,0.13344,0.005536,0.004896,0.005312,0.019328,0.00544
+1256,1339.44,0.746582,0.174144,0.004576,0.130336,0.004704,0.004096,0.006144,0.018432,0.005856
+1257,1902.9,0.525513,0.18448,0.00464,0.138688,0.004672,0.005792,0.00592,0.019008,0.00576
+1258,1436.94,0.695923,0.176608,0.004576,0.130496,0.004672,0.005728,0.006528,0.019488,0.00512
+1259,1725.36,0.57959,0.178496,0.004384,0.134336,0.004928,0.005536,0.004704,0.020192,0.004416
+1260,1856.33,0.538696,0.18064,0.004544,0.135136,0.005184,0.004864,0.005344,0.019424,0.006144
+1261,1439.21,0.694824,0.182272,0.006112,0.136544,0.0048,0.005664,0.004576,0.02032,0.004256
+1262,697.904,1.43286,0.198656,0.007808,0.151104,0.004928,0.005984,0.005312,0.018944,0.004576
+1263,1509.21,0.662598,0.188928,0.004576,0.145344,0.005536,0.004704,0.005568,0.018784,0.004416
+1264,1191.91,0.838989,0.26816,0.005984,0.221344,0.005888,0.004352,0.005856,0.01872,0.006016
+1265,1754.55,0.569946,0.42384,0.005696,0.37728,0.005632,0.00464,0.0056,0.018944,0.006048
+1266,1101.22,0.908081,0.173504,0.005408,0.127712,0.006112,0.004128,0.00608,0.018496,0.005568
+1267,947.929,1.05493,0.17408,0.005376,0.129184,0.004704,0.005696,0.004544,0.02,0.004576
+1268,1494.62,0.669067,0.199616,0.005056,0.155648,0.00512,0.004864,0.004352,0.019616,0.00496
+1269,1572.06,0.636108,0.210912,0.00464,0.165888,0.006144,0.004128,0.006112,0.018432,0.005568
+1270,1111.99,0.899292,0.661376,0.005536,0.615008,0.005888,0.004352,0.005824,0.018752,0.006016
+1271,1288.25,0.776245,0.185184,0.00496,0.140448,0.00496,0.00544,0.0048,0.02016,0.004416
+1272,1524.94,0.655762,0.180224,0.005696,0.135104,0.004608,0.005216,0.005024,0.020192,0.004384
+1273,1397.24,0.715698,0.183584,0.005696,0.137664,0.005696,0.004544,0.005664,0.018912,0.005408
+1274,1782.81,0.560913,0.173472,0.006176,0.130048,0.004192,0.004896,0.004192,0.018432,0.005536
+1275,1339.22,0.746704,0.177536,0.006048,0.131168,0.00608,0.00416,0.006048,0.018528,0.005504
+1276,1832.25,0.545776,0.17088,0.004864,0.126976,0.004224,0.005664,0.004448,0.020288,0.004416
+1277,1732.29,0.577271,0.167936,0.006144,0.120832,0.006016,0.004224,0.005952,0.018624,0.006144
+1278,1571.76,0.63623,0.17408,0.006112,0.128928,0.005536,0.004832,0.005344,0.01872,0.004608
+1279,1842.97,0.542603,0.174304,0.0048,0.129024,0.005632,0.004608,0.0056,0.018976,0.005664
+1280,1064.31,0.939575,0.667616,0.008128,0.617856,0.0048,0.006144,0.00544,0.019136,0.006112
+1281,1162.48,0.860229,0.180224,0.005504,0.135744,0.005536,0.004768,0.00544,0.019008,0.004224
+1282,1960.28,0.510132,0.180128,0.005312,0.134048,0.005728,0.004512,0.005728,0.018848,0.005952
+1283,1678.69,0.595703,0.17248,0.004544,0.128256,0.004864,0.005568,0.004672,0.020192,0.004384
+1284,1717.4,0.582275,0.173632,0.006144,0.126976,0.005408,0.004832,0.005472,0.019104,0.005696
+1285,1211.48,0.825439,0.387072,0.006144,0.341824,0.005536,0.004896,0.005344,0.018752,0.004576
+1286,1580.25,0.632812,0.177344,0.005344,0.131968,0.005728,0.004512,0.005664,0.018912,0.005216
+1287,1672.52,0.5979,0.180256,0.0048,0.134848,0.005536,0.004864,0.005376,0.01936,0.005472
+1288,2091.4,0.478149,0.173888,0.004672,0.129024,0.005216,0.004864,0.005312,0.019424,0.005376
+1289,1434.93,0.696899,0.180224,0.005792,0.13456,0.005056,0.00544,0.0048,0.01856,0.006016
+1290,960.263,1.04138,0.239424,0.004704,0.19456,0.005952,0.004288,0.005984,0.018624,0.005312
+1291,1016.13,0.984131,0.25824,0.007424,0.209856,0.006144,0.005152,0.005088,0.019872,0.004704
+1292,1888.86,0.529419,0.178176,0.005632,0.132992,0.004736,0.004096,0.006144,0.02016,0.004416
+1293,1773.54,0.563843,0.172032,0.005344,0.125728,0.0056,0.00464,0.006048,0.019744,0.004928
+1294,1593.15,0.627686,0.175744,0.00576,0.129408,0.006144,0.004096,0.005952,0.018624,0.00576
+1295,1342.29,0.744995,0.37696,0.004672,0.331776,0.005568,0.004672,0.005504,0.019072,0.005696
+1296,1307.79,0.764648,0.208896,0.005536,0.164448,0.005376,0.004864,0.005344,0.01872,0.004608
+1297,1675.6,0.596802,0.23056,0.005664,0.182752,0.006144,0.00576,0.005536,0.019424,0.00528
+1298,1439.47,0.694702,0.194368,0.006144,0.147456,0.00592,0.00432,0.00592,0.018656,0.005952
+1299,1659.64,0.602539,0.19456,0.005696,0.147904,0.006144,0.004096,0.006144,0.019584,0.004992
+1300,1538.4,0.650024,0.253152,0.005824,0.207168,0.005664,0.004576,0.0056,0.018976,0.005344
+1301,626.587,1.59595,0.190496,0.006592,0.143392,0.006048,0.00416,0.006048,0.018528,0.005728
+1302,1787.09,0.55957,0.179808,0.006144,0.13264,0.004576,0.005824,0.00592,0.018976,0.005728
+1303,1643.99,0.608276,0.182592,0.0048,0.137216,0.005568,0.004672,0.005568,0.019008,0.00576
+1304,1492.98,0.6698,0.431328,0.006112,0.385056,0.005152,0.004896,0.005344,0.019424,0.005344
+1305,1334.85,0.749146,0.18624,0.005984,0.138976,0.004576,0.00592,0.005952,0.018816,0.006016
+1306,1434.17,0.697266,0.171712,0.004544,0.126848,0.005952,0.004288,0.005984,0.018592,0.005504
+1307,1541.01,0.648926,0.188416,0.00608,0.142848,0.004672,0.00576,0.00448,0.02032,0.004256
+1308,1503.95,0.664917,0.21296,0.005504,0.168384,0.004288,0.005536,0.004704,0.018432,0.006112
+1309,1558.9,0.641479,0.191104,0.004736,0.146784,0.004768,0.005696,0.004544,0.019552,0.005024
+1310,560.865,1.78296,0.186368,0.007904,0.138816,0.004832,0.0056,0.00464,0.01856,0.006016
+1311,1225.8,0.815796,0.203936,0.00576,0.15808,0.005856,0.004384,0.005824,0.018752,0.00528
+1312,2025.22,0.493774,0.17616,0.00544,0.131776,0.005184,0.004928,0.005344,0.018848,0.00464
+1313,1271.26,0.786621,0.178176,0.005728,0.133312,0.005536,0.004896,0.005344,0.018912,0.004448
+1314,1562.17,0.640137,0.193536,0.00512,0.149344,0.005536,0.004864,0.005344,0.018624,0.004704
+1315,1644.32,0.608154,0.188416,0.005952,0.141504,0.006144,0.00416,0.00608,0.019584,0.004992
+1316,1515.07,0.660034,0.188736,0.004576,0.14528,0.005312,0.004864,0.005344,0.018816,0.004544
+1317,1665.04,0.600586,0.1992,0.00464,0.155648,0.005632,0.004608,0.005632,0.018784,0.004256
+1318,1552.4,0.644165,0.44032,0.00608,0.390976,0.008448,0.004096,0.006144,0.019552,0.005024
+1319,950.458,1.05212,0.200704,0.00608,0.154912,0.004896,0.005568,0.004672,0.019616,0.00496
+1320,1493.26,0.669678,0.225344,0.006016,0.180352,0.005696,0.004544,0.005632,0.018688,0.004416
+1321,1408.77,0.709839,0.214272,0.004352,0.169376,0.004704,0.005792,0.004448,0.020384,0.005216
+1322,1698.88,0.588623,0.194048,0.006016,0.147584,0.006144,0.004096,0.006144,0.018432,0.005632
+1323,1330.95,0.751343,0.183104,0.004928,0.13888,0.005536,0.004896,0.005344,0.018784,0.004736
+1324,1665.72,0.600342,0.198208,0.00544,0.153664,0.004832,0.004096,0.006144,0.018464,0.005568
+1325,1554.16,0.643433,0.178208,0.005312,0.133984,0.005536,0.004704,0.005504,0.018784,0.004384
+1326,1542.17,0.648438,0.185056,0.004832,0.14048,0.004928,0.005504,0.004736,0.02016,0.004416
+1327,1783.2,0.560791,0.180224,0.0056,0.13504,0.004768,0.005728,0.004512,0.019584,0.004992
+1328,1673.2,0.597656,0.186624,0.004352,0.142912,0.004544,0.005792,0.004448,0.019712,0.004864
+1329,1310.93,0.762817,0.458304,0.005664,0.37296,0.0368,0.012608,0.005504,0.019072,0.005696
+1330,1025.92,0.974731,0.193536,0.006144,0.14688,0.004672,0.00576,0.00448,0.020384,0.005216
+1331,1690.82,0.591431,0.183776,0.004544,0.138656,0.004704,0.005728,0.004512,0.020384,0.005248
+1332,810.447,1.23389,0.179968,0.004736,0.134944,0.004288,0.005472,0.004768,0.020032,0.005728
+1333,1327.93,0.753052,0.185248,0.005024,0.140704,0.004704,0.005728,0.004512,0.019648,0.004928
+1334,1416.08,0.706177,0.194816,0.004832,0.149536,0.006112,0.004096,0.006144,0.018432,0.005664
+1335,1696.42,0.589478,0.185184,0.00496,0.139264,0.006144,0.005184,0.005056,0.019872,0.004704
+1336,1729.73,0.578125,0.181088,0.00496,0.136736,0.004576,0.005248,0.004992,0.019648,0.004928
+1337,1220.14,0.81958,0.231424,0.005696,0.184768,0.006144,0.00544,0.0048,0.018432,0.006144
+1338,792.57,1.26172,0.191296,0.00704,0.143168,0.005536,0.004896,0.00592,0.018656,0.00608
+1339,1927.98,0.518677,0.193024,0.004608,0.147456,0.006144,0.004096,0.006144,0.019648,0.004928
+1340,1688.72,0.592163,0.17408,0.006176,0.128704,0.004384,0.005376,0.004864,0.019936,0.00464
+1341,1479.23,0.676025,0.171424,0.005504,0.1256,0.006112,0.004096,0.006144,0.018464,0.005504
+1342,879.253,1.13733,0.419552,0.004672,0.352288,0.005856,0.004352,0.006144,0.040608,0.005632
+1343,1547.12,0.646362,0.256416,0.004544,0.196032,0.00464,0.005792,0.014688,0.025664,0.005056
+1344,1516.19,0.659546,0.176736,0.004704,0.132832,0.004384,0.005408,0.004832,0.020128,0.004448
+1345,1659.98,0.602417,0.180224,0.005568,0.133696,0.006144,0.004096,0.006144,0.019776,0.0048
+1346,1743.72,0.573486,0.18432,0.00592,0.138496,0.005088,0.005312,0.004928,0.019968,0.004608
+1347,825.141,1.21191,0.178304,0.006656,0.131072,0.006144,0.004096,0.006144,0.018432,0.00576
+1348,1790.21,0.558594,0.17552,0.005984,0.129184,0.005696,0.004544,0.005376,0.0192,0.005536
+1349,1645.31,0.607788,0.182272,0.00608,0.135264,0.006112,0.005216,0.005024,0.019904,0.004672
+1350,1773.93,0.563721,0.180224,0.005408,0.135232,0.004768,0.005632,0.004608,0.020288,0.004288
+1351,1242.53,0.80481,0.174112,0.004768,0.129024,0.005344,0.004896,0.006144,0.018432,0.005504
+1352,1394.15,0.717285,0.170912,0.005024,0.126976,0.00576,0.00448,0.005696,0.01872,0.004256
+1353,1060.59,0.942871,0.19456,0.005312,0.14832,0.006112,0.005344,0.004896,0.019552,0.005024
+1354,1590.37,0.628784,0.198176,0.005408,0.152288,0.005568,0.004672,0.005536,0.01904,0.005664
+1355,1837.6,0.544189,0.176384,0.004352,0.132672,0.004544,0.00592,0.00432,0.019744,0.004832
+1356,1010.36,0.989746,0.669664,0.006176,0.621856,0.0048,0.006144,0.005664,0.018912,0.006112
+1357,1419.27,0.70459,0.178144,0.005312,0.131968,0.005824,0.004416,0.005856,0.01872,0.006048
+1358,1349.37,0.741089,0.180224,0.005792,0.133504,0.006112,0.004096,0.006144,0.01968,0.004896
+1359,1905.12,0.524902,0.171712,0.005728,0.125344,0.005632,0.004608,0.0056,0.018976,0.005824
+1360,1722.82,0.580444,0.178016,0.005728,0.131488,0.005728,0.004512,0.005696,0.01888,0.005984
+1361,1284.82,0.77832,0.387072,0.006144,0.339968,0.006144,0.00512,0.00512,0.019776,0.0048
+1362,827.558,1.20837,0.178304,0.005376,0.131968,0.006144,0.00528,0.00496,0.019872,0.004704
+1363,1747.81,0.572144,0.176608,0.004928,0.131072,0.005568,0.004672,0.005568,0.019008,0.005792
+1364,1684.56,0.593628,0.177472,0.006016,0.1312,0.00528,0.004864,0.005312,0.01936,0.00544
+1365,1478.43,0.676392,0.180736,0.004832,0.135168,0.006144,0.005216,0.005024,0.018432,0.00592
+1366,1037.49,0.963867,0.441568,0.00768,0.393728,0.006016,0.004224,0.005984,0.018592,0.005344
+1367,1509.77,0.662354,0.173344,0.006048,0.127072,0.005248,0.004896,0.005312,0.01936,0.005408
+1368,1564.25,0.639282,0.180224,0.006144,0.134688,0.004576,0.005216,0.005024,0.019936,0.00464
+1369,2001.47,0.499634,0.1744,0.004896,0.128096,0.005024,0.006144,0.005408,0.019168,0.005664
+1370,1714.17,0.583374,0.172032,0.006144,0.124928,0.006144,0.00416,0.00608,0.019552,0.005024
+1371,1357.87,0.73645,0.178016,0.005504,0.131712,0.005984,0.004256,0.005984,0.018592,0.005984
+1372,1918.05,0.521362,0.171936,0.00576,0.125344,0.005824,0.004384,0.005792,0.018784,0.006048
+1373,1585.14,0.630859,0.17088,0.004992,0.124928,0.006144,0.00528,0.00496,0.02,0.004576
+1374,1855.91,0.538818,0.17408,0.00608,0.12704,0.006144,0.004096,0.006144,0.018432,0.006144
+1375,1604.39,0.623291,0.1768,0.004768,0.131072,0.006144,0.00512,0.00512,0.019936,0.00464
+1376,1018.15,0.982178,0.536384,0.004704,0.448512,0.0072,0.005088,0.032704,0.032608,0.005568
+1377,938.481,1.06555,0.229792,0.0048,0.184032,0.005536,0.004896,0.005632,0.01904,0.005856
+1378,1399.39,0.7146,0.223488,0.004352,0.179456,0.004864,0.005568,0.004672,0.020064,0.004512
+1379,1791.38,0.558228,0.186368,0.00544,0.139968,0.006144,0.005152,0.005088,0.020096,0.00448
+1380,1259.73,0.793823,0.186368,0.00544,0.14176,0.004352,0.00544,0.0048,0.020352,0.004224
+1381,1248.21,0.801147,0.194944,0.004992,0.149344,0.005568,0.004832,0.005376,0.0192,0.005632
+1382,1965.45,0.508789,0.180224,0.0056,0.133664,0.006144,0.004096,0.006144,0.01952,0.005056
+1383,1679.72,0.595337,0.180064,0.004384,0.13472,0.004544,0.005888,0.004448,0.020384,0.005696
+1384,1678.34,0.595825,0.176128,0.006144,0.131072,0.005408,0.004832,0.005344,0.018848,0.00448
+1385,1525.51,0.655518,0.175424,0.005312,0.129408,0.004576,0.005856,0.004384,0.02048,0.005408
+1386,737.155,1.35657,0.182272,0.007584,0.135104,0.004768,0.005632,0.004608,0.02,0.004576
+1387,1828.16,0.546997,0.176128,0.006144,0.129056,0.006048,0.00416,0.005728,0.018848,0.006144
+1388,1597.82,0.625854,0.17408,0.005472,0.12912,0.004672,0.00528,0.00496,0.020096,0.00448
+1389,1737.07,0.575684,0.171456,0.005504,0.125312,0.005536,0.004896,0.00528,0.01936,0.005568
+1390,1489.73,0.671265,0.171904,0.006016,0.12624,0.00496,0.005408,0.004832,0.018432,0.006016
+1391,1198.71,0.834229,0.17408,0.004704,0.128896,0.005504,0.004864,0.005216,0.01936,0.005536
+1392,1773.16,0.563965,0.167936,0.005472,0.122912,0.004736,0.004096,0.006144,0.019488,0.005088
+1393,1985.94,0.50354,0.171584,0.005952,0.125024,0.005536,0.0048,0.005408,0.019168,0.005696
+1394,1699.94,0.588257,0.173984,0.005952,0.126688,0.004576,0.00592,0.006048,0.018752,0.006048
+1395,1458.43,0.685669,0.172096,0.0056,0.125504,0.006112,0.004096,0.006144,0.020224,0.004416
+1396,1097.24,0.911377,0.177536,0.007552,0.129664,0.005376,0.004864,0.005312,0.019264,0.005504
+1397,610.979,1.63672,0.172352,0.005056,0.126976,0.00544,0.004736,0.005344,0.019296,0.005504
+1398,1266.93,0.789307,0.205632,0.004928,0.161728,0.005536,0.004768,0.005344,0.018848,0.00448
+1399,1167.28,0.856689,0.394752,0.005664,0.34848,0.004544,0.005856,0.004384,0.02048,0.005344
+1400,1700.29,0.588135,0.183392,0.005376,0.13808,0.00576,0.00448,0.005728,0.018752,0.005216
+1401,1738.91,0.575073,0.187904,0.005792,0.141696,0.006112,0.004096,0.006144,0.018432,0.005632
+1402,1534.08,0.651855,0.184864,0.004672,0.139232,0.006144,0.00528,0.00496,0.018432,0.006144
+1403,1540.14,0.649292,0.204992,0.0048,0.1592,0.00464,0.00608,0.005312,0.019328,0.005632
+1404,1469.42,0.680542,0.194112,0.004544,0.149312,0.005792,0.004448,0.005696,0.018848,0.005472
+1405,882.664,1.13293,0.456288,0.009632,0.40544,0.005824,0.004864,0.00432,0.02048,0.005728
+1406,1170.95,0.854004,0.177248,0.006144,0.131072,0.005472,0.004768,0.005536,0.019008,0.005248
+1407,1409.98,0.709229,0.178784,0.004704,0.13472,0.004544,0.005856,0.004384,0.019808,0.004768
+1408,2043.91,0.489258,0.17248,0.00496,0.126976,0.005824,0.004416,0.005664,0.018912,0.005728
+1409,1401.78,0.713379,0.172544,0.00496,0.126976,0.005536,0.004704,0.005504,0.019072,0.005792
+1410,1662,0.601685,0.18352,0.006176,0.136864,0.005536,0.004864,0.005312,0.019424,0.005344
+1411,1613.55,0.619751,0.173888,0.00608,0.12704,0.005568,0.004672,0.005632,0.018944,0.005952
+1412,2028.22,0.493042,0.173088,0.005696,0.125408,0.005536,0.004672,0.005344,0.019232,0.0072
+1413,1466,0.682129,0.174848,0.004704,0.130304,0.004864,0.005568,0.004672,0.02032,0.004416
+1414,1580.55,0.63269,0.1816,0.005408,0.135968,0.006048,0.00416,0.006016,0.01856,0.00544
+1415,834.811,1.19788,0.199328,0.006816,0.153408,0.005536,0.004896,0.005344,0.01888,0.004448
+1416,1733.02,0.577026,0.18432,0.005344,0.139648,0.004512,0.00528,0.00496,0.019808,0.004768
+1417,1350.26,0.740601,0.198656,0.005888,0.151808,0.00608,0.00416,0.00608,0.019648,0.004992
+1418,1644.98,0.60791,0.174688,0.004704,0.130112,0.005056,0.005312,0.004928,0.01968,0.004896
+1419,1521.26,0.657349,0.174304,0.00432,0.130304,0.004864,0.005632,0.004608,0.020352,0.004224
+1420,1760.21,0.568115,0.171776,0.006144,0.125984,0.004928,0.004256,0.00592,0.018656,0.005888
+1421,1177.52,0.849243,0.205408,0.004704,0.159744,0.00592,0.00432,0.006112,0.01952,0.005088
+1422,1214.35,0.823486,0.230784,0.006144,0.18432,0.005984,0.004256,0.005856,0.01872,0.005504
+1423,1871.6,0.534302,0.184352,0.004864,0.138752,0.004608,0.00592,0.00432,0.02048,0.005408
+1424,1643.66,0.608398,0.174016,0.005408,0.127712,0.006144,0.00528,0.00496,0.018464,0.006048
+1425,1158.21,0.863403,0.649216,0.00592,0.602336,0.006144,0.005216,0.005024,0.019904,0.004672
+1426,1306.54,0.765381,0.17888,0.004864,0.132992,0.005536,0.004832,0.005568,0.019008,0.00608
+1427,1771.24,0.564575,0.172032,0.00608,0.124992,0.006144,0.004256,0.005984,0.019808,0.004768
+1428,1747.81,0.572144,0.173632,0.006016,0.127104,0.005536,0.004704,0.005472,0.019104,0.005696
+1429,1276.81,0.783203,0.371168,0.004576,0.325632,0.005888,0.004352,0.005888,0.018688,0.006144
+1430,1651.28,0.605591,0.178176,0.006016,0.1312,0.006144,0.005248,0.004992,0.019872,0.004704
+1431,1768.57,0.56543,0.172512,0.004576,0.126976,0.005888,0.004352,0.005856,0.01872,0.006144
+1432,1743.72,0.573486,0.169984,0.006144,0.124384,0.00464,0.005152,0.005088,0.019808,0.004768
+1433,1514.51,0.660278,0.17456,0.004544,0.13024,0.004864,0.005536,0.004704,0.020288,0.004384
+1434,1764,0.566895,0.177312,0.006144,0.131072,0.00576,0.00448,0.00576,0.018816,0.00528
+1435,1610.06,0.621094,0.468992,0.005632,0.420352,0.007552,0.004736,0.005632,0.018944,0.006144
+1436,956.227,1.04578,0.173536,0.005408,0.127808,0.005376,0.004864,0.005312,0.019264,0.005504
+1437,1770.86,0.564697,0.176128,0.00592,0.130432,0.00496,0.00528,0.00496,0.020256,0.00432
+1438,1490.27,0.671021,0.175648,0.004544,0.1304,0.004768,0.005632,0.004608,0.02048,0.005216
+1439,1825.31,0.547852,0.177952,0.006144,0.130592,0.004576,0.005856,0.00592,0.018944,0.00592
+1440,1370.13,0.729858,0.182464,0.005312,0.137344,0.004928,0.00416,0.00608,0.018496,0.006144
+1441,1726.45,0.579224,0.176128,0.006144,0.130432,0.004736,0.005664,0.004576,0.020416,0.00416
+1442,1634.15,0.611938,0.18496,0.004736,0.139264,0.00576,0.00448,0.005792,0.020128,0.0048
+1443,1302.38,0.767822,0.186112,0.006144,0.138752,0.004608,0.005824,0.004416,0.02048,0.005888
+1444,1435.43,0.696655,0.193792,0.006048,0.147552,0.004192,0.005728,0.004416,0.02048,0.005376
+1445,1902.9,0.525513,0.185312,0.005088,0.138976,0.005536,0.004928,0.005984,0.019744,0.005056
+1446,1629.92,0.613525,0.173824,0.005536,0.127584,0.005536,0.004704,0.005472,0.019104,0.005888
+1447,1159.35,0.862549,0.657024,0.005664,0.610464,0.005536,0.004896,0.005568,0.019136,0.00576
+1448,1187.94,0.841797,0.176608,0.004768,0.131072,0.005856,0.004384,0.005792,0.018784,0.005952
+1449,1770.48,0.564819,0.182272,0.00608,0.135232,0.00592,0.00544,0.005024,0.020096,0.00448
+1450,1249.73,0.800171,0.172768,0.004832,0.128128,0.00496,0.005472,0.004768,0.019968,0.00464
+1451,1955.6,0.511353,0.177664,0.005376,0.13152,0.005568,0.004896,0.005344,0.019328,0.005632
+1452,1721.01,0.581055,0.169984,0.006144,0.124192,0.004768,0.00416,0.006016,0.01856,0.006144
+1453,1664.7,0.600708,0.176128,0.005984,0.130976,0.005536,0.004864,0.005344,0.018912,0.004512
+1454,1530.93,0.653198,0.16928,0.006144,0.121984,0.004992,0.005376,0.006432,0.018944,0.005408
+1455,1950.94,0.512573,0.168192,0.004672,0.12288,0.0056,0.00464,0.005504,0.019072,0.005824
+1456,1551.81,0.644409,0.453664,0.006176,0.362144,0.006464,0.006144,0.005408,0.039648,0.02768
+1457,938.159,1.06592,0.1728,0.004864,0.126976,0.00592,0.00432,0.005888,0.018688,0.006144
+1458,1512.28,0.661255,0.178272,0.00544,0.131872,0.005792,0.004448,0.006144,0.020096,0.00448
+1459,2039.84,0.490234,0.176128,0.005856,0.129312,0.0056,0.00464,0.006144,0.019776,0.0048
+1460,1622.5,0.616333,0.167776,0.006176,0.12256,0.004384,0.005408,0.005888,0.018784,0.004576
+1461,1534.08,0.651855,0.170592,0.004768,0.12496,0.005696,0.004512,0.005824,0.018752,0.00608
+1462,1539.56,0.649536,0.167488,0.005856,0.119072,0.006144,0.005152,0.00656,0.019008,0.005696
+1463,1744.09,0.573364,0.179136,0.005056,0.134304,0.00496,0.00544,0.0048,0.020224,0.004352
+1464,1616.1,0.618774,0.17536,0.005888,0.12928,0.004256,0.005696,0.004384,0.02048,0.005376
+1465,2087.13,0.479126,0.17408,0.006144,0.127008,0.006112,0.00512,0.00512,0.020192,0.004384
+1466,1642.01,0.609009,0.172032,0.00608,0.124992,0.006048,0.004192,0.006048,0.019584,0.005088
+1467,1128.06,0.886475,0.647968,0.00512,0.602112,0.005664,0.004576,0.005664,0.018912,0.00592
+1468,1158.21,0.863403,0.18688,0.00464,0.142592,0.004832,0.004096,0.006144,0.019712,0.004864
+1469,1492.71,0.669922,0.182752,0.00464,0.137216,0.00576,0.00448,0.00576,0.018816,0.00608
+1470,1989.8,0.502563,0.175904,0.00592,0.129248,0.006144,0.004096,0.006144,0.018432,0.00592
+1471,1626.69,0.614746,0.392768,0.005408,0.34672,0.005568,0.004864,0.005312,0.019328,0.005568
+1472,1264.39,0.790894,0.17072,0.004832,0.126624,0.004448,0.005312,0.004928,0.020032,0.004544
+1473,1811.59,0.552002,0.174976,0.004992,0.130144,0.005024,0.005376,0.004864,0.02016,0.004416
+1474,1478.17,0.676514,0.172064,0.005344,0.12688,0.005024,0.005376,0.004864,0.020096,0.00448
+1475,1945.84,0.513916,0.176512,0.00464,0.130688,0.005536,0.004896,0.00592,0.018848,0.005984
+1476,1748.19,0.572021,0.17584,0.006048,0.129152,0.005504,0.004704,0.005472,0.019104,0.005856
+1477,1087.34,0.919678,0.655488,0.00544,0.609088,0.006144,0.004096,0.006144,0.019744,0.004832
+1478,1337.47,0.747681,0.174112,0.00608,0.128256,0.004928,0.005472,0.004768,0.019648,0.00496
+1479,1725.36,0.57959,0.173056,0.005696,0.12672,0.0048,0.005728,0.004512,0.02032,0.00528
+1480,1608.48,0.621704,0.169472,0.005344,0.123744,0.005408,0.004832,0.005344,0.019232,0.005568
+1481,1717.04,0.582397,0.17408,0.005888,0.127104,0.005568,0.004832,0.00608,0.019712,0.004896
+1482,1363.29,0.733521,0.36864,0.005632,0.322048,0.005888,0.004352,0.006144,0.01984,0.004736
+1483,1739.65,0.574829,0.173504,0.00528,0.127488,0.004544,0.005632,0.005632,0.019456,0.005472
+1484,1724.27,0.579956,0.171136,0.006144,0.124928,0.0056,0.00464,0.005376,0.019168,0.00528
+1485,1590.37,0.628784,0.178176,0.005824,0.131424,0.006112,0.005344,0.004896,0.019968,0.004608
+1486,1682.83,0.594238,0.174112,0.005344,0.127808,0.006112,0.005184,0.005056,0.019776,0.004832
+1487,1846.71,0.541504,0.179648,0.005344,0.1336,0.004544,0.006112,0.005312,0.019296,0.00544
+1488,1436.44,0.696167,0.466624,0.004576,0.394528,0.006848,0.005152,0.005088,0.028224,0.022208
+1489,971.307,1.02954,0.170656,0.004672,0.124896,0.006144,0.004288,0.005952,0.02032,0.004384
+1490,1559.19,0.641357,0.170272,0.004544,0.124928,0.005824,0.004416,0.005696,0.01888,0.005984
+1491,1359.22,0.735718,0.180224,0.005504,0.134784,0.00512,0.005376,0.004864,0.019904,0.004672
+1492,1747.44,0.572266,0.361184,0.005088,0.316832,0.004704,0.005184,0.005056,0.018432,0.005888
+1493,1256.83,0.795654,0.174368,0.00496,0.128032,0.005088,0.005344,0.00608,0.019296,0.005568
+1494,1723.18,0.580322,0.1696,0.005664,0.123232,0.005536,0.004832,0.005344,0.019232,0.00576
+1495,1863.51,0.536621,0.172256,0.005408,0.125888,0.006144,0.004096,0.006144,0.019616,0.00496
+1496,1686.99,0.592773,0.174112,0.005344,0.129664,0.004288,0.0056,0.00464,0.019808,0.004768
+1497,1708.8,0.585205,0.175456,0.00576,0.129408,0.005856,0.004384,0.005824,0.018752,0.005472
+1498,1749.31,0.571655,0.172416,0.00448,0.126976,0.006144,0.004096,0.006144,0.019776,0.0048
+1499,746.22,1.34009,0.399616,0.0064,0.353344,0.005056,0.005344,0.004928,0.019456,0.005088
+1500,1723.54,0.5802,0.190816,0.004544,0.147168,0.004288,0.005536,0.004704,0.019712,0.004864
+1501,1938.93,0.515747,0.172128,0.006144,0.12672,0.005536,0.004896,0.005312,0.019136,0.004384
+1502,1722.46,0.580566,0.17248,0.004864,0.126816,0.005536,0.004864,0.005376,0.0192,0.005824
+1503,1466.79,0.681763,0.17408,0.00464,0.129024,0.00608,0.00416,0.006048,0.018528,0.0056
+1504,1716.68,0.58252,0.170048,0.004416,0.125984,0.005088,0.004256,0.005984,0.018432,0.005888
+1505,1696.07,0.5896,0.172032,0.005728,0.125344,0.006144,0.004096,0.006144,0.019872,0.004704
+1506,1767.42,0.565796,0.17408,0.005856,0.127296,0.005696,0.004512,0.005728,0.018848,0.006144
+1507,1519.29,0.658203,0.18912,0.0048,0.14464,0.004864,0.004096,0.006144,0.01968,0.004896
+1508,1523.24,0.656494,0.180224,0.005312,0.134144,0.00576,0.00448,0.00576,0.018816,0.005952
+1509,1525.51,0.655518,0.18064,0.004512,0.136224,0.005088,0.005312,0.004928,0.018432,0.006144
+1510,797.43,1.25403,0.405504,0.007872,0.356704,0.006112,0.004096,0.006144,0.019616,0.00496
+1511,1659.98,0.602417,0.178176,0.005792,0.131424,0.006144,0.005376,0.004768,0.018528,0.006144
+1512,1814.4,0.551147,0.171072,0.005888,0.124768,0.004512,0.005312,0.004928,0.020448,0.005216
+1513,1354.27,0.738403,0.172512,0.004576,0.127008,0.00592,0.004288,0.00592,0.019936,0.004864
+1514,1208.08,0.827759,0.169952,0.004832,0.124544,0.005536,0.004864,0.005344,0.019456,0.005376
+1515,1618.01,0.618042,0.186752,0.00448,0.1432,0.005536,0.004864,0.005344,0.01888,0.004448
+1516,1759.83,0.568237,0.180224,0.006144,0.134176,0.005056,0.004128,0.006112,0.018464,0.006144
+1517,1573.57,0.635498,0.188416,0.005376,0.14208,0.00592,0.00432,0.005824,0.02,0.004896
+1518,1143.5,0.874512,0.649344,0.005376,0.603104,0.005824,0.004416,0.005792,0.018784,0.006048
+1519,1304.87,0.766357,0.174112,0.006112,0.127008,0.006144,0.005312,0.004928,0.02016,0.004448
+1520,1647.3,0.607056,0.172096,0.004576,0.128224,0.004768,0.004096,0.006112,0.018464,0.005856
+1521,1768.18,0.565552,0.190176,0.0048,0.144576,0.004928,0.00576,0.00448,0.020416,0.005216
+1522,1556.82,0.642334,0.174816,0.004832,0.129056,0.005952,0.004256,0.006144,0.019776,0.0048
+1523,1280.6,0.780884,0.377248,0.004512,0.331424,0.005536,0.005056,0.00576,0.018816,0.006144
+1524,1750.8,0.571167,0.175104,0.00512,0.13072,0.004448,0.005376,0.004864,0.020032,0.004544
+1525,1774.31,0.563599,0.172672,0.004768,0.12816,0.004928,0.005504,0.004736,0.02,0.004576
+1526,1529.5,0.653809,0.178176,0.00592,0.131296,0.006144,0.004096,0.006112,0.018464,0.006144
+1527,1722.09,0.580688,0.178176,0.005728,0.132704,0.004928,0.005504,0.004736,0.019488,0.005088
+1528,1772.01,0.564331,0.172032,0.005408,0.125664,0.00592,0.00432,0.005952,0.01872,0.006048
+1529,1750.8,0.571167,0.17536,0.005408,0.129184,0.004672,0.005984,0.005344,0.019392,0.005376
+1530,1009.61,0.990479,0.702848,0.005856,0.657216,0.00496,0.00544,0.0048,0.020096,0.00448
+1531,1404.18,0.712158,0.177888,0.00576,0.131392,0.005536,0.004768,0.005536,0.01904,0.005856
+1532,683.122,1.46387,0.170656,0.004736,0.126048,0.004992,0.004128,0.00608,0.018496,0.006176
+1533,1253.75,0.797607,0.174304,0.005536,0.12784,0.006048,0.00416,0.006112,0.019648,0.00496
+1534,1717.4,0.582275,0.169984,0.005728,0.123296,0.005824,0.004416,0.005824,0.018752,0.006144
+1535,1683.86,0.593872,0.176864,0.004928,0.131072,0.005952,0.004288,0.005792,0.018784,0.006048
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..cfd0886
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,613.832,1.69437,1.2314,0.00880319,0.268922,0.00576794,0.00497991,0.007329,0.0135608,0.0146943,0.895376,0.0119631
+max_1024,1264,4.00232,1.95226,0.052416,0.726336,0.059392,0.02864,0.047744,0.04112,0.071616,1.62118,0.314336
+min_1024,249.855,0.791138,0.958464,0.006656,0.220128,0.004064,0.004064,0.006144,0.012256,0.0128,0.667648,0.008416
+512,491.245,2.03564,0.97504,0.008384,0.234976,0.00464,0.005152,0.007072,0.013408,0.014336,0.676832,0.01024
+513,654.313,1.52832,0.978944,0.00816,0.24784,0.00592,0.00432,0.007584,0.012928,0.014304,0.668864,0.009024
+514,700.051,1.42847,1.3817,0.008416,0.240672,0.004864,0.004096,0.008192,0.014336,0.014336,1.0744,0.012384
+515,538.912,1.85559,0.979264,0.008512,0.24176,0.0056,0.00464,0.007296,0.013184,0.014368,0.67376,0.010144
+516,738.218,1.35461,1.61382,0.009632,0.457312,0.03264,0.004224,0.007744,0.013792,0.014688,1.06355,0.01024
+517,494.806,2.021,0.976064,0.009376,0.227936,0.004352,0.00544,0.006848,0.01344,0.014656,0.684256,0.00976
+518,695.948,1.43689,0.970848,0.00832,0.227296,0.005248,0.004864,0.006272,0.014304,0.014304,0.68,0.01024
+519,684.32,1.4613,0.972032,0.008192,0.227168,0.004256,0.005536,0.006752,0.013664,0.01456,0.68224,0.009664
+520,689.098,1.45117,1.59578,0.008576,0.47312,0.006496,0.005472,0.006816,0.014272,0.0144,1.05581,0.010816
+521,522.516,1.91382,0.968544,0.00832,0.231296,0.005696,0.004544,0.00736,0.013024,0.014432,0.673792,0.01008
+522,716.46,1.39575,0.965664,0.008192,0.227328,0.004096,0.005856,0.006432,0.014144,0.014368,0.675776,0.009472
+523,730.125,1.36963,1.34298,0.009664,0.224896,0.004928,0.004224,0.007744,0.012736,0.014336,1.05408,0.010368
+524,539.16,1.85474,1.80838,0.009248,0.22944,0.004928,0.004192,0.00784,0.01264,0.014336,1.51347,0.012288
+525,390.858,2.55847,0.98304,0.007904,0.24016,0.005792,0.004448,0.007552,0.012928,0.014336,0.679936,0.009984
+526,924.918,1.08118,0.9856,0.008,0.238272,0.005664,0.004576,0.007392,0.01312,0.014304,0.684032,0.01024
+527,714.522,1.39954,1.34669,0.009568,0.237376,0.004928,0.004128,0.007776,0.012704,0.014336,1.04573,0.010144
+528,571.668,1.74927,0.972832,0.009696,0.231008,0.004896,0.004256,0.00768,0.0128,0.014336,0.677888,0.010272
+529,506.586,1.974,0.973152,0.010624,0.229344,0.005888,0.004352,0.007584,0.012896,0.014336,0.679392,0.008736
+530,656.621,1.52295,1.00157,0.008192,0.251936,0.005248,0.004832,0.006272,0.014368,0.014336,0.687712,0.008672
+531,766.539,1.30457,0.965792,0.008544,0.230048,0.005248,0.004832,0.006304,0.013792,0.014432,0.673632,0.00896
+532,648.871,1.54114,0.96992,0.009344,0.23344,0.004928,0.004192,0.007744,0.012736,0.014336,0.67344,0.00976
+533,668.08,1.49683,1.59712,0.00832,0.452608,0.023744,0.004928,0.007776,0.013792,0.014592,1.06106,0.010304
+534,511.52,1.95496,0.992064,0.006976,0.236896,0.004768,0.004096,0.008064,0.013664,0.014528,0.692832,0.01024
+535,518.809,1.92749,1.03242,0.008736,0.288768,0.005216,0.004832,0.006368,0.013888,0.01472,0.679968,0.00992
+536,934.626,1.06995,0.976928,0.009568,0.236192,0.004096,0.006144,0.00736,0.01312,0.014336,0.67584,0.010272
+537,652.074,1.53357,1.70013,0.008832,0.240704,0.004896,0.004256,0.007904,0.012576,0.015648,1.39133,0.013984
+538,495.824,2.01685,0.97264,0.008192,0.235296,0.00432,0.00544,0.006848,0.013824,0.014304,0.674336,0.01008
+539,723.355,1.38245,0.997376,0.008256,0.260288,0.0048,0.00528,0.007008,0.013408,0.014688,0.673888,0.00976
+540,733.59,1.36316,1.34499,0.00864,0.229376,0.005536,0.004704,0.006176,0.014112,0.014432,1.05181,0.010208
+541,543.524,1.83984,0.972736,0.008864,0.235296,0.004544,0.005248,0.00704,0.012288,0.015488,0.674016,0.009952
+542,549.393,1.82019,0.976032,0.012096,0.235712,0.005728,0.004512,0.007552,0.012928,0.014336,0.673472,0.009696
+543,701.01,1.42651,0.971104,0.00832,0.228192,0.005376,0.004832,0.008224,0.013728,0.0144,0.678208,0.009824
+544,732.213,1.36572,0.989504,0.008672,0.235104,0.004864,0.004096,0.007968,0.012512,0.014432,0.692096,0.00976
+545,564.849,1.77039,0.9856,0.009728,0.251712,0.00496,0.004256,0.007648,0.01424,0.013184,0.670688,0.009184
+546,581.199,1.72058,1.61382,0.008192,0.452448,0.03088,0.005536,0.006752,0.01424,0.014432,1.0711,0.01024
+547,574.514,1.7406,0.97728,0.008096,0.240096,0.004096,0.005696,0.006592,0.013824,0.01424,0.6744,0.01024
+548,729.02,1.3717,0.974528,0.008192,0.2312,0.00432,0.005472,0.006816,0.013472,0.0144,0.680736,0.00992
+549,626.252,1.5968,0.9704,0.008192,0.230624,0.004896,0.004096,0.008096,0.012384,0.014336,0.677888,0.009888
+550,734.313,1.36182,1.69878,0.008448,0.2424,0.00576,0.00448,0.007456,0.013024,0.014336,1.38854,0.014336
+551,477.473,2.09436,0.9744,0.008192,0.23456,0.004928,0.004224,0.00768,0.0128,0.014336,0.677888,0.009792
+552,700.65,1.42725,0.971744,0.00864,0.231008,0.004928,0.004224,0.00768,0.0128,0.015552,0.676672,0.01024
+553,669.281,1.49414,1.38195,0.008512,0.25968,0.004512,0.004096,0.008192,0.012288,0.015456,1.05882,0.0104
+554,574.998,1.73914,1.81005,0.009408,0.230208,0.005568,0.004672,0.007296,0.013184,0.014336,1.51347,0.011904
+555,442.213,2.26135,0.970752,0.008192,0.233472,0.00592,0.00432,0.00768,0.0128,0.01552,0.672608,0.01024
+556,706.694,1.41504,0.970752,0.008224,0.23344,0.005856,0.004384,0.007552,0.012928,0.014336,0.673792,0.01024
+557,773.268,1.29321,1.33766,0.008512,0.224928,0.004448,0.005376,0.006912,0.013664,0.014464,1.04912,0.01024
+558,570.513,1.75281,1.80634,0.00928,0.242624,0.004096,0.005472,0.006848,0.013824,0.014272,1.49763,0.012288
+559,448.877,2.22778,0.972224,0.009376,0.226144,0.005152,0.004832,0.0064,0.014048,0.014624,0.681888,0.00976
+560,723.292,1.38257,0.968736,0.008448,0.223232,0.005856,0.004384,0.00752,0.01296,0.014336,0.681984,0.010016
+561,727.402,1.37476,0.964,0.008512,0.225216,0.004128,0.0056,0.006688,0.013536,0.014592,0.675936,0.009792
+562,730.255,1.36938,0.97376,0.00864,0.223392,0.004448,0.005344,0.006944,0.012384,0.014368,0.689216,0.009024
+563,711.543,1.4054,0.964448,0.008192,0.224832,0.004544,0.005248,0.007072,0.013856,0.01456,0.676064,0.01008
+564,733.327,1.36365,0.96352,0.00864,0.223744,0.00544,0.0048,0.007872,0.012608,0.014336,0.67584,0.01024
+565,579.472,1.72571,0.981728,0.008416,0.250368,0.00576,0.00448,0.007456,0.013056,0.014304,0.667648,0.01024
+566,911.032,1.09766,0.98384,0.008576,0.241792,0.004384,0.005408,0.00688,0.013856,0.014688,0.678016,0.01024
+567,714.897,1.3988,0.971872,0.008288,0.231328,0.005632,0.004608,0.007456,0.013024,0.015936,0.67568,0.00992
+568,727.466,1.37463,0.962464,0.008608,0.227808,0.005696,0.004512,0.007392,0.01312,0.014464,0.671328,0.009536
+569,743.848,1.34436,0.958464,0.008224,0.2232,0.004096,0.005696,0.006592,0.013664,0.014496,0.672256,0.01024
+570,724.635,1.38,0.981312,0.008672,0.223584,0.004096,0.00576,0.006528,0.014336,0.014336,0.694272,0.009728
+571,721.571,1.38586,0.970688,0.008192,0.22688,0.004544,0.005248,0.006912,0.01248,0.01536,0.680896,0.010176
+572,718.975,1.39087,0.964608,0.009376,0.228192,0.005248,0.004896,0.007744,0.012832,0.014336,0.67312,0.008864
+573,726.37,1.37671,0.972096,0.008192,0.22528,0.005184,0.004864,0.008352,0.013472,0.014592,0.6824,0.00976
+574,734.577,1.36133,0.969216,0.008672,0.224864,0.004512,0.005312,0.006912,0.0136,0.0144,0.680672,0.010272
+575,722.845,1.38342,0.974336,0.008352,0.225376,0.004096,0.005792,0.006496,0.013824,0.014368,0.686432,0.0096
+576,719.101,1.39062,0.964608,0.008192,0.223232,0.005792,0.004448,0.008192,0.014176,0.014432,0.677728,0.008416
+577,681.871,1.46655,0.98368,0.008352,0.248288,0.004096,0.005696,0.006592,0.013504,0.01456,0.673728,0.008864
+578,709.94,1.40857,1.01795,0.008384,0.264192,0.005184,0.004928,0.006336,0.014048,0.01456,0.690176,0.010144
+579,714.772,1.39905,0.99328,0.008192,0.255744,0.00544,0.004864,0.008032,0.01264,0.0144,0.674784,0.009184
+580,726.434,1.37659,0.976544,0.009312,0.227648,0.004704,0.004096,0.008032,0.012608,0.015232,0.685024,0.009888
+581,723.164,1.38281,0.985184,0.008384,0.229152,0.004896,0.004096,0.007936,0.012544,0.014336,0.694208,0.009632
+582,721.571,1.38586,0.987328,0.008544,0.228416,0.004928,0.00544,0.006976,0.013856,0.0144,0.694688,0.01008
+583,708.099,1.41223,0.97008,0.008256,0.22528,0.0056,0.00464,0.008192,0.013696,0.014368,0.680256,0.009792
+584,737.686,1.35559,0.968864,0.008704,0.223712,0.004096,0.006016,0.006304,0.014048,0.014272,0.68192,0.009792
+585,723.739,1.38171,0.9728,0.009856,0.221568,0.004096,0.006144,0.00736,0.013152,0.014304,0.68608,0.01024
+586,723.739,1.38171,0.962592,0.008224,0.224704,0.004672,0.00592,0.006368,0.014048,0.014624,0.675264,0.008768
+587,726.499,1.37646,0.967552,0.008736,0.22528,0.004384,0.005696,0.006592,0.014016,0.014656,0.679232,0.00896
+588,709.571,1.4093,0.979584,0.008704,0.2296,0.00592,0.00432,0.008192,0.013984,0.0144,0.684352,0.010112
+589,719.038,1.39075,0.980128,0.008192,0.227328,0.005792,0.004448,0.00752,0.01296,0.014336,0.689632,0.00992
+590,716.648,1.39539,0.966848,0.008224,0.227488,0.004096,0.005728,0.00656,0.012288,0.014336,0.677888,0.01024
+591,726.306,1.37683,0.96656,0.009728,0.222752,0.004896,0.004288,0.008192,0.013696,0.01456,0.678304,0.010144
+592,731.951,1.36621,0.989824,0.008416,0.223712,0.005856,0.004384,0.007712,0.012768,0.014336,0.702464,0.010176
+593,616.357,1.62244,1.01104,0.008288,0.264128,0.004064,0.005888,0.0064,0.014336,0.014368,0.683808,0.00976
+594,711.235,1.40601,1.01619,0.008512,0.260384,0.00576,0.00448,0.00752,0.01296,0.014336,0.692224,0.010016
+595,698.559,1.43152,0.989184,0.008192,0.24304,0.004768,0.004096,0.008032,0.012448,0.014336,0.685216,0.009056
+596,687.999,1.45349,0.98304,0.008192,0.241664,0.004096,0.005792,0.006528,0.01408,0.016608,0.67584,0.01024
+597,783.474,1.27637,0.993088,0.019968,0.236064,0.00576,0.004448,0.007488,0.012992,0.014336,0.681984,0.010048
+598,706.694,1.41504,0.987136,0.009632,0.227936,0.004096,0.005856,0.006432,0.014272,0.014432,0.694272,0.010208
+599,736.956,1.35693,0.976832,0.00816,0.225312,0.005728,0.004384,0.006272,0.014336,0.014368,0.688096,0.010176
+600,718.03,1.3927,0.989184,0.008192,0.222912,0.004416,0.005216,0.007104,0.013568,0.014368,0.704864,0.008544
+601,712.348,1.40381,0.973568,0.008768,0.22256,0.004896,0.00416,0.007872,0.012608,0.015424,0.68704,0.01024
+602,720.366,1.38818,0.985088,0.009248,0.222176,0.005728,0.004512,0.00752,0.013024,0.015424,0.698272,0.009184
+603,716.46,1.39575,0.9704,0.008192,0.222304,0.0048,0.005504,0.006912,0.013536,0.014656,0.684608,0.009888
+604,598.349,1.67126,1.00166,0.008384,0.251424,0.004576,0.005184,0.007072,0.01232,0.015552,0.688096,0.009056
+605,707.916,1.4126,1.0056,0.008192,0.243712,0.005152,0.004896,0.006336,0.013696,0.01456,0.700064,0.008992
+606,768.913,1.30054,0.982912,0.009568,0.227936,0.00416,0.005632,0.006656,0.014112,0.014304,0.690432,0.010112
+607,707.304,1.41382,0.974944,0.008288,0.227328,0.005312,0.004928,0.007936,0.012544,0.014432,0.685568,0.008608
+608,721.19,1.3866,0.96832,0.008416,0.22736,0.005632,0.004576,0.007232,0.013248,0.014336,0.677888,0.009632
+609,668.353,1.49622,0.977504,0.0088,0.233504,0.005184,0.004928,0.00624,0.014176,0.014496,0.680992,0.009184
+610,694.708,1.43945,1.00147,0.008192,0.2376,0.005664,0.004544,0.00736,0.01312,0.014336,0.700416,0.01024
+611,770.939,1.29712,0.975744,0.008864,0.223264,0.004096,0.005792,0.006496,0.01408,0.014592,0.6896,0.00896
+612,701.01,1.42651,1.00147,0.009248,0.251968,0.00496,0.00416,0.007712,0.012768,0.015744,0.68576,0.009152
+613,734.972,1.3606,0.99136,0.008352,0.223232,0.00592,0.00432,0.007488,0.01296,0.026656,0.692224,0.010208
+614,721,1.38696,0.983744,0.008672,0.22448,0.00512,0.00528,0.007008,0.01344,0.01424,0.695264,0.01024
+615,663.911,1.50623,0.98304,0.008192,0.241664,0.004096,0.00576,0.006528,0.01376,0.014528,0.67968,0.008832
+616,767.041,1.30371,0.978944,0.008224,0.229344,0.005632,0.004608,0.006176,0.013984,0.014176,0.68656,0.01024
+617,658.256,1.51917,1.0279,0.008192,0.24576,0.005568,0.004672,0.007744,0.012768,0.014336,0.718816,0.010048
+618,741.693,1.34827,0.974144,0.00832,0.226368,0.00496,0.00416,0.008192,0.013536,0.014208,0.68464,0.00976
+619,734.643,1.36121,0.988672,0.009248,0.220128,0.005312,0.0048,0.006304,0.014112,0.026816,0.692128,0.009824
+620,684.664,1.46057,0.973824,0.008608,0.223808,0.005216,0.004864,0.006304,0.014144,0.014048,0.688128,0.008704
+621,745.608,1.34119,0.96672,0.008288,0.220608,0.00464,0.004096,0.00752,0.01296,0.014496,0.685088,0.009024
+622,678.764,1.47327,1.00966,0.009472,0.244512,0.005824,0.004384,0.007552,0.012928,0.014336,0.702016,0.00864
+623,707.61,1.41321,0.98048,0.008256,0.226592,0.004832,0.004096,0.007968,0.012512,0.014336,0.692064,0.009824
+624,735.302,1.35999,0.982304,0.009472,0.221952,0.0056,0.00464,0.007296,0.013184,0.03072,0.679904,0.009536
+625,654.313,1.52832,1.00096,0.009376,0.24256,0.005632,0.004576,0.007936,0.012544,0.014464,0.694112,0.00976
+626,681.417,1.46753,0.9968,0.00864,0.245312,0.004544,0.005248,0.00704,0.013504,0.013312,0.68976,0.00944
+627,686.385,1.45691,1.00486,0.008384,0.24336,0.004416,0.005344,0.006944,0.013344,0.014752,0.698528,0.009792
+628,735.236,1.36011,0.991264,0.008224,0.22528,0.005472,0.004352,0.00656,0.014208,0.014464,0.702464,0.01024
+629,684.378,1.46118,0.97456,0.008192,0.229312,0.00416,0.0056,0.006688,0.012288,0.01536,0.683008,0.009952
+630,641.654,1.55847,1.25238,0.008224,0.260032,0.004128,0.005632,0.006656,0.013728,0.014336,0.692736,0.246912
+631,604.843,1.65332,1.01782,0.008288,0.261824,0.005472,0.004832,0.0064,0.01392,0.014496,0.69248,0.010112
+632,637.708,1.56812,1.68704,0.008192,0.47104,0.059392,0.0056,0.006688,0.014336,0.01424,1.09782,0.009728
+633,508.157,1.9679,0.9816,0.00832,0.229472,0.00448,0.005312,0.006944,0.013408,0.0144,0.689024,0.01024
+634,723.419,1.38232,0.976896,0.008192,0.230848,0.004672,0.005312,0.006976,0.013344,0.014368,0.682944,0.01024
+635,653.895,1.5293,0.997728,0.00864,0.243712,0.00592,0.00432,0.007648,0.012832,0.014368,0.690144,0.010144
+636,648.204,1.54272,1.78797,0.008256,0.28384,0.004928,0.004096,0.00784,0.01264,0.014336,1.4377,0.014336
+637,423.951,2.35876,1.03779,0.007968,0.289344,0.005408,0.0048,0.007264,0.013216,0.014336,0.685664,0.009792
+638,692.828,1.44336,0.99344,0.008288,0.23968,0.00576,0.00448,0.007488,0.012992,0.014336,0.690176,0.01024
+639,653.061,1.53125,0.994528,0.009728,0.23808,0.00528,0.004864,0.00624,0.014048,0.014496,0.692192,0.0096
+640,678.202,1.47449,1.636,0.009856,0.448896,0.032768,0.005728,0.00656,0.014336,0.014336,1.09338,0.010144
+641,510.596,1.9585,0.989536,0.008544,0.233472,0.005216,0.005024,0.0072,0.01328,0.014336,0.692224,0.01024
+642,680.738,1.46899,0.981696,0.008032,0.236352,0.005312,0.004832,0.00624,0.013696,0.014368,0.684064,0.0088
+643,712.038,1.40442,1.37421,0.009792,0.23392,0.005248,0.004832,0.007776,0.012864,0.014336,1.0752,0.01024
+644,580.705,1.72205,1.82614,0.008448,0.23344,0.006144,0.00512,0.00704,0.013568,0.014752,1.52614,0.011488
+645,412.259,2.42566,1.0025,0.007136,0.24288,0.004896,0.004128,0.007808,0.012672,0.015648,0.697056,0.010272
+646,763.04,1.31055,1.02125,0.008192,0.251904,0.0056,0.00464,0.007328,0.013152,0.014336,0.70656,0.009536
+647,677.473,1.47607,1.408,0.009344,0.260992,0.004096,0.005792,0.006496,0.014336,0.014336,1.0825,0.010112
+648,520.656,1.92065,1.04243,0.008224,0.280544,0.005312,0.004928,0.007584,0.012896,0.014336,0.6984,0.010208
+649,556.976,1.79541,1.02195,0.011744,0.247808,0.00464,0.00512,0.007136,0.01232,0.01552,0.707424,0.01024
+650,715.209,1.39819,0.997376,0.008128,0.2328,0.004832,0.004096,0.007872,0.012608,0.014336,0.702496,0.010208
+651,673.463,1.48486,0.98304,0.0096,0.23136,0.0048,0.004096,0.008032,0.012448,0.014336,0.689216,0.009152
+652,648.204,1.54272,0.987008,0.008544,0.233504,0.005408,0.0048,0.006368,0.014112,0.014272,0.690112,0.009888
+653,486.49,2.05554,0.989184,0.012096,0.23328,0.00448,0.005312,0.006976,0.01232,0.015808,0.688832,0.01008
+654,461.365,2.16748,0.984512,0.00832,0.228768,0.004576,0.005216,0.007072,0.012352,0.015616,0.692928,0.009664
+655,982.019,1.01831,1.04838,0.008224,0.294048,0.004928,0.004096,0.007744,0.012736,0.014336,0.692256,0.010016
+656,704.749,1.41895,1.00352,0.008192,0.233248,0.00432,0.005472,0.006816,0.013632,0.014272,0.708672,0.008896
+657,691.717,1.44568,1.63965,0.008192,0.460032,0.027392,0.006144,0.007232,0.013248,0.014336,1.0928,0.010272
+658,489.806,2.04163,0.995168,0.009248,0.233856,0.004704,0.0056,0.006688,0.013536,0.014272,0.697184,0.01008
+659,704.506,1.41943,0.979424,0.008512,0.227712,0.005344,0.004864,0.006304,0.014208,0.014272,0.688192,0.010016
+660,696.836,1.43506,1.16758,0.008416,0.406944,0.004704,0.00512,0.007072,0.014208,0.014304,0.69808,0.008736
+661,624.533,1.6012,1.82272,0.008192,0.241664,0.005664,0.004576,0.007392,0.013088,0.014336,1.51552,0.012288
+662,451.499,2.21484,0.99328,0.008192,0.231424,0.004096,0.005792,0.007648,0.013184,0.014336,0.698368,0.01024
+663,686.097,1.45752,1.00352,0.008192,0.231424,0.005728,0.004512,0.007488,0.012992,0.014336,0.708608,0.01024
+664,642.308,1.55688,1.3783,0.008192,0.245376,0.00448,0.004096,0.00624,0.013536,0.013024,1.07312,0.01024
+665,613.679,1.62952,1.74822,0.008192,0.2432,0.004608,0.005184,0.007104,0.012288,0.014336,1.43882,0.014496
+666,439.32,2.27625,0.996096,0.008736,0.237696,0.005664,0.004576,0.00736,0.01312,0.014336,0.695712,0.008896
+667,744.457,1.34326,0.989216,0.008192,0.231424,0.005504,0.004736,0.007936,0.013696,0.01472,0.692736,0.010272
+668,727.854,1.3739,1.37165,0.008352,0.229216,0.005536,0.004704,0.007264,0.013248,0.014304,1.07693,0.012096
+669,536.934,1.86243,1.85514,0.008192,0.251904,0.004096,0.005888,0.0064,0.01408,0.014304,1.53834,0.011936
+670,447.699,2.23364,0.995328,0.008192,0.235424,0.004192,0.005568,0.00672,0.0136,0.014336,0.697056,0.01024
+671,717.275,1.39417,0.999424,0.008288,0.230816,0.004608,0.005184,0.007072,0.0136,0.014816,0.7048,0.01024
+672,692.418,1.44421,1.3792,0.008704,0.229536,0.005248,0.004864,0.006304,0.014304,0.014368,1.08458,0.011296
+673,434.589,2.30103,1.77011,0.008512,0.272704,0.004096,0.00576,0.00656,0.013504,0.014496,1.43014,0.014336
+674,572.307,1.74731,1.01686,0.008416,0.260896,0.004928,0.004288,0.00816,0.013504,0.014176,0.692928,0.009568
+675,731.821,1.36646,1.00352,0.009248,0.234368,0.004192,0.005664,0.006624,0.012288,0.014336,0.707936,0.008864
+676,696.658,1.43542,1.37539,0.009536,0.23008,0.0056,0.00464,0.007904,0.013696,0.014624,1.07725,0.012064
+677,550.575,1.81628,1.7471,0.00848,0.230752,0.004928,0.004288,0.007648,0.012832,0.014336,1.4497,0.014144
+678,460.976,2.16931,0.997376,0.009312,0.234464,0.005888,0.004288,0.008192,0.012288,0.014336,0.698368,0.01024
+679,482.962,2.07056,0.99328,0.008192,0.227008,0.004416,0.005504,0.006784,0.0136,0.014464,0.703072,0.01024
+680,1264,0.791138,1.3784,0.008288,0.229088,0.004384,0.005152,0.007136,0.013568,0.014592,1.08496,0.011232
+681,551.576,1.81299,1.00733,0.008736,0.241664,0.004256,0.005536,0.006752,0.0136,0.014656,0.702432,0.009696
+682,461.157,2.16846,1.02902,0.0112,0.263584,0.004672,0.00512,0.007136,0.01232,0.015424,0.700512,0.009056
+683,751.284,1.33105,0.98496,0.008192,0.227328,0.005536,0.004704,0.007328,0.01312,0.014368,0.694272,0.010112
+684,675.406,1.48059,1.2329,0.008192,0.232544,0.004928,0.004192,0.008224,0.01408,0.014432,0.702592,0.243712
+685,632.685,1.58057,1.00464,0.008224,0.237536,0.005792,0.004448,0.007456,0.013056,0.014304,0.704064,0.00976
+686,478.114,2.09155,1.01456,0.011168,0.24352,0.004288,0.005504,0.006784,0.013632,0.012992,0.706496,0.010176
+687,718.344,1.39209,1.00762,0.009344,0.230272,0.005568,0.004672,0.007168,0.012736,0.01488,0.712736,0.01024
+688,700.89,1.42676,0.99792,0.008576,0.23296,0.004768,0.005664,0.006624,0.01392,0.014784,0.70144,0.009184
+689,644.38,1.55188,1.00147,0.008192,0.224864,0.004512,0.00528,0.007008,0.01392,0.014464,0.712992,0.01024
+690,647.64,1.54407,1.83574,0.008768,0.23568,0.004096,0.005824,0.006464,0.014144,0.0144,1.53411,0.012256
+691,468.489,2.13452,1.00237,0.007072,0.230848,0.00464,0.005152,0.00688,0.012544,0.014336,0.710656,0.01024
+692,677.193,1.47668,1.00461,0.008192,0.245504,0.004352,0.00544,0.006848,0.01392,0.014496,0.696096,0.00976
+693,709.387,1.40967,1.16611,0.008928,0.405536,0.004256,0.0056,0.006688,0.014176,0.014528,0.696288,0.010112
+694,635.137,1.57446,1.72627,0.008416,0.237568,0.005312,0.004864,0.006304,0.01424,0.014336,1.4208,0.014432
+695,465.164,2.14978,0.998272,0.008704,0.233856,0.005664,0.004576,0.00736,0.013088,0.01424,0.701568,0.009216
+696,690.783,1.44763,1.04448,0.009344,0.25792,0.004928,0.004288,0.00784,0.013856,0.015008,0.721056,0.01024
+697,699.573,1.42944,1.37648,0.008416,0.235552,0.004064,0.005856,0.006432,0.013952,0.01472,1.07725,0.01024
+698,564.304,1.77209,1.75885,0.008192,0.2376,0.005248,0.004864,0.00624,0.014336,0.014368,1.45344,0.01456
+699,460.251,2.17273,0.996128,0.008192,0.232224,0.005696,0.004544,0.007456,0.013024,0.014336,0.701504,0.009152
+700,693.063,1.44287,0.997472,0.008256,0.229376,0.006144,0.004096,0.008224,0.013952,0.014368,0.70416,0.008896
+701,547.484,1.82654,1.42963,0.009792,0.272832,0.005696,0.004544,0.007424,0.013088,0.015328,1.08966,0.011264
+702,672.468,1.48706,1.75389,0.008672,0.233792,0.004096,0.0056,0.006688,0.013984,0.01424,1.4537,0.01312
+703,467.527,2.13892,1.00538,0.008672,0.23264,0.00496,0.004096,0.007872,0.012608,0.015616,0.70896,0.009952
+704,717.024,1.39465,0.999104,0.008416,0.227296,0.004096,0.005856,0.006432,0.014016,0.014688,0.708576,0.009728
+705,715.521,1.39758,1.38406,0.009248,0.230304,0.005408,0.004832,0.006336,0.014048,0.014432,1.08717,0.012288
+706,542.768,1.84241,1.7503,0.009312,0.2344,0.004096,0.00576,0.006528,0.014048,0.014208,1.44778,0.014176
+707,462.302,2.16309,1.00262,0.00944,0.231808,0.004512,0.00528,0.007008,0.0136,0.014656,0.706592,0.009728
+708,695.298,1.43823,1.00518,0.009472,0.228096,0.005792,0.004448,0.007456,0.013024,0.014336,0.712672,0.009888
+709,718.786,1.39124,1.24291,0.008928,0.233056,0.004512,0.00528,0.00704,0.012256,0.014336,0.71232,0.245184
+710,249.855,4.00232,1.02403,0.009472,0.250656,0.005888,0.00432,0.007584,0.012896,0.014368,0.708576,0.010272
+711,886.388,1.12817,1.07747,0.010528,0.294208,0.0048,0.004096,0.007968,0.012512,0.014336,0.718848,0.010176
+712,693.415,1.44214,1.03363,0.009632,0.252544,0.006112,0.004096,0.007968,0.012512,0.014368,0.716768,0.009632
+713,692.184,1.4447,1.03632,0.008192,0.266336,0.006048,0.004096,0.0072,0.013312,0.014304,0.707712,0.00912
+714,674.961,1.48157,1.37418,0.00928,0.234048,0.00448,0.004096,0.008064,0.013536,0.0144,1.07402,0.012256
+715,589.31,1.6969,1.01242,0.008576,0.241984,0.004096,0.005472,0.006816,0.013632,0.01472,0.70688,0.01024
+716,674.294,1.48303,0.995328,0.008192,0.228832,0.00464,0.005152,0.007136,0.013632,0.014528,0.70432,0.008896
+717,732.606,1.36499,1.3936,0.008864,0.225568,0.005312,0.004864,0.006208,0.01424,0.014336,1.10192,0.012288
+718,557.772,1.79285,1.33578,0.008544,0.234048,0.005472,0.004768,0.007968,0.012512,0.014336,1.03424,0.013888
+719,475.892,2.10132,1.03222,0.008192,0.251456,0.004544,0.005248,0.00704,0.013856,0.014816,0.7168,0.010272
+720,752.388,1.3291,0.997376,0.009632,0.225888,0.004096,0.005728,0.00656,0.01392,0.014336,0.706976,0.01024
+721,693.473,1.44202,1.24109,0.008192,0.224448,0.004928,0.004096,0.007968,0.012512,0.014368,0.953696,0.01088
+722,601.38,1.66284,0.987136,0.008064,0.227456,0.005184,0.004864,0.006336,0.014112,0.014016,0.698176,0.008928
+723,524.59,1.90625,1.01203,0.01088,0.235456,0.005376,0.004864,0.006304,0.01376,0.01456,0.710848,0.009984
+724,701.31,1.4259,1.0079,0.00832,0.227328,0.005568,0.004672,0.00752,0.01296,0.015424,0.717472,0.00864
+725,698.738,1.43115,1.00182,0.008448,0.229536,0.00544,0.0048,0.007744,0.012736,0.014336,0.708608,0.010176
+726,704.325,1.4198,1.1937,0.01024,0.405504,0.005152,0.004992,0.006272,0.014304,0.014336,0.722944,0.009952
+727,601.292,1.66309,1.68566,0.008768,0.516256,0.016384,0.005728,0.00656,0.014336,0.014336,1.09296,0.010336
+728,475.836,2.10156,0.997376,0.009536,0.23008,0.005536,0.004704,0.008224,0.014176,0.014176,0.701984,0.00896
+729,659.9,1.51538,1.03581,0.009376,0.246624,0.005216,0.004864,0.006304,0.01408,0.014624,0.72496,0.00976
+730,638.952,1.56506,1.30291,0.008576,0.527392,0.004992,0.004192,0.007744,0.014048,0.014336,0.712704,0.008928
+731,618.031,1.61804,1.8529,0.01008,0.241312,0.004608,0.005184,0.01472,0.012864,0.015744,1.53664,0.011744
+732,436.674,2.29004,1.00576,0.008448,0.234112,0.004096,0.005728,0.00656,0.014176,0.0144,0.708576,0.009664
+733,674.461,1.48267,1.008,0.008672,0.234848,0.004928,0.004192,0.007808,0.012704,0.0144,0.71056,0.009888
+734,679.665,1.47131,1.39222,0.008256,0.23136,0.00544,0.0048,0.007424,0.013056,0.01536,1.096,0.010528
+735,578.245,1.72937,1.75718,0.009248,0.234464,0.0056,0.00464,0.007296,0.019328,0.014368,1.4479,0.014336
+736,457.398,2.18628,1.01619,0.008576,0.243712,0.004096,0.005696,0.006592,0.013568,0.014304,0.710496,0.009152
+737,683.407,1.46326,1.01043,0.008768,0.229568,0.005664,0.004576,0.007392,0.01312,0.014464,0.71664,0.01024
+738,606.321,1.64929,1.38659,0.009792,0.234112,0.005856,0.004192,0.007168,0.013312,0.014336,1.08749,0.010336
+739,594.183,1.68298,1.85142,0.009312,0.238496,0.00576,0.00448,0.00752,0.014784,0.01456,1.54541,0.011104
+740,436.557,2.29065,1.01683,0.008352,0.23536,0.00512,0.004864,0.007616,0.01312,0.014336,0.7184,0.009664
+741,700.231,1.4281,1.01654,0.008736,0.22944,0.00448,0.005344,0.006944,0.013312,0.014368,0.723936,0.009984
+742,628.414,1.59131,1.24733,0.009632,0.460896,0.00464,0.005216,0.007072,0.014144,0.014304,0.722784,0.00864
+743,652.801,1.53186,1.86042,0.008416,0.236128,0.004096,0.005728,0.00656,0.01424,0.014432,1.55981,0.011008
+744,430.682,2.3219,1.00941,0.009376,0.232288,0.005472,0.004768,0.007872,0.012608,0.014336,0.712704,0.009984
+745,696.243,1.43628,1.00867,0.008192,0.230688,0.004832,0.004096,0.007968,0.012512,0.014336,0.716416,0.009632
+746,665.151,1.50342,1.39059,0.008224,0.230784,0.004704,0.004096,0.00784,0.0144,0.013696,1.09661,0.01024
+747,575.685,1.73706,1.32112,0.009312,0.238528,0.0056,0.004608,0.007328,0.013152,0.014336,0.71392,0.314336
+748,491.186,2.03589,1.01414,0.008608,0.235488,0.004096,0.00576,0.006528,0.014112,0.01424,0.716736,0.008576
+749,729.345,1.37109,1.00762,0.008192,0.231424,0.005696,0.004544,0.00736,0.01312,0.014336,0.712704,0.01024
+750,699.991,1.42859,1.38954,0.008672,0.231936,0.005888,0.004352,0.00768,0.0128,0.014336,1.09162,0.012256
+751,542.768,1.84241,1.28614,0.008256,0.235136,0.004416,0.005344,0.006944,0.0136,0.01424,0.709376,0.288832
+752,504.092,1.98376,1.0281,0.011968,0.241696,0.004384,0.005408,0.00688,0.013536,0.014496,0.719616,0.010112
+753,708.405,1.41162,0.995328,0.008192,0.228928,0.004544,0.005248,0.00704,0.012288,0.01536,0.7048,0.008928
+754,684.606,1.46069,1.24317,0.009472,0.22784,0.004352,0.00544,0.006848,0.01392,0.014336,0.950688,0.010272
+755,606.86,1.64783,1.02982,0.008416,0.2312,0.005216,0.004864,0.016544,0.014336,0.014304,0.725024,0.00992
+756,423.578,2.36084,1.06701,0.012256,0.26832,0.00432,0.005632,0.006432,0.013984,0.014464,0.732416,0.009184
+757,709.817,1.40881,1.03834,0.008192,0.253248,0.0048,0.005568,0.00672,0.0136,0.014304,0.722816,0.009088
+758,713.713,1.40112,1.01357,0.008224,0.247136,0.004736,0.004096,0.007968,0.012512,0.014336,0.704544,0.010016
+759,590.117,1.69458,1.03238,0.008736,0.243648,0.004352,0.005408,0.00688,0.013824,0.0144,0.72544,0.009696
+760,456.176,2.19214,1.03312,0.0112,0.237536,0.005408,0.004832,0.006336,0.014144,0.014336,0.729088,0.01024
+761,663.535,1.50708,0.996672,0.008256,0.230816,0.004704,0.004096,0.008032,0.01376,0.015104,0.702144,0.00976
+762,719.543,1.38977,1.02352,0.008256,0.233472,0.005472,0.004768,0.00736,0.01312,0.014336,0.72704,0.009696
+763,651.71,1.53442,1.0032,0.00832,0.229184,0.00416,0.005632,0.006656,0.013888,0.014496,0.710912,0.009952
+764,656.726,1.52271,1.65382,0.009824,0.448928,0.032768,0.00784,0.006496,0.014336,0.014336,1.10941,0.009888
+765,476.778,2.09741,1.03814,0.008128,0.233824,0.004128,0.005632,0.006656,0.013728,0.014528,0.741792,0.009728
+766,546.862,1.82861,1.01808,0.008416,0.243744,0.005632,0.004576,0.00736,0.01312,0.014208,0.712416,0.008608
+767,885.334,1.12952,1.19539,0.009664,0.405312,0.004864,0.004096,0.008,0.013984,0.01472,0.724832,0.00992
+768,573.549,1.74353,1.76845,0.008192,0.263712,0.004576,0.005184,0.007104,0.013376,0.01456,1.43638,0.01536
+769,449.394,2.22522,1.05472,0.008192,0.258048,0.005824,0.004416,0.007552,0.012928,0.014336,0.733184,0.01024
+770,683.863,1.46228,1.04035,0.009312,0.258656,0.004416,0.005376,0.006912,0.014336,0.014368,0.716768,0.010208
+771,649.386,1.53992,1.18346,0.008256,0.411296,0.004448,0.005408,0.00688,0.014336,0.014272,0.708672,0.009888
+772,668.462,1.49597,1.8536,0.008352,0.238752,0.00496,0.00544,0.006848,0.013728,0.014848,1.54976,0.010912
+773,437.981,2.2832,1.00576,0.008448,0.231168,0.004096,0.005696,0.006592,0.014016,0.014336,0.712384,0.009024
+774,681.701,1.46692,1.00352,0.008192,0.229408,0.005856,0.004352,0.008192,0.013792,0.014432,0.71024,0.009056
+775,663.374,1.50745,1.4087,0.00944,0.244512,0.005312,0.004832,0.006304,0.01392,0.014528,1.09904,0.010816
+776,518.35,1.9292,1.6943,0.0088,0.517984,0.006304,0.005696,0.006592,0.014336,0.015488,1.10886,0.01024
+777,485.049,2.06165,1.01379,0.00832,0.230912,0.004928,0.00416,0.008192,0.014048,0.014528,0.718944,0.00976
+778,740.888,1.34973,1.00995,0.008672,0.23072,0.00496,0.004096,0.007808,0.012672,0.014336,0.7168,0.009888
+779,667.264,1.49866,1.39386,0.008224,0.230784,0.004704,0.004096,0.008352,0.013952,0.014592,1.09878,0.010368
+780,552.17,1.81104,1.8616,0.008704,0.235264,0.004512,0.005792,0.006496,0.01392,0.0144,1.56093,0.011584
+781,434.704,2.30042,1.03014,0.008192,0.258048,0.005152,0.004864,0.006368,0.013472,0.013152,0.710656,0.01024
+782,728.437,1.3728,1.00797,0.008512,0.228832,0.00464,0.00512,0.00704,0.012416,0.015456,0.71568,0.010272
+783,675.908,1.47949,1.37789,0.009248,0.22544,0.004768,0.004256,0.007968,0.012544,0.014144,1.08918,0.010336
+784,519.731,1.92407,1.31478,0.008768,0.265472,0.004896,0.004256,0.007552,0.012928,0.014336,0.711936,0.28464
+785,517.139,1.93372,1.01008,0.011712,0.234464,0.004096,0.005792,0.006496,0.013824,0.014752,0.708704,0.01024
+786,744.524,1.34314,1.02269,0.008608,0.243648,0.00448,0.005312,0.006976,0.013568,0.014304,0.716928,0.008864
+787,699.573,1.42944,1.37984,0.008192,0.229376,0.005344,0.004864,0.006304,0.014208,0.014368,1.08518,0.012
+788,553.738,1.80591,1.77507,0.008192,0.230816,0.004704,0.004096,0.008064,0.012416,0.015456,1.4769,0.014432
+789,433.921,2.30457,1.05882,0.008192,0.266112,0.004224,0.005344,0.006944,0.012384,0.01552,0.729856,0.01024
+790,687.479,1.45459,1.02301,0.008384,0.242912,0.004704,0.004096,0.008064,0.012416,0.015584,0.717376,0.009472
+791,700.111,1.42834,1.39264,0.009248,0.234208,0.004352,0.00544,0.006848,0.013504,0.014496,1.09226,0.012288
+792,531.914,1.88,1.78122,0.008288,0.254304,0.005504,0.004736,0.0072,0.01328,0.014336,1.45818,0.015392
+793,467.233,2.14026,1.01174,0.008192,0.230464,0.004896,0.004256,0.00752,0.012992,0.014304,0.720032,0.009088
+794,702.392,1.42371,1.01046,0.008,0.224192,0.005568,0.004672,0.007264,0.013248,0.014304,0.724032,0.009184
+795,444.831,2.24805,1.4263,0.008864,0.253184,0.004896,0.004288,0.00768,0.0128,0.014336,1.10931,0.010944
+796,872.975,1.14551,1.3729,0.008576,0.284064,0.004928,0.004224,0.007776,0.012704,0.014336,1.02192,0.014368
+797,498.873,2.00452,1.03648,0.008384,0.253152,0.004896,0.004096,0.00784,0.01264,0.014368,0.722112,0.008992
+798,671.751,1.48865,1.0097,0.008224,0.229376,0.005344,0.004864,0.00624,0.014208,0.014368,0.716832,0.01024
+799,719.733,1.3894,1.39709,0.008544,0.231232,0.004288,0.005504,0.006784,0.013536,0.014464,1.10048,0.012256
+800,538.699,1.85632,1.33744,0.008,0.233728,0.005216,0.004864,0.006304,0.014336,0.014144,1.0015,0.049344
+801,499.847,2.00061,1.016,0.008352,0.230624,0.004896,0.004096,0.007904,0.012576,0.015616,0.72304,0.008896
+802,697.132,1.43445,1.02387,0.009728,0.242176,0.005792,0.004448,0.00752,0.01296,0.014336,0.7168,0.010112
+803,714.024,1.40051,1.24435,0.008192,0.227328,0.005344,0.004864,0.006176,0.014368,0.014336,0.952288,0.011456
+804,581.24,1.72046,0.999552,0.008192,0.230848,0.004672,0.004096,0.008032,0.012608,0.015328,0.706944,0.008832
+805,431.158,2.31934,1.06122,0.01168,0.279488,0.004096,0.005856,0.006432,0.014336,0.014368,0.71472,0.01024
+806,673.241,1.48535,1.05059,0.008384,0.264096,0.004192,0.0056,0.006688,0.013664,0.014272,0.72368,0.010016
+807,618.171,1.61768,1.33642,0.008192,0.321536,0.004096,0.005824,0.006464,0.014176,0.014528,0.95024,0.01136
+808,609.025,1.64197,1.02691,0.008736,0.24528,0.004896,0.004096,0.007904,0.012576,0.014496,0.720256,0.008672
+809,424.874,2.35364,1.05683,0.01168,0.266912,0.004096,0.005856,0.006464,0.013728,0.014336,0.72352,0.01024
+810,678.09,1.47473,1.0249,0.008672,0.246176,0.00592,0.00432,0.00768,0.012832,0.014304,0.714752,0.01024
+811,710.063,1.40833,1.44102,0.009472,0.26496,0.00576,0.00448,0.007616,0.012864,0.014336,1.10912,0.012416
+812,507.559,1.97021,1.3312,0.008224,0.239584,0.005312,0.004864,0.00624,0.014304,0.014336,1.00966,0.028672
+813,428.116,2.33582,1.03635,0.0088,0.251808,0.004224,0.005536,0.006752,0.013472,0.01456,0.721312,0.009888
+814,829.318,1.20581,1.05056,0.008224,0.270336,0.005248,0.004832,0.006272,0.014368,0.014304,0.7168,0.010176
+815,671.31,1.48962,1.26736,0.009536,0.250592,0.005664,0.004544,0.007392,0.01312,0.014304,0.950272,0.011936
+816,617.146,1.62036,1.0623,0.009664,0.272832,0.004224,0.005568,0.00672,0.013632,0.014432,0.7256,0.009632
+817,529.062,1.89014,1.24717,0.0328,0.433696,0.004608,0.006144,0.007744,0.014048,0.0144,0.723616,0.010112
+818,646.567,1.54663,1.02198,0.008192,0.232608,0.004928,0.004128,0.007904,0.012672,0.014336,0.728288,0.008928
+819,600.147,1.66626,1.04307,0.008768,0.24912,0.004896,0.004096,0.008192,0.013472,0.015104,0.73024,0.009184
+820,586.064,1.7063,1.05267,0.009664,0.258624,0.005728,0.004512,0.007392,0.01312,0.014304,0.729088,0.01024
+821,445.266,2.24585,1.02896,0.011072,0.244896,0.004928,0.004128,0.007872,0.01376,0.01456,0.718656,0.009088
+822,632.636,1.58069,1.04829,0.008192,0.239616,0.004096,0.00576,0.006528,0.014304,0.014368,0.745472,0.009952
+823,733.656,1.36304,1.03629,0.008192,0.243712,0.004096,0.005856,0.006432,0.013952,0.014336,0.729504,0.010208
+824,600.366,1.66565,1.04858,0.008416,0.263104,0.004896,0.00416,0.00784,0.014528,0.014496,0.721952,0.009184
+825,456.023,2.19287,1.04144,0.011264,0.25376,0.004288,0.005504,0.006784,0.013728,0.014048,0.721792,0.010272
+826,681.587,1.46716,1.02605,0.008512,0.233344,0.004224,0.005568,0.00672,0.014112,0.0144,0.729248,0.00992
+827,709.879,1.40869,1.00973,0.008288,0.233376,0.004192,0.0056,0.007744,0.013152,0.014048,0.71312,0.010208
+828,630.639,1.58569,1.02029,0.008448,0.231424,0.004096,0.006144,0.007168,0.013344,0.014336,0.726656,0.008672
+829,658.998,1.51746,1.67069,0.009248,0.447456,0.034816,0.021824,0.006848,0.014144,0.014528,1.11184,0.009984
+830,503.813,1.98486,1.02992,0.009504,0.238304,0.005376,0.004864,0.007296,0.013216,0.014304,0.72704,0.010016
+831,650.572,1.53711,1.01786,0.008256,0.234624,0.004896,0.004128,0.007904,0.012576,0.014336,0.72208,0.009056
+832,705.113,1.41821,1.19043,0.008672,0.405408,0.004256,0.005568,0.00672,0.014208,0.014368,0.722272,0.00896
+833,621.595,1.60876,1.80224,0.009568,0.24192,0.004512,0.005248,0.00704,0.013856,0.014752,1.49277,0.012576
+834,410.524,2.43591,1.03469,0.008512,0.237696,0.005536,0.004704,0.0072,0.01328,0.014336,0.734208,0.009216
+835,681.814,1.46667,1.08384,0.008448,0.288992,0.00576,0.004448,0.007488,0.012992,0.015584,0.729888,0.01024
+836,619.433,1.61438,1.188,0.007776,0.405312,0.004864,0.004096,0.008032,0.013728,0.014304,0.719648,0.01024
+837,667.753,1.49756,1.87622,0.008128,0.244,0.005856,0.004384,0.007616,0.012864,0.014368,1.56794,0.011072
+838,420.793,2.37646,1.02179,0.009472,0.238176,0.004256,0.005504,0.00784,0.01328,0.014336,0.718848,0.01008
+839,729.865,1.37012,1.04643,0.008352,0.259168,0.004896,0.004224,0.007712,0.012768,0.014368,0.72496,0.009984
+840,708.712,1.41101,1.21158,0.008352,0.417376,0.004512,0.005312,0.006976,0.013888,0.014496,0.731168,0.009504
+841,584.475,1.71094,1.3304,0.008224,0.247776,0.004096,0.005792,0.006496,0.014016,0.014272,1.01619,0.013536
+842,507.653,1.96985,1.01555,0.009376,0.233824,0.004608,0.005792,0.006528,0.013856,0.014016,0.717568,0.009984
+843,655.36,1.52588,1.05507,0.008896,0.263712,0.004832,0.004096,0.008192,0.013792,0.014144,0.727744,0.009664
+844,714.46,1.39966,1.4081,0.008192,0.232864,0.004704,0.004096,0.008032,0.013504,0.014656,1.11008,0.011968
+845,535.95,1.86584,1.33251,0.008064,0.245024,0.004928,0.004128,0.00784,0.01264,0.014336,1.00336,0.032192
+846,490.451,2.03894,1.05248,0.009696,0.262688,0.00416,0.005696,0.006528,0.014336,0.014336,0.724992,0.010048
+847,683.578,1.46289,1.04048,0.008768,0.241664,0.005664,0.004576,0.00736,0.013152,0.014304,0.7352,0.009792
+848,681.758,1.4668,1.43427,0.00864,0.241696,0.004288,0.005472,0.006816,0.024576,0.015776,1.11584,0.011168
+849,390.933,2.55798,1.36227,0.008192,0.233632,0.004288,0.005504,0.007808,0.013344,0.014304,1.06394,0.011264
+850,781.307,1.27991,1.03411,0.008192,0.233472,0.005504,0.004736,0.006144,0.014336,0.014336,0.73728,0.010112
+851,707.549,1.41333,1.00941,0.008192,0.22736,0.005376,0.004832,0.007456,0.013024,0.014368,0.718816,0.009984
+852,577.308,1.73218,1.28707,0.009088,0.26208,0.004192,0.00592,0.006368,0.01408,0.014592,0.960256,0.010496
+853,647.077,1.54541,1.0265,0.008544,0.237376,0.004352,0.005472,0.006816,0.013696,0.014528,0.726528,0.009184
+854,687.652,1.45422,1.66365,0.007968,0.455072,0.032672,0.00672,0.007808,0.014048,0.014112,1.11501,0.01024
+855,473.937,2.10999,1.03203,0.008672,0.235776,0.005408,0.004832,0.007904,0.012672,0.014304,0.732512,0.009952
+856,684.835,1.46021,1.04518,0.008096,0.234272,0.005184,0.005056,0.006336,0.014144,0.014336,0.749248,0.008512
+857,587.156,1.70312,1.02208,0.00832,0.233472,0.005792,0.004448,0.007488,0.013024,0.014304,0.726112,0.00912
+858,634.744,1.57544,1.65699,0.00928,0.46512,0.006912,0.005088,0.00704,0.01392,0.014496,1.12474,0.0104
+859,492.663,2.02979,1.03219,0.008192,0.235072,0.004544,0.005792,0.006496,0.01392,0.014656,0.734592,0.008928
+860,691.425,1.44629,1.01629,0.008608,0.229376,0.005504,0.004736,0.007264,0.013216,0.014368,0.724576,0.00864
+861,541.727,1.84595,1.03424,0.009472,0.24448,0.004096,0.005792,0.006496,0.013792,0.01488,0.72608,0.009152
+862,806.299,1.24023,1.75398,0.007072,0.563104,0.00624,0.005728,0.006528,0.014336,0.014176,1.12656,0.01024
+863,462.616,2.16162,1.0111,0.008224,0.232416,0.004928,0.004288,0.007648,0.012832,0.015456,0.715552,0.00976
+864,718.344,1.39209,1.03453,0.00848,0.243712,0.005728,0.004512,0.007424,0.013056,0.014336,0.72704,0.01024
+865,692.828,1.44336,1.19658,0.008736,0.40544,0.004128,0.005728,0.00656,0.014368,0.014304,0.728384,0.008928
+866,603.685,1.65649,1.76947,0.008192,0.233472,0.006112,0.004128,0.007872,0.012672,0.015424,1.46726,0.014336
+867,434.773,2.30005,1.06029,0.008448,0.258048,0.004096,0.005856,0.006432,0.014048,0.014304,0.739328,0.009728
+868,718.849,1.39111,1.0511,0.008672,0.233568,0.00544,0.0048,0.006368,0.014112,0.014336,0.753664,0.010144
+869,681.191,1.46802,1.23878,0.009376,0.44096,0.00432,0.005504,0.006784,0.01424,0.014368,0.733248,0.009984
+870,587.914,1.70093,1.89235,0.009312,0.252832,0.005536,0.004704,0.007168,0.013312,0.014336,1.57389,0.011264
+871,419.887,2.38159,1.01782,0.008736,0.233632,0.005344,0.004864,0.006208,0.014304,0.014336,0.720608,0.009792
+872,679.158,1.47241,1.01766,0.008192,0.229376,0.00544,0.0048,0.006144,0.014336,0.014336,0.724992,0.010048
+873,693.884,1.44116,1.20515,0.007104,0.405472,0.005792,0.004448,0.007584,0.012896,0.015392,0.736224,0.01024
+874,608.98,1.64209,1.86166,0.0088,0.231648,0.005152,0.004832,0.0064,0.014112,0.01408,1.56512,0.01152
+875,437.047,2.28809,1.03722,0.008448,0.230048,0.005568,0.004672,0.007456,0.013024,0.014336,0.743424,0.01024
+876,668.516,1.49585,1.0192,0.008192,0.2288,0.004672,0.004096,0.008064,0.013856,0.01424,0.727744,0.009536
+877,715.959,1.39673,1.38525,0.008992,0.229472,0.005664,0.004128,0.006496,0.013984,0.014528,1.09174,0.01024
+878,560.865,1.78296,1.70835,0.008512,0.507616,0.028992,0.005536,0.00672,0.014304,0.014304,1.11318,0.009184
+879,377.094,2.65186,1.03834,0.008192,0.255136,0.004896,0.00416,0.00784,0.014048,0.014368,0.719456,0.01024
+880,974.542,1.02612,1.07789,0.008672,0.283808,0.005024,0.00416,0.007872,0.012608,0.015552,0.72992,0.010272
+881,671.145,1.48999,1.42954,0.008256,0.26384,0.004352,0.00544,0.006912,0.012288,0.015392,1.10282,0.01024
+882,550.02,1.81812,1.81453,0.008416,0.259872,0.00512,0.004864,0.0064,0.014016,0.014656,1.48819,0.012992
+883,445.653,2.2439,1.02006,0.007872,0.232,0.004096,0.00576,0.006528,0.014144,0.014528,0.724992,0.010144
+884,711.853,1.40479,1.01418,0.008608,0.229376,0.005536,0.004704,0.008192,0.01424,0.014432,0.719968,0.00912
+885,679.834,1.47095,1.31072,0.008192,0.513024,0.004992,0.004224,0.007488,0.01408,0.014336,0.734144,0.01024
+886,580.334,1.72314,1.84733,0.008192,0.234816,0.0048,0.004096,0.00816,0.013408,0.014464,1.54819,0.0112
+887,452.697,2.20898,1.03683,0.00848,0.2296,0.005536,0.004672,0.00736,0.013184,0.014304,0.744704,0.008992
+888,682.212,1.46582,1.04858,0.008192,0.231424,0.005216,0.004864,0.007904,0.012736,0.014336,0.753664,0.01024
+889,622.209,1.60718,1.4273,0.008576,0.26624,0.005536,0.004288,0.00784,0.013056,0.014336,1.09693,0.010496
+890,554.863,1.80225,1.8247,0.008224,0.268256,0.00512,0.004864,0.006432,0.014016,0.014656,1.48886,0.014272
+891,423.053,2.36377,1.0608,0.00816,0.260224,0.005312,0.004832,0.00624,0.014368,0.014336,0.737248,0.01008
+892,750.733,1.33203,1.04038,0.008416,0.239424,0.00544,0.004768,0.007232,0.013248,0.014336,0.738624,0.008896
+893,706.207,1.41602,1.23539,0.008672,0.440288,0.005152,0.004864,0.006368,0.014336,0.014336,0.731136,0.01024
+894,601.468,1.6626,1.86586,0.008832,0.2368,0.004864,0.004096,0.007872,0.012608,0.015392,1.56362,0.011776
+895,426.756,2.34326,1.02013,0.008416,0.231296,0.004224,0.005568,0.008384,0.012672,0.014336,0.726208,0.009024
+896,716.334,1.396,1.04694,0.008032,0.229344,0.004704,0.004096,0.008,0.013536,0.01328,0.757152,0.0088
+897,644.126,1.55249,1.46637,0.009568,0.291488,0.005376,0.004864,0.007712,0.012768,0.014336,1.11002,0.01024
+898,488.9,2.04541,1.8537,0.008736,0.266272,0.0056,0.004608,0.007328,0.013184,0.014304,1.52093,0.012736
+899,454.253,2.20142,1.03168,0.008224,0.23184,0.00576,0.00448,0.008192,0.014144,0.014528,0.734912,0.0096
+900,657.992,1.51978,1.01738,0.009696,0.22992,0.00528,0.004832,0.006272,0.01424,0.014464,0.722912,0.00976
+901,741.357,1.34888,1.204,0.008192,0.404896,0.004704,0.005376,0.006912,0.014368,0.014304,0.735232,0.010016
+902,634.154,1.5769,1.8656,0.00944,0.234272,0.005696,0.004544,0.007328,0.013184,0.01424,1.56477,0.012128
+903,438.638,2.27979,1.05546,0.008032,0.250656,0.005216,0.004864,0.006304,0.013824,0.014304,0.743296,0.00896
+904,668.844,1.49512,1.02173,0.008192,0.231424,0.00512,0.004864,0.007808,0.012928,0.014336,0.72704,0.010016
+905,679.045,1.47266,1.19734,0.008416,0.40528,0.00528,0.004864,0.006304,0.014272,0.014336,0.728768,0.009824
+906,652.333,1.53296,1.8769,0.008704,0.233888,0.005536,0.004704,0.008,0.01248,0.014336,1.5785,0.010752
+907,403.626,2.47754,1.02259,0.00848,0.2376,0.004416,0.005408,0.00688,0.013536,0.01472,0.721344,0.010208
+908,751.836,1.33008,1.02352,0.00944,0.229952,0.00432,0.005504,0.006784,0.014176,0.014496,0.729088,0.00976
+909,679.721,1.47119,1.40186,0.009216,0.242464,0.00432,0.005536,0.006528,0.012512,0.014368,1.09565,0.011264
+910,544.681,1.83594,1.85261,0.008192,0.231424,0.005632,0.004608,0.00736,0.01312,0.014336,1.55645,0.011488
+911,435.42,2.29663,1.01555,0.007872,0.22896,0.004928,0.00544,0.00688,0.013728,0.01488,0.723008,0.009856
+912,685.867,1.45801,1.04586,0.008192,0.255776,0.00432,0.005472,0.006816,0.013728,0.014496,0.727232,0.009824
+913,697.429,1.43384,1.24288,0.008352,0.445792,0.004608,0.005216,0.007104,0.014016,0.014624,0.733184,0.009984
+914,602.353,1.66016,1.79194,0.008192,0.228448,0.004928,0.004192,0.007712,0.012768,0.014336,1.49821,0.013152
+915,459.863,2.17456,1.04038,0.0096,0.231392,0.004768,0.004096,0.008192,0.01408,0.014496,0.74464,0.00912
+916,449.024,2.22705,1.06336,0.008576,0.254016,0.005376,0.004864,0.007232,0.013248,0.014336,0.745472,0.01024
+917,1143.81,0.874268,1.40224,0.00928,0.238528,0.006144,0.004096,0.007744,0.012736,0.015424,1.09811,0.010176
+918,532.848,1.87671,1.85901,0.008192,0.231456,0.005792,0.004416,0.007488,0.012992,0.014368,1.56259,0.011712
+919,453.7,2.2041,1.044,0.00944,0.231936,0.004384,0.005376,0.008384,0.012864,0.014368,0.747456,0.009792
+920,705.234,1.41797,1.01389,0.00832,0.227328,0.005344,0.004864,0.006304,0.014016,0.01424,0.724544,0.008928
+921,708.038,1.41235,1.24717,0.008192,0.442112,0.004384,0.005472,0.006784,0.01424,0.014432,0.741376,0.010176
+922,593.881,1.68384,1.78,0.008288,0.229024,0.004608,0.004096,0.008192,0.013504,0.014592,1.48333,0.014368
+923,457.245,2.18701,1.03424,0.009568,0.233344,0.004896,0.004096,0.00784,0.012736,0.01424,0.73728,0.01024
+924,638.305,1.56665,1.06483,0.008352,0.249696,0.005696,0.004544,0.00736,0.013152,0.014304,0.751616,0.010112
+925,716.334,1.396,1.40288,0.008192,0.2328,0.004768,0.004096,0.007968,0.0136,0.01472,1.1065,0.01024
+926,557.052,1.79517,1.89046,0.008352,0.233152,0.004416,0.005376,0.006912,0.012288,0.014336,1.59469,0.010944
+927,437.934,2.28345,1.03427,0.00848,0.23184,0.005792,0.004448,0.00816,0.013504,0.014592,0.737696,0.00976
+928,684.95,1.45996,1.03421,0.008416,0.230848,0.004672,0.005152,0.007136,0.013952,0.014048,0.74,0.009984
+929,652.333,1.53296,1.42806,0.00832,0.253984,0.004544,0.004096,0.007968,0.012512,0.015712,1.11069,0.01024
+930,540.869,1.84888,1.7999,0.008256,0.232768,0.0048,0.004096,0.007936,0.012544,0.014368,1.50115,0.013984
+931,455.82,2.19385,1.02454,0.008736,0.23488,0.004736,0.004096,0.008032,0.012448,0.015616,0.72704,0.00896
+932,700.291,1.42798,1.03014,0.008608,0.233408,0.004672,0.005152,0.006752,0.012672,0.014336,0.734816,0.009728
+933,665.151,1.50342,1.4089,0.008192,0.235136,0.00416,0.004416,0.00816,0.013728,0.014432,1.11043,0.01024
+934,472.107,2.11816,1.81568,0.009568,0.276896,0.004352,0.00544,0.006848,0.013568,0.014208,1.46931,0.015488
+935,527.563,1.89551,1.07802,0.007136,0.257888,0.004256,0.005536,0.007904,0.013216,0.014304,0.75776,0.010016
+936,633.467,1.57861,1.02554,0.008192,0.233088,0.00448,0.005312,0.006976,0.014304,0.0144,0.729056,0.009728
+937,736.558,1.35767,1.21408,0.008224,0.419104,0.0048,0.004096,0.008224,0.013888,0.01456,0.731328,0.009856
+938,615.385,1.625,1.76794,0.008672,0.234944,0.004704,0.004096,0.008,0.01248,0.01536,1.46534,0.014336
+939,461.729,2.16577,1.02605,0.008192,0.235552,0.005152,0.004864,0.008,0.012672,0.014496,0.72688,0.01024
+940,685.294,1.45923,1.04042,0.008192,0.232864,0.004704,0.004096,0.008192,0.014016,0.014432,0.745152,0.008768
+941,697.429,1.43384,1.40934,0.007136,0.230624,0.004864,0.004096,0.00816,0.01232,0.014336,1.11616,0.011648
+942,525.802,1.90186,1.78806,0.008352,0.23552,0.005856,0.004384,0.007936,0.013568,0.014432,1.48362,0.0144
+943,392.412,2.54834,1.09312,0.008192,0.290464,0.004448,0.005312,0.006976,0.01376,0.014496,0.739744,0.009728
+944,889.468,1.12427,1.02992,0.008192,0.231424,0.005248,0.004896,0.00624,0.014336,0.014368,0.7352,0.010016
+945,619.012,1.61548,1.3985,0.00816,0.229888,0.005536,0.004704,0.006144,0.014144,0.014368,1.10525,0.010304
+946,594.657,1.68164,1.33939,0.009504,0.238304,0.005184,0.004832,0.00784,0.012736,0.014336,1.00774,0.038912
+947,507.811,1.96924,1.0272,0.008192,0.233408,0.00416,0.0056,0.006688,0.01408,0.014528,0.730752,0.009792
+948,673.463,1.48486,1.04378,0.009504,0.23344,0.0048,0.004096,0.008192,0.01424,0.014432,0.745472,0.0096
+949,683.692,1.46265,1.4176,0.00832,0.23168,0.005856,0.004384,0.007648,0.012928,0.014272,1.12026,0.012256
+950,544.247,1.8374,1.3616,0.009632,0.245824,0.00464,0.00592,0.006368,0.013632,0.01424,1.04938,0.011968
+951,487.387,2.05176,1.06342,0.008768,0.26032,0.00416,0.0056,0.006688,0.0136,0.014528,0.739872,0.009888
+952,677.473,1.47607,1.04128,0.008896,0.23776,0.005248,0.004864,0.006336,0.01392,0.01424,0.741088,0.008928
+953,687.364,1.45483,1.4296,0.008288,0.253088,0.004896,0.00416,0.008192,0.01344,0.014656,1.11062,0.012256
+954,525.6,1.90259,1.34675,0.008192,0.24128,0.00448,0.005312,0.006976,0.013632,0.014272,1.0017,0.050912
+955,487.619,2.05078,1.04448,0.008192,0.236704,0.004928,0.004128,0.008192,0.013984,0.014592,0.74352,0.01024
+956,732.475,1.36523,1.02598,0.008576,0.235488,0.004096,0.005728,0.00656,0.013952,0.014496,0.727264,0.009824
+957,694.944,1.43896,1.2575,0.008416,0.244,0.004544,0.005248,0.00704,0.01392,0.0144,0.948576,0.01136
+958,548.694,1.82251,1.05677,0.008192,0.24912,0.004768,0.00416,0.007904,0.0136,0.013312,0.745504,0.010208
+959,426.223,2.34619,1.06442,0.011808,0.247552,0.004832,0.004096,0.007936,0.012544,0.015552,0.750272,0.009824
+960,730.385,1.36914,1.03779,0.00832,0.239488,0.004224,0.0056,0.006688,0.014304,0.014368,0.73504,0.00976
+961,671.586,1.48901,1.25747,0.008192,0.239264,0.004448,0.005312,0.006976,0.01344,0.014592,0.954656,0.010592
+962,580.663,1.72217,1.03197,0.00784,0.242592,0.005504,0.004736,0.007232,0.013248,0.015552,0.725696,0.009568
+963,599.268,1.6687,1.65709,0.008608,0.457888,0.0152,0.005888,0.007648,0.013088,0.015552,1.12301,0.010208
+964,537.674,1.85986,1.04912,0.008704,0.241632,0.004224,0.005568,0.00672,0.014016,0.01392,0.74416,0.010176
+965,698.857,1.43091,1.01811,0.009248,0.230368,0.00512,0.004864,0.0064,0.01392,0.014752,0.724512,0.008928
+966,613.174,1.63086,1.03174,0.009568,0.24176,0.004672,0.004096,0.008192,0.014272,0.0144,0.724992,0.009792
+967,654.209,1.52856,1.65478,0.00832,0.448384,0.032768,0.005664,0.006624,0.014336,0.014336,1.11411,0.01024
+968,494.03,2.02417,1.03024,0.008544,0.2336,0.005824,0.004416,0.008192,0.013472,0.014496,0.73184,0.009856
+969,705.113,1.41821,1.04541,0.008864,0.229632,0.005344,0.004832,0.00624,0.01424,0.014432,0.75264,0.009184
+970,600.059,1.6665,1.04448,0.009408,0.242496,0.004096,0.005664,0.006624,0.014336,0.014336,0.73728,0.01024
+971,381.378,2.62207,1.8089,0.008128,0.258432,0.004288,0.00528,0.007008,0.013504,0.014304,1.48387,0.01408
+972,931.756,1.07324,1.03408,0.008192,0.236896,0.004608,0.004096,0.007392,0.013248,0.014368,0.735392,0.009888
+973,734.05,1.3623,1.03219,0.007616,0.231552,0.004544,0.004096,0.007904,0.012576,0.014528,0.739136,0.01024
+974,697.31,1.43408,1.01789,0.008192,0.225024,0.004192,0.00416,0.00624,0.01344,0.014464,0.731936,0.01024
+975,693.297,1.44238,1.03405,0.007648,0.231232,0.004832,0.004096,0.007232,0.013248,0.014368,0.741344,0.010048
+976,684.95,1.45996,1.25731,0.007872,0.24624,0.004192,0.00432,0.006208,0.013824,0.0128,0.950272,0.011584
+977,636.222,1.57178,1.02979,0.008384,0.235968,0.00576,0.00448,0.007456,0.013024,0.014336,0.730688,0.009696
+978,688.403,1.45264,1.02774,0.00832,0.227296,0.005184,0.004864,0.006368,0.014304,0.014336,0.73728,0.009792
+979,663.535,1.50708,1.01645,0.008864,0.231456,0.005152,0.004832,0.0064,0.014016,0.014368,0.721184,0.010176
+980,703.055,1.42236,1.77357,0.008384,0.235328,0.005216,0.004864,0.007808,0.013888,0.01472,1.47034,0.013024
+981,352.556,2.83643,1.06157,0.008,0.267136,0.005536,0.004704,0.00752,0.01296,0.014336,0.731136,0.01024
+982,725.469,1.37842,1.25747,0.00832,0.241536,0.004096,0.005792,0.006496,0.013856,0.014496,0.952256,0.010624
+983,568.652,1.75854,1.0591,0.00848,0.262144,0.005408,0.004832,0.0072,0.013056,0.014208,0.734656,0.00912
+984,614.369,1.62769,1.67786,0.008096,0.453376,0.03072,0.0056,0.006688,0.014272,0.014432,1.13456,0.010112
+985,525.061,1.90454,1.05043,0.008832,0.236992,0.004864,0.004096,0.007904,0.012576,0.01536,0.749888,0.00992
+986,654.731,1.52734,1.02605,0.008192,0.239616,0.005504,0.004736,0.007232,0.01328,0.014304,0.724064,0.00912
+987,634.35,1.57642,1.04048,0.008288,0.237568,0.005824,0.004416,0.007552,0.012928,0.014336,0.739328,0.01024
+988,646.669,1.54639,1.70058,0.008896,0.4424,0.007456,0.004704,0.018432,0.04112,0.014304,1.15302,0.01024
+989,483.818,2.06689,1.02851,0.008608,0.235424,0.004192,0.005568,0.00672,0.014272,0.014272,0.729376,0.01008
+990,420.103,2.38037,1.16445,0.018272,0.35024,0.004224,0.006112,0.006304,0.014208,0.022272,0.732928,0.009888
+991,1102.56,0.906982,1.0519,0.008192,0.239616,0.00576,0.00448,0.00752,0.014688,0.01408,0.747712,0.009856
+992,687.71,1.4541,1.32509,0.008224,0.233472,0.00576,0.00448,0.007296,0.013184,0.014336,1.01718,0.021152
+993,502.7,1.98926,1.04854,0.008192,0.251936,0.005248,0.004864,0.007424,0.012992,0.014368,0.733312,0.010208
+994,642.51,1.5564,1.0711,0.0096,0.282368,0.004928,0.00416,0.00784,0.013984,0.014208,0.723776,0.01024
+995,677.361,1.47632,1.2001,0.008192,0.405984,0.005536,0.004704,0.007264,0.013216,0.014336,0.731072,0.009792
+996,623.63,1.60352,1.04637,0.008224,0.247744,0.004128,0.006144,0.007328,0.013152,0.014336,0.735232,0.01008
+997,658.521,1.51855,1.6815,0.008288,0.45056,0.034848,0.005888,0.007808,0.014016,0.013216,1.13664,0.01024
+998,470.696,2.12451,1.0447,0.008416,0.237344,0.00432,0.005408,0.00688,0.013792,0.014688,0.743616,0.01024
+999,389.206,2.56934,1.42915,0.008512,0.241632,0.005728,0.004512,0.008224,0.013856,0.014272,1.12218,0.01024
+1000,1037.49,0.963867,1.05267,0.00928,0.250816,0.005472,0.004768,0.007488,0.012992,0.014336,0.73728,0.01024
+1001,398.948,2.50659,1.09046,0.0112,0.290816,0.005536,0.004672,0.0072,0.01312,0.014496,0.733216,0.010208
+1002,715.709,1.39722,1.05859,0.007936,0.24,0.005824,0.004416,0.007584,0.021088,0.030304,0.731584,0.009856
+1003,584.391,1.71118,1.06243,0.009504,0.25264,0.005536,0.004704,0.007328,0.013152,0.02048,0.739168,0.00992
+1004,696.836,1.43506,1.87805,0.009408,0.234304,0.005664,0.004576,0.007424,0.013056,0.014336,1.57805,0.011232
+1005,446.139,2.24146,1.03219,0.008192,0.23472,0.004896,0.004096,0.007936,0.012544,0.014336,0.735232,0.01024
+1006,637.311,1.56909,1.07712,0.008192,0.264192,0.004096,0.005728,0.00656,0.016448,0.030656,0.731136,0.010112
+1007,661.285,1.51221,1.04717,0.008928,0.24112,0.004736,0.004096,0.008032,0.012512,0.015328,0.742368,0.010048
+1008,450.952,2.21753,1.94189,0.008576,0.289344,0.0056,0.004608,0.00736,0.013152,0.014336,1.58717,0.011744
+1009,576.333,1.73511,1.07629,0.009248,0.27104,0.004384,0.005376,0.006912,0.01392,0.014464,0.74112,0.009824
+1010,635.039,1.57471,1.05638,0.008288,0.256,0.00544,0.0048,0.006144,0.014368,0.014336,0.737248,0.00976
+1011,629.089,1.5896,1.07146,0.008512,0.272384,0.00528,0.004832,0.006304,0.013888,0.01424,0.737056,0.00896
+1012,701.73,1.42505,1.03974,0.008192,0.249728,0.004224,0.0056,0.006688,0.014336,0.014336,0.72688,0.00976
+1013,652.229,1.5332,1.67574,0.008992,0.44976,0.035456,0.012448,0.008032,0.013824,0.014208,1.1231,0.00992
+1014,469.187,2.13135,1.05632,0.008192,0.251904,0.005504,0.004736,0.00736,0.01312,0.015424,0.740288,0.009792
+1015,708.896,1.41064,1.19856,0.008672,0.4048,0.0048,0.004096,0.007968,0.013984,0.014656,0.730592,0.008992
+1016,604.754,1.65356,1.90413,0.008224,0.242688,0.004928,0.004256,0.007712,0.012768,0.014336,1.59747,0.011744
+1017,411.328,2.43115,1.05462,0.008736,0.251936,0.005856,0.004384,0.007552,0.012928,0.014336,0.739072,0.009824
+1018,692.945,1.44312,1.03619,0.0096,0.23616,0.005536,0.004704,0.007296,0.013184,0.014368,0.735232,0.010112
+1019,671.145,1.48999,1.21373,0.008192,0.405504,0.005696,0.005568,0.007072,0.01424,0.014528,0.743072,0.009856
+1020,321.381,3.11157,1.06086,0.012192,0.256096,0.005312,0.004864,0.006304,0.014208,0.014368,0.738592,0.008928
+1021,696.007,1.43677,1.03834,0.00944,0.232224,0.004096,0.005792,0.006496,0.013856,0.014624,0.741568,0.01024
+1022,695.416,1.43799,1.24518,0.008192,0.228416,0.004896,0.004256,0.008,0.013888,0.014336,0.950912,0.012288
+1023,575.604,1.7373,1.04038,0.008192,0.232544,0.004928,0.004192,0.007936,0.012544,0.014464,0.746752,0.008832
+1024,504.558,1.98193,1.23085,0.011872,0.4384,0.005568,0.004896,0.006304,0.01424,0.014336,0.726368,0.008864
+1025,609.524,1.64062,1.03184,0.008704,0.23552,0.005664,0.004576,0.007424,0.012992,0.0144,0.732544,0.010016
+1026,656.2,1.52393,1.30048,0.008192,0.241664,0.005792,0.004448,0.00752,0.01296,0.014336,0.994784,0.010784
+1027,590.372,1.69385,1.03885,0.008736,0.243616,0.00464,0.005184,0.007104,0.013376,0.013344,0.733088,0.00976
+1028,699.215,1.43018,1.83091,0.008128,0.243776,0.004096,0.005696,0.006592,0.013856,0.014464,1.52198,0.01232
+1029,441.379,2.26562,1.03488,0.008256,0.23616,0.005408,0.004832,0.007264,0.013216,0.014336,0.735232,0.010176
+1030,700.89,1.42676,1.02579,0.008608,0.233568,0.00416,0.0056,0.00672,0.013696,0.01472,0.72864,0.01008
+1031,613.909,1.62891,1.02982,0.008192,0.231328,0.004192,0.0056,0.00672,0.013408,0.014656,0.735808,0.00992
+1032,655.57,1.52539,1.69696,0.008352,0.449952,0.037312,0.00544,0.00688,0.01408,0.014304,1.15085,0.009792
+1033,472.107,2.11816,1.05472,0.008192,0.256,0.004096,0.005696,0.006592,0.01344,0.014848,0.735648,0.010208
+1034,691.075,1.44702,1.02771,0.007904,0.234304,0.004096,0.005824,0.006464,0.014144,0.014272,0.730944,0.00976
+1035,537.321,1.86108,1.06496,0.0096,0.272896,0.004224,0.005568,0.00672,0.013728,0.014976,0.727008,0.01024
+1036,814.962,1.22705,1.81997,0.008192,0.262144,0.005504,0.004736,0.007296,0.013184,0.014336,1.49094,0.013632
+1037,454.757,2.19897,1.02419,0.008064,0.233632,0.005728,0.004512,0.007616,0.012864,0.014336,0.728544,0.008896
+1038,704.749,1.41895,1.03584,0.009408,0.234336,0.005408,0.0048,0.007264,0.01312,0.014432,0.737152,0.00992
+1039,679.834,1.47095,1.19821,0.008896,0.404928,0.004896,0.004096,0.007936,0.01376,0.01504,0.728928,0.009728
+1040,592.85,1.68677,1.81178,0.009248,0.2424,0.004352,0.00544,0.006848,0.013728,0.014336,1.50179,0.013632
+1041,451.898,2.21289,1.04448,0.008192,0.235488,0.004128,0.005664,0.00784,0.01312,0.014336,0.745472,0.01024
+1042,696.125,1.43652,1.03472,0.008576,0.237344,0.004416,0.005504,0.006784,0.013632,0.014432,0.733792,0.01024
+1043,628.414,1.59131,1.23085,0.008256,0.420608,0.005728,0.00464,0.00736,0.01312,0.014336,0.74704,0.00976
+1044,383.485,2.60767,1.10579,0.008576,0.310304,0.004896,0.004288,0.007744,0.012736,0.01456,0.73296,0.009728
+1045,645.446,1.54932,1.04634,0.012128,0.247264,0.0048,0.004096,0.008064,0.012416,0.014336,0.733184,0.010048
+1046,688.635,1.45215,1.05062,0.008192,0.239616,0.004096,0.005824,0.006464,0.014336,0.014336,0.748736,0.009024
+1047,692.477,1.44409,1.22544,0.00896,0.405472,0.006144,0.005472,0.006848,0.014272,0.014272,0.75376,0.01024
+1048,598.044,1.67212,1.88621,0.008192,0.239616,0.005472,0.004768,0.007392,0.013088,0.014464,1.58224,0.010976
+1049,436.302,2.29199,1.04448,0.008192,0.245792,0.005248,0.004864,0.006304,0.014272,0.014368,0.7352,0.01024
+1050,686.442,1.45679,1.04035,0.008256,0.235552,0.005088,0.004896,0.006368,0.014336,0.014368,0.741344,0.010144
+1051,693.063,1.44287,1.2111,0.009024,0.407072,0.004576,0.005312,0.007008,0.014016,0.014368,0.739584,0.010144
+1052,594.398,1.68237,1.83603,0.008704,0.241696,0.004576,0.005216,0.00704,0.01344,0.014592,1.52797,0.0128
+1053,419.414,2.38428,1.05974,0.007168,0.254944,0.004928,0.004192,0.007712,0.012768,0.014432,0.744672,0.008928
+1054,681.758,1.4668,1.04477,0.008416,0.23536,0.004704,0.004096,0.008192,0.013376,0.014336,0.746432,0.009856
+1055,703.297,1.42188,1.20013,0.008416,0.40528,0.006144,0.004096,0.008192,0.014048,0.014144,0.729568,0.01024
+1056,584.558,1.71069,1.41706,0.008192,0.267744,0.00464,0.005152,0.007072,0.013536,0.014496,1.0841,0.012128
+1057,493.494,2.02637,1.06294,0.00928,0.260128,0.004928,0.004192,0.007712,0.012768,0.014336,0.740416,0.009184
+1058,696.007,1.43677,1.03219,0.009312,0.231424,0.005024,0.004096,0.008224,0.014304,0.014336,0.735232,0.01024
+1059,656.2,1.52393,1.40378,0.008768,0.233344,0.004544,0.005184,0.006944,0.01248,0.01424,1.10803,0.01024
+1060,561.943,1.77954,1.37626,0.008192,0.240704,0.004928,0.004224,0.007776,0.013888,0.014336,1.07104,0.011168
+1061,495.045,2.02002,1.04794,0.007904,0.237952,0.005824,0.004416,0.007616,0.012864,0.014336,0.747264,0.00976
+1062,457.654,2.18506,1.08518,0.00864,0.264224,0.005472,0.004768,0.007264,0.013216,0.01552,0.756192,0.009888
+1063,1011.11,0.989014,1.45654,0.008256,0.270816,0.004192,0.0056,0.00784,0.013184,0.014336,1.1223,0.010016
+1064,570.633,1.75244,1.34774,0.008352,0.258048,0.00544,0.0048,0.007392,0.01312,0.014304,1.00352,0.032768
+1065,501.285,1.99487,1.05267,0.009312,0.236448,0.005504,0.004736,0.006144,0.014368,0.014336,0.751584,0.01024
+1066,714.585,1.39941,1.04176,0.008192,0.233472,0.005536,0.004704,0.007232,0.013248,0.014336,0.74528,0.00976
+1067,654.522,1.52783,1.43338,0.008608,0.24512,0.004736,0.004096,0.008096,0.013632,0.014272,1.12317,0.011648
+1068,544.826,1.83545,1.04832,0.008192,0.245696,0.00416,0.005632,0.006656,0.014016,0.014528,0.739456,0.009984
+1069,448.533,2.22949,1.06186,0.0112,0.257376,0.004768,0.004096,0.008032,0.012448,0.014336,0.74048,0.00912
+1070,693.18,1.44263,1.04086,0.008704,0.235488,0.004096,0.00576,0.006528,0.01408,0.014624,0.74288,0.008704
+1071,700.53,1.42749,1.44221,0.008064,0.246528,0.00416,0.005792,0.006464,0.013856,0.01456,1.13066,0.012128
+1072,511.106,1.95654,1.34922,0.007936,0.243968,0.005312,0.004928,0.007712,0.014656,0.014336,1.01139,0.038976
+1073,496.726,2.01318,1.0495,0.008736,0.239104,0.00496,0.004096,0.007808,0.012672,0.014336,0.748896,0.008896
+1074,701.971,1.42456,1.04941,0.00896,0.238976,0.0048,0.004096,0.008224,0.0136,0.01456,0.747136,0.009056
+1075,687.364,1.45483,1.42749,0.008928,0.235232,0.00464,0.005184,0.007104,0.012288,0.015776,1.12627,0.012064
+1076,537.462,1.8606,1.05699,0.008416,0.249184,0.004768,0.004096,0.008096,0.01344,0.0144,0.745504,0.009088
+1077,586.988,1.70361,1.27101,0.038944,0.421856,0.005792,0.005536,0.007072,0.013632,0.014656,0.75392,0.0096
+1078,616.96,1.62085,1.03446,0.008416,0.23264,0.004896,0.004128,0.008224,0.013824,0.014464,0.739168,0.008704
+1079,648.204,1.54272,1.29638,0.008352,0.23056,0.004768,0.004288,0.007808,0.012672,0.014336,1.00147,0.012128
+1080,610.159,1.63892,1.04054,0.008288,0.237472,0.004096,0.005856,0.006432,0.014368,0.014304,0.7408,0.008928
+1081,528.38,1.89258,1.67731,0.00976,0.452256,0.027456,0.005728,0.00656,0.014336,0.014368,1.13664,0.010208
+1082,550.168,1.81763,1.0672,0.008544,0.256416,0.004192,0.0056,0.006688,0.013696,0.014464,0.747872,0.009728
+1083,619.855,1.61328,1.06566,0.008352,0.26032,0.004576,0.005216,0.007072,0.013568,0.014496,0.741984,0.01008
+1084,677.473,1.47607,1.06573,0.008192,0.262016,0.004928,0.005408,0.006944,0.014336,0.014336,0.741152,0.008416
+1085,648.306,1.54248,1.93114,0.008384,0.264832,0.005696,0.004544,0.007456,0.013024,0.014336,1.60154,0.011328
+1086,409.395,2.44263,1.06496,0.008096,0.256224,0.004128,0.005632,0.006656,0.013888,0.014336,0.74592,0.01008
+1087,719.101,1.39062,1.27757,0.009888,0.252256,0.005632,0.004608,0.007392,0.01312,0.014304,0.958464,0.011904
+1088,566.137,1.76636,1.07453,0.009568,0.264896,0.005248,0.004864,0.006336,0.01424,0.014336,0.745472,0.009568
+1089,579.431,1.72583,1.7105,0.008608,0.45056,0.032096,0.012992,0.00768,0.012864,0.014336,1.16112,0.01024
+1090,507.37,1.97095,1.0655,0.008672,0.251936,0.005184,0.004896,0.006304,0.014336,0.014336,0.751104,0.008736
+1091,690.376,1.44849,1.31686,0.008224,0.241344,0.004384,0.005536,0.006752,0.014048,0.014656,1.01101,0.010912
+1092,569.205,1.75684,1.04454,0.00848,0.24368,0.005888,0.004352,0.007584,0.012896,0.014336,0.73728,0.010048
+1093,628.317,1.59155,1.8985,0.008224,0.26176,0.004448,0.005408,0.00688,0.013312,0.01456,1.57363,0.010272
+1094,443.482,2.25488,1.04166,0.008192,0.238624,0.004928,0.004256,0.007808,0.012672,0.015392,0.740192,0.0096
+1095,690.609,1.448,1.25024,0.008448,0.23824,0.004128,0.005664,0.006624,0.01344,0.014272,0.949184,0.01024
+1096,589.692,1.6958,1.07318,0.009632,0.262752,0.0056,0.00464,0.007488,0.012992,0.014368,0.746976,0.008736
+1097,676.131,1.479,1.74784,0.008256,0.505696,0.009184,0.024576,0.022528,0.014368,0.014304,1.13872,0.010208
+1098,466.727,2.14258,1.0487,0.00832,0.23296,0.004608,0.005184,0.00704,0.013408,0.013504,0.75344,0.01024
+1099,603.329,1.65747,1.34374,0.008288,0.28048,0.004544,0.005216,0.007072,0.013664,0.014592,0.999008,0.01088
+1100,583.559,1.71362,1.0472,0.010368,0.241856,0.004448,0.005312,0.006976,0.013664,0.014368,0.74,0.010208
+1101,441.855,2.26318,1.0752,0.01168,0.266272,0.004672,0.004096,0.008192,0.01392,0.014464,0.741664,0.01024
+1102,709.51,1.40942,1.0545,0.008192,0.247424,0.00448,0.005888,0.0064,0.014144,0.014528,0.743424,0.010016
+1103,696.125,1.43652,1.30048,0.009504,0.233824,0.00448,0.005312,0.006976,0.013312,0.013312,1.00259,0.011168
+1104,551.501,1.81323,1.06349,0.00848,0.24208,0.005824,0.004416,0.007616,0.012864,0.014336,0.75776,0.010112
+1105,685.638,1.4585,1.75005,0.008224,0.501728,0.007232,0.005056,0.007744,0.014144,0.035456,1.16054,0.00992
+1106,471.998,2.11865,1.0425,0.008256,0.235552,0.005536,0.004672,0.008,0.01248,0.014336,0.7448,0.008864
+1107,665.692,1.5022,1.04064,0.008448,0.233536,0.004096,0.00576,0.006528,0.014048,0.014528,0.74352,0.010176
+1108,563.334,1.77515,1.16522,0.008288,0.344992,0.004896,0.00432,0.00768,0.0128,0.014336,0.75776,0.010144
+1109,602.707,1.65918,1.95226,0.008704,0.280608,0.005376,0.004864,0.006304,0.014208,0.015584,1.60454,0.012064
+1110,432.341,2.31299,1.07958,0.00848,0.274432,0.005952,0.004288,0.007744,0.012736,0.014336,0.741376,0.01024
+1111,705.963,1.4165,1.44042,0.0088,0.243456,0.004416,0.005344,0.006944,0.012288,0.014368,1.13251,0.012288
+1112,510.087,1.96045,1.0649,0.026624,0.241056,0.004704,0.004096,0.008064,0.012544,0.015296,0.742336,0.010176
+1113,566.45,1.76538,1.25792,0.034848,0.424416,0.005568,0.00496,0.00768,0.0128,0.015584,0.742176,0.009888
+1114,653.165,1.53101,1.05101,0.008672,0.239264,0.004896,0.004096,0.007968,0.013664,0.014336,0.748416,0.009696
+1115,691.425,1.44629,1.06467,0.008608,0.237568,0.004096,0.005792,0.006528,0.013792,0.014592,0.763872,0.009824
+1116,571.508,1.74976,1.0896,0.008256,0.27184,0.00464,0.00512,0.007136,0.012448,0.014208,0.756736,0.009216
+1117,544.03,1.83813,1.79814,0.01024,0.543904,0.007008,0.005696,0.006592,0.030656,0.038976,1.14483,0.01024
+1118,472.434,2.1167,1.07139,0.00848,0.260128,0.005824,0.004384,0.007584,0.012928,0.014336,0.748608,0.00912
+1119,695.416,1.43799,1.32899,0.009632,0.255808,0.004896,0.004096,0.008,0.01408,0.014336,1.00602,0.012128
+1120,569.839,1.75488,1.06461,0.008192,0.251904,0.004096,0.005856,0.006432,0.014368,0.014304,0.749568,0.009888
+1121,557.431,1.79395,1.29616,0.052416,0.430592,0.005568,0.004992,0.007616,0.012864,0.015584,0.75648,0.010048
+1122,605.828,1.65063,1.06061,0.009792,0.239712,0.004448,0.005344,0.006944,0.013568,0.014976,0.75584,0.009984
+1123,657.253,1.52148,1.06,0.008192,0.236704,0.004928,0.004128,0.007904,0.013792,0.014752,0.759872,0.009728
+1124,622.492,1.60645,1.05875,0.009696,0.245824,0.004576,0.005216,0.007072,0.013472,0.014592,0.748128,0.010176
+1125,675.908,1.47949,1.3816,0.008192,0.247808,0.005504,0.004736,0.007264,0.013216,0.014336,1.06906,0.011488
+1126,447.308,2.2356,1.08746,0.008768,0.274656,0.0056,0.004608,0.007328,0.013152,0.014336,0.749408,0.0096
+1127,711.235,1.40601,1.10592,0.00976,0.274912,0.00528,0.004832,0.006304,0.014304,0.014272,0.76736,0.008896
+1128,583.476,1.71387,1.10819,0.008384,0.292864,0.00528,0.004896,0.006272,0.014208,0.014432,0.75296,0.008896
+1129,611.8,1.63452,1.45126,0.008192,0.278528,0.005568,0.004672,0.018432,0.014272,0.020192,1.07965,0.02176
+1130,469.779,2.12866,1.10835,0.008832,0.286336,0.004864,0.004096,0.008192,0.013504,0.014592,0.758336,0.0096
+1131,693.18,1.44263,1.06259,0.00928,0.25696,0.005888,0.004352,0.007776,0.012704,0.015392,0.74032,0.00992
+1132,599.883,1.66699,1.05654,0.008192,0.243712,0.005664,0.004576,0.007456,0.014272,0.014464,0.748192,0.010016
+1133,674.017,1.48364,1.8432,0.009504,0.254688,0.005632,0.004608,0.007392,0.013088,0.014336,1.52166,0.012288
+1134,407.968,2.45117,1.10576,0.008512,0.292864,0.005376,0.004864,0.006176,0.014304,0.014336,0.749536,0.009792
+1135,404.264,2.47363,1.08989,0.008512,0.261504,0.004736,0.004096,0.008192,0.01392,0.014784,0.763872,0.010272
+1136,1098.12,0.910645,1.07754,0.008512,0.251872,0.005632,0.004608,0.007616,0.012864,0.014336,0.76304,0.009056
+1137,620.418,1.61182,1.82656,0.008192,0.544256,0.006656,0.0056,0.006688,0.014336,0.071616,1.15923,0.009984
+1138,450.704,2.21875,1.0585,0.008544,0.246976,0.004928,0.004096,0.007936,0.013696,0.014528,0.748032,0.00976
+1139,697.31,1.43408,1.29866,0.008288,0.231392,0.004256,0.005504,0.006784,0.0136,0.014624,1.00192,0.012288
+1140,583.808,1.71289,1.04154,0.008192,0.23552,0.00528,0.004864,0.006272,0.014304,0.014336,0.7432,0.009568
+1141,560.328,1.78467,1.73232,0.008192,0.454656,0.006144,0.011648,0.047744,0.013984,0.014112,1.16589,0.009952
+1142,531.672,1.88086,1.03683,0.00864,0.235488,0.004224,0.005568,0.007968,0.013088,0.014336,0.738784,0.008736
+1143,633.467,1.57861,1.31482,0.008192,0.23872,0.004992,0.005312,0.006976,0.013664,0.014176,1.01219,0.010592
+1144,612.349,1.63306,1.05277,0.007904,0.23936,0.004736,0.004096,0.007968,0.013632,0.013216,0.751616,0.01024
+1145,471.944,2.1189,1.70189,0.009888,0.455008,0.026624,0.006144,0.007488,0.012992,0.015808,1.1577,0.01024
+1146,589.692,1.6958,1.0793,0.008192,0.264224,0.005152,0.004864,0.006336,0.014272,0.014304,0.751712,0.01024
+1147,646.567,1.54663,1.33997,0.008768,0.248896,0.004928,0.005568,0.006848,0.014048,0.014496,1.0256,0.010816
+1148,566.293,1.76587,1.06717,0.008096,0.262368,0.004096,0.005984,0.006304,0.014176,0.01424,0.7432,0.008704
+1149,658.627,1.51831,1.70541,0.008224,0.44432,0.026624,0.02864,0.00992,0.013856,0.014656,1.14918,0.009984
+1150,464.031,2.15503,1.06906,0.008384,0.247648,0.005504,0.004704,0.007296,0.013088,0.014432,0.759168,0.008832
+1151,636.222,1.57178,1.36285,0.008352,0.269024,0.005312,0.004864,0.006304,0.014208,0.014368,1.02963,0.010784
+1152,579.513,1.72559,1.07693,0.008288,0.243712,0.00512,0.004864,0.006432,0.014304,0.014336,0.770048,0.009824
+1153,640.4,1.56152,1.70179,0.009376,0.449024,0.039264,0.006144,0.007584,0.013952,0.014656,1.15165,0.010144
+1154,412.238,2.42578,1.08576,0.008512,0.2744,0.004128,0.005664,0.006624,0.014048,0.014368,0.747776,0.01024
+1155,708.528,1.41138,1.45818,0.008192,0.259136,0.004928,0.004224,0.00768,0.0128,0.014336,1.13459,0.012288
+1156,522.782,1.91284,1.10634,0.007968,0.268896,0.004096,0.005856,0.006432,0.014016,0.01408,0.776096,0.008896
+1157,594.14,1.68311,1.70781,0.008384,0.455872,0.04064,0.005056,0.007744,0.013952,0.0144,1.15174,0.010016
+1158,489.191,2.04419,1.06086,0.008192,0.249888,0.005536,0.004672,0.00736,0.01312,0.014368,0.748608,0.00912
+1159,590.883,1.69238,1.45613,0.008192,0.25808,0.00512,0.004832,0.0064,0.014144,0.014528,1.13459,0.01024
+1160,596.563,1.67627,1.91082,0.008224,0.239168,0.004544,0.005216,0.007072,0.012288,0.014336,1.6089,0.011072
+1161,416.981,2.39819,1.07318,0.008384,0.239424,0.00512,0.004864,0.0064,0.01408,0.014432,0.770208,0.010272
+1162,521.85,1.91626,1.08275,0.007904,0.268384,0.004608,0.005184,0.007072,0.01232,0.014336,0.753088,0.009856
+1163,864.135,1.15723,1.21856,0.008192,0.406976,0.004672,0.005184,0.007072,0.013696,0.014464,0.748064,0.01024
+1164,565.59,1.76807,1.92512,0.008224,0.255968,0.004096,0.005824,0.006464,0.013792,0.01488,1.60483,0.01104
+1165,440.335,2.271,1.05318,0.008384,0.234048,0.005536,0.004704,0.007232,0.01328,0.014304,0.755712,0.009984
+1166,666.45,1.50049,1.05997,0.007968,0.231648,0.00544,0.0048,0.0072,0.01328,0.014336,0.765632,0.009664
+1167,657.886,1.52002,1.24944,0.009664,0.404032,0.005408,0.004832,0.006144,0.014336,0.014336,0.78176,0.008928
+1168,523.517,1.91016,1.67904,0.00832,0.46784,0.007104,0.00416,0.008192,0.014336,0.014336,1.14467,0.01008
+1169,538.027,1.85864,1.05952,0.008864,0.23696,0.004768,0.004064,0.00928,0.013248,0.014336,0.75776,0.01024
+1170,640.1,1.56226,1.05917,0.008448,0.230816,0.0048,0.004096,0.008,0.012576,0.015488,0.764704,0.01024
+1171,588.76,1.69849,1.21917,0.008768,0.405344,0.004288,0.005536,0.00672,0.013984,0.0144,0.75136,0.008768
+1172,766.467,1.30469,1.84982,0.007904,0.239552,0.004896,0.004128,0.008224,0.013792,0.01456,1.54448,0.012288
+1173,444.107,2.25171,1.05882,0.008192,0.23552,0.005568,0.004672,0.007296,0.013184,0.013696,0.76208,0.008608
+1174,680.06,1.47046,1.07904,0.009888,0.235232,0.004736,0.005184,0.007072,0.01344,0.014304,0.7792,0.009984
+1175,666.125,1.50122,1.28582,0.009408,0.45344,0.006048,0.004192,0.007776,0.013888,0.01456,0.766592,0.00992
+1176,575.847,1.73657,1.81491,0.008448,0.237568,0.005536,0.004704,0.007264,0.013216,0.015392,1.50982,0.01296
+1177,451.101,2.2168,1.0551,0.008,0.237376,0.004864,0.004096,0.007872,0.012608,0.014336,0.756736,0.009216
+1178,690.376,1.44849,1.05066,0.008256,0.229344,0.004096,0.005856,0.006432,0.014208,0.014464,0.759104,0.008896
+1179,672.357,1.4873,1.4593,0.008352,0.25776,0.004224,0.006144,0.007584,0.012576,0.0144,1.13818,0.01008
+1180,427.245,2.34058,1.83405,0.008192,0.255328,0.004768,0.004096,0.008064,0.013504,0.013248,1.51312,0.013728
+1181,568.1,1.76025,1.06758,0.008576,0.231616,0.005312,0.004864,0.007232,0.013344,0.014304,0.77312,0.009216
+1182,654.313,1.52832,1.05427,0.008192,0.229376,0.004096,0.005696,0.006592,0.01376,0.014048,0.76272,0.009792
+1183,684.149,1.46167,1.2376,0.007328,0.409408,0.005632,0.004608,0.007328,0.013152,0.014336,0.765952,0.009856
+1184,616.403,1.62231,1.92307,0.008192,0.23888,0.004832,0.004096,0.007936,0.012608,0.014336,1.62118,0.011008
+1185,420.189,2.37988,1.0528,0.008,0.227648,0.005568,0.004672,0.007232,0.013248,0.014336,0.763232,0.008864
+1186,672.357,1.4873,1.0535,0.008512,0.225792,0.004096,0.005728,0.00656,0.013952,0.014304,0.765664,0.008896
+1187,694.355,1.44019,1.23712,0.008288,0.405504,0.004224,0.005632,0.006528,0.014336,0.014368,0.769088,0.009152
+1188,582.314,1.71729,1.84934,0.009376,0.26096,0.005248,0.004864,0.006336,0.014144,0.0144,1.52138,0.01264
+1189,413.32,2.41943,1.07738,0.00832,0.244992,0.004864,0.004096,0.007968,0.012512,0.015456,0.768928,0.01024
+1190,448.778,2.22827,1.06733,0.008512,0.239488,0.004224,0.005568,0.006752,0.014048,0.01456,0.76512,0.009056
+1191,1262.64,0.791992,1.23498,0.008704,0.405632,0.005504,0.004736,0.006144,0.014336,0.014336,0.76576,0.009824
+1192,610.159,1.63892,1.93869,0.008416,0.253056,0.004768,0.004096,0.008032,0.013536,0.015072,1.61994,0.011776
+1193,439.485,2.27539,1.06704,0.008256,0.227296,0.005568,0.004672,0.007904,0.012576,0.014336,0.776192,0.01024
+1194,657.675,1.52051,1.05718,0.008608,0.226592,0.004832,0.004096,0.007936,0.013664,0.014432,0.76784,0.009184
+1195,548.841,1.82202,1.23126,0.008896,0.405664,0.006016,0.004224,0.007712,0.014176,0.014432,0.760064,0.01008
+1196,757.536,1.32007,1.74573,0.008416,0.522848,0.00784,0.004448,0.00752,0.012992,0.01584,1.15562,0.010208
+1197,467.9,2.13721,1.06544,0.008128,0.227872,0.005696,0.004544,0.007968,0.012512,0.015424,0.774112,0.009184
+1198,610.887,1.63696,1.09418,0.008736,0.257344,0.0048,0.004096,0.007968,0.012512,0.014336,0.774144,0.01024
+1199,667.862,1.49731,1.23642,0.008192,0.405504,0.005312,0.004864,0.006208,0.014336,0.014336,0.768,0.009664
+1200,641.906,1.55786,1.83091,0.009312,0.2344,0.005376,0.004864,0.0072,0.013312,0.014304,1.52938,0.012768
+1201,428.004,2.33643,1.09366,0.008192,0.253632,0.004416,0.005216,0.007008,0.012384,0.015904,0.778016,0.008896
+1202,684.035,1.46191,1.0543,0.009504,0.228064,0.00592,0.00432,0.007616,0.012864,0.014336,0.761856,0.009824
+1203,695.77,1.43726,1.23091,0.008864,0.405824,0.005504,0.004736,0.007264,0.013216,0.014336,0.76144,0.009728
+1204,612.623,1.63232,1.80061,0.008608,0.233504,0.0056,0.004608,0.007296,0.013216,0.014336,1.50019,0.013248
+1205,446.431,2.23999,1.04829,0.008192,0.231424,0.00592,0.00432,0.007424,0.013088,0.014304,0.753664,0.009952
+1206,683.921,1.46216,1.07165,0.008704,0.236032,0.005536,0.004704,0.008032,0.012448,0.015776,0.770656,0.00976
+1207,523.584,1.90991,1.48624,0.008192,0.27648,0.005984,0.004256,0.007648,0.012832,0.01568,1.14502,0.010144
+1208,654.627,1.52759,1.87187,0.008352,0.271776,0.004544,0.005248,0.00704,0.01344,0.013184,1.536,0.012288
+1209,440.572,2.26978,1.06291,0.009536,0.238272,0.005344,0.004832,0.00624,0.014208,0.014432,0.761184,0.008864
+1210,693.884,1.44116,1.06339,0.008448,0.227808,0.005792,0.004448,0.007712,0.0128,0.015424,0.770976,0.009984
+1211,647.794,1.5437,1.23994,0.008896,0.413632,0.004352,0.005504,0.006784,0.014144,0.014496,0.763008,0.00912
+1212,614.738,1.62671,1.91354,0.008576,0.24608,0.004096,0.00576,0.006528,0.01392,0.01456,1.60173,0.012288
+1213,430.342,2.32373,1.0655,0.00848,0.237216,0.004704,0.004096,0.008192,0.014208,0.014464,0.763904,0.01024
+1214,664.288,1.50537,1.05459,0.008512,0.229376,0.005408,0.004832,0.006144,0.014272,0.0144,0.761856,0.009792
+1215,711.111,1.40625,1.25536,0.007104,0.406816,0.004832,0.004096,0.016384,0.014336,0.014336,0.777792,0.009664
+1216,521.319,1.91821,1.9415,0.009408,0.260928,0.005984,0.004256,0.00768,0.0128,0.014336,1.61533,0.010784
+1217,440.999,2.26758,1.05677,0.009536,0.233376,0.0048,0.004192,0.007712,0.012768,0.015648,0.758496,0.01024
+1218,700.051,1.42847,1.06477,0.008704,0.22736,0.005824,0.004416,0.007456,0.013024,0.014336,0.774048,0.0096
+1219,607.625,1.64575,1.06003,0.00832,0.229248,0.00592,0.00432,0.00816,0.013632,0.014624,0.766272,0.009536
+1220,666.992,1.49927,1.89203,0.008224,0.23344,0.005888,0.004352,0.007584,0.014176,0.014432,1.59194,0.012
+1221,435.374,2.29688,1.07104,0.008768,0.239552,0.00416,0.006048,0.006368,0.014208,0.014336,0.767936,0.009664
+1222,686.557,1.45654,1.05606,0.009312,0.226208,0.004096,0.005792,0.006496,0.01392,0.014624,0.765984,0.009632
+1223,667.21,1.49878,1.24221,0.008192,0.405504,0.005664,0.004576,0.007392,0.01424,0.014688,0.77232,0.009632
+1224,582.066,1.71802,1.70525,0.009568,0.446816,0.040672,0.004704,0.007264,0.014368,0.014496,1.1575,0.009856
+1225,469.402,2.13037,1.06291,0.008192,0.23264,0.004928,0.004096,0.007872,0.012608,0.014496,0.76912,0.00896
+1226,657.042,1.52197,1.0567,0.00944,0.229344,0.004928,0.004096,0.00784,0.01264,0.014336,0.763904,0.010176
+1227,667.21,1.49878,1.23341,0.006656,0.407552,0.00528,0.004864,0.00624,0.014336,0.014336,0.763904,0.01024
+1228,628.125,1.59204,1.91389,0.009632,0.232032,0.005536,0.004704,0.007232,0.013248,0.014336,1.61565,0.01152
+1229,429.575,2.32788,1.06534,0.008576,0.233472,0.00544,0.0048,0.006144,0.014336,0.014336,0.769376,0.008864
+1230,652.957,1.53149,1.06726,0.00848,0.226624,0.004768,0.004096,0.007968,0.0136,0.014528,0.77696,0.01024
+1231,674.461,1.48267,1.24038,0.008192,0.405504,0.005536,0.004704,0.007296,0.013184,0.014336,0.772032,0.0096
+1232,567.628,1.76172,1.91293,0.007968,0.233792,0.004096,0.006144,0.007456,0.013024,0.014336,1.61517,0.010944
+1233,451.549,2.2146,1.05898,0.008768,0.230816,0.004832,0.004096,0.008,0.01248,0.014368,0.765856,0.00976
+1234,590.457,1.6936,1.09968,0.009952,0.260384,0.004096,0.00576,0.006528,0.014176,0.014496,0.774176,0.010112
+1235,671.696,1.48877,1.25008,0.008544,0.405824,0.004224,0.005632,0.006688,0.014176,0.0144,0.780352,0.01024
+1236,583.31,1.71436,1.87597,0.008192,0.268288,0.0056,0.00464,0.007328,0.013152,0.014336,1.54214,0.012288
+1237,449.665,2.22388,1.06867,0.00832,0.23312,0.00432,0.005472,0.006816,0.012288,0.015392,0.773088,0.009856
+1238,692.594,1.44385,1.06896,0.008192,0.233472,0.005728,0.004512,0.007296,0.013184,0.014336,0.772096,0.010144
+1239,641.202,1.55957,1.0647,0.00848,0.231456,0.004192,0.005664,0.006528,0.013696,0.01456,0.770272,0.009856
+1240,613.909,1.62891,1.69987,0.008192,0.45056,0.026624,0.005472,0.006848,0.014016,0.0144,1.16458,0.009184
+1241,496.786,2.01294,1.06141,0.008256,0.231744,0.004224,0.005568,0.00672,0.013408,0.014304,0.766912,0.010272
+1242,665.692,1.5022,1.0632,0.00848,0.227328,0.005536,0.004704,0.006304,0.014176,0.014368,0.772064,0.01024
+1243,443.434,2.25513,1.24723,0.008672,0.406848,0.004832,0.004064,0.008128,0.013728,0.014496,0.776704,0.00976
+1244,938.159,1.06592,1.93747,0.008256,0.26832,0.005408,0.0048,0.007232,0.01472,0.014784,1.60323,0.01072
+1245,389.576,2.56689,1.15328,0.009536,0.317792,0.004448,0.005344,0.006944,0.013728,0.0144,0.772064,0.009024
+1246,591.737,1.68994,1.12746,0.008256,0.288704,0.005472,0.004768,0.018432,0.014144,0.020256,0.757824,0.0096
+1247,609.978,1.6394,1.06701,0.01024,0.23552,0.005888,0.004352,0.008064,0.013472,0.014688,0.766016,0.008768
+1248,649.128,1.54053,1.70752,0.008192,0.45056,0.026624,0.004096,0.008064,0.01392,0.014464,1.17152,0.01008
+1249,489.894,2.04126,1.0759,0.008256,0.234336,0.004096,0.005856,0.006432,0.013984,0.014464,0.778464,0.010016
+1250,676.242,1.47876,1.06291,0.008,0.230848,0.004864,0.004096,0.007936,0.012544,0.015584,0.769984,0.009056
+1251,624.2,1.60205,1.0728,0.008192,0.229376,0.005408,0.004832,0.00624,0.013952,0.014432,0.78048,0.009888
+1252,626.204,1.59692,1.86029,0.008576,0.244064,0.005696,0.004512,0.007456,0.013024,0.014336,1.54995,0.012672
+1253,429.981,2.32568,1.09325,0.00832,0.25744,0.004864,0.006144,0.007264,0.013248,0.014272,0.771904,0.009792
+1254,689.33,1.45068,1.07949,0.008384,0.228608,0.004864,0.004096,0.007744,0.012768,0.014304,0.789536,0.009184
+1255,620.042,1.61279,1.05984,0.008128,0.22848,0.004928,0.004224,0.007584,0.012896,0.014336,0.768,0.011264
+1256,598.393,1.67114,1.68758,0.00848,0.458784,0.01552,0.004864,0.006304,0.014336,0.014304,1.15507,0.00992
+1257,522.516,1.91382,1.0672,0.00832,0.232832,0.004768,0.004096,0.008192,0.013344,0.01456,0.772256,0.008832
+1258,682.212,1.46582,1.08531,0.008384,0.2496,0.00416,0.0056,0.006688,0.014016,0.014368,0.772384,0.010112
+1259,662.89,1.50854,1.24048,0.008192,0.406688,0.00496,0.004096,0.007808,0.014272,0.01472,0.77008,0.009664
+1260,554.263,1.8042,1.7248,0.008608,0.466624,0.031008,0.005344,0.006944,0.014144,0.014144,1.16774,0.01024
+1261,416.345,2.40186,1.08042,0.009376,0.24048,0.005664,0.004576,0.00736,0.013152,0.014336,0.775456,0.010016
+1262,778.559,1.28442,1.04749,0.008928,0.227552,0.005312,0.004864,0.006208,0.014368,0.014336,0.756864,0.009056
+1263,695.416,1.43799,1.25066,0.008192,0.405504,0.005632,0.004608,0.007328,0.01328,0.015456,0.781024,0.009632
+1264,604.13,1.65527,1.8993,0.008832,0.23776,0.00544,0.0048,0.007584,0.012896,0.014336,1.59539,0.012256
+1265,434.22,2.30298,1.07149,0.008544,0.231424,0.005888,0.004352,0.008224,0.01344,0.014432,0.776256,0.008928
+1266,653.165,1.53101,1.0585,0.008352,0.226304,0.004928,0.004288,0.007584,0.012896,0.014336,0.770048,0.00976
+1267,659.369,1.5166,1.26378,0.008352,0.406592,0.015008,0.005824,0.006752,0.014176,0.014528,0.782304,0.01024
+1268,599.532,1.66797,1.89792,0.008512,0.233408,0.00416,0.005632,0.006656,0.014048,0.014176,1.59958,0.011744
+1269,424.104,2.35791,1.05462,0.008448,0.22912,0.005696,0.004544,0.008064,0.012416,0.015712,0.76048,0.010144
+1270,683.692,1.46265,1.07885,0.008352,0.245568,0.004288,0.005504,0.006784,0.01392,0.014496,0.770016,0.00992
+1271,611.983,1.63403,1.05882,0.008224,0.229344,0.005952,0.004288,0.007648,0.012832,0.014336,0.767232,0.00896
+1272,326.245,3.06519,1.59085,0.00816,0.726336,0.00688,0.004096,0.008064,0.013952,0.0144,0.799168,0.009792
+1273,921.07,1.08569,1.04666,0.00832,0.228416,0.004928,0.004224,0.008192,0.013376,0.014464,0.754496,0.01024
+1274,713.589,1.40137,1.05648,0.009248,0.222176,0.005664,0.004576,0.006176,0.014048,0.014592,0.769952,0.010048
+1275,590.457,1.6936,1.05411,0.00944,0.223552,0.004576,0.005216,0.00704,0.01232,0.014336,0.76784,0.009792
+1276,449.517,2.22461,1.06704,0.012192,0.227424,0.00576,0.00448,0.007648,0.012928,0.015424,0.77248,0.008704
+1277,675.573,1.48022,1.06202,0.009344,0.224128,0.00576,0.00448,0.00752,0.01296,0.014336,0.77392,0.009568
+1278,690.143,1.44897,1.05072,0.009376,0.224096,0.004096,0.005728,0.00656,0.013984,0.014336,0.763872,0.008672
+1279,562.715,1.7771,1.06454,0.009568,0.225696,0.004352,0.005408,0.00688,0.01408,0.014304,0.774432,0.009824
+1280,445.993,2.24219,1.05981,0.0112,0.23552,0.004096,0.005824,0.006464,0.014048,0.014368,0.758016,0.010272
+1281,673.463,1.48486,1.05907,0.008128,0.224096,0.005504,0.004736,0.007744,0.012736,0.014336,0.771936,0.009856
+1282,696.007,1.43677,1.05882,0.009376,0.221184,0.004928,0.004128,0.00768,0.0128,0.014336,0.775488,0.008896
+1283,625.248,1.59937,1.05309,0.008576,0.221216,0.005472,0.004768,0.006144,0.014112,0.014464,0.769312,0.009024
+1284,629.186,1.58936,1.68346,0.008416,0.45648,0.008064,0.004224,0.007744,0.014464,0.016736,1.15709,0.01024
+1285,507.811,1.96924,1.05472,0.009696,0.221728,0.004096,0.00576,0.007712,0.01312,0.0144,0.767968,0.01024
+1286,667.862,1.49731,1.06717,0.008704,0.223392,0.004256,0.005536,0.006752,0.013824,0.014432,0.780704,0.009568
+1287,679.947,1.4707,1.24061,0.009312,0.410144,0.00448,0.005952,0.006336,0.014336,0.014336,0.765888,0.009824
+1288,464.452,2.15308,1.70752,0.008192,0.479232,0.007296,0.004864,0.006272,0.014336,0.014336,1.16285,0.010144
+1289,567.077,1.76343,1.06701,0.008192,0.227136,0.004288,0.005472,0.006816,0.013408,0.01456,0.776896,0.01024
+1290,710.618,1.40723,1.06032,0.008224,0.2224,0.004896,0.004096,0.007968,0.012512,0.01536,0.775104,0.00976
+1291,660.006,1.51514,1.23699,0.008192,0.407456,0.004192,0.005632,0.006656,0.014112,0.01456,0.765984,0.010208
+1292,625.153,1.59961,1.94173,0.008608,0.2728,0.005344,0.004896,0.007232,0.013248,0.014336,1.60352,0.011744
+1293,419.371,2.38452,1.06083,0.008224,0.225248,0.005184,0.004832,0.006368,0.014336,0.014336,0.772096,0.010208
+1294,683.921,1.46216,1.07117,0.008256,0.222624,0.004704,0.004096,0.007968,0.013824,0.015072,0.784384,0.01024
+1295,640.701,1.56079,1.23085,0.008192,0.405504,0.005152,0.004832,0.0064,0.014336,0.014368,0.7632,0.008864
+1296,624.676,1.60083,1.89606,0.00832,0.229248,0.004096,0.005792,0.006496,0.013984,0.014464,1.60176,0.011904
+1297,376.229,2.65796,1.32947,0.008544,0.493536,0.005472,0.004768,0.007584,0.012896,0.014336,0.772288,0.010048
+1298,652.437,1.53271,1.07418,0.009216,0.2304,0.005472,0.004768,0.007168,0.013312,0.014368,0.779808,0.009664
+1299,647.794,1.5437,1.06701,0.009632,0.22704,0.004992,0.004096,0.007488,0.012896,0.014464,0.777856,0.008544
+1300,674.794,1.48193,1.91866,0.007968,0.2352,0.004896,0.00416,0.008128,0.013728,0.01424,1.61869,0.011648
+1301,416.726,2.39966,1.05965,0.008768,0.228928,0.004864,0.005504,0.006784,0.013376,0.014496,0.766752,0.010176
+1302,661.072,1.5127,1.05821,0.009216,0.226304,0.005344,0.004864,0.006304,0.013888,0.014432,0.768224,0.009632
+1303,648.82,1.54126,1.05677,0.008224,0.2232,0.005792,0.004448,0.00752,0.01296,0.014336,0.770048,0.01024
+1304,675.908,1.47949,1.71472,0.008672,0.46112,0.022432,0.004192,0.007744,0.014432,0.014496,1.17165,0.009984
+1305,480.357,2.08179,1.05882,0.008192,0.227328,0.004096,0.005696,0.007776,0.01296,0.01456,0.7696,0.008608
+1306,662.783,1.50879,1.0735,0.008544,0.233504,0.005696,0.004512,0.008192,0.013504,0.014432,0.775968,0.009152
+1307,673.131,1.4856,1.23702,0.007936,0.40576,0.004224,0.005728,0.006432,0.014336,0.014208,0.769312,0.009088
+1308,589.437,1.69653,1.90643,0.008384,0.230816,0.004704,0.004096,0.00816,0.01344,0.013216,1.61178,0.01184
+1309,431.158,2.31934,1.06086,0.0096,0.227872,0.004192,0.005568,0.00672,0.014336,0.014336,0.768,0.01024
+1310,670.157,1.49219,1.05683,0.008192,0.227328,0.005824,0.004416,0.007872,0.012608,0.014336,0.767648,0.008608
+1311,718.975,1.39087,1.24109,0.008192,0.405184,0.004416,0.005408,0.00688,0.014176,0.014528,0.773216,0.009088
+1312,586.064,1.7063,1.89446,0.008256,0.229376,0.006144,0.004096,0.007872,0.012608,0.015552,1.59984,0.01072
+1313,435.837,2.29443,1.06291,0.009472,0.232192,0.005376,0.004704,0.006304,0.013728,0.014464,0.766432,0.01024
+1314,667.971,1.49707,1.05472,0.00944,0.230144,0.004128,0.005632,0.006656,0.013824,0.014528,0.760128,0.01024
+1315,572.867,1.74561,1.23526,0.008256,0.402848,0.004992,0.005088,0.007072,0.013696,0.014688,0.769472,0.009152
+1316,667.862,1.49731,1.40902,0.008288,0.257984,0.00528,0.004864,0.006272,0.014272,0.014368,1.08541,0.012288
+1317,503.565,1.98584,1.0576,0.008736,0.235808,0.005696,0.004576,0.007456,0.012992,0.014336,0.75904,0.00896
+1318,684.492,1.46094,1.06438,0.00928,0.225728,0.004608,0.005184,0.007104,0.013408,0.013216,0.776192,0.009664
+1319,677.697,1.47559,1.44003,0.008032,0.227776,0.004096,0.005504,0.006784,0.013632,0.01488,1.14909,0.01024
+1320,533.82,1.87329,1.8993,0.008608,0.234912,0.004896,0.004288,0.00768,0.0128,0.014336,1.60118,0.010592
+1321,430.342,2.32373,1.06259,0.008192,0.231424,0.005344,0.004864,0.006208,0.014208,0.014048,0.768384,0.00992
+1322,697.548,1.43359,1.06083,0.008192,0.229024,0.004448,0.005344,0.006944,0.01344,0.013312,0.76992,0.010208
+1323,685.064,1.45972,1.24512,0.008192,0.407328,0.00432,0.00528,0.007008,0.013888,0.014304,0.774624,0.010176
+1324,479.12,2.08716,1.91158,0.008448,0.258368,0.00432,0.00544,0.006848,0.013696,0.014112,1.58973,0.010624
+1325,519.336,1.92554,1.07203,0.008768,0.229248,0.004576,0.005216,0.007072,0.013344,0.01472,0.778848,0.01024
+1326,670.376,1.4917,1.05888,0.008864,0.227328,0.004096,0.005728,0.00656,0.014016,0.014592,0.768064,0.009632
+1327,671.365,1.4895,1.23661,0.008192,0.405408,0.004192,0.005664,0.006624,0.014336,0.014368,0.767936,0.009888
+1328,625.534,1.59863,1.88358,0.008224,0.2304,0.005056,0.004128,0.007808,0.012672,0.016384,1.5872,0.011712
+1329,423.228,2.36279,1.06256,0.009536,0.246464,0.005824,0.004416,0.007648,0.012832,0.014336,0.751616,0.009888
+1330,694.944,1.43896,1.05869,0.008192,0.227008,0.004416,0.005344,0.006944,0.013824,0.014816,0.768032,0.010112
+1331,683.921,1.46216,1.2648,0.008192,0.439936,0.00448,0.005344,0.006944,0.013856,0.014432,0.761696,0.00992
+1332,586.148,1.70605,1.83306,0.008288,0.2312,0.00432,0.005472,0.006816,0.01376,0.014528,1.53622,0.012448
+1333,362.093,2.76172,1.07853,0.009504,0.241568,0.004928,0.004096,0.008192,0.013376,0.014784,0.772416,0.009664
+1334,679.834,1.47095,1.05869,0.009568,0.229888,0.004256,0.005504,0.006784,0.013888,0.014464,0.764224,0.010112
+1335,651.607,1.53467,1.04989,0.009344,0.228,0.00432,0.005216,0.00704,0.013344,0.014496,0.7584,0.009728
+1336,618.451,1.61694,1.69248,0.008448,0.471616,0.006272,0.005728,0.006432,0.015424,0.013248,1.15658,0.008736
+1337,501.899,1.99243,1.06086,0.008192,0.229408,0.005536,0.004672,0.006368,0.01392,0.01456,0.767968,0.01024
+1338,674.128,1.4834,1.05882,0.009408,0.228,0.004256,0.005536,0.006752,0.013856,0.014528,0.76624,0.01024
+1339,676.577,1.47803,1.24342,0.008704,0.405184,0.00448,0.005344,0.006944,0.013792,0.01424,0.774784,0.009952
+1340,624.295,1.60181,1.90464,0.008544,0.237344,0.00544,0.004864,0.006272,0.014336,0.01424,1.60163,0.011968
+1341,422.573,2.36646,1.06077,0.008736,0.229472,0.004192,0.005568,0.00672,0.013728,0.014496,0.76784,0.010016
+1342,664.719,1.50439,1.0673,0.007904,0.236128,0.005856,0.004352,0.007584,0.012896,0.014336,0.769056,0.009184
+1343,669.39,1.4939,1.25987,0.007104,0.405504,0.004288,0.005568,0.00656,0.014304,0.014336,0.792416,0.009792
+1344,591.822,1.6897,1.87805,0.008384,0.234848,0.004768,0.004096,0.007968,0.01376,0.014464,1.57763,0.012128
+1345,436.813,2.28931,1.08246,0.008256,0.253952,0.005344,0.004832,0.006304,0.014208,0.014272,0.765248,0.010048
+1346,668.189,1.49658,1.0689,0.008512,0.235296,0.00432,0.00544,0.006848,0.013952,0.014272,0.770496,0.00976
+1347,713.092,1.40234,1.24317,0.008192,0.405504,0.006048,0.004192,0.007872,0.01408,0.0144,0.774112,0.008768
+1348,595.089,1.68042,1.85344,0.008192,0.233472,0.005312,0.004864,0.00624,0.014272,0.014304,1.55408,0.012704
+1349,437.747,2.28442,1.05517,0.00864,0.234848,0.004768,0.004096,0.008,0.012672,0.015424,0.757824,0.008896
+1350,690.842,1.44751,1.0553,0.008672,0.226496,0.004896,0.004224,0.008192,0.014368,0.014304,0.763904,0.01024
+1351,481.712,2.07593,1.33997,0.008448,0.483648,0.00512,0.004864,0.0064,0.014368,0.014304,0.792576,0.01024
+1352,805.031,1.24219,1.9319,0.008608,0.276672,0.004128,0.005664,0.006624,0.01408,0.0144,1.5905,0.011232
+1353,432.752,2.31079,1.06374,0.008416,0.231712,0.004416,0.005376,0.006912,0.01344,0.014912,0.76832,0.01024
+1354,678.146,1.47461,1.06128,0.008096,0.229696,0.004288,0.005504,0.006816,0.013824,0.014464,0.768352,0.01024
+1355,674.461,1.48267,1.23526,0.00848,0.411648,0.005248,0.004864,0.007872,0.013984,0.014528,0.759712,0.008928
+1356,461.469,2.16699,1.87024,0.008704,0.256288,0.004096,0.005792,0.006528,0.01408,0.014176,1.548,0.012576
+1357,532.501,1.87793,1.06147,0.008544,0.235104,0.004928,0.004224,0.007744,0.012768,0.014304,0.763904,0.009952
+1358,696.48,1.43579,1.05718,0.008704,0.222304,0.004928,0.004192,0.007168,0.013248,0.0144,0.772096,0.010144
+1359,681.078,1.46826,1.25261,0.008192,0.4096,0.005536,0.004704,0.006336,0.014144,0.014336,0.77984,0.00992
+1360,373.893,2.67456,1.93126,0.008192,0.264224,0.005472,0.004736,0.007232,0.013248,0.015552,1.60035,0.012256
+1361,703.176,1.42212,1.07677,0.009728,0.244256,0.00512,0.004864,0.007392,0.013312,0.014368,0.767488,0.01024
+1362,647.896,1.54346,1.07664,0.008544,0.251872,0.005888,0.004352,0.007584,0.012928,0.014304,0.761408,0.00976
+1363,605.917,1.65039,1.11309,0.009632,0.291424,0.005216,0.004864,0.006336,0.014304,0.014336,0.757216,0.00976
+1364,658.415,1.5188,1.90736,0.008448,0.239392,0.004736,0.004096,0.008096,0.012416,0.014432,1.60448,0.011264
+1365,428.183,2.33545,1.06374,0.009024,0.233472,0.005504,0.004736,0.007296,0.013056,0.018048,0.763744,0.008864
+1366,682.439,1.46533,1.06086,0.00944,0.227136,0.004896,0.004288,0.008,0.01248,0.016,0.769632,0.008992
+1367,627.932,1.59253,1.06218,0.008192,0.224864,0.004512,0.00528,0.007008,0.01248,0.01536,0.774464,0.010016
+1368,676.466,1.47827,1.70355,0.009536,0.483808,0.006368,0.0056,0.006688,0.014272,0.014336,1.15277,0.010176
+1369,448.877,2.22778,1.06227,0.008576,0.237568,0.004096,0.005824,0.007712,0.01312,0.014304,0.761312,0.00976
+1370,716.585,1.39551,1.07094,0.009472,0.230176,0.00576,0.004448,0.007264,0.013216,0.014336,0.776192,0.01008
+1371,667.645,1.4978,1.24483,0.008736,0.403456,0.00576,0.00448,0.00752,0.013024,0.014272,0.777856,0.009728
+1372,592.507,1.68774,1.74909,0.008672,0.525856,0.006656,0.005312,0.006944,0.013728,0.014944,1.15674,0.01024
+1373,456.481,2.19067,1.06102,0.008352,0.229376,0.005216,0.004864,0.006304,0.014016,0.014496,0.76928,0.00912
+1374,691.541,1.44604,1.05542,0.008672,0.225504,0.004096,0.00576,0.006528,0.014112,0.014464,0.767456,0.008832
+1375,633.076,1.57959,1.24518,0.008192,0.405216,0.004384,0.00544,0.006848,0.014048,0.014624,0.777472,0.00896
+1376,643.014,1.55518,1.90259,0.009536,0.229824,0.004352,0.005536,0.006752,0.013568,0.014336,1.6064,0.012288
+1377,423.447,2.36157,1.05267,0.009696,0.227872,0.00592,0.00432,0.006304,0.013984,0.014528,0.76112,0.008928
+1378,521.717,1.91675,1.06621,0.00944,0.23632,0.00592,0.00432,0.008224,0.013856,0.014272,0.764192,0.009664
+1379,923.563,1.08276,1.23699,0.008192,0.405504,0.005728,0.004512,0.007968,0.013696,0.01456,0.767872,0.00896
+1380,585.729,1.70728,1.8408,0.008352,0.237024,0.00464,0.005152,0.00704,0.012416,0.014464,1.53789,0.013824
+1381,451.449,2.21509,1.05142,0.008736,0.22912,0.004768,0.004096,0.007808,0.012672,0.015424,0.75872,0.01008
+1382,681.985,1.46631,1.05971,0.008864,0.22704,0.004608,0.005152,0.007008,0.013568,0.015232,0.768,0.01024
+1383,666.667,1.5,1.25133,0.008192,0.407328,0.00432,0.005504,0.006784,0.014336,0.014336,0.780288,0.01024
+1384,610.069,1.63916,1.90486,0.008672,0.22944,0.005312,0.004864,0.006208,0.014208,0.014048,1.61018,0.011936
+1385,428.99,2.33105,1.06909,0.008192,0.23552,0.005312,0.004864,0.008256,0.013632,0.014816,0.769536,0.00896
+1386,672.247,1.48755,1.06906,0.008288,0.230304,0.004928,0.004288,0.008192,0.014016,0.0144,0.776032,0.008608
+1387,578.94,1.72729,1.24154,0.008704,0.401376,0.005984,0.004256,0.00768,0.013856,0.014336,0.775168,0.010176
+1388,664.18,1.50562,1.84307,0.008288,0.2416,0.005632,0.004576,0.007392,0.013088,0.014368,1.53517,0.01296
+1389,445.121,2.24658,1.07469,0.008384,0.23328,0.00576,0.00448,0.00752,0.01296,0.014336,0.77824,0.009728
+1390,685.753,1.45825,1.05018,0.008448,0.22912,0.005856,0.004384,0.007712,0.012768,0.014336,0.75776,0.009792
+1391,706.329,1.41577,1.23904,0.008448,0.405088,0.004512,0.005312,0.006976,0.014112,0.014368,0.77024,0.009984
+1392,587.24,1.70288,1.8265,0.008256,0.233152,0.004352,0.00544,0.006848,0.013536,0.014304,1.52659,0.014016
+1393,449.074,2.22681,1.05472,0.008192,0.22736,0.005824,0.004384,0.007584,0.012896,0.0144,0.76384,0.01024
+1394,687.479,1.45459,1.06563,0.008704,0.227456,0.005248,0.004864,0.006272,0.01408,0.014432,0.775424,0.009152
+1395,644.025,1.55273,1.44019,0.008768,0.243552,0.004128,0.004608,0.006304,0.013504,0.014304,1.13494,0.01008
+1396,495.224,2.01929,1.4465,0.00832,0.24736,0.00496,0.00416,0.007872,0.012608,0.014336,1.13459,0.012288
+1397,492.544,2.03027,1.06387,0.00816,0.23376,0.0048,0.004096,0.008,0.01248,0.0144,0.767936,0.01024
+1398,722.526,1.38403,1.06886,0.008192,0.233472,0.005632,0.004608,0.007936,0.012544,0.014464,0.771968,0.010048
+1399,666.125,1.50122,1.44218,0.00832,0.25216,0.005248,0.004992,0.006176,0.01424,0.014432,1.1264,0.010208
+1400,549.872,1.8186,1.90259,0.008192,0.235008,0.004608,0.005152,0.007072,0.0136,0.014464,1.60346,0.01104
+1401,429.981,2.32568,1.0609,0.009504,0.230112,0.005632,0.004608,0.007392,0.013088,0.014336,0.767264,0.00896
+1402,685.638,1.4585,1.06291,0.009664,0.229984,0.004064,0.005856,0.006432,0.013952,0.01424,0.770048,0.008672
+1403,678.258,1.47437,1.22848,0.008448,0.40336,0.004192,0.005664,0.006624,0.01424,0.01424,0.76192,0.009792
+1404,597.433,1.67383,1.8903,0.008192,0.233248,0.00432,0.005408,0.00688,0.013632,0.014144,1.59376,0.01072
+1405,415.669,2.40576,1.07066,0.008192,0.241728,0.005856,0.00432,0.007648,0.012832,0.014336,0.76576,0.009984
+1406,647.077,1.54541,1.06368,0.008928,0.229184,0.004288,0.005472,0.006816,0.013568,0.014368,0.770784,0.010272
+1407,707.549,1.41333,1.23814,0.008224,0.405472,0.005184,0.004864,0.006336,0.014368,0.014304,0.769408,0.009984
+1408,609.796,1.63989,1.89757,0.008544,0.229888,0.005248,0.004896,0.00624,0.014336,0.014336,1.60333,0.010752
+1409,435.559,2.2959,1.06554,0.008064,0.227008,0.004928,0.004288,0.007648,0.012832,0.014336,0.776192,0.01024
+1410,665.259,1.50317,1.06301,0.008288,0.223232,0.005472,0.004704,0.006208,0.014112,0.014272,0.777952,0.008768
+1411,669.062,1.49463,1.23293,0.008128,0.404928,0.004768,0.004064,0.008096,0.014016,0.014592,0.764096,0.01024
+1412,600.586,1.66504,1.93424,0.008704,0.256416,0.00528,0.004832,0.006336,0.014112,0.014272,1.612,0.012288
+1413,428.183,2.33545,1.07469,0.00816,0.247264,0.004672,0.004096,0.00784,0.01264,0.014336,0.765952,0.009728
+1414,669.828,1.49292,1.0529,0.008544,0.229376,0.005792,0.004448,0.007552,0.012928,0.014336,0.759808,0.010112
+1415,699.693,1.4292,1.24221,0.007296,0.409472,0.005568,0.004672,0.007296,0.013184,0.014336,0.771456,0.008928
+1416,583.143,1.71484,1.91555,0.007168,0.24576,0.004096,0.00576,0.006528,0.014368,0.014304,1.60563,0.011936
+1417,437.093,2.28784,1.05008,0.008256,0.222304,0.004896,0.00416,0.007776,0.012704,0.0144,0.765888,0.009696
+1418,625.917,1.59766,1.06339,0.00864,0.237568,0.004096,0.005696,0.006592,0.013728,0.014272,0.763904,0.008896
+1419,684.492,1.46094,1.26368,0.008256,0.413696,0.02048,0.004096,0.008032,0.01392,0.023104,0.761856,0.01024
+1420,598.393,1.67114,1.73654,0.008544,0.485472,0.007456,0.004832,0.023584,0.013312,0.014336,1.1689,0.010112
+1421,463.978,2.15527,1.06339,0.007968,0.24208,0.004384,0.005408,0.00688,0.013984,0.014656,0.757824,0.010208
+1422,692.477,1.44409,1.05843,0.009504,0.223136,0.004928,0.004096,0.007648,0.012832,0.014336,0.772096,0.009856
+1423,431.476,2.31763,1.23699,0.00816,0.402976,0.014624,0.00432,0.008,0.01392,0.014176,0.761632,0.009184
+1424,1051.87,0.950684,1.83299,0.008256,0.242784,0.004896,0.004192,0.007776,0.012704,0.014336,1.52554,0.012512
+1425,440.904,2.26807,1.09101,0.009312,0.25696,0.005344,0.004896,0.00736,0.01312,0.014304,0.769856,0.009856
+1426,678.595,1.47363,1.0623,0.008192,0.231424,0.005664,0.004576,0.007552,0.012928,0.014336,0.768,0.009632
+1427,681.304,1.46777,1.23619,0.008,0.403552,0.004224,0.005696,0.006592,0.014336,0.014368,0.769664,0.00976
+1428,528.039,1.8938,1.40189,0.009664,0.241664,0.004672,0.0056,0.006688,0.013664,0.014368,1.09184,0.013728
+1429,538.381,1.85742,1.06902,0.008192,0.232608,0.004928,0.004128,0.007584,0.012896,0.014336,0.774144,0.010208
+1430,675.462,1.48047,1.06467,0.008192,0.229376,0.004096,0.004096,0.008032,0.012448,0.014336,0.774144,0.009952
+1431,672.357,1.4873,1.46083,0.008256,0.256544,0.005664,0.004576,0.008096,0.012384,0.014336,1.14074,0.01024
+1432,496.425,2.0144,1.86982,0.009952,0.246048,0.004128,0.005792,0.006464,0.014336,0.014336,1.55648,0.012288
+1433,466.09,2.14551,1.05085,0.008768,0.23312,0.004544,0.005248,0.00704,0.013376,0.014528,0.754432,0.009792
+1434,642.711,1.55591,1.0688,0.008288,0.227232,0.005472,0.004768,0.006464,0.014016,0.014176,0.778432,0.009952
+1435,696.362,1.43604,1.23488,0.008192,0.403456,0.005728,0.004512,0.007424,0.013056,0.015712,0.766624,0.010176
+1436,609.161,1.6416,1.88506,0.008672,0.229728,0.00416,0.0056,0.006688,0.013984,0.014336,1.59066,0.011232
+1437,429.575,2.32788,1.07933,0.008192,0.230848,0.004672,0.004096,0.008096,0.012384,0.015392,0.785376,0.010272
+1438,681.758,1.4668,1.04653,0.00944,0.224032,0.004096,0.005696,0.006592,0.014048,0.0144,0.759456,0.008768
+1439,675.573,1.48022,1.24451,0.008384,0.405472,0.004192,0.005632,0.006592,0.014368,0.014336,0.77552,0.010016
+1440,592.079,1.68896,1.89091,0.00864,0.233632,0.00544,0.0048,0.006336,0.014144,0.014336,1.59133,0.012256
+1441,433.669,2.30591,1.0711,0.008192,0.235136,0.00448,0.005312,0.006976,0.013536,0.014528,0.77392,0.009024
+1442,645.039,1.55029,1.05014,0.008192,0.229408,0.004064,0.005856,0.006432,0.013888,0.01408,0.758464,0.00976
+1443,717.589,1.39355,1.23974,0.008352,0.404,0.00576,0.00448,0.007488,0.014112,0.013216,0.772096,0.01024
+1444,606.995,1.64746,1.82272,0.00832,0.233344,0.005952,0.004288,0.007584,0.012896,0.014368,1.52368,0.012288
+1445,438.403,2.28101,1.07728,0.009536,0.252608,0.005696,0.004544,0.007424,0.013056,0.014336,0.76112,0.00896
+1446,707.06,1.41431,1.05632,0.008256,0.23136,0.004096,0.005728,0.00656,0.014336,0.014336,0.761856,0.009792
+1447,649.849,1.53882,1.24685,0.009568,0.426656,0.005856,0.004384,0.007456,0.013024,0.014336,0.75568,0.009888
+1448,617.612,1.61914,1.88179,0.00944,0.230176,0.005216,0.004864,0.006304,0.014336,0.014368,1.58512,0.011968
+1449,436.907,2.28882,1.06909,0.007936,0.231424,0.004608,0.00544,0.006848,0.01344,0.014304,0.775072,0.010016
+1450,564.966,1.77002,1.06701,0.009312,0.248736,0.005504,0.004736,0.006176,0.014208,0.014432,0.754912,0.008992
+1451,785.879,1.27246,1.25338,0.009536,0.423904,0.004832,0.004096,0.007904,0.013984,0.014944,0.765056,0.00912
+1452,619.761,1.61353,1.88979,0.00832,0.23472,0.004768,0.004096,0.007936,0.012544,0.014336,1.5913,0.011776
+1453,435.745,2.29492,1.05962,0.00848,0.227616,0.00432,0.00544,0.006848,0.013568,0.014496,0.770208,0.00864
+1454,671.696,1.48877,1.05875,0.009664,0.229952,0.004096,0.006144,0.00736,0.01312,0.014496,0.763744,0.010176
+1455,662.033,1.5105,1.28576,0.008288,0.454656,0.005824,0.004416,0.007552,0.014112,0.0152,0.765888,0.009824
+1456,591.053,1.69189,1.89117,0.00704,0.229248,0.004224,0.005568,0.00672,0.013344,0.014464,1.59834,0.012224
+1457,435.745,2.29492,1.04243,0.009472,0.225152,0.004896,0.004192,0.008064,0.012416,0.014464,0.753536,0.01024
+1458,697.429,1.43384,1.05677,0.00944,0.229824,0.004448,0.005824,0.006464,0.014176,0.0144,0.763072,0.00912
+1459,642.51,1.5564,1.26976,0.00928,0.433088,0.00592,0.00432,0.007648,0.013952,0.014368,0.770944,0.01024
+1460,575.766,1.73682,1.8903,0.008256,0.26208,0.005728,0.004512,0.00736,0.01312,0.014336,1.56262,0.012288
+1461,428.901,2.33154,1.0585,0.00864,0.237632,0.005856,0.00432,0.007616,0.012864,0.014336,0.757216,0.010016
+1462,721.889,1.38525,1.0552,0.007936,0.23216,0.005312,0.004928,0.007648,0.012832,0.014336,0.759808,0.01024
+1463,679.496,1.47168,1.22563,0.008384,0.40416,0.005472,0.004768,0.007232,0.013248,0.015488,0.757856,0.009024
+1464,600.234,1.66602,1.89235,0.009504,0.234208,0.005152,0.004864,0.006368,0.01392,0.014336,1.59328,0.01072
+1465,428.094,2.33594,1.05472,0.008192,0.229376,0.005888,0.004352,0.007648,0.012832,0.015904,0.761472,0.009056
+1466,692.711,1.4436,1.04118,0.008576,0.225664,0.005792,0.004448,0.008096,0.012384,0.014336,0.753248,0.00864
+1467,703.78,1.4209,1.26029,0.0088,0.436384,0.005344,0.004864,0.006304,0.014208,0.014336,0.75984,0.010208
+1468,576.739,1.73389,1.89219,0.008192,0.233472,0.0056,0.00464,0.00736,0.01312,0.014336,1.59334,0.012128
+1469,433.623,2.30615,1.05098,0.007008,0.227328,0.005344,0.004864,0.0072,0.013216,0.014112,0.762144,0.00976
+1470,606.545,1.64868,1.07315,0.00944,0.2456,0.00496,0.004192,0.007808,0.012704,0.015776,0.763808,0.008864
+1471,741.626,1.34839,1.2329,0.009632,0.404064,0.005792,0.004448,0.007648,0.012832,0.014336,0.763904,0.01024
+1472,607.175,1.64697,1.80701,0.008672,0.237088,0.004768,0.004096,0.007968,0.013568,0.013376,1.50518,0.012288
+1473,444.011,2.2522,1.06701,0.009408,0.232256,0.005248,0.004864,0.006272,0.014336,0.014336,0.770048,0.01024
+1474,667.536,1.49805,1.04701,0.008608,0.229536,0.005472,0.004736,0.008192,0.013984,0.014432,0.751872,0.010176
+1475,689.911,1.44946,1.42714,0.008352,0.237824,0.005152,0.004096,0.007136,0.013536,0.014784,1.12589,0.010368
+1476,541.656,1.84619,1.82528,0.008672,0.241728,0.005664,0.004544,0.007424,0.013056,0.014336,1.5175,0.012352
+1477,447.015,2.23706,1.052,0.008192,0.228704,0.004768,0.004096,0.007968,0.012512,0.0144,0.7616,0.00976
+1478,688.751,1.4519,1.05315,0.008672,0.224704,0.004672,0.00512,0.007072,0.013568,0.014656,0.764448,0.01024
+1479,492.485,2.03052,1.2329,0.009824,0.40592,0.00528,0.004864,0.006304,0.014272,0.014336,0.762944,0.009152
+1480,740.821,1.34985,1.88413,0.008576,0.27776,0.004864,0.004096,0.007904,0.014496,0.014304,1.53821,0.01392
+1481,442.907,2.25781,1.06448,0.008192,0.24352,0.004288,0.005504,0.006784,0.013504,0.014816,0.75808,0.009792
+1482,697.785,1.43311,1.06291,0.008192,0.23888,0.004768,0.00416,0.007936,0.012544,0.015584,0.760608,0.01024
+1483,645.446,1.54932,1.23155,0.008768,0.405632,0.005792,0.004448,0.007584,0.012896,0.014336,0.762912,0.009184
+1484,651.089,1.53589,1.89082,0.007968,0.237472,0.004896,0.004096,0.007872,0.012608,0.014336,1.59085,0.01072
+1485,438.826,2.27881,1.05501,0.008448,0.23136,0.00416,0.0056,0.006688,0.013568,0.014464,0.761504,0.009216
+1486,702.573,1.42334,1.0439,0.008192,0.22528,0.005728,0.004512,0.006144,0.01392,0.014368,0.756096,0.009664
+1487,647.077,1.54541,1.24822,0.00832,0.424096,0.004768,0.004192,0.008,0.01392,0.014176,0.76048,0.010272
+1488,499.33,2.00269,1.85933,0.008224,0.243712,0.00544,0.004704,0.006272,0.014304,0.014336,1.5495,0.012832
+1489,471.184,2.12231,1.05459,0.008288,0.231744,0.004192,0.0056,0.006688,0.013728,0.014944,0.759808,0.0096
+1490,824.145,1.21338,1.04704,0.008448,0.231776,0.00512,0.004864,0.008128,0.012576,0.014336,0.751616,0.010176
+1491,683.921,1.46216,1.4295,0.008192,0.241664,0.004096,0.006144,0.006176,0.013504,0.014816,1.12467,0.01024
+1492,540.94,1.84863,1.82406,0.008384,0.237568,0.005504,0.004736,0.006176,0.014048,0.014336,1.51987,0.01344
+1493,449.418,2.2251,1.04723,0.008352,0.227872,0.004096,0.006144,0.008096,0.012384,0.015616,0.754432,0.01024
+1494,682.212,1.46582,1.04189,0.008192,0.223232,0.005728,0.004512,0.007424,0.013056,0.014336,0.755584,0.009824
+1495,686.672,1.4563,1.26835,0.008768,0.446528,0.00576,0.00448,0.007456,0.013024,0.01552,0.757632,0.009184
+1496,577.064,1.73291,1.87264,0.008672,0.231424,0.004384,0.005376,0.006912,0.013472,0.013152,1.57846,0.010784
+1497,410.874,2.43384,1.0655,0.008832,0.243712,0.005184,0.004864,0.006336,0.013856,0.014656,0.75792,0.010144
+1498,736.558,1.35767,1.03341,0.009728,0.225792,0.005728,0.004512,0.007392,0.013088,0.014336,0.743424,0.009408
+1499,683.806,1.4624,1.41322,0.00816,0.225312,0.00576,0.00448,0.007456,0.013056,0.014304,1.12435,0.010336
+1500,551.056,1.8147,1.88586,0.008416,0.230752,0.004544,0.005248,0.007072,0.013312,0.014336,1.59024,0.011936
+1501,435.652,2.29541,1.04278,0.008032,0.231936,0.004096,0.005856,0.008288,0.01248,0.015392,0.746464,0.01024
+1502,668.298,1.49634,1.05088,0.00848,0.224928,0.004416,0.005376,0.006912,0.01392,0.014528,0.763232,0.009088
+1503,687.133,1.45532,1.22576,0.008416,0.40528,0.005184,0.004864,0.006336,0.014336,0.014336,0.757184,0.009824
+1504,627.259,1.59424,1.89235,0.009632,0.225888,0.005728,0.004512,0.007456,0.013024,0.014336,1.60083,0.010944
+1505,426.934,2.34229,1.03219,0.008192,0.223136,0.004192,0.005504,0.006784,0.013376,0.014944,0.747168,0.008896
+1506,635.433,1.57373,1.04042,0.009312,0.229312,0.004896,0.004288,0.007616,0.012864,0.015424,0.747776,0.008928
+1507,749.908,1.3335,1.21971,0.008128,0.405472,0.005568,0.004672,0.00784,0.013952,0.014848,0.749408,0.009824
+1508,601.645,1.66211,1.82262,0.008288,0.22928,0.005152,0.004672,0.006592,0.013984,0.014016,1.52746,0.013184
+1509,446.139,2.24146,1.04131,0.00832,0.224032,0.004096,0.005856,0.006432,0.013856,0.014304,0.755424,0.008992
+1510,679.496,1.47168,1.04291,0.008512,0.2248,0.004544,0.005248,0.00704,0.013536,0.014304,0.756,0.008928
+1511,657.675,1.52051,1.44122,0.008352,0.253376,0.00464,0.004128,0.008192,0.012288,0.014336,1.12435,0.011552
+1512,554.563,1.80322,1.88122,0.008352,0.226912,0.004352,0.00544,0.006848,0.014176,0.014496,1.58912,0.01152
+1513,441.474,2.26514,1.04976,0.009312,0.230048,0.004352,0.0056,0.00672,0.013728,0.014304,0.755968,0.009728
+1514,660.113,1.51489,1.05866,0.008128,0.225824,0.005184,0.016544,0.006944,0.0136,0.014432,0.7584,0.0096
+1515,649.231,1.54028,1.26243,0.00896,0.44656,0.005952,0.00544,0.00704,0.013984,0.014656,0.75072,0.00912
+1516,605.648,1.65112,1.87043,0.008672,0.229152,0.004768,0.004096,0.007968,0.012512,0.014336,1.57699,0.011936
+1517,448.484,2.22974,1.05194,0.00832,0.227328,0.004096,0.005792,0.006496,0.013728,0.014816,0.761376,0.009984
+1518,686.903,1.45581,1.04448,0.008256,0.224736,0.004576,0.005184,0.007072,0.0136,0.014464,0.757664,0.008928
+1519,685.867,1.45801,1.26534,0.008096,0.438496,0.004192,0.005664,0.00656,0.014368,0.014336,0.763808,0.009824
+1520,553.14,1.80786,1.88624,0.008192,0.231456,0.00512,0.004864,0.006368,0.014336,0.014272,1.59078,0.010848
+1521,454.505,2.2002,1.04646,0.008448,0.228736,0.00448,0.005312,0.006976,0.014368,0.014304,0.753664,0.010176
+1522,712.472,1.40356,1.04822,0.008224,0.227296,0.004096,0.005728,0.007808,0.013088,0.014336,0.75776,0.009888
+1523,641.403,1.55908,1.40822,0.008192,0.223232,0.00528,0.00432,0.006784,0.013536,0.01456,1.12083,0.011488
+1524,384.782,2.59888,1.88422,0.009312,0.261024,0.005632,0.004608,0.007264,0.013216,0.014368,1.55645,0.012352
+1525,694.944,1.43896,1.05968,0.008448,0.229984,0.004096,0.005856,0.007808,0.01296,0.014336,0.767168,0.009024
+1526,682.667,1.46484,1.0431,0.008736,0.231584,0.00544,0.004768,0.007584,0.012896,0.014336,0.74752,0.01024
+1527,663.857,1.50635,1.21651,0.009888,0.403808,0.005152,0.004896,0.006336,0.014336,0.014368,0.748544,0.009184
+1528,643.924,1.55298,1.872,0.008192,0.22528,0.00592,0.00432,0.007808,0.012672,0.015584,1.5816,0.010624
+1529,431.658,2.31665,1.04045,0.007968,0.229056,0.004704,0.005248,0.00704,0.013408,0.014528,0.749376,0.00912
+1530,673.906,1.48389,1.04499,0.008096,0.225888,0.004096,0.005696,0.008064,0.012864,0.014336,0.755744,0.010208
+1531,461.625,2.16626,1.03142,0.008416,0.22304,0.0056,0.004608,0.007232,0.013248,0.014336,0.745344,0.0096
+1532,630.93,1.58496,1.69712,0.008192,0.479232,0.007232,0.004864,0.006368,0.014304,0.01408,1.15126,0.011584
+1533,478.393,2.09033,1.05322,0.00704,0.229152,0.00432,0.005472,0.006816,0.013568,0.014368,0.762592,0.009888
+1534,668.08,1.49683,1.0504,0.008224,0.241024,0.004704,0.005152,0.00704,0.012384,0.014336,0.74752,0.010016
+1535,630.445,1.58618,1.03814,0.008448,0.223776,0.005696,0.004544,0.007904,0.012576,0.014336,0.750976,0.009888
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..356f57b
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,520.103,2.02333,1.54921,0.00856866,0.247566,0.00583391,0.00597344,0.00746328,1.26172,0.0120854
+max_1024,1534.08,4.67847,2.72547,0.025152,0.544576,0.0512,0.037888,0.037696,2.40682,0.34608
+min_1024,213.745,0.651855,1.21245,0.00688,0.21344,0.004064,0.004096,0.006112,0.954784,0.009056
+512,597.259,1.67432,1.23901,0.008192,0.219136,0.005792,0.004448,0.008192,0.982688,0.01056
+513,616.172,1.62292,1.23306,0.00832,0.21792,0.00528,0.006368,0.006784,0.977984,0.0104
+514,374.56,2.6698,1.69853,0.010528,0.287168,0.0056,0.00464,0.007264,1.37309,0.01024
+515,456.455,2.1908,1.22061,0.008192,0.2272,0.004224,0.006144,0.007456,0.957152,0.01024
+516,720.619,1.3877,1.22003,0.008384,0.220224,0.004864,0.005856,0.006432,0.96384,0.010432
+517,601.115,1.66357,2.10589,0.008512,0.225504,0.005792,0.005824,0.006816,1.8431,0.010336
+518,364.835,2.74097,1.22474,0.008192,0.221184,0.005568,0.004672,0.007296,0.967552,0.010272
+519,626.204,1.59692,1.22675,0.00928,0.220096,0.004096,0.007904,0.006432,0.968704,0.01024
+520,628.607,1.59082,1.22464,0.008192,0.220832,0.004448,0.006144,0.007808,0.966784,0.010432
+521,471.563,2.12061,1.58928,0.010336,0.221184,0.005536,0.00576,0.006976,1.32838,0.011104
+522,379.981,2.63171,1.22266,0.008192,0.218112,0.004928,0.006368,0.007776,0.96672,0.01056
+523,848.121,1.17908,1.32163,0.00848,0.282752,0.00464,0.006144,0.007616,1.00157,0.010432
+524,601.513,1.66248,1.92749,0.008384,0.23184,0.004096,0.006144,0.007584,1.65498,0.014464
+525,414.722,2.41125,1.41382,0.008448,0.405056,0.00496,0.005536,0.006752,0.9728,0.010272
+526,555.955,1.79871,1.22266,0.00928,0.21936,0.004832,0.004096,0.00784,0.967008,0.01024
+527,623.345,1.60425,1.21245,0.008224,0.22032,0.004928,0.006176,0.007776,0.954784,0.01024
+528,600.631,1.66492,2.16064,0.00832,0.470656,0.0064,0.006144,0.007296,1.64931,0.012512
+529,390.653,2.55981,1.22854,0.008192,0.21904,0.004192,0.006144,0.007968,0.9728,0.010208
+530,607.76,1.64539,1.27123,0.009248,0.221216,0.004928,0.005952,0.006496,1.00144,0.021952
+531,515.479,1.93994,1.27158,0.008192,0.24528,0.004576,0.006144,0.006176,0.990912,0.010304
+532,463.034,2.15967,1.63226,0.010432,0.22576,0.00416,0.005632,0.006656,1.36944,0.010176
+533,504.154,1.98352,1.25379,0.008224,0.223616,0.005408,0.005024,0.007648,0.993632,0.01024
+534,587.957,1.70081,1.24486,0.00816,0.215104,0.005568,0.00464,0.007936,0.99312,0.010336
+535,592.121,1.68884,2.11802,0.008256,0.21744,0.0056,0.00608,0.00672,1.86368,0.01024
+536,359.693,2.78015,1.27795,0.008192,0.243712,0.005664,0.004576,0.007424,0.998144,0.01024
+537,608.166,1.64429,1.22522,0.008416,0.220928,0.00464,0.006112,0.006176,0.968704,0.01024
+538,617.705,1.6189,1.23699,0.008192,0.217088,0.005632,0.005792,0.00688,0.983168,0.01024
+539,364.851,2.74084,1.52637,0.01088,0.485664,0.005152,0.00512,0.00784,1.00157,0.010144
+540,545.697,1.83252,1.2288,0.008192,0.218656,0.004576,0.006112,0.006176,0.97488,0.010208
+541,615.708,1.62415,1.25981,0.00848,0.217088,0.005568,0.006272,0.006592,1.00557,0.01024
+542,579.883,1.72449,2.42074,0.008192,0.221184,0.005248,0.004832,0.007552,2.16144,0.012288
+543,355.911,2.80969,1.26742,0.008256,0.219136,0.005248,0.005056,0.007744,1.01165,0.010336
+544,603.996,1.65564,1.23962,0.008384,0.215424,0.005728,0.004512,0.007328,0.987936,0.010304
+545,609.433,1.64087,1.25824,0.008448,0.223072,0.004768,0.006144,0.006176,0.999392,0.01024
+546,414.198,2.41431,1.61981,0.010624,0.222336,0.004928,0.00416,0.008192,1.35914,0.010432
+547,447.137,2.23645,1.28003,0.008192,0.243712,0.00544,0.005024,0.00784,0.999552,0.010272
+548,610.66,1.63757,1.24054,0.008192,0.220768,0.004512,0.00768,0.00656,0.982496,0.010336
+549,624.01,1.60254,2.38474,0.0072,0.22512,0.005376,0.005888,0.007136,2.12112,0.012896
+550,363.459,2.75134,1.23632,0.008192,0.218944,0.004288,0.005568,0.00672,0.982272,0.010336
+551,604.799,1.65344,1.26621,0.00816,0.220704,0.005088,0.006144,0.007968,1.00787,0.010272
+552,591.779,1.68982,1.57696,0.008192,0.224576,0.0048,0.004096,0.00768,1.31328,0.014336
+553,458.704,2.18005,1.64054,0.008288,0.221184,0.004096,0.006144,0.00752,1.38307,0.01024
+554,494.238,2.02332,1.23773,0.008448,0.219616,0.005504,0.005824,0.007104,0.980992,0.01024
+555,516.813,1.93494,1.25091,0.008224,0.229024,0.004416,0.006144,0.007264,0.98544,0.0104
+556,609.297,1.64124,2.41043,0.008192,0.221184,0.005632,0.00576,0.006656,2.15078,0.012224
+557,355.417,2.8136,1.24109,0.008192,0.219168,0.005472,0.005792,0.007136,0.985088,0.01024
+558,608.799,1.64258,1.23696,0.008192,0.216672,0.004512,0.005312,0.007008,0.984768,0.010496
+559,592.421,1.68799,1.26362,0.009344,0.235616,0.004896,0.005856,0.006432,0.991232,0.01024
+560,424.742,2.35437,1.61997,0.011392,0.22736,0.00416,0.004672,0.006368,1.35578,0.01024
+561,497.178,2.01135,1.2329,0.008192,0.219136,0.005216,0.005024,0.00768,0.977408,0.01024
+562,616.079,1.62317,1.23686,0.009472,0.215808,0.00576,0.006528,0.007648,0.981024,0.010624
+563,351.392,2.84583,2.48163,0.022528,0.238784,0.004928,0.005824,0.006464,2.19094,0.01216
+564,527.869,1.89441,1.24099,0.008192,0.223008,0.00432,0.005472,0.006816,0.982848,0.010336
+565,621.784,1.60828,1.23699,0.008192,0.219136,0.005824,0.005792,0.006816,0.980992,0.01024
+566,587.366,1.70251,1.9369,0.008192,0.22528,0.005824,0.004416,0.007552,1.6712,0.014432
+567,427.424,2.3396,1.44026,0.008576,0.40768,0.0056,0.00464,0.00736,0.995168,0.011232
+568,559.372,1.78772,1.23213,0.008224,0.216992,0.004192,0.005632,0.006656,0.980224,0.010208
+569,605.156,1.65247,1.23693,0.008384,0.223072,0.00576,0.005792,0.006848,0.97664,0.010432
+570,570.633,1.75244,2.40192,0.008288,0.22096,0.004224,0.006144,0.007584,2.14224,0.01248
+571,358.873,2.7865,1.22771,0.007104,0.223232,0.004096,0.006144,0.007712,0.969184,0.01024
+572,602.796,1.65894,1.23462,0.008288,0.21936,0.005984,0.006304,0.007872,0.976416,0.0104
+573,610.205,1.63879,1.23792,0.008416,0.21536,0.00448,0.006176,0.0072,0.986048,0.01024
+574,416.408,2.40149,1.63242,0.0104,0.223232,0.005696,0.004544,0.006144,1.37213,0.010272
+575,489.425,2.04321,1.28774,0.008192,0.221184,0.005888,0.006368,0.006208,1.02966,0.01024
+576,584.809,1.70996,1.23741,0.00832,0.215616,0.005344,0.004832,0.00624,0.986752,0.010304
+577,600.322,1.66577,2.42848,0.008192,0.219168,0.005568,0.005792,0.007008,2.17075,0.012
+578,260.809,3.83423,1.25133,0.008224,0.218752,0.004448,0.005376,0.006848,0.99744,0.01024
+579,1270.87,0.786865,1.24192,0.008416,0.227936,0.005568,0.004672,0.007552,0.977536,0.01024
+580,607.67,1.64563,1.24112,0.00944,0.2216,0.00448,0.006176,0.008,0.981152,0.010272
+581,483.818,2.06689,1.64739,0.010624,0.221504,0.004192,0.007776,0.00656,1.3865,0.01024
+582,482.791,2.07129,1.23072,0.008224,0.217184,0.005376,0.004832,0.006176,0.978432,0.010496
+583,612.944,1.63147,1.23056,0.008192,0.216768,0.004416,0.006176,0.00736,0.976928,0.01072
+584,538.345,1.85754,2.07872,0.008192,0.221184,0.004096,0.005792,0.006496,1.8225,0.010464
+585,394.301,2.53613,1.23933,0.008384,0.218304,0.004928,0.005792,0.006656,0.984896,0.010368
+586,621.642,1.60864,1.26566,0.008192,0.216576,0.004608,0.007296,0.00704,1.00352,0.018432
+587,526.749,1.89844,1.25136,0.008192,0.22528,0.005536,0.005792,0.007072,0.989216,0.010272
+588,379.154,2.63745,1.44131,0.011296,0.405888,0.004704,0.006048,0.00624,0.995328,0.011808
+589,556.295,1.79761,1.23018,0.008192,0.219136,0.005408,0.005024,0.007712,0.974496,0.010208
+590,612.074,1.63379,1.23904,0.008288,0.220128,0.004928,0.004224,0.007488,0.983584,0.0104
+591,525.027,1.90466,2.42653,0.008192,0.233728,0.005792,0.005792,0.006848,2.15379,0.012384
+592,379.312,2.63635,1.25734,0.008192,0.219136,0.005888,0.005792,0.006752,1.00112,0.010464
+593,602.796,1.65894,1.24365,0.008288,0.2176,0.005184,0.00704,0.006176,0.989024,0.010336
+594,615.2,1.62549,1.24157,0.008448,0.221056,0.004448,0.006144,0.006176,0.985056,0.01024
+595,305.466,3.27368,1.27328,0.010368,0.231424,0.004096,0.006144,0.007712,1.00323,0.010304
+596,604.754,1.65356,1.24723,0.008192,0.217088,0.005856,0.004512,0.00784,0.994592,0.009152
+597,575.321,1.73816,1.29069,0.008416,0.272256,0.005344,0.004768,0.006496,0.98304,0.010368
+598,529.37,1.88904,1.29712,0.008352,0.276064,0.00496,0.004224,0.007744,0.985536,0.01024
+599,581.034,1.72107,1.26701,0.00832,0.220384,0.004928,0.00576,0.008224,1.00797,0.011424
+600,621.359,1.60938,1.24938,0.00816,0.219264,0.005504,0.00656,0.0064,0.993248,0.01024
+601,593.537,1.68481,1.23299,0.00848,0.21744,0.004096,0.006144,0.007424,0.979104,0.010304
+602,606.141,1.64978,2.29651,0.008096,0.463232,0.00656,0.006144,0.006144,1.79594,0.0104
+603,364.965,2.73999,1.27386,0.008192,0.227328,0.005248,0.005024,0.007328,1.0105,0.01024
+604,605.201,1.65234,1.24294,0.008288,0.21648,0.004896,0.005792,0.006528,0.990432,0.010528
+605,572.667,1.74622,1.96102,0.008192,0.234912,0.004704,0.006016,0.006304,1.68547,0.015424
+606,403.706,2.47705,1.2288,0.008224,0.219072,0.004128,0.005696,0.006592,0.974848,0.01024
+607,621.973,1.60779,1.26989,0.00816,0.2152,0.005536,0.006688,0.00624,1.01782,0.01024
+608,600.807,1.66443,1.25059,0.008224,0.216288,0.004896,0.007232,0.007104,0.996448,0.0104
+609,479.878,2.08386,2.27946,0.008192,0.520192,0.02048,0.006144,0.016384,1.69574,0.01232
+610,339.762,2.94324,1.30253,0.008192,0.21888,0.004352,0.005248,0.00704,1.03834,0.02048
+611,827.893,1.20789,1.25533,0.008288,0.222016,0.005696,0.005824,0.006912,0.995328,0.011264
+612,576.901,1.7334,1.95603,0.008352,0.249632,0.00432,0.006144,0.00736,1.66586,0.014368
+613,437.654,2.28491,1.44589,0.00928,0.406464,0.004256,0.00576,0.006368,1.00352,0.01024
+614,547.997,1.82483,1.25542,0.008224,0.218176,0.00496,0.00416,0.00768,1.00198,0.01024
+615,615.986,1.62341,1.26192,0.008128,0.222944,0.0048,0.006144,0.007712,1.00195,0.01024
+616,572.787,1.74585,2.41101,0.008256,0.219584,0.005504,0.004736,0.006144,2.15389,0.012896
+617,356.717,2.80334,1.24867,0.008192,0.21712,0.005376,0.006272,0.006752,0.994624,0.010336
+618,608.392,1.64368,1.25514,0.008192,0.220768,0.004512,0.006176,0.007168,0.998048,0.010272
+619,505.866,1.97681,1.61174,0.009504,0.280768,0.00464,0.00608,0.00624,1.28106,0.023456
+620,474.596,2.10706,1.6824,0.008512,0.264192,0.004704,0.00576,0.006592,1.3824,0.01024
+621,493.911,2.02466,1.25171,0.008288,0.220992,0.004544,0.006144,0.006144,0.995328,0.010272
+622,596.432,1.67664,1.26528,0.008384,0.21904,0.004352,0.00544,0.006848,1.01078,0.010432
+623,588.379,1.69958,2.47104,0.00832,0.221056,0.005408,0.005056,0.00784,2.20995,0.013408
+624,346.678,2.88452,1.24989,0.00832,0.219616,0.005376,0.004864,0.006144,0.995328,0.01024
+625,602.53,1.65967,1.25645,0.007136,0.218304,0.004928,0.006144,0.007968,1.0017,0.010272
+626,563.993,1.77307,1.30125,0.008288,0.217888,0.005568,0.005792,0.007072,1.04624,0.0104
+627,394.434,2.53528,1.45926,0.02416,0.405248,0.004768,0.005152,0.016448,0.99216,0.011328
+628,576.536,1.7345,1.27254,0.008128,0.226048,0.005696,0.004544,0.00736,1.0105,0.010272
+629,640.55,1.56116,1.27194,0.008224,0.219232,0.004096,0.006144,0.007392,1.01661,0.01024
+630,604.308,1.65479,2.39872,0.00832,0.222816,0.004928,0.004096,0.007904,2.13766,0.012992
+631,350.235,2.85522,1.24282,0.008192,0.217088,0.005856,0.005792,0.006816,0.988736,0.010336
+632,607.625,1.64575,1.22726,0.008192,0.2176,0.005504,0.004736,0.006176,0.974816,0.01024
+633,514.67,1.94299,1.56691,0.008352,0.222624,0.004704,0.006144,0.018336,1.29238,0.014368
+634,400.92,2.49426,1.74931,0.008512,0.293152,0.0056,0.005824,0.007008,1.41904,0.010176
+635,638.703,1.56567,1.24461,0.008384,0.221216,0.005152,0.005056,0.007776,0.986944,0.01008
+636,584.725,1.71021,1.23485,0.008224,0.221568,0.00432,0.006144,0.007648,0.97648,0.010464
+637,617.891,1.61841,2.41869,0.008192,0.222912,0.004416,0.005216,0.007072,2.15814,0.012736
+638,355.309,2.81445,1.24314,0.008192,0.221152,0.004128,0.006176,0.007296,0.985952,0.01024
+639,600.234,1.66602,1.26566,0.008192,0.221184,0.005248,0.006688,0.006496,1.00736,0.010496
+640,598.393,1.67114,1.57882,0.008224,0.216832,0.004352,0.006144,0.006144,0.99104,0.34608
+641,451.474,2.21497,1.64032,0.01024,0.221184,0.004096,0.006144,0.007712,1.38045,0.010496
+642,374.646,2.66919,1.23462,0.008192,0.22688,0.004544,0.006144,0.006144,0.972416,0.010304
+643,710.741,1.40698,1.23696,0.008192,0.219136,0.005536,0.005792,0.007072,0.980928,0.010304
+644,606.68,1.64832,2.43667,0.008256,0.220384,0.00496,0.00576,0.006528,2.1783,0.01248
+645,347.989,2.87366,1.24109,0.008192,0.220224,0.004928,0.004224,0.007744,0.985536,0.01024
+646,605.559,1.65137,1.25376,0.008288,0.219424,0.004096,0.005824,0.006464,0.999424,0.01024
+647,596.129,1.67749,1.93248,0.008192,0.220288,0.00496,0.004128,0.00784,1.67152,0.015552
+648,432.775,2.31067,1.43728,0.008192,0.4096,0.00528,0.004896,0.006208,0.992704,0.0104
+649,534.063,1.87244,1.24314,0.008192,0.216768,0.004416,0.006144,0.007264,0.98912,0.011232
+650,607.265,1.64673,1.23008,0.008288,0.216992,0.004096,0.006144,0.007424,0.970976,0.01616
+651,500.214,1.99915,2.4431,0.008288,0.249056,0.00496,0.004256,0.00768,2.15501,0.013856
+652,366.434,2.729,1.24928,0.008192,0.22048,0.0048,0.00592,0.006368,0.99328,0.01024
+653,603.863,1.65601,1.26064,0.008192,0.219136,0.004096,0.00576,0.006528,1.00666,0.010272
+654,588.886,1.69812,1.9329,0.008192,0.223136,0.004192,0.006144,0.007264,1.66957,0.0144
+655,424.852,2.35376,1.44285,0.009376,0.406368,0.005568,0.005792,0.007072,0.998432,0.01024
+656,561.404,1.78125,1.25632,0.008384,0.21696,0.004896,0.005856,0.006432,1.00342,0.010368
+657,616.542,1.62195,1.26749,0.008192,0.221184,0.005728,0.006368,0.006336,1.00918,0.010496
+658,561.711,1.78027,2.49414,0.008352,0.217376,0.005568,0.004928,0.007872,2.23766,0.012384
+659,339.579,2.94482,1.27366,0.008288,0.225728,0.00576,0.005792,0.006848,1.01082,0.010432
+660,586.904,1.70386,1.26301,0.008192,0.21952,0.006144,0.006144,0.006144,1.00557,0.011296
+661,609.207,1.64148,1.56061,0.008192,0.217088,0.005568,0.004672,0.007264,1.28912,0.028704
+662,444.806,2.24817,1.65024,0.008192,0.22096,0.00432,0.006144,0.007232,1.39312,0.010272
+663,509.992,1.96082,1.27302,0.008192,0.221184,0.006144,0.004096,0.008032,1.0151,0.010272
+664,583.933,1.71252,1.26794,0.008224,0.216288,0.004928,0.00576,0.006688,1.01581,0.01024
+665,588.633,1.69885,2.43382,0.008416,0.219712,0.005728,0.004512,0.007456,2.17571,0.012288
+666,318.755,3.13721,1.29846,0.016416,0.253408,0.004608,0.006112,0.01792,0.989536,0.010464
+667,681.021,1.46838,1.26538,0.008128,0.217216,0.005824,0.005856,0.006752,1.0111,0.010496
+668,584.642,1.71045,1.56179,0.008192,0.220608,0.004672,0.006016,0.006272,0.997376,0.318656
+669,450.754,2.21851,1.6569,0.008224,0.247264,0.00464,0.004096,0.008192,1.37402,0.010464
+670,491.776,2.03345,1.24525,0.008192,0.219008,0.004224,0.006144,0.007488,0.989888,0.010304
+671,603.818,1.65613,1.24262,0.008032,0.215712,0.005728,0.004512,0.007328,0.990048,0.011264
+672,573.589,1.74341,2.40269,0.008288,0.220832,0.004896,0.005824,0.006464,2.144,0.012384
+673,365.78,2.73389,1.25034,0.007072,0.219136,0.005728,0.00576,0.006976,0.995296,0.010368
+674,456.506,2.19055,1.27386,0.008224,0.22528,0.005856,0.005792,0.006752,1.01171,0.01024
+675,791.88,1.26282,1.5849,0.008256,0.274304,0.004736,0.005824,0.006464,0.991232,0.29408
+676,457.679,2.18494,1.65715,0.010528,0.221184,0.005312,0.005024,0.007808,1.39702,0.010272
+677,491.982,2.03259,1.24982,0.008,0.219584,0.004384,0.005408,0.006912,0.995296,0.01024
+678,618.311,1.61731,1.25405,0.008352,0.22272,0.00496,0.005792,0.007808,0.994176,0.01024
+679,393.222,2.54309,2.4033,0.007136,0.220704,0.004576,0.005216,0.007072,2.1463,0.012288
+680,499.025,2.00391,1.25907,0.008192,0.217088,0.005856,0.006432,0.007424,1.00378,0.010304
+681,604.888,1.6532,1.26771,0.009504,0.221184,0.004832,0.006144,0.007328,1.00848,0.01024
+682,424.918,2.35339,1.32598,0.008288,0.293696,0.005664,0.005792,0.01296,0.989312,0.010272
+683,855.472,1.16895,2.31011,0.008224,0.459872,0.01728,0.006144,0.007488,1.80029,0.010816
+684,368.428,2.71423,1.24909,0.008544,0.221248,0.004384,0.006144,0.007296,0.99008,0.011392
+685,614.692,1.62683,1.28614,0.008192,0.218496,0.004736,0.007168,0.007104,1.03021,0.01024
+686,585.938,1.70667,2.40624,0.008192,0.219168,0.00512,0.005088,0.007776,2.14813,0.012768
+687,354.693,2.81934,1.24723,0.008192,0.220288,0.00496,0.004128,0.007808,0.991616,0.01024
+688,608.347,1.6438,1.2625,0.008384,0.217504,0.004416,0.007488,0.00656,1.00778,0.010368
+689,582.978,1.71533,1.97504,0.008384,0.217792,0.004096,0.006144,0.00768,1.71674,0.014208
+690,382.732,2.61279,1.45517,0.008192,0.40448,0.004992,0.004224,0.016384,1.00662,0.010272
+691,575.321,1.73816,1.29357,0.008192,0.21856,0.004672,0.006048,0.006272,1.03965,0.010176
+692,597.259,1.67432,1.27366,0.008192,0.217088,0.00528,0.006272,0.00688,1.01946,0.010496
+693,529.918,1.88708,2.25485,0.008192,0.505856,0.028672,0.008192,0.00736,1.68416,0.012416
+694,399.279,2.50452,1.26627,0.00832,0.217408,0.00448,0.005952,0.006336,1.01344,0.010336
+695,608.709,1.64282,1.25405,0.008256,0.215648,0.005408,0.004832,0.008032,1.00163,0.01024
+696,605.335,1.65198,1.56499,0.008352,0.221344,0.004096,0.006112,0.006176,1.30458,0.014336
+697,438.943,2.2782,1.63667,0.008576,0.219136,0.004096,0.005824,0.006464,1.3824,0.010176
+698,481.882,2.0752,1.27994,0.008416,0.218656,0.004832,0.005856,0.006432,1.02541,0.010336
+699,589.31,1.6969,1.27734,0.008192,0.222368,0.004896,0.006208,0.007584,1.01779,0.010304
+700,572.747,1.74597,2.43744,0.008224,0.219616,0.005888,0.00576,0.007872,2.17798,0.012096
+701,357.012,2.80103,1.26422,0.007936,0.218112,0.005376,0.004864,0.006176,1.01142,0.010336
+702,566.764,1.7644,1.2841,0.008288,0.22112,0.005472,0.006784,0.006144,1.02605,0.01024
+703,617.565,1.61926,1.56486,0.00832,0.219808,0.005696,0.004512,0.007424,1.29715,0.021952
+704,458.319,2.18188,1.66912,0.008192,0.219136,0.005696,0.006592,0.007552,1.41171,0.01024
+705,487.097,2.05298,1.26157,0.008224,0.221152,0.005696,0.006592,0.007392,1.00182,0.010688
+706,515.869,1.93848,1.28432,0.008384,0.219936,0.005632,0.005792,0.007008,1.02717,0.0104
+707,549.062,1.82129,2.25485,0.008192,0.50176,0.016128,0.0056,0.006944,1.70394,0.012288
+708,389.095,2.57007,1.2591,0.009248,0.21808,0.004096,0.006144,0.007904,1.00314,0.010496
+709,595.868,1.67822,1.25754,0.008224,0.217088,0.005568,0.004672,0.006144,1.00531,0.010528
+710,584.017,1.71228,1.5992,0.008192,0.219168,0.004064,0.00768,0.006656,1.34128,0.01216
+711,454.833,2.19861,1.65754,0.008352,0.221344,0.004448,0.00432,0.007968,1.40186,0.009248
+712,486.461,2.05566,1.27616,0.008192,0.217216,0.004224,0.006144,0.007232,1.02291,0.01024
+713,595.522,1.6792,1.29203,0.008608,0.217184,0.004288,0.006144,0.007872,1.03661,0.011328
+714,535.005,1.86914,1.98064,0.008192,0.249376,0.0048,0.005952,0.006336,1.69165,0.014336
+715,393.884,2.53882,1.25926,0.008544,0.219136,0.005792,0.004448,0.007776,1.0033,0.010272
+716,607.535,1.646,1.26141,0.008192,0.218624,0.004608,0.006368,0.00784,1.00547,0.010304
+717,618.078,1.61792,1.58784,0.00832,0.221248,0.004544,0.005248,0.00704,1.32822,0.013216
+718,434.82,2.2998,1.66592,0.008576,0.2176,0.005472,0.006176,0.006784,1.41091,0.0104
+719,483.932,2.06641,1.29376,0.008512,0.217024,0.004224,0.008192,0.0072,1.0384,0.010208
+720,605.022,1.65283,1.29229,0.008192,0.222624,0.004704,0.007264,0.007072,1.03219,0.01024
+721,553.775,1.80579,2.14691,0.008416,0.219744,0.004096,0.006144,0.008064,1.88973,0.01072
+722,356.251,2.80701,1.29738,0.007104,0.235552,0.005216,0.005024,0.00784,1.02637,0.010272
+723,558.38,1.79089,1.30304,0.008192,0.239616,0.004608,0.006144,0.007232,1.02701,0.01024
+724,531.672,1.88086,1.67117,0.008192,0.227328,0.00592,0.013952,0.006752,1.39674,0.012288
+725,485.251,2.06079,1.67117,0.008192,0.224576,0.0048,0.005632,0.006656,1.4121,0.009216
+726,480.864,2.07959,1.28778,0.008608,0.221216,0.005856,0.005792,0.006688,1.02931,0.010304
+727,581.488,1.71973,1.29187,0.008192,0.220224,0.00496,0.004192,0.00752,1.03654,0.01024
+728,594.485,1.68213,2.44624,0.008288,0.219968,0.005664,0.00576,0.007008,2.18835,0.0112
+729,299.131,3.34302,1.35373,0.008192,0.278528,0.006144,0.004096,0.020352,1.02618,0.01024
+730,644.025,1.55273,1.26864,0.008352,0.228096,0.005184,0.005056,0.00784,1.00387,0.01024
+731,615.847,1.62378,1.98656,0.008192,0.23504,0.004576,0.006176,0.006112,1.71213,0.014336
+732,398.948,2.50659,1.31482,0.008192,0.221184,0.005856,0.005792,0.006784,1.05677,0.01024
+733,559.486,1.78735,1.26976,0.008192,0.221184,0.005184,0.004864,0.006336,1.01376,0.01024
+734,615.755,1.62402,1.27834,0.008288,0.217376,0.005216,0.005024,0.00768,1.02451,0.01024
+735,601.822,1.66162,2.2455,0.00832,0.46768,0.009888,0.0056,0.007072,1.73466,0.012288
+736,371.89,2.68896,1.29597,0.008192,0.219136,0.005856,0.005792,0.008032,1.03856,0.0104
+737,460.432,2.17188,1.30467,0.008288,0.249248,0.004704,0.006176,0.00752,1.0185,0.01024
+738,774.145,1.29175,2.00237,0.008192,0.221184,0.005184,0.005056,0.008192,1.74067,0.013888
+739,394.947,2.53198,1.46403,0.008352,0.40928,0.004544,0.005344,0.006944,1.01914,0.010432
+740,557.962,1.79224,1.29658,0.008224,0.216416,0.004896,0.005824,0.006464,1.04448,0.010272
+741,593.968,1.68359,1.2841,0.009376,0.215904,0.005792,0.006496,0.00752,1.02877,0.01024
+742,557.203,1.79468,2.52861,0.008192,0.22112,0.00416,0.006144,0.022528,2.25485,0.011616
+743,349.876,2.85815,1.27165,0.008192,0.218592,0.00464,0.00608,0.006208,1.0176,0.010336
+744,603.685,1.65649,1.28208,0.008192,0.218112,0.004928,0.005792,0.006688,1.02733,0.01104
+745,501.838,1.99268,2.10035,0.020512,0.271648,0.0048,0.005952,0.016576,1.76742,0.01344
+746,391.288,2.55566,1.28077,0.00688,0.221184,0.005888,0.005792,0.006752,1.024,0.010272
+747,587.746,1.70142,1.28288,0.00816,0.217248,0.004928,0.004096,0.007328,1.03082,0.010304
+748,605.29,1.6521,1.29638,0.008192,0.221184,0.004096,0.006176,0.00736,1.03914,0.01024
+749,447.797,2.23315,1.62202,0.011872,0.221472,0.004224,0.0056,0.006688,1.36176,0.0104
+750,499.512,2.00195,1.26637,0.008256,0.219776,0.005248,0.005056,0.007488,1.0103,0.01024
+751,599.006,1.66943,1.26803,0.008192,0.219296,0.005696,0.005888,0.006848,1.01171,0.0104
+752,570.951,1.75146,2.0521,0.009312,0.242592,0.015648,0.005024,0.007808,1.75853,0.013184
+753,336.013,2.97607,1.31498,0.008288,0.231296,0.004672,0.00608,0.007392,1.04694,0.010304
+754,607.986,1.64478,1.28205,0.008192,0.221088,0.004192,0.006176,0.007968,1.02419,0.01024
+755,580.17,1.72363,1.25773,0.008416,0.215072,0.005248,0.005024,0.008064,1.00566,0.01024
+756,602.53,1.65967,2.36698,0.008192,0.484864,0.006656,0.017504,0.007072,1.83091,0.011776
+757,353.958,2.8252,1.26304,0.008128,0.219488,0.004256,0.005568,0.00672,1.00762,0.011264
+758,602.796,1.65894,1.30435,0.009504,0.217568,0.004352,0.007584,0.006752,1.04826,0.010336
+759,574.152,1.7417,2.46054,0.00704,0.217088,0.00592,0.00432,0.008192,2.2057,0.012288
+760,308.527,3.24121,1.32954,0.008224,0.280032,0.00496,0.0056,0.006752,1.01363,0.010336
+761,669.828,1.49292,1.2825,0.008416,0.218976,0.00448,0.005312,0.006976,1.0281,0.01024
+762,598.655,1.67041,1.59709,0.008192,0.221152,0.004128,0.006144,0.007552,1.29898,0.050944
+763,452.947,2.20776,1.71968,0.009568,0.277152,0.005728,0.004512,0.007552,1.40499,0.010176
+764,478.728,2.08887,1.29024,0.008192,0.218848,0.005408,0.00512,0.008064,1.03437,0.01024
+765,584.058,1.71216,1.2815,0.008192,0.217088,0.0056,0.00464,0.007296,1.02838,0.010304
+766,561.173,1.78198,2.25894,0.009376,0.478048,0.02064,0.005984,0.00768,1.72458,0.01264
+767,379.822,2.63281,1.27837,0.008,0.21984,0.005728,0.005888,0.006816,1.02195,0.010144
+768,611.435,1.6355,1.28742,0.00832,0.218592,0.00464,0.00608,0.006208,1.03331,0.010272
+769,560.942,1.78271,1.30061,0.00832,0.24272,0.004864,0.00608,0.00768,1.02058,0.010368
+770,434.128,2.30347,1.48422,0.010272,0.42976,0.004416,0.005472,0.006816,1.01699,0.010496
+771,533.333,1.875,1.26234,0.008032,0.217984,0.004096,0.005856,0.006432,1.00963,0.010304
+772,610.523,1.63794,1.29686,0.008384,0.221152,0.004384,0.007552,0.006784,1.03834,0.010272
+773,541.512,1.84668,2.43037,0.008128,0.221312,0.005216,0.004864,0.006304,2.17277,0.011776
+774,237.987,4.2019,1.43197,0.00816,0.320544,0.005632,0.018912,0.008192,1.05994,0.010592
+775,1136.83,0.879639,1.29622,0.008192,0.22528,0.005312,0.004832,0.012384,1.02982,0.0104
+776,566.137,1.76636,2.20266,0.008192,0.237568,0.005408,0.005024,0.007872,1.9273,0.011296
+777,358.418,2.79004,1.27398,0.008128,0.223296,0.004096,0.006144,0.00736,1.01565,0.009312
+778,602.264,1.6604,1.29901,0.00816,0.217888,0.005408,0.005056,0.007744,1.04432,0.010432
+779,579.924,1.72437,1.62554,0.008192,0.219136,0.004096,0.005728,0.00784,1.36816,0.012384
+780,425.78,2.34863,1.71174,0.008416,0.245024,0.004832,0.005888,0.0064,1.43114,0.010048
+781,481.769,2.07568,1.29862,0.007968,0.217472,0.005824,0.005792,0.006816,1.04448,0.010272
+782,564.576,1.77124,1.2769,0.008704,0.225088,0.004768,0.006144,0.006144,1.01581,0.01024
+783,590.883,1.69238,2.52314,0.008192,0.227328,0.005568,0.006016,0.006848,2.25894,0.01024
+784,334.641,2.98828,1.31427,0.008192,0.2312,0.00432,0.006144,0.007424,1.04669,0.010304
+785,562.174,1.77881,1.28909,0.008128,0.223328,0.004928,0.006176,0.007872,1.02842,0.01024
+786,599.883,1.66699,2.15757,0.008288,0.248704,0.005696,0.005792,0.00656,1.87226,0.010272
+787,374.817,2.66797,1.28627,0.008032,0.22144,0.004192,0.006144,0.007456,1.02874,0.010272
+788,595.522,1.6792,1.29024,0.009248,0.216032,0.005344,0.005024,0.00768,1.03667,0.01024
+789,596.65,1.67603,1.31072,0.00848,0.221888,0.005472,0.0064,0.00656,1.05062,0.011296
+790,481.712,2.07593,2.36899,0.008192,0.50176,0.006144,0.005792,0.006496,1.8289,0.011712
+791,384.204,2.60278,1.32301,0.009536,0.217792,0.005504,0.004768,0.007168,1.068,0.01024
+792,577.715,1.73096,1.27312,0.008192,0.221184,0.005824,0.006016,0.006592,1.01376,0.011552
+793,577.227,1.73242,2.13434,0.008544,0.219104,0.005728,0.004512,0.007488,1.87827,0.010688
+794,365.258,2.73779,1.27398,0.008224,0.218432,0.004896,0.005824,0.006464,1.01984,0.010304
+795,593.451,1.68506,1.27917,0.008192,0.225056,0.00432,0.006144,0.007328,1.01773,0.0104
+796,588.421,1.69946,1.32179,0.008384,0.217728,0.005216,0.005056,0.007744,1.06742,0.01024
+797,389.317,2.5686,1.68794,0.010656,0.235232,0.004352,0.005472,0.006816,1.41517,0.01024
+798,520.193,1.92236,1.27965,0.008256,0.219328,0.005952,0.00624,0.007552,1.02189,0.010432
+799,583.393,1.71411,1.28294,0.0072,0.216928,0.004096,0.005824,0.006464,1.03219,0.01024
+800,579.022,1.72705,2.45126,0.008256,0.22112,0.005536,0.006432,0.006496,2.19062,0.0128
+801,351.377,2.84595,1.30493,0.007968,0.22096,0.004896,0.005824,0.006496,1.04854,0.01024
+802,592.764,1.68701,1.29229,0.008224,0.219072,0.005472,0.006848,0.007264,1.03517,0.01024
+803,575.847,1.73657,1.99482,0.008192,0.218848,0.004384,0.006176,0.006112,1.73805,0.013056
+804,412.778,2.42261,1.47309,0.007136,0.407552,0.00592,0.00432,0.00768,1.03005,0.010432
+805,515.285,1.94067,1.28374,0.008384,0.219424,0.005472,0.004768,0.00736,1.02694,0.011392
+806,596.042,1.67773,1.27933,0.008192,0.219136,0.00544,0.006592,0.0064,1.02333,0.01024
+807,491.186,2.03589,2.36346,0.008192,0.497888,0.008096,0.0056,0.006784,1.82634,0.01056
+808,395.672,2.52734,1.28582,0.008192,0.217088,0.00576,0.005792,0.006912,1.03174,0.010336
+809,595.089,1.68042,1.28778,0.008128,0.219232,0.005248,0.005024,0.007584,1.03206,0.010496
+810,579.924,1.72437,1.65274,0.008192,0.237568,0.00544,0.005024,0.00768,1.37654,0.012288
+811,433.806,2.30518,1.49523,0.007936,0.40592,0.006016,0.004224,0.00768,1.05318,0.010272
+812,534.726,1.87012,1.28477,0.008288,0.217664,0.005376,0.005024,0.007424,1.03075,0.01024
+813,552.841,1.80884,1.29926,0.00832,0.221056,0.004928,0.005696,0.006656,1.04221,0.0104
+814,560.865,1.78296,2.34826,0.008192,0.484992,0.006528,0.006144,0.007264,1.82365,0.011488
+815,373.246,2.6792,1.2657,0.008192,0.216448,0.004736,0.004096,0.00784,1.01411,0.010272
+816,603.774,1.65625,1.29846,0.008352,0.222752,0.004416,0.006176,0.007232,1.03926,0.010272
+817,565.824,1.76733,1.98662,0.008672,0.217152,0.005888,0.005792,0.006752,1.72819,0.014176
+818,422.704,2.36572,1.47037,0.008224,0.409984,0.004096,0.006144,0.00768,1.024,0.01024
+819,552.916,1.80859,1.29731,0.007168,0.221088,0.005376,0.005024,0.007808,1.04061,0.01024
+820,569.126,1.75708,1.32358,0.008384,0.217312,0.004256,0.006144,0.0072,1.06957,0.01072
+821,531.534,1.88135,2.55322,0.008384,0.229408,0.004128,0.006144,0.007488,2.28627,0.011392
+822,337.147,2.96606,1.29379,0.008224,0.221184,0.005216,0.005056,0.00784,1.0359,0.010368
+823,597.085,1.6748,1.29846,0.008192,0.217088,0.005504,0.004736,0.006144,1.04643,0.010368
+824,576.414,1.73486,2.03162,0.008192,0.218464,0.004768,0.005952,0.006336,1.77514,0.012768
+825,391.4,2.55493,1.33482,0.008224,0.219584,0.005632,0.004576,0.007424,1.0791,0.010272
+826,583.808,1.71289,1.28,0.008288,0.216576,0.004512,0.0072,0.007136,1.02605,0.01024
+827,597.172,1.67456,1.29434,0.008192,0.21504,0.00576,0.006528,0.007584,1.04099,0.01024
+828,340.652,2.93555,1.80694,0.01072,0.31552,0.0056,0.005792,0.014848,1.44406,0.0104
+829,594.83,1.68115,1.29229,0.008192,0.230976,0.004544,0.006144,0.006176,1.02602,0.01024
+830,587.156,1.70312,1.28678,0.008352,0.218816,0.004992,0.005792,0.008128,1.03034,0.010368
+831,576.577,1.73438,2.15654,0.008192,0.22528,0.005792,0.004448,0.007392,1.89517,0.010272
+832,365.616,2.73511,1.31686,0.008192,0.220416,0.004864,0.006112,0.006176,1.06086,0.01024
+833,574.716,1.73999,1.28714,0.008288,0.217952,0.005344,0.006944,0.006176,1.03216,0.010272
+834,519.336,1.92554,1.6569,0.008192,0.243104,0.004704,0.006016,0.006272,1.37626,0.012352
+835,484.275,2.06494,1.7103,0.008416,0.222368,0.00496,0.006144,0.007552,1.45062,0.01024
+836,421.877,2.37036,1.33443,0.008192,0.247808,0.005344,0.005024,0.007904,1.04874,0.011424
+837,580.417,1.7229,1.3305,0.008192,0.226496,0.004928,0.004096,0.00784,1.06877,0.010176
+838,594.14,1.68311,2.55712,0.00832,0.230976,0.004608,0.006112,0.006176,2.28966,0.011264
+839,337.453,2.96338,1.29549,0.008192,0.220544,0.004736,0.004096,0.008064,1.03968,0.010176
+840,576.82,1.73364,1.29827,0.008288,0.222176,0.004928,0.006272,0.00768,1.03843,0.010496
+841,587.072,1.70337,2.17651,0.008192,0.22528,0.00528,0.005056,0.008096,1.91418,0.010432
+842,357.729,2.79541,1.2831,0.008224,0.221056,0.004192,0.006144,0.007328,1.02592,0.01024
+843,429.215,2.32983,1.33392,0.008448,0.246176,0.005696,0.004544,0.00736,1.05146,0.01024
+844,858.16,1.16528,1.29843,0.008192,0.219136,0.005856,0.005792,0.006784,1.04243,0.01024
+845,418.728,2.38818,1.68915,0.010336,0.22288,0.004448,0.005376,0.006912,1.4289,0.010304
+846,470.805,2.12402,1.30736,0.008288,0.221824,0.005728,0.005824,0.00688,1.04858,0.01024
+847,587.999,1.70068,1.28669,0.008128,0.21568,0.004192,0.00576,0.006432,1.03626,0.01024
+848,575.119,1.73877,2.45677,0.008192,0.220864,0.004416,0.006144,0.006144,2.19859,0.012416
+849,289.041,3.45972,1.28854,0.008352,0.221344,0.004128,0.006144,0.007808,1.03053,0.01024
+850,897.262,1.1145,1.29248,0.008192,0.217184,0.004448,0.005824,0.006464,1.02534,0.025024
+851,466.196,2.14502,1.34,0.00848,0.264064,0.004576,0.006176,0.006144,1.04029,0.010272
+852,501.04,1.99585,1.51453,0.010432,0.415552,0.005152,0.004864,0.006368,1.0609,0.011264
+853,538.098,1.8584,1.29658,0.008,0.217472,0.005408,0.004832,0.006176,1.04445,0.01024
+854,599.532,1.66797,1.3017,0.008192,0.217088,0.005344,0.00608,0.00656,1.03446,0.023968
+855,544.608,1.83618,2.27171,0.008096,0.460576,0.037696,0.005568,0.006912,1.74045,0.012416
+856,384.601,2.6001,1.29552,0.008192,0.217088,0.005344,0.00496,0.00784,1.04067,0.011424
+857,593.107,1.68604,1.28698,0.008448,0.216992,0.004768,0.0072,0.007104,1.03222,0.01024
+858,584.058,1.71216,1.61712,0.008192,0.221056,0.004224,0.017536,0.00704,1.34682,0.012256
+859,439.249,2.27661,1.71347,0.008192,0.253984,0.00416,0.005792,0.0064,1.4248,0.010144
+860,474.294,2.1084,1.30048,0.008192,0.219136,0.005216,0.005024,0.007648,1.04502,0.01024
+861,588.76,1.69849,1.30675,0.008416,0.219552,0.005696,0.006368,0.006368,1.05011,0.01024
+862,532.363,1.87842,2.28144,0.00832,0.450208,0.027296,0.006048,0.007616,1.76992,0.012032
+863,392.224,2.54956,1.29638,0.008192,0.221184,0.005536,0.005792,0.007104,1.03834,0.01024
+864,590.287,1.69409,1.29437,0.008288,0.221696,0.005632,0.005792,0.007008,1.03562,0.010336
+865,570.156,1.75391,1.57901,0.008192,0.220576,0.004704,0.006048,0.006304,1.31885,0.014336
+866,447.308,2.2356,1.70803,0.008192,0.234976,0.00464,0.005632,0.006336,1.43802,0.01024
+867,471.021,2.12305,1.30902,0.008384,0.225856,0.005568,0.004672,0.006144,1.04819,0.010208
+868,586.315,1.70557,1.30947,0.008416,0.217664,0.00512,0.00512,0.008032,1.05488,0.01024
+869,570.951,1.75146,2.2887,0.008192,0.475136,0.0072,0.005088,0.022528,1.75718,0.013376
+870,372.838,2.68213,1.29466,0.008288,0.21936,0.005152,0.005088,0.008192,1.03834,0.01024
+871,594.917,1.68091,1.2857,0.008192,0.217088,0.004096,0.008032,0.006304,1.03178,0.010208
+872,581.075,1.72095,2.02624,0.00832,0.217952,0.004096,0.006144,0.007328,1.76832,0.01408
+873,406.834,2.45801,1.50118,0.007968,0.409024,0.004896,0.004096,0.008064,1.05808,0.009056
+874,533.125,1.87573,1.29635,0.008192,0.217088,0.005312,0.005024,0.007616,1.04288,0.01024
+875,534.935,1.86938,1.32058,0.008416,0.23552,0.00576,0.00448,0.007488,1.04842,0.010496
+876,612.898,1.63159,2.2279,0.008192,0.462848,0.007744,0.0056,0.006912,1.72259,0.014016
+877,375.745,2.66138,1.30042,0.008192,0.221184,0.005568,0.004672,0.007264,1.0433,0.01024
+878,572.307,1.74731,1.29642,0.008192,0.219168,0.0056,0.00576,0.006752,1.04067,0.010272
+879,552.245,1.81079,1.6343,0.008192,0.22528,0.005696,0.004544,0.00816,1.37142,0.011008
+880,437.047,2.28809,1.50867,0.008352,0.413568,0.004256,0.005664,0.006592,1.06,0.01024
+881,537.886,1.85913,1.29018,0.008192,0.221056,0.004224,0.006144,0.007424,1.0328,0.010336
+882,565.199,1.76929,1.31242,0.008192,0.221024,0.004256,0.00752,0.006816,1.05427,0.010336
+883,576.333,1.73511,2.26518,0.008288,0.473088,0.007968,0.0056,0.006912,1.75059,0.012736
+884,389.613,2.56665,1.3039,0.008128,0.217152,0.006048,0.00624,0.008032,1.04787,0.010432
+885,599.707,1.66748,1.29238,0.008128,0.220832,0.004608,0.006144,0.007776,1.03466,0.01024
+886,556.976,1.79541,2.03802,0.008128,0.216736,0.004768,0.005952,0.006336,1.78371,0.012384
+887,411.162,2.43213,1.49504,0.008096,0.4056,0.00608,0.005792,0.00656,1.05264,0.010272
+888,360.215,2.77612,1.34349,0.024576,0.226464,0.00496,0.005824,0.006464,1.06496,0.01024
+889,891.986,1.12109,1.3024,0.008096,0.22112,0.004448,0.006176,0.007136,1.04496,0.010464
+890,563.024,1.77612,2.34445,0.022528,0.462848,0.007424,0.004896,0.007456,1.82861,0.010688
+891,365.878,2.73315,1.30592,0.008224,0.219104,0.005952,0.004288,0.008192,1.04989,0.010272
+892,591.566,1.69043,1.30006,0.008224,0.217056,0.005504,0.006592,0.006336,1.04563,0.01072
+893,573.268,1.74438,2.04989,0.008192,0.223232,0.005216,0.004864,0.006304,1.7879,0.014176
+894,386.015,2.59058,1.31354,0.008064,0.220032,0.004096,0.006144,0.007328,1.05763,0.01024
+895,581.405,1.71997,1.30317,0.008896,0.21664,0.004544,0.006176,0.007584,1.04902,0.010304
+896,566.92,1.76392,1.288,0.008192,0.219136,0.00544,0.005024,0.007968,1.03203,0.010208
+897,414.072,2.41504,1.70403,0.010592,0.22736,0.005248,0.004832,0.006272,1.43888,0.010848
+898,466.515,2.14355,1.2951,0.008224,0.219008,0.004928,0.005824,0.006528,1.04035,0.01024
+899,587.661,1.70166,1.31779,0.008288,0.217664,0.004352,0.005952,0.006336,1.06454,0.010656
+900,541.799,1.8457,2.48387,0.008352,0.237408,0.005696,0.005824,0.006912,2.20573,0.013952
+901,349.518,2.86108,1.32096,0.008192,0.219136,0.00528,0.004864,0.006272,1.06694,0.010272
+902,584.391,1.71118,1.31706,0.00832,0.21584,0.004096,0.006144,0.007232,1.06515,0.010272
+903,470.696,2.12451,1.65478,0.008192,0.222368,0.004928,0.005408,0.021024,1.38058,0.012288
+904,526.072,1.90088,1.4847,0.008192,0.407552,0.00528,0.005056,0.007808,1.04042,0.0104
+905,523.584,1.90991,1.2912,0.00848,0.21776,0.00544,0.004896,0.00784,1.03654,0.01024
+906,611.435,1.6355,1.32413,0.00832,0.221056,0.005408,0.00656,0.006464,1.06496,0.01136
+907,544.753,1.83569,2.43853,0.008192,0.220288,0.00496,0.004128,0.007808,2.18118,0.011968
+908,356.763,2.80298,1.32496,0.008256,0.215296,0.00576,0.005824,0.006816,1.07274,0.010272
+909,586.315,1.70557,1.31254,0.008192,0.223168,0.00416,0.007168,0.007168,1.05235,0.010336
+910,559.945,1.78589,2.0439,0.008288,0.218624,0.004512,0.006144,0.007488,1.78576,0.013088
+911,392.563,2.54736,1.48685,0.010112,0.405088,0.00464,0.005184,0.007072,1.04451,0.01024
+912,570.792,1.75195,1.32096,0.008192,0.224736,0.00464,0.005568,0.00672,1.06086,0.01024
+913,558.799,1.78955,1.29942,0.008288,0.217984,0.005632,0.00576,0.007072,1.04445,0.01024
+914,566.999,1.76367,2.33677,0.008224,0.473056,0.00768,0.004608,0.008192,1.82461,0.0104
+915,370.243,2.70093,1.30195,0.008192,0.219168,0.005184,0.005056,0.00816,1.04576,0.010432
+916,591.566,1.69043,1.30144,0.0072,0.216992,0.005632,0.005792,0.00688,1.0487,0.01024
+917,565.199,1.76929,2.17146,0.008,0.217856,0.005248,0.004864,0.00784,1.91741,0.01024
+918,366.532,2.72827,1.29846,0.008192,0.227136,0.004288,0.006144,0.007456,1.03498,0.010272
+919,564.265,1.77222,1.30605,0.008224,0.222592,0.004736,0.005984,0.006304,1.04794,0.010272
+920,575.523,1.73755,1.3209,0.008192,0.219136,0.005408,0.006272,0.006752,1.06477,0.010368
+921,511.744,1.9541,2.34291,0.008192,0.45872,0.01376,0.004704,0.008,1.8393,0.01024
+922,386.853,2.58496,1.34515,0.008192,0.219136,0.005952,0.005792,0.006688,1.08909,0.010304
+923,574.071,1.74194,1.29642,0.008192,0.217088,0.005504,0.004736,0.006144,1.04448,0.010272
+924,549.135,1.82104,2.49424,0.008192,0.2208,0.020192,0.006208,0.006752,2.22003,0.012064
+925,355.772,2.81079,1.30874,0.00816,0.220352,0.00496,0.00416,0.00784,1.05302,0.01024
+926,443.29,2.25586,1.33939,0.008192,0.219168,0.020448,0.006144,0.007264,1.06794,0.01024
+927,727.144,1.37524,1.64922,0.008416,0.239648,0.004416,0.006144,0.007232,1.37107,0.012288
+928,444.831,2.24805,1.50528,0.008192,0.40928,0.004416,0.005472,0.006816,1.06067,0.010432
+929,542.804,1.84229,1.30454,0.008256,0.2152,0.005472,0.004768,0.00768,1.0527,0.010464
+930,586.904,1.70386,1.32118,0.008256,0.216832,0.004512,0.006144,0.007488,1.06771,0.01024
+931,530.914,1.88354,2.28166,0.00832,0.454656,0.02256,0.028672,0.014336,1.7408,0.01232
+932,390.021,2.56396,1.30739,0.008128,0.217856,0.00432,0.006144,0.006176,1.0544,0.010368
+933,593.279,1.68555,1.28694,0.008448,0.215584,0.005888,0.004352,0.007712,1.03472,0.01024
+934,319.177,3.13306,1.36262,0.00832,0.246336,0.004096,0.006144,0.008192,1.06627,0.023264
+935,850.852,1.17529,1.5319,0.010272,0.456672,0.005952,0.0056,0.00688,1.03629,0.01024
+936,535.915,1.86597,1.32429,0.008224,0.220576,0.004672,0.00608,0.00624,1.06698,0.01152
+937,584.308,1.71143,1.29843,0.008192,0.219136,0.005536,0.006784,0.006144,1.0424,0.01024
+938,514.121,1.94507,1.37306,0.008576,0.270624,0.00432,0.006176,0.015392,1.05773,0.01024
+939,595.435,1.67944,1.3136,0.008416,0.2192,0.00464,0.005216,0.007072,1.05882,0.01024
+940,550.094,1.81787,1.32941,0.008448,0.233504,0.006048,0.005792,0.022752,1.04262,0.01024
+941,601.204,1.66333,1.3096,0.008416,0.215744,0.005696,0.004544,0.007424,1.05754,0.01024
+942,574.071,1.74194,2.4201,0.008192,0.464896,0.014112,0.005632,0.00688,1.91005,0.010336
+943,317.642,3.14819,1.37574,0.008064,0.266368,0.005472,0.004768,0.006144,1.07475,0.010176
+944,622.209,1.60718,1.3168,0.008224,0.23264,0.004896,0.005856,0.006432,1.04845,0.010304
+945,563.721,1.77393,2.09446,0.008192,0.233088,0.00448,0.006144,0.007168,1.8233,0.012096
+946,369.575,2.70581,1.3353,0.008192,0.233472,0.005568,0.005792,0.007072,1.06496,0.01024
+947,581.736,1.71899,1.32166,0.008288,0.219744,0.00512,0.00512,0.008032,1.06512,0.01024
+948,515.674,1.93921,1.3215,0.008288,0.221664,0.005184,0.005024,0.007904,1.06307,0.010368
+949,452.347,2.21069,1.55853,0.010432,0.452128,0.004384,0.005728,0.00656,1.0688,0.010496
+950,510.469,1.95898,1.32506,0.008192,0.23552,0.004096,0.006144,0.00784,1.05302,0.01024
+951,590.627,1.69312,1.30006,0.008192,0.219136,0.005248,0.005024,0.007712,1.04432,0.010432
+952,579.349,1.72607,2.4576,0.008192,0.223232,0.005536,0.00576,0.007104,2.19549,0.012288
+953,342.36,2.9209,1.31638,0.008192,0.223104,0.004224,0.007456,0.00688,1.05472,0.011808
+954,581.24,1.72046,1.32218,0.00832,0.21904,0.004224,0.006144,0.007232,1.06694,0.010272
+955,557.127,1.79492,2.05357,0.008256,0.22528,0.005632,0.004608,0.008032,1.7897,0.012064
+956,396.745,2.52051,1.31107,0.008288,0.219456,0.005536,0.005792,0.006944,1.05466,0.0104
+957,584.809,1.70996,1.34051,0.008192,0.218464,0.004768,0.004096,0.008,1.0768,0.020192
+958,531.534,1.88135,1.30662,0.008224,0.223232,0.006112,0.006016,0.006272,1.04653,0.01024
+959,524.657,1.90601,1.87379,0.010304,0.421888,0.006144,0.0056,0.006688,1.41248,0.010688
+960,438.169,2.28223,1.3271,0.008224,0.21648,0.004672,0.00736,0.006976,1.07315,0.01024
+961,590.202,1.69434,1.31072,0.00928,0.220128,0.005152,0.005056,0.007488,1.05338,0.01024
+962,531.396,1.88184,1.6425,0.008352,0.218112,0.00496,0.00576,0.00656,1.38646,0.012288
+963,465.984,2.146,1.50886,0.008608,0.4096,0.005152,0.004896,0.006336,1.06397,0.010304
+964,525.465,1.90308,1.32429,0.008192,0.223264,0.00608,0.005792,0.006528,1.06422,0.010208
+965,565.433,1.76855,1.30554,0.008448,0.215488,0.004352,0.005472,0.006816,1.05472,0.01024
+966,468.435,2.13477,2.53626,0.008768,0.284896,0.004096,0.006144,0.016384,2.20365,0.01232
+967,366.467,2.72876,1.32301,0.008192,0.219136,0.005824,0.005792,0.006816,1.06701,0.01024
+968,593.022,1.68628,1.31408,0.009376,0.215904,0.005504,0.005792,0.00688,1.06022,0.0104
+969,558.19,1.7915,2.17872,0.008192,0.218336,0.004896,0.005856,0.006432,1.9231,0.011904
+970,357.854,2.79443,1.3312,0.009216,0.226304,0.005152,0.00512,0.007712,1.06746,0.01024
+971,573.108,1.74487,1.33018,0.008192,0.218272,0.00496,0.004096,0.007808,1.07664,0.010208
+972,596.824,1.67554,1.64064,0.008288,0.217184,0.005856,0.004608,0.007872,1.38454,0.012288
+973,304.49,3.28418,1.8689,0.008192,0.363552,0.00496,0.004224,0.007776,1.47014,0.010048
+974,696.836,1.43506,1.31066,0.008224,0.221472,0.004096,0.006144,0.007552,1.05274,0.010432
+975,588.168,1.7002,1.30637,0.008192,0.216864,0.00432,0.005504,0.006784,1.05434,0.010368
+976,539.515,1.85352,2.57619,0.008256,0.222528,0.0048,0.00592,0.006368,2.31766,0.010656
+977,347.767,2.87549,1.31686,0.008192,0.219136,0.00512,0.00512,0.007744,1.06131,0.01024
+978,586.651,1.70459,1.34557,0.008192,0.217056,0.004128,0.006144,0.007328,1.09242,0.010304
+979,547.447,1.82666,2.44342,0.008288,0.221088,0.004512,0.005312,0.006976,2.18445,0.0128
+980,346.238,2.88818,1.3087,0.008192,0.217088,0.005312,0.005056,0.00784,1.05478,0.010432
+981,586.567,1.70483,1.33331,0.008352,0.219808,0.00576,0.00448,0.007488,1.07728,0.010144
+982,560.328,1.78467,1.71219,0.008256,0.253952,0.00592,0.005792,0.014592,1.41126,0.012416
+983,426.223,2.34619,1.52029,0.008544,0.414016,0.005856,0.00576,0.006816,1.06906,0.01024
+984,526.546,1.89917,1.3087,0.008288,0.219104,0.004928,0.005792,0.006592,1.05392,0.01008
+985,603.329,1.65747,1.32099,0.008288,0.223456,0.005632,0.005792,0.007008,1.06058,0.01024
+986,551.056,1.8147,2.25242,0.008288,0.452,0.014752,0.004704,0.007968,1.75126,0.01344
+987,382.232,2.61621,1.29434,0.008224,0.22032,0.004928,0.004096,0.00784,1.03866,0.010272
+988,600.763,1.66455,1.33802,0.00832,0.223424,0.004704,0.005984,0.00736,1.07802,0.010208
+989,409.273,2.44336,1.39302,0.008256,0.299296,0.004096,0.005792,0.007616,1.0577,0.010272
+990,728.437,1.3728,1.92582,0.014496,0.420384,0.006144,0.005856,0.006464,1.46224,0.01024
+991,444.589,2.24927,1.3128,0.00816,0.2192,0.004096,0.00576,0.006528,1.05882,0.01024
+992,566.215,1.76611,1.31072,0.009216,0.21568,0.00448,0.006176,0.0072,1.05773,0.01024
+993,587.24,1.70288,2.45555,0.008192,0.218464,0.004768,0.004096,0.00784,2.1999,0.012288
+994,344.491,2.90283,1.31491,0.008192,0.219136,0.004192,0.006144,0.007264,1.05974,0.01024
+995,587.661,1.70166,1.29853,0.00816,0.21568,0.0056,0.00464,0.006144,1.04787,0.010432
+996,566.45,1.76538,2.07984,0.008192,0.218368,0.004864,0.005888,0.0064,1.82272,0.013408
+997,373.689,2.67603,1.31856,0.008192,0.229216,0.00448,0.005344,0.006944,1.05411,0.010272
+998,572.547,1.74658,1.32461,0.008256,0.219104,0.005408,0.005024,0.007968,1.06829,0.01056
+999,586.735,1.70435,1.30867,0.008544,0.217216,0.004544,0.006144,0.007648,1.05424,0.010336
+1000,507.874,1.96899,2.42483,0.008192,0.443744,0.0064,0.026144,0.037696,1.89232,0.010336
+1001,376.644,2.65503,1.30746,0.008128,0.220032,0.005952,0.006336,0.007808,1.04896,0.01024
+1002,588.929,1.698,1.32006,0.008192,0.218336,0.004896,0.006144,0.00736,1.06374,0.011392
+1003,561.327,1.78149,2.10061,0.008192,0.221184,0.005728,0.004512,0.007424,1.83987,0.013696
+1004,291.054,3.43579,1.34384,0.008256,0.250176,0.005408,0.005888,0.007072,1.0568,0.01024
+1005,990.568,1.00952,1.32253,0.008192,0.220768,0.004512,0.005312,0.006976,1.06646,0.010304
+1006,579.267,1.72632,1.33965,0.008384,0.221248,0.005568,0.004672,0.007296,1.08224,0.01024
+1007,416.387,2.40161,1.70822,0.011488,0.224032,0.005152,0.004864,0.006368,1.44589,0.010432
+1008,472.216,2.11768,1.31075,0.008192,0.219136,0.004096,0.006144,0.007168,1.05546,0.01056
+1009,594.312,1.68262,1.2943,0.008352,0.221184,0.005184,0.005056,0.007456,1.0367,0.010368
+1010,548.033,1.82471,2.29254,0.00832,0.461504,0.034816,0.006144,0.007296,1.76182,0.01264
+1011,379.576,2.63452,1.30662,0.008192,0.218912,0.00432,0.005472,0.006816,1.05267,0.01024
+1012,424.324,2.35669,1.3383,0.00832,0.230208,0.005312,0.004672,0.0064,1.07315,0.01024
+1013,714.46,1.39966,1.72387,0.008192,0.256,0.005472,0.004768,0.007168,1.4297,0.012576
+1014,436.674,2.29004,1.51085,0.008192,0.405408,0.004256,0.00608,0.007584,1.06874,0.010592
+1015,551.947,1.81177,1.31482,0.008192,0.221184,0.004096,0.006144,0.00768,1.05728,0.01024
+1016,585.729,1.70728,1.32707,0.00832,0.218752,0.004928,0.006304,0.00736,1.07136,0.010048
+1017,526.952,1.89771,2.53952,0.008256,0.219104,0.005664,0.00576,0.006976,2.28352,0.01024
+1018,348.982,2.86548,1.3312,0.008192,0.220256,0.004928,0.00576,0.006624,1.0752,0.01024
+1019,592.593,1.6875,1.31683,0.008192,0.217568,0.00592,0.00432,0.007584,1.06317,0.01008
+1020,350.056,2.85669,2.38998,0.008288,0.450912,0.048512,0.004736,0.008,1.85907,0.010464
+1021,367.684,2.71973,1.34525,0.008,0.221408,0.005632,0.004608,0.007168,1.08819,0.01024
+1022,567.156,1.76318,1.3271,0.008192,0.219136,0.004096,0.006144,0.006176,1.07312,0.01024
+1023,528.243,1.89307,2.52096,0.008384,0.21888,0.004352,0.005664,0.006624,2.26509,0.011968
+1024,347.619,2.87671,1.3271,0.008224,0.220544,0.004704,0.004096,0.007936,1.07136,0.01024
+1025,583.892,1.71265,1.33885,0.008224,0.224288,0.00496,0.004192,0.00816,1.07885,0.010176
+1026,505.18,1.97949,2.14835,0.008192,0.218528,0.004704,0.006016,0.006272,1.89235,0.012288
+1027,379.857,2.63257,1.33773,0.008352,0.227424,0.004416,0.014336,0.007776,1.06496,0.010464
+1028,579.513,1.72559,1.32502,0.008192,0.217696,0.005664,0.005792,0.006656,1.07066,0.010368
+1029,580.17,1.72363,1.32662,0.00928,0.219648,0.004544,0.004096,0.007904,1.06934,0.011808
+1030,485.826,2.05835,2.39811,0.025152,0.499232,0.014784,0.006144,0.007232,1.83392,0.011648
+1031,387.916,2.57788,1.31277,0.008192,0.216736,0.004448,0.006144,0.007168,1.05984,0.01024
+1032,584.725,1.71021,1.31936,0.008352,0.215296,0.004704,0.006176,0.007392,1.06573,0.011712
+1033,522.183,1.91504,2.32563,0.008192,0.452608,0.026624,0.037888,0.01488,1.7737,0.011744
+1034,382.482,2.6145,1.30931,0.008032,0.217088,0.004896,0.005632,0.006656,1.05677,0.01024
+1035,585.226,1.70874,1.30771,0.00928,0.216,0.00528,0.004896,0.006208,1.05472,0.011328
+1036,587.072,1.70337,2.07866,0.008192,0.223232,0.004096,0.006144,0.00768,1.81504,0.014272
+1037,219.295,4.56006,1.53603,0.00832,0.4096,0.005312,0.004864,0.00624,1.09142,0.010272
+1038,1042.77,0.958984,1.34518,0.008416,0.237088,0.004608,0.006144,0.007168,1.07152,0.01024
+1039,598.918,1.66968,1.67603,0.008128,0.224032,0.004096,0.005792,0.006496,1.41517,0.01232
+1040,447.748,2.2334,1.51197,0.008544,0.405376,0.004416,0.016384,0.007936,1.05907,0.01024
+1041,506.805,1.97314,1.3271,0.008192,0.230752,0.004768,0.007264,0.007072,1.05878,0.010272
+1042,559.334,1.78784,1.32915,0.008192,0.221184,0.005344,0.004928,0.007712,1.07155,0.01024
+1043,559.257,1.78809,2.57434,0.008192,0.243232,0.004576,0.00528,0.007008,2.29581,0.01024
+1044,342.704,2.91797,1.32301,0.00816,0.21712,0.0056,0.005792,0.00704,1.06896,0.010336
+1045,458.063,2.18311,1.40077,0.008192,0.292864,0.004096,0.005824,0.007808,1.07181,0.010176
+1046,546.061,1.8313,2.60048,0.009248,0.256096,0.00496,0.00576,0.006592,2.30723,0.010592
+1047,343.595,2.9104,1.34371,0.008096,0.244064,0.005248,0.005024,0.007456,1.06342,0.0104
+1048,588.252,1.69995,1.3353,0.008192,0.219136,0.005664,0.005792,0.006976,1.0793,0.01024
+1049,567.706,1.76147,2.19059,0.008352,0.21872,0.004512,0.006176,0.006112,1.93536,0.01136
+1050,384.06,2.60376,1.32822,0.008224,0.218112,0.004928,0.005344,0.007104,1.07315,0.01136
+1051,578.123,1.72974,1.35162,0.008192,0.216544,0.00464,0.006144,0.007552,1.09789,0.010656
+1052,451.201,2.21631,1.38445,0.024576,0.256,0.005632,0.005792,0.007008,1.0752,0.01024
+1053,643.823,1.55322,1.32045,0.008192,0.227328,0.005696,0.005792,0.006944,1.05587,0.010624
+1054,589.522,1.69629,1.32928,0.00832,0.219776,0.00544,0.005024,0.007872,1.07245,0.0104
+1055,576.901,1.7334,1.33562,0.008512,0.217184,0.005504,0.005792,0.006912,1.08128,0.010432
+1056,530.639,1.88452,1.34262,0.009536,0.235776,0.004544,0.006144,0.006144,1.06906,0.011424
+1057,621.548,1.60889,1.33939,0.008192,0.217088,0.005888,0.004352,0.007584,1.08605,0.01024
+1058,576.09,1.73584,1.34762,0.009312,0.218016,0.005152,0.007136,0.006144,1.09158,0.010272
+1059,573.669,1.74316,1.31251,0.008096,0.216384,0.004768,0.004224,0.006144,1.06259,0.010304
+1060,564.187,1.77246,1.3441,0.008288,0.233024,0.004928,0.00576,0.006656,1.06496,0.02048
+1061,523.116,1.91162,1.32032,0.008192,0.22432,0.004928,0.004224,0.007744,1.06074,0.010176
+1062,588.421,1.69946,1.34762,0.008128,0.216832,0.00432,0.006144,0.007648,1.09418,0.010368
+1063,570.633,1.75244,1.33251,0.009216,0.214016,0.005216,0.005024,0.007616,1.08099,0.010432
+1064,565.512,1.76831,1.33734,0.008192,0.217088,0.00576,0.00592,0.006752,1.08336,0.010272
+1065,576.333,1.73511,1.30502,0.008416,0.217312,0.004096,0.006144,0.008192,1.05062,0.01024
+1066,582.48,1.7168,1.33078,0.008192,0.217088,0.005824,0.00592,0.006688,1.07651,0.01056
+1067,574.313,1.74121,1.33734,0.008192,0.22848,0.004928,0.005888,0.006464,1.07315,0.01024
+1068,565.824,1.76733,1.3336,0.008128,0.232352,0.005472,0.004896,0.00784,1.06451,0.0104
+1069,577.96,1.73022,1.33939,0.008192,0.218848,0.004384,0.006144,0.0072,1.08438,0.01024
+1070,538.593,1.85669,1.33792,0.008288,0.223744,0.00528,0.005024,0.00784,1.0775,0.01024
+1071,582.646,1.71631,1.32662,0.008192,0.21616,0.00496,0.006208,0.007328,1.07354,0.01024
+1072,573.509,1.74365,1.33466,0.008192,0.220256,0.004928,0.004192,0.007808,1.07885,0.010432
+1073,576.414,1.73486,1.34384,0.00848,0.21776,0.004096,0.007648,0.006688,1.0889,0.010272
+1074,564.732,1.77075,1.36602,0.008192,0.218688,0.004544,0.007392,0.006944,1.11002,0.01024
+1075,565.043,1.76978,1.32995,0.008096,0.21776,0.004224,0.006144,0.0072,1.07619,0.010336
+1076,546.352,1.83032,1.34733,0.008384,0.218752,0.004288,0.006144,0.007392,1.09197,0.0104
+1077,595.609,1.67896,1.32224,0.008256,0.221056,0.004224,0.006144,0.007584,1.06458,0.0104
+1078,581.075,1.72095,1.33098,0.008192,0.218176,0.00496,0.004192,0.007616,1.07728,0.01056
+1079,534.377,1.87134,1.37421,0.008192,0.249888,0.00576,0.013728,0.007104,1.07917,0.010368
+1080,548.841,1.82202,1.34349,0.008192,0.22528,0.005504,0.02112,0.00752,1.06563,0.01024
+1081,600.498,1.66528,1.31382,0.008192,0.217088,0.00544,0.006848,0.007296,1.05766,0.011296
+1082,575.443,1.73779,1.36067,0.008224,0.21888,0.004928,0.005312,0.007072,1.10598,0.010272
+1083,567.785,1.76123,1.32746,0.008384,0.217184,0.004096,0.006144,0.007456,1.07389,0.010304
+1084,570.553,1.75269,1.32698,0.008288,0.222144,0.004928,0.005792,0.006656,1.06874,0.010432
+1085,579.267,1.72632,1.36189,0.00832,0.217696,0.005536,0.00672,0.00736,1.10592,0.010336
+1086,567.077,1.76343,1.33139,0.008384,0.216896,0.004704,0.00608,0.006304,1.07875,0.010272
+1087,574.958,1.73926,1.37341,0.009472,0.217856,0.005152,0.005088,0.007264,1.11814,0.010432
+1088,516.585,1.93579,1.3408,0.00832,0.232736,0.0048,0.004128,0.00784,1.07267,0.010304
+1089,596.65,1.67603,1.32886,0.008448,0.22112,0.00416,0.006144,0.006144,1.0727,0.010144
+1090,534.656,1.87036,1.35139,0.008096,0.240064,0.005952,0.005568,0.006912,1.07437,0.010432
+1091,545.842,1.83203,1.39878,0.008192,0.237568,0.005888,0.005792,0.006784,1.12371,0.010848
+1092,556.9,1.79565,1.34333,0.00832,0.216704,0.004352,0.005472,0.006816,1.09133,0.010336
+1093,578.531,1.72852,1.32749,0.007168,0.217056,0.0056,0.006656,0.007296,1.07315,0.01056
+1094,577.634,1.7312,1.3271,0.008192,0.218176,0.004928,0.006272,0.007904,1.07139,0.01024
+1095,581.158,1.7207,1.35078,0.008192,0.216704,0.00448,0.007424,0.006912,1.09683,0.01024
+1096,213.745,4.67847,1.37552,0.008192,0.251904,0.005152,0.004864,0.006368,1.08749,0.011552
+1097,1534.08,0.651855,1.34758,0.008,0.224736,0.004832,0.005888,0.006432,1.08746,0.01024
+1098,562.947,1.77637,1.34035,0.00832,0.22,0.005472,0.004736,0.006144,1.08544,0.01024
+1099,531.327,1.88208,1.39878,0.008224,0.266208,0.005728,0.005792,0.006912,1.09568,0.01024
+1100,579.759,1.72485,1.34144,0.008224,0.21904,0.00416,0.006144,0.007584,1.08605,0.01024
+1101,573.268,1.74438,1.33459,0.00832,0.21712,0.005632,0.006624,0.007296,1.07933,0.010272
+1102,576.82,1.73364,1.33098,0.008288,0.217792,0.005344,0.006944,0.00752,1.07382,0.011264
+1103,564.11,1.77271,1.3271,0.008192,0.219136,0.006112,0.00576,0.00656,1.0711,0.01024
+1104,439.579,2.2749,1.40224,0.008192,0.27648,0.004096,0.005728,0.00656,1.09078,0.0104
+1105,625.439,1.59888,1.33712,0.009376,0.221344,0.0048,0.006144,0.00816,1.07706,0.01024
+1106,495.584,2.01782,1.37274,0.00832,0.256448,0.005408,0.004832,0.006176,1.08112,0.010432
+1107,671.365,1.4895,1.74694,0.009216,0.22016,0.004096,0.006144,0.007808,1.48899,0.010528
+1108,456.735,2.18945,1.32915,0.008192,0.219136,0.004096,0.006176,0.007648,1.0737,0.010208
+1109,581.158,1.7207,1.32714,0.008192,0.22032,0.004928,0.005632,0.006688,1.0711,0.010272
+1110,587.24,1.70288,2.19043,0.008192,0.223232,0.004096,0.005824,0.006496,1.93123,0.01136
+1111,348.982,2.86548,1.3431,0.008064,0.219744,0.005888,0.005792,0.006752,1.08666,0.010208
+1112,454.303,2.20117,1.37853,0.008416,0.242752,0.02064,0.004896,0.007488,1.0841,0.01024
+1113,627.932,1.59253,1.39674,0.008192,0.269568,0.004864,0.005856,0.012576,1.08544,0.01024
+1114,363.572,2.75049,1.37626,0.011776,0.254208,0.004352,0.00544,0.006848,1.0832,0.010432
+1115,587.072,1.70337,1.33325,0.008192,0.21712,0.005856,0.005792,0.006752,1.0793,0.01024
+1116,566.685,1.76465,1.34966,0.008192,0.220192,0.018464,0.00624,0.007008,1.0793,0.010272
+1117,509.579,1.9624,1.91968,0.01088,0.421824,0.0056,0.004768,0.00768,1.45869,0.01024
+1118,432.341,2.31299,1.34858,0.008384,0.216992,0.00496,0.005824,0.006496,1.09568,0.01024
+1119,577.878,1.73047,1.34925,0.008224,0.2216,0.004256,0.007424,0.006912,1.08954,0.011296
+1120,542.66,1.84277,2.11558,0.008192,0.223232,0.0056,0.00464,0.008224,1.85344,0.012256
+1121,384.962,2.59766,1.38275,0.008,0.21968,0.005792,0.005792,0.006848,1.1264,0.01024
+1122,555.917,1.79883,1.36618,0.008352,0.220576,0.004704,0.004096,0.00752,1.11069,0.01024
+1123,563.954,1.77319,1.34768,0.008288,0.217088,0.005888,0.005824,0.00672,1.09363,0.01024
+1124,586.483,1.70508,2.37773,0.008192,0.456704,0.028032,0.004736,0.007936,1.86189,0.01024
+1125,348.804,2.86694,1.34157,0.00832,0.219136,0.00512,0.007072,0.00624,1.08544,0.01024
+1126,571.429,1.75,1.34506,0.00832,0.216384,0.004864,0.006144,0.007808,1.09117,0.010368
+1127,375.918,2.66016,2.34634,0.008192,0.444416,0.012192,0.034912,0.024576,1.8097,0.012352
+1128,541.656,1.84619,1.35325,0.008192,0.223232,0.005536,0.004704,0.007712,1.09341,0.010464
+1129,557.962,1.79224,1.34298,0.008064,0.217408,0.004096,0.006144,0.00768,1.08934,0.01024
+1130,532.086,1.87939,1.71651,0.008384,0.216704,0.004576,0.004096,0.008064,1.4624,0.012288
+1131,446.723,2.23853,1.54662,0.008032,0.404,0.005248,0.005024,0.007872,1.10621,0.01024
+1132,509.96,1.96094,1.35034,0.00832,0.217536,0.004224,0.006144,0.007392,1.09648,0.01024
+1133,575.2,1.73853,1.32934,0.007936,0.215488,0.00592,0.006368,0.006144,1.07725,0.01024
+1134,528.243,1.89307,2.52314,0.008192,0.456704,0.038912,0.006144,0.018432,1.98416,0.010592
+1135,313.03,3.19458,1.45408,0.017952,0.306752,0.004928,0.00576,0.012768,1.09552,0.0104
+1136,604.219,1.65503,1.33939,0.008192,0.219136,0.005728,0.00656,0.007552,1.08198,0.01024
+1137,516.324,1.93677,2.12778,0.008192,0.23744,0.004224,0.006144,0.00736,1.85018,0.01424
+1138,380.104,2.63086,1.34746,0.008288,0.223712,0.00544,0.0048,0.006144,1.08864,0.010432
+1139,578.858,1.72754,1.34979,0.008544,0.221408,0.005344,0.005024,0.007744,1.0913,0.010432
+1140,476.612,2.09814,1.41136,0.008288,0.261632,0.016256,0.00496,0.022528,1.08749,0.010208
+1141,412.238,2.42578,1.36701,0.010304,0.23024,0.004128,0.006144,0.00752,1.0984,0.010272
+1142,494.387,2.02271,1.3681,0.008192,0.240992,0.004768,0.005568,0.00672,1.09158,0.010272
+1143,521.584,1.91724,1.43565,0.009344,0.299904,0.005344,0.005024,0.007872,1.09792,0.01024
+1144,545.333,1.83374,2.39811,0.008192,0.475072,0.03648,0.0056,0.007072,1.8552,0.010496
+1145,373.042,2.68066,1.3353,0.008224,0.220896,0.004352,0.00592,0.006368,1.0793,0.01024
+1146,572.227,1.74756,1.37299,0.008224,0.219936,0.004096,0.005792,0.006496,1.11802,0.010432
+1147,515.869,1.93848,2.42035,0.00928,0.447424,0.0512,0.005952,0.006336,1.88826,0.011904
+1148,368.081,2.7168,1.37347,0.008224,0.220704,0.004544,0.006144,0.006144,1.11731,0.0104
+1149,519.138,1.92627,1.36061,0.008288,0.221824,0.005504,0.005792,0.006688,1.10227,0.01024
+1150,533.75,1.87354,1.75942,0.008224,0.272384,0.005792,0.005792,0.006848,1.44797,0.012416
+1151,388.504,2.57397,1.36336,0.008288,0.225184,0.005504,0.005792,0.007072,1.10147,0.010048
+1152,472.652,2.11572,1.35987,0.00928,0.235872,0.004704,0.00512,0.007104,1.08755,0.01024
+1153,622.682,1.60596,1.38048,0.008416,0.219616,0.005856,0.005792,0.006784,1.12352,0.010496
+1154,404.224,2.47388,1.56307,0.009888,0.419776,0.004928,0.004096,0.007808,1.10749,0.009088
+1155,487.271,2.05225,1.3649,0.008352,0.243936,0.004704,0.006048,0.00624,1.08528,0.010336
+1156,588.506,1.69922,1.3577,0.008192,0.218368,0.004864,0.004096,0.007936,1.10387,0.010368
+1157,325.415,3.073,2.71267,0.017504,0.302016,0.005568,0.005856,0.006976,2.36339,0.01136
+1158,519.204,1.92603,1.38598,0.008192,0.233024,0.004544,0.006144,0.006144,1.11744,0.010496
+1159,581.818,1.71875,1.37798,0.008416,0.223008,0.0048,0.005984,0.007552,1.11696,0.011264
+1160,539.373,1.854,2.72547,0.008416,0.272672,0.005696,0.004544,0.016384,2.4064,0.01136
+1161,322.241,3.10327,1.39677,0.008192,0.22528,0.005376,0.005024,0.007904,1.13472,0.010272
+1162,540.94,1.84863,1.35542,0.008192,0.219168,0.00528,0.004864,0.006208,1.10141,0.010304
+1163,568.336,1.75952,2.54976,0.00976,0.219616,0.004096,0.006144,0.007872,2.29104,0.011232
+1164,329.552,3.03442,1.37421,0.009248,0.2376,0.004928,0.005792,0.006624,1.09978,0.01024
+1165,564.81,1.77051,1.35267,0.007136,0.219136,0.005696,0.006016,0.00672,1.0977,0.010272
+1166,561.634,1.78052,2.17174,0.00832,0.239392,0.004928,0.005792,0.006624,1.8944,0.012288
+1167,362.446,2.75903,1.3495,0.008256,0.227776,0.005888,0.005792,0.00672,1.08496,0.010112
+1168,562.483,1.77783,1.38621,0.008192,0.24336,0.004448,0.005984,0.006304,1.10749,0.010432
+1169,563.877,1.77344,1.36573,0.008288,0.219264,0.005632,0.00576,0.00704,1.10963,0.010112
+1170,412.072,2.42676,1.77936,0.01024,0.235552,0.00528,0.004864,0.006208,1.50698,0.01024
+1171,417.235,2.39673,1.37158,0.008192,0.240896,0.004864,0.005984,0.006336,1.09482,0.010496
+1172,635.827,1.57275,1.35578,0.008192,0.219136,0.0056,0.005792,0.006848,1.09997,0.01024
+1173,523.651,1.90967,2.32858,0.009504,0.469056,0.006816,0.00592,0.006368,1.81862,0.012288
+1174,387.439,2.58105,1.35606,0.008256,0.221408,0.00544,0.006432,0.00656,1.09773,0.01024
+1175,564.187,1.77246,1.34352,0.008224,0.219168,0.004064,0.006144,0.007296,1.08838,0.01024
+1176,568.021,1.7605,1.70797,0.008192,0.2272,0.004224,0.0056,0.006688,1.44179,0.014272
+1177,421.269,2.37378,1.53434,0.008384,0.404896,0.005024,0.004128,0.007872,1.09366,0.010368
+1178,511.808,1.95386,1.41923,0.00832,0.242176,0.005408,0.004832,0.006176,1.14198,0.010336
+1179,473.471,2.11206,1.37952,0.008192,0.243456,0.004352,0.006144,0.007392,1.09853,0.011456
+1180,636.816,1.57031,2.40022,0.008224,0.456672,0.023584,0.005088,0.007648,1.88842,0.010592
+1181,361.997,2.76245,1.38176,0.008192,0.227328,0.00576,0.005792,0.00688,1.11757,0.01024
+1182,520.193,1.92236,1.38445,0.008192,0.222208,0.00496,0.00576,0.006688,1.1264,0.01024
+1183,589.692,1.6958,2.5191,0.008288,0.221248,0.004096,0.006144,0.007616,2.25952,0.012192
+1184,343.768,2.90894,1.35901,0.009312,0.22416,0.004096,0.006144,0.007424,1.0976,0.010272
+1185,574.877,1.7395,1.35658,0.008352,0.219776,0.005408,0.005024,0.00928,1.0985,0.01024
+1186,549.283,1.82056,2.13018,0.008384,0.220928,0.004416,0.00544,0.006848,1.87187,0.012288
+1187,367.849,2.71851,1.36624,0.008288,0.22928,0.004832,0.005888,0.0064,1.10131,0.01024
+1188,552.394,1.8103,1.37408,0.008096,0.224128,0.00544,0.0048,0.008192,1.11312,0.010304
+1189,571.11,1.75098,1.36397,0.008192,0.226464,0.00496,0.005888,0.0064,1.10182,0.01024
+1190,357.23,2.79932,2.39478,0.00832,0.453152,0.018528,0.006048,0.007648,1.89085,0.01024
+1191,508.063,1.96826,1.38506,0.008128,0.241984,0.004448,0.006144,0.0072,1.10682,0.010336
+1192,604.576,1.65405,1.38461,0.008224,0.230656,0.004832,0.004096,0.007968,1.11949,0.009344
+1193,486.576,2.05518,2.53718,0.008288,0.544576,0.02272,0.005632,0.006656,1.93878,0.010528
+1194,337.48,2.96313,1.39456,0.008288,0.251968,0.00432,0.005504,0.006784,1.10739,0.010304
+1195,555.993,1.79858,1.38445,0.009344,0.224,0.004224,0.006176,0.007584,1.12288,0.01024
+1196,574.958,1.73926,2.63306,0.008288,0.247104,0.004864,0.005856,0.006432,2.34906,0.011456
+1197,330.883,3.02222,1.36563,0.00848,0.227616,0.005408,0.005024,0.007808,1.09997,0.011328
+1198,571.269,1.75049,1.41443,0.008192,0.219136,0.005856,0.00576,0.006816,1.15827,0.0104
+1199,538.098,1.8584,2.1304,0.00848,0.231616,0.005888,0.005824,0.00672,1.86106,0.010816
+1200,369.875,2.70361,1.38666,0.008352,0.24576,0.00576,0.00448,0.00752,1.10454,0.01024
+1201,538.947,1.85547,1.4336,0.008192,0.262144,0.004096,0.006144,0.008224,1.13456,0.01024
+1202,562.328,1.77832,1.40493,0.008192,0.221056,0.004224,0.0056,0.006688,1.14893,0.01024
+1203,521.983,1.91577,2.41677,0.00832,0.462848,0.028256,0.0056,0.007072,1.89437,0.010304
+1204,353.073,2.83228,1.37824,0.00832,0.223104,0.005536,0.005792,0.00704,1.11808,0.010368
+1205,574.313,1.74121,1.37619,0.008448,0.217728,0.004096,0.006144,0.006176,1.12342,0.010176
+1206,538.168,1.85815,2.41693,0.00832,0.462944,0.006336,0.006016,0.00752,1.91555,0.01024
+1207,359.803,2.7793,1.37011,0.008192,0.218624,0.004608,0.006112,0.006176,1.11616,0.01024
+1208,563.721,1.77393,1.39046,0.008256,0.2176,0.004256,0.006144,0.007392,1.13645,0.010368
+1209,530.983,1.8833,2.59408,0.00816,0.223264,0.00576,0.005792,0.00688,2.33267,0.011552
+1210,342.561,2.91919,1.39216,0.008288,0.221088,0.005568,0.004672,0.007552,1.13462,0.010368
+1211,556.295,1.79761,1.37456,0.008288,0.221088,0.004448,0.006144,0.0072,1.11715,0.01024
+1212,556.144,1.7981,2.21555,0.00832,0.219424,0.004256,0.006144,0.007424,1.95866,0.011328
+1213,376.09,2.65894,1.38422,0.008192,0.222784,0.004544,0.006144,0.006144,1.12627,0.010144
+1214,560.558,1.78394,1.35962,0.00832,0.218432,0.004928,0.00624,0.006208,1.10502,0.010464
+1215,568.415,1.75928,1.36806,0.008192,0.216832,0.004352,0.007616,0.00672,1.11411,0.01024
+1216,503.503,1.98608,1.36349,0.008288,0.227232,0.005792,0.004448,0.00752,1.0999,0.010304
+1217,594.485,1.68213,1.36317,0.009376,0.217952,0.004096,0.006144,0.007488,1.10669,0.011424
+1218,569.522,1.75586,1.38461,0.00832,0.216864,0.004256,0.005696,0.006528,1.13254,0.0104
+1219,554.938,1.802,1.37216,0.008192,0.216576,0.004608,0.007264,0.007072,1.11821,0.01024
+1220,565.433,1.76855,1.36576,0.008192,0.215072,0.00544,0.004768,0.007168,1.11482,0.010304
+1221,568.494,1.75903,1.35504,0.008256,0.215136,0.004128,0.007808,0.006528,1.10288,0.010304
+1222,554.338,1.80396,1.36259,0.007936,0.213888,0.004096,0.008128,0.00624,1.11203,0.010272
+1223,583.725,1.71313,1.37731,0.008224,0.217088,0.006144,0.006048,0.006336,1.12221,0.011264
+1224,525.465,1.90308,1.40371,0.00832,0.2312,0.004928,0.00416,0.007776,1.12851,0.018816
+1225,515.35,1.94043,1.40902,0.008192,0.241664,0.00576,0.005792,0.00688,1.1305,0.01024
+1226,575.523,1.73755,1.37626,0.008288,0.216704,0.00496,0.004128,0.007296,1.12445,0.010432
+1227,550.168,1.81763,1.36525,0.008192,0.21504,0.005504,0.005824,0.006912,1.1135,0.010272
+1228,570.712,1.7522,1.37242,0.008288,0.2152,0.005472,0.005792,0.007168,1.12026,0.01024
+1229,565.355,1.7688,1.37043,0.008448,0.215392,0.00576,0.006272,0.006432,1.11795,0.010176
+1230,566.293,1.76587,1.39264,0.008192,0.21504,0.00512,0.00656,0.006752,1.14074,0.01024
+1231,539.729,1.85278,1.39059,0.008192,0.235232,0.004384,0.005792,0.006496,1.12026,0.01024
+1232,572.387,1.74707,1.36643,0.008096,0.217184,0.004512,0.00576,0.006528,1.11411,0.01024
+1233,564.11,1.77271,1.35834,0.00832,0.217728,0.00416,0.006144,0.00752,1.10416,0.010304
+1234,376.99,2.65259,1.36397,0.008192,0.224736,0.00464,0.005184,0.00704,1.10394,0.01024
+1235,569.284,1.75659,1.36819,0.008384,0.215424,0.005952,0.00576,0.00672,1.11571,0.01024
+1236,568.415,1.75928,1.33501,0.008224,0.216064,0.004928,0.00624,0.00624,1.08294,0.010368
+1237,574.877,1.7395,1.36602,0.008288,0.214912,0.004128,0.006144,0.008032,1.11427,0.01024
+1238,568.258,1.75977,1.35898,0.008096,0.214208,0.00496,0.00416,0.007936,1.10928,0.010336
+1239,548.62,1.82275,1.38051,0.008416,0.229312,0.00448,0.006144,0.007168,1.11472,0.010272
+1240,570.394,1.75317,1.35677,0.00832,0.219008,0.004992,0.0056,0.006784,1.10182,0.01024
+1241,569.839,1.75488,1.39037,0.008192,0.21504,0.005888,0.006368,0.006176,1.13818,0.010528
+1242,461.885,2.16504,1.42541,0.008192,0.258048,0.005824,0.004416,0.01792,1.12077,0.01024
+1243,509.77,1.96167,1.36384,0.008192,0.231424,0.004096,0.006144,0.00752,1.0961,0.010368
+1244,618.451,1.61694,1.37843,0.008512,0.217824,0.005792,0.005792,0.006816,1.1223,0.011392
+1245,568.968,1.75757,1.36435,0.008576,0.217088,0.005344,0.006944,0.007168,1.10899,0.01024
+1246,510.66,1.95825,1.38326,0.00832,0.234208,0.004096,0.006144,0.007712,1.11254,0.01024
+1247,610.614,1.6377,1.40013,0.008192,0.219008,0.004224,0.006144,0.007296,1.14502,0.01024
+1248,556.673,1.79639,1.36467,0.008288,0.215648,0.005312,0.006976,0.007328,1.11088,0.01024
+1249,564.265,1.77222,1.3415,0.008256,0.215104,0.004928,0.006176,0.007648,1.08803,0.01136
+1250,427.647,2.33838,1.42186,0.016768,0.255296,0.00496,0.004096,0.00784,1.12266,0.01024
+1251,572.867,1.74561,1.41731,0.008096,0.258528,0.005344,0.005056,0.014144,1.11594,0.010208
+1252,619.292,1.61475,1.38016,0.00832,0.233952,0.006112,0.006144,0.006176,1.10902,0.010432
+1253,542.732,1.84253,1.36227,0.008544,0.219776,0.005696,0.005792,0.006944,1.10522,0.010304
+1254,556.068,1.79834,1.36061,0.008288,0.215648,0.005568,0.005792,0.00688,1.10816,0.010272
+1255,576.414,1.73486,1.37421,0.008192,0.217088,0.005824,0.005632,0.006976,1.12026,0.01024
+1256,561.327,1.78149,1.36675,0.008192,0.21792,0.005152,0.005088,0.007296,1.11261,0.010496
+1257,566.293,1.76587,1.37869,0.00816,0.215808,0.005408,0.004864,0.00784,1.1263,0.010304
+1258,541.727,1.84595,1.37398,0.008224,0.219104,0.005568,0.004672,0.007264,1.11914,0.010016
+1259,427.201,2.34082,1.43443,0.008992,0.282656,0.0056,0.005792,0.00704,1.11411,0.01024
+1260,677.025,1.47705,1.36592,0.008224,0.218336,0.004864,0.005856,0.006432,1.11187,0.010336
+1261,558.266,1.79126,1.38419,0.008544,0.221408,0.005408,0.006272,0.006528,1.1257,0.010336
+1262,582.149,1.71777,1.37062,0.008256,0.21344,0.00592,0.005856,0.006656,1.12026,0.01024
+1263,567.47,1.76221,1.36893,0.008192,0.214912,0.004928,0.006304,0.007808,1.11654,0.01024
+1264,562.947,1.77637,1.38038,0.008416,0.215136,0.005856,0.005664,0.006496,1.12845,0.010368
+1265,562.715,1.7771,1.3824,0.009248,0.21936,0.004864,0.005856,0.006432,1.1264,0.01024
+1266,558.876,1.78931,1.35869,0.008352,0.213696,0.005952,0.004288,0.007488,1.10864,0.010272
+1267,568.021,1.7605,1.36432,0.00816,0.2152,0.00432,0.007648,0.006688,1.11206,0.01024
+1268,561.48,1.78101,1.35664,0.008256,0.215872,0.005376,0.005024,0.007808,1.10403,0.010272
+1269,549.577,1.81958,1.37232,0.00816,0.224832,0.00496,0.00576,0.006496,1.11165,0.010464
+1270,554.338,1.80396,1.56259,0.008384,0.405056,0.004352,0.005536,0.006752,1.12224,0.010272
+1271,513.155,1.94873,1.36397,0.009248,0.22144,0.004832,0.006144,0.008032,1.10403,0.01024
+1272,569.047,1.75732,1.38038,0.008192,0.216544,0.00464,0.00608,0.006208,1.12845,0.010272
+1273,550.538,1.81641,2.65011,0.008192,0.219136,0.005152,0.005088,0.008192,2.39411,0.01024
+1274,326.349,3.06421,1.38374,0.008192,0.21712,0.005088,0.004864,0.007936,1.13014,0.0104
+1275,567.942,1.76074,1.37379,0.008192,0.214112,0.00496,0.00576,0.006592,1.12384,0.010336
+1276,474.129,2.10913,2.55546,0.008224,0.219008,0.004224,0.006144,0.007328,2.29872,0.011808
+1277,367.091,2.72412,1.38157,0.008192,0.217088,0.005856,0.004384,0.007552,1.12822,0.010272
+1278,564.187,1.77246,1.38854,0.00928,0.216,0.00512,0.00704,0.006272,1.13459,0.01024
+1279,528.448,1.89233,2.23888,0.008064,0.218784,0.004928,0.00576,0.006624,1.98448,0.01024
+1280,355.556,2.8125,1.38035,0.008192,0.227328,0.005568,0.005792,0.007072,1.11616,0.01024
+1281,563.334,1.77515,1.3728,0.007936,0.21744,0.004608,0.00768,0.006656,1.11821,0.010272
+1282,565.902,1.76709,1.75267,0.008128,0.216896,0.004576,0.006144,0.0072,1.4959,0.013824
+1283,334.805,2.98682,1.86048,0.00832,0.281344,0.005728,0.005792,0.022784,1.52733,0.009184
+1284,556.144,1.7981,1.37459,0.00832,0.236096,0.006112,0.005888,0.006464,1.10118,0.010528
+1285,565.98,1.76685,1.3865,0.008192,0.2184,0.004832,0.006176,0.007936,1.13072,0.01024
+1286,472.597,2.11597,2.4617,0.008448,0.479648,0.007168,0.00512,0.01024,1.94118,0.009888
+1287,378.244,2.6438,1.38477,0.008416,0.227968,0.005536,0.00576,0.007168,1.11965,0.010272
+1288,555.164,1.80127,1.38128,0.008256,0.21936,0.004736,0.005696,0.006592,1.12637,0.010272
+1289,465.137,2.1499,2.4023,0.00816,0.469024,0.00784,0.0056,0.016416,1.8847,0.01056
+1290,386.634,2.58643,1.36794,0.007872,0.221504,0.004096,0.006144,0.007776,1.11018,0.010368
+1291,562.792,1.77686,1.39059,0.008192,0.217088,0.005536,0.006304,0.006592,1.13664,0.01024
+1292,487.968,2.04932,2.55558,0.008352,0.274976,0.006144,0.006144,0.006176,2.23974,0.014048
+1293,346.473,2.88623,1.38803,0.008352,0.22288,0.004448,0.006144,0.0072,1.12854,0.010464
+1294,552.841,1.80884,1.38096,0.023008,0.217184,0.004128,0.006176,0.007296,1.11293,0.01024
+1295,543.38,1.84033,2.1784,0.008192,0.23088,0.00464,0.016384,0.007168,1.8993,0.01184
+1296,375.195,2.66528,1.36835,0.007904,0.217792,0.005792,0.006368,0.006272,1.11392,0.010304
+1297,449.32,2.22559,1.46138,0.008192,0.27824,0.004384,0.021568,0.007104,1.13152,0.010368
+1298,662.14,1.51025,1.37626,0.008224,0.225088,0.004256,0.005568,0.00672,1.11616,0.01024
+1299,506.179,1.97559,1.97472,0.010688,0.421824,0.0056,0.004704,0.008,1.51322,0.010688
+1300,420.232,2.37964,1.37818,0.008192,0.21696,0.004224,0.007712,0.006624,1.124,0.010464
+1301,575.443,1.73779,1.3736,0.008192,0.221184,0.005952,0.005312,0.007072,1.116,0.009888
+1302,532.986,1.87622,2.57434,0.008192,0.217088,0.00528,0.007008,0.006144,2.31978,0.010848
+1303,331.204,3.01929,1.37165,0.008288,0.217248,0.005152,0.005056,0.007424,1.11827,0.010208
+1304,430.342,2.32373,1.41181,0.00832,0.262624,0.004224,0.005632,0.006656,1.11411,0.01024
+1305,718.596,1.3916,2.4535,0.008192,0.221216,0.005696,0.005824,0.00688,1.9592,0.246496
+1306,359.141,2.78442,1.36826,0.008384,0.217088,0.0056,0.005792,0.006912,1.11424,0.01024
+1307,575.685,1.73706,1.376,0.008352,0.220928,0.00496,0.006144,0.007328,1.11818,0.010112
+1308,536.688,1.86328,1.76358,0.008288,0.2152,0.005248,0.005024,0.007872,1.50867,0.01328
+1309,422.442,2.36719,1.5913,0.008192,0.42528,0.0048,0.005184,0.007104,1.1305,0.01024
+1310,500.061,1.99976,1.39933,0.008384,0.219488,0.005856,0.0064,0.006208,1.14275,0.01024
+1311,559.41,1.7876,1.37379,0.008384,0.21504,0.005472,0.006944,0.00624,1.12131,0.0104
+1312,524.254,1.90747,2.65923,0.00832,0.21584,0.005536,0.004704,0.007776,2.40682,0.01024
+1313,221.011,4.52466,1.40051,0.008192,0.233056,0.004512,0.006144,0.006144,1.13187,0.010592
+1314,1109.43,0.901367,1.40381,0.008224,0.223584,0.00464,0.015904,0.006656,1.13456,0.01024
+1315,407.279,2.45532,1.76947,0.01024,0.222464,0.004864,0.005888,0.008,1.50723,0.010784
+1316,473.198,2.11328,1.37526,0.008192,0.220576,0.004704,0.006144,0.007648,1.1167,0.011296
+1317,552.022,1.81152,1.37168,0.008192,0.217024,0.00416,0.006176,0.00736,1.11859,0.010176
+1318,498.357,2.00659,2.61334,0.008128,0.231616,0.005664,0.005792,0.006976,2.34493,0.01024
+1319,350.115,2.8562,1.39674,0.008192,0.242816,0.004928,0.005792,0.00656,1.11821,0.01024
+1320,564.498,1.77148,1.39878,0.00928,0.216,0.005728,0.004512,0.007264,1.14576,0.01024
+1321,519.138,1.92627,2.58698,0.008,0.221728,0.0056,0.005792,0.007008,2.32653,0.01232
+1322,325.415,3.073,1.37482,0.008096,0.223936,0.005344,0.005024,0.008,1.11418,0.01024
+1323,574.635,1.74023,1.37197,0.008192,0.217088,0.005568,0.005792,0.00688,1.11821,0.01024
+1324,583.725,1.71313,1.73354,0.008128,0.217536,0.004608,0.006112,0.006208,1.47658,0.014368
+1325,409.928,2.43945,1.5535,0.008192,0.405504,0.00576,0.00448,0.007456,1.11181,0.010304
+1326,508.82,1.96533,1.37027,0.00704,0.21712,0.00544,0.005824,0.006688,1.11789,0.010272
+1327,562.715,1.7771,1.35584,0.008256,0.21504,0.005472,0.005792,0.006912,1.10413,0.01024
+1328,346.561,2.8855,1.77693,0.011392,0.232352,0.00592,0.005792,0.006592,1.50454,0.010336
+1329,471.455,2.12109,1.36925,0.008192,0.220608,0.004672,0.00608,0.006208,1.11206,0.011424
+1330,571.429,1.75,1.36397,0.00928,0.216,0.004096,0.005408,0.00688,1.11206,0.01024
+1331,493.435,2.02661,2.44506,0.008192,0.473088,0.024576,0.006144,0.006144,1.91616,0.010752
+1332,375.78,2.66113,1.36195,0.008192,0.21872,0.004512,0.00592,0.006368,1.10797,0.010272
+1333,561.634,1.78052,1.35376,0.008224,0.217088,0.005536,0.005824,0.00672,1.10013,0.01024
+1334,550.464,1.81665,2.56778,0.008192,0.237568,0.004096,0.005824,0.006464,2.2935,0.012128
+1335,332.603,3.00659,1.39059,0.008,0.22128,0.004192,0.006176,0.007488,1.13322,0.01024
+1336,564.11,1.77271,1.37466,0.008192,0.217536,0.004096,0.005824,0.006464,1.1223,0.01024
+1337,548.033,1.82471,1.76128,0.008192,0.255104,0.00496,0.005792,0.006528,1.46758,0.01312
+1338,423.403,2.36182,1.56205,0.008128,0.41744,0.004512,0.005344,0.006944,1.10934,0.010336
+1339,506.555,1.97412,1.37472,0.00832,0.215456,0.005312,0.006976,0.007168,1.12112,0.010368
+1340,571.827,1.74878,1.36016,0.008288,0.220352,0.00512,0.006144,0.007232,1.10278,0.01024
+1341,384.962,2.59766,1.76554,0.010816,0.222656,0.004928,0.005792,0.006656,1.50323,0.011456
+1342,338.456,2.95459,1.43974,0.008192,0.30096,0.005376,0.00496,0.008064,1.10192,0.010272
+1343,780.19,1.28174,1.38205,0.008256,0.245472,0.00432,0.006144,0.008224,1.0993,0.010336
+1344,540.583,1.84985,2.64368,0.008352,0.235072,0.004896,0.004096,0.00784,2.37194,0.011488
+1345,323.411,3.09204,1.36342,0.008288,0.217024,0.004512,0.006144,0.006176,1.10998,0.011296
+1346,574.474,1.74072,1.36838,0.00832,0.217408,0.0056,0.006464,0.006368,1.11392,0.010304
+1347,530.845,1.88379,2.28762,0.008192,0.23952,0.004192,0.006144,0.008032,2.0113,0.01024
+1348,376.471,2.65625,1.40134,0.008288,0.21952,0.004096,0.005728,0.007744,1.1457,0.010272
+1349,557.127,1.79492,1.38442,0.008224,0.218144,0.004928,0.006304,0.006144,1.12976,0.010912
+1350,404.064,2.47485,1.43085,0.009312,0.279456,0.004128,0.006112,0.007744,1.11363,0.010464
+1351,615.94,1.62354,1.55667,0.008288,0.40672,0.00496,0.005856,0.006432,1.11408,0.010336
+1352,549.725,1.81909,1.36365,0.008192,0.220416,0.004864,0.004096,0.007968,1.10797,0.010144
+1353,559.105,1.78857,1.36768,0.008192,0.220768,0.004512,0.006144,0.007904,1.10954,0.010624
+1354,554.338,1.80396,2.60301,0.008192,0.221184,0.005344,0.004864,0.006208,2.34698,0.01024
+1355,331.526,3.01636,1.38749,0.008448,0.219872,0.005248,0.006368,0.006816,1.1305,0.01024
+1356,567.47,1.76221,1.3791,0.008288,0.215744,0.005312,0.006496,0.006624,1.1264,0.01024
+1357,288.613,3.46484,2.34496,0.009344,0.237696,0.004864,0.006016,0.006272,2.07053,0.01024
+1358,830.663,1.20386,1.37238,0.008192,0.22944,0.004672,0.00608,0.00624,1.10739,0.010368
+1359,580.581,1.72241,1.37398,0.008192,0.218912,0.00432,0.006176,0.007808,1.11827,0.010304
+1360,396.477,2.52222,1.43974,0.008192,0.249856,0.006144,0.00512,0.014624,1.14557,0.01024
+1361,901.21,1.10962,1.76083,0.008192,0.218592,0.00464,0.006048,0.00624,1.50637,0.010752
+1362,464.873,2.15112,1.37642,0.008032,0.216832,0.004672,0.004096,0.007744,1.1248,0.01024
+1363,575.119,1.73877,1.38554,0.008192,0.222752,0.004576,0.005824,0.006464,1.12758,0.010144
+1364,492.071,2.03223,2.58461,0.008224,0.233472,0.005568,0.005792,0.007072,2.30605,0.018432
+1365,333.904,2.99487,1.36941,0.008192,0.226624,0.0048,0.00592,0.006368,1.10736,0.010144
+1366,579.186,1.72656,1.36819,0.008288,0.220448,0.004928,0.006208,0.007232,1.11075,0.010336
+1367,506.116,1.97583,2.14416,0.00832,0.221312,0.00512,0.005088,0.007584,1.88467,0.012064
+1368,380.351,2.62915,1.37898,0.008288,0.216864,0.004864,0.005856,0.006432,1.1264,0.010272
+1369,573.268,1.74438,1.3617,0.008448,0.221664,0.005248,0.005152,0.00784,1.10304,0.010304
+1370,552.692,1.80933,1.72874,0.006976,0.22016,0.004928,0.004288,0.00768,1.47098,0.013728
+1371,405.424,2.46655,1.74675,0.008192,0.21872,0.004512,0.004128,0.007488,1.49363,0.01008
+1372,401.018,2.49365,1.45418,0.02336,0.280768,0.005696,0.004544,0.015648,1.1128,0.01136
+1373,671.806,1.48853,1.39059,0.008192,0.24272,0.004928,0.005792,0.006656,1.11206,0.01024
+1374,541.727,1.84595,2.42502,0.008352,0.465472,0.022656,0.005984,0.007616,1.90438,0.01056
+1375,357.573,2.79663,1.36765,0.008192,0.218944,0.004288,0.006144,0.007392,1.11232,0.010368
+1376,573.509,1.74365,1.36899,0.008288,0.215872,0.005568,0.005792,0.007072,1.11603,0.010368
+1377,556.219,1.79785,2.56819,0.008192,0.219168,0.00512,0.00512,0.008032,2.31162,0.010944
+1378,332.144,3.01074,1.38954,0.007136,0.219136,0.004096,0.006176,0.00816,1.13446,0.010368
+1379,564.187,1.77246,1.39837,0.008224,0.217088,0.004096,0.007776,0.00656,1.13254,0.02208
+1380,358.92,2.78613,1.47264,0.008192,0.30736,0.005824,0.004416,0.018432,1.11798,0.010432
+1381,514.832,1.94238,1.38298,0.01056,0.232064,0.005888,0.0056,0.006912,1.11181,0.010144
+1382,554.113,1.80469,1.36192,0.008192,0.221184,0.005344,0.005024,0.007616,1.10432,0.01024
+1383,566.137,1.76636,1.35603,0.00848,0.217056,0.005856,0.005824,0.006752,1.1017,0.010368
+1384,456.99,2.18823,1.82893,0.010688,0.226816,0.00496,0.004192,0.007648,1.56317,0.011456
+1385,447.504,2.23462,1.36218,0.008256,0.219328,0.00592,0.005792,0.00672,1.10592,0.01024
+1386,569.522,1.75586,1.35936,0.008288,0.219008,0.004224,0.007776,0.00656,1.10298,0.010528
+1387,322.545,3.10034,2.28282,0.008192,0.270336,0.004096,0.03072,0.008032,1.95088,0.01056
+1388,660.858,1.51318,1.37574,0.00816,0.223264,0.005472,0.005792,0.007072,1.11546,0.010528
+1389,582.48,1.7168,1.37626,0.008192,0.22928,0.004192,0.006176,0.007456,1.11059,0.010368
+1390,554.938,1.802,1.37235,0.008416,0.22736,0.005728,0.005792,0.00688,1.10768,0.010496
+1391,536.477,1.86401,1.76573,0.008288,0.229472,0.004256,0.006144,0.007424,1.4999,0.01024
+1392,462.042,2.16431,1.36525,0.008192,0.2184,0.004832,0.004096,0.007936,1.11136,0.010432
+1393,575.119,1.73877,1.35472,0.008288,0.223424,0.004704,0.005856,0.00768,1.09546,0.009312
+1394,532.363,1.87842,2.58784,0.008192,0.222944,0.004384,0.00544,0.006848,2.32858,0.011456
+1395,335.133,2.98389,1.35824,0.007936,0.223616,0.004384,0.006144,0.007264,1.09866,0.01024
+1396,526.275,1.90015,1.37024,0.008224,0.223328,0.005664,0.005792,0.006976,1.11005,0.010208
+1397,574.232,1.74146,2.1545,0.009312,0.248448,0.004384,0.006176,0.007296,1.86806,0.010816
+1398,368.677,2.7124,1.36349,0.008192,0.220992,0.004288,0.005312,0.006976,1.10733,0.0104
+1399,554.338,1.80396,1.37216,0.008192,0.221184,0.005632,0.005792,0.007008,1.11411,0.01024
+1400,542.445,1.84351,1.69766,0.008192,0.219136,0.0056,0.00464,0.007328,1.43856,0.014208
+1401,432.569,2.31177,1.74285,0.008256,0.22112,0.005888,0.006048,0.006528,1.48477,0.01024
+1402,374.509,2.67017,1.4079,0.00832,0.258848,0.005728,0.004512,0.007456,1.1128,0.01024
+1403,761.763,1.31274,1.35382,0.00816,0.218816,0.004544,0.006144,0.007168,1.09875,0.01024
+1404,550.464,1.81665,2.46461,0.008576,0.459232,0.03664,0.0056,0.006912,1.93741,0.01024
+1405,351.709,2.84326,1.3679,0.008224,0.220384,0.004864,0.005856,0.006432,1.11165,0.010496
+1406,558.266,1.79126,1.36659,0.008352,0.225696,0.005792,0.005792,0.006848,1.10387,0.01024
+1407,555.842,1.79907,2.14499,0.007968,0.226208,0.004128,0.006144,0.007584,1.88067,0.012288
+1408,353.988,2.82495,1.38202,0.008192,0.22528,0.004128,0.005824,0.008224,1.12006,0.010304
+1409,563.644,1.77417,1.35699,0.008384,0.217088,0.00528,0.005024,0.007648,1.10342,0.010144
+1410,519.731,1.92407,1.72032,0.008384,0.237376,0.004096,0.005728,0.006496,1.44531,0.012928
+1411,441.76,2.26367,1.54829,0.008224,0.404672,0.004896,0.005952,0.006336,1.10797,0.01024
+1412,502.7,1.98926,1.35962,0.008192,0.219136,0.00512,0.00512,0.007776,1.10378,0.010496
+1413,566.842,1.76416,1.36397,0.009408,0.217216,0.004704,0.00592,0.006464,1.10998,0.010272
+1414,559.869,1.78613,2.41021,0.008224,0.458752,0.02048,0.005984,0.0064,1.89962,0.010752
+1415,353.469,2.8291,1.35718,0.008192,0.218144,0.004928,0.006304,0.00784,1.10122,0.01056
+1416,571.11,1.75098,1.36534,0.00928,0.219072,0.00496,0.006304,0.007168,1.10806,0.010496
+1417,322.672,3.09912,2.30221,0.008416,0.237312,0.004672,0.006112,0.006176,2.02877,0.010752
+1418,702.091,1.42432,1.3865,0.008192,0.243712,0.005312,0.004864,0.006208,1.10797,0.01024
+1419,565.512,1.76831,1.38762,0.008224,0.216864,0.004288,0.006144,0.007328,1.13462,0.010144
+1420,577.064,1.73291,1.36074,0.008384,0.219776,0.005632,0.00576,0.00704,1.10378,0.010368
+1421,536.688,1.86328,1.73827,0.0096,0.217728,0.005152,0.005088,0.007744,1.48259,0.010368
+1422,473.198,2.11328,1.37011,0.008192,0.21504,0.005376,0.006912,0.007232,1.11712,0.01024
+1423,574.474,1.74072,1.38854,0.008192,0.221184,0.004096,0.006144,0.007904,1.13078,0.01024
+1424,505.429,1.97852,2.17632,0.008192,0.217152,0.020416,0.00512,0.007072,1.8904,0.027968
+1425,348.122,2.87256,1.41312,0.018432,0.24928,0.004672,0.006048,0.014176,1.11027,0.01024
+1426,540.013,1.85181,1.40083,0.008192,0.227008,0.004416,0.005408,0.00688,1.13869,0.01024
+1427,541.942,1.84521,1.71811,0.008416,0.237504,0.004736,0.005984,0.006304,1.44176,0.013408
+1428,444.3,2.25073,1.55286,0.008256,0.403872,0.004096,0.005856,0.006432,1.11411,0.01024
+1429,489.191,2.04419,1.40083,0.008192,0.24272,0.004928,0.005792,0.006656,1.1223,0.01024
+1430,517.76,1.9314,1.37216,0.008192,0.237344,0.00432,0.005504,0.006784,1.09978,0.01024
+1431,544.536,1.83643,2.44374,0.00832,0.4728,0.023456,0.006112,0.006144,1.91619,0.01072
+1432,297.934,3.35645,1.41725,0.008224,0.247776,0.0056,0.00464,0.007328,1.13341,0.010272
+1433,833.537,1.19971,1.37462,0.008448,0.229568,0.005344,0.005056,0.00784,1.10813,0.01024
+1434,549.651,1.81934,2.57027,0.008224,0.231424,0.00576,0.005792,0.006848,2.30093,0.011296
+1435,330.99,3.02124,1.35174,0.00816,0.223328,0.005312,0.006112,0.007008,1.09158,0.01024
+1436,557.582,1.79346,1.35782,0.008192,0.224768,0.004608,0.006112,0.006176,1.09757,0.0104
+1437,564.343,1.77197,1.68499,0.008064,0.229536,0.004096,0.006144,0.007744,1.41562,0.013792
+1438,411.245,2.43164,1.34758,0.008192,0.232896,0.004672,0.006112,0.006176,1.07862,0.010912
+1439,568.81,1.75806,1.35389,0.008192,0.226208,0.00512,0.005088,0.007776,1.09117,0.010336
+1440,523.651,1.90967,1.37216,0.008192,0.247616,0.004288,0.006144,0.007392,1.08829,0.01024
+1441,505.804,1.97705,2.64189,0.008384,0.264224,0.004288,0.006144,0.007456,2.34074,0.010656
+1442,352.526,2.83667,1.35987,0.008192,0.229376,0.004096,0.005824,0.006464,1.09568,0.01024
+1443,570.633,1.75244,1.35789,0.008256,0.222656,0.004672,0.006016,0.0064,1.09965,0.01024
+1444,525.667,1.90234,2.6199,0.008256,0.242144,0.005632,0.004576,0.007904,2.34115,0.01024
+1445,341.191,2.93091,1.35782,0.008224,0.22864,0.0048,0.00592,0.006368,1.09363,0.01024
+1446,563.721,1.77393,1.34928,0.008192,0.221184,0.005856,0.005792,0.006784,1.09107,0.0104
+1447,421.139,2.37451,2.19712,0.00832,0.27584,0.004896,0.005824,0.015968,1.87466,0.011616
+1448,435.467,2.29639,1.36192,0.008192,0.233184,0.004384,0.00544,0.006848,1.09363,0.01024
+1449,551.501,1.81323,1.36403,0.008192,0.237568,0.004096,0.006144,0.007648,1.09008,0.010304
+1450,550.908,1.81519,1.35782,0.008192,0.243712,0.005152,0.005088,0.007776,1.0775,0.0104
+1451,421.139,2.37451,1.54522,0.010368,0.406656,0.004864,0.005952,0.006368,1.10086,0.010144
+1452,524.389,1.90698,1.34666,0.008192,0.21504,0.005184,0.006816,0.006464,1.09466,0.010304
+1453,565.746,1.76758,1.37792,0.008192,0.2448,0.004928,0.006272,0.00784,1.09555,0.010336
+1454,502.762,1.98901,2.44941,0.008192,0.448512,0.045056,0.006144,0.007936,1.92333,0.01024
+1455,356.732,2.80322,1.38125,0.008096,0.246752,0.005184,0.005024,0.008192,1.09773,0.010272
+1456,562.174,1.77881,1.35782,0.018432,0.225216,0.00416,0.005632,0.006656,1.08749,0.01024
+1457,545.116,1.83447,2.56685,0.008128,0.246624,0.005248,0.005024,0.007904,2.28285,0.011072
+1458,340.426,2.9375,1.35382,0.008128,0.221344,0.005376,0.004832,0.008128,1.09578,0.01024
+1459,503.194,1.9873,1.37219,0.009248,0.233728,0.004832,0.005888,0.0064,1.10182,0.010272
+1460,605.559,1.65137,2.16883,0.008192,0.241664,0.004096,0.006144,0.007712,1.89008,0.010944
+1461,362.606,2.75781,1.36845,0.008096,0.223456,0.004416,0.006144,0.007584,1.10848,0.010272
+1462,513.219,1.94849,1.37411,0.008288,0.229536,0.005216,0.004864,0.006304,1.10941,0.010496
+1463,569.284,1.75659,1.34736,0.008192,0.222624,0.004704,0.006016,0.006272,1.08918,0.010368
+1464,487.793,2.05005,2.43664,0.00848,0.47296,0.048512,0.00896,0.007744,1.87846,0.01152
+1465,368.81,2.71143,1.35846,0.008896,0.231296,0.004512,0.006144,0.0072,1.09014,0.010272
+1466,598.568,1.67065,1.34726,0.008192,0.220512,0.004768,0.005984,0.006304,1.0912,0.010304
+1467,548.4,1.82349,2.37974,0.008192,0.47104,0.008032,0.0056,0.006848,1.86938,0.010656
+1468,364.705,2.74194,1.35888,0.008192,0.223232,0.005216,0.005024,0.007968,1.09795,0.011296
+1469,401.097,2.49316,1.37494,0.00816,0.221312,0.004736,0.007264,0.007072,1.11581,0.010592
+1470,892.18,1.12085,2.64851,0.008224,0.270144,0.004704,0.006144,0.007232,2.34147,0.010592
+1471,311.412,3.21118,1.34144,0.008192,0.22528,0.005888,0.005792,0.006752,1.07933,0.010208
+1472,587.072,1.70337,1.34208,0.008256,0.217504,0.005632,0.004608,0.006144,1.08954,0.0104
+1473,531.81,1.88037,2.15014,0.008352,0.223712,0.00416,0.006144,0.007264,1.88906,0.011456
+1474,386.306,2.58862,1.34909,0.008192,0.229024,0.004448,0.005376,0.006912,1.08467,0.010464
+1475,554.413,1.80371,1.3679,0.008192,0.221184,0.005856,0.006432,0.007712,1.1081,0.010432
+1476,565.277,1.76904,1.35178,0.008352,0.219456,0.005824,0.004416,0.007616,1.09584,0.010272
+1477,393.846,2.53906,2.44736,0.010176,0.446336,0.006336,0.00576,0.006528,1.96198,0.01024
+1478,437,2.28833,1.3489,0.008192,0.22848,0.004928,0.005792,0.00656,1.08448,0.010464
+1479,559.028,1.78882,1.35578,0.008192,0.217088,0.005664,0.005792,0.006976,1.10182,0.01024
+1480,490.421,2.03906,2.4159,0.008192,0.468416,0.040832,0.0048,0.00784,1.87427,0.011552
+1481,380.952,2.625,1.34752,0.008,0.22592,0.005184,0.005056,0.007808,1.08518,0.010368
+1482,572.947,1.74536,1.34166,0.008128,0.219296,0.004224,0.0056,0.006688,1.08749,0.01024
+1483,521.916,1.91602,2.60186,0.008256,0.221984,0.004128,0.006144,0.007584,2.34352,0.01024
+1484,298.477,3.35034,1.4056,0.008096,0.27248,0.004768,0.005952,0.006368,1.0977,0.01024
+1485,646.975,1.54565,1.37622,0.008192,0.251648,0.004352,0.006144,0.007296,1.08758,0.011008
+1486,556.9,1.79565,2.51875,0.008192,0.251936,0.004064,0.006176,0.007744,2.2265,0.014144
+1487,331.982,3.01221,1.34758,0.008192,0.224704,0.004672,0.006048,0.00624,1.08749,0.01024
+1488,592.164,1.68872,1.36362,0.00832,0.221056,0.005248,0.004864,0.006304,1.10742,0.0104
+1489,562.02,1.7793,1.34864,0.008192,0.222496,0.004832,0.006176,0.007808,1.08784,0.011296
+1490,337.926,2.95923,1.36886,0.010528,0.241408,0.004864,0.004096,0.0136,1.084,0.010368
+1491,551.947,1.81177,1.36122,0.009888,0.229728,0.00576,0.016032,0.00688,1.08266,0.010272
+1492,588.844,1.69824,1.3431,0.00832,0.220864,0.004544,0.00608,0.006208,1.08662,0.010464
+1493,494.03,2.02417,1.92826,0.01024,0.43008,0.006144,0.006016,0.006272,1.45818,0.011328
+1494,428.811,2.33203,1.32915,0.008192,0.221184,0.004096,0.00576,0.007968,1.07171,0.01024
+1495,575.2,1.73853,1.3256,0.008288,0.217376,0.00448,0.006144,0.007296,1.07184,0.010176
+1496,516.78,1.93506,2.13555,0.008192,0.25712,0.00496,0.004192,0.007808,1.84054,0.012736
+1497,375.573,2.6626,1.36192,0.008192,0.239616,0.005728,0.005792,0.006912,1.08544,0.01024
+1498,573.991,1.74219,1.35373,0.008192,0.221184,0.004096,0.005824,0.006464,1.08544,0.022528
+1499,485.136,2.06128,1.72688,0.008256,0.278848,0.00576,0.005792,0.00688,1.40698,0.014368
+1500,417.874,2.39307,1.35213,0.008352,0.217568,0.005728,0.024256,0.00688,1.07894,0.0104
+1501,585.31,1.7085,1.35885,0.008192,0.22064,0.00464,0.006144,0.0072,1.10077,0.011264
+1502,585.31,1.7085,1.33939,0.008192,0.22272,0.004608,0.006112,0.006176,1.08134,0.01024
+1503,564.421,1.77173,1.34925,0.00816,0.229312,0.004544,0.006144,0.006144,1.08451,0.010432
+1504,571.349,1.75024,1.52781,0.008192,0.405408,0.004192,0.006176,0.007488,1.08611,0.01024
+1505,519.599,1.92456,1.3519,0.008096,0.2192,0.004352,0.00544,0.007968,1.09661,0.01024
+1506,576.009,1.73608,1.34445,0.007168,0.227264,0.005984,0.005856,0.006592,1.08134,0.01024
+1507,506.931,1.97266,2.66432,0.008192,0.253984,0.005856,0.004352,0.007616,2.37376,0.01056
+1508,326.765,3.0603,1.35168,0.008192,0.231424,0.00576,0.00576,0.006944,1.08336,0.01024
+1509,569.997,1.75439,1.36422,0.00816,0.22592,0.005856,0.005792,0.006784,1.10131,0.0104
+1510,567.077,1.76343,2.60819,0.008192,0.229344,0.004128,0.006144,0.007648,2.34141,0.011328
+1511,333.388,2.99951,1.36458,0.008032,0.221024,0.004928,0.005792,0.006592,1.10797,0.01024
+1512,545.551,1.83301,1.34771,0.00832,0.22112,0.00416,0.006176,0.007328,1.09037,0.01024
+1513,568.573,1.75879,2.2057,0.008224,0.228992,0.004448,0.005376,0.006912,1.92512,0.026624
+1514,334.285,2.99146,1.36182,0.008192,0.242912,0.004896,0.005824,0.007936,1.08166,0.0104
+1515,543.958,1.83838,1.35664,0.008576,0.222816,0.00496,0.019904,0.006752,1.08339,0.01024
+1516,569.918,1.75464,1.75846,0.008192,0.273984,0.004544,0.006176,0.006144,1.44586,0.013568
+1517,426.845,2.34277,1.52166,0.008192,0.405216,0.004384,0.006176,0.007488,1.07997,0.01024
+1518,519.007,1.92676,1.33942,0.008192,0.2232,0.004128,0.006144,0.00752,1.07997,0.010272
+1519,570.394,1.75317,1.35475,0.008256,0.221824,0.004416,0.00608,0.00624,1.0977,0.01024
+1520,572.867,1.74561,2.58118,0.00832,0.221568,0.004288,0.006144,0.008192,2.3224,0.010272
+1521,240.559,4.15698,1.39683,0.008192,0.24576,0.005216,0.005024,0.007808,1.1145,0.010336
+1522,1401.78,0.713379,1.35133,0.008224,0.228416,0.004928,0.005792,0.006624,1.08662,0.01072
+1523,556.824,1.7959,2.52118,0.008192,0.22656,0.00496,0.006144,0.007424,2.25667,0.011232
+1524,334.969,2.98535,1.34557,0.008384,0.223072,0.005664,0.005824,0.006912,1.08544,0.010272
+1525,573.027,1.74512,1.34624,0.008192,0.2192,0.004736,0.006144,0.007744,1.08998,0.01024
+1526,570.315,1.75342,2.15062,0.008192,0.221472,0.005888,0.005792,0.006752,1.8903,0.012224
+1527,358.952,2.78589,1.33142,0.00816,0.22416,0.005952,0.005792,0.006688,1.0703,0.010368
+1528,569.68,1.75537,1.34397,0.00832,0.221216,0.004416,0.006144,0.007424,1.08621,0.01024
+1529,451.25,2.21606,1.36963,0.008192,0.257632,0.004512,0.00528,0.007008,1.07674,0.010272
+1530,736.823,1.35718,2.35382,0.00832,0.46496,0.006624,0.006144,0.006176,1.85133,0.010272
+1531,306.518,3.26245,1.34074,0.008096,0.223584,0.005568,0.004672,0.007296,1.08128,0.01024
+1532,572.867,1.74561,1.34349,0.008224,0.221184,0.005344,0.005056,0.007776,1.08566,0.01024
+1533,544.247,1.8374,2.39613,0.008192,0.468928,0.007872,0.0056,0.007072,1.88774,0.01072
+1534,356.577,2.80444,1.35795,0.008608,0.229696,0.004192,0.007744,0.006592,1.09091,0.010208
+1535,571.748,1.74902,1.34144,0.008192,0.221184,0.005664,0.005792,0.006976,1.08448,0.009152
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..534215f
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,33.5914,29.7883,28.6141,0.0697025,0.944534,0.00757328,0.00561109,0.0289188,0.0964729,0.0992089,27.2459,0.116129
+max_1024,36.4984,35.1523,31.4902,0.084288,3.12502,0.043264,0.021408,0.045056,0.11808,0.458144,29.1158,0.50384
+min_1024,28.4476,27.3984,27.8118,0.065824,0.833664,0.006112,0.004064,0.02672,0.093152,0.095904,26.5107,0.111392
+512,34.3451,29.1162,28.232,0.065824,1.024,0.007744,0.004544,0.028384,0.104736,0.098336,26.7853,0.113056
+513,33.2694,30.0576,29.6326,0.069696,1.19536,0.006816,0.005888,0.03712,0.108544,0.097536,27.9982,0.11344
+514,31.7057,31.54,29.6591,0.069632,1.20794,0.006432,0.004224,0.044416,0.100352,0.096896,28.0166,0.11264
+515,32.4616,30.8057,28.1938,0.069696,1.00755,0.007936,0.005536,0.027488,0.104448,0.1,26.7554,0.115744
+516,35.9576,27.8105,29.3135,0.06848,0.929728,0.006208,0.005696,0.027072,0.095872,0.09664,27.9695,0.114272
+517,33.1853,30.1338,28.1313,0.070368,0.878592,0.007904,0.005504,0.027552,0.095648,0.096576,26.8352,0.113888
+518,34.1129,29.3145,28.1416,0.0696,0.92752,0.0064,0.005568,0.02864,0.094816,0.096384,26.7996,0.113024
+519,34.2521,29.1953,30.1757,0.067296,0.88752,0.006176,0.006144,0.02832,0.094592,0.097952,28.8746,0.113152
+520,32,31.25,28.0719,0.068768,0.8856,0.008064,0.004224,0.028704,0.095232,0.097056,26.7696,0.114688
+521,33.9815,29.4277,28.1395,0.069344,0.9376,0.006816,0.005856,0.028832,0.094368,0.096224,26.7858,0.114688
+522,34.2922,29.1611,29.3553,0.069632,0.917504,0.007168,0.004864,0.028256,0.095968,0.097184,28.0208,0.113984
+523,32.8721,30.4209,28.0822,0.069568,0.8848,0.007328,0.004992,0.028512,0.09552,0.09712,26.781,0.113376
+524,34.3221,29.1357,28.0717,0.070848,0.869184,0.007488,0.0048,0.028032,0.093856,0.097248,26.785,0.115264
+525,34.5421,28.9502,29.2906,0.068192,0.849056,0.007008,0.005568,0.0272,0.09584,0.09664,28.0239,0.117216
+526,32.9908,30.3115,29.2734,0.071136,0.861952,0.006944,0.004096,0.028672,0.096256,0.096256,27.9941,0.114016
+527,33.0653,30.2432,28.0777,0.070176,0.853792,0.006368,0.006144,0.028128,0.094752,0.098304,26.8059,0.11408
+528,34.1766,29.2598,29.2721,0.069632,0.861184,0.00704,0.004224,0.028672,0.095392,0.097088,27.9962,0.11264
+529,32.9112,30.3848,28.1522,0.06976,0.913184,0.006528,0.006016,0.027968,0.094752,0.098464,26.8207,0.114816
+530,34.4526,29.0254,29.1717,0.069344,0.860448,0.007936,0.004384,0.02864,0.094304,0.098208,27.8914,0.117056
+531,33.1306,30.1836,29.3306,0.069664,0.847872,0.007936,0.005504,0.027488,0.094368,0.0976,28.0676,0.112608
+532,33.0365,30.2695,28.0273,0.068032,0.841728,0.007968,0.00432,0.028672,0.096256,0.09824,26.7592,0.12288
+533,34.3693,29.0957,28.0515,0.069568,0.845408,0.006624,0.005632,0.027136,0.096064,0.09648,26.7899,0.114688
+534,34.2406,29.2051,29.3546,0.070144,0.856128,0.007488,0.0048,0.028288,0.094592,0.10192,28.0781,0.113088
+535,32.9897,30.3125,28.0802,0.069632,0.854016,0.008064,0.005504,0.027392,0.096256,0.096256,26.8104,0.112672
+536,33.7153,29.6602,28.1904,0.069568,0.998528,0.007104,0.012288,0.03072,0.096256,0.098304,26.7566,0.121024
+537,33.2144,30.1074,29.4655,0.068512,0.980992,0.0072,0.005088,0.034848,0.100352,0.098176,28.0556,0.114688
+538,32.9939,30.3086,29.323,0.069152,0.870048,0.006976,0.004096,0.028672,0.094208,0.097888,28.0395,0.112512
+539,32.8079,30.4805,28.1762,0.06976,0.946784,0.006144,0.006144,0.02832,0.095968,0.096896,26.8104,0.11584
+540,34.2452,29.2012,29.296,0.069184,0.8784,0.006784,0.00512,0.027648,0.095552,0.09696,27.9916,0.1248
+541,32.0501,31.2012,28.3417,0.06784,1.10099,0.021312,0.006144,0.031808,0.096736,0.100352,26.8027,0.113888
+542,34.3601,29.1035,28.4497,0.068544,0.884736,0.006144,0.005312,0.027456,0.096256,0.098336,27.1483,0.114688
+543,33.4684,29.8789,29.8103,0.069632,1.36394,0.006176,0.006144,0.03072,0.096096,0.097632,28.0257,0.114272
+544,32.8331,30.457,28.1067,0.07008,0.89072,0.006336,0.005568,0.0272,0.095904,0.09664,26.8001,0.114176
+545,33.5342,29.8203,28.2292,0.069248,1.02877,0.006368,0.014336,0.030624,0.095968,0.09664,26.7735,0.113728
+546,34.8774,28.6719,29.3502,0.069984,0.870848,0.006336,0.005632,0.028128,0.095264,0.09824,28.0617,0.11408
+547,32.6927,30.5879,28.1637,0.069632,0.926752,0.007008,0.005536,0.02736,0.096,0.09776,26.8188,0.114848
+548,33.8043,29.582,28.121,0.068128,0.882688,0.007456,0.004832,0.028032,0.094848,0.096256,26.8247,0.114048
+549,33.6532,29.7148,29.5444,0.069632,1.13254,0.00752,0.01296,0.028416,0.09568,0.106912,27.9773,0.113472
+550,31.8428,31.4043,29.5282,0.075904,1.06,0.007008,0.004096,0.028672,0.095264,0.097248,28.0453,0.114688
+551,32.6551,30.623,28.5128,0.068448,1.23274,0.02064,0.006144,0.028672,0.09616,0.103552,26.8421,0.114336
+552,34.5386,28.9531,29.4906,0.069824,1.02182,0.006272,0.005664,0.027104,0.096256,0.098304,28.0515,0.113888
+553,33.0173,30.2871,28.0836,0.069568,0.878208,0.006592,0.005984,0.028032,0.096032,0.096832,26.7878,0.114624
+554,33.9658,29.4414,28.1996,0.068448,0.960512,0.006144,0.006112,0.028672,0.10432,0.096416,26.8145,0.114464
+555,34.2658,29.1836,29.3467,0.068448,0.892896,0.006176,0.006144,0.02832,0.096256,0.09824,28.0355,0.114688
+556,32.7219,30.5605,28.1223,0.070848,0.938816,0.008096,0.004192,0.028672,0.095552,0.09696,26.7652,0.113984
+557,34.1789,29.2578,28.1766,0.079488,0.98704,0.00672,0.006112,0.027968,0.094944,0.0976,26.7619,0.114784
+558,34.404,29.0664,29.3591,0.068512,0.888832,0.007936,0.00432,0.028576,0.094336,0.097984,28.0558,0.112736
+559,32.7136,30.5684,28.1464,0.069728,0.92016,0.007936,0.005536,0.027488,0.096224,0.098048,26.8076,0.1136
+560,33.9253,29.4766,28.1611,0.0696,0.95024,0.008032,0.004256,0.02864,0.09568,0.096864,26.7939,0.113856
+561,33.9748,29.4336,29.4257,0.069664,0.9616,0.007072,0.005504,0.027264,0.095744,0.096768,28.0494,0.11264
+562,32.9409,30.3574,29.3653,0.075776,0.87984,0.006944,0.004288,0.02848,0.096192,0.09824,28.0612,0.114336
+563,32.6781,30.6016,28.1149,0.069408,0.901344,0.006304,0.006144,0.028704,0.09552,0.096992,26.796,0.114464
+564,34.4086,29.0625,29.3813,0.068448,0.926624,0.007072,0.00416,0.028672,0.09424,0.098016,28.0414,0.112704
+565,32.5245,30.7461,28.0562,0.070272,0.874464,0.006144,0.006144,0.02864,0.096064,0.09648,26.7633,0.11472
+566,34.0448,29.373,29.3697,0.078048,0.916576,0.007072,0.005472,0.027296,0.096032,0.09648,28.0289,0.11376
+567,32.5949,30.6797,29.3624,0.069344,0.936448,0.007904,0.005504,0.027552,0.095456,0.097056,28.0105,0.11264
+568,32.3273,30.9336,28.3057,0.069824,0.984512,0.006816,0.005184,0.027584,0.096,0.097664,26.9034,0.114688
+569,33.9388,29.4648,28.2002,0.068864,0.983264,0.006688,0.005856,0.028256,0.094912,0.098208,26.7999,0.11424
+570,33.9545,29.4512,29.3405,0.069536,0.926624,0.008032,0.004256,0.028512,0.094368,0.097696,27.9988,0.11264
+571,33.1134,30.1992,28.181,0.069536,0.876096,0.007136,0.005504,0.027296,0.096256,0.098336,26.8791,0.121728
+572,33.8848,29.5117,28.2828,0.069632,1.00499,0.00672,0.005184,0.027584,0.095776,0.096736,26.8615,0.114688
+573,34.188,29.25,29.4219,0.072,0.9728,0.008064,0.004128,0.044544,0.103008,0.098304,28.0062,0.112864
+574,32.701,30.5801,29.4031,0.075104,0.966752,0.00672,0.005248,0.02752,0.09744,0.09712,28.014,0.113184
+575,32.9388,30.3594,28.1375,0.069664,0.903136,0.00752,0.004768,0.028672,0.100352,0.097792,26.8109,0.114688
+576,34.1698,29.2656,29.3507,0.069536,0.895904,0.008,0.004288,0.028704,0.095904,0.097888,28.0371,0.113376
+577,32.6468,30.6309,28.1785,0.069088,0.944416,0.0064,0.00528,0.027488,0.095616,0.09664,26.8207,0.112832
+578,34.4271,29.0469,29.3048,0.073728,0.900192,0.007104,0.004064,0.028672,0.096256,0.097408,27.9848,0.11264
+579,32.747,30.5371,29.3305,0.069056,0.893504,0.007552,0.004736,0.028704,0.095264,0.097216,28.0206,0.113856
+580,32.6323,30.6445,28.1527,0.06848,0.9312,0.006784,0.00416,0.028608,0.095488,0.09632,26.8089,0.1128
+581,34.1972,29.2422,28.0756,0.071584,0.901408,0.007648,0.00464,0.028672,0.096224,0.097472,26.7537,0.114304
+582,34.2658,29.1836,29.2944,0.075456,0.90512,0.00656,0.005408,0.02736,0.09616,0.098176,27.9668,0.11344
+583,32.4852,30.7832,28.289,0.069632,1.07229,0.007008,0.005632,0.027136,0.094272,0.098048,26.8002,0.114784
+584,34.0947,29.3301,28.1325,0.069664,0.935488,0.00656,0.005376,0.027392,0.096256,0.098304,26.7796,0.113824
+585,34.1607,29.2734,29.2964,0.071008,0.897696,0.007616,0.004672,0.028672,0.09568,0.096864,27.981,0.113184
+586,32.6656,30.6133,29.279,0.069888,0.872992,0.0072,0.004928,0.028256,0.094784,0.113792,27.9745,0.112672
+587,32.6011,30.6738,28.0575,0.068352,0.9032,0.0072,0.005056,0.028704,0.095968,0.098528,26.7367,0.113792
+588,34.1812,29.2559,29.3667,0.070016,0.966656,0.007552,0.012704,0.028096,0.094432,0.096928,27.9776,0.112672
+589,32.9451,30.3535,28.2202,0.069952,0.997824,0.006144,0.006144,0.028544,0.096128,0.096512,26.8042,0.114688
+590,33.7308,29.6465,29.2238,0.068512,0.884736,0.006144,0.005856,0.028096,0.095072,0.097408,27.9254,0.11264
+591,32.7324,30.5508,29.3772,0.0696,0.973632,0.007904,0.005504,0.027552,0.096256,0.097888,27.9843,0.114624
+592,33.1886,30.1309,28.0637,0.069632,0.86016,0.00752,0.004768,0.02832,0.095872,0.096992,26.7858,0.114656
+593,34.3624,29.1016,28.0098,0.069216,0.860576,0.00736,0.004928,0.02864,0.09424,0.0976,26.7332,0.114016
+594,34.1972,29.2422,29.2148,0.068928,0.879264,0.006176,0.005824,0.028192,0.095008,0.098304,27.9183,0.114752
+595,33.1434,30.1719,28.0342,0.069632,0.841504,0.006368,0.006144,0.028032,0.094912,0.098112,26.7754,0.114144
+596,33.8983,29.5,28.1158,0.068576,0.924544,0.007072,0.00416,0.028672,0.096256,0.097664,26.7756,0.113248
+597,33.152,30.1641,29.8584,0.06816,1.41514,0.006176,0.006144,0.028672,0.104,0.096704,28.02,0.113376
+598,32.4194,30.8457,29.5972,0.069632,1.24109,0.007968,0.00432,0.028672,0.095776,0.096768,27.9388,0.114208
+599,32.8479,30.4434,28.2481,0.069664,1.03421,0.006144,0.006144,0.028224,0.094656,0.097376,26.797,0.114624
+600,34.2727,29.1777,29.3663,0.06912,0.94832,0.00656,0.005472,0.027296,0.096192,0.097504,28.0011,0.11472
+601,32.9388,30.3594,28.1129,0.069408,0.888224,0.006976,0.005568,0.027232,0.096224,0.098144,26.8064,0.11472
+602,34.2704,29.1797,29.29,0.068992,0.877088,0.00624,0.005248,0.02752,0.096256,0.097792,27.9967,0.114144
+603,32.9515,30.3477,29.3165,0.069664,0.860128,0.008032,0.005536,0.027392,0.095552,0.104128,28.0317,0.114368
+604,32.8374,30.4531,28.1619,0.084288,0.892288,0.006848,0.004064,0.028672,0.095552,0.09696,26.839,0.114208
+605,34.2612,29.1875,28.0745,0.069472,0.854752,0.007392,0.004864,0.028704,0.09552,0.09696,26.8022,0.114688
+606,34.0584,29.3613,29.3145,0.069632,0.886752,0.006336,0.005632,0.027072,0.09616,0.096256,28.014,0.11264
+607,32.8479,30.4434,28.0805,0.069536,0.867008,0.007264,0.005024,0.028672,0.096256,0.097696,26.7925,0.11648
+608,34.2842,29.168,28.0617,0.069088,0.870976,0.008032,0.004224,0.028672,0.095808,0.096736,26.7748,0.113376
+609,33.6554,29.7129,29.3353,0.06928,0.960864,0.007808,0.005504,0.027648,0.096256,0.097344,27.9562,0.1144
+610,32.4935,30.7754,29.4133,0.068352,1.0097,0.007744,0.004544,0.02864,0.095904,0.09824,27.9856,0.114592
+611,32.5679,30.7051,28.1825,0.083232,1.00016,0.007264,0.005024,0.028288,0.094624,0.097536,26.7517,0.114688
+612,34.5037,28.9824,29.3372,0.069632,0.923648,0.00752,0.004768,0.02848,0.094432,0.097632,27.9979,0.113216
+613,32.8352,30.4551,28.123,0.068352,0.919424,0.007872,0.005536,0.027552,0.096288,0.098272,26.7858,0.113952
+614,34.029,29.3867,28.4979,0.069632,0.921056,0.006688,0.005312,0.027456,0.096064,0.096448,27.1626,0.11264
+615,33.3138,30.0176,29.2778,0.071392,0.897312,0.007744,0.004544,0.028672,0.09584,0.096672,27.9613,0.114304
+616,32.7701,30.5156,28.0397,0.068576,0.863904,0.006464,0.006144,0.028224,0.1008,0.097856,26.7535,0.11424
+617,33.7108,29.6641,28.1516,0.069824,0.98944,0.007232,0.005056,0.028544,0.10048,0.096256,26.7387,0.116128
+618,33.9658,29.4414,29.3126,0.069664,0.894944,0.007936,0.004352,0.028448,0.094432,0.098304,28.0003,0.114304
+619,33.0301,30.2754,28.0783,0.068448,0.891968,0.007104,0.005536,0.027232,0.096256,0.096256,26.7715,0.114016
+620,33.713,29.6621,28.1358,0.068352,0.976832,0.006208,0.005664,0.029152,0.095872,0.09808,26.7413,0.114368
+621,34.1447,29.2871,29.3581,0.069568,0.95648,0.00736,0.004928,0.028672,0.096256,0.098176,27.982,0.114688
+622,32.6676,30.6113,29.2525,0.069696,0.90192,0.007456,0.004832,0.028032,0.094368,0.104928,27.9282,0.113024
+623,33.0707,30.2383,28.1071,0.076128,0.912384,0.007072,0.005536,0.027328,0.096256,0.097888,26.771,0.113504
+624,34.4341,29.041,29.2455,0.069632,0.870432,0.008,0.004256,0.028672,0.09424,0.098144,27.9492,0.122912
+625,32.8901,30.4043,28.0105,0.069664,0.871424,0.007008,0.005504,0.027392,0.096256,0.097984,26.722,0.113312
+626,34.5223,28.9668,29.2186,0.069248,0.854272,0.006752,0.005248,0.02752,0.094208,0.096256,27.9521,0.112992
+627,32.8648,30.4277,29.3197,0.069696,0.946592,0.00624,0.006144,0.02816,0.09472,0.098304,27.9564,0.11344
+628,32.8605,30.4316,28.0751,0.069664,0.912576,0.006944,0.004192,0.028576,0.096288,0.09808,26.7447,0.114048
+629,33.977,29.4316,28.2022,0.069568,0.99888,0.006752,0.005792,0.028128,0.099104,0.096384,26.7837,0.11392
+630,34.2269,29.2168,29.3095,0.068352,0.902784,0.020896,0.005824,0.028096,0.096256,0.097152,27.9757,0.114496
+631,32.9007,30.3945,28.1231,0.069568,0.935008,0.00704,0.00544,0.027456,0.104416,0.098336,26.7625,0.113408
+632,34.2635,29.1855,28.0515,0.069632,0.856096,0.007488,0.004768,0.028352,0.106816,0.096256,26.7674,0.114688
+633,34.0765,29.3457,29.2413,0.069568,0.866368,0.00752,0.004768,0.028672,0.0944,0.097728,27.9597,0.11264
+634,32.0481,31.2031,29.3803,0.069728,1.01616,0.007456,0.0048,0.036224,0.094816,0.096384,27.9408,0.113952
+635,33.2079,30.1133,28.2348,0.069632,1.06906,0.007264,0.015008,0.030976,0.095456,0.09648,26.7352,0.115776
+636,32.9578,30.3418,29.3904,0.069312,1.00336,0.006624,0.005376,0.027392,0.095648,0.113248,27.945,0.124448
+637,33.7419,29.6367,28.0863,0.069632,0.93088,0.00704,0.005504,0.027328,0.096224,0.096288,26.7387,0.114688
+638,34.0788,29.3438,29.4236,0.069632,1.02157,0.006528,0.005408,0.041696,0.096064,0.097696,27.9716,0.113408
+639,32.5575,30.7148,29.4074,0.069344,1.05296,0.007168,0.00512,0.028512,0.1024,0.10256,27.926,0.113312
+640,33.137,30.1777,28.0849,0.069696,0.893216,0.006464,0.005632,0.027136,0.095872,0.09664,26.7756,0.114688
+641,34.3947,29.0742,28.029,0.069632,0.880512,0.006272,0.006144,0.028384,0.094656,0.098144,26.7317,0.113536
+642,34.3233,29.1348,29.2168,0.069632,0.892928,0.00816,0.004128,0.028448,0.094432,0.096256,27.9101,0.11264
+643,33.1241,30.1895,28.0655,0.06928,0.870752,0.00784,0.005536,0.027584,0.096256,0.098048,26.7772,0.112992
+644,33.9433,29.4609,28.1957,0.068448,1.0048,0.006912,0.004288,0.036448,0.09648,0.10032,26.7633,0.114688
+645,34.5176,28.9707,29.2527,0.06976,0.855808,0.0064,0.006016,0.02864,0.09424,0.098016,27.9801,0.113792
+646,32.7198,30.5625,29.3514,0.069632,0.906592,0.006816,0.00528,0.027488,0.104448,0.098048,28.0204,0.112672
+647,32.6052,30.6699,28.2153,0.069632,1.05043,0.006336,0.006144,0.028096,0.094816,0.097568,26.7476,0.114688
+648,34.5409,28.9512,29.1779,0.069632,0.86016,0.007936,0.004352,0.028512,0.096,0.096672,27.9012,0.113344
+649,33.0557,30.252,28.0656,0.06928,0.862848,0.006208,0.006144,0.02816,0.09472,0.096256,26.7878,0.114112
+650,34.3394,29.1211,28.0105,0.069632,0.886304,0.006624,0.00528,0.027488,0.096256,0.097792,26.7085,0.11264
+651,34.5666,28.9297,30.0339,0.067232,0.846176,0.006144,0.006144,0.028256,0.09664,0.09632,28.7735,0.113504
+652,32.004,31.2461,28.1703,0.069376,0.99568,0.015872,0.004608,0.028512,0.094368,0.097536,26.7514,0.11296
+653,34.2292,29.2148,28.1134,0.06816,0.95024,0.007744,0.004544,0.028672,0.095488,0.096864,26.7486,0.11312
+654,34.0335,29.3828,29.3225,0.071712,0.935936,0.006144,0.005856,0.028192,0.096288,0.096992,27.9675,0.113952
+655,32.8753,30.418,28.1786,0.069184,0.96096,0.006304,0.006144,0.028352,0.09584,0.096992,26.8012,0.113632
+656,34.1812,29.2559,28.0163,0.069472,0.84976,0.006656,0.005248,0.02752,0.095232,0.101408,26.7468,0.114144
+657,33.8378,29.5527,29.3992,0.06848,0.950304,0.007488,0.004768,0.028672,0.101664,0.096992,28.0249,0.116
+658,32.9282,30.3691,29.2804,0.069248,0.887616,0.007872,0.004384,0.028608,0.095488,0.09712,27.9774,0.112704
+659,32.6822,30.5977,28.0918,0.069664,0.886784,0.007552,0.004704,0.028672,0.095584,0.096928,26.7858,0.11616
+660,33.923,29.4785,29.3354,0.0696,0.938112,0.008096,0.004096,0.028672,0.095968,0.096576,27.9797,0.114496
+661,33.0003,30.3027,28.1314,0.077248,0.93856,0.007648,0.00464,0.028672,0.104256,0.098528,26.7584,0.113408
+662,34.2292,29.2148,29.3412,0.069664,0.92096,0.006752,0.005376,0.027392,0.096256,0.098208,28.0024,0.114176
+663,32.7995,30.4883,29.3235,0.069184,0.88544,0.007264,0.005056,0.028448,0.094432,0.096224,28.0228,0.114688
+664,33.1907,30.1289,28.0578,0.069248,0.88528,0.007328,0.004864,0.028096,0.094944,0.09808,26.7552,0.114688
+665,34.2452,29.2012,28.1037,0.069696,0.88272,0.007648,0.004608,0.028672,0.096128,0.097664,26.8026,0.114016
+666,34.3325,29.127,29.2475,0.069664,0.874464,0.007968,0.00432,0.02848,0.0944,0.09824,27.9573,0.112608
+667,32.6968,30.584,28.162,0.069472,0.92288,0.00704,0.005504,0.027456,0.096096,0.098304,26.8222,0.11312
+668,33.9815,29.4277,28.1178,0.068416,0.976576,0.006464,0.005536,0.028288,0.095168,0.096416,26.7278,0.113184
+669,33.9298,29.4727,29.289,0.068192,0.902816,0.006464,0.006112,0.028064,0.09488,0.098016,27.9716,0.112864
+670,32.2195,31.0371,28.2903,0.069632,1.21184,0.00672,0.02048,0.028672,0.095936,0.096608,26.6465,0.113888
+671,34.7543,28.7734,29.0058,0.067584,0.943168,0.00704,0.005536,0.02864,0.094912,0.098144,27.6473,0.113472
+672,33.44,29.9043,29.2507,0.06944,0.864384,0.006208,0.005792,0.028512,0.094592,0.096384,27.9716,0.113824
+673,32.7596,30.5254,28.1224,0.069664,0.933696,0.006304,0.006144,0.02816,0.09472,0.096288,26.7735,0.11392
+674,33.5892,29.7715,28.3958,0.068224,0.881824,0.007008,0.004096,0.028672,0.095936,0.09808,27.0976,0.1144
+675,34.4526,29.0254,29.4271,0.06912,1.02861,0.009824,0.004512,0.032,0.094976,0.098304,27.9757,0.114048
+676,32.7638,30.5215,28.06,0.069248,0.871296,0.006208,0.005696,0.027072,0.095808,0.096704,26.7734,0.114592
+677,33.9365,29.4668,28.1894,0.068384,1.00557,0.007744,0.004512,0.028672,0.096192,0.097568,26.7678,0.11296
+678,34.4549,29.0234,29.2413,0.071008,0.869024,0.00752,0.004768,0.028256,0.094624,0.09824,27.9532,0.114688
+679,32.7491,30.5352,28.1749,0.068,1.0152,0.006752,0.005504,0.027264,0.096128,0.106656,26.7358,0.113568
+680,33.941,29.4629,28.0804,0.069184,0.88736,0.006304,0.005664,0.02816,0.094656,0.0968,26.779,0.113344
+681,34.441,29.0352,29.2823,0.069376,0.928,0.007744,0.004544,0.028672,0.095872,0.09776,27.9355,0.114848
+682,33.0856,30.2246,28.0777,0.069632,0.909312,0.006144,0.005888,0.028224,0.096192,0.096928,26.7511,0.114304
+683,34.3072,29.1484,29.1855,0.069728,0.894976,0.007776,0.004512,0.028672,0.096256,0.097504,27.872,0.11408
+684,32.9366,30.3613,29.2455,0.067648,0.86016,0.007872,0.004416,0.028608,0.094272,0.09632,27.9736,0.11264
+685,33.1714,30.1465,28.1805,0.069632,0.925472,0.006368,0.006144,0.028128,0.094752,0.098304,26.837,0.114688
+686,32.1426,31.1113,28.1416,0.069664,0.995328,0.008096,0.004192,0.0344,0.094624,0.09808,26.7225,0.114688
+687,35.8619,27.8848,29.483,0.081088,1.12061,0.006624,0.005664,0.034528,0.095008,0.102368,27.9245,0.11264
+688,32.9706,30.3301,28.0678,0.073472,0.91888,0.007072,0.004096,0.028672,0.10448,0.098144,26.7197,0.113344
+689,34.2934,29.1602,28.0879,0.069632,0.9216,0.007968,0.005504,0.027488,0.096128,0.09792,26.7466,0.115104
+690,33.8781,29.5176,29.348,0.069216,0.961472,0.018112,0.004416,0.042944,0.096032,0.09776,27.9437,0.114336
+691,32.747,30.5371,29.3166,0.069632,0.960128,0.006528,0.006048,0.028064,0.094944,0.101536,27.9356,0.114176
+692,33.0216,30.2832,28.1545,0.068448,0.989184,0.007584,0.004704,0.028352,0.094528,0.097728,26.7495,0.114464
+693,34.2957,29.1582,29.2884,0.069632,0.884736,0.007616,0.004704,0.02864,0.09568,0.096832,27.987,0.113568
+694,32.7157,30.5664,28.33,0.069152,1.18013,0.006144,0.005856,0.02816,0.095008,0.119872,26.7121,0.113568
+695,34.0675,29.3535,29.3543,0.069952,0.966752,0.007232,0.005056,0.029856,0.1112,0.098304,27.9514,0.11456
+696,32.81,30.4785,29.311,0.069632,0.944064,0.006208,0.005824,0.026944,0.096064,0.096448,27.9532,0.112704
+697,32.9812,30.3203,28.158,0.06928,0.946528,0.0072,0.005088,0.02848,0.094432,0.097568,26.7823,0.127104
+698,33.682,29.6895,28.115,0.069664,0.94016,0.00736,0.004832,0.0288,0.095712,0.098112,26.7551,0.115232
+699,34.1721,29.2637,29.2686,0.069408,0.912064,0.006304,0.006144,0.02816,0.094752,0.09808,27.9401,0.1136
+700,33.0664,30.2422,28.0765,0.070048,0.940032,0.00752,0.004768,0.028096,0.094784,0.098144,26.7184,0.11472
+701,34.4179,29.0547,28.0269,0.068704,0.861088,0.007808,0.005536,0.027616,0.096096,0.10368,26.7429,0.11344
+702,34.5363,28.9551,29.1983,0.069632,0.847872,0.007872,0.004416,0.028416,0.094464,0.098112,27.934,0.113504
+703,32.7345,30.5488,28.0769,0.069568,0.928704,0.006144,0.006144,0.028352,0.096576,0.096256,26.7305,0.114688
+704,34.3486,29.1133,29.4401,0.068608,0.995328,0.007968,0.00432,0.028704,0.09536,0.09712,28.0289,0.113728
+705,33.011,30.293,29.2408,0.0696,0.847904,0.007744,0.004544,0.028672,0.106496,0.098336,27.9634,0.114112
+706,32.9897,30.3125,27.9929,0.069792,0.873152,0.0072,0.004864,0.028096,0.096288,0.097056,26.7018,0.114656
+707,34.2315,29.2129,28.1702,0.069632,0.999424,0.007968,0.005536,0.027456,0.096288,0.097856,26.7514,0.114688
+708,34.2452,29.2012,29.2001,0.069216,0.842144,0.006144,0.006144,0.028064,0.110656,0.0968,27.9281,0.112896
+709,32.8753,30.418,28.192,0.07072,1.02266,0.0064,0.006144,0.028256,0.094624,0.096384,26.752,0.114784
+710,34.0879,29.3359,28.0044,0.069632,0.88064,0.007424,0.004864,0.028128,0.095776,0.09728,26.7059,0.114688
+711,34.1265,29.3027,29.2748,0.06944,0.914272,0.007584,0.004704,0.028672,0.095552,0.09696,27.945,0.11264
+712,32.9876,30.3145,29.2937,0.068736,0.930688,0.0072,0.004864,0.028224,0.096288,0.098144,27.945,0.114624
+713,32.9451,30.3535,28.1303,0.068608,0.984064,0.00704,0.005504,0.027392,0.095648,0.10288,26.7245,0.114688
+714,34.2658,29.1836,29.2534,0.069664,0.917664,0.008032,0.004256,0.028672,0.094208,0.098304,27.9183,0.114272
+715,32.5286,30.7422,28.0333,0.068768,0.927552,0.00768,0.004608,0.028672,0.095904,0.097728,26.6896,0.112768
+716,34.0607,29.3594,29.2639,0.069632,0.954368,0.007456,0.004832,0.028096,0.094784,0.097824,27.8942,0.112704
+717,33.4466,29.8984,29.2237,0.069632,0.883584,0.00768,0.004608,0.028672,0.095968,0.096544,27.9224,0.114592
+718,33.0856,30.2246,28.0177,0.069664,0.870368,0.007232,0.004928,0.028128,0.09488,0.097824,26.731,0.113728
+719,34.2727,29.1777,28.0764,0.068576,0.913408,0.008032,0.005504,0.027424,0.096256,0.097472,26.7447,0.11504
+720,33.2662,30.0605,29.536,0.0696,1.09792,0.007584,0.004704,0.028384,0.094496,0.098272,28.0208,0.114272
+721,32.9366,30.3613,28.0924,0.069632,0.948128,0.00624,0.006144,0.028544,0.094336,0.097792,26.729,0.112672
+722,31.823,31.4238,28.3055,0.069152,1.09011,0.006144,0.005792,0.028128,0.09648,0.098304,26.7898,0.121568
+723,36.4984,27.3984,29.4093,0.06912,1.05936,0.007424,0.004832,0.028672,0.095776,0.096768,27.934,0.11328
+724,32.6968,30.584,29.373,0.069472,0.958784,0.006592,0.005888,0.04224,0.094688,0.0968,27.9858,0.1128
+725,32.6718,30.6074,28.0132,0.071808,0.913856,0.006208,0.006144,0.028544,0.096384,0.098304,26.6767,0.1152
+726,33.8759,29.5195,29.4335,0.069664,1.07312,0.006144,0.005792,0.028,0.095232,0.097888,27.9447,0.113024
+727,32.9897,30.3125,28.0981,0.069696,0.942112,0.007936,0.005504,0.027488,0.09424,0.097408,26.7389,0.114784
+728,34.397,29.0723,27.9511,0.069504,0.83984,0.007936,0.00432,0.02848,0.094304,0.096352,26.6977,0.11264
+729,34.4155,29.0566,30.1325,0.069696,0.8544,0.007904,0.005504,0.027552,0.110336,0.097888,28.8447,0.114496
+730,32.1184,31.1348,28.001,0.068288,0.847264,0.006752,0.00512,0.027648,0.09584,0.112864,26.7239,0.113312
+731,34.3578,29.1055,28.0713,0.069632,0.87968,0.00704,0.005504,0.02928,0.094528,0.0976,26.7735,0.11456
+732,34.3049,29.1504,29.227,0.069632,0.854016,0.007456,0.004832,0.028064,0.094848,0.09824,27.9552,0.114688
+733,33.0621,30.2461,27.99,0.069632,0.882688,0.007904,0.005504,0.027552,0.095776,0.09776,26.6885,0.114688
+734,34.2888,29.1641,28.1278,0.069312,0.954752,0.006688,0.005312,0.027456,0.095392,0.097152,26.7582,0.1136
+735,33.733,29.6445,29.3955,0.070048,1.02806,0.006336,0.006144,0.028,0.09488,0.096256,27.9532,0.11264
+736,32.7932,30.4941,28.1375,0.069664,0.987104,0.006144,0.005856,0.028096,0.095072,0.097856,26.733,0.114688
+737,34.4642,29.0156,29.2393,0.069632,0.892928,0.007488,0.0048,0.028672,0.096128,0.096384,27.9286,0.114688
+738,32.183,31.0723,29.3528,0.068416,1.03773,0.006752,0.005216,0.027552,0.096224,0.096256,27.9018,0.112864
+739,33.3529,29.9824,28.1827,0.069664,1.0057,0.006368,0.006144,0.028032,0.09488,0.098272,26.7571,0.116544
+740,34.0765,29.3457,28.1403,0.069408,1.00656,0.007552,0.004736,0.028096,0.094784,0.096288,26.7192,0.113632
+741,33.2209,30.1016,29.3296,0.068416,0.946208,0.01744,0.005056,0.028672,0.096288,0.097696,27.9572,0.11264
+742,33.8311,29.5586,27.985,0.069184,0.836032,0.007456,0.004832,0.028672,0.1024,0.1024,26.7203,0.11376
+743,34.2269,29.2168,28.2084,0.070656,1.01888,0.007424,0.004864,0.02864,0.102432,0.097376,26.7621,0.115968
+744,34.072,29.3496,29.2949,0.069056,0.958848,0.006656,0.005376,0.027392,0.096256,0.09744,27.9212,0.112704
+745,32.9007,30.3945,27.9943,0.069152,0.87728,0.007936,0.005536,0.027456,0.095616,0.096896,26.6998,0.114688
+746,33.5474,29.8086,29.2541,0.068064,1.21811,0.00656,0.005344,0.027424,0.096256,0.098016,27.6196,0.114752
+747,32.1547,31.0996,29.5961,0.06864,1.08448,0.007008,0.005536,0.027296,0.106016,0.100064,28.0825,0.11456
+748,32.0722,31.1797,28.1813,0.06864,1.04438,0.006208,0.006048,0.042624,0.096672,0.098368,26.7051,0.113344
+749,33.6068,29.7559,29.4687,0.076864,1.06736,0.006752,0.016096,0.028512,0.095744,0.097216,27.9672,0.112896
+750,32.4791,30.7891,29.3232,0.069632,0.970656,0.014432,0.005344,0.027424,0.096224,0.096288,27.9298,0.11344
+751,32.9451,30.3535,28.1334,0.07568,1.00566,0.00784,0.005472,0.027648,0.096256,0.097408,26.7027,0.11472
+752,33.8333,29.5566,28.2802,0.069664,1.12957,0.00704,0.004224,0.028576,0.095872,0.096608,26.7346,0.114016
+753,33.9253,29.4766,29.3833,0.069664,1.03232,0.006592,0.005952,0.028192,0.095008,0.098176,27.9347,0.11264
+754,32.572,30.7012,28.0817,0.069536,0.982368,0.006912,0.004224,0.028544,0.096256,0.096256,26.6789,0.118688
+755,33.8065,29.5801,28.2338,0.06912,1.06554,0.007776,0.004608,0.028576,0.095936,0.096576,26.751,0.11472
+756,33.1692,30.1484,29.4837,0.082592,1.11002,0.0176,0.004928,0.02816,0.095808,0.097248,27.9347,0.112672
+757,32.4564,30.8105,28.3525,0.069632,0.949856,0.016128,0.004768,0.028672,0.096256,0.098304,26.9637,0.125152
+758,34.2658,29.1836,28.8928,0.069664,0.876512,0.00752,0.004768,0.028256,0.102816,0.098112,27.5908,0.114304
+759,32.8458,30.4453,29.3613,0.069632,0.996544,0.016704,0.004608,0.028672,0.096064,0.09648,27.9401,0.11248
+760,33.1177,30.1953,28.1312,0.068864,0.98816,0.007904,0.004384,0.040544,0.094752,0.099552,26.7127,0.114304
+761,34.0245,29.3906,28.5069,0.069568,0.981888,0.007488,0.004768,0.028672,0.095936,0.096576,27.1093,0.112672
+762,33.2662,30.0605,29.2233,0.067968,0.905248,0.00752,0.004736,0.028192,0.094688,0.098208,27.9039,0.112832
+763,32.8542,30.4375,28.0904,0.069248,0.954752,0.00784,0.005504,0.027616,0.110592,0.098336,26.7038,0.11264
+764,34.2017,29.2383,28.0208,0.069664,0.866048,0.0064,0.005504,0.027296,0.096224,0.096288,26.7387,0.114688
+765,34.2292,29.2148,29.2742,0.06912,0.88128,0.008032,0.005536,0.039712,0.09568,0.0968,27.9646,0.11344
+766,32.4873,30.7812,28.0782,0.068448,0.972352,0.00656,0.005472,0.027296,0.096256,0.096256,26.6929,0.112704
+767,34.4711,29.0098,27.9878,0.067936,0.845824,0.008,0.005504,0.027456,0.096288,0.098176,26.7258,0.112832
+768,34.0335,29.3828,29.2582,0.070016,0.919648,0.007584,0.004704,0.028256,0.094624,0.096448,27.9222,0.114688
+769,32.313,30.9473,29.4046,0.069664,1.01328,0.014816,0.005632,0.041472,0.094208,0.098208,27.955,0.112384
+770,33.0878,30.2227,28.0766,0.068608,0.894976,0.007296,0.00496,0.028096,0.09632,0.104992,26.7584,0.113024
+771,32.8859,30.4082,29.7165,0.071072,1.39075,0.006592,0.005984,0.028192,0.102464,0.096832,27.9015,0.113088
+772,32.1568,31.0977,28.1271,0.069376,0.997856,0.007648,0.00464,0.040608,0.099936,0.097056,26.6955,0.114528
+773,35.7642,27.9609,28.1477,0.069632,1.00355,0.007776,0.005504,0.039744,0.0944,0.103552,26.7109,0.11264
+774,34.5363,28.9551,29.1774,0.069632,0.845824,0.007968,0.00432,0.028672,0.096032,0.09776,27.913,0.114272
+775,33.1929,30.127,28.019,0.06928,0.838336,0.007264,0.005024,0.028544,0.096384,0.098272,26.7629,0.113056
+776,34.0312,29.3848,28.1127,0.06944,1.00576,0.007616,0.004672,0.028032,0.094848,0.098016,26.6898,0.114528
+777,34.5013,28.9844,29.2148,0.069504,0.854144,0.007488,0.0048,0.028608,0.094272,0.103648,27.9397,0.112576
+778,32.5949,30.6797,28.052,0.069888,0.927072,0.007104,0.004128,0.028672,0.09424,0.097984,26.7099,0.113024
+779,34.0516,29.3672,29.2475,0.069632,0.878528,0.006208,0.006144,0.028672,0.095936,0.097824,27.9511,0.113472
+780,33.1392,30.1758,29.1637,0.068352,0.839712,0.00768,0.004576,0.028288,0.09664,0.097664,27.908,0.112768
+781,32.7429,30.541,27.9872,0.069632,0.868352,0.007424,0.004864,0.028672,0.095424,0.097088,26.6998,0.115936
+782,33.811,29.5762,28.1645,0.080096,1.11958,0.017184,0.004128,0.036864,0.096288,0.097568,26.5997,0.113056
+783,34.4758,29.0059,29.2846,0.068384,0.923392,0.0064,0.006144,0.02816,0.094752,0.096256,27.948,0.113088
+784,32.9536,30.3457,28.1579,0.071712,0.96672,0.006144,0.005856,0.028064,0.09616,0.097248,26.7726,0.113376
+785,33.6864,29.6855,28.1353,0.069632,0.995328,0.017792,0.00592,0.033664,0.096224,0.09744,26.7047,0.114528
+786,34.3947,29.0742,29.3232,0.06976,0.983008,0.007456,0.004832,0.028032,0.094848,0.097632,27.9241,0.113504
+787,32.9472,30.3516,27.9701,0.06816,0.882688,0.007584,0.004704,0.02832,0.094592,0.097312,26.6733,0.113472
+788,34.3279,29.1309,29.0857,0.069024,1.12877,0.006432,0.005504,0.027264,0.096288,0.098304,27.5394,0.114688
+789,33.2857,30.043,29.3578,0.069568,0.937888,0.016544,0.005728,0.028224,0.095104,0.097952,27.9881,0.11872
+790,32.599,30.6758,27.9356,0.068608,0.856032,0.007392,0.004896,0.02784,0.09504,0.097792,26.6634,0.114528
+791,33.959,29.4473,28.0093,0.06848,0.91888,0.006784,0.005856,0.028096,0.095072,0.098304,26.6748,0.113024
+792,33.5936,29.7676,29.6018,0.069632,1.16739,0.008032,0.004224,0.04288,0.095808,0.112704,27.9877,0.113376
+793,32.4729,30.7949,28.0782,0.06976,0.981632,0.007744,0.004544,0.028672,0.096256,0.108576,26.6649,0.116096
+794,34.4132,29.0586,28.1088,0.069312,0.975168,0.007808,0.00448,0.043008,0.098112,0.104512,26.6938,0.11264
+795,34.1721,29.2637,29.3146,0.06976,0.97616,0.006848,0.00576,0.028288,0.096288,0.097024,27.9202,0.11424
+796,32.5141,30.7559,29.2776,0.069632,0.982624,0.00656,0.005376,0.027392,0.096256,0.097472,27.8782,0.114112
+797,32.7701,30.5156,28.1047,0.069632,0.98704,0.006336,0.006048,0.028224,0.095808,0.097312,26.7017,0.11264
+798,34.6954,28.8223,29.1581,0.06992,0.862624,0.007296,0.004832,0.028192,0.094848,0.098304,27.8794,0.112672
+799,32.8184,30.4707,27.954,0.06864,0.842944,0.006944,0.005632,0.027136,0.096256,0.097696,26.6942,0.114464
+800,34.448,29.0293,28.0841,0.069632,0.9232,0.006592,0.005408,0.02736,0.09584,0.09872,26.7428,0.114528
+801,34.3256,29.1328,30.2771,0.06896,0.917216,0.00688,0.01456,0.033856,0.09504,0.324928,28.7009,0.114784
+802,31.5446,31.7012,28.1831,0.069664,1.06349,0.006144,0.005856,0.026912,0.096256,0.10448,26.6916,0.118784
+803,34.4526,29.0254,27.9655,0.069408,0.850368,0.0064,0.006144,0.028256,0.096128,0.096832,26.6977,0.11424
+804,34.5946,28.9062,29.2109,0.071968,0.873696,0.006944,0.004096,0.028672,0.095296,0.096992,27.9206,0.11264
+805,33.0216,30.2832,28.0576,0.071584,0.881888,0.00704,0.005504,0.027264,0.096288,0.097536,26.7555,0.115072
+806,34.344,29.1172,27.9918,0.069632,0.864256,0.007552,0.004736,0.028416,0.094464,0.0976,26.7107,0.114432
+807,34.3601,29.1035,29.2886,0.06976,0.919584,0.007232,0.005024,0.028704,0.095424,0.097056,27.9511,0.114688
+808,33.0195,30.2852,28.0356,0.068064,0.906848,0.00656,0.005408,0.02736,0.095328,0.104992,26.7084,0.11264
+809,34.3624,29.1016,28.8481,0.067264,0.863744,0.006976,0.0056,0.028256,0.095168,0.113984,27.5524,0.114688
+810,33.4335,29.9102,29.2578,0.069504,0.866496,0.006144,0.00576,0.028096,0.094816,0.10032,27.9731,0.113536
+811,33.011,30.293,28.0105,0.069184,0.852096,0.006496,0.006048,0.028,0.094976,0.096256,26.7428,0.114688
+812,34.499,28.9863,28.0044,0.069408,0.852192,0.007808,0.00448,0.028672,0.096224,0.09632,26.7346,0.114688
+813,33.968,29.4395,29.2701,0.069632,0.868352,0.006144,0.006144,0.028448,0.095488,0.097248,27.9853,0.113408
+814,32.6781,30.6016,28.0471,0.083552,0.967392,0.006368,0.005504,0.027264,0.096256,0.097856,26.6487,0.114144
+815,34.5037,28.9824,27.9743,0.068224,0.861824,0.006528,0.006016,0.028032,0.094912,0.096288,26.6988,0.113664
+816,34.0743,29.3477,29.2928,0.06928,0.93616,0.017888,0.004864,0.028256,0.094784,0.098112,27.9288,0.114688
+817,33.2403,30.084,28.0836,0.070656,0.971296,0.006624,0.005984,0.028064,0.094976,0.09776,26.6942,0.114048
+818,33.9635,29.4434,28.1901,0.069632,1.00147,0.007712,0.004576,0.04096,0.096256,0.098304,26.7571,0.114112
+819,34.4735,29.0078,29.215,0.069888,0.876544,0.007712,0.004576,0.028672,0.094368,0.09728,27.9233,0.112672
+820,33.011,30.293,28.2915,0.069408,0.853856,0.006944,0.004096,0.028672,0.096128,0.097728,27.02,0.114688
+821,34.0493,29.3691,28.6967,0.06944,1.21043,0.043264,0.006144,0.03072,0.096256,0.458144,26.6687,0.113568
+822,33.7464,29.6328,29.2111,0.069696,0.860576,0.007264,0.004864,0.027968,0.095072,0.098304,27.9347,0.11264
+823,32.9472,30.3516,27.9001,0.069312,0.841408,0.006944,0.005632,0.02832,0.095168,0.102304,26.6377,0.113312
+824,34.2338,29.2109,28.0273,0.070016,0.919136,0.00656,0.005344,0.027424,0.095584,0.098976,26.6895,0.114688
+825,34.374,29.0918,29.1756,0.069632,0.851968,0.007808,0.005536,0.027648,0.101472,0.103296,27.8938,0.114464
+826,33.0856,30.2246,27.9981,0.069472,0.899488,0.008032,0.0056,0.02736,0.095264,0.096672,26.6818,0.114464
+827,34.5176,28.9707,28.0247,0.06928,0.862016,0.007008,0.005504,0.027296,0.095712,0.098016,26.7457,0.114208
+828,34.4526,29.0254,29.1976,0.07376,0.856032,0.00736,0.004896,0.028096,0.096032,0.097088,27.9204,0.113984
+829,32.3334,30.9277,29.475,0.069856,1.10182,0.008,0.005504,0.027456,0.103872,0.096864,27.9482,0.11344
+830,32.8289,30.4609,28.1175,0.068128,1.00746,0.006272,0.005632,0.029216,0.095328,0.0992,26.6936,0.11264
+831,33.5848,29.7754,29.4275,0.069632,1.11411,0.008032,0.016448,0.03008,0.09632,0.096928,27.8815,0.114432
+832,32.7743,30.5117,28.0724,0.069536,0.944256,0.006624,0.005376,0.027392,0.096256,0.097856,26.7105,0.114624
+833,33.7442,29.6348,29.2903,0.068352,0.92688,0.007008,0.005568,0.027328,0.095744,0.096544,27.9492,0.11376
+834,33.5452,29.8105,29.1556,0.069696,0.853152,0.006848,0.004448,0.028608,0.10416,0.096576,27.8794,0.11264
+835,32.7722,30.5137,28.1308,0.069632,1.01539,0.00656,0.005824,0.028096,0.095136,0.097824,26.6979,0.114464
+836,34.1766,29.2598,28.0732,0.069824,0.988608,0.006752,0.005216,0.041312,0.094784,0.097376,26.6536,0.115744
+837,34.2521,29.1953,29.2884,0.069632,0.948256,0.00768,0.004576,0.028672,0.09536,0.097184,27.9224,0.114656
+838,33.1113,30.2012,27.9306,0.069472,0.854176,0.007776,0.004512,0.028448,0.094432,0.098304,26.6588,0.114688
+839,34.5363,28.9551,28.0033,0.068608,0.915072,0.006528,0.005984,0.028,0.09504,0.097504,26.6719,0.114688
+840,33.3008,30.0293,29.23,0.076704,0.933088,0.006944,0.004096,0.028672,0.09424,0.108512,27.8651,0.11264
+841,30.8806,32.3828,31.4902,0.069824,3.12502,0.016224,0.00592,0.0272,0.096288,0.097344,27.9393,0.113088
+842,33.0088,30.2949,28.0082,0.06784,0.907072,0.007712,0.004576,0.028192,0.094496,0.10592,26.6796,0.112736
+843,32.8184,30.4707,29.4418,0.069632,1.14461,0.006368,0.006144,0.028256,0.094656,0.098304,27.8794,0.114464
+844,33.3181,30.0137,28.1319,0.069632,1.04714,0.006432,0.005664,0.027104,0.095552,0.09696,26.6691,0.1144
+845,34.9488,28.6133,29.2784,0.069248,0.966688,0.006656,0.00592,0.028064,0.09504,0.096256,27.8979,0.11264
+846,32.4359,30.8301,29.2842,0.068256,0.980896,0.01632,0.005344,0.027488,0.096256,0.098304,27.8774,0.11392
+847,33.0259,30.2793,28.1139,0.068608,0.9728,0.006144,0.006144,0.039936,0.095232,0.11168,26.6987,0.114688
+848,34.5502,28.9434,27.9205,0.068896,0.865088,0.007168,0.004928,0.02816,0.094912,0.096256,26.6404,0.11472
+849,34.0335,29.3828,29.3033,0.06816,0.966496,0.006272,0.00608,0.027968,0.103168,0.11264,27.8997,0.112832
+850,33.1049,30.207,27.9774,0.069632,0.918816,0.00688,0.004256,0.028512,0.095392,0.09712,26.6404,0.116384
+851,34.6602,28.8516,27.9688,0.06928,0.864768,0.007456,0.004832,0.028608,0.108608,0.097664,26.6733,0.114272
+852,34.3901,29.0781,29.2331,0.069664,0.88368,0.00704,0.004224,0.028544,0.095552,0.097088,27.9327,0.114656
+853,33.1284,30.1855,27.994,0.067968,0.888832,0.007712,0.004576,0.028672,0.095616,0.119392,26.6684,0.112896
+854,34.5946,28.9062,28.752,0.0688,0.850912,0.007616,0.004672,0.02848,0.09568,0.097024,27.4842,0.114656
+855,33.4816,29.8672,29.2905,0.069632,0.93792,0.006208,0.006144,0.028192,0.09472,0.09936,27.9336,0.114688
+856,31.9043,31.3438,28.1124,0.074048,0.988288,0.0144,0.004896,0.028096,0.094272,0.096768,26.6977,0.11392
+857,34.0177,29.3965,28.259,0.068416,1.12435,0.007968,0.005504,0.037536,0.096224,0.101856,26.7037,0.113504
+858,33.8423,29.5488,29.2188,0.069664,0.925344,0.006464,0.005472,0.036896,0.094848,0.100352,27.8667,0.11312
+859,34.0561,29.3633,28.0172,0.068128,0.90112,0.007968,0.005504,0.027488,0.096256,0.098304,26.6989,0.113472
+860,34.2406,29.2051,28.091,0.068224,0.964,0.006496,0.00432,0.029824,0.095104,0.110592,26.6994,0.112992
+861,34.1038,29.3223,29.2552,0.069056,0.917824,0.006784,0.005792,0.028192,0.10304,0.10016,27.9085,0.115904
+862,32.8732,30.4199,28.0591,0.0696,0.97488,0.007232,0.004832,0.028096,0.095008,0.097504,26.6678,0.114112
+863,34.4688,29.0117,28.043,0.069216,0.868768,0.006336,0.006144,0.028672,0.104448,0.098304,26.7469,0.114272
+864,34.0879,29.3359,29.3357,0.06928,1.06934,0.006304,0.005568,0.029248,0.09424,0.098112,27.8509,0.11264
+865,32.9557,30.3438,28.1006,0.069632,0.954368,0.0072,0.005088,0.042016,0.095232,0.098272,26.7141,0.114688
+866,34.0879,29.3359,29.278,0.069664,0.925696,0.007168,0.004928,0.028064,0.094976,0.098336,27.9347,0.114432
+867,32.9409,30.3574,29.2475,0.069632,0.869632,0.006912,0.005664,0.027136,0.095552,0.096928,27.9634,0.11264
+868,32.9854,30.3164,28.0003,0.069664,0.902752,0.006528,0.014336,0.030752,0.09552,0.09696,26.6687,0.11504
+869,33.7508,29.6289,29.3041,0.069408,0.992672,0.006976,0.005632,0.037056,0.09616,0.097696,27.8845,0.113952
+870,33.1864,30.1328,29.2012,0.06976,0.877184,0.007488,0.0048,0.028512,0.094368,0.097856,27.9085,0.112672
+871,33.1306,30.1836,28.0204,0.069088,0.88352,0.007264,0.005024,0.028416,0.096288,0.097568,26.7171,0.116128
+872,34.029,29.3867,28.0863,0.069152,0.946656,0.007232,0.004896,0.027968,0.095072,0.0976,26.7243,0.11344
+873,34.1652,29.2695,29.2083,0.069632,0.863936,0.006464,0.006048,0.02784,0.095168,0.098272,27.9265,0.114368
+874,33.1263,30.1875,27.9388,0.069664,0.855776,0.006432,0.00544,0.027328,0.094208,0.10448,26.6629,0.11264
+875,34.2796,29.1719,28.1473,0.071584,0.988928,0.006944,0.0056,0.02832,0.095104,0.097664,26.7385,0.114656
+876,34.4387,29.0371,29.1246,0.069536,0.858496,0.006592,0.004096,0.028672,0.095776,0.096736,27.8508,0.11392
+877,32.9324,30.3652,28.0211,0.068992,0.924608,0.006176,0.014336,0.032288,0.094688,0.097952,26.6674,0.114688
+878,33.7219,29.6543,29.0487,0.069344,1.1424,0.006816,0.004192,0.032416,0.101952,0.09856,27.4782,0.114848
+879,33.2424,30.082,29.2531,0.069504,0.940608,0.006144,0.006144,0.028256,0.094656,0.098112,27.896,0.113696
+880,33.0046,30.2988,28.0166,0.069632,0.918752,0.006944,0.004096,0.028672,0.096096,0.096416,26.6813,0.114688
+881,33.1735,30.1445,29.1983,0.069632,0.93184,0.007648,0.00464,0.028672,0.094368,0.098144,27.8505,0.112928
+882,33.8244,29.5645,29.2239,0.069632,0.96256,0.007488,0.0048,0.028448,0.094464,0.098272,27.8446,0.113664
+883,32.3437,30.918,28.1907,0.06944,1.12864,0.006144,0.006144,0.028544,0.10048,0.096256,26.6404,0.114688
+884,34.8703,28.6777,27.976,0.069408,0.906784,0.007168,0.004096,0.028672,0.09584,0.09664,26.6544,0.11296
+885,34.1698,29.2656,29.3511,0.068992,0.967328,0.007488,0.004768,0.028672,0.096256,0.098336,27.9634,0.115936
+886,32.8437,30.4473,28.051,0.069152,0.991712,0.007584,0.004704,0.028224,0.094656,0.097696,26.643,0.11424
+887,34.3601,29.1035,27.9595,0.069792,0.892128,0.006944,0.0056,0.027232,0.096192,0.097632,26.6492,0.114688
+888,34.2498,29.1973,29.2659,0.069664,0.987104,0.006144,0.005824,0.027072,0.09408,0.103776,27.8596,0.11264
+889,32.7219,30.5605,28.471,0.070016,0.978688,0.006496,0.006048,0.027872,0.095264,0.098112,27.0746,0.113888
+890,33.6798,29.6914,28.4415,0.068512,1.35571,0.006208,0.005696,0.030944,0.09456,0.098176,26.6681,0.1136
+891,34.3371,29.123,29.2757,0.069216,0.898752,0.007072,0.005504,0.027296,0.095776,0.096704,27.9613,0.11408
+892,32.8774,30.416,28.0765,0.068064,0.882016,0.006816,0.004128,0.02864,0.096256,0.098272,26.7608,0.13152
+893,33.9906,29.4199,29.1795,0.06976,0.872448,0.007296,0.004992,0.029952,0.095008,0.09808,27.8878,0.114176
+894,32.9133,30.3828,29.3455,0.069664,0.996576,0.006912,0.004224,0.030272,0.094528,0.097408,27.9332,0.112736
+895,32.1325,31.1211,28.3368,0.068352,1.23686,0.014464,0.006016,0.028064,0.094944,0.106496,26.667,0.114624
+896,34.0811,29.3418,28.2808,0.069504,1.19686,0.008064,0.004256,0.02864,0.095616,0.096896,26.6665,0.114464
+897,34.5479,28.9453,29.3192,0.06928,0.9928,0.006976,0.005568,0.038624,0.095072,0.098272,27.8993,0.113344
+898,32.8838,30.4102,28.1074,0.068192,0.96768,0.007136,0.004128,0.028672,0.09424,0.114176,26.7101,0.113088
+899,33.9838,29.4258,28.0437,0.069856,0.9032,0.006176,0.006144,0.042176,0.102624,0.107104,26.691,0.11536
+900,34.1174,29.3105,29.2618,0.069376,0.940192,0.006368,0.005632,0.0272,0.095168,0.096992,27.9074,0.11344
+901,32.724,30.5586,28.0625,0.069984,0.938432,0.007936,0.005504,0.02752,0.095872,0.110944,26.6933,0.113024
+902,33.713,29.6621,29.2023,0.06832,1.23021,0.01696,0.004128,0.038912,0.095392,0.09712,27.5373,0.113984
+903,32.943,30.3555,29.2896,0.068608,0.94416,0.007232,0.005056,0.028512,0.094368,0.098272,27.9304,0.112992
+904,32.9918,30.3105,28.0113,0.0696,0.872832,0.006624,0.005568,0.027328,0.096128,0.096256,26.7182,0.118784
+905,34.1789,29.2578,29.1904,0.068384,0.878464,0.007488,0.0048,0.028672,0.096256,0.098336,27.893,0.115008
+906,33.0003,30.3027,29.1901,0.069664,0.878272,0.006432,0.005568,0.0272,0.095296,0.097088,27.898,0.11264
+907,33.1006,30.2109,27.9736,0.069632,0.83968,0.006144,0.006144,0.028192,0.094688,0.097472,26.717,0.114688
+908,31.9321,31.3164,29.4216,0.068864,2.31277,0.006336,0.0056,0.027168,0.095744,0.09792,26.6924,0.114784
+909,33.9635,29.4434,29.3376,0.06928,1.0223,0.007904,0.013952,0.041632,0.096096,0.097536,27.8763,0.112672
+910,31.5038,31.7422,28.2473,0.069568,1.1439,0.00704,0.0056,0.027264,0.096256,0.102208,26.6815,0.113888
+911,36.1429,27.668,27.9613,0.068992,0.858752,0.007264,0.01936,0.028672,0.096288,0.098272,26.671,0.112704
+912,34.0584,29.3613,29.2435,0.070688,0.936096,0.006976,0.00416,0.030368,0.094496,0.096384,27.8915,0.1128
+913,33.0985,30.2129,29.2114,0.06848,0.889888,0.006976,0.005696,0.02816,0.095168,0.097664,27.9067,0.11264
+914,33.0878,30.2227,27.922,0.069632,0.83968,0.006144,0.005888,0.02816,0.10464,0.098848,26.6548,0.11424
+915,34.3256,29.1328,29.329,0.069632,0.935712,0.01456,0.006016,0.028064,0.096384,0.096864,27.9686,0.113152
+916,32.9091,30.3867,27.9835,0.069632,0.867328,0.007072,0.004192,0.028704,0.09808,0.097856,26.6892,0.121408
+917,34.1675,29.2676,29.2499,0.069824,0.888832,0.007296,0.015232,0.028032,0.094848,0.107744,27.9266,0.111488
+918,32.9303,30.3672,29.143,0.069664,0.853984,0.007488,0.0048,0.028128,0.094752,0.098208,27.8725,0.113504
+919,32.8121,30.4766,28.0577,0.069376,0.93008,0.007296,0.004992,0.028576,0.09568,0.096896,26.7114,0.113408
+920,34.1038,29.3223,28.116,0.068608,1.00355,0.00752,0.004768,0.028064,0.094816,0.096224,26.6977,0.11472
+921,34.397,29.0723,29.1826,0.068192,0.866304,0.007616,0.004672,0.028672,0.096096,0.099648,27.8984,0.11296
+922,33.0131,30.291,27.9612,0.069632,0.87968,0.007104,0.004096,0.028672,0.094208,0.098208,26.6651,0.114496
+923,34.4874,28.9961,28.0388,0.069632,0.888832,0.00752,0.004768,0.028672,0.096256,0.098048,26.7305,0.114624
+924,34.4179,29.0547,29.1825,0.068224,0.87648,0.007712,0.004544,0.028352,0.09568,0.097184,27.8917,0.11264
+925,33.1757,30.1426,29.0833,0.069056,0.854688,0.007392,0.004896,0.028672,0.095808,0.09792,27.8105,0.1144
+926,33.0942,30.2168,27.9699,0.069312,0.907424,0.006912,0.004224,0.028544,0.095968,0.096544,26.6465,0.114432
+927,34.1698,29.2656,29.1851,0.070944,0.884896,0.00672,0.005856,0.028,0.095168,0.097984,27.8813,0.114176
+928,32.9239,30.373,28.0821,0.073152,0.952704,0.006336,0.0056,0.029216,0.095328,0.096768,26.7084,0.114592
+929,34.6391,28.8691,29.2068,0.075872,0.851616,0.006624,0.005952,0.028064,0.096192,0.097152,27.9306,0.114688
+930,33.1284,30.1855,29.1553,0.069664,0.866272,0.007808,0.00448,0.028512,0.094368,0.09808,27.8729,0.113248
+931,33.1456,30.1699,27.9247,0.069952,0.866176,0.006272,0.006144,0.028032,0.094848,0.096256,26.6424,0.114592
+932,34.5153,28.9727,27.9122,0.069504,0.865696,0.00688,0.005184,0.027584,0.100352,0.097952,26.626,0.113088
+933,33.6909,29.6816,29.202,0.071072,0.851808,0.006912,0.0056,0.041504,0.096224,0.096288,27.9183,0.114304
+934,32.9876,30.3145,28.0125,0.069664,0.855552,0.006624,0.005728,0.02704,0.096,0.097824,26.7394,0.114656
+935,34.5409,28.9512,27.959,0.070016,0.847552,0.006592,0.005664,0.027104,0.106048,0.098368,26.6817,0.115936
+936,34.344,29.1172,29.2542,0.068128,0.87856,0.007808,0.00448,0.028672,0.098304,0.096256,27.9573,0.114688
+937,32.2195,31.0371,29.2225,0.069376,0.953984,0.007008,0.005504,0.03104,0.094592,0.106144,27.8405,0.114368
+938,32.5617,30.7109,28.1508,0.076768,1.03379,0.006592,0.005312,0.027456,0.094208,0.096256,26.6969,0.113504
+939,33.0749,30.2344,29.4236,0.069632,1.09507,0.006752,0.005792,0.031104,0.096256,0.104384,27.8999,0.114688
+940,33.9253,29.4766,28.0219,0.069408,1.00115,0.006752,0.005152,0.027616,0.095456,0.101152,26.6012,0.113984
+941,33.9208,29.4805,29.4259,0.068672,1.01568,0.00624,0.006048,0.028512,0.09568,0.097024,27.9957,0.112352
+942,33.5188,29.834,29.1716,0.069344,0.865824,0.006912,0.004096,0.028672,0.095936,0.096576,27.889,0.115264
+943,33.0088,30.2949,28.0048,0.069536,0.885312,0.007296,0.004992,0.028576,0.094304,0.09808,26.7037,0.112992
+944,34.5153,28.9727,27.9388,0.069632,0.882688,0.007648,0.00464,0.02848,0.094432,0.098272,26.6383,0.114688
+945,34.5246,28.9648,29.2353,0.069664,0.884512,0.006336,0.006144,0.028096,0.094784,0.096256,27.9368,0.112736
+946,32.6343,30.6426,28.2577,0.069472,1.15914,0.006336,0.005504,0.028288,0.096512,0.097024,26.681,0.114368
+947,34.4967,28.9883,27.9622,0.068448,0.874208,0.006432,0.00608,0.028192,0.094784,0.098272,26.6711,0.114688
+948,34.1584,29.2754,29.234,0.068352,0.938016,0.007712,0.004544,0.028192,0.094688,0.097312,27.8825,0.112672
+949,33.0387,30.2676,29.3014,0.068192,0.966656,0.00784,0.005504,0.027616,0.094208,0.09792,27.9207,0.112768
+950,32.8352,30.4551,27.998,0.070816,0.893792,0.00768,0.004608,0.028288,0.094592,0.097984,26.6855,0.114784
+951,33.6179,29.7461,29.4569,0.069184,1.1663,0.007808,0.005504,0.027648,0.096256,0.097696,27.8734,0.11312
+952,33.06,30.248,28.0555,0.06832,0.966624,0.006176,0.005824,0.028096,0.105184,0.096416,26.665,0.113856
+953,34.7095,28.8105,29.2352,0.069664,0.90112,0.007776,0.005504,0.027648,0.096256,0.098304,27.9142,0.114688
+954,32.768,30.5176,29.1455,0.069088,0.889792,0.008,0.004288,0.029696,0.095232,0.097984,27.838,0.113376
+955,33.0835,30.2266,27.9777,0.069664,0.862176,0.007904,0.005504,0.027552,0.095936,0.096576,26.6988,0.113568
+956,34.4665,29.0137,27.9716,0.069184,0.870848,0.006144,0.005728,0.028672,0.09872,0.097472,26.6822,0.11264
+957,34.3924,29.0762,29.2296,0.068064,0.88064,0.007488,0.0048,0.034368,0.094688,0.112256,27.9142,0.113024
+958,32.8964,30.3984,27.9302,0.069632,0.876064,0.006624,0.00544,0.027328,0.096064,0.097856,26.6369,0.11424
+959,34.5642,28.9316,27.9463,0.069664,0.843264,0.006624,0.005984,0.028,0.09504,0.101408,26.6816,0.114688
+960,33.9613,29.4453,29.3374,0.069632,1.0359,0.006528,0.005184,0.027584,0.108544,0.098304,27.869,0.116736
+961,32.7722,30.5137,29.2024,0.069504,0.897152,0.007744,0.004544,0.028672,0.095456,0.098272,27.8864,0.114688
+962,32.9282,30.3691,28.0767,0.080576,0.98304,0.007584,0.004704,0.028096,0.094784,0.096256,26.6688,0.112928
+963,34.0312,29.3848,29.26,0.067968,0.927008,0.016224,0.005888,0.030752,0.094912,0.097728,27.8966,0.12288
+964,33.1349,30.1797,28.0169,0.069696,0.888576,0.006752,0.005152,0.027616,0.096256,0.098304,26.71,0.114528
+965,34.0675,29.3535,28.0321,0.069632,0.940032,0.007392,0.004896,0.038912,0.095936,0.106848,26.6545,0.113984
+966,34.4341,29.041,29.1865,0.069408,0.883424,0.007552,0.004768,0.02816,0.094656,0.096288,27.8896,0.112704
+967,32.9112,30.3848,27.9364,0.069408,0.888896,0.006304,0.006144,0.028192,0.09648,0.097632,26.6302,0.113184
+968,34.5993,28.9023,27.9206,0.069856,0.851968,0.007328,0.004864,0.028096,0.09424,0.096928,26.6524,0.114912
+969,34.22,29.2227,29.2579,0.068256,0.88064,0.008064,0.005504,0.027392,0.095968,0.09664,27.9608,0.114592
+970,32.3212,30.9395,29.3861,0.069504,1.02208,0.007584,0.004704,0.045056,0.105952,0.111008,27.9062,0.114016
+971,32.8205,30.4688,28.0166,0.069632,0.96256,0.006144,0.006144,0.034816,0.096256,0.097824,26.6299,0.113408
+972,33.9433,29.4609,29.4989,0.069632,1.136,0.018976,0.005312,0.038912,0.095136,0.106144,27.9146,0.11424
+973,32.7198,30.5625,28.0153,0.06832,0.974848,0.007712,0.004576,0.028672,0.094208,0.097376,26.6267,0.11296
+974,34.0358,29.3809,28.3873,0.069632,0.980992,0.006144,0.005856,0.028064,0.095104,0.097664,26.9892,0.11472
+975,33.7954,29.5898,30.1242,0.069824,1.00966,0.008,0.005504,0.027456,0.09552,0.096768,28.6986,0.112864
+976,32.3907,30.873,27.9808,0.068576,0.874432,0.006336,0.005664,0.028128,0.095104,0.096224,26.6932,0.113152
+977,34.4781,29.0039,27.9487,0.069568,0.870464,0.007456,0.004832,0.028672,0.095744,0.098016,26.6609,0.113056
+978,34.5712,28.9258,29.1448,0.069792,0.856032,0.007328,0.004896,0.028032,0.096032,0.096704,27.8717,0.114304
+979,33.0878,30.2227,27.9567,0.068992,0.885376,0.007424,0.004864,0.028704,0.095808,0.096672,26.6544,0.114464
+980,34.5502,28.9434,28.0105,0.06912,0.868608,0.0064,0.005504,0.027264,0.094208,0.097504,26.7272,0.114688
+981,34.4433,29.0332,29.2127,0.069504,0.851616,0.006624,0.005984,0.028,0.09488,0.096416,27.936,0.12368
+982,32.8331,30.457,28.0248,0.069216,0.95888,0.007872,0.004416,0.028672,0.095584,0.096928,26.6496,0.113632
+983,33.4051,29.9355,29.2697,0.069632,0.962432,0.006336,0.00608,0.02816,0.09472,0.098176,27.8898,0.1144
+984,33.6289,29.7363,29.211,0.067936,0.889952,0.007072,0.004096,0.028672,0.094208,0.096256,27.9101,0.11264
+985,31.3226,31.9258,28.0576,0.069632,0.968192,0.006656,0.015808,0.031296,0.095456,0.097056,26.6601,0.113376
+986,36.069,27.7246,27.9733,0.069056,0.901696,0.008192,0.00528,0.027488,0.096256,0.096256,26.6547,0.1144
+987,34.3532,29.1094,29.2468,0.069344,0.9136,0.00624,0.006144,0.028256,0.094656,0.098272,27.9163,0.113952
+988,33.1972,30.123,27.901,0.069568,0.864288,0.006176,0.005792,0.028,0.096352,0.097184,26.6199,0.113728
+989,34.5223,28.9668,28.0004,0.069632,0.878176,0.00672,0.005824,0.026944,0.096064,0.096448,26.7059,0.114688
+990,34.3994,29.0703,29.1899,0.069376,0.882464,0.006624,0.005344,0.027424,0.096096,0.097856,27.8915,0.113216
+991,32.3151,30.9453,29.2741,0.069536,1.01325,0.006752,0.013632,0.029376,0.096256,0.102112,27.8306,0.112672
+992,33.0365,30.2695,27.9142,0.069632,0.897024,0.00768,0.004608,0.028512,0.095776,0.096928,26.5994,0.114688
+993,33.3225,30.0098,29.2882,0.069632,0.96848,0.006368,0.006144,0.027904,0.095008,0.102368,27.899,0.113216
+994,34.1995,29.2402,28.0253,0.069248,1.01264,0.008064,0.004192,0.028704,0.103552,0.09712,26.5871,0.114688
+995,33.0493,30.2578,29.3278,0.068224,1.04566,0.007008,0.005632,0.037152,0.094432,0.100352,27.8548,0.114464
+996,34.3693,29.0957,29.0771,0.069056,0.846624,0.006336,0.005696,0.026912,0.096256,0.096288,27.8159,0.114016
+997,32.789,30.498,28.0896,0.069536,0.9584,0.006304,0.006144,0.028256,0.094624,0.096256,26.7162,0.113888
+998,34.2109,29.2305,27.9331,0.068256,0.958464,0.00752,0.004768,0.028,0.094368,0.096768,26.5605,0.1144
+999,34.2292,29.2148,29.2251,0.079616,0.975104,0.00784,0.005504,0.027616,0.096256,0.098304,27.82,0.114784
+1000,33.011,30.293,28.0207,0.069632,0.937984,0.008032,0.004256,0.028576,0.094336,0.098272,26.6668,0.112832
+1001,34.3832,29.084,28.0064,0.069664,0.8888,0.007968,0.005504,0.027488,0.096256,0.098304,26.6977,0.114688
+1002,34.5526,28.9414,29.0632,0.069664,0.862176,0.007776,0.004512,0.028672,0.09552,0.096992,27.7852,0.11264
+1003,32.9494,30.3496,29.2664,0.068704,1.03005,0.007776,0.004512,0.030304,0.094656,0.09776,27.8198,0.112832
+1004,33.0749,30.2344,28.0556,0.069632,0.96848,0.007808,0.004704,0.028224,0.094688,0.097952,26.6705,0.1136
+1005,34.1698,29.2656,29.313,0.069632,1.01376,0.016384,0.006144,0.02832,0.094592,0.11056,27.861,0.11264
+1006,32.7554,30.5293,28.1007,0.075904,0.99648,0.00704,0.004096,0.028672,0.096256,0.096256,26.6815,0.11456
+1007,34.2063,29.2344,28.0146,0.069664,0.927616,0.00624,0.006144,0.028256,0.094624,0.098304,26.6704,0.113344
+1008,34.4086,29.0625,29.1676,0.069664,0.894944,0.00752,0.004768,0.028064,0.094816,0.09776,27.8566,0.11344
+1009,33.1821,30.1367,27.9678,0.06912,0.867072,0.00752,0.004768,0.028672,0.09536,0.096736,26.6857,0.1128
+1010,34.4595,29.0195,28.0105,0.069376,0.884,0.007072,0.004192,0.02864,0.095648,0.098112,26.7108,0.112672
+1011,34.448,29.0293,29.123,0.069856,0.880864,0.00736,0.004928,0.028672,0.095744,0.096768,27.8256,0.113248
+1012,33.0173,30.2871,27.9806,0.068512,0.90512,0.007264,0.004928,0.02672,0.095456,0.0968,26.6622,0.113568
+1013,34.6766,28.8379,29.1269,0.069696,0.857696,0.00672,0.006144,0.028224,0.094656,0.097504,27.8536,0.11264
+1014,33.1692,30.1484,29.1511,0.069664,0.856032,0.007328,0.00496,0.028096,0.096096,0.097024,27.8773,0.114528
+1015,32.0681,31.1836,27.9789,0.069632,0.878592,0.007648,0.00464,0.028672,0.095424,0.097088,26.6834,0.113824
+1016,31.2595,31.9902,28.3936,0.069664,0.926944,0.006912,0.004256,0.028512,0.096,0.096512,27.0515,0.11328
+1017,33.9635,29.4434,30.238,0.069344,1.03158,0.007136,0.005504,0.027296,0.110592,0.096256,28.7761,0.114144
+1018,31.1625,32.0898,28.1711,0.06864,1.12227,0.014336,0.005312,0.027456,0.09776,0.098624,26.6222,0.114528
+1019,34.618,28.8867,27.9462,0.069632,0.882272,0.00656,0.00608,0.028192,0.094752,0.097472,26.6453,0.115904
+1020,33.8893,29.5078,29.3907,0.069152,1.04291,0.006144,0.005792,0.038816,0.094592,0.097728,27.9221,0.11344
+1021,32.8374,30.4531,28.1396,0.069408,1.04483,0.007872,0.014656,0.03072,0.096256,0.104448,26.6579,0.113472
+1022,34.3233,29.1348,27.9496,0.068128,0.884512,0.0064,0.005664,0.027072,0.096256,0.098304,26.6498,0.113504
+1023,34.5526,28.9414,29.1581,0.070016,0.876768,0.006496,0.006016,0.028064,0.10112,0.096288,27.8599,0.113376
+1024,32.789,30.498,29.3794,0.068448,1.0711,0.01792,0.004608,0.02816,0.094816,0.098208,27.8825,0.113664
+1025,33.1649,30.1523,28.0685,0.068288,0.905216,0.007392,0.004896,0.028512,0.095648,0.099072,26.7466,0.112928
+1026,34.3786,29.0879,29.2188,0.069632,0.864256,0.00752,0.004768,0.02816,0.094912,0.098144,27.9384,0.112992
+1027,33.107,30.2051,27.9468,0.069216,0.869824,0.007104,0.005504,0.027296,0.096288,0.098208,26.6589,0.114528
+1028,34.4503,29.0273,27.9403,0.069632,0.888832,0.007552,0.004736,0.028288,0.09456,0.096288,26.6357,0.114688
+1029,34.3555,29.1074,30.4419,0.069184,0.909696,0.006656,0.005536,0.027232,0.096096,0.096416,29.1158,0.115328
+1030,31.6792,31.5664,27.9143,0.069312,0.897856,0.007392,0.004896,0.028384,0.094304,0.096448,26.6015,0.114272
+1031,34.4572,29.0215,28.0301,0.069216,0.948096,0.00672,0.00592,0.02816,0.094944,0.096352,26.6668,0.113824
+1032,34.3118,29.1445,29.1854,0.069632,0.907264,0.007488,0.0048,0.028256,0.095776,0.097152,27.8626,0.112448
+1033,33.1156,30.1973,27.9626,0.07168,0.890048,0.006976,0.0056,0.028256,0.095168,0.097632,26.653,0.114304
+1034,33.7397,29.6387,28.0843,0.069024,1.0079,0.006496,0.013504,0.031136,0.09584,0.097056,26.6497,0.1136
+1035,34.7944,28.7402,29.2842,0.069632,0.947936,0.006432,0.006112,0.02816,0.094784,0.09792,27.9187,0.114496
+1036,32.7974,30.4902,29.1492,0.0696,0.896096,0.007104,0.004096,0.028672,0.094208,0.096256,27.8405,0.112672
+1037,32.7638,30.5215,28.0255,0.06944,0.983584,0.006496,0.006048,0.028288,0.094688,0.097888,26.6244,0.114688
+1038,34.6813,28.834,29.1136,0.069536,0.872544,0.00736,0.004896,0.028064,0.096096,0.097056,27.8241,0.113888
+1039,32.8605,30.4316,27.8835,0.068928,0.866656,0.006496,0.006112,0.028032,0.09472,0.096096,26.6037,0.1128
+1040,34.1743,29.2617,28.1159,0.068576,1.01933,0.00672,0.014336,0.03184,0.096576,0.09856,26.6565,0.123488
+1041,34.0154,29.3984,29.1737,0.069664,0.884704,0.007584,0.004704,0.028672,0.096256,0.097376,27.8701,0.114592
+1042,33.0493,30.2578,27.9143,0.0696,0.876032,0.006752,0.005152,0.027616,0.095872,0.09664,26.622,0.114688
+1043,34.4456,29.0312,27.951,0.069664,0.884704,0.007968,0.005536,0.027456,0.095872,0.096384,26.6499,0.113536
+1044,34.6531,28.8574,29.1329,0.068416,0.8784,0.006304,0.0056,0.028416,0.095008,0.098176,27.8382,0.114432
+1045,33.1735,30.1445,27.9066,0.06976,0.867072,0.0072,0.005088,0.028672,0.094208,0.097504,26.6221,0.114976
+1046,34.5782,28.9199,27.9273,0.069728,0.866176,0.006976,0.004128,0.02864,0.095744,0.096768,26.6445,0.114656
+1047,34.3601,29.1035,29.1579,0.069824,0.882752,0.0064,0.006144,0.02816,0.09472,0.096256,27.861,0.11264
+1048,32.9176,30.3789,28.2355,0.069632,0.922912,0.00688,0.004096,0.028672,0.096128,0.097632,26.657,0.352576
+1049,33.9298,29.4727,28.8032,0.068192,0.861248,0.007104,0.005504,0.02736,0.09616,0.097952,27.5255,0.11424
+1050,33.1757,30.1426,29.1965,0.06944,0.862592,0.007264,0.00496,0.028224,0.09472,0.0976,27.919,0.11264
+1051,32.9748,30.3262,27.9255,0.068544,0.884224,0.006656,0.005888,0.028096,0.095104,0.09824,26.6257,0.113024
+1052,34.3855,29.082,29.202,0.07072,0.91232,0.007552,0.004736,0.028224,0.094656,0.096256,27.8733,0.114208
+1053,33.1606,30.1562,29.164,0.06928,0.885632,0.007296,0.00496,0.028672,0.095424,0.097056,27.8631,0.11264
+1054,32.2927,30.9668,28.0187,0.0696,0.931872,0.007392,0.004864,0.028192,0.094368,0.096608,26.6729,0.112864
+1055,34.7755,28.7559,28.0291,0.069216,0.983616,0.00784,0.005504,0.027616,0.09616,0.0976,26.6261,0.115456
+1056,34.2429,29.2031,29.2957,0.069184,0.995616,0.0064,0.005536,0.027232,0.095488,0.096672,27.8859,0.113664
+1057,32.9621,30.3379,28.0408,0.069664,0.961504,0.00704,0.005504,0.027392,0.095296,0.09664,26.6632,0.11456
+1058,34.3647,29.0996,28.0381,0.068544,0.938016,0.007648,0.00464,0.028192,0.094432,0.096512,26.6873,0.1128
+1059,34.0267,29.3887,29.2391,0.069632,0.944128,0.007552,0.004768,0.02864,0.095968,0.096544,27.8774,0.114528
+1060,32.7031,30.5781,28.029,0.069568,0.931936,0.007584,0.004672,0.028576,0.094336,0.098048,26.6811,0.113152
+1061,34.0019,29.4102,29.2403,0.06976,0.989056,0.007904,0.005504,0.028608,0.095232,0.096224,27.8344,0.113664
+1062,33.1434,30.1719,29.1978,0.069664,0.902848,0.006432,0.005472,0.027296,0.09616,0.096384,27.8794,0.114112
+1063,33.0536,30.2539,28.0212,0.069216,0.906176,0.007168,0.005088,0.028704,0.095968,0.097856,26.6976,0.113504
+1064,34.4897,28.9941,28.9801,0.06848,0.858048,0.006176,0.005728,0.028096,0.095232,0.097408,27.7062,0.114688
+1065,33.0856,30.2246,29.1874,0.06912,0.872288,0.007072,0.005504,0.027296,0.095936,0.096576,27.8979,0.115776
+1066,32.5121,30.7578,27.9285,0.06944,0.850752,0.007488,0.0048,0.028064,0.094944,0.098176,26.6606,0.114272
+1067,34.8798,28.6699,28.031,0.069632,0.888064,0.006912,0.0056,0.027168,0.096256,0.097696,26.7261,0.113536
+1068,34.5993,28.9023,29.148,0.068448,0.886784,0.007552,0.004736,0.028288,0.094464,0.096384,27.8487,0.112608
+1069,32.6614,30.6172,27.9719,0.073504,0.94816,0.006784,0.00576,0.02816,0.103328,0.097792,26.5876,0.120832
+1070,34.8513,28.6934,27.9449,0.069632,0.864288,0.007392,0.004864,0.028,0.09488,0.098208,26.663,0.114592
+1071,34.4804,29.002,29.1797,0.069152,0.875392,0.007776,0.004608,0.028576,0.096256,0.097568,27.8863,0.114112
+1072,33.0621,30.2461,29.2004,0.069632,0.88816,0.006816,0.00416,0.028512,0.094304,0.097952,27.8982,0.112672
+1073,32.7157,30.5664,28.188,0.069632,1.10182,0.008,0.005504,0.027456,0.095872,0.096608,26.667,0.116096
+1074,34.1652,29.2695,29.2321,0.068608,0.984864,0.006304,0.005664,0.027104,0.095648,0.096864,27.8339,0.113152
+1075,33.0003,30.3027,27.9696,0.0696,0.882528,0.006816,0.005728,0.028192,0.095104,0.096288,26.671,0.114304
+1076,34.2109,29.2305,29.2277,0.068256,0.921632,0.007712,0.004544,0.029888,0.09504,0.097952,27.8895,0.113216
+1077,33.0323,30.2734,29.2,0.0696,0.880672,0.007264,0.005024,0.028288,0.095776,0.097152,27.9019,0.114304
+1078,33.0451,30.2617,27.9702,0.070304,0.876544,0.00736,0.004864,0.028032,0.094912,0.097824,26.6777,0.112672
+1079,34.5759,28.9219,27.9148,0.068128,0.854016,0.00768,0.004608,0.028672,0.094208,0.096256,26.6483,0.11296
+1080,34.5759,28.9219,29.1641,0.068192,0.86016,0.006144,0.005856,0.028192,0.096096,0.098464,27.8863,0.114624
+1081,33.1306,30.1836,27.9552,0.069632,0.876544,0.007488,0.0048,0.028672,0.096192,0.09632,26.6623,0.113248
+1082,33.2943,30.0352,28.1725,0.069152,1.0472,0.007328,0.0152,0.03072,0.104448,0.106496,26.6787,0.113248
+1083,34.0697,29.3516,29.3823,0.069664,1.04166,0.00688,0.005664,0.027264,0.095872,0.096576,27.9244,0.114336
+1084,33.6665,29.7031,29.0901,0.07024,0.849056,0.00704,0.004128,0.02864,0.096256,0.096288,27.8241,0.114336
+1085,32.9854,30.3164,27.9472,0.069664,0.877536,0.00704,0.005536,0.02736,0.096256,0.097664,26.6529,0.113184
+1086,33.9838,29.4258,29.234,0.068448,0.918784,0.006912,0.004096,0.028672,0.094208,0.097728,27.9025,0.11264
+1087,32.5783,30.6953,28.184,0.069664,1.11616,0.007424,0.019104,0.028,0.105184,0.097536,26.6248,0.116128
+1088,34.4364,29.0391,28.3647,0.069408,0.893152,0.017856,0.004864,0.028064,0.094816,0.098112,27.044,0.114432
+1089,33.521,29.832,29.4462,0.071264,1.19651,0.007904,0.004384,0.028576,0.095552,0.096128,27.8332,0.11264
+1090,33.2424,30.082,27.9137,0.067712,0.920928,0.006784,0.00512,0.027648,0.096,0.098112,26.5786,0.112832
+1091,34.4132,29.0586,28.0951,0.070304,0.99536,0.007456,0.0048,0.028672,0.095776,0.096768,26.6812,0.114752
+1092,34.3394,29.1211,29.225,0.069632,0.89088,0.007776,0.004512,0.028608,0.095456,0.09712,27.9183,0.112672
+1093,32.8838,30.4102,27.904,0.069408,0.862432,0.00736,0.004928,0.028672,0.09424,0.09808,26.6253,0.113568
+1094,33.4204,29.9219,28.0879,0.06864,1.04051,0.007008,0.014336,0.028672,0.096,0.098144,26.6162,0.1184
+1095,34.1424,29.2891,29.2454,0.069152,0.91536,0.00672,0.005984,0.028032,0.095008,0.097728,27.9145,0.11296
+1096,32.1689,31.0859,29.2965,0.06976,1.03898,0.008,0.01424,0.03104,0.11008,0.109024,27.8029,0.112416
+1097,33.1006,30.2109,28.1006,0.069632,0.950272,0.007584,0.014944,0.033856,0.103168,0.09648,26.7079,0.116736
+1098,32.7366,30.5469,29.6694,0.069216,1.28246,0.016384,0.00528,0.027488,0.110336,0.110304,27.9345,0.11344
+1099,33.5035,29.8477,28.0554,0.069088,0.979904,0.007424,0.004896,0.028512,0.095552,0.097024,26.6589,0.114144
+1100,34.2063,29.2344,28.025,0.068352,0.945728,0.006592,0.005408,0.02736,0.096288,0.098272,26.6642,0.1128
+1101,34.5666,28.9297,30.4087,0.069632,0.903168,0.0072,0.005088,0.02848,0.095968,0.096736,29.0892,0.113184
+1102,31.7303,31.5156,27.9532,0.069664,0.915424,0.007904,0.004384,0.028608,0.094272,0.09776,26.6204,0.114688
+1103,34.2292,29.2148,27.9554,0.069184,0.916128,0.007264,0.005024,0.028672,0.096256,0.097664,26.6226,0.11264
+1104,34.2475,29.1992,29.2662,0.06976,1.0057,0.006144,0.005824,0.027968,0.093216,0.098272,27.8467,0.112704
+1105,32.8416,30.4492,28.7929,0.069632,0.933888,0.007648,0.00464,0.028704,0.095936,0.096544,27.052,0.50384
+1106,33.0024,30.3008,27.9552,0.068992,0.912,0.007264,0.004864,0.027968,0.094784,0.096544,26.6299,0.112896
+1107,34.9107,28.6445,29.319,0.069632,1.01366,0.00624,0.006144,0.028032,0.096064,0.097088,27.8875,0.114656
+1108,32.8163,30.4727,28.1577,0.069664,1.03626,0.007584,0.004704,0.02848,0.095424,0.09696,26.7042,0.114432
+1109,34.0788,29.3438,29.2838,0.069664,0.974816,0.006144,0.006144,0.028672,0.095968,0.096416,27.8929,0.113088
+1110,33.1092,30.2031,29.1052,0.069632,0.880384,0.0064,0.005568,0.0272,0.096256,0.098304,27.8057,0.115808
+1111,32.3437,30.918,28.0655,0.069632,0.991232,0.007456,0.004832,0.02864,0.09424,0.097952,26.6571,0.114432
+1112,34.9822,28.5859,28.0179,0.069632,0.987136,0.006304,0.00576,0.028064,0.096192,0.097184,26.6134,0.114272
+1113,34.2017,29.2383,29.2741,0.07072,0.988128,0.007488,0.004768,0.02864,0.095296,0.097056,27.8694,0.112608
+1114,33.1606,30.1562,27.9035,0.069312,0.858176,0.00688,0.004256,0.028512,0.09616,0.096352,26.6282,0.11568
+1115,34.4225,29.0508,27.9471,0.069568,0.900704,0.00672,0.005888,0.028096,0.09504,0.097696,26.6287,0.114688
+1116,34.3855,29.082,29.2291,0.069632,0.997376,0.007168,0.004864,0.028032,0.095104,0.098304,27.8154,0.113216
+1117,32.7743,30.5117,29.1402,0.069632,0.907008,0.0064,0.006144,0.036864,0.095296,0.105408,27.7975,0.115904
+1118,32.9854,30.3164,27.9316,0.068512,0.871744,0.006848,0.005408,0.02736,0.1024,0.097696,26.6385,0.113056
+1119,32.7408,30.543,29.44,0.069632,1.11725,0.007104,0.01536,0.027648,0.095776,0.096736,27.8969,0.113632
+1120,34.038,29.3789,27.98,0.067904,0.900992,0.006176,0.005792,0.028032,0.093152,0.096288,26.6682,0.113472
+1121,34.2842,29.168,29.3599,0.06944,1.0465,0.015008,0.005952,0.0272,0.096256,0.09776,27.8881,0.113664
+1122,32.9982,30.3047,29.199,0.068352,0.9584,0.007296,0.004864,0.038528,0.09472,0.097536,27.8164,0.112992
+1123,33.2511,30.0742,27.9638,0.06832,0.847872,0.007232,0.005024,0.02864,0.099616,0.097024,26.6956,0.114528
+1124,33.9343,29.4688,28.0945,0.068992,0.97296,0.006688,0.00528,0.027456,0.096256,0.098272,26.7056,0.112992
+1125,33.9973,29.4141,29.2557,0.069632,0.969792,0.00704,0.005504,0.027328,0.096256,0.097376,27.8697,0.113024
+1126,32.7701,30.5156,27.99,0.0696,0.9544,0.00768,0.004608,0.028448,0.094432,0.1024,26.6149,0.113504
+1127,34.2109,29.2305,28.0504,0.069504,0.9584,0.006336,0.006144,0.028288,0.094592,0.096448,26.6771,0.113664
+1128,34.3809,29.0859,29.1019,0.069024,0.856416,0.006464,0.005504,0.027264,0.096256,0.098304,27.8276,0.11504
+1129,32.943,30.3555,28.1208,0.070656,1.02093,0.00768,0.004608,0.028704,0.095584,0.096896,26.6813,0.1144
+1130,34.2934,29.1602,29.1185,0.069216,0.864704,0.007328,0.004864,0.027936,0.09504,0.097248,27.8395,0.112672
+1131,32.7157,30.5664,29.2755,0.069632,0.951904,0.00656,0.005984,0.042336,0.096224,0.098304,27.8885,0.116064
+1132,32.8795,30.4141,27.9833,0.069632,0.894976,0.007456,0.004832,0.02816,0.095968,0.097056,26.6622,0.123008
+1133,34.1106,29.3164,27.9267,0.069504,0.85024,0.00768,0.004576,0.028672,0.096256,0.096256,26.6604,0.11312
+1134,32.8669,30.4258,29.322,0.068416,1.02813,0.007488,0.004768,0.028096,0.0944,0.09664,27.8794,0.114688
+1135,33.0749,30.2344,28.1866,0.069632,1.08544,0.007424,0.004864,0.028608,0.09632,0.097472,26.6822,0.114688
+1136,35.1842,28.4219,27.9327,0.069568,0.888192,0.006848,0.00512,0.039936,0.096256,0.104416,26.6097,0.112672
+1137,34.1288,29.3008,29.2385,0.069632,0.9432,0.007072,0.005568,0.0272,0.096224,0.09632,27.8809,0.112416
+1138,33.2381,30.0859,27.9777,0.06912,0.846304,0.006176,0.005728,0.02816,0.096352,0.10528,26.707,0.113632
+1139,34.367,29.0977,27.9566,0.069664,0.841696,0.00816,0.005344,0.027456,0.09616,0.096352,26.6957,0.116128
+1140,34.0561,29.3633,29.4358,0.069536,1.09834,0.008,0.004288,0.028576,0.095872,0.104928,27.9122,0.11408
+1141,32.4256,30.8398,28.0333,0.069568,0.9888,0.00656,0.005504,0.027296,0.096,0.096512,26.6299,0.113152
+1142,34.0697,29.3516,28.7509,0.075808,0.92352,0.00624,0.00576,0.028224,0.095072,0.098304,27.4037,0.114208
+1143,33.7375,29.6406,29.1442,0.070752,0.833664,0.006944,0.005632,0.028224,0.109376,0.097536,27.8782,0.113856
+1144,32.9515,30.3477,27.9654,0.069632,0.843808,0.007296,0.00496,0.028256,0.094464,0.096448,26.7059,0.114688
+1145,34.4828,29,29.1363,0.069184,0.846592,0.007328,0.004992,0.028448,0.0944,0.102432,27.8692,0.11376
+1146,33.1263,30.1875,29.1177,0.069632,0.882688,0.007424,0.004864,0.028256,0.102816,0.096256,27.8118,0.113984
+1147,32.5907,30.6836,27.8866,0.069152,0.860256,0.006528,0.006016,0.028032,0.095008,0.104416,26.6015,0.115744
+1148,33.8311,29.5586,28.1281,0.082816,1.02989,0.0064,0.005504,0.027264,0.104448,0.0984,26.6601,0.11328
+1149,34.5946,28.9062,29.0986,0.06816,0.858112,0.007584,0.004704,0.028672,0.095232,0.09728,27.8241,0.114688
+1150,33.0237,30.2812,27.9577,0.069472,0.886816,0.00672,0.005344,0.027424,0.096096,0.096416,26.656,0.113408
+1151,34.5526,28.9414,27.8814,0.069472,0.848,0.006688,0.005952,0.028224,0.09488,0.097408,26.6166,0.114144
+1152,34.1698,29.2656,29.1349,0.069632,0.845824,0.007456,0.004832,0.028096,0.094784,0.096288,27.8753,0.112736
+1153,32.8416,30.4492,28.5655,0.070176,1.00765,0.007968,0.005504,0.027456,0.100256,0.096352,27.1372,0.112992
+1154,33.3333,30,28.3265,0.069568,1.18016,0.008384,0.005664,0.030816,0.09664,0.098304,26.7223,0.114688
+1155,34.1652,29.2695,29.1503,0.069632,0.841728,0.007488,0.0048,0.028672,0.09536,0.096768,27.8921,0.113792
+1156,32.7533,30.5312,28.0946,0.06976,0.958464,0.007776,0.004512,0.04096,0.09424,0.112096,26.6917,0.115104
+1157,34.5993,28.9023,29.1411,0.069312,0.836,0.006144,0.006144,0.028672,0.095456,0.097088,27.8893,0.112928
+1158,32.96,30.3398,29.1954,0.069536,0.837728,0.006144,0.00576,0.027008,0.098304,0.098176,27.9391,0.113664
+1159,32.724,30.5586,27.9757,0.072928,0.90192,0.007424,0.004864,0.028704,0.096224,0.097568,26.6472,0.118816
+1160,34.1333,29.2969,27.9958,0.079424,0.97312,0.006272,0.005632,0.03712,0.095584,0.098848,26.5855,0.114304
+1161,34.2842,29.168,29.1977,0.069216,0.957216,0.007264,0.005024,0.02864,0.096192,0.097728,27.8227,0.113728
+1162,32.7785,30.5078,28.153,0.069504,1.03181,0.006656,0.005376,0.04096,0.094432,0.10704,26.6834,0.113856
+1163,34.2612,29.1875,28.0815,0.06976,0.992544,0.006752,0.006144,0.028224,0.108992,0.098144,26.6564,0.114592
+1164,34.1926,29.2461,29.2191,0.069184,0.965536,0.006144,0.006144,0.028576,0.094336,0.098208,27.8365,0.114496
+1165,32.6156,30.6602,28.1164,0.070848,0.987968,0.006144,0.006144,0.028416,0.104576,0.098144,26.698,0.116128
+1166,34.6367,28.8711,28.966,0.069536,0.842176,0.01712,0.005056,0.034816,0.094208,0.335872,27.4548,0.11248
+1167,33.2813,30.0469,29.1353,0.070112,0.84992,0.006144,0.006144,0.028288,0.094592,0.1024,27.863,0.114688
+1168,32.8795,30.4141,27.967,0.069664,0.93984,0.006304,0.005568,0.02736,0.095712,0.09664,26.6116,0.114368
+1169,34.2612,29.1875,27.9783,0.069376,0.980928,0.007008,0.005632,0.027136,0.108544,0.096288,26.5703,0.113024
+1170,34.3348,29.125,30.2387,0.068736,1.12934,0.007616,0.004672,0.028544,0.096,0.098208,28.6924,0.113216
+1171,31.964,31.2852,27.9584,0.069632,0.874496,0.00736,0.004928,0.028544,0.09552,0.097024,26.663,0.11792
+1172,34.1652,29.2695,28.0324,0.069664,0.94,0.007968,0.00432,0.02848,0.0944,0.097888,26.6748,0.11488
+1173,32.9684,30.332,29.318,0.068512,1.09162,0.00736,0.004928,0.02864,0.095296,0.097184,27.8098,0.114688
+1174,34.1151,29.3125,27.97,0.069888,0.938144,0.006144,0.005792,0.027136,0.095872,0.097728,26.6156,0.113664
+1175,34.344,29.1172,27.9675,0.069632,0.91328,0.006272,0.006144,0.028192,0.095712,0.105024,26.6296,0.113632
+1176,33.7998,29.5859,29.2577,0.069632,0.925376,0.006464,0.005728,0.02704,0.095296,0.09712,27.9184,0.11264
+1177,32.8669,30.4258,29.1999,0.069312,0.955104,0.007904,0.005504,0.02752,0.09584,0.096672,27.8281,0.113952
+1178,32.8079,30.4805,27.971,0.069408,0.954048,0.00672,0.005248,0.027488,0.096096,0.096448,26.6014,0.114144
+1179,34.3947,29.0742,29.2499,0.069952,0.959552,0.00704,0.005536,0.039584,0.095232,0.096608,27.8637,0.11264
+1180,32.8711,30.4219,27.9476,0.069248,0.88976,0.00624,0.005792,0.028288,0.105088,0.1024,26.6273,0.11344
+1181,34.5946,28.9062,27.931,0.069024,0.842688,0.008032,0.005536,0.027392,0.106528,0.097536,26.6596,0.11472
+1182,34.4317,29.043,30.3658,0.069216,0.930304,0.007264,0.00496,0.028032,0.094688,0.103744,29.0144,0.113152
+1183,31.8765,31.3711,27.9572,0.068288,0.83968,0.006144,0.006144,0.028128,0.10096,0.09824,26.6957,0.113888
+1184,34.22,29.2227,27.9132,0.074752,0.854016,0.00752,0.004768,0.028256,0.094624,0.097984,26.6364,0.114848
+1185,32.8416,30.4492,29.4433,0.069376,1.18726,0.017216,0.005952,0.028832,0.09568,0.096896,27.828,0.114112
+1186,33.011,30.293,28.2207,0.069504,1.13398,0.00688,0.004096,0.032768,0.094208,0.096288,26.669,0.113952
+1187,34.9536,28.6094,27.8874,0.069184,0.864096,0.006752,0.005952,0.028864,0.096256,0.10224,26.6008,0.113248
+1188,34.6414,28.8672,29.0918,0.069792,0.8544,0.006336,0.005664,0.027104,0.106496,0.097536,27.8106,0.113888
+1189,32.8838,30.4102,29.0877,0.06944,0.93408,0.006144,0.006048,0.028096,0.09488,0.098304,27.3956,0.455104
+1190,32.9812,30.3203,27.983,0.06928,0.90352,0.007328,0.004864,0.028096,0.102144,0.097184,26.6568,0.113824
+1191,34.321,29.1367,29.2415,0.070784,0.973696,0.00736,0.004928,0.028576,0.09552,0.09648,27.8512,0.11296
+1192,32.3437,30.918,28.1323,0.069856,1.02886,0.01632,0.005312,0.038976,0.09504,0.09808,26.6652,0.114688
+1193,33.1735,30.1445,28.1602,0.068448,1.00486,0.006848,0.005536,0.027232,0.095616,0.105088,26.7223,0.124256
+1194,34.9345,28.625,30.3255,0.068352,1.21443,0.007776,0.004512,0.028416,0.096512,0.1144,28.6783,0.112736
+1195,32.1003,31.1523,28.0764,0.069408,1.00154,0.006624,0.005984,0.028192,0.094848,0.11264,26.6339,0.1232
+1196,33.8714,29.5234,28.2828,0.069632,1.21242,0.007872,0.004416,0.028384,0.094528,0.09776,26.6544,0.11344
+1197,32.6739,30.6055,29.3252,0.068384,0.997344,0.007424,0.004864,0.032768,0.106496,0.098304,27.8948,0.114848
+1198,32.8626,30.4297,28.126,0.069632,1.08422,0.016384,0.005472,0.027296,0.095712,0.09888,26.6137,0.114624
+1199,35.6894,28.0195,28.0226,0.069632,0.950272,0.007488,0.0048,0.028672,0.096,0.096512,26.6547,0.114528
+1200,34.2521,29.1953,29.1123,0.069312,0.928064,0.006144,0.00576,0.028544,0.094592,0.096416,27.7708,0.11264
+1201,33.29,30.0391,29.0883,0.07008,0.858208,0.006624,0.005984,0.028032,0.108736,0.098208,27.7982,0.114176
+1202,33.0451,30.2617,27.9163,0.069632,0.888832,0.007904,0.004384,0.02848,0.095584,0.097024,26.6098,0.114624
+1203,34.0245,29.3906,29.2313,0.069792,0.934528,0.007264,0.021408,0.028224,0.09456,0.096384,27.8669,0.112256
+1204,32.8753,30.418,27.9791,0.069632,0.8704,0.007616,0.004672,0.028384,0.09552,0.100896,26.6875,0.114464
+1205,34.2934,29.1602,28.0207,0.069632,0.933248,0.006784,0.005792,0.028192,0.09504,0.097888,26.6695,0.114688
+1206,34.0471,29.3711,29.1094,0.069408,0.917792,0.008128,0.004096,0.028672,0.095328,0.097184,27.775,0.113824
+1207,33.1821,30.1367,28.0145,0.0696,0.912992,0.006592,0.004096,0.028672,0.095584,0.096928,26.6752,0.124832
+1208,33.6179,29.7461,28.0806,0.069664,0.986592,0.00704,0.004224,0.028672,0.095648,0.096864,26.6768,0.115104
+1209,34.7072,28.8125,29.0956,0.0696,0.868384,0.008064,0.005504,0.027392,0.09568,0.096832,27.8109,0.113248
+1210,33.0365,30.2695,27.9002,0.07808,0.8784,0.006336,0.005568,0.0272,0.095712,0.102368,26.5929,0.113568
+1211,34.5946,28.9062,27.9245,0.069472,0.85968,0.006784,0.005728,0.028224,0.106912,0.095904,26.6386,0.113216
+1212,34.5339,28.957,29.111,0.068288,0.845696,0.006272,0.005696,0.028288,0.096064,0.09728,27.8487,0.114688
+1213,32.926,30.3711,28.2777,0.068576,0.90112,0.006112,0.00608,0.028256,0.094688,0.098272,26.962,0.11264
+1214,33.0323,30.2734,28.5635,0.073696,1.56269,0.007648,0.00464,0.028256,0.095712,0.096288,26.5812,0.11328
+1215,34.1242,29.3047,29.1961,0.068128,0.990784,0.00656,0.006144,0.028672,0.096256,0.09744,27.7881,0.113952
+1216,33.1778,30.1406,27.9685,0.070816,0.958432,0.007008,0.0056,0.0272,0.105696,0.098656,26.5814,0.113664
+1217,34.3164,29.1406,28.3809,0.069664,0.911328,0.007424,0.004864,0.028672,0.095904,0.10208,27.0466,0.1144
+1218,33.7553,29.625,29.0894,0.067904,0.869728,0.006528,0.005408,0.02736,0.09568,0.096832,27.807,0.113024
+1219,33.1177,30.1953,27.8874,0.069152,0.87696,0.006528,0.00608,0.028032,0.094944,0.098176,26.5932,0.114368
+1220,34.6836,28.832,27.8935,0.0696,0.853536,0.006656,0.005248,0.02752,0.095328,0.10128,26.6199,0.114464
+1221,34.0607,29.3594,29.34,0.069696,1.05501,0.016384,0.006144,0.032768,0.096256,0.106176,27.8446,0.112992
+1222,32.3232,30.9375,28.259,0.06816,1.2224,0.0064,0.005568,0.027264,0.09536,0.1048,26.6162,0.112864
+1223,33.9208,29.4805,28.184,0.06992,1.09158,0.006144,0.006144,0.02832,0.110944,0.097728,26.6585,0.11472
+1224,34.2017,29.2383,29.2291,0.069632,0.97424,0.006752,0.00512,0.027648,0.095776,0.108384,27.8284,0.11312
+1225,32.7743,30.5117,29.2844,0.069632,0.917536,0.007296,0.00496,0.028384,0.094496,0.096288,27.9529,0.112896
+1226,33.1477,30.168,27.8758,0.069984,0.851616,0.006912,0.004096,0.028672,0.095488,0.096992,26.607,0.115008
+1227,34.4967,28.9883,29.2126,0.069632,0.90112,0.007584,0.004704,0.028672,0.095584,0.096928,27.8948,0.113632
+1228,32.7324,30.5508,28.127,0.069568,1.0937,0.008192,0.014336,0.028704,0.094176,0.098144,26.6057,0.114432
+1229,34.6461,28.8633,29.0815,0.069664,0.851936,0.006144,0.006144,0.028032,0.094848,0.096256,27.8159,0.112576
+1230,33.1735,30.1445,29.1062,0.071264,0.891232,0.006208,0.005792,0.028256,0.094976,0.096416,27.7994,0.112672
+1231,33.1177,30.1953,27.8999,0.069664,0.867392,0.007072,0.006112,0.031968,0.09504,0.097472,26.6105,0.114688
+1232,34.5153,28.9727,27.883,0.069632,0.85552,0.006688,0.00528,0.027488,0.095552,0.103136,26.6053,0.1144
+1233,34.4688,29.0117,29.1018,0.069536,0.850016,0.007904,0.005504,0.027552,0.095232,0.101376,27.82,0.12464
+1234,33.0878,30.2227,28.0179,0.069632,0.964608,0.006144,0.00576,0.028096,0.09504,0.098016,26.6362,0.114432
+1235,34.106,29.3203,28.0727,0.069696,1.03072,0.022368,0.005952,0.026976,0.096256,0.098016,26.6079,0.114848
+1236,34.1106,29.3164,29.1471,0.069376,0.915712,0.00752,0.004768,0.028128,0.094752,0.098304,27.8159,0.11264
+1237,33.2295,30.0938,28.2325,0.068544,0.849856,0.007936,0.005536,0.027456,0.096256,0.098304,26.963,0.115648
+1238,34.106,29.3203,28.8052,0.069632,0.868352,0.007552,0.004736,0.028672,0.094208,0.098304,27.521,0.112736
+1239,33.1907,30.1289,29.1755,0.069088,0.913888,0.00656,0.006016,0.028192,0.094816,0.098336,27.8446,0.114048
+1240,33.0493,30.2578,27.8939,0.068544,0.883904,0.006912,0.004224,0.028544,0.09584,0.096672,26.5953,0.11392
+1241,34.4967,28.9883,29.1138,0.069952,0.890944,0.0072,0.005088,0.02832,0.09456,0.097888,27.806,0.113792
+1242,32.9515,30.3477,29.1319,0.068832,0.89168,0.007616,0.004672,0.028192,0.09472,0.104384,27.818,0.113792
+1243,31.9043,31.3438,28.2196,0.068128,1.16122,0.007584,0.004704,0.028672,0.105856,0.096928,26.6334,0.113056
+1244,33.0195,30.2852,28.1068,0.070816,1.07606,0.018432,0.006144,0.036864,0.104,0.098016,26.5817,0.114688
+1245,35.9652,27.8047,29.2332,0.0696,0.990496,0.006912,0.0056,0.027168,0.095936,0.096608,27.8274,0.11344
+1246,32.9472,30.3516,27.8159,0.070816,0.856736,0.006336,0.005728,0.028864,0.094528,0.097664,26.5406,0.114688
+1247,34.298,29.1562,27.9899,0.069664,0.933856,0.007424,0.004864,0.028672,0.095584,0.09696,26.6383,0.114528
+1248,34.3809,29.0859,29.1125,0.069696,0.86832,0.006176,0.005824,0.02816,0.095072,0.097824,27.8287,0.112736
+1249,32.8247,30.4648,29.2722,0.069696,0.940128,0.007456,0.004832,0.028576,0.096,0.096608,27.9142,0.114688
+1250,32.8458,30.4453,28.031,0.069632,0.969984,0.006912,0.004224,0.044192,0.096992,0.110592,26.6158,0.112672
+1251,34.344,29.1172,29.2084,0.069664,0.901664,0.00624,0.006144,0.028416,0.102656,0.097408,27.866,0.130208
+1252,32.926,30.3711,27.8924,0.069312,0.856384,0.006752,0.005952,0.028192,0.096128,0.097056,26.6191,0.113472
+1253,33.849,29.543,29.6141,0.06944,1.30886,0.00736,0.004928,0.028512,0.094368,0.096256,27.8928,0.111552
+1254,32.9515,30.3477,29.3093,0.075744,1.00813,0.006592,0.014336,0.028672,0.095424,0.097088,27.8692,0.114176
+1255,33.0707,30.2383,28.0126,0.07488,0.983744,0.006336,0.006144,0.027968,0.104416,0.096992,26.5994,0.112736
+1256,34.6696,28.8438,27.9127,0.069568,0.854624,0.006144,0.00592,0.028,0.094528,0.105056,26.6342,0.114688
+1257,33.8222,29.5664,29.3253,0.069632,1.05379,0.007008,0.0144,0.032096,0.101024,0.109728,27.825,0.11264
+1258,32.943,30.3555,28.1419,0.069952,1.08918,0.006752,0.005216,0.027552,0.095456,0.096544,26.636,0.115168
+1259,34.726,28.7969,27.8876,0.069728,0.868224,0.006176,0.00608,0.027904,0.09504,0.098144,26.603,0.113344
+1260,34.3486,29.1133,29.1258,0.069376,0.903232,0.006336,0.006144,0.028384,0.095904,0.097952,27.8047,0.113824
+1261,33.1263,30.1875,27.9676,0.06848,0.899072,0.007456,0.004832,0.028672,0.097664,0.096896,26.6506,0.11392
+1262,34.3716,29.0938,28.738,0.067168,0.852384,0.006592,0.005312,0.027456,0.096128,0.096416,27.4737,0.112864
+1263,33.4947,29.8555,29.1357,0.06848,0.917472,0.006176,0.006144,0.02816,0.104032,0.098816,27.7918,0.114688
+1264,32.8838,30.4102,27.8591,0.069696,0.860256,0.007296,0.004672,0.028608,0.094592,0.096256,26.5851,0.112672
+1265,34.6789,28.8359,29.0864,0.068512,0.85728,0.006496,0.004576,0.028672,0.096256,0.097888,27.8113,0.115392
+1266,33.29,30.0391,29.0876,0.069024,0.846624,0.007424,0.004864,0.028128,0.106848,0.09648,27.8151,0.11312
+1267,32.8331,30.457,27.8504,0.069664,0.864,0.006368,0.006144,0.028096,0.094816,0.096224,26.5706,0.11456
+1268,33.0792,30.2305,27.9167,0.068256,0.859616,0.006656,0.005248,0.02752,0.095232,0.097152,26.6437,0.113312
+1269,35.7592,27.9648,29.2778,0.069568,0.988608,0.006784,0.00576,0.02864,0.096416,0.097792,27.87,0.114304
+1270,33.2122,30.1094,27.8821,0.068224,0.837664,0.007264,0.004928,0.028224,0.110976,0.097472,26.6127,0.114688
+1271,33.9388,29.4648,28.0901,0.069696,1.07984,0.007744,0.004512,0.028672,0.095616,0.09664,26.5934,0.114016
+1272,34.1607,29.2734,29.1779,0.06864,0.948384,0.007008,0.004128,0.02864,0.095776,0.09616,27.816,0.113184
+1273,33.3811,29.957,27.9396,0.070656,0.853856,0.006304,0.006144,0.028032,0.094848,0.098304,26.6665,0.114944
+1274,34.0879,29.3359,29.1276,0.068544,0.864256,0.007392,0.004896,0.028064,0.094816,0.096224,27.836,0.127424
+1275,32.8542,30.4375,29.0447,0.069632,0.864224,0.006176,0.00576,0.028032,0.095232,0.096256,27.7668,0.11264
+1276,33.0878,30.2227,27.9174,0.069632,0.888832,0.007744,0.004544,0.028448,0.095488,0.103392,26.6035,0.115808
+1277,34.5246,28.9648,27.9186,0.069632,0.84608,0.00768,0.004608,0.028704,0.096096,0.097856,26.6532,0.114688
+1278,34.4317,29.043,29.174,0.068256,0.974656,0.006144,0.00576,0.028192,0.109408,0.0976,27.7707,0.113344
+1279,33.1649,30.1523,27.9286,0.069664,0.876064,0.006592,0.005952,0.027872,0.109568,0.0976,26.6224,0.112864
+1280,34.4503,29.0273,27.9492,0.068928,0.911936,0.006432,0.005792,0.028096,0.095168,0.098272,26.621,0.113568
+1281,34.5293,28.9609,29.1961,0.070784,0.895872,0.00768,0.004608,0.028672,0.095808,0.096704,27.8815,0.114528
+1282,32.7743,30.5117,28.0146,0.069248,0.954624,0.006304,0.013856,0.0312,0.096064,0.096448,26.6316,0.115296
+1283,34.5293,28.9609,29.136,0.070656,0.84224,0.006656,0.00592,0.028096,0.095008,0.096256,27.8788,0.112352
+1284,33.0024,30.3008,29.0317,0.069632,0.866336,0.00752,0.004736,0.028096,0.094784,0.098144,27.7485,0.113984
+1285,32.6239,30.6523,27.9665,0.068576,0.990496,0.014112,0.005056,0.040544,0.094656,0.098112,26.5421,0.112832
+1286,34.3855,29.082,27.9139,0.069216,0.887616,0.007648,0.00464,0.028256,0.094624,0.096256,26.6097,0.115968
+1287,33.5386,29.8164,30.3148,0.069152,1.15741,0.006624,0.020096,0.031104,0.096256,0.108096,28.7114,0.114688
+1288,32.0441,31.207,27.863,0.069504,0.857504,0.00688,0.004224,0.028544,0.096192,0.097664,26.5878,0.114656
+1289,34.5013,28.9844,27.8734,0.068384,0.868352,0.007552,0.004736,0.028672,0.09424,0.097856,26.5894,0.114208
+1290,32.8711,30.4219,29.7772,0.069184,1.59382,0.007872,0.004416,0.028352,0.09632,0.09648,27.7668,0.113952
+1291,33.5826,29.7773,28.0412,0.068512,0.970656,0.007264,0.005024,0.04,0.095168,0.09744,26.6433,0.113856
+1292,34.2383,29.207,28.0044,0.069664,0.954336,0.00784,0.004448,0.04096,0.095424,0.097088,26.6209,0.113664
+1293,34.0743,29.3477,29.1433,0.069792,0.929504,0.006528,0.006112,0.028096,0.09472,0.096352,27.7996,0.11264
+1294,33.29,30.0391,29.1418,0.074752,0.89472,0.0064,0.005536,0.027232,0.096256,0.098304,27.8241,0.114432
+1295,33.0578,30.25,28.0039,0.069632,0.965952,0.006848,0.005728,0.02832,0.094976,0.09776,26.6184,0.116256
+1296,34.3578,29.1055,29.2005,0.06912,0.954784,0.0064,0.005504,0.027264,0.095456,0.097056,27.8323,0.11264
+1297,32.7995,30.4883,28.0439,0.06816,1.00554,0.016032,0.00592,0.037472,0.09728,0.097312,26.6035,0.112672
+1298,32.8542,30.4375,29.2844,0.069632,1.10387,0.00784,0.013664,0.027648,0.095584,0.096928,27.7563,0.11296
+1299,34.2796,29.1719,29.1389,0.069536,0.899168,0.007712,0.004608,0.02864,0.096256,0.097792,27.8225,0.112768
+1300,33.2166,30.1055,27.9346,0.069504,0.854176,0.007936,0.00432,0.028672,0.095392,0.09712,26.6643,0.113152
+1301,34.2612,29.1875,27.9842,0.06992,0.875616,0.007072,0.005504,0.027296,0.096256,0.11264,26.6732,0.116736
+1302,34.147,29.2852,29.1742,0.069568,0.899552,0.007968,0.004352,0.02864,0.094208,0.098016,27.8587,0.113216
+1303,32.7659,30.5195,27.9439,0.069632,0.919552,0.007872,0.005504,0.027584,0.106496,0.1096,26.583,0.114656
+1304,34.5852,28.9141,27.8743,0.069184,0.852416,0.006144,0.005952,0.028064,0.0984,0.102976,26.5974,0.113824
+1305,34.4595,29.0195,29.1253,0.069504,0.917952,0.00656,0.006016,0.028192,0.096192,0.096928,27.7811,0.12288
+1306,33.0237,30.2812,29.1389,0.069632,0.884096,0.006784,0.00512,0.031744,0.09536,0.105344,27.8275,0.113376
+1307,32.4256,30.8398,28.166,0.076896,1.06326,0.00672,0.005824,0.026944,0.095328,0.09712,26.6794,0.11456
+1308,34.4132,29.0586,29.2742,0.074496,0.978272,0.006784,0.015936,0.031104,0.096064,0.110048,27.8475,0.114048
+1309,33.152,30.1641,27.8246,0.06992,0.854176,0.007456,0.004832,0.028672,0.100096,0.098368,26.5464,0.114688
+1310,34.5806,28.918,28.6743,0.069184,0.942784,0.007776,0.004512,0.028416,0.094464,0.098336,27.009,0.41984
+1311,33.3203,30.0117,29.2349,0.071616,0.95648,0.007552,0.004768,0.02864,0.094208,0.110624,27.8357,0.125312
+1312,32.8795,30.4141,27.8628,0.069312,0.87232,0.00688,0.004224,0.028544,0.095296,0.097152,26.5749,0.114208
+1313,34.5432,28.9492,27.9285,0.069376,0.88704,0.006144,0.006144,0.028288,0.094592,0.097984,26.6243,0.114592
+1314,34.5246,28.9648,29.0304,0.069632,0.870144,0.0064,0.005504,0.027264,0.096256,0.096256,27.7463,0.11264
+1315,33.1349,30.1797,27.9433,0.068384,0.890848,0.007648,0.00464,0.028672,0.096256,0.098048,26.6345,0.114304
+1316,34.3348,29.125,27.969,0.071136,1.00611,0.00736,0.004928,0.028672,0.09536,0.096928,26.5423,0.116192
+1317,34.4179,29.0547,29.1867,0.068192,0.915136,0.014656,0.005856,0.02816,0.095008,0.098304,27.8467,0.114688
+1318,32.7743,30.5117,29.1104,0.069632,0.962144,0.017888,0.004896,0.028224,0.094432,0.09664,27.7252,0.111392
+1319,32.943,30.3555,27.9517,0.069856,0.956832,0.007456,0.004832,0.028672,0.095488,0.10112,26.5723,0.115232
+1320,34.3256,29.1328,29.1856,0.0696,0.950496,0.008064,0.004224,0.02864,0.095424,0.09712,27.818,0.114048
+1321,32.9769,30.3242,27.9526,0.069632,0.948224,0.007712,0.004576,0.028672,0.094368,0.097856,26.5874,0.114176
+1322,34.3809,29.0859,29.0963,0.068064,0.88256,0.00752,0.0048,0.028448,0.094432,0.097312,27.7964,0.116704
+1323,33.2684,30.0586,29.1683,0.069856,0.849504,0.006976,0.005568,0.027232,0.108352,0.096448,27.8914,0.11296
+1324,33.0024,30.3008,27.9117,0.069632,0.904352,0.007008,0.004128,0.02864,0.096032,0.096544,26.5912,0.114176
+1325,34.4595,29.0195,27.8118,0.069632,0.878112,0.006624,0.006016,0.028064,0.094944,0.096256,26.5173,0.11488
+1326,34.4874,28.9961,29.118,0.069184,0.88224,0.00704,0.004096,0.028672,0.102432,0.097792,27.8136,0.11296
+1327,32.7827,30.5039,27.9532,0.069408,0.970976,0.007584,0.004704,0.028672,0.094208,0.09744,26.5667,0.113472
+1328,34.441,29.0352,27.9512,0.06912,0.937632,0.007072,0.00416,0.028672,0.095872,0.09664,26.5987,0.113344
+1329,34.2934,29.1602,29.1951,0.068416,0.935936,0.008032,0.005536,0.028864,0.095808,0.096896,27.844,0.111584
+1330,32.9345,30.3633,29.1688,0.069632,0.960512,0.007456,0.004832,0.028256,0.096,0.097056,27.7912,0.113856
+1331,33.342,29.9922,27.8377,0.069344,0.858624,0.007616,0.004672,0.028672,0.09552,0.096928,26.5623,0.11408
+1332,34.5666,28.9297,29.1269,0.06816,0.907168,0.00736,0.004864,0.028736,0.09536,0.096864,27.8039,0.114464
+1333,32.4667,30.8008,28.1828,0.069248,1.19254,0.00768,0.004608,0.028704,0.095616,0.096864,26.5743,0.113152
+1334,34.6649,28.8477,29.1615,0.069664,0.937952,0.007456,0.004832,0.028416,0.094464,0.09808,27.8075,0.113152
+1335,33.122,30.1914,29.0549,0.069312,0.848224,0.00768,0.004608,0.028672,0.095872,0.096672,27.7893,0.114624
+1336,32.8542,30.4375,28.0538,0.069248,1.06954,0.006304,0.005632,0.0272,0.096192,0.104448,26.5623,0.11296
+1337,34.4086,29.0625,27.9365,0.069632,0.912768,0.006784,0.014336,0.028672,0.111936,0.09696,26.582,0.113408
+1338,34.5666,28.9297,29.0644,0.069664,0.869408,0.007072,0.0056,0.027392,0.096064,0.097696,27.7776,0.11392
+1339,32.9218,30.375,27.9409,0.069632,0.924928,0.016768,0.005952,0.028256,0.103392,0.098048,26.5792,0.11472
+1340,34.4967,28.9883,27.879,0.069216,0.876608,0.006496,0.0056,0.0272,0.096224,0.09776,26.5856,0.11424
+1341,34.759,28.7695,29.0771,0.069536,0.847744,0.006368,0.006144,0.028576,0.1016,0.097184,27.8053,0.114656
+1342,32.724,30.5586,29.0556,0.06816,0.882176,0.006656,0.005344,0.027424,0.096256,0.097376,27.7595,0.112672
+1343,32.8458,30.4453,28.0124,0.06816,0.998464,0.00704,0.005504,0.027328,0.11808,0.096352,26.5767,0.114752
+1344,34.2063,29.2344,29.1075,0.069056,0.869216,0.008064,0.004224,0.028672,0.099808,0.100928,27.8139,0.113664
+1345,30.7434,32.5273,29.8841,0.075616,2.77571,0.006208,0.00608,0.028352,0.09616,0.098144,26.677,0.120864
+1346,34.2109,29.2305,29.1025,0.068032,0.872192,0.0064,0.005728,0.02704,0.096128,0.096192,27.8182,0.11264
+1347,32.8331,30.457,29.2881,0.0712,1.0593,0.0072,0.005088,0.028416,0.1088,0.09792,27.7958,0.114336
+1348,33.355,29.9805,27.8852,0.069632,0.897024,0.007328,0.004864,0.028096,0.094976,0.099744,26.5692,0.114304
+1349,34.52,28.9688,27.9023,0.070144,0.890912,0.007904,0.005504,0.02752,0.095648,0.096768,26.5933,0.114624
+1350,34.5759,28.9219,29.0963,0.069024,0.875488,0.007744,0.004544,0.02848,0.0944,0.096288,27.8074,0.112928
+1351,33.1692,30.1484,27.8989,0.06976,0.870272,0.007456,0.004832,0.028672,0.094208,0.098112,26.6099,0.115744
+1352,34.3763,29.0898,27.8876,0.069664,0.849888,0.0072,0.004928,0.02816,0.09488,0.098304,26.6199,0.114688
+1353,34.5386,28.9531,29.1999,0.069568,0.8992,0.006144,0.006144,0.02832,0.096192,0.09824,27.8818,0.11424
+1354,32.8163,30.4727,27.9159,0.068832,0.893856,0.008128,0.00416,0.028672,0.097984,0.097984,26.6021,0.114208
+1355,30.9478,32.3125,29.4627,0.069824,1.17741,0.006336,0.006144,0.028192,0.11056,0.104832,27.8466,0.1128
+1356,35.526,28.1484,29.225,0.069632,0.99328,0.018432,0.005984,0.02816,0.107168,0.098176,27.7915,0.11264
+1357,32.9854,30.3164,27.9918,0.068352,0.970144,0.006752,0.00576,0.02816,0.0968,0.096608,26.6056,0.113696
+1358,34.3947,29.0742,28.3177,0.071104,0.945792,0.007104,0.004128,0.02864,0.096256,0.097632,26.9534,0.113632
+1359,33.9478,29.457,30.0681,0.0696,0.931872,0.007936,0.005504,0.028832,0.094976,0.097696,28.7171,0.114592
+1360,32.1124,31.1406,27.8756,0.06896,0.856352,0.006848,0.004288,0.02848,0.1024,0.10352,26.592,0.112832
+1361,34.3486,29.1133,27.8671,0.069632,0.874496,0.007392,0.004896,0.028512,0.095456,0.09696,26.5751,0.114688
+1362,34.1288,29.3008,29.1768,0.068544,0.924864,0.022848,0.004608,0.028704,0.09584,0.09664,27.8218,0.11296
+1363,33.1306,30.1836,27.8835,0.069632,0.90112,0.007456,0.004864,0.028512,0.094368,0.096416,26.5662,0.114912
+1364,34.4132,29.0586,27.9393,0.069056,0.936928,0.007776,0.004512,0.02832,0.095776,0.09664,26.5875,0.1128
+1365,34.5572,28.9375,29.1991,0.068384,0.884384,0.006464,0.006048,0.028,0.094976,0.098304,27.8979,0.114688
+1366,32.7743,30.5117,29.0858,0.069504,0.897472,0.007488,0.0048,0.028128,0.094592,0.096416,27.7741,0.11328
+1367,33.3333,30,27.9828,0.068512,0.925056,0.006784,0.00576,0.027008,0.095584,0.096768,26.6426,0.114688
+1368,34.4735,29.0078,29.1464,0.06944,0.866496,0.008032,0.004256,0.028672,0.097472,0.097088,27.861,0.113984
+1369,32.8374,30.4531,27.9344,0.07376,0.895008,0.0072,0.005088,0.028672,0.095808,0.096288,26.6183,0.114336
+1370,34.2475,29.1992,28.2826,0.069376,0.911616,0.007488,0.0048,0.028128,0.095904,0.097152,26.9537,0.1144
+1371,34.22,29.2227,29.1236,0.069632,0.864288,0.007936,0.005504,0.027488,0.095808,0.096704,27.8426,0.113664
+1372,33.0067,30.2969,27.9668,0.069888,0.921056,0.006656,0.005312,0.027456,0.096256,0.098048,26.6284,0.113728
+1373,34.0516,29.3672,27.8914,0.069792,0.927968,0.006464,0.00608,0.02816,0.095872,0.108608,26.5343,0.114144
+1374,33.4684,29.8789,30.6365,0.068032,1.20627,0.00816,0.014368,0.03072,0.096064,0.09648,29.0037,0.11264
+1375,32.177,31.0781,28.0025,0.075968,0.955968,0.00656,0.005952,0.028352,0.09584,0.112608,26.6077,0.113504
+1376,33.4247,29.918,28.0469,0.069376,0.995488,0.006592,0.005472,0.027296,0.104448,0.098336,26.6256,0.114336
+1377,35.0445,28.5352,29.1875,0.069664,0.948544,0.007872,0.005536,0.027552,0.096256,0.098144,27.82,0.11392
+1378,33.011,30.293,27.9397,0.06848,0.91264,0.00688,0.005984,0.028128,0.094464,0.096736,26.6138,0.112608
+1379,33.8983,29.5,28.0575,0.068256,0.9704,0.006496,0.006016,0.028032,0.094976,0.097568,26.6698,0.115968
+1380,34.4921,28.9922,29.226,0.069632,0.954208,0.006336,0.0056,0.028288,0.09488,0.097888,27.8555,0.113664
+1381,32.8374,30.4531,29.3231,0.069664,1.00758,0.006144,0.006144,0.028544,0.094368,0.097792,27.9004,0.11248
+1382,32.7659,30.5195,28.0056,0.069632,1.01162,0.006272,0.005664,0.028352,0.094976,0.100352,26.5638,0.124864
+1383,34.4921,28.9922,29.1287,0.06928,0.878944,0.007424,0.004864,0.028672,0.096032,0.09648,27.8336,0.113376
+1384,32.8247,30.4648,27.9228,0.068448,0.922976,0.006816,0.00544,0.027328,0.096192,0.09632,26.5851,0.11424
+1385,34.22,29.2227,29.2004,0.067616,0.937536,0.016832,0.005952,0.027968,0.095104,0.098176,27.8386,0.112672
+1386,32.6948,30.5859,29.1448,0.069792,0.94448,0.008064,0.004128,0.028672,0.094208,0.098304,27.7831,0.114016
+1387,32.1608,31.0938,27.9245,0.069664,0.878592,0.007968,0.005536,0.027424,0.096256,0.097696,26.6267,0.114688
+1388,35.7043,28.0078,27.965,0.069664,0.9912,0.007424,0.004832,0.028192,0.09472,0.096256,26.5585,0.114272
+1389,34.4549,29.0234,29.147,0.067712,0.935072,0.007008,0.005504,0.028288,0.095232,0.096384,27.7974,0.114432
+1390,33.2079,30.1133,27.901,0.069632,0.874496,0.007584,0.004704,0.028352,0.094528,0.097888,26.6096,0.114272
+1391,34.4132,29.0586,27.9392,0.069568,0.881664,0.007776,0.004512,0.028672,0.096256,0.096256,26.6399,0.114592
+1392,34.344,29.1172,29.1043,0.0696,0.908096,0.006208,0.005536,0.028864,0.094528,0.096352,27.7811,0.113952
+1393,32.8121,30.4766,29.2352,0.069152,0.936416,0.00752,0.004768,0.028704,0.096,0.097824,27.8801,0.114688
+1394,33.2166,30.1055,27.826,0.06944,0.893216,0.00672,0.005536,0.027232,0.095392,0.096992,26.5176,0.113888
+1395,34.4179,29.0547,29.1978,0.069664,0.9728,0.007488,0.004768,0.028704,0.096224,0.097824,27.8056,0.11472
+1396,32.9345,30.3633,27.9839,0.069632,0.917504,0.007168,0.004864,0.028672,0.098592,0.098304,26.6464,0.1128
+1397,34.147,29.2852,28.457,0.069664,0.937568,0.00656,0.00608,0.028064,0.096352,0.0968,27.1012,0.114688
+1398,33.8714,29.5234,29.9096,0.069536,0.913216,0.007072,0.00416,0.028608,0.095872,0.09664,28.5811,0.11344
+1399,32.4502,30.8164,27.902,0.069632,0.86144,0.006912,0.005696,0.028224,0.09488,0.096512,26.6252,0.11344
+1400,34.1561,29.2773,27.927,0.076384,0.890592,0.006432,0.005472,0.027296,0.096256,0.098336,26.6034,0.122816
+1401,34.2292,29.2148,29.184,0.069504,0.946304,0.007552,0.012672,0.042496,0.099072,0.097312,27.7944,0.114688
+1402,33.0365,30.2695,27.8986,0.06944,0.91424,0.006208,0.005696,0.028192,0.095136,0.096256,26.5687,0.11472
+1403,34.2934,29.1602,27.9429,0.069664,0.873792,0.006816,0.005728,0.028096,0.095072,0.096256,26.6548,0.11264
+1404,32.8964,30.3984,29.2249,0.069632,0.96432,0.006432,0.005472,0.027296,0.096256,0.098016,27.842,0.115424
+1405,34.4688,29.0117,28.3303,0.068128,0.854016,0.007808,0.005536,0.027584,0.09568,0.096832,27.0602,0.114528
+1406,33.4641,29.8828,28.3999,0.0696,1.40957,0.016384,0.005824,0.03104,0.095264,0.09712,26.5606,0.114464
+1407,34.3716,29.0938,29.213,0.06864,0.890848,0.007712,0.004576,0.028672,0.095328,0.096576,27.902,0.118592
+1408,32.6447,30.6328,28.0658,0.069664,1.00758,0.006144,0.005792,0.028288,0.103136,0.104448,26.626,0.114688
+1409,34.4781,29.0039,29.0937,0.0696,0.847232,0.006816,0.005792,0.028032,0.0952,0.098304,27.8282,0.114496
+1410,33.2381,30.0859,29.0924,0.069792,0.866592,0.007328,0.004832,0.028256,0.094784,0.096224,27.8118,0.112704
+1411,32.8458,30.4453,27.9491,0.0712,0.919008,0.007104,0.005504,0.027328,0.096256,0.097664,26.6096,0.115392
+1412,34.5386,28.9531,27.9554,0.069472,0.932384,0.0064,0.0056,0.027168,0.096192,0.09632,26.6076,0.114272
+1413,34.5899,28.9102,29.0842,0.068128,0.878592,0.006144,0.006144,0.02832,0.09456,0.098048,27.7907,0.113632
+1414,32.8922,30.4023,27.9552,0.069056,0.913216,0.006784,0.011968,0.031168,0.094208,0.096288,26.6192,0.11328
+1415,34.8015,28.7344,27.8899,0.069376,0.872864,0.008032,0.005504,0.027424,0.096256,0.098304,26.5994,0.112704
+1416,34.5899,28.9102,29.0937,0.069856,0.8744,0.00624,0.005696,0.0272,0.096128,0.098304,27.8016,0.114272
+1417,33.0578,30.25,29.1445,0.069632,0.88272,0.007232,0.005024,0.028512,0.095872,0.0968,27.8446,0.114144
+1418,32.9133,30.3828,27.8928,0.069568,0.901216,0.008064,0.004192,0.028672,0.100384,0.098208,26.5688,0.113728
+1419,34.7213,28.8008,29.1118,0.069632,0.8704,0.006144,0.006144,0.02832,0.096544,0.09632,27.8241,0.114208
+1420,33.2295,30.0938,27.8997,0.069376,0.854272,0.007968,0.00432,0.028544,0.094368,0.097408,26.6289,0.114592
+1421,34.5899,28.9102,28.2932,0.069664,0.880224,0.006528,0.006048,0.028096,0.096,0.097184,26.9965,0.112928
+1422,33.9928,29.418,29.0671,0.070016,0.858112,0.0072,0.004864,0.028064,0.09472,0.096576,27.7934,0.114176
+1423,33.028,30.2773,27.9738,0.069984,0.93184,0.00736,0.004928,0.028416,0.095744,0.098176,26.6208,0.116512
+1424,34.5107,28.9766,27.8911,0.069152,0.868928,0.006144,0.005856,0.028096,0.094528,0.096832,26.6055,0.116032
+1425,33.609,29.7539,29.3724,0.069472,0.990464,0.00704,0.005536,0.027264,0.096288,0.09792,27.9652,0.113184
+1426,32.6323,30.6445,29.1009,0.068416,0.87584,0.006848,0.004096,0.028672,0.096256,0.098304,27.8077,0.114688
+1427,33.3507,29.9844,27.8873,0.069632,0.873536,0.00704,0.005504,0.027328,0.096256,0.097472,26.5961,0.1144
+1428,34.6039,28.8984,29.1418,0.068384,0.892928,0.008096,0.004192,0.028672,0.095488,0.097024,27.8323,0.114688
+1429,33.1477,30.168,29.0996,0.069408,0.8616,0.006976,0.0056,0.027168,0.095872,0.09664,27.8235,0.112832
+1430,33.2727,30.0547,27.8817,0.069792,0.852064,0.008,0.004288,0.028672,0.095808,0.096704,26.6114,0.115008
+1431,33.565,29.793,29.2514,0.06944,0.97936,0.0064,0.006144,0.028096,0.094848,0.108064,27.845,0.114048
+1432,32.888,30.4062,28.0141,0.069632,0.952192,0.006272,0.005728,0.02704,0.095904,0.096608,26.6465,0.114176
+1433,34.7213,28.8008,29.1505,0.069312,0.885056,0.006272,0.006016,0.028544,0.096384,0.098304,27.8457,0.114912
+1434,32.9091,30.3867,29.2086,0.069664,0.966112,0.006656,0.005344,0.027424,0.094208,0.098304,27.8275,0.113408
+1435,33.3464,29.9883,27.8828,0.069376,0.860576,0.006144,0.006144,0.028352,0.094528,0.096256,26.6056,0.115904
+1436,34.3901,29.0781,27.9225,0.068864,0.850752,0.007424,0.004832,0.028,0.09488,0.108576,26.6459,0.11328
+1437,34.4642,29.0156,29.1369,0.069632,0.871648,0.006944,0.005632,0.028256,0.104928,0.096704,27.84,0.113152
+1438,32.7785,30.5078,27.8392,0.069568,0.854784,0.007712,0.004608,0.028256,0.096,0.096896,26.5687,0.11264
+1439,34.097,29.3281,28.0105,0.069184,0.982528,0.007072,0.005504,0.027296,0.095808,0.096608,26.6118,0.114688
+1440,34.4456,29.0312,29.1363,0.068928,0.850656,0.007232,0.004864,0.027936,0.094848,0.0976,27.8553,0.128928
+1441,32.1124,31.1406,29.4379,0.069632,1.1833,0.007936,0.012992,0.031936,0.096096,0.097248,27.8241,0.114624
+1442,32.5327,30.7383,27.9958,0.069056,0.966464,0.006976,0.004224,0.028544,0.094208,0.09792,26.6141,0.114272
+1443,33.355,29.9805,29.486,0.068544,1.21226,0.006304,0.006144,0.032768,0.096256,0.098336,27.8522,0.113184
+1444,32.9091,30.3867,27.9184,0.069664,0.991168,0.006176,0.005728,0.028096,0.095136,0.09632,26.5126,0.113472
+1445,33.9208,29.4805,29.2967,0.069632,1.1463,0.01648,0.004576,0.03072,0.095808,0.096384,27.3792,0.457568
+1446,33.0152,30.2891,29.1245,0.069504,0.887008,0.007968,0.00432,0.028672,0.096096,0.097504,27.8189,0.114464
+1447,32.8416,30.4492,27.945,0.068352,0.952192,0.00752,0.004768,0.028672,0.09616,0.097824,26.5753,0.114208
+1448,34.0109,29.4023,28.0637,0.069632,1.00899,0.006816,0.00528,0.027488,0.094208,0.111776,26.6249,0.114688
+1449,34.3072,29.1484,29.1785,0.076288,0.884896,0.007296,0.004992,0.03072,0.095648,0.096864,27.8671,0.114688
+1450,33.0451,30.2617,27.9345,0.0696,0.919584,0.007776,0.004512,0.028576,0.095552,0.097088,26.5973,0.114496
+1451,34.4503,29.0273,27.8515,0.069408,0.902112,0.007648,0.004608,0.028672,0.096256,0.097536,26.5306,0.114688
+1452,34.5666,28.9297,29.0836,0.069632,0.888864,0.007456,0.0048,0.028256,0.094624,0.09776,27.7776,0.114624
+1453,33.1649,30.1523,29.1123,0.069024,0.877184,0.007776,0.005504,0.027648,0.096256,0.09792,27.8163,0.114688
+1454,33.0963,30.2148,27.934,0.069408,0.868736,0.006144,0.005728,0.02816,0.09472,0.096672,26.6506,0.113856
+1455,34.0743,29.3477,29.1574,0.069664,0.972192,0.00672,0.005824,0.027968,0.095232,0.098048,27.767,0.114688
+1456,32.9176,30.3789,27.8835,0.068864,0.88512,0.006528,0.006144,0.028032,0.094848,0.097728,26.5829,0.113376
+1457,34.9059,28.6484,29.1156,0.069504,0.884928,0.007296,0.004992,0.028672,0.095872,0.098272,27.8102,0.115904
+1458,33.1864,30.1328,29.0955,0.069152,0.868768,0.006592,0.005312,0.027456,0.095648,0.096864,27.8118,0.113856
+1459,33.2166,30.1055,27.8957,0.068416,0.885888,0.007008,0.005536,0.027232,0.095584,0.096896,26.5946,0.114592
+1460,34.4921,28.9922,27.878,0.069344,0.85632,0.006784,0.00512,0.027616,0.096128,0.108672,26.5949,0.113056
+1461,34.6696,28.8438,29.081,0.069504,0.856192,0.007872,0.005504,0.027584,0.096256,0.098336,27.8048,0.11488
+1462,31.3918,31.8555,28.2436,0.06928,1.21258,0.006336,0.005632,0.027136,0.111744,0.104352,26.5917,0.11488
+1463,34.8869,28.6641,28.0131,0.069472,1.02051,0.006304,0.006144,0.027968,0.094752,0.096416,26.5766,0.114848
+1464,34.5479,28.9453,29.0509,0.069632,0.896992,0.006176,0.005792,0.028064,0.097216,0.103616,27.7287,0.114688
+1465,33.1349,30.1797,28.375,0.069632,0.910752,0.006752,0.005792,0.028096,0.095136,0.098304,27.0459,0.114688
+1466,33.8804,29.5156,28.7242,0.068576,0.903136,0.006176,0.005728,0.028768,0.094528,0.09744,27.407,0.112832
+1467,33.5079,29.8438,29.2291,0.070848,0.992064,0.007168,0.00512,0.028384,0.094496,0.096256,27.8221,0.11264
+1468,32.8964,30.3984,28.0084,0.069664,1.02429,0.006368,0.005568,0.0272,0.10784,0.09696,26.5556,0.114912
+1469,34.2842,29.168,29.2661,0.068608,0.995296,0.007584,0.004704,0.028672,0.096256,0.096256,27.8548,0.113952
+1470,33.2857,30.043,29.1533,0.069664,0.868064,0.0064,0.005504,0.027264,0.095776,0.096736,27.8609,0.123008
+1471,32.7324,30.5508,27.9613,0.069664,0.9088,0.006624,0.005888,0.02816,0.096032,0.097216,26.6333,0.115648
+1472,34.5107,28.9766,27.8591,0.06928,0.866272,0.006656,0.005312,0.027456,0.095968,0.102688,26.5708,0.114688
+1473,34.2063,29.2344,29.1205,0.069728,0.888288,0.006592,0.005984,0.028288,0.094752,0.110592,27.8016,0.114688
+1474,33.2166,30.1055,27.8317,0.069632,0.888704,0.006272,0.005696,0.027072,0.095936,0.096608,26.5277,0.114112
+1475,34.4549,29.0234,27.863,0.069056,0.91392,0.006208,0.006144,0.028448,0.096064,0.098144,26.5324,0.11264
+1476,34.3118,29.1445,29.2113,0.06976,0.9672,0.007296,0.004832,0.028128,0.094912,0.096256,27.83,0.112864
+1477,32.9642,30.3359,29.1223,0.069824,0.930752,0.00704,0.005504,0.027264,0.095968,0.0976,27.7739,0.1144
+1478,33.1177,30.1953,27.9745,0.06848,0.948064,0.006304,0.005728,0.028448,0.10032,0.101056,26.6031,0.113024
+1479,33.9523,29.4531,29.1799,0.070784,0.93888,0.00784,0.019808,0.027648,0.095904,0.102208,27.8042,0.11264
+1480,33.1993,30.1211,27.8696,0.069504,0.88144,0.007776,0.004512,0.02848,0.095968,0.096736,26.5707,0.114496
+1481,33.1392,30.1758,28.6114,0.068384,0.955584,0.006976,0.005536,0.027232,0.09536,0.096992,26.9416,0.413696
+1482,34.4364,29.0391,29.27,0.07168,0.94928,0.007136,0.00416,0.028608,0.095392,0.098272,27.9008,0.114688
+1483,33.264,30.0625,27.9409,0.069664,0.890624,0.006368,0.006144,0.028192,0.09472,0.097568,26.634,0.1136
+1484,34.5339,28.957,27.8958,0.069664,0.917472,0.007264,0.00496,0.027936,0.09504,0.097792,26.5627,0.113056
+1485,34.1789,29.2578,29.1485,0.069664,0.917472,0.007584,0.004704,0.028704,0.09568,0.096768,27.8155,0.112448
+1486,33.0749,30.2344,27.9529,0.06816,0.948224,0.006144,0.00576,0.028224,0.0952,0.098144,26.589,0.11408
+1487,34.4225,29.0508,27.9286,0.070688,0.908256,0.007904,0.005472,0.027584,0.096256,0.09744,26.6013,0.113664
+1488,33.7064,29.668,29.2106,0.069664,0.974816,0.006144,0.014336,0.028192,0.094464,0.0976,27.8122,0.113248
+1489,33.3811,29.957,29.0706,0.069152,0.855616,0.006912,0.005536,0.027392,0.095552,0.09696,27.7975,0.116
+1490,32.9345,30.3633,27.9702,0.070368,0.957856,0.006848,0.004096,0.028672,0.095584,0.096928,26.5948,0.11504
+1491,34.4688,29.0117,29.2034,0.068544,0.890048,0.006976,0.005568,0.028224,0.095232,0.097984,27.8961,0.11472
+1492,33.2122,30.1094,27.836,0.069568,0.899136,0.007712,0.004576,0.028224,0.10432,0.097056,26.5107,0.114656
+1493,34.7213,28.8008,27.8663,0.068736,0.862816,0.006432,0.006144,0.028192,0.096224,0.10496,26.5789,0.113952
+1494,34.52,28.9688,29.8893,0.066144,0.882816,0.006176,0.005696,0.028608,0.09616,0.096864,28.594,0.112768
+1495,32.3151,30.9453,27.9286,0.069248,0.91584,0.007744,0.004544,0.028672,0.096256,0.09728,26.5955,0.113536
+1496,28.4476,35.1523,27.8813,0.069632,0.886784,0.007808,0.00448,0.028544,0.095744,0.096928,26.5769,0.114496
+1497,34.3624,29.1016,29.1246,0.068992,0.918144,0.00768,0.004608,0.028672,0.095872,0.09664,27.7914,0.112672
+1498,33.011,30.293,27.8861,0.070208,0.917504,0.007712,0.004576,0.02832,0.094592,0.097472,26.5508,0.114944
+1499,34.2338,29.2109,27.9204,0.069632,0.888608,0.006368,0.006144,0.028,0.09488,0.098208,26.6152,0.113408
+1500,34.367,29.0977,29.1524,0.07072,0.93888,0.006208,0.005824,0.028128,0.095072,0.098304,27.7945,0.114752
+1501,32.8753,30.418,29.3465,0.068256,1.00352,0.007168,0.005088,0.028672,0.101632,0.110944,27.9065,0.114688
+1502,32.5949,30.6797,28.0331,0.069632,0.976896,0.007872,0.004416,0.028544,0.095552,0.097088,26.6383,0.11472
+1503,34.2521,29.1953,29.2541,0.06992,0.995424,0.006208,0.006144,0.028352,0.095744,0.097088,27.8405,0.114688
+1504,32.8584,30.4336,27.8733,0.069632,0.863232,0.00704,0.004224,0.028672,0.100352,0.100352,26.5869,0.112896
+1505,34.5572,28.9375,29.1358,0.068576,0.882656,0.007168,0.00512,0.028384,0.095712,0.097088,27.8376,0.113472
+1506,33.0878,30.2227,29.144,0.069568,0.966688,0.007104,0.004096,0.028672,0.095616,0.096896,27.7607,0.114656
+1507,33.29,30.0391,27.8818,0.068384,0.85808,0.007552,0.004736,0.028672,0.09552,0.096992,26.6076,0.114272
+1508,34.618,28.8867,27.8842,0.070208,0.856224,0.007552,0.004736,0.028064,0.095872,0.09696,26.6112,0.113376
+1509,34.4688,29.0117,29.1033,0.069632,0.898656,0.00656,0.005792,0.026976,0.095968,0.096576,27.7887,0.1144
+1510,32.254,31.0039,27.9184,0.069536,0.933984,0.008064,0.004224,0.04448,0.095968,0.09712,26.5522,0.112768
+1511,35.526,28.1484,27.8711,0.069216,0.85264,0.00784,0.005504,0.027584,0.096096,0.096416,26.6007,0.11504
+1512,33.9928,29.418,29.1695,0.068608,0.98144,0.00672,0.005216,0.027584,0.094176,0.09808,27.7748,0.112864
+1513,32.9303,30.3672,28.3831,0.069632,0.974432,0.006592,0.006048,0.028256,0.094688,0.09792,26.991,0.114528
+1514,34.2292,29.2148,28.6479,0.06848,0.840864,0.007008,0.004096,0.028672,0.11264,0.098016,27.3739,0.11424
+1515,33.2986,30.0312,29.2471,0.069632,1.01581,0.007584,0.004704,0.028672,0.095904,0.09664,27.8139,0.114304
+1516,32.8289,30.4609,28.0311,0.069728,1.01552,0.006816,0.004096,0.028672,0.096192,0.096352,26.5975,0.116288
+1517,34.2567,29.1914,27.9982,0.069568,1.00358,0.007584,0.004704,0.028672,0.095456,0.0968,26.5788,0.113024
+1518,34.2292,29.2148,29.241,0.069152,1.03229,0.006528,0.005376,0.027392,0.096256,0.0976,27.7921,0.114304
+1519,32.888,30.4062,28.0107,0.06896,1.01674,0.007584,0.004704,0.028672,0.09568,0.098016,26.5768,0.113504
+1520,34.2567,29.1914,27.968,0.069728,0.979392,0.007296,0.004928,0.028064,0.094976,0.098208,26.5708,0.114688
+1521,34.6508,28.8594,29.07,0.068288,0.887872,0.007008,0.005536,0.027328,0.096256,0.097632,27.7671,0.113024
+1522,33.0408,30.2656,29.1412,0.069632,0.938208,0.006336,0.005664,0.028032,0.094656,0.096768,27.7893,0.11264
+1523,33.0237,30.2812,27.8367,0.067872,0.897024,0.00752,0.004768,0.028672,0.096256,0.098304,26.5216,0.114688
+1524,34.5526,28.9414,29.0645,0.069664,0.90704,0.006368,0.005536,0.028256,0.095232,0.097696,27.7408,0.11392
+1525,32.1245,31.1289,28.1313,0.071616,1.12234,0.006176,0.006144,0.028192,0.09584,0.097088,26.5892,0.114688
+1526,32.3764,30.8867,29.2168,0.069088,0.99904,0.02752,0.005376,0.027424,0.095584,0.104576,27.7748,0.113312
+1527,34.7448,28.7812,29.1328,0.069312,0.989504,0.008032,0.005504,0.027424,0.096096,0.096416,27.7273,0.113216
+1528,32.5741,30.6992,27.9545,0.069632,0.999136,0.006432,0.005472,0.027296,0.095808,0.096704,26.5394,0.114624
+1529,34.4967,28.9883,27.8961,0.06912,0.926368,0.006272,0.006144,0.028192,0.094688,0.09776,26.5544,0.113152
+1530,34.1424,29.2891,29.1349,0.075776,0.935392,0.006688,0.005152,0.027616,0.096256,0.097696,27.777,0.113312
+1531,32.888,30.4062,27.882,0.069696,0.934016,0.006496,0.006048,0.028192,0.094784,0.097824,26.5303,0.114688
+1532,32.8331,30.457,28.1523,0.06928,1.18253,0.01952,0.005024,0.032672,0.094304,0.096256,26.538,0.114688
+1533,35.526,28.1484,29.182,0.069504,0.947904,0.006592,0.005952,0.028224,0.094848,0.099424,27.8107,0.118784
+1534,32.7408,30.543,29.2594,0.069632,1.00538,0.006336,0.005568,0.0272,0.096128,0.096384,27.8397,0.113056
+1535,32.8247,30.4648,27.8911,0.06944,0.956672,0.007968,0.005504,0.027488,0.095936,0.096672,26.5174,0.113984
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..cfa760c
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,17.3854,57.5358,56.3707,0.0707558,0.843909,0.00765184,0.0059795,0.0293347,55.2962,0.116838
+max_1024,18.0765,67.1797,65.5259,0.088512,2.51728,0.038912,0.033088,0.051264,64.4353,0.508448
+min_1024,14.8855,55.3203,55.0114,0.067552,0.741376,0.006112,0.004096,0.0272,54.0251,0.1128
+512,17.213,58.0957,56.1392,0.067552,1.22806,0.00688,0.005792,0.028352,54.6864,0.116192
+513,17.6436,56.6777,56.5525,0.070688,0.910272,0.007616,0.004672,0.03008,55.4134,0.11584
+514,17.3389,57.6738,56.7323,0.070336,0.868352,0.008032,0.005568,0.027328,55.6372,0.11552
+515,17.2211,58.0684,55.6155,0.071008,0.83984,0.006656,0.015392,0.032992,54.5347,0.114944
+516,17.626,56.7344,56.9569,0.069632,0.860128,0.008064,0.005568,0.029024,55.8698,0.114656
+517,17.2089,58.1094,56.6577,0.0728,0.899072,0.00704,0.005536,0.02848,55.53,0.114816
+518,17.2431,57.9941,55.3015,0.071296,0.86864,0.006208,0.006144,0.028704,54.2044,0.116096
+519,17.8106,56.1465,56.9209,0.06992,0.747296,0.006912,0.00576,0.028512,55.9478,0.11472
+520,17.1421,58.3359,57.0939,0.06976,0.92144,0.008064,0.00528,0.028736,55.9441,0.11648
+521,17.0371,58.6953,55.3904,0.071168,0.866496,0.006464,0.006144,0.028672,54.2963,0.115136
+522,17.7464,56.3496,55.4065,0.06976,0.827328,0.006208,0.006144,0.028672,54.3519,0.116512
+523,17.5631,56.9375,58.0375,0.071232,0.82112,0.006688,0.005984,0.028384,56.9881,0.116
+524,17.0434,58.6738,56.5873,0.07072,0.76464,0.006368,0.006144,0.028704,55.595,0.115712
+525,17.376,57.5508,55.6396,0.069888,0.761344,0.006944,0.005792,0.028672,54.6512,0.115808
+526,17.66,56.625,56.4489,0.069792,0.76944,0.00656,0.006112,0.028672,55.4537,0.114592
+527,17.3014,57.7988,55.5609,0.070112,0.771392,0.007104,0.0056,0.028608,54.5631,0.114976
+528,17.577,56.8926,55.5039,0.071648,0.83152,0.006144,0.006144,0.028672,54.4399,0.11984
+529,17.7144,56.4512,56.82,0.06992,0.760928,0.00704,0.0056,0.028672,55.833,0.11488
+530,16.966,58.9414,56.5003,0.07072,0.803776,0.006176,0.006144,0.028672,55.4701,0.11472
+531,17.6936,56.5176,55.3835,0.06976,0.765952,0.007776,0.005536,0.028704,54.3897,0.116
+532,17.6546,56.6426,56.7521,0.070752,0.796736,0.00704,0.005728,0.029088,55.7261,0.116672
+533,17.2635,57.9258,55.7192,0.070912,0.785152,0.007392,0.004896,0.028672,54.7062,0.115968
+534,17.5842,56.8691,56.74,0.06992,0.812,0.00704,0.005696,0.0288,55.7015,0.115008
+535,17.3618,57.5977,56.7503,0.070272,0.77856,0.007648,0.00464,0.029952,55.7429,0.11632
+536,17.3266,57.7148,56.7146,0.071264,0.764064,0.006368,0.006144,0.028608,55.7221,0.116096
+537,17.3236,57.7246,55.4366,0.071456,0.776416,0.007264,0.005024,0.028672,54.4316,0.116192
+538,17.7316,56.3965,56.5633,0.07088,0.760608,0.00752,0.004768,0.028672,55.5766,0.114304
+539,17.3266,57.7148,55.5582,0.069984,0.810432,0.006752,0.005888,0.028832,54.5216,0.114656
+540,17.6521,56.6504,55.7924,0.070144,0.843616,0.006816,0.00592,0.028544,54.7188,0.11856
+541,17.6078,56.793,56.8914,0.071648,0.766016,0.007488,0.004768,0.028672,55.8979,0.114944
+542,17.2414,58,55.4805,0.069824,0.82704,0.006496,0.006144,0.028576,54.4257,0.116736
+543,17.668,56.5996,56.6965,0.070912,0.8384,0.007712,0.004576,0.028672,55.6312,0.115072
+544,16.8687,59.2812,56.5558,0.069984,0.862176,0.007936,0.0056,0.039712,55.455,0.115456
+545,17.3518,57.6309,55.5915,0.070176,0.892352,0.006848,0.005856,0.028512,54.4711,0.116672
+546,17.5433,57.002,56.742,0.069728,0.941408,0.006816,0.005856,0.029056,55.5744,0.114688
+547,17.3207,57.7344,56.6579,0.070848,0.82176,0.006464,0.006144,0.028672,55.6092,0.114784
+548,17.2979,57.8105,56.6148,0.071456,0.784352,0.0064,0.006144,0.028704,55.6026,0.1152
+549,17.316,57.75,55.5023,0.069664,0.771808,0.006368,0.006144,0.028672,54.5034,0.116192
+550,17.6564,56.6367,56.7463,0.070112,0.811552,0.007328,0.00496,0.028896,55.707,0.116448
+551,17.2449,57.9883,55.3697,0.07136,0.794272,0.006816,0.005504,0.028512,54.3465,0.116704
+552,17.6918,56.5234,56.6032,0.07024,0.871648,0.006944,0.006144,0.028576,55.505,0.114688
+553,17.3966,57.4824,56.8296,0.069984,0.775872,0.007776,0.0056,0.027552,55.8285,0.114368
+554,17.0906,58.5117,55.9022,0.07168,0.788384,0.00624,0.006144,0.028672,54.8844,0.116736
+555,17.6503,56.6562,55.5546,0.07024,0.784384,0.007808,0.005568,0.027776,54.5421,0.116704
+556,17.6333,56.7109,56.6391,0.069696,0.874464,0.007488,0.0048,0.028672,55.5377,0.116288
+557,17.2286,58.043,55.6626,0.07088,0.850464,0.0064,0.006144,0.028704,54.5853,0.114688
+558,17.6509,56.6543,55.2835,0.06976,0.8664,0.006496,0.006176,0.028672,54.1913,0.114752
+559,17.731,56.3984,56.7094,0.071424,0.78272,0.00624,0.006144,0.028672,55.699,0.115168
+560,17.2839,57.8574,55.6882,0.070464,0.775616,0.00688,0.005888,0.028576,54.6859,0.114848
+561,17.64,56.6895,55.6524,0.0696,0.77552,0.006816,0.00592,0.028416,54.6504,0.115744
+562,17.6388,56.6934,57.7788,0.06992,0.769984,0.006496,0.006144,0.028384,56.7787,0.119136
+563,16.8222,59.4453,56.55,0.07024,0.823008,0.006464,0.006112,0.02832,55.5012,0.114688
+564,17.5535,56.9688,55.3165,0.069632,0.763712,0.006336,0.006144,0.028704,54.3269,0.11504
+565,17.7445,56.3555,56.7757,0.070688,0.776288,0.007008,0.005696,0.028704,55.7727,0.114592
+566,17.1789,58.2109,55.4546,0.069952,0.840224,0.008,0.005472,0.028864,54.3874,0.11472
+567,17.8335,56.0742,55.4045,0.07136,0.790848,0.007424,0.004864,0.029696,54.3836,0.116736
+568,17.3172,57.7461,57.8745,0.07008,0.907232,0.007328,0.00496,0.028672,56.7398,0.116384
+569,17.2985,57.8086,55.6914,0.0712,0.77376,0.006976,0.005664,0.028512,54.6904,0.114816
+570,17.6272,56.7305,55.3031,0.068608,0.77616,0.007872,0.0056,0.028608,54.3013,0.114944
+571,17.6857,56.543,55.8064,0.067968,1.0888,0.009056,0.005728,0.030944,54.4872,0.11664
+572,17.5318,57.0391,56.9509,0.07024,0.974688,0.0072,0.013312,0.032704,55.7374,0.115296
+573,17.3254,57.7188,56.9518,0.07168,0.770048,0.007808,0.005536,0.027808,55.9548,0.114112
+574,17.2124,58.0977,56.7537,0.069664,0.792512,0.00752,0.004768,0.028672,55.7333,0.117184
+575,17.2821,57.8633,55.6213,0.070016,0.775744,0.006368,0.006144,0.028672,54.6181,0.116256
+576,17.6394,56.6914,56.7132,0.069632,0.768,0.007232,0.005056,0.028704,55.7195,0.115072
+577,17.3148,57.7539,55.3591,0.071104,0.772672,0.007904,0.005568,0.027712,54.3589,0.1152
+578,17.376,57.5508,55.4988,0.069696,0.849888,0.007968,0.005568,0.028608,54.4203,0.116736
+579,17.97,55.6484,56.8832,0.06864,0.995328,0.009152,0.0056,0.031264,55.6582,0.115008
+580,17.2973,57.8125,56.6974,0.070304,0.81312,0.007264,0.005024,0.028832,55.6574,0.115488
+581,17.3219,57.7305,55.3046,0.069984,0.809216,0.007456,0.004864,0.02864,54.2679,0.116544
+582,17.7556,56.3203,56.654,0.070304,0.80912,0.00624,0.006144,0.028448,55.6196,0.114176
+583,17.2449,57.9883,55.4622,0.069984,0.825056,0.006432,0.006144,0.028672,54.4092,0.116704
+584,17.693,56.5195,55.4541,0.070528,0.80608,0.007104,0.014336,0.034816,54.4051,0.116096
+585,17.7028,56.4883,57.944,0.069824,0.771872,0.007872,0.005568,0.028672,56.9455,0.114688
+586,16.9391,59.0352,55.4395,0.069792,0.843744,0.006144,0.006144,0.028672,54.3703,0.114688
+587,17.6857,56.543,56.736,0.071136,0.835776,0.006784,0.00592,0.028896,55.6722,0.115296
+588,17.3442,57.6562,56.8051,0.071168,0.76848,0.007232,0.005056,0.028672,55.808,0.11648
+589,17.2425,57.9961,55.6396,0.069632,0.905216,0.007744,0.004544,0.028896,54.5073,0.116256
+590,17.5487,56.9844,56.864,0.069728,1.13658,0.007424,0.004832,0.028672,55.4988,0.117984
+591,17.3383,57.6758,56.788,0.07136,0.801056,0.006144,0.006144,0.028672,55.7588,0.115776
+592,17.2507,57.9688,55.3472,0.070816,0.842464,0.006272,0.006176,0.02864,54.2761,0.116736
+593,17.6576,56.6328,56.7827,0.069696,0.820864,0.006944,0.005728,0.028864,55.7345,0.116096
+594,17.3137,57.7578,56.6641,0.071616,0.807008,0.007968,0.005568,0.027584,55.6291,0.115232
+595,17.3689,57.5742,55.5254,0.070752,0.76688,0.007424,0.004896,0.02864,54.5319,0.114944
+596,17.6893,56.5312,56.6169,0.070208,0.751456,0.006464,0.006176,0.028608,55.6378,0.11616
+597,17.2915,57.832,56.7524,0.069856,0.827392,0.006176,0.005824,0.02848,55.6956,0.11904
+598,17.2786,57.875,55.3924,0.071456,0.8048,0.006432,0.006144,0.028672,54.358,0.116864
+599,17.7126,56.457,56.791,0.070048,0.79872,0.007584,0.004704,0.028736,55.7649,0.11632
+600,17.1881,58.1797,56.8545,0.070848,0.856896,0.007392,0.004896,0.028672,55.7711,0.114688
+601,17.2228,58.0625,55.8346,0.071648,0.923168,0.006624,0.006016,0.028704,54.6817,0.116704
+602,17.5571,56.957,55.5191,0.071072,0.782112,0.006976,0.005728,0.028832,54.5078,0.116608
+603,17.5499,56.9805,56.981,0.069952,0.872224,0.006336,0.006144,0.028672,55.8817,0.115936
+604,17.3301,57.7031,55.4453,0.069728,0.753728,0.007456,0.0048,0.028704,54.4645,0.116416
+605,17.7187,56.4375,56.7092,0.069664,0.75328,0.006528,0.006144,0.02864,55.7279,0.117024
+606,17.3008,57.8008,56.8986,0.069728,0.773824,0.006368,0.006144,0.028672,55.8981,0.115744
+607,17.2518,57.9648,56.6231,0.071104,0.763872,0.006752,0.00592,0.028608,55.6322,0.114688
+608,17.3571,57.6133,55.5361,0.069152,0.751584,0.00704,0.005632,0.028928,54.5587,0.115104
+609,17.6139,56.7734,56.8013,0.071104,0.801216,0.006272,0.006144,0.028672,55.773,0.11488
+610,17.253,57.9609,55.4279,0.078368,0.825216,0.00656,0.006144,0.028576,54.3675,0.115552
+611,17.7482,56.3438,56.5969,0.071776,0.784672,0.00752,0.004768,0.028704,55.5843,0.115168
+612,17.3242,57.7227,56.4704,0.069728,0.779072,0.007968,0.005536,0.028512,55.4667,0.112928
+613,17.4102,57.4375,56.5251,0.070368,0.761888,0.007648,0.00464,0.029664,55.1425,0.508448
+614,17.383,57.5273,55.1915,0.07136,0.780096,0.006624,0.005984,0.028288,54.1836,0.11552
+615,17.8075,56.1562,56.767,0.070272,0.751584,0.007424,0.004864,0.028768,55.7885,0.115552
+616,17.2681,57.9102,55.6366,0.070176,0.81312,0.007296,0.004992,0.028704,54.5975,0.114752
+617,17.5619,56.9414,56.9507,0.070976,0.870528,0.00672,0.005952,0.028608,55.8513,0.116672
+618,17.3125,57.7617,56.601,0.069984,0.7496,0.007584,0.004704,0.028832,55.6256,0.114688
+619,17.2681,57.9102,56.7932,0.07088,0.87536,0.006176,0.006144,0.028672,55.6911,0.114784
+620,17.2611,57.9336,55.3471,0.0696,0.813056,0.007616,0.004672,0.0288,54.3087,0.114656
+621,17.7827,56.2344,56.7031,0.070592,0.776192,0.007872,0.005568,0.027552,55.6995,0.11584
+622,17.2518,57.9648,55.6728,0.071648,0.78784,0.006784,0.005888,0.02832,54.6556,0.116768
+623,17.5547,56.9648,55.9253,0.0704,0.885792,0.007104,0.005568,0.028384,54.8115,0.116512
+624,17.5439,57,57.6798,0.069856,0.86016,0.007328,0.00496,0.03072,56.59,0.116704
+625,17.0337,58.707,56.6992,0.070112,0.753088,0.00672,0.005952,0.028512,55.72,0.114784
+626,17.2379,58.0117,55.4067,0.070912,0.827328,0.007072,0.0144,0.030688,54.341,0.11536
+627,17.7716,56.2695,56.7263,0.069856,0.764544,0.007584,0.004704,0.028672,55.7363,0.114656
+628,17.1789,58.2109,55.5904,0.07104,0.791456,0.00784,0.005568,0.0296,54.5669,0.117952
+629,17.6918,56.5234,55.4856,0.071488,0.796832,0.006176,0.020032,0.028704,54.4404,0.122048
+630,17.6394,56.6914,56.7996,0.06992,0.777216,0.007104,0.005536,0.028832,55.7961,0.114816
+631,17.2263,58.0508,55.4697,0.070016,0.821248,0.007552,0.014304,0.028352,54.4134,0.11488
+632,17.5535,56.9688,56.4429,0.069632,1.15206,0.007104,0.0056,0.0288,55.0629,0.116736
+633,17.1444,58.3281,56.8647,0.07728,0.942304,0.006752,0.00592,0.028896,55.6887,0.11488
+634,17.5031,57.1328,55.7383,0.071104,0.920128,0.008064,0.013824,0.028544,54.5815,0.115168
+635,17.5403,57.0117,55.5136,0.070176,0.88992,0.007072,0.0056,0.028384,54.3978,0.114688
+636,17.6102,56.7852,57.133,0.07584,0.972416,0.006816,0.00528,0.027616,55.9287,0.116352
+637,17.1112,58.4414,55.7594,0.070528,1.02605,0.008032,0.005568,0.028576,54.5043,0.116352
+638,17.731,56.3984,55.4051,0.070592,0.753568,0.00624,0.006144,0.028672,54.4235,0.116384
+639,17.603,56.8086,57.0552,0.069632,0.886688,0.00624,0.006144,0.028512,55.9446,0.11344
+640,17.0826,58.5391,55.5782,0.07168,0.909184,0.015712,0.005984,0.028928,54.4297,0.116992
+641,17.6236,56.7422,55.8042,0.06992,0.92368,0.007552,0.004704,0.028704,54.6529,0.116736
+642,17.5306,57.043,58.1115,0.081856,0.771296,0.006976,0.005696,0.028672,57.1024,0.114592
+643,16.7484,59.707,55.6834,0.070176,0.828736,0.006848,0.005856,0.028544,54.6263,0.116864
+644,17.1893,58.1758,57.055,0.071456,0.991424,0.008032,0.005536,0.033536,55.8285,0.116512
+645,17.5234,57.0664,56.8979,0.070432,0.860256,0.007648,0.00464,0.028704,55.8111,0.115136
+646,17.2055,58.1211,55.4844,0.07136,0.921952,0.008032,0.005568,0.028352,54.3322,0.11696
+647,17.6735,56.582,55.4052,0.07024,0.827392,0.007552,0.014208,0.02944,54.3407,0.115584
+648,17.6735,56.582,57.1372,0.07104,0.88128,0.006144,0.006144,0.028672,56.0292,0.11472
+649,17.1754,58.2227,55.6216,0.070976,0.870656,0.006592,0.006048,0.028768,54.5235,0.115072
+650,17.6467,56.668,55.5049,0.069632,0.82048,0.006912,0.005728,0.028704,54.4587,0.114752
+651,17.5969,56.8281,56.5684,0.070496,0.878432,0.006304,0.006144,0.028672,55.4629,0.115424
+652,17.274,57.8906,55.5684,0.07152,0.866464,0.006144,0.02048,0.028832,54.4603,0.114688
+653,17.7089,56.4688,55.4951,0.070112,0.830848,0.016864,0.0056,0.028416,54.4278,0.11552
+654,17.6139,56.7734,56.9607,0.069632,0.945504,0.006816,0.005824,0.028736,55.7893,0.114944
+655,17.3008,57.8008,55.4758,0.070912,0.76368,0.007136,0.005632,0.028992,54.4822,0.117216
+656,17.6564,56.6367,55.2799,0.06992,0.741376,0.006688,0.005952,0.028608,54.311,0.116352
+657,17.6127,56.7773,56.8899,0.070144,0.90112,0.007456,0.012992,0.028704,55.7548,0.11472
+658,17.3078,57.7773,55.6542,0.069952,0.749216,0.006912,0.005824,0.02848,54.6792,0.114624
+659,17.6309,56.7188,55.6318,0.070336,0.776192,0.008192,0.005536,0.028704,54.6269,0.115936
+660,17.5848,56.8672,56.8459,0.071616,0.770112,0.007872,0.0056,0.028832,55.847,0.114848
+661,17.2275,58.0469,56.9092,0.071232,0.826848,0.007104,0.005568,0.02848,55.8538,0.116192
+662,17.2263,58.0508,55.6116,0.069056,0.837696,0.00688,0.00576,0.02848,54.5491,0.114688
+663,17.5427,57.0039,56.9207,0.070304,0.86016,0.02192,0.005984,0.028416,55.807,0.126976
+664,17.2078,58.1133,55.593,0.06976,0.76992,0.007552,0.012928,0.028672,54.5888,0.115296
+665,17.5571,56.957,55.7525,0.070208,0.906848,0.00656,0.006112,0.028416,54.6184,0.115936
+666,17.3701,57.5703,58.3537,0.069632,0.816768,0.006528,0.006112,0.02832,57.3109,0.115392
+667,17.0179,58.7617,56.7233,0.0824,0.759808,0.007328,0.00496,0.028672,55.724,0.116096
+668,17.0633,58.6055,55.7978,0.070976,0.862912,0.008064,0.005568,0.028544,54.705,0.116768
+669,17.5055,57.125,56.9242,0.069632,0.921312,0.015808,0.005984,0.028736,55.7568,0.12592
+670,17.4363,57.3516,55.5215,0.069824,0.784416,0.007872,0.005536,0.028608,54.5085,0.116736
+671,17.6248,56.7383,55.806,0.069696,0.786432,0.007264,0.005024,0.0288,54.7921,0.116736
+672,17.5619,56.9414,57.9564,0.07168,0.775328,0.007008,0.005696,0.02864,56.9513,0.116704
+673,16.8432,59.3711,56.8928,0.070784,0.840032,0.00672,0.005984,0.02864,55.8246,0.116032
+674,17.0224,58.7461,55.4291,0.069632,0.843392,0.006528,0.006112,0.028704,54.358,0.116736
+675,18.0332,55.4531,56.7009,0.071488,0.788672,0.00624,0.006048,0.028672,55.6851,0.114688
+676,17.2996,57.8047,56.6235,0.070048,0.806208,0.006592,0.005568,0.028672,55.5916,0.11488
+677,17.2973,57.8125,55.4151,0.06992,0.770048,0.007328,0.00496,0.028736,54.4194,0.11472
+678,17.7187,56.4375,57.0305,0.071232,0.768448,0.0072,0.005088,0.028704,56.0327,0.117184
+679,17.2588,57.9414,55.382,0.071168,0.767648,0.007008,0.005696,0.028704,54.3871,0.114752
+680,17.7445,56.3555,56.2036,0.0696,0.780672,0.007648,0.00464,0.029952,54.9548,0.356352
+681,17.3477,57.6445,57.1171,0.070304,1.24707,0.007872,0.005536,0.031104,55.6403,0.114912
+682,17.302,57.7969,56.6892,0.070144,0.77216,0.007712,0.004576,0.029984,55.6898,0.114816
+683,17.3242,57.7227,55.5299,0.06992,0.780544,0.007392,0.004896,0.028704,54.5234,0.11504
+684,17.6127,56.7773,56.8465,0.069824,0.78368,0.006848,0.00576,0.028928,55.8368,0.114656
+685,17.2518,57.9648,55.4633,0.069824,0.792512,0.007648,0.00464,0.029952,54.4427,0.116
+686,17.6515,56.6523,56.7917,0.0704,0.873632,0.007008,0.005792,0.028704,55.6912,0.115008
+687,17.3195,57.7383,56.7458,0.071168,0.7808,0.007744,0.0056,0.028928,55.7366,0.114944
+688,17.2681,57.9102,56.7011,0.069856,0.841664,0.006176,0.006144,0.028672,55.6339,0.114688
+689,17.3008,57.8008,55.6607,0.070432,0.818208,0.007136,0.005568,0.028736,54.6145,0.116128
+690,17.5127,57.1016,56.8279,0.069856,0.844928,0.006816,0.005824,0.02832,55.7591,0.113056
+691,17.3137,57.7578,55.6253,0.071264,0.79504,0.007968,0.005568,0.02752,54.6008,0.117152
+692,17.5836,56.8711,56.5759,0.070816,0.928608,0.008096,0.004192,0.028672,55.4189,0.116608
+693,17.3783,57.543,56.9324,0.069664,0.788448,0.00784,0.004448,0.028832,55.9195,0.1136
+694,17.1881,58.1797,56.6831,0.070176,0.805184,0.007488,0.0048,0.028736,55.6498,0.11696
+695,17.2542,57.957,55.4251,0.070144,0.797952,0.00688,0.005792,0.028544,54.3995,0.116352
+696,17.7212,56.4297,56.8151,0.071648,0.798752,0.007712,0.004576,0.02976,55.7878,0.114848
+697,17.2484,57.9766,55.4291,0.071712,0.769952,0.006208,0.006144,0.028672,54.4311,0.115328
+698,17.7864,56.2227,56.8819,0.069952,0.805312,0.00784,0.005536,0.028832,55.8494,0.11504
+699,17.2635,57.9258,55.5909,0.071552,0.76608,0.007296,0.004992,0.028672,54.5966,0.11568
+700,17.6418,56.6836,56.4447,0.070144,0.802816,0.00784,0.005568,0.029024,55.4144,0.114912
+701,17.4197,57.4062,57.7515,0.071648,0.751392,0.006368,0.006144,0.028672,56.7726,0.11472
+702,16.9178,59.1094,55.6843,0.07168,0.894944,0.007584,0.004704,0.028736,54.5587,0.117952
+703,17.1835,58.1953,56.7173,0.070784,0.854304,0.006752,0.005984,0.028832,55.636,0.114656
+704,17.5174,57.0859,57.1086,0.069984,0.943904,0.007808,0.0056,0.0432,55.9234,0.114688
+705,17.2868,57.8477,55.8483,0.071008,0.821952,0.006144,0.006144,0.036256,54.7887,0.11808
+706,17.6078,56.793,55.4189,0.069696,0.780288,0.007552,0.004736,0.028672,54.4113,0.116736
+707,17.6515,56.6523,56.7388,0.069632,0.839712,0.007872,0.005568,0.028512,55.6718,0.115712
+708,17.3348,57.6875,55.7344,0.069856,0.76384,0.007488,0.0048,0.028704,54.7442,0.115552
+709,17.5704,56.9141,57.0695,0.0696,0.800096,0.006816,0.00592,0.028768,56.0416,0.116736
+710,17.0769,58.5586,57.0614,0.071072,0.88448,0.007008,0.005696,0.037312,55.9401,0.115712
+711,17.157,58.2852,55.8203,0.069632,0.905248,0.007264,0.004992,0.028672,54.6895,0.114944
+712,17.2996,57.8047,55.5087,0.069952,0.893216,0.007552,0.004736,0.028736,54.3887,0.115872
+713,17.8808,55.9258,57.0778,0.071712,0.907232,0.02448,0.005568,0.028704,55.9244,0.115712
+714,17.2856,57.8516,55.4639,0.070752,0.789408,0.007648,0.00464,0.028672,54.4472,0.115616
+715,17.5583,56.9531,55.6744,0.070912,0.88528,0.006592,0.006144,0.028672,54.5608,0.116064
+716,17.533,57.0352,56.9709,0.069792,0.870016,0.006368,0.006144,0.028256,55.8672,0.123104
+717,17.1974,58.1484,55.7478,0.071264,0.90368,0.008096,0.005568,0.028576,54.6146,0.116096
+718,17.5031,57.1328,55.6708,0.071328,0.954752,0.008,0.0056,0.028672,54.4868,0.115744
+719,17.5583,56.9531,56.8669,0.069504,0.862912,0.00624,0.006144,0.028672,55.7787,0.114784
+720,17.1089,58.4492,55.5355,0.070048,0.835552,0.02368,0.004992,0.033856,54.451,0.116384
+721,17.6199,56.7539,55.6183,0.070368,0.808192,0.00688,0.00576,0.028672,54.583,0.11536
+722,17.5415,57.0078,56.9467,0.071552,0.901248,0.008192,0.00592,0.028352,55.8166,0.114816
+723,17.2147,58.0898,55.4946,0.07008,0.832896,0.007136,0.005568,0.039552,54.4232,0.11616
+724,17.6248,56.7383,55.468,0.071008,0.869024,0.008032,0.014016,0.037344,54.3537,0.114912
+725,17.5993,56.8203,56.984,0.070208,0.898944,0.007488,0.0048,0.028736,55.8591,0.114688
+726,17.2193,58.0742,55.5341,0.070208,0.829472,0.007648,0.004608,0.044576,54.4609,0.116736
+727,17.5921,56.8438,55.7355,0.07904,0.87936,0.006176,0.006144,0.043008,54.6059,0.115904
+728,17.5776,56.8906,56.803,0.071232,0.85568,0.006944,0.005728,0.02864,55.7183,0.116416
+729,17.202,58.1328,55.5067,0.069888,0.886816,0.00736,0.004896,0.028672,54.3928,0.116256
+730,17.6942,56.5156,55.7353,0.070784,0.848768,0.007328,0.00496,0.028704,54.6586,0.116128
+731,17.6637,56.6133,56.8688,0.070208,0.7704,0.006144,0.006144,0.028672,55.8728,0.1144
+732,17.295,57.8203,55.2591,0.07088,0.772352,0.006656,0.005984,0.028576,54.2595,0.115136
+733,17.7654,56.2891,55.2632,0.069664,0.761824,0.007392,0.004896,0.02864,54.2761,0.114688
+734,17.6333,56.7109,56.7538,0.070784,0.879488,0.007808,0.012672,0.032576,55.6341,0.11632
+735,17.3748,57.5547,55.4783,0.071712,0.759552,0.006368,0.006144,0.028672,54.4891,0.116736
+736,17.6649,56.6094,55.3552,0.069824,0.884608,0.008,0.005568,0.028608,54.2432,0.11536
+737,17.7679,56.2812,56.8443,0.069632,0.804832,0.00736,0.004928,0.028672,55.8141,0.114688
+738,17.1455,58.3242,55.5453,0.07104,0.918112,0.007392,0.004896,0.028672,54.398,0.117248
+739,17.7322,56.3945,55.7855,0.069632,0.839168,0.006656,0.006016,0.028768,54.7197,0.11552
+740,17.5174,57.0859,56.5105,0.07152,0.78864,0.008,0.005568,0.028736,55.4933,0.114688
+741,17.3571,57.6133,55.4997,0.0704,0.798944,0.00736,0.004896,0.028672,54.4747,0.114752
+742,17.6394,56.6914,56.6422,0.07024,0.792608,0.00768,0.004608,0.028832,55.6215,0.116736
+743,17.3008,57.8008,56.7926,0.069632,0.831488,0.007552,0.004736,0.028672,55.7356,0.114912
+744,17.2658,57.918,55.4714,0.070816,0.794496,0.007104,0.005568,0.02928,54.4481,0.116
+745,17.1939,58.1602,55.9356,0.0824,0.970176,0.017056,0.0056,0.028512,54.7171,0.114688
+746,17.5655,56.9297,56.6329,0.07168,0.787936,0.006688,0.005984,0.028768,55.6156,0.11632
+747,17.336,57.6836,55.228,0.070112,0.79024,0.006432,0.006144,0.029856,54.2093,0.115904
+748,17.8124,56.1406,55.6892,0.071264,0.850368,0.00736,0.004896,0.038912,54.6013,0.115072
+749,17.682,56.5547,58.1131,0.071104,0.767872,0.006848,0.005696,0.02864,57.1168,0.116192
+750,16.8599,59.3125,55.722,0.070656,0.815904,0.006368,0.006144,0.028512,54.6797,0.114688
+751,17.5342,57.0312,55.6626,0.082176,0.856064,0.008032,0.005568,0.028544,54.567,0.115232
+752,17.6832,56.5508,56.6745,0.070112,0.771968,0.007648,0.00464,0.029728,55.6754,0.115072
+753,17.1835,58.1953,55.4906,0.071008,0.830112,0.007392,0.014176,0.031712,54.4214,0.114784
+754,17.8435,56.043,55.5788,0.070112,0.81824,0.006912,0.00576,0.02864,54.5282,0.120896
+755,17.5679,56.9219,57.2764,0.071296,1.11187,0.008736,0.006144,0.031968,55.9317,0.11472
+756,17.1043,58.4648,55.3519,0.070368,0.753696,0.007936,0.005568,0.027424,54.3703,0.116608
+757,17.6127,56.7773,56.8847,0.070784,0.890752,0.023552,0.005632,0.041504,55.7276,0.124832
+758,16.3788,61.0547,56.7726,0.079712,0.968864,0.00768,0.004608,0.0288,55.5675,0.115456
+759,17.5306,57.043,56.8611,0.070048,0.858016,0.00624,0.006144,0.044992,55.7548,0.1208
+760,16.4092,60.9414,59.1486,0.06944,0.81152,0.007232,0.005056,0.028672,58.11,0.116704
+761,16.7924,59.5508,60.602,0.069632,0.796672,0.007328,0.00496,0.028672,59.5802,0.114496
+762,16.2148,61.6719,56.8361,0.071072,0.860768,0.007488,0.0048,0.028704,55.7486,0.114688
+763,17.9574,55.6875,56.4604,0.07168,0.837664,0.007872,0.005568,0.02864,55.3932,0.11584
+764,17.2402,58.0039,55.4251,0.069728,0.891936,0.007104,0.005568,0.028608,54.3068,0.115424
+765,17.7261,56.4141,55.3812,0.071104,0.888928,0.006624,0.00592,0.028736,54.264,0.115968
+766,17.7077,56.4727,56.742,0.070336,0.764096,0.0072,0.005088,0.028672,55.7523,0.114304
+767,17.3336,57.6914,55.6721,0.069632,0.80896,0.00768,0.00464,0.029664,54.6355,0.116032
+768,17.6248,56.7383,55.6687,0.071136,0.825056,0.006976,0.005664,0.028832,54.6143,0.116736
+769,17.6114,56.7812,56.815,0.070976,0.806816,0.007104,0.00576,0.028768,55.7796,0.115904
+770,17.2658,57.918,55.4823,0.069664,0.765792,0.006272,0.006144,0.028672,54.4891,0.11664
+771,17.6454,56.6719,56.5985,0.071008,0.826016,0.00768,0.004608,0.028928,55.5374,0.12288
+772,17.3878,57.5117,56.7486,0.071488,0.77664,0.006496,0.006112,0.02848,55.7447,0.114688
+773,17.2891,57.8398,55.6339,0.0696,0.77824,0.007552,0.004736,0.028672,54.6299,0.1152
+774,17.5993,56.8203,55.4788,0.070592,0.781824,0.006656,0.006016,0.028544,54.4689,0.11632
+775,17.6552,56.6406,56.9407,0.069824,0.867648,0.006848,0.005856,0.028736,55.8387,0.123168
+776,17.2425,57.9961,55.7161,0.070368,0.851904,0.006144,0.006144,0.028672,54.6365,0.116352
+777,17.5655,56.9297,55.6997,0.06992,0.828896,0.006656,0.006112,0.028192,54.6447,0.115232
+778,17.6357,56.7031,56.7648,0.070016,0.792576,0.007232,0.005056,0.028672,55.7461,0.115168
+779,17.2449,57.9883,55.6933,0.07072,0.824256,0.00752,0.004768,0.030176,54.6412,0.114688
+780,17.6066,56.7969,55.5416,0.071232,0.854464,0.007584,0.004672,0.028672,54.4584,0.11664
+781,17.7568,56.3164,56.8565,0.07088,0.764672,0.007424,0.004896,0.028672,55.8646,0.115392
+782,17.2101,58.1055,55.4557,0.070976,0.84448,0.014368,0.006112,0.028672,54.3744,0.116704
+783,17.1916,58.168,55.8228,0.070656,0.935488,0.014272,0.004608,0.028832,54.6539,0.115136
+784,18.06,55.3711,56.8482,0.068448,0.767776,0.00624,0.006144,0.028672,55.8551,0.11584
+785,17.1939,58.1602,55.5418,0.070976,0.815488,0.006464,0.006144,0.04096,54.4867,0.11504
+786,17.7976,56.1875,56.7752,0.070144,0.7672,0.006976,0.005664,0.02896,55.7815,0.114688
+787,16.881,59.2383,55.5617,0.071296,0.842112,0.008,0.005536,0.028512,54.4902,0.116032
+788,18.0511,55.3984,56.9834,0.070176,0.787456,0.007008,0.005664,0.029024,55.9678,0.116192
+789,17.2263,58.0508,55.4107,0.071008,0.823936,0.007808,0.005536,0.02768,54.3592,0.11552
+790,17.5836,56.8711,55.382,0.070912,0.929824,0.01504,0.006144,0.028896,54.2155,0.115648
+791,17.758,56.3125,58.1863,0.07024,0.816896,0.0064,0.006144,0.02864,57.1433,0.114688
+792,16.8277,59.4258,55.8647,0.071232,0.802656,0.006752,0.005824,0.028416,54.8331,0.116704
+793,17.4031,57.4609,56.3018,0.070304,1.4864,0.006592,0.006112,0.028608,54.589,0.114816
+794,17.6369,56.6992,56.8481,0.06976,0.78016,0.008,0.005568,0.0288,55.8406,0.115168
+795,17.267,57.9141,55.6129,0.06976,0.779584,0.006688,0.005984,0.028768,54.6072,0.11488
+796,17.6942,56.5156,55.4246,0.071104,0.807488,0.007552,0.004736,0.028672,54.3887,0.11632
+797,17.6503,56.6562,56.7011,0.06976,0.806912,0.007456,0.004832,0.028672,55.6681,0.115296
+798,17.3465,57.6484,56.6132,0.070272,0.769792,0.00672,0.005952,0.028512,55.6158,0.116096
+799,17.3418,57.6641,55.6915,0.069312,0.789184,0.00624,0.006144,0.028672,54.6768,0.115136
+800,17.6369,56.6992,56.71,0.070528,0.782336,0.007872,0.004448,0.02864,55.7006,0.115616
+801,17.3043,57.7891,55.6326,0.070336,0.856064,0.007904,0.005568,0.0288,54.5487,0.115168
+802,17.5222,57.0703,56.875,0.069824,0.806688,0.007744,0.004576,0.02976,55.8415,0.11488
+803,17.3207,57.7344,56.7012,0.069856,0.79872,0.007264,0.005024,0.028672,55.6769,0.11472
+804,17.2938,57.8242,55.4553,0.071072,0.794528,0.006816,0.005888,0.028352,54.4303,0.118336
+805,17.6686,56.5977,56.8219,0.06992,0.865984,0.006464,0.006144,0.028576,55.7293,0.115488
+806,17.343,57.6602,56.7405,0.070272,0.77536,0.007008,0.005792,0.028608,55.7388,0.114752
+807,17.2565,57.9492,55.6462,0.070912,0.775968,0.007136,0.005536,0.02848,54.6434,0.114816
+808,17.6857,56.543,55.8553,0.07008,0.771872,0.007648,0.004608,0.028672,54.8568,0.115616
+809,17.4268,57.3828,57.1749,0.070496,1.35782,0.00736,0.004928,0.030816,55.5888,0.114688
+810,17.3125,57.7617,55.3676,0.070176,0.77008,0.007808,0.005568,0.027744,54.3701,0.116128
+811,17.7433,56.3594,56.4418,0.070144,0.770176,0.006432,0.006144,0.028672,55.4467,0.113536
+812,17.3477,57.6445,56.6333,0.070944,0.841728,0.00688,0.005792,0.028768,55.5645,0.114688
+813,17.2008,58.1367,55.6494,0.07168,0.94208,0.007552,0.004736,0.028896,54.4786,0.115872
+814,17.5752,56.8984,56.6374,0.071264,0.84624,0.007456,0.004832,0.028672,55.564,0.114976
+815,17.26,57.9375,56.8418,0.069632,0.860192,0.007616,0.012832,0.032768,55.7425,0.11632
+816,17.2437,57.9922,55.7448,0.06992,0.931488,0.006464,0.006144,0.028672,54.5873,0.114784
+817,17.6722,56.5859,56.6654,0.071552,0.764,0.007392,0.004896,0.028704,55.674,0.114848
+818,17.295,57.8203,56.5121,0.070912,0.772864,0.007584,0.004704,0.028672,55.5131,0.114272
+819,17.2961,57.8164,55.3569,0.07168,0.8704,0.007296,0.005024,0.02864,54.2569,0.11696
+820,17.7704,56.2734,56.9113,0.071136,0.805376,0.007296,0.004992,0.028672,55.8776,0.116224
+821,17.2251,58.0547,56.5936,0.07152,0.776128,0.006368,0.006176,0.02864,55.5904,0.1144
+822,17.1777,58.2148,55.6333,0.07088,0.812896,0.007072,0.005568,0.028704,54.5934,0.114784
+823,17.8634,55.9805,55.52,0.070624,0.761344,0.006464,0.006144,0.028544,54.5302,0.116736
+824,17.6893,56.5312,57.6266,0.06976,0.776064,0.007648,0.00464,0.028736,56.6231,0.11664
+825,16.9896,58.8594,55.5561,0.07136,0.800288,0.006912,0.005856,0.02896,54.5273,0.115424
+826,17.6491,56.6602,56.7932,0.069888,0.763648,0.008,0.005568,0.028672,55.7984,0.118976
+827,17.1593,58.2773,56.8455,0.071328,0.774496,0.007296,0.004992,0.028672,55.8439,0.114784
+828,17.4387,57.3438,55.3843,0.070208,0.813056,0.008192,0.0056,0.02896,54.3419,0.116384
+829,17.6381,56.6953,56.9695,0.07104,0.865248,0.008,0.005568,0.028448,55.8777,0.113504
+830,17.1893,58.1758,56.7726,0.075776,0.921568,0.007392,0.004928,0.028672,55.6187,0.115552
+831,17.3665,57.582,55.5215,0.070528,0.763904,0.006144,0.006144,0.028672,54.53,0.116096
+832,17.6211,56.75,56.9714,0.06992,0.81232,0.00688,0.005824,0.02848,55.9314,0.116576
+833,17.2437,57.9922,56.8203,0.069856,0.807008,0.006656,0.005984,0.02848,55.7858,0.116512
+834,17.1997,58.1406,55.4748,0.070272,0.817152,0.008128,0.005568,0.028864,54.4281,0.116704
+835,17.5439,57,56.9631,0.071648,0.985088,0.007296,0.005024,0.038336,55.741,0.11472
+836,17.1812,58.2031,56.7255,0.0696,0.898208,0.007008,0.005664,0.028288,55.602,0.114688
+837,16.9323,59.0586,56.0024,0.071104,0.897568,0.007264,0.005056,0.030592,54.8757,0.115104
+838,17.7199,56.4336,56.1959,0.070464,1.45411,0.007904,0.005568,0.028608,54.5137,0.115488
+839,17.5655,56.9297,56.9778,0.070016,0.93184,0.006272,0.006016,0.028672,55.8215,0.11344
+840,17.1306,58.375,55.904,0.07168,0.858112,0.02048,0.006144,0.028672,54.8024,0.116448
+841,17.521,57.0742,55.5951,0.069888,0.810016,0.007104,0.005536,0.028736,54.5572,0.116544
+842,17.5523,56.9727,56.8548,0.06992,0.92336,0.006464,0.006112,0.028512,55.7051,0.115392
+843,17.2623,57.9297,55.7609,0.069632,0.96848,0.006368,0.006176,0.028224,54.5663,0.11568
+844,17.3972,57.4805,55.7097,0.07552,0.798208,0.006912,0.005728,0.028736,54.6779,0.116736
+845,16.9649,58.9453,58.2289,0.070528,0.902432,0.00688,0.00576,0.043392,57.0852,0.114624
+846,17.4363,57.3516,55.4232,0.069856,0.89904,0.0072,0.00512,0.02864,54.298,0.115264
+847,17.6613,56.6211,56.7376,0.069632,1.09274,0.00704,0.012288,0.030368,55.4088,0.116736
+848,17.2472,57.9805,57.0952,0.07136,0.92784,0.006368,0.006144,0.028672,55.9388,0.116
+849,17.1939,58.1602,55.5459,0.070752,0.825376,0.00704,0.005664,0.028512,54.4934,0.115072
+850,17.5571,56.957,55.7292,0.069664,0.871392,0.006144,0.006144,0.028704,54.616,0.131072
+851,17.4971,57.1523,57.0225,0.071168,0.932544,0.007392,0.004896,0.036864,55.8551,0.114528
+852,17.1272,58.3867,56.0681,0.070784,1.03926,0.006112,0.006144,0.028672,54.8004,0.116736
+853,17.288,57.8438,57.3039,0.070432,0.911456,0.00752,0.004768,0.028672,56.1603,0.120832
+854,17.3595,57.6055,57.2211,0.069856,0.86608,0.007488,0.004832,0.02864,56.1295,0.114688
+855,16.9559,58.9766,55.5988,0.07008,0.902624,0.006592,0.00608,0.02848,54.4684,0.116512
+856,17.841,56.0508,55.5487,0.07024,0.837824,0.006144,0.006176,0.02864,54.4844,0.115232
+857,17.7482,56.3438,57.7782,0.069664,0.859296,0.007008,0.005824,0.03088,56.6926,0.11296
+858,16.6602,60.0234,57.0163,0.071008,0.81168,0.007872,0.005568,0.02752,55.978,0.114656
+859,16.7102,59.8438,55.858,0.06992,1.03043,0.006368,0.005952,0.028544,54.6017,0.11504
+860,17.9335,55.7617,57.0127,0.07024,0.898912,0.00752,0.004768,0.028672,55.8836,0.118976
+861,17.2646,57.9219,55.5738,0.0712,0.859968,0.00672,0.012288,0.0288,54.4787,0.116064
+862,17.6857,56.543,55.3999,0.071008,0.840352,0.007648,0.00464,0.029696,54.3303,0.116288
+863,17.5091,57.1133,58.0568,0.069376,0.905472,0.007328,0.00496,0.028672,56.9214,0.119552
+864,17.0519,58.6445,56.2374,0.07104,0.756352,0.007488,0.0048,0.028832,55.2171,0.151744
+865,17.396,57.4844,55.748,0.069632,0.884704,0.007936,0.012544,0.02992,54.6271,0.116192
+866,17.6881,56.5352,56.5919,0.069824,0.75536,0.006592,0.00608,0.028736,55.6113,0.113984
+867,17.3406,57.668,55.4496,0.071008,0.77648,0.006496,0.006144,0.028704,54.439,0.121696
+868,17.5691,56.918,55.8403,0.069824,0.899072,0.007328,0.00496,0.044288,54.6981,0.116704
+869,17.4911,57.1719,56.8074,0.083808,0.804608,0.00656,0.006144,0.028512,55.7624,0.11536
+870,17.2891,57.8398,56.8273,0.069632,0.915648,0.007296,0.00496,0.028672,55.6851,0.116
+871,16.6255,60.1484,57.0004,0.070432,0.869408,0.00704,0.005568,0.028736,55.9041,0.115072
+872,17.7852,56.2266,57.0383,0.069824,0.90912,0.008192,0.005568,0.029088,55.9003,0.11616
+873,16.8654,59.293,56.691,0.0696,0.849888,0.01584,0.005056,0.028672,55.6052,0.116672
+874,17.6552,56.6406,56.99,0.070016,0.804736,0.006272,0.006144,0.028672,55.9575,0.116704
+875,17.1697,58.2422,55.6757,0.070432,0.886016,0.006912,0.014144,0.028384,54.5547,0.115072
+876,17.6808,56.5586,56.731,0.069664,0.777568,0.006784,0.005856,0.028896,55.7274,0.114912
+877,17.2623,57.9297,56.8566,0.07152,0.80912,0.007712,0.004576,0.028672,55.8202,0.114784
+878,17.1616,58.2695,55.6436,0.07008,0.773952,0.006336,0.006144,0.028672,54.6427,0.115744
+879,17.6576,56.6328,56.8894,0.07104,0.759904,0.006752,0.00592,0.02832,55.9039,0.113536
+880,17.2414,58,55.7031,0.071296,0.76016,0.007872,0.005568,0.028736,54.7143,0.115136
+881,17.6345,56.707,55.6175,0.071392,0.801056,0.007904,0.0056,0.028768,54.5872,0.115648
+882,17.1593,58.2773,58.184,0.073568,1.03178,0.007072,0.0056,0.028544,56.9228,0.114688
+883,16.7869,59.5703,55.7008,0.075584,0.98736,0.007744,0.0056,0.028672,54.4757,0.12016
+884,17.9209,55.8008,56.8481,0.070176,0.84912,0.006944,0.005216,0.028608,55.7721,0.115872
+885,16.929,59.0703,56.8442,0.071648,0.841664,0.006336,0.006016,0.028672,55.7752,0.114592
+886,17.4923,57.168,55.3179,0.069856,0.80464,0.007584,0.004704,0.028704,54.2863,0.116096
+887,17.7679,56.2812,56.3916,0.06768,0.7512,0.006432,0.006144,0.028672,55.4148,0.116736
+888,17.3465,57.6484,56.8809,0.069632,0.81104,0.007904,0.005568,0.027488,55.844,0.115296
+889,17.0054,58.8047,55.449,0.069632,0.791616,0.007072,0.005568,0.028448,54.4319,0.114752
+890,17.7765,56.2539,56.685,0.070048,0.814656,0.00656,0.006144,0.03072,55.6421,0.11472
+891,17.1169,58.4219,55.5587,0.070432,0.789888,0.00672,0.005984,0.02848,54.5419,0.115264
+892,17.6369,56.6992,56.8852,0.070944,0.897792,0.007616,0.00464,0.028832,55.7607,0.114688
+893,17.3819,57.5312,55.5561,0.070976,0.809664,0.007712,0.004576,0.028672,54.5196,0.114944
+894,17.6808,56.5586,57.1144,0.070752,0.891776,0.007584,0.004704,0.028672,55.9944,0.116544
+895,17.26,57.9375,55.6009,0.069824,0.776032,0.007584,0.004672,0.029728,54.5966,0.11648
+896,17.6187,56.7578,56.6415,0.07168,0.842912,0.007008,0.006144,0.028672,55.5684,0.116736
+897,17.2484,57.9766,56.9087,0.069632,0.805728,0.007584,0.004736,0.02864,55.8792,0.113152
+898,17.1893,58.1758,55.3893,0.069632,0.853984,0.007328,0.00496,0.028672,54.3068,0.117952
+899,17.6735,56.582,56.9713,0.069792,0.831328,0.007488,0.0048,0.028704,55.9155,0.113696
+900,17.2089,58.1094,56.8829,0.069952,0.947616,0.006624,0.005984,0.028608,55.7097,0.114368
+901,17.224,58.0586,55.7653,0.069952,0.80688,0.007936,0.005536,0.02864,54.7296,0.116736
+902,17.5667,56.9258,57.0941,0.07776,0.843616,0.006368,0.006144,0.028416,56.0171,0.114688
+903,17.2205,58.0703,56.6497,0.070528,0.8008,0.007616,0.00464,0.02992,55.6221,0.11408
+904,17.302,57.7969,55.4471,0.069504,0.813184,0.007584,0.004704,0.029728,54.4076,0.114784
+905,17.6333,56.7109,56.7767,0.071232,0.784,0.006976,0.005664,0.028736,55.7648,0.115296
+906,17.2542,57.957,56.6673,0.071424,0.831744,0.00784,0.005536,0.028704,55.6062,0.115904
+907,17.2078,58.1133,55.9262,0.06976,0.948224,0.00816,0.005568,0.037472,54.7404,0.116672
+908,17.6248,56.7383,55.3935,0.069632,0.781568,0.007104,0.0056,0.028512,54.3854,0.115712
+909,17.6467,56.668,56.916,0.071232,0.91568,0.006368,0.006144,0.028704,55.7732,0.114656
+910,16.8355,59.3984,55.7875,0.07088,0.887552,0.006144,0.006144,0.028672,54.6714,0.116736
+911,17.9914,55.582,55.7527,0.07168,0.755712,0.007936,0.005568,0.027456,54.7686,0.115712
+912,17.3606,57.6016,56.7251,0.06976,0.90304,0.007488,0.0048,0.030016,55.5914,0.118592
+913,17.2705,57.9023,55.6974,0.071584,0.80608,0.00704,0.005632,0.028608,54.6617,0.116736
+914,17.8285,56.0898,56.4778,0.071712,0.816832,0.006432,0.006144,0.028352,55.4329,0.115392
+915,17.396,57.4844,56.7534,0.071424,0.76416,0.007648,0.004608,0.028704,55.7628,0.114048
+916,17.0326,58.7109,56.8074,0.075744,0.785696,0.00688,0.00576,0.028576,55.7877,0.117056
+917,17.5595,56.9492,55.6672,0.069952,0.806624,0.006432,0.006144,0.028672,54.6343,0.115072
+918,17.5115,57.1055,56.9743,0.070464,0.870528,0.007328,0.00496,0.028672,55.8776,0.114688
+919,17.2938,57.8242,56.9037,0.071232,0.835296,0.00688,0.005792,0.0288,55.8389,0.116736
+920,17.1639,58.2617,55.842,0.069696,0.796032,0.00672,0.005952,0.028256,54.8184,0.116896
+921,17.5415,57.0078,58.2699,0.070304,0.802784,0.008096,0.0056,0.028448,57.2396,0.115072
+922,16.8565,59.3242,55.9124,0.076992,0.919776,0.006752,0.005888,0.028832,54.7575,0.116736
+923,17.6552,56.6406,56.881,0.071008,0.780192,0.00688,0.005888,0.028768,55.8731,0.115168
+924,17.2833,57.8594,56.9975,0.069632,0.759776,0.007456,0.004832,0.028704,56.0128,0.114304
+925,17.1032,58.4688,55.4496,0.070656,0.902144,0.00816,0.005536,0.039552,54.3089,0.114688
+926,17.6515,56.6523,55.7537,0.070656,0.808928,0.007552,0.004736,0.02976,54.7172,0.114848
+927,16.9111,59.1328,57.7106,0.071488,0.952416,0.008256,0.006144,0.045056,56.5125,0.114752
+928,17.6139,56.7734,57.7437,0.06992,0.753568,0.00624,0.006144,0.028672,56.7624,0.116768
+929,17.0735,58.5703,57.8279,0.070464,0.776256,0.008096,0.005568,0.029184,56.823,0.115296
+930,16.8699,59.2773,57.9596,0.069824,0.84176,0.007968,0.014336,0.030912,56.8781,0.116768
+931,16.8955,59.1875,56.8791,0.069856,0.829024,0.006304,0.006144,0.028576,55.8238,0.11536
+932,17.2996,57.8047,55.6333,0.071104,0.786912,0.006208,0.006144,0.028672,54.6181,0.116192
+933,17.5583,56.9531,55.6032,0.069632,0.888832,0.006144,0.013504,0.029504,54.4809,0.114688
+934,16.966,58.9414,57.0286,0.088512,0.935936,0.007744,0.005536,0.029088,55.8466,0.115232
+935,17.7138,56.4531,56.8279,0.069632,0.845376,0.00656,0.00608,0.028736,55.7548,0.116736
+936,17.3984,57.4766,55.3063,0.070784,0.75456,0.007488,0.0048,0.028704,54.3232,0.116768
+937,17.6698,56.5938,56.6214,0.070048,0.822976,0.007008,0.012288,0.03072,55.5397,0.138624
+938,17.1974,58.1484,55.6074,0.070368,0.907264,0.006144,0.006144,0.028672,54.4722,0.116608
+939,17.6479,56.6641,55.5415,0.06992,0.868352,0.00752,0.004768,0.028896,54.4472,0.11488
+940,17.609,56.7891,58.0281,0.071008,0.854688,0.008,0.0056,0.028512,56.9468,0.113408
+941,16.8654,59.293,57.1126,0.071488,0.826784,0.006912,0.005792,0.028704,56.0561,0.116768
+942,17.2391,58.0078,55.38,0.069856,0.763296,0.006528,0.006144,0.028512,54.3909,0.114688
+943,17.7519,56.332,56.6814,0.070112,0.761952,0.00656,0.006144,0.028416,55.6936,0.114688
+944,17.3137,57.7578,55.5518,0.069664,0.767488,0.006624,0.00608,0.028512,54.5583,0.1152
+945,17.6042,56.8047,55.7015,0.071712,0.815104,0.008,0.005568,0.028704,54.6557,0.116704
+946,17.6503,56.6562,57.7167,0.070496,0.76592,0.008064,0.005568,0.028736,56.722,0.115872
+947,17.0021,58.8164,56.9344,0.071264,0.786784,0.006208,0.006176,0.02864,55.9217,0.1136
+948,17.2658,57.918,55.5745,0.071264,0.763808,0.006656,0.006048,0.02864,54.5814,0.116736
+949,17.5451,56.9961,56.6163,0.070784,0.80368,0.020192,0.005568,0.02768,55.5723,0.116128
+950,17.4173,57.4141,55.0114,0.071168,0.758304,0.007264,0.005024,0.029792,54.0251,0.114752
+951,17.8447,56.0391,55.5274,0.070784,0.7832,0.006144,0.006144,0.028608,54.5168,0.11568
+952,17.6224,56.7461,57.9998,0.070048,0.819072,0.006272,0.006144,0.028608,56.9529,0.116736
+953,16.9458,59.0117,56.7357,0.071712,0.77952,0.00688,0.005792,0.02864,55.7281,0.115136
+954,17.2611,57.9336,55.646,0.070752,0.9184,0.006176,0.006144,0.028672,54.4993,0.116576
+955,17.5921,56.8438,57.0668,0.071072,0.94064,0.007616,0.004672,0.028704,55.9,0.114112
+956,17.1169,58.4219,56.9477,0.070624,0.872448,0.018432,0.006144,0.044096,55.8212,0.114688
+957,17.246,57.9844,55.5059,0.070624,0.792576,0.006144,0.01632,0.028736,54.4748,0.116736
+958,17.6357,56.7031,56.7351,0.070784,0.83648,0.007168,0.021504,0.028704,55.6564,0.114048
+959,17.2973,57.8125,55.3039,0.07136,0.802912,0.006336,0.006144,0.028704,54.2732,0.115328
+960,17.8075,56.1562,55.8924,0.071104,0.774816,0.006496,0.006176,0.028416,54.8907,0.114752
+961,17.5354,57.0273,57.0948,0.070176,0.79888,0.007232,0.005056,0.028704,56.0681,0.116736
+962,17.2089,58.1094,56.7197,0.070272,0.76176,0.006208,0.006144,0.028704,55.7322,0.114464
+963,17.2751,57.8867,55.4139,0.069728,0.775296,0.006944,0.0056,0.028704,54.4109,0.116704
+964,17.7003,56.4961,56.6569,0.071392,0.842016,0.00768,0.004608,0.028896,55.5866,0.115744
+965,17.224,58.0586,56.875,0.071232,0.886912,0.006432,0.006144,0.028672,55.7605,0.115072
+966,17.302,57.7969,55.7296,0.070752,0.832384,0.008224,0.0056,0.02912,54.6673,0.11616
+967,17.6345,56.707,56.9916,0.070528,0.765952,0.007392,0.004896,0.028672,55.9983,0.115872
+968,17.2112,58.1016,55.8961,0.071104,0.793056,0.00624,0.006144,0.028672,54.8741,0.116736
+969,17.5897,56.8516,56.5268,0.07024,0.780288,0.00768,0.004576,0.0288,55.5208,0.114368
+970,17.3783,57.543,56.7298,0.069792,0.772096,0.007808,0.005568,0.028832,55.731,0.11472
+971,17.2217,58.0664,55.8316,0.07104,0.81168,0.007296,0.00496,0.028672,54.7922,0.115808
+972,17.3819,57.5312,56.3445,0.070848,1.50509,0.007136,0.0056,0.028704,54.6116,0.115616
+973,17.6442,56.6758,56.7394,0.071136,0.787296,0.007296,0.004992,0.028672,55.7259,0.114144
+974,17.302,57.7969,56.5588,0.069824,0.78432,0.00736,0.004928,0.028672,55.5469,0.116768
+975,17.3266,57.7148,55.425,0.0696,0.813056,0.007936,0.005568,0.02864,54.3835,0.116704
+976,17.6588,56.6289,56.7531,0.070336,0.78192,0.006784,0.005344,0.027424,55.7465,0.114752
+977,17.3043,57.7891,55.5893,0.069792,0.90528,0.006432,0.006112,0.028672,54.4581,0.114912
+978,17.6369,56.6992,56.3959,0.070144,0.87872,0.006304,0.006144,0.028672,55.2892,0.116672
+979,17.2008,58.1367,57.0429,0.071232,1.20643,0.006432,0.006176,0.02864,55.6093,0.114688
+980,17.3736,57.5586,55.595,0.071424,0.759936,0.006272,0.006144,0.028672,54.6058,0.116736
+981,17.5909,56.8477,56.961,0.0696,0.93184,0.008192,0.019904,0.0288,55.7892,0.113472
+982,17.2437,57.9922,56.9999,0.071136,0.807456,0.007168,0.00512,0.028672,55.9655,0.114848
+983,17.2751,57.8867,55.638,0.07168,0.761824,0.006176,0.006144,0.028704,54.6484,0.115136
+984,17.654,56.6445,56.5964,0.07136,0.76832,0.007744,0.004576,0.02864,55.6012,0.114592
+985,17.3043,57.7891,56.8428,0.0704,0.77824,0.00768,0.004608,0.029696,55.8356,0.116512
+986,17.2565,57.9492,56.0507,0.071104,0.844352,0.006144,0.005952,0.028448,54.979,0.115744
+987,17.4887,57.1797,55.644,0.070816,0.791392,0.007264,0.005024,0.028672,54.6243,0.116576
+988,17.6248,56.7383,56.7767,0.070816,0.776,0.007136,0.005568,0.028608,55.7739,0.114688
+989,17.26,57.9375,55.4092,0.07024,0.771744,0.006496,0.006144,0.028544,54.4093,0.116736
+990,17.7003,56.4961,56.6104,0.070784,0.801728,0.007776,0.005568,0.027616,55.5807,0.116288
+991,17.35,57.6367,57.0041,0.069408,0.760096,0.008128,0.005568,0.028896,56.0173,0.114656
+992,17.1916,58.168,55.6258,0.069632,0.783488,0.007008,0.005664,0.02832,54.6169,0.114752
+993,17.6296,56.7227,56.5014,0.067584,0.818304,0.00704,0.005632,0.028896,55.4581,0.115904
+994,17.2495,57.9727,56.8133,0.068384,0.77968,0.00672,0.005952,0.0288,55.8081,0.115744
+995,17.3665,57.582,55.6733,0.070304,0.784064,0.006464,0.006144,0.028608,54.6612,0.116512
+996,17.5872,56.8594,56.7689,0.07024,0.781568,0.006912,0.00576,0.029024,55.7587,0.11664
+997,17.2402,58.0039,57.099,0.070432,0.831488,0.008064,0.005568,0.029216,56.0396,0.114688
+998,17.1835,58.1953,55.7464,0.0696,0.813056,0.007616,0.004672,0.028832,54.706,0.116608
+999,17.5067,57.1211,58.03,0.0696,0.779968,0.006464,0.006144,0.028576,57.0226,0.116704
+1000,17.0088,58.793,56.0639,0.070016,0.790496,0.006656,0.006016,0.028384,55.0466,0.115808
+1001,17.3184,57.7422,57.4788,0.070848,1.50202,0.007808,0.005568,0.02768,55.7506,0.114336
+1002,17.1651,58.2578,56.7744,0.071136,0.776064,0.006816,0.005856,0.028608,55.7674,0.11856
+1003,17.376,57.5508,56.8873,0.071296,0.817536,0.00784,0.005568,0.028672,55.8413,0.115104
+1004,17.217,58.082,55.5028,0.07104,0.877184,0.007584,0.004704,0.028672,54.3969,0.11664
+1005,17.6321,56.7148,56.6892,0.069824,0.836,0.007232,0.005056,0.029792,55.6267,0.114624
+1006,17.1801,58.207,56.8425,0.071456,0.88112,0.022528,0.006144,0.036544,55.71,0.114688
+1007,17.4221,57.3984,55.6876,0.070144,0.782208,0.006272,0.006144,0.02864,54.6775,0.116704
+1008,17.4209,57.4023,56.9441,0.070848,0.86304,0.007456,0.004832,0.028672,55.8531,0.116192
+1009,17.3724,57.5625,56.8361,0.069696,0.786272,0.006304,0.006144,0.028672,55.8235,0.115584
+1010,16.3432,61.1875,65.5259,0.069728,0.864192,0.006208,0.006144,0.028672,64.4353,0.115616
+1011,15.7568,63.4648,65.2677,0.07328,0.846272,0.0072,0.005088,0.028672,64.1921,0.115072
+1012,14.8855,67.1797,64.3561,0.073056,1.22333,0.00784,0.005568,0.02768,62.9041,0.114496
+1013,15.3865,64.9922,55.6237,0.069664,0.800736,0.007488,0.004832,0.02976,54.596,0.115232
+1014,17.6418,56.6836,55.7511,0.070496,0.806944,0.007808,0.005568,0.027616,54.7164,0.11632
+1015,17.3748,57.5547,56.9969,0.071008,0.785056,0.008,0.005568,0.028896,55.9826,0.115744
+1016,17.2425,57.9961,55.4947,0.069856,0.770048,0.007712,0.004576,0.028672,54.4993,0.114496
+1017,17.6078,56.793,58.411,0.079904,0.839648,0.008,0.005568,0.02912,57.3341,0.114656
+1018,16.9066,59.1484,56.8318,0.071264,0.766368,0.006144,0.006144,0.028704,55.8378,0.115328
+1019,17.1789,58.2109,55.7416,0.0696,0.83968,0.007584,0.004736,0.02864,54.6765,0.11488
+1020,17.6345,56.707,56.5307,0.071648,0.759968,0.006336,0.006144,0.028672,55.5418,0.116128
+1021,17.3008,57.8008,56.8467,0.071008,0.83856,0.008096,0.0056,0.028832,55.7798,0.114784
+1022,17.2136,58.0938,55.7203,0.0704,0.897024,0.007616,0.004704,0.02864,54.5956,0.116288
+1023,17.6686,56.5977,55.6335,0.069696,0.764064,0.007328,0.004992,0.02864,54.6427,0.116064
+1024,17.6114,56.7812,56.9595,0.07024,0.798464,0.007424,0.004896,0.02864,55.935,0.114784
+1025,17.0462,58.6641,56.3904,0.070336,1.2288,0.008128,0.005568,0.028736,54.9341,0.11472
+1026,17.4031,57.4609,55.4959,0.073376,0.884416,0.006816,0.005888,0.02896,54.3805,0.115968
+1027,17.6296,56.7227,56.936,0.070656,0.834528,0.006144,0.006144,0.028672,55.8736,0.116288
+1028,17.1593,58.2773,55.7405,0.06992,0.895392,0.008128,0.005568,0.028768,54.6166,0.116096
+1029,17.6005,56.8164,56.4996,0.06976,0.81296,0.008128,0.005568,0.02832,55.4567,0.118208
+1030,17.3184,57.7422,56.8606,0.070656,0.875296,0.006336,0.006144,0.028416,55.7586,0.115232
+1031,17.2565,57.9492,55.813,0.070496,0.80864,0.007712,0.004896,0.028672,54.7758,0.116736
+1032,17.4506,57.3047,57.0453,0.069952,0.878592,0.007296,0.004992,0.028736,55.939,0.116736
+1033,17.2367,58.0156,56.5949,0.070176,0.79648,0.006304,0.006144,0.028704,55.5724,0.114688
+1034,17.3724,57.5625,55.8633,0.07152,0.76736,0.006912,0.00576,0.028608,54.8664,0.116768
+1035,17.5824,56.875,55.7899,0.07024,0.80896,0.007904,0.005568,0.02768,54.7531,0.116448
+1036,17.4126,57.4297,57.1331,0.073696,1.09568,0.007552,0.004736,0.028672,55.8092,0.113536
+1037,17.2646,57.9219,56.6144,0.069984,0.845792,0.008032,0.005568,0.02928,55.5399,0.11584
+1038,17.3277,57.7109,55.583,0.069984,0.782112,0.006336,0.006144,0.028576,54.5732,0.116736
+1039,17.472,57.2344,56.9999,0.071584,0.90272,0.006688,0.006016,0.028672,55.8691,0.115136
+1040,17.281,57.8672,55.7058,0.069856,0.84144,0.006432,0.006144,0.028608,54.638,0.115296
+1041,17.6491,56.6602,56.1828,0.071488,0.786624,0.007232,0.005056,0.028672,55.167,0.116704
+1042,17.4553,57.2891,57.5682,0.070208,0.764192,0.00624,0.006144,0.028672,56.578,0.11472
+1043,16.6277,60.1406,57.1835,0.07072,0.90208,0.007872,0.0056,0.028736,56.0542,0.114272
+1044,17.5824,56.875,55.6201,0.070304,0.765952,0.007648,0.00464,0.029888,54.6243,0.117376
+1045,17.4923,57.168,56.9405,0.070912,0.891616,0.008,0.0056,0.028736,55.8205,0.115136
+1046,17.2891,57.8398,55.6361,0.06976,0.901088,0.007264,0.005056,0.02864,54.5075,0.116736
+1047,17.6139,56.7734,56.6191,0.06976,0.769216,0.006976,0.005632,0.028512,55.6257,0.113376
+1048,17.4518,57.3008,56.9656,0.070112,0.755104,0.006752,0.005952,0.028608,55.984,0.11504
+1049,17.1524,58.3008,56.0942,0.071712,0.919296,0.006368,0.024384,0.028512,54.9271,0.116832
+1050,17.2263,58.0508,56.6761,0.069824,1.01382,0.00624,0.006144,0.032,55.434,0.11408
+1051,17.3383,57.6758,56.5609,0.071712,0.765984,0.008064,0.005536,0.028608,55.5665,0.114496
+1052,17.1352,58.3594,55.8371,0.082144,1.1736,0.006592,0.006048,0.028768,54.4235,0.116448
+1053,17.7052,56.4805,56.629,0.070976,0.846592,0.006272,0.006144,0.028672,55.556,0.114368
+1054,16.7836,59.582,57.1872,0.072672,1.10557,0.024288,0.004736,0.028704,55.8346,0.116608
+1055,17.6151,56.7695,55.5595,0.0712,0.874976,0.007296,0.00496,0.028672,54.4563,0.116096
+1056,17.5282,57.0508,57.0844,0.070336,0.863968,0.006688,0.005952,0.02832,55.9946,0.11456
+1057,17.2251,58.0547,57.0829,0.070944,0.770816,0.008032,0.005536,0.028896,56.0829,0.115776
+1058,16.8854,59.2227,55.7324,0.069824,0.925056,0.006784,0.005824,0.051264,54.5581,0.11552
+1059,17.7815,56.2383,55.6538,0.071712,0.861568,0.006752,0.00592,0.028352,54.5628,0.11664
+1060,17.5704,56.9141,56.9631,0.070048,0.922688,0.007104,0.0056,0.02848,55.8047,0.12448
+1061,17.246,57.9844,55.5751,0.07024,0.830912,0.00688,0.00576,0.028608,54.5162,0.116576
+1062,17.5607,56.9453,55.6995,0.07168,0.919552,0.007712,0.004672,0.032672,54.5463,0.116896
+1063,17.3889,57.5078,58.1022,0.069952,0.911456,0.007552,0.004736,0.028768,56.965,0.114688
+1064,17.0553,58.6328,55.8298,0.0712,0.836064,0.007456,0.004864,0.028672,54.7649,0.116576
+1065,17.6808,56.5586,56.1481,0.069632,0.764832,0.007264,0.005056,0.02864,55.1581,0.114496
+1066,17.3148,57.7539,56.8002,0.07024,0.909024,0.006784,0.005824,0.028608,55.6642,0.115488
+1067,17.2309,58.0352,55.7814,0.070976,0.970816,0.006784,0.005824,0.028704,54.5836,0.11472
+1068,17.6175,56.7617,56.9201,0.071488,0.915648,0.007552,0.004768,0.038272,55.7675,0.114816
+1069,17.3524,57.6289,56.8571,0.070208,0.753664,0.00768,0.004608,0.028704,55.877,0.115232
+1070,17.1157,58.4258,56.9075,0.069792,0.911392,0.007424,0.004864,0.028704,55.7711,0.114272
+1071,17.3371,57.6797,55.635,0.070656,0.850944,0.007712,0.004608,0.0288,54.5545,0.11776
+1072,17.6759,56.5742,56.778,0.070752,0.750496,0.007648,0.00464,0.028704,55.7998,0.116
+1073,17.102,58.4727,55.4705,0.070016,0.82944,0.007648,0.00464,0.028672,54.4133,0.116736
+1074,17.6661,56.6055,55.3267,0.070816,0.758656,0.007744,0.0056,0.027808,54.3408,0.115264
+1075,17.6881,56.5352,57.6629,0.071904,0.763904,0.007232,0.005056,0.028672,56.67,0.116128
+1076,16.9514,58.9922,56.6636,0.069824,0.829248,0.007712,0.005568,0.027744,55.6072,0.116256
+1077,17.3266,57.7148,55.5539,0.070048,0.788448,0.006144,0.006144,0.028672,54.54,0.114496
+1078,17.5559,56.9609,56.7767,0.069664,0.903136,0.007872,0.005568,0.029024,55.6461,0.11536
+1079,17.26,57.9375,55.563,0.070464,0.880608,0.00752,0.004768,0.028896,54.4558,0.114976
+1080,17.5415,57.0078,56.8812,0.07168,0.901152,0.00752,0.004768,0.044736,55.7362,0.115104
+1081,17.2031,58.1289,56.9303,0.07072,0.87344,0.022496,0.006144,0.028704,55.8121,0.116736
+1082,17.1927,58.1641,56.885,0.06976,0.924704,0.007008,0.005664,0.0288,55.7326,0.116512
+1083,16.766,59.6445,55.6281,0.069984,0.77824,0.00736,0.004928,0.028672,54.6243,0.114656
+1084,17.7089,56.4688,56.6395,0.069632,0.759808,0.007936,0.005568,0.028512,55.6524,0.11568
+1085,17.1628,58.2656,57.003,0.070048,0.950112,0.00688,0.005728,0.028448,55.8271,0.114688
+1086,17.3665,57.582,55.4641,0.069536,0.761568,0.00672,0.005984,0.028192,54.4754,0.116704
+1087,17.6588,56.6289,56.9733,0.069632,0.816256,0.00704,0.005568,0.028544,55.9316,0.114688
+1088,17.2472,57.9805,56.5886,0.070336,0.835392,0.0064,0.006144,0.028672,55.5267,0.114944
+1089,17.3043,57.7891,55.6491,0.070272,0.803008,0.007264,0.005024,0.028672,54.6196,0.115232
+1090,17.5691,56.918,56.8703,0.069856,0.83536,0.007904,0.005536,0.02768,55.8094,0.114592
+1091,17.2775,57.8789,55.4974,0.070368,0.780288,0.007872,0.005536,0.027552,54.4911,0.114688
+1092,17.6042,56.8047,55.7726,0.071104,0.911968,0.007776,0.005568,0.039872,54.6202,0.116128
+1093,17.6674,56.6016,56.4092,0.0696,0.79872,0.007456,0.004832,0.028704,55.384,0.115872
+1094,17.3512,57.6328,55.6798,0.070496,0.884736,0.00736,0.004928,0.028672,54.5687,0.114976
+1095,17.6637,56.6133,56.4811,0.069632,0.919552,0.008032,0.005536,0.031488,55.3308,0.116
+1096,16.891,59.2031,56.9452,0.071296,0.852896,0.006144,0.006144,0.028672,55.8649,0.115136
+1097,17.7298,56.4023,55.4213,0.070208,0.779776,0.006656,0.005952,0.028448,54.4137,0.116576
+1098,17.6454,56.6719,56.7085,0.070688,0.803808,0.008128,0.005568,0.028512,55.6769,0.114912
+1099,17.309,57.7734,56.5182,0.0696,0.757696,0.006208,0.006144,0.028672,55.5336,0.116288
+1100,17.363,57.5938,56.7598,0.07088,0.764576,0.006272,0.006144,0.028672,55.767,0.116192
+1101,17.2611,57.9336,55.4027,0.069888,0.77408,0.007264,0.005024,0.028672,54.402,0.115712
+1102,17.6918,56.5234,56.8128,0.070848,0.755968,0.00672,0.00592,0.028576,55.8288,0.116
+1103,17.2043,58.125,57.0098,0.071296,0.91584,0.007264,0.005024,0.028672,55.8653,0.11632
+1104,17.1432,58.332,55.7445,0.071456,0.889088,0.00784,0.005568,0.028608,54.6252,0.116736
+1105,17.5716,56.9102,56.7556,0.0712,0.905728,0.007776,0.005568,0.043968,55.6071,0.114272
+1106,17.3008,57.8008,55.4509,0.070752,0.883392,0.006432,0.00608,0.02864,54.3293,0.12624
+1107,17.6869,56.5391,56.8836,0.070048,0.85344,0.00672,0.005952,0.02832,55.8044,0.114784
+1108,16.7561,59.6797,56.7792,0.070176,0.972704,0.007744,0.005568,0.044032,55.5635,0.11552
+1109,17.7236,56.4219,55.5459,0.069856,0.954176,0.00736,0.004896,0.028672,54.3662,0.114688
+1110,17.6005,56.8164,56.3224,0.067968,0.7552,0.006656,0.005952,0.028544,55.3414,0.116736
+1111,17.527,57.0547,56.4956,0.070624,0.75264,0.007488,0.0048,0.028672,55.5165,0.114816
+1112,17.2961,57.8164,56.8351,0.070656,0.797824,0.00704,0.005632,0.028512,55.8107,0.114688
+1113,17.2623,57.9297,55.6521,0.071328,0.819488,0.006176,0.014176,0.03008,54.5954,0.115424
+1114,17.6357,56.7031,56.6497,0.071008,0.764544,0.007552,0.004736,0.028672,55.6585,0.114688
+1115,17.3395,57.6719,55.708,0.069984,0.798752,0.007648,0.004608,0.0288,54.6809,0.11728
+1116,17.4589,57.2773,57.1422,0.070592,0.997184,0.006336,0.006144,0.028704,55.9186,0.114688
+1117,17.26,57.9375,56.9467,0.070752,0.804768,0.007136,0.005536,0.028384,55.9134,0.116736
+1118,17.2008,58.1367,56.8002,0.070624,0.857248,0.006976,0.005664,0.028416,55.7166,0.11472
+1119,16.6993,59.8828,55.4769,0.070336,0.836672,0.007072,0.005536,0.034816,54.3976,0.124896
+1120,17.6151,56.7695,56.9467,0.071232,0.90976,0.007936,0.005504,0.03888,55.7982,0.115168
+1121,17.3172,57.7461,56.855,0.070112,0.813056,0.00816,0.005568,0.028576,55.8149,0.114688
+1122,17.2136,58.0938,55.592,0.071616,0.784448,0.007232,0.005056,0.028704,54.5792,0.115712
+1123,17.6333,56.7109,56.8722,0.071008,0.887232,0.006368,0.006144,0.028672,55.758,0.114784
+1124,17.2868,57.8477,55.732,0.071328,0.775808,0.00688,0.005824,0.02832,54.7273,0.116544
+1125,17.6042,56.8047,55.5212,0.069664,0.759776,0.007296,0.004992,0.028704,54.5341,0.116608
+1126,17.7212,56.4297,58.1263,0.07104,0.758272,0.00624,0.006144,0.02864,57.1392,0.116736
+1127,16.9022,59.1641,55.8397,0.070592,0.768,0.007328,0.00496,0.028672,54.8454,0.114688
+1128,17.5031,57.1328,56.6001,0.070688,0.90416,0.007776,0.005568,0.029664,55.466,0.116256
+1129,17.2763,57.8828,56.8694,0.070176,0.944128,0.007648,0.00464,0.028704,55.6994,0.114688
+1130,17.2356,58.0195,55.6573,0.070464,0.858112,0.007488,0.0048,0.029696,54.5693,0.117376
+1131,17.5559,56.9609,55.6686,0.069792,0.931712,0.006112,0.006144,0.028672,54.5108,0.115392
+1132,17.643,56.6797,58.1202,0.07152,0.78048,0.007264,0.004992,0.028672,57.1124,0.114912
+1133,16.6797,59.9531,55.8091,0.070592,0.867328,0.007136,0.0056,0.028704,54.7148,0.114944
+1134,17.7778,56.25,56.1232,0.070048,0.760864,0.007104,0.00544,0.028384,55.1352,0.116128
+1135,17.3913,57.5,57.1146,0.071648,0.882688,0.007808,0.00448,0.028672,56.0044,0.114944
+1136,17.0168,58.7656,55.7725,0.069216,0.886624,0.006688,0.006144,0.028672,54.6604,0.114816
+1137,17.6942,56.5156,55.8245,0.071456,0.915808,0.007808,0.005568,0.037696,54.6694,0.116736
+1138,17.6844,56.5469,57.3239,0.070048,0.751616,0.008064,0.005536,0.028736,56.3447,0.1152
+1139,17.0872,58.5234,56.6601,0.06976,0.763904,0.007616,0.004704,0.02864,55.6708,0.114656
+1140,17.2275,58.0469,55.5315,0.081216,0.901472,0.006496,0.006144,0.028672,54.3826,0.124928
+1141,17.5921,56.8438,56.8627,0.070944,0.874592,0.006784,0.019872,0.02928,55.7461,0.115168
+1142,17.3067,57.7812,55.6947,0.070912,0.748288,0.0072,0.005088,0.028672,54.7185,0.116096
+1143,17.4839,57.1953,55.6653,0.068288,0.890624,0.006368,0.006144,0.028672,54.5505,0.11472
+1144,17.5848,56.8672,57.9639,0.069952,1.03219,0.008,0.005568,0.02912,56.7033,0.115776
+1145,16.9964,58.8359,55.5093,0.069984,0.814848,0.006368,0.006144,0.02848,54.4679,0.115616
+1146,17.5127,57.1016,56.9656,0.070144,0.861248,0.007104,0.005536,0.028512,55.8784,0.114688
+1147,17.2298,58.0391,56.8937,0.069888,0.804384,0.006592,0.006048,0.028672,55.8625,0.115552
+1148,17.253,57.9609,55.5254,0.070688,0.7936,0.007808,0.0056,0.028832,54.5033,0.115616
+1149,17.7065,56.4766,55.7,0.070208,0.768448,0.00736,0.004896,0.028672,54.7041,0.116256
+1150,17.6454,56.6719,57.6187,0.069888,0.763904,0.007616,0.004672,0.028672,56.6292,0.114688
+1151,17.0485,58.6562,55.9263,0.07168,0.761888,0.008064,0.005568,0.028576,54.9343,0.116256
+1152,17.527,57.0547,56.6556,0.071296,0.790944,0.007744,0.005536,0.028704,55.6361,0.115232
+1153,17.3866,57.5156,56.6429,0.070752,0.75456,0.008,0.005536,0.028512,55.6608,0.114688
+1154,17.3113,57.7656,55.5579,0.069632,0.781536,0.006944,0.005696,0.02832,54.5493,0.11648
+1155,17.6771,56.5703,55.9923,0.07168,0.767872,0.006272,0.006144,0.028672,54.9964,0.115264
+1156,17.5848,56.8672,57.4929,0.071072,0.754112,0.006304,0.006176,0.02864,56.5105,0.116096
+1157,17.0576,58.625,56.3646,0.07984,0.767616,0.006528,0.006112,0.028608,55.3596,0.116288
+1158,17.363,57.5938,55.5765,0.07376,0.880576,0.007904,0.005568,0.028704,54.4652,0.114816
+1159,17.704,56.4844,56.746,0.071584,0.769792,0.006496,0.006144,0.028608,55.7484,0.114944
+1160,17.0439,58.6719,55.6353,0.0696,0.847872,0.00736,0.004928,0.028832,54.5604,0.116224
+1161,17.7679,56.2812,56.6106,0.071584,0.888832,0.00624,0.006112,0.028704,55.4946,0.114528
+1162,17.4411,57.3359,56.689,0.069984,0.759808,0.007552,0.004768,0.028896,55.7025,0.115488
+1163,17.3184,57.7422,56.6988,0.071648,0.763584,0.006464,0.006144,0.028384,55.7079,0.114688
+1164,17.1858,58.1875,55.7363,0.071168,0.84736,0.007072,0.005568,0.028384,54.6598,0.116928
+1165,17.6552,56.6406,57.011,0.070112,0.77456,0.00768,0.004608,0.028736,56.0066,0.118752
+1166,17.2182,58.0781,55.3948,0.070432,0.770048,0.008096,0.005568,0.02864,54.3935,0.118464
+1167,17.7016,56.4922,55.8612,0.071264,0.802976,0.0064,0.006144,0.028608,54.8291,0.116736
+1168,17.5872,56.8594,57.363,0.06944,0.960704,0.008832,0.00592,0.030976,56.1722,0.11488
+1169,17.11,58.4453,56.8928,0.069664,0.773984,0.006304,0.006176,0.02864,55.8915,0.116544
+1170,17.2507,57.9688,55.4701,0.070752,0.764832,0.007424,0.004864,0.028672,54.4768,0.116736
+1171,17.5342,57.0312,56.8751,0.070336,0.866368,0.007264,0.005024,0.028672,55.7828,0.114624
+1172,17.3418,57.6641,55.6564,0.071104,0.77264,0.007424,0.004864,0.028864,54.6565,0.115008
+1173,17.5391,57.0156,55.9327,0.070144,0.913408,0.008032,0.0056,0.028672,54.7888,0.118048
+1174,17.5583,56.9531,57.5945,0.070272,0.79872,0.007872,0.0056,0.028608,56.5679,0.115488
+1175,17.0735,58.5703,55.2188,0.07024,0.82944,0.00784,0.005536,0.028608,54.1617,0.115488
+1176,17.6479,56.6641,56.9727,0.069632,0.88064,0.007456,0.004832,0.028704,55.8666,0.114784
+1177,17.3748,57.5547,56.6846,0.069664,0.749536,0.006176,0.006144,0.028672,55.7097,0.114688
+1178,17.2926,57.8281,55.6614,0.069472,0.780416,0.007008,0.006144,0.028384,54.6532,0.116736
+1179,17.5728,56.9062,56.7929,0.0712,0.883008,0.006304,0.006144,0.028672,55.6811,0.11648
+1180,17.3207,57.7344,56.6682,0.069632,0.785728,0.00688,0.00576,0.028704,55.6558,0.11568
+1181,17.3137,57.7578,56.5797,0.071008,0.810816,0.006976,0.005792,0.02864,55.5401,0.116416
+1182,17.316,57.75,55.7547,0.070496,0.806912,0.008064,0.005536,0.028864,54.7189,0.11584
+1183,17.6503,56.6562,56.7992,0.0696,0.780224,0.006208,0.006144,0.028672,55.7937,0.114656
+1184,17.2623,57.9297,55.589,0.070656,0.768,0.007744,0.004544,0.028704,54.5915,0.117856
+1185,17.4863,57.1875,56.0756,0.07152,0.761792,0.006368,0.006176,0.02864,55.0851,0.116
+1186,17.6479,56.6641,57.5603,0.069632,0.777248,0.007104,0.0056,0.028288,56.5579,0.114464
+1187,16.9964,58.8359,56.4412,0.070048,0.849952,0.007328,0.00496,0.028704,55.3655,0.114752
+1188,17.1812,58.2031,55.7368,0.069952,0.870592,0.006272,0.006144,0.028672,54.6396,0.115552
+1189,17.8099,56.1484,56.8443,0.069216,0.777056,0.00736,0.004928,0.028672,55.8408,0.116288
+1190,17.2344,58.0234,55.6944,0.069632,0.768,0.007776,0.005568,0.028672,54.699,0.115712
+1191,17.5993,56.8203,55.4365,0.069664,0.787456,0.007072,0.005536,0.028576,54.4223,0.115968
+1192,17.6309,56.7188,57.563,0.07088,0.81616,0.00752,0.004736,0.028704,56.5198,0.1152
+1193,17.0849,58.5312,55.7103,0.070592,0.77824,0.007264,0.005024,0.028672,54.7041,0.116352
+1194,17.5872,56.8594,57.1044,0.070944,0.828128,0.0072,0.005088,0.028704,56.0496,0.11472
+1195,17.1789,58.2109,56.7477,0.069888,0.781792,0.007072,0.005536,0.02848,55.7392,0.115808
+1196,17.2437,57.9922,55.5756,0.070656,0.845824,0.007584,0.004704,0.028672,54.5029,0.1152
+1197,17.6796,56.5625,56.6969,0.070016,0.77824,0.007328,0.00496,0.028704,55.6933,0.114336
+1198,17.149,58.3125,56.8732,0.069856,0.88272,0.00768,0.004576,0.028672,55.7643,0.115424
+1199,17.2367,58.0156,55.3554,0.069824,0.857888,0.007936,0.005568,0.027456,54.27,0.116736
+1200,17.6187,56.7578,57.0392,0.069984,0.962144,0.01664,0.005568,0.028992,55.8411,0.114784
+1201,17.2577,57.9453,56.6928,0.069696,0.796672,0.007168,0.00512,0.028704,55.6684,0.117056
+1202,17.2926,57.8281,55.4452,0.071584,0.786368,0.006272,0.005888,0.028736,54.4299,0.11648
+1203,17.6747,56.5781,56.6354,0.07152,0.792256,0.006624,0.00608,0.028352,55.6159,0.114688
+1204,17.2693,57.9062,56.7997,0.070144,0.821216,0.006176,0.006144,0.028352,55.7531,0.114656
+1205,17.2251,58.0547,56.8117,0.071264,0.811584,0.007744,0.005568,0.027744,55.773,0.114752
+1206,17.3371,57.6797,55.6465,0.069984,0.765408,0.006688,0.006016,0.02864,54.6531,0.116672
+1207,17.6284,56.7266,56.9561,0.070976,0.760544,0.007232,0.005024,0.028704,55.9677,0.115904
+1208,17.1835,58.1953,55.1554,0.070208,0.783648,0.006976,0.00576,0.0288,54.1451,0.11488
+1209,17.6163,56.7656,55.5023,0.071584,0.884864,0.008,0.005568,0.028832,54.3873,0.116224
+1210,17.5679,56.9219,56.7167,0.07152,0.882848,0.008,0.005568,0.028544,55.6041,0.116128
+1211,17.26,57.9375,55.4256,0.07024,0.810912,0.006208,0.006144,0.02848,54.3886,0.11504
+1212,17.6381,56.6953,56.7742,0.069632,0.84784,0.00736,0.004928,0.028672,55.7015,0.114272
+1213,17.3324,57.6953,56.8301,0.071008,0.77088,0.007264,0.005024,0.028768,55.8315,0.115648
+1214,17.2833,57.8594,55.8045,0.070624,0.777344,0.007072,0.0056,0.0288,54.7988,0.116352
+1215,17.302,57.7969,56.2463,0.071648,1.53379,0.006336,0.006144,0.028672,54.4829,0.116736
+1216,17.6991,56.5,56.7137,0.07008,0.779296,0.00704,0.005568,0.029344,55.7073,0.115008
+1217,17.267,57.9141,55.5652,0.070464,0.80672,0.006336,0.006144,0.028672,54.5321,0.114752
+1218,17.6211,56.75,56.8266,0.070336,0.765056,0.00704,0.014336,0.029952,55.8252,0.114688
+1219,17.2298,58.0391,55.8784,0.069408,0.891904,0.007392,0.004896,0.028672,54.7613,0.11488
+1220,17.5631,56.9375,56.9301,0.070944,0.819328,0.006752,0.00592,0.02864,55.882,0.116576
+1221,17.2646,57.9219,56.7623,0.070144,0.786432,0.007552,0.004768,0.02864,55.7486,0.116128
+1222,17.0009,58.8203,56.236,0.070784,0.824224,0.007296,0.00496,0.028672,55.1813,0.118752
+1223,17.7334,56.3906,55.7915,0.069728,0.794624,0.007968,0.00432,0.029952,54.7697,0.115168
+1224,16.9874,58.8672,56.803,0.071648,0.792608,0.022496,0.006144,0.028288,55.7613,0.120576
+1225,17.3113,57.7656,55.4152,0.070304,0.78848,0.008192,0.005568,0.028544,54.3976,0.11648
+1226,17.6527,56.6484,55.4258,0.0704,0.880192,0.006592,0.006144,0.028672,54.3185,0.115296
+1227,17.6503,56.6562,57.7829,0.070208,1.05626,0.006752,0.005888,0.028512,56.5006,0.114688
+1228,17.01,58.7891,56.6057,0.071168,0.87296,0.007712,0.004576,0.02992,55.5035,0.115872
+1229,16.9874,58.8672,55.6421,0.069856,0.935328,0.006528,0.004096,0.028672,54.4829,0.114688
+1230,17.8771,55.9375,57.0477,0.070272,0.826464,0.007104,0.0056,0.028608,55.9948,0.114848
+1231,17.172,58.2344,55.6828,0.069952,0.892704,0.007968,0.0056,0.028672,54.5615,0.116384
+1232,17.5872,56.8594,55.6021,0.069696,0.816032,0.007552,0.004736,0.028672,54.5587,0.116736
+1233,17.5055,57.125,58.0334,0.069792,0.802272,0.006656,0.02,0.028928,56.989,0.116736
+1234,16.9379,59.0391,56.9836,0.069824,0.78624,0.007456,0.004832,0.028704,55.9709,0.115616
+1235,17.2716,57.8984,55.3761,0.071072,0.77296,0.007264,0.005024,0.028672,54.3744,0.116736
+1236,17.7285,56.4062,57.0164,0.06976,0.764352,0.00736,0.004896,0.028736,56.0269,0.114432
+1237,17.1766,58.2188,55.4271,0.071456,0.771968,0.006496,0.006112,0.02832,54.426,0.116736
+1238,17.6967,56.5078,56.967,0.069632,0.802816,0.007328,0.00496,0.028672,55.9385,0.11504
+1239,17.2484,57.9766,56.3884,0.0704,0.806912,0.007552,0.004736,0.028704,55.3554,0.114688
+1240,17.2786,57.875,55.5958,0.070496,0.906592,0.006784,0.006048,0.028768,54.462,0.1152
+1241,17.5535,56.9688,57.0182,0.071136,0.821408,0.006528,0.00608,0.028544,55.9698,0.11472
+1242,17.1697,58.2422,57.0045,0.070336,0.923712,0.008128,0.005568,0.02848,55.8539,0.1144
+1243,17.2089,58.1094,55.767,0.071488,0.868544,0.007936,0.005568,0.028896,54.6697,0.114944
+1244,17.6357,56.7031,56.7627,0.071296,0.78432,0.006912,0.005856,0.02848,55.7511,0.114752
+1245,17.267,57.9141,56.789,0.070848,0.789216,0.00624,0.006176,0.028512,55.7727,0.115328
+1246,17.3113,57.7656,55.1779,0.069504,0.785216,0.007776,0.005568,0.027584,54.1672,0.115008
+1247,17.7802,56.2422,56.3898,0.06976,0.884736,0.007552,0.004768,0.031808,55.2775,0.113664
+1248,17.3254,57.7188,56.707,0.071296,0.83392,0.007648,0.004608,0.029696,55.6431,0.116736
+1249,17.2856,57.8516,55.53,0.070112,0.937984,0.008192,0.006144,0.028672,54.3621,0.116736
+1250,17.5824,56.875,55.7628,0.071008,0.900992,0.006944,0.00576,0.02864,54.6329,0.116576
+1251,17.6309,56.7188,57.7802,0.07072,0.940992,0.007808,0.005568,0.030976,56.6086,0.11552
+1252,16.9492,59,56.8611,0.070016,0.933856,0.006176,0.006176,0.02864,55.7015,0.114688
+1253,17.253,57.9609,55.5684,0.070368,0.844928,0.007104,0.005568,0.0272,54.4966,0.116544
+1254,17.6284,56.7266,56.5084,0.071072,0.821312,0.006688,0.005952,0.028608,55.4599,0.114848
+1255,17.4197,57.4062,55.1289,0.070496,0.786368,0.006176,0.006176,0.02864,54.1143,0.116736
+1256,17.7654,56.2891,55.4086,0.070752,0.823936,0.006432,0.006112,0.028384,54.3563,0.116704
+1257,17.6625,56.6172,58.1407,0.071136,0.770592,0.0072,0.004544,0.027264,57.1452,0.11472
+1258,16.891,59.2031,56.6354,0.070656,0.80592,0.008064,0.005568,0.028704,55.6015,0.114944
+1259,17.2973,57.8125,55.7343,0.069664,0.825312,0.007328,0.004992,0.02864,54.6818,0.116608
+1260,17.4458,57.3203,57.0276,0.071488,0.900672,0.006784,0.00592,0.040608,55.8855,0.116608
+1261,17.2112,58.1016,55.6961,0.0704,0.909312,0.006144,0.006144,0.028704,54.5607,0.114688
+1262,17.5511,56.9766,56.6313,0.071456,0.793952,0.00704,0.0056,0.028704,55.6089,0.115616
+1263,17.309,57.7734,56.7919,0.070048,0.858528,0.008064,0.005568,0.02736,55.7076,0.114656
+1264,16.6428,60.0859,55.8653,0.069792,0.994912,0.0064,0.006144,0.030752,54.6422,0.115136
+1265,18.0765,55.3203,56.3911,0.067808,0.788256,0.007232,0.005056,0.028672,55.3773,0.116768
+1266,17.281,57.8672,56.7439,0.07168,0.85744,0.015008,0.006144,0.028512,55.6499,0.115296
+1267,17.2716,57.8984,55.593,0.07104,0.821376,0.00672,0.00592,0.02848,54.5428,0.116736
+1268,17.4863,57.1875,56.7313,0.0712,0.749696,0.006496,0.006176,0.028544,55.754,0.1152
+1269,17.3465,57.6484,57.0581,0.070048,0.821216,0.006688,0.022528,0.028832,55.9934,0.11536
+1270,17.1123,58.4375,57.0528,0.069984,0.88064,0.007712,0.004608,0.02864,55.9452,0.116032
+1271,17.1398,58.3438,55.4353,0.071552,0.863392,0.007072,0.005568,0.02864,54.3444,0.11472
+1272,17.2043,58.125,56.8238,0.07136,0.960224,0.00672,0.005952,0.028256,55.6346,0.116704
+1273,17.6042,56.8047,55.6521,0.069824,0.880544,0.007456,0.004832,0.028672,54.5454,0.115392
+1274,17.527,57.0547,56.527,0.069792,0.84992,0.00752,0.004768,0.028672,55.4516,0.114688
+1275,17.3043,57.7891,56.8402,0.071648,0.856064,0.007808,0.012672,0.028672,55.7486,0.114688
+1276,17.094,58.5,55.2988,0.070528,0.85552,0.006688,0.005984,0.02848,54.215,0.11664
+1277,17.9121,55.8281,56.972,0.0704,0.751616,0.007328,0.00496,0.028704,55.994,0.115072
+1278,17.1329,58.3672,56.9817,0.07184,0.892896,0.006144,0.006144,0.028672,55.8612,0.11472
+1279,17.11,58.4453,55.7897,0.07088,0.897376,0.006752,0.005184,0.027744,54.6668,0.114976
+1280,17.5246,57.0625,55.9408,0.069984,0.803968,0.007008,0.005696,0.02864,54.9087,0.1168
+1281,17.4268,57.3828,56.959,0.071712,0.875744,0.006912,0.00576,0.028704,55.8534,0.116736
+1282,17.1858,58.1875,56.8039,0.07056,0.876576,0.007904,0.005568,0.04176,55.6852,0.116384
+1283,17.2251,58.0547,55.9411,0.07072,0.842656,0.015968,0.005984,0.02848,54.862,0.115264
+1284,17.4887,57.1797,57.2097,0.06976,0.927616,0.006848,0.005856,0.0392,56.0446,0.115872
+1285,17.0417,58.6797,55.7591,0.06992,0.88848,0.02192,0.005024,0.044096,54.6129,0.116736
+1286,17.6114,56.7812,55.8435,0.070304,0.835584,0.007616,0.004672,0.030144,54.7805,0.114688
+1287,17.323,57.7266,57.4983,0.070368,1.58106,0.006208,0.00608,0.028672,55.6913,0.114688
+1288,17.2089,58.1094,56.9203,0.0704,0.91136,0.007328,0.024928,0.028288,55.7631,0.114912
+1289,17.1789,58.2109,55.7937,0.069632,0.854048,0.007616,0.00464,0.02976,54.7124,0.115616
+1290,17.1927,58.1641,57.2046,0.069952,1.11453,0.007872,0.005536,0.028736,55.8616,0.116448
+1291,17.363,57.5938,55.4414,0.069664,0.915072,0.006496,0.005888,0.028224,54.2993,0.116736
+1292,17.6406,56.6875,56.8759,0.07056,0.843776,0.007744,0.004544,0.028736,55.8018,0.118784
+1293,16.9942,58.8438,56.9702,0.07168,0.89488,0.006272,0.006112,0.028672,55.8485,0.11408
+1294,17.4079,57.4453,56.83,0.081216,0.819776,0.006272,0.005856,0.028576,55.7732,0.115104
+1295,17.3277,57.7109,55.4339,0.070656,0.763904,0.007648,0.00464,0.028672,54.4421,0.116256
+1296,17.7236,56.4219,56.7524,0.069856,0.776192,0.007712,0.004576,0.029888,55.7493,0.114848
+1297,17.3137,57.7578,55.7504,0.071104,0.772672,0.0072,0.005088,0.028672,54.7508,0.114848
+1298,17.5921,56.8438,55.8362,0.073024,0.799392,0.0072,0.005088,0.028672,54.8065,0.11632
+1299,17.626,56.7344,57.8119,0.069856,0.776896,0.007744,0.004576,0.02864,56.8074,0.116736
+1300,16.8977,59.1797,56.9283,0.070656,0.859168,0.007424,0.004832,0.028672,55.8428,0.114688
+1301,17.323,57.7266,55.5165,0.071712,0.75568,0.007392,0.004896,0.028672,54.5314,0.1168
+1302,17.6406,56.6875,56.9494,0.070304,0.837632,0.00752,0.004768,0.028704,55.8855,0.114944
+1303,17.149,58.3125,55.5268,0.069632,0.858112,0.007712,0.004576,0.028832,54.4418,0.116096
+1304,17.643,56.6797,55.5337,0.069696,0.894528,0.006592,0.006048,0.028736,54.4127,0.115328
+1305,17.4983,57.1484,56.8684,0.071072,1.12906,0.008032,0.005536,0.028832,55.5096,0.116288
+1306,17.3067,57.7812,55.6073,0.070784,0.869248,0.007808,0.005568,0.028704,54.5105,0.11472
+1307,17.6918,56.5234,56.7316,0.069984,0.802464,0.007488,0.0048,0.028672,55.7036,0.114688
+1308,17.3465,57.6484,57.1251,0.069888,0.763904,0.00784,0.005568,0.028608,56.1338,0.115552
+1309,17.1881,58.1797,55.5418,0.07088,0.768576,0.006368,0.006144,0.028608,54.5458,0.11536
+1310,17.6211,56.75,55.7814,0.069728,0.870112,0.006336,0.006144,0.028672,54.6857,0.11472
+1311,17.3701,57.5703,57.7597,0.069632,0.867552,0.006944,0.00576,0.028416,56.6668,0.114688
+1312,16.9761,58.9062,56.8321,0.069792,0.837248,0.006656,0.006048,0.028736,55.7684,0.115296
+1313,17.3324,57.6953,55.5802,0.069632,0.851968,0.008128,0.005568,0.02864,54.5,0.116224
+1314,17.6139,56.7734,56.7177,0.070016,0.880672,0.007328,0.004928,0.028672,55.6112,0.114848
+1315,17.2484,57.9766,55.4094,0.069536,0.842272,0.006496,0.006144,0.028672,54.3416,0.114688
+1316,17.6479,56.6641,56.8833,0.071392,0.837792,0.006304,0.006144,0.028672,55.8182,0.114752
+1317,17.246,57.9844,56.8897,0.069664,0.764864,0.007392,0.004896,0.028672,55.8776,0.136576
+1318,17.1032,58.4688,55.6913,0.069632,0.86752,0.006976,0.005632,0.028672,54.5977,0.115136
+1319,17.4792,57.2109,56.7816,0.068352,0.854048,0.022496,0.006144,0.034816,55.6811,0.114656
+1320,17.4079,57.4453,56.8935,0.070752,0.752576,0.008,0.005536,0.028704,55.9132,0.114688
+1321,17.2089,58.1094,55.6267,0.069888,0.788832,0.006464,0.006144,0.028608,54.6119,0.114784
+1322,17.6381,56.6953,56.7706,0.069696,0.853952,0.007552,0.004736,0.028736,55.6892,0.116736
+1323,17.3043,57.7891,57.0325,0.069728,0.763904,0.007808,0.005568,0.027776,56.0425,0.115232
+1324,17.0598,58.6172,55.6831,0.071328,0.844128,0.007968,0.005568,0.028544,54.6088,0.116736
+1325,17.6991,56.5,56.5124,0.070944,0.878752,0.006688,0.005984,0.030912,55.4045,0.11456
+1326,17.1904,58.1719,57.0633,0.0704,0.884736,0.00736,0.004928,0.028672,55.9514,0.11584
+1327,17.267,57.9141,55.5784,0.070368,0.812896,0.006304,0.006144,0.028672,54.538,0.116032
+1328,17.6454,56.6719,55.7072,0.06976,0.782176,0.007232,0.005056,0.028672,54.6993,0.115008
+1329,17.5655,56.9297,57.2798,0.072032,0.865824,0.006592,0.00608,0.028512,56.1847,0.116096
+1330,17.1743,58.2266,55.3967,0.070144,0.781792,0.022784,0.0056,0.039264,54.3605,0.116576
+1331,17.7778,56.25,56.8504,0.077792,0.791616,0.007104,0.0056,0.02864,55.8246,0.115008
+1332,17.26,57.9375,56.7941,0.070976,0.764,0.00672,0.005952,0.028512,55.8036,0.1144
+1333,17.288,57.8438,55.5175,0.070752,0.801856,0.015072,0.006144,0.028672,54.4768,0.118208
+1334,17.704,56.4844,55.6234,0.070656,0.76256,0.006432,0.006144,0.028672,54.6325,0.116416
+1335,17.6114,56.7812,56.7419,0.071328,0.805056,0.006304,0.006144,0.028672,55.7097,0.11472
+1336,16.7015,59.875,56.5428,0.069888,0.88272,0.007488,0.004768,0.028672,55.433,0.116256
+1337,17.9196,55.8047,55.5274,0.071168,0.778304,0.00656,0.006112,0.028704,54.5198,0.116704
+1338,17.5704,56.9141,57.157,0.071584,0.893056,0.007584,0.004704,0.028864,56.0351,0.116064
+1339,17.1421,58.3359,55.7444,0.07104,0.834176,0.007904,0.0056,0.02848,54.6806,0.116576
+1340,17.5583,56.9531,55.4768,0.069696,0.895264,0.006272,0.006144,0.028544,54.3561,0.114816
+1341,17.66,56.625,57.7233,0.073824,0.824704,0.015328,0.004128,0.028832,56.6609,0.11552
+1342,16.9178,59.1094,56.8798,0.070304,0.847904,0.00768,0.004576,0.029856,55.804,0.115456
+1343,17.149,58.3125,55.5685,0.06976,0.878592,0.008,0.005536,0.028672,54.4633,0.114688
+1344,17.4935,57.1641,57.1617,0.071456,0.911296,0.023872,0.005088,0.036,55.9993,0.11472
+1345,16.9987,58.8281,55.6652,0.070176,0.87968,0.007136,0.005568,0.028384,54.5575,0.116704
+1346,17.6649,56.6094,56.9344,0.069664,0.876288,0.006368,0.025792,0.027456,55.814,0.114816
+1347,17.1605,58.2734,57.036,0.071712,0.935136,0.025216,0.005984,0.028576,55.8548,0.114624
+1348,16.8067,59.5,56.1889,0.071712,0.860128,0.021568,0.005088,0.02864,55.0851,0.116736
+1349,17.7556,56.3203,55.6913,0.069664,0.905184,0.007968,0.005568,0.028672,54.5588,0.115392
+1350,17.6357,56.7031,56.7532,0.074464,0.882944,0.007232,0.005056,0.028704,55.6401,0.114688
+1351,17.1169,58.4219,55.6012,0.071072,0.887392,0.018432,0.005984,0.04256,54.4608,0.114944
+1352,17.246,57.9844,55.569,0.070272,0.907264,0.007648,0.004672,0.02976,54.4341,0.115296
+1353,18.046,55.4141,57.0448,0.0696,0.810208,0.017184,0.005856,0.041024,55.9863,0.114624
+1354,17.246,57.9844,55.3635,0.070688,0.808736,0.007776,0.0056,0.028672,54.3242,0.117792
+1355,17.4506,57.3047,55.9849,0.070432,0.784384,0.007296,0.004992,0.028672,54.9741,0.11504
+1356,17.7654,56.2891,57.8319,0.070464,0.794656,0.007328,0.00496,0.028672,56.8109,0.11488
+1357,17.0032,58.8125,56.8893,0.070816,0.7824,0.006912,0.00576,0.028672,55.878,0.116736
+1358,17.2693,57.9062,55.6402,0.070848,0.7688,0.007808,0.005568,0.028608,54.6437,0.114816
+1359,17.6406,56.6875,56.5658,0.07088,0.803392,0.006368,0.006144,0.028672,55.5352,0.115104
+1360,17.363,57.5938,55.4423,0.07008,0.776416,0.008128,0.005568,0.028544,54.4387,0.11488
+1361,17.731,56.3984,55.5325,0.071072,0.756288,0.007296,0.004992,0.028672,54.5485,0.115712
+1362,17.6844,56.5469,57.7633,0.069632,0.75504,0.006816,0.005888,0.028416,56.7813,0.11616
+1363,16.9851,58.875,55.8428,0.07136,0.784704,0.007456,0.004832,0.028704,54.8306,0.115168
+1364,17.5222,57.0703,55.9432,0.069632,1.03821,0.00832,0.006144,0.030848,54.6749,0.115072
+1365,17.6357,56.7031,56.9587,0.069888,0.751616,0.006432,0.006176,0.028672,55.967,0.128896
+1366,17.0553,58.6328,55.6752,0.069984,0.804864,0.0072,0.005088,0.028704,54.6427,0.116704
+1367,17.6042,56.8047,56.1666,0.070368,0.773632,0.006688,0.006112,0.028512,55.1651,0.116224
+1368,17.2716,57.8984,57.5242,0.069632,1.46406,0.0064,0.006144,0.02864,55.8244,0.124928
+1369,17.1951,58.1562,56.3799,0.070496,0.87632,0.00656,0.006112,0.028672,55.2766,0.115104
+1370,17.3724,57.5625,56.4861,0.069728,0.864416,0.00736,0.00496,0.02864,55.3964,0.114688
+1371,17.4126,57.4297,57.2059,0.071072,0.805088,0.006528,0.006144,0.028416,56.1748,0.113856
+1372,17.1146,58.4297,55.4682,0.070272,0.794624,0.007744,0.005568,0.028736,54.444,0.11728
+1373,17.7359,56.3828,55.9411,0.071296,0.770368,0.006176,0.006144,0.028576,54.9438,0.11472
+1374,17.5439,57,57.2989,0.069792,0.779808,0.006464,0.006176,0.02864,56.2934,0.114688
+1375,17.1444,58.3281,55.6155,0.071392,0.768288,0.008032,0.005536,0.028448,54.6191,0.114688
+1376,17.5969,56.8281,56.361,0.068704,0.803744,0.007168,0.00512,0.028672,55.3308,0.116736
+1377,17.4696,57.2422,56.8546,0.069696,0.770176,0.007616,0.00464,0.028864,55.8588,0.114784
+1378,17.2716,57.8984,55.5218,0.07008,0.788448,0.006176,0.006144,0.028672,54.5067,0.115616
+1379,17.6381,56.6953,55.5417,0.07088,0.901888,0.007168,0.00512,0.028672,54.4031,0.124928
+1380,17.6991,56.5,56.6805,0.069696,0.777856,0.006464,0.006144,0.02864,55.6749,0.116768
+1381,17.274,57.8906,55.3106,0.070272,0.843456,0.006464,0.006176,0.02864,54.2392,0.116352
+1382,17.7359,56.3828,56.6561,0.070848,0.833952,0.006624,0.005984,0.028864,55.595,0.114848
+1383,17.295,57.8203,56.6626,0.07008,0.831648,0.007968,0.005568,0.032832,55.5999,0.114656
+1384,17.3819,57.5312,56.854,0.069728,0.77968,0.006752,0.005888,0.028704,55.8482,0.115008
+1385,17.295,57.8203,55.7435,0.071104,0.757408,0.007072,0.0056,0.028384,54.7582,0.115744
+1386,17.5198,57.0781,56.7954,0.069952,0.82704,0.006464,0.006144,0.028544,55.742,0.115328
+1387,17.2182,58.0781,55.4393,0.069632,0.823296,0.00768,0.004608,0.028672,54.3805,0.124864
+1388,17.6187,56.7578,55.674,0.071648,0.870432,0.007424,0.004864,0.028672,54.5731,0.117952
+1389,17.6066,56.7969,57.0848,0.070528,0.814144,0.007104,0.005568,0.028544,56.0437,0.115232
+1390,17.1559,58.2891,55.5753,0.070368,0.85712,0.007072,0.005568,0.028736,54.4897,0.116736
+1391,17.4577,57.2812,55.8984,0.069952,0.884768,0.007424,0.004832,0.028672,54.7881,0.114688
+1392,17.363,57.5938,57.1237,0.072608,0.881824,0.006976,0.005728,0.02864,56.013,0.114912
+1393,16.8222,59.4453,56.8819,0.0704,0.948224,0.007264,0.005024,0.028672,55.7076,0.114688
+1394,17.6406,56.6875,55.6239,0.069824,0.921376,0.006368,0.006144,0.028672,54.4768,0.11472
+1395,17.7457,56.3516,56.8113,0.070272,0.75776,0.007968,0.005568,0.028832,55.8261,0.114784
+1396,17.1974,58.1484,55.8004,0.070208,0.878592,0.006144,0.006144,0.028672,54.6939,0.116736
+1397,17.6163,56.7656,56.0496,0.071488,0.821408,0.007424,0.004864,0.028704,55.0001,0.115616
+1398,17.2484,57.9766,57.6332,0.069952,1.49283,0.006464,0.006144,0.02992,55.9112,0.116736
+1399,17.2089,58.1094,56.0503,0.070624,0.843328,0.006592,0.00608,0.028608,54.9799,0.1152
+1400,17.5222,57.0703,56.5555,0.070976,0.786368,0.006912,0.005792,0.02848,55.5423,0.114688
+1401,17.323,57.7266,56.9753,0.0696,0.82944,0.00736,0.004928,0.028672,55.9186,0.116736
+1402,17.2182,58.0781,55.7146,0.070432,0.774144,0.007488,0.0048,0.028672,54.7123,0.116736
+1403,17.5728,56.9062,56.1069,0.07104,0.83008,0.007584,0.004704,0.028768,55.0499,0.114784
+1404,17.4316,57.3672,57.4894,0.071424,1.08979,0.038912,0.006144,0.03232,56.1361,0.114688
+1405,17.1467,58.3203,55.7272,0.07088,0.751776,0.006784,0.005984,0.028672,54.7468,0.116256
+1406,17.5921,56.8438,56.5002,0.071648,0.865504,0.006976,0.00576,0.028608,55.4066,0.115104
+1407,17.2716,57.8984,56.7999,0.072352,0.899072,0.008032,0.005568,0.02896,55.6727,0.11328
+1408,17.2973,57.8125,55.4755,0.069664,0.812192,0.007008,0.00576,0.031136,54.4348,0.114912
+1409,17.6236,56.7422,55.8699,0.070368,0.795744,0.007008,0.005664,0.029056,54.8456,0.116512
+1410,17.5583,56.9531,57.9086,0.071264,0.8032,0.017952,0.004576,0.029728,56.8658,0.116096
+1411,16.9964,58.8359,56.7829,0.069632,0.786464,0.00768,0.004576,0.028704,55.7722,0.1136
+1412,17.2623,57.9297,55.5561,0.071712,0.800768,0.007616,0.00464,0.028672,54.5259,0.1168
+1413,17.66,56.625,56.8073,0.071104,0.790848,0.0064,0.006144,0.028672,55.7896,0.11456
+1414,17.288,57.8438,55.6207,0.071104,0.793184,0.007328,0.004928,0.028704,54.5994,0.116096
+1415,17.6163,56.7656,55.7766,0.07088,0.770816,0.007936,0.005568,0.027584,54.7788,0.115008
+1416,17.5872,56.8594,57.7558,0.06976,0.775328,0.00688,0.005568,0.028576,56.7544,0.115328
+1417,16.9357,59.0469,56.1889,0.071392,0.917728,0.006208,0.006144,0.028672,55.0438,0.114944
+1418,17.2996,57.8047,56.1292,0.069632,1.3016,0.007072,0.005632,0.031136,54.5977,0.116384
+1419,17.6576,56.6328,56.8701,0.071104,0.788384,0.006816,0.005888,0.0288,55.8525,0.116608
+1420,17.2903,57.8359,55.6152,0.069952,0.802592,0.006432,0.006144,0.028672,54.5853,0.116096
+1421,17.6844,56.5469,57.129,0.069728,0.773952,0.006304,0.006144,0.028672,56.1295,0.114688
+1422,17.1835,58.1953,56.875,0.069632,0.79872,0.007424,0.004864,0.030048,55.8414,0.12288
+1423,16.8332,59.4062,56.2155,0.069888,0.854016,0.007328,0.00496,0.028672,55.1357,0.11488
+1424,17.7976,56.1875,56.6955,0.070304,0.854048,0.007872,0.005568,0.028544,55.614,0.115136
+1425,17.3324,57.6953,56.8659,0.071136,0.78496,0.00736,0.004896,0.028672,55.8541,0.11472
+1426,17.2786,57.875,55.3275,0.070432,0.753664,0.007616,0.004672,0.028704,54.345,0.117408
+1427,17.6844,56.5469,56.8607,0.07088,0.783008,0.014464,0.006144,0.028672,55.8428,0.114688
+1428,17.2553,57.9531,56.8835,0.070176,0.837632,0.006272,0.006048,0.028576,55.8204,0.114464
+1429,17.1743,58.2266,56.2815,0.070304,0.894464,0.006848,0.014048,0.030304,55.1468,0.11872
+1430,17.5198,57.0781,56.4394,0.070208,0.755712,0.007232,0.005056,0.028672,55.4578,0.114688
+1431,17.2136,58.0938,56.915,0.069632,0.878528,0.006208,0.016,0.028928,55.7999,0.115808
+1432,17.2623,57.9297,55.5254,0.070656,0.758816,0.00736,0.004928,0.02864,54.5403,0.11472
+1433,17.6722,56.5859,55.9878,0.071296,0.79696,0.006208,0.006144,0.02864,54.9613,0.117216
+1434,17.4744,57.2266,57.9502,0.071104,0.85408,0.006656,0.005856,0.02848,56.8688,0.115232
+1435,16.8465,59.3594,56.9132,0.069632,0.882688,0.008064,0.0056,0.027456,55.7988,0.120928
+1436,17.2414,58,55.5561,0.070816,0.850784,0.022368,0.005568,0.028608,54.4626,0.115328
+1437,17.5631,56.9375,56.8034,0.070752,0.832032,0.006528,0.006016,0.0288,55.7445,0.11472
+1438,17.295,57.8203,55.4312,0.070208,0.78384,0.007104,0.006144,0.028512,54.4193,0.116096
+1439,17.6698,56.5938,55.3859,0.069664,0.794592,0.007904,0.005568,0.029088,54.3643,0.114752
+1440,17.704,56.4844,57.5959,0.067712,0.791616,0.007008,0.005632,0.028832,56.5804,0.114784
+1441,17.0235,58.7422,55.6598,0.069728,0.7896,0.006944,0.005568,0.028576,54.6434,0.116032
+1442,17.609,56.7891,56.7792,0.070048,0.782336,0.008192,0.005664,0.02864,55.7696,0.114688
+1443,17.2507,57.9688,56.961,0.077824,0.841728,0.007936,0.005568,0.028704,55.8845,0.114688
+1444,17.1306,58.375,55.9773,0.071552,0.891008,0.007872,0.005536,0.028736,54.8565,0.116096
+1445,17.4625,57.2656,56.5391,0.069888,0.905216,0.007712,0.004576,0.028928,55.4084,0.114432
+1446,17.4126,57.4297,56.866,0.070752,0.76896,0.007456,0.0048,0.028672,55.8674,0.11792
+1447,16.8888,59.2109,55.6682,0.069728,0.894368,0.006656,0.005376,0.028704,54.5472,0.116192
+1448,17.9876,55.5938,55.3759,0.071456,0.753888,0.00784,0.005536,0.028896,54.393,0.115296
+1449,17.6771,56.5703,58.034,0.070336,0.755744,0.007872,0.005536,0.027776,57.0527,0.114016
+1450,16.7342,59.7578,56.9571,0.0712,0.875392,0.008128,0.005536,0.028576,55.8534,0.114816
+1451,17.3842,57.5234,55.5131,0.071008,0.785056,0.007488,0.0048,0.028672,54.5004,0.115712
+1452,17.5655,56.9297,56.9457,0.0712,0.885216,0.007872,0.0056,0.027584,55.8325,0.115776
+1453,17.1997,58.1406,57.1401,0.070304,0.890208,0.006816,0.005856,0.0288,56.0232,0.114912
+1454,17.2043,58.125,55.5782,0.070016,0.878592,0.00752,0.004768,0.028896,54.4725,0.115936
+1455,17.5848,56.8672,57.0972,0.071392,0.905408,0.00624,0.006112,0.028672,55.965,0.114464
+1456,16.6558,60.0391,55.761,0.074208,0.919648,0.007168,0.00512,0.028672,54.6099,0.116224
+1457,18.0765,55.3203,55.6602,0.07104,0.85872,0.007776,0.014752,0.032032,54.5574,0.118464
+1458,17.6649,56.6094,56.854,0.069984,0.75776,0.007456,0.004832,0.028704,55.8694,0.11584
+1459,17.2251,58.0547,56.1139,0.070368,0.845824,0.007808,0.005568,0.028704,55.0428,0.1128
+1460,17.2159,58.0859,55.93,0.086048,1.01754,0.006432,0.006144,0.034848,54.6611,0.117824
+1461,17.5439,57,56.7165,0.070688,0.84272,0.007456,0.004832,0.028672,55.6462,0.115968
+1462,17.2251,58.0547,56.7497,0.07168,0.876224,0.006464,0.006144,0.028416,55.6464,0.114432
+1463,17.2321,58.0312,55.9764,0.070048,0.87248,0.007776,0.005568,0.028832,54.8743,0.117376
+1464,17.1812,58.2031,57.0368,0.069632,1.0281,0.014368,0.006016,0.028512,55.7754,0.114816
+1465,17.2367,58.0156,55.6285,0.070336,0.876608,0.008064,0.0056,0.028608,54.5164,0.12288
+1466,17.3842,57.5234,56.1293,0.073216,0.973056,0.0064,0.006144,0.028672,54.9248,0.117024
+1467,17.5607,56.9453,57.8455,0.070048,0.900736,0.006656,0.006016,0.028608,56.7175,0.115904
+1468,16.8754,59.2578,55.8367,0.069696,0.868352,0.007904,0.012576,0.028896,54.7346,0.11472
+1469,17.609,56.7891,56.4074,0.071712,0.764992,0.007072,0.005632,0.028832,55.4126,0.116512
+1470,17.3677,57.5781,56.959,0.07072,0.803104,0.006816,0.005952,0.028384,55.9273,0.116736
+1471,17.26,57.9375,55.5343,0.070336,0.752736,0.007104,0.005632,0.028736,54.5549,0.114848
+1472,17.5151,57.0938,55.5774,0.070432,0.765952,0.006144,0.006144,0.028672,54.5853,0.114688
+1473,17.643,56.6797,58.0219,0.069632,1.07725,0.006144,0.006144,0.028672,56.7173,0.116704
+1474,16.9649,58.9453,56.7276,0.069696,0.800736,0.007552,0.004736,0.028672,55.701,0.1152
+1475,16.9178,59.1094,55.8469,0.069664,0.976448,0.00656,0.006112,0.04416,54.629,0.11504
+1476,17.8174,56.125,57.2399,0.071072,0.936864,0.007968,0.005568,0.028864,56.0748,0.114688
+1477,17.0689,58.5859,55.6672,0.070432,0.90928,0.006176,0.006144,0.028672,54.53,0.116416
+1478,17.5031,57.1328,56.0312,0.073024,0.848608,0.00752,0.004736,0.028672,54.954,0.114656
+1479,17.4292,57.375,57.0348,0.069728,0.880064,0.00672,0.006016,0.0288,55.9288,0.114688
+1480,17.1743,58.2266,56.1462,0.069728,0.903296,0.0072,0.00512,0.02864,55.0169,0.115328
+1481,17.4339,57.3594,56.6415,0.070944,0.919872,0.00656,0.022464,0.028736,55.4783,0.114688
+1482,17.2043,58.125,57.1009,0.076032,0.89328,0.008064,0.005568,0.0288,55.9743,0.114816
+1483,17.149,58.3125,55.6726,0.071008,0.928384,0.007872,0.005568,0.027584,54.5172,0.11504
+1484,17.5246,57.0625,56.0825,0.070752,0.852448,0.006624,0.006112,0.028672,55.0031,0.114752
+1485,16.8955,59.1875,57.7475,0.069792,1.63005,0.00784,0.005568,0.04592,55.8716,0.116736
+1486,17.5055,57.125,55.6908,0.071168,0.757248,0.007104,0.005568,0.0288,54.7046,0.116256
+1487,17.6357,56.7031,56.8301,0.070208,0.8208,0.014752,0.006144,0.03824,55.7636,0.116352
+1488,17.1559,58.2891,56.9902,0.07664,0.856192,0.008032,0.005568,0.029408,55.8981,0.116256
+1489,17.1674,58.25,55.8879,0.069792,0.887968,0.006848,0.005824,0.039232,54.7633,0.114912
+1490,17.4983,57.1484,55.4909,0.070176,0.857728,0.006304,0.006144,0.028672,54.4067,0.115168
+1491,17.2577,57.9453,57.0767,0.070592,1.04355,0.015264,0.006144,0.028672,55.7978,0.114688
+1492,17.288,57.8438,55.9757,0.069888,0.91232,0.006976,0.005696,0.028704,54.8356,0.11648
+1493,17.5679,56.9219,56.6702,0.070976,0.805568,0.007296,0.013184,0.028672,55.6293,0.1152
+1494,17.274,57.8906,56.9581,0.0696,0.81104,0.022496,0.006144,0.038528,55.8943,0.116
+1495,17.1904,58.1719,55.3862,0.071808,0.82272,0.006592,0.00608,0.028576,54.3336,0.116832
+1496,17.6722,56.5859,56.6458,0.069888,0.828576,0.006656,0.005568,0.028512,55.5931,0.113536
+1497,17.1881,58.1797,57.1387,0.07072,0.844768,0.007776,0.00448,0.049152,56.0476,0.114272
+1498,17.1352,58.3594,56.066,0.07104,0.902912,0.00704,0.005664,0.028704,54.9336,0.117024
+1499,17.472,57.2344,56.3426,0.069632,0.826848,0.015936,0.005088,0.028672,55.2817,0.114752
+1500,16.7539,59.6875,58.8001,0.07136,2.51728,0.007648,0.033088,0.028288,56.0257,0.116736
+1501,17.2066,58.1172,56.0616,0.071744,0.950208,0.007552,0.004736,0.028864,54.8822,0.116224
+1502,17.6187,56.7578,57.0348,0.070528,0.747264,0.0064,0.006144,0.028608,56.06,0.115872
+1503,17.1812,58.2031,56.8689,0.070752,0.769984,0.007104,0.005568,0.028672,55.8721,0.114752
+1504,17.1858,58.1875,56.4059,0.070752,0.913824,0.018912,0.006144,0.028608,55.2524,0.115264
+1505,17.5583,56.9531,56.6366,0.07152,0.76176,0.0064,0.006144,0.028672,55.6462,0.115904
+1506,17.3113,57.7656,57.0034,0.069696,0.777248,0.007104,0.004128,0.0288,56.0019,0.114496
+1507,17.202,58.1328,55.4844,0.0712,0.848576,0.006144,0.01552,0.027648,54.3979,0.117504
+1508,17.7531,56.3281,56.7019,0.070624,0.751584,0.006144,0.006144,0.028672,55.724,0.114688
+1509,17.295,57.8203,56.8768,0.0696,0.833536,0.008064,0.0056,0.028864,55.8161,0.11504
+1510,17.2856,57.8516,56.8281,0.07008,0.752,0.007488,0.0048,0.0288,55.8468,0.118176
+1511,17.2205,58.0703,55.6068,0.069984,0.804576,0.006432,0.006144,0.028672,54.5749,0.11616
+1512,17.5487,56.9844,56.9242,0.070976,0.87712,0.006272,0.006144,0.028672,55.8197,0.115232
+1513,17.2205,58.0703,55.7158,0.07536,0.806784,0.01488,0.006144,0.047104,54.6505,0.115104
+1514,17.6163,56.7656,56.5379,0.076576,0.800544,0.006432,0.006144,0.028672,55.1729,0.446624
+1515,17.309,57.7734,56.728,0.070016,0.772192,0.007264,0.004992,0.028672,55.7294,0.115488
+1516,17.2926,57.8281,55.7452,0.084608,0.751616,0.007872,0.005568,0.027712,54.751,0.116736
+1517,17.5439,57,56.8338,0.069632,0.8392,0.006624,0.00608,0.028448,55.7653,0.118528
+1518,17.288,57.8438,56.6865,0.07168,0.79664,0.006176,0.006144,0.028672,55.6617,0.115424
+1519,17.2089,58.1094,55.7272,0.071296,0.87632,0.00672,0.005952,0.028736,54.6133,0.124864
+1520,17.6042,56.8047,57.0536,0.07136,0.842176,0.006432,0.006144,0.028608,55.9841,0.114752
+1521,17.2228,58.0625,56.7256,0.070496,0.771904,0.006336,0.006144,0.02864,55.7241,0.118048
+1522,17.1651,58.2578,55.7978,0.069664,0.857376,0.006848,0.005856,0.028864,54.7125,0.116608
+1523,17.5463,56.9922,56.7789,0.070048,0.876416,0.006272,0.005856,0.02896,55.6769,0.114464
+1524,17.3043,57.7891,56.7606,0.070112,0.770048,0.007712,0.004576,0.028832,55.7628,0.116512
+1525,17.1974,58.1484,56.1359,0.06992,0.793664,0.007072,0.005568,0.028672,55.1164,0.114592
+1526,17.1674,58.25,56.5177,0.070816,0.805728,0.007936,0.005568,0.028608,55.4847,0.114304
+1527,17.4102,57.4375,56.8828,0.07168,0.955648,0.006912,0.005792,0.028512,55.6979,0.116384
+1528,17.3583,57.6094,55.2747,0.071104,0.750144,0.007648,0.00464,0.028704,54.2965,0.115936
+1529,17.6527,56.6484,55.9575,0.071104,0.866592,0.0064,0.006144,0.028448,54.864,0.114816
+1530,17.6479,56.6641,57.6297,0.07168,0.769056,0.007104,0.005568,0.02832,56.6333,0.114688
+1531,17.0644,58.6016,56.6626,0.070272,0.758816,0.007104,0.005568,0.028704,55.6771,0.115072
+1532,17.0349,58.7031,55.3574,0.069696,0.845344,0.006528,0.006144,0.02848,54.286,0.115264
+1533,18.0358,55.4453,56.7521,0.071456,0.75696,0.007104,0.0056,0.028576,55.7676,0.114816
+1534,17.3067,57.7812,55.8735,0.069632,0.755712,0.007168,0.00512,0.028768,54.8924,0.114688
+1535,17.5607,56.9453,55.6991,0.071168,0.768544,0.008032,0.0056,0.028416,54.7001,0.117248
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..fee7332
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,418.771,2.44442,1.77265,0.0170452,0.396891,0.00739922,0.00508,0.00829841,0.0182896,0.0197596,1.27597,0.0239241
+max_1024,824.477,4.82837,2.69325,0.06736,0.877152,0.054208,0.02048,0.034848,0.055296,0.081792,2.10125,0.34672
+min_1024,207.109,1.21289,1.53808,0.012288,0.318464,0.006016,0.004064,0.006432,0.016384,0.017312,1.11248,0.014304
+512,398.327,2.5105,1.57286,0.012288,0.364352,0.006336,0.005408,0.008,0.017056,0.018688,1.12557,0.015168
+513,473.389,2.11243,1.93331,0.016384,0.335488,0.006336,0.004288,0.008192,0.018112,0.020096,1.50966,0.014752
+514,363.394,2.75183,1.83158,0.016544,0.604992,0.009536,0.0048,0.008032,0.018624,0.0184,1.13459,0.016064
+515,452.472,2.21008,1.56877,0.016384,0.3416,0.00656,0.004096,0.010176,0.017568,0.01936,1.13789,0.015136
+516,353.012,2.83276,2.0031,0.016448,0.39504,0.00624,0.00432,0.008192,0.017728,0.019136,1.52166,0.014336
+517,450.779,2.21838,1.80749,0.016384,0.57344,0.00944,0.004896,0.008192,0.018496,0.020416,1.14067,0.015552
+518,445.823,2.24304,1.56838,0.016608,0.344096,0.006432,0.005344,0.008,0.017376,0.019808,1.13504,0.01568
+519,474.321,2.10828,1.69699,0.016416,0.455808,0.007008,0.005216,0.008352,0.019072,0.019744,1.14973,0.015648
+520,397.728,2.51428,1.61114,0.016384,0.378176,0.006624,0.00432,0.008192,0.017984,0.01888,1.14483,0.015744
+521,467.42,2.1394,1.56378,0.016384,0.344064,0.006144,0.005728,0.008,0.016992,0.020352,1.13043,0.01568
+522,457.909,2.18384,1.70157,0.016384,0.464896,0.007872,0.004416,0.008192,0.019488,0.019296,1.14496,0.016064
+523,383.144,2.60999,1.6632,0.016608,0.425984,0.006144,0.005408,0.008256,0.017088,0.019648,1.14774,0.01632
+524,444.059,2.25195,1.57494,0.016384,0.356352,0.007488,0.0048,0.008192,0.01808,0.01872,1.12995,0.014976
+525,466.196,2.14502,1.69984,0.016416,0.456672,0.00768,0.004608,0.008192,0.018432,0.02048,1.15238,0.014976
+526,402.733,2.48303,1.8473,0.017504,0.594848,0.00944,0.004864,0.008192,0.018464,0.020224,1.1585,0.015264
+527,432.25,2.31348,1.5887,0.016384,0.36864,0.00736,0.004896,0.008,0.016672,0.020416,1.1305,0.01584
+528,448.754,2.22839,1.69875,0.015328,0.464,0.007008,0.004096,0.008352,0.019712,0.019072,1.1448,0.016384
+529,307.3,3.25415,1.69574,0.018432,0.473088,0.007424,0.004864,0.008,0.018016,0.01904,1.13206,0.014816
+530,493.821,2.02502,1.56573,0.016672,0.346656,0.006336,0.005376,0.008512,0.016832,0.019808,1.13021,0.015328
+531,431.067,2.31982,1.97965,0.016416,0.349312,0.006144,0.004864,0.008032,0.01664,0.020256,1.54032,0.017664
+532,378.628,2.64111,1.5783,0.017408,0.355168,0.006304,0.005376,0.008256,0.017088,0.02,1.13302,0.01568
+533,467.393,2.13953,1.56051,0.016448,0.336608,0.00752,0.004768,0.008224,0.018336,0.018496,1.13459,0.01552
+534,459.631,2.17566,1.58627,0.017472,0.353216,0.007488,0.0048,0.007936,0.01664,0.020064,1.14275,0.015904
+535,362.767,2.75659,1.6241,0.018496,0.39008,0.006144,0.005792,0.007968,0.01696,0.02016,1.14304,0.015456
+536,459.734,2.17517,1.58109,0.016384,0.35632,0.006176,0.00544,0.008064,0.017216,0.018432,1.1377,0.01536
+537,447.259,2.23584,2.26086,0.016736,0.364128,0.006688,0.004256,0.009376,0.017248,0.019616,1.55472,0.268096
+538,345.057,2.89807,1.58723,0.016384,0.358432,0.00736,0.004896,0.008,0.017824,0.019136,1.14054,0.014656
+539,467.794,2.1377,1.95293,0.016384,0.350144,0.00624,0.005376,0.008,0.017344,0.018432,1.5152,0.015808
+540,372.77,2.68262,2.20166,0.016512,0.551296,0.028384,0.004416,0.008192,0.019776,0.019136,1.53914,0.014816
+541,323.258,3.09351,1.62333,0.016384,0.393216,0.006144,0.005568,0.008,0.017152,0.020352,1.14086,0.015648
+542,466.435,2.14392,1.69098,0.017472,0.469952,0.007808,0.00448,0.008192,0.018432,0.02048,1.12845,0.015712
+543,403.308,2.47949,1.59744,0.016384,0.370688,0.00752,0.004768,0.008032,0.016544,0.020448,1.13667,0.016384
+544,469.24,2.1311,1.59146,0.016448,0.36112,0.006144,0.0056,0.008544,0.017984,0.019072,1.14074,0.015808
+545,461.002,2.16919,1.74493,0.016384,0.518144,0.008096,0.004192,0.008192,0.019776,0.019136,1.13574,0.015264
+546,410.997,2.43311,1.71632,0.016768,0.488864,0.006752,0.005216,0.007072,0.02,0.018912,1.13664,0.016096
+547,438.427,2.28088,1.596,0.016544,0.361184,0.007584,0.004704,0.008192,0.017504,0.019392,1.1448,0.016096
+548,425.426,2.35059,1.71203,0.016384,0.493408,0.006304,0.005664,0.008256,0.018848,0.020256,1.12662,0.016288
+549,419.157,2.38574,2.10128,0.01744,0.48432,0.009504,0.004832,0.008192,0.018464,0.02032,1.52378,0.014432
+550,387.897,2.578,1.59222,0.016832,0.356864,0.007296,0.004864,0.008288,0.018432,0.01856,1.1447,0.016384
+551,473.745,2.11084,1.66851,0.016384,0.446144,0.006496,0.005536,0.007872,0.018656,0.019104,1.13254,0.015776
+552,376.419,2.65662,1.55853,0.017952,0.338336,0.006208,0.005472,0.006816,0.018208,0.018656,1.13219,0.014688
+553,467.687,2.13818,1.5792,0.016512,0.3448,0.018432,0.005504,0.007968,0.017248,0.020192,1.13283,0.015712
+554,421.291,2.37366,1.75878,0.016416,0.538976,0.007776,0.004512,0.008192,0.018432,0.018432,1.13011,0.015936
+555,387.31,2.58191,1.58064,0.019456,0.356384,0.006688,0.004544,0.008192,0.017472,0.019232,1.1327,0.015968
+556,461.339,2.1676,1.57949,0.016544,0.357696,0.006816,0.004448,0.008192,0.017856,0.018848,1.1327,0.016384
+557,435.884,2.29419,1.5688,0.016384,0.351904,0.006496,0.004096,0.009728,0.01696,0.020416,1.12835,0.014464
+558,376.678,2.65479,1.5775,0.01872,0.358976,0.006304,0.005216,0.007136,0.0184,0.0184,1.12845,0.015904
+559,462.642,2.1615,1.57693,0.016672,0.360928,0.00752,0.004768,0.008192,0.018048,0.018816,1.1264,0.015584
+560,431.09,2.3197,1.56509,0.014208,0.343648,0.00688,0.00432,0.008192,0.01792,0.018976,1.13613,0.014816
+561,376.765,2.65417,1.60947,0.01952,0.39008,0.00752,0.004768,0.008128,0.017952,0.018976,1.1264,0.016128
+562,419.887,2.38159,1.58464,0.016384,0.371744,0.007008,0.004224,0.008192,0.018208,0.018656,1.12435,0.015872
+563,402.121,2.48682,2.00992,0.016576,0.383616,0.006144,0.005664,0.007968,0.017088,0.020416,1.53578,0.016672
+564,410.174,2.43799,1.56467,0.017472,0.350368,0.006944,0.005376,0.008032,0.017312,0.019456,1.12464,0.015072
+565,460.794,2.17017,1.90877,0.016416,0.35632,0.00736,0.004896,0.007968,0.01664,0.020288,1.46234,0.016544
+566,393.411,2.54187,2.41306,0.01664,0.355872,0.006944,0.004256,0.008192,0.018304,0.02,1.9679,0.014944
+567,243.628,4.10461,1.76134,0.01696,0.546848,0.007328,0.004864,0.008032,0.018432,0.018656,1.12435,0.015872
+568,389.687,2.56616,1.59738,0.014304,0.393312,0.006144,0.00576,0.008,0.01696,0.019744,1.11693,0.016224
+569,354.555,2.82043,1.6425,0.018432,0.41888,0.006688,0.004512,0.008192,0.017984,0.018912,1.13398,0.014912
+570,428.429,2.33411,2.01274,0.016512,0.41616,0.007712,0.004576,0.008192,0.017696,0.01888,1.5073,0.015712
+571,405.304,2.46729,2.396,0.016384,0.351584,0.006688,0.004224,0.008192,0.018016,0.018848,1.95715,0.014912
+572,319.75,3.12744,1.57894,0.016416,0.362464,0.00736,0.004896,0.008224,0.018176,0.018688,1.1264,0.01632
+573,403.706,2.47705,1.59357,0.016512,0.378976,0.006144,0.005792,0.008,0.016928,0.020128,1.12595,0.015136
+574,433.347,2.30762,1.69178,0.018784,0.4808,0.006848,0.00512,0.007168,0.02032,0.018592,1.11821,0.015936
+575,416.514,2.40088,1.56445,0.016448,0.351168,0.00672,0.004544,0.008192,0.01792,0.018976,1.12432,0.01616
+576,446.528,2.2395,1.55446,0.016384,0.354304,0.007424,0.004864,0.008,0.016576,0.01984,1.11248,0.014592
+577,400.254,2.49841,1.55651,0.019552,0.342944,0.007776,0.004512,0.008192,0.017792,0.019072,1.12154,0.015136
+578,456.684,2.1897,1.58515,0.017408,0.375136,0.006816,0.005408,0.007968,0.017344,0.018432,1.12026,0.016384
+579,324.051,3.08594,2.50554,0.01664,0.877152,0.006112,0.005856,0.008,0.016864,0.020288,1.5375,0.01712
+580,441.047,2.26733,1.56787,0.016384,0.353664,0.006784,0.004096,0.009312,0.017312,0.018432,1.12618,0.015712
+581,452.922,2.20789,1.90038,0.016384,0.349408,0.00672,0.00432,0.008192,0.018048,0.018816,1.46022,0.018272
+582,408.64,2.44714,2.41085,0.016384,0.351296,0.007104,0.004096,0.009216,0.017248,0.019712,1.96906,0.016736
+583,339.79,2.94299,1.55984,0.016384,0.341248,0.00672,0.004288,0.008192,0.018432,0.018464,1.13046,0.015648
+584,447.675,2.23376,1.59101,0.016608,0.381024,0.006176,0.005504,0.008,0.017216,0.019648,1.12109,0.015744
+585,472.243,2.11755,1.5737,0.016672,0.356896,0.008192,0.004096,0.008192,0.018464,0.028256,1.11786,0.015072
+586,419.672,2.38281,1.56694,0.016576,0.359936,0.006624,0.004544,0.008192,0.018176,0.018688,1.11821,0.016
+587,420.988,2.37537,1.96403,0.016384,0.384032,0.006688,0.004544,0.008224,0.018272,0.01856,1.49232,0.015008
+588,406.107,2.4624,2.1425,0.01648,0.512896,0.024384,0.004288,0.009248,0.01872,0.019168,1.52163,0.01568
+589,395.024,2.53149,1.55648,0.016448,0.337856,0.007584,0.004704,0.008192,0.017696,0.019168,1.13024,0.014592
+590,449.221,2.22607,1.96045,0.016384,0.371456,0.00736,0.004896,0.008,0.016608,0.020032,1.50109,0.014624
+591,390.374,2.56165,1.68723,0.018656,0.471232,0.007744,0.004544,0.008224,0.0184,0.019584,1.1232,0.015648
+592,449.665,2.22388,1.54794,0.016416,0.333792,0.007936,0.004352,0.008224,0.01824,0.018592,1.12435,0.016032
+593,415.353,2.40759,1.77766,0.016384,0.556288,0.006912,0.004096,0.009344,0.019328,0.019872,1.13101,0.014432
+594,423.951,2.35876,2.27296,0.01648,0.61344,0.054208,0.004096,0.008288,0.02,0.02,1.52048,0.015968
+595,358.183,2.79187,1.54256,0.016448,0.332128,0.006144,0.005856,0.007968,0.016928,0.020448,1.12157,0.015072
+596,439.014,2.27783,1.54829,0.016384,0.343456,0.006656,0.004192,0.008192,0.018144,0.01872,1.11747,0.015072
+597,454.354,2.20093,1.69165,0.018432,0.474624,0.006656,0.005952,0.008064,0.028224,0.019232,1.11514,0.015328
+598,444.155,2.25146,1.54768,0.016384,0.337696,0.006368,0.005408,0.008,0.016928,0.018816,1.1223,0.015776
+599,406.329,2.46106,1.74083,0.016416,0.518112,0.007232,0.004896,0.008064,0.01872,0.02048,1.13203,0.01488
+600,419.2,2.3855,1.72042,0.016448,0.510368,0.007392,0.004864,0.008064,0.018592,0.019776,1.11891,0.016
+601,416.239,2.40247,1.65654,0.016416,0.44192,0.00656,0.004096,0.008192,0.018368,0.019584,1.12531,0.016096
+602,418.707,2.38831,1.60755,0.014336,0.3912,0.006176,0.005664,0.008,0.016992,0.019616,1.12931,0.016256
+603,366.369,2.72949,1.62243,0.018624,0.397856,0.00624,0.00544,0.007968,0.01728,0.02048,1.13254,0.016
+604,453.499,2.20508,1.56608,0.017792,0.354656,0.006464,0.005216,0.007136,0.018336,0.018432,1.1223,0.015744
+605,432.844,2.3103,1.59405,0.01504,0.386848,0.006336,0.005216,0.007072,0.018464,0.0184,1.12166,0.015008
+606,391.774,2.55249,1.58499,0.016416,0.370624,0.006176,0.005312,0.007168,0.018208,0.018464,1.1264,0.016224
+607,450.853,2.21802,1.90093,0.016416,0.342368,0.006144,0.00576,0.008032,0.016928,0.020288,1.46794,0.017056
+608,381.805,2.61914,2.43072,0.016384,0.362464,0.006176,0.005504,0.007936,0.01728,0.018432,1.97837,0.018176
+609,326.609,3.06177,1.58749,0.017536,0.367488,0.006144,0.005664,0.008672,0.017824,0.019072,1.13046,0.014624
+610,473.034,2.11401,1.95184,0.016448,0.350208,0.006144,0.005568,0.007968,0.017184,0.019904,1.51405,0.014368
+611,364.543,2.74316,1.68954,0.018432,0.479232,0.007904,0.005536,0.00704,0.019968,0.018976,1.11613,0.01632
+612,407.522,2.45386,1.57229,0.016352,0.357792,0.006816,0.004128,0.008192,0.017856,0.019008,1.1264,0.015744
+613,475.781,2.10181,1.66486,0.016384,0.452608,0.00736,0.004896,0.008224,0.018432,0.02048,1.12026,0.016224
+614,398.018,2.51245,1.57872,0.016384,0.364032,0.006624,0.005408,0.008,0.017344,0.018432,1.1264,0.016096
+615,474.788,2.1062,1.54653,0.016672,0.341184,0.006688,0.004384,0.009216,0.01744,0.01952,1.11651,0.014912
+616,472.706,2.11548,1.94442,0.01648,0.352992,0.006144,0.004096,0.008192,0.018048,0.018816,1.50528,0.014368
+617,364.705,2.74194,1.78656,0.016672,0.57792,0.009888,0.005568,0.008224,0.018656,0.019104,1.11584,0.014688
+618,333.768,2.99609,1.6055,0.016608,0.380384,0.006688,0.005184,0.008672,0.01792,0.019424,1.13459,0.016032
+619,655.885,1.52466,1.68675,0.016384,0.460608,0.006336,0.005664,0.008032,0.019072,0.02048,1.13459,0.015584
+620,399.337,2.50415,1.75514,0.016384,0.546336,0.006624,0.005312,0.008096,0.018816,0.018976,1.11968,0.014912
+621,449.517,2.22461,1.56707,0.016576,0.354464,0.007424,0.0048,0.008288,0.017952,0.01888,1.12355,0.015136
+622,480.751,2.08008,1.66506,0.016384,0.456704,0.007648,0.00464,0.008192,0.018432,0.020512,1.11613,0.016416
+623,409.887,2.4397,1.7016,0.016832,0.483328,0.007584,0.004704,0.008192,0.018592,0.02032,1.1264,0.015648
+624,432.524,2.31201,1.56557,0.016576,0.348832,0.007744,0.004544,0.007776,0.0168,0.019488,1.12899,0.014816
+625,436.302,2.29199,1.74698,0.01744,0.520992,0.006368,0.0056,0.00816,0.01872,0.019872,1.13501,0.014816
+626,402.793,2.48267,1.61168,0.016544,0.385056,0.007488,0.004768,0.008064,0.017632,0.018816,1.13718,0.016128
+627,469.348,2.13062,1.5623,0.017472,0.33856,0.006464,0.005184,0.007104,0.018432,0.020224,1.1328,0.016064
+628,471.292,2.12183,1.6927,0.016384,0.477056,0.006272,0.005696,0.00864,0.019552,0.019328,1.1241,0.01568
+629,382.911,2.61157,1.82563,0.016512,0.594656,0.009472,0.004864,0.008192,0.01952,0.019392,1.13664,0.016384
+630,443.242,2.2561,1.56173,0.016512,0.346144,0.006112,0.005632,0.007968,0.01712,0.01952,1.12717,0.015552
+631,470.372,2.12598,1.70448,0.016576,0.479424,0.007584,0.004704,0.008192,0.019648,0.019296,1.13456,0.014496
+632,335.463,2.98096,1.62387,0.016448,0.399776,0.006112,0.005888,0.008,0.018144,0.019168,1.13459,0.015744
+633,466.568,2.14331,1.57491,0.016384,0.343776,0.006432,0.005152,0.007136,0.018336,0.019616,1.14291,0.015168
+634,477.222,2.09546,1.67981,0.016384,0.451008,0.007808,0.00448,0.008192,0.018464,0.020448,1.13802,0.015008
+635,350.745,2.85107,1.59722,0.018688,0.37488,0.007424,0.004864,0.008,0.017696,0.019296,1.13056,0.015808
+636,473.362,2.11255,1.5553,0.016832,0.337504,0.00672,0.00432,0.008192,0.0176,0.019264,1.12957,0.015296
+637,462.198,2.16357,1.53808,0.016384,0.329472,0.0064,0.004096,0.008192,0.01824,0.018624,1.12157,0.015104
+638,323.258,3.09351,1.69738,0.018464,0.484896,0.006592,0.005184,0.007104,0.018464,0.0184,1.1223,0.015968
+639,460.173,2.1731,1.59738,0.016832,0.382976,0.006176,0.005504,0.008,0.017184,0.020032,1.1248,0.015872
+640,444.252,2.25098,1.57037,0.016768,0.352288,0.00736,0.004864,0.008,0.01664,0.019872,1.12906,0.01552
+641,373.518,2.67725,1.58934,0.018464,0.362464,0.006144,0.005888,0.007968,0.016864,0.02048,1.13616,0.014912
+642,463.139,2.15918,1.92678,0.016384,0.364544,0.006144,0.005728,0.008,0.016992,0.019712,1.47123,0.018048
+643,380.811,2.62598,2.41466,0.016416,0.351616,0.006688,0.00416,0.008192,0.017728,0.019136,1.97632,0.0144
+644,268.115,3.72974,1.62179,0.017568,0.3736,0.007168,0.004864,0.008352,0.01648,0.019936,1.15766,0.01616
+645,556.522,1.79688,1.73965,0.015232,0.51104,0.007104,0.004096,0.008192,0.019488,0.019424,1.13981,0.015264
+646,407.036,2.45679,1.59808,0.016288,0.373472,0.007488,0.0048,0.008192,0.0184,0.018464,1.13459,0.016384
+647,460.328,2.17236,1.57552,0.01664,0.35056,0.006176,0.005216,0.007072,0.018432,0.02864,1.12643,0.016352
+648,456.43,2.19092,1.72438,0.016384,0.487424,0.007712,0.004576,0.008192,0.019584,0.019328,1.14483,0.016352
+649,416.556,2.40063,1.69779,0.018432,0.479008,0.006368,0.006144,0.00816,0.018464,0.020448,1.12544,0.015328
+650,450.555,2.21948,1.56707,0.016384,0.345536,0.00672,0.005344,0.006944,0.018336,0.018528,1.13418,0.015104
+651,430.976,2.32031,1.97987,0.016384,0.37584,0.006464,0.004768,0.008224,0.01776,0.019072,1.51658,0.014784
+652,378.418,2.64258,1.82886,0.016384,0.58368,0.009728,0.004608,0.008192,0.018432,0.019584,1.15306,0.0152
+653,440.952,2.26782,1.57472,0.016544,0.353504,0.00672,0.00432,0.008192,0.018432,0.020064,1.13091,0.016032
+654,457.449,2.18604,1.68547,0.01584,0.459584,0.007616,0.004672,0.008192,0.018432,0.020064,1.13501,0.016064
+655,425.647,2.34937,1.712,0.017824,0.479328,0.006656,0.005984,0.008256,0.018528,0.019616,1.13955,0.016256
+656,441.76,2.26367,1.57082,0.016384,0.350208,0.00624,0.00576,0.007968,0.016896,0.020256,1.13072,0.016384
+657,451.25,2.21606,1.69005,0.01632,0.460352,0.007072,0.004128,0.008192,0.020384,0.019808,1.13741,0.016384
+658,381.556,2.62085,1.9272,0.016384,0.68608,0.010016,0.00432,0.008192,0.018432,0.02,1.14749,0.016288
+659,438.075,2.28271,1.58118,0.016384,0.356352,0.006144,0.005504,0.008064,0.017152,0.019872,1.13715,0.01456
+660,443.242,2.2561,1.70778,0.015968,0.483264,0.006784,0.005216,0.008224,0.019328,0.019744,1.13328,0.015968
+661,362.51,2.75854,1.60362,0.018432,0.378816,0.00624,0.005216,0.007136,0.018368,0.019648,1.13491,0.014848
+662,467.633,2.13843,1.60554,0.016416,0.354272,0.006144,0.005536,0.008,0.017184,0.018432,1.1633,0.016256
+663,430.931,2.32056,1.57651,0.016416,0.351616,0.006144,0.004736,0.009344,0.01728,0.01968,1.13539,0.015904
+664,313.846,3.18628,1.69389,0.018656,0.44544,0.006816,0.004416,0.008192,0.016384,0.02016,1.15933,0.014496
+665,506.743,1.97339,1.5872,0.016384,0.3584,0.007648,0.00464,0.008192,0.016384,0.019648,1.14099,0.014912
+666,436.302,2.29199,2.02563,0.016352,0.383168,0.006176,0.005696,0.008,0.016992,0.02,1.55235,0.016896
+667,382.161,2.6167,1.57002,0.016288,0.348256,0.007264,0.004864,0.008352,0.018272,0.019616,1.13152,0.015584
+668,476.168,2.1001,1.58851,0.016384,0.351584,0.006816,0.005248,0.00704,0.018432,0.018528,1.14883,0.015648
+669,437,2.28833,2.42688,0.016384,0.350176,0.006176,0.005376,0.00832,0.017024,0.019552,1.98749,0.016384
+670,331.982,3.01221,1.57286,0.016416,0.350176,0.006144,0.005888,0.008448,0.01776,0.018944,1.13405,0.01504
+671,268.344,3.72656,1.59539,0.016384,0.366144,0.006592,0.004096,0.008192,0.018432,0.020384,1.14006,0.015104
+672,461.209,2.16821,1.57613,0.016384,0.348,0.006304,0.005184,0.009088,0.01776,0.018656,1.13891,0.01584
+673,471.726,2.11987,1.56893,0.016448,0.340672,0.006144,0.005536,0.008064,0.01712,0.019712,1.13946,0.015776
+674,448.926,2.22754,1.58102,0.016384,0.354176,0.006272,0.005408,0.008,0.017312,0.018432,1.13869,0.016352
+675,430.705,2.32178,1.82538,0.016512,0.596288,0.008352,0.006144,0.008192,0.018432,0.020032,1.1361,0.015328
+676,437.233,2.28711,1.58762,0.016544,0.344736,0.007552,0.004736,0.008,0.01776,0.018944,1.15338,0.015968
+677,414.743,2.41113,1.74694,0.016384,0.509824,0.006272,0.005728,0.008192,0.01856,0.01872,1.14688,0.016384
+678,450.754,2.21851,1.72032,0.016384,0.482624,0.006848,0.00512,0.007168,0.019616,0.018848,1.14874,0.014976
+679,353.439,2.82935,1.5729,0.01616,0.338272,0.006144,0.005664,0.008032,0.017024,0.02,1.14531,0.016288
+680,659.475,1.51636,1.70582,0.016608,0.456256,0.00688,0.00512,0.007168,0.019904,0.01904,1.15914,0.015712
+681,368.246,2.71558,1.57702,0.018592,0.348736,0.006304,0.00528,0.007008,0.01824,0.01968,1.13763,0.015552
+682,465.984,2.146,1.56227,0.016384,0.33792,0.006144,0.0056,0.008,0.01712,0.01952,1.13555,0.016032
+683,481.033,2.07886,1.69434,0.016256,0.453376,0.00768,0.004608,0.008192,0.018432,0.02048,1.14896,0.016352
+684,353.927,2.82544,1.59318,0.019072,0.356576,0.007552,0.004736,0.00816,0.016416,0.02048,1.14461,0.015584
+685,472.488,2.11646,1.56058,0.016384,0.33792,0.00768,0.004608,0.008192,0.017888,0.019008,1.13376,0.015136
+686,432.844,2.3103,1.56685,0.01648,0.343584,0.006624,0.004096,0.008192,0.01776,0.019104,1.13616,0.014848
+687,427.691,2.33813,1.83645,0.016544,0.585088,0.008832,0.006048,0.00816,0.018592,0.020096,1.15747,0.015616
+688,452.447,2.21021,1.57773,0.016416,0.336608,0.007552,0.004736,0.00816,0.017568,0.019008,1.1513,0.016384
+689,468.007,2.13672,1.6985,0.01632,0.454656,0.006912,0.004064,0.008192,0.019584,0.019232,1.15421,0.015328
+690,313.774,3.18701,1.59728,0.019584,0.356384,0.006656,0.004448,0.008192,0.017984,0.01888,1.14893,0.016224
+691,561.48,1.78101,1.58934,0.016416,0.366752,0.006176,0.005408,0.008,0.017312,0.020096,1.13293,0.016256
+692,425.78,2.34863,1.6056,0.014336,0.364192,0.006496,0.004096,0.008224,0.01808,0.018752,1.15507,0.016352
+693,356.732,2.80322,1.63693,0.01872,0.4056,0.006368,0.005792,0.008032,0.018208,0.019168,1.13869,0.016352
+694,439.249,2.27661,1.60202,0.016512,0.368352,0.006624,0.004256,0.008224,0.01808,0.018752,1.14688,0.014336
+695,445.363,2.24536,2.05174,0.016384,0.408864,0.006688,0.004576,0.008224,0.017792,0.01904,1.55238,0.017792
+696,374.646,2.66919,1.5831,0.016416,0.352224,0.006144,0.005792,0.008256,0.017824,0.01936,1.1425,0.014592
+697,417.533,2.39502,1.96122,0.016384,0.378912,0.007872,0.004384,0.008192,0.018432,0.019616,1.48976,0.017664
+698,376.194,2.6582,2.4535,0.016384,0.374816,0.007168,0.004864,0.007968,0.016832,0.018432,1.99066,0.016384
+699,325.752,3.06982,1.60154,0.016384,0.360448,0.006144,0.005856,0.008,0.016864,0.02032,1.15226,0.015264
+700,468.114,2.13623,1.6871,0.016384,0.458112,0.006784,0.005184,0.008288,0.019296,0.020224,1.1369,0.015936
+701,394.111,2.53735,1.75514,0.018432,0.525984,0.006496,0.006144,0.008192,0.018464,0.020448,1.13622,0.014752
+702,431.203,2.31909,1.60675,0.016416,0.356128,0.006336,0.005344,0.008,0.017408,0.0184,1.16301,0.015712
+703,430.75,2.32153,1.73453,0.01648,0.4928,0.006816,0.005152,0.008288,0.019328,0.020096,1.14931,0.016256
+704,414.365,2.41333,1.59744,0.016384,0.362496,0.006144,0.005792,0.008,0.016928,0.02,1.14531,0.016384
+705,454.808,2.19873,1.57869,0.016352,0.347872,0.006688,0.004096,0.008192,0.018432,0.019712,1.1415,0.01584
+706,457.347,2.18652,1.71334,0.016416,0.455712,0.007104,0.004128,0.00816,0.019872,0.01904,1.16723,0.01568
+707,390.728,2.55933,1.64253,0.01632,0.390912,0.006016,0.004544,0.008192,0.018048,0.018816,1.16486,0.014816
+708,467.1,2.14087,1.59338,0.016384,0.346112,0.006144,0.005568,0.008064,0.017088,0.019488,1.15811,0.016416
+709,468.328,2.13525,1.72714,0.016384,0.461632,0.006176,0.005792,0.018432,0.018784,0.020512,1.16323,0.016192
+710,372.127,2.68726,1.85754,0.016384,0.608256,0.01024,0.005344,0.00816,0.018752,0.018944,1.15638,0.015072
+711,438.967,2.27808,1.58422,0.016416,0.348128,0.007328,0.004896,0.008096,0.017728,0.019264,1.14688,0.015488
+712,471.998,2.11865,1.70717,0.016384,0.45056,0.00816,0.004128,0.008192,0.019872,0.01904,1.16518,0.015648
+713,393.43,2.54175,1.61978,0.016384,0.36576,0.006688,0.004384,0.008192,0.018208,0.019744,1.16422,0.016192
+714,461.469,2.16699,1.59168,0.016384,0.342784,0.00736,0.004864,0.007968,0.016672,0.020288,1.15936,0.016
+715,462.825,2.16064,1.70598,0.016384,0.468992,0.007424,0.004864,0.008192,0.018432,0.0216,1.14563,0.014464
+716,411.824,2.42822,1.7183,0.018464,0.483296,0.007712,0.004576,0.00816,0.018464,0.019744,1.1431,0.014784
+717,424.544,2.35547,1.59968,0.016608,0.349888,0.006464,0.00512,0.008288,0.017312,0.020032,1.15962,0.016352
+718,461.625,2.16626,1.69984,0.016384,0.45392,0.00688,0.004128,0.00816,0.02016,0.018944,1.15491,0.016352
+719,379.084,2.63794,1.61587,0.016384,0.366592,0.006144,0.00544,0.008032,0.017248,0.020064,1.15958,0.016384
+720,476.667,2.0979,1.57411,0.0176,0.334656,0.007456,0.004832,0.007776,0.017952,0.019328,1.14893,0.015584
+721,465.243,2.14941,1.7408,0.016384,0.487392,0.00624,0.005728,0.008288,0.018688,0.02048,1.16122,0.016384
+722,398.676,2.5083,1.83606,0.01648,0.599264,0.008896,0.005184,0.007168,0.019744,0.019104,1.14464,0.015584
+723,334.204,2.99219,1.70726,0.01744,0.448896,0.006592,0.004256,0.008192,0.018432,0.018432,1.16941,0.015616
+724,613.357,1.63037,1.71443,0.016096,0.467232,0.0064,0.005632,0.008288,0.018848,0.01984,1.15712,0.014976
+725,398.056,2.51221,1.78477,0.016352,0.52528,0.009248,0.005088,0.008192,0.018592,0.02032,1.1664,0.015296
+726,433.669,2.30591,1.57696,0.016928,0.333888,0.006144,0.005568,0.008032,0.018208,0.0192,1.15322,0.015776
+727,480.357,2.08179,1.69574,0.016416,0.452096,0.006624,0.00544,0.008128,0.018848,0.020032,1.15338,0.014784
+728,414.575,2.41211,1.58522,0.016416,0.352256,0.007552,0.004736,0.00816,0.017856,0.01888,1.14429,0.015072
+729,457.143,2.1875,1.59194,0.016384,0.34784,0.006752,0.004448,0.008192,0.018336,0.019968,1.15363,0.016384
+730,439.296,2.27637,1.83296,0.016384,0.5848,0.007072,0.004096,0.008224,0.020448,0.019968,1.15661,0.01536
+731,337.814,2.96021,1.85098,0.041088,0.587776,0.007232,0.005056,0.008192,0.018432,0.020256,1.1471,0.01584
+732,479.008,2.08765,1.59002,0.016672,0.34864,0.007776,0.004512,0.008192,0.018432,0.018432,1.15248,0.01488
+733,415.079,2.40918,1.592,0.016544,0.340352,0.006304,0.005856,0.008,0.018368,0.019008,1.16118,0.016384
+734,379.928,2.63208,1.71968,0.016384,0.474688,0.006592,0.004096,0.008192,0.017984,0.018912,1.15709,0.015744
+735,464.346,2.15356,1.62458,0.016544,0.377184,0.006464,0.00512,0.007168,0.018432,0.019776,1.15782,0.016064
+736,400.391,2.49756,1.61434,0.014336,0.358912,0.00768,0.004608,0.008192,0.017504,0.01936,1.16736,0.016384
+737,368.18,2.71606,1.67248,0.018432,0.419328,0.006656,0.004096,0.008192,0.018432,0.01952,1.16218,0.015648
+738,418.472,2.38965,2.04186,0.016384,0.456224,0.006624,0.004096,0.008192,0.018304,0.01856,1.49478,0.018688
+739,372.872,2.68188,2.44253,0.01648,0.38096,0.007296,0.004896,0.008032,0.017664,0.019264,1.97242,0.01552
+740,331.929,3.0127,1.6089,0.016128,0.358656,0.007552,0.004736,0.008096,0.017952,0.019008,1.16122,0.015552
+741,472.652,2.11572,1.72403,0.016384,0.477184,0.007744,0.004544,0.008192,0.019456,0.01936,1.15494,0.016224
+742,393.695,2.54004,1.71782,0.018528,0.4808,0.006592,0.005376,0.008064,0.018464,0.018976,1.14515,0.015872
+743,427.379,2.33984,1.6017,0.01648,0.344736,0.00752,0.004768,0.008192,0.018304,0.019904,1.16602,0.015776
+744,463.716,2.15649,1.70979,0.017408,0.457024,0.00688,0.00512,0.008192,0.018464,0.019424,1.16118,0.016096
+745,412.487,2.42432,1.85104,0.016416,0.583648,0.009888,0.005568,0.008512,0.019008,0.019872,1.1721,0.016032
+746,447.552,2.23438,1.62611,0.016384,0.372448,0.006432,0.004096,0.008192,0.01792,0.024928,1.1609,0.014816
+747,447.944,2.23242,1.82493,0.016352,0.557216,0.006432,0.005536,0.008288,0.018976,0.019488,1.17651,0.016128
+748,399.181,2.50513,1.74906,0.019776,0.471712,0.022624,0.005312,0.008032,0.01872,0.019168,1.16259,0.02112
+749,361.231,2.76831,1.73466,0.028672,0.444416,0.007488,0.0048,0.012256,0.030752,0.019936,1.17155,0.014784
+750,464.031,2.15503,1.58224,0.01632,0.339552,0.006624,0.004096,0.008192,0.018432,0.019584,1.15376,0.01568
+751,366.631,2.72754,1.5889,0.018592,0.343936,0.006496,0.004096,0.009504,0.01712,0.020096,1.15341,0.015648
+752,458.473,2.18115,1.58237,0.016416,0.337888,0.007488,0.0048,0.008064,0.018112,0.01888,1.15478,0.015936
+753,462.773,2.16089,1.56992,0.014336,0.32768,0.006144,0.005312,0.007072,0.018368,0.020032,1.15549,0.015488
+754,405.786,2.46436,1.59504,0.018432,0.339968,0.006144,0.005856,0.00848,0.0184,0.018464,1.1633,0.016
+755,462.982,2.15991,1.60192,0.016768,0.342016,0.006144,0.00608,0.008064,0.016576,0.020416,1.17056,0.015296
+756,455.313,2.19629,1.5921,0.01632,0.346336,0.006624,0.004256,0.008032,0.016544,0.020128,1.15891,0.014944
+757,344.52,2.90259,1.63014,0.019456,0.361472,0.00736,0.004896,0.008,0.017984,0.019104,1.17555,0.01632
+758,457.807,2.18433,1.60973,0.016416,0.356352,0.007424,0.004832,0.008064,0.017568,0.01904,1.16486,0.015168
+759,462.773,2.16089,2.28352,0.016384,0.337344,0.00672,0.005152,0.007136,0.018464,0.019904,1.85194,0.02048
+760,351.076,2.84839,1.59133,0.016768,0.33776,0.006368,0.005312,0.008032,0.01728,0.018528,1.16531,0.015968
+761,473.088,2.11377,1.5808,0.01744,0.343008,0.006144,0.005856,0.006592,0.018272,0.020224,1.14714,0.016128
+762,312.696,3.198,1.7248,0.016672,0.462944,0.007264,0.005024,0.008192,0.018208,0.030656,1.16128,0.01456
+763,495.045,2.02002,1.60051,0.018656,0.342816,0.006144,0.005888,0.007968,0.016864,0.02032,1.16694,0.014912
+764,446.187,2.24121,1.98861,0.016384,0.360448,0.00752,0.004768,0.007936,0.01664,0.019648,1.54074,0.014528
+765,369.742,2.70459,1.84269,0.016512,0.589888,0.009504,0.004832,0.008192,0.019712,0.0192,1.15917,0.01568
+766,441.094,2.26709,1.588,0.016224,0.337952,0.006624,0.005856,0.008032,0.017248,0.018432,1.16282,0.014816
+767,432.752,2.31079,1.65629,0.016384,0.388704,0.00656,0.004096,0.008224,0.018432,0.019968,1.17808,0.01584
+768,409.109,2.44434,1.66707,0.016384,0.38912,0.007904,0.004384,0.008192,0.017568,0.02544,1.1817,0.016384
+769,449.172,2.22632,1.6009,0.016384,0.342016,0.007232,0.004896,0.008,0.016736,0.02048,1.16941,0.015744
+770,468.061,2.13647,1.98598,0.016512,0.34544,0.006656,0.004576,0.008192,0.01776,0.019104,1.55238,0.01536
+771,361.678,2.76489,1.86368,0.016416,0.60208,0.009344,0.004992,0.008192,0.019808,0.019104,1.1687,0.01504
+772,437.981,2.2832,1.60986,0.01648,0.348384,0.006752,0.004096,0.008192,0.018016,0.01888,1.17331,0.015744
+773,457.245,2.18701,2.01462,0.017504,0.382976,0.006528,0.00464,0.008192,0.01776,0.019104,1.54336,0.01456
+774,303.026,3.30005,1.61312,0.018368,0.358048,0.00688,0.004096,0.008192,0.018368,0.018496,1.16509,0.015584
+775,475.45,2.10327,1.58912,0.01632,0.340608,0.0072,0.004896,0.008256,0.017632,0.01936,1.15917,0.01568
+776,450.655,2.21899,1.62176,0.016384,0.357728,0.006528,0.004384,0.008192,0.018432,0.018592,1.17539,0.016128
+777,373.484,2.67749,1.63411,0.018688,0.364544,0.00624,0.005408,0.008032,0.01728,0.02048,1.1776,0.01584
+778,459.966,2.17407,1.60973,0.016384,0.354304,0.007488,0.0048,0.008064,0.017952,0.019072,1.16528,0.016384
+779,403.985,2.47534,2.36134,0.01408,0.379488,0.007232,0.004864,0.008032,0.01856,0.018752,1.89021,0.020128
+780,330.269,3.02783,1.60502,0.016512,0.346112,0.006176,0.0056,0.007968,0.01712,0.02048,1.16941,0.015648
+781,450.704,2.21875,2.00093,0.016384,0.358432,0.006144,0.005728,0.008032,0.01696,0.020352,1.55395,0.014944
+782,342.704,2.91797,2.57133,0.017696,0.477024,0.007008,0.004128,0.008192,0.017952,0.018784,2.00506,0.015488
+783,319.501,3.12988,1.61542,0.016384,0.356352,0.006144,0.005696,0.007968,0.017056,0.020224,1.16966,0.015936
+784,450.506,2.21973,1.5863,0.01328,0.342016,0.006144,0.005888,0.00784,0.016992,0.019616,1.15936,0.015168
+785,343.135,2.91431,1.63859,0.018752,0.371392,0.007424,0.004864,0.008032,0.018112,0.018912,1.17555,0.015552
+786,470.588,2.125,1.59814,0.016704,0.337824,0.006624,0.00512,0.007168,0.018432,0.019776,1.17011,0.016384
+787,445.314,2.24561,1.60365,0.016448,0.354464,0.006144,0.00544,0.008512,0.018144,0.019104,1.15917,0.016224
+788,401.923,2.48804,1.62291,0.018592,0.363008,0.006368,0.005344,0.007968,0.01744,0.01968,1.16813,0.016384
+789,399.415,2.50366,1.97837,0.016416,0.378848,0.007616,0.004672,0.008192,0.020288,0.01872,1.50685,0.016768
+790,376.644,2.65503,2.44026,0.016384,0.362496,0.006144,0.005664,0.008128,0.016928,0.018432,1.99066,0.015424
+791,325.338,3.07373,1.61558,0.016576,0.352384,0.006144,0.005888,0.008032,0.0168,0.020384,1.1736,0.015776
+792,457.347,2.18652,2.01613,0.01648,0.36736,0.006144,0.005248,0.00704,0.018176,0.018688,1.56266,0.014336
+793,344.926,2.89917,1.74614,0.018464,0.482368,0.007072,0.005664,0.008032,0.019072,0.020064,1.16966,0.015744
+794,439.202,2.27686,1.61997,0.016384,0.355488,0.006912,0.004192,0.008192,0.018048,0.018816,1.17555,0.016384
+795,371.183,2.69409,1.68774,0.01504,0.41984,0.006144,0.005152,0.007136,0.018432,0.028,1.17213,0.015872
+796,393.279,2.54272,1.62067,0.018848,0.354592,0.007456,0.004832,0.007968,0.01792,0.019168,1.17466,0.015232
+797,457.143,2.1875,1.61382,0.016384,0.351424,0.006656,0.004416,0.008192,0.01824,0.018688,1.17472,0.015104
+798,371.486,2.69189,2.12163,0.016416,0.476928,0.0064,0.005184,0.007104,0.018272,0.043168,1.4783,0.069856
+799,395.443,2.52881,1.61034,0.016352,0.352576,0.006592,0.004096,0.008192,0.018432,0.018432,1.16941,0.016256
+800,442.237,2.26123,1.95779,0.016608,0.35648,0.006752,0.004064,0.008192,0.01824,0.019776,1.51027,0.017408
+801,355.37,2.81396,2.49446,0.016384,0.39472,0.006688,0.004096,0.008192,0.018272,0.018592,2.01318,0.014336
+802,347.03,2.88159,1.63434,0.016384,0.3584,0.006144,0.005664,0.008672,0.016384,0.019488,1.18678,0.016416
+803,446.674,2.23877,1.63971,0.016384,0.376832,0.007456,0.004832,0.008032,0.01776,0.019104,1.17366,0.015648
+804,440.572,2.26978,1.61798,0.016256,0.354496,0.006112,0.005728,0.007904,0.017088,0.018432,1.17674,0.015232
+805,455.364,2.19604,1.6031,0.016416,0.344064,0.006176,0.00576,0.008032,0.018144,0.0192,1.16941,0.015904
+806,443.05,2.25708,1.84451,0.016416,0.5776,0.008192,0.004096,0.009312,0.01936,0.020256,1.17334,0.015936
+807,396.246,2.52368,1.8536,0.016416,0.581152,0.00864,0.006144,0.008192,0.018464,0.020352,1.17949,0.014752
+808,420.318,2.37915,1.59565,0.016416,0.344288,0.007616,0.004672,0.008096,0.01824,0.01872,1.16256,0.01504
+809,458.936,2.17896,1.76064,0.016384,0.495584,0.006208,0.00576,0.008192,0.018784,0.020288,1.1737,0.015744
+810,407.806,2.45215,1.75818,0.018656,0.482048,0.007296,0.004864,0.008128,0.018656,0.019488,1.18451,0.014528
+811,450.506,2.21973,1.59741,0.016352,0.334432,0.006144,0.005536,0.00784,0.017344,0.020224,1.17376,0.015776
+812,461.469,2.16699,1.78739,0.01648,0.526336,0.007776,0.004512,0.008192,0.02,0.018912,1.16941,0.015776
+813,393.884,2.53882,1.75078,0.018432,0.479232,0.008128,0.005536,0.008064,0.019232,0.019936,1.1761,0.016128
+814,408.253,2.44946,1.6489,0.01632,0.386432,0.006848,0.004352,0.008192,0.017952,0.018912,1.17494,0.014944
+815,445.024,2.24707,1.74541,0.016608,0.476896,0.00672,0.00528,0.008288,0.0192,0.02048,1.17718,0.014752
+816,391.176,2.5564,1.74963,0.01872,0.483552,0.007712,0.004576,0.008192,0.018432,0.020224,1.17331,0.014912
+817,449.024,2.22705,1.60102,0.016384,0.33792,0.006144,0.005472,0.00784,0.01744,0.019488,1.17446,0.015872
+818,450.11,2.22168,1.71731,0.016384,0.459936,0.007008,0.005536,0.008064,0.019008,0.018592,1.16704,0.015744
+819,396.438,2.52246,1.80573,0.016384,0.531552,0.00912,0.005632,0.008128,0.019008,0.018496,1.18163,0.015776
+820,434.22,2.30298,1.6073,0.016384,0.344096,0.006112,0.005728,0.007872,0.01712,0.018432,1.17549,0.016064
+821,383.485,2.60767,1.69184,0.016544,0.423232,0.006688,0.004256,0.008192,0.018432,0.019456,1.18003,0.015008
+822,429.395,2.32886,1.64486,0.016608,0.37904,0.007584,0.004704,0.008192,0.017984,0.01888,1.17555,0.01632
+823,438.403,2.28101,1.63728,0.016512,0.37664,0.006848,0.004384,0.008192,0.018464,0.020064,1.17142,0.014752
+824,434.128,2.30347,1.63338,0.014368,0.359936,0.006624,0.005312,0.008,0.017408,0.019936,1.18608,0.015712
+825,362.799,2.75635,1.66499,0.018432,0.388448,0.00656,0.004352,0.008224,0.018144,0.018688,1.18579,0.016352
+826,434.266,2.30273,1.62285,0.01648,0.359008,0.006144,0.00576,0.008,0.01696,0.019872,1.17597,0.014656
+827,323.897,3.0874,2.43485,0.016384,0.432128,0.007168,0.004896,0.007968,0.01808,0.019232,1.90874,0.020256
+828,382.804,2.6123,1.6432,0.016608,0.381408,0.006144,0.005568,0.007968,0.017184,0.019616,1.17373,0.014976
+829,471.13,2.12256,2.00157,0.016448,0.36032,0.006656,0.004448,0.008192,0.018368,0.018496,1.55392,0.01472
+830,345.45,2.89478,1.86237,0.016736,0.597888,0.008864,0.005312,0.008288,0.019168,0.018496,1.17139,0.016224
+831,437.56,2.2854,1.62371,0.01648,0.35488,0.00768,0.004608,0.008192,0.018432,0.020064,1.17782,0.015552
+832,458.319,2.18188,1.72246,0.016672,0.454464,0.006336,0.005632,0.008448,0.018688,0.020032,1.176,0.016192
+833,393.09,2.54395,1.64454,0.016384,0.395264,0.006144,0.005248,0.007136,0.018368,0.020416,1.16086,0.01472
+834,419.672,2.38281,1.62877,0.01664,0.350624,0.006336,0.005472,0.008032,0.017216,0.019808,1.18851,0.016128
+835,452.447,2.21021,1.72979,0.016384,0.46064,0.006304,0.005696,0.00816,0.018912,0.01984,1.17811,0.015744
+836,368.114,2.71655,1.63226,0.016384,0.375808,0.006368,0.004864,0.008,0.01856,0.018528,1.16842,0.015328
+837,477.501,2.09424,1.59952,0.016416,0.331328,0.00656,0.004096,0.008192,0.0184,0.018464,1.18128,0.014784
+838,430.886,2.3208,1.59018,0.01424,0.336096,0.006816,0.004224,0.008192,0.017952,0.018944,1.16877,0.014944
+839,364.932,2.74023,1.64458,0.019552,0.362848,0.006688,0.004128,0.008192,0.0184,0.019872,1.18954,0.01536
+840,429.891,2.32617,1.62202,0.016416,0.35552,0.006944,0.004096,0.008192,0.01824,0.018624,1.17885,0.015136
+841,422.181,2.36865,2.35094,0.016384,0.413696,0.007392,0.004896,0.008032,0.018048,0.018976,1.84304,0.02048
+842,338.317,2.95581,1.62394,0.016384,0.362496,0.007456,0.004832,0.008192,0.017888,0.01872,1.17171,0.016256
+843,472.488,2.11646,1.98451,0.016384,0.342016,0.006144,0.005344,0.007104,0.018272,0.020128,1.55274,0.016384
+844,375.711,2.66162,2.22227,0.016576,0.553312,0.009216,0.004864,0.008352,0.019584,0.019424,1.57491,0.016032
+845,351.226,2.84717,1.62707,0.01648,0.35312,0.007232,0.004864,0.007968,0.018016,0.019296,1.18522,0.01488
+846,420.663,2.3772,1.8624,0.016448,0.587584,0.00704,0.004096,0.00832,0.020352,0.019776,1.1824,0.016384
+847,426.934,2.34229,1.75926,0.018432,0.483232,0.00624,0.006144,0.008192,0.01952,0.019392,1.18336,0.014752
+848,433.623,2.30615,1.6241,0.016384,0.350208,0.006144,0.005472,0.008192,0.017056,0.020096,1.18413,0.016416
+849,359.172,2.78418,1.77395,0.016544,0.499936,0.007456,0.004832,0.008192,0.019456,0.019456,1.18307,0.015008
+850,535.635,1.86694,1.73952,0.018816,0.473184,0.006432,0.005536,0.008032,0.018752,0.01888,1.17453,0.01536
+851,448.926,2.22754,1.60451,0.015264,0.34576,0.006496,0.00512,0.0072,0.0184,0.019776,1.17117,0.015328
+852,439.626,2.27466,1.81894,0.016576,0.547456,0.007616,0.004672,0.008192,0.01984,0.019072,1.17146,0.024064
+853,380.74,2.62646,1.8545,0.016384,0.58368,0.0096,0.004736,0.008192,0.01968,0.019232,1.17725,0.015744
+854,438.591,2.28003,1.62851,0.01648,0.360416,0.0064,0.00528,0.007168,0.018208,0.019584,1.17984,0.015136
+855,455.162,2.19702,1.73469,0.016032,0.454752,0.0064,0.005664,0.008256,0.01888,0.020448,1.18925,0.015008
+856,334.586,2.98877,1.6183,0.018592,0.339744,0.006592,0.004096,0.008192,0.017792,0.019104,1.18915,0.01504
+857,449.074,2.22681,1.62611,0.016416,0.345728,0.006496,0.004096,0.008192,0.018432,0.020352,1.19002,0.016384
+858,442.859,2.25806,2.3431,0.01648,0.338016,0.007328,0.004672,0.007808,0.017056,0.019968,1.9113,0.02048
+859,312.148,3.20361,1.63373,0.017408,0.3568,0.006688,0.004128,0.008192,0.018304,0.019872,1.18653,0.015808
+860,458.936,2.17896,2.00294,0.016384,0.35168,0.00672,0.004096,0.008192,0.017824,0.01904,1.56381,0.0152
+861,390.355,2.56177,2.44042,0.016384,0.347168,0.006688,0.004544,0.008192,0.017984,0.01888,2.00499,0.015584
+862,329.102,3.03857,1.62435,0.016512,0.3488,0.007712,0.004576,0.008192,0.017664,0.0192,1.18579,0.015904
+863,452.847,2.20825,1.62026,0.016416,0.343872,0.006592,0.0056,0.008032,0.017088,0.02048,1.18704,0.015136
+864,450.06,2.22192,1.6303,0.016384,0.346016,0.006784,0.004096,0.009856,0.016768,0.019808,1.19466,0.015936
+865,465.984,2.146,1.60314,0.016384,0.334944,0.006688,0.00448,0.008192,0.0184,0.019648,1.17846,0.015936
+866,415.079,2.40918,1.99702,0.016256,0.343584,0.006816,0.004416,0.008192,0.017952,0.018912,1.56576,0.015136
+867,388.91,2.57129,1.80429,0.016384,0.528384,0.008384,0.005952,0.008192,0.018432,0.020128,1.18208,0.016352
+868,453.901,2.20312,1.61331,0.016384,0.337024,0.006816,0.00432,0.008192,0.017664,0.018944,1.1881,0.015872
+869,456.837,2.18896,1.92701,0.016448,0.644448,0.006752,0.005216,0.008256,0.019296,0.019808,1.19056,0.016224
+870,379.998,2.63159,1.73875,0.018464,0.476224,0.007072,0.004096,0.008192,0.02,0.018912,1.16944,0.016352
+871,443.866,2.25293,1.61344,0.016416,0.340448,0.006144,0.005568,0.00784,0.018464,0.019328,1.18371,0.01552
+872,437.28,2.28687,1.7976,0.016384,0.527616,0.006912,0.005216,0.008256,0.019296,0.020384,1.1777,0.01584
+873,425.426,2.35059,1.76128,0.016384,0.486944,0.006624,0.006016,0.008128,0.018624,0.019776,1.18397,0.014816
+874,440.335,2.271,1.60128,0.016448,0.337696,0.006368,0.005152,0.007168,0.0184,0.018432,1.17555,0.016064
+875,456.074,2.19263,1.83158,0.016544,0.54528,0.008096,0.004192,0.008192,0.020224,0.020064,1.19392,0.015072
+876,393.695,2.54004,1.75709,0.018624,0.481632,0.007968,0.00432,0.008192,0.018432,0.019616,1.18256,0.015744
+877,442.333,2.26074,1.61414,0.020832,0.33792,0.006112,0.005536,0.00784,0.017344,0.02048,1.18275,0.015328
+878,460.95,2.16943,1.75514,0.016384,0.487424,0.007584,0.004704,0.008192,0.020448,0.019584,1.1759,0.014912
+879,385.325,2.59521,1.84739,0.016416,0.575552,0.010176,0.005536,0.008224,0.019008,0.01984,1.17747,0.015168
+880,440.62,2.26953,1.63206,0.016512,0.344448,0.006368,0.005344,0.007968,0.017344,0.019808,1.19821,0.016064
+881,447.21,2.23608,1.74067,0.016352,0.459296,0.007584,0.004704,0.008192,0.018432,0.02048,1.18976,0.015872
+882,339.523,2.94531,1.62416,0.018784,0.354272,0.006432,0.00528,0.007008,0.01808,0.018784,1.17965,0.015872
+883,465.19,2.14966,1.61478,0.016704,0.33856,0.006144,0.005472,0.008064,0.017184,0.020192,1.18726,0.0152
+884,448.926,2.22754,1.95869,0.01664,0.340416,0.007456,0.004864,0.007968,0.018592,0.018656,1.20218,0.34192
+885,309.179,3.23438,1.78896,0.018432,0.509952,0.006144,0.005952,0.008064,0.016704,0.01968,1.18819,0.01584
+886,562.56,1.77759,1.59578,0.016576,0.328416,0.00752,0.00464,0.008,0.01792,0.019008,1.17782,0.015872
+887,425.558,2.34985,2.27475,0.018016,0.323264,0.00688,0.004096,0.008192,0.018432,0.019904,1.85581,0.02016
+888,378.383,2.64282,1.60058,0.016384,0.327168,0.006656,0.005184,0.007104,0.0184,0.018464,1.18557,0.015648
+889,485.999,2.05762,1.85482,0.016384,0.321408,0.006272,0.00592,0.008,0.01808,0.019136,1.20634,0.25328
+890,383.916,2.60474,2.33779,0.016384,0.349568,0.006624,0.004256,0.008192,0.026656,0.019552,1.88509,0.021472
+891,379.611,2.63428,1.61533,0.017408,0.320512,0.007648,0.00464,0.007904,0.017824,0.019328,1.2033,0.016768
+892,421.486,2.37256,1.97226,0.016448,0.32704,0.006624,0.004256,0.008192,0.017536,0.01936,1.55802,0.014784
+893,346.004,2.89014,1.94029,0.016416,0.658208,0.009376,0.004992,0.00816,0.019488,0.032992,1.17581,0.014848
+894,445.702,2.24365,1.59338,0.016384,0.325632,0.007808,0.00448,0.008192,0.0184,0.018464,1.17866,0.01536
+895,481.486,2.0769,1.98397,0.016416,0.323168,0.006592,0.004448,0.008192,0.018048,0.018816,1.5729,0.015392
+896,344.404,2.90356,1.75357,0.01824,0.476128,0.008064,0.004224,0.008192,0.018432,0.020192,1.18403,0.016064
+897,456.074,2.19263,1.59952,0.016288,0.32304,0.006496,0.004608,0.00816,0.01808,0.018784,1.18784,0.016224
+898,399.22,2.50488,1.90467,0.028672,0.595776,0.006336,0.005888,0.018144,0.020064,0.019392,1.19504,0.01536
+899,304.943,3.2793,1.75718,0.032768,0.45056,0.007776,0.005568,0.00816,0.0256,0.02048,1.19136,0.014912
+900,639.201,1.56445,1.61178,0.016384,0.329728,0.006144,0.005664,0.007808,0.017248,0.018432,1.19398,0.016384
+901,466.727,2.14258,1.73056,0.016384,0.452416,0.006368,0.005632,0.008128,0.018976,0.019904,1.18749,0.015264
+902,373.893,2.67456,1.62387,0.016384,0.35536,0.006656,0.004576,0.008192,0.017728,0.019104,1.17968,0.016192
+903,460.38,2.17212,1.62202,0.016416,0.331744,0.007424,0.004864,0.00784,0.018112,0.019136,1.20189,0.014592
+904,445.605,2.24414,1.62202,0.016384,0.33344,0.006528,0.005312,0.008096,0.017312,0.018432,1.20013,0.016384
+905,333.958,2.99438,1.76128,0.042368,0.438912,0.006144,0.006016,0.008064,0.01856,0.018592,1.20806,0.01456
+906,440.477,2.27026,1.63274,0.01648,0.35424,0.006624,0.004096,0.010144,0.01648,0.019616,1.1887,0.016352
+907,452.847,2.20825,2.35206,0.016512,0.35856,0.006688,0.005408,0.008544,0.016896,0.020192,1.89878,0.02048
+908,347.856,2.87476,1.61558,0.016512,0.340384,0.006112,0.005728,0.007968,0.017024,0.018432,1.18784,0.015584
+909,466.674,2.14282,1.9793,0.016448,0.338784,0.006144,0.005728,0.008032,0.017984,0.019328,1.5504,0.016448
+910,391.999,2.55103,2.45011,0.016864,0.331104,0.006848,0.004288,0.008192,0.017824,0.018976,2.03168,0.014336
+911,303.542,3.29443,1.7385,0.016384,0.435968,0.0064,0.005152,0.016608,0.018912,0.019744,1.2032,0.016128
+912,506.993,1.97241,1.62819,0.016448,0.355904,0.00656,0.004096,0.008224,0.018208,0.018624,1.18538,0.014752
+913,457.143,2.1875,1.61578,0.016384,0.345312,0.006688,0.004352,0.008192,0.017664,0.0192,1.1817,0.016288
+914,481.882,2.0752,1.6241,0.016416,0.3256,0.007392,0.004928,0.00816,0.018432,0.01968,1.20838,0.015104
+915,478.449,2.09009,1.9927,0.016384,0.327296,0.006528,0.00528,0.008032,0.017408,0.02048,1.5768,0.014496
+916,368.279,2.71533,2.24547,0.016608,0.54016,0.041984,0.005536,0.008224,0.019008,0.019616,1.57987,0.014464
+917,385.615,2.59326,1.61181,0.016384,0.331744,0.006176,0.005152,0.007136,0.018464,0.01952,1.19258,0.014656
+918,380.598,2.62744,1.6855,0.016384,0.404608,0.006848,0.004288,0.009376,0.017248,0.01952,1.19085,0.016384
+919,443.05,2.25708,1.64819,0.016384,0.34816,0.006144,0.005856,0.008,0.016864,0.02048,1.21037,0.015936
+920,466.568,2.14331,1.61165,0.015072,0.337056,0.006816,0.004288,0.008192,0.018048,0.018848,1.18774,0.015584
+921,446.674,2.23877,1.79635,0.016576,0.514112,0.00784,0.004448,0.008192,0.019936,0.018976,1.19117,0.015104
+922,403.308,2.47949,1.83027,0.016416,0.548832,0.01024,0.005184,0.008544,0.018912,0.01856,1.18781,0.015776
+923,452.447,2.21021,1.62,0.016416,0.34112,0.006688,0.004416,0.008192,0.01808,0.018784,1.19126,0.01504
+924,456.684,2.1897,1.80906,0.01648,0.528544,0.00656,0.005408,0.008288,0.019008,0.018496,1.19114,0.015136
+925,319.351,3.13135,1.94269,0.02832,0.624992,0.015872,0.004608,0.008224,0.02864,0.019968,1.19642,0.015648
+926,512.641,1.95068,1.62013,0.016448,0.348224,0.006144,0.0056,0.008,0.01712,0.019616,1.18397,0.015008
+927,466.834,2.14209,1.74669,0.016416,0.45664,0.00624,0.005856,0.008256,0.018592,0.020512,1.19805,0.016128
+928,400.235,2.49854,1.88666,0.01632,0.584256,0.009824,0.004512,0.008192,0.018432,0.034816,1.19398,0.01632
+929,438.638,2.27979,1.62547,0.016512,0.34,0.006112,0.005856,0.007808,0.017056,0.02048,1.1959,0.015744
+930,431.794,2.31592,1.75043,0.016416,0.473344,0.00624,0.005728,0.008608,0.018432,0.019616,1.1865,0.015552
+931,328.495,3.04419,1.66931,0.01856,0.366688,0.00768,0.004576,0.008192,0.018048,0.018848,1.19805,0.028672
+932,394.833,2.53271,2.01232,0.016384,0.368288,0.006496,0.004096,0.008192,0.018272,0.018592,1.55443,0.017568
+933,349.727,2.85938,2.52614,0.016352,0.41392,0.006656,0.00432,0.009248,0.017376,0.018432,2.02528,0.01456
+934,316.489,3.15967,1.65072,0.016416,0.3616,0.0064,0.004704,0.009376,0.017248,0.02,1.19978,0.0152
+935,452.497,2.20996,1.74883,0.016384,0.452352,0.0064,0.0056,0.008192,0.018688,0.019904,1.20509,0.016224
+936,322.927,3.09668,1.66941,0.018752,0.393184,0.007456,0.004832,0.008064,0.017632,0.019072,1.18554,0.01488
+937,434.773,2.30005,1.65926,0.01648,0.38736,0.006144,0.005248,0.008672,0.017952,0.01904,1.18314,0.015232
+938,448.68,2.22876,1.67728,0.016416,0.40096,0.006592,0.005216,0.007072,0.018432,0.018432,1.18784,0.01632
+939,339.917,2.94189,1.65907,0.01856,0.368704,0.007488,0.004736,0.008,0.017696,0.019424,1.19952,0.014944
+940,472.979,2.11426,2.00675,0.01648,0.339872,0.007328,0.00496,0.008192,0.01792,0.01888,1.57706,0.016064
+941,373.996,2.67383,2.50714,0.016448,0.346208,0.006368,0.005216,0.007072,0.018464,0.01968,2.07328,0.0144
+942,308.294,3.24365,1.6384,0.016384,0.354304,0.006144,0.005472,0.00784,0.01744,0.0184,1.19706,0.01536
+943,366.894,2.72559,1.796,0.016384,0.514048,0.008064,0.004224,0.008192,0.019552,0.01936,1.18989,0.016288
+944,422.181,2.36865,2.00678,0.06736,0.663392,0.006528,0.005248,0.007072,0.018432,0.0184,1.20422,0.016128
+945,450.952,2.21753,1.6384,0.016416,0.35632,0.007296,0.004896,0.008,0.017856,0.019328,1.19312,0.015168
+946,442.859,2.25806,1.61578,0.014336,0.342016,0.006144,0.005408,0.007968,0.017344,0.018432,1.18784,0.016288
+947,355.278,2.8147,1.63306,0.018816,0.350624,0.0072,0.004896,0.008384,0.017792,0.019072,1.18998,0.016288
+948,466.196,2.14502,1.88211,0.016384,0.350208,0.007232,0.004864,0.007968,0.017824,0.01888,1.20685,0.251904
+949,413.821,2.4165,1.6368,0.016832,0.33744,0.006624,0.004096,0.008192,0.018432,0.01968,1.19274,0.032768
+950,372.906,2.68164,1.63408,0.019008,0.34928,0.006656,0.004512,0.008192,0.018112,0.018752,1.19398,0.015584
+951,462.094,2.16406,1.99306,0.01648,0.348384,0.006144,0.005856,0.00784,0.017024,0.020512,1.5544,0.016416
+952,380.386,2.62891,2.51494,0.016384,0.382048,0.006688,0.00448,0.008192,0.017824,0.018912,2.04509,0.015328
+953,327.209,3.05615,1.63552,0.016384,0.347264,0.006688,0.004448,0.008192,0.01808,0.018784,1.19824,0.01744
+954,452.397,2.21045,1.64454,0.016416,0.352224,0.0072,0.004704,0.007584,0.017408,0.019424,1.2032,0.016384
+955,444.927,2.24756,1.69165,0.016384,0.411648,0.007552,0.004736,0.008064,0.018144,0.018848,1.19126,0.015008
+956,383.808,2.60547,1.75686,0.01632,0.46656,0.006816,0.00432,0.008192,0.018432,0.024608,1.196,0.015616
+957,456.277,2.19165,1.8449,0.016384,0.545888,0.007072,0.004096,0.008192,0.018464,0.02048,1.20829,0.016032
+958,395.94,2.52563,1.89635,0.01664,0.608608,0.00848,0.005632,0.00832,0.018656,0.018592,1.19584,0.015584
+959,437.888,2.28369,1.648,0.016384,0.366592,0.006144,0.006016,0.008064,0.01664,0.02032,1.1919,0.015936
+960,346.238,2.88818,1.8553,0.028352,0.547136,0.008,0.004288,0.008192,0.034816,0.019808,1.18851,0.016192
+961,492.308,2.03125,1.93946,0.016384,0.64048,0.008736,0.006016,0.008128,0.018624,0.019904,1.20669,0.014496
+962,428.901,2.33154,1.6289,0.016384,0.342752,0.007648,0.00464,0.008192,0.017824,0.01904,1.19776,0.014656
+963,439.108,2.27734,1.61558,0.01648,0.345216,0.006688,0.004448,0.008192,0.017824,0.019072,1.18166,0.016
+964,385.542,2.59375,1.77808,0.016768,0.47824,0.007104,0.00416,0.008192,0.019776,0.019168,1.20982,0.014848
+965,440.525,2.27002,1.63037,0.016256,0.33232,0.0064,0.005696,0.008128,0.017056,0.020224,1.20842,0.015872
+966,440.952,2.26782,1.9471,0.014368,0.339936,0.00752,0.004768,0.00816,0.017728,0.01904,1.20426,0.331328
+967,375.229,2.66504,1.66019,0.018432,0.360448,0.006144,0.00544,0.007968,0.017312,0.01984,1.20896,0.015648
+968,470.102,2.1272,1.63635,0.016384,0.332192,0.006144,0.006144,0.008096,0.01792,0.019008,1.2145,0.015968
+969,427.736,2.33789,1.9839,0.01648,0.37264,0.006144,0.005792,0.007968,0.016992,0.020384,1.4984,0.039104
+970,381.769,2.61938,1.64435,0.016384,0.350208,0.006144,0.005632,0.008,0.017088,0.019616,1.20509,0.016192
+971,469.509,2.12988,1.61901,0.016384,0.335488,0.006528,0.004096,0.008192,0.018432,0.018432,1.196,0.015456
+972,399.649,2.5022,1.99235,0.01632,0.391808,0.02048,0.00528,0.007168,0.018368,0.018432,1.49094,0.023552
+973,401.49,2.49072,1.65251,0.016576,0.343552,0.006464,0.004096,0.009536,0.01712,0.020448,1.21434,0.020384
+974,380.21,2.63013,2.02576,0.016352,0.362816,0.007552,0.004736,0.00816,0.017792,0.019104,1.57286,0.016384
+975,336.289,2.97363,2.33779,0.016416,0.610272,0.040512,0.005568,0.008288,0.019008,0.01984,1.60253,0.01536
+976,381.876,2.61865,1.64173,0.016384,0.360192,0.0064,0.005344,0.008544,0.017952,0.019072,1.19222,0.015616
+977,468.489,2.13452,1.7415,0.016192,0.453632,0.007456,0.004832,0.008032,0.018592,0.019648,1.19686,0.016256
+978,404.783,2.47046,1.7743,0.01648,0.479872,0.007232,0.004864,0.008032,0.01872,0.018496,1.20538,0.015232
+979,443.242,2.2561,1.62448,0.0168,0.341568,0.006592,0.004096,0.008192,0.018112,0.018784,1.19395,0.016384
+980,300.139,3.33179,2.38051,0.013184,0.382976,0.007808,0.00448,0.008192,0.01808,0.018784,1.90669,0.02032
+981,269.014,3.71729,1.67744,0.01664,0.380512,0.00656,0.004096,0.008192,0.0184,0.01968,1.20714,0.016224
+982,454.052,2.20239,1.81587,0.016384,0.507904,0.007168,0.004896,0.023968,0.019008,0.024832,1.19603,0.01568
+983,368.279,2.71533,1.97837,0.016384,0.661504,0.010016,0.005568,0.00816,0.019264,0.02048,1.22208,0.014912
+984,424.28,2.35693,1.64701,0.016736,0.354944,0.007424,0.004864,0.008032,0.018208,0.018816,1.20218,0.015808
+985,390.393,2.56152,1.72781,0.015904,0.4408,0.006144,0.005312,0.008032,0.017408,0.01968,1.19885,0.01568
+986,328.732,3.04199,1.77744,0.018784,0.468768,0.006464,0.02048,0.009408,0.017216,0.019744,1.20086,0.015712
+987,482.166,2.07397,1.67091,0.016448,0.372704,0.007488,0.004768,0.008192,0.016384,0.028672,1.20013,0.016128
+988,423.009,2.36401,1.6401,0.01648,0.350208,0.007168,0.004896,0.007904,0.016896,0.019712,1.2009,0.015936
+989,481.882,2.0752,1.62989,0.016576,0.345952,0.006688,0.004224,0.008192,0.01808,0.020096,1.19469,0.015392
+990,460.38,2.17212,1.87978,0.016416,0.346112,0.007552,0.004704,0.008192,0.017536,0.019328,1.20218,0.25776
+991,396.285,2.52344,2.36352,0.016352,0.35872,0.007616,0.00464,0.008192,0.017568,0.019328,1.91053,0.020576
+992,290.93,3.43726,1.79779,0.016384,0.49152,0.007456,0.004832,0.008096,0.01648,0.02,1.20266,0.030368
+993,339.523,2.94531,1.79677,0.016416,0.5024,0.006144,0.005696,0.007968,0.01824,0.019296,1.20592,0.014688
+994,501.838,1.99268,1.66317,0.016416,0.377824,0.006816,0.004448,0.008192,0.018016,0.01888,1.19744,0.015136
+995,454.203,2.20166,1.6384,0.016384,0.35568,0.006816,0.004096,0.008192,0.018432,0.02048,1.19302,0.015296
+996,458.319,2.18188,1.74861,0.01632,0.463328,0.007168,0.004896,0.008416,0.018624,0.020064,1.19421,0.015584
+997,397.67,2.51465,1.86224,0.016512,0.57392,0.009664,0.004672,0.009312,0.018816,0.019008,1.19395,0.016384
+998,371.755,2.68994,1.63466,0.016576,0.352448,0.006304,0.00544,0.008,0.01728,0.019744,1.19267,0.016192
+999,440.241,2.27148,1.6384,0.014336,0.346112,0.007584,0.004704,0.00816,0.017472,0.01936,1.20566,0.015008
+1000,412.737,2.42285,1.66822,0.016512,0.3808,0.006144,0.0056,0.008352,0.017856,0.01888,1.19654,0.017536
+1001,460.95,2.16943,1.6296,0.016384,0.338944,0.006752,0.004512,0.008192,0.018272,0.018624,1.20218,0.015744
+1002,438.873,2.27856,1.65078,0.014528,0.348224,0.006208,0.00528,0.007104,0.018336,0.018432,1.21651,0.01616
+1003,344.231,2.90503,1.65206,0.01856,0.35632,0.006272,0.005152,0.007136,0.018176,0.018688,1.20614,0.015616
+1004,351.467,2.84521,1.98061,0.016416,0.429408,0.006816,0.004096,0.013376,0.03168,0.020192,1.43798,0.02064
+1005,465.032,2.15039,2.59686,0.016416,0.4504,0.006272,0.005856,0.007744,0.01712,0.019616,2.0567,0.016736
+1006,325.312,3.07397,1.64438,0.016384,0.341344,0.006816,0.004096,0.008192,0.018368,0.018496,1.21446,0.016224
+1007,457.858,2.18408,1.80672,0.016448,0.510272,0.008064,0.004224,0.008192,0.019936,0.019104,1.2041,0.016384
+1008,346.385,2.88696,2.01728,0.016416,0.73008,0.009216,0.004096,0.008192,0.018432,0.01968,1.19478,0.016384
+1009,433.21,2.30835,1.64454,0.017504,0.352544,0.006688,0.004192,0.008192,0.018048,0.018816,1.20218,0.016384
+1010,291.759,3.42749,1.72445,0.016384,0.411296,0.006496,0.005216,0.007136,0.018368,0.018432,1.22621,0.014912
+1011,586.148,1.70605,1.77568,0.018496,0.491264,0.0064,0.006144,0.008192,0.018432,0.020096,1.19178,0.01488
+1012,433.118,2.30884,1.8839,0.016416,0.353568,0.00688,0.004096,0.008192,0.01808,0.018784,1.20627,0.251616
+1013,400.274,2.49829,2.39242,0.0168,0.343552,0.006528,0.004224,0.008192,0.018432,0.018432,1.9553,0.02096
+1014,333.958,2.99438,1.65302,0.016512,0.360704,0.00736,0.004896,0.008224,0.018048,0.018624,1.20237,0.016288
+1015,462.668,2.16138,2.00726,0.016448,0.34128,0.00672,0.00576,0.008032,0.017152,0.019776,1.5776,0.014496
+1016,317.667,3.14795,2.36294,0.01648,0.579232,0.008928,0.005248,0.025472,0.055296,0.020416,1.63642,0.015456
+1017,386.561,2.58691,1.64899,0.016736,0.361888,0.00672,0.004128,0.008192,0.018208,0.018656,1.19798,0.01648
+1018,426.489,2.34473,1.63293,0.016544,0.350688,0.006144,0.005728,0.008608,0.01808,0.018784,1.19338,0.014976
+1019,428.766,2.33228,2.20774,0.016384,0.48128,0.028672,0.006144,0.008192,0.018432,0.019872,1.6143,0.014464
+1020,286.574,3.4895,2.01251,0.017408,0.34672,0.006592,0.005728,0.008032,0.016928,0.020512,1.57488,0.015712
+1021,368.114,2.71655,2.34906,0.016416,0.579552,0.038912,0.01424,0.01648,0.032736,0.019808,1.61658,0.014336
+1022,304.445,3.28467,1.64291,0.016608,0.360736,0.0072,0.004896,0.008416,0.017952,0.018752,1.19206,0.016288
+1023,456.481,2.19067,1.63702,0.016448,0.34672,0.007392,0.004928,0.008064,0.017536,0.019296,1.20208,0.01456
+1024,437.42,2.28613,1.64659,0.016448,0.352032,0.006816,0.004224,0.008192,0.018336,0.018528,1.20627,0.015744
+1025,463.663,2.15674,1.63248,0.016576,0.34,0.006144,0.006144,0.008192,0.018176,0.01872,1.20384,0.014688
+1026,430.026,2.32544,1.63952,0.016384,0.350112,0.00624,0.005408,0.00688,0.018432,0.018432,1.20214,0.015488
+1027,338.905,2.95068,1.65808,0.01856,0.3576,0.006656,0.004352,0.008192,0.018368,0.018496,1.21027,0.015584
+1028,312.457,3.20044,1.95382,0.016384,0.4048,0.006464,0.00448,0.008192,0.018432,0.019552,1.45466,0.020864
+1029,490.951,2.03687,2.06029,0.021696,0.426816,0.008192,0.014304,0.008224,0.022528,0.020384,1.19728,0.340864
+1030,406.874,2.45776,1.65885,0.016384,0.362496,0.006144,0.005632,0.008064,0.017056,0.0184,1.20832,0.016352
+1031,474.733,2.10645,2.00909,0.016384,0.34512,0.006688,0.004544,0.008192,0.01792,0.020032,1.57526,0.014944
+1032,373.314,2.67871,2.50301,0.016576,0.372704,0.006368,0.004064,0.008192,0.0184,0.018464,2.04362,0.014624
+1033,327.732,3.05127,1.64083,0.016448,0.346432,0.006144,0.005568,0.008032,0.017152,0.019936,1.20576,0.01536
+1034,359.487,2.78174,1.74886,0.016384,0.45056,0.0072,0.004864,0.007904,0.02048,0.029184,1.19603,0.016256
+1035,383.198,2.60962,1.67674,0.018304,0.382688,0.00656,0.005184,0.008672,0.016864,0.02048,1.20218,0.015808
+1036,454.001,2.20264,1.88195,0.016416,0.352224,0.007392,0.004864,0.008224,0.017888,0.018976,1.20218,0.253792
+1037,397.053,2.51855,2.41043,0.016384,0.346112,0.007456,0.004832,0.008032,0.017664,0.019328,1.97021,0.020416
+1038,338.568,2.95361,1.64218,0.016416,0.350176,0.006144,0.005536,0.0088,0.017728,0.01904,1.20227,0.016064
+1039,446.382,2.24023,2.00874,0.016384,0.339872,0.00624,0.005376,0.007936,0.017408,0.020288,1.58045,0.014784
+1040,293.515,3.40698,2.62147,0.016384,0.43552,0.006816,0.005568,0.008128,0.017056,0.028672,2.08896,0.014368
+1041,396.285,2.52344,1.66182,0.015232,0.363616,0.006624,0.004544,0.008192,0.018432,0.018432,1.2119,0.014848
+1042,433.669,2.30591,1.93741,0.016384,0.342016,0.007872,0.004416,0.008192,0.018304,0.01856,1.20218,0.319488
+1043,384.673,2.59961,1.6513,0.018784,0.352512,0.007168,0.004864,0.007968,0.016864,0.020288,1.20755,0.015296
+1044,457.603,2.1853,1.87795,0.016352,0.34816,0.006752,0.004096,0.008192,0.018368,0.018496,1.20422,0.253312
+1045,397.824,2.51367,2.36979,0.015232,0.350048,0.006272,0.005376,0.008032,0.017312,0.019648,1.92758,0.020288
+1046,289.388,3.45557,1.80019,0.017664,0.493344,0.006848,0.004384,0.008192,0.019744,0.029408,1.20544,0.015168
+1047,529.678,1.88794,1.64746,0.016512,0.354624,0.006528,0.004096,0.008192,0.018112,0.018752,1.20589,0.014752
+1048,406.793,2.45825,1.66467,0.016736,0.364096,0.006848,0.004096,0.008192,0.018336,0.030816,1.1999,0.015648
+1049,493.911,2.02466,1.62611,0.016384,0.339008,0.006528,0.004672,0.00816,0.017824,0.019072,1.19802,0.016448
+1050,449.517,2.22461,2.0193,0.016416,0.350176,0.00752,0.004768,0.008096,0.01648,0.019936,1.57955,0.016352
+1051,384.565,2.60034,2.47398,0.016416,0.339936,0.007616,0.004672,0.008192,0.018112,0.018752,2.04557,0.01472
+1052,330.482,3.02588,1.65274,0.016384,0.337952,0.007424,0.004832,0.008032,0.017792,0.018784,1.22515,0.016384
+1053,412.862,2.42212,1.6391,0.016384,0.346848,0.006112,0.005696,0.008,0.017024,0.019808,1.20422,0.015008
+1054,440.146,2.27197,1.62816,0.016384,0.335008,0.006848,0.005408,0.00704,0.018464,0.0184,1.20422,0.016384
+1055,472.815,2.11499,1.6295,0.016416,0.33152,0.006368,0.005472,0.008,0.017248,0.020096,1.2087,0.01568
+1056,452.547,2.20972,1.74554,0.016512,0.45552,0.007328,0.004896,0.008224,0.018496,0.019936,1.19859,0.016032
+1057,376.817,2.65381,1.62755,0.018528,0.335776,0.007296,0.004864,0.008032,0.016672,0.020416,1.19955,0.016416
+1058,459.038,2.17847,1.6225,0.016416,0.331904,0.006464,0.005888,0.00784,0.01824,0.019168,1.20198,0.014592
+1059,458.525,2.18091,1.74563,0.016128,0.45504,0.00672,0.005312,0.00816,0.018848,0.020096,1.20051,0.014816
+1060,395.214,2.53027,1.77949,0.016384,0.47232,0.006912,0.005152,0.007136,0.020192,0.01872,1.21651,0.01616
+1061,452.397,2.21045,1.63229,0.016448,0.327648,0.00768,0.004608,0.008192,0.018112,0.018752,1.21594,0.014912
+1062,441.094,2.26709,1.7449,0.016384,0.452608,0.006144,0.005888,0.00816,0.01872,0.019488,1.20253,0.014976
+1063,427.825,2.3374,1.78688,0.01856,0.49408,0.006528,0.006144,0.008096,0.018528,0.01984,1.19994,0.015168
+1064,449.32,2.22559,1.61178,0.016384,0.324704,0.00688,0.004288,0.008192,0.018304,0.019616,1.19702,0.016384
+1065,458.884,2.1792,1.7896,0.016512,0.499744,0.00736,0.004864,0.008032,0.018656,0.021504,1.19706,0.015872
+1066,283.499,3.52734,1.8215,0.02704,0.495072,0.019392,0.00528,0.007008,0.018432,0.028672,1.204,0.016608
+1067,462.25,2.16333,1.9672,0.016224,0.446112,0.006688,0.004128,0.008192,0.018112,0.018752,1.19504,0.253952
+1068,381.556,2.62085,2.52109,0.016384,0.3584,0.006144,0.005376,0.00864,0.016704,0.019488,2.07354,0.016416
+1069,352.708,2.83521,1.61392,0.016416,0.333888,0.006144,0.005696,0.007968,0.01808,0.019456,1.19171,0.01456
+1070,479.738,2.08447,2.00387,0.015456,0.323424,0.006112,0.005696,0.008,0.017024,0.019488,1.58595,0.02272
+1071,340.822,2.93408,1.93123,0.016384,0.630784,0.010048,0.005568,0.008128,0.018816,0.01888,1.20627,0.016352
+1072,354.693,2.81934,1.8288,0.026624,0.51792,0.006368,0.004096,0.009248,0.017248,0.01856,1.21242,0.01632
+1073,437.467,2.28589,1.63427,0.0176,0.344896,0.006144,0.005856,0.008,0.016864,0.02,1.19856,0.016352
+1074,417.789,2.39355,1.87882,0.016256,0.58256,0.008224,0.005632,0.008256,0.018848,0.018432,1.20627,0.014336
+1075,440.714,2.26904,1.63117,0.01648,0.330592,0.007424,0.00464,0.008192,0.017696,0.018976,1.21248,0.014688
+1076,445.072,2.24683,1.94589,0.016512,0.331616,0.006464,0.005568,0.007968,0.017184,0.019808,1.20278,0.337984
+1077,380.811,2.62598,1.63475,0.01856,0.340064,0.006368,0.004096,0.008192,0.018176,0.018688,1.2057,0.014912
+1078,478.002,2.09204,1.62275,0.016608,0.325216,0.006784,0.004448,0.008224,0.017664,0.019008,1.19962,0.025184
+1079,396.938,2.51929,1.95024,0.01408,0.332576,0.006272,0.005664,0.007904,0.017024,0.020064,1.19994,0.34672
+1080,374.064,2.67334,1.63635,0.016384,0.344096,0.0072,0.004672,0.008,0.01696,0.019584,1.20317,0.016288
+1081,474.899,2.10571,1.61834,0.016384,0.3304,0.006304,0.00576,0.008032,0.016928,0.020096,1.19846,0.015968
+1082,449.764,2.22339,2.34035,0.016416,0.325344,0.0064,0.005472,0.008032,0.017216,0.018432,1.92208,0.02096
+1083,348.893,2.86621,1.6191,0.016416,0.333248,0.006528,0.004256,0.008192,0.01776,0.018976,1.19821,0.01552
+1084,473.252,2.11304,1.86573,0.017696,0.326368,0.006144,0.005952,0.008064,0.016704,0.020096,1.20256,0.262144
+1085,359.614,2.78076,2.47379,0.016416,0.344064,0.007456,0.0048,0.008032,0.0176,0.01936,2.03987,0.016192
+1086,326.895,3.05908,1.62419,0.016512,0.330816,0.006848,0.004352,0.008192,0.018432,0.018432,1.20422,0.016384
+1087,473.636,2.11133,1.99261,0.016416,0.331456,0.006784,0.004096,0.008192,0.018432,0.018464,1.57283,0.015936
+1088,304.875,3.28003,1.6312,0.01856,0.334688,0.006144,0.005536,0.008,0.017184,0.019744,1.20496,0.016384
+1089,477.946,2.09229,1.61194,0.016576,0.329792,0.00768,0.004608,0.00816,0.017568,0.01936,1.1919,0.016288
+1090,454.556,2.19995,1.61504,0.017504,0.328608,0.006144,0.00576,0.008,0.01696,0.019712,1.19667,0.01568
+1091,384.493,2.60083,1.6511,0.024128,0.344416,0.006656,0.004096,0.008192,0.018432,0.018432,1.21181,0.014944
+1092,451.499,2.21484,1.61808,0.016512,0.333888,0.006144,0.006112,0.007456,0.017152,0.019872,1.19459,0.016352
+1093,466.781,2.14233,1.61571,0.016416,0.331424,0.006464,0.005248,0.007136,0.018368,0.0184,1.19603,0.016224
+1094,396.63,2.52124,1.62474,0.018848,0.327808,0.007648,0.00464,0.00768,0.01808,0.018912,1.20656,0.01456
+1095,477.501,2.09424,1.62438,0.016576,0.335136,0.006816,0.004384,0.008192,0.018272,0.018592,1.20016,0.016256
+1096,431.521,2.31738,1.62262,0.016608,0.326272,0.006208,0.005632,0.008032,0.017056,0.019904,1.20253,0.020384
+1097,359.582,2.78101,1.63459,0.018368,0.332128,0.006144,0.005504,0.008064,0.017184,0.019616,1.21238,0.0152
+1098,435.143,2.2981,1.86672,0.01648,0.336768,0.006176,0.00576,0.008,0.018208,0.018976,1.20211,0.25424
+1099,395.214,2.53027,2.54026,0.016384,0.394912,0.006816,0.004384,0.008192,0.01808,0.018784,2.05619,0.016512
+1100,344.115,2.90601,1.62374,0.016384,0.329728,0.006144,0.006048,0.008032,0.016704,0.01984,1.2048,0.016064
+1101,455.313,2.19629,2.00909,0.016384,0.33136,0.00656,0.004096,0.008192,0.018432,0.018432,1.59056,0.015072
+1102,367.255,2.7229,1.9209,0.016384,0.6016,0.02304,0.005152,0.008192,0.018784,0.025216,1.20627,0.016256
+1103,449.123,2.22656,1.6384,0.01648,0.329632,0.006144,0.00608,0.008,0.01664,0.020032,1.20797,0.027424
+1104,298.281,3.35254,1.80198,0.016416,0.489056,0.006528,0.00528,0.007008,0.026624,0.02992,1.20506,0.016096
+1105,551.576,1.81299,1.6623,0.018304,0.356064,0.016576,0.00432,0.008192,0.01808,0.018784,1.20627,0.015712
+1106,462.982,2.15991,1.64998,0.016384,0.347392,0.00688,0.005184,0.0072,0.0184,0.0184,1.21446,0.01568
+1107,454.354,2.20093,1.86966,0.016544,0.564896,0.006336,0.005664,0.008256,0.018848,0.020352,1.21254,0.016224
+1108,379.189,2.63721,1.91453,0.016384,0.626688,0.0096,0.004736,0.008192,0.019456,0.018976,1.19446,0.016032
+1109,440.667,2.26929,1.63459,0.016928,0.327264,0.006656,0.004384,0.008192,0.017952,0.018912,1.21856,0.015744
+1110,465.349,2.14893,1.7769,0.016384,0.454656,0.00752,0.004768,0.008192,0.019776,0.019136,1.21629,0.030176
+1111,367.651,2.71997,2.2113,0.016384,0.515808,0.00848,0.006144,0.008192,0.018464,0.019648,1.60346,0.01472
+1112,384.312,2.60205,1.62739,0.016416,0.330848,0.006816,0.004352,0.00816,0.017792,0.019104,1.20829,0.015616
+1113,464.979,2.15063,1.97152,0.016416,0.329696,0.006176,0.005792,0.007968,0.016928,0.02048,1.54538,0.022688
+1114,375.229,2.66504,1.6368,0.016352,0.342496,0.007264,0.00464,0.008192,0.016736,0.019584,1.20659,0.014944
+1115,478.505,2.08984,1.61827,0.016512,0.325632,0.006688,0.00432,0.008128,0.018432,0.01952,1.20314,0.015904
+1116,457.041,2.18799,1.92717,0.016384,0.32976,0.006112,0.005792,0.007968,0.01696,0.018432,1.20422,0.321536
+1117,344.173,2.90552,1.6937,0.024576,0.38912,0.007712,0.004576,0.008192,0.017536,0.019328,1.20784,0.014816
+1118,471.509,2.12085,1.86163,0.016384,0.331488,0.006432,0.0056,0.008064,0.017056,0.018432,1.20218,0.256
+1119,420.707,2.37695,1.94275,0.016384,0.331776,0.007424,0.004864,0.008,0.016576,0.020032,1.20672,0.330976
+1120,381.84,2.6189,1.65674,0.01856,0.347712,0.006592,0.00512,0.007168,0.018432,0.018432,1.21856,0.01616
+1121,471.835,2.11938,1.85453,0.016384,0.325632,0.007552,0.004768,0.00816,0.017984,0.01888,1.20339,0.251776
+1122,409.887,2.4397,2.49242,0.01648,0.333344,0.006528,0.005152,0.0072,0.018368,0.019936,2.06902,0.016384
+1123,245.049,4.08081,1.79312,0.016416,0.511968,0.006144,0.006016,0.011872,0.016928,0.02016,1.18816,0.015456
+1124,654.104,1.52881,1.86576,0.016416,0.569344,0.007808,0.00448,0.008224,0.01984,0.01904,1.20528,0.015328
+1125,386.269,2.58887,1.7815,0.018464,0.481248,0.007808,0.005568,0.007104,0.01968,0.01904,1.20646,0.016128
+1126,439.108,2.27734,1.62816,0.017536,0.337792,0.006496,0.004768,0.014336,0.016384,0.020384,1.19536,0.015104
+1127,466.834,2.14209,1.78867,0.01648,0.499712,0.006816,0.005248,0.008224,0.019296,0.019488,1.19818,0.015232
+1128,405.946,2.46338,1.74096,0.018624,0.447264,0.008128,0.00416,0.008192,0.018432,0.02,1.20054,0.015616
+1129,444.059,2.25195,1.61117,0.01648,0.327712,0.007616,0.00464,0.00768,0.016928,0.020384,1.19379,0.015936
+1130,398.056,2.51221,1.81971,0.017856,0.518528,0.006336,0.005632,0.008192,0.018752,0.018624,1.2103,0.015488
+1131,414.323,2.41357,1.8903,0.016384,0.584864,0.009056,0.005792,0.008096,0.01888,0.019744,1.21286,0.014624
+1132,426.134,2.34668,1.63389,0.016608,0.346144,0.007264,0.004736,0.007968,0.016896,0.019648,1.19686,0.01776
+1133,461.677,2.16602,1.74144,0.016544,0.451008,0.008,0.004288,0.008192,0.018432,0.02032,1.20006,0.014592
+1134,343.279,2.91309,1.61034,0.018656,0.323968,0.007648,0.00464,0.008192,0.016384,0.020384,1.1951,0.01536
+1135,480.808,2.07983,1.6159,0.01744,0.33072,0.0072,0.004704,0.008192,0.016768,0.020128,1.19587,0.01488
+1136,391.437,2.55469,1.71232,0.01424,0.406496,0.007584,0.004672,0.008096,0.016512,0.03072,1.20829,0.015712
+1137,410.339,2.43701,1.62256,0.017024,0.337824,0.007328,0.004864,0.008,0.016704,0.020128,1.19613,0.01456
+1138,477.946,2.09229,1.62707,0.01664,0.335872,0.006848,0.005472,0.008672,0.017632,0.019136,1.20192,0.01488
+1139,442.38,2.2605,2.35341,0.01472,0.33648,0.006176,0.00512,0.008192,0.017376,0.019808,1.92547,0.020064
+1140,347.03,2.88159,1.61792,0.016384,0.331776,0.00624,0.005728,0.00784,0.017056,0.018432,1.19808,0.016384
+1141,452.597,2.20947,1.86384,0.016416,0.330336,0.006528,0.005568,0.008064,0.017088,0.019776,1.20672,0.253344
+1142,420.404,2.37866,2.34906,0.016416,0.327648,0.006144,0.006144,0.008096,0.017568,0.019392,1.92717,0.02048
+1143,340.964,2.93286,1.62954,0.016384,0.337888,0.006176,0.005376,0.007072,0.018272,0.019936,1.20272,0.015712
+1144,473.417,2.1123,2.00189,0.016448,0.33648,0.006432,0.005248,0.00704,0.018432,0.018432,1.57818,0.0152
+1145,364.089,2.74658,2.25302,0.016448,0.55104,0.0096,0.004736,0.00832,0.020096,0.01872,1.60941,0.014656
+1146,384.782,2.59888,1.62406,0.016416,0.333024,0.006848,0.00416,0.008192,0.017856,0.018688,1.20403,0.014848
+1147,451.599,2.21436,1.66208,0.016384,0.370496,0.006336,0.004096,0.008192,0.018432,0.019456,1.20314,0.015552
+1148,467.207,2.14038,1.63229,0.016384,0.342016,0.007392,0.004864,0.008064,0.017824,0.018944,1.2015,0.015296
+1149,322.927,3.09668,1.7449,0.017888,0.454496,0.00672,0.004224,0.008192,0.018112,0.022816,1.19606,0.016384
+1150,506.555,1.97412,1.89072,0.01648,0.586016,0.006144,0.005856,0.014624,0.026624,0.01968,1.20093,0.014368
+1151,384.818,2.59863,1.79622,0.019648,0.505824,0.007008,0.005632,0.008064,0.01888,0.018624,1.19779,0.014752
+1152,445.363,2.24536,1.6343,0.016384,0.333728,0.00624,0.005632,0.008096,0.016992,0.018432,1.2135,0.015296
+1153,464.504,2.15283,1.73584,0.016384,0.452608,0.007776,0.004512,0.008192,0.018432,0.02,1.19242,0.01552
+1154,421.659,2.37158,2.18934,0.028704,0.478496,0.008896,0.005184,0.008352,0.019232,0.019488,1.60643,0.01456
+1155,387.622,2.57983,1.61795,0.016416,0.327648,0.006144,0.00592,0.008032,0.017888,0.019392,1.20166,0.014848
+1156,381.378,2.62207,1.64253,0.014368,0.361728,0.00688,0.004096,0.008224,0.018432,0.019584,1.1943,0.014912
+1157,385.216,2.59595,1.67376,0.018528,0.384736,0.006688,0.004256,0.010048,0.016576,0.019968,1.19789,0.015072
+1158,477.891,2.09253,1.61178,0.016384,0.331104,0.006816,0.004096,0.008192,0.017888,0.018976,1.19373,0.014592
+1159,403.905,2.47583,1.93507,0.016384,0.323584,0.006144,0.005472,0.006816,0.018432,0.019872,1.20074,0.337632
+1160,416.684,2.3999,1.62672,0.018752,0.338496,0.00624,0.005472,0.0088,0.016448,0.020096,1.19642,0.016
+1161,476.556,2.09839,1.85542,0.016448,0.327712,0.00656,0.004096,0.008192,0.018112,0.018752,1.1993,0.256256
+1162,398.909,2.50684,2.54694,0.016384,0.385024,0.007776,0.004512,0.008224,0.017856,0.018944,2.07056,0.017664
+1163,314.231,3.18237,1.65494,0.016576,0.355712,0.006688,0.004416,0.008192,0.017408,0.019168,1.21066,0.016128
+1164,457.705,2.18481,1.99584,0.016384,0.335872,0.00752,0.004768,0.007584,0.016992,0.018432,1.57286,0.015424
+1165,376.748,2.6543,2.33062,0.016384,0.566784,0.008704,0.005408,0.008192,0.021216,0.081792,1.60781,0.014336
+1166,362.35,2.75977,1.64234,0.016448,0.336416,0.0064,0.005696,0.008,0.017024,0.019808,1.2169,0.015648
+1167,468.328,2.13525,1.75104,0.016416,0.454208,0.00656,0.00544,0.00816,0.019008,0.018592,1.20762,0.01504
+1168,360.246,2.77588,1.61178,0.018432,0.333312,0.006624,0.004128,0.008192,0.018208,0.018656,1.1897,0.014528
+1169,391.437,2.55469,1.63834,0.01632,0.356608,0.006624,0.004224,0.008192,0.018464,0.0184,1.19398,0.01552
+1170,454.404,2.20068,1.62253,0.016736,0.341696,0.006656,0.004064,0.008192,0.018112,0.018752,1.19194,0.016384
+1171,399.571,2.50269,1.63501,0.018688,0.338368,0.006144,0.00576,0.008064,0.016896,0.020096,1.2057,0.015296
+1172,473.8,2.1106,1.61795,0.016416,0.339936,0.006144,0.005568,0.008,0.017184,0.0184,1.18989,0.016416
+1173,450.704,2.21875,1.63542,0.014336,0.335872,0.006144,0.006112,0.008064,0.018112,0.018912,1.21216,0.015712
+1174,371.924,2.68872,1.63907,0.018656,0.340416,0.007488,0.0048,0.008192,0.017696,0.01872,1.20829,0.014816
+1175,423.666,2.36035,1.63178,0.016512,0.339264,0.006688,0.004544,0.008192,0.017696,0.019168,1.20422,0.015488
+1176,497.994,2.00806,1.96838,0.016352,0.330016,0.007264,0.005024,0.008192,0.017408,0.019136,1.54246,0.022528
+1177,377.233,2.65088,1.64019,0.016384,0.337696,0.006368,0.005216,0.007232,0.018272,0.01968,1.21322,0.016128
+1178,468.221,2.13574,1.60995,0.016352,0.334048,0.007552,0.004736,0.008,0.018144,0.018688,1.18618,0.016256
+1179,428.273,2.33496,2.35517,0.016384,0.325632,0.006144,0.005824,0.007936,0.01696,0.020096,1.93539,0.0208
+1180,358.136,2.79224,1.61667,0.01648,0.328384,0.007712,0.004576,0.008096,0.01648,0.02,1.19856,0.016384
+1181,475.781,2.10181,2.00294,0.016416,0.331744,0.006144,0.006144,0.008096,0.016608,0.019904,1.5809,0.016992
+1182,296.876,3.36841,2.60106,0.01648,0.459584,0.0072,0.004896,0.008352,0.016384,0.020384,2.05219,0.015584
+1183,401.884,2.48828,1.61616,0.016544,0.332992,0.006688,0.004512,0.008192,0.018176,0.020192,1.19408,0.014784
+1184,470.913,2.12354,1.62746,0.016384,0.335872,0.0072,0.00464,0.008224,0.0168,0.01984,1.20282,0.01568
+1185,446.966,2.2373,1.63632,0.01744,0.33808,0.006688,0.004384,0.008192,0.017664,0.0192,1.20835,0.01632
+1186,469.133,2.13159,1.6239,0.016832,0.333888,0.007392,0.004896,0.008192,0.017728,0.019136,1.20013,0.015712
+1187,478.561,2.0896,1.99475,0.016384,0.331776,0.007712,0.004576,0.008224,0.018016,0.018816,1.57491,0.014336
+1188,388.762,2.57227,2.32653,0.016416,0.614048,0.026368,0.004672,0.008192,0.01856,0.019872,1.60378,0.014624
+1189,315.538,3.16919,1.68736,0.017632,0.373568,0.019744,0.0048,0.008192,0.026624,0.020128,1.20048,0.016192
+1190,336.648,2.97046,1.63747,0.016384,0.344064,0.006176,0.005728,0.008,0.01696,0.020224,1.20432,0.015616
+1191,643.418,1.5542,1.61795,0.01744,0.332608,0.006304,0.004096,0.008192,0.017824,0.019072,1.19798,0.014432
+1192,437.981,2.2832,1.62202,0.016384,0.347264,0.00688,0.004256,0.008224,0.0184,0.019648,1.18458,0.016384
+1193,436.023,2.29346,2.16522,0.016416,0.557504,0.007744,0.004768,0.008128,0.018496,0.019616,1.19645,0.336096
+1194,371.553,2.69141,1.63402,0.018656,0.34592,0.006432,0.004096,0.008192,0.018304,0.01856,1.19802,0.01584
+1195,333.442,2.99902,1.78566,0.016384,0.492768,0.006784,0.004256,0.00928,0.017376,0.018496,1.20413,0.016192
+1196,654.522,1.52783,1.63021,0.014528,0.347968,0.007168,0.004896,0.008,0.0168,0.020064,1.1961,0.014688
+1197,399.22,2.50488,1.62074,0.018624,0.340704,0.006144,0.005632,0.007968,0.01712,0.019552,1.18883,0.01616
+1198,476.834,2.09717,1.61405,0.016288,0.323904,0.007616,0.00464,0.007872,0.016736,0.01984,1.20237,0.014784
+1199,453.097,2.20703,1.61382,0.016384,0.325632,0.006144,0.005856,0.007968,0.016928,0.020192,1.2,0.01472
+1200,353.225,2.83105,1.62531,0.018432,0.339968,0.006144,0.0056,0.008,0.01712,0.019552,1.19491,0.015584
+1201,475.064,2.10498,1.6241,0.016224,0.331424,0.006656,0.00528,0.00864,0.0168,0.020512,1.1959,0.022656
+1202,384.637,2.59985,2.4064,0.014336,0.374432,0.016736,0.005984,0.007968,0.016768,0.01984,1.92986,0.02048
+1203,341.504,2.92822,1.63565,0.016384,0.351424,0.006688,0.004384,0.008192,0.018176,0.019872,1.19485,0.01568
+1204,474.184,2.10889,2.00902,0.016736,0.335616,0.006656,0.00528,0.007008,0.018336,0.018528,1.58515,0.015712
+1205,372.465,2.68481,2.2369,0.016576,0.553024,0.008544,0.006144,0.008192,0.018432,0.020512,1.59082,0.014656
+1206,373.042,2.68066,1.62202,0.016384,0.339968,0.006144,0.005504,0.007808,0.017408,0.018464,1.19395,0.016384
+1207,468.757,2.1333,1.98541,0.016544,0.328416,0.006144,0.005632,0.007968,0.01712,0.019584,1.56931,0.014688
+1208,301.998,3.31128,1.99562,0.022368,0.700768,0.006784,0.004096,0.008192,0.016384,0.02048,1.20163,0.014912
+1209,451.648,2.21411,1.62771,0.016416,0.339872,0.006208,0.005376,0.006944,0.018272,0.01856,1.1992,0.016864
+1210,441.808,2.26343,1.62013,0.014432,0.3256,0.006144,0.006144,0.008096,0.017728,0.019008,1.20838,0.014592
+1211,362.093,2.76172,1.61347,0.018592,0.336032,0.006144,0.005504,0.008128,0.017088,0.019936,1.18634,0.015712
+1212,452.747,2.20874,1.62112,0.01648,0.339968,0.007264,0.005024,0.008096,0.017792,0.0192,1.19165,0.015648
+1213,427.557,2.33887,2.33274,0.016704,0.33792,0.006144,0.006144,0.00816,0.020544,0.019936,1.8969,0.020288
+1214,323.232,3.09375,1.73267,0.03072,0.432128,0.006144,0.0056,0.008,0.01712,0.01856,1.1992,0.0152
+1215,487.329,2.052,2.0055,0.01536,0.341696,0.006464,0.004096,0.008224,0.0184,0.019744,1.57565,0.015872
+1216,381.023,2.62451,2.47203,0.016544,0.339456,0.00672,0.0056,0.008064,0.017056,0.020448,2.0432,0.014944
+1217,336.953,2.96777,1.6239,0.01648,0.33824,0.00736,0.004864,0.007808,0.016832,0.02032,1.19619,0.015808
+1218,475.229,2.10425,1.61891,0.01664,0.33456,0.007616,0.004672,0.008224,0.0176,0.01888,1.19536,0.01536
+1219,447.113,2.23657,1.63622,0.016384,0.342016,0.006144,0.005888,0.007968,0.017888,0.019456,1.20422,0.016256
+1220,471.781,2.11963,1.62224,0.016704,0.33328,0.006624,0.004224,0.008192,0.018208,0.018656,1.20016,0.016192
+1221,416.684,2.3999,2.03514,0.02048,0.357952,0.006112,0.004576,0.007584,0.016992,0.020384,1.58525,0.015808
+1222,365.714,2.73438,1.87392,0.016384,0.597792,0.008416,0.005632,0.008288,0.018464,0.018816,1.18566,0.014464
+1223,443.242,2.2561,1.62406,0.016384,0.335872,0.007168,0.00496,0.008032,0.016704,0.020352,1.19923,0.01536
+1224,409.559,2.44165,1.76128,0.01744,0.479424,0.006944,0.004096,0.008192,0.02048,0.019872,1.18979,0.01504
+1225,406.511,2.45996,1.77766,0.032096,0.477824,0.006176,0.006144,0.008192,0.018432,0.019552,1.19408,0.015168
+1226,445.121,2.24658,1.6327,0.016512,0.334144,0.006176,0.006112,0.008032,0.017888,0.019008,1.20992,0.014912
+1227,343.135,2.91431,1.73366,0.014336,0.434176,0.006144,0.014336,0.009376,0.021344,0.020128,1.19773,0.016096
+1228,332.252,3.00977,1.85133,0.018592,0.511776,0.006592,0.0176,0.008448,0.01696,0.043008,1.1993,0.029056
+1229,393.733,2.53979,2.11408,0.016448,0.430592,0.006112,0.005312,0.014592,0.0312,0.018528,1.57603,0.015264
+1230,377.686,2.64771,2.2336,0.016384,0.538368,0.017856,0.004896,0.008224,0.019456,0.019456,1.59338,0.015584
+1231,371.082,2.69482,1.65024,0.016384,0.354304,0.006304,0.0056,0.008032,0.016928,0.019648,1.2071,0.015936
+1232,474.184,2.10889,1.76355,0.016416,0.45728,0.007264,0.004896,0.00816,0.018592,0.018432,1.20589,0.026624
+1233,295.292,3.38647,1.9903,0.016416,0.691904,0.008512,0.006016,0.008128,0.018496,0.018528,1.20627,0.016032
+1234,468.435,2.13477,1.65206,0.01744,0.362912,0.00672,0.004096,0.009472,0.017152,0.019616,1.19798,0.016672
+1235,485.193,2.06104,1.95462,0.0144,0.33664,0.006144,0.00528,0.008032,0.017408,0.019872,1.21251,0.334336
+1236,374.166,2.67261,1.63651,0.016512,0.352288,0.0072,0.004896,0.008,0.016928,0.020032,1.19603,0.014624
+1237,480.808,2.07983,1.62202,0.016384,0.32768,0.006144,0.005504,0.006784,0.017984,0.020064,1.20624,0.015232
+1238,458.627,2.18042,1.59613,0.01424,0.322368,0.007552,0.004736,0.008192,0.018336,0.018528,1.18698,0.0152
+1239,271.582,3.68213,1.68323,0.018432,0.403488,0.00752,0.004736,0.008096,0.01648,0.020128,1.18822,0.016128
+1240,824.477,1.21289,1.64464,0.01648,0.36432,0.006368,0.005344,0.008128,0.017248,0.018496,1.19187,0.016384
+1241,408.049,2.45068,2.33469,0.016608,0.33408,0.007488,0.0048,0.008192,0.018112,0.018752,1.90646,0.020192
+1242,366.532,2.72827,1.63635,0.016448,0.346048,0.00736,0.004896,0.008,0.016608,0.019776,1.20083,0.016384
+1243,472.761,2.11523,2.00038,0.017536,0.330368,0.0064,0.004096,0.00832,0.018304,0.01952,1.57923,0.016608
+1244,380.386,2.62891,2.47011,0.01648,0.338048,0.006144,0.005856,0.008032,0.01696,0.019808,2.04234,0.016448
+1245,334.832,2.98657,1.62202,0.016384,0.335872,0.007584,0.004704,0.008192,0.017504,0.019328,1.19744,0.015008
+1246,424.72,2.35449,1.90886,0.028,0.613024,0.007264,0.004864,0.008352,0.018432,0.020256,1.19405,0.014624
+1247,398.482,2.50952,1.76986,0.018816,0.472928,0.00672,0.00592,0.008224,0.018528,0.019584,1.20317,0.015968
+1248,451.599,2.21436,1.61994,0.016384,0.335872,0.006144,0.005248,0.007136,0.018336,0.018432,1.19603,0.016352
+1249,455.617,2.19482,1.77152,0.016384,0.495616,0.008032,0.004256,0.008224,0.020224,0.018656,1.18483,0.015296
+1250,406.511,2.45996,1.74198,0.018432,0.45056,0.00752,0.004768,0.008128,0.018496,0.019744,1.19882,0.01552
+1251,455.364,2.19604,1.62125,0.016512,0.333024,0.006784,0.004128,0.008192,0.01776,0.019104,1.20013,0.015616
+1252,456.582,2.19019,1.98042,0.016384,0.325504,0.006272,0.005312,0.008032,0.018848,0.018464,1.56726,0.014336
+1253,337.954,2.95898,1.75466,0.018784,0.448672,0.007616,0.004672,0.008192,0.019616,0.019296,1.21242,0.015392
+1254,449.912,2.22266,1.62218,0.016576,0.330272,0.006208,0.005504,0.007968,0.017216,0.019488,1.20317,0.015776
+1255,455.769,2.19409,1.7447,0.016384,0.450848,0.007968,0.00432,0.008192,0.018432,0.02048,1.20218,0.015904
+1256,415.037,2.40942,1.76291,0.018432,0.474912,0.006368,0.005568,0.008096,0.01888,0.018656,1.19603,0.015968
+1257,429.575,2.32788,1.61629,0.016512,0.338592,0.006144,0.00544,0.008,0.01728,0.019808,1.18851,0.016
+1258,468.489,2.13452,1.74899,0.016384,0.454656,0.007712,0.004576,0.008192,0.018432,0.019936,1.20272,0.016384
+1259,309.553,3.23047,1.7367,0.019488,0.447456,0.007712,0.004576,0.008192,0.022336,0.018624,1.19194,0.016384
+1260,518.744,1.92773,1.63843,0.016384,0.343968,0.00624,0.0056,0.008064,0.017056,0.02032,1.20579,0.015008
+1261,446.771,2.23828,1.93011,0.014368,0.328544,0.007168,0.004736,0.008,0.01712,0.02032,1.20013,0.329728
+1262,387.622,2.57983,1.61027,0.01872,0.325024,0.007008,0.004096,0.008192,0.018336,0.018528,1.19398,0.016384
+1263,449.665,2.22388,1.61837,0.015904,0.332704,0.007552,0.004736,0.008192,0.017984,0.01888,1.19718,0.015232
+1264,463.401,2.15796,2.33914,0.016512,0.329344,0.00688,0.004096,0.008192,0.017728,0.019136,1.91683,0.020416
+1265,350.235,2.85522,1.61181,0.017536,0.336,0.00672,0.004288,0.008192,0.017952,0.018912,1.18762,0.014592
+1266,436.441,2.29126,1.99501,0.01664,0.34,0.007552,0.004704,0.008192,0.017536,0.019328,1.56467,0.016384
+1267,388.725,2.57251,2.48422,0.016384,0.33792,0.006144,0.005696,0.007968,0.017056,0.020032,2.05622,0.0168
+1268,344.433,2.90332,1.61053,0.016544,0.32528,0.006816,0.004416,0.008224,0.01776,0.019072,1.19722,0.0152
+1269,481.26,2.07788,1.98861,0.016384,0.327328,0.007552,0.004896,0.007968,0.0168,0.020128,1.57322,0.014336
+1270,377.686,2.64771,2.16758,0.016704,0.47728,0.008576,0.005504,0.00816,0.018528,0.019008,1.59949,0.014336
+1271,382.482,2.6145,1.61251,0.016448,0.329984,0.006656,0.004192,0.008096,0.018368,0.018592,1.19389,0.016288
+1272,355.988,2.80908,1.75568,0.016352,0.459392,0.006528,0.005152,0.017024,0.018368,0.018848,1.18966,0.024352
+1273,482.393,2.073,1.6129,0.016384,0.32768,0.007616,0.004672,0.008192,0.017696,0.019168,1.196,0.015488
+1274,471.672,2.12012,1.61184,0.017504,0.3224,0.006208,0.005824,0.008064,0.016992,0.020256,1.19952,0.015072
+1275,459.915,2.17432,1.74688,0.016384,0.464416,0.006624,0.005344,0.008128,0.018944,0.018784,1.19194,0.01632
+1276,417.448,2.39551,1.73037,0.018496,0.44624,0.007072,0.004128,0.008192,0.018432,0.020384,1.19203,0.015392
+1277,457.654,2.18506,1.6129,0.016384,0.321536,0.006176,0.006016,0.008,0.017728,0.019424,1.20189,0.015744
+1278,452.197,2.21143,1.92682,0.016416,0.61696,0.007424,0.004864,0.008192,0.01968,0.019232,1.21651,0.017536
+1279,305.968,3.26831,1.8592,0.01648,0.577632,0.008224,0.006144,0.008192,0.018432,0.019808,1.18851,0.015776
+1280,450.11,2.22168,1.60554,0.016416,0.328224,0.006144,0.006144,0.00816,0.01744,0.018848,1.18845,0.015712
+1281,443.434,2.25513,1.59907,0.014336,0.329184,0.006688,0.004096,0.008192,0.017856,0.019008,1.18374,0.015968
+1282,407.4,2.45459,1.60122,0.018528,0.3288,0.006816,0.004352,0.008192,0.017856,0.019008,1.1817,0.015968
+1283,469.94,2.12793,1.60448,0.016448,0.325696,0.006688,0.004416,0.008192,0.017952,0.018912,1.18989,0.016288
+1284,465.137,2.1499,1.5951,0.014336,0.323232,0.006496,0.005216,0.007072,0.018464,0.018432,1.18576,0.016096
+1285,269.014,3.71729,1.85555,0.017344,0.52352,0.016672,0.004576,0.02048,0.024608,0.031712,1.20102,0.015616
+1286,810.768,1.2334,1.6279,0.016512,0.347776,0.006816,0.004416,0.008192,0.017824,0.019008,1.19178,0.015584
+1287,429.35,2.3291,1.61357,0.01552,0.34496,0.007552,0.004704,0.008032,0.017696,0.01936,1.17962,0.016128
+1288,399.298,2.50439,1.6343,0.018464,0.33584,0.006272,0.00576,0.008032,0.0168,0.019616,1.20902,0.014496
+1289,466.515,2.14355,1.62614,0.016384,0.33104,0.00672,0.005472,0.008032,0.017376,0.032768,1.19334,0.015008
+1290,375.332,2.66431,2.01523,0.017504,0.40208,0.01616,0.004576,0.022528,0.01824,0.018624,1.47866,0.036864
+1291,396.285,2.52344,1.63363,0.016128,0.340224,0.007456,0.004832,0.008192,0.017856,0.019008,1.19194,0.028
+1292,389.243,2.56909,2.05744,0.01744,0.388064,0.007424,0.004864,0.008032,0.021952,0.029408,1.56467,0.015584
+1293,363.378,2.75195,2.33062,0.017472,0.648128,0.009664,0.004672,0.008192,0.02016,0.018752,1.58925,0.014336
+1294,356.794,2.80273,1.61802,0.01648,0.33792,0.006272,0.005728,0.007808,0.01712,0.019776,1.19216,0.014752
+1295,462.407,2.1626,1.7408,0.016384,0.45376,0.00704,0.004096,0.008288,0.019712,0.019104,1.19725,0.015168
+1296,385.578,2.59351,1.75344,0.016672,0.475104,0.00624,0.006144,0.00816,0.018464,0.018592,1.18768,0.016384
+1297,451.549,2.2146,1.61386,0.017504,0.332704,0.007168,0.00464,0.007744,0.017312,0.020256,1.19136,0.015168
+1298,403.507,2.47827,1.61574,0.016416,0.327648,0.006144,0.005856,0.007776,0.017088,0.01968,1.19888,0.016256
+1299,346.913,2.88257,1.63942,0.01856,0.354656,0.006656,0.005184,0.007104,0.018432,0.019648,1.19277,0.016416
+1300,474.404,2.10791,1.60346,0.016384,0.32768,0.006144,0.005792,0.007968,0.01696,0.019936,1.18637,0.016224
+1301,470.156,2.12695,1.90662,0.014336,0.323584,0.006336,0.005632,0.007968,0.016928,0.02048,1.20976,0.3016
+1302,381.983,2.61792,1.63024,0.018432,0.34592,0.007456,0.0048,0.008032,0.01856,0.018688,1.19347,0.01488
+1303,478.169,2.09131,1.62253,0.016608,0.3272,0.00672,0.005504,0.007968,0.017408,0.01952,1.20627,0.015328
+1304,458.679,2.18018,1.62026,0.01456,0.319328,0.006496,0.005888,0.008,0.016832,0.018432,1.21446,0.016256
+1305,369.076,2.70947,1.62842,0.016352,0.344416,0.007552,0.004672,0.00816,0.017472,0.01936,1.19517,0.015264
+1306,471.998,2.11865,1.59731,0.016512,0.3256,0.007392,0.004672,0.007872,0.01696,0.019552,1.18259,0.01616
+1307,460.898,2.16968,1.5952,0.01536,0.318464,0.006144,0.006144,0.00816,0.017792,0.019136,1.18781,0.016192
+1308,394.491,2.53491,1.63584,0.018432,0.344064,0.006144,0.005632,0.007968,0.017152,0.0184,1.20218,0.015872
+1309,475.284,2.104,1.61632,0.016608,0.327456,0.006656,0.005152,0.007136,0.018432,0.02,1.19856,0.01632
+1310,458.114,2.18286,1.60566,0.016384,0.321472,0.006208,0.005696,0.007904,0.01712,0.01984,1.19462,0.016416
+1311,311.554,3.20972,1.75914,0.032672,0.448032,0.006688,0.004128,0.008192,0.02576,0.02944,1.18797,0.016256
+1312,634.35,1.57642,1.60339,0.016416,0.327648,0.006144,0.005472,0.00784,0.01744,0.019488,1.18675,0.016192
+1313,469.24,2.1311,1.59517,0.014368,0.322656,0.006656,0.004576,0.008192,0.018016,0.018848,1.18579,0.016064
+1314,423.053,2.36377,1.63005,0.016224,0.345536,0.006656,0.004384,0.009856,0.016768,0.019456,1.19501,0.01616
+1315,465.243,2.14941,1.60973,0.016416,0.323552,0.007264,0.005024,0.008032,0.0176,0.019424,1.19715,0.015264
+1316,477.056,2.09619,1.74288,0.016384,0.45056,0.007488,0.0048,0.008192,0.018432,0.020448,1.20154,0.01504
+1317,319.6,3.12891,1.6241,0.018464,0.335904,0.007552,0.004704,0.008192,0.0184,0.018464,1.19718,0.015232
+1318,355.401,2.81372,2.0767,0.027776,0.409792,0.006624,0.00432,0.008192,0.017856,0.01904,1.56669,0.016416
+1319,313.725,3.1875,2.51699,0.016416,0.388576,0.006656,0.004096,0.008192,0.018432,0.02048,2.03958,0.01456
+1320,339.185,2.94824,1.64109,0.01664,0.346496,0.007264,0.004864,0.007872,0.016864,0.018432,1.20118,0.021472
+1321,463.821,2.15601,1.61402,0.014208,0.329952,0.00624,0.005408,0.007968,0.017344,0.018432,1.19958,0.01488
+1322,374.851,2.66772,1.62397,0.01856,0.327648,0.00752,0.004768,0.008128,0.017504,0.018848,1.2048,0.016192
+1323,480.864,2.07959,1.60566,0.016512,0.325632,0.00672,0.005472,0.007168,0.018336,0.018432,1.19181,0.015584
+1324,342.16,2.92261,1.72742,0.027616,0.437888,0.006496,0.00528,0.012896,0.01792,0.0192,1.18512,0.015008
+1325,427.602,2.33862,1.61792,0.018464,0.335392,0.006592,0.004096,0.008192,0.018272,0.018592,1.19389,0.014432
+1326,471.672,2.12012,1.61386,0.016416,0.329728,0.007296,0.00496,0.00816,0.0176,0.01872,1.19616,0.014816
+1327,400.508,2.49683,2.42912,0.016416,0.432256,0.007488,0.0048,0.008192,0.017856,0.01904,1.90256,0.020512
+1328,363.927,2.7478,1.60954,0.016384,0.325664,0.00736,0.004896,0.008192,0.017888,0.019008,1.19395,0.016192
+1329,473.198,2.11328,1.99139,0.016288,0.326464,0.006144,0.0056,0.008128,0.016992,0.020064,1.5767,0.015008
+1330,253.45,3.94556,2.69325,0.016576,0.521952,0.006432,0.005632,0.007968,0.0232,0.030464,2.06608,0.014944
+1331,374.337,2.67139,1.62998,0.016384,0.34992,0.006432,0.005344,0.008064,0.017344,0.0184,1.19194,0.01616
+1332,411.534,2.42993,2.41706,0.016576,0.3832,0.007296,0.004896,0.015968,0.0312,0.01856,1.91885,0.020512
+1333,364.478,2.74365,1.61469,0.016576,0.330368,0.006144,0.006144,0.00928,0.017344,0.019872,1.19398,0.014976
+1334,473.526,2.11182,1.98243,0.016416,0.32128,0.006368,0.005728,0.007968,0.017024,0.018432,1.57286,0.016352
+1335,382.84,2.61206,2.48963,0.01648,0.347808,0.006624,0.004096,0.008192,0.017984,0.01888,2.048,0.021568
+1336,314.738,3.17725,1.61178,0.016384,0.333216,0.006752,0.004096,0.008192,0.018432,0.018432,1.19126,0.015008
+1337,479.232,2.08667,1.73274,0.016864,0.443712,0.007104,0.004096,0.009472,0.018816,0.019936,1.1961,0.01664
+1338,408.742,2.44653,1.76947,0.018432,0.477184,0.007296,0.004864,0.00816,0.018464,0.01856,1.20138,0.015136
+1339,444.3,2.25073,1.61389,0.016384,0.333888,0.007264,0.004896,0.00784,0.016928,0.020096,1.192,0.014592
+1340,468.435,2.13477,1.7408,0.016384,0.4608,0.007712,0.004576,0.008192,0.019488,0.01936,1.1879,0.016384
+1341,406.47,2.46021,1.82899,0.028832,0.53216,0.009824,0.0048,0.008192,0.018432,0.02,1.19181,0.014944
+1342,363.604,2.75024,1.77325,0.016384,0.47104,0.007264,0.01936,0.009376,0.017248,0.018432,1.19808,0.016064
+1343,569.126,1.75708,1.72726,0.016384,0.43056,0.006464,0.005504,0.00816,0.01888,0.018656,1.20755,0.015104
+1344,403.706,2.47705,1.82643,0.016416,0.548384,0.00864,0.00544,0.008288,0.01856,0.018912,1.18579,0.016
+1345,463.611,2.15698,1.61997,0.016384,0.326976,0.006688,0.004288,0.008192,0.01824,0.018592,1.20547,0.015136
+1346,462.564,2.16187,1.99904,0.016448,0.348064,0.006336,0.005184,0.007104,0.018464,0.0184,1.56467,0.014368
+1347,367.387,2.72192,2.16589,0.016384,0.49072,0.008992,0.005888,0.008128,0.026944,0.019904,1.57344,0.015488
+1348,402.16,2.48657,1.59411,0.0168,0.325984,0.007328,0.004928,0.008032,0.0176,0.019104,1.17904,0.015296
+1349,392.902,2.54517,1.60918,0.014176,0.331936,0.006144,0.005632,0.008,0.0184,0.019168,1.18989,0.01584
+1350,380.492,2.62817,1.62205,0.018432,0.34576,0.006496,0.005568,0.008032,0.01712,0.018432,1.18579,0.016416
+1351,459.347,2.177,1.60301,0.01632,0.327872,0.006144,0.005536,0.006752,0.0184,0.018496,1.18781,0.01568
+1352,469.026,2.13208,1.61952,0.014336,0.335616,0.0064,0.004096,0.008192,0.018208,0.018656,1.19808,0.015936
+1353,398.289,2.51074,1.61997,0.018464,0.339936,0.00752,0.004768,0.007616,0.01696,0.019488,1.19037,0.014848
+1354,478.393,2.09033,1.60998,0.016544,0.32608,0.00752,0.004768,0.008192,0.016512,0.019616,1.19472,0.016032
+1355,454.152,2.2019,1.60157,0.016416,0.327712,0.007584,0.005824,0.007072,0.0184,0.019648,1.18384,0.015072
+1356,408.864,2.4458,1.62397,0.016448,0.349632,0.006656,0.00416,0.008192,0.017792,0.019104,1.18576,0.016224
+1357,467.207,2.14038,1.60611,0.01616,0.332448,0.006144,0.005472,0.007968,0.017312,0.020448,1.1848,0.01536
+1358,473.91,2.11011,1.73472,0.016448,0.451968,0.006784,0.005216,0.008256,0.018304,0.019008,1.19235,0.016384
+1359,401.254,2.49219,1.76909,0.019456,0.488288,0.006336,0.006112,0.008192,0.018464,0.0184,1.18784,0.016
+1360,356.143,2.80786,1.60605,0.01648,0.33248,0.007648,0.00464,0.008192,0.017728,0.019072,1.18381,0.016
+1361,645.243,1.5498,1.7369,0.016448,0.453792,0.007104,0.004128,0.008192,0.02016,0.018752,1.19354,0.014784
+1362,297.848,3.35742,1.71069,0.027136,0.41584,0.00752,0.004768,0.008192,0.018176,0.018688,1.19507,0.015296
+1363,566.293,1.76587,1.60736,0.016384,0.331584,0.006336,0.0056,0.00784,0.01728,0.019968,1.1863,0.016064
+1364,462.564,2.16187,1.60554,0.017504,0.33056,0.006144,0.0056,0.007968,0.017152,0.019776,1.18595,0.01488
+1365,346.942,2.88232,1.61398,0.018624,0.345312,0.006688,0.00432,0.008192,0.018304,0.01968,1.17648,0.016384
+1366,480.808,2.07983,1.59859,0.016384,0.330848,0.006816,0.004352,0.007712,0.016864,0.020224,1.17974,0.015648
+1367,426.711,2.34351,2.29654,0.01648,0.335712,0.006688,0.004352,0.008192,0.0176,0.019296,1.60912,0.279104
+1368,351.016,2.84888,1.62294,0.016448,0.342624,0.0064,0.005376,0.008032,0.01728,0.018464,1.19194,0.016384
+1369,450.605,2.21924,1.97491,0.016384,0.334464,0.006144,0.005856,0.006432,0.018432,0.01968,1.55098,0.016544
+1370,384.926,2.5979,2.46554,0.016384,0.335872,0.007552,0.004736,0.00816,0.017536,0.01872,2.03974,0.016832
+1371,338.68,2.95264,1.61181,0.0168,0.337504,0.006688,0.004224,0.008192,0.01824,0.018624,1.18579,0.015744
+1372,464.979,2.15063,1.98922,0.016576,0.329472,0.006624,0.005344,0.007136,0.018432,0.018432,1.57274,0.014464
+1373,389.428,2.56787,1.85626,0.016576,0.571968,0.009728,0.004608,0.008256,0.018368,0.02048,1.19114,0.015136
+1374,441.047,2.26733,1.60634,0.016608,0.32816,0.00784,0.004448,0.008192,0.018048,0.018816,1.18784,0.016384
+1375,388.725,2.57251,1.81674,0.016576,0.506304,0.006496,0.006016,0.00816,0.02848,0.029024,1.20013,0.015552
+1376,418.9,2.38721,1.76272,0.018464,0.47856,0.006784,0.005184,0.007104,0.019808,0.018848,1.19213,0.01584
+1377,436.395,2.2915,1.63021,0.01744,0.336864,0.00752,0.004768,0.007904,0.016672,0.019808,1.20413,0.015104
+1378,476.279,2.09961,1.74285,0.016384,0.452608,0.00784,0.004448,0.008192,0.018432,0.020128,1.19843,0.016384
+1379,412.986,2.42139,1.74195,0.020064,0.450496,0.006624,0.006016,0.008096,0.018688,0.01952,1.19658,0.015872
+1380,441.522,2.26489,1.60358,0.016416,0.332864,0.006688,0.00448,0.008192,0.01744,0.018752,1.18237,0.016384
+1381,474.568,2.10718,1.84618,0.016416,0.5392,0.006464,0.005504,0.00816,0.018912,0.018752,1.21638,0.016384
+1382,367.157,2.72363,2.49069,0.016672,0.342016,0.007456,0.004832,0.008032,0.01776,0.019008,2.06051,0.0144
+1383,325.622,3.07104,1.62835,0.016416,0.348352,0.007392,0.004864,0.008032,0.017952,0.019072,1.18989,0.016384
+1384,439.91,2.27319,2.48013,0.016384,0.346112,0.007264,0.004736,0.007808,0.017088,0.0184,2.04595,0.016384
+1385,330.083,3.02954,1.62186,0.016544,0.337728,0.006432,0.005248,0.007072,0.0184,0.020224,1.19424,0.015968
+1386,473.69,2.11108,2.00499,0.016416,0.334848,0.007072,0.00416,0.008192,0.018112,0.018752,1.58211,0.015328
+1387,366.565,2.72803,2.25754,0.016672,0.56352,0.018176,0.005568,0.008192,0.019264,0.019808,1.59197,0.014368
+1388,207.109,4.82837,1.75926,0.016384,0.479232,0.00752,0.004768,0.008064,0.01792,0.018688,1.192,0.014688
+1389,379.892,2.63232,1.64864,0.016352,0.347296,0.00704,0.005408,0.00864,0.016672,0.03072,1.20122,0.015296
+1390,498.357,2.00659,1.63174,0.016512,0.333984,0.006144,0.005536,0.007968,0.017216,0.019904,1.20867,0.015808
+1391,460.639,2.1709,1.98794,0.016384,0.33728,0.006656,0.004224,0.008192,0.018112,0.01984,1.56154,0.015712
+1392,353.164,2.83154,1.89309,0.01664,0.60256,0.009952,0.004384,0.008192,0.018496,0.019712,1.19174,0.021408
+1393,386.306,2.58862,1.73683,0.016288,0.453056,0.007488,0.004768,0.008192,0.017472,0.018976,1.1944,0.016192
+1394,435.698,2.29517,1.6039,0.016576,0.327776,0.008096,0.005472,0.007904,0.017408,0.019616,1.1863,0.014752
+1395,363.378,2.75195,1.6281,0.018432,0.348,0.006304,0.005696,0.008064,0.01696,0.019712,1.18861,0.01632
+1396,479.232,2.08667,1.59904,0.016544,0.331872,0.006464,0.005408,0.007968,0.017344,0.018432,1.17958,0.015424
+1397,449.863,2.2229,1.60768,0.015648,0.323808,0.006528,0.004224,0.008192,0.018464,0.0184,1.18499,0.027424
+1398,396.784,2.52026,1.60973,0.018432,0.333504,0.006464,0.005216,0.007072,0.018272,0.018592,1.18704,0.015136
+1399,482.507,2.07251,1.6304,0.016512,0.323072,0.006688,0.004128,0.008192,0.018048,0.018816,1.21856,0.016384
+1400,373.246,2.6792,1.9497,0.014368,0.376,0.006656,0.004384,0.008192,0.018432,0.02032,1.19619,0.305152
+1401,339.607,2.94458,1.65654,0.018432,0.374752,0.006176,0.005376,0.00896,0.01792,0.018944,1.18992,0.016064
+1402,477.891,2.09253,1.98467,0.016544,0.333184,0.006816,0.005856,0.007936,0.01728,0.019424,1.55955,0.01808
+1403,274.127,3.64795,2.21725,0.02032,0.577696,0.017696,0.004832,0.024192,0.028544,0.031232,1.46637,0.046368
+1404,492.13,2.03198,1.65683,0.016416,0.382016,0.006848,0.00432,0.008192,0.017888,0.018976,1.18579,0.016384
+1405,442.142,2.26172,2.07635,0.016384,0.404704,0.006784,0.005408,0.00864,0.016832,0.025792,1.57709,0.01472
+1406,373.893,2.67456,1.76538,0.018432,0.483328,0.00752,0.004768,0.008128,0.018496,0.018432,1.18989,0.016384
+1407,445.266,2.24585,1.63046,0.01616,0.35664,0.006336,0.005152,0.007168,0.0184,0.01968,1.18602,0.014912
+1408,450.06,2.22192,1.73507,0.0168,0.454144,0.006656,0.005344,0.008928,0.018496,0.01984,1.18986,0.015008
+1409,414.575,2.41211,1.75498,0.018432,0.472096,0.007136,0.0056,0.008096,0.018656,0.01888,1.18986,0.016224
+1410,433.027,2.30933,1.6256,0.016384,0.342016,0.007456,0.004832,0.007968,0.016608,0.020032,1.19443,0.015872
+1411,462.564,2.16187,1.73597,0.016224,0.452288,0.006752,0.005152,0.007136,0.019968,0.020256,1.19267,0.01552
+1412,414.785,2.41089,1.75309,0.018432,0.472288,0.006944,0.004096,0.008192,0.018432,0.019488,1.18989,0.015328
+1413,298.738,3.34741,1.8168,0.016352,0.526592,0.014336,0.006144,0.008128,0.018496,0.019616,1.19075,0.016384
+1414,744.592,1.34302,1.73072,0.01648,0.45264,0.007232,0.004864,0.008192,0.018496,0.01856,1.18915,0.015104
+1415,409.068,2.44458,1.71926,0.018752,0.45024,0.007136,0.005664,0.008096,0.0184,0.01872,1.17715,0.015104
+1416,455.364,2.19604,1.60973,0.016384,0.329728,0.007296,0.004672,0.008512,0.017664,0.01888,1.19021,0.016384
+1417,469.509,2.12988,1.74454,0.016384,0.45056,0.008032,0.004256,0.008192,0.018432,0.020512,1.20214,0.016032
+1418,333.659,2.99707,1.60397,0.018656,0.329696,0.006816,0.004096,0.008192,0.017728,0.019136,1.18374,0.015904
+1419,485.078,2.06152,1.60547,0.016384,0.331776,0.006144,0.006144,0.008192,0.017408,0.019456,1.18374,0.016224
+1420,282.191,3.5437,1.81181,0.014336,0.53248,0.006144,0.01392,0.008384,0.017824,0.018976,1.18403,0.015712
+1421,551.279,1.81396,1.61203,0.018656,0.336288,0.0064,0.00528,0.0072,0.01824,0.018432,1.18579,0.015744
+1422,451.002,2.21729,1.97046,0.016512,0.329856,0.007168,0.00512,0.008192,0.01776,0.018944,1.5505,0.016416
+1423,391.887,2.55176,2.46979,0.016384,0.339424,0.006496,0.004288,0.008192,0.0184,0.018464,2.04134,0.0168
+1424,349.518,2.86108,1.61446,0.01664,0.328064,0.007648,0.00464,0.008192,0.017984,0.018912,1.1975,0.01488
+1425,467.74,2.13794,2.00195,0.016416,0.327648,0.006144,0.00592,0.008064,0.016736,0.019552,1.58611,0.01536
+1426,325.028,3.07666,2.58547,0.016512,0.455424,0.006176,0.005536,0.012864,0.024608,0.018432,2.03094,0.014976
+1427,353.744,2.8269,1.5945,0.016384,0.32672,0.00672,0.00448,0.00784,0.016736,0.01968,1.18045,0.015488
+1428,462.355,2.16284,1.61574,0.016896,0.33392,0.007456,0.004832,0.008192,0.017792,0.019008,1.192,0.015648
+1429,463.926,2.15552,1.61472,0.016512,0.32752,0.006688,0.004416,0.008224,0.0184,0.020256,1.19763,0.015072
+1430,476.224,2.09985,1.60563,0.016384,0.323616,0.00752,0.004736,0.007968,0.016608,0.02,1.19395,0.014848
+1431,456.888,2.18872,1.72851,0.016384,0.456704,0.007904,0.004384,0.008192,0.018432,0.020384,1.18131,0.014816
+1432,289.388,3.45557,1.68419,0.018528,0.406112,0.006144,0.004096,0.007968,0.017728,0.022624,1.18586,0.015136
+1433,595.349,1.67969,1.60742,0.016416,0.330336,0.006144,0.005888,0.008,0.016832,0.01968,1.18851,0.015616
+1434,468.221,2.13574,1.61382,0.014336,0.337408,0.006656,0.004096,0.008192,0.018176,0.01872,1.19123,0.015008
+1435,355.278,2.8147,1.61587,0.018432,0.335392,0.006624,0.005568,0.008032,0.01712,0.019488,1.19078,0.014432
+1436,479.681,2.08472,1.6056,0.016416,0.325632,0.007456,0.0048,0.008192,0.017632,0.018752,1.19037,0.016352
+1437,444.782,2.24829,1.62406,0.015904,0.330208,0.006144,0.005632,0.008032,0.017056,0.02048,1.2057,0.014912
+1438,359.393,2.78247,1.6152,0.01872,0.337952,0.007584,0.004704,0.008128,0.016448,0.019744,1.18598,0.015936
+1439,351.136,2.8479,2.04406,0.01648,0.38704,0.007392,0.004864,0.007776,0.016832,0.020032,1.56864,0.015008
+1440,333.578,2.9978,2.57299,0.016672,0.412064,0.006144,0.005568,0.008,0.027392,0.03248,2.05034,0.014336
+1441,373.076,2.68042,1.6112,0.016416,0.333792,0.0072,0.004864,0.008032,0.017824,0.019392,1.18787,0.015808
+1442,469.509,2.12988,1.73472,0.015744,0.455392,0.007648,0.00464,0.008192,0.018432,0.018432,1.18989,0.016352
+1443,351.166,2.84766,1.61181,0.018432,0.345568,0.006688,0.004096,0.00944,0.017184,0.020096,1.1753,0.015008
+1444,479.064,2.0874,1.59539,0.017504,0.32656,0.007616,0.004672,0.00944,0.017184,0.018432,1.17872,0.015264
+1445,396.899,2.51953,1.60179,0.014368,0.333184,0.007008,0.005248,0.007136,0.017792,0.019008,1.18339,0.014656
+1446,371.082,2.69482,1.63315,0.018592,0.346368,0.006624,0.004096,0.008192,0.018208,0.018656,1.19603,0.016384
+1447,470.264,2.12646,1.60771,0.01632,0.331392,0.006624,0.004096,0.008192,0.018432,0.018432,1.18954,0.014688
+1448,460.432,2.17188,1.60333,0.016384,0.326848,0.006816,0.00544,0.007008,0.018272,0.018688,1.18774,0.016128
+1449,342.475,2.91992,1.63229,0.018432,0.353696,0.006688,0.00416,0.008192,0.018016,0.018848,1.1897,0.01456
+1450,474.074,2.10938,1.60634,0.016352,0.330048,0.00656,0.005696,0.008128,0.016896,0.018432,1.18947,0.014752
+1451,419.328,2.38477,1.62755,0.016384,0.34816,0.007616,0.004672,0.008192,0.018464,0.01968,1.18851,0.015872
+1452,407.806,2.45215,1.61245,0.018784,0.343392,0.006752,0.00448,0.008192,0.017696,0.01872,1.17926,0.015168
+1453,479.064,2.0874,1.60739,0.016448,0.3336,0.006816,0.005344,0.008096,0.01728,0.018432,1.18579,0.015584
+1454,418.728,2.38818,2.49472,0.016704,0.358208,0.006368,0.005344,0.007968,0.017408,0.018432,2.04749,0.0168
+1455,339.804,2.94287,1.60419,0.016576,0.340384,0.006144,0.00576,0.007968,0.016992,0.01856,1.17549,0.01632
+1456,480.188,2.08252,1.98691,0.016352,0.330112,0.006144,0.006144,0.008192,0.016384,0.019648,1.56755,0.016384
+1457,403.785,2.47656,2.31085,0.016544,0.631328,0.009824,0.005568,0.008256,0.01936,0.020096,1.58554,0.014336
+1458,331.177,3.01953,1.60768,0.016384,0.341344,0.006816,0.004096,0.008192,0.01792,0.018784,1.17923,0.014912
+1459,476.945,2.09668,1.76643,0.016384,0.49152,0.007296,0.004896,0.008224,0.018496,0.020064,1.18387,0.01568
+1460,418.643,2.38867,2.25328,0.016544,0.51776,0.020704,0.005824,0.034848,0.039392,0.01872,1.58515,0.014336
+1461,366.959,2.7251,1.62,0.016384,0.346112,0.007616,0.004672,0.008192,0.017728,0.019168,1.18509,0.01504
+1462,464.926,2.15088,1.73843,0.016384,0.452608,0.008,0.004288,0.008192,0.018432,0.020064,1.1944,0.016064
+1463,366.894,2.72559,1.62205,0.018432,0.3392,0.00672,0.004288,0.008224,0.0184,0.019616,1.19181,0.01536
+1464,319.401,3.13086,1.7841,0.020736,0.489472,0.007616,0.004672,0.017952,0.024576,0.018912,1.18499,0.015168
+1465,659.794,1.51562,1.6343,0.016416,0.347136,0.006848,0.005504,0.007072,0.018464,0.01952,1.1967,0.01664
+1466,451.201,2.21631,1.61235,0.016768,0.333792,0.0064,0.005344,0.008064,0.01728,0.018432,1.19171,0.01456
+1467,448.631,2.229,1.6161,0.01648,0.339392,0.006688,0.004128,0.008192,0.016448,0.019744,1.19046,0.01456
+1468,470.696,2.12451,1.73027,0.016384,0.452544,0.006208,0.005792,0.00816,0.018432,0.018816,1.18784,0.016096
+1469,352.374,2.83789,1.6159,0.018464,0.337888,0.007232,0.004896,0.008,0.018112,0.01904,1.18736,0.014912
+1470,473.307,2.11279,1.59603,0.016576,0.335328,0.00688,0.004352,0.008192,0.018176,0.019968,1.17165,0.014912
+1471,406.914,2.45752,1.60803,0.014112,0.340736,0.006144,0.005504,0.007904,0.017312,0.020192,1.17994,0.016192
+1472,365.845,2.7334,1.60115,0.018432,0.331776,0.007328,0.004896,0.007872,0.016768,0.018432,1.17968,0.015968
+1473,482.677,2.07178,1.61219,0.016256,0.332032,0.006432,0.005536,0.008,0.017184,0.020288,1.19008,0.016384
+1474,449.616,2.22412,2.328,0.016384,0.32544,0.006336,0.005152,0.007136,0.018304,0.01856,1.90874,0.021952
+1475,346.766,2.88379,1.60128,0.016416,0.329696,0.006144,0.005632,0.006656,0.018464,0.01984,1.1823,0.016128
+1476,479.738,2.08447,1.97427,0.016384,0.335872,0.007744,0.004544,0.008192,0.018016,0.018816,1.54758,0.01712
+1477,312.433,3.20068,2.63578,0.016384,0.446464,0.007168,0.004896,0.008,0.01792,0.017312,2.10125,0.016384
+1478,387.879,2.57812,1.61997,0.01632,0.340064,0.006592,0.005152,0.007136,0.018144,0.01872,1.19194,0.015904
+1479,467.9,2.13721,1.61382,0.016384,0.34816,0.006144,0.00576,0.007968,0.016992,0.020064,1.17728,0.015072
+1480,462.407,2.1626,1.64483,0.016576,0.366688,0.007456,0.004832,0.007904,0.016672,0.018432,1.19149,0.014784
+1481,485.538,2.05957,1.59731,0.016608,0.323904,0.007488,0.0048,0.008192,0.017856,0.019008,1.18374,0.015712
+1482,472.543,2.11621,1.96538,0.016384,0.325632,0.006144,0.00544,0.008064,0.017216,0.018432,1.55238,0.01568
+1483,392.187,2.5498,2.48627,0.016416,0.328992,0.006688,0.004256,0.008192,0.018048,0.018848,2.06963,0.0152
+1484,258.586,3.86719,1.84374,0.024448,0.547808,0.007552,0.014944,0.008192,0.02256,0.020448,1.1817,0.016096
+1485,464.715,2.15186,1.65168,0.016384,0.363488,0.006144,0.00608,0.008032,0.016608,0.02048,1.19965,0.014816
+1486,460.742,2.17041,1.59213,0.016544,0.32752,0.006944,0.004096,0.008192,0.018368,0.018496,1.17686,0.015104
+1487,456.531,2.19043,1.62662,0.01648,0.352672,0.006144,0.005632,0.008032,0.017056,0.019712,1.18598,0.014912
+1488,469.509,2.12988,1.60362,0.016384,0.333824,0.006176,0.006112,0.008128,0.017696,0.018816,1.18147,0.015008
+1489,333.768,2.99609,1.62192,0.018752,0.35024,0.006144,0.00528,0.008032,0.017408,0.018656,1.18147,0.015936
+1490,363.249,2.75293,2.08147,0.01632,0.39936,0.006848,0.00416,0.008192,0.018432,0.026624,1.58515,0.016384
+1491,362.478,2.75879,2.51904,0.016384,0.37584,0.00672,0.004512,0.008192,0.018464,0.019552,2.05507,0.014304
+1492,330.91,3.02197,1.61792,0.016384,0.350208,0.006144,0.005696,0.008032,0.018144,0.01856,1.17978,0.014976
+1493,473.526,2.11182,1.73059,0.016384,0.452608,0.007648,0.00464,0.008192,0.018464,0.020096,1.18746,0.015104
+1494,428.273,2.33496,1.84934,0.016384,0.57344,0.009984,0.004352,0.008192,0.018432,0.019712,1.18387,0.014976
+1495,437.513,2.28564,1.59942,0.016384,0.333728,0.006656,0.004096,0.008224,0.018368,0.018464,1.1776,0.015904
+1496,289.757,3.45117,1.96362,0.016576,0.681984,0.00752,0.004768,0.008192,0.019936,0.018912,1.18995,0.015776
+1497,714.585,1.39941,1.83914,0.016416,0.574784,0.008928,0.005824,0.00848,0.018432,0.019584,1.17226,0.014432
+1498,436.953,2.28857,1.61578,0.016448,0.345728,0.006464,0.005216,0.0088,0.016704,0.01952,1.18061,0.016288
+1499,471.563,2.12061,1.72442,0.01616,0.45424,0.006784,0.005408,0.00816,0.018912,0.018752,1.18083,0.015168
+1500,416.345,2.40186,1.74694,0.018432,0.48128,0.007296,0.004864,0.008064,0.018368,0.01872,1.1752,0.01472
+1501,450.011,2.22217,1.59949,0.016384,0.325632,0.00736,0.004896,0.008,0.017792,0.019296,1.18509,0.01504
+1502,480.413,2.08154,1.73581,0.016416,0.47264,0.00656,0.005408,0.008256,0.019104,0.020224,1.17136,0.01584
+1503,315.125,3.17334,1.98707,0.01632,0.715328,0.00976,0.004576,0.008192,0.019552,0.01936,1.17888,0.015104
+1504,456.633,2.18994,1.59536,0.016384,0.328768,0.006784,0.004416,0.007872,0.016704,0.019968,1.17811,0.016352
+1505,461.99,2.16455,1.63619,0.014336,0.362528,0.006112,0.00528,0.007008,0.01824,0.018624,1.18784,0.016224
+1506,340.086,2.94043,1.62448,0.018752,0.345984,0.006656,0.00432,0.008192,0.018336,0.018528,1.18784,0.015872
+1507,481.09,2.07861,1.59133,0.016416,0.321632,0.006336,0.00608,0.008032,0.018304,0.019936,1.1785,0.016096
+1508,450.704,2.21875,2.31242,0.016512,0.320064,0.006144,0.00592,0.007456,0.017312,0.018464,1.89997,0.020576
+1509,272.485,3.66992,1.81638,0.022528,0.530464,0.006112,0.005472,0.019104,0.024576,0.019776,1.17216,0.016192
+1510,543.958,1.83838,2.00298,0.01744,0.325728,0.006816,0.00432,0.008192,0.017984,0.01888,1.57661,0.027008
+1511,376.609,2.65527,2.26048,0.016416,0.542432,0.04736,0.009536,0.008224,0.019104,0.020096,1.58144,0.015872
+1512,367.025,2.72461,1.61882,0.016448,0.346944,0.006112,0.00576,0.007808,0.017152,0.019776,1.18374,0.015072
+1513,467.366,2.13965,1.7745,0.016448,0.502592,0.007424,0.004864,0.008192,0.018432,0.019744,1.18218,0.014624
+1514,399.922,2.50049,1.75718,0.039008,0.471392,0.006304,0.005632,0.008,0.018752,0.018816,1.1735,0.015776
+1515,348.299,2.87109,1.60358,0.017632,0.336192,0.006624,0.004096,0.008192,0.021856,0.019136,1.17488,0.014976
+1516,641.604,1.55859,1.75997,0.016416,0.49424,0.008192,0.005312,0.008288,0.018944,0.01872,1.17456,0.015296
+1517,397.902,2.51318,1.80838,0.016384,0.540672,0.009344,0.004992,0.008192,0.018464,0.019744,1.17533,0.015264
+1518,461.99,2.16455,1.60781,0.016416,0.33904,0.006912,0.005248,0.007168,0.018464,0.0184,1.18147,0.014688
+1519,457.347,2.18652,1.97837,0.016416,0.329696,0.006144,0.004096,0.008,0.016576,0.02048,1.56198,0.014976
+1520,395.749,2.52686,1.84896,0.016512,0.571552,0.00832,0.00576,0.00816,0.018528,0.01872,1.18579,0.015616
+1521,440.999,2.26758,1.60758,0.016384,0.32976,0.007456,0.0048,0.008096,0.017696,0.019264,1.18784,0.016288
+1522,385.47,2.59424,1.98573,0.016544,0.708256,0.006336,0.005632,0.008544,0.019904,0.019168,1.18573,0.015616
+1523,451.201,2.21631,1.74608,0.01856,0.474176,0.007104,0.005568,0.008064,0.018816,0.018752,1.17965,0.015392
+1524,427.379,2.33984,1.60186,0.016576,0.33664,0.007424,0.004864,0.007904,0.016672,0.019488,1.17654,0.015744
+1525,479.289,2.08643,1.71523,0.016128,0.450272,0.006688,0.005312,0.008128,0.019008,0.018784,1.17536,0.015552
+1526,424.192,2.35742,1.82307,0.016608,0.564832,0.008736,0.005376,0.008224,0.018496,0.01904,1.16541,0.016352
+1527,433.256,2.30811,1.60358,0.016416,0.338912,0.006592,0.004672,0.008192,0.01792,0.018944,1.17677,0.015168
+1528,470.805,2.12402,1.99453,0.016416,0.355808,0.006656,0.005536,0.006752,0.018016,0.018752,1.552,0.014592
+1529,321.255,3.11279,1.92704,0.015744,0.647968,0.008384,0.006144,0.008224,0.0184,0.019488,1.18678,0.015904
+1530,443.578,2.25439,1.60867,0.01648,0.342912,0.00752,0.004768,0.008192,0.01792,0.018944,1.17683,0.015104
+1531,341.732,2.92627,2.46579,0.016416,0.330848,0.00672,0.004416,0.008224,0.017472,0.01904,2.04627,0.016384
+1532,344.607,2.90186,1.61178,0.016416,0.332256,0.006144,0.005664,0.007808,0.017248,0.018464,1.1919,0.015872
+1533,479.962,2.0835,1.98458,0.016384,0.333088,0.006688,0.004352,0.008192,0.017824,0.01904,1.56442,0.014592
+1534,373.791,2.67529,2.22726,0.016416,0.544736,0.024096,0.004576,0.008192,0.019616,0.0192,1.57501,0.015424
+1535,300.734,3.3252,1.72646,0.016384,0.452608,0.0072,0.004896,0.008,0.018336,0.02864,1.17546,0.014944
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..a2428a2
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,338.735,3.00141,2.38533,0.016967,0.376779,0.00732259,0.00514381,0.00834491,1.95114,0.019627
+max_1024,510.341,6.83203,3.59046,0.097216,0.936,0.060832,0.031488,0.045056,3.01677,0.335872
+min_1024,146.369,1.95947,1.9912,0.012288,0.314368,0.005056,0.004064,0.00656,1.60106,0.014816
+512,374.406,2.6709,2.09526,0.012288,0.407552,0.007872,0.004416,0.008192,1.6384,0.016544
+513,358.575,2.78882,2.03981,0.016416,0.355904,0.006464,0.004192,0.008192,1.63206,0.016576
+514,373.961,2.67407,2.41859,0.016576,0.34448,0.007296,0.004896,0.007808,2.02138,0.01616
+515,318.631,3.13843,2.02138,0.016416,0.337888,0.007392,0.004896,0.008064,1.63034,0.016384
+516,359.961,2.77808,2.28787,0.016384,0.600384,0.010176,0.004096,0.008224,1.63222,0.016384
+517,343.855,2.9082,2.05245,0.016384,0.344224,0.006688,0.004416,0.008192,1.65584,0.016704
+518,373.825,2.67505,2.94374,0.016544,0.387136,0.006816,0.004192,0.008192,2.504,0.016864
+519,267.94,3.73218,2.28406,0.01696,0.599968,0.006304,0.005728,0.008224,1.63027,0.016608
+520,375.539,2.66284,2.85488,0.016384,0.331776,0.006144,0.005664,0.008672,2.46976,0.01648
+521,287.177,3.48218,2.4063,0.016384,0.346144,0.006624,0.004064,0.008192,2.00883,0.016064
+522,344.926,2.89917,1.99549,0.01664,0.317056,0.006752,0.004352,0.008192,1.62566,0.016832
+523,230.255,4.34302,2.628,0.018688,0.936,0.021024,0.005696,0.008032,1.62173,0.016832
+524,455.719,2.19434,2.02278,0.017632,0.344896,0.007392,0.004864,0.008192,1.62317,0.01664
+525,386.963,2.58423,2.0255,0.01648,0.337824,0.007712,0.004576,0.008192,1.63427,0.016448
+526,395.52,2.52832,2.43318,0.016544,0.347392,0.006528,0.00416,0.00816,2.03402,0.016384
+527,346.092,2.8894,2.82746,0.016384,0.32976,0.007616,0.00464,0.008128,2.44131,0.019616
+528,301.798,3.31348,2.39619,0.016416,0.32464,0.006752,0.00448,0.008224,2.0193,0.016384
+529,332.792,3.00488,2.03776,0.016416,0.335552,0.006432,0.005184,0.007104,1.65069,0.016384
+530,324.23,3.08423,2.03978,0.01856,0.345728,0.007424,0.004896,0.008032,1.63827,0.016864
+531,382.553,2.61401,2.04355,0.01648,0.32784,0.006144,0.005472,0.008096,1.6617,0.017824
+532,390.765,2.55908,2.87539,0.016384,0.333824,0.007296,0.004896,0.007808,2.48893,0.016256
+533,292.112,3.42334,2.26627,0.016416,0.544224,0.006688,0.005376,0.00832,1.66768,0.017568
+534,343.192,2.91382,2.84819,0.016352,0.336064,0.006304,0.005408,0.00688,2.4576,0.019584
+535,291.323,3.43262,2.02138,0.016384,0.341888,0.006272,0.005152,0.007136,1.62784,0.016704
+536,386.269,2.58887,2.01507,0.016352,0.334368,0.006464,0.005184,0.008256,1.62701,0.01744
+537,403.15,2.48047,2.02778,0.016512,0.337728,0.006464,0.00512,0.007168,1.63824,0.016544
+538,383.664,2.60645,2.15898,0.016256,0.4792,0.006688,0.005312,0.008224,1.62691,0.016384
+539,385.796,2.59204,2.02797,0.016544,0.34048,0.007328,0.004896,0.007872,1.63421,0.01664
+540,346.385,2.88696,2.32736,0.018816,0.343808,0.006752,0.00416,0.009888,1.92547,0.018464
+541,355.155,2.81567,2.01114,0.016384,0.32768,0.006304,0.005728,0.007808,1.63066,0.016576
+542,392.262,2.54932,2.75002,0.017632,0.643872,0.009536,0.0048,0.008224,2.04979,0.01616
+543,297.653,3.35962,2.13024,0.016672,0.452416,0.006336,0.005696,0.008192,1.62451,0.016416
+544,390.467,2.56104,2.87123,0.016416,0.329696,0.007776,0.004512,0.007904,2.48861,0.01632
+545,277.563,3.60278,2.40205,0.016704,0.339456,0.006304,0.004448,0.008192,2.01066,0.016288
+546,354.663,2.81958,2.36234,0.016672,0.32608,0.006336,0.004128,0.008192,1.98246,0.018464
+547,328.1,3.04785,2.00704,0.016384,0.333088,0.006784,0.004192,0.008192,1.62202,0.016384
+548,397.863,2.51343,2.01933,0.016384,0.33744,0.006624,0.0056,0.008032,1.62886,0.016384
+549,390.467,2.56104,2.01152,0.016512,0.336128,0.007616,0.004672,0.008096,1.62211,0.016384
+550,385.107,2.59668,2.4057,0.017472,0.334048,0.006752,0.004224,0.008192,2.01888,0.016128
+551,299,3.34448,2.0929,0.016384,0.414272,0.007488,0.0048,0.00816,1.6241,0.017696
+552,332.279,3.00952,2.41213,0.018432,0.34656,0.006176,0.005344,0.008384,2.01094,0.016288
+553,349.041,2.86499,1.99744,0.016224,0.327584,0.006336,0.0048,0.007936,1.61779,0.016768
+554,371.553,2.69141,2.23603,0.016384,0.538624,0.024032,0.00464,0.008384,1.62726,0.016704
+555,377.268,2.65063,2.25485,0.016384,0.568352,0.007136,0.005536,0.008288,1.63277,0.016384
+556,312.314,3.2019,2.37162,0.016416,0.329024,0.006784,0.004128,0.009536,1.98723,0.018496
+557,357.792,2.79492,2.45702,0.0176,0.411808,0.00672,0.004192,0.008192,1.99229,0.016224
+558,347.649,2.87646,2.02317,0.016384,0.339968,0.007808,0.00448,0.008192,1.62973,0.016608
+559,390.318,2.56201,2.58678,0.016576,0.485504,0.00944,0.004896,0.008192,2.04589,0.016288
+560,323.36,3.09253,2.01114,0.01648,0.344608,0.007744,0.004544,0.008192,1.61181,0.01776
+561,378.523,2.64185,2.01997,0.016512,0.341728,0.006784,0.004256,0.008192,1.62611,0.016384
+562,365.943,2.73267,2.48403,0.016576,0.39936,0.00752,0.004768,0.008192,2.03133,0.016288
+563,331.07,3.02051,2.04528,0.016384,0.359968,0.006624,0.004096,0.008192,1.63226,0.01776
+564,358.575,2.78882,2.25955,0.016416,0.57184,0.00832,0.00608,0.008192,1.63232,0.016384
+565,354.05,2.82446,2.07427,0.014336,0.391168,0.007392,0.004896,0.008192,1.63155,0.016736
+566,375.573,2.6626,2.9425,0.016384,0.369792,0.006784,0.004352,0.008192,2.52086,0.016128
+567,253.309,3.94775,2.17507,0.016576,0.505824,0.006688,0.00416,0.008192,1.61594,0.017696
+568,387.365,2.58154,2.37162,0.016384,0.34816,0.00624,0.005696,0.008,1.96854,0.018592
+569,327.418,3.0542,2.40688,0.01632,0.362848,0.006336,0.005952,0.008384,1.99066,0.016384
+570,333.415,2.99927,2.0521,0.016416,0.36192,0.006688,0.004096,0.009472,1.63696,0.016544
+571,356.794,2.80273,2.19126,0.016384,0.484608,0.006912,0.00592,0.008256,1.65235,0.016832
+572,292.718,3.41626,2.11261,0.016384,0.436032,0.006336,0.005952,0.007776,1.62262,0.017504
+573,387.842,2.57837,2.16998,0.016416,0.491296,0.006368,0.005216,0.00816,1.62502,0.017504
+574,384.818,2.59863,2.4191,0.016288,0.34784,0.006752,0.00432,0.008192,2.02054,0.015168
+575,324.976,3.07715,2.03776,0.016384,0.355776,0.00672,0.004096,0.008192,1.63021,0.016384
+576,326.661,3.06128,2.37158,0.018432,0.399072,0.006368,0.00416,0.008192,1.91693,0.018432
+577,364.737,2.7417,2.0161,0.016672,0.354016,0.006752,0.00432,0.008192,1.60963,0.016512
+578,344.173,2.90552,2.63619,0.017024,0.52384,0.020928,0.005888,0.008448,2.0439,0.01616
+579,319.95,3.12549,2.00269,0.01408,0.350528,0.007456,0.004832,0.008096,1.60106,0.01664
+580,389.947,2.56445,2.8672,0.016384,0.342016,0.006144,0.00544,0.008032,2.47245,0.016736
+581,275.51,3.62964,2.44336,0.01648,0.368672,0.007232,0.004896,0.008,2.0217,0.016384
+582,337.314,2.9646,2.44941,0.016384,0.391168,0.00768,0.004608,0.008192,1.99434,0.02704
+583,306.38,3.26392,2.02003,0.016448,0.347008,0.007392,0.004896,0.007872,1.61984,0.016576
+584,383.628,2.60669,2.00842,0.017568,0.346848,0.006272,0.005376,0.008,1.60659,0.01776
+585,383.019,2.61084,2.04595,0.016448,0.358368,0.007168,0.004864,0.008032,1.63469,0.016384
+586,348.033,2.87329,2.16678,0.016416,0.473056,0.008096,0.004192,0.008192,1.64045,0.016384
+587,368.279,2.71533,2.38995,0.017408,0.353248,0.00752,0.004736,0.008192,1.97997,0.01888
+588,260.775,3.83472,2.44611,0.016512,0.37936,0.006368,0.005248,0.008032,2.01539,0.0152
+589,427.379,2.33984,2.02352,0.016448,0.347936,0.0064,0.005184,0.008128,1.62272,0.016704
+590,322.013,3.10547,2.04842,0.018784,0.374848,0.006176,0.005568,0.007968,1.61869,0.016384
+591,380.634,2.6272,2.00467,0.0176,0.3408,0.006144,0.005504,0.008384,1.6097,0.016544
+592,385.035,2.59717,2.9223,0.016384,0.355904,0.006528,0.00416,0.008192,2.51494,0.016192
+593,275.25,3.63306,2.13606,0.016384,0.462848,0.008032,0.004288,0.00816,1.61997,0.016384
+594,354.203,2.82324,2.88173,0.016288,0.35168,0.006784,0.00432,0.008192,2.47808,0.016384
+595,287.177,3.48218,2.00704,0.017632,0.34896,0.007328,0.004896,0.008,1.60371,0.016512
+596,371.89,2.68896,2.04787,0.016352,0.356512,0.006432,0.005248,0.009088,1.6375,0.016736
+597,375.918,2.66016,2.01523,0.016416,0.34608,0.006144,0.005504,0.008608,1.61584,0.01664
+598,381.947,2.61816,2.03005,0.01472,0.35248,0.006368,0.005312,0.006976,1.62778,0.016416
+599,360.468,2.77417,2.95882,0.016384,0.40912,0.006624,0.004096,0.008192,2.49779,0.016608
+600,284.86,3.5105,2.21347,0.016416,0.55024,0.006784,0.005248,0.008224,1.60992,0.01664
+601,370.947,2.6958,2.38899,0.016736,0.346368,0.00656,0.005664,0.008064,1.98717,0.018432
+602,317.126,3.15332,2.43562,0.016512,0.371104,0.007648,0.012832,0.009408,2.00173,0.016384
+603,328.706,3.04224,2.01494,0.016416,0.348128,0.006144,0.005696,0.008064,1.61238,0.018112
+604,315.854,3.16602,2.18506,0.016064,0.512288,0.006912,0.005824,0.00832,1.61808,0.017568
+605,418.215,2.39111,2.01318,0.016384,0.3584,0.006144,0.0056,0.008,1.60227,0.016384
+606,385.071,2.59692,2.03776,0.016416,0.360416,0.007328,0.004896,0.008192,1.62413,0.016384
+607,370.31,2.70044,2.42282,0.016384,0.350272,0.007168,0.004928,0.008352,2.01933,0.016384
+608,328.31,3.0459,2.0025,0.016384,0.339008,0.006752,0.00448,0.00816,1.60973,0.017984
+609,372.838,2.68213,2.25504,0.016352,0.578784,0.009216,0.0056,0.008288,1.62,0.0168
+610,243.332,4.10962,2.04045,0.016512,0.36304,0.006176,0.005632,0.00864,1.62355,0.016896
+611,298.891,3.3457,2.80624,0.01632,0.69072,0.009376,0.00496,0.008224,2.06026,0.016384
+612,356.174,2.80762,2.02342,0.016384,0.339968,0.006304,0.005728,0.008032,1.63062,0.016384
+613,375.47,2.66333,2.94301,0.016384,0.401216,0.006336,0.005216,0.007072,2.49037,0.016416
+614,284.721,3.51221,2.13341,0.016384,0.4728,0.006432,0.0056,0.008192,1.60739,0.016608
+615,362.125,2.76147,2.88154,0.016416,0.333824,0.006112,0.005728,0.007808,2.49526,0.016384
+616,292.321,3.4209,2.01933,0.016384,0.330944,0.00672,0.004352,0.008192,1.63635,0.016384
+617,369.009,2.70996,2.01709,0.017504,0.338848,0.007488,0.0048,0.008128,1.6233,0.017024
+618,373.552,2.677,2.01981,0.016544,0.336192,0.00752,0.004768,0.008128,1.63027,0.016384
+619,393.241,2.54297,2.00899,0.016384,0.32768,0.006208,0.005728,0.008032,1.62662,0.018336
+620,281.145,3.55688,2.23232,0.024288,0.524288,0.006432,0.005152,0.012352,1.64307,0.016736
+621,344.607,2.90186,2.2369,0.018752,0.544544,0.006496,0.005536,0.008224,1.63651,0.016832
+622,371.755,2.68994,2.35827,0.01664,0.323584,0.006752,0.004256,0.008192,1.97997,0.01888
+623,314.665,3.17798,2.4119,0.016384,0.34816,0.007904,0.004384,0.008192,2.01043,0.016448
+624,347.266,2.87964,1.9912,0.015424,0.331648,0.006112,0.005792,0.00784,1.60778,0.016608
+625,329.764,3.03247,2.31082,0.016384,0.629408,0.009824,0.0056,0.008256,1.62464,0.016704
+626,389.206,2.56934,2.03248,0.016576,0.354464,0.006624,0.004128,0.008192,1.62611,0.016384
+627,313.918,3.18555,2.00986,0.016672,0.3384,0.008032,0.004256,0.008192,1.61776,0.016544
+628,510.341,1.95947,2.39152,0.016448,0.329728,0.007264,0.004896,0.008,2.00899,0.016192
+629,318.854,3.13623,2.0152,0.01744,0.336096,0.006496,0.004512,0.008192,1.62582,0.01664
+630,362.125,2.76147,2.6665,0.016384,0.50176,0.048352,0.004896,0.008192,2.05619,0.03072
+631,291.281,3.43311,2.01155,0.014176,0.346848,0.007264,0.004896,0.008032,1.61328,0.017056
+632,381.449,2.62158,2.91792,0.017536,0.371584,0.007392,0.004864,0.008032,2.49235,0.01616
+633,282.814,3.53589,2.13882,0.01632,0.453408,0.006144,0.00592,0.008192,1.63206,0.016768
+634,381.201,2.62329,2.82534,0.017568,0.346976,0.006144,0.005664,0.008,2.42346,0.017536
+635,289.266,3.45703,2.3961,0.016416,0.340576,0.007392,0.004896,0.008,2.0024,0.016416
+636,247.507,4.04028,2.8791,0.016384,0.370688,0.006144,0.005536,0.008064,2.4561,0.016192
+637,288.025,3.47192,2.0601,0.016384,0.382976,0.007744,0.004544,0.008192,1.62358,0.016672
+638,365.16,2.73853,2.016,0.016672,0.339552,0.006752,0.004384,0.008192,1.62406,0.016384
+639,379.014,2.63843,2.32122,0.01648,0.338432,0.006368,0.005344,0.008096,1.92758,0.018912
+640,358.575,2.78882,2.02019,0.01664,0.330336,0.006144,0.0056,0.007808,1.63728,0.016384
+641,265.646,3.7644,3.39827,0.01648,0.4832,0.006752,0.012704,0.008192,2.85475,0.016192
+642,259.651,3.85132,2.04157,0.016384,0.372064,0.00672,0.004224,0.00816,1.61738,0.01664
+643,367.288,2.72266,2.29581,0.027648,0.571744,0.008864,0.00608,0.008128,1.65664,0.016704
+644,354.816,2.81836,2.01254,0.016384,0.34384,0.006368,0.004096,0.008192,1.61706,0.016608
+645,372.974,2.68115,2.00704,0.01744,0.327808,0.006752,0.004352,0.008192,1.62579,0.016704
+646,335.683,2.979,2.46989,0.016416,0.382944,0.006176,0.0056,0.008,2.03437,0.016384
+647,336.455,2.97217,2.02342,0.016224,0.342848,0.007648,0.004608,0.008192,1.62611,0.017792
+648,325.855,3.06885,2.03341,0.019552,0.344992,0.006304,0.005696,0.008064,1.6319,0.016896
+649,379.505,2.63501,2.00304,0.016448,0.33504,0.006528,0.004576,0.008192,1.61536,0.016896
+650,359.172,2.78418,2.89168,0.017472,0.355264,0.007424,0.004864,0.008128,2.472,0.026528
+651,262.716,3.8064,2.03162,0.016416,0.352224,0.007552,0.004736,0.008192,1.62611,0.016384
+652,375.78,2.66113,2.91386,0.016384,0.346112,0.006144,0.0056,0.008192,2.51539,0.016032
+653,274.145,3.64771,2.42262,0.016512,0.346144,0.006208,0.005504,0.008512,2.02368,0.016064
+654,355.309,2.81445,2.84739,0.016672,0.331584,0.00672,0.00544,0.006848,2.4617,0.018432
+655,284.781,3.51147,2.02144,0.016384,0.336768,0.006176,0.005664,0.008032,1.63082,0.0176
+656,295.633,3.38257,2.11341,0.01632,0.430368,0.006496,0.00512,0.007168,1.63146,0.01648
+657,404.184,2.47412,2.03571,0.016544,0.339808,0.006144,0.005696,0.008,1.64294,0.016576
+658,397.13,2.51807,2.00701,0.014432,0.325536,0.00656,0.004352,0.008032,1.63056,0.017536
+659,377.442,2.64941,2.88154,0.016512,0.332192,0.007648,0.00464,0.00816,2.49616,0.016224
+660,288.207,3.46973,2.40029,0.016448,0.333952,0.00816,0.00416,0.00816,2.01312,0.016288
+661,262.648,3.80737,2.48877,0.016416,0.440736,0.006144,0.005472,0.00832,1.99322,0.018464
+662,454.354,2.20093,2.43917,0.016384,0.343232,0.006528,0.004544,0.008224,2.04387,0.016384
+663,341.447,2.92871,2.0009,0.016384,0.323616,0.007328,0.004896,0.007808,1.62448,0.016384
+664,377.338,2.65015,2.57843,0.016384,0.476544,0.008672,0.0056,0.008512,2.04634,0.016384
+665,313.87,3.18604,2.04269,0.016512,0.336736,0.006144,0.005472,0.008,1.65155,0.018272
+666,368.081,2.7168,2.05885,0.016384,0.369472,0.007232,0.004896,0.008096,1.63402,0.018752
+667,381.733,2.61963,2.41882,0.016352,0.351488,0.00656,0.004608,0.008192,2.01523,0.016384
+668,327.628,3.05225,2.02944,0.016384,0.339968,0.007616,0.004672,0.008192,1.63594,0.016672
+669,340.936,2.93311,2.06061,0.018752,0.378464,0.00656,0.004128,0.00816,1.62781,0.016736
+670,375.539,2.66284,2.04186,0.016448,0.331712,0.00768,0.004608,0.02048,1.64454,0.016384
+671,363.153,2.75366,2.93888,0.016416,0.405472,0.006144,0.005792,0.008064,2.47555,0.02144
+672,258.586,3.86719,2.04096,0.016384,0.355712,0.00672,0.00416,0.009536,1.63091,0.017536
+673,376.748,2.6543,2.92659,0.016448,0.368288,0.006432,0.00528,0.008128,2.50563,0.016384
+674,283.696,3.5249,2.42278,0.018144,0.33616,0.00736,0.004896,0.008224,2.03162,0.016384
+675,340.369,2.93799,2.84262,0.016416,0.32768,0.007424,0.004832,0.008192,2.4617,0.016384
+676,293.305,3.40942,2.03891,0.016384,0.331392,0.006528,0.00512,0.007168,1.65478,0.017536
+677,322.723,3.09863,2.06848,0.026624,0.350208,0.006144,0.005504,0.008128,1.65542,0.016448
+678,374.817,2.66797,2.06848,0.016416,0.344064,0.007424,0.004832,0.008064,1.6713,0.016384
+679,307.577,3.25122,2.06266,0.014432,0.327872,0.00656,0.004192,0.008192,1.68486,0.016544
+680,445.46,2.24487,2.97354,0.016416,0.431936,0.006304,0.018432,0.009344,2.4745,0.016608
+681,303.026,3.30005,2.43955,0.016064,0.35312,0.007648,0.00464,0.007968,2.03389,0.016224
+682,253.121,3.95068,2.11859,0.016384,0.409568,0.00672,0.004512,0.018432,1.63635,0.026624
+683,407.724,2.45264,2.12378,0.018432,0.425472,0.006656,0.004096,0.008192,1.64454,0.016384
+684,383.88,2.60498,2.03971,0.016544,0.333984,0.006368,0.00544,0.008128,1.65254,0.016704
+685,361.869,2.76343,2.05213,0.01744,0.345056,0.006144,0.0056,0.007968,1.6529,0.017024
+686,356.732,2.80322,2.07142,0.017216,0.378176,0.006752,0.004256,0.009344,1.63904,0.01664
+687,384.312,2.60205,2.96672,0.016416,0.331744,0.007488,0.0048,0.008096,2.58198,0.016192
+688,258.39,3.87012,2.15741,0.016384,0.459616,0.007456,0.004832,0.008192,1.64426,0.016672
+689,360.881,2.771,2.44326,0.016384,0.3584,0.006144,0.005824,0.008,2.03008,0.018432
+690,325.596,3.07129,2.42339,0.016224,0.33664,0.006208,0.005728,0.008032,2.03418,0.016384
+691,346.268,2.88794,2.04182,0.017728,0.324288,0.006144,0.00576,0.007808,1.66352,0.016576
+692,346.414,2.88672,2.2047,0.02384,0.479296,0.006816,0.006016,0.008064,1.65094,0.029728
+693,300.558,3.32715,2.08336,0.014464,0.379072,0.021056,0.006176,0.008,1.63651,0.01808
+694,370.545,2.69873,3.13568,0.016672,0.528096,0.006816,0.016672,0.008192,2.54301,0.016224
+695,283.382,3.52881,2.06294,0.016448,0.358944,0.00768,0.004608,0.008192,1.65053,0.016544
+696,342.303,2.92139,2.06029,0.016416,0.353728,0.006688,0.005536,0.008096,1.65344,0.016384
+697,421.529,2.37231,2.42938,0.016576,0.35696,0.007264,0.004896,0.008,2.01933,0.016352
+698,283.441,3.52808,2.12102,0.016384,0.433376,0.00672,0.00432,0.008192,1.63533,0.016704
+699,305.33,3.27515,2.72736,0.04688,0.694272,0.00672,0.005792,0.008,1.94819,0.017504
+700,349.25,2.86328,2.02666,0.01744,0.33072,0.006144,0.006048,0.008032,1.64189,0.016384
+701,321.911,3.10645,2.83443,0.01744,0.676,0.0352,0.005632,0.008224,2.07555,0.016384
+702,317.618,3.14844,2.03366,0.016576,0.32544,0.007552,0.004736,0.008,1.65491,0.016448
+703,354.571,2.82031,2.95133,0.01648,0.366432,0.0064,0.005184,0.007072,2.53338,0.016384
+704,253.23,3.94897,2.21597,0.016384,0.490752,0.006912,0.00512,0.008256,1.67213,0.016416
+705,387.879,2.57812,2.93091,0.016448,0.374944,0.007424,0.004864,0.012288,2.49856,0.016384
+706,290.311,3.44458,2.07421,0.016064,0.36944,0.006144,0.0056,0.008,1.65142,0.017536
+707,378.104,2.64478,2.10445,0.016416,0.36656,0.007232,0.004928,0.00784,1.6737,0.027776
+708,373.042,2.68066,2.068,0.016384,0.34816,0.006144,0.005504,0.008032,1.66723,0.016544
+709,384.89,2.59814,2.05389,0.01536,0.336128,0.006528,0.00448,0.008192,1.6665,0.016704
+710,382.911,2.61157,2.91926,0.01648,0.340064,0.006784,0.004128,0.008192,2.52723,0.016384
+711,284.959,3.50928,2.45747,0.016448,0.339392,0.006656,0.004096,0.009216,2.06541,0.016256
+712,347.649,2.87646,2.88122,0.016512,0.331488,0.00656,0.004096,0.008192,2.4977,0.016672
+713,242.281,4.12744,2.4968,0.016384,0.407104,0.006752,0.004224,0.009216,2.03674,0.016384
+714,429.17,2.33008,2.02547,0.016416,0.3256,0.00752,0.004768,0.008128,1.64666,0.016384
+715,320.727,3.11792,2.05994,0.018464,0.337888,0.006272,0.005696,0.008,1.66701,0.016608
+716,376.748,2.6543,2.06077,0.01664,0.342208,0.006176,0.005408,0.008832,1.66512,0.016384
+717,396.822,2.52002,2.06438,0.016384,0.33792,0.00768,0.004608,0.007968,1.67331,0.016512
+718,379.435,2.6355,2.46346,0.017536,0.33584,0.006752,0.004416,0.008192,2.07434,0.016384
+719,316.391,3.16064,2.11776,0.016608,0.395616,0.006272,0.00576,0.007968,1.66896,0.016576
+720,313.126,3.1936,2.4617,0.019488,0.359392,0.007808,0.00448,0.008192,2.04595,0.016384
+721,335.986,2.97632,2.04189,0.016416,0.335872,0.006272,0.0056,0.00656,1.65478,0.016384
+722,354.693,2.81934,2.67498,0.016576,0.514144,0.009504,0.004832,0.008224,2.10653,0.015168
+723,314.038,3.18433,2.06688,0.014432,0.34032,0.007488,0.0048,0.008,1.6751,0.016736
+724,354.141,2.82373,2.94298,0.016384,0.351328,0.006752,0.004416,0.008192,2.53952,0.016384
+725,282.094,3.54492,2.2016,0.016384,0.475136,0.007488,0.0048,0.008128,1.67322,0.016448
+726,376.956,2.65283,2.85082,0.016384,0.329728,0.007424,0.0048,0.008,2.46781,0.016672
+727,290.414,3.44336,2.08077,0.016384,0.370208,0.00656,0.00416,0.008192,1.65888,0.016384
+728,388.799,2.57202,2.05267,0.016416,0.34032,0.006336,0.006144,0.008032,1.65888,0.016544
+729,337.508,2.96289,2.04848,0.016448,0.346112,0.006528,0.004128,0.008192,1.65069,0.016384
+730,411.08,2.43262,2.17498,0.017408,0.450912,0.006816,0.005184,0.008224,1.66992,0.016512
+731,371.688,2.69043,2.87235,0.016384,0.333824,0.006144,0.005568,0.008,2.48499,0.01744
+732,292.154,3.42285,2.45088,0.016672,0.335648,0.006496,0.005152,0.007136,2.06237,0.017408
+733,339.945,2.94165,2.4103,0.016384,0.32768,0.00624,0.006048,0.008192,2.02861,0.017152
+734,320.325,3.12183,2.46406,0.016544,0.344512,0.007488,0.0048,0.008064,2.06624,0.016416
+735,318.136,3.14331,2.07379,0.016416,0.35024,0.007744,0.00448,0.008192,1.66912,0.0176
+736,381.84,2.6189,2.62157,0.016384,0.485376,0.00976,0.005632,0.008192,2.08077,0.015456
+737,326.453,3.06323,2.05594,0.016416,0.3464,0.006144,0.005472,0.008032,1.65664,0.016832
+738,399.181,2.50513,2.06397,0.016416,0.337344,0.006688,0.004096,0.008192,1.67469,0.016544
+739,374.44,2.67065,2.46899,0.017536,0.336416,0.006496,0.004096,0.008192,2.07984,0.016416
+740,333.035,3.00269,2.08691,0.016416,0.343424,0.006688,0.004192,0.00816,1.69139,0.01664
+741,321.709,3.1084,2.34301,0.01648,0.620544,0.009824,0.005632,0.008256,1.66589,0.016384
+742,377.268,2.65063,2.09952,0.016832,0.347232,0.006752,0.004512,0.02048,1.6871,0.016608
+743,383.126,2.61011,2.97738,0.016384,0.401024,0.006528,0.005216,0.007072,2.52515,0.016
+744,286.414,3.49146,2.4863,0.016384,0.333824,0.006144,0.005664,0.00784,2.10003,0.016416
+745,335.188,2.9834,2.90938,0.016384,0.325664,0.007648,0.004608,0.008192,2.53037,0.016512
+746,255.171,3.91895,2.47754,0.016384,0.345728,0.006528,0.004096,0.00976,2.07866,0.016384
+747,334.586,2.98877,2.85696,0.016384,0.331808,0.006144,0.005664,0.008032,2.47254,0.016384
+748,283.108,3.53223,2.05357,0.016416,0.339616,0.006464,0.00512,0.007232,1.66208,0.01664
+749,375.642,2.66211,2.04595,0.016416,0.335232,0.00672,0.004128,0.008192,1.65888,0.016384
+750,380.811,2.62598,2.06029,0.016384,0.331264,0.006656,0.004096,0.008192,1.66502,0.028672
+751,298.956,3.34497,2.15427,0.01472,0.421408,0.00672,0.012608,0.008192,1.67322,0.017408
+752,409.273,2.44336,2.96131,0.016384,0.348032,0.006272,0.005344,0.008032,2.56096,0.016288
+753,283.991,3.52124,2.24474,0.01632,0.51136,0.006976,0.00512,0.008256,1.68032,0.016384
+754,363.185,2.75342,2.83805,0.016352,0.321888,0.007296,0.004992,0.007648,2.46326,0.016608
+755,280.318,3.56738,2.50474,0.016384,0.376768,0.00624,0.005504,0.008,2.06893,0.022912
+756,281.357,3.5542,2.4864,0.016416,0.382848,0.00624,0.005376,0.00832,2.05069,0.016512
+757,322.038,3.10522,2.08125,0.016544,0.354656,0.006112,0.0056,0.007936,1.67402,0.016384
+758,358.449,2.78979,2.08938,0.016416,0.34,0.006688,0.00416,0.008192,1.69725,0.016672
+759,361.869,2.76343,2.04608,0.016416,0.348128,0.006176,0.005536,0.007904,1.64541,0.016512
+760,372.431,2.68506,2.19571,0.016416,0.452768,0.007232,0.004928,0.008064,1.68992,0.016384
+761,300.712,3.32544,3.13549,0.030496,0.499936,0.007712,0.004576,0.008192,2.56819,0.016384
+762,294.846,3.3916,2.23059,0.016416,0.461184,0.007584,0.004704,0.008192,1.71555,0.01696
+763,366.532,2.72827,2.06016,0.016384,0.328768,0.006784,0.004416,0.007968,1.67754,0.018304
+764,329.26,3.03711,2.47469,0.018592,0.339872,0.00672,0.00416,0.008192,2.08077,0.016384
+765,330.963,3.02148,2.06848,0.016384,0.337856,0.00624,0.005344,0.006912,1.6792,0.016544
+766,281.648,3.55054,2.37146,0.018496,0.643072,0.007456,0.004832,0.008192,1.6727,0.016704
+767,390.281,2.56226,2.19501,0.016384,0.45056,0.007488,0.0048,0.008128,1.69082,0.016832
+768,374.03,2.67358,2.10125,0.016384,0.370688,0.007328,0.004896,0.008064,1.67699,0.016896
+769,390.355,2.56177,2.50266,0.016416,0.343936,0.00624,0.005376,0.008,2.10742,0.015264
+770,311.981,3.20532,2.0729,0.016704,0.339968,0.007232,0.004896,0.008,1.67971,0.016384
+771,338.121,2.95752,2.45546,0.018432,0.346144,0.007712,0.004544,0.008224,2.04976,0.02064
+772,321.81,3.10742,2.10538,0.016416,0.339936,0.006144,0.005632,0.007968,1.71286,0.016416
+773,351.92,2.84155,2.70144,0.016416,0.553696,0.009472,0.004864,0.008192,2.08909,0.019712
+774,313.318,3.19165,2.09101,0.016384,0.342016,0.007584,0.004704,0.008064,1.69587,0.016384
+775,375.367,2.66406,2.94963,0.023072,0.3536,0.006784,0.004128,0.008192,2.53862,0.015232
+776,274.347,3.64502,2.19446,0.016384,0.450496,0.006208,0.005824,0.008192,1.68992,0.01744
+777,359.708,2.78003,2.97027,0.016544,0.33808,0.006496,0.004096,0.008224,2.58045,0.016384
+778,281.145,3.55688,2.09584,0.016704,0.33424,0.0072,0.004928,0.008,1.70771,0.017056
+779,343.451,2.91162,2.08083,0.016704,0.344096,0.007488,0.0048,0.008128,1.68269,0.016928
+780,376.505,2.65601,2.08691,0.016384,0.337248,0.006752,0.00416,0.008192,1.69779,0.016384
+781,365.062,2.73926,2.05619,0.016416,0.32512,0.006624,0.004096,0.008192,1.66707,0.028672
+782,322.672,3.09912,2.87539,0.016384,0.468448,0.006688,0.004096,0.008192,2.3511,0.02048
+783,268.344,3.72656,2.18525,0.017856,0.432736,0.007232,0.004896,0.008,1.69789,0.01664
+784,316.685,3.15771,3.14381,0.018112,0.491552,0.00656,0.00528,0.0152,2.592,0.015104
+785,260.014,3.84595,2.10486,0.01632,0.376992,0.008192,0.005152,0.008224,1.67325,0.016736
+786,369.408,2.70703,2.10851,0.016416,0.367808,0.00672,0.00432,0.008192,1.68755,0.017504
+787,366.336,2.72974,2.45955,0.016352,0.331968,0.006784,0.00416,0.008192,2.076,0.016096
+788,306.702,3.2605,2.52928,0.016416,0.402496,0.006752,0.004416,0.008192,2.07434,0.016672
+789,316.342,3.16113,2.47603,0.016448,0.35792,0.006752,0.004448,0.008192,2.06573,0.016544
+790,329.977,3.03052,2.09274,0.016416,0.364064,0.006592,0.004096,0.008192,1.67677,0.016608
+791,350.805,2.85059,2.35146,0.016608,0.596192,0.010016,0.0056,0.008256,1.69805,0.016736
+792,333.931,2.99463,2.11411,0.0144,0.362976,0.0072,0.004896,0.007968,1.69987,0.0168
+793,382.661,2.61328,2.96176,0.016448,0.355968,0.00672,0.004192,0.008192,2.55386,0.016384
+794,276.794,3.61279,2.22486,0.015104,0.46896,0.007776,0.004512,0.008192,1.70394,0.016384
+795,365.193,2.73828,2.8807,0.016384,0.335904,0.006112,0.005696,0.008064,2.49094,0.0176
+796,283.951,3.52173,2.12109,0.016416,0.361984,0.006656,0.004064,0.008192,1.70707,0.016704
+797,358.669,2.78809,2.07872,0.016384,0.346112,0.006144,0.005312,0.009024,1.67904,0.016704
+798,351.981,2.84106,2.10678,0.016512,0.350368,0.007232,0.004896,0.008032,1.70336,0.016384
+799,385.216,2.59595,2.07882,0.01472,0.34736,0.00656,0.004672,0.008192,1.68051,0.0168
+800,344.057,2.90649,3.00032,0.016384,0.382976,0.006144,0.005504,0.008032,2.5649,0.016384
+801,282.795,3.53613,2.24445,0.016384,0.468992,0.00784,0.004448,0.008192,1.72198,0.016608
+802,357.386,2.7981,2.96093,0.016384,0.342016,0.006176,0.005664,0.007872,2.5664,0.016416
+803,259.948,3.84692,2.52835,0.016384,0.38624,0.006752,0.00432,0.008192,2.09043,0.016032
+804,321.23,3.11304,2.97779,0.016384,0.371936,0.006752,0.004288,0.008192,2.55386,0.016384
+805,279.114,3.58276,2.10739,0.016416,0.366592,0.007552,0.004704,0.008192,1.6873,0.01664
+806,374.064,2.67334,2.0911,0.01648,0.344352,0.007328,0.004896,0.008064,1.69347,0.016512
+807,355.216,2.81519,2.09715,0.016384,0.359712,0.00672,0.004256,0.008224,1.68538,0.01648
+808,364.737,2.7417,2.08883,0.016576,0.348416,0.006208,0.005376,0.006912,1.68755,0.017792
+809,366.828,2.72607,2.95322,0.016384,0.368384,0.0064,0.005216,0.007072,2.53338,0.016384
+810,284.504,3.51489,2.21795,0.01648,0.47312,0.006592,0.00544,0.008192,1.6903,0.017824
+811,372.804,2.68237,2.89962,0.016384,0.337952,0.007616,0.00464,0.008192,2.50845,0.016384
+812,276.906,3.61133,2.49347,0.016384,0.372736,0.007744,0.004544,0.008192,2.0679,0.015968
+813,331.929,3.0127,2.45766,0.016384,0.355328,0.006752,0.004512,0.008192,2.05005,0.016448
+814,313.389,3.19092,2.09955,0.01648,0.36464,0.006272,0.005408,0.008928,1.68141,0.016416
+815,380.669,2.62695,2.10157,0.016672,0.346144,0.006144,0.005696,0.008032,1.7025,0.016384
+816,369.242,2.70825,2.10896,0.016384,0.352256,0.007616,0.004672,0.008192,1.70307,0.016768
+817,366.565,2.72803,2.33424,0.016384,0.587776,0.007904,0.004384,0.008192,1.69302,0.016576
+818,348.033,2.87329,2.48221,0.016416,0.357472,0.006784,0.004352,0.008192,2.07258,0.016416
+819,318.978,3.13501,2.48077,0.01664,0.348544,0.006336,0.005664,0.008,2.0791,0.01648
+820,324.436,3.08228,2.06819,0.016384,0.333824,0.007264,0.004896,0.008,1.67968,0.018144
+821,288.065,3.47144,2.40518,0.018912,0.35824,0.006656,0.004128,0.00816,1.9927,0.016384
+822,324.487,3.08179,2.09318,0.01664,0.350336,0.006144,0.005568,0.007904,1.68998,0.016608
+823,374.611,2.66943,2.3488,0.016416,0.579584,0.009536,0.004832,0.00816,1.71338,0.016896
+824,337.147,2.96606,2.14326,0.016448,0.366528,0.00752,0.004768,0.00816,1.7224,0.01744
+825,365.453,2.73633,2.08291,0.016544,0.339616,0.006688,0.004288,0.00816,1.69075,0.016864
+826,399.065,2.50586,2.44714,0.01744,0.328704,0.00624,0.005696,0.008,2.0649,0.01616
+827,322.621,3.09961,2.15075,0.016736,0.403488,0.007136,0.004928,0.008032,1.69405,0.016384
+828,357.137,2.80005,3.03856,0.016416,0.572448,0.029632,0.028672,0.016064,2.35494,0.020384
+829,289.286,3.45679,2.10051,0.01648,0.34816,0.006144,0.0056,0.008032,1.6985,0.0176
+830,342.647,2.91846,2.96758,0.016576,0.36272,0.006336,0.005696,0.008,2.55226,0.016
+831,277.469,3.604,2.09507,0.01488,0.370336,0.006496,0.004096,0.008192,1.67446,0.016608
+832,373.008,2.68091,2.95107,0.016384,0.356352,0.006176,0.005696,0.008032,2.54214,0.016288
+833,278.526,3.59033,2.26528,0.015328,0.505664,0.007552,0.004736,0.008192,1.70717,0.01664
+834,367.288,2.72266,2.88998,0.01664,0.32832,0.006304,0.005696,0.007872,2.50838,0.016768
+835,290.93,3.43726,2.09898,0.016384,0.360448,0.007456,0.004768,0.008,1.68477,0.017152
+836,373.144,2.67993,2.1072,0.016384,0.344064,0.006144,0.005632,0.007808,1.7105,0.016672
+837,384.457,2.60107,2.10538,0.025984,0.344704,0.007584,0.004736,0.00816,1.69779,0.016416
+838,382.482,2.6145,2.19341,0.016416,0.462624,0.006336,0.005664,0.008192,1.67779,0.016384
+839,359.708,2.78003,2.47843,0.016384,0.354656,0.007424,0.004864,0.008032,2.07069,0.016384
+840,321.179,3.11353,2.48413,0.016416,0.354048,0.006368,0.005216,0.007072,2.07872,0.016288
+841,335.765,2.97827,2.07309,0.016512,0.334752,0.006272,0.005696,0.00784,1.68515,0.016864
+842,329.075,3.03882,2.1415,0.018432,0.362496,0.007616,0.004672,0.008192,1.72342,0.016672
+843,361.391,2.76709,2.07053,0.016384,0.339456,0.006656,0.004096,0.008192,1.67936,0.016384
+844,379.646,2.63403,2.94778,0.016256,0.342816,0.006176,0.00544,0.008032,2.55267,0.016384
+845,285.157,3.50684,2.2057,0.017792,0.465536,0.007872,0.004416,0.008224,1.68547,0.016384
+846,372.94,2.6814,2.89718,0.016384,0.33488,0.00672,0.004512,0.008192,2.5088,0.017696
+847,283.421,3.52832,2.08173,0.01664,0.346496,0.006464,0.00512,0.007168,1.68342,0.016416
+848,368.312,2.71509,2.10026,0.016384,0.360064,0.006528,0.004096,0.008224,1.68752,0.01744
+849,301.887,3.3125,2.08288,0.016352,0.334688,0.007296,0.004896,0.008032,1.69395,0.017664
+850,480.357,2.08179,2.11232,0.017216,0.356352,0.006144,0.005536,0.008032,1.68413,0.034912
+851,367.981,2.71753,3.02314,0.016512,0.388352,0.00672,0.004448,0.008192,2.58253,0.016384
+852,273.504,3.65625,2.29581,0.016384,0.501216,0.006688,0.005344,0.008256,1.74154,0.016384
+853,350.505,2.85303,2.96045,0.016384,0.335232,0.00672,0.00416,0.008192,2.57341,0.016352
+854,274.457,3.64355,2.53747,0.016416,0.421856,0.007552,0.004736,0.008128,2.06362,0.015168
+855,326.323,3.06445,2.52672,0.016384,0.388608,0.006656,0.0056,0.008032,2.08454,0.016896
+856,319.775,3.1272,2.09245,0.016384,0.331776,0.006272,0.005696,0.007904,1.70771,0.016704
+857,376.436,2.65649,2.09098,0.016352,0.340416,0.006304,0.005312,0.006944,1.69926,0.016384
+858,278.81,3.58667,2.10803,0.016256,0.365152,0.006304,0.005344,0.006944,1.69165,0.016384
+859,387.916,2.57788,2.06438,0.014336,0.331264,0.006656,0.004096,0.008192,1.68307,0.016768
+860,374.474,2.67041,2.96243,0.016384,0.353856,0.00656,0.004128,0.008192,2.55718,0.016128
+861,275.751,3.62646,2.27104,0.016384,0.492928,0.006784,0.005216,0.007072,1.72589,0.016768
+862,367.486,2.72119,2.92794,0.016576,0.343136,0.00656,0.004448,0.00816,2.53133,0.017728
+863,276.589,3.61548,2.51994,0.016576,0.364576,0.006848,0.005568,0.008064,2.10195,0.016352
+864,322.545,3.10034,2.77117,0.016352,0.343936,0.006528,0.004096,0.008192,2.1065,0.285568
+865,301.044,3.32178,2.12384,0.016416,0.365088,0.007296,0.004896,0.008,1.70554,0.016608
+866,382.947,2.61133,2.09715,0.016384,0.337504,0.00656,0.004096,0.008192,1.7079,0.016512
+867,381.059,2.62427,2.10813,0.016192,0.34608,0.00672,0.00432,0.008192,1.71008,0.016544
+868,379.4,2.63574,2.49123,0.01648,0.332544,0.007648,0.00464,0.008,2.10554,0.016384
+869,330.296,3.02759,2.75866,0.01744,0.340608,0.006496,0.004096,0.00832,2.36122,0.02048
+870,296.64,3.37109,2.4633,0.016352,0.336128,0.006144,0.00544,0.008032,2.07514,0.016064
+871,336.87,2.96851,2.06707,0.016544,0.326112,0.006144,0.005856,0.008,1.688,0.016416
+872,333.225,3.00098,2.10669,0.019584,0.359296,0.007744,0.004544,0.008192,1.6896,0.017728
+873,368.047,2.71704,2.09709,0.016384,0.335488,0.00656,0.004064,0.008192,1.70986,0.016544
+874,382.161,2.6167,2.97779,0.016384,0.345408,0.00672,0.004224,0.008128,2.58054,0.016384
+875,277.488,3.60376,2.23062,0.016128,0.460992,0.00656,0.00544,0.008096,1.71091,0.022496
+876,376.021,2.65942,2.92781,0.016384,0.333824,0.007744,0.004544,0.008192,2.54067,0.016448
+877,291.863,3.42627,2.10899,0.016384,0.329728,0.007424,0.004864,0.00784,1.72602,0.016736
+878,376.782,2.65405,2.11763,0.016416,0.33712,0.00688,0.004128,0.008192,1.72822,0.016672
+879,359.267,2.78345,2.0952,0.01648,0.335456,0.00656,0.00416,0.008128,1.70774,0.016672
+880,374.714,2.6687,2.11354,0.015456,0.340896,0.006144,0.005536,0.007776,1.72134,0.016384
+881,362.093,2.76172,2.97306,0.016384,0.35984,0.006752,0.005664,0.008032,2.56026,0.016128
+882,285.436,3.50342,2.31264,0.016448,0.553344,0.008128,0.00416,0.008192,1.70563,0.016736
+883,346.063,2.88965,2.91926,0.016384,0.34208,0.006592,0.004448,0.008192,2.52518,0.016384
+884,281.203,3.55615,2.50288,0.016448,0.353984,0.00672,0.00416,0.008192,2.09715,0.016224
+885,334.504,2.9895,2.08736,0.01632,0.350592,0.00624,0.00544,0.008,1.68426,0.016512
+886,336.427,2.97241,2.10739,0.018464,0.352224,0.006144,0.005472,0.008576,1.70013,0.016384
+887,377.233,2.65088,2.10125,0.017472,0.346912,0.006304,0.00528,0.007008,1.70157,0.016704
+888,358.952,2.78589,2.16269,0.016416,0.415712,0.007392,0.004896,0.007968,1.69392,0.016384
+889,388.246,2.57568,2.50253,0.016512,0.350304,0.00736,0.004896,0.008,2.09942,0.016032
+890,321.104,3.11426,2.12125,0.016384,0.36416,0.006528,0.004096,0.008192,1.70531,0.016576
+891,335.6,2.97974,2.50915,0.018752,0.362496,0.006144,0.00576,0.008576,2.09101,0.016416
+892,321.987,3.10571,2.11379,0.016544,0.353536,0.006752,0.004352,0.008224,1.7079,0.01648
+893,322.977,3.09619,2.31635,0.018528,0.538592,0.007456,0.004832,0.008192,1.7224,0.016352
+894,358.575,2.78882,2.12605,0.014464,0.34784,0.006528,0.004128,0.009856,1.72666,0.016576
+895,376.471,2.65625,2.95917,0.016448,0.340704,0.007488,0.0048,0.008192,2.56538,0.01616
+896,276.944,3.61084,2.22781,0.016384,0.462848,0.006144,0.005856,0.008128,1.71181,0.01664
+897,366.041,2.73193,2.89984,0.016384,0.330784,0.006688,0.004544,0.008192,2.5167,0.016544
+898,272.34,3.67188,2.11939,0.016384,0.368192,0.006624,0.004064,0.008192,1.69885,0.017088
+899,361.55,2.76587,2.13754,0.016672,0.362624,0.007296,0.004864,0.00832,1.72032,0.01744
+900,360.913,2.77075,2.10138,0.016384,0.347392,0.00672,0.004288,0.008192,1.70189,0.016512
+901,375.16,2.66553,2.10102,0.016384,0.331456,0.006464,0.005152,0.007136,1.71795,0.01648
+902,377.025,2.65234,2.99395,0.016416,0.358368,0.007168,0.004928,0.008096,2.58282,0.01616
+903,258.668,3.86597,2.25952,0.016928,0.480768,0.006688,0.005312,0.008256,1.72483,0.016736
+904,355.864,2.81006,2.97165,0.016384,0.405504,0.007456,0.004832,0.008096,2.51299,0.016384
+905,270.917,3.69116,2.50909,0.016608,0.372576,0.006944,0.004096,0.008096,2.08442,0.016352
+906,345.45,2.89478,2.91654,0.016576,0.333824,0.007296,0.004896,0.008032,2.52954,0.016384
+907,289.921,3.44922,2.12947,0.016512,0.35184,0.006432,0.004096,0.009408,1.7232,0.017984
+908,349.19,2.86377,2.18317,0.016384,0.419232,0.006656,0.004224,0.00816,1.71213,0.016384
+909,368.976,2.71021,2.08899,0.016416,0.339968,0.00736,0.004928,0.008032,1.69594,0.016352
+910,381.307,2.62256,2.08742,0.015936,0.33072,0.007392,0.004864,0.008096,1.70403,0.016384
+911,362.125,2.76147,2.94502,0.016384,0.3768,0.006176,0.005408,0.008,2.5159,0.016352
+912,292.969,3.41333,2.50531,0.016512,0.352768,0.0072,0.004928,0.007968,2.09958,0.016352
+913,308.271,3.2439,2.8127,0.01632,0.387872,0.006208,0.005376,0.008,2.36845,0.02048
+914,317.421,3.15039,2.50266,0.016384,0.366496,0.00624,0.005376,0.008,2.08378,0.016384
+915,331.956,3.01245,2.11354,0.016384,0.346112,0.007744,0.004544,0.008192,1.71418,0.016384
+916,336.759,2.96948,2.08899,0.018464,0.333824,0.00624,0.005696,0.007872,1.70045,0.016448
+917,383.952,2.60449,2.11526,0.016384,0.342016,0.007488,0.0048,0.007968,1.72019,0.016416
+918,367.157,2.72363,2.10771,0.016384,0.34592,0.006688,0.004128,0.008192,1.70979,0.016608
+919,377.025,2.65234,2.49693,0.016448,0.341696,0.006656,0.004096,0.009408,2.10336,0.015264
+920,328.89,3.04053,2.11318,0.016576,0.352736,0.006112,0.00576,0.008032,1.70653,0.01744
+921,327.104,3.05713,2.44256,0.018432,0.344064,0.006144,0.005472,0.008864,2.04186,0.017728
+922,340.765,2.93457,2.11354,0.016416,0.352224,0.007744,0.004544,0.008,1.70822,0.016384
+923,341.932,2.92456,2.76467,0.016384,0.537696,0.01936,0.005632,0.008224,2.16102,0.016352
+924,299.459,3.33936,2.11584,0.014592,0.356224,0.006272,0.005184,0.008672,1.70829,0.016608
+925,366.861,2.72583,3.00093,0.016256,0.348928,0.006112,0.005888,0.008064,2.60086,0.014816
+926,279.324,3.58008,2.26355,0.016416,0.494048,0.007392,0.004896,0.008224,1.71619,0.016384
+927,373.689,2.67603,2.95478,0.016448,0.333856,0.007232,0.004896,0.008096,2.56752,0.016736
+928,289.061,3.45947,2.13904,0.016416,0.331744,0.006752,0.004416,0.008192,1.75514,0.016384
+929,371.149,2.69434,2.12547,0.016384,0.331776,0.006144,0.005536,0.00784,1.74099,0.0168
+930,375.092,2.66602,2.10333,0.016384,0.344064,0.006144,0.005472,0.0088,1.70544,0.017024
+931,377.268,2.65063,2.21786,0.016384,0.450944,0.007584,0.004736,0.00816,1.7135,0.016544
+932,366.139,2.7312,2.92234,0.016576,0.33568,0.006176,0.005536,0.007808,2.53414,0.016416
+933,289.021,3.45996,2.52518,0.016384,0.362496,0.007232,0.004896,0.007776,2.11002,0.016384
+934,328.021,3.04858,2.12118,0.016384,0.346112,0.00624,0.005696,0.008128,1.72189,0.016736
+935,328.389,3.04517,2.53139,0.018752,0.361088,0.00768,0.004608,0.008192,2.11459,0.01648
+936,327.549,3.05298,2.12576,0.016448,0.351264,0.006368,0.004864,0.008064,1.72221,0.016544
+937,364.835,2.74097,2.3511,0.016384,0.570848,0.008736,0.006144,0.008192,1.72445,0.016352
+938,352.465,2.83716,2.13258,0.016512,0.340448,0.007264,0.004896,0.007968,1.7391,0.016384
+939,381.876,2.61865,2.10074,0.016384,0.324832,0.00656,0.00448,0.008192,1.72237,0.01792
+940,379.998,2.63159,2.49808,0.016416,0.331744,0.006176,0.005472,0.007904,2.11414,0.016224
+941,322.418,3.10156,2.10854,0.016384,0.343424,0.00672,0.004192,0.00816,1.71213,0.017536
+942,358.481,2.78955,2.30339,0.016416,0.519808,0.008544,0.006144,0.008192,1.72768,0.016608
+943,357.76,2.79517,2.08806,0.01648,0.33552,0.0064,0.00576,0.007776,1.69859,0.017536
+944,270.274,3.69995,2.94304,0.016416,0.376864,0.007936,0.004352,0.008192,2.5129,0.016384
+945,397.863,2.51343,2.52422,0.016416,0.359808,0.00672,0.004128,0.008192,2.11274,0.016224
+946,322.621,3.09961,2.98118,0.01648,0.352352,0.00624,0.005376,0.008064,2.57632,0.016352
+947,270.649,3.69482,2.54979,0.016384,0.373792,0.00672,0.004512,0.008192,2.12512,0.015072
+948,329.499,3.03491,2.78374,0.016512,0.333408,0.006752,0.004448,0.008192,2.39402,0.020416
+949,288.167,3.47021,2.09069,0.016384,0.342016,0.007488,0.0048,0.008064,1.69504,0.016896
+950,376.505,2.65601,2.11901,0.01648,0.335488,0.006432,0.005184,0.007104,1.73056,0.01776
+951,375.367,2.66406,2.12611,0.01632,0.341376,0.006752,0.00448,0.009504,1.7311,0.016576
+952,370.88,2.69629,2.2337,0.016384,0.452608,0.007648,0.00464,0.008192,1.7265,0.017728
+953,373.008,2.68091,2.77898,0.01648,0.345664,0.006752,0.004384,0.00816,2.37706,0.02048
+954,299.044,3.34399,2.50675,0.016576,0.359232,0.00672,0.004576,0.00816,2.0951,0.016384
+955,334.013,2.9939,2.11498,0.01648,0.347616,0.006592,0.004128,0.00816,1.71526,0.016736
+956,309.67,3.22925,2.47194,0.018432,0.353504,0.006752,0.004288,0.008192,2.06429,0.01648
+957,326.427,3.06348,2.11238,0.016736,0.331328,0.007136,0.004288,0.008,1.72845,0.016448
+958,370.712,2.69751,2.32653,0.017504,0.5456,0.008288,0.006144,0.008192,1.72442,0.016384
+959,364.965,2.73999,2.22598,0.016672,0.454592,0.006208,0.005824,0.008224,1.71795,0.016512
+960,347.443,2.87817,2.99354,0.016512,0.339968,0.006176,0.006112,0.00816,2.60038,0.016224
+961,284.721,3.51221,2.11203,0.016384,0.330208,0.006208,0.00544,0.006848,1.73056,0.016384
+962,377.546,2.64868,2.12362,0.016384,0.338944,0.006816,0.004448,0.008192,1.7321,0.016736
+963,371.115,2.69458,2.10179,0.016384,0.330304,0.007168,0.005088,0.008192,1.71827,0.016384
+964,377.964,2.64575,2.1191,0.015904,0.326112,0.006144,0.00544,0.008,1.74083,0.016672
+965,374.303,2.67163,3.00298,0.016352,0.385696,0.007296,0.0048,0.007968,2.56422,0.01664
+966,273.085,3.66187,2.324,0.016416,0.522208,0.008192,0.005568,0.008224,1.74685,0.016544
+967,369.175,2.70874,2.94147,0.016384,0.33024,0.007712,0.004576,0.008192,2.55795,0.016416
+968,278.204,3.59448,2.4921,0.016384,0.329728,0.007392,0.004896,0.008064,2.10957,0.016064
+969,337.926,2.95923,2.77872,0.016736,0.323808,0.007424,0.004832,0.008,2.39635,0.021568
+970,254.964,3.92212,2.23654,0.01648,0.445984,0.020864,0.006144,0.008,1.72256,0.016512
+971,384.745,2.59912,2.16486,0.017664,0.389888,0.006144,0.00544,0.008032,1.72118,0.016512
+972,392.525,2.54761,2.20445,0.015296,0.415744,0.007552,0.004736,0.008192,1.73626,0.016672
+973,370.478,2.69922,2.248,0.016384,0.449888,0.007968,0.004864,0.00832,1.744,0.016576
+974,371.789,2.6897,2.77094,0.016384,0.33792,0.006144,0.006144,0.008192,2.37555,0.020608
+975,305.512,3.27319,2.4672,0.01808,0.328,0.006176,0.005344,0.008,2.08534,0.016256
+976,340.482,2.93701,2.10739,0.016384,0.319488,0.007456,0.004832,0.008192,1.73469,0.016352
+977,281.783,3.54883,2.8959,0.018464,0.724256,0.00688,0.005856,0.008064,2.116,0.016384
+978,318.904,3.13574,2.16458,0.016448,0.384096,0.006752,0.004352,0.008192,1.72822,0.016512
+979,355.124,2.81592,2.27123,0.042656,0.471392,0.007904,0.005632,0.008096,1.71917,0.016384
+980,335.545,2.98022,2.12378,0.0176,0.338752,0.007328,0.00496,0.008,1.73075,0.016384
+981,381.307,2.62256,2.21824,0.016416,0.423392,0.006912,0.006144,0.007552,1.74144,0.016384
+982,375.952,2.65991,2.51078,0.016384,0.323584,0.006176,0.005856,0.008032,2.13443,0.01632
+983,331.66,3.01514,2.13789,0.016384,0.323616,0.007136,0.005056,0.008,1.76102,0.016672
+984,288.146,3.47046,2.50886,0.018528,0.337472,0.006944,0.00544,0.008544,2.11594,0.016
+985,340.68,2.9353,2.14474,0.016384,0.324064,0.006144,0.005504,0.008032,1.76618,0.018432
+986,283.401,3.52856,3.23331,0.016352,0.667872,0.060832,0.013152,0.008192,2.44736,0.019552
+987,311.744,3.20776,2.10534,0.016384,0.339968,0.006304,0.005568,0.00656,1.71414,0.016416
+988,376.056,2.65918,2.85286,0.017536,0.633728,0.026592,0.005632,0.008256,2.14474,0.016384
+989,284.82,3.51099,2.132,0.01616,0.348384,0.006144,0.0056,0.00784,1.73146,0.016416
+990,380.069,2.6311,2.91616,0.016448,0.32176,0.007232,0.004896,0.007936,2.54118,0.016704
+991,270.792,3.69287,2.21136,0.016192,0.42032,0.006144,0.005472,0.008064,1.7375,0.017664
+992,380.528,2.62793,2.16,0.016384,0.365728,0.006752,0.004352,0.008192,1.74208,0.016512
+993,388.615,2.57324,2.11587,0.016576,0.342016,0.00672,0.004288,0.008224,1.72147,0.016576
+994,370.277,2.70068,2.10093,0.016512,0.321536,0.006144,0.005376,0.008032,1.72675,0.016576
+995,374.68,2.66895,2.9696,0.016416,0.333792,0.006144,0.00544,0.006848,2.5857,0.015264
+996,287.539,3.47778,2.22061,0.016384,0.45072,0.006592,0.005408,0.008096,1.71674,0.016672
+997,370.478,2.69922,3.00442,0.016384,0.323584,0.007232,0.005056,0.008192,2.62758,0.016384
+998,281.589,3.55127,2.50438,0.016384,0.325024,0.006688,0.005632,0.008256,2.12624,0.01616
+999,335.133,2.98389,2.77971,0.016928,0.320864,0.00672,0.00544,0.00864,2.40061,0.020512
+1000,299.985,3.3335,2.10669,0.016416,0.323552,0.007648,0.00464,0.008192,1.72966,0.016576
+1001,385.433,2.59448,2.11616,0.016512,0.330176,0.006272,0.005856,0.008,1.73296,0.016384
+1002,359.961,2.77808,2.18262,0.016512,0.360736,0.00752,0.004768,0.009248,1.76637,0.017472
+1003,374.646,2.66919,2.33146,0.016416,0.531232,0.007808,0.00448,0.008224,1.74675,0.016544
+1004,358.261,2.79126,2.77712,0.017824,0.323584,0.006688,0.005856,0.008032,2.39462,0.020512
+1005,300.69,3.32568,2.54125,0.01744,0.331872,0.00672,0.004416,0.008192,2.14835,0.024256
+1006,296.618,3.37134,2.58982,0.033888,0.459584,0.00624,0.005376,0.008,1.74381,0.332928
+1007,330.269,3.02783,2.4801,0.018496,0.333216,0.006912,0.004224,0.008192,2.09258,0.01648
+1008,336.87,2.96851,2.12781,0.016256,0.326144,0.006112,0.006144,0.008192,1.74691,0.018048
+1009,367.091,2.72412,2.37133,0.016384,0.571392,0.02192,0.004704,0.00832,1.732,0.016608
+1010,361.327,2.76758,2.24451,0.016576,0.453472,0.007136,0.004096,0.008192,1.73798,0.017056
+1011,331.929,3.0127,2.99373,0.016192,0.344,0.006624,0.004096,0.008192,2.59834,0.016288
+1012,287.479,3.47852,2.50266,0.016384,0.323424,0.006304,0.005568,0.008064,2.12653,0.016384
+1013,330.936,3.02173,2.77523,0.016448,0.323712,0.006304,0.005696,0.008,2.39459,0.02048
+1014,305.012,3.27856,2.51936,0.016512,0.323584,0.006336,0.005248,0.00704,2.14426,0.016384
+1015,332.063,3.01147,2.10064,0.016384,0.323488,0.00624,0.006144,0.008096,1.72374,0.016544
+1016,305.991,3.26807,2.32858,0.032,0.515904,0.006528,0.004672,0.013504,1.73958,0.016384
+1017,360.246,2.77588,2.11024,0.016704,0.326112,0.007936,0.004352,0.008192,1.73056,0.016384
+1018,356.391,2.80591,2.99875,0.016576,0.33376,0.006496,0.004192,0.008096,2.61325,0.016384
+1019,282.152,3.54419,2.11827,0.0168,0.347616,0.006752,0.004416,0.00816,1.71776,0.016768
+1020,303.138,3.29883,3.01213,0.016384,0.331776,0.006144,0.00544,0.008032,2.62842,0.015936
+1021,282.133,3.54443,2.14339,0.016384,0.345408,0.006752,0.004192,0.008192,1.7449,0.017568
+1022,370.847,2.69653,2.12406,0.016096,0.331584,0.006784,0.004352,0.008128,1.74045,0.016672
+1023,388.173,2.57617,2.48995,0.016384,0.323584,0.007488,0.0048,0.008192,2.11341,0.016096
+1024,339.72,2.9436,2.11626,0.016544,0.317088,0.006528,0.00464,0.008192,1.74656,0.016704
+1025,338.568,2.95361,2.46269,0.015328,0.669696,0.009472,0.004864,0.008192,1.73789,0.017248
+1026,311.388,3.21143,2.13578,0.014336,0.34768,0.00656,0.00416,0.008192,1.73824,0.016608
+1027,344.144,2.90576,3.07696,0.016448,0.4096,0.00672,0.00432,0.008192,2.6153,0.016384
+1028,291.033,3.43604,2.23856,0.016448,0.45856,0.00656,0.005472,0.00816,1.72678,0.016576
+1029,373.586,2.67676,2.99866,0.016608,0.317568,0.007424,0.004864,0.008192,2.62899,0.015008
+1030,285.296,3.50513,2.11558,0.016416,0.32464,0.007104,0.005536,0.008128,1.73738,0.016384
+1031,334.013,2.9939,2.33168,0.032288,0.51984,0.006528,0.004544,0.008192,1.74285,0.01744
+1032,382.375,2.61523,2.39206,0.016416,0.349984,0.006368,0.005248,0.007008,1.75104,0.256
+1033,350.265,2.85498,2.11142,0.016384,0.327264,0.00656,0.004128,0.00816,1.73213,0.0168
+1034,368.511,2.71362,3.01466,0.016544,0.37664,0.006176,0.005408,0.008032,2.58547,0.016384
+1035,284.642,3.51318,2.24019,0.016544,0.450592,0.006304,0.005888,0.008192,1.73603,0.01664
+1036,341.96,2.92432,2.98512,0.016416,0.339424,0.006688,0.004064,0.008192,2.59398,0.016352
+1037,270.06,3.70288,2.35254,0.016416,0.550912,0.00768,0.004608,0.008192,1.74845,0.016288
+1038,369.275,2.70801,2.95526,0.017504,0.320416,0.007616,0.004672,0.008096,2.5816,0.01536
+1039,290.188,3.44604,2.11149,0.016384,0.323584,0.007552,0.004736,0.008192,1.73466,0.016384
+1040,378.383,2.64282,2.12032,0.01648,0.328288,0.006144,0.006144,0.008128,1.73859,0.016544
+1041,295.697,3.38184,2.2999,0.032768,0.475136,0.006144,0.005728,0.018048,1.7457,0.016384
+1042,372.161,2.68701,2.18109,0.014144,0.402272,0.007232,0.004896,0.00784,1.72694,0.01776
+1043,359.487,2.78174,3.06493,0.01744,0.38944,0.006752,0.00416,0.008192,2.62282,0.016128
+1044,284.089,3.52002,2.2761,0.01616,0.493632,0.007072,0.004128,0.008192,1.73053,0.016384
+1045,373.076,2.68042,2.11558,0.01616,0.31872,0.006944,0.004288,0.008192,1.7447,0.016576
+1046,280.663,3.56299,2.65114,0.01872,0.456704,0.006784,0.004192,0.008192,2.14016,0.016384
+1047,321.608,3.10938,2.80166,0.016384,0.357664,0.006784,0.004192,0.008192,2.38797,0.02048
+1048,304.219,3.28711,2.49037,0.01744,0.3328,0.006144,0.005696,0.008,2.10502,0.015264
+1049,337.314,2.9646,2.1768,0.016384,0.325664,0.007424,0.0048,0.008064,1.79786,0.016608
+1050,285.694,3.50024,2.15056,0.018368,0.329952,0.007904,0.004384,0.008192,1.76538,0.016384
+1051,379.752,2.6333,2.10944,0.0176,0.32592,0.006688,0.004096,0.008192,1.7305,0.016448
+1052,366.565,2.72803,2.14432,0.016288,0.357664,0.006816,0.00432,0.008192,1.73462,0.016416
+1053,395.749,2.52686,2.13206,0.01536,0.323296,0.006464,0.005568,0.008096,1.74758,0.025696
+1054,377.372,2.6499,2.11491,0.016384,0.314368,0.00672,0.004544,0.008192,1.7481,0.016608
+1055,371.688,2.69043,2.12995,0.016384,0.342016,0.00752,0.004768,0.007968,1.73485,0.016448
+1056,366.237,2.73047,2.1231,0.016384,0.323584,0.007264,0.005024,0.00816,1.74608,0.016608
+1057,376.54,2.65576,2.13402,0.016384,0.363712,0.006752,0.00432,0.008192,1.71827,0.016384
+1058,379.014,2.63843,2.14835,0.017504,0.321696,0.006752,0.004256,0.008192,1.77357,0.016384
+1059,387.989,2.57739,2.14355,0.016384,0.327392,0.006432,0.005568,0.008032,1.7631,0.01664
+1060,364.9,2.74048,2.13827,0.016544,0.328896,0.00672,0.005344,0.008064,1.75629,0.016416
+1061,380.21,2.63013,2.13891,0.016416,0.318208,0.007584,0.004704,0.008192,1.76726,0.016544
+1062,350.535,2.85278,2.12605,0.016224,0.323168,0.006656,0.004384,0.008192,1.75104,0.016384
+1063,380.705,2.62671,2.15203,0.016352,0.323904,0.00768,0.004608,0.008192,1.77482,0.01648
+1064,369.175,2.70874,2.11584,0.01664,0.3192,0.006432,0.005184,0.008416,1.74358,0.016384
+1065,383.305,2.60889,2.13341,0.01648,0.330944,0.006752,0.00432,0.008192,1.74893,0.017792
+1066,363.056,2.75439,2.18605,0.01648,0.371424,0.00736,0.004896,0.008032,1.76147,0.016384
+1067,386.197,2.58936,2.15859,0.016384,0.325632,0.007456,0.004832,0.008192,1.77338,0.02272
+1068,371.688,2.69043,2.13955,0.016384,0.318688,0.006528,0.004512,0.00784,1.76778,0.017824
+1069,360.405,2.77466,2.15392,0.016384,0.357984,0.00656,0.0056,0.008,1.74291,0.01648
+1070,364.024,2.74707,2.20864,0.01648,0.400192,0.007168,0.004896,0.008352,1.75517,0.016384
+1071,386.306,2.58862,2.1312,0.016384,0.324832,0.006752,0.004288,0.008192,1.75312,0.017632
+1072,378.663,2.64087,2.1519,0.016384,0.353792,0.00656,0.004224,0.00816,1.74397,0.018816
+1073,340.086,2.94043,2.2424,0.016512,0.438912,0.007616,0.004672,0.008192,1.74899,0.017504
+1074,389.687,2.56616,2.14093,0.016576,0.322272,0.006144,0.006144,0.008064,1.76512,0.016608
+1075,383.198,2.60962,2.12464,0.016448,0.319616,0.006752,0.00416,0.008192,1.7529,0.016576
+1076,374.714,2.6687,2.13261,0.016256,0.319744,0.006688,0.005536,0.008032,1.75965,0.016704
+1077,384.312,2.60205,2.10909,0.016416,0.316672,0.006752,0.004224,0.008192,1.74013,0.016704
+1078,361.104,2.76929,2.20774,0.024576,0.390272,0.006912,0.004224,0.008192,1.75712,0.016448
+1079,353.378,2.82983,2.14365,0.016384,0.331104,0.00672,0.004192,0.008192,1.76026,0.0168
+1080,377.755,2.64722,2.15408,0.01664,0.333856,0.006208,0.00608,0.008192,1.7665,0.016608
+1081,379.787,2.63306,2.12992,0.016384,0.32464,0.00672,0.005664,0.00704,1.75306,0.016416
+1082,363.636,2.75,2.14467,0.016512,0.319776,0.00656,0.005856,0.007968,1.77133,0.016672
+1083,360.183,2.77637,2.19754,0.016384,0.393216,0.006144,0.005312,0.006976,1.75306,0.016448
+1084,339.129,2.94873,2.22502,0.016416,0.412192,0.006496,0.005088,0.007168,1.76128,0.016384
+1085,414.953,2.40991,2.13821,0.01648,0.32768,0.006304,0.005664,0.007968,1.75773,0.016384
+1086,380.21,2.63013,2.13386,0.01744,0.325728,0.006752,0.004384,0.008192,1.75462,0.016736
+1087,365.78,2.73389,2.13808,0.016512,0.325504,0.007488,0.0048,0.007936,1.75933,0.016512
+1088,378.558,2.6416,3.04054,0.016384,0.361728,0.006592,0.004416,0.008192,2.6273,0.015936
+1089,275.121,3.63477,2.39853,0.01616,0.558624,0.007136,0.004096,0.008192,1.7879,0.016416
+1090,360.405,2.77466,2.9696,0.016384,0.323104,0.006624,0.004096,0.008224,2.59478,0.016384
+1091,283.147,3.53174,2.5264,0.016416,0.327008,0.006688,0.004192,0.008192,2.14787,0.016032
+1092,327.523,3.05322,2.87219,0.016512,0.331872,0.006752,0.00416,0.008192,2.48528,0.019424
+1093,300.558,3.32715,2.15238,0.01648,0.329312,0.006752,0.004416,0.008192,1.76947,0.01776
+1094,373.518,2.67725,2.15107,0.016448,0.346816,0.006176,0.005696,0.008064,1.75133,0.016544
+1095,349.279,2.86304,2.18346,0.016672,0.360448,0.02048,0.00592,0.008,1.75552,0.016416
+1096,384.132,2.60327,2.28122,0.016384,0.4608,0.008,0.004288,0.008192,1.76698,0.016576
+1097,360.088,2.7771,2.86042,0.016384,0.323584,0.007424,0.004864,0.008192,2.47971,0.020256
+1098,290.765,3.43921,2.52314,0.016384,0.32768,0.006144,0.005792,0.008064,2.14269,0.016384
+1099,334.695,2.98779,2.43917,0.016384,0.319488,0.006176,0.00576,0.008064,1.75562,0.32768
+1100,308.202,3.24463,2.54579,0.018688,0.354688,0.007552,0.004736,0.00816,2.13533,0.01664
+1101,327.601,3.05249,2.14051,0.016608,0.322688,0.007072,0.005248,0.007136,1.76528,0.01648
+1102,364.445,2.7439,2.72432,0.016608,0.481728,0.01008,0.005632,0.008128,2.18595,0.016192
+1103,301.998,3.31128,2.1321,0.014304,0.33072,0.00736,0.004896,0.007872,1.74883,0.018112
+1104,370.277,2.70068,2.97578,0.016384,0.3272,0.006656,0.004064,0.008192,2.59686,0.016416
+1105,270.828,3.69238,2.17043,0.016544,0.343712,0.006464,0.004096,0.008192,1.77472,0.016704
+1106,375.47,2.66333,2.13021,0.016544,0.323712,0.007264,0.005024,0.008192,1.75309,0.016384
+1107,378.838,2.63965,2.47994,0.016384,0.325088,0.006656,0.00432,0.008,2.10278,0.016704
+1108,331.956,3.01245,2.14467,0.016608,0.320896,0.006784,0.004288,0.008192,1.77152,0.016384
+1109,339.748,2.94336,2.81603,0.017408,0.535168,0.041344,0.006144,0.008224,2.19133,0.016416
+1110,274.017,3.64941,2.24051,0.016416,0.413664,0.022528,0.00528,0.007104,1.75914,0.016384
+1111,439.155,2.2771,2.99664,0.0168,0.330784,0.00656,0.004672,0.008192,2.61325,0.016384
+1112,281.203,3.55615,2.25539,0.016448,0.450688,0.006496,0.005536,0.008128,1.75088,0.017216
+1113,361.837,2.76367,2.97683,0.016384,0.321536,0.008192,0.005408,0.008,2.60086,0.016448
+1114,287.056,3.48364,2.1488,0.016384,0.327936,0.006304,0.005152,0.007136,1.76934,0.016544
+1115,380.28,2.62964,2.1464,0.016416,0.330656,0.007328,0.00464,0.008032,1.76176,0.017568
+1116,300.337,3.32959,2.4617,0.016384,0.395264,0.006144,0.005568,0.008,2.00954,0.0208
+1117,370.344,2.7002,2.17501,0.017536,0.34496,0.016352,0.004128,0.009376,1.76598,0.016672
+1118,363.475,2.75122,3.02538,0.015168,0.344032,0.006144,0.005536,0.008032,2.63037,0.016096
+1119,272.033,3.67603,2.15488,0.014752,0.341184,0.006528,0.004512,0.008192,1.76323,0.01648
+1120,245.284,4.0769,3.1359,0.0168,0.400544,0.006784,0.004352,0.00816,2.67843,0.020832
+1121,358.669,2.78809,2.2367,0.016576,0.381024,0.006144,0.00576,0.007968,1.80282,0.016416
+1122,346.59,2.88525,2.28352,0.016384,0.456704,0.006176,0.005696,0.008032,1.77414,0.016384
+1123,378.034,2.64526,2.55744,0.016384,0.329056,0.006752,0.005504,0.008032,2.17571,0.016
+1124,316.147,3.16309,2.1463,0.016384,0.337952,0.007648,0.00464,0.00816,1.75514,0.016384
+1125,281.435,3.55322,2.5447,0.018432,0.34816,0.007488,0.0048,0.008192,2.1416,0.016032
+1126,326.479,3.06299,2.17158,0.016704,0.344704,0.007168,0.004928,0.008032,1.77341,0.01664
+1127,349.518,2.86108,2.39616,0.016384,0.575488,0.00944,0.004928,0.00816,1.76538,0.016384
+1128,329.446,3.0354,2.2,0.016704,0.377248,0.00624,0.006048,0.008,1.76902,0.016736
+1129,357.012,2.80103,3.01706,0.016448,0.34832,0.006304,0.005728,0.007872,2.61715,0.015232
+1130,291.116,3.43506,2.26291,0.016128,0.448768,0.007904,0.004384,0.008192,1.7609,0.01664
+1131,368.876,2.71094,2.9655,0.016384,0.323584,0.006144,0.005472,0.008032,2.5895,0.016384
+1132,289.859,3.44995,2.17299,0.016288,0.32336,0.006528,0.005664,0.008032,1.79674,0.016384
+1133,369.109,2.70923,2.15917,0.01696,0.33344,0.006528,0.005952,0.008032,1.77187,0.016384
+1134,363.959,2.74756,2.16438,0.017504,0.323744,0.006944,0.005376,0.008128,1.78582,0.016864
+1135,375.298,2.66455,2.1425,0.014624,0.321536,0.006144,0.005696,0.007904,1.77002,0.016576
+1136,226.95,4.40625,3.19606,0.01648,0.532512,0.007232,0.004896,0.008,2.60947,0.017472
+1137,375.263,2.66479,2.15066,0.014304,0.34256,0.006176,0.005408,0.008032,1.75744,0.016736
+1138,385.542,2.59375,3.00237,0.016416,0.32336,0.007424,0.004896,0.007744,2.62618,0.016352
+1139,270.613,3.69531,2.33475,0.016448,0.515232,0.006976,0.005152,0.008288,1.76595,0.016704
+1140,371.216,2.69385,3.03104,0.016416,0.3256,0.006144,0.005376,0.006912,2.65421,0.016384
+1141,277.526,3.60327,2.1656,0.016416,0.342848,0.007584,0.004704,0.008192,1.76947,0.016384
+1142,377.06,2.6521,2.17373,0.016512,0.326112,0.006336,0.005856,0.008096,1.79443,0.016384
+1143,356.205,2.80737,2.15245,0.016384,0.333824,0.007168,0.00512,0.007904,1.76554,0.016512
+1144,370.545,2.69873,2.15264,0.014688,0.321216,0.00656,0.00464,0.008192,1.77971,0.017632
+1145,351.076,2.84839,3.02195,0.01632,0.337984,0.007264,0.005024,0.008192,2.63078,0.016384
+1146,279.743,3.57471,2.27104,0.01648,0.454784,0.007552,0.004736,0.008192,1.76266,0.01664
+1147,363.862,2.74829,3.00646,0.016416,0.327648,0.006144,0.005664,0.007968,2.62624,0.016384
+1148,277.113,3.60864,2.53888,0.016384,0.339968,0.006144,0.005344,0.008,2.14637,0.016672
+1149,333.144,3.00171,2.84486,0.016512,0.327008,0.006752,0.004192,0.008192,2.46163,0.020576
+1150,292.196,3.42236,2.16064,0.016384,0.325664,0.007648,0.004608,0.008096,1.78109,0.017152
+1151,334.805,2.98682,2.1985,0.016832,0.388928,0.006144,0.004864,0.008128,1.7569,0.016704
+1152,390.095,2.56348,2.19914,0.016544,0.352448,0.007456,0.004832,0.008064,1.79315,0.01664
+1153,369.242,2.70825,2.27942,0.016416,0.453888,0.006912,0.005184,0.008128,1.77251,0.016384
+1154,355.309,2.81445,2.99827,0.016416,0.345408,0.00672,0.005728,0.007968,2.59965,0.016384
+1155,283.657,3.52539,2.57411,0.016416,0.344672,0.007296,0.004928,0.008256,2.17648,0.016064
+1156,297.804,3.35791,2.84477,0.016448,0.336416,0.007648,0.00464,0.008192,2.45133,0.020096
+1157,289.327,3.4563,2.54432,0.01632,0.35296,0.006208,0.005248,0.00704,2.14016,0.016384
+1158,344.26,2.90479,2.85101,0.016384,0.333824,0.006144,0.00544,0.007872,2.46195,0.019392
+1159,297.48,3.36157,2.14982,0.016384,0.34336,0.00672,0.004224,0.008192,1.75434,0.016608
+1160,369.542,2.70605,2.13933,0.017568,0.334368,0.006464,0.005184,0.007104,1.75104,0.0176
+1161,368.445,2.71411,2.17907,0.016384,0.3624,0.00624,0.00544,0.008928,1.76294,0.016736
+1162,374.611,2.66943,2.29773,0.016384,0.452256,0.006496,0.005184,0.008352,1.79254,0.016512
+1163,354.325,2.82227,2.85491,0.016416,0.34608,0.006336,0.00576,0.008,2.45184,0.02048
+1164,295.122,3.38843,2.55018,0.01648,0.344448,0.006656,0.004128,0.00816,2.15424,0.016064
+1165,330.643,3.02441,2.48483,0.016448,0.32928,0.00672,0.004576,0.008128,2.05619,0.063488
+1166,291.738,3.42773,2.53984,0.01648,0.346176,0.006528,0.004544,0.008192,2.14186,0.016064
+1167,332.36,3.00879,2.12378,0.016512,0.325504,0.006208,0.005664,0.007904,1.7456,0.016384
+1168,362.992,2.75488,2.42458,0.016512,0.571584,0.009888,0.005632,0.00832,1.79603,0.016608
+1169,350.175,2.85571,2.14646,0.016608,0.323584,0.007392,0.004768,0.007552,1.76957,0.016992
+1170,370.545,2.69873,2.13171,0.016384,0.323584,0.007552,0.004736,0.007968,1.75485,0.01664
+1171,385.542,2.59375,2.54528,0.016352,0.325728,0.006624,0.004096,0.008192,2.16784,0.016448
+1172,312.409,3.20093,2.2057,0.016416,0.378656,0.006336,0.005952,0.008,1.77376,0.016576
+1173,358.324,2.79077,3.00464,0.016384,0.489664,0.008512,0.006048,0.008192,2.45555,0.020288
+1174,295.292,3.38647,2.1583,0.016416,0.327648,0.007648,0.00464,0.008128,1.77754,0.016288
+1175,368.644,2.71265,2.89766,0.016608,0.657664,0.010112,0.0056,0.008288,2.18342,0.015968
+1176,290.868,3.43799,2.16736,0.014304,0.337632,0.006368,0.004768,0.008192,1.77968,0.016416
+1177,353.134,2.83179,3.01258,0.016224,0.344256,0.006144,0.005504,0.018528,2.60541,0.016512
+1178,287.782,3.47485,2.55219,0.016608,0.343616,0.006592,0.00512,0.007168,2.15792,0.015168
+1179,335.408,2.98145,2.98166,0.016416,0.319168,0.006176,0.004768,0.00768,2.61078,0.016672
+1180,288.573,3.46533,2.14832,0.016448,0.32096,0.006688,0.00416,0.008192,1.77542,0.016448
+1181,375.401,2.66382,2.19296,0.016384,0.331712,0.006208,0.006016,0.008064,1.80797,0.016608
+1182,342.246,2.92188,2.13818,0.016416,0.323552,0.006176,0.005696,0.007968,1.76192,0.016448
+1183,381.378,2.62207,2.14016,0.01568,0.319296,0.005056,0.005888,0.008096,1.76966,0.01648
+1184,353.286,2.83057,3.06429,0.016224,0.381568,0.007776,0.004512,0.008192,2.62963,0.016384
+1185,287.519,3.47803,2.30006,0.016544,0.4704,0.006784,0.005312,0.008224,1.77642,0.016384
+1186,365.323,2.7373,3.05562,0.016416,0.321536,0.007296,0.00496,0.008192,2.68083,0.016384
+1187,244.917,4.08301,2.25485,0.016416,0.436192,0.00624,0.005728,0.008064,1.76582,0.016384
+1188,367.288,2.72266,2.17354,0.01648,0.342016,0.006688,0.00416,0.008192,1.77933,0.016672
+1189,370.143,2.70166,2.48835,0.016384,0.325632,0.006144,0.005536,0.00784,2.1104,0.016416
+1190,275.565,3.62891,2.15245,0.016384,0.323616,0.007424,0.004832,0.008064,1.77546,0.016672
+1191,435.097,2.29834,2.83197,0.016384,0.587488,0.008512,0.006112,0.008192,2.18909,0.016192
+1192,273.687,3.65381,2.25802,0.014336,0.448288,0.006368,0.00512,0.007168,1.75923,0.017504
+1193,348.536,2.86914,3.05808,0.016576,0.383616,0.007552,0.004736,0.008192,2.62128,0.016128
+1194,274.347,3.64502,2.18525,0.014336,0.362496,0.006144,0.005856,0.00848,1.77152,0.016416
+1195,359.298,2.7832,3.03104,0.016384,0.356352,0.00768,0.004608,0.008192,2.62144,0.016384
+1196,274.2,3.64697,2.30982,0.016384,0.488544,0.007072,0.004096,0.008288,1.76867,0.016768
+1197,359.614,2.78076,2.96003,0.01648,0.33568,0.00672,0.00432,0.008192,2.57222,0.016416
+1198,276.271,3.61963,2.1808,0.016384,0.352256,0.007712,0.004608,0.00816,1.77507,0.016608
+1199,369.608,2.70557,2.15245,0.017472,0.336832,0.007232,0.005056,0.00784,1.76141,0.016608
+1200,375.367,2.66406,2.14016,0.016384,0.319488,0.006176,0.00576,0.007968,1.768,0.016384
+1201,372.296,2.68604,2.13568,0.015776,0.316224,0.006144,0.006144,0.00816,1.76563,0.0176
+1202,343.509,2.91113,3.03923,0.016416,0.391136,0.014336,0.005376,0.007968,2.58762,0.016384
+1203,295.655,3.38232,2.35235,0.016384,0.534208,0.006464,0.005568,0.008256,1.76384,0.017632
+1204,353.043,2.83252,2.97619,0.01648,0.316064,0.006272,0.005856,0.008,2.60707,0.016448
+1205,283.225,3.53076,2.52061,0.016416,0.325184,0.00656,0.004096,0.008192,2.14397,0.016192
+1206,277.62,3.60205,2.53952,0.016416,0.403424,0.006144,0.0056,0.008032,2.06918,0.03072
+1207,387.219,2.58252,2.15622,0.01648,0.330784,0.006944,0.004288,0.00816,1.77274,0.016832
+1208,362.221,2.76074,2.16454,0.016704,0.3496,0.006784,0.004192,0.008192,1.76272,0.016352
+1209,347.295,2.87939,2.2999,0.016416,0.462816,0.006144,0.005568,0.008032,1.78426,0.016672
+1210,383.521,2.60742,2.3344,0.016384,0.503808,0.007552,0.004736,0.008192,1.77686,0.016864
+1211,350.925,2.84961,2.93683,0.016416,0.33776,0.006272,0.005632,0.008064,2.54221,0.02048
+1212,276.458,3.61719,2.5505,0.016448,0.330208,0.007584,0.004704,0.008192,2.168,0.01536
+1213,328.679,3.04248,2.83824,0.016384,0.33152,0.007424,0.00512,0.008192,2.4487,0.020896
+1214,287.479,3.47852,2.56406,0.016384,0.328928,0.006752,0.004288,0.008192,2.18317,0.016352
+1215,329.26,3.03711,2.15658,0.016384,0.323584,0.007424,0.0048,0.008032,1.77994,0.016416
+1216,292.99,3.41309,2.15434,0.018528,0.32784,0.00672,0.004064,0.008192,1.77152,0.017472
+1217,378.209,2.64404,2.14618,0.01648,0.332352,0.006144,0.00576,0.007808,1.76,0.017632
+1218,370.478,2.69922,2.16064,0.016384,0.325632,0.007392,0.004896,0.008192,1.78176,0.016384
+1219,375.023,2.6665,2.52317,0.016416,0.327008,0.006752,0.004128,0.008192,2.14426,0.016416
+1220,338.233,2.95654,2.4656,0.016512,0.321568,0.007264,0.004992,0.008192,2.08282,0.024256
+1221,317.519,3.14941,2.55402,0.01648,0.339264,0.00672,0.004256,0.008192,2.16269,0.016416
+1222,308.016,3.24658,2.1504,0.016384,0.333472,0.006496,0.004192,0.008096,1.76538,0.016384
+1223,275.639,3.62793,2.61098,0.019616,0.394048,0.007744,0.004512,0.008192,2.16035,0.016512
+1224,327.995,3.04883,2.15818,0.016384,0.33792,0.006144,0.006144,0.008032,1.76678,0.016768
+1225,356.112,2.80811,2.76896,0.01696,0.483328,0.045056,0.006144,0.008192,2.19312,0.01616
+1226,304.807,3.28076,2.12947,0.016384,0.323456,0.006272,0.005184,0.007104,1.75456,0.016512
+1227,350.805,2.85059,3.03574,0.016288,0.338624,0.02048,0.005504,0.008032,2.63043,0.016384
+1228,302.02,3.31104,2.1791,0.016384,0.339968,0.00736,0.004736,0.007776,1.78646,0.016416
+1229,352.132,2.83984,2.20138,0.016416,0.380928,0.006176,0.006112,0.007712,1.76723,0.0168
+1230,388.026,2.57715,2.48742,0.016416,0.321504,0.006144,0.00528,0.007008,2.11354,0.017536
+1231,337.62,2.96191,2.14672,0.016512,0.323232,0.006528,0.004352,0.008192,1.77107,0.016832
+1232,313.15,3.19336,3.42835,0.016416,0.444416,0.007232,0.004896,0.008,2.92896,0.018432
+1233,272.196,3.67383,2.19546,0.016416,0.34816,0.006176,0.005696,0.008096,1.79414,0.016768
+1234,358.669,2.78809,2.83686,0.016704,0.543008,0.009856,0.01472,0.008192,2.22822,0.01616
+1235,291.572,3.42969,2.15245,0.014368,0.351488,0.00656,0.004416,0.007968,1.75117,0.01648
+1236,364.867,2.74072,3.11728,0.01648,0.419872,0.006304,0.005568,0.008032,2.6447,0.01632
+1237,270.864,3.69189,2.2057,0.01664,0.386944,0.006368,0.005312,0.008,1.76554,0.016896
+1238,186.368,5.36572,2.63581,0.04048,0.442016,0.006848,0.004224,0.016416,2.10902,0.0168
+1239,338.121,2.95752,2.15267,0.016448,0.331392,0.006848,0.004256,0.008192,1.7689,0.01664
+1240,377.164,2.65137,2.9177,0.016384,0.632448,0.008576,0.006144,0.015712,2.22246,0.015968
+1241,266.181,3.75684,2.18317,0.016384,0.37264,0.00624,0.005344,0.008032,1.75808,0.016448
+1242,371.553,2.69141,2.2049,0.016384,0.372736,0.006144,0.005792,0.008,1.77936,0.01648
+1243,375.504,2.66309,2.5129,0.016384,0.32768,0.006144,0.005536,0.00784,2.13293,0.016384
+1244,331.177,3.01953,2.88291,0.01648,0.321216,0.006464,0.005536,0.008064,2.4993,0.025856
+1245,292.363,3.42041,2.52723,0.017536,0.324224,0.0064,0.005248,0.00704,2.1504,0.016384
+1246,317.618,3.14844,2.14672,0.016576,0.345792,0.006464,0.00512,0.007168,1.74899,0.016608
+1247,290.909,3.4375,2.56163,0.01968,0.3504,0.00672,0.004128,0.008192,2.15638,0.016128
+1248,330.536,3.02539,2.15882,0.016512,0.327968,0.007328,0.00496,0.008192,1.77709,0.016768
+1249,340.086,2.94043,2.40886,0.016416,0.571776,0.009952,0.005632,0.008224,1.78032,0.016544
+1250,355.679,2.81152,2.20627,0.016576,0.3792,0.006208,0.00528,0.007008,1.77562,0.016384
+1251,335.573,2.97998,2.2377,0.016448,0.388896,0.006464,0.00512,0.013312,1.7911,0.016352
+1252,374.748,2.66846,2.60602,0.015488,0.381824,0.007136,0.005536,0.008032,2.17162,0.016384
+1253,321.709,3.1084,2.5673,0.016416,0.372384,0.006464,0.00544,0.008032,2.13693,0.021632
+1254,313.533,3.18945,2.51795,0.016512,0.329824,0.0064,0.004608,0.00816,2.13606,0.016384
+1255,330.643,3.02441,2.14464,0.016096,0.32384,0.00656,0.005184,0.007104,1.76947,0.016384
+1256,310.727,3.21826,3.3607,0.028736,0.718848,0.009856,0.006528,0.045056,2.53344,0.01824
+1257,278.412,3.5918,2.16477,0.016416,0.351424,0.006688,0.004384,0.008192,1.76074,0.016928
+1258,328.363,3.04541,3.17261,0.026624,0.464864,0.006176,0.005248,0.00704,2.64742,0.015232
+1259,281.01,3.55859,2.16998,0.016384,0.348256,0.00768,0.004608,0.008192,1.76742,0.01744
+1260,348.952,2.86572,2.15344,0.016448,0.34416,0.006752,0.00432,0.008192,1.75718,0.016384
+1261,385.47,2.59424,2.51181,0.01664,0.326336,0.007232,0.004896,0.008032,2.13229,0.016384
+1262,328.626,3.04297,2.1873,0.016416,0.342048,0.007712,0.004544,0.008192,1.792,0.016384
+1263,280.702,3.5625,2.68288,0.018432,0.482656,0.006688,0.004224,0.016416,2.13808,0.016384
+1264,337.898,2.95947,2.16627,0.016512,0.34624,0.006176,0.00544,0.007904,1.76746,0.016544
+1265,266.251,3.75586,2.56614,0.018432,0.341536,0.006528,0.004192,0.009376,2.1697,0.016384
+1266,333.659,2.99707,2.15971,0.016384,0.33792,0.006176,0.005696,0.007872,1.76816,0.017504
+1267,317.519,3.14941,3.22765,0.016384,0.54272,0.010144,0.02672,0.036864,2.57843,0.016384
+1268,281.28,3.55518,2.17702,0.016416,0.354304,0.006112,0.005824,0.008064,1.76992,0.016384
+1269,351.951,2.84131,2.7505,0.016352,0.507072,0.009088,0.00576,0.008192,2.18768,0.016352
+1270,305.353,3.2749,2.13187,0.016544,0.324064,0.007232,0.00496,0.007968,1.75344,0.017664
+1271,365.78,2.73389,3.0208,0.016384,0.339968,0.006144,0.006144,0.008192,2.62886,0.015104
+1272,286.394,3.4917,2.2896,0.016384,0.458752,0.007456,0.004832,0.008192,1.77741,0.016576
+1273,361.582,2.76562,3.01904,0.016576,0.330336,0.006144,0.0056,0.008032,2.63622,0.016128
+1274,281.241,3.55566,2.53952,0.016384,0.345344,0.006944,0.005248,0.008224,2.14208,0.015296
+1275,146.369,6.83203,2.30195,0.016416,0.469984,0.006752,0.004512,0.012032,1.77587,0.016384
+1276,444.348,2.25049,2.53434,0.035776,0.687648,0.006624,0.005984,0.008032,1.77389,0.016384
+1277,360.881,2.771,2.28752,0.01648,0.446432,0.006368,0.005216,0.00704,1.78938,0.016608
+1278,362.606,2.75781,2.31018,0.016384,0.46448,0.007648,0.004864,0.008224,1.79216,0.016416
+1279,357.979,2.79346,3.00912,0.01648,0.32944,0.006752,0.004288,0.008192,2.62758,0.016384
+1280,270.828,3.69238,2.54922,0.016384,0.354304,0.008192,0.004192,0.01008,2.13987,0.016192
+1281,335.353,2.98193,2.96963,0.017856,0.322112,0.007744,0.004544,0.008192,2.59261,0.016576
+1282,287.883,3.47363,2.1632,0.016704,0.327936,0.007328,0.004896,0.007776,1.78182,0.016736
+1283,375.298,2.66455,2.16211,0.016384,0.331584,0.006336,0.005888,0.008096,1.77715,0.016672
+1284,369.875,2.70361,2.18522,0.016384,0.34816,0.007488,0.0048,0.008096,1.7839,0.016384
+1285,364.478,2.74365,2.14624,0.015296,0.326688,0.007488,0.004768,0.008064,1.76755,0.016384
+1286,376.886,2.65332,2.98806,0.016384,0.339968,0.007648,0.00464,0.008192,2.59482,0.016416
+1287,286.474,3.49072,2.53901,0.016384,0.333152,0.006752,0.00416,0.008192,2.15382,0.016544
+1288,331.606,3.01562,2.99021,0.016416,0.326336,0.007328,0.00496,0.008192,2.61053,0.016448
+1289,281.628,3.55078,2.5495,0.016384,0.329728,0.006176,0.00576,0.008,2.16733,0.016128
+1290,310.491,3.2207,2.88358,0.016384,0.352256,0.007424,0.004864,0.008,2.47418,0.02048
+1291,301.576,3.31592,2.15069,0.01664,0.32976,0.007296,0.004896,0.00784,1.76787,0.016384
+1292,371.755,2.68994,2.13811,0.016416,0.329696,0.007328,0.00496,0.008192,1.75488,0.01664
+1293,368.876,2.71094,2.1343,0.016224,0.334208,0.006208,0.005632,0.00784,1.74781,0.016384
+1294,378.628,2.64111,2.28762,0.016416,0.451936,0.006784,0.005216,0.008192,1.76797,0.031104
+1295,312.338,3.20166,2.99574,0.016384,0.33904,0.00512,0.006048,0.008192,2.60426,0.016704
+1296,277.695,3.60107,2.41021,0.01632,0.571552,0.007904,0.004384,0.008192,1.78534,0.016512
+1297,350.205,2.85547,2.97165,0.016416,0.3256,0.006176,0.005568,0.007872,2.59363,0.016384
+1298,283.382,3.52881,2.51728,0.016544,0.329888,0.007168,0.004896,0.007776,2.13462,0.016384
+1299,335.133,2.98389,2.14746,0.016384,0.323584,0.006144,0.006144,0.008192,1.76947,0.017536
+1300,297.631,3.35986,2.14934,0.018624,0.332608,0.007232,0.004928,0.008288,1.76112,0.016544
+1301,366.303,2.72998,2.17613,0.016416,0.341984,0.006144,0.0056,0.00784,1.78061,0.017536
+1302,366.172,2.73096,2.18522,0.01744,0.384,0.007648,0.004608,0.008192,1.74666,0.016672
+1303,375.298,2.66455,2.37222,0.01664,0.55744,0.00768,0.004608,0.008192,1.76128,0.016384
+1304,359.993,2.77783,2.82832,0.016352,0.315424,0.007456,0.004832,0.008192,2.45555,0.020512
+1305,275.38,3.63135,2.54566,0.016384,0.354304,0.00752,0.004768,0.007968,2.13837,0.016352
+1306,326.635,3.06152,2.51302,0.016384,0.380192,0.00704,0.005408,0.007968,1.76224,0.333792
+1307,318.606,3.13867,2.51712,0.0184,0.327904,0.006208,0.005376,0.006912,2.13606,0.016256
+1308,335.793,2.97803,2.14221,0.016416,0.32544,0.006304,0.005536,0.007904,1.7639,0.016704
+1309,370.813,2.69678,2.73011,0.016512,0.487392,0.009088,0.005728,0.008192,2.18707,0.016128
+1310,298.195,3.35352,2.14218,0.016416,0.344032,0.006144,0.005536,0.008,1.74534,0.016704
+1311,368.147,2.71631,2.17702,0.016384,0.382432,0.006688,0.004096,0.008192,1.74285,0.016384
+1312,372.161,2.68701,2.51638,0.016384,0.323584,0.007232,0.004832,0.007872,2.14022,0.016256
+1313,336.455,2.97217,2.13011,0.016576,0.330208,0.007392,0.004736,0.008192,1.74506,0.017952
+1314,290.455,3.44287,2.55181,0.019552,0.340896,0.006304,0.005696,0.008,2.15498,0.016384
+1315,310.68,3.21875,2.15376,0.016096,0.335456,0.00672,0.004224,0.008192,1.7656,0.017472
+1316,326.635,3.06152,2.52314,0.018432,0.473088,0.007424,0.004864,0.008192,1.75718,0.253952
+1317,331.392,3.01758,2.1407,0.016608,0.32496,0.006752,0.00448,0.008192,1.76333,0.016384
+1318,365.78,2.73389,3.04128,0.016416,0.35632,0.006144,0.006144,0.008128,2.63174,0.016384
+1319,283.499,3.52734,2.28685,0.016352,0.45696,0.007328,0.004896,0.008224,1.76237,0.03072
+1320,278.185,3.59473,3.13987,0.026944,0.442624,0.006176,0.00416,0.008096,2.63578,0.016096
+1321,311.72,3.20801,2.19104,0.018144,0.381216,0.006304,0.005728,0.007936,1.75485,0.016864
+1322,368.478,2.71387,2.1529,0.016448,0.332128,0.00736,0.004896,0.007936,1.76746,0.016672
+1323,375.987,2.65967,2.52234,0.016384,0.339968,0.007488,0.0048,0.007552,2.12986,0.016288
+1324,337.286,2.96484,2.14016,0.016384,0.32944,0.006432,0.005376,0.008,1.75795,0.016576
+1325,269.687,3.70801,3.59046,0.027264,0.509952,0.00624,0.00576,0.008064,3.01677,0.016416
+1326,292.822,3.41504,2.17629,0.017536,0.361344,0.007328,0.00496,0.008192,1.76026,0.016672
+1327,337.397,2.96387,2.4064,0.016384,0.602112,0.010016,0.005632,0.008192,1.74768,0.016384
+1328,342.762,2.91748,2.18304,0.016384,0.374016,0.006752,0.004256,0.008192,1.75667,0.016768
+1329,366.959,2.7251,2.16784,0.016384,0.356256,0.00624,0.006112,0.00816,1.75725,0.01744
+1330,375.092,2.66602,2.52928,0.016384,0.329728,0.007584,0.004704,0.008192,2.14634,0.016352
+1331,324.205,3.08447,2.12883,0.016576,0.328512,0.006144,0.005696,0.008,1.74717,0.016736
+1332,309.834,3.22754,2.47853,0.018656,0.333152,0.00672,0.004416,0.008192,2.09101,0.016384
+1333,334.477,2.98975,2.14986,0.01648,0.31904,0.006496,0.005504,0.008064,1.77638,0.017888
+1334,312.386,3.20117,3.14045,0.01632,0.447232,0.006304,0.005248,0.007104,2.64301,0.015232
+1335,295.783,3.38086,2.15712,0.016512,0.342368,0.006208,0.00416,0.00816,1.76333,0.016384
+1336,364.154,2.74609,3.09043,0.016384,0.388576,0.006656,0.004128,0.008192,2.65011,0.016384
+1337,266.875,3.74707,2.17718,0.014528,0.380064,0.006976,0.004096,0.008192,1.74659,0.016736
+1338,249.969,4.00049,3.14176,0.016512,0.483328,0.006144,0.005536,0.008032,2.60582,0.016384
+1339,407.968,2.45117,2.31408,0.016384,0.497664,0.007648,0.00464,0.008192,1.76291,0.01664
+1340,360.817,2.77148,3.0127,0.016384,0.366592,0.006144,0.005408,0.008064,2.59363,0.01648
+1341,287.883,3.47363,2.53747,0.016384,0.32768,0.007392,0.004928,0.00816,2.15773,0.0152
+1342,332.252,3.00977,2.43488,0.016512,0.318624,0.006688,0.005888,0.008032,1.76112,0.318016
+1343,318.953,3.13525,2.51494,0.018528,0.324512,0.006752,0.004512,0.008192,2.13712,0.015328
+1344,291.447,3.43115,2.22886,0.016576,0.436672,0.006304,0.005984,0.008192,1.7384,0.016736
+1345,377.72,2.64746,2.25894,0.01968,0.447264,0.00784,0.005504,0.007136,1.75514,0.016384
+1346,346.473,2.88623,2.15034,0.01632,0.32912,0.006752,0.00544,0.008064,1.7681,0.016544
+1347,368.81,2.71143,2.18208,0.016448,0.383872,0.006144,0.005696,0.008032,1.74541,0.01648
+1348,377.025,2.65234,2.516,0.016384,0.326688,0.00672,0.004512,0.00768,2.13792,0.016096
+1349,339.354,2.94678,2.13606,0.016384,0.321536,0.007264,0.004992,0.008096,1.76141,0.016384
+1350,290.661,3.44043,2.89478,0.097216,0.60416,0.007584,0.004736,0.00816,2.15773,0.0152
+1351,324.873,3.07812,2.16659,0.016448,0.339776,0.006272,0.005312,0.009024,1.77302,0.016736
+1352,336.123,2.9751,2.79552,0.016384,0.513376,0.033024,0.026144,0.00832,2.18301,0.015264
+1353,303.183,3.29834,2.14106,0.016384,0.33856,0.006176,0.005696,0.008448,1.74915,0.01664
+1354,371.688,2.69043,3.01213,0.016512,0.329824,0.006336,0.00528,0.007008,2.63114,0.016032
+1355,285.436,3.50342,2.27197,0.016416,0.450816,0.006656,0.005376,0.008192,1.76781,0.016704
+1356,366.041,2.73193,2.95949,0.016704,0.32096,0.006784,0.004096,0.008192,2.58637,0.016384
+1357,288.369,3.46777,2.13606,0.016384,0.328704,0.006752,0.004512,0.008192,1.75421,0.017312
+1358,370.746,2.69727,2.1337,0.016512,0.33616,0.006144,0.005664,0.00784,1.74368,0.017696
+1359,379.611,2.63428,2.11498,0.016384,0.323584,0.00768,0.004608,0.007776,1.73824,0.016704
+1360,294.676,3.39355,2.22208,0.017696,0.414432,0.006304,0.005984,0.008192,1.75309,0.016384
+1361,425.426,2.35059,3.0959,0.016384,0.44992,0.006752,0.004128,0.008192,2.59453,0.016
+1362,296.941,3.36768,2.27254,0.016416,0.460448,0.006464,0.005632,0.008224,1.75766,0.017696
+1363,367.354,2.72217,2.95347,0.0168,0.315648,0.007648,0.00464,0.00816,2.58397,0.016608
+1364,281.628,3.55078,2.5457,0.016384,0.327264,0.00656,0.004096,0.008192,2.16803,0.015168
+1365,324.822,3.07861,2.12787,0.017408,0.334848,0.006144,0.005568,0.007776,1.73974,0.016384
+1366,340.256,2.93896,2.1359,0.018528,0.327904,0.006656,0.004096,0.008192,1.75309,0.01744
+1367,366.303,2.72998,2.14426,0.016384,0.335872,0.007392,0.004896,0.00816,1.75504,0.016512
+1368,369.475,2.70654,2.16269,0.01648,0.325632,0.006144,0.006144,0.024288,1.76746,0.016544
+1369,385.687,2.59277,2.5192,0.016384,0.32288,0.006752,0.004224,0.008192,2.1455,0.015264
+1370,286.193,3.49414,2.21984,0.016384,0.423808,0.00672,0.004416,0.008192,1.74285,0.017472
+1371,386.853,2.58496,2.53645,0.018432,0.329728,0.007168,0.004896,0.008064,2.15197,0.016192
+1372,329.897,3.03125,2.11574,0.016544,0.323552,0.006752,0.004256,0.008192,1.73882,0.017632
+1373,352.982,2.83301,2.72653,0.0168,0.507328,0.009088,0.005856,0.008192,2.16298,0.016288
+1374,302.556,3.30518,2.1504,0.016384,0.33168,0.007424,0.004896,0.007872,1.76576,0.016384
+1375,372.906,2.68164,3.07814,0.016384,0.327584,0.00624,0.005248,0.00704,2.70042,0.015232
+1376,276.981,3.61035,2.18931,0.016384,0.376832,0.00784,0.004448,0.017696,1.74976,0.016352
+1377,384.312,2.60205,2.13814,0.016384,0.325952,0.006144,0.005376,0.006912,1.76058,0.0168
+1378,372.296,2.68604,2.53062,0.016384,0.329728,0.006144,0.005824,0.007552,2.1487,0.016288
+1379,333.605,2.99756,2.1463,0.016384,0.325472,0.006304,0.005344,0.008064,1.76835,0.016384
+1380,353.347,2.83008,2.70016,0.016704,0.481184,0.008864,0.006144,0.008224,2.16266,0.016384
+1381,317.716,3.14746,2.15414,0.016576,0.33552,0.006592,0.005152,0.007104,1.76646,0.016736
+1382,375.711,2.66162,2.13741,0.017504,0.334208,0.006656,0.005888,0.008032,1.7472,0.01792
+1383,382.875,2.61182,2.15114,0.01664,0.324032,0.006144,0.005504,0.006784,1.77562,0.016416
+1384,380.033,2.63135,2.13789,0.016384,0.325632,0.007264,0.004896,0.008032,1.75917,0.016512
+1385,355.679,2.81152,2.12378,0.017408,0.326656,0.006144,0.005536,0.006784,1.74458,0.016672
+1386,357.917,2.79395,2.16918,0.016576,0.37296,0.00768,0.004512,0.008192,1.74285,0.016416
+1387,385.107,2.59668,2.14986,0.016384,0.326784,0.006528,0.004608,0.008192,1.77078,0.016576
+1388,377.93,2.646,2.12659,0.016288,0.322432,0.007232,0.005024,0.008192,1.75104,0.016384
+1389,383.234,2.60938,2.16678,0.016384,0.326688,0.006848,0.0056,0.008032,1.78685,0.016384
+1390,368.412,2.71436,2.15581,0.016416,0.335552,0.006432,0.004096,0.008192,1.76742,0.017696
+1391,382.804,2.6123,2.1504,0.016512,0.32096,0.006592,0.004096,0.008192,1.77494,0.019104
+1392,366.434,2.729,2.13949,0.017696,0.326368,0.007712,0.004576,0.008192,1.7583,0.01664
+1393,379.822,2.63281,2.14624,0.016512,0.321728,0.007296,0.004992,0.008064,1.77088,0.016768
+1394,372.974,2.68115,2.15862,0.016416,0.335872,0.006144,0.006112,0.008,1.7697,0.016384
+1395,374.337,2.67139,2.17402,0.016416,0.345728,0.006528,0.004096,0.008192,1.77562,0.01744
+1396,378.908,2.63916,2.12992,0.016416,0.327072,0.006688,0.004128,0.008192,1.75088,0.016544
+1397,371.823,2.68945,2.12714,0.016384,0.321536,0.006144,0.005344,0.006976,1.75306,0.017696
+1398,288.532,3.46582,2.26304,0.016416,0.44848,0.006144,0.005664,0.008032,1.76192,0.016384
+1399,422.966,2.36426,2.15002,0.017696,0.328416,0.00736,0.004864,0.007456,1.76749,0.016736
+1400,360.31,2.77539,2.15715,0.016384,0.352672,0.006688,0.004128,0.008192,1.75258,0.016512
+1401,386.999,2.58398,2.16371,0.016608,0.331936,0.00672,0.005536,0.008064,1.77811,0.016736
+1402,380.457,2.62842,2.13821,0.016608,0.325888,0.006656,0.004096,0.008192,1.75869,0.01808
+1403,300.073,3.33252,2.35862,0.024576,0.528384,0.007488,0.0048,0.008064,1.7687,0.016608
+1404,385.397,2.59473,2.14608,0.016448,0.337152,0.006784,0.004288,0.008128,1.75654,0.016736
+1405,368.478,2.71387,2.14749,0.016384,0.339968,0.006144,0.005312,0.008064,1.75408,0.017536
+1406,387.146,2.58301,2.13504,0.016384,0.324672,0.006752,0.004448,0.008128,1.75725,0.017408
+1407,384.529,2.60059,2.14013,0.015424,0.319104,0.006336,0.005664,0.008,1.75562,0.029984
+1408,288.451,3.4668,2.46227,0.016448,0.643008,0.019328,0.005696,0.008032,1.75309,0.016672
+1409,399.61,2.50244,2.14016,0.017984,0.331296,0.006752,0.004416,0.008192,1.75514,0.016384
+1410,361.71,2.76465,2.16275,0.016384,0.342016,0.006144,0.005568,0.008064,1.76813,0.016448
+1411,395.367,2.5293,2.12992,0.016384,0.321632,0.006336,0.0056,0.008096,1.75517,0.016704
+1412,384.601,2.6001,2.12355,0.016384,0.315392,0.00784,0.004448,0.008192,1.75469,0.016608
+1413,290.95,3.43701,2.34502,0.016448,0.536576,0.00752,0.004768,0.008064,1.7553,0.016352
+1414,379.259,2.63672,2.13069,0.014336,0.332448,0.007392,0.004864,0.008192,1.74694,0.016512
+1415,356.05,2.80859,3.02138,0.016512,0.362944,0.007584,0.004704,0.008192,2.60499,0.016448
+1416,287.076,3.4834,2.28019,0.016512,0.45712,0.006592,0.00544,0.00816,1.77021,0.01616
+1417,368.81,2.71143,2.82614,0.017472,0.32992,0.006816,0.00544,0.008256,2.43776,0.02048
+1418,299.59,3.33789,2.14838,0.01744,0.328672,0.00736,0.004928,0.008192,1.76538,0.016416
+1419,375.023,2.6665,2.15862,0.016384,0.329728,0.00624,0.005728,0.007872,1.77626,0.016416
+1420,360.69,2.77246,2.15859,0.016384,0.329728,0.006144,0.006112,0.007488,1.77597,0.016768
+1421,353.591,2.82812,2.14822,0.016736,0.328064,0.007584,0.004704,0.008192,1.76538,0.017568
+1422,376.678,2.65479,3.02195,0.0176,0.330208,0.006496,0.005696,0.008128,2.6377,0.016128
+1423,284.8,3.51123,2.53542,0.016384,0.324448,0.006144,0.005792,0.008096,2.1584,0.01616
+1424,309.787,3.22803,2.88122,0.016384,0.354304,0.007488,0.0048,0.008192,2.46982,0.020224
+1425,294.38,3.39697,2.54762,0.016736,0.327232,0.006752,0.004512,0.008192,2.168,0.016192
+1426,331.124,3.02002,2.45008,0.016512,0.31984,0.006336,0.005536,0.008,1.75798,0.335872
+1427,322.165,3.104,2.13808,0.018816,0.3232,0.006752,0.004288,0.008192,1.75923,0.0176
+1428,373.859,2.6748,2.15507,0.016416,0.336416,0.00624,0.005632,0.00784,1.76614,0.016384
+1429,341.163,2.93115,2.17107,0.016416,0.346272,0.006176,0.005664,0.008064,1.7721,0.016384
+1430,365.127,2.73877,2.35917,0.016384,0.538816,0.006624,0.005504,0.00832,1.76589,0.017632
+1431,354.325,2.82227,2.96845,0.016672,0.324192,0.006144,0.006144,0.008096,2.59082,0.016384
+1432,285.197,3.50635,2.53149,0.016384,0.32768,0.0072,0.004864,0.00784,2.15216,0.01536
+1433,332.63,3.00635,2.13658,0.016576,0.321888,0.006272,0.005952,0.008096,1.76122,0.016576
+1434,257.772,3.87939,2.62963,0.018432,0.81104,0.007424,0.004832,0.008192,1.76333,0.016384
+1435,419.672,2.38281,2.14595,0.016384,0.332832,0.006752,0.00448,0.008192,1.76051,0.0168
+1436,368.544,2.71338,2.19757,0.016384,0.374784,0.007392,0.004896,0.007872,1.76979,0.016448
+1437,369.342,2.70752,2.27283,0.016448,0.454624,0.007456,0.004832,0.008192,1.76461,0.016672
+1438,368.345,2.71484,2.98394,0.016384,0.321536,0.007616,0.004672,0.008192,2.60915,0.016384
+1439,283.617,3.52588,2.14893,0.016288,0.328544,0.007488,0.0048,0.008192,1.7671,0.016512
+1440,367.816,2.71875,2.14778,0.016416,0.33584,0.006304,0.005984,0.008192,1.7585,0.016544
+1441,366.041,2.73193,2.14016,0.016384,0.331776,0.006144,0.005568,0.008,1.7559,0.016384
+1442,370.344,2.7002,2.13421,0.014592,0.322112,0.006144,0.005856,0.008,1.75971,0.017792
+1443,365.258,2.73779,2.99622,0.016384,0.329728,0.006144,0.005536,0.022176,2.59987,0.016384
+1444,265.732,3.76318,2.43302,0.016384,0.589408,0.00656,0.005568,0.008256,1.79046,0.016384
+1445,366.434,2.729,3.00998,0.018432,0.344064,0.007232,0.004768,0.00784,2.61181,0.01584
+1446,275.417,3.63086,2.52221,0.016416,0.341056,0.00672,0.004448,0.008192,2.12787,0.017504
+1447,334.367,2.99072,2.80026,0.016288,0.323392,0.006752,0.004384,0.008192,2.4207,0.020544
+1448,305.08,3.27783,2.15027,0.016416,0.325024,0.006688,0.005184,0.007136,1.77299,0.016832
+1449,335.243,2.98291,2.22208,0.016384,0.388224,0.006752,0.004384,0.024288,1.76566,0.016384
+1450,344.202,2.90527,2.17747,0.016736,0.371168,0.007232,0.004864,0.008416,1.75206,0.016992
+1451,365.323,2.7373,2.19702,0.014624,0.333056,0.006624,0.004416,0.008192,1.81248,0.017632
+1452,359.614,2.78076,3.02883,0.016512,0.36432,0.006592,0.004096,0.008192,2.6127,0.016416
+1453,280.586,3.56396,2.33978,0.016736,0.514144,0.006656,0.005312,0.008224,1.77232,0.016384
+1454,345.829,2.8916,2.97584,0.01648,0.341056,0.006752,0.004448,0.008192,2.58253,0.016384
+1455,283.264,3.53027,2.53552,0.01648,0.339968,0.007264,0.005024,0.008,2.14358,0.0152
+1456,329.313,3.03662,2.83446,0.016544,0.319008,0.006496,0.005312,0.008064,2.45853,0.020512
+1457,299.59,3.33789,2.12525,0.016384,0.321408,0.006304,0.00528,0.007008,1.75078,0.01808
+1458,380.104,2.63086,2.13606,0.016416,0.33584,0.007584,0.004704,0.007616,1.74746,0.016448
+1459,288.695,3.46387,2.25626,0.018432,0.45248,0.006304,0.00528,0.008032,1.74768,0.018048
+1460,461.054,2.16895,2.33677,0.031968,0.489312,0.007104,0.004096,0.008288,1.77962,0.016384
+1461,357.542,2.79688,2.82518,0.016608,0.31936,0.006912,0.004224,0.008192,2.44941,0.02048
+1462,304.038,3.28906,2.51875,0.016384,0.325504,0.006272,0.005344,0.006944,2.14221,0.016096
+1463,332.036,3.01172,2.48422,0.016384,0.339488,0.006624,0.00528,0.008032,2.08163,0.026784
+1464,304.671,3.28223,2.53373,0.016544,0.347936,0.006752,0.004256,0.008192,2.13402,0.016032
+1465,315.271,3.17188,2.20496,0.01648,0.368672,0.02048,0.005504,0.017024,1.75104,0.02576
+1466,295.826,3.38037,2.55024,0.01616,0.745184,0.009184,0.005824,0.008192,1.74931,0.016384
+1467,340.086,2.94043,2.21594,0.016384,0.39648,0.006752,0.00432,0.018432,1.75718,0.016384
+1468,393.468,2.5415,2.20157,0.016672,0.34432,0.006144,0.005568,0.008768,1.78954,0.03056
+1469,319.401,3.13086,2.33818,0.016608,0.507872,0.006272,0.005856,0.008224,1.77587,0.017472
+1470,323.794,3.08838,2.91226,0.016416,0.395232,0.007296,0.004896,0.008032,2.4599,0.02048
+1471,275.714,3.62695,2.5663,0.01632,0.364224,0.006688,0.004096,0.008192,2.1504,0.016384
+1472,334.258,2.9917,2.87597,0.016448,0.356032,0.00656,0.004512,0.008192,2.46486,0.01936
+1473,284.129,3.51953,2.54371,0.01648,0.344064,0.008192,0.005152,0.007136,2.1463,0.016384
+1474,328.153,3.04736,2.18144,0.016448,0.347072,0.00752,0.004768,0.00816,1.78128,0.016192
+1475,293.074,3.41211,2.1632,0.018784,0.367744,0.006752,0.004384,0.008192,1.7408,0.016544
+1476,371.89,2.68896,2.13606,0.016416,0.343392,0.00672,0.005504,0.008032,1.73958,0.016416
+1477,382.232,2.61621,2.1537,0.016384,0.347488,0.006784,0.004128,0.008192,1.75318,0.017536
+1478,371.688,2.69043,2.41254,0.016384,0.581408,0.006368,0.005664,0.008256,1.77808,0.016384
+1479,347.06,2.88135,2.83462,0.016544,0.34272,0.006144,0.005856,0.008032,2.43462,0.020704
+1480,297.891,3.35693,2.56614,0.016416,0.331232,0.006656,0.00528,0.008256,2.1831,0.0152
+1481,328.679,3.04248,2.44362,0.016384,0.321792,0.00624,0.005216,0.007104,1.76304,0.32384
+1482,318.309,3.1416,2.4857,0.018656,0.344064,0.007616,0.004704,0.00816,2.08611,0.016384
+1483,337.62,2.96191,2.12714,0.016416,0.32672,0.006752,0.00448,0.00816,1.74694,0.017664
+1484,373.586,2.67676,2.97466,0.01648,0.328544,0.007232,0.004928,0.00832,2.59277,0.016384
+1485,271.618,3.68164,2.15482,0.016544,0.355104,0.007424,0.004896,0.007808,1.74525,0.017792
+1486,364.802,2.74121,3.03494,0.016416,0.3768,0.006144,0.005664,0.007968,2.60576,0.016192
+1487,284.365,3.5166,2.1504,0.015136,0.342016,0.007296,0.004832,0.007904,1.75558,0.017632
+1488,375.918,2.66016,2.13194,0.016704,0.335424,0.006912,0.004224,0.008128,1.74291,0.017632
+1489,344.26,2.90479,2.53542,0.016384,0.346112,0.006144,0.005536,0.008192,2.13667,0.016384
+1490,321.053,3.11475,2.15654,0.016416,0.343136,0.006752,0.004384,0.008192,1.76128,0.016384
+1491,353.652,2.82764,2.3799,0.016512,0.58368,0.00976,0.005632,0.008192,1.73974,0.016384
+1492,342.704,2.91797,2.144,0.014784,0.331648,0.0064,0.004096,0.008192,1.7625,0.016384
+1493,394.377,2.53564,3.01382,0.016416,0.327104,0.00672,0.005504,0.00816,2.63376,0.01616
+1494,276.122,3.62158,2.36547,0.016384,0.555008,0.00752,0.0048,0.00816,1.75718,0.016416
+1495,349.846,2.8584,2.83891,0.016512,0.325632,0.006624,0.00448,0.008192,2.45693,0.020544
+1496,299.854,3.33496,2.13939,0.016384,0.329728,0.007232,0.004896,0.007808,1.75683,0.016512
+1497,367.882,2.71826,2.14432,0.01648,0.338144,0.00656,0.004096,0.008192,1.75446,0.016384
+1498,380.386,2.62891,2.14419,0.016288,0.338016,0.006144,0.00576,0.008,1.75338,0.016608
+1499,322.469,3.10107,2.4432,0.02048,0.628896,0.007328,0.004896,0.008256,1.75514,0.018208
+1500,310.963,3.21582,3.13366,0.01648,0.437056,0.007392,0.031488,0.024256,2.59258,0.024416
+1501,273.395,3.65771,2.22186,0.016384,0.400544,0.006752,0.004352,0.009792,1.7672,0.016832
+1502,334.313,2.99121,3.01648,0.016288,0.360992,0.0064,0.005216,0.007072,2.60438,0.016128
+1503,273.285,3.65918,2.3241,0.01648,0.516448,0.006144,0.005856,0.008224,1.75437,0.016576
+1504,346.649,2.88477,2.9752,0.016384,0.346112,0.006144,0.005536,0.008128,2.57651,0.016384
+1505,273.139,3.66113,2.19994,0.016608,0.387552,0.007328,0.00496,0.008192,1.75837,0.016928
+1506,362.67,2.75732,2.18422,0.016512,0.378464,0.006432,0.005184,0.007104,1.75309,0.01744
+1507,362.157,2.76123,2.48928,0.01648,0.342368,0.006656,0.004096,0.00944,2.09386,0.016384
+1508,286.875,3.48584,2.1463,0.016384,0.3584,0.007648,0.00464,0.008192,1.73446,0.016576
+1509,406.027,2.46289,3.31075,0.016384,0.378816,0.006208,0.005376,0.008032,2.87795,0.017984
+1510,258.684,3.86572,2.1504,0.016384,0.353792,0.006656,0.005216,0.007072,1.7449,0.016384
+1511,370.277,2.70068,2.97984,0.017632,0.346912,0.006304,0.005664,0.00784,2.58038,0.015104
+1512,269.084,3.71631,2.2631,0.014432,0.432096,0.006144,0.00544,0.008032,1.78058,0.016384
+1513,359.361,2.78271,3.0113,0.016512,0.354688,0.006592,0.004096,0.008192,2.60502,0.016192
+1514,286.073,3.49561,2.15898,0.015968,0.346624,0.006368,0.005248,0.007136,1.76118,0.016448
+1515,368.943,2.71045,2.1393,0.016384,0.339424,0.006688,0.004096,0.008192,1.74797,0.016544
+1516,374.132,2.67285,2.52486,0.01648,0.337952,0.007328,0.00496,0.008192,2.13382,0.016128
+1517,332.144,3.01074,2.14413,0.016608,0.330304,0.007648,0.004576,0.00816,1.75923,0.0176
+1518,298.629,3.34863,3.47811,0.028544,0.443104,0.006144,0.0056,0.008,2.97152,0.0152
+1519,270.506,3.69678,2.14301,0.016512,0.354976,0.007488,0.0048,0.00816,1.73469,0.016384
+1520,365.258,2.73779,2.35725,0.016384,0.565248,0.010112,0.005632,0.008192,1.7353,0.016384
+1521,355.556,2.8125,2.26346,0.016576,0.454528,0.006528,0.005536,0.008192,1.75571,0.016384
+1522,367.552,2.7207,2.95117,0.016416,0.320672,0.006752,0.00432,0.008192,2.57843,0.016384
+1523,275.974,3.62354,2.54874,0.016384,0.337024,0.006752,0.004384,0.008192,2.15968,0.01632
+1524,334.04,2.99365,2.82842,0.016192,0.335392,0.006528,0.004672,0.008192,2.43677,0.020672
+1525,302.332,3.30762,2.5288,0.016384,0.328896,0.006752,0.005408,0.007104,2.14794,0.01632
+1526,333.931,2.99463,2.13606,0.01776,0.317184,0.006752,0.005888,0.008032,1.76397,0.01648
+1527,335.408,2.98145,2.26262,0.044896,0.43024,0.00768,0.005632,0.008608,1.7489,0.016672
+1528,352.314,2.83838,2.14349,0.016384,0.341536,0.006624,0.004096,0.008192,1.74899,0.017664
+1529,374.406,2.6709,3.01261,0.016576,0.32336,0.006176,0.005376,0.008032,2.6367,0.016384
+1530,284.247,3.51807,2.26307,0.01632,0.46016,0.006848,0.00544,0.008224,1.74966,0.016416
+1531,282.483,3.54004,3.00358,0.016384,0.333824,0.006144,0.005696,0.008,2.61747,0.016064
+1532,255.553,3.91309,2.21834,0.016352,0.42608,0.006432,0.004096,0.008192,1.7408,0.016384
+1533,455.719,2.19434,2.14842,0.016448,0.325632,0.00624,0.005696,0.00784,1.77018,0.016384
+1534,364.218,2.74561,2.56205,0.016384,0.331776,0.006144,0.005472,0.008032,2.17888,0.01536
+1535,331.553,3.01611,2.10669,0.016384,0.323456,0.006272,0.005856,0.008032,1.72896,0.017728
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..32a02a0
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1150.63,0.907925,0.428371,0.00599981,0.260089,0.00515406,0.00503147,0.005677,0.0070835,0.00704041,0.126151,0.006145
+max_1024,1706.31,2.38977,1.00557,0.018496,0.842944,0.047232,0.022496,0.040032,0.02672,0.022336,0.160704,0.020224
+min_1024,418.45,0.58606,0.356352,0.004448,0.209248,0.004064,0.004096,0.004224,0.006112,0.006112,0.102912,0.0048
+512,946.833,1.05615,0.598112,0.006176,0.446432,0.00592,0.00432,0.006144,0.006144,0.007648,0.109088,0.00624
+513,1278.2,0.782349,0.372736,0.006176,0.220384,0.004864,0.004096,0.006144,0.00736,0.006976,0.110592,0.006144
+514,853.422,1.17175,0.405504,0.006144,0.25584,0.004256,0.00544,0.004832,0.007264,0.00704,0.108544,0.006144
+515,923.042,1.08337,0.38528,0.006912,0.233472,0.004096,0.005856,0.005472,0.006592,0.006656,0.110144,0.00608
+516,1247.83,0.801392,0.372736,0.006144,0.222304,0.004928,0.004192,0.005888,0.006432,0.007616,0.109088,0.006144
+517,1341.63,0.745361,0.373792,0.00608,0.2192,0.005664,0.004576,0.006144,0.007232,0.007008,0.111744,0.006144
+518,1255.29,0.796631,0.369952,0.005824,0.219328,0.004384,0.005472,0.004768,0.00768,0.006656,0.10976,0.00608
+519,1356.97,0.736938,0.370688,0.006176,0.218464,0.004736,0.004096,0.006144,0.006208,0.007744,0.110976,0.006144
+520,1135.1,0.880981,0.36864,0.005824,0.21696,0.004928,0.004256,0.00608,0.00624,0.007392,0.110848,0.006112
+521,1298.46,0.770142,0.375392,0.005824,0.22176,0.004448,0.005376,0.004864,0.008064,0.006272,0.11264,0.006144
+522,1196.09,0.83606,0.36992,0.006144,0.219136,0.004096,0.005792,0.004448,0.007904,0.006432,0.109824,0.006144
+523,699.274,1.43005,0.372928,0.006432,0.216992,0.005632,0.004608,0.00576,0.006528,0.007424,0.113408,0.006144
+524,1437.7,0.695557,0.372736,0.005824,0.217312,0.004256,0.005568,0.004672,0.007584,0.006752,0.114688,0.00608
+525,1214.53,0.823364,0.372896,0.005856,0.217536,0.004096,0.005696,0.00576,0.006976,0.00624,0.114592,0.006144
+526,1387.3,0.720825,0.371648,0.005056,0.220832,0.004448,0.005376,0.004864,0.007616,0.006752,0.11056,0.006144
+527,1267.92,0.788696,0.37056,0.005824,0.215872,0.005792,0.00448,0.005888,0.006368,0.00736,0.112928,0.006048
+528,1134.94,0.881104,0.372736,0.006144,0.220384,0.004896,0.004096,0.006144,0.006144,0.007616,0.111168,0.006144
+529,1159.52,0.862427,0.39488,0.006112,0.241344,0.004448,0.005376,0.004864,0.007584,0.006752,0.11232,0.00608
+530,1392.01,0.718384,0.621376,0.004992,0.468928,0.008128,0.00416,0.006112,0.006176,0.007808,0.109952,0.00512
+531,641.805,1.55811,0.371392,0.004992,0.220704,0.004384,0.00544,0.0048,0.007552,0.006784,0.110592,0.006144
+532,1274.42,0.784668,0.391168,0.006144,0.238784,0.004928,0.004096,0.006144,0.007232,0.00688,0.110816,0.006144
+533,1221.41,0.818726,0.36672,0.005824,0.218912,0.004928,0.004224,0.006144,0.006144,0.00768,0.106816,0.006048
+534,1430.42,0.699097,0.365472,0.004992,0.21888,0.004352,0.005472,0.004768,0.00752,0.006816,0.106496,0.006176
+535,1191.22,0.839478,0.362208,0.006144,0.21504,0.005152,0.004896,0.005344,0.007104,0.007264,0.104896,0.006368
+536,885.143,1.12976,0.366432,0.006144,0.216736,0.004448,0.005344,0.004896,0.008192,0.0072,0.10736,0.006112
+537,1466.79,0.681763,0.374976,0.006624,0.22048,0.004928,0.004096,0.006176,0.007232,0.007072,0.112256,0.006112
+538,1323.64,0.755493,0.371328,0.005024,0.219104,0.00528,0.004864,0.005472,0.006816,0.006208,0.110592,0.007968
+539,703.72,1.42102,0.376832,0.007936,0.22144,0.005312,0.004928,0.006048,0.00624,0.007968,0.110816,0.006144
+540,1264,0.791138,0.370592,0.006112,0.220704,0.004608,0.005216,0.005024,0.0072,0.00688,0.108768,0.00608
+541,1276.41,0.783447,0.366432,0.005824,0.215296,0.004704,0.004096,0.006144,0.006144,0.007904,0.110208,0.006112
+542,1340.53,0.745972,0.374784,0.006144,0.221184,0.005344,0.004896,0.005504,0.006816,0.006112,0.11264,0.006144
+543,1278.2,0.782349,0.547392,0.004992,0.397152,0.004096,0.005952,0.005472,0.006912,0.00624,0.110432,0.006144
+544,1048.91,0.953369,0.374688,0.006048,0.22064,0.004736,0.004096,0.006144,0.00816,0.006176,0.11264,0.006048
+545,1227.45,0.814697,0.370432,0.005792,0.216704,0.004992,0.004096,0.006144,0.006144,0.00752,0.112992,0.006048
+546,625.153,1.59961,0.391616,0.007968,0.235648,0.00464,0.005184,0.005056,0.007232,0.006976,0.112768,0.006144
+547,1174.14,0.851685,0.379648,0.004992,0.22512,0.005152,0.004896,0.005536,0.006944,0.00736,0.113472,0.006176
+548,1469.42,0.680542,0.364704,0.005824,0.217344,0.00432,0.005504,0.004736,0.007456,0.00688,0.106496,0.006144
+549,900.22,1.11084,0.38656,0.006144,0.235136,0.00448,0.005344,0.004896,0.008192,0.007968,0.108256,0.006144
+550,1496.26,0.668335,0.36992,0.005824,0.218816,0.004864,0.004096,0.006144,0.007712,0.006624,0.109728,0.006112
+551,1072.39,0.932495,0.36096,0.005792,0.21584,0.004096,0.005952,0.005472,0.006912,0.007776,0.102912,0.006208
+552,1434.17,0.697266,0.364544,0.006144,0.21712,0.005664,0.004544,0.005952,0.006336,0.007296,0.1064,0.005088
+553,1242.15,0.805054,0.617824,0.005888,0.467264,0.008,0.005568,0.004896,0.00784,0.006464,0.105792,0.006112
+554,757.747,1.3197,0.363296,0.005088,0.216256,0.004896,0.004096,0.006048,0.00624,0.007776,0.106912,0.005984
+555,1517.6,0.658936,0.36256,0.005856,0.215392,0.004096,0.005728,0.006016,0.006688,0.007232,0.105408,0.006144
+556,1233.18,0.810913,0.364736,0.005856,0.213824,0.005312,0.004896,0.00544,0.006848,0.006176,0.110368,0.006016
+557,1398.67,0.714966,0.360992,0.005824,0.215904,0.005888,0.004384,0.005984,0.006304,0.007552,0.10304,0.006112
+558,1269.88,0.787476,0.360864,0.00512,0.214112,0.00496,0.004128,0.006144,0.007584,0.006752,0.106016,0.006048
+559,1109.28,0.901489,0.37072,0.005856,0.218464,0.004928,0.004224,0.006048,0.00624,0.008,0.110784,0.006176
+560,1098.42,0.9104,0.386688,0.005824,0.238528,0.005504,0.004704,0.005536,0.006592,0.006304,0.107584,0.006112
+561,939.881,1.06396,0.851808,0.005024,0.706496,0.005824,0.0056,0.00496,0.00752,0.006816,0.103456,0.006112
+562,1031.48,0.969482,0.373216,0.005824,0.217856,0.004096,0.005824,0.005472,0.007136,0.007584,0.113248,0.006176
+563,1083.88,0.922607,0.378304,0.005888,0.2256,0.005248,0.004928,0.00576,0.006592,0.00752,0.110688,0.00608
+564,1405.87,0.711304,0.36864,0.005824,0.217792,0.004256,0.005568,0.004704,0.007744,0.00656,0.110208,0.005984
+565,1447.86,0.690674,0.37104,0.005856,0.219776,0.005696,0.004544,0.006048,0.00624,0.007712,0.109024,0.006144
+566,1112.14,0.89917,0.36864,0.006048,0.217184,0.005536,0.004704,0.0056,0.006688,0.007552,0.109216,0.006112
+567,712.596,1.40332,0.376832,0.00608,0.228768,0.004768,0.004096,0.006176,0.00816,0.006144,0.106496,0.006144
+568,1570.85,0.636597,0.374784,0.006016,0.2192,0.00416,0.005664,0.004608,0.007648,0.006656,0.114688,0.006144
+569,1164.96,0.858398,0.633056,0.005856,0.448992,0.033824,0.005088,0.006016,0.006272,0.007904,0.112928,0.006176
+570,769.852,1.29895,0.37072,0.005888,0.217344,0.005312,0.004832,0.005472,0.006912,0.006144,0.11264,0.006176
+571,1358.09,0.736328,0.371008,0.005792,0.217856,0.004096,0.005728,0.004512,0.008,0.006368,0.112512,0.006144
+572,1217.96,0.821045,0.366048,0.005632,0.216672,0.004928,0.004288,0.00608,0.006208,0.007456,0.108672,0.006112
+573,1391.54,0.718628,0.370688,0.006176,0.217056,0.005568,0.004672,0.005696,0.006592,0.007392,0.111392,0.006144
+574,1231.32,0.812134,0.58416,0.005824,0.437024,0.00544,0.0048,0.005568,0.00672,0.007232,0.105408,0.006144
+575,1001.47,0.998535,0.385184,0.006144,0.23552,0.005568,0.004672,0.005696,0.006624,0.00752,0.10816,0.00528
+576,1208.44,0.827515,0.364928,0.005824,0.21552,0.004352,0.005504,0.004736,0.00816,0.007264,0.107424,0.006144
+577,699.095,1.43042,0.377248,0.008064,0.227776,0.004192,0.005632,0.004608,0.007936,0.007456,0.10544,0.006144
+578,1250.88,0.799438,0.368672,0.005856,0.221504,0.004544,0.005248,0.004992,0.007456,0.00688,0.10624,0.005952
+579,1392.25,0.718262,0.368896,0.005056,0.22288,0.004448,0.005376,0.004864,0.007584,0.006784,0.10576,0.006144
+580,1228.92,0.813721,0.356352,0.006144,0.210944,0.00544,0.0048,0.005568,0.00672,0.007264,0.104416,0.005056
+581,1356.52,0.737183,0.364544,0.006144,0.217088,0.005504,0.004736,0.005504,0.006784,0.007488,0.105152,0.006144
+582,938.159,1.06592,0.598016,0.00544,0.446272,0.004992,0.005504,0.004768,0.007552,0.00672,0.110624,0.006144
+583,1342.29,0.744995,0.374304,0.005952,0.21872,0.004704,0.00512,0.00512,0.007552,0.006784,0.114208,0.006144
+584,822.16,1.21631,0.379232,0.005824,0.227968,0.004128,0.005696,0.006112,0.006624,0.00752,0.109216,0.006144
+585,914.184,1.09387,0.405536,0.008,0.243904,0.005728,0.004512,0.006144,0.008192,0.007488,0.115392,0.006176
+586,1274.82,0.784424,0.370816,0.005824,0.217824,0.004192,0.005632,0.004608,0.007744,0.006592,0.112384,0.006016
+587,1232.06,0.811646,0.368352,0.006176,0.214688,0.004416,0.005472,0.004768,0.007552,0.006784,0.112384,0.006112
+588,1352.93,0.739136,0.365632,0.006144,0.215072,0.005184,0.004864,0.005472,0.00688,0.00624,0.108544,0.007232
+589,1243.1,0.804443,0.368224,0.005792,0.214496,0.004928,0.004224,0.006144,0.006144,0.007808,0.112544,0.006144
+590,1166.29,0.857422,0.38848,0.005824,0.239296,0.0048,0.004096,0.006176,0.00736,0.006912,0.107968,0.006048
+591,1041.58,0.960083,0.37888,0.005824,0.219456,0.005728,0.004512,0.005792,0.006496,0.007744,0.10688,0.016448
+592,1233.55,0.810669,0.62464,0.006144,0.458752,0.02048,0.004096,0.006144,0.006144,0.008192,0.108544,0.006144
+593,790.734,1.26465,0.395264,0.006144,0.243552,0.004256,0.005568,0.004672,0.007712,0.007968,0.109248,0.006144
+594,1205.77,0.829346,0.380928,0.006144,0.228576,0.004896,0.004096,0.006144,0.007264,0.006944,0.111776,0.005088
+595,1339,0.746826,0.371968,0.005952,0.216896,0.00448,0.005376,0.004864,0.007552,0.006816,0.11392,0.006112
+596,1193.13,0.838135,0.37552,0.004992,0.221024,0.005248,0.004896,0.005472,0.006912,0.007424,0.113664,0.005888
+597,1405.87,0.711304,0.369568,0.005088,0.217056,0.004128,0.005696,0.004576,0.008192,0.007552,0.111168,0.006112
+598,824.311,1.21313,0.380544,0.005792,0.224224,0.005696,0.004512,0.005728,0.00656,0.006144,0.115872,0.006016
+599,1495.16,0.668823,0.372736,0.006112,0.218528,0.004736,0.004096,0.006144,0.007616,0.00672,0.11264,0.006144
+600,1224.7,0.816528,0.373056,0.006048,0.219328,0.00432,0.005824,0.005472,0.006816,0.006464,0.112352,0.006432
+601,583.85,1.71277,0.405504,0.008032,0.253728,0.00448,0.005344,0.004896,0.00784,0.006496,0.108544,0.006144
+602,1420.25,0.704102,0.37568,0.005024,0.224288,0.00496,0.004192,0.006144,0.006336,0.00736,0.111232,0.006144
+603,1205.24,0.829712,0.371808,0.006176,0.217056,0.005888,0.004352,0.006016,0.006272,0.007584,0.112352,0.006112
+604,1243.66,0.804077,0.368352,0.006144,0.219136,0.005664,0.004576,0.00576,0.006528,0.007328,0.1072,0.006016
+605,1089.8,0.917603,0.37936,0.005824,0.225344,0.004832,0.004096,0.006176,0.008096,0.008096,0.110752,0.006144
+606,1334.85,0.749146,0.379776,0.005024,0.226656,0.004736,0.004096,0.006144,0.007232,0.006944,0.113952,0.004992
+607,1209.69,0.82666,0.368672,0.006144,0.218816,0.004416,0.005408,0.004832,0.00752,0.006816,0.108544,0.006176
+608,625.965,1.59753,0.423936,0.008192,0.26624,0.005728,0.004512,0.005824,0.006464,0.007552,0.11328,0.006144
+609,1303.42,0.767212,0.39856,0.005856,0.242048,0.005664,0.004576,0.00576,0.007712,0.006976,0.11264,0.007328
+610,1404.9,0.711792,0.375808,0.005088,0.219136,0.005216,0.004864,0.005664,0.006784,0.007232,0.115648,0.006176
+611,1287.04,0.776978,0.366496,0.006048,0.214912,0.00432,0.005504,0.004736,0.007744,0.006592,0.110496,0.006144
+612,1307.37,0.764893,0.366592,0.006112,0.213024,0.004096,0.00576,0.00448,0.007648,0.006688,0.11264,0.006144
+613,917.666,1.08972,0.362528,0.005792,0.209568,0.005728,0.004512,0.005856,0.006432,0.00768,0.110816,0.006144
+614,1484.33,0.673706,0.373312,0.005824,0.219712,0.004384,0.005408,0.004832,0.007712,0.006624,0.11264,0.006176
+615,866.145,1.15454,0.84944,0.005792,0.69504,0.005984,0.0056,0.004832,0.007424,0.00688,0.111744,0.006144
+616,1144.13,0.874023,0.370944,0.006144,0.218304,0.004928,0.004096,0.006144,0.006144,0.007648,0.111136,0.0064
+617,1208.26,0.827637,0.37264,0.006144,0.217088,0.00544,0.0048,0.005536,0.006752,0.0072,0.113536,0.006144
+618,786.633,1.27124,0.370816,0.005024,0.219072,0.005248,0.004896,0.006272,0.0072,0.00704,0.109984,0.00608
+619,1068.06,0.936279,0.380928,0.006048,0.229216,0.004352,0.005472,0.004768,0.00768,0.006656,0.110592,0.006144
+620,1073.52,0.931519,0.601408,0.00592,0.448672,0.005568,0.004736,0.00576,0.006528,0.007456,0.110688,0.00608
+621,1305.08,0.766235,0.370784,0.005024,0.219072,0.005728,0.004512,0.005824,0.006464,0.007712,0.109024,0.007424
+622,1274.82,0.784424,0.385056,0.006144,0.226496,0.004928,0.004096,0.006176,0.006176,0.009152,0.115712,0.006176
+623,664.288,1.50537,0.397344,0.006912,0.243712,0.005408,0.004832,0.005504,0.006784,0.007744,0.110464,0.005984
+624,1408.29,0.710083,0.368992,0.005824,0.2176,0.004256,0.0056,0.00464,0.00768,0.006656,0.110592,0.006144
+625,1214.89,0.82312,0.364128,0.005952,0.211136,0.004096,0.005728,0.004512,0.008096,0.007328,0.111168,0.006112
+626,1352.26,0.739502,0.370688,0.006144,0.216512,0.004672,0.005152,0.006528,0.006752,0.006176,0.112608,0.006144
+627,1320.23,0.757446,0.369344,0.004992,0.214848,0.004096,0.005856,0.004512,0.007648,0.00656,0.114528,0.006304
+628,1111.99,0.899292,0.367072,0.005856,0.21568,0.004128,0.005536,0.004704,0.007616,0.00672,0.110592,0.00624
+629,1227.08,0.814941,0.372064,0.006144,0.219072,0.00416,0.005696,0.004544,0.008032,0.006336,0.111968,0.006112
+630,912.148,1.09631,0.86384,0.005824,0.706944,0.006144,0.004096,0.006144,0.006176,0.007808,0.11472,0.005984
+631,1085.32,0.921387,0.372736,0.006144,0.219008,0.004224,0.0056,0.00464,0.008032,0.006304,0.11264,0.006144
+632,1236.53,0.808716,0.372736,0.006144,0.21456,0.004576,0.006144,0.005568,0.00672,0.007392,0.115488,0.006144
+633,1279.4,0.781616,0.36528,0.004992,0.210976,0.005888,0.00432,0.005376,0.006912,0.006144,0.114592,0.00608
+634,1371.73,0.729004,0.372128,0.006144,0.217088,0.004096,0.006144,0.006144,0.007264,0.006784,0.112352,0.006112
+635,1294.97,0.772217,0.37472,0.006112,0.215008,0.005696,0.004544,0.006144,0.007264,0.006976,0.116832,0.006144
+636,677.585,1.47583,0.401376,0.005888,0.24192,0.005472,0.004768,0.0056,0.006688,0.007232,0.117696,0.006112
+637,1382.38,0.723389,0.37104,0.005792,0.213664,0.005728,0.00448,0.00592,0.006368,0.007872,0.115008,0.006208
+638,804.557,1.24292,0.381184,0.007936,0.225248,0.00464,0.005184,0.005056,0.007424,0.006912,0.113728,0.005056
+639,1217.42,0.821411,0.370144,0.005792,0.215616,0.004128,0.006112,0.005696,0.006592,0.007488,0.112576,0.006144
+640,1341.19,0.745605,0.370688,0.006144,0.21504,0.005312,0.004864,0.005504,0.006848,0.00624,0.114592,0.006144
+641,1198.19,0.834595,0.371104,0.005856,0.215648,0.005632,0.004608,0.005728,0.00656,0.00736,0.113472,0.00624
+642,1334.2,0.749512,0.374784,0.005856,0.220032,0.004096,0.005824,0.006144,0.006464,0.00736,0.112896,0.006112
+643,1287.85,0.776489,0.547936,0.00592,0.39504,0.004544,0.005344,0.004896,0.007552,0.006784,0.111744,0.006112
+644,980.373,1.02002,0.369728,0.006176,0.216064,0.004928,0.004256,0.00608,0.006208,0.007648,0.112224,0.006144
+645,1403.22,0.712646,0.37456,0.006016,0.218368,0.004928,0.00416,0.006144,0.00784,0.006496,0.114496,0.006112
+646,845.408,1.18286,0.876576,0.006144,0.712704,0.006144,0.005248,0.004992,0.007392,0.006944,0.120832,0.006176
+647,1116.53,0.89563,0.384576,0.005792,0.221792,0.00512,0.004864,0.005472,0.007072,0.00816,0.120192,0.006112
+648,1286.23,0.777466,0.383776,0.004992,0.222272,0.00496,0.004096,0.006144,0.008192,0.007264,0.119712,0.006144
+649,1188.8,0.841187,0.375584,0.005024,0.215008,0.005312,0.004864,0.005472,0.006848,0.007616,0.11936,0.00608
+650,1368.07,0.730957,0.373344,0.005824,0.21712,0.00496,0.00416,0.005856,0.0064,0.007328,0.115584,0.006112
+651,1278.4,0.782227,0.555808,0.004992,0.401312,0.005984,0.004256,0.006144,0.007456,0.00688,0.11264,0.006144
+652,991.407,1.00867,0.391904,0.005088,0.235488,0.005184,0.004896,0.005504,0.00688,0.006208,0.116544,0.006112
+653,924.814,1.0813,0.412032,0.005856,0.254624,0.005952,0.00432,0.006016,0.007296,0.007136,0.114688,0.006144
+654,835.066,1.19751,0.378976,0.008512,0.21664,0.004608,0.005184,0.005056,0.007392,0.006784,0.118656,0.006144
+655,1337.91,0.747437,0.374848,0.005024,0.216608,0.004448,0.005664,0.004608,0.007584,0.00672,0.11808,0.006112
+656,1238.96,0.807129,0.375008,0.005856,0.214688,0.004928,0.004128,0.006176,0.00752,0.006784,0.118816,0.006112
+657,1329.01,0.752441,0.372736,0.005888,0.213248,0.005568,0.004672,0.005568,0.00672,0.006176,0.118752,0.006144
+658,1178.54,0.848511,0.378624,0.006048,0.210656,0.00448,0.005664,0.004672,0.007872,0.006368,0.12672,0.006144
+659,962.293,1.03918,0.61024,0.005792,0.447264,0.006144,0.005312,0.00496,0.007456,0.006848,0.120352,0.006112
+660,1273.43,0.785278,0.375648,0.005088,0.213024,0.005664,0.004544,0.005824,0.006464,0.007264,0.121664,0.006112
+661,922.211,1.08435,0.865824,0.005824,0.700736,0.005984,0.005568,0.004832,0.007616,0.00672,0.122464,0.00608
+662,1087.05,0.919922,0.37696,0.00512,0.216512,0.004672,0.005248,0.004992,0.007424,0.006912,0.12,0.00608
+663,1206.3,0.828979,0.382976,0.00608,0.216544,0.004704,0.005568,0.004672,0.007744,0.006592,0.124928,0.006144
+664,1357.42,0.736694,0.383424,0.005792,0.217504,0.004448,0.005376,0.0064,0.006656,0.0072,0.123872,0.006176
+665,1247.64,0.801514,0.373056,0.005088,0.214368,0.004768,0.004128,0.006112,0.00736,0.006976,0.118176,0.00608
+666,1177.86,0.848999,0.374912,0.004992,0.2128,0.004096,0.005856,0.006336,0.006272,0.007584,0.120992,0.005984
+667,1146.54,0.872192,0.37072,0.005856,0.214304,0.00496,0.004256,0.00608,0.006208,0.008064,0.114816,0.006176
+668,1323.64,0.755493,0.384864,0.005824,0.22304,0.004832,0.004096,0.006144,0.006176,0.007776,0.120864,0.006112
+669,912.554,1.09583,0.8624,0.004992,0.703552,0.005056,0.006144,0.005632,0.006656,0.007392,0.116896,0.00608
+670,807.969,1.23767,0.377408,0.005824,0.217152,0.004896,0.004096,0.006176,0.007264,0.006944,0.11888,0.006176
+671,995.02,1.005,0.388192,0.00608,0.232864,0.004768,0.004192,0.006048,0.006144,0.007904,0.114144,0.006048
+672,1610.06,0.621094,0.373184,0.005888,0.217824,0.005344,0.004896,0.005632,0.006656,0.007296,0.113504,0.006144
+673,1186.56,0.842773,0.374752,0.006144,0.212448,0.00464,0.00576,0.006496,0.006176,0.007776,0.1192,0.006112
+674,1339.88,0.746338,0.376416,0.006176,0.220512,0.004736,0.004096,0.006144,0.007872,0.006464,0.114432,0.005984
+675,873.813,1.14441,0.375168,0.005088,0.219136,0.005376,0.004864,0.00544,0.006848,0.007712,0.114592,0.006112
+676,1538.98,0.64978,0.37408,0.006144,0.219136,0.004128,0.005856,0.005472,0.007072,0.006176,0.114048,0.006048
+677,818.463,1.2218,0.376832,0.007936,0.220448,0.00496,0.004224,0.006144,0.006144,0.007808,0.113024,0.006144
+678,1231.69,0.81189,0.379104,0.006176,0.217056,0.00512,0.004896,0.005504,0.007008,0.007488,0.119616,0.00624
+679,1277.21,0.782959,0.368576,0.005952,0.211136,0.00576,0.005664,0.00496,0.007584,0.006752,0.114496,0.006272
+680,721.889,1.38525,0.370688,0.006048,0.217184,0.005472,0.0048,0.005536,0.00672,0.006144,0.11264,0.006144
+681,1199.06,0.833984,0.369472,0.004992,0.214496,0.004576,0.005248,0.004992,0.007584,0.006752,0.114592,0.00624
+682,1088.93,0.918335,0.366304,0.00576,0.213952,0.00512,0.004896,0.006176,0.006336,0.007872,0.110048,0.006144
+683,1324.28,0.755127,0.385024,0.006176,0.2232,0.005472,0.004768,0.0056,0.00832,0.006592,0.118752,0.006144
+684,611.846,1.6344,0.395264,0.008192,0.237568,0.004096,0.005824,0.005472,0.006944,0.006336,0.11584,0.004992
+685,1272.05,0.786133,0.374912,0.005888,0.22144,0.004096,0.00576,0.004608,0.00752,0.006688,0.11264,0.006272
+686,1287.44,0.776733,0.370112,0.006144,0.21424,0.004896,0.004096,0.006144,0.00624,0.007712,0.114528,0.006112
+687,766.611,1.30444,0.413696,0.006144,0.24144,0.00432,0.005504,0.004736,0.007712,0.00768,0.130016,0.006144
+688,1306.54,0.765381,0.389728,0.005824,0.230304,0.00576,0.00448,0.005888,0.0064,0.007584,0.117376,0.006112
+689,1147.34,0.871582,0.39648,0.006144,0.241664,0.004128,0.00576,0.005472,0.007168,0.006144,0.11392,0.00608
+690,1175.32,0.85083,0.397344,0.006144,0.241664,0.005696,0.004544,0.005824,0.006464,0.007552,0.11328,0.006176
+691,901.905,1.10876,0.859872,0.006176,0.7024,0.004608,0.006144,0.005952,0.006336,0.007968,0.114176,0.006112
+692,982.608,1.0177,0.380928,0.006016,0.221312,0.00544,0.0048,0.005632,0.006656,0.007872,0.117056,0.006144
+693,1382.85,0.723145,0.372672,0.006144,0.2184,0.004832,0.004096,0.006144,0.006176,0.007616,0.11312,0.006144
+694,1228.74,0.813843,0.372672,0.004864,0.216384,0.0048,0.00416,0.00608,0.007328,0.006848,0.116192,0.006016
+695,1334.2,0.749512,0.374784,0.005984,0.219296,0.004096,0.006016,0.00544,0.006976,0.007232,0.1136,0.006144
+696,1167.12,0.856812,0.377216,0.005856,0.223936,0.005216,0.004896,0.005472,0.006912,0.006144,0.11264,0.006144
+697,1218.14,0.820923,0.375392,0.005824,0.219648,0.00448,0.005344,0.004928,0.007808,0.006496,0.114688,0.006176
+698,1184.16,0.844482,0.381856,0.004992,0.227328,0.004096,0.00576,0.005728,0.006688,0.0064,0.114688,0.006176
+699,687.941,1.45361,0.668416,0.007936,0.508608,0.0056,0.00496,0.00608,0.00624,0.008096,0.114752,0.006144
+700,1549.17,0.645508,0.371392,0.005824,0.217504,0.004704,0.00512,0.006752,0.00656,0.00752,0.111264,0.006144
+701,1275.81,0.783813,0.371264,0.005856,0.215904,0.004096,0.005728,0.004704,0.00784,0.006304,0.114688,0.006144
+702,1198.36,0.834473,0.372064,0.006144,0.217088,0.004096,0.005792,0.00576,0.00688,0.006144,0.114048,0.006112
+703,1359.89,0.735352,0.374784,0.006144,0.21824,0.00496,0.004128,0.006048,0.00624,0.00768,0.1152,0.006144
+704,1243.47,0.804199,0.372416,0.006144,0.212992,0.005504,0.004736,0.006144,0.007232,0.006976,0.116672,0.006016
+705,954.334,1.04785,0.385312,0.005824,0.224256,0.005472,0.004768,0.0056,0.006688,0.007456,0.11888,0.006368
+706,1463.12,0.683472,0.397312,0.006144,0.239456,0.004256,0.005632,0.004608,0.007424,0.006912,0.116768,0.006112
+707,882.093,1.13367,0.870688,0.005792,0.710752,0.004736,0.006144,0.005824,0.006464,0.007872,0.116992,0.006112
+708,871.768,1.14709,0.385856,0.00512,0.226464,0.004928,0.004096,0.006144,0.007296,0.007008,0.118784,0.006016
+709,1460.77,0.68457,0.377312,0.005824,0.221056,0.004928,0.004192,0.006144,0.007648,0.006688,0.114688,0.006144
+710,1372.19,0.72876,0.36704,0.005824,0.215232,0.004672,0.005248,0.006144,0.006848,0.006336,0.110592,0.006144
+711,1254.33,0.797241,0.373696,0.005056,0.21824,0.00496,0.005376,0.004896,0.007712,0.006656,0.114656,0.006144
+712,1358.77,0.735962,0.373536,0.004992,0.220256,0.004896,0.004096,0.006176,0.006112,0.007552,0.11328,0.006176
+713,1046.77,0.955322,0.3688,0.006144,0.210944,0.005696,0.004544,0.005824,0.006464,0.00768,0.116224,0.00528
+714,1238.02,0.807739,0.376864,0.005824,0.221536,0.005504,0.004736,0.005632,0.006656,0.006144,0.114688,0.006144
+715,1255.48,0.796509,0.624576,0.006048,0.46672,0.007712,0.004896,0.006176,0.006144,0.008128,0.11264,0.006112
+716,811.009,1.23303,0.380544,0.005856,0.21872,0.004896,0.004096,0.006144,0.006176,0.008032,0.120608,0.006016
+717,1143.65,0.87439,0.375808,0.006176,0.219104,0.005824,0.004416,0.006144,0.006272,0.008032,0.11376,0.00608
+718,1433.17,0.697754,0.371808,0.00592,0.215264,0.005856,0.004384,0.00576,0.006528,0.007424,0.114656,0.006016
+719,1309.25,0.763794,0.3712,0.00576,0.215488,0.004512,0.005536,0.004704,0.007712,0.006656,0.114656,0.006176
+720,1287.24,0.776855,0.364992,0.005824,0.21168,0.005664,0.004576,0.00592,0.006368,0.007488,0.112608,0.004864
+721,1066.67,0.9375,0.376864,0.006144,0.21712,0.005792,0.004448,0.005888,0.006432,0.007808,0.117056,0.006176
+722,1258.76,0.794434,0.376704,0.005792,0.217568,0.005376,0.004864,0.005472,0.006816,0.007168,0.117504,0.006144
+723,418.45,2.38977,1.00557,0.005984,0.842944,0.007136,0.006144,0.006144,0.00736,0.006976,0.116736,0.006144
+724,1031.35,0.969604,0.411552,0.005888,0.254208,0.004096,0.005856,0.005472,0.006944,0.006304,0.116672,0.006112
+725,1331.38,0.751099,0.388448,0.00592,0.229312,0.004384,0.00544,0.004832,0.007712,0.006592,0.118112,0.006144
+726,855.026,1.16956,0.427168,0.00608,0.26016,0.005824,0.004448,0.006112,0.007296,0.00672,0.1232,0.007328
+727,1706.31,0.58606,0.370784,0.005728,0.211552,0.005408,0.004672,0.004288,0.007296,0.007008,0.118784,0.006048
+728,735.566,1.3595,0.394944,0.006144,0.237568,0.005472,0.00416,0.004704,0.006144,0.006176,0.118656,0.00592
+729,744.051,1.34399,0.390848,0.005728,0.231968,0.005568,0.004672,0.005664,0.006624,0.006176,0.118304,0.006144
+730,1445.56,0.691772,0.37888,0.005888,0.219392,0.005664,0.004576,0.006144,0.00752,0.006816,0.116832,0.006048
+731,1066.94,0.937256,0.369856,0.005824,0.211424,0.005376,0.004864,0.005536,0.006688,0.007264,0.1168,0.00608
+732,1421.98,0.703247,0.373728,0.00512,0.216608,0.004544,0.00528,0.006496,0.006592,0.006208,0.116896,0.005984
+733,1528.93,0.654053,0.372736,0.005952,0.212736,0.004544,0.00528,0.00496,0.007552,0.006784,0.118784,0.006144
+734,1252.98,0.798096,0.368384,0.005824,0.210912,0.005088,0.005568,0.004672,0.008192,0.007424,0.114592,0.006112
+735,962.972,1.03845,0.38736,0.005824,0.229952,0.005472,0.004768,0.005568,0.00672,0.007168,0.115744,0.006144
+736,1213.09,0.824341,0.68832,0.006144,0.526016,0.007744,0.004864,0.006144,0.006144,0.00784,0.118144,0.00528
+737,749.36,1.33447,0.379968,0.006144,0.219136,0.005184,0.004896,0.00544,0.007008,0.00736,0.118784,0.006016
+738,1220.14,0.81958,0.380928,0.005888,0.223264,0.00432,0.005504,0.004768,0.00816,0.007872,0.115008,0.006144
+739,1346.48,0.742676,0.375872,0.006176,0.215008,0.005696,0.004544,0.005792,0.006496,0.007552,0.118528,0.00608
+740,1350.7,0.740356,0.368544,0.006144,0.214976,0.00416,0.006144,0.005536,0.006752,0.006208,0.112512,0.006112
+741,1210.94,0.825806,0.372672,0.006144,0.212992,0.005696,0.004544,0.006144,0.007552,0.006784,0.116736,0.00608
+742,1007.13,0.99292,0.604672,0.005856,0.445216,0.006144,0.004096,0.006176,0.007168,0.006816,0.117056,0.006144
+743,874,1.14417,0.378944,0.005856,0.221536,0.004128,0.005856,0.00544,0.007136,0.008064,0.114784,0.006144
+744,928.062,1.07751,0.858304,0.005856,0.702944,0.005632,0.004608,0.00576,0.006528,0.007328,0.113504,0.006144
+745,1106.58,0.903687,0.371872,0.006144,0.21504,0.004096,0.00576,0.004576,0.007968,0.006272,0.115872,0.006144
+746,1420,0.704224,0.373472,0.004992,0.218144,0.004928,0.004096,0.006144,0.00768,0.006656,0.11472,0.006112
+747,1231.88,0.811768,0.36864,0.00576,0.215168,0.004416,0.005408,0.004832,0.007488,0.006848,0.112608,0.006112
+748,1299.29,0.769653,0.367584,0.005088,0.212992,0.005536,0.004704,0.006144,0.007392,0.006944,0.11264,0.006144
+749,1241.59,0.80542,0.370368,0.005824,0.211584,0.005472,0.004768,0.005888,0.0064,0.007328,0.116992,0.006112
+750,1113.04,0.898438,0.372768,0.005888,0.220768,0.0048,0.004128,0.005952,0.006304,0.007648,0.111136,0.006144
+751,1284.82,0.77832,0.377792,0.005056,0.219136,0.005728,0.004512,0.005824,0.006464,0.007616,0.117312,0.006144
+752,1125.12,0.888794,0.637056,0.006144,0.445536,0.03984,0.008032,0.005472,0.00688,0.00624,0.11264,0.006272
+753,822.573,1.2157,0.393024,0.006144,0.229376,0.005888,0.004352,0.005952,0.006336,0.007584,0.120832,0.00656
+754,1339.88,0.746338,0.37072,0.006176,0.215008,0.004096,0.005888,0.005472,0.006976,0.00624,0.11472,0.006144
+755,1276.61,0.783325,0.37264,0.005792,0.215744,0.005216,0.004864,0.005504,0.006944,0.006144,0.11632,0.006112
+756,1242.15,0.805054,0.36864,0.006112,0.214368,0.0048,0.005216,0.006144,0.007008,0.006208,0.11264,0.006144
+757,1228.74,0.813843,0.372864,0.006144,0.212768,0.00432,0.005472,0.0048,0.006112,0.007872,0.119104,0.006272
+758,1146.54,0.872192,0.378944,0.005856,0.221536,0.005856,0.004384,0.005984,0.006336,0.007616,0.115232,0.006144
+759,1231.32,0.812134,0.38448,0.006176,0.224736,0.004608,0.005216,0.006112,0.006976,0.006432,0.118144,0.00608
+760,900.715,1.11023,0.862816,0.005024,0.701952,0.005664,0.004896,0.005472,0.006816,0.00768,0.119296,0.006016
+761,997.443,1.00256,0.3728,0.005856,0.213088,0.004928,0.00416,0.006144,0.006144,0.008064,0.118336,0.00608
+762,1316.83,0.759399,0.37936,0.005824,0.21584,0.005952,0.00432,0.005888,0.006368,0.007648,0.121376,0.006144
+763,1319.8,0.75769,0.37472,0.006144,0.214592,0.004544,0.00528,0.00496,0.00768,0.006656,0.118784,0.00608
+764,1249.54,0.800293,0.37632,0.005824,0.21552,0.005344,0.004896,0.005472,0.006816,0.006272,0.12016,0.006016
+765,1224.33,0.816772,0.36864,0.006144,0.212416,0.004672,0.005248,0.004992,0.007296,0.00704,0.114688,0.006144
+766,1144.61,0.873657,0.374784,0.006112,0.219168,0.005568,0.004672,0.005664,0.006624,0.006144,0.114688,0.006144
+767,1227.82,0.814453,0.37488,0.005824,0.217504,0.005408,0.004832,0.005472,0.006816,0.007168,0.115744,0.006112
+768,916.946,1.09058,0.85536,0.006144,0.698368,0.005696,0.004544,0.005856,0.006464,0.007552,0.114752,0.005984
+769,1028.63,0.972168,0.374784,0.005984,0.217184,0.00416,0.005664,0.004608,0.00816,0.006176,0.116704,0.006144
+770,1361.48,0.734497,0.369888,0.006144,0.210944,0.00544,0.0048,0.006144,0.007648,0.006688,0.116,0.00608
+771,978.383,1.02209,0.3864,0.006144,0.22528,0.005152,0.004864,0.005472,0.00704,0.007648,0.11872,0.00608
+772,1518.44,0.658569,0.376832,0.006144,0.218112,0.00496,0.004256,0.006112,0.006176,0.007936,0.116992,0.006144
+773,1233.36,0.810791,0.378368,0.005856,0.21984,0.005536,0.004672,0.006176,0.007168,0.007136,0.115904,0.00608
+774,1142.86,0.875,0.378944,0.005824,0.221696,0.006112,0.004128,0.006144,0.00624,0.007712,0.115072,0.006016
+775,1088.2,0.918945,0.436576,0.005856,0.279168,0.005312,0.004864,0.005504,0.006848,0.007424,0.115456,0.006144
+776,971.537,1.0293,0.850816,0.006112,0.691104,0.005792,0.004448,0.005888,0.0064,0.007392,0.117536,0.006144
+777,1002.69,0.997314,0.372448,0.005856,0.216832,0.00464,0.005152,0.005088,0.0072,0.006976,0.11472,0.005984
+778,1360.8,0.734863,0.374816,0.006144,0.21856,0.004672,0.005152,0.005088,0.007232,0.006976,0.114816,0.006176
+779,1224.88,0.816406,0.372736,0.006144,0.214048,0.004928,0.004256,0.006144,0.006144,0.008,0.116928,0.006144
+780,1370.59,0.729614,0.373664,0.006048,0.215488,0.004672,0.005408,0.004832,0.007936,0.0064,0.116736,0.006144
+781,1217.96,0.821045,0.370848,0.006144,0.212416,0.004672,0.005728,0.004608,0.007744,0.006496,0.1168,0.00624
+782,1128.53,0.886108,0.37888,0.004992,0.220448,0.0048,0.004128,0.006112,0.00624,0.007776,0.118432,0.005952
+783,1050.93,0.951538,0.378016,0.005792,0.218816,0.0048,0.004128,0.006112,0.006144,0.007872,0.118272,0.00608
+784,1311.56,0.762451,0.654688,0.005824,0.44896,0.007872,0.014656,0.03072,0.018464,0.007296,0.113504,0.007392
+785,784.149,1.27527,0.372384,0.005792,0.217344,0.004832,0.004096,0.006144,0.007264,0.00704,0.11376,0.006112
+786,1373.11,0.728271,0.373728,0.005088,0.219136,0.005504,0.004768,0.005472,0.006784,0.006336,0.114496,0.006144
+787,1238.02,0.807739,0.372384,0.005824,0.21536,0.004256,0.005568,0.004672,0.008096,0.00624,0.116256,0.006112
+788,1303.63,0.76709,0.37744,0.004992,0.219168,0.005344,0.004864,0.005536,0.006784,0.007392,0.117344,0.006016
+789,859.331,1.1637,0.428032,0.006144,0.270368,0.005472,0.004736,0.0056,0.006688,0.007616,0.115264,0.006144
+790,1143.65,0.87439,0.381504,0.005088,0.223232,0.005824,0.004416,0.00592,0.006368,0.007616,0.11728,0.00576
+791,1450.68,0.689331,0.381504,0.005824,0.22208,0.005408,0.004864,0.005536,0.00672,0.0072,0.117728,0.006144
+792,689.214,1.45093,0.398592,0.008064,0.236992,0.0048,0.004096,0.006144,0.007296,0.006848,0.118368,0.005984
+793,1324.28,0.755127,0.376416,0.005856,0.217824,0.00416,0.005664,0.005792,0.006976,0.00624,0.117824,0.00608
+794,1288.46,0.776123,0.382336,0.00592,0.218816,0.00464,0.005184,0.005056,0.007456,0.00688,0.122368,0.006016
+795,1264.98,0.790527,0.379872,0.004992,0.218112,0.004928,0.004192,0.007264,0.006976,0.00624,0.121888,0.00528
+796,1314.29,0.760864,0.37456,0.005824,0.215296,0.004544,0.005248,0.004992,0.007328,0.006944,0.118304,0.00608
+797,1177.52,0.849243,0.397344,0.006144,0.2416,0.005728,0.004576,0.004224,0.007776,0.006432,0.114688,0.006176
+798,999.512,1.00049,0.378656,0.005856,0.22,0.0056,0.00464,0.005696,0.006624,0.00768,0.116448,0.006112
+799,1107.48,0.902954,0.37888,0.005984,0.223328,0.00416,0.005664,0.004576,0.007744,0.006592,0.114688,0.006144
+800,846.368,1.18152,0.376832,0.008192,0.218592,0.00464,0.005184,0.005056,0.00752,0.006752,0.114752,0.006144
+801,1420.25,0.704102,0.37888,0.005824,0.213312,0.005664,0.004576,0.006144,0.007744,0.006592,0.12288,0.006144
+802,1286.63,0.777222,0.382912,0.00608,0.2184,0.004832,0.004096,0.006144,0.007168,0.006656,0.123392,0.006144
+803,1258.37,0.794678,0.399456,0.005856,0.237952,0.005472,0.004768,0.005824,0.006464,0.007392,0.119584,0.006144
+804,1263.61,0.791382,0.373792,0.006112,0.215072,0.00576,0.004512,0.005856,0.0064,0.00736,0.11664,0.00608
+805,1194.52,0.837158,0.38576,0.00608,0.224032,0.004096,0.005792,0.005632,0.007008,0.006336,0.12064,0.006144
+806,1004.04,0.995972,0.385664,0.005824,0.22752,0.004864,0.004096,0.006144,0.006304,0.008032,0.116736,0.006144
+807,1041.58,0.960083,0.419904,0.006144,0.260096,0.005856,0.004384,0.005984,0.006304,0.007776,0.117248,0.006112
+808,744.66,1.3429,0.393216,0.008192,0.231392,0.004128,0.005696,0.004608,0.007744,0.006528,0.11984,0.005088
+809,1233.92,0.810425,0.37072,0.006144,0.214976,0.00416,0.005664,0.004608,0.007872,0.006432,0.114688,0.006176
+810,1297.43,0.770752,0.391584,0.005024,0.230816,0.004704,0.00512,0.00512,0.007712,0.006624,0.120384,0.00608
+811,1253.56,0.797729,0.372992,0.006144,0.21712,0.004064,0.005888,0.005472,0.006976,0.00624,0.115712,0.005376
+812,1170.95,0.854004,0.385504,0.005824,0.223072,0.00496,0.00416,0.006144,0.006144,0.007904,0.12112,0.006176
+813,1109.43,0.901367,0.382368,0.005888,0.22272,0.004864,0.004096,0.006144,0.00768,0.006688,0.118144,0.006144
+814,1332.25,0.75061,0.376864,0.006144,0.221184,0.005216,0.004864,0.005472,0.006912,0.006208,0.114688,0.006176
+815,1105.98,0.904175,0.38304,0.005856,0.225568,0.005568,0.004672,0.005696,0.006592,0.007392,0.115488,0.006208
+816,887.637,1.12659,0.384864,0.007968,0.224,0.005152,0.004864,0.005472,0.008352,0.006848,0.116128,0.00608
+817,1256.83,0.795654,0.374144,0.006144,0.216992,0.004192,0.005632,0.00464,0.00816,0.007264,0.114976,0.006144
+818,1326.21,0.754028,0.380192,0.006144,0.221184,0.005696,0.004544,0.005824,0.006464,0.00752,0.116832,0.005984
+819,1275.22,0.78418,0.376128,0.005856,0.218496,0.004928,0.004192,0.006144,0.007328,0.007008,0.116064,0.006112
+820,1276.81,0.783203,0.37424,0.005824,0.217472,0.005856,0.004384,0.005984,0.006304,0.007424,0.114912,0.00608
+821,891.501,1.1217,0.617696,0.006112,0.456064,0.004768,0.006144,0.00592,0.006368,0.007328,0.118848,0.006144
+822,1341.41,0.745483,0.386048,0.006144,0.22528,0.00576,0.00448,0.005888,0.0064,0.007456,0.118912,0.005728
+823,772.32,1.2948,0.643616,0.007904,0.477632,0.0056,0.004896,0.005472,0.006944,0.008224,0.1208,0.006144
+824,918.18,1.08911,0.41552,0.006144,0.251904,0.005248,0.004864,0.005472,0.006688,0.0064,0.122656,0.006144
+825,1364.42,0.73291,0.383008,0.006048,0.221248,0.004128,0.005696,0.004608,0.007968,0.0064,0.120736,0.006176
+826,1286.43,0.777344,0.387328,0.005824,0.225888,0.005312,0.004896,0.005472,0.006816,0.0072,0.119776,0.006144
+827,1157.88,0.863647,0.38912,0.006016,0.22336,0.00528,0.004896,0.005472,0.00688,0.00624,0.124832,0.006144
+828,1125.12,0.888794,0.407552,0.006144,0.243104,0.004704,0.00512,0.005152,0.008032,0.007456,0.121696,0.006144
+829,1090.81,0.916748,0.403456,0.006144,0.233472,0.005536,0.004704,0.005664,0.006624,0.00752,0.127648,0.006144
+830,1284.62,0.778442,0.386912,0.004896,0.227328,0.005696,0.004544,0.005952,0.006336,0.007648,0.118432,0.00608
+831,616.821,1.62122,0.393888,0.007904,0.231904,0.004576,0.00544,0.0048,0.007872,0.006464,0.118784,0.006144
+832,1499.27,0.666992,0.38304,0.005856,0.221568,0.005344,0.004768,0.005472,0.006912,0.007872,0.119104,0.006144
+833,1224.15,0.816895,0.380928,0.006144,0.219168,0.004064,0.005792,0.005664,0.006944,0.006176,0.120832,0.006144
+834,1342.51,0.744873,0.382976,0.006144,0.21904,0.004192,0.005632,0.006592,0.006208,0.007584,0.12144,0.006144
+835,1233.73,0.810547,0.376864,0.006144,0.212992,0.005664,0.004576,0.005824,0.006464,0.007488,0.121536,0.006176
+836,894.616,1.1178,0.614976,0.005856,0.45312,0.0056,0.004896,0.005472,0.00688,0.006176,0.1208,0.006176
+837,1192.6,0.838501,0.386144,0.006144,0.22528,0.00544,0.0048,0.006144,0.006176,0.007328,0.118752,0.00608
+838,912.656,1.0957,0.874528,0.006176,0.71216,0.004608,0.005888,0.00544,0.006848,0.0064,0.120832,0.006176
+839,941.717,1.06189,0.3824,0.006144,0.218176,0.004928,0.004256,0.006112,0.006144,0.00768,0.122816,0.006144
+840,1449.91,0.689697,0.378496,0.006176,0.217056,0.005888,0.004352,0.006112,0.006176,0.007488,0.11952,0.005728
+841,806.776,1.2395,0.423936,0.005792,0.2584,0.005888,0.004352,0.005984,0.006304,0.007648,0.123424,0.006144
+842,1246.12,0.80249,0.387072,0.00592,0.225376,0.004224,0.005568,0.004704,0.00816,0.007456,0.11952,0.006144
+843,1318.74,0.758301,0.575328,0.006144,0.413248,0.004544,0.005312,0.006144,0.006976,0.007456,0.119392,0.006112
+844,1080.74,0.925293,0.398816,0.006144,0.227328,0.005472,0.004768,0.006016,0.006304,0.00816,0.128672,0.005952
+845,1154.29,0.866333,0.385152,0.006144,0.227328,0.005792,0.004448,0.005888,0.0064,0.007296,0.115584,0.006272
+846,691.892,1.44531,0.396864,0.008192,0.239616,0.004128,0.005824,0.005472,0.00704,0.006208,0.114272,0.006112
+847,1346.48,0.742676,0.385024,0.006144,0.221216,0.005408,0.0048,0.0056,0.006688,0.007392,0.121632,0.006144
+848,1169.28,0.855225,0.378304,0.006144,0.220896,0.004384,0.00544,0.004832,0.007648,0.006656,0.116352,0.005952
+849,1351.59,0.739868,0.380928,0.006144,0.221056,0.004224,0.0056,0.00464,0.007808,0.006528,0.118784,0.006144
+850,676.131,1.479,0.374368,0.006176,0.218208,0.004928,0.00416,0.006176,0.006112,0.007392,0.115232,0.005984
+851,1411.68,0.708374,0.38992,0.005024,0.228576,0.004768,0.004096,0.006144,0.007968,0.008096,0.119104,0.006144
+852,1277.01,0.783081,0.38736,0.005056,0.224416,0.00496,0.005152,0.005088,0.007552,0.006784,0.120832,0.00752
+853,666.07,1.50134,0.403872,0.007936,0.23824,0.004096,0.005728,0.004608,0.008,0.00752,0.1216,0.006144
+854,1328.36,0.752808,0.385952,0.006144,0.223872,0.004384,0.00544,0.0048,0.008192,0.007456,0.11952,0.006144
+855,1176.5,0.849976,0.383712,0.004992,0.22112,0.005824,0.00432,0.00608,0.007392,0.007008,0.120832,0.006144
+856,1371.96,0.728882,0.381376,0.005824,0.219552,0.004448,0.005376,0.004864,0.007456,0.00688,0.120832,0.006144
+857,679.552,1.47156,0.393312,0.005792,0.22992,0.004352,0.00544,0.0048,0.007904,0.006432,0.12256,0.006112
+858,1188.8,0.841187,0.436352,0.006112,0.276384,0.004864,0.004096,0.006144,0.007168,0.006848,0.11872,0.006016
+859,1201.35,0.832397,0.389184,0.005888,0.223552,0.004096,0.005792,0.005472,0.007008,0.006304,0.124928,0.006144
+860,680.229,1.47009,0.406784,0.008192,0.243712,0.005344,0.004896,0.0056,0.006688,0.007296,0.11904,0.006016
+861,1386.36,0.721313,0.387072,0.006144,0.223232,0.005472,0.004768,0.0056,0.006688,0.00736,0.121664,0.006144
+862,1214.35,0.823486,0.379776,0.005024,0.221152,0.004128,0.005696,0.00464,0.00736,0.00688,0.118816,0.00608
+863,1267.13,0.789185,0.390944,0.006048,0.22128,0.004096,0.005824,0.005472,0.007136,0.007488,0.127584,0.006016
+864,1187.59,0.842041,0.379968,0.006144,0.217088,0.005792,0.004448,0.005792,0.006496,0.00736,0.120736,0.006112
+865,972.113,1.02869,0.624832,0.004992,0.458272,0.005632,0.004992,0.00608,0.006208,0.007872,0.124736,0.006048
+866,1156.08,0.86499,0.381824,0.005024,0.221024,0.004224,0.0056,0.00464,0.00784,0.006528,0.120896,0.006048
+867,899.824,1.11133,0.867648,0.006144,0.699904,0.005632,0.00512,0.005952,0.006336,0.007904,0.124544,0.006112
+868,1027.34,0.973389,0.384512,0.006144,0.221184,0.00576,0.00448,0.005888,0.0064,0.007424,0.121152,0.00608
+869,1190.35,0.840088,0.3832,0.005792,0.219712,0.004096,0.00576,0.004608,0.008064,0.006272,0.122752,0.006144
+870,1295.59,0.771851,0.373152,0.005824,0.213824,0.005344,0.004896,0.005344,0.006432,0.006656,0.118752,0.00608
+871,1326,0.75415,0.37744,0.005792,0.219648,0.004544,0.00528,0.004992,0.007552,0.006752,0.116736,0.006144
+872,1257.6,0.795166,0.373984,0.006144,0.216128,0.00496,0.004192,0.006144,0.006144,0.007648,0.11664,0.005984
+873,1083.74,0.922729,0.38688,0.005824,0.225504,0.004832,0.004096,0.006144,0.0072,0.007008,0.12016,0.006112
+874,1031.61,0.96936,0.403456,0.006144,0.239232,0.00448,0.005344,0.004896,0.00752,0.006816,0.122912,0.006112
+875,1250.5,0.799683,0.65744,0.006144,0.447712,0.047232,0.012128,0.004928,0.007392,0.006944,0.118784,0.006176
+876,844.623,1.18396,0.385024,0.006176,0.224352,0.00496,0.004128,0.006144,0.006208,0.00768,0.119232,0.006144
+877,1302.59,0.7677,0.379936,0.005792,0.21744,0.005184,0.004864,0.005472,0.006912,0.00624,0.12192,0.006112
+878,1199.59,0.833618,0.376672,0.006144,0.216544,0.00464,0.005152,0.005088,0.007392,0.006944,0.118752,0.006016
+879,1343.39,0.744385,0.387104,0.005792,0.220128,0.00576,0.00448,0.005728,0.00656,0.007648,0.124928,0.00608
+880,1265.37,0.790283,0.388096,0.006176,0.226656,0.004736,0.004224,0.006016,0.006304,0.008032,0.119968,0.005984
+881,1077.33,0.928223,0.384288,0.006144,0.219136,0.005888,0.004352,0.005984,0.006304,0.007584,0.122784,0.006112
+882,1189.49,0.840698,0.386048,0.006112,0.222464,0.004896,0.004096,0.006144,0.007648,0.006688,0.122016,0.005984
+883,613.817,1.62915,0.399552,0.008192,0.229024,0.004448,0.005376,0.004864,0.007584,0.006752,0.128032,0.00528
+884,1282,0.780029,0.388736,0.005984,0.2248,0.004736,0.004096,0.006144,0.006144,0.008,0.122816,0.006016
+885,1164.96,0.858398,0.387488,0.005824,0.219712,0.004256,0.005632,0.006112,0.006688,0.007232,0.125888,0.006144
+886,1313.87,0.761108,0.38144,0.005056,0.219072,0.00416,0.005632,0.004704,0.007776,0.006464,0.122592,0.005984
+887,1272.44,0.785889,0.38544,0.005824,0.217824,0.005472,0.004768,0.006048,0.007488,0.006944,0.124928,0.006144
+888,896.28,1.11572,0.622592,0.005632,0.459264,0.005696,0.004544,0.005792,0.006528,0.007232,0.12176,0.006144
+889,1284.21,0.778687,0.375456,0.005824,0.216064,0.005856,0.004352,0.006016,0.006272,0.00768,0.117248,0.006144
+890,870.008,1.14941,0.858016,0.006144,0.69632,0.006144,0.005312,0.004928,0.007616,0.00672,0.11872,0.006112
+891,711.791,1.40491,0.405536,0.005856,0.241024,0.004928,0.004224,0.006144,0.006144,0.008192,0.12288,0.006144
+892,1434.68,0.697021,0.38448,0.005824,0.221696,0.004224,0.005632,0.004608,0.007936,0.0064,0.122048,0.006112
+893,1374.73,0.727417,0.380288,0.006144,0.217088,0.005216,0.004896,0.005504,0.006912,0.007296,0.12112,0.006112
+894,1237.09,0.80835,0.384896,0.006144,0.220576,0.004704,0.00512,0.00512,0.007232,0.007072,0.122912,0.006016
+895,1258.18,0.7948,0.385024,0.006144,0.217088,0.005472,0.004768,0.005888,0.0064,0.007232,0.125888,0.006144
+896,979.553,1.02087,0.383072,0.004992,0.2232,0.0056,0.00464,0.005696,0.006592,0.007264,0.118976,0.006112
+897,1234.66,0.809937,0.386816,0.00592,0.220768,0.004736,0.004128,0.006112,0.007264,0.006976,0.1248,0.006112
+898,684.95,1.45996,0.405344,0.007968,0.239392,0.004928,0.004096,0.006144,0.00624,0.00768,0.12288,0.006016
+899,1296.82,0.771118,0.387264,0.004992,0.222624,0.004672,0.005248,0.004992,0.00752,0.006848,0.124224,0.006144
+900,1251.26,0.799194,0.384448,0.005824,0.219328,0.004256,0.00544,0.004832,0.007616,0.006688,0.124352,0.006112
+901,1296.82,0.771118,0.383712,0.005984,0.217056,0.004896,0.005184,0.006144,0.007008,0.00624,0.124928,0.006272
+902,1208.44,0.827515,0.385504,0.005024,0.2232,0.005184,0.004832,0.005472,0.006848,0.006336,0.122624,0.005984
+903,999.024,1.00098,0.619872,0.006144,0.454688,0.005888,0.0056,0.004864,0.00736,0.006976,0.122208,0.006144
+904,1238.02,0.807739,0.386272,0.005856,0.221568,0.005856,0.004384,0.005952,0.006336,0.007328,0.123008,0.005984
+905,1184.33,0.84436,0.391648,0.005824,0.226208,0.005728,0.004512,0.005952,0.006336,0.00752,0.123488,0.00608
+906,816.831,1.22424,0.394144,0.007104,0.229376,0.00512,0.004896,0.005472,0.006944,0.00624,0.12288,0.006112
+907,1324.71,0.754883,0.391296,0.006112,0.222816,0.004864,0.004096,0.006144,0.006144,0.00768,0.12736,0.00608
+908,936.978,1.06726,0.419872,0.005824,0.25248,0.00576,0.00448,0.005856,0.0064,0.008,0.125088,0.005984
+909,997.808,1.0022,0.61648,0.00512,0.446432,0.005152,0.004896,0.005472,0.007008,0.007744,0.12864,0.006016
+910,921.9,1.08472,0.440512,0.005824,0.272,0.004768,0.005792,0.004704,0.008032,0.006304,0.126976,0.006112
+911,901.508,1.10925,0.38928,0.00512,0.22656,0.004736,0.004224,0.006144,0.006176,0.00816,0.122144,0.006016
+912,943.888,1.05945,0.86848,0.005792,0.706336,0.0048,0.005696,0.004608,0.00784,0.006432,0.120832,0.006144
+913,1028.89,0.971924,0.398016,0.005056,0.228384,0.004928,0.004256,0.006144,0.0072,0.007136,0.1288,0.006112
+914,1139.04,0.87793,0.391168,0.004992,0.222144,0.004928,0.00416,0.006144,0.007296,0.006848,0.128608,0.006048
+915,1471,0.67981,0.385696,0.006016,0.217888,0.005152,0.004864,0.005504,0.006944,0.00624,0.126944,0.006144
+916,1154.78,0.865967,0.388544,0.005824,0.221664,0.005792,0.004448,0.00592,0.006336,0.007232,0.125344,0.005984
+917,1335.72,0.748657,0.410368,0.005024,0.24352,0.004096,0.005888,0.005472,0.00704,0.006176,0.126976,0.006176
+918,923.458,1.08289,0.417504,0.005824,0.250496,0.004384,0.005472,0.004768,0.00752,0.006816,0.126112,0.006112
+919,1450.17,0.689575,0.399584,0.005856,0.229056,0.004928,0.004096,0.006144,0.00624,0.008096,0.129024,0.006144
+920,880.009,1.13635,0.872608,0.005888,0.706272,0.0048,0.00576,0.004608,0.007648,0.00656,0.124928,0.006144
+921,1040.91,0.960693,0.387008,0.006144,0.223232,0.005376,0.004864,0.005504,0.006784,0.006176,0.122848,0.00608
+922,1213.45,0.824097,0.3848,0.005824,0.219584,0.005792,0.004448,0.006144,0.007392,0.006944,0.122656,0.006016
+923,1282.2,0.779907,0.379424,0.00512,0.21664,0.004512,0.005312,0.004928,0.007424,0.006912,0.122496,0.00608
+924,1235.97,0.809082,0.375424,0.005856,0.209888,0.004096,0.005728,0.004512,0.008192,0.006144,0.124928,0.00608
+925,949.797,1.05286,0.416032,0.005792,0.250464,0.00576,0.00448,0.006144,0.006176,0.007744,0.123296,0.006176
+926,926.592,1.07922,0.405824,0.005824,0.242304,0.005728,0.004512,0.005824,0.006464,0.006176,0.122816,0.006176
+927,1137.62,0.879028,0.447072,0.005856,0.282752,0.004736,0.004192,0.006048,0.007296,0.006944,0.123008,0.00624
+928,689.678,1.44995,0.392544,0.007968,0.229408,0.004608,0.005216,0.005056,0.0072,0.006752,0.120352,0.005984
+929,1420,0.704224,0.392736,0.006144,0.221184,0.004128,0.005792,0.005472,0.006848,0.006432,0.130592,0.006144
+930,1222.69,0.817871,0.376832,0.006048,0.212416,0.004768,0.004192,0.006048,0.00624,0.007808,0.123168,0.006144
+931,1303.63,0.76709,0.387072,0.006176,0.215008,0.004096,0.00576,0.004672,0.007808,0.006336,0.131072,0.006144
+932,1194.34,0.83728,0.381824,0.005056,0.212896,0.00528,0.004896,0.005472,0.006784,0.00624,0.129024,0.006176
+933,1143.97,0.874146,0.38864,0.005824,0.218944,0.004896,0.004096,0.006144,0.007712,0.006624,0.12832,0.00608
+934,1176,0.850342,0.380544,0.005824,0.213792,0.005472,0.004768,0.005568,0.00672,0.006208,0.12608,0.006112
+935,1327.28,0.753418,0.390464,0.006112,0.21712,0.005568,0.004704,0.005696,0.00656,0.007616,0.130944,0.006144
+936,610.614,1.6377,0.387072,0.008096,0.22128,0.005408,0.004832,0.005504,0.006784,0.006176,0.122848,0.006144
+937,1284.42,0.778564,0.390464,0.006144,0.220352,0.004928,0.004096,0.006144,0.006144,0.007712,0.129088,0.005856
+938,1234.66,0.809937,0.378336,0.006144,0.214912,0.004224,0.005568,0.004672,0.007968,0.006368,0.122496,0.005984
+939,1290.69,0.77478,0.383648,0.005824,0.213536,0.004544,0.005888,0.005472,0.007072,0.006144,0.129024,0.006144
+940,1168.78,0.855591,0.413952,0.005824,0.244256,0.004096,0.005536,0.004704,0.008192,0.006176,0.128992,0.006176
+941,665.854,1.50183,0.390432,0.006048,0.219232,0.004096,0.005952,0.004288,0.007776,0.00656,0.130368,0.006112
+942,774.291,1.2915,0.881088,0.005824,0.70736,0.006144,0.015776,0.005888,0.007008,0.006144,0.120832,0.006112
+943,1156.9,0.86438,0.390592,0.006144,0.221184,0.004096,0.005824,0.005472,0.006912,0.006368,0.126976,0.007616
+944,1154.45,0.866211,0.416448,0.005824,0.252928,0.005728,0.004512,0.005728,0.00656,0.008128,0.120896,0.006144
+945,1237.28,0.808228,0.401824,0.005824,0.228064,0.004096,0.005728,0.004512,0.008192,0.007296,0.131968,0.006144
+946,1374.73,0.727417,0.387168,0.00512,0.217056,0.005408,0.004832,0.005504,0.006784,0.00624,0.130176,0.006048
+947,1131.18,0.884033,0.391904,0.004992,0.21488,0.0056,0.00432,0.004448,0.007936,0.006304,0.13728,0.006144
+948,967.178,1.03394,0.399136,0.005824,0.228096,0.004096,0.005824,0.005472,0.007136,0.006272,0.130304,0.006112
+949,1365.11,0.732544,0.401408,0.005984,0.227264,0.00432,0.005504,0.004736,0.00768,0.006656,0.13312,0.006144
+950,685.236,1.45935,0.40448,0.007168,0.231072,0.004448,0.005376,0.004896,0.00752,0.006784,0.131072,0.006144
+951,1290.69,0.77478,0.390464,0.006112,0.213024,0.005312,0.004928,0.007232,0.007104,0.006208,0.134432,0.006112
+952,1340.53,0.745972,0.392704,0.005824,0.217088,0.004832,0.004096,0.006144,0.007232,0.00704,0.134432,0.006016
+953,1215.97,0.822388,0.405568,0.006144,0.214048,0.004928,0.004256,0.0072,0.00688,0.0064,0.149504,0.006208
+954,1143.97,0.874146,0.395808,0.005952,0.221376,0.00464,0.005184,0.005056,0.006304,0.007936,0.134368,0.004992
+955,972.575,1.0282,0.623392,0.005856,0.447296,0.005632,0.004672,0.006144,0.006176,0.00784,0.134496,0.00528
+956,1260.31,0.793457,0.41392,0.005824,0.237792,0.004544,0.00528,0.00496,0.00736,0.006784,0.13536,0.006016
+957,864.317,1.15698,0.872608,0.005024,0.697952,0.0056,0.005056,0.005984,0.006304,0.007808,0.132736,0.006144
+958,821.912,1.21667,0.399712,0.005856,0.232064,0.00512,0.004864,0.005472,0.006944,0.006272,0.128032,0.005088
+959,1279.4,0.781616,0.417856,0.005792,0.236128,0.005408,0.004832,0.00576,0.006528,0.007616,0.13968,0.006112
+960,1271.46,0.786499,0.39328,0.006112,0.223264,0.005824,0.004416,0.005856,0.006432,0.007552,0.127616,0.006208
+961,1268.31,0.788452,0.39392,0.005824,0.218112,0.004096,0.005792,0.005472,0.007168,0.006144,0.135168,0.006144
+962,1130.55,0.884521,0.387072,0.006112,0.220832,0.00448,0.005248,0.004992,0.006144,0.007456,0.125664,0.006144
+963,919.416,1.08765,0.403488,0.00608,0.228864,0.004672,0.005152,0.005088,0.007392,0.006848,0.133216,0.006176
+964,1344.71,0.743652,0.401408,0.006112,0.233504,0.004096,0.005728,0.004512,0.007936,0.0064,0.126976,0.006144
+965,879.253,1.13733,0.8768,0.00592,0.700352,0.00464,0.006144,0.005952,0.006336,0.00736,0.133952,0.006144
+966,1046.37,0.955688,0.400416,0.006144,0.223232,0.005472,0.004768,0.0056,0.006688,0.007808,0.134624,0.00608
+967,1160.67,0.861572,0.401408,0.006144,0.225184,0.004192,0.0056,0.00464,0.00784,0.006496,0.135168,0.006144
+968,1350.92,0.740234,0.393216,0.006144,0.22064,0.00464,0.005184,0.005088,0.007232,0.006944,0.1312,0.006144
+969,1225.43,0.81604,0.397568,0.005024,0.229312,0.005536,0.004704,0.005664,0.006624,0.006176,0.128512,0.006016
+970,952.337,1.05005,0.632032,0.00592,0.45824,0.004832,0.005664,0.004576,0.007552,0.00672,0.132416,0.006112
+971,1141.42,0.876099,0.401408,0.00608,0.223296,0.00576,0.00448,0.006144,0.008192,0.007392,0.13392,0.006144
+972,944.649,1.05859,0.866304,0.006144,0.69632,0.006144,0.00528,0.004992,0.007456,0.006848,0.127008,0.006112
+973,1000.12,0.999878,0.404576,0.006144,0.231424,0.005184,0.004864,0.005472,0.007008,0.006176,0.132256,0.006048
+974,1169.78,0.854858,0.399904,0.004992,0.219008,0.005792,0.004448,0.005984,0.006304,0.007712,0.127456,0.018208
+975,1089.36,0.917969,0.410688,0.006016,0.229504,0.005344,0.004896,0.005472,0.006816,0.007296,0.139232,0.006112
+976,1388.71,0.720093,0.393152,0.004992,0.225184,0.005472,0.004768,0.0056,0.006688,0.006176,0.128256,0.006016
+977,1239.15,0.807007,0.395008,0.005792,0.217504,0.00576,0.00448,0.005888,0.007712,0.00688,0.13488,0.006112
+978,1072.25,0.932617,0.391168,0.006144,0.221184,0.006144,0.005184,0.006112,0.007136,0.006176,0.126944,0.006144
+979,1191.39,0.839355,0.392384,0.005824,0.218784,0.0048,0.005184,0.005056,0.00752,0.006816,0.132288,0.006112
+980,602.574,1.65955,0.405504,0.008192,0.233184,0.004384,0.00544,0.0048,0.007648,0.006688,0.129024,0.006144
+981,1279.8,0.781372,0.387968,0.004992,0.217088,0.004096,0.005856,0.005504,0.006752,0.006464,0.131072,0.006144
+982,1229.48,0.813354,0.376576,0.005856,0.214976,0.004672,0.00512,0.00512,0.006176,0.007808,0.120768,0.00608
+983,1356.74,0.737061,0.392672,0.006144,0.218464,0.004768,0.00416,0.00608,0.007232,0.007104,0.132704,0.006016
+984,1238.4,0.807495,0.378528,0.005856,0.214976,0.004928,0.004224,0.006048,0.00624,0.007808,0.122464,0.005984
+985,970.501,1.0304,0.620512,0.006144,0.451744,0.00496,0.006144,0.0056,0.006688,0.007424,0.125696,0.006112
+986,1210.04,0.826416,0.38448,0.006144,0.218944,0.004288,0.005504,0.004736,0.007584,0.006752,0.124416,0.006112
+987,882.188,1.13354,0.88064,0.006176,0.696288,0.006016,0.014464,0.006176,0.007456,0.006848,0.131072,0.006144
+988,944.976,1.05823,0.38128,0.006496,0.217088,0.005184,0.004864,0.005344,0.006976,0.006304,0.12288,0.006144
+989,1525.51,0.655518,0.38768,0.004992,0.21904,0.004096,0.005696,0.00656,0.006176,0.007328,0.127744,0.006048
+990,1168.28,0.855957,0.37888,0.006144,0.217024,0.00416,0.005696,0.004608,0.007744,0.006528,0.120992,0.005984
+991,1394.38,0.717163,0.3928,0.005824,0.219488,0.004416,0.00544,0.006112,0.00688,0.006144,0.13232,0.006176
+992,841.586,1.18823,0.395264,0.006144,0.231264,0.004256,0.005568,0.004672,0.008192,0.007232,0.121792,0.006144
+993,1226.35,0.81543,0.392928,0.005088,0.220544,0.004416,0.005472,0.004896,0.007872,0.006336,0.132192,0.006112
+994,1129.31,0.885498,0.391904,0.006048,0.228128,0.005472,0.004768,0.005568,0.00672,0.006176,0.122848,0.006176
+995,914.082,1.09399,0.87248,0.006016,0.701984,0.004704,0.006144,0.005856,0.006432,0.007616,0.127552,0.006176
+996,1013.36,0.986816,0.384704,0.005824,0.219488,0.005536,0.004672,0.005728,0.008032,0.00672,0.122656,0.006048
+997,1427.43,0.700562,0.382496,0.006144,0.216384,0.0048,0.004128,0.006112,0.006176,0.008,0.12416,0.006592
+998,1182.28,0.845825,0.376832,0.006144,0.21504,0.004096,0.005728,0.004704,0.00768,0.006464,0.120832,0.006144
+999,1326.42,0.753906,0.389376,0.005856,0.221408,0.004768,0.00416,0.007392,0.00688,0.00624,0.126592,0.00608
+1000,1235.41,0.809448,0.380224,0.005952,0.21728,0.00528,0.004864,0.005408,0.006816,0.006304,0.122624,0.005696
+1001,1014.74,0.985474,0.390816,0.006208,0.219584,0.005824,0.004416,0.006144,0.008096,0.00752,0.126912,0.006112
+1002,1204.53,0.8302,0.381792,0.00496,0.218176,0.00496,0.004192,0.006048,0.00624,0.00736,0.124832,0.005024
+1003,718.66,1.39148,0.395648,0.007904,0.22752,0.004576,0.005248,0.004992,0.008192,0.007744,0.123328,0.006144
+1004,1175.83,0.850464,0.393824,0.005856,0.23024,0.004128,0.005664,0.004576,0.00784,0.006496,0.124,0.005024
+1005,1264.2,0.791016,0.380192,0.006112,0.2168,0.004416,0.00544,0.0048,0.00768,0.006656,0.122144,0.006144
+1006,1372.65,0.728516,0.386752,0.005856,0.220064,0.005472,0.004768,0.005632,0.006656,0.006144,0.126176,0.005984
+1007,1273.43,0.785278,0.381952,0.00512,0.214432,0.004704,0.004192,0.006048,0.007296,0.00704,0.126976,0.006144
+1008,1178.03,0.848877,0.585728,0.006144,0.414848,0.004992,0.004096,0.006144,0.006272,0.00768,0.129408,0.006144
+1009,542.552,1.84314,0.389312,0.00608,0.217344,0.005728,0.004512,0.006144,0.00784,0.006496,0.129024,0.006144
+1010,927.326,1.07837,0.428192,0.007968,0.253984,0.004448,0.005344,0.004896,0.00752,0.006624,0.131264,0.006144
+1011,1267.92,0.788696,0.389888,0.005024,0.216736,0.004288,0.005504,0.004736,0.00768,0.006656,0.13312,0.006144
+1012,1220.5,0.819336,0.389152,0.006144,0.218304,0.004928,0.004096,0.006144,0.006144,0.007648,0.129568,0.006176
+1013,1227.63,0.814575,0.388992,0.005824,0.22,0.005568,0.004672,0.005216,0.006944,0.006272,0.128352,0.006144
+1014,1361.7,0.734375,0.3912,0.005824,0.221056,0.004576,0.005248,0.006688,0.006496,0.007328,0.12784,0.006144
+1015,1219.77,0.819824,0.59792,0.006144,0.425984,0.004096,0.005792,0.005472,0.007136,0.006176,0.130976,0.006144
+1016,1011.98,0.988159,0.387072,0.006144,0.216992,0.004192,0.005888,0.004672,0.007616,0.0064,0.129024,0.006144
+1017,1214.35,0.823486,0.68736,0.006144,0.516096,0.008192,0.005696,0.004576,0.007872,0.006432,0.12624,0.006112
+1018,741.827,1.34802,0.387712,0.005792,0.220128,0.005184,0.004896,0.005472,0.006944,0.006176,0.126976,0.006144
+1019,1335.94,0.748535,0.387552,0.00512,0.219104,0.004096,0.00576,0.004512,0.00816,0.00816,0.12656,0.00608
+1020,1197.14,0.835327,0.397376,0.005856,0.227936,0.005312,0.004864,0.006208,0.007296,0.006912,0.12688,0.006112
+1021,742.096,1.34753,0.39328,0.00576,0.220096,0.005728,0.004512,0.005856,0.006432,0.007584,0.130976,0.006336
+1022,1210.94,0.825806,0.406784,0.006144,0.235456,0.005536,0.004192,0.005984,0.00688,0.006144,0.130336,0.006112
+1023,1001.83,0.998169,0.385024,0.006144,0.216832,0.004352,0.005472,0.0048,0.007648,0.006656,0.126976,0.006144
+1024,1231.51,0.812012,0.4096,0.006144,0.243712,0.004096,0.005888,0.005472,0.006944,0.007584,0.123616,0.006144
+1025,612.853,1.63171,0.41168,0.008192,0.237408,0.004256,0.005568,0.004672,0.007776,0.00656,0.131072,0.006176
+1026,788.223,1.26868,0.398272,0.005088,0.231392,0.004096,0.005696,0.004576,0.008128,0.006176,0.126976,0.006144
+1027,1445.05,0.692017,0.399392,0.005856,0.2256,0.005376,0.004864,0.005792,0.006496,0.007936,0.131328,0.006144
+1028,1338.34,0.747192,0.390976,0.005792,0.222176,0.005344,0.004864,0.0056,0.00672,0.0072,0.127296,0.005984
+1029,1195.91,0.836182,0.608288,0.006176,0.4352,0.005024,0.00416,0.006144,0.007328,0.007008,0.131072,0.006176
+1030,991.648,1.00842,0.405504,0.006144,0.23552,0.004096,0.005792,0.005504,0.007072,0.00624,0.128992,0.006144
+1031,1179.89,0.847534,0.41344,0.006144,0.241664,0.005408,0.004832,0.005632,0.006656,0.007488,0.129376,0.00624
+1032,794.568,1.25854,0.393152,0.006752,0.22528,0.005184,0.004864,0.005472,0.006816,0.006336,0.1264,0.006048
+1033,1344.94,0.74353,0.398912,0.006144,0.2328,0.004768,0.00416,0.006112,0.007456,0.006752,0.12464,0.00608
+1034,1198.71,0.834229,0.386912,0.006144,0.217088,0.005696,0.004544,0.005792,0.006496,0.00736,0.127808,0.005984
+1035,1226.9,0.815063,0.387424,0.004992,0.217024,0.005728,0.004512,0.005728,0.00656,0.00624,0.130496,0.006144
+1036,1322.78,0.755981,0.393152,0.006144,0.219136,0.00576,0.00448,0.005856,0.006432,0.007552,0.13168,0.006112
+1037,852.179,1.17346,0.62688,0.004448,0.451648,0.004896,0.006144,0.006144,0.007328,0.007008,0.13312,0.006144
+1038,1483.79,0.67395,0.387232,0.005824,0.218848,0.004864,0.004128,0.006112,0.00624,0.007744,0.12736,0.006112
+1039,866.695,1.15381,0.874368,0.006144,0.699648,0.004864,0.006048,0.005472,0.006912,0.007232,0.131936,0.006112
+1040,1042.5,0.959229,0.383808,0.006496,0.216736,0.004896,0.004096,0.006144,0.007424,0.006944,0.124896,0.006176
+1041,1230.21,0.812866,0.388992,0.005024,0.216992,0.0056,0.00464,0.005728,0.008224,0.006528,0.130144,0.006112
+1042,1243.1,0.804443,0.383072,0.005824,0.215456,0.005792,0.004448,0.005888,0.0064,0.007456,0.125664,0.006144
+1043,1184.5,0.844238,0.38496,0.00576,0.213536,0.004544,0.00528,0.00496,0.00736,0.006944,0.130432,0.006144
+1044,1242.53,0.80481,0.39328,0.005792,0.225696,0.005632,0.004576,0.00576,0.006528,0.006176,0.126944,0.006176
+1045,1100.63,0.908569,0.388288,0.006144,0.21504,0.004096,0.00576,0.004608,0.007776,0.006432,0.13232,0.006112
+1046,1257.99,0.794922,0.385152,0.006144,0.217088,0.005792,0.004448,0.005888,0.0064,0.007488,0.125632,0.006272
+1047,898.738,1.11267,0.872448,0.006016,0.696288,0.005632,0.004768,0.006144,0.007296,0.00704,0.13312,0.006144
+1048,1044.37,0.95752,0.387072,0.006144,0.216992,0.004192,0.005664,0.004576,0.007904,0.006432,0.129024,0.006144
+1049,1260.7,0.793213,0.385728,0.005024,0.21504,0.00576,0.00448,0.005888,0.006432,0.008,0.128992,0.006112
+1050,1250.11,0.799927,0.385024,0.006144,0.2168,0.004384,0.00544,0.0048,0.00784,0.006496,0.126976,0.006144
+1051,1213.45,0.824097,0.387968,0.005024,0.215008,0.005152,0.004864,0.006368,0.00736,0.006976,0.131072,0.006144
+1052,1322.57,0.756104,0.389088,0.005824,0.218016,0.005184,0.004864,0.005664,0.006784,0.006144,0.130496,0.006112
+1053,1074.08,0.93103,0.387072,0.005856,0.216768,0.004704,0.00512,0.00512,0.00736,0.00688,0.12912,0.006144
+1054,1246.12,0.80249,0.39072,0.005824,0.223616,0.004096,0.005728,0.004608,0.007936,0.006304,0.126592,0.006016
+1055,848.472,1.17859,0.884128,0.005824,0.715232,0.006144,0.005632,0.004608,0.007968,0.006368,0.126336,0.006016
+1056,1116.38,0.895752,0.385024,0.005984,0.217248,0.005888,0.004352,0.006112,0.006208,0.007552,0.125536,0.006144
+1057,1258.95,0.794312,0.38352,0.004992,0.216992,0.005856,0.004384,0.005984,0.006304,0.007552,0.12544,0.006016
+1058,1251.26,0.799194,0.385024,0.006144,0.217088,0.005824,0.004416,0.00592,0.006368,0.00736,0.12576,0.006144
+1059,1223.05,0.817627,0.383712,0.004992,0.216544,0.00448,0.005344,0.004896,0.007712,0.006624,0.126976,0.006144
+1060,1301.76,0.768188,0.385024,0.00592,0.2144,0.00496,0.004096,0.006144,0.007968,0.006368,0.129024,0.006144
+1061,579.145,1.72668,0.38528,0.005792,0.217696,0.005376,0.004864,0.005504,0.006784,0.007264,0.125888,0.006112
+1062,912.961,1.09534,0.871488,0.00608,0.70048,0.00608,0.00416,0.006176,0.00624,0.007904,0.127136,0.007232
+1063,980.725,1.01965,0.393216,0.006144,0.22288,0.004448,0.005376,0.004896,0.007456,0.006848,0.129056,0.006112
+1064,1306.96,0.765137,0.3912,0.006144,0.219072,0.00416,0.005632,0.004608,0.00784,0.006496,0.131072,0.006176
+1065,1270.67,0.786987,0.382976,0.006144,0.214752,0.004384,0.00544,0.0048,0.007712,0.006624,0.128032,0.005088
+1066,1234.66,0.809937,0.388736,0.006144,0.218112,0.00496,0.004256,0.005984,0.006304,0.00816,0.128832,0.005984
+1067,1180.74,0.846924,0.388544,0.005824,0.215392,0.005664,0.004544,0.005792,0.006496,0.007392,0.131872,0.005568
+1068,1066.53,0.937622,0.380928,0.006144,0.212992,0.00544,0.0048,0.005536,0.007872,0.006944,0.125056,0.006144
+1069,1223.23,0.817505,0.385024,0.005952,0.21728,0.005216,0.004896,0.005472,0.006944,0.006176,0.126944,0.006144
+1070,723.739,1.38171,0.395616,0.007904,0.225888,0.00592,0.00432,0.006048,0.00624,0.007584,0.125536,0.006176
+1071,1227.45,0.814697,0.38368,0.005824,0.216096,0.0056,0.00464,0.005568,0.006688,0.007424,0.125696,0.006144
+1072,1327.5,0.753296,0.377952,0.006176,0.216864,0.004288,0.005536,0.004704,0.007456,0.00688,0.120032,0.006016
+1073,1248.59,0.800903,0.381536,0.005824,0.213472,0.004544,0.005312,0.004928,0.007648,0.006688,0.126976,0.006144
+1074,1239.9,0.806519,0.38416,0.006048,0.216704,0.004576,0.00416,0.00608,0.007488,0.006848,0.12624,0.006016
+1075,1226.35,0.81543,0.40144,0.006144,0.233152,0.005472,0.004128,0.004928,0.006272,0.007424,0.127744,0.006176
+1076,1001.59,0.998413,0.387072,0.006176,0.218496,0.004736,0.004192,0.006016,0.007264,0.007072,0.126976,0.006144
+1077,1074.64,0.930542,0.39104,0.006144,0.222816,0.004512,0.005344,0.004928,0.007456,0.00688,0.126848,0.006112
+1078,746.356,1.33984,0.43216,0.008192,0.261856,0.004384,0.00544,0.0048,0.007712,0.00768,0.12592,0.006176
+1079,1508.66,0.662842,0.390528,0.006144,0.221216,0.005664,0.004544,0.005728,0.006592,0.007552,0.126944,0.006144
+1080,1164.3,0.858887,0.381888,0.005056,0.21504,0.005792,0.004448,0.00592,0.006368,0.007552,0.125568,0.006144
+1081,1396.28,0.716187,0.383872,0.004992,0.21504,0.005888,0.004352,0.006144,0.007392,0.006848,0.127072,0.006144
+1082,1179.21,0.848022,0.39856,0.01632,0.218976,0.00432,0.005504,0.004832,0.007872,0.006368,0.128256,0.006112
+1083,997.443,1.00256,0.624448,0.004704,0.452576,0.006048,0.005568,0.004768,0.007872,0.006496,0.130304,0.006112
+1084,1074.64,0.930542,0.387072,0.006176,0.219104,0.005568,0.004672,0.006144,0.006144,0.007872,0.125248,0.006144
+1085,1464.69,0.682739,0.391488,0.005824,0.223744,0.004192,0.005856,0.005504,0.006688,0.006528,0.126976,0.006176
+1086,677.305,1.47644,0.386624,0.007776,0.220672,0.00496,0.00416,0.006144,0.007616,0.00672,0.122464,0.006112
+1087,1308,0.764526,0.389376,0.004992,0.218976,0.005824,0.004416,0.005952,0.006368,0.007648,0.129088,0.006112
+1088,1252.79,0.798218,0.384448,0.005856,0.215744,0.005536,0.004704,0.005632,0.006656,0.007232,0.126944,0.006144
+1089,1265.76,0.790039,0.384512,0.005824,0.215616,0.005536,0.004704,0.005952,0.006304,0.007712,0.126784,0.00608
+1090,1184.67,0.844116,0.382976,0.006016,0.213152,0.005664,0.004544,0.005792,0.006496,0.007488,0.12768,0.006144
+1091,1080.74,0.925293,0.389024,0.006176,0.220704,0.004544,0.005248,0.004992,0.00768,0.006656,0.126912,0.006112
+1092,1218.32,0.820801,0.389152,0.005792,0.218976,0.00464,0.005152,0.005088,0.007456,0.00688,0.129024,0.006144
+1093,607.355,1.64648,0.400608,0.008192,0.219136,0.004096,0.00576,0.004576,0.024064,0.006432,0.12224,0.006112
+1094,1267.52,0.78894,0.383584,0.005856,0.215392,0.00464,0.005184,0.005056,0.008032,0.006304,0.126976,0.006144
+1095,975.354,1.02527,0.401632,0.005792,0.239392,0.004864,0.004096,0.006144,0.006304,0.007712,0.121152,0.006176
+1096,1416.32,0.706055,0.3864,0.006144,0.222976,0.004352,0.005504,0.004768,0.007552,0.006752,0.12224,0.006112
+1097,1290.69,0.77478,0.387072,0.005824,0.21776,0.005248,0.004896,0.005472,0.00688,0.00816,0.12672,0.006112
+1098,922.419,1.08411,0.63456,0.0056,0.47152,0.0056,0.004736,0.0056,0.006688,0.0072,0.121632,0.005984
+1099,1175.66,0.850586,0.396288,0.005056,0.232768,0.0048,0.004128,0.006112,0.0072,0.007072,0.122944,0.006208
+1100,959.363,1.04236,0.868352,0.006144,0.70656,0.006144,0.004096,0.006144,0.0072,0.00688,0.120064,0.00512
+1101,944.758,1.05847,0.377952,0.006144,0.217088,0.005216,0.004928,0.005472,0.006688,0.006368,0.119936,0.006112
+1102,1320.23,0.757446,0.384576,0.005824,0.22192,0.00528,0.004896,0.005472,0.00688,0.006144,0.122144,0.006016
+1103,1256.25,0.796021,0.372736,0.006176,0.212512,0.004544,0.005248,0.004992,0.007584,0.006752,0.118784,0.006144
+1104,1331.38,0.751099,0.387008,0.006144,0.219136,0.005472,0.004768,0.006144,0.007744,0.006592,0.124928,0.00608
+1105,1277.6,0.782715,0.37888,0.006144,0.21504,0.005568,0.004672,0.005728,0.006592,0.007936,0.121056,0.006144
+1106,1132.9,0.88269,0.380448,0.006144,0.217088,0.005376,0.004832,0.005472,0.006848,0.00624,0.122368,0.00608
+1107,1174.65,0.851318,0.38,0.005056,0.217088,0.0056,0.00464,0.005696,0.006592,0.007232,0.121984,0.006112
+1108,617.891,1.61841,0.395264,0.009312,0.22416,0.005376,0.004864,0.005472,0.006816,0.007424,0.125696,0.006144
+1109,1379.12,0.725098,0.385216,0.00576,0.219296,0.004672,0.005152,0.005088,0.006144,0.007808,0.124928,0.006368
+1110,1187.76,0.841919,0.393248,0.016384,0.217088,0.00592,0.00432,0.00608,0.006208,0.00752,0.123552,0.006176
+1111,1309.25,0.763794,0.38496,0.006112,0.218304,0.004928,0.004128,0.006144,0.007168,0.007168,0.124928,0.00608
+1112,765.321,1.30664,0.413696,0.006144,0.247808,0.005472,0.004768,0.005568,0.00672,0.007456,0.123616,0.006144
+1113,1281,0.78064,0.397952,0.005824,0.232384,0.004096,0.005792,0.005504,0.006976,0.006304,0.124928,0.006144
+1114,1218.32,0.820801,0.391712,0.005024,0.224576,0.004736,0.004224,0.0072,0.007008,0.006144,0.126688,0.006112
+1115,1313.45,0.761353,0.39696,0.00592,0.226112,0.00544,0.0048,0.005568,0.007744,0.007168,0.126976,0.007232
+1116,636.964,1.56995,0.39696,0.008192,0.227328,0.004096,0.005856,0.00544,0.006784,0.006496,0.126784,0.005984
+1117,1435.43,0.696655,0.381888,0.005024,0.217088,0.005536,0.004704,0.005664,0.006624,0.006144,0.124928,0.006176
+1118,1230.58,0.812622,0.382144,0.006144,0.214368,0.004768,0.005632,0.004608,0.007584,0.006752,0.126272,0.006016
+1119,1192.95,0.838257,0.390272,0.005792,0.2216,0.005824,0.004416,0.005952,0.006368,0.007808,0.1264,0.006112
+1120,1352.26,0.739502,0.384608,0.006144,0.21888,0.004352,0.005248,0.004992,0.007456,0.00688,0.124928,0.005728
+1121,1103.45,0.90625,0.393248,0.006144,0.220448,0.004832,0.004096,0.006144,0.007328,0.00688,0.1312,0.006176
+1122,1213.09,0.824341,0.38512,0.005792,0.217536,0.005824,0.004416,0.006144,0.006144,0.007776,0.125344,0.006144
+1123,613.311,1.63049,0.40272,0.008192,0.23552,0.004096,0.00576,0.004608,0.007904,0.006336,0.12416,0.006144
+1124,1298.26,0.770264,0.380928,0.006144,0.218496,0.004736,0.004096,0.006144,0.007552,0.006784,0.120832,0.006144
+1125,1170.95,0.854004,0.383808,0.005024,0.218272,0.004832,0.004096,0.006144,0.006176,0.007776,0.125312,0.006176
+1126,1298.46,0.770142,0.38736,0.005824,0.223712,0.004224,0.005568,0.006272,0.006592,0.007328,0.121696,0.006144
+1127,1249.73,0.800171,0.37648,0.006144,0.21504,0.004096,0.005792,0.005472,0.00704,0.006272,0.120608,0.006016
+1128,963.765,1.0376,0.619936,0.005824,0.453248,0.006048,0.004192,0.006144,0.006144,0.007488,0.124832,0.006016
+1129,1016,0.984253,0.421344,0.006144,0.251904,0.005408,0.004832,0.005504,0.006784,0.008,0.126624,0.006144
+1130,1032.13,0.968872,0.651488,0.006016,0.48064,0.006944,0.005696,0.004608,0.007744,0.006496,0.126976,0.006368
+1131,769.346,1.2998,0.415744,0.006144,0.251904,0.005696,0.004544,0.005824,0.006464,0.007552,0.121472,0.006144
+1132,1295.38,0.771973,0.415808,0.006336,0.249856,0.005888,0.004352,0.005984,0.006304,0.007744,0.123264,0.00608
+1133,1366.7,0.731689,0.390528,0.006144,0.223232,0.00576,0.00448,0.005952,0.006336,0.007488,0.12512,0.006016
+1134,1247.26,0.801758,0.392,0.005024,0.220608,0.004576,0.005248,0.006112,0.007072,0.007264,0.129952,0.006144
+1135,1265.96,0.789917,0.38944,0.005792,0.21808,0.005536,0.004704,0.005664,0.006624,0.007392,0.129632,0.006016
+1136,864.591,1.15662,0.391296,0.005824,0.220032,0.00512,0.004896,0.005472,0.00688,0.0064,0.130272,0.0064
+1137,1323.42,0.755615,0.413664,0.005856,0.243136,0.004928,0.004128,0.006144,0.006144,0.008192,0.129024,0.006112
+1138,697.548,1.43359,0.404768,0.008,0.23264,0.004928,0.004288,0.006144,0.006144,0.007648,0.128864,0.006112
+1139,1334.85,0.749146,0.393248,0.004992,0.22112,0.005472,0.004768,0.005376,0.006912,0.00752,0.130976,0.006112
+1140,1190.52,0.839966,0.391168,0.006144,0.217088,0.005312,0.004928,0.005536,0.006752,0.006144,0.13312,0.006144
+1141,1265.56,0.790161,0.393216,0.006048,0.213088,0.00592,0.01424,0.00592,0.006688,0.00624,0.128928,0.006144
+1142,1233.92,0.810425,0.381824,0.005024,0.215008,0.005824,0.004416,0.005952,0.006336,0.007648,0.125472,0.006144
+1143,912.148,1.09631,0.6144,0.005888,0.445952,0.004864,0.006144,0.005664,0.006624,0.007936,0.125184,0.006144
+1144,1305.08,0.766235,0.393184,0.005888,0.222592,0.004928,0.00416,0.007552,0.006784,0.006336,0.1288,0.006144
+1145,1254.52,0.797119,0.712128,0.006144,0.483328,0.008224,0.022496,0.040032,0.012288,0.007072,0.126432,0.006112
+1146,612.486,1.63269,0.431488,0.006144,0.264192,0.004096,0.005728,0.004608,0.00784,0.0064,0.126464,0.006016
+1147,1151.05,0.868774,0.424448,0.005856,0.25808,0.004928,0.004192,0.006144,0.007648,0.006688,0.1248,0.006112
+1148,1335.51,0.748779,0.39936,0.006176,0.229344,0.00512,0.004864,0.005472,0.006976,0.00624,0.129024,0.006144
+1149,1264.39,0.790894,0.395424,0.006144,0.223232,0.0056,0.00464,0.006144,0.006144,0.007744,0.130496,0.00528
+1150,1164.3,0.858887,0.648896,0.005824,0.481088,0.004736,0.005152,0.005088,0.007392,0.006912,0.126592,0.006112
+1151,776.567,1.28772,0.44032,0.006144,0.27648,0.004096,0.006144,0.005792,0.006496,0.007296,0.121728,0.006144
+1152,1364.65,0.732788,0.405056,0.006176,0.239488,0.004192,0.005632,0.00464,0.007904,0.0064,0.12464,0.005984
+1153,533.472,1.87451,0.42992,0.007968,0.264096,0.004736,0.004192,0.006048,0.007296,0.00704,0.122432,0.006112
+1154,1614.51,0.619385,0.385056,0.006144,0.219136,0.004096,0.005856,0.00544,0.006944,0.006368,0.124896,0.006176
+1155,1083.17,0.923218,0.3888,0.00592,0.2208,0.004704,0.00512,0.00512,0.008192,0.006144,0.126688,0.006112
+1156,1348.26,0.741699,0.385152,0.006144,0.218816,0.004416,0.005408,0.004832,0.007488,0.006848,0.124928,0.006272
+1157,1321.5,0.756714,0.560416,0.005856,0.393472,0.004224,0.005664,0.004608,0.00784,0.006464,0.126144,0.006144
+1158,798.908,1.25171,0.397856,0.005856,0.232256,0.004224,0.0056,0.00464,0.007872,0.006464,0.124896,0.006048
+1159,1336.38,0.748291,0.409728,0.00608,0.243744,0.004128,0.005664,0.004576,0.008192,0.007648,0.123456,0.00624
+1160,698.083,1.4325,0.400128,0.007936,0.230272,0.004192,0.005632,0.004608,0.007808,0.006528,0.126976,0.006176
+1161,773.049,1.29358,0.425184,0.005952,0.243552,0.004448,0.005984,0.005472,0.006912,0.007552,0.1392,0.006112
+1162,1401.54,0.713501,0.391936,0.005888,0.226304,0.005568,0.004672,0.005984,0.006304,0.007648,0.123456,0.006112
+1163,1409.5,0.709473,0.38096,0.006144,0.216992,0.004192,0.005632,0.006208,0.006592,0.007424,0.1216,0.006176
+1164,1091.54,0.916138,0.561696,0.005824,0.395264,0.005024,0.00416,0.006144,0.006176,0.007552,0.125504,0.006048
+1165,1035.13,0.966064,0.412096,0.005824,0.24656,0.005824,0.004384,0.005984,0.006528,0.007712,0.123136,0.006144
+1166,1299.49,0.769531,0.391168,0.00592,0.224544,0.00496,0.004224,0.006112,0.007808,0.00656,0.124896,0.006144
+1167,708.038,1.41235,0.412576,0.007008,0.241664,0.005632,0.004608,0.00576,0.006528,0.00752,0.127648,0.006208
+1168,1246.12,0.80249,0.395264,0.005984,0.222784,0.004704,0.004096,0.006144,0.007264,0.006816,0.131328,0.006144
+1169,1299.29,0.769653,0.391808,0.005056,0.220192,0.004928,0.004256,0.006112,0.006176,0.008096,0.130848,0.006144
+1170,1250.31,0.799805,0.38624,0.006144,0.214752,0.004384,0.00544,0.0048,0.007552,0.006752,0.130464,0.005952
+1171,1212.01,0.825073,0.384832,0.005792,0.217152,0.0048,0.004096,0.006144,0.007456,0.00688,0.1264,0.006112
+1172,1084.6,0.921997,0.385056,0.006144,0.216448,0.004736,0.004192,0.006048,0.007616,0.00672,0.126976,0.006176
+1173,1271.85,0.786255,0.392992,0.006144,0.222464,0.004864,0.004096,0.006176,0.007232,0.006944,0.128992,0.00608
+1174,1263.42,0.791504,0.385888,0.005056,0.214176,0.004928,0.004128,0.006144,0.006144,0.007744,0.13152,0.006048
+1175,592.464,1.68787,0.407072,0.008224,0.234944,0.00464,0.005184,0.005056,0.007424,0.006912,0.12832,0.006368
+1176,1273.24,0.7854,0.383008,0.006176,0.215008,0.004096,0.005888,0.005376,0.006976,0.006336,0.126976,0.006176
+1177,1335.51,0.748779,0.380928,0.006144,0.217088,0.005664,0.004576,0.005568,0.00672,0.006336,0.122688,0.006144
+1178,885.239,1.12964,0.399392,0.005888,0.233216,0.00464,0.005408,0.004832,0.007744,0.007712,0.123808,0.006144
+1179,1126.82,0.887451,0.625088,0.006144,0.453056,0.005664,0.005632,0.005088,0.007328,0.006944,0.129088,0.006144
+1180,1190.52,0.839966,0.387072,0.006144,0.218144,0.00496,0.004224,0.00608,0.00624,0.007744,0.127392,0.006144
+1181,1406.35,0.71106,0.384032,0.005056,0.21888,0.00432,0.005536,0.004704,0.007872,0.006496,0.124896,0.006272
+1182,682.667,1.46484,0.403264,0.008192,0.226816,0.004608,0.005216,0.005024,0.007296,0.006976,0.133184,0.005952
+1183,1216.87,0.821777,0.38512,0.006144,0.221216,0.005728,0.00448,0.00592,0.006368,0.00768,0.121408,0.006176
+1184,1295.79,0.771729,0.38736,0.005856,0.215456,0.004256,0.005568,0.00576,0.006848,0.0064,0.131072,0.006144
+1185,1294.56,0.772461,0.387072,0.006144,0.21712,0.005888,0.00432,0.005856,0.006432,0.007968,0.1272,0.006144
+1186,1225.61,0.815918,0.387072,0.006112,0.214272,0.004896,0.005472,0.0064,0.006432,0.006272,0.131072,0.006144
+1187,1048.24,0.953979,0.388288,0.006176,0.218656,0.004544,0.00528,0.004992,0.007648,0.006656,0.128224,0.006112
+1188,1266.93,0.789307,0.387872,0.004992,0.214496,0.004576,0.005248,0.004992,0.008224,0.006112,0.13312,0.006112
+1189,909.212,1.09985,0.879456,0.004992,0.712544,0.006144,0.00576,0.004576,0.007744,0.006496,0.124928,0.006272
+1190,1032.52,0.968506,0.387072,0.00608,0.217152,0.004096,0.005824,0.005536,0.006976,0.00624,0.129024,0.006144
+1191,657.675,1.52051,0.383424,0.005856,0.215776,0.005536,0.004704,0.005664,0.006624,0.007392,0.125728,0.006144
+1192,1180.4,0.847168,0.383008,0.005824,0.21456,0.004928,0.004096,0.006144,0.006144,0.007584,0.127648,0.00608
+1193,1367.16,0.731445,0.388064,0.005024,0.218944,0.004256,0.0056,0.004672,0.007616,0.006688,0.129024,0.00624
+1194,1060.45,0.942993,0.395296,0.006144,0.22096,0.005504,0.004864,0.005472,0.006912,0.006144,0.13312,0.006176
+1195,906.897,1.10266,0.413696,0.006176,0.243104,0.004672,0.005152,0.005088,0.00768,0.006656,0.129024,0.006144
+1196,1045.3,0.956665,0.892928,0.006144,0.720896,0.005824,0.004416,0.00592,0.006368,0.007584,0.129632,0.006144
+1197,858.97,1.16418,0.419616,0.006016,0.2352,0.004544,0.005408,0.004832,0.007488,0.006848,0.129056,0.020224
+1198,1309.67,0.76355,0.397824,0.005824,0.22608,0.005888,0.004384,0.005984,0.006272,0.00752,0.129696,0.006176
+1199,1025.92,0.974731,0.40256,0.005888,0.229632,0.005632,0.004608,0.00576,0.006528,0.008224,0.130176,0.006112
+1200,1332.68,0.750366,0.416192,0.005824,0.240608,0.005664,0.004576,0.006144,0.006144,0.007936,0.13328,0.006016
+1201,1119.74,0.893066,0.59088,0.005888,0.420096,0.005952,0.004288,0.006048,0.00624,0.007776,0.127392,0.0072
+1202,1059.77,0.943604,0.388,0.005024,0.218976,0.004256,0.005568,0.004704,0.007776,0.006528,0.129024,0.006144
+1203,1369.9,0.72998,0.383584,0.00496,0.216864,0.004288,0.005536,0.004736,0.007616,0.006688,0.126784,0.006112
+1204,850.852,1.17529,0.868768,0.005856,0.698624,0.005632,0.004864,0.00544,0.006912,0.006144,0.129024,0.006272
+1205,1149.43,0.869995,0.38624,0.005856,0.215456,0.005632,0.004608,0.005728,0.00656,0.006144,0.130144,0.006112
+1206,1096.51,0.911987,0.387104,0.006144,0.217088,0.004096,0.005792,0.005472,0.007008,0.006304,0.129024,0.006176
+1207,1337.91,0.747437,0.407744,0.005856,0.239584,0.004608,0.005216,0.005024,0.007296,0.00704,0.126976,0.006144
+1208,1254.9,0.796875,0.389248,0.006144,0.21504,0.005696,0.004544,0.006144,0.007552,0.006784,0.131072,0.006272
+1209,979.436,1.021,0.623648,0.00608,0.448576,0.005856,0.0056,0.004928,0.007584,0.006752,0.13216,0.006112
+1210,1268.7,0.788208,0.393216,0.005824,0.215008,0.004672,0.005152,0.005088,0.008192,0.007328,0.135808,0.006144
+1211,633.663,1.57812,0.878272,0.005824,0.695712,0.005088,0.006144,0.005568,0.00672,0.007328,0.139776,0.006112
+1212,1249.92,0.800049,0.39824,0.005024,0.218944,0.004288,0.005536,0.004704,0.007776,0.006592,0.139232,0.006144
+1213,1168.28,0.855957,0.4264,0.015264,0.23472,0.004896,0.004128,0.006144,0.00624,0.007872,0.140992,0.006144
+1214,1090.52,0.916992,0.412224,0.004832,0.231168,0.004352,0.005472,0.004768,0.007648,0.006688,0.141312,0.005984
+1215,1063.62,0.940186,0.421856,0.006144,0.235072,0.004544,0.00528,0.00496,0.00752,0.006816,0.145408,0.006112
+1216,1390.6,0.719116,0.574496,0.006144,0.391168,0.00512,0.004896,0.005472,0.006816,0.0064,0.142304,0.006176
+1217,1044.5,0.957397,0.398656,0.006112,0.21696,0.004256,0.005568,0.004672,0.007968,0.006368,0.14064,0.006112
+1218,1115.77,0.89624,0.658752,0.006144,0.48128,0.008192,0.00512,0.005152,0.007456,0.006848,0.132576,0.005984
+1219,833.367,1.19995,0.394272,0.005952,0.217376,0.005856,0.004288,0.006112,0.006176,0.007552,0.134848,0.006112
+1220,1339.88,0.746338,0.393408,0.006144,0.217088,0.004096,0.005728,0.00656,0.006272,0.007712,0.134528,0.00528
+1221,1248.78,0.800781,0.384768,0.006144,0.212832,0.004256,0.005568,0.004704,0.007712,0.006592,0.130912,0.006048
+1222,1241.78,0.805298,0.388896,0.006144,0.215072,0.00576,0.004448,0.00608,0.006208,0.007552,0.130944,0.006688
+1223,1215.25,0.822876,0.382976,0.006144,0.210944,0.00592,0.00432,0.005984,0.006304,0.007616,0.1296,0.006144
+1224,1017.51,0.982788,0.623648,0.005344,0.449312,0.005664,0.004576,0.005824,0.006464,0.007488,0.132992,0.005984
+1225,1061.55,0.942017,0.392384,0.006144,0.220992,0.004288,0.005536,0.004704,0.007808,0.006528,0.130336,0.006048
+1226,957.681,1.04419,0.880512,0.005792,0.704384,0.005632,0.004864,0.00544,0.007008,0.006208,0.135168,0.006016
+1227,1029.53,0.971313,0.382464,0.005952,0.213216,0.00576,0.004448,0.005984,0.006336,0.007904,0.126752,0.006112
+1228,660.485,1.51404,0.395232,0.006176,0.217056,0.005888,0.004352,0.005952,0.006368,0.007584,0.135744,0.006112
+1229,1388.47,0.720215,0.397536,0.005824,0.228,0.005664,0.004576,0.005792,0.006496,0.007392,0.12768,0.006112
+1230,1360.12,0.735229,0.387296,0.005856,0.216672,0.00496,0.00416,0.006176,0.006144,0.007424,0.12976,0.006144
+1231,952.447,1.04993,0.621024,0.005024,0.447712,0.004896,0.006144,0.006144,0.007328,0.006944,0.130848,0.005984
+1232,1309.04,0.763916,0.392768,0.006048,0.218496,0.004832,0.004096,0.006144,0.007296,0.006848,0.132992,0.006016
+1233,1120.66,0.892334,0.387392,0.005856,0.216672,0.00512,0.004096,0.006144,0.006176,0.007968,0.129216,0.006144
+1234,863.315,1.15833,0.39504,0.008192,0.220832,0.004448,0.005344,0.004896,0.007808,0.006528,0.13104,0.005952
+1235,1226.53,0.815308,0.387424,0.005856,0.211072,0.004672,0.005152,0.005088,0.007552,0.006784,0.135104,0.006144
+1236,1338.34,0.747192,0.39152,0.005856,0.213632,0.004096,0.005728,0.004544,0.007488,0.006816,0.137216,0.006144
+1237,1231.14,0.812256,0.38912,0.006144,0.211968,0.004928,0.004288,0.006144,0.007424,0.006912,0.135168,0.006144
+1238,1252.03,0.798706,0.393216,0.006144,0.210944,0.00576,0.00448,0.006144,0.007168,0.007104,0.139328,0.006144
+1239,938.911,1.06506,0.622176,0.006144,0.445728,0.004832,0.006144,0.005664,0.006624,0.0072,0.133152,0.006688
+1240,1313.66,0.76123,0.399328,0.006144,0.222208,0.004928,0.004288,0.006112,0.006176,0.00784,0.13552,0.006112
+1241,802.429,1.24622,0.891232,0.005856,0.71296,0.005632,0.004992,0.00608,0.006208,0.007744,0.136736,0.005024
+1242,1115.01,0.896851,0.39328,0.005824,0.215424,0.00576,0.00448,0.005856,0.006432,0.007328,0.136032,0.006144
+1243,1279.6,0.781494,0.39632,0.006144,0.212352,0.004736,0.00512,0.00512,0.007296,0.00704,0.142464,0.006048
+1244,1319.8,0.75769,0.393856,0.005824,0.213344,0.004736,0.004224,0.006016,0.007872,0.006464,0.139264,0.006112
+1245,1236.53,0.808716,0.385312,0.005824,0.211328,0.004128,0.006144,0.005536,0.006752,0.007328,0.132992,0.00528
+1246,1265.76,0.790039,0.39232,0.006144,0.214048,0.00496,0.004224,0.006176,0.007552,0.006752,0.13648,0.005984
+1247,970.156,1.03076,0.39968,0.00608,0.223648,0.0056,0.00464,0.005728,0.006528,0.006208,0.135104,0.006144
+1248,1462.6,0.683716,0.397152,0.006144,0.219136,0.00528,0.004896,0.005376,0.006976,0.006144,0.137184,0.006016
+1249,1268.31,0.788452,0.654944,0.006144,0.466944,0.011872,0.0056,0.005056,0.008032,0.006304,0.13888,0.006112
+1250,733.459,1.3634,0.397312,0.005984,0.219296,0.005504,0.004768,0.005408,0.006848,0.006144,0.137216,0.006144
+1251,1293.95,0.772827,0.393152,0.00608,0.21424,0.004896,0.004096,0.006048,0.00624,0.00768,0.137728,0.006144
+1252,1355.39,0.737793,0.393632,0.005824,0.215552,0.005504,0.004864,0.006112,0.00624,0.007488,0.135872,0.006176
+1253,1243.85,0.803955,0.390016,0.004992,0.21504,0.004096,0.005696,0.00464,0.00768,0.00656,0.135168,0.006144
+1254,1271.65,0.786377,0.391712,0.004992,0.212992,0.004096,0.00576,0.00448,0.007712,0.006624,0.139072,0.005984
+1255,1047.03,0.955078,0.398016,0.005088,0.228448,0.004736,0.004096,0.006144,0.00736,0.006976,0.129024,0.006144
+1256,1249.73,0.800171,0.393216,0.006144,0.220704,0.004576,0.005248,0.004992,0.007424,0.006912,0.131072,0.006144
+1257,889.275,1.12451,0.886784,0.005984,0.708288,0.005632,0.005088,0.00608,0.006208,0.008064,0.135296,0.006144
+1258,968.322,1.03271,0.399808,0.005856,0.223264,0.004768,0.004096,0.006144,0.007616,0.00672,0.135168,0.006176
+1259,1296.2,0.771484,0.38912,0.006144,0.214592,0.004544,0.00528,0.00496,0.007936,0.0064,0.13312,0.006144
+1260,1322.57,0.756104,0.395264,0.00592,0.218816,0.00464,0.00576,0.004544,0.00784,0.006432,0.135168,0.006144
+1261,1231.69,0.81189,0.389152,0.006144,0.21632,0.004864,0.004096,0.007552,0.006784,0.006144,0.131072,0.006176
+1262,1232.44,0.811401,0.393888,0.005824,0.215008,0.004928,0.004256,0.006144,0.007296,0.006944,0.138432,0.005056
+1263,860.775,1.16174,0.390272,0.006144,0.217088,0.004096,0.005824,0.005504,0.006848,0.006432,0.13104,0.007296
+1264,1320.86,0.75708,0.395264,0.005888,0.215232,0.00416,0.005664,0.005664,0.006944,0.006304,0.139264,0.006144
+1265,824.809,1.2124,0.646528,0.006176,0.429376,0.006944,0.006016,0.026528,0.02672,0.00752,0.131168,0.00608
+1266,978.734,1.02173,0.410464,0.006144,0.23344,0.00496,0.004128,0.006176,0.007328,0.00688,0.135264,0.006144
+1267,1201.88,0.832031,0.393216,0.006144,0.218624,0.004608,0.005216,0.005024,0.007552,0.006784,0.13312,0.006144
+1268,1235.78,0.809204,0.407584,0.006144,0.212992,0.005792,0.01264,0.006144,0.006176,0.008192,0.143328,0.006176
+1269,1282,0.780029,0.395392,0.004992,0.21696,0.00528,0.004896,0.00544,0.00688,0.006208,0.138656,0.00608
+1270,907.5,1.10193,0.633088,0.005824,0.444736,0.006144,0.005312,0.0064,0.00672,0.006144,0.146432,0.005376
+1271,1268.5,0.78833,0.389952,0.005024,0.214912,0.005856,0.004384,0.006016,0.006272,0.007392,0.13392,0.006176
+1272,916.639,1.09094,0.886784,0.006016,0.704128,0.004672,0.005824,0.00544,0.007104,0.006176,0.14128,0.006144
+1273,969.467,1.03149,0.399392,0.005792,0.229696,0.00416,0.005664,0.00464,0.007712,0.00656,0.129024,0.006144
+1274,1174.65,0.851318,0.401216,0.006112,0.224992,0.004416,0.005408,0.004832,0.00752,0.006816,0.135136,0.005984
+1275,1265.37,0.790283,0.38912,0.006144,0.216256,0.004928,0.004096,0.006144,0.006272,0.008064,0.131072,0.006144
+1276,1373.81,0.727905,0.405504,0.006144,0.22464,0.004736,0.004096,0.006144,0.007744,0.006592,0.139264,0.006144
+1277,1141.27,0.876221,0.407744,0.005024,0.217056,0.016384,0.006144,0.005472,0.006816,0.007712,0.137024,0.006112
+1278,1112.59,0.898804,0.397344,0.006144,0.223232,0.006144,0.004192,0.006048,0.006208,0.007552,0.131648,0.006176
+1279,1222.5,0.817993,0.393216,0.006144,0.217088,0.005344,0.004864,0.005504,0.006816,0.00624,0.136224,0.004992
+1280,798.986,1.25159,0.647136,0.007936,0.471392,0.005728,0.004512,0.005824,0.006464,0.007264,0.131936,0.00608
+1281,1243.66,0.804077,0.385024,0.006144,0.217088,0.004096,0.005856,0.005408,0.006944,0.006368,0.126976,0.006144
+1282,1085.18,0.921509,0.397728,0.004992,0.226976,0.004448,0.005376,0.004864,0.007392,0.006944,0.13072,0.006016
+1283,1334.2,0.749512,0.3912,0.006144,0.221184,0.006144,0.005184,0.005056,0.006144,0.007776,0.127392,0.006176
+1284,1344.49,0.743774,0.38928,0.005824,0.217568,0.004096,0.005856,0.005472,0.006912,0.006336,0.131072,0.006144
+1285,1258.37,0.794678,0.389056,0.006144,0.217024,0.00416,0.005664,0.004608,0.007776,0.006528,0.131072,0.00608
+1286,1014.49,0.985718,0.395264,0.006144,0.21872,0.004512,0.005824,0.005536,0.00704,0.006176,0.135168,0.006144
+1287,1281.4,0.780396,0.394688,0.006144,0.22112,0.00416,0.005664,0.005696,0.006624,0.006592,0.13264,0.006048
+1288,913.98,1.09412,0.874816,0.005824,0.698976,0.005696,0.004544,0.00576,0.006528,0.007328,0.133984,0.006176
+1289,999.39,1.00061,0.389216,0.005824,0.217504,0.005824,0.004416,0.006144,0.006272,0.007712,0.129376,0.006144
+1290,1227.63,0.814575,0.389472,0.005856,0.2136,0.005664,0.004576,0.006144,0.007232,0.006848,0.134496,0.005056
+1291,1350.03,0.740723,0.391168,0.006176,0.217056,0.006144,0.005824,0.005472,0.007136,0.007264,0.129952,0.006144
+1292,1185.19,0.84375,0.385344,0.004992,0.212928,0.005248,0.004896,0.005472,0.006912,0.006144,0.132672,0.00608
+1293,1270.87,0.786865,0.389248,0.004992,0.21696,0.005536,0.004672,0.005696,0.006592,0.00752,0.131168,0.006112
+1294,964.332,1.03699,0.3928,0.006144,0.22016,0.00496,0.004256,0.00608,0.006208,0.007488,0.131392,0.006112
+1295,1322.78,0.755981,0.396992,0.005856,0.223296,0.00448,0.005344,0.004928,0.007488,0.006816,0.132704,0.00608
+1296,832.69,1.20093,0.89488,0.004992,0.71184,0.00496,0.005536,0.004704,0.007904,0.006432,0.142496,0.006016
+1297,1017.51,0.982788,0.392384,0.005856,0.218848,0.0048,0.004128,0.006112,0.0072,0.007136,0.132288,0.006016
+1298,1317.89,0.758789,0.393216,0.006144,0.215072,0.005152,0.004896,0.005472,0.006944,0.006176,0.138368,0.004992
+1299,576.293,1.73523,0.994816,0.006144,0.821248,0.005184,0.004896,0.005408,0.00704,0.007424,0.13136,0.006112
+1300,1190.35,0.840088,0.616448,0.006016,0.434304,0.005792,0.004448,0.005888,0.0064,0.007616,0.13984,0.006144
+1301,1147.34,0.871582,0.397632,0.005792,0.220896,0.00496,0.00416,0.006144,0.007264,0.006976,0.135264,0.006176
+1302,1174.48,0.85144,0.722112,0.006144,0.536192,0.007744,0.004896,0.00544,0.00688,0.006144,0.14256,0.006112
+1303,736.624,1.35754,0.405952,0.005824,0.228352,0.005824,0.004384,0.005984,0.006304,0.007808,0.13536,0.006112
+1304,1260.5,0.793335,0.392832,0.005824,0.213696,0.00416,0.005824,0.00544,0.006944,0.006304,0.138592,0.006048
+1305,1320.86,0.75708,0.402656,0.006144,0.221184,0.00528,0.004896,0.006112,0.00624,0.00784,0.138848,0.006112
+1306,1166.29,0.857422,0.408992,0.005824,0.2136,0.005728,0.004512,0.005856,0.006432,0.007584,0.14192,0.017536
+1307,1350.26,0.740601,0.394112,0.005024,0.217056,0.00528,0.004864,0.00624,0.007552,0.006784,0.135168,0.006144
+1308,929.641,1.07568,0.638592,0.006144,0.456448,0.005728,0.004768,0.006144,0.007424,0.006816,0.13904,0.00608
+1309,1160.83,0.86145,0.39408,0.004992,0.219072,0.004096,0.005856,0.005504,0.006976,0.00624,0.135168,0.006176
+1310,842.885,1.1864,0.659456,0.008192,0.47104,0.006016,0.004224,0.006016,0.006272,0.007616,0.145024,0.005056
+1311,1230.21,0.812866,0.39952,0.005824,0.219392,0.00464,0.005184,0.005056,0.007424,0.006912,0.139104,0.005984
+1312,1230.77,0.8125,0.393568,0.005824,0.21328,0.00448,0.005184,0.006816,0.006432,0.007392,0.138048,0.006112
+1313,1249.73,0.800171,0.389568,0.005824,0.215808,0.005248,0.004896,0.00592,0.006464,0.007616,0.131648,0.006144
+1314,1204.35,0.830322,0.39312,0.005856,0.214016,0.004096,0.005888,0.004608,0.007168,0.006912,0.138528,0.006048
+1315,1321.93,0.75647,0.395264,0.005952,0.219296,0.004128,0.005696,0.004544,0.008,0.006336,0.135168,0.006144
+1316,809.007,1.23608,0.407008,0.006176,0.225024,0.00432,0.005536,0.004704,0.00768,0.006656,0.141152,0.00576
+1317,1550.93,0.644775,0.3944,0.006048,0.220896,0.005536,0.004864,0.005504,0.006976,0.006176,0.132416,0.005984
+1318,640.751,1.56067,0.407552,0.008192,0.233024,0.004544,0.005152,0.005088,0.007328,0.006848,0.131232,0.006144
+1319,1316.41,0.759644,0.395264,0.006176,0.217056,0.005376,0.004864,0.005536,0.006752,0.007264,0.136096,0.006144
+1320,1170.62,0.854248,0.390336,0.006144,0.214976,0.00416,0.005664,0.006144,0.006624,0.006144,0.134496,0.005984
+1321,1338.56,0.74707,0.402496,0.006144,0.218816,0.004416,0.005408,0.00608,0.006944,0.007488,0.14112,0.00608
+1322,1148.95,0.870361,0.39312,0.005792,0.215456,0.005248,0.004864,0.005472,0.006944,0.006176,0.137152,0.006016
+1323,983.788,1.01648,0.632032,0.005696,0.45072,0.004608,0.006144,0.00592,0.00768,0.00688,0.138272,0.006112
+1324,1240.08,0.806396,0.399392,0.006048,0.222336,0.00496,0.004224,0.006112,0.006176,0.00784,0.13552,0.006176
+1325,1167.62,0.856445,0.412352,0.0048,0.23952,0.004192,0.005632,0.00464,0.007808,0.006496,0.13312,0.006144
+1326,703.659,1.42114,0.395904,0.007936,0.219616,0.004512,0.005312,0.004928,0.008064,0.00768,0.131712,0.006144
+1327,1373.57,0.728027,0.39072,0.006176,0.216704,0.004448,0.005408,0.004832,0.007744,0.006592,0.132672,0.006144
+1328,1201.7,0.832153,0.3912,0.006144,0.216832,0.004352,0.006112,0.00544,0.00688,0.006144,0.13312,0.006176
+1329,1318.1,0.758667,0.38912,0.006048,0.213088,0.005664,0.004576,0.005792,0.006496,0.007296,0.134016,0.006144
+1330,1230.58,0.812622,0.38784,0.004992,0.216096,0.00496,0.004096,0.00608,0.006208,0.007584,0.13168,0.006144
+1331,1052.69,0.949951,0.400544,0.006176,0.218496,0.004704,0.00512,0.005152,0.007456,0.006848,0.14048,0.006112
+1332,1287.65,0.776611,0.390976,0.005856,0.215392,0.005696,0.004544,0.005792,0.008032,0.006656,0.132864,0.006144
+1333,717.087,1.39453,0.911104,0.006176,0.728704,0.005632,0.00496,0.006112,0.006176,0.007808,0.139392,0.006144
+1334,1214.71,0.823242,0.407872,0.005088,0.23504,0.004576,0.005888,0.005472,0.00688,0.006336,0.132448,0.006144
+1335,1299.7,0.769409,0.396096,0.005024,0.214944,0.004096,0.005888,0.005472,0.006848,0.006368,0.141312,0.006144
+1336,1350.48,0.740479,0.392544,0.006144,0.21696,0.004224,0.0056,0.004672,0.007872,0.006432,0.134528,0.006112
+1337,1190.18,0.84021,0.3952,0.006144,0.21712,0.005632,0.004576,0.005792,0.006496,0.007392,0.135968,0.00608
+1338,1351.15,0.740112,0.395584,0.005856,0.217504,0.004288,0.005536,0.004704,0.007808,0.00768,0.136064,0.006144
+1339,970.961,1.02991,0.395104,0.006144,0.212992,0.005792,0.004448,0.00592,0.006432,0.007712,0.139552,0.006112
+1340,1355.39,0.737793,0.388384,0.00592,0.214752,0.004608,0.005216,0.005056,0.007296,0.006816,0.132608,0.006112
+1341,903.995,1.1062,0.876864,0.005792,0.696992,0.006144,0.005952,0.005472,0.007008,0.007584,0.135744,0.006176
+1342,1017.26,0.983032,0.389696,0.005792,0.216992,0.004896,0.004288,0.006048,0.006272,0.00736,0.131872,0.006176
+1343,1210.76,0.825928,0.392576,0.006112,0.215072,0.0056,0.00464,0.005728,0.00656,0.006304,0.136416,0.006144
+1344,1282.81,0.779541,0.393216,0.006112,0.216256,0.00496,0.004096,0.006144,0.008,0.006336,0.136352,0.00496
+1345,1207.9,0.827881,0.395264,0.006144,0.212992,0.0056,0.00464,0.005632,0.006688,0.00784,0.139584,0.006144
+1346,1227.82,0.814453,0.3912,0.006144,0.21712,0.005312,0.004896,0.0056,0.00672,0.006112,0.13312,0.006176
+1347,878.216,1.13867,0.41744,0.006144,0.231456,0.00512,0.005088,0.00592,0.007872,0.00672,0.143104,0.006016
+1348,1449.14,0.690063,0.403456,0.005824,0.222112,0.005312,0.004864,0.005664,0.006688,0.006176,0.14048,0.006336
+1349,482.592,2.07214,0.415904,0.007936,0.233888,0.004512,0.005312,0.004928,0.008192,0.00752,0.137536,0.00608
+1350,1079.46,0.926392,0.41168,0.006016,0.237312,0.00448,0.005344,0.004896,0.007776,0.00656,0.13312,0.006176
+1351,1241.4,0.805542,0.439808,0.006144,0.253792,0.004256,0.005568,0.004672,0.007872,0.006464,0.144896,0.006144
+1352,1304.25,0.766724,0.407936,0.00512,0.229376,0.005952,0.004288,0.006048,0.006272,0.007424,0.137472,0.005984
+1353,937.944,1.06616,0.644384,0.005824,0.458848,0.0056,0.005088,0.005984,0.006336,0.007456,0.143232,0.006016
+1354,921.381,1.08533,0.406208,0.004992,0.227168,0.005152,0.004864,0.005504,0.007008,0.007776,0.137632,0.006112
+1355,1273.83,0.785034,0.430112,0.006048,0.243552,0.004352,0.00544,0.0048,0.008192,0.007584,0.143968,0.006176
+1356,850.852,1.17529,0.898912,0.006144,0.720288,0.004704,0.005792,0.005504,0.007136,0.006144,0.13712,0.00608
+1357,1113.19,0.898315,0.404832,0.005984,0.219296,0.005728,0.004512,0.005856,0.006432,0.007584,0.143328,0.006112
+1358,1239.71,0.806641,0.397312,0.005952,0.21728,0.005216,0.004864,0.005472,0.006944,0.006176,0.139264,0.006144
+1359,1354.72,0.738159,0.410336,0.005856,0.222176,0.005888,0.004352,0.006016,0.006272,0.007936,0.145664,0.006176
+1360,1029.4,0.971436,0.471808,0.004992,0.26304,0.00496,0.004256,0.006048,0.01648,0.006144,0.159744,0.006144
+1361,547.228,1.82739,0.45264,0.006144,0.239616,0.004096,0.005856,0.014624,0.007392,0.022336,0.1464,0.006176
+1362,1007.13,0.99292,0.948928,0.005856,0.76608,0.00496,0.005728,0.004576,0.00784,0.006464,0.14128,0.006144
+1363,1001.71,0.998291,0.403488,0.006112,0.219168,0.004096,0.00576,0.004512,0.007968,0.006336,0.14336,0.006176
+1364,1135.1,0.880981,0.404416,0.005056,0.229376,0.004096,0.00576,0.004608,0.007808,0.0064,0.136224,0.005088
+1365,846.981,1.18066,0.420736,0.005024,0.239584,0.005216,0.004896,0.005504,0.006944,0.007392,0.140032,0.006144
+1366,824.062,1.2135,0.41968,0.006144,0.247232,0.004672,0.005152,0.005088,0.007296,0.006944,0.131168,0.005984
+1367,1086.47,0.92041,0.432288,0.005792,0.252448,0.005728,0.00448,0.005696,0.006592,0.00736,0.138048,0.006144
+1368,1172.8,0.852661,0.405536,0.006144,0.231456,0.005728,0.00448,0.005856,0.007648,0.006848,0.1312,0.006176
+1369,831.085,1.20325,0.900864,0.005856,0.715488,0.006144,0.005856,0.005504,0.007072,0.006176,0.142656,0.006112
+1370,1159.03,0.862793,0.399392,0.006144,0.219168,0.00544,0.004768,0.005632,0.008064,0.006784,0.137216,0.006176
+1371,1253.17,0.797974,0.425088,0.005824,0.239936,0.00528,0.004768,0.005472,0.007008,0.006176,0.14448,0.006144
+1372,1263.81,0.79126,0.40064,0.006144,0.22064,0.00464,0.005184,0.00624,0.006944,0.00624,0.138528,0.00608
+1373,1253.94,0.797485,0.391168,0.00608,0.213056,0.005312,0.004864,0.005472,0.006848,0.006176,0.137216,0.006144
+1374,879.159,1.13745,0.620768,0.00512,0.44848,0.005888,0.004352,0.00592,0.006368,0.007808,0.130688,0.006144
+1375,1318.74,0.758301,0.407552,0.00608,0.222688,0.004704,0.004288,0.005952,0.007424,0.006912,0.14336,0.006144
+1376,882.283,1.13342,0.894336,0.006048,0.7128,0.005792,0.004448,0.00592,0.006368,0.007552,0.139328,0.00608
+1377,1052.82,0.949829,0.401376,0.006144,0.217088,0.005952,0.004288,0.006048,0.00624,0.008,0.141504,0.006112
+1378,1192.78,0.838379,0.393056,0.006144,0.21712,0.00544,0.004768,0.00544,0.006848,0.006144,0.135136,0.006016
+1379,1217.24,0.821533,0.397312,0.005952,0.215232,0.005664,0.004576,0.005824,0.006464,0.00768,0.139776,0.006144
+1380,1291.5,0.774292,0.391808,0.005824,0.216,0.005632,0.004608,0.006144,0.007392,0.006816,0.133248,0.006144
+1381,1261.86,0.79248,0.394016,0.004832,0.21296,0.005664,0.004576,0.0056,0.006688,0.00784,0.139616,0.00624
+1382,843.145,1.18604,0.41984,0.00592,0.23984,0.005888,0.004352,0.005984,0.006336,0.007264,0.138144,0.006112
+1383,1139.04,0.87793,0.42192,0.005888,0.23776,0.00416,0.005664,0.004576,0.00784,0.006496,0.14336,0.006176
+1384,853.244,1.172,0.885312,0.005024,0.707584,0.004992,0.005536,0.004704,0.008192,0.007232,0.135968,0.00608
+1385,841.068,1.18896,0.414144,0.005792,0.223264,0.004864,0.005568,0.004672,0.007776,0.00656,0.149504,0.006144
+1386,1429.42,0.699585,0.403456,0.006176,0.219104,0.004096,0.005856,0.005472,0.007104,0.007552,0.141952,0.006144
+1387,1407.32,0.710571,0.411648,0.006144,0.2224,0.004928,0.005632,0.004608,0.007808,0.006528,0.147456,0.006144
+1388,1207.9,0.827881,0.405696,0.005856,0.219648,0.004576,0.005216,0.005024,0.007488,0.00688,0.144896,0.006112
+1389,861.047,1.16138,0.636928,0.006144,0.447808,0.0048,0.006144,0.0056,0.006688,0.00736,0.14624,0.006144
+1390,1407.8,0.710327,0.405216,0.005856,0.21904,0.004832,0.005536,0.004736,0.00752,0.006752,0.144928,0.006016
+1391,886.58,1.12793,0.887744,0.005088,0.702432,0.006112,0.005568,0.004704,0.007744,0.006592,0.14336,0.006144
+1392,976.75,1.0238,0.404128,0.005824,0.219872,0.004352,0.005472,0.004768,0.007456,0.00688,0.14336,0.006144
+1393,1169.78,0.854858,0.391008,0.006144,0.212,0.004768,0.004416,0.006144,0.006208,0.007872,0.137344,0.006112
+1394,1410.23,0.709106,0.393216,0.006176,0.21296,0.005312,0.004896,0.005536,0.006784,0.006176,0.139232,0.006144
+1395,1198.01,0.834717,0.395264,0.00608,0.212288,0.004864,0.004096,0.006144,0.006144,0.008096,0.141408,0.006144
+1396,1325.78,0.754272,0.403456,0.006144,0.217088,0.005536,0.004704,0.005472,0.006816,0.006176,0.145376,0.006144
+1397,934.2,1.07043,0.403552,0.005792,0.215488,0.004096,0.006048,0.006208,0.006176,0.007552,0.146048,0.006144
+1398,1370.36,0.729736,0.3976,0.005888,0.219008,0.004768,0.005216,0.006112,0.007104,0.006144,0.137216,0.006144
+1399,732.999,1.36426,0.677888,0.008192,0.495616,0.006048,0.0056,0.004736,0.007808,0.006528,0.137216,0.006144
+1400,1285.42,0.777954,0.39936,0.006176,0.218272,0.004928,0.004096,0.006048,0.00624,0.00768,0.139776,0.006144
+1401,1293.34,0.773193,0.39632,0.005984,0.212704,0.004544,0.00528,0.00496,0.007808,0.00656,0.142336,0.006144
+1402,1328.36,0.752808,0.39312,0.006144,0.21296,0.004128,0.005792,0.005472,0.007168,0.006176,0.139232,0.006048
+1403,1203.29,0.831055,0.39632,0.005824,0.215104,0.004352,0.005408,0.004832,0.007456,0.006912,0.139232,0.0072
+1404,1339.22,0.746704,0.393216,0.006048,0.213088,0.005152,0.004864,0.005472,0.00704,0.006144,0.139264,0.006144
+1405,905.193,1.10474,0.396672,0.006144,0.212288,0.0048,0.004128,0.006112,0.007168,0.006944,0.142976,0.006112
+1406,1194.52,0.837158,0.405728,0.005824,0.22816,0.005696,0.004544,0.005792,0.006528,0.006112,0.13712,0.005952
+1407,682.496,1.46521,0.39936,0.008192,0.21632,0.004864,0.004128,0.006112,0.007232,0.006816,0.139552,0.006144
+1408,1292.11,0.773926,0.400032,0.005824,0.217472,0.004704,0.005248,0.004992,0.00768,0.006688,0.14128,0.006144
+1409,1257.41,0.795288,0.39248,0.005824,0.210592,0.004896,0.004096,0.006144,0.007264,0.00704,0.140512,0.006112
+1410,1201.53,0.832275,0.395264,0.005792,0.215392,0.005472,0.004768,0.005888,0.0064,0.007424,0.137984,0.006144
+1411,1218.87,0.820435,0.39136,0.005824,0.213504,0.00416,0.005664,0.005824,0.006944,0.0072,0.136128,0.006112
+1412,1019.03,0.981323,0.62976,0.00512,0.452608,0.005856,0.004384,0.005952,0.006336,0.007456,0.135904,0.006144
+1413,1220.86,0.819092,0.395264,0.006144,0.221216,0.004064,0.005888,0.005472,0.006656,0.00656,0.13312,0.006144
+1414,1264.78,0.790649,0.388544,0.005856,0.2136,0.005472,0.004768,0.005632,0.006656,0.007232,0.132032,0.007296
+1415,796.5,1.25549,0.3912,0.008192,0.212992,0.005312,0.004864,0.005504,0.00672,0.006432,0.135008,0.006176
+1416,1347.81,0.741943,0.394528,0.006144,0.217088,0.004096,0.006144,0.005792,0.006496,0.007424,0.1352,0.006144
+1417,1248.97,0.800659,0.388,0.005024,0.212288,0.0048,0.004128,0.00608,0.007232,0.007136,0.135168,0.006144
+1418,1235.22,0.80957,0.393952,0.004992,0.21488,0.005856,0.004384,0.006176,0.006112,0.007968,0.13744,0.006144
+1419,700.95,1.42664,0.434176,0.00608,0.25136,0.004704,0.004096,0.006144,0.006144,0.007648,0.141856,0.006144
+1420,1287.04,0.776978,0.400608,0.006144,0.219136,0.005536,0.004704,0.006144,0.007232,0.007008,0.13888,0.005824
+1421,1309.88,0.763428,0.391936,0.005824,0.215136,0.004928,0.004096,0.00608,0.006208,0.007552,0.137056,0.005056
+1422,690.55,1.44812,0.404608,0.008192,0.219136,0.004096,0.005792,0.005472,0.007136,0.006208,0.142464,0.006112
+1423,1265.37,0.790283,0.397856,0.005856,0.215072,0.004896,0.004096,0.006176,0.00736,0.006944,0.141312,0.006144
+1424,1258.95,0.794312,0.38912,0.006144,0.210944,0.005376,0.004736,0.004224,0.00784,0.006528,0.137184,0.006144
+1425,1266.54,0.789551,0.38816,0.006144,0.210944,0.005664,0.004576,0.005536,0.006752,0.0072,0.1352,0.006144
+1426,1264.2,0.791016,0.394528,0.006176,0.2128,0.004256,0.006048,0.00544,0.00688,0.006208,0.140704,0.006016
+1427,975.238,1.02539,0.624704,0.005056,0.440064,0.006208,0.004256,0.006016,0.006304,0.007968,0.142752,0.00608
+1428,1228,0.814331,0.3992,0.005824,0.211808,0.005696,0.004544,0.00576,0.006528,0.00736,0.145664,0.006016
+1429,919.623,1.0874,0.878304,0.006144,0.694272,0.005888,0.005568,0.00496,0.007648,0.006656,0.141056,0.006112
+1430,1021.57,0.978882,0.397312,0.006144,0.210944,0.005824,0.004416,0.006176,0.007168,0.006848,0.143648,0.006144
+1431,1280.6,0.780884,0.397376,0.005792,0.212672,0.004832,0.0056,0.00464,0.00784,0.006496,0.14336,0.006144
+1432,1234.29,0.810181,0.396288,0.00512,0.210944,0.005856,0.005536,0.00496,0.007456,0.006816,0.143424,0.006176
+1433,1252.98,0.798096,0.397664,0.005856,0.211424,0.004256,0.006144,0.005856,0.006432,0.007936,0.143616,0.006144
+1434,1253.37,0.797852,0.393216,0.005856,0.210656,0.004864,0.004352,0.005888,0.007456,0.006592,0.1416,0.005952
+1435,1229.29,0.813477,0.393216,0.006144,0.210816,0.004224,0.00608,0.005536,0.006816,0.006144,0.141312,0.006144
+1436,1092.41,0.915405,0.402144,0.005856,0.22016,0.005248,0.004864,0.005504,0.006848,0.006208,0.141312,0.006144
+1437,1342.07,0.745117,0.401312,0.00576,0.217312,0.004288,0.005536,0.004736,0.007776,0.006528,0.143264,0.006112
+1438,1297.85,0.770508,0.395584,0.004992,0.212576,0.004352,0.005472,0.004768,0.007488,0.006848,0.142976,0.006112
+1439,1243.66,0.804077,0.392352,0.006144,0.210944,0.005568,0.004672,0.005696,0.006592,0.007296,0.1392,0.00624
+1440,1264.78,0.790649,0.38912,0.00592,0.210336,0.004928,0.005184,0.005088,0.007712,0.006592,0.1384,0.00496
+1441,1249.73,0.800171,0.387712,0.005792,0.209888,0.005888,0.004352,0.006112,0.006176,0.007808,0.135552,0.006144
+1442,1238.77,0.807251,0.389184,0.005824,0.209248,0.00592,0.00432,0.006144,0.007168,0.006848,0.137536,0.006176
+1443,1238.02,0.807739,0.387872,0.005024,0.21248,0.00448,0.00544,0.004832,0.007584,0.00672,0.135168,0.006144
+1444,1252.98,0.798096,0.387104,0.006016,0.210752,0.004416,0.00576,0.005568,0.007008,0.00624,0.135168,0.006176
+1445,1268.7,0.788208,0.385024,0.006016,0.212192,0.004928,0.004192,0.006016,0.006272,0.007936,0.131328,0.006144
+1446,1239.15,0.807007,0.394336,0.006144,0.213024,0.005408,0.0048,0.006144,0.00752,0.006816,0.1384,0.00608
+1447,1257.21,0.79541,0.386432,0.005856,0.212416,0.00496,0.005216,0.005056,0.007456,0.00688,0.132608,0.005984
+1448,1260.5,0.793335,0.38304,0.005824,0.209344,0.005504,0.004736,0.005312,0.006816,0.006304,0.13312,0.00608
+1449,1238.77,0.807251,0.387552,0.005856,0.21152,0.004192,0.005632,0.004608,0.007904,0.006432,0.135168,0.00624
+1450,1273.63,0.785156,0.384384,0.006144,0.210784,0.004256,0.006048,0.005472,0.006912,0.00624,0.132512,0.006016
+1451,1260.5,0.793335,0.383264,0.005856,0.2096,0.004096,0.005728,0.004512,0.007872,0.006464,0.133024,0.006112
+1452,1262.44,0.792114,0.39008,0.005056,0.21856,0.004672,0.005152,0.005088,0.0072,0.006848,0.13136,0.006144
+1453,1280.6,0.780884,0.384672,0.006144,0.210944,0.004128,0.006016,0.005472,0.006912,0.006304,0.132672,0.00608
+1454,1282.2,0.779907,0.3904,0.006144,0.213024,0.005376,0.004832,0.006048,0.00624,0.007808,0.134816,0.006112
+1455,889.565,1.12415,0.397312,0.005856,0.223552,0.005856,0.004352,0.005888,0.0064,0.00768,0.131584,0.006144
+1456,1535.52,0.651245,0.397664,0.005856,0.219584,0.004288,0.005536,0.004704,0.007744,0.006592,0.137216,0.006144
+1457,1212.91,0.824463,0.388384,0.006176,0.21296,0.00544,0.0048,0.005568,0.00672,0.007584,0.1328,0.006336
+1458,1258.95,0.794312,0.405504,0.006176,0.229344,0.0056,0.00464,0.006144,0.0072,0.006816,0.134784,0.0048
+1459,1278,0.782471,0.387072,0.006016,0.21312,0.005504,0.004736,0.005632,0.006688,0.007424,0.131808,0.006144
+1460,1277.6,0.782715,0.390592,0.00608,0.21488,0.00432,0.005536,0.004704,0.007552,0.006784,0.134752,0.005984
+1461,1262.06,0.792358,0.38896,0.005824,0.213248,0.00448,0.005376,0.004864,0.007616,0.00672,0.13472,0.006112
+1462,1244.42,0.803589,0.390912,0.006144,0.212992,0.00512,0.004896,0.005504,0.00688,0.006272,0.137088,0.006016
+1463,1254.9,0.796875,0.392832,0.005952,0.215232,0.004096,0.00576,0.006528,0.007488,0.006848,0.134784,0.006144
+1464,1274.42,0.784668,0.388864,0.006144,0.21296,0.004128,0.005696,0.004608,0.00768,0.006592,0.13504,0.006016
+1465,1261.08,0.792969,0.386976,0.005952,0.212192,0.004928,0.004256,0.005568,0.00672,0.007264,0.133984,0.006112
+1466,1244.98,0.803223,0.389696,0.005824,0.213248,0.004736,0.004096,0.006144,0.007328,0.006976,0.1352,0.006144
+1467,1259.92,0.793701,0.38864,0.007264,0.211872,0.005632,0.004608,0.00576,0.006528,0.007328,0.133568,0.00608
+1468,1282.4,0.779785,0.389152,0.005824,0.212576,0.004864,0.004096,0.006144,0.007872,0.006464,0.135168,0.006144
+1469,1243.47,0.804199,0.388192,0.006144,0.212992,0.00576,0.00448,0.005664,0.006624,0.006368,0.134016,0.006144
+1470,1214.35,0.823486,0.388,0.005024,0.212992,0.005344,0.004864,0.006048,0.006272,0.007744,0.133568,0.006144
+1471,1185.53,0.843506,0.389472,0.005824,0.215168,0.004704,0.004224,0.006016,0.007264,0.006976,0.133152,0.006144
+1472,1311.56,0.762451,0.391328,0.005824,0.21184,0.004192,0.005664,0.00656,0.006208,0.006304,0.138624,0.006112
+1473,1252.98,0.798096,0.400864,0.005856,0.211552,0.004224,0.0056,0.01664,0.006432,0.00752,0.136928,0.006112
+1474,1266.93,0.789307,0.387072,0.006144,0.214304,0.004832,0.004096,0.006144,0.007264,0.007072,0.131072,0.006144
+1475,1115.77,0.89624,0.397312,0.006144,0.218336,0.004896,0.004096,0.006144,0.00816,0.0064,0.136992,0.006144
+1476,1328.15,0.75293,0.39408,0.00512,0.217088,0.005376,0.004864,0.005472,0.006816,0.007488,0.135872,0.005984
+1477,1270.87,0.786865,0.393216,0.006176,0.216064,0.004928,0.004256,0.005984,0.006304,0.007584,0.135776,0.006144
+1478,1235.6,0.809326,0.388416,0.006144,0.212864,0.004224,0.0056,0.004672,0.00784,0.006464,0.134528,0.00608
+1479,1267.72,0.788818,0.390848,0.006176,0.214368,0.004736,0.005696,0.006592,0.006176,0.007776,0.133184,0.006144
+1480,1241.21,0.805664,0.396384,0.006144,0.217088,0.005248,0.004864,0.005472,0.006848,0.00624,0.138496,0.005984
+1481,1266.54,0.789551,0.389824,0.004896,0.214912,0.005568,0.004672,0.005632,0.006656,0.007264,0.134048,0.006176
+1482,1272.05,0.786133,0.390656,0.00608,0.213056,0.004096,0.00576,0.005568,0.007008,0.00624,0.136832,0.006016
+1483,1274.03,0.784912,0.390048,0.005024,0.214464,0.004672,0.005152,0.005088,0.00736,0.006944,0.1352,0.006144
+1484,1245.74,0.802734,0.393792,0.005824,0.21184,0.005504,0.004736,0.005696,0.006592,0.007328,0.140128,0.006144
+1485,1208.62,0.827393,0.391264,0.006144,0.21504,0.005312,0.004896,0.005472,0.006848,0.00736,0.133952,0.00624
+1486,1255.29,0.796631,0.399584,0.00624,0.213152,0.005184,0.004864,0.006304,0.006272,0.007744,0.14368,0.006144
+1487,1254.52,0.797119,0.393216,0.006048,0.212704,0.00448,0.005344,0.004896,0.00768,0.006656,0.139264,0.006144
+1488,1238.58,0.807373,0.40352,0.006528,0.211072,0.006112,0.004192,0.006048,0.007168,0.013312,0.143008,0.00608
+1489,1240.46,0.806152,0.399392,0.006144,0.21504,0.005728,0.004512,0.005856,0.006432,0.00768,0.141824,0.006176
+1490,1234.48,0.810059,0.406784,0.006144,0.21504,0.004096,0.005824,0.004416,0.007328,0.007008,0.150816,0.006112
+1491,1230.03,0.812988,0.401408,0.00592,0.214848,0.004512,0.00592,0.00576,0.006784,0.007168,0.144352,0.006144
+1492,1246.5,0.802246,0.413728,0.018496,0.21152,0.005728,0.00448,0.005888,0.006432,0.0072,0.147968,0.006016
+1493,1237.84,0.807861,0.402656,0.006144,0.215072,0.0056,0.004608,0.0056,0.006688,0.006176,0.146752,0.006016
+1494,742.836,1.34619,0.43632,0.005824,0.235936,0.00528,0.004896,0.005472,0.00688,0.00624,0.160704,0.005088
+1495,1613.23,0.619873,0.404928,0.005824,0.219168,0.004672,0.005152,0.006176,0.006944,0.006304,0.144512,0.006176
+1496,1205.06,0.829834,0.39152,0.005856,0.213632,0.004096,0.00576,0.004608,0.007968,0.00624,0.137216,0.006144
+1497,1215.79,0.82251,0.423936,0.006144,0.241536,0.004224,0.005568,0.004672,0.00784,0.006496,0.141312,0.006144
+1498,1073.94,0.931152,0.424384,0.004992,0.229376,0.005504,0.004736,0.0056,0.006688,0.006144,0.154816,0.006528
+1499,1242.72,0.804688,0.391296,0.00512,0.212832,0.004256,0.005632,0.004608,0.007904,0.006432,0.1384,0.006112
+1500,1208.62,0.827393,0.409856,0.005024,0.231296,0.004096,0.005792,0.005472,0.006912,0.0064,0.13888,0.005984
+1501,1267.72,0.788818,0.38912,0.006144,0.210944,0.00608,0.00416,0.006144,0.006144,0.007744,0.135616,0.006144
+1502,1256.83,0.795654,0.391168,0.005856,0.211168,0.004384,0.005408,0.006144,0.00688,0.006144,0.139168,0.006016
+1503,1264.59,0.790771,0.391104,0.005792,0.21136,0.005248,0.004896,0.005344,0.006784,0.0064,0.139232,0.006048
+1504,1300.32,0.769043,0.390784,0.006144,0.21216,0.004928,0.004128,0.006048,0.006208,0.007488,0.137664,0.006016
+1505,1247.26,0.801758,0.402784,0.006144,0.219136,0.005312,0.004896,0.005472,0.006816,0.006176,0.142688,0.006144
+1506,1025.28,0.975342,0.399392,0.005664,0.213024,0.004928,0.004128,0.006048,0.00624,0.007328,0.14592,0.006112
+1507,1178.37,0.848633,0.452608,0.005824,0.240544,0.005408,0.004832,0.014336,0.008096,0.022272,0.145216,0.00608
+1508,1154.45,0.866211,0.412352,0.004992,0.21696,0.005632,0.004608,0.01552,0.007008,0.00736,0.144192,0.00608
+1509,1220.5,0.819336,0.416256,0.005792,0.235584,0.004896,0.004096,0.006144,0.006144,0.008032,0.139424,0.006144
+1510,1278,0.782471,0.393216,0.005984,0.211136,0.005376,0.004832,0.005408,0.006912,0.006112,0.141312,0.006144
+1511,1264.98,0.790527,0.38912,0.006144,0.212128,0.004928,0.004128,0.005888,0.0064,0.00768,0.13568,0.006144
+1512,1248.4,0.801025,0.394208,0.006048,0.212576,0.004512,0.005184,0.005056,0.007232,0.006976,0.14064,0.005984
+1513,957.681,1.04419,0.417792,0.006144,0.243712,0.004096,0.005792,0.005472,0.007072,0.00624,0.13312,0.006144
+1514,1261.08,0.792969,0.40176,0.005056,0.222592,0.004736,0.004096,0.006144,0.006176,0.007712,0.139168,0.00608
+1515,1287.65,0.776611,0.392192,0.00512,0.216512,0.004672,0.00512,0.006656,0.006656,0.007616,0.133696,0.006144
+1516,1270.08,0.787354,0.396544,0.005824,0.21328,0.004128,0.005696,0.004544,0.007808,0.006528,0.141312,0.007424
+1517,1274.03,0.784912,0.389696,0.005824,0.21184,0.004096,0.005856,0.005472,0.006912,0.006336,0.137216,0.006144
+1518,1259.92,0.793701,0.401408,0.006144,0.21072,0.00432,0.005504,0.004736,0.007712,0.006624,0.149504,0.006144
+1519,1239.33,0.806885,0.38912,0.006144,0.210944,0.005696,0.004544,0.00608,0.006208,0.007552,0.135808,0.006144
+1520,1200.12,0.833252,0.387456,0.005856,0.209568,0.005472,0.004768,0.005408,0.00688,0.006176,0.137184,0.006144
+1521,1279.2,0.781738,0.386656,0.006048,0.212064,0.004928,0.004288,0.00608,0.00624,0.007136,0.133792,0.00608
+1522,1264.59,0.790771,0.400672,0.006144,0.219168,0.00576,0.004448,0.005984,0.006304,0.007296,0.139616,0.005952
+1523,1283.21,0.779297,0.391168,0.005984,0.212864,0.004384,0.00544,0.004832,0.00768,0.006624,0.137248,0.006112
+1524,1271.65,0.786377,0.391232,0.005824,0.211008,0.004416,0.005408,0.004832,0.007552,0.006784,0.139264,0.006144
+1525,1246.12,0.80249,0.393024,0.005824,0.211872,0.005216,0.004768,0.005728,0.006816,0.00736,0.139424,0.006016
+1526,1249.92,0.800049,0.399616,0.005024,0.210944,0.004096,0.005824,0.006112,0.006496,0.007296,0.14784,0.005984
+1527,1270.08,0.787354,0.391168,0.006016,0.211104,0.005344,0.004864,0.006144,0.006144,0.007776,0.137632,0.006144
+1528,1278.8,0.781982,0.393216,0.00592,0.210368,0.004896,0.004096,0.005792,0.006496,0.007424,0.14208,0.006144
+1529,1245.74,0.802734,0.393216,0.006144,0.210944,0.005728,0.004512,0.006144,0.007424,0.006912,0.139264,0.006144
+1530,1246.12,0.80249,0.391296,0.005824,0.2112,0.004256,0.005568,0.004672,0.00784,0.006496,0.139264,0.006176
+1531,1255.67,0.796387,0.39072,0.005792,0.213184,0.0048,0.004096,0.007776,0.00656,0.007456,0.134944,0.006112
+1532,684.035,1.46191,0.400288,0.005024,0.219136,0.005888,0.004352,0.005952,0.006336,0.007552,0.141056,0.004992
+1533,1249.54,0.800293,0.395296,0.005824,0.212704,0.004864,0.004128,0.006112,0.006272,0.007584,0.141696,0.006112
+1534,1283.21,0.779297,0.390368,0.006144,0.210944,0.004096,0.006144,0.005536,0.006752,0.006144,0.138592,0.006016
+1535,1262.64,0.791992,0.38704,0.005856,0.209344,0.005984,0.004256,0.005984,0.006304,0.007392,0.13584,0.00608
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..83e4bc7
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,146.629,9.40658,6.65268,6.64629,0.00638269
+max_1024,6400,2322.06,8.0689,8.06282,0.261536
+min_1024,0.430652,0.15625,6.30189,6.29574,0.00464
+512,6400,0.15625,6.30858,6.30243,0.006144
+513,0.430652,2322.06,6.31046,6.30429,0.006176
+514,150.91,6.62646,6.62067,6.61466,0.006016
+515,139.491,7.16895,6.96861,6.96262,0.005984
+516,137.699,7.26221,6.31194,6.30579,0.006144
+517,145.682,6.86426,6.62899,6.62294,0.006048
+518,145.001,6.89648,6.96944,6.96422,0.005216
+519,133.9,7.46826,6.31373,6.30771,0.006016
+520,147.211,6.79297,6.608,6.60195,0.006048
+521,132.437,7.55078,6.97078,6.96477,0.006016
+522,138.697,7.20996,6.31213,6.30598,0.006144
+523,146.39,6.83105,6.32118,6.30518,0.016
+524,138.136,7.23926,6.59261,6.58742,0.005184
+525,150.455,6.64648,6.96579,6.95978,0.006016
+526,120.428,8.30371,6.30973,6.30227,0.007456
+527,161.133,6.20605,6.59258,6.58637,0.006208
+528,145.983,6.8501,7.2808,7.27478,0.006016
+529,130.879,7.64062,6.8001,6.79398,0.006112
+530,128.732,7.76807,6.59328,6.58714,0.006144
+531,136.898,7.30469,6.33062,6.32448,0.006144
+532,135.414,7.38477,6.31994,6.30579,0.014144
+533,143.77,6.95557,7.32688,7.31955,0.007328
+534,122.065,8.19238,6.31101,6.30499,0.006016
+535,148.945,6.71387,6.31194,6.30579,0.006144
+536,150.799,6.63135,7.05597,7.04982,0.006144
+537,126.576,7.90039,6.30374,6.2976,0.006144
+538,152.836,6.54297,6.30592,6.29933,0.006592
+539,142.599,7.0127,7.0535,7.04736,0.006144
+540,132.078,7.57129,6.31133,6.30538,0.005952
+541,147.148,6.7959,6.61206,6.60602,0.006048
+542,143.851,6.95166,7.00509,6.99894,0.006144
+543,132.052,7.57275,6.6048,6.59866,0.006144
+544,143.982,6.94531,7.31744,7.31136,0.00608
+545,125.752,7.95215,6.95296,6.94698,0.005984
+546,136.461,7.32812,6.31402,6.30784,0.006176
+547,144.378,6.92627,6.59059,6.58445,0.006144
+548,142.361,7.02441,6.9663,6.96038,0.00592
+549,124.65,8.02246,6.31232,6.30624,0.00608
+550,160.665,6.22412,6.59286,6.58672,0.006144
+551,141.74,7.05518,7.01667,7.00822,0.008448
+552,133.629,7.4834,6.31142,6.30534,0.00608
+553,143.76,6.95605,6.61677,6.61078,0.005984
+554,134.808,7.41797,6.99197,6.97558,0.016384
+555,135.19,7.39697,6.31046,6.30442,0.006048
+556,141.573,7.06348,6.31194,6.30595,0.005984
+557,149.195,6.70264,6.60285,6.59677,0.00608
+558,144.643,6.91357,8.0689,8.06282,0.00608
+559,115.765,8.63818,6.31165,6.3057,0.005952
+560,151.692,6.59229,7.364,7.35795,0.006048
+561,126.553,7.90186,6.31094,6.30496,0.005984
+562,149.773,6.67676,6.31347,6.30749,0.005984
+563,140.322,7.12646,7.05418,7.048,0.006176
+564,132.394,7.55322,6.30646,6.30045,0.006016
+565,145.434,6.87598,6.30579,6.29917,0.006624
+566,149.424,6.69238,7.05933,7.05328,0.006048
+567,129.465,7.72412,6.31194,6.30579,0.006144
+568,147.859,6.76318,6.6176,6.61146,0.006144
+569,138.613,7.21436,6.99555,6.9895,0.006048
+570,138.622,7.21387,6.31024,6.30419,0.006048
+571,146.926,6.80615,6.6089,6.60275,0.006144
+572,136.379,7.33252,6.97139,6.96525,0.006144
+573,137.94,7.24951,6.61453,6.60858,0.005952
+574,140.756,7.10449,7.35155,7.34557,0.005984
+575,127.49,7.84375,6.96515,6.95894,0.006208
+576,132.189,7.56494,6.3087,6.30253,0.006176
+577,150.788,6.63184,6.59696,6.59085,0.006112
+578,140.746,7.10498,6.96634,6.96032,0.006016
+579,136.524,7.32471,6.32192,6.31549,0.006432
+580,145.217,6.88623,6.3103,6.30429,0.006016
+581,148.87,6.71729,6.59232,6.58627,0.006048
+582,141.349,7.07471,7.02243,7.01517,0.007264
+583,134.968,7.40918,6.31194,6.30579,0.006144
+584,148.32,6.74219,6.59798,6.59194,0.006048
+585,140.582,7.11328,7.02432,7.01827,0.006048
+586,134.348,7.44336,6.31194,6.30579,0.006144
+587,145.289,6.88281,6.59779,6.59174,0.006048
+588,148.492,6.73438,6.77843,6.77238,0.006048
+589,124.81,8.01221,6.59661,6.5905,0.006112
+590,141.037,7.09033,7.31152,7.30538,0.006144
+591,124.151,8.05469,6.31018,6.30403,0.006144
+592,149.054,6.70898,6.31206,6.30598,0.00608
+593,143.679,6.95996,7.39126,7.38509,0.006176
+594,125.837,7.94678,6.30579,6.29965,0.006144
+595,133.403,7.49609,6.30429,6.29814,0.006144
+596,167.553,5.96826,7.01309,7.00787,0.005216
+597,132.428,7.55127,6.31002,6.30403,0.005984
+598,143.027,6.9917,6.57203,6.56589,0.006144
+599,138.923,7.19824,7.0207,7.01456,0.006144
+600,136.035,7.35107,6.31328,6.30726,0.006016
+601,151.636,6.59473,6.59427,6.58829,0.005984
+602,140.236,7.13086,6.97242,6.96634,0.00608
+603,130.321,7.67334,6.31101,6.30499,0.006016
+604,152.358,6.56348,6.59667,6.59053,0.006144
+605,145.104,6.8916,7.01222,7.00621,0.006016
+606,116.815,8.56055,6.3119,6.30589,0.006016
+607,153.731,6.50488,6.59296,6.58682,0.006144
+608,149.653,6.68213,6.97344,6.9673,0.006144
+609,129.024,7.75049,6.312,6.30602,0.005984
+610,139.891,7.14844,6.31133,6.30531,0.006016
+611,155.919,6.41357,6.60141,6.59523,0.006176
+612,145.63,6.8667,6.9897,6.98365,0.006048
+613,129.432,7.72607,6.59046,6.58432,0.006144
+614,146.863,6.80908,7.02208,7.0161,0.005984
+615,130.804,7.64502,6.30992,6.30374,0.006176
+616,148.945,6.71387,6.32202,6.30579,0.016224
+617,118.56,8.43457,6.60685,6.6007,0.006144
+618,171.654,5.82568,7.07613,7.07008,0.006048
+619,128.643,7.77344,6.31341,6.30746,0.005952
+620,143.247,6.98096,6.59587,6.58979,0.00608
+621,142.42,7.02148,6.31398,6.30784,0.006144
+622,139.681,7.15918,6.31424,6.3081,0.006144
+623,150.18,6.65869,6.59856,6.59251,0.006048
+624,133.255,7.50439,6.31414,6.308,0.006144
+625,137.468,7.27441,6.31386,6.30784,0.006016
+626,133.979,7.46387,7.36077,7.35472,0.006048
+627,137.137,7.29199,6.31379,6.30774,0.006048
+628,145.31,6.88184,6.31194,6.30579,0.006144
+629,148.052,6.75439,7.0007,6.99459,0.006112
+630,133.151,7.51025,6.30352,6.2969,0.006624
+631,145.248,6.88477,6.30378,6.2976,0.006176
+632,149.435,6.69189,7.39741,7.39123,0.006176
+633,122.73,8.14795,7.02589,7.01987,0.006016
+634,138.688,7.21045,6.61018,6.60416,0.006016
+635,140.236,7.13086,6.96749,6.9623,0.005184
+636,134.87,7.41455,6.31082,6.30563,0.005184
+637,139.396,7.17383,6.62256,6.61654,0.006016
+638,147.785,6.7666,6.98416,6.97802,0.006144
+639,134.374,7.44189,6.30989,6.30374,0.006144
+640,150.235,6.65625,6.60835,6.60237,0.005984
+641,138.341,7.22852,6.9591,6.95296,0.006144
+642,138.725,7.2085,6.31072,6.30454,0.006176
+643,149.152,6.70459,6.59661,6.59046,0.006144
+644,140.64,7.11035,6.96077,6.95478,0.005984
+645,136.807,7.30957,6.31194,6.30595,0.005984
+646,146.056,6.84668,6.59446,6.58848,0.005984
+647,140.921,7.09619,6.9591,6.95296,0.006144
+648,133.472,7.49219,6.59248,6.58653,0.005952
+649,145.765,6.86035,7.26858,7.2625,0.00608
+650,123.784,8.07861,7.10016,7.09411,0.006048
+651,135.289,7.3916,6.30995,6.30378,0.006176
+652,150.378,6.6499,6.31318,6.30707,0.006112
+653,144.266,6.93164,6.59472,6.58861,0.006112
+654,145.001,6.89648,6.79213,6.78602,0.006112
+655,132.514,7.54639,6.31357,6.30758,0.005984
+656,150.655,6.6377,7.27808,7.27197,0.006112
+657,126.67,7.89453,6.30989,6.30374,0.006144
+658,151.951,6.58105,6.30986,6.30374,0.006112
+659,146.025,6.84814,7.30694,7.3009,0.006048
+660,130.704,7.65088,6.31299,6.30694,0.006048
+661,143.588,6.96436,6.31066,6.30451,0.006144
+662,150.599,6.64014,7.37846,7.37238,0.00608
+663,116.822,8.56006,6.30579,6.29965,0.006144
+664,161.565,6.18945,7.4281,7.42195,0.006144
+665,127.332,7.85352,6.97696,6.97098,0.005984
+666,133.778,7.4751,6.31261,6.30656,0.006048
+667,147.657,6.77246,6.62051,6.6145,0.006016
+668,139.367,7.17529,7.00195,6.99594,0.006016
+669,134.058,7.45947,6.61469,6.60874,0.005952
+670,136.661,7.31738,6.96938,6.9632,0.006176
+671,141.163,7.08398,6.59811,6.59203,0.00608
+672,137.422,7.27686,6.97664,6.97062,0.006016
+673,142.262,7.0293,6.59078,6.58464,0.006144
+674,133.525,7.48926,6.96115,6.95501,0.006144
+675,133.498,7.49072,6.59229,6.58621,0.00608
+676,127.229,7.85986,7.03501,7.02874,0.006272
+677,152.95,6.53809,6.3112,6.30518,0.006016
+678,140.101,7.1377,6.59264,6.58656,0.00608
+679,144.633,6.91406,7.09117,7.08474,0.006432
+680,135.845,7.36133,6.59779,6.59181,0.005984
+681,123.567,8.09277,6.31398,6.30784,0.006144
+682,148.794,6.7207,7.35923,7.35309,0.006144
+683,121.992,8.19727,6.3127,6.30656,0.006144
+684,162.992,6.13525,7.43664,7.43062,0.006016
+685,118.711,8.42383,6.62723,6.62003,0.0072
+686,149.358,6.69531,6.98595,6.97981,0.006144
+687,135.647,7.37207,6.31101,6.30499,0.006016
+688,151.614,6.5957,6.59251,6.58637,0.006144
+689,138.098,7.24121,6.97856,6.97238,0.006176
+690,135.012,7.40674,6.31229,6.30621,0.00608
+691,147.338,6.78711,6.61629,6.61024,0.006048
+692,141.057,7.08936,6.96368,6.95754,0.006144
+693,137.885,7.25244,6.6089,6.60275,0.006144
+694,139.919,7.14697,7.34189,7.33587,0.006016
+695,129.04,7.74951,6.97366,6.96755,0.006112
+696,133.612,7.48438,6.31286,6.30675,0.006112
+697,150.577,6.64111,6.59277,6.58659,0.006176
+698,140.274,7.12891,6.95706,6.95091,0.006144
+699,136.679,7.31641,6.30496,6.29901,0.005952
+700,147.977,6.75781,6.59664,6.59046,0.006176
+701,142.202,7.03223,7.02074,7.01462,0.006112
+702,130.888,7.64014,6.31069,6.30454,0.006144
+703,151.502,6.60059,6.31408,6.30794,0.006144
+704,145.931,6.85254,6.59302,6.58688,0.006144
+705,144.991,6.89697,7.08592,7.07981,0.006112
+706,126.913,7.87939,6.31382,6.30781,0.006016
+707,141.809,7.05176,6.59651,6.5905,0.006016
+708,139.986,7.14355,7.16339,7.15728,0.006112
+709,130.812,7.64453,7.25981,7.25366,0.006144
+710,130.955,7.63623,7.42733,7.42128,0.006048
+711,124.498,8.03223,6.31142,6.30541,0.006016
+712,150.721,6.63477,6.57878,6.57254,0.00624
+713,141.927,7.0459,7.04131,7.03523,0.00608
+714,130.863,7.6416,6.31318,6.3071,0.00608
+715,151.367,6.60645,6.59936,6.59418,0.005184
+716,139.538,7.1665,6.97466,6.96861,0.006048
+717,136.342,7.33447,6.31398,6.30784,0.006144
+718,146.926,6.80615,6.59251,6.58637,0.006144
+719,143.508,6.96826,6.95568,6.9495,0.006176
+720,132.806,7.52979,6.31213,6.30598,0.006144
+721,151.816,6.58691,6.6281,6.62195,0.006144
+722,137.829,7.25537,6.98243,6.97629,0.006144
+723,136.152,7.34473,6.31194,6.30589,0.006048
+724,147.923,6.76025,6.60493,6.59901,0.00592
+725,140.457,7.11963,6.96934,6.9632,0.006144
+726,136.898,7.30469,6.31354,6.30755,0.005984
+727,147.232,6.79199,6.59456,6.58842,0.006144
+728,144.185,6.93555,6.97958,6.97344,0.006144
+729,133.953,7.46533,6.31232,6.3063,0.006016
+730,150.312,6.65283,6.59062,6.58448,0.006144
+731,129.957,7.69482,6.968,6.96195,0.006048
+732,143.478,6.96973,6.31232,6.30618,0.006144
+733,144.002,6.94434,6.59398,6.58797,0.006016
+734,144.889,6.90186,7.00435,6.99821,0.006144
+735,134.808,7.41797,6.31242,6.30627,0.006144
+736,142.035,7.04053,6.31066,6.30451,0.006144
+737,152.506,6.55713,6.59254,6.58637,0.006176
+738,139.624,7.16211,7.02218,7.01622,0.005952
+739,136.962,7.30127,6.31011,6.30397,0.006144
+740,143.709,6.9585,6.59254,6.58637,0.006176
+741,145.197,6.88721,7.0967,7.09059,0.006112
+742,131.055,7.63037,6.31328,6.30726,0.006016
+743,148.924,6.71484,6.59469,6.58854,0.006144
+744,134.834,7.4165,7.08582,7.07984,0.005984
+745,142.638,7.01074,6.31392,6.30784,0.00608
+746,145.807,6.8584,6.94979,6.94365,0.006144
+747,132.78,7.53125,6.31398,6.30784,0.006144
+748,143.468,6.97021,6.31098,6.30496,0.006016
+749,147.689,6.771,6.62272,6.61638,0.006336
+750,141.701,7.05713,6.31197,6.30579,0.006176
+751,139.757,7.15527,6.31194,6.30579,0.006144
+752,150.666,6.63721,7.31341,7.30726,0.006144
+753,125.483,7.96924,6.31187,6.30579,0.00608
+754,150.743,6.63379,6.30989,6.30374,0.006144
+755,129.236,7.73779,7.40147,7.39539,0.00608
+756,144.266,6.93164,6.31158,6.30557,0.006016
+757,150.455,6.64648,6.31357,6.30755,0.006016
+758,140.833,7.10059,7.03776,7.03165,0.006112
+759,134.684,7.4248,6.30496,6.29894,0.006016
+760,143.901,6.94922,6.57648,6.57034,0.006144
+761,143.548,6.96631,7.05744,7.05126,0.006176
+762,126.046,7.93359,6.31277,6.30662,0.006144
+763,158.367,6.31445,6.60688,6.60074,0.006144
+764,133.996,7.46289,6.98819,6.98221,0.005984
+765,139.093,7.18945,6.31194,6.30579,0.006144
+766,147.074,6.79932,6.60656,6.60051,0.006048
+767,141.018,7.09131,6.9591,6.95296,0.006144
+768,137.385,7.27881,6.31024,6.3041,0.006144
+769,143.962,6.94629,6.61914,6.61302,0.006112
+770,144.388,6.92578,6.9711,6.96509,0.006016
+771,132.987,7.51953,6.59536,6.58918,0.006176
+772,145.424,6.87646,7.24531,7.23933,0.005984
+773,128.506,7.78174,6.96816,6.96205,0.006112
+774,135.057,7.4043,6.31242,6.30643,0.005984
+775,148.105,6.75195,6.59184,6.58592,0.00592
+776,139.348,7.17627,6.95866,6.95242,0.00624
+777,135.53,7.37842,6.31194,6.30579,0.006144
+778,149.806,6.67529,6.31213,6.30605,0.00608
+779,146.789,6.8125,6.5928,6.58666,0.006144
+780,139.074,7.19043,6.99418,6.98803,0.006144
+781,138.688,7.21045,6.31034,6.30419,0.006144
+782,140.438,7.12061,6.59488,6.58874,0.006144
+783,146.286,6.83594,7.11165,7.10544,0.006208
+784,130.156,7.68311,6.31197,6.30579,0.006176
+785,147.561,6.77686,6.59251,6.58643,0.00608
+786,142.867,6.99951,8.04656,8.04045,0.006112
+787,114.311,8.74805,6.31194,6.30579,0.006144
+788,149.883,6.67188,7.40499,7.39894,0.006048
+789,129.941,7.6958,6.3049,6.29888,0.006016
+790,143.972,6.9458,6.30381,6.2976,0.006208
+791,148.406,6.73828,7.03718,7.03104,0.006144
+792,132.771,7.53174,6.31414,6.30813,0.006016
+793,145.444,6.87549,6.57818,6.57203,0.006144
+794,145.734,6.86182,7.00579,6.99958,0.006208
+795,132.488,7.54785,6.31594,6.30989,0.006048
+796,152.256,6.56787,6.61082,6.60474,0.00608
+797,138.838,7.20264,7.02259,7.01645,0.006144
+798,136.143,7.34521,6.31194,6.30579,0.006144
+799,144.144,6.9375,6.61306,6.60701,0.006048
+800,145.424,6.87646,6.95178,6.9456,0.006176
+801,134.207,7.45117,6.61709,6.61094,0.006144
+802,139.13,7.1875,7.29322,7.28704,0.006176
+803,132.129,7.56836,6.96934,6.9632,0.006144
+804,131.442,7.60791,6.31203,6.30685,0.005184
+805,150.888,6.62744,6.5929,6.58675,0.006144
+806,140.082,7.13867,6.96774,6.96256,0.005184
+807,138.491,7.2207,6.31229,6.30611,0.006176
+808,143.287,6.979,6.59456,6.58842,0.006144
+809,132.927,7.52295,7.07181,7.06573,0.00608
+810,140.37,7.12402,6.31062,6.30438,0.00624
+811,148.137,6.75049,6.59456,6.58842,0.006144
+812,98.3339,10.1694,7.00723,7.00122,0.006016
+813,213.534,4.68311,6.312,6.30586,0.006144
+814,139.567,7.16504,6.31066,6.30448,0.006176
+815,142.807,7.00244,6.59661,6.5905,0.006112
+816,143.76,6.95605,6.80141,6.7953,0.006112
+817,136.17,7.34375,7.38918,7.38307,0.006112
+818,127.84,7.82227,7.05226,7.04611,0.006144
+819,124.567,8.02783,6.31443,6.30829,0.006144
+820,154.543,6.4707,6.57978,6.57357,0.006208
+821,138.998,7.19434,7.0847,7.07856,0.006144
+822,135.593,7.375,6.30992,6.30374,0.006176
+823,145.537,6.87109,6.60544,6.5993,0.006144
+824,143.901,6.94922,6.98518,6.97917,0.006016
+825,131.518,7.60352,6.31194,6.30579,0.006144
+826,148.395,6.73877,6.61158,6.60544,0.006144
+827,141.436,7.07031,6.97923,6.97258,0.006656
+828,132.317,7.55762,6.31158,6.30557,0.006016
+829,152.733,6.54736,6.60893,6.60288,0.006048
+830,138.998,7.19434,6.96214,6.956,0.006144
+831,138.444,7.22314,6.31398,6.3079,0.00608
+832,142.38,7.02344,6.59149,6.58534,0.006144
+833,147.285,6.78955,6.97802,6.97283,0.005184
+834,132.789,7.53076,6.31235,6.30621,0.006144
+835,151.267,6.61084,6.59238,6.58621,0.006176
+836,132.001,7.57568,6.99206,6.98688,0.005184
+837,142.489,7.01807,6.31398,6.30784,0.006144
+838,148.643,6.72754,6.59744,6.59126,0.006176
+839,140.389,7.12305,6.97712,6.97117,0.005952
+840,137.385,7.27881,6.3136,6.30758,0.006016
+841,146.338,6.8335,6.59261,6.58746,0.005152
+842,142.361,7.02441,7.00106,6.99488,0.006176
+843,133.073,7.51465,6.31344,6.30739,0.006048
+844,149.435,6.69189,6.59011,6.58406,0.006048
+845,134.286,7.44678,7.02275,7.01664,0.006112
+846,137.477,7.27393,6.31344,6.30746,0.005984
+847,144.991,6.89697,6.59632,6.59027,0.006048
+848,137.847,7.25439,7.71904,7.71299,0.006048
+849,122.239,8.18066,6.31309,6.3071,0.005984
+850,151.39,6.60547,6.3145,6.30851,0.005984
+851,133.655,7.48193,7.30115,7.29498,0.006176
+852,139.814,7.15234,6.31296,6.30682,0.006144
+853,151.625,6.59521,6.31306,6.30784,0.005216
+854,145.672,6.86475,7.36269,7.35651,0.006176
+855,127.617,7.83594,6.31072,6.30458,0.006144
+856,146.077,6.8457,6.31155,6.30544,0.006112
+857,146.589,6.82178,7.02915,7.02307,0.00608
+858,131.383,7.61133,6.30218,6.29603,0.006144
+859,151.547,6.59863,6.30195,6.29584,0.006112
+860,147.169,6.79492,7.0064,7.00038,0.006016
+861,130.537,7.66064,6.31357,6.30752,0.006048
+862,151.367,6.60645,6.57504,6.5689,0.006144
+863,141.818,7.05127,7.0615,7.05536,0.006144
+864,135.128,7.40039,6.31238,6.30624,0.006144
+865,146.432,6.8291,6.60275,6.59661,0.006144
+866,143.931,6.94775,7.00874,7.00259,0.006144
+867,130.654,7.65381,6.31011,6.30493,0.005184
+868,152.745,6.54688,6.59363,6.58762,0.006016
+869,137.792,7.25732,6.96099,6.95498,0.006016
+870,137.357,7.28027,6.31053,6.30438,0.006144
+871,147.232,6.79199,6.62781,6.62166,0.006144
+872,139.234,7.18213,6.9801,6.97408,0.006016
+873,135.53,7.37842,6.31338,6.30739,0.005984
+874,145.248,6.88477,6.59654,6.59053,0.006016
+875,144.93,6.8999,6.9591,6.95296,0.006144
+876,133.638,7.48291,6.30989,6.30374,0.006144
+877,150.015,6.66602,6.59078,6.58614,0.00464
+878,138.043,7.24414,6.96528,6.95914,0.006144
+879,138.847,7.20215,6.30381,6.29766,0.006144
+880,142.997,6.99316,6.59421,6.58826,0.005952
+881,144.225,6.93359,6.9713,6.96525,0.006048
+882,135.971,7.35449,6.31242,6.30624,0.006176
+883,145.713,6.86279,6.59504,6.58893,0.006112
+884,143.427,6.97217,6.96854,6.96259,0.005952
+885,130.305,7.67432,6.31245,6.3064,0.006048
+886,154.066,6.49072,6.59277,6.58672,0.006048
+887,138.989,7.19482,7.02874,7.02262,0.006112
+888,134.977,7.40869,6.31174,6.3057,0.006048
+889,143.377,6.97461,6.3112,6.30518,0.006016
+890,149.784,6.67627,6.59626,6.59024,0.006016
+891,125.344,7.97803,7.06051,7.05526,0.005248
+892,149.828,6.67432,6.31344,6.30739,0.006048
+893,150.599,6.64014,6.59699,6.59069,0.006304
+894,137.987,7.24707,8.02742,8.02134,0.00608
+895,114.766,8.71338,6.31194,6.30579,0.006144
+896,150.081,6.66309,7.37446,7.36838,0.00608
+897,128.984,7.75293,6.30422,6.29808,0.006144
+898,148.427,6.7373,6.31194,6.30579,0.006144
+899,149.773,6.67676,7.02877,7.02259,0.006176
+900,133.013,7.51807,6.30531,6.29926,0.006048
+901,151.244,6.61182,6.30576,6.29965,0.006112
+902,130.471,7.66455,7.04115,7.03446,0.006688
+903,143.217,6.98242,6.3089,6.30285,0.006048
+904,137.155,7.29102,6.61488,6.60883,0.006048
+905,154.391,6.47705,7.04118,7.03597,0.005216
+906,132.402,7.55273,6.30842,6.30234,0.00608
+907,146.422,6.82959,6.60483,6.59866,0.006176
+908,143.538,6.9668,7.3537,7.34762,0.00608
+909,126.093,7.93066,6.97344,6.9673,0.006144
+910,137.94,7.24951,6.60854,6.60253,0.006016
+911,135.459,7.38232,6.97843,6.97229,0.006144
+912,137.45,7.27539,6.32211,6.31606,0.006048
+913,143.257,6.98047,6.59062,6.58448,0.006144
+914,142.947,6.99561,6.97194,6.96672,0.005216
+915,132.909,7.52393,6.31194,6.30579,0.006144
+916,148.664,6.72656,6.30989,6.30374,0.006144
+917,144.827,6.90479,6.59053,6.58448,0.006048
+918,139.814,7.15234,7.06067,7.05437,0.006304
+919,128.659,7.77246,6.31363,6.30762,0.006016
+920,139.149,7.18652,6.59466,6.58947,0.005184
+921,146.328,6.83398,7.09021,7.08403,0.006176
+922,131.603,7.59863,6.31155,6.30554,0.006016
+923,144.164,6.93652,7.24995,7.24378,0.006176
+924,132.565,7.54346,7.41376,7.40762,0.006144
+925,122.079,8.19141,6.30598,6.30086,0.00512
+926,147.87,6.7627,7.04048,7.0345,0.005984
+927,129.768,7.70605,6.31398,6.30784,0.006144
+928,148.794,6.7207,6.61821,6.61094,0.007264
+929,142.499,7.01758,7.03654,7.03053,0.006016
+930,135.11,7.40137,6.31392,6.30726,0.006656
+931,145.042,6.89453,6.62035,6.61427,0.00608
+932,144.582,6.9165,6.96448,6.95846,0.006016
+933,133.804,7.47363,6.31136,6.30534,0.006016
+934,147.859,6.76318,6.61747,6.61133,0.006144
+935,137.293,7.28369,6.95744,6.95226,0.005184
+936,138.434,7.22363,6.31197,6.30573,0.00624
+937,144.796,6.90625,6.62118,6.61504,0.006144
+938,141.251,7.07959,6.97347,6.9673,0.006176
+939,137.56,7.26953,6.59616,6.59011,0.006048
+940,138.744,7.20752,7.2929,7.28694,0.005952
+941,129.826,7.70264,6.99856,6.99248,0.00608
+942,136.597,7.3208,6.31398,6.30778,0.006208
+943,149.675,6.68115,6.31219,6.30602,0.006176
+944,143.468,6.97021,6.59616,6.59011,0.006048
+945,144.134,6.93799,7.00211,6.996,0.006112
+946,131.493,7.60498,6.30992,6.30374,0.006176
+947,147.763,6.76758,6.59523,6.58918,0.006048
+948,139.339,7.17676,7.0889,7.08275,0.006144
+949,134.577,7.43066,6.31402,6.30784,0.006176
+950,143.157,6.98535,6.59229,6.58627,0.006016
+951,147.572,6.77637,7.11549,7.10934,0.006144
+952,110.643,9.03809,6.31264,6.30646,0.006176
+953,175.192,5.70801,6.97104,6.96493,0.006112
+954,142.262,7.0293,6.31366,6.30733,0.006336
+955,136.679,7.31641,7.34381,7.33779,0.006016
+956,128.813,7.76318,7.02259,7.01645,0.006144
+957,135.656,7.37158,6.30362,6.2976,0.006016
+958,148.449,6.73633,6.30189,6.29574,0.006144
+959,146.474,6.82715,7.05242,7.04627,0.006144
+960,132.18,7.56543,6.31229,6.30614,0.006144
+961,147.158,6.79541,6.6272,6.62115,0.006048
+962,140.989,7.09277,7.02122,7.01507,0.006144
+963,132.146,7.56738,6.31226,6.30624,0.006016
+964,149.938,6.66943,6.61674,6.61078,0.005952
+965,141.75,7.05469,7.0656,7.05949,0.006112
+966,132.454,7.5498,6.31194,6.30579,0.006144
+967,149.784,6.67627,6.64496,6.63894,0.006016
+968,139.272,7.18018,6.96454,6.95856,0.005984
+969,137.348,7.28076,6.60448,6.59846,0.006016
+970,140.979,7.09326,7.32349,7.31747,0.006016
+971,130.296,7.6748,6.96816,6.96202,0.006144
+972,132.875,7.52588,6.31194,6.30579,0.006144
+973,151.827,6.58643,6.59616,6.59011,0.006048
+974,139.881,7.14893,6.9591,6.95299,0.006112
+975,136.615,7.31982,6.31338,6.30739,0.005984
+976,148.363,6.74023,6.31194,6.30579,0.006144
+977,146.778,6.81299,6.59293,6.58678,0.006144
+978,144.49,6.9209,6.9737,6.96771,0.005984
+979,131.78,7.58838,6.31133,6.30531,0.006016
+980,150.655,6.6377,6.59456,6.58842,0.006144
+981,140.005,7.14258,7.03411,7.02803,0.00608
+982,136.071,7.34912,6.31296,6.30678,0.006176
+983,140.814,7.10156,6.59862,6.59264,0.005984
+984,149.38,6.69434,7.06528,7.05926,0.006016
+985,130.214,7.67969,6.31286,6.30672,0.006144
+986,142.728,7.00635,6.59338,6.58726,0.006112
+987,142.064,7.03906,6.31395,6.3079,0.006048
+988,133.961,7.46484,6.31197,6.30579,0.006176
+989,151.3,6.60938,6.62426,6.61821,0.006048
+990,134.26,7.44824,6.31571,6.3097,0.006016
+991,138.154,7.23828,6.31562,6.30957,0.006048
+992,147.923,6.76025,7.38509,7.37882,0.006272
+993,129.146,7.74316,6.31408,6.30806,0.006016
+994,142.569,7.01416,6.31395,6.30784,0.006112
+995,146.015,6.84863,7.39837,7.39222,0.006144
+996,127.92,7.81738,6.31091,6.3049,0.006016
+997,147.148,6.7959,6.5735,6.56733,0.006176
+998,143.669,6.96045,7.04128,7.03526,0.006016
+999,133.108,7.5127,6.31181,6.30579,0.006016
+1000,142.638,7.01074,6.60186,6.59581,0.006048
+1001,145.869,6.85547,7.01981,7.01373,0.00608
+1002,133.186,7.5083,6.31194,6.30579,0.006144
+1003,148.664,6.72656,6.63594,6.62979,0.006144
+1004,140.872,7.09863,6.97075,6.96474,0.006016
+1005,133.76,7.47607,6.31197,6.30592,0.006048
+1006,87.6825,11.4048,6.31088,6.30474,0.006144
+1007,385.18,2.59619,6.6337,6.62755,0.006144
+1008,145.022,6.89551,6.95722,6.95117,0.006048
+1009,138.248,7.2334,6.59213,6.58611,0.006016
+1010,144.246,6.93262,6.97549,6.96934,0.006144
+1011,134.383,7.44141,6.31309,6.30707,0.006016
+1012,149.828,6.67432,6.59606,6.58867,0.007392
+1013,140.833,7.10059,7.28698,7.28083,0.006144
+1014,126.529,7.90332,7.06202,7.05584,0.006176
+1015,124.129,8.05615,6.59661,6.59046,0.006144
+1016,146.077,6.8457,7.25731,6.99578,0.261536
+1017,114.407,8.74072,7.3999,7.39382,0.00608
+1018,128.951,7.75488,6.58022,6.57408,0.006144
+1019,143.568,6.96533,7.07546,7.06941,0.006048
+1020,135.701,7.36914,6.31194,6.30579,0.006144
+1021,133.83,7.47217,6.61126,6.60512,0.006144
+1022,157.019,6.36865,7.02669,7.02058,0.006112
+1023,129.138,7.74365,6.31984,6.31338,0.006464
+1024,145.351,6.87988,6.5993,6.59312,0.006176
+1025,145.228,6.88574,6.97862,6.97264,0.005984
+1026,133.091,7.51367,6.312,6.30586,0.006144
+1027,150.18,6.65869,6.62646,6.62042,0.006048
+1028,139.206,7.18359,6.98051,6.9744,0.006112
+1029,135.486,7.38086,6.31341,6.3073,0.006112
+1030,145.382,6.87842,6.59366,6.58755,0.006112
+1031,143.147,6.98584,6.97344,6.9673,0.006144
+1032,133.9,7.46826,6.312,6.30602,0.005984
+1033,151.379,6.60596,6.59446,6.58842,0.006048
+1034,140.95,7.09473,6.96525,6.9591,0.006144
+1035,136.025,7.35156,6.31398,6.30784,0.006144
+1036,148.924,6.71484,6.59117,6.58621,0.00496
+1037,137.091,7.29443,6.97453,6.96851,0.006016
+1038,137.137,7.29199,6.31392,6.30784,0.00608
+1039,145.351,6.87988,6.59661,6.59046,0.006144
+1040,145.703,6.86328,6.99808,6.99203,0.006048
+1041,131.882,7.58252,6.31194,6.30579,0.006144
+1042,151.155,6.61572,6.59478,6.58867,0.006112
+1043,138.725,7.2085,7.02938,7.02326,0.006112
+1044,135.908,7.35791,6.31398,6.30784,0.006144
+1045,148.127,6.75098,6.31402,6.30784,0.006176
+1046,144.572,6.91699,6.59459,6.58842,0.006176
+1047,145.724,6.8623,7.0697,7.06358,0.006112
+1048,129.645,7.71338,6.31206,6.30685,0.005216
+1049,149.184,6.70312,6.59658,6.59046,0.006112
+1050,138.584,7.21582,6.78515,6.77994,0.005216
+1051,136.361,7.3335,6.31274,6.30659,0.006144
+1052,143.921,6.94824,6.62966,6.62362,0.006048
+1053,141.115,7.08643,6.31382,6.30794,0.005888
+1054,134.631,7.42773,6.31264,6.3065,0.006144
+1055,150.301,6.65332,7.34576,7.33974,0.006016
+1056,123.858,8.07373,6.31283,6.30669,0.006144
+1057,154.589,6.46875,6.31392,6.30784,0.00608
+1058,149.817,6.6748,7.39741,7.39123,0.006176
+1059,125.891,7.94336,6.30582,6.29981,0.006016
+1060,149.032,6.70996,6.30973,6.30374,0.005984
+1061,147.763,6.76758,7.06317,7.05715,0.006016
+1062,130.621,7.65576,6.31046,6.30429,0.006176
+1063,145.61,6.86768,6.57421,6.568,0.006208
+1064,143.669,6.96045,7.04877,7.04269,0.00608
+1065,129.285,7.73486,6.31158,6.3056,0.005984
+1066,152.2,6.57031,6.60301,6.59686,0.006144
+1067,120.698,8.28516,6.97338,6.9673,0.00608
+1068,154.613,6.46777,6.31168,6.3056,0.00608
+1069,145.931,6.85254,6.62688,6.6209,0.005984
+1070,138.791,7.20508,6.98371,6.97754,0.006176
+1071,137.616,7.2666,6.31411,6.30806,0.006048
+1072,148.816,6.71973,6.61475,6.60877,0.005984
+1073,138.08,7.24219,6.97939,6.97341,0.005984
+1074,137.118,7.29297,6.31376,6.30778,0.005984
+1075,148.148,6.75,6.59395,6.5879,0.006048
+1076,140.159,7.13477,6.9632,6.95706,0.006144
+1077,136.99,7.2998,6.31101,6.30493,0.00608
+1078,141.71,7.05664,6.5944,6.58842,0.005984
+1079,144.47,6.92188,6.96525,6.9591,0.006144
+1080,134.242,7.44922,6.30989,6.30387,0.006016
+1081,149.686,6.68066,6.5945,6.58832,0.006176
+1082,132.385,7.55371,7.00211,6.9961,0.006016
+1083,144.104,6.93945,6.31194,6.30579,0.006144
+1084,147.296,6.78906,6.31194,6.30579,0.006144
+1085,147.148,6.7959,6.59885,6.59366,0.005184
+1086,138.21,7.23535,7.0313,7.02515,0.006144
+1087,134.577,7.43066,6.31194,6.30579,0.006144
+1088,146.537,6.82422,6.59488,6.58874,0.006144
+1089,141.3,7.07715,7.06099,7.05504,0.005952
+1090,134.666,7.42578,6.31194,6.30579,0.006144
+1091,145.807,6.8584,6.59517,6.58902,0.006144
+1092,138.304,7.23047,6.31469,6.30854,0.006144
+1093,118.711,8.42383,6.31203,6.30685,0.005184
+1094,152.404,6.56152,7.39853,7.39248,0.006048
+1095,123.507,8.09668,6.3039,6.29792,0.005984
+1096,151.01,6.62207,6.30486,6.29878,0.00608
+1097,149.293,6.69824,7.04829,7.04227,0.006016
+1098,127.158,7.86426,6.31277,6.30662,0.006144
+1099,152.79,6.54492,6.57616,6.57002,0.006144
+1100,143.077,6.98926,7.03891,7.03286,0.006048
+1101,133.299,7.50195,6.3129,6.30678,0.006112
+1102,146.579,6.82227,6.60909,6.6031,0.005984
+1103,143.097,6.98828,7.0217,7.0144,0.007296
+1104,133.839,7.47168,6.31219,6.30698,0.005216
+1105,150.213,6.65723,6.61798,6.61184,0.006144
+1106,138.21,7.23535,7.0105,7.00454,0.005952
+1107,133.996,7.46289,6.31194,6.30579,0.006144
+1108,145.869,6.85547,6.62518,6.6191,0.00608
+1109,142.163,7.03418,6.96269,6.95664,0.006048
+1110,136.352,7.33398,6.31194,6.30579,0.006144
+1111,146.077,6.8457,6.60275,6.5967,0.006048
+1112,145.084,6.89258,6.9623,6.95622,0.00608
+1113,133.351,7.49902,6.31258,6.30646,0.006112
+1114,149.927,6.66992,6.59622,6.59021,0.006016
+1115,141.261,7.0791,6.97139,6.96525,0.006144
+1116,136.88,7.30566,6.31114,6.30509,0.006048
+1117,143.237,6.98145,6.59552,6.58938,0.006144
+1118,143.417,6.97266,6.96096,6.95494,0.006016
+1119,135.881,7.35938,6.31014,6.30413,0.006016
+1120,146.936,6.80566,6.59981,6.59382,0.005984
+1121,143.982,6.94531,6.97139,6.96528,0.006112
+1122,135.253,7.39355,6.31206,6.30602,0.006048
+1123,151.099,6.61816,6.59171,6.58451,0.0072
+1124,138.36,7.22754,6.99802,6.9919,0.006112
+1125,131.181,7.62305,6.31398,6.30784,0.006144
+1126,151.256,6.61133,6.59251,6.5864,0.006112
+1127,142.957,6.99512,7.05744,7.05126,0.006176
+1128,129.768,7.70605,6.31075,6.30458,0.006176
+1129,154.776,6.46094,6.31194,6.30589,0.006048
+1130,143.921,6.94824,6.59466,6.5887,0.005952
+1131,141.358,7.07422,7.08986,7.08381,0.006048
+1132,132.987,7.51953,6.31472,6.30864,0.00608
+1133,147,6.80273,6.59773,6.59165,0.00608
+1134,142.579,7.01367,6.31267,6.30662,0.006048
+1135,134.26,7.44824,6.3119,6.30579,0.006112
+1136,150.257,6.65527,6.62502,6.61901,0.006016
+1137,128.919,7.75684,6.31594,6.30989,0.006048
+1138,153.27,6.52441,6.3111,6.30515,0.005952
+1139,149.729,6.67871,7.2745,7.26835,0.006144
+1140,127.776,7.82617,7.39738,7.39123,0.006144
+1141,127.792,7.8252,6.30365,6.2976,0.006048
+1142,146.81,6.81152,7.0481,7.04189,0.006208
+1143,127.237,7.85938,6.31213,6.30598,0.006144
+1144,147.275,6.79004,6.60637,6.60026,0.006112
+1145,141.476,7.06836,7.07568,7.06966,0.006016
+1146,133.333,7.5,6.31194,6.30579,0.006144
+1147,147.614,6.77441,6.62182,6.61568,0.006144
+1148,145.537,6.87109,6.98291,6.97686,0.006048
+1149,132.78,7.53125,6.31322,6.30723,0.005984
+1150,149.206,6.70215,6.61725,6.61133,0.00592
+1151,143.237,6.98145,6.97478,6.9687,0.00608
+1152,132.832,7.52832,6.31219,6.30614,0.006048
+1153,149.336,6.69629,6.63267,6.62669,0.005984
+1154,141.3,7.07715,6.97475,6.96874,0.006016
+1155,134.014,7.46191,6.59456,6.58842,0.006144
+1156,145.084,6.89258,7.25094,7.24442,0.006528
+1157,126.311,7.91699,7.00358,6.99754,0.006048
+1158,138.772,7.20605,6.30957,6.30352,0.006048
+1159,147.699,6.77051,6.30989,6.30374,0.006144
+1160,145.517,6.87207,6.59562,6.58966,0.005952
+1161,145.166,6.88867,6.9881,6.98208,0.006016
+1162,135.432,7.38379,6.59459,6.58842,0.006176
+1163,141.047,7.08984,7.08589,7.07981,0.00608
+1164,130.746,7.64844,6.3119,6.30579,0.006112
+1165,150.147,6.66016,6.31197,6.30595,0.006016
+1166,146.558,6.82324,6.59456,6.58842,0.006144
+1167,143.458,6.9707,7.05238,7.04512,0.007264
+1168,131.383,7.61133,6.31117,6.3049,0.006272
+1169,143.76,6.95605,6.59533,6.58915,0.006176
+1170,138.453,7.22266,6.31533,6.30931,0.006016
+1171,142.977,6.99414,6.6519,6.63072,0.021184
+1172,135.378,7.38672,7.41142,7.40541,0.006016
+1173,117.674,8.49805,6.31194,6.30579,0.006144
+1174,147.232,6.79199,6.57613,6.56998,0.006144
+1175,140.255,7.12988,7.05331,7.04717,0.006144
+1176,134.897,7.41309,6.31398,6.30784,0.006144
+1177,143.017,6.99219,6.60746,6.60141,0.006048
+1178,143.982,6.94531,6.98982,6.98368,0.006144
+1179,127.268,7.85742,6.31219,6.30621,0.005984
+1180,149.971,6.66797,6.60499,6.59981,0.005184
+1181,122.356,8.17285,6.97763,6.97168,0.005952
+1182,156.503,6.38965,6.31219,6.30602,0.006176
+1183,147.253,6.79102,6.60464,6.59866,0.005984
+1184,139.377,7.1748,6.9673,6.96115,0.006144
+1185,136.152,7.34473,6.31398,6.30784,0.006144
+1186,142.559,7.01465,6.59376,6.58771,0.006048
+1187,143.458,6.9707,6.95325,6.9471,0.006144
+1188,131.687,7.59375,6.31206,6.30605,0.006016
+1189,150.544,6.64258,6.59677,6.59062,0.006144
+1190,140.544,7.11523,6.99664,6.99066,0.005984
+1191,132.97,7.52051,6.31043,6.30435,0.00608
+1192,132.728,7.53418,6.31194,6.30579,0.006144
+1193,150.103,6.66211,6.59974,6.59251,0.007232
+1194,140.989,7.09277,7.06355,7.05741,0.006144
+1195,134.79,7.41895,6.31174,6.30573,0.006016
+1196,148.148,6.75,6.5912,6.58602,0.005184
+1197,138.304,7.23047,6.31594,6.30989,0.006048
+1198,132.334,7.55664,6.31347,6.30752,0.005952
+1199,147.465,6.78125,7.25811,7.25197,0.006144
+1200,130.846,7.64258,6.31194,6.30579,0.006144
+1201,145.372,6.87891,7.36282,7.3567,0.006112
+1202,129.506,7.72168,7.03011,7.02413,0.005984
+1203,127.569,7.83887,6.31392,6.30784,0.00608
+1204,148.816,6.71973,6.60941,6.60333,0.00608
+1205,139.852,7.15039,7.0513,7.04515,0.006144
+1206,135.863,7.36035,6.31197,6.30579,0.006176
+1207,148.492,6.73438,6.59866,6.59251,0.006144
+1208,137.671,7.26367,6.98614,6.98016,0.005984
+1209,139.187,7.18457,6.31331,6.30726,0.006048
+1210,146.181,6.84082,6.62464,6.61869,0.005952
+1211,141.868,7.04883,6.95091,6.94477,0.006144
+1212,132.112,7.56934,6.31002,6.30387,0.006144
+1213,153.823,6.50098,6.6208,6.61478,0.006016
+1214,139.225,7.18262,6.96947,6.96429,0.005184
+1215,137.579,7.26855,6.31062,6.30445,0.006176
+1216,137.173,7.29004,6.59658,6.59002,0.00656
+1217,152.927,6.53906,6.96698,6.96099,0.005984
+1218,135.039,7.40527,6.31142,6.30544,0.005984
+1219,145.269,6.88379,6.59306,6.58691,0.006144
+1220,144.981,6.89746,6.9793,6.97331,0.005984
+1221,132.522,7.5459,6.31507,6.30906,0.006016
+1222,146.328,6.83398,6.59142,6.58528,0.006144
+1223,144.347,6.92773,6.9776,6.97139,0.006208
+1224,133.891,7.46875,6.31184,6.30579,0.006048
+1225,143.982,6.94531,6.31194,6.30579,0.006144
+1226,151.547,6.59863,6.59536,6.58922,0.006144
+1227,129.032,7.75,6.98678,6.98061,0.006176
+1228,146.14,6.84277,6.30992,6.30374,0.006176
+1229,149.228,6.70117,6.59414,6.5881,0.006048
+1230,140.892,7.09766,7.02749,7.02134,0.006144
+1231,137.118,7.29297,6.31366,6.30765,0.006016
+1232,137.1,7.29395,6.60275,6.59664,0.006112
+1233,141.927,7.0459,7.07171,7.06573,0.005984
+1234,134.049,7.45996,6.312,6.30598,0.006016
+1235,151.211,6.61328,6.61171,6.60554,0.006176
+1236,134.666,7.42578,6.31466,6.30851,0.006144
+1237,138.979,7.19531,6.31552,6.30954,0.005984
+1238,133.699,7.47949,7.00413,6.99802,0.006112
+1239,148.945,6.71387,6.31194,6.30579,0.006144
+1240,143.639,6.96191,6.31194,6.30579,0.006144
+1241,144.858,6.90332,7.32995,7.32467,0.00528
+1242,130.363,7.6709,6.30864,6.3025,0.006144
+1243,143.097,6.98828,6.31398,6.30784,0.006144
+1244,151.323,6.6084,7.39674,7.39066,0.00608
+1245,124.787,8.01367,6.30419,6.29802,0.006176
+1246,150.015,6.66602,6.30365,6.2976,0.006048
+1247,144.327,6.92871,7.02118,7.01507,0.006112
+1248,137.523,7.27148,6.31194,6.30579,0.006144
+1249,142.559,7.01465,6.57658,6.57037,0.006208
+1250,141.183,7.08301,7.0337,7.02755,0.006144
+1251,133.891,7.46875,6.31171,6.3057,0.006016
+1252,150.478,6.64551,6.59875,6.59357,0.005184
+1253,139.017,7.19336,6.97677,6.97072,0.006048
+1254,136.77,7.31152,6.31213,6.30576,0.006368
+1255,139.244,7.18164,6.62736,6.62141,0.005952
+1256,149.751,6.67773,6.99434,6.98835,0.005984
+1257,124.802,8.0127,6.3119,6.30586,0.006048
+1258,159.13,6.28418,6.59456,6.58842,0.006144
+1259,142.183,7.0332,6.96384,6.95773,0.006112
+1260,132.3,7.55859,6.31373,6.30771,0.006016
+1261,145.765,6.86035,6.59456,6.58947,0.005088
+1262,145.496,6.87305,6.96586,6.95971,0.006144
+1263,136.315,7.33594,6.31037,6.30422,0.006144
+1264,143.901,6.94922,6.5936,6.58752,0.00608
+1265,145.579,6.86914,6.96688,6.96086,0.006016
+1266,132.935,7.52246,6.31206,6.30688,0.005184
+1267,148.708,6.72461,6.59882,6.5928,0.006016
+1268,136.99,7.2998,6.95392,6.94874,0.005184
+1269,137.413,7.27734,6.3145,6.30835,0.006144
+1270,149.576,6.68555,6.59501,6.58883,0.006176
+1271,139.358,7.17578,7.02678,7.0207,0.00608
+1272,135.575,7.37598,6.31219,6.30618,0.006016
+1273,147.423,6.7832,6.31152,6.30566,0.005856
+1274,151.077,6.61914,6.59651,6.59046,0.006048
+1275,136.606,7.32031,7.05744,7.0511,0.006336
+1276,135.199,7.39648,6.31315,6.30714,0.006016
+1277,144.694,6.91113,6.59046,6.58544,0.005024
+1278,142.937,6.99609,7.09075,7.08461,0.006144
+1279,131.789,7.58789,6.32637,6.32022,0.006144
+1280,142.599,7.0127,6.96906,6.96294,0.006112
+1281,138.923,7.19824,6.30989,6.30374,0.006144
+1282,142.797,7.00293,6.31216,6.30618,0.005984
+1283,150.433,6.64746,6.31354,6.30749,0.006048
+1284,143.82,6.95312,6.31152,6.3055,0.006016
+1285,153.546,6.5127,6.31136,6.30531,0.006048
+1286,141.691,7.05762,6.30922,6.3033,0.00592
+1287,146.244,6.83789,6.31142,6.30528,0.006144
+1288,150.5,6.64453,6.31149,6.3055,0.005984
+1289,144.694,6.91113,6.31213,6.30614,0.005984
+1290,146.979,6.80371,6.31382,6.30781,0.006016
+1291,145.765,6.86035,6.31194,6.30579,0.006144
+1292,146.579,6.82227,6.31194,6.30579,0.006144
+1293,148.751,6.72266,6.30989,6.30374,0.006144
+1294,143.719,6.95801,6.31302,6.30698,0.006048
+1295,119.014,8.40234,6.60496,6.59888,0.00608
+1296,156.935,6.37207,7.09133,7.08522,0.006112
+1297,135.504,7.37988,6.31181,6.30573,0.00608
+1298,149.511,6.68848,6.32806,6.32157,0.006496
+1299,150.147,6.66016,6.59514,6.58899,0.006144
+1300,142.183,7.0332,6.31725,6.31123,0.006016
+1301,128.305,7.79395,6.30966,6.30362,0.006048
+1302,148.989,6.71191,7.33539,7.32934,0.006048
+1303,123.956,8.06738,6.31194,6.30579,0.006144
+1304,154.356,6.47852,6.31075,6.30461,0.006144
+1305,142.38,7.02344,7.3959,7.38976,0.006144
+1306,129.555,7.71875,6.30717,6.30122,0.005952
+1307,146.537,6.82422,6.31203,6.30682,0.005216
+1308,150.125,6.66113,7.05507,7.04918,0.005888
+1309,130.997,7.63379,6.31267,6.3065,0.006176
+1310,147.275,6.79004,6.57222,6.56608,0.006144
+1311,138.322,7.22949,7.06253,7.05658,0.005952
+1312,135.486,7.38086,6.31347,6.30742,0.006048
+1313,148.449,6.73633,6.6089,6.60275,0.006144
+1314,135.845,7.36133,6.98416,6.97805,0.006112
+1315,138.641,7.21289,6.31398,6.30784,0.006144
+1316,143.097,6.98828,6.61088,6.60486,0.006016
+1317,144.47,6.92188,6.97398,6.96877,0.005216
+1318,133.316,7.50098,6.30989,6.30374,0.006144
+1319,148.513,6.7334,6.64675,6.64054,0.006208
+1320,138.509,7.21973,6.98934,6.98342,0.00592
+1321,137.21,7.28809,6.31168,6.30563,0.006048
+1322,146.6,6.82129,6.59456,6.58842,0.006144
+1323,141.671,7.05859,6.96384,6.95776,0.00608
+1324,138.528,7.21875,6.31331,6.30733,0.005984
+1325,146.453,6.82812,6.59459,6.58858,0.006016
+1326,141.378,7.07324,6.97085,6.9649,0.005952
+1327,135.881,7.35938,6.5945,6.58848,0.006016
+1328,141.75,7.05469,7.25731,7.25133,0.005984
+1329,129.179,7.74121,7.08531,7.0792,0.006112
+1330,133.909,7.46777,6.31091,6.30474,0.006176
+1331,144.043,6.94238,6.31197,6.30579,0.006176
+1332,145.682,6.86426,6.59251,6.58637,0.006144
+1333,121.543,8.22754,7.10045,7.09443,0.006016
+1334,152.767,6.5459,6.31363,6.30762,0.006016
+1335,150.966,6.62402,6.95405,6.94787,0.006176
+1336,133.996,7.46289,6.3135,6.30749,0.006016
+1337,145.31,6.88184,6.31091,6.3049,0.006016
+1338,146.369,6.83203,7.00218,6.99603,0.006144
+1339,136.752,7.3125,6.31366,6.30762,0.006048
+1340,139.738,7.15625,6.31402,6.30787,0.006144
+1341,149.184,6.70312,7.33562,7.3295,0.006112
+1342,109.39,9.1416,6.30579,6.29965,0.006144
+1343,169.228,5.90918,7.41178,7.4057,0.00608
+1344,106.578,9.38281,6.96614,6.95997,0.006176
+1345,155.647,6.4248,6.31059,6.30445,0.006144
+1346,148.751,6.72266,6.60032,6.59434,0.005984
+1347,139.662,7.16016,6.97142,6.96525,0.006176
+1348,138.998,7.19434,6.31334,6.30733,0.006016
+1349,143.538,6.9668,6.60038,6.59443,0.005952
+1350,144.94,6.89941,6.96166,6.95549,0.006176
+1351,133.091,7.51367,6.31194,6.30579,0.006144
+1352,149.773,6.67676,6.59309,6.58694,0.006144
+1353,136.789,7.31055,6.96938,6.96339,0.005984
+1354,137.321,7.28223,6.31174,6.3057,0.006048
+1355,124.848,8.00977,6.59046,6.58435,0.006112
+1356,170.866,5.85254,6.95846,6.95242,0.006048
+1357,135.611,7.37402,6.31238,6.30624,0.006144
+1358,144.307,6.92969,6.59014,6.5841,0.006048
+1359,141.966,7.04395,7.00003,6.99392,0.006112
+1360,134.542,7.43262,6.31325,6.3073,0.005952
+1361,148.384,6.73926,6.59213,6.58458,0.007552
+1362,125.583,7.96289,7.04378,7.03776,0.006016
+1363,143.377,6.97461,6.30998,6.30387,0.006112
+1364,129.016,7.75098,6.31651,6.31037,0.006144
+1365,156.312,6.39746,6.59981,6.59379,0.006016
+1366,144.817,6.90527,7.1697,7.16371,0.005984
+1367,130.28,7.67578,6.31011,6.30493,0.005184
+1368,147.359,6.78613,7.33389,7.32774,0.006144
+1369,122.576,8.1582,6.31325,6.30723,0.006016
+1370,150.633,6.63867,6.31181,6.30576,0.006048
+1371,142.917,6.99707,7.10227,7.09622,0.006048
+1372,132.763,7.53223,6.60237,6.59686,0.005504
+1373,135.863,7.36035,7.39053,7.38458,0.005952
+1374,132.317,7.55762,6.96701,6.96106,0.005952
+1375,132.488,7.54785,6.31197,6.30579,0.006176
+1376,151.794,6.58789,6.62106,6.61504,0.006016
+1377,139.396,7.17383,6.98368,6.97757,0.006112
+1378,136.025,7.35156,6.31354,6.30752,0.006016
+1379,149.184,6.70312,6.62294,6.61686,0.00608
+1380,137.339,7.28125,6.97344,6.9673,0.006144
+1381,137.801,7.25684,6.3097,6.30365,0.006048
+1382,143.76,6.95605,6.59661,6.59046,0.006144
+1383,144.612,6.91504,6.99805,6.99187,0.006176
+1384,131.942,7.5791,6.31306,6.30698,0.00608
+1385,152.722,6.54785,6.59648,6.59043,0.006048
+1386,133.734,7.47754,6.99821,6.99219,0.006016
+1387,141.008,7.0918,6.6032,6.59699,0.006208
+1388,126.248,7.9209,7.03744,7.0313,0.006144
+1389,138.716,7.20898,6.31168,6.30576,0.00592
+1390,147.806,6.76562,6.31194,6.30579,0.006144
+1391,139.852,7.15039,6.59472,6.5895,0.005216
+1392,144.837,6.9043,7.11091,7.10493,0.005984
+1393,131.248,7.61914,6.31347,6.30742,0.006048
+1394,150.5,6.64453,6.98371,6.97754,0.006176
+1395,132.454,7.5498,6.31434,6.30832,0.006016
+1396,142.301,7.02734,6.31526,6.30925,0.006016
+1397,142.638,7.01074,7.34262,7.33654,0.00608
+1398,130.579,7.6582,6.31414,6.30758,0.00656
+1399,131.806,7.58691,6.31194,6.30579,0.006144
+1400,168.172,5.94629,7.40038,7.39427,0.006112
+1401,104.5,9.56934,6.31194,6.30579,0.006144
+1402,190.76,5.24219,6.57821,6.57203,0.006176
+1403,142.282,7.02832,7.38403,7.37789,0.006144
+1404,125.367,7.97656,6.99453,6.98838,0.006144
+1405,138.136,7.23926,6.61789,6.6127,0.005184
+1406,138.659,7.21191,6.96454,6.95853,0.006016
+1407,138.229,7.23438,6.3128,6.30662,0.006176
+1408,145.289,6.88281,6.59523,6.58909,0.006144
+1409,142.559,7.01465,6.99149,6.98547,0.006016
+1410,131.806,7.58691,6.31069,6.30554,0.005152
+1411,152.472,6.55859,6.59683,6.59162,0.005216
+1412,123.225,8.11523,6.95878,6.9527,0.00608
+1413,149.686,6.68066,6.31024,6.3041,0.006144
+1414,147.148,6.7959,6.32771,6.32163,0.00608
+1415,140.312,7.12695,6.59098,6.58579,0.005184
+1416,144.551,6.91797,7.00416,6.99904,0.00512
+1417,131.636,7.59668,6.59456,6.58842,0.006144
+1418,143.982,6.94531,7.05126,7.04512,0.006144
+1419,130.313,7.67383,6.59715,6.59098,0.006176
+1420,136.261,7.33887,6.31462,6.30848,0.006144
+1421,131.013,7.63281,7.33155,7.32525,0.006304
+1422,128.756,7.7666,6.31181,6.30579,0.006016
+1423,145.475,6.87402,6.31248,6.30634,0.006144
+1424,147.529,6.77832,7.43078,7.42467,0.006112
+1425,128.032,7.81055,6.3055,6.29946,0.006048
+1426,150.943,6.625,6.57437,6.56819,0.006176
+1427,125.214,7.98633,7.12467,7.11872,0.005952
+1428,140.466,7.11914,6.31405,6.3079,0.006144
+1429,151.704,6.5918,6.62304,6.61702,0.006016
+1430,137.394,7.27832,7.00141,6.99546,0.005952
+1431,137.801,7.25684,6.31142,6.30544,0.005984
+1432,143.84,6.95215,6.62784,6.6217,0.006144
+1433,144.531,6.91895,7.03898,7.03283,0.006144
+1434,131.603,7.59863,6.59354,6.58742,0.006112
+1435,144.286,6.93066,7.29498,7.28883,0.006144
+1436,126.373,7.91309,6.9609,6.95488,0.006016
+1437,135.971,7.35449,6.32032,6.3151,0.005216
+1438,147.913,6.76074,6.5951,6.58906,0.006048
+1439,139.967,7.14453,6.96256,6.95645,0.006112
+1440,122.855,8.13965,6.31091,6.30477,0.006144
+1441,163.187,6.12793,6.31293,6.30771,0.005216
+1442,141.73,7.05566,6.59763,6.59149,0.006144
+1443,141.848,7.0498,7.01606,7.01002,0.006048
+1444,128.482,7.7832,6.31187,6.30579,0.00608
+1445,146.181,6.84082,6.59456,6.58842,0.006144
+1446,142.837,7.00098,6.3159,6.30989,0.006016
+1447,131.484,7.60547,6.31123,6.30528,0.005952
+1448,150.081,6.66309,6.6519,6.64576,0.006144
+1449,137.339,7.28125,7.35725,7.35114,0.006112
+1450,124.909,8.00586,6.3121,6.30595,0.006144
+1451,142.301,7.02734,7.05034,7.04432,0.006016
+1452,134.79,7.41895,6.31277,6.30662,0.006144
+1453,126.607,7.89844,6.57558,6.56941,0.006176
+1454,167.814,5.95898,7.04374,7.03776,0.005984
+1455,133.664,7.48145,6.31194,6.30579,0.006144
+1456,143.619,6.96289,6.59478,6.58877,0.006016
+1457,144.388,6.92578,7.12294,7.1168,0.006144
+1458,127.952,7.81543,6.31174,6.30573,0.006016
+1459,147.211,6.79297,6.66029,6.65414,0.006144
+1460,139.948,7.14551,7.01094,7.00576,0.005184
+1461,137.69,7.2627,6.31219,6.30621,0.005984
+1462,140.466,7.11914,6.59226,6.58621,0.006048
+1463,147.381,6.78516,6.97962,6.97344,0.006176
+1464,113.249,8.83008,6.59242,6.5864,0.006016
+1465,173.795,5.75391,7.24909,7.24298,0.006112
+1466,123.284,8.11133,7.0305,7.02445,0.006048
+1467,136.225,7.34082,6.31152,6.30557,0.005952
+1468,151.974,6.58008,6.31213,6.30598,0.006144
+1469,142.698,7.00781,6.59046,6.58432,0.006144
+1470,140.101,7.1377,7.0383,7.03082,0.007488
+1471,130.379,7.66992,6.31344,6.30739,0.006048
+1472,148.17,6.74902,6.5969,6.59085,0.006048
+1473,133.49,7.49121,7.1609,7.15482,0.00608
+1474,138.641,7.21289,6.31245,6.3063,0.006144
+1475,144.205,6.93457,7.37286,7.36682,0.006048
+1476,130.93,7.6377,6.31194,6.30579,0.006144
+1477,125.168,7.98926,6.31194,6.30579,0.006144
+1478,166.884,5.99219,7.4247,7.41859,0.006112
+1479,111.003,9.00879,6.61158,6.60544,0.006144
+1480,162.334,6.16016,7.45626,7.45034,0.00592
+1481,122.885,8.1377,6.96467,6.95856,0.006112
+1482,137.653,7.26465,6.31219,6.30605,0.006144
+1483,148.363,6.74023,6.6295,6.62346,0.006048
+1484,140.621,7.11133,6.97242,6.96643,0.005984
+1485,137.082,7.29492,6.31165,6.3056,0.006048
+1486,140.775,7.10352,6.59462,6.58861,0.006016
+1487,143.639,6.96191,6.98246,6.97728,0.005184
+1488,125.168,7.98926,6.31373,6.30771,0.006016
+1489,154.194,6.48535,6.59251,6.58637,0.006144
+1490,115.147,8.68457,7.02026,7.01421,0.006048
+1491,163.213,6.12695,6.30998,6.30397,0.006016
+1492,146.831,6.81055,6.31149,6.30547,0.006016
+1493,139.434,7.17188,6.596,6.59002,0.005984
+1494,144.776,6.90723,7.04368,7.0375,0.006176
+1495,128.048,7.80957,6.59718,6.59104,0.006144
+1496,143.437,6.97168,7.35754,7.3505,0.00704
+1497,117.377,8.51953,6.31254,6.30643,0.006112
+1498,150.877,6.62793,6.31235,6.30637,0.005984
+1499,145.331,6.88086,7.40342,7.39728,0.006144
+1500,131.316,7.61523,6.30563,6.29962,0.006016
+1501,141.202,7.08203,6.30576,6.29965,0.006112
+1502,151.166,6.61523,7.04115,7.03501,0.006144
+1503,125.737,7.95312,6.31267,6.30656,0.006112
+1504,153.087,6.53223,6.61123,6.60499,0.00624
+1505,135.057,7.4043,7.05747,7.0513,0.006176
+1506,133.229,7.50586,6.31091,6.30477,0.006144
+1507,150.766,6.63281,6.6393,6.63328,0.006016
+1508,132.746,7.5332,7.00205,6.99606,0.005984
+1509,138.397,7.22559,6.60144,6.59523,0.006208
+1510,139.339,7.17676,7.30054,7.29453,0.006016
+1511,128.032,7.81055,6.95907,6.95302,0.006048
+1512,135.146,7.39941,6.31197,6.30579,0.006176
+1513,150.345,6.65137,6.59651,6.5905,0.006016
+1514,134.26,7.44824,7.03072,7.02464,0.00608
+1515,130.829,7.64355,6.3119,6.30579,0.006112
+1516,147.232,6.79199,6.31222,6.30624,0.005984
+1517,141.828,7.05078,6.5977,6.59168,0.006016
+1518,121.471,8.23242,7.12154,7.11514,0.0064
+1519,155.694,6.42285,6.31088,6.30474,0.006144
+1520,152.404,6.56152,6.60986,6.59142,0.018432
+1521,132.728,7.53418,6.31398,6.30784,0.006144
+1522,143.478,6.96973,6.31197,6.30579,0.006176
+1523,149.184,6.70312,6.62582,6.61978,0.006048
+1524,143.962,6.94629,6.31494,6.30877,0.006176
+1525,118.477,8.44043,6.31328,6.30726,0.006016
+1526,178.025,5.61719,7.30778,7.30166,0.006112
+1527,125.953,7.93945,6.31203,6.30602,0.006016
+1528,150.367,6.65039,6.31398,6.30784,0.006144
+1529,150.037,6.66504,7.36464,7.35846,0.006176
+1530,125.876,7.94434,6.31104,6.30502,0.006016
+1531,150.279,6.6543,6.31002,6.30397,0.006048
+1532,132.832,7.52832,7.01235,7.00624,0.006112
+1533,147.063,6.7998,6.30592,6.30074,0.005184
+1534,145.869,6.85547,6.30637,6.30022,0.006144
+1535,149.402,6.69336,7.03926,7.03312,0.006144
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..4b2d9a1
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,1034.09,1.01684,0.524711,0.0061605,0.268311,0.005212,0.00498669,0.00556641,0.225474,0.00899953
+max_1024,1583.3,3.59619,2.18685,0.043008,1.95763,0.045696,0.024928,0.022592,0.536576,0.284608
+min_1024,278.072,0.631592,0.424512,0.004736,0.20688,0.004064,0.004064,0.004256,0.18256,0.00496
+512,1141.42,0.876099,0.460288,0.005824,0.242368,0.00576,0.00448,0.005888,0.189952,0.006016
+513,1191.22,0.839478,0.434176,0.006144,0.220384,0.004896,0.004096,0.006144,0.186368,0.006144
+514,1119.58,0.893188,0.461664,0.006496,0.22304,0.0048,0.004096,0.006176,0.210912,0.006144
+515,1192.78,0.838379,0.456704,0.006144,0.231424,0.004096,0.005792,0.005472,0.197632,0.006144
+516,872.603,1.146,0.954464,0.005824,0.448928,0.034816,0.00576,0.004576,0.448448,0.006112
+517,720.873,1.38721,0.68832,0.006336,0.462848,0.00576,0.0056,0.005024,0.196704,0.006048
+518,1124.81,0.889038,0.443584,0.006144,0.216384,0.0048,0.004096,0.006144,0.200032,0.005984
+519,1160.01,0.862061,0.458752,0.006176,0.24368,0.00528,0.004896,0.005472,0.187104,0.006144
+520,1190.7,0.839844,0.44384,0.006144,0.221216,0.005344,0.004864,0.005632,0.194592,0.006048
+521,823.151,1.21484,0.463616,0.00496,0.233376,0.005568,0.004672,0.005664,0.203232,0.006144
+522,1353.83,0.738647,0.44144,0.006176,0.225248,0.0056,0.00464,0.005728,0.188224,0.005824
+523,867.705,1.15247,0.903168,0.00576,0.689952,0.004704,0.006144,0.005792,0.184672,0.006144
+524,832.52,1.20117,0.671872,0.005824,0.450176,0.004928,0.006144,0.005568,0.193088,0.006144
+525,1175.15,0.850952,0.452288,0.00608,0.22944,0.005312,0.004896,0.00608,0.194496,0.005984
+526,1163.14,0.859741,0.424512,0.005824,0.209792,0.005824,0.004416,0.00592,0.186592,0.006144
+527,1231.88,0.811768,0.44096,0.004992,0.216928,0.005856,0.004384,0.006016,0.196736,0.006048
+528,1095.77,0.912598,0.463648,0.00496,0.241024,0.004672,0.005152,0.005088,0.196608,0.006144
+529,1088.49,0.918701,0.463328,0.005088,0.239616,0.00592,0.00432,0.006048,0.196288,0.006048
+530,1205.24,0.829712,0.67584,0.006144,0.454624,0.006304,0.006016,0.005952,0.190656,0.006144
+531,764.821,1.3075,0.436256,0.005792,0.221568,0.005504,0.004736,0.005632,0.18688,0.006144
+532,875.962,1.1416,0.44032,0.005952,0.221312,0.00416,0.005632,0.00464,0.19248,0.006144
+533,1365.56,0.7323,0.43824,0.006144,0.216416,0.004768,0.004096,0.006176,0.194528,0.006112
+534,1150.4,0.869263,0.440704,0.006496,0.216864,0.004352,0.005472,0.004768,0.196608,0.006144
+535,1260.11,0.793579,0.43184,0.005824,0.216992,0.004512,0.005312,0.004928,0.188224,0.006048
+536,724.443,1.38037,0.448064,0.006144,0.233472,0.004096,0.005728,0.004544,0.188,0.00608
+537,1390.6,0.719116,0.444736,0.005792,0.223904,0.005536,0.004704,0.005664,0.192992,0.006144
+538,565.082,1.76965,0.673056,0.008192,0.456736,0.006016,0.005568,0.004768,0.18576,0.006016
+539,1222.69,0.817871,0.438464,0.005824,0.219584,0.004544,0.005248,0.004992,0.192256,0.006016
+540,1163.8,0.859253,0.42608,0.005824,0.215456,0.005664,0.004576,0.005856,0.18256,0.006144
+541,1181.25,0.846558,0.434592,0.005792,0.219904,0.005696,0.004544,0.005824,0.186688,0.006144
+542,1136.52,0.879883,0.428032,0.006144,0.210208,0.004832,0.004096,0.006144,0.190464,0.006144
+543,1233.36,0.810791,0.4384,0.007232,0.223552,0.004736,0.004096,0.006144,0.187424,0.005216
+544,1083.45,0.922974,0.427744,0.006144,0.217088,0.00528,0.004896,0.005472,0.182816,0.006048
+545,672.081,1.48792,0.689024,0.00704,0.474272,0.00496,0.004096,0.006144,0.186368,0.006144
+546,736.757,1.3573,0.459072,0.005824,0.241408,0.004928,0.00416,0.006144,0.190464,0.006144
+547,1008.62,0.991455,0.470976,0.006016,0.255456,0.004768,0.004096,0.006144,0.188416,0.00608
+548,1206.84,0.828613,0.465632,0.004992,0.249056,0.004736,0.004096,0.006144,0.190464,0.006144
+549,278.072,3.59619,2.18685,0.005792,1.95763,0.006976,0.005728,0.004512,0.20016,0.006048
+550,1035.91,0.965332,0.459712,0.005056,0.231424,0.0056,0.00464,0.005664,0.201184,0.006144
+551,1194.69,0.837036,0.433696,0.005824,0.216832,0.00496,0.004192,0.006144,0.18976,0.005984
+552,1223.6,0.817261,0.442464,0.005888,0.215104,0.004384,0.00544,0.0048,0.200704,0.006144
+553,734.379,1.36169,0.456576,0.006144,0.218112,0.00496,0.014016,0.005888,0.201248,0.006208
+554,1433.67,0.69751,0.448928,0.005792,0.229056,0.004896,0.004224,0.006144,0.193632,0.005184
+555,1101.22,0.908081,0.457024,0.00576,0.246336,0.005184,0.004864,0.005472,0.184224,0.005184
+556,653.478,1.53027,0.481184,0.007936,0.256928,0.005632,0.004608,0.005728,0.194368,0.005984
+557,1202.41,0.831665,0.448128,0.005984,0.227552,0.004672,0.005152,0.005088,0.193632,0.006048
+558,1144.45,0.873779,0.441088,0.00496,0.221024,0.004192,0.005664,0.004544,0.19456,0.006144
+559,1253.56,0.797729,0.44032,0.006176,0.217056,0.005536,0.004704,0.005664,0.19504,0.006144
+560,1067.92,0.936401,0.481408,0.006144,0.260096,0.00528,0.004896,0.005472,0.194304,0.005216
+561,1172.97,0.852539,0.437216,0.005088,0.219136,0.00544,0.0048,0.005536,0.191072,0.006144
+562,1066.11,0.937988,0.4552,0.005056,0.239616,0.004096,0.005792,0.004448,0.190144,0.006048
+563,832.013,1.2019,0.917024,0.005792,0.69888,0.006144,0.006016,0.005472,0.188672,0.006048
+564,865.23,1.15576,0.447936,0.006144,0.228992,0.00448,0.006016,0.005472,0.190784,0.006048
+565,1329.87,0.751953,0.438432,0.005824,0.22112,0.00464,0.005184,0.005088,0.190432,0.006144
+566,1150.08,0.869507,0.431264,0.005824,0.213344,0.004096,0.005856,0.00544,0.190688,0.006016
+567,1202.58,0.831543,0.450592,0.006176,0.235488,0.005152,0.004896,0.005472,0.187232,0.006176
+568,1022.85,0.977661,0.462816,0.005824,0.244192,0.006144,0.004096,0.006144,0.190368,0.006048
+569,987.821,1.01233,0.469024,0.005824,0.248128,0.006144,0.00512,0.005152,0.19248,0.006176
+570,961.728,1.03979,0.474112,0.00512,0.256,0.005152,0.004896,0.005472,0.191328,0.006144
+571,601.248,1.66321,0.517408,0.008192,0.294912,0.005472,0.004768,0.0056,0.192384,0.00608
+572,649.798,1.53894,0.475072,0.005888,0.259648,0.0048,0.004096,0.006144,0.188416,0.00608
+573,370.981,2.69556,0.513312,0.006144,0.292448,0.004512,0.005504,0.004768,0.193888,0.006048
+574,982.961,1.01733,1.02195,0.006144,0.505856,0.032,0.024928,0.004512,0.442368,0.006144
+575,637.163,1.56946,0.4936,0.005824,0.259616,0.004928,0.004096,0.006144,0.206848,0.006144
+576,1047.7,0.954468,0.472512,0.006144,0.249792,0.00416,0.005696,0.004576,0.196064,0.00608
+577,1099.3,0.909668,0.479872,0.005824,0.250624,0.004288,0.005536,0.004704,0.202752,0.006144
+578,948.807,1.05396,0.46816,0.00592,0.25008,0.005568,0.004672,0.005696,0.190208,0.006016
+579,957.121,1.0448,0.528576,0.00592,0.306752,0.004928,0.004128,0.006144,0.19456,0.006144
+580,1264.78,0.790649,0.469856,0.00496,0.251712,0.004288,0.005536,0.004704,0.192512,0.006144
+581,493.791,2.02515,0.697536,0.008192,0.475104,0.0056,0.004672,0.006144,0.191744,0.00608
+582,1107.63,0.902832,0.4608,0.005824,0.235424,0.00496,0.004224,0.006144,0.19824,0.005984
+583,1217.24,0.821533,0.458112,0.005728,0.242432,0.004096,0.005856,0.005472,0.188448,0.00608
+584,1144.77,0.873535,0.442432,0.005792,0.218656,0.00496,0.004224,0.006112,0.19664,0.006048
+585,1187.94,0.841797,0.439392,0.006144,0.228704,0.004768,0.004096,0.006144,0.183456,0.00608
+586,1120.04,0.892822,0.45504,0.005824,0.240288,0.005632,0.004608,0.00576,0.186752,0.006176
+587,1041.05,0.960571,0.451104,0.005792,0.225952,0.015616,0.004896,0.005472,0.187232,0.006144
+588,841.759,1.18799,0.939488,0.043008,0.685792,0.005568,0.00496,0.00608,0.188064,0.006016
+589,971.307,1.02954,0.443616,0.006144,0.216672,0.004512,0.005312,0.004928,0.2,0.006048
+590,1132.12,0.883301,0.44032,0.006144,0.219136,0.00576,0.00448,0.005824,0.192832,0.006144
+591,1073.66,0.931396,0.442368,0.006144,0.227328,0.004096,0.005696,0.004544,0.188416,0.006144
+592,1170.95,0.854004,0.446624,0.004992,0.231424,0.005536,0.004704,0.005632,0.18832,0.006016
+593,872.046,1.14673,0.462848,0.005088,0.24128,0.00448,0.005344,0.004896,0.195744,0.006016
+594,893.738,1.1189,0.929056,0.005824,0.700736,0.0056,0.004704,0.006144,0.200032,0.006016
+595,1049.05,0.953247,0.62672,0.00592,0.397536,0.005696,0.004544,0.005824,0.201024,0.006176
+596,922.003,1.08459,0.466944,0.005824,0.241984,0.00544,0.0048,0.005536,0.197216,0.006144
+597,1044.5,0.957397,0.447072,0.004864,0.220544,0.004736,0.004096,0.006144,0.200672,0.006016
+598,1431.42,0.698608,0.45472,0.004992,0.22112,0.00576,0.004448,0.006144,0.206272,0.005984
+599,1117.45,0.894897,0.453984,0.006144,0.22288,0.004448,0.005504,0.004736,0.204192,0.00608
+600,1243.47,0.804199,0.446432,0.006144,0.21504,0.005568,0.004672,0.005696,0.2032,0.006112
+601,1128.22,0.886353,0.45056,0.006144,0.219136,0.005696,0.004544,0.005856,0.202944,0.00624
+602,739.484,1.35229,0.452608,0.008192,0.233024,0.004544,0.00528,0.004992,0.190432,0.006144
+603,958.802,1.04297,0.479264,0.006048,0.2496,0.004448,0.005408,0.004864,0.20272,0.006176
+604,1114.71,0.897095,0.448576,0.005824,0.220736,0.004928,0.004096,0.006144,0.200736,0.006112
+605,1195.56,0.836426,0.446496,0.006176,0.227296,0.004096,0.005856,0.00544,0.191456,0.006176
+606,1156.9,0.86438,0.436768,0.005824,0.21792,0.00576,0.00448,0.006144,0.190464,0.006176
+607,1116.53,0.89563,0.469056,0.00576,0.245984,0.004416,0.00544,0.0048,0.196576,0.00608
+608,1174.82,0.851196,0.460544,0.005952,0.237984,0.005184,0.004896,0.005472,0.194976,0.00608
+609,580.293,1.72327,0.47008,0.007008,0.247648,0.004256,0.005568,0.004672,0.195744,0.005184
+610,1153.97,0.866577,0.46224,0.006176,0.239584,0.005472,0.004768,0.0056,0.194432,0.006208
+611,1198.01,0.834717,0.442656,0.005792,0.221696,0.005632,0.004608,0.005728,0.193984,0.005216
+612,1157.72,0.86377,0.46208,0.005824,0.243296,0.004864,0.004096,0.006144,0.191808,0.006048
+613,1272.64,0.785767,0.437888,0.006176,0.216608,0.004544,0.00528,0.00496,0.194272,0.006048
+614,1127.6,0.886841,0.430272,0.005792,0.209312,0.004288,0.005504,0.004736,0.19456,0.00608
+615,949.137,1.05359,0.456352,0.006144,0.23664,0.004928,0.004192,0.006144,0.192192,0.006112
+616,1259.53,0.793945,0.451168,0.005824,0.23184,0.004608,0.005216,0.005024,0.192512,0.006144
+617,658.203,1.51929,0.489408,0.008032,0.263392,0.004896,0.004256,0.006112,0.19664,0.00608
+618,1134,0.881836,0.4536,0.005088,0.232896,0.004672,0.004096,0.006144,0.19456,0.006144
+619,1035.52,0.965698,0.460704,0.005824,0.240416,0.005728,0.004512,0.005856,0.192288,0.00608
+620,1298.05,0.770386,0.441728,0.006144,0.218368,0.004864,0.005152,0.005088,0.196032,0.00608
+621,1225.43,0.81604,0.438272,0.005824,0.217408,0.005248,0.004864,0.005504,0.19328,0.006144
+622,1087.63,0.919434,0.44544,0.00512,0.214144,0.00496,0.004128,0.006176,0.204768,0.006144
+623,795.108,1.25769,1.00579,0.005792,0.495552,0.045696,0.007232,0.005088,0.440288,0.006144
+624,718.533,1.39172,0.473056,0.005056,0.249856,0.005792,0.004448,0.00592,0.19616,0.005824
+625,1008.87,0.991211,0.46096,0.005056,0.22736,0.005408,0.0048,0.005568,0.20672,0.006048
+626,1583.3,0.631592,0.442368,0.00608,0.221248,0.005504,0.004736,0.005632,0.193152,0.006016
+627,1161.33,0.861084,0.443168,0.00496,0.217056,0.005408,0.0048,0.006144,0.198656,0.006144
+628,587.872,1.70105,0.444416,0.006144,0.22048,0.0048,0.004096,0.006144,0.196608,0.006144
+629,1332.03,0.750732,0.687488,0.006048,0.450432,0.013632,0.005024,0.006048,0.200288,0.006016
+630,756.068,1.32263,0.471968,0.006112,0.24432,0.00448,0.005344,0.004864,0.200704,0.006144
+631,862.225,1.15979,0.483328,0.005856,0.25424,0.005344,0.004864,0.005504,0.201376,0.006144
+632,1286.84,0.7771,0.444416,0.006144,0.221184,0.004096,0.00576,0.004512,0.196576,0.006144
+633,1176.84,0.849731,0.44352,0.00592,0.221408,0.005152,0.004896,0.00544,0.194656,0.006048
+634,1203.47,0.830933,0.452,0.00608,0.216352,0.004896,0.004096,0.006144,0.208384,0.006048
+635,1116.53,0.89563,0.446464,0.006144,0.21824,0.00496,0.004128,0.00608,0.200768,0.006144
+636,1164.79,0.858521,0.456704,0.006144,0.227328,0.005664,0.004576,0.00576,0.201088,0.006144
+637,660.379,1.51428,0.747552,0.008192,0.511936,0.00416,0.005664,0.004576,0.206848,0.006176
+638,920.76,1.08606,0.4608,0.006112,0.237152,0.004544,0.00528,0.00496,0.196608,0.006144
+639,1127.6,0.886841,0.4424,0.005824,0.211168,0.004192,0.005632,0.004608,0.196608,0.014368
+640,1208.62,0.827393,0.457664,0.005088,0.233472,0.005152,0.004864,0.005504,0.197472,0.006112
+641,1107.78,0.90271,0.444032,0.005984,0.221344,0.004096,0.005728,0.004512,0.19632,0.006048
+642,698.142,1.43237,0.456704,0.006176,0.241312,0.004416,0.005376,0.004896,0.188384,0.006144
+643,1269.68,0.787598,0.447008,0.005856,0.230208,0.00512,0.004896,0.00432,0.190464,0.006144
+644,880.009,1.13635,0.915488,0.006144,0.690176,0.006144,0.005664,0.004576,0.196608,0.006176
+645,810.527,1.23376,0.461728,0.005024,0.231424,0.005152,0.004992,0.00544,0.203584,0.006112
+646,1211.66,0.825317,0.444416,0.005888,0.22144,0.005472,0.004768,0.005568,0.195168,0.006112
+647,1150.4,0.869263,0.436288,0.006144,0.208896,0.005536,0.004704,0.005664,0.199136,0.006208
+648,1154.94,0.865845,0.450688,0.005888,0.217472,0.004096,0.005856,0.00544,0.205792,0.006144
+649,1057.17,0.945923,0.4976,0.006144,0.266272,0.005696,0.004512,0.005824,0.203072,0.00608
+650,824.394,1.21301,0.905216,0.006144,0.683232,0.004896,0.006144,0.005568,0.193088,0.006144
+651,987.226,1.01294,0.655392,0.005824,0.434368,0.004256,0.005632,0.004608,0.19456,0.006144
+652,909.515,1.09949,0.456704,0.006144,0.236928,0.004736,0.004096,0.006176,0.19248,0.006144
+653,1140.79,0.876587,0.44848,0.005856,0.229696,0.004544,0.00528,0.00496,0.192096,0.006048
+654,1260.5,0.793335,0.448288,0.006016,0.218848,0.004608,0.005184,0.005056,0.20256,0.006016
+655,1206.48,0.828857,0.444096,0.005952,0.21696,0.004416,0.00544,0.0048,0.20048,0.006048
+656,867.613,1.15259,0.45408,0.006144,0.2224,0.004928,0.00544,0.0048,0.204352,0.006016
+657,1216.87,0.821777,0.683488,0.006144,0.448224,0.006432,0.006144,0.005664,0.204832,0.006048
+658,747.786,1.33728,0.806432,0.005856,0.342432,0.004416,0.005376,0.004864,0.437344,0.006144
+659,887.348,1.12695,0.481088,0.00576,0.246048,0.004384,0.00544,0.004832,0.208544,0.00608
+660,1153.15,0.867188,0.458144,0.005824,0.221248,0.004448,0.005376,0.004864,0.210144,0.00624
+661,1172.8,0.852661,0.4688,0.005728,0.23744,0.004864,0.004096,0.006176,0.204416,0.00608
+662,1140.79,0.876587,0.438976,0.00496,0.21488,0.005408,0.004832,0.005504,0.197248,0.006144
+663,1174.82,0.851196,0.446592,0.005824,0.227104,0.004736,0.004096,0.006144,0.192512,0.006176
+664,1105.23,0.904785,0.712704,0.006144,0.479232,0.007328,0.00496,0.006112,0.202784,0.006144
+665,699.812,1.42896,0.555808,0.004896,0.32768,0.005664,0.004576,0.005792,0.201056,0.006144
+666,908.607,1.10059,0.45056,0.006144,0.219136,0.005888,0.004352,0.006016,0.20288,0.006144
+667,1266.15,0.789795,0.446304,0.006048,0.214976,0.004256,0.005568,0.004704,0.204704,0.006048
+668,1161.33,0.861084,0.457312,0.004992,0.212768,0.00416,0.006144,0.005536,0.217312,0.0064
+669,1210.4,0.826172,0.44976,0.006144,0.212992,0.004096,0.005824,0.005472,0.209184,0.006048
+670,1075.35,0.929932,0.4624,0.006176,0.225056,0.004288,0.005504,0.004736,0.210592,0.006048
+671,1199.06,0.833984,0.448576,0.005792,0.225728,0.005568,0.00464,0.005728,0.194976,0.006144
+672,630.348,1.58643,0.722944,0.007904,0.225568,0.005216,0.004896,0.005664,0.467552,0.006144
+673,1062.38,0.941284,0.458656,0.006144,0.223232,0.00544,0.0048,0.005568,0.207424,0.006048
+674,1029.4,0.971436,0.442368,0.005824,0.211264,0.004096,0.005824,0.005472,0.203744,0.006144
+675,1191.22,0.839478,0.457088,0.005824,0.211648,0.005312,0.004864,0.022592,0.200704,0.006144
+676,1199.24,0.833862,0.432448,0.005792,0.209952,0.005088,0.004896,0.00544,0.195264,0.006016
+677,614.877,1.62634,0.45344,0.00496,0.226912,0.00448,0.005344,0.004896,0.200928,0.00592
+678,664.073,1.50586,0.547392,0.007936,0.260256,0.004768,0.004096,0.006144,0.216352,0.04784
+679,908.405,1.10083,0.452768,0.006144,0.227232,0.004192,0.0056,0.00464,0.199744,0.005216
+680,656.989,1.52209,0.450944,0.005088,0.219104,0.005696,0.004544,0.005824,0.20464,0.006048
+681,1228.19,0.814209,0.444416,0.00608,0.216768,0.004512,0.00528,0.004928,0.200704,0.006144
+682,1158.21,0.863403,0.436672,0.005824,0.211232,0.004608,0.005216,0.005056,0.198624,0.006112
+683,1082.17,0.924072,0.454464,0.006112,0.225312,0.005472,0.004768,0.0056,0.201152,0.006048
+684,590.67,1.69299,0.48944,0.008192,0.253952,0.005632,0.004608,0.005728,0.204768,0.00656
+685,919.52,1.08752,0.4624,0.006144,0.241312,0.004448,0.005376,0.004864,0.194304,0.005952
+686,1116.68,0.895508,0.460608,0.005856,0.235808,0.005216,0.004864,0.00544,0.197408,0.006016
+687,1202.41,0.831665,0.442848,0.005824,0.219968,0.005728,0.00448,0.00592,0.19488,0.006048
+688,1116.68,0.895508,0.440448,0.006176,0.216512,0.00464,0.005184,0.005056,0.197696,0.005184
+689,1257.79,0.795044,0.434048,0.006016,0.211072,0.005344,0.004896,0.005472,0.195168,0.00608
+690,971.537,1.0293,0.462528,0.006144,0.244928,0.004928,0.004096,0.006144,0.190272,0.006016
+691,728.113,1.37341,0.451968,0.007904,0.229856,0.005184,0.004864,0.005504,0.192576,0.00608
+692,1139.36,0.877686,0.463968,0.006144,0.235168,0.004448,0.005376,0.004864,0.201888,0.00608
+693,905.393,1.10449,0.458848,0.006144,0.224704,0.004672,0.005152,0.005088,0.207872,0.005216
+694,1523.53,0.656372,0.460064,0.006144,0.223232,0.004096,0.00576,0.00448,0.210304,0.006048
+695,1085.03,0.921631,0.456256,0.006144,0.221184,0.00544,0.0048,0.005568,0.207072,0.006048
+696,1198.71,0.834229,0.441248,0.005024,0.219136,0.005888,0.004352,0.005856,0.194976,0.006016
+697,1082.02,0.924194,0.44816,0.00576,0.217568,0.004352,0.00544,0.004832,0.20416,0.006048
+698,818.545,1.22168,0.910496,0.00592,0.679552,0.004704,0.006144,0.005792,0.202368,0.006016
+699,767.4,1.3031,0.698368,0.006144,0.466656,0.005568,0.00496,0.006112,0.202784,0.006144
+700,1051.2,0.951294,0.45056,0.006144,0.217088,0.005952,0.004288,0.006144,0.204832,0.006112
+701,1160.18,0.861938,0.447584,0.005792,0.21344,0.006144,0.004096,0.006144,0.205888,0.00608
+702,1094.31,0.913818,0.454688,0.006144,0.219136,0.005568,0.004672,0.005664,0.207328,0.006176
+703,1213.81,0.823853,0.450528,0.006016,0.214528,0.004736,0.004096,0.006144,0.208896,0.006112
+704,997.079,1.00293,0.479232,0.006144,0.253952,0.005856,0.004384,0.005952,0.1968,0.006144
+705,761.409,1.31335,0.72592,0.007072,0.499712,0.005664,0.004576,0.006144,0.196608,0.006144
+706,930.909,1.07422,0.46016,0.005824,0.235264,0.004864,0.004096,0.006144,0.197984,0.005984
+707,1123.42,0.890137,0.456416,0.006144,0.234528,0.004928,0.004256,0.006112,0.194368,0.00608
+708,1178.54,0.848511,0.46,0.006144,0.223232,0.005792,0.004448,0.005952,0.20864,0.005792
+709,1269.29,0.787842,0.454304,0.005984,0.221216,0.004224,0.0056,0.00464,0.20656,0.00608
+710,1177.01,0.849609,0.454912,0.005856,0.2176,0.005376,0.004864,0.005504,0.209536,0.006176
+711,1078.46,0.927246,0.457152,0.005792,0.229984,0.004288,0.005536,0.004736,0.200672,0.006144
+712,772.539,1.29443,0.727296,0.007904,0.499296,0.005056,0.00608,0.005504,0.198368,0.005088
+713,903.995,1.1062,0.710496,0.005664,0.469632,0.00576,0.0056,0.005024,0.212736,0.00608
+714,1109.13,0.901611,0.48128,0.006176,0.234848,0.004736,0.004096,0.006144,0.219136,0.006144
+715,1033.69,0.967407,0.465024,0.00496,0.212928,0.005312,0.004896,0.005504,0.223904,0.00752
+716,1224.51,0.81665,0.48288,0.005824,0.234272,0.004096,0.005792,0.005472,0.220256,0.007168
+717,1120.5,0.892456,0.460896,0.005792,0.213088,0.004416,0.005408,0.004832,0.221184,0.006176
+718,800.782,1.24878,0.483328,0.006176,0.239008,0.004672,0.005856,0.00608,0.215392,0.006144
+719,643.924,1.55298,0.495168,0.008192,0.245504,0.004352,0.005472,0.0048,0.220256,0.006592
+720,914.082,1.09399,0.464928,0.005824,0.225824,0.005824,0.004416,0.005952,0.211008,0.00608
+721,1279.8,0.781372,0.452224,0.00592,0.2192,0.004256,0.005568,0.004704,0.206496,0.00608
+722,1220.14,0.81958,0.436224,0.006144,0.214496,0.00464,0.004096,0.005984,0.19472,0.006144
+723,1052.55,0.950073,0.4424,0.005792,0.213024,0.004448,0.005408,0.004832,0.202752,0.006144
+724,1264.98,0.790527,0.442528,0.005792,0.218528,0.00496,0.004256,0.006048,0.197728,0.005216
+725,1135.73,0.880493,0.444608,0.00592,0.221536,0.00416,0.005664,0.004608,0.196576,0.006144
+726,883.33,1.13208,0.905824,0.00784,0.678848,0.006144,0.005728,0.004512,0.196608,0.006144
+727,819.938,1.2196,0.448512,0.006144,0.21824,0.00496,0.004128,0.006144,0.202752,0.006144
+728,1100.48,0.908691,0.438272,0.006144,0.210784,0.004256,0.0056,0.00464,0.200704,0.006144
+729,1089.36,0.917969,0.449984,0.005856,0.219456,0.005152,0.004896,0.005472,0.203136,0.006016
+730,1299.49,0.769531,0.45312,0.005824,0.225408,0.004704,0.00512,0.00512,0.2008,0.006144
+731,1183.13,0.845215,0.44528,0.00496,0.214944,0.004192,0.005632,0.00464,0.204768,0.006144
+732,1048.78,0.953491,0.45536,0.00496,0.223072,0.005184,0.004896,0.005504,0.2056,0.006144
+733,875.681,1.14197,0.914048,0.005824,0.680832,0.0056,0.004704,0.006176,0.204768,0.006144
+734,720.81,1.38733,0.712352,0.005824,0.479584,0.005568,0.004832,0.006176,0.204416,0.005952
+735,1039.99,0.961548,0.467936,0.005056,0.234656,0.004896,0.00416,0.006144,0.206848,0.006176
+736,1485.13,0.67334,0.46688,0.006176,0.220736,0.004512,0.00528,0.004992,0.219104,0.00608
+737,1177.18,0.849487,0.464608,0.005824,0.217792,0.00432,0.005472,0.004768,0.219136,0.007296
+738,1113.04,0.898438,0.462592,0.005792,0.215168,0.004576,0.005248,0.004992,0.220768,0.006048
+739,790.886,1.2644,0.479232,0.006144,0.230784,0.004736,0.005216,0.005024,0.221184,0.006144
+740,689.678,1.44995,0.480032,0.006944,0.23552,0.005696,0.004544,0.005824,0.215392,0.006112
+741,1008.12,0.991943,0.468352,0.006144,0.220288,0.004928,0.00416,0.006144,0.22064,0.006048
+742,1154.62,0.866089,0.468992,0.00592,0.219392,0.005312,0.004864,0.00592,0.22144,0.006144
+743,1089.07,0.918213,0.443584,0.006144,0.208896,0.00592,0.005504,0.00496,0.206112,0.006048
+744,1082.02,0.924194,0.4592,0.005824,0.20768,0.005504,0.004736,0.006144,0.223232,0.00608
+745,1179.55,0.847778,0.477184,0.00496,0.233472,0.004096,0.005888,0.005472,0.217248,0.006048
+746,1003.18,0.996826,0.475136,0.006176,0.22688,0.004512,0.005856,0.00544,0.220128,0.006144
+747,655.046,1.52661,0.559328,0.007936,0.281056,0.005728,0.004512,0.005856,0.231584,0.022656
+748,931.544,1.07349,0.452704,0.005824,0.214784,0.004768,0.004096,0.006144,0.210944,0.006144
+749,1169.62,0.85498,0.464896,0.006144,0.221184,0.005216,0.004896,0.005504,0.215808,0.006144
+750,983.197,1.01709,0.454656,0.006144,0.217088,0.005728,0.004512,0.005824,0.209216,0.006144
+751,1406.83,0.710815,0.448032,0.005792,0.212704,0.004864,0.004096,0.006144,0.20832,0.006112
+752,916.639,1.09094,0.438144,0.004992,0.210656,0.004352,0.005472,0.004768,0.201888,0.006016
+753,1366.93,0.731567,0.466944,0.006176,0.235488,0.005472,0.004768,0.0056,0.203296,0.006144
+754,589.48,1.69641,0.514624,0.007904,0.283392,0.005632,0.004608,0.005696,0.202208,0.005184
+755,933.561,1.07117,0.459296,0.005792,0.217216,0.004864,0.004096,0.006144,0.21504,0.006144
+756,1161,0.861328,0.453344,0.004832,0.210944,0.004096,0.00576,0.00448,0.217088,0.006144
+757,1195.91,0.836182,0.455904,0.006112,0.215072,0.005792,0.004448,0.00592,0.212576,0.005984
+758,1145.41,0.873047,0.456704,0.006144,0.214816,0.005472,0.004896,0.00544,0.213792,0.006144
+759,1127.75,0.886719,0.451072,0.005824,0.223968,0.00432,0.005504,0.004736,0.20048,0.00624
+760,1010.24,0.989868,0.7328,0.006144,0.499712,0.006304,0.005984,0.005888,0.20272,0.006048
+761,678.033,1.47485,0.723616,0.005792,0.226304,0.005888,0.004224,0.004256,0.471008,0.006144
+762,1082.02,0.924194,0.44464,0.006144,0.221184,0.004128,0.005696,0.004576,0.197696,0.005216
+763,1120.35,0.892578,0.44032,0.006144,0.21504,0.005696,0.004544,0.005568,0.197184,0.006144
+764,1173.81,0.851929,0.472096,0.006176,0.22896,0.00448,0.005344,0.004896,0.216192,0.006048
+765,1118.51,0.894043,0.465888,0.005088,0.219136,0.005664,0.004576,0.005856,0.219424,0.006144
+766,623.345,1.60425,0.508032,0.006112,0.248416,0.005472,0.004768,0.0056,0.231584,0.00608
+767,695.121,1.4386,0.470976,0.008192,0.228992,0.00448,0.005344,0.004896,0.213024,0.006048
+768,919.416,1.08765,0.463168,0.005792,0.219808,0.005728,0.004512,0.005856,0.21648,0.004992
+769,1165.79,0.857788,0.459712,0.005024,0.216224,0.004992,0.004064,0.006144,0.217088,0.006176
+770,1215.43,0.822754,0.45744,0.00496,0.214176,0.004832,0.004096,0.006144,0.217088,0.006144
+771,1100.04,0.909058,0.454496,0.005792,0.207232,0.005824,0.004384,0.00608,0.219072,0.006112
+772,891.695,1.12146,0.4584,0.006144,0.212352,0.004736,0.004096,0.006176,0.218624,0.006272
+773,1377.73,0.72583,0.45248,0.005792,0.22192,0.0056,0.004608,0.00576,0.202752,0.006048
+774,686.672,1.4563,0.489472,0.00816,0.245792,0.004096,0.005824,0.004416,0.204768,0.016416
+775,969.467,1.03149,0.454656,0.006016,0.217216,0.00592,0.00432,0.006144,0.208896,0.006144
+776,1181.42,0.846436,0.454848,0.004896,0.217088,0.005184,0.004864,0.005344,0.211424,0.006048
+777,1163.97,0.859131,0.452896,0.004992,0.214144,0.0048,0.005568,0.004736,0.212576,0.00608
+778,1149.75,0.869751,0.444128,0.006144,0.212256,0.004832,0.004096,0.006144,0.204608,0.006048
+779,1105.09,0.904907,0.440448,0.005792,0.209856,0.0056,0.004608,0.00576,0.202752,0.00608
+780,1174.99,0.851074,0.48336,0.005792,0.235904,0.00544,0.0048,0.005536,0.219776,0.006112
+781,786.03,1.27222,0.706624,0.007968,0.467456,0.0056,0.004864,0.00608,0.208448,0.006208
+782,953.667,1.04858,0.446528,0.005824,0.212768,0.004672,0.005152,0.006528,0.205408,0.006176
+783,1164.13,0.859009,0.439264,0.005088,0.208896,0.005504,0.004736,0.005632,0.203392,0.006016
+784,1262.83,0.79187,0.443488,0.005792,0.209248,0.00416,0.005664,0.005632,0.206944,0.006048
+785,1110.03,0.900879,0.444448,0.006144,0.210944,0.004096,0.005728,0.004608,0.206752,0.006176
+786,1174.65,0.851318,0.44192,0.005824,0.20768,0.00576,0.00448,0.005728,0.206368,0.00608
+787,1185.53,0.843506,0.445184,0.005024,0.214208,0.004896,0.004096,0.006144,0.204736,0.00608
+788,865.139,1.15588,0.915072,0.006144,0.681504,0.004576,0.006144,0.00592,0.204768,0.006016
+789,918.592,1.08862,0.479264,0.006144,0.243712,0.005536,0.004704,0.005664,0.207328,0.006176
+790,947.929,1.05493,0.445856,0.005824,0.211488,0.005696,0.004544,0.005664,0.206592,0.006048
+791,1177.18,0.849487,0.44608,0.005792,0.211904,0.005504,0.004736,0.00544,0.206688,0.006016
+792,1241.78,0.805298,0.442368,0.006144,0.208576,0.004416,0.005408,0.004832,0.206848,0.006144
+793,1103.15,0.906494,0.438624,0.00576,0.209632,0.005696,0.004544,0.006144,0.200704,0.006144
+794,1216.51,0.822021,0.453536,0.005024,0.222816,0.004512,0.005312,0.004928,0.2048,0.006144
+795,850.145,1.17627,0.914016,0.005824,0.678368,0.0056,0.005088,0.005984,0.207008,0.006144
+796,973.5,1.02722,0.705568,0.00512,0.210144,0.004896,0.004096,0.006144,0.468992,0.006176
+797,914.49,1.09351,0.448672,0.005824,0.207328,0.005472,0.004768,0.006144,0.212992,0.006144
+798,1074.5,0.930664,0.444896,0.005824,0.20768,0.005248,0.0048,0.005504,0.209696,0.006144
+799,1313.66,0.76123,0.446464,0.005984,0.207008,0.00512,0.004864,0.005504,0.21184,0.006144
+800,1052.42,0.950195,0.451456,0.005056,0.210144,0.004864,0.004096,0.006144,0.21504,0.006112
+801,1165.46,0.858032,0.44416,0.006144,0.20688,0.00576,0.004448,0.005728,0.209152,0.006048
+802,1001.59,0.998413,0.4592,0.005824,0.227552,0.00464,0.005152,0.005088,0.2048,0.006144
+803,951.894,1.05054,0.926624,0.005024,0.692224,0.006144,0.005568,0.004672,0.206848,0.006144
+804,926.802,1.07898,0.456352,0.005792,0.21568,0.004256,0.0056,0.004672,0.214336,0.006016
+805,1140.47,0.876831,0.465088,0.005792,0.231392,0.00496,0.00416,0.006144,0.206528,0.006112
+806,1102.56,0.906982,0.442048,0.005792,0.211776,0.005248,0.004896,0.0056,0.20272,0.006016
+807,1159.68,0.862305,0.454688,0.006016,0.215168,0.005504,0.004736,0.0056,0.211488,0.006176
+808,1029.53,0.971313,0.447648,0.006144,0.212352,0.004736,0.005248,0.004992,0.207904,0.006272
+809,1300.32,0.769043,0.450752,0.005824,0.218688,0.004928,0.004224,0.005952,0.204992,0.006144
+810,1144.45,0.873779,0.46112,0.005824,0.22144,0.00448,0.005344,0.004928,0.21296,0.006144
+811,594.398,1.68237,0.694464,0.007072,0.455968,0.004832,0.006144,0.005664,0.208768,0.006016
+812,1170.95,0.854004,0.45024,0.005824,0.211872,0.004128,0.00576,0.005472,0.2112,0.005984
+813,1137.78,0.878906,0.446688,0.005792,0.210784,0.004832,0.004096,0.006144,0.208896,0.006144
+814,1258.76,0.794434,0.448736,0.005824,0.211232,0.004512,0.00528,0.00496,0.21088,0.006048
+815,1031.48,0.969482,0.454464,0.005792,0.212768,0.004832,0.004096,0.006144,0.214816,0.006016
+816,853.333,1.17188,0.469728,0.005056,0.22832,0.004896,0.00544,0.004832,0.215008,0.006176
+817,1123.73,0.889893,0.72752,0.00496,0.483296,0.007552,0.004736,0.005824,0.215104,0.006048
+818,686.155,1.4574,0.69632,0.005856,0.458976,0.0056,0.004704,0.006144,0.208896,0.006144
+819,1163.31,0.859619,0.458752,0.005856,0.21264,0.004736,0.004096,0.006144,0.219136,0.006144
+820,1116.99,0.895264,0.477152,0.006144,0.23552,0.005696,0.004544,0.005792,0.213344,0.006112
+821,1101.82,0.907593,0.482944,0.006144,0.237568,0.005536,0.004704,0.005664,0.21728,0.006048
+822,1108.98,0.901733,0.468768,0.005824,0.230336,0.004096,0.005888,0.005504,0.211072,0.006048
+823,1113.65,0.897949,0.475264,0.00592,0.233696,0.004096,0.005728,0.004512,0.216096,0.005216
+824,869.639,1.1499,0.915264,0.005824,0.680352,0.006144,0.005792,0.004544,0.20656,0.006048
+825,783.474,1.27637,0.452608,0.006144,0.214624,0.004512,0.00544,0.0048,0.210944,0.006144
+826,1260.31,0.793457,0.442976,0.005824,0.209536,0.004384,0.00544,0.0048,0.206848,0.006144
+827,1180.06,0.847412,0.444512,0.006144,0.212992,0.004096,0.00576,0.005504,0.2048,0.005216
+828,1186.39,0.842896,0.445376,0.004992,0.208768,0.005216,0.004864,0.005504,0.210816,0.005216
+829,1097.53,0.911133,0.453888,0.006016,0.211072,0.00544,0.0048,0.00592,0.214592,0.006048
+830,958.129,1.0437,0.456736,0.006144,0.224288,0.004928,0.004256,0.006176,0.204768,0.006176
+831,825.474,1.21143,0.742656,0.007968,0.493024,0.005056,0.00608,0.005504,0.21888,0.006144
+832,942.91,1.06055,0.718336,0.005792,0.47392,0.006112,0.005728,0.004512,0.216224,0.006048
+833,1121.73,0.891479,0.460256,0.00576,0.2152,0.004544,0.00528,0.00496,0.218496,0.006016
+834,1176,0.850342,0.45856,0.005824,0.215808,0.005824,0.004416,0.00592,0.214752,0.006016
+835,1165.96,0.857666,0.442432,0.005792,0.212992,0.004512,0.005184,0.005056,0.202752,0.006144
+836,1117.45,0.894897,0.444416,0.006048,0.215136,0.005568,0.004672,0.005632,0.201216,0.006144
+837,1189.31,0.84082,0.438272,0.006144,0.214528,0.004608,0.005216,0.005024,0.196608,0.006144
+838,1184.33,0.84436,0.440736,0.004992,0.214944,0.005824,0.004416,0.00592,0.198784,0.005856
+839,499.208,2.00317,0.804544,0.007872,0.258848,0.004096,0.00576,0.005536,0.516288,0.006144
+840,1245.36,0.802979,0.4808,0.006144,0.239136,0.004576,0.005248,0.004992,0.214688,0.006016
+841,1131.96,0.883423,0.45472,0.005824,0.22112,0.004544,0.00528,0.00496,0.207904,0.005088
+842,1246.31,0.802368,0.452608,0.006144,0.217088,0.005856,0.005472,0.005056,0.206848,0.006144
+843,1134.47,0.88147,0.441568,0.006144,0.21504,0.00544,0.0048,0.005568,0.198528,0.006048
+844,1188.28,0.841553,0.44864,0.006176,0.2208,0.004448,0.005376,0.005952,0.200672,0.005216
+845,1081.59,0.924561,0.454688,0.006144,0.218176,0.00496,0.004192,0.006144,0.208896,0.006176
+846,535.635,1.86694,0.723104,0.02544,0.470208,0.004928,0.006144,0.006144,0.204256,0.005984
+847,1059.49,0.943848,0.461824,0.005824,0.213024,0.004384,0.023872,0.0048,0.203808,0.006112
+848,1255.29,0.796631,0.459936,0.006144,0.219136,0.004096,0.005824,0.005504,0.213248,0.005984
+849,1255.48,0.796509,0.46064,0.006144,0.216512,0.004672,0.00512,0.00512,0.217088,0.005984
+850,450.754,2.21851,0.482336,0.005856,0.247136,0.00496,0.004192,0.006144,0.206848,0.0072
+851,596.737,1.67578,0.800768,0.00816,0.335904,0.007936,0.004352,0.006016,0.432256,0.006144
+852,949.247,1.05347,0.46112,0.004832,0.223104,0.004224,0.005632,0.004608,0.212672,0.006048
+853,1190.01,0.840332,0.476928,0.00496,0.233152,0.004224,0.005568,0.004672,0.218272,0.00608
+854,783.324,1.27661,0.483776,0.005792,0.231936,0.004384,0.00544,0.004832,0.225248,0.006144
+855,1352.48,0.73938,0.48128,0.005952,0.241856,0.004192,0.005792,0.005472,0.211872,0.006144
+856,1002.69,0.997314,0.471872,0.004864,0.239552,0.004096,0.005856,0.005472,0.206816,0.005216
+857,1128.84,0.885864,0.493472,0.006144,0.258048,0.00576,0.00448,0.005888,0.207104,0.006048
+858,625.63,1.59839,0.74192,0.007072,0.503744,0.005568,0.004736,0.006176,0.208576,0.006048
+859,1164.79,0.858521,0.464896,0.005856,0.230976,0.004832,0.004096,0.006144,0.206848,0.006144
+860,1054.45,0.948364,0.465376,0.005824,0.234272,0.00544,0.0048,0.005536,0.20336,0.006144
+861,1042.11,0.959595,0.463456,0.005792,0.224192,0.005408,0.004832,0.005568,0.211552,0.006112
+862,826.64,1.20972,0.47984,0.005824,0.237728,0.004672,0.005152,0.005088,0.21616,0.005216
+863,1081.31,0.924805,0.52224,0.006144,0.280608,0.005344,0.004864,0.005536,0.213632,0.006112
+864,740.62,1.35022,0.7896,0.008192,0.514048,0.005888,0.005568,0.004928,0.244928,0.006048
+865,1014.87,0.985352,0.466944,0.006144,0.226368,0.004928,0.004224,0.006144,0.212992,0.006144
+866,1078.89,0.92688,0.516096,0.006144,0.284672,0.004096,0.006144,0.005696,0.2032,0.006144
+867,992.368,1.00769,0.4648,0.004736,0.226848,0.004512,0.005312,0.004928,0.212416,0.006048
+868,1313.03,0.761597,0.45552,0.004992,0.217056,0.00592,0.00432,0.005856,0.211232,0.006144
+869,1039.07,0.962402,0.46288,0.006144,0.226432,0.004928,0.00416,0.006144,0.208896,0.006176
+870,1207.37,0.828247,0.455456,0.004992,0.21696,0.005856,0.004384,0.005952,0.211136,0.006176
+871,507.465,1.97058,0.718848,0.008192,0.479232,0.006144,0.00576,0.00448,0.208896,0.006144
+872,1160.18,0.861938,0.456288,0.005824,0.215104,0.004384,0.00544,0.0048,0.214688,0.006048
+873,1147.5,0.87146,0.460352,0.006144,0.214048,0.005088,0.005312,0.004928,0.218784,0.006048
+874,1158.37,0.863281,0.44992,0.005792,0.211008,0.004448,0.005376,0.004864,0.212128,0.006304
+875,1216.69,0.821899,0.447904,0.005856,0.211232,0.005792,0.004448,0.00592,0.208608,0.006048
+876,706.024,1.41638,0.47296,0.005824,0.230176,0.005984,0.005568,0.004832,0.214496,0.00608
+877,960.375,1.04126,0.923488,0.005792,0.67968,0.005088,0.00608,0.005472,0.215296,0.00608
+878,820.102,1.21936,0.458688,0.005792,0.219296,0.004928,0.004096,0.006144,0.212384,0.006048
+879,1027.21,0.973511,0.4608,0.006144,0.218304,0.004928,0.004096,0.006144,0.21504,0.006144
+880,1261.67,0.792603,0.45072,0.006176,0.215008,0.005152,0.004864,0.005472,0.208832,0.005216
+881,1091.25,0.916382,0.476,0.004992,0.230464,0.004928,0.004224,0.006144,0.219136,0.006112
+882,1304.87,0.766357,0.458848,0.005792,0.217216,0.004896,0.004128,0.006144,0.214656,0.006016
+883,1097.39,0.911255,0.493536,0.006144,0.253472,0.004576,0.005216,0.005024,0.212992,0.006112
+884,1047.57,0.95459,0.708096,0.006048,0.458848,0.007232,0.005056,0.017504,0.20736,0.006048
+885,625.153,1.59961,0.720896,0.02976,0.447424,0.005696,0.0056,0.005088,0.221184,0.006144
+886,1143.02,0.874878,0.461504,0.005824,0.219968,0.004288,0.005504,0.004768,0.215008,0.006144
+887,1123.27,0.890259,0.458848,0.005824,0.217248,0.004672,0.005152,0.00512,0.214816,0.006016
+888,1132.43,0.883057,0.458752,0.006144,0.214688,0.004448,0.005344,0.004896,0.217088,0.006144
+889,1200.82,0.832764,0.446528,0.005792,0.213408,0.004096,0.005856,0.004416,0.206816,0.006144
+890,765.321,1.30664,0.455712,0.006144,0.224704,0.004672,0.005152,0.005088,0.203936,0.006016
+891,1306.96,0.765137,0.481824,0.005792,0.25072,0.005152,0.004896,0.005472,0.203616,0.006176
+892,563.838,1.77356,0.468,0.007168,0.23488,0.004736,0.004096,0.006144,0.2048,0.006176
+893,1264.39,0.790894,0.450656,0.00576,0.21552,0.005376,0.004864,0.005504,0.207488,0.006144
+894,1163.47,0.859497,0.460896,0.005792,0.218112,0.005856,0.004384,0.0072,0.21344,0.006112
+895,1143.97,0.874146,0.460864,0.006208,0.217088,0.005664,0.004576,0.005792,0.215424,0.006112
+896,1084.17,0.922363,0.467488,0.005824,0.221952,0.004288,0.005536,0.004704,0.219136,0.006048
+897,851.205,1.1748,0.491872,0.006496,0.245664,0.004224,0.0056,0.00464,0.219104,0.006144
+898,949.247,1.05347,0.919552,0.006144,0.67584,0.006144,0.005984,0.00544,0.213856,0.006144
+899,778.929,1.28381,0.462112,0.006144,0.221184,0.004096,0.005792,0.005504,0.213408,0.005984
+900,1101.67,0.907715,0.458528,0.006176,0.217056,0.005728,0.004512,0.005856,0.213184,0.006016
+901,1162.32,0.860352,0.456832,0.005824,0.21504,0.004512,0.005312,0.004928,0.21504,0.006176
+902,1256.25,0.796021,0.454848,0.005792,0.215552,0.005408,0.004832,0.005504,0.211584,0.006176
+903,587.704,1.70154,0.460832,0.006144,0.22096,0.00432,0.005472,0.006528,0.211232,0.006176
+904,1517.32,0.659058,0.686912,0.004992,0.443616,0.006976,0.005728,0.00448,0.21504,0.00608
+905,615.2,1.62549,0.73504,0.006144,0.493568,0.006144,0.00592,0.004416,0.2128,0.006048
+906,1258.18,0.7948,0.460832,0.006112,0.215072,0.005696,0.004544,0.005856,0.217376,0.006176
+907,1145.25,0.873169,0.453952,0.005792,0.2128,0.004704,0.00416,0.00608,0.214368,0.006048
+908,1078.6,0.927124,0.457792,0.006144,0.21504,0.005632,0.004608,0.006144,0.214176,0.006048
+909,1102.11,0.907349,0.460992,0.005792,0.212608,0.004928,0.004192,0.006144,0.221184,0.006144
+910,1169.45,0.855103,0.462848,0.006144,0.223232,0.005536,0.004704,0.005664,0.211424,0.006144
+911,744.863,1.34253,0.72496,0.008192,0.475168,0.005856,0.0056,0.004896,0.219136,0.006112
+912,837.371,1.19421,0.732768,0.005888,0.479488,0.005888,0.0056,0.006112,0.222016,0.007776
+913,1061.28,0.942261,0.453312,0.005792,0.21504,0.004928,0.004288,0.00592,0.211168,0.006176
+914,1241.21,0.805664,0.452608,0.006144,0.212832,0.004256,0.005568,0.004704,0.21296,0.006144
+915,1115.47,0.896484,0.455072,0.005824,0.209632,0.005632,0.004576,0.006144,0.21712,0.006144
+916,1072.11,0.932739,0.479968,0.00496,0.241568,0.00528,0.004864,0.005472,0.211648,0.006176
+917,941.068,1.06262,0.507072,0.006144,0.263872,0.004416,0.005408,0.004832,0.216416,0.005984
+918,1043.3,0.958496,0.722112,0.006144,0.483328,0.00816,0.0056,0.004672,0.208128,0.00608
+919,654.47,1.52795,0.466816,0.006016,0.221344,0.005344,0.004864,0.005504,0.217696,0.006048
+920,1312.19,0.762085,0.491136,0.005856,0.239904,0.005152,0.004864,0.00608,0.2232,0.00608
+921,1065.83,0.938232,0.485344,0.005792,0.237888,0.004128,0.005696,0.004576,0.221152,0.006112
+922,1202.76,0.831421,0.464864,0.006144,0.217088,0.00528,0.004896,0.005504,0.21984,0.006112
+923,1141.42,0.876099,0.460256,0.005792,0.211488,0.005376,0.0048,0.005504,0.221248,0.006048
+924,803.216,1.245,0.485376,0.005984,0.232608,0.00496,0.004256,0.00608,0.224992,0.006496
+925,680.229,1.47009,0.782336,0.008192,0.233344,0.004256,0.005568,0.004672,0.52016,0.006144
+926,896.476,1.11548,0.46192,0.00512,0.210944,0.005248,0.004896,0.00544,0.22512,0.005152
+927,1152.83,0.867432,0.479232,0.00592,0.215264,0.005216,0.004704,0.005472,0.236512,0.006144
+928,1037.88,0.963501,0.470752,0.005824,0.224736,0.004928,0.004128,0.006144,0.218976,0.006016
+929,1192.6,0.838501,0.460128,0.006144,0.216352,0.004832,0.004096,0.006176,0.21648,0.006048
+930,1031.87,0.969116,0.464672,0.005792,0.225728,0.004096,0.005824,0.005472,0.211744,0.006016
+931,1185.19,0.84375,0.999616,0.005792,0.49616,0.006336,0.005952,0.005952,0.219328,0.260096
+932,717.401,1.39392,0.753664,0.006144,0.214624,0.004512,0.005312,0.006656,0.510304,0.006112
+933,833.537,1.19971,0.462848,0.006176,0.214528,0.004576,0.005248,0.005024,0.221152,0.006144
+934,1229.85,0.81311,0.464896,0.006144,0.212992,0.005824,0.004416,0.006144,0.223232,0.006144
+935,1113.35,0.898193,0.459136,0.005792,0.209888,0.005472,0.004768,0.005568,0.221568,0.00608
+936,1179.21,0.848022,0.456512,0.006144,0.210976,0.005088,0.004896,0.005472,0.217888,0.006048
+937,726.628,1.37622,0.4608,0.006176,0.218112,0.004896,0.004288,0.006112,0.215072,0.006144
+938,976.4,1.02417,0.921632,0.006144,0.677888,0.005952,0.0056,0.004832,0.215072,0.006144
+939,784.374,1.2749,0.712064,0.006144,0.474336,0.004896,0.006144,0.005632,0.208864,0.006048
+940,1211.12,0.825684,0.446784,0.005792,0.211616,0.005216,0.004864,0.00528,0.207872,0.006144
+941,1185.53,0.843506,0.446496,0.006144,0.208064,0.004928,0.005408,0.004832,0.210944,0.006176
+942,1115.47,0.896484,0.444576,0.006144,0.207872,0.00496,0.004256,0.006144,0.209984,0.005216
+943,1166.29,0.857422,0.4584,0.006144,0.217088,0.005632,0.004608,0.005696,0.213184,0.006048
+944,1142.06,0.87561,0.469504,0.005824,0.223872,0.004288,0.005504,0.004736,0.219136,0.006144
+945,1118.82,0.893799,0.451872,0.006048,0.212928,0.004256,0.005568,0.004704,0.212384,0.005984
+946,809.406,1.23547,0.7112,0.007776,0.21312,0.004928,0.004096,0.006144,0.468992,0.006144
+947,855.115,1.16943,0.451488,0.00496,0.212992,0.004064,0.005888,0.00544,0.212928,0.005216
+948,1251.07,0.799316,0.45536,0.0048,0.212448,0.00464,0.005152,0.005088,0.217088,0.006144
+949,1092.41,0.915405,0.451776,0.006144,0.210688,0.004352,0.00528,0.00496,0.214304,0.006048
+950,919.623,1.0874,0.450592,0.006176,0.211936,0.00496,0.004256,0.00608,0.211008,0.006176
+951,1507.27,0.663452,0.451904,0.006048,0.213088,0.005376,0.004864,0.006144,0.210336,0.006048
+952,1231.32,0.812134,0.728416,0.005792,0.47984,0.00736,0.00496,0.006112,0.218336,0.006016
+953,724.059,1.3811,0.456736,0.006144,0.214848,0.004288,0.005536,0.004704,0.21504,0.006176
+954,929.43,1.07593,0.449472,0.005024,0.212992,0.005888,0.004352,0.006048,0.208992,0.006176
+955,1117.6,0.894775,0.452064,0.005824,0.210272,0.004736,0.004448,0.00592,0.214784,0.00608
+956,1313.45,0.761353,0.456704,0.006144,0.21504,0.005472,0.004768,0.0056,0.213536,0.006144
+957,1148.63,0.870605,0.444416,0.006144,0.210944,0.004096,0.005824,0.004416,0.206848,0.006144
+958,1197.66,0.834961,0.452608,0.006144,0.214816,0.00432,0.005504,0.006464,0.209056,0.006304
+959,1062.65,0.94104,0.455296,0.005824,0.2192,0.004928,0.00416,0.006144,0.208896,0.006144
+960,672.633,1.48669,0.468224,0.008192,0.222528,0.0048,0.004096,0.006144,0.216384,0.00608
+961,937.729,1.06641,0.456704,0.005856,0.221184,0.004384,0.00544,0.004832,0.208864,0.006144
+962,1132.9,0.88269,0.465504,0.005824,0.218016,0.005984,0.004256,0.005856,0.219424,0.006144
+963,1209.33,0.826904,0.459488,0.004992,0.21472,0.004256,0.005568,0.004672,0.219136,0.006144
+964,1059.49,0.943848,0.458816,0.005792,0.216672,0.004896,0.004096,0.006144,0.21504,0.006176
+965,1191.22,0.839478,0.453664,0.00512,0.212992,0.004096,0.005792,0.005472,0.214016,0.006176
+966,1145.41,0.873047,0.461024,0.005824,0.214688,0.00496,0.004128,0.006144,0.22032,0.00496
+967,651.555,1.53479,0.475264,0.007904,0.231744,0.005408,0.004832,0.005568,0.214592,0.005216
+968,998.659,1.00134,0.46064,0.005824,0.221248,0.004928,0.004128,0.006048,0.21248,0.005984
+969,1059.08,0.944214,0.454656,0.00608,0.211008,0.005664,0.004576,0.005792,0.215392,0.006144
+970,1101.22,0.908081,0.491936,0.005824,0.26288,0.005536,0.004704,0.005632,0.201248,0.006112
+971,1155.27,0.865601,0.477184,0.006112,0.237024,0.004672,0.005184,0.005056,0.212992,0.006144
+972,1044.5,0.957397,0.467296,0.005856,0.21888,0.004832,0.004384,0.006144,0.221152,0.006048
+973,1230.03,0.812988,0.456992,0.00512,0.21504,0.004096,0.005792,0.005472,0.21536,0.006112
+974,461.313,2.16772,0.844096,0.00704,0.370688,0.005632,0.004608,0.005728,0.444288,0.006112
+975,1331.38,0.751099,0.453632,0.006144,0.219168,0.005472,0.004736,0.0056,0.206464,0.006048
+976,1133.68,0.88208,0.44688,0.005824,0.21168,0.004096,0.005856,0.005504,0.207776,0.006144
+977,1233.36,0.810791,0.459872,0.00608,0.216384,0.004864,0.004096,0.006144,0.216288,0.006016
+978,1090.23,0.917236,0.450752,0.005824,0.215552,0.00576,0.00448,0.005888,0.207104,0.006144
+979,1176.34,0.850098,0.45968,0.006464,0.215648,0.005888,0.004352,0.005856,0.215328,0.006144
+980,1076.9,0.928589,0.69232,0.006144,0.444416,0.007584,0.004704,0.006144,0.217088,0.00624
+981,739.484,1.35229,0.774176,0.006144,0.221184,0.005856,0.004384,0.006016,0.524416,0.006176
+982,897.655,1.11401,0.470432,0.005824,0.227936,0.00544,0.004768,0.005568,0.21488,0.006016
+983,1117.9,0.894531,0.45936,0.005792,0.218048,0.004096,0.005728,0.004512,0.21504,0.006144
+984,1253.17,0.797974,0.456576,0.005824,0.217216,0.004608,0.004096,0.006144,0.212672,0.006016
+985,980.608,1.01978,0.456064,0.005824,0.210944,0.004544,0.00528,0.006496,0.216928,0.006048
+986,1271.06,0.786743,0.458784,0.006112,0.213056,0.005216,0.004864,0.006112,0.21728,0.006144
+987,1156.08,0.86499,0.948224,0.006144,0.44032,0.007424,0.004864,0.006144,0.22448,0.258848
+988,749.428,1.33435,0.708608,0.006144,0.214176,0.00496,0.004096,0.006144,0.466944,0.006144
+989,871.675,1.14722,0.464896,0.006048,0.214368,0.004864,0.004096,0.006144,0.223232,0.006144
+990,630.93,1.58496,0.981312,0.005856,0.73168,0.004512,0.00528,0.00496,0.222944,0.00608
+991,1461.03,0.684448,0.472992,0.004928,0.22528,0.005696,0.004544,0.005824,0.220704,0.006016
+992,1143.5,0.874512,0.46432,0.006144,0.216544,0.00464,0.004096,0.006144,0.220672,0.00608
+993,1074.36,0.930786,0.475008,0.005888,0.229664,0.005792,0.004416,0.005952,0.21728,0.006016
+994,692.535,1.44397,0.473216,0.006944,0.224448,0.004928,0.004096,0.006144,0.220608,0.006048
+995,995.383,1.00464,0.471104,0.005824,0.21728,0.004352,0.005504,0.004736,0.227328,0.00608
+996,1041.31,0.960327,0.466944,0.006144,0.216576,0.004608,0.005216,0.005024,0.223232,0.006144
+997,1208.79,0.827271,0.458848,0.005824,0.21344,0.006112,0.005824,0.005472,0.216032,0.006144
+998,1143.97,0.874146,0.449856,0.005792,0.208896,0.004608,0.005184,0.005088,0.21424,0.006048
+999,1150.4,0.869263,0.475168,0.006176,0.227296,0.005632,0.004608,0.005728,0.219552,0.006176
+1000,1082.74,0.923584,0.47104,0.005856,0.223488,0.004128,0.005696,0.004544,0.221184,0.006144
+1001,859.331,1.1637,0.929728,0.005856,0.68448,0.006048,0.0056,0.004768,0.216928,0.006048
+1002,765.464,1.3064,0.70864,0.01808,0.446848,0.006144,0.005696,0.004576,0.221152,0.006144
+1003,1147.34,0.871582,0.462592,0.00576,0.212576,0.004928,0.004256,0.006144,0.222816,0.006112
+1004,1183.47,0.844971,0.457088,0.005824,0.211648,0.005344,0.004896,0.00608,0.217152,0.006144
+1005,973.268,1.02747,0.48336,0.00576,0.238368,0.00416,0.005696,0.004576,0.218752,0.006048
+1006,1219.23,0.82019,0.459168,0.005824,0.21168,0.005248,0.004864,0.00544,0.219968,0.006144
+1007,1180.4,0.847168,0.467872,0.005024,0.222528,0.0048,0.004096,0.006176,0.219104,0.006144
+1008,771.302,1.29651,0.718976,0.007136,0.47104,0.005856,0.0056,0.004928,0.2184,0.006016
+1009,826.89,1.20935,0.731776,0.00608,0.484032,0.006144,0.004128,0.006144,0.219104,0.006144
+1010,1149.11,0.870239,0.462848,0.006144,0.216384,0.0048,0.005632,0.004608,0.219136,0.006144
+1011,1165.62,0.85791,0.462528,0.006016,0.216928,0.004384,0.00544,0.004832,0.21888,0.006048
+1012,1087.05,0.919922,0.464064,0.00592,0.215264,0.005216,0.004896,0.006272,0.220448,0.006048
+1013,1238.21,0.807617,0.455968,0.005824,0.213344,0.005408,0.004832,0.006144,0.214368,0.006048
+1014,1086.47,0.92041,0.458624,0.004928,0.21504,0.005568,0.004672,0.00592,0.216512,0.005984
+1015,750.114,1.33313,0.719168,0.007936,0.470624,0.005088,0.006048,0.005472,0.217856,0.006144
+1016,1190.7,0.839844,0.674752,0.005056,0.425344,0.004736,0.005152,0.00512,0.2232,0.006144
+1017,903.496,1.10681,0.460064,0.005952,0.211136,0.005888,0.004352,0.006048,0.220672,0.006016
+1018,1209.69,0.82666,0.463264,0.005088,0.210048,0.004928,0.00416,0.006144,0.226912,0.005984
+1019,1048.78,0.953491,0.478816,0.006144,0.20864,0.022816,0.004064,0.006144,0.224992,0.006016
+1020,626.971,1.59497,0.468416,0.005824,0.215392,0.005248,0.004992,0.006144,0.223232,0.007584
+1021,474.184,2.10889,0.476512,0.008192,0.22528,0.005728,0.004512,0.006144,0.220576,0.00608
+1022,907.801,1.10156,0.463328,0.005792,0.213472,0.004448,0.005344,0.004928,0.2232,0.006144
+1023,1179.89,0.847534,0.469152,0.005792,0.216704,0.004896,0.004192,0.006144,0.22528,0.006144
+1024,1097.83,0.910889,0.466272,0.005824,0.210752,0.004896,0.004096,0.006144,0.227392,0.007168
+1025,1140.63,0.876709,0.461984,0.006144,0.214688,0.004448,0.005344,0.004928,0.220352,0.00608
+1026,1011.61,0.988525,0.45056,0.006144,0.212992,0.005568,0.004672,0.005696,0.209344,0.006144
+1027,1165.29,0.858154,0.473248,0.00576,0.229216,0.0048,0.004096,0.006144,0.217088,0.006144
+1028,683.008,1.46411,0.733184,0.008192,0.234688,0.004896,0.004128,0.006144,0.468992,0.006144
+1029,902.7,1.10779,0.464224,0.006144,0.22224,0.004928,0.004256,0.006112,0.2144,0.006144
+1030,989.85,1.01025,0.455072,0.005824,0.217248,0.004672,0.005152,0.00512,0.210912,0.006144
+1031,1311.77,0.762329,0.457952,0.00608,0.211168,0.005888,0.004352,0.005984,0.218432,0.006048
+1032,1140.47,0.876831,0.452608,0.006144,0.21088,0.00416,0.005664,0.004576,0.21504,0.006144
+1033,1207.55,0.828125,0.477184,0.00608,0.221248,0.005632,0.004608,0.005728,0.227744,0.006144
+1034,877.37,1.13977,0.74976,0.005728,0.221568,0.004576,0.004096,0.006144,0.225216,0.282432
+1035,785.427,1.27319,0.786592,0.007904,0.2432,0.00496,0.004192,0.006144,0.514048,0.006144
+1036,909.717,1.09924,0.464896,0.006144,0.216288,0.004896,0.004096,0.006144,0.221184,0.006144
+1037,1105.38,0.904663,0.464928,0.00576,0.215104,0.004416,0.005408,0.004832,0.223232,0.006176
+1038,1017.77,0.982544,0.46224,0.006144,0.212992,0.00592,0.00432,0.006048,0.219232,0.007584
+1039,1431.17,0.69873,0.458848,0.005792,0.21088,0.004512,0.005312,0.004928,0.222208,0.005216
+1040,1083.74,0.922729,0.454976,0.005792,0.213568,0.005312,0.004864,0.005472,0.213792,0.006176
+1041,1176.5,0.849976,0.463072,0.005792,0.222816,0.00496,0.004224,0.006112,0.213152,0.006016
+1042,786.03,1.27222,0.461952,0.008192,0.218176,0.004928,0.004224,0.006144,0.214304,0.005984
+1043,936.229,1.06812,0.454752,0.005824,0.217664,0.00592,0.00432,0.005888,0.209088,0.006048
+1044,1159.03,0.862793,0.456032,0.005824,0.21248,0.004928,0.004192,0.006144,0.216416,0.006048
+1045,1234.11,0.810303,0.459776,0.00512,0.21504,0.005344,0.004896,0.00528,0.217952,0.006144
+1046,1129.62,0.885254,0.450592,0.005792,0.213376,0.005472,0.004768,0.0056,0.20944,0.006144
+1047,1177.69,0.849121,0.4584,0.00576,0.217184,0.004576,0.005248,0.004992,0.214656,0.005984
+1048,1102.26,0.907227,0.462848,0.00592,0.218816,0.00464,0.00576,0.006112,0.215456,0.006144
+1049,691.658,1.4458,0.477376,0.007936,0.222016,0.005152,0.004864,0.005472,0.225952,0.005984
+1050,957.793,1.04407,0.464896,0.006144,0.220928,0.004352,0.005248,0.004992,0.217088,0.006144
+1051,898.837,1.11255,0.493568,0.005984,0.24992,0.004192,0.005664,0.004608,0.217056,0.006144
+1052,1359.89,0.735352,0.478976,0.006144,0.233472,0.005696,0.004544,0.005824,0.217312,0.005984
+1053,1102.11,0.907349,0.469696,0.004992,0.231104,0.004384,0.005248,0.004992,0.212928,0.006048
+1054,783.399,1.27649,0.47056,0.005792,0.227872,0.005664,0.004576,0.005792,0.214816,0.006048
+1055,1535.52,0.651245,0.464064,0.006144,0.22224,0.00496,0.004224,0.00608,0.214368,0.006048
+1056,972.806,1.02795,0.735232,0.006144,0.486784,0.006816,0.005888,0.005472,0.217984,0.006144
+1057,624.343,1.60168,0.472864,0.005952,0.229568,0.005344,0.004864,0.00544,0.215712,0.005984
+1058,1149.75,0.869751,0.464896,0.005856,0.21952,0.004096,0.005792,0.005504,0.21808,0.006048
+1059,1173.13,0.852417,0.456768,0.005056,0.212992,0.005312,0.004864,0.00624,0.216256,0.006048
+1060,1112.74,0.898682,0.466944,0.00608,0.220288,0.00496,0.004192,0.006144,0.219136,0.006144
+1061,607.265,1.64673,0.491808,0.005824,0.23824,0.005344,0.004864,0.005504,0.225888,0.006144
+1062,837.285,1.19434,0.96048,0.005792,0.714496,0.005024,0.006144,0.005472,0.217472,0.00608
+1063,797.43,1.25403,0.49152,0.006144,0.251904,0.005248,0.004864,0.005472,0.211744,0.006144
+1064,951.894,1.05054,0.505856,0.006048,0.257472,0.004768,0.004096,0.006144,0.221184,0.006144
+1065,1216.51,0.822021,0.466944,0.006144,0.2232,0.004128,0.005696,0.004544,0.217088,0.006144
+1066,1246.12,0.80249,0.464832,0.006144,0.22528,0.00576,0.00448,0.005888,0.2112,0.00608
+1067,1125.27,0.888672,0.466976,0.006144,0.223232,0.006144,0.005184,0.005056,0.21504,0.006176
+1068,1062.65,0.94104,0.485376,0.006144,0.236544,0.004928,0.004288,0.006144,0.221184,0.006144
+1069,643.115,1.55493,0.778304,0.007936,0.231104,0.004864,0.004096,0.006144,0.518144,0.006016
+1070,893.348,1.11938,0.460384,0.006144,0.212992,0.00544,0.0048,0.006144,0.218784,0.00608
+1071,1157.06,0.864258,0.451904,0.005824,0.211392,0.006144,0.004096,0.005984,0.212416,0.006048
+1072,1201.88,0.832031,0.452,0.00592,0.214976,0.004384,0.00544,0.0048,0.210432,0.006048
+1073,967.407,1.03369,0.456768,0.00512,0.219136,0.005792,0.004448,0.005664,0.210624,0.005984
+1074,794.491,1.25867,0.461216,0.005824,0.219872,0.004096,0.005792,0.005504,0.213984,0.006144
+1075,956.562,1.04541,0.925536,0.005792,0.680672,0.006144,0.00592,0.005472,0.215424,0.006112
+1076,974.89,1.02576,0.717376,0.004992,0.237568,0.005152,0.004864,0.005568,0.453152,0.00608
+1077,817.646,1.22302,0.472608,0.006016,0.222912,0.004544,0.00528,0.004992,0.222784,0.00608
+1078,1330.52,0.751587,0.472672,0.005824,0.221152,0.004864,0.004096,0.007392,0.22192,0.007424
+1079,1170.45,0.85437,0.4464,0.005856,0.21136,0.004192,0.005632,0.00464,0.208672,0.006048
+1080,1249.16,0.800537,0.461504,0.0048,0.212992,0.005664,0.004576,0.00576,0.221568,0.006144
+1081,994.175,1.00586,0.472608,0.00576,0.22384,0.00432,0.005504,0.004768,0.2224,0.006016
+1082,1182.45,0.845703,0.476032,0.005088,0.228544,0.004896,0.004096,0.006144,0.221184,0.00608
+1083,655.99,1.52441,0.684128,0.008192,0.43008,0.006016,0.004224,0.006144,0.224288,0.005184
+1084,990.928,1.00916,0.461248,0.005824,0.215296,0.004608,0.005216,0.005024,0.219136,0.006144
+1085,1122.04,0.891235,0.473312,0.005792,0.217568,0.005664,0.004576,0.00576,0.2288,0.005152
+1086,1132.12,0.883301,0.468992,0.005856,0.217376,0.0056,0.00464,0.0056,0.22288,0.00704
+1087,1137.94,0.878784,0.471104,0.006144,0.213024,0.005504,0.004704,0.005632,0.230048,0.006048
+1088,883.997,1.13123,0.485664,0.006464,0.235936,0.004096,0.006048,0.005472,0.221664,0.005984
+1089,1127.6,0.886841,0.950112,0.006144,0.438208,0.006304,0.006048,0.005792,0.481504,0.006112
+1090,680.229,1.47009,0.742624,0.005824,0.489888,0.006144,0.00544,0.0048,0.2248,0.005728
+1091,1109.13,0.901611,0.466944,0.006048,0.212896,0.004288,0.005536,0.004704,0.227328,0.006144
+1092,1144.13,0.874023,0.469952,0.006112,0.217312,0.004864,0.004096,0.006144,0.224256,0.007168
+1093,1012.11,0.988037,0.454848,0.005792,0.213984,0.005728,0.004512,0.00592,0.212896,0.006016
+1094,1331.6,0.750977,0.458208,0.00608,0.217152,0.005888,0.004352,0.005792,0.212864,0.00608
+1095,1134.78,0.881226,0.458752,0.005824,0.213312,0.005344,0.004896,0.00544,0.217824,0.006112
+1096,901.706,1.10901,0.92256,0.005056,0.681472,0.004608,0.006144,0.005888,0.213248,0.006144
+1097,915.614,1.09216,0.74752,0.005984,0.279968,0.004864,0.005472,0.00608,0.439008,0.006144
+1098,869.731,1.14978,0.457408,0.00496,0.21488,0.004096,0.005728,0.004512,0.217088,0.006144
+1099,1147.82,0.871216,0.448512,0.006144,0.212384,0.004704,0.004192,0.007648,0.207296,0.006144
+1100,1235.41,0.809448,0.456608,0.005824,0.216,0.004096,0.005792,0.005472,0.213408,0.006016
+1101,1108.23,0.902344,0.453376,0.004864,0.215072,0.005728,0.00448,0.005888,0.212352,0.004992
+1102,1122.19,0.891113,0.454784,0.00592,0.213216,0.00592,0.00432,0.005824,0.214368,0.005216
+1103,1124.35,0.889404,0.462848,0.006144,0.21472,0.004416,0.005408,0.004832,0.221184,0.006144
+1104,652.022,1.53369,0.718848,0.008192,0.472096,0.005024,0.004192,0.006112,0.217088,0.006144
+1105,973.615,1.0271,0.458016,0.006016,0.214496,0.004768,0.004096,0.006144,0.216128,0.006368
+1106,1110.63,0.900391,0.462432,0.006144,0.21504,0.004128,0.005856,0.0064,0.218816,0.006048
+1107,1245.93,0.802612,0.454752,0.005856,0.214944,0.00448,0.005344,0.004896,0.214048,0.005184
+1108,1076.2,0.929199,0.471616,0.005088,0.212992,0.004096,0.005856,0.005504,0.232032,0.006048
+1109,1147.02,0.871826,0.458848,0.00576,0.2176,0.005312,0.004896,0.005504,0.213632,0.006144
+1110,1101.22,0.908081,0.462784,0.006176,0.220864,0.004384,0.00544,0.004832,0.215008,0.00608
+1111,725.726,1.37793,0.763904,0.008192,0.22528,0.00544,0.0048,0.006144,0.507904,0.006144
+1112,956.898,1.04504,0.454656,0.006144,0.219168,0.00576,0.004448,0.005952,0.20704,0.006144
+1113,1074.64,0.930542,0.456704,0.006144,0.217088,0.004096,0.005792,0.006144,0.211296,0.006144
+1114,986.156,1.01404,0.473056,0.005824,0.22832,0.004096,0.005728,0.004512,0.21856,0.006016
+1115,1367.61,0.731201,0.462848,0.005888,0.2208,0.004736,0.004096,0.006144,0.21504,0.006144
+1116,1012.36,0.987793,0.456736,0.005856,0.217376,0.005536,0.004704,0.005664,0.211424,0.006176
+1117,1178.54,0.848511,0.691168,0.005088,0.442368,0.007616,0.004672,0.006144,0.219136,0.006144
+1118,708.528,1.41138,0.770048,0.006144,0.217088,0.00592,0.00432,0.006016,0.524416,0.006144
+1119,953.778,1.04846,0.46432,0.00592,0.21936,0.005696,0.004544,0.006144,0.216608,0.006048
+1120,1124.5,0.889282,0.464896,0.006144,0.21504,0.00576,0.005568,0.005056,0.221184,0.006144
+1121,1155.59,0.865356,0.459712,0.005056,0.219136,0.00528,0.004896,0.005472,0.21376,0.006112
+1122,1140.31,0.876953,0.466144,0.006144,0.219136,0.005536,0.004704,0.005664,0.218944,0.006016
+1123,1144.93,0.873413,0.468992,0.005856,0.223104,0.004512,0.00544,0.0048,0.219136,0.006144
+1124,1054.18,0.948608,0.950272,0.005952,0.439744,0.006944,0.00576,0.005504,0.225504,0.260864
+1125,663.804,1.50647,0.753504,0.005792,0.217792,0.005568,0.004672,0.005632,0.507936,0.006112
+1126,1059.9,0.943481,0.463552,0.005824,0.220096,0.004096,0.005824,0.005472,0.216032,0.006208
+1127,1114.41,0.897339,0.460448,0.006144,0.212992,0.005248,0.004864,0.00544,0.219776,0.005984
+1128,1195.74,0.836304,0.46656,0.005952,0.21728,0.004096,0.005824,0.005504,0.22192,0.005984
+1129,939.45,1.06445,0.459776,0.006144,0.216128,0.00496,0.004192,0.006112,0.216256,0.005984
+1130,822.986,1.21509,0.50272,0.005056,0.238976,0.004736,0.004096,0.006144,0.237568,0.006144
+1131,935.373,1.06909,0.92464,0.00512,0.679904,0.006144,0.006016,0.005472,0.21584,0.006144
+1132,834.216,1.19873,0.73248,0.006144,0.480928,0.0056,0.005024,0.006112,0.221184,0.007488
+1133,1078.46,0.927246,0.463392,0.005824,0.211968,0.005632,0.004608,0.006144,0.223168,0.006048
+1134,1146.22,0.872437,0.472384,0.005792,0.217664,0.005632,0.004608,0.006144,0.22656,0.005984
+1135,1112.29,0.899048,0.457536,0.00496,0.212608,0.004448,0.005376,0.004864,0.219136,0.006144
+1136,1175.49,0.850708,0.47472,0.006176,0.230528,0.004928,0.004128,0.006144,0.2168,0.006016
+1137,993.21,1.00684,0.456864,0.005792,0.21552,0.004128,0.005792,0.00448,0.215008,0.006144
+1138,1368.07,0.730957,0.739392,0.006144,0.497664,0.00784,0.0056,0.005024,0.210912,0.006208
+1139,601.292,1.66309,0.714336,0.005824,0.473696,0.005568,0.004864,0.006144,0.212224,0.006016
+1140,1267.13,0.789185,0.456224,0.006144,0.21504,0.005408,0.004832,0.005568,0.213184,0.006048
+1141,1138.89,0.878052,0.466944,0.006144,0.213024,0.005888,0.00432,0.006016,0.225408,0.006144
+1142,1126.51,0.887695,0.456704,0.006048,0.21472,0.004512,0.005344,0.004896,0.21504,0.006144
+1143,1112.14,0.89917,0.458144,0.005888,0.21264,0.004704,0.005152,0.005088,0.218656,0.006016
+1144,1188.28,0.841553,0.46128,0.005792,0.21552,0.00432,0.005536,0.004704,0.220192,0.005216
+1145,722.781,1.38354,0.937824,0.00592,0.682208,0.006112,0.0056,0.004672,0.22672,0.006592
+1146,983.906,1.01636,0.730528,0.006144,0.253952,0.005184,0.004864,0.005472,0.215808,0.239104
+1147,995.504,1.00452,0.456224,0.006144,0.21712,0.005184,0.004896,0.006272,0.21056,0.006048
+1148,1187.94,0.841797,0.466944,0.006176,0.2184,0.0048,0.004096,0.006144,0.221184,0.006144
+1149,1118.67,0.893921,0.460064,0.005792,0.216768,0.004928,0.00416,0.006048,0.216256,0.006112
+1150,1186.73,0.842651,0.46288,0.00592,0.217312,0.004096,0.005856,0.005504,0.218016,0.006176
+1151,1077.75,0.927856,0.463552,0.005888,0.216064,0.005888,0.00432,0.006048,0.219232,0.006112
+1152,1074.92,0.930298,0.681664,0.005792,0.43472,0.007456,0.004832,0.006144,0.216736,0.005984
+1153,795.031,1.25781,0.716512,0.005984,0.220448,0.00496,0.004128,0.006144,0.468352,0.006496
+1154,857.801,1.16577,0.460288,0.005856,0.217376,0.005472,0.004768,0.005472,0.2152,0.006144
+1155,1142.86,0.875,0.460864,0.005792,0.215872,0.005472,0.004768,0.006144,0.216768,0.006048
+1156,1165.96,0.857666,0.457952,0.006048,0.215136,0.005408,0.004832,0.005536,0.214912,0.00608
+1157,1163.47,0.859497,0.471072,0.005984,0.217248,0.00576,0.00448,0.005888,0.225536,0.006176
+1158,1104.34,0.905518,0.467584,0.004992,0.221024,0.004096,0.005728,0.004512,0.221184,0.006048
+1159,1143.81,0.874268,0.464896,0.005952,0.223392,0.004128,0.005504,0.004736,0.21504,0.006144
+1160,751.008,1.33154,0.548864,0.008,0.256064,0.004224,0.0056,0.00464,0.240736,0.0296
+1161,847.507,1.17993,0.473344,0.00608,0.22128,0.005728,0.00448,0.005856,0.22352,0.0064
+1162,890.725,1.12268,0.475008,0.006176,0.229344,0.005152,0.004896,0.005472,0.21792,0.006048
+1163,1510.05,0.662231,0.466624,0.005792,0.218048,0.005312,0.004896,0.005472,0.221056,0.006048
+1164,1071.97,0.932861,0.469664,0.00496,0.22112,0.005696,0.004544,0.005856,0.221472,0.006016
+1165,1233.92,0.810425,0.474432,0.006112,0.217152,0.005664,0.004544,0.00576,0.227712,0.007488
+1166,1081.31,0.924805,0.479232,0.006144,0.22448,0.004896,0.005472,0.0048,0.227296,0.006144
+1167,605.783,1.65076,0.498176,0.007872,0.256864,0.005408,0.0048,0.005568,0.21152,0.006144
+1168,1030.31,0.970581,0.466144,0.005952,0.218496,0.004928,0.004096,0.006144,0.22048,0.006048
+1169,1127.91,0.886597,0.456768,0.00496,0.212928,0.005824,0.004416,0.005792,0.2168,0.006048
+1170,1152.18,0.86792,0.468448,0.006016,0.219072,0.004288,0.005536,0.004704,0.222816,0.006016
+1171,1028.24,0.972534,0.492608,0.006144,0.239328,0.004384,0.00544,0.006048,0.22528,0.005984
+1172,1228.55,0.813965,0.465696,0.005024,0.220864,0.004384,0.005408,0.004864,0.219072,0.00608
+1173,1008.49,0.991577,0.945984,0.005824,0.440672,0.00768,0.004608,0.006144,0.220384,0.260672
+1174,755.929,1.32288,0.800768,0.00608,0.327072,0.004736,0.004128,0.006048,0.44656,0.006144
+1175,894.128,1.11841,0.481472,0.005824,0.22784,0.005344,0.004864,0.005632,0.225824,0.006144
+1176,1101.96,0.907471,0.465184,0.004992,0.218944,0.005472,0.004768,0.006016,0.2184,0.006592
+1177,754.467,1.32544,0.490176,0.005824,0.226144,0.004224,0.004064,0.006016,0.237696,0.006208
+1178,1385.19,0.721924,0.463392,0.006048,0.223872,0.005408,0.004832,0.005568,0.21152,0.006144
+1179,1251.64,0.79895,0.471072,0.006048,0.231392,0.004224,0.005568,0.004704,0.21296,0.006176
+1180,748.401,1.33618,0.731744,0.007168,0.484512,0.00496,0.006112,0.005568,0.217376,0.006048
+1181,889.371,1.12439,0.734624,0.005792,0.487296,0.00464,0.006144,0.006144,0.218592,0.006016
+1182,1126.51,0.887695,0.46864,0.005824,0.217984,0.005216,0.004896,0.005472,0.2232,0.006048
+1183,1092.12,0.915649,0.458752,0.005856,0.214304,0.00496,0.004256,0.006048,0.217184,0.006144
+1184,1208.62,0.827393,0.45104,0.005088,0.21504,0.005248,0.004896,0.005472,0.20928,0.006016
+1185,1141.27,0.876221,0.458368,0.005824,0.213888,0.005216,0.004864,0.005408,0.217088,0.00608
+1186,1080.45,0.925537,0.487648,0.005824,0.235872,0.005792,0.004448,0.005888,0.223488,0.006336
+1187,858.52,1.16479,0.930816,0.006144,0.681984,0.00576,0.0056,0.005024,0.220256,0.006048
+1188,744.051,1.34399,0.716832,0.006144,0.46464,0.005568,0.004928,0.006016,0.222528,0.007008
+1189,1179.89,0.847534,0.467712,0.004992,0.220896,0.004256,0.005568,0.006624,0.219232,0.006144
+1190,1137.3,0.879272,0.461472,0.005792,0.214016,0.005376,0.004864,0.005312,0.219968,0.006144
+1191,563.528,1.77454,0.463168,0.005792,0.215712,0.004096,0.005728,0.004512,0.221184,0.006144
+1192,1577.51,0.633911,0.469664,0.005824,0.223616,0.004704,0.00512,0.00512,0.219136,0.006144
+1193,1079.46,0.926392,0.473728,0.005824,0.221472,0.004768,0.004096,0.006144,0.22432,0.007104
+1194,638.852,1.56531,0.724064,0.008192,0.47104,0.005632,0.004608,0.005696,0.222816,0.00608
+1195,876.431,1.14099,0.4608,0.005984,0.219296,0.004096,0.005856,0.005472,0.213952,0.006144
+1196,1185.53,0.843506,0.458752,0.005824,0.218464,0.004928,0.004256,0.006144,0.212992,0.006144
+1197,1186.21,0.843018,0.452128,0.006144,0.21504,0.004096,0.005792,0.005472,0.2096,0.005984
+1198,1095.92,0.912476,0.460832,0.006176,0.212896,0.00416,0.005632,0.004608,0.221184,0.006176
+1199,1211.3,0.825562,0.467232,0.005792,0.214848,0.004928,0.004096,0.006144,0.224896,0.006528
+1200,864.865,1.15625,0.93136,0.006144,0.679936,0.00576,0.005568,0.005056,0.222912,0.005984
+1201,877.088,1.14014,0.78656,0.005792,0.309024,0.004768,0.004128,0.006144,0.45056,0.006144
+1202,910.121,1.09875,0.468992,0.006144,0.21504,0.004096,0.006144,0.005792,0.225632,0.006144
+1203,1077.75,0.927856,0.460736,0.006144,0.210976,0.004064,0.005888,0.005472,0.222112,0.00608
+1204,1194.17,0.837402,0.469024,0.006144,0.217088,0.005856,0.004384,0.005792,0.223584,0.006176
+1205,1083.74,0.922729,0.466432,0.006144,0.212992,0.00512,0.004896,0.005472,0.224128,0.00768
+1206,1208.44,0.827515,0.458496,0.006144,0.215072,0.00544,0.004768,0.005568,0.215552,0.005952
+1207,674.905,1.48169,0.925824,0.005792,0.67824,0.005824,0.005568,0.004992,0.220192,0.005216
+1208,1084.6,0.921997,0.826848,0.006144,0.34816,0.005728,0.004512,0.005856,0.218624,0.237824
+1209,853.244,1.172,0.47712,0.005792,0.21776,0.005376,0.004864,0.00576,0.23152,0.006048
+1210,1341.85,0.745239,0.472768,0.006144,0.2144,0.004736,0.005216,0.005024,0.231232,0.006016
+1211,1095.19,0.913086,0.45472,0.005792,0.209312,0.004288,0.005536,0.004704,0.21904,0.006048
+1212,1141.42,0.876099,0.464192,0.006144,0.217088,0.004096,0.005824,0.005536,0.219456,0.006048
+1213,1060.18,0.943237,0.478048,0.006464,0.215072,0.004576,0.004096,0.006144,0.23552,0.006176
+1214,884.952,1.13,0.951776,0.005792,0.682272,0.0056,0.004992,0.006048,0.241024,0.006048
+1215,899.034,1.1123,0.768896,0.004992,0.29632,0.004736,0.004096,0.006144,0.446464,0.006144
+1216,905.193,1.10474,0.463456,0.004992,0.21696,0.005888,0.004352,0.006016,0.2192,0.006048
+1217,1172.8,0.852661,0.466944,0.006144,0.21504,0.00576,0.00448,0.005664,0.223712,0.006144
+1218,1089.8,0.917603,0.46288,0.006144,0.212992,0.00576,0.00448,0.005696,0.221632,0.006176
+1219,1175.66,0.850586,0.458688,0.005824,0.2096,0.005856,0.004384,0.005984,0.220992,0.006048
+1220,1134.63,0.881348,0.46336,0.006144,0.218016,0.005792,0.004448,0.005888,0.217056,0.006016
+1221,1093,0.914917,0.464256,0.00608,0.217184,0.005696,0.004512,0.005824,0.218944,0.006016
+1222,788.375,1.26843,0.775552,0.007904,0.217664,0.004192,0.005792,0.004352,0.529632,0.006016
+1223,562.676,1.77722,0.464928,0.00608,0.222272,0.00496,0.004256,0.00608,0.215104,0.006176
+1224,1348.03,0.741821,0.47184,0.00512,0.219104,0.004096,0.005696,0.004576,0.227264,0.005984
+1225,1270.87,0.786865,0.464416,0.006144,0.216256,0.004928,0.004096,0.007264,0.219648,0.00608
+1226,1183.64,0.844849,0.4608,0.006144,0.21504,0.00544,0.0048,0.005568,0.217664,0.006144
+1227,1050.8,0.95166,0.461952,0.006144,0.214496,0.00464,0.005184,0.005056,0.220384,0.006048
+1228,702.874,1.42273,0.48688,0.008192,0.223232,0.005664,0.004576,0.00576,0.233344,0.006112
+1229,944.432,1.05884,0.48368,0.005856,0.213984,0.005248,0.004896,0.005472,0.242176,0.006048
+1230,1138.89,0.878052,0.485056,0.006144,0.217088,0.005888,0.004352,0.005984,0.239584,0.006016
+1231,1148.46,0.870728,0.471904,0.004992,0.21296,0.005536,0.004704,0.00512,0.23248,0.006112
+1232,1124.5,0.889282,0.48336,0.006144,0.218304,0.004928,0.004096,0.006112,0.2376,0.006176
+1233,1101.96,0.907471,0.475168,0.006144,0.210944,0.0056,0.00464,0.00576,0.235904,0.006176
+1234,1052.01,0.950562,0.519936,0.006144,0.253952,0.005888,0.004352,0.006016,0.237536,0.006048
+1235,692.535,1.44397,0.496736,0.008192,0.229376,0.005344,0.004896,0.005472,0.237408,0.006048
+1236,948.258,1.05457,0.484832,0.006144,0.219136,0.005824,0.004416,0.005696,0.237536,0.00608
+1237,1107.48,0.902954,0.481568,0.005856,0.213568,0.005312,0.004864,0.005472,0.240352,0.006144
+1238,1162.48,0.860229,0.473248,0.005824,0.217568,0.005632,0.004608,0.006144,0.227104,0.006368
+1239,827.726,1.20813,0.484928,0.005792,0.229248,0.004768,0.004096,0.006144,0.228704,0.006176
+1240,1434.68,0.697021,0.467424,0.005792,0.21792,0.004096,0.005504,0.004736,0.223136,0.00624
+1241,1161,0.861328,0.477216,0.006016,0.221088,0.00432,0.005536,0.004736,0.229344,0.006176
+1242,718.975,1.39087,0.4848,0.008192,0.230688,0.004832,0.004096,0.006176,0.2232,0.007616
+1243,747.309,1.33813,0.46848,0.005824,0.215392,0.005184,0.004896,0.005376,0.22576,0.006048
+1244,1345.6,0.743164,0.472,0.004864,0.222944,0.004384,0.00544,0.0048,0.223232,0.006336
+1245,1168.62,0.855713,0.47104,0.0072,0.219456,0.004768,0.004096,0.006144,0.223232,0.006144
+1246,1241.02,0.805786,0.466976,0.006144,0.2184,0.004832,0.005984,0.005472,0.219968,0.006176
+1247,1141.11,0.876343,0.461536,0.004992,0.212832,0.005728,0.004512,0.0056,0.221728,0.006144
+1248,1082.74,0.923584,0.482208,0.005056,0.231424,0.00528,0.004864,0.005504,0.223584,0.006496
+1249,749.634,1.33398,0.7264,0.007904,0.46336,0.00592,0.00432,0.005856,0.23296,0.00608
+1250,949.467,1.05322,0.480416,0.006144,0.216704,0.00448,0.005344,0.004896,0.236832,0.006016
+1251,1119.13,0.893555,0.482368,0.005824,0.217408,0.005248,0.004896,0.005472,0.23744,0.00608
+1252,1087.05,0.919922,0.483328,0.006144,0.218176,0.00496,0.004192,0.005984,0.238848,0.005024
+1253,1153.15,0.867188,0.477888,0.0048,0.21248,0.004608,0.005216,0.005024,0.239616,0.006144
+1254,1047.3,0.954834,0.465728,0.004992,0.214528,0.004608,0.005216,0.005024,0.22528,0.00608
+1255,1249.35,0.800415,0.471328,0.006048,0.217472,0.005216,0.004896,0.005472,0.22608,0.006144
+1256,742.298,1.34717,0.944128,0.006176,0.685504,0.00464,0.006144,0.005888,0.227296,0.00848
+1257,831.169,1.20312,0.483648,0.004896,0.229376,0.005632,0.004608,0.00576,0.227328,0.006048
+1258,1030.7,0.970215,0.485088,0.005824,0.225856,0.005568,0.004672,0.005696,0.231392,0.00608
+1259,1226.53,0.815308,0.464864,0.005792,0.216704,0.004928,0.004128,0.006144,0.22112,0.006048
+1260,1096.21,0.912231,0.464096,0.00608,0.213056,0.005792,0.004448,0.005888,0.222784,0.006048
+1261,1195.39,0.836548,0.456704,0.006144,0.21056,0.00448,0.005344,0.004896,0.219136,0.006144
+1262,731.559,1.36694,0.468416,0.006144,0.220608,0.004672,0.005152,0.005088,0.220672,0.00608
+1263,999.878,1.00012,0.929952,0.005792,0.6784,0.006112,0.005568,0.004704,0.223232,0.006144
+1264,781.009,1.2804,0.475584,0.005824,0.227424,0.004768,0.00416,0.00608,0.221184,0.006144
+1265,1123.58,0.890015,0.48352,0.005824,0.238048,0.00544,0.0048,0.005568,0.217664,0.006176
+1266,1111.99,0.899292,0.466944,0.005792,0.222944,0.0048,0.004096,0.006144,0.217088,0.00608
+1267,1188.8,0.841187,0.485888,0.00576,0.240512,0.005856,0.004384,0.005984,0.217248,0.006144
+1268,1146.54,0.872192,0.484768,0.006176,0.237536,0.00576,0.00448,0.005888,0.218848,0.00608
+1269,1062.65,0.94104,0.512192,0.005824,0.259808,0.00496,0.004096,0.006144,0.225248,0.006112
+1270,742.971,1.34595,0.748096,0.007936,0.490304,0.006144,0.005728,0.004512,0.22736,0.006112
+1271,800.86,1.24866,0.479232,0.006144,0.22496,0.004416,0.005408,0.004864,0.227296,0.006144
+1272,1244.42,0.803589,0.468928,0.006144,0.21504,0.00512,0.004896,0.004416,0.227232,0.00608
+1273,1087.19,0.9198,0.464,0.004992,0.216928,0.004224,0.0056,0.00464,0.222336,0.00528
+1274,1158.37,0.863281,0.465152,0.005824,0.2232,0.004704,0.00416,0.00608,0.21504,0.006144
+1275,816.994,1.224,0.456864,0.005792,0.213504,0.005504,0.004736,0.005632,0.215552,0.006144
+1276,1478.17,0.676514,0.484608,0.005824,0.231872,0.00592,0.00432,0.006016,0.22464,0.006016
+1277,475.339,2.10376,0.743328,0.007904,0.493728,0.0056,0.00512,0.005952,0.218976,0.006048
+1278,1114.1,0.897583,0.48848,0.006144,0.233472,0.005728,0.004512,0.005824,0.226784,0.006016
+1279,1176,0.850342,0.464608,0.005792,0.213984,0.00512,0.004896,0.005472,0.22336,0.005984
+1280,1036.18,0.965088,0.457408,0.005824,0.216064,0.005152,0.004864,0.005472,0.213888,0.006144
+1281,1043.17,0.958618,0.456704,0.005984,0.210336,0.004864,0.004096,0.006144,0.219136,0.006144
+1282,1302.8,0.767578,0.475552,0.005824,0.225984,0.004128,0.005696,0.004544,0.223232,0.006144
+1283,542.445,1.84351,0.72704,0.008192,0.474592,0.00464,0.006144,0.005856,0.221472,0.006144
+1284,819.938,1.2196,0.56992,0.005824,0.308096,0.005568,0.004672,0.00544,0.221152,0.019168
+1285,990.209,1.00989,0.467104,0.006144,0.223232,0.005216,0.004896,0.005472,0.21696,0.005184
+1286,1175.32,0.85083,0.475136,0.006144,0.222784,0.004544,0.00528,0.00496,0.223232,0.008192
+1287,1096.65,0.911865,0.463232,0.005824,0.21472,0.004928,0.004256,0.00608,0.221248,0.006176
+1288,1064.03,0.939819,0.474464,0.005824,0.219456,0.00432,0.005504,0.004768,0.228416,0.006176
+1289,1066.67,0.9375,0.474912,0.005792,0.225888,0.004096,0.005856,0.005472,0.22176,0.006048
+1290,736.36,1.35803,0.718848,0.007968,0.46512,0.0056,0.00464,0.005728,0.223648,0.006144
+1291,1019.41,0.980957,0.464896,0.006144,0.21504,0.004096,0.00576,0.004512,0.2232,0.006144
+1292,1043.04,0.95874,0.468992,0.00592,0.217312,0.005344,0.004896,0.00544,0.223936,0.006144
+1293,1046.77,0.955322,0.464896,0.006144,0.210976,0.005888,0.00432,0.006048,0.224448,0.007072
+1294,1238.21,0.807617,0.46304,0.005824,0.212896,0.004704,0.00512,0.00512,0.223232,0.006144
+1295,814.8,1.22729,0.475648,0.005824,0.225952,0.005472,0.004768,0.0056,0.222848,0.005184
+1296,917.255,1.09021,0.93184,0.006144,0.679936,0.006016,0.005568,0.0048,0.223232,0.006144
+1297,803.059,1.24524,0.742336,0.035776,0.468608,0.0056,0.005024,0.006048,0.215136,0.006144
+1298,964.218,1.03711,0.4608,0.006144,0.215072,0.005888,0.00432,0.006048,0.217184,0.006144
+1299,1252.41,0.798462,0.46448,0.00608,0.218464,0.004832,0.004096,0.006144,0.218816,0.006048
+1300,1217.78,0.821167,0.464896,0.006176,0.215008,0.005632,0.004608,0.00576,0.221568,0.006144
+1301,1129.78,0.885132,0.462848,0.006144,0.213024,0.005856,0.004352,0.005856,0.221472,0.006144
+1302,1014.61,0.985596,0.477024,0.006144,0.221024,0.004256,0.005536,0.004704,0.229376,0.005984
+1303,896.182,1.11584,0.92976,0.005056,0.679296,0.004736,0.006144,0.00576,0.222688,0.00608
+1304,734.116,1.36218,0.712736,0.006144,0.45424,0.005568,0.005088,0.005984,0.229536,0.006176
+1305,1203.64,0.830811,0.475136,0.005792,0.219488,0.005504,0.004736,0.005632,0.22784,0.006144
+1306,1116.84,0.895386,0.468256,0.005792,0.213344,0.005824,0.004448,0.006112,0.226752,0.005984
+1307,1184.67,0.844116,0.461344,0.00496,0.214912,0.005216,0.004864,0.005504,0.21984,0.006048
+1308,1029.28,0.971558,0.47024,0.006144,0.21472,0.004416,0.005408,0.004832,0.228704,0.006016
+1309,1141.42,0.876099,0.470656,0.005792,0.217472,0.005536,0.004704,0.005664,0.225376,0.006112
+1310,606.905,1.64771,0.475136,0.008192,0.22528,0.005824,0.004416,0.00592,0.21936,0.006144
+1311,952.669,1.04968,0.469152,0.006144,0.226944,0.00448,0.005344,0.004896,0.216128,0.005216
+1312,1054.31,0.948486,0.480864,0.005792,0.233856,0.00432,0.005536,0.004736,0.220672,0.005952
+1313,1198.89,0.834106,0.466944,0.006112,0.216608,0.004608,0.005216,0.005056,0.2232,0.006144
+1314,1084.6,0.921997,0.467264,0.005824,0.21552,0.004256,0.005632,0.004608,0.224576,0.006848
+1315,1160.18,0.861938,0.466464,0.006144,0.213024,0.00416,0.005824,0.005472,0.225728,0.006112
+1316,888.792,1.12512,0.507904,0.006144,0.247712,0.004192,0.0056,0.00464,0.233472,0.006144
+1317,591.053,1.69189,0.840704,0.008192,0.278464,0.00416,0.005632,0.004608,0.5336,0.006048
+1318,1009.24,0.990845,0.482304,0.006144,0.219136,0.00528,0.004864,0.006272,0.234624,0.005984
+1319,1174.31,0.851562,0.482144,0.004992,0.220192,0.004928,0.004224,0.006016,0.235648,0.006144
+1320,1077.19,0.928345,0.480576,0.006016,0.220768,0.00464,0.004096,0.006144,0.232896,0.006016
+1321,1075.21,0.930054,0.48688,0.006176,0.231392,0.005312,0.004896,0.005472,0.227744,0.005888
+1322,1115.77,0.89624,0.46976,0.004992,0.218336,0.004736,0.004096,0.006144,0.226464,0.004992
+1323,849.969,1.17651,0.935456,0.006176,0.679584,0.0056,0.00496,0.00608,0.224896,0.00816
+1324,811.41,1.23242,0.690176,0.006048,0.431648,0.004672,0.005248,0.004992,0.231296,0.006272
+1325,992.128,1.00793,0.470912,0.005792,0.21776,0.005344,0.004864,0.005472,0.223936,0.007744
+1326,1167.78,0.856323,0.469536,0.005824,0.21776,0.004256,0.005568,0.004672,0.224672,0.006784
+1327,1209.15,0.827026,0.463616,0.00496,0.214368,0.004768,0.004096,0.006144,0.223232,0.006048
+1328,1061.28,0.942261,0.468352,0.006144,0.217088,0.005568,0.004672,0.005632,0.2232,0.006048
+1329,1115.47,0.896484,0.487456,0.006144,0.222656,0.004672,0.005152,0.005088,0.237568,0.006176
+1330,1182.62,0.845581,0.482528,0.006176,0.214912,0.004192,0.0056,0.00464,0.241056,0.005952
+1331,382.018,2.61768,1.64704,0.006912,1.3783,0.005536,0.004704,0.005696,0.23984,0.006048
+1332,956.339,1.04565,0.511296,0.005792,0.247744,0.004576,0.005248,0.004992,0.23696,0.005984
+1333,1109.13,0.901611,0.482496,0.006144,0.223232,0.005824,0.004416,0.005984,0.23088,0.006016
+1334,1108.08,0.902466,0.476544,0.006144,0.219136,0.005856,0.004384,0.005952,0.229056,0.006016
+1335,1053.36,0.949341,0.503392,0.005824,0.244768,0.006016,0.004096,0.005216,0.231456,0.006016
+1336,559.907,1.78601,0.8072,0.007168,0.26576,0.004576,0.005248,0.004992,0.513376,0.00608
+1337,836.43,1.19556,0.478016,0.004928,0.22528,0.005248,0.004896,0.005472,0.22576,0.006432
+1338,1087.34,0.919678,0.474816,0.006176,0.2224,0.004896,0.004096,0.006144,0.225152,0.005952
+1339,1193.82,0.837646,0.489824,0.005792,0.242464,0.004096,0.005824,0.005472,0.220096,0.00608
+1340,1157.72,0.86377,0.468832,0.006144,0.219136,0.005632,0.004608,0.00576,0.221568,0.005984
+1341,1105.53,0.904541,0.489472,0.007424,0.221152,0.004896,0.004096,0.006144,0.239616,0.006144
+1342,774.584,1.29102,0.95392,0.005824,0.682336,0.005664,0.004576,0.006144,0.243328,0.006048
+1343,902.401,1.10815,0.759264,0.006144,0.27392,0.004608,0.005184,0.005056,0.45824,0.006112
+1344,911.336,1.09729,0.490432,0.005088,0.221152,0.004096,0.005824,0.005472,0.242656,0.006144
+1345,911.235,1.09741,0.480832,0.005792,0.226848,0.004928,0.00416,0.006144,0.226944,0.006016
+1346,1366.47,0.731812,0.475232,0.006144,0.223264,0.0056,0.004608,0.00576,0.224768,0.005088
+1347,966.494,1.03467,0.48464,0.006144,0.227328,0.005152,0.004896,0.005472,0.2296,0.006048
+1348,891.889,1.12122,0.513184,0.006144,0.255744,0.004352,0.005472,0.004768,0.23072,0.005984
+1349,849.881,1.17664,0.753536,0.007936,0.496096,0.004608,0.006144,0.005888,0.226848,0.006016
+1350,788.678,1.26794,0.749568,0.006144,0.481056,0.0056,0.004864,0.006144,0.239616,0.006144
+1351,1171.62,0.853516,0.466944,0.006144,0.212992,0.005856,0.004384,0.00576,0.225664,0.006144
+1352,1152.02,0.868042,0.467008,0.005824,0.213376,0.005632,0.004608,0.005568,0.225856,0.006144
+1353,1142.06,0.87561,0.47024,0.006144,0.215072,0.00576,0.004448,0.005952,0.226848,0.006016
+1354,1052.55,0.950073,0.499744,0.00592,0.24144,0.004544,0.00528,0.00496,0.231424,0.006176
+1355,1067.5,0.936768,0.479232,0.005792,0.227296,0.00448,0.005344,0.004896,0.22528,0.006144
+1356,841.673,1.18811,0.927552,0.006176,0.677856,0.006144,0.005792,0.005504,0.220064,0.006016
+1357,840.119,1.19031,0.471232,0.005824,0.21872,0.0048,0.004288,0.006144,0.22528,0.006176
+1358,1095.19,0.913086,0.464928,0.006144,0.212192,0.004896,0.004096,0.006144,0.22528,0.006176
+1359,1189.31,0.84082,0.466848,0.005792,0.213504,0.0056,0.00464,0.005728,0.225536,0.006048
+1360,801.095,1.24829,0.500928,0.00608,0.2448,0.004992,0.004224,0.006112,0.228672,0.006048
+1361,743.646,1.34473,0.47504,0.00576,0.219648,0.005952,0.004288,0.00608,0.227232,0.00608
+1362,951.231,1.05127,0.938112,0.005792,0.678624,0.0056,0.004704,0.006144,0.2312,0.006048
+1363,976.517,1.02405,0.739744,0.005792,0.25072,0.00512,0.004896,0.005472,0.461696,0.006048
+1364,905.193,1.10474,0.480608,0.006144,0.222464,0.004864,0.004096,0.006144,0.23088,0.006016
+1365,1009.49,0.990601,0.487104,0.005824,0.231232,0.004896,0.004096,0.006144,0.228864,0.006048
+1366,1126.67,0.887573,0.466944,0.006016,0.21312,0.00576,0.00448,0.005696,0.225728,0.006144
+1367,1161.16,0.861206,0.4752,0.005824,0.219104,0.00448,0.005344,0.004896,0.229376,0.006176
+1368,1051.6,0.950928,0.498208,0.005792,0.240512,0.005472,0.004768,0.0056,0.22992,0.006144
+1369,816.587,1.22461,0.937824,0.005824,0.67776,0.004768,0.006144,0.005664,0.229856,0.007808
+1370,752.388,1.3291,0.70976,0.012352,0.452544,0.0056,0.00464,0.006144,0.2224,0.00608
+1371,1148.95,0.870361,0.473088,0.006144,0.219136,0.00608,0.00416,0.006144,0.22528,0.006144
+1372,1131.96,0.883423,0.47552,0.006496,0.219232,0.004576,0.005216,0.005024,0.228928,0.006048
+1373,1120.04,0.892822,0.483328,0.006144,0.22736,0.005408,0.0048,0.005568,0.227904,0.006144
+1374,726.628,1.37622,0.511104,0.006144,0.240736,0.004928,0.004192,0.006016,0.243072,0.006016
+1375,1287.24,0.776855,0.50976,0.005856,0.245504,0.004896,0.004096,0.006144,0.237248,0.006016
+1376,653.895,1.5293,0.800768,0.008,0.234976,0.004832,0.004096,0.006144,0.536576,0.006144
+1377,788.45,1.26831,0.473088,0.006144,0.217056,0.004128,0.005856,0.005472,0.228288,0.006144
+1378,1231.51,0.812012,0.467264,0.005824,0.211584,0.005536,0.004704,0.005664,0.227488,0.006464
+1379,1234.11,0.810303,0.470848,0.006144,0.216192,0.00496,0.004256,0.006016,0.227264,0.006016
+1380,1057.99,0.94519,0.470976,0.005824,0.215808,0.004256,0.005536,0.004704,0.228768,0.00608
+1381,1155.43,0.865479,0.475904,0.004992,0.221024,0.005728,0.004512,0.006144,0.227296,0.006208
+1382,1077.04,0.928467,0.749632,0.005792,0.219616,0.005632,0.004608,0.006144,0.223232,0.284608
+1383,671.09,1.49011,0.795072,0.007936,0.303904,0.0056,0.00464,0.00576,0.461056,0.006176
+1384,899.725,1.11145,0.472192,0.005856,0.217376,0.00592,0.00432,0.006144,0.226432,0.006144
+1385,1058.53,0.944702,0.464864,0.005824,0.213952,0.004096,0.005728,0.004576,0.224608,0.00608
+1386,1211.12,0.825684,0.479392,0.005792,0.223168,0.004832,0.004096,0.006144,0.22928,0.00608
+1387,1161.33,0.861084,0.46528,0.005792,0.211456,0.004288,0.005536,0.004736,0.227296,0.006176
+1388,1103,0.906616,0.474208,0.005088,0.216896,0.004288,0.005504,0.004768,0.232448,0.005216
+1389,648.306,1.54248,0.942912,0.004896,0.684032,0.005632,0.00464,0.006112,0.231424,0.006176
+1390,1252.41,0.798462,0.694528,0.00496,0.436224,0.005184,0.004864,0.005568,0.228096,0.009632
+1391,901.012,1.10986,0.472512,0.006144,0.21504,0.005504,0.004736,0.0056,0.22944,0.006048
+1392,1102.71,0.90686,0.468992,0.005984,0.215232,0.005472,0.004736,0.005632,0.225792,0.006144
+1393,1040.25,0.961304,0.497984,0.005856,0.24016,0.00416,0.005664,0.004608,0.231392,0.006144
+1394,1306.96,0.765137,0.464832,0.006176,0.2184,0.0048,0.004096,0.006144,0.219136,0.00608
+1395,1013.86,0.986328,0.458784,0.004992,0.218176,0.004832,0.004096,0.006144,0.214464,0.00608
+1396,823.896,1.21375,0.937024,0.006144,0.679552,0.005536,0.005088,0.005984,0.22544,0.00928
+1397,993.331,1.00671,0.70032,0.005792,0.454432,0.00496,0.004096,0.006144,0.218848,0.006048
+1398,895.398,1.11682,0.474112,0.005056,0.220832,0.004416,0.005408,0.004832,0.228416,0.005152
+1399,1184.16,0.844482,0.480992,0.006144,0.221088,0.004192,0.005632,0.00464,0.233216,0.00608
+1400,1060.59,0.942871,0.481088,0.005792,0.227808,0.004192,0.005632,0.004608,0.227072,0.005984
+1401,1199.06,0.833984,0.462816,0.0048,0.212608,0.00448,0.005344,0.004928,0.224608,0.006048
+1402,1124.66,0.88916,0.462304,0.005824,0.213472,0.00544,0.0048,0.005568,0.221184,0.006016
+1403,1081.45,0.924683,0.784128,0.007328,0.243904,0.004768,0.00416,0.00608,0.509632,0.008256
+1404,599.181,1.66895,0.765664,0.005792,0.489632,0.005568,0.004928,0.006144,0.247488,0.006112
+1405,970.961,1.02991,0.482624,0.005824,0.219232,0.004544,0.00528,0.00496,0.236736,0.006048
+1406,1347.37,0.742188,0.475136,0.006144,0.212928,0.00416,0.005664,0.004608,0.235488,0.006144
+1407,962.406,1.03906,0.481248,0.005952,0.218912,0.004512,0.005312,0.00496,0.235488,0.006112
+1408,1384.95,0.722046,0.475136,0.005824,0.217568,0.00512,0.004864,0.005504,0.230144,0.006112
+1409,1088.35,0.918823,0.49776,0.005824,0.241984,0.005248,0.004896,0.005472,0.229312,0.005024
+1410,937.085,1.06714,0.999424,0.006144,0.48848,0.007136,0.005568,0.004704,0.481248,0.006144
+1411,651.659,1.53455,0.74752,0.01216,0.47936,0.005888,0.0056,0.004896,0.233472,0.006144
+1412,1117.14,0.895142,0.467872,0.005024,0.212512,0.004576,0.005248,0.004992,0.229312,0.006208
+1413,1176.84,0.849731,0.467168,0.005824,0.220672,0.00496,0.004096,0.006144,0.220256,0.005216
+1414,1028.89,0.971924,0.489952,0.005792,0.232288,0.005728,0.00448,0.00592,0.2296,0.006144
+1415,1161.66,0.86084,0.473408,0.005824,0.220928,0.00496,0.004128,0.006144,0.224704,0.00672
+1416,1115.16,0.896729,0.476224,0.006144,0.220928,0.004352,0.005472,0.004768,0.228416,0.006144
+1417,769.708,1.29919,0.723584,0.007968,0.47344,0.004576,0.006144,0.00592,0.21936,0.006176
+1418,803.531,1.24451,0.721216,0.028992,0.44704,0.006144,0.005856,0.004384,0.222784,0.006016
+1419,1181.6,0.846313,0.465152,0.005824,0.213536,0.005568,0.004672,0.005696,0.22368,0.006176
+1420,744.051,1.34399,0.487552,0.005824,0.226016,0.005344,0.004864,0.005504,0.233984,0.006016
+1421,1526.65,0.655029,0.47104,0.005824,0.217408,0.00592,0.00432,0.00608,0.225376,0.006112
+1422,1132.59,0.882935,0.469312,0.005792,0.213632,0.004096,0.005856,0.005472,0.227968,0.006496
+1423,1177.01,0.849609,0.476032,0.005024,0.221152,0.005312,0.004864,0.005568,0.227968,0.006144
+1424,849.528,1.17712,0.945888,0.005824,0.680064,0.0056,0.004896,0.006144,0.237312,0.006048
+1425,698.261,1.43213,0.507584,0.005952,0.252096,0.005472,0.004768,0.005568,0.22768,0.006048
+1426,1457.39,0.686157,0.476736,0.006144,0.219136,0.005472,0.004768,0.0056,0.229664,0.005952
+1427,1091.1,0.916504,0.462336,0.005824,0.21376,0.00528,0.004896,0.00544,0.22112,0.006016
+1428,1223.05,0.817627,0.47104,0.006144,0.217088,0.005472,0.004768,0.005952,0.225472,0.006144
+1429,1042.64,0.959106,0.465056,0.005824,0.217568,0.00528,0.00496,0.005536,0.219744,0.006144
+1430,1233.18,0.810913,0.47696,0.006048,0.221952,0.00512,0.004896,0.00432,0.22736,0.007264
+1431,857.891,1.16565,0.93616,0.005888,0.680128,0.004672,0.006144,0.005792,0.225376,0.00816
+1432,737.088,1.35669,0.475136,0.006144,0.219136,0.005696,0.004544,0.005824,0.227648,0.006144
+1433,1208.62,0.827393,0.466528,0.006144,0.210944,0.005888,0.005472,0.005024,0.227072,0.005984
+1434,1103.15,0.906494,0.46112,0.005824,0.213184,0.0048,0.004096,0.006144,0.221056,0.006016
+1435,852.445,1.1731,0.478816,0.006144,0.22448,0.004896,0.00544,0.0048,0.22704,0.006016
+1436,1502.57,0.665527,0.474272,0.005856,0.220864,0.004704,0.00512,0.00512,0.226592,0.006016
+1437,1076.48,0.928955,0.469536,0.005088,0.216832,0.004352,0.00544,0.0048,0.227008,0.006016
+1438,844.188,1.18457,0.929792,0.006144,0.679936,0.005792,0.0056,0.004992,0.221184,0.006144
+1439,755.999,1.32275,0.475136,0.006176,0.219104,0.005472,0.004768,0.006144,0.227328,0.006144
+1440,1223.42,0.817383,0.47104,0.005888,0.216544,0.004896,0.004096,0.006144,0.227328,0.006144
+1441,1006.14,0.993896,0.4576,0.005024,0.21264,0.004416,0.005408,0.004832,0.219136,0.006144
+1442,1265.37,0.790283,0.477184,0.006176,0.217056,0.005376,0.004864,0.006112,0.231456,0.006144
+1443,1045.97,0.956055,0.466112,0.006144,0.212704,0.004384,0.005408,0.004864,0.22656,0.006048
+1444,1170.62,0.854248,0.486688,0.006176,0.23744,0.004192,0.0056,0.00464,0.222592,0.006048
+1445,812.376,1.23096,0.9264,0.004992,0.677888,0.005984,0.005568,0.004864,0.221056,0.006048
+1446,810.929,1.23315,0.476512,0.006144,0.222752,0.004576,0.005856,0.005856,0.225312,0.006016
+1447,1113.95,0.897705,0.467136,0.005856,0.215008,0.004416,0.005408,0.006112,0.224,0.006336
+1448,1117.6,0.894775,0.467328,0.005792,0.213056,0.004768,0.004096,0.006144,0.227328,0.006144
+1449,1235.22,0.80957,0.455168,0.005824,0.211744,0.005568,0.004672,0.005664,0.21552,0.006176
+1450,1115.77,0.89624,0.459136,0.005824,0.210784,0.004896,0.005344,0.004896,0.221184,0.006208
+1451,1083.02,0.92334,0.460832,0.005824,0.214976,0.00448,0.005312,0.004928,0.219136,0.006176
+1452,558.342,1.79102,0.527744,0.008192,0.233472,0.004096,0.005728,0.004512,0.265664,0.00608
+1453,922.523,1.08398,0.462112,0.005792,0.214752,0.004768,0.004096,0.006144,0.220512,0.006048
+1454,1086.47,0.92041,0.476128,0.005088,0.227328,0.005568,0.004672,0.006144,0.221184,0.006144
+1455,1134.63,0.881348,0.462848,0.006144,0.212992,0.005632,0.004608,0.005568,0.22176,0.006144
+1456,1105.23,0.904785,0.45648,0.005824,0.211168,0.004832,0.004096,0.006144,0.218432,0.005984
+1457,1097.53,0.911133,0.477184,0.005792,0.221504,0.004576,0.005248,0.004992,0.229056,0.006016
+1458,1124.97,0.888916,0.491584,0.005088,0.23728,0.004384,0.005472,0.004768,0.228416,0.006176
+1459,627.643,1.59326,0.485376,0.008064,0.235648,0.005728,0.004512,0.00592,0.21936,0.006144
+1460,955.224,1.04688,0.467296,0.005792,0.214752,0.004928,0.004256,0.00608,0.2264,0.005088
+1461,1257.6,0.795166,0.461568,0.005792,0.213056,0.004928,0.004224,0.006144,0.222208,0.005216
+1462,1132.43,0.883057,0.460768,0.006144,0.212576,0.004512,0.005312,0.004928,0.221184,0.006112
+1463,1087.92,0.919189,0.459008,0.005824,0.211296,0.004704,0.004096,0.006144,0.220864,0.00608
+1464,1121.58,0.891602,0.469088,0.005792,0.215488,0.005312,0.004896,0.005472,0.225984,0.006144
+1465,1190.01,0.840332,0.464896,0.006144,0.214528,0.004608,0.005216,0.005024,0.223232,0.006144
+1466,607.445,1.64624,0.786432,0.008192,0.2352,0.004416,0.005248,0.004992,0.52224,0.006144
+1467,890.241,1.12329,0.512608,0.014912,0.253184,0.004864,0.004096,0.006144,0.223232,0.006176
+1468,1136.83,0.879639,0.477184,0.006144,0.224512,0.004864,0.004096,0.006144,0.224352,0.007072
+1469,1178.03,0.848877,0.480928,0.006144,0.229376,0.005856,0.004384,0.00608,0.22304,0.006048
+1470,1091.68,0.916016,0.454656,0.006144,0.212512,0.004576,0.005824,0.005504,0.213952,0.006144
+1471,1277.21,0.782959,0.460864,0.006176,0.220544,0.004704,0.005152,0.005088,0.212992,0.006208
+1472,963.538,1.03784,0.745472,0.005856,0.215328,0.004096,0.00576,0.004576,0.226432,0.283424
+1473,703.78,1.4209,0.681824,0.008192,0.42928,0.004896,0.004096,0.006144,0.223168,0.006048
+1474,1086.76,0.920166,0.469344,0.004928,0.216288,0.004864,0.004096,0.006144,0.227008,0.006016
+1475,1091.1,0.916504,0.4608,0.006112,0.212992,0.004128,0.005696,0.004544,0.221184,0.006144
+1476,1009.61,0.990479,0.492544,0.005152,0.243456,0.00432,0.005504,0.004768,0.2232,0.006144
+1477,1122.5,0.890869,0.47712,0.006144,0.22736,0.005184,0.004896,0.005472,0.221984,0.00608
+1478,947.929,1.05493,0.494464,0.004992,0.243616,0.004192,0.005632,0.00464,0.224416,0.006976
+1479,1198.71,0.834229,0.747232,0.006144,0.216832,0.004352,0.005536,0.004704,0.226592,0.283072
+1480,578.94,1.72729,0.73488,0.008192,0.48064,0.004736,0.006144,0.006144,0.222976,0.006048
+1481,1385.66,0.72168,0.469664,0.005792,0.215424,0.004736,0.004096,0.006144,0.227328,0.006144
+1482,1165.62,0.85791,0.471616,0.005824,0.217984,0.005568,0.004672,0.005696,0.225728,0.006144
+1483,1196.26,0.835938,0.485376,0.006144,0.231264,0.004256,0.005568,0.004704,0.227296,0.006144
+1484,937.729,1.06641,0.469856,0.004992,0.216832,0.00432,0.005472,0.004768,0.22736,0.006112
+1485,1316.62,0.759521,0.470496,0.006048,0.22544,0.004096,0.005728,0.004544,0.218592,0.006048
+1486,849.44,1.17725,0.945184,0.006144,0.692032,0.005568,0.004864,0.006144,0.224352,0.00608
+1487,731.821,1.36646,0.749568,0.006048,0.483424,0.006144,0.00608,0.005472,0.236288,0.006112
+1488,1106.13,0.904053,0.463904,0.006176,0.214656,0.004448,0.005376,0.006464,0.2208,0.005984
+1489,1076.48,0.928955,0.460096,0.006144,0.212672,0.004416,0.005376,0.004864,0.220576,0.006048
+1490,1215.07,0.822998,0.466944,0.005792,0.211296,0.004096,0.005824,0.005472,0.22832,0.006144
+1491,1121.88,0.891357,0.475008,0.005792,0.212896,0.015168,0.005408,0.004832,0.224832,0.00608
+1492,962.858,1.03857,0.493696,0.005824,0.234144,0.005216,0.004864,0.005504,0.232096,0.006048
+1493,1199.06,0.833984,0.488288,0.004992,0.235488,0.005152,0.004864,0.005504,0.226144,0.006144
+1494,550.834,1.81543,0.502368,0.007904,0.248704,0.005472,0.004768,0.0056,0.2248,0.00512
+1495,1363.52,0.733398,0.475008,0.006144,0.221184,0.005664,0.004576,0.005952,0.22544,0.006048
+1496,1024.77,0.97583,0.471456,0.005792,0.219424,0.004544,0.00528,0.00496,0.22528,0.006176
+1497,1257.21,0.79541,0.466944,0.005856,0.214656,0.004768,0.004096,0.006144,0.224864,0.00656
+1498,1060.59,0.942871,0.464768,0.006144,0.216192,0.00496,0.004128,0.006144,0.221088,0.006112
+1499,951.894,1.05054,0.503872,0.005824,0.249696,0.004768,0.00432,0.006048,0.2272,0.006016
+1500,679.947,1.4707,0.476512,0.007968,0.22256,0.004896,0.004192,0.006144,0.224704,0.006048
+1501,930.486,1.07471,0.467104,0.005792,0.213664,0.005888,0.00432,0.00608,0.224864,0.006496
+1502,938.159,1.06592,0.46544,0.00512,0.212992,0.005184,0.004864,0.005472,0.224096,0.007712
+1503,1353.15,0.739014,0.518176,0.006112,0.259168,0.00496,0.004192,0.006144,0.231424,0.006176
+1504,1104.34,0.905518,0.467616,0.004992,0.21488,0.004096,0.005728,0.004544,0.227296,0.00608
+1505,1221.96,0.818359,0.464608,0.005824,0.213536,0.004096,0.005792,0.005472,0.223808,0.00608
+1506,1054.31,0.948486,0.49136,0.005856,0.239104,0.004928,0.004256,0.006144,0.225056,0.006016
+1507,583.808,1.71289,0.692224,0.008192,0.43728,0.005056,0.004128,0.006144,0.22528,0.006144
+1508,915.103,1.09277,0.47392,0.004992,0.217056,0.005088,0.004896,0.00432,0.231456,0.006112
+1509,1222.32,0.818115,0.46912,0.00576,0.213504,0.004096,0.0056,0.00464,0.229376,0.006144
+1510,1126.51,0.887695,0.474464,0.006144,0.21504,0.005632,0.004608,0.005632,0.23136,0.006048
+1511,1124.66,0.88916,0.466944,0.006144,0.212384,0.004704,0.00512,0.00512,0.227328,0.006144
+1512,1048.91,0.953369,0.485408,0.006144,0.227328,0.004128,0.005856,0.005472,0.230304,0.006176
+1513,1178.03,0.848877,0.953216,0.004992,0.443648,0.00688,0.005824,0.005472,0.226272,0.260128
+1514,719.859,1.38916,0.727616,0.005824,0.245696,0.005024,0.005184,0.005056,0.454656,0.006176
+1515,862.679,1.15918,0.464992,0.005824,0.211328,0.005248,0.004864,0.006272,0.225312,0.006144
+1516,1155.43,0.865479,0.469312,0.005792,0.21536,0.004448,0.005248,0.004992,0.227328,0.006144
+1517,1214.35,0.823486,0.461056,0.00576,0.211648,0.005344,0.004896,0.005472,0.221856,0.00608
+1518,1094.6,0.913574,0.458304,0.005792,0.213504,0.004192,0.005824,0.00432,0.218656,0.006016
+1519,844.188,1.18457,0.462496,0.006016,0.218688,0.00496,0.00416,0.006176,0.216512,0.005984
+1520,1096.65,0.911865,0.743424,0.006144,0.493568,0.008128,0.005568,0.004736,0.219136,0.006144
+1521,630.93,1.58496,0.728992,0.004896,0.474976,0.005568,0.004832,0.006144,0.225312,0.007264
+1522,1343.83,0.744141,0.468672,0.005792,0.215872,0.005152,0.004864,0.005504,0.22544,0.006048
+1523,1102.26,0.907227,0.461472,0.004992,0.212864,0.00592,0.00432,0.006048,0.221248,0.00608
+1524,1191.39,0.839355,0.462816,0.005824,0.21392,0.005472,0.004736,0.005632,0.221184,0.006048
+1525,1101.08,0.908203,0.460032,0.005824,0.211424,0.005568,0.004672,0.0056,0.220928,0.006016
+1526,1178.71,0.848389,0.47104,0.006112,0.219168,0.004096,0.005696,0.004736,0.22512,0.006112
+1527,821.995,1.21655,0.939904,0.006112,0.679552,0.005568,0.005088,0.005984,0.229248,0.008352
+1528,721,1.38696,0.733184,0.006144,0.475136,0.006144,0.005728,0.004512,0.229376,0.006144
+1529,1163.31,0.859619,0.462624,0.005792,0.213408,0.004608,0.004096,0.006144,0.222592,0.005984
+1530,1090.52,0.916992,0.467488,0.005792,0.21184,0.004096,0.005824,0.005472,0.22816,0.006304
+1531,1246.12,0.80249,0.473088,0.006144,0.212992,0.005472,0.004768,0.005568,0.232,0.006144
+1532,680.173,1.47021,0.508736,0.00496,0.250976,0.004896,0.004192,0.006144,0.231424,0.006144
+1533,1122.81,0.890625,0.477408,0.005824,0.213024,0.00464,0.005152,0.005088,0.237568,0.006112
+1534,721.508,1.38599,0.757952,0.008192,0.214432,0.004704,0.004192,0.006048,0.515168,0.005216
+1535,844.536,1.18408,0.470016,0.00512,0.214176,0.004928,0.004128,0.006144,0.229376,0.006144
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..5ff6bae
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,221.87,4.55701,3.84053,0.0265172,0.449034,0.00754703,0.00538778,0.0112727,0.0333578,0.0360935,3.23112,0.0401915
+max_1024,392.112,6.7876,4.80259,0.054752,1.13539,0.049792,0.028672,0.055296,0.07552,0.0768,4.1136,0.350208
+min_1024,147.328,2.55029,3.39398,0.022624,0.358656,0.006144,0.004064,0.009216,0.031328,0.03472,2.85946,0.034816
+512,224.944,4.44556,4.46765,0.023424,0.499296,0.006592,0.005248,0.01072,0.032928,0.035072,3.81952,0.034848
+513,200.804,4.97998,3.47635,0.026496,0.373184,0.00672,0.005792,0.010464,0.03264,0.035072,2.94883,0.037152
+514,243.086,4.11377,3.48163,0.026304,0.387392,0.007872,0.004416,0.011552,0.032864,0.035456,2.93994,0.03584
+515,235.972,4.23779,4.23994,0.023104,0.393248,0.007616,0.00464,0.01024,0.0328,0.035904,3.69347,0.038912
+516,199.971,5.00073,3.49187,0.026624,0.395264,0.006144,0.005952,0.010432,0.0328,0.036064,2.9417,0.036896
+517,242.971,4.11572,3.49725,0.026624,0.399296,0.006208,0.006144,0.01024,0.032768,0.036736,2.94291,0.03632
+518,227.669,4.39233,4.60598,0.02624,0.665984,0.007776,0.004512,0.011968,0.033088,0.036544,3.78502,0.034848
+519,200.382,4.99048,3.48122,0.026624,0.382976,0.007616,0.004672,0.010368,0.032736,0.036256,2.94256,0.037408
+520,236.394,4.23022,3.51437,0.026144,0.42032,0.006144,0.005792,0.010592,0.032768,0.03584,2.94118,0.035584
+521,235.511,4.24609,4.56304,0.0256,0.589664,0.006336,0.00608,0.012096,0.035008,0.036896,3.81539,0.035968
+522,191.509,5.22168,3.49984,0.026624,0.40752,0.006176,0.005664,0.013952,0.03296,0.035488,2.93274,0.03872
+523,234.553,4.26343,3.55037,0.02672,0.452576,0.006144,0.006144,0.01024,0.034656,0.035008,2.94256,0.03632
+524,257.012,3.89087,4.54851,0.025216,0.37648,0.006464,0.005984,0.0104,0.032736,0.035968,4.01706,0.038208
+525,187.649,5.3291,3.48464,0.025568,0.391232,0.008,0.005504,0.010688,0.033056,0.034848,2.93843,0.037312
+526,233.178,4.28857,3.4816,0.02656,0.405504,0.006336,0.006016,0.01024,0.033888,0.035648,2.92054,0.036864
+527,250.505,3.99194,3.8953,0.026656,0.371776,0.007072,0.005536,0.010656,0.032256,0.035488,3.33622,0.069632
+528,194.714,5.13574,3.48749,0.02832,0.383552,0.008032,0.004256,0.010368,0.034688,0.036864,2.94422,0.037184
+529,221.071,4.52344,3.56954,0.028032,0.467104,0.006624,0.00592,0.010464,0.032768,0.034912,2.94493,0.038784
+530,250.919,3.98535,3.82957,0.026336,0.377472,0.007872,0.004416,0.01024,0.032864,0.036704,3.29734,0.03632
+531,207.413,4.82129,3.49632,0.028288,0.40624,0.007872,0.005504,0.010688,0.033056,0.035072,2.9327,0.036896
+532,249.68,4.00513,3.4656,0.02496,0.382976,0.007936,0.004352,0.010272,0.03376,0.035744,2.92979,0.035808
+533,230.566,4.33716,3.87891,0.026592,0.390528,0.006816,0.005728,0.010656,0.032768,0.03632,3.33267,0.036832
+534,207.771,4.81299,4.19872,0.026112,0.660288,0.024576,0.028672,0.02,0.035008,0.035136,3.33411,0.034816
+535,218.325,4.58032,3.48595,0.02672,0.387232,0.007232,0.005056,0.01024,0.032768,0.036864,2.94093,0.038912
+536,219.766,4.55029,3.95059,0.026656,0.459744,0.007072,0.014432,0.012192,0.032864,0.038944,3.32314,0.035552
+537,224.746,4.44946,4.24778,0.026624,0.70128,0.042144,0.013152,0.012288,0.034464,0.0352,3.3464,0.036224
+538,209.911,4.76392,3.54218,0.026624,0.456736,0.007968,0.004288,0.010272,0.032736,0.036064,2.93062,0.036864
+539,234.634,4.26196,3.95962,0.02544,0.462816,0.007936,0.005536,0.010752,0.03312,0.034816,3.34234,0.036864
+540,215.749,4.63501,4.33766,0.02608,0.391712,0.00768,0.004608,0.011712,0.033152,0.036448,3.79082,0.035456
+541,201.903,4.95288,3.46726,0.028576,0.37488,0.007584,0.004704,0.011456,0.033248,0.036224,2.93331,0.03728
+542,244.217,4.09473,3.8439,0.026624,0.380288,0.006784,0.005152,0.010656,0.032736,0.035456,3.3095,0.036704
+543,211.036,4.73853,4.31107,0.026304,0.37456,0.006688,0.005856,0.01056,0.032768,0.035808,3.7832,0.035328
+544,203.548,4.91284,3.46685,0.026624,0.380928,0.007296,0.004832,0.0104,0.032576,0.03504,2.93251,0.03664
+545,240.488,4.1582,3.84819,0.026656,0.384992,0.00736,0.004928,0.011296,0.031712,0.036256,3.3095,0.035488
+546,215.409,4.64233,4.44464,0.025216,0.509344,0.00672,0.005152,0.011264,0.032736,0.036576,3.78227,0.03536
+547,193.692,5.16284,3.56957,0.026624,0.46624,0.006848,0.005632,0.026592,0.043552,0.034816,2.92186,0.037408
+548,243.23,4.11133,3.86982,0.026624,0.39936,0.006144,0.00576,0.010656,0.032768,0.034784,3.31728,0.036448
+549,216.239,4.62451,4.37309,0.026464,0.439072,0.00736,0.004928,0.011552,0.031456,0.03616,3.7793,0.0368
+550,197.264,5.06934,3.45699,0.026144,0.377824,0.006272,0.005632,0.010496,0.032896,0.03632,2.92451,0.036896
+551,238.722,4.18896,3.86458,0.026656,0.409344,0.006368,0.006144,0.01024,0.032768,0.034848,3.30134,0.036864
+552,214.72,4.65723,4.3521,0.025376,0.433888,0.006432,0.005152,0.010688,0.032704,0.035424,3.7663,0.036128
+553,172.485,5.79761,3.52051,0.028672,0.440032,0.006432,0.00608,0.010304,0.032768,0.036064,2.9233,0.036864
+554,241.438,4.14185,3.87443,0.026624,0.411648,0.007296,0.004832,0.0104,0.032768,0.035904,3.30848,0.03648
+555,193.408,5.17041,3.99075,0.028704,0.902144,0.007136,0.005536,0.011936,0.033728,0.034944,2.93005,0.036576
+556,216.022,4.62915,3.55738,0.026496,0.465024,0.007424,0.004832,0.010272,0.0328,0.03632,2.93734,0.036864
+557,248.438,4.02515,3.93059,0.026592,0.438784,0.007264,0.01504,0.010464,0.032768,0.038944,3.32528,0.035456
+558,221.262,4.51953,4.33846,0.025344,0.397312,0.00736,0.004832,0.010336,0.032768,0.036224,3.78944,0.034848
+559,200.981,4.97559,3.46317,0.026624,0.385024,0.007744,0.004544,0.011808,0.033248,0.036,2.92099,0.037184
+560,238.834,4.18701,3.87299,0.026304,0.385536,0.006144,0.005664,0.010688,0.0328,0.035872,3.33312,0.036864
+561,196.047,5.10083,3.81882,0.026624,0.73728,0.009536,0.0048,0.012288,0.034816,0.034816,2.9216,0.037056
+562,240.446,4.15894,3.47571,0.025984,0.392064,0.006208,0.0056,0.010752,0.032736,0.036096,2.92877,0.037504
+563,187.881,5.32251,4.05744,0.026368,0.557664,0.007296,0.014336,0.011008,0.032864,0.03808,3.33398,0.03584
+564,279,3.58423,4.32154,0.025536,0.396768,0.006688,0.00512,0.011296,0.032736,0.036352,3.77091,0.036128
+565,198.661,5.03369,3.49392,0.025504,0.395264,0.00784,0.005504,0.010752,0.03264,0.035392,2.94285,0.038176
+566,241.723,4.13696,3.87072,0.026624,0.387168,0.007936,0.004256,0.011872,0.032576,0.035424,3.33002,0.034848
+567,215.092,4.64917,4.35021,0.026272,0.388832,0.007008,0.005504,0.010848,0.0328,0.036352,3.80694,0.035648
+568,194.068,5.15283,3.55965,0.026176,0.446336,0.006944,0.004096,0.011456,0.047488,0.042944,2.93734,0.036864
+569,235.904,4.23901,3.9176,0.026624,0.436224,0.022528,0.006144,0.01024,0.032768,0.036128,3.3103,0.03664
+570,212.14,4.71387,4.38096,0.026528,0.42432,0.007712,0.004576,0.01024,0.032768,0.036128,3.80378,0.034912
+571,196.423,5.09106,3.52461,0.028096,0.42016,0.0064,0.006144,0.010272,0.032736,0.034816,2.94877,0.037216
+572,241.282,4.14453,3.83184,0.026656,0.382944,0.007776,0.004512,0.01024,0.032768,0.036,3.2951,0.03584
+573,220.18,4.54175,4.3864,0.026176,0.371584,0.007584,0.004704,0.025952,0.041632,0.036704,3.83606,0.036
+574,202.302,4.94312,3.47251,0.026624,0.382816,0.006304,0.005536,0.010688,0.032768,0.036032,2.93373,0.038016
+575,234.862,4.25781,3.87072,0.026624,0.384,0.00704,0.005504,0.01072,0.0328,0.035104,3.33206,0.036864
+576,222.984,4.48462,4.32534,0.0264,0.381664,0.007904,0.004384,0.01136,0.031648,0.036256,3.78944,0.036288
+577,203.984,4.90234,3.4816,0.026624,0.3664,0.006336,0.006144,0.01024,0.032768,0.036224,2.95994,0.036928
+578,245.416,4.07471,3.87277,0.026624,0.379936,0.00704,0.004192,0.011264,0.031776,0.036224,3.3399,0.035808
+579,211.734,4.7229,4.36224,0.026624,0.403456,0.00752,0.004768,0.011616,0.031392,0.036544,3.80528,0.03504
+580,200.607,4.98486,3.4856,0.026208,0.395776,0.00736,0.0048,0.010368,0.0328,0.036864,2.93424,0.037184
+581,242.726,4.11987,3.86966,0.025536,0.376832,0.007904,0.005536,0.010656,0.032832,0.035232,3.33824,0.036896
+582,212.757,4.7002,4.36301,0.025344,0.3888,0.006432,0.005376,0.010464,0.032416,0.039168,3.81971,0.035296
+583,202.482,4.93872,3.47142,0.026112,0.37536,0.007968,0.00432,0.01152,0.032928,0.0352,2.94099,0.037024
+584,247.477,4.04077,3.81347,0.026656,0.3768,0.008032,0.004256,0.011264,0.031744,0.036448,3.28339,0.03488
+585,200.391,4.99023,4.51206,0.026464,0.557536,0.007552,0.004736,0.011424,0.032608,0.035808,3.7991,0.036832
+586,214.136,4.66992,3.47974,0.026368,0.375232,0.0072,0.0048,0.010528,0.032224,0.035328,2.9512,0.036864
+587,244.042,4.09766,3.7271,0.025344,0.385056,0.007424,0.004832,0.011392,0.031616,0.036224,2.94976,0.275456
+588,233.91,4.27515,4.3625,0.026432,0.375776,0.007264,0.004576,0.01072,0.032736,0.05024,3.81843,0.03632
+589,193.71,5.16235,3.50694,0.025504,0.385024,0.007712,0.004576,0.011392,0.031616,0.034976,2.96896,0.037184
+590,238.778,4.18799,3.5183,0.026624,0.403456,0.007456,0.004832,0.01024,0.03392,0.035744,2.95933,0.036704
+591,237.974,4.20215,4.36902,0.023136,0.372512,0.006368,0.006144,0.01024,0.032768,0.036512,3.84445,0.036896
+592,191.482,5.22241,3.54275,0.025184,0.417792,0.008128,0.00416,0.012288,0.03264,0.034944,2.97094,0.036672
+593,231.295,4.32349,3.50234,0.025504,0.395136,0.006272,0.006144,0.010272,0.032768,0.03632,2.95306,0.036864
+594,246.257,4.06079,4.36666,0.024,0.382912,0.007008,0.00416,0.01136,0.0336,0.036256,3.83229,0.035072
+595,200.725,4.98193,3.49594,0.026624,0.375904,0.007008,0.005504,0.010688,0.032832,0.035008,2.96518,0.037184
+596,232.529,4.30054,3.5272,0.02512,0.397312,0.007776,0.004512,0.01024,0.032768,0.036576,2.97603,0.036864
+597,225.687,4.43091,4.68771,0.026496,0.67776,0.006848,0.005536,0.011072,0.032736,0.036224,3.85475,0.036288
+598,190.158,5.25879,3.60941,0.025408,0.480672,0.006752,0.004096,0.014208,0.032416,0.035296,2.9655,0.045056
+599,205.788,4.85938,3.68928,0.02544,0.570368,0.007072,0.005504,0.01072,0.032992,0.034816,2.9655,0.036864
+600,240.927,4.15063,4.42886,0.024352,0.42416,0.007968,0.00432,0.01024,0.032768,0.036864,3.85229,0.035904
+601,193.82,5.15942,3.52669,0.02768,0.393696,0.006656,0.005856,0.010528,0.032512,0.035072,2.97728,0.037408
+602,187.109,5.34448,3.62109,0.025408,0.473056,0.006208,0.00576,0.01056,0.045056,0.036704,2.98205,0.036288
+603,289.082,3.45923,4.37978,0.023776,0.412448,0.007808,0.00448,0.012288,0.03232,0.035264,3.81466,0.036736
+604,198.594,5.0354,3.53213,0.02656,0.399424,0.008032,0.004256,0.011264,0.031776,0.036,2.97862,0.036192
+605,236.695,4.22485,3.54669,0.026624,0.393216,0.007776,0.004512,0.01168,0.032576,0.035616,2.99728,0.037408
+606,237.064,4.21826,4.37725,0.025344,0.374752,0.007744,0.004544,0.01024,0.032768,0.036576,3.84976,0.03552
+607,199.193,5.02026,3.5184,0.026624,0.366592,0.006144,0.005952,0.010432,0.032768,0.034816,2.99789,0.037184
+608,225.526,4.43408,3.58195,0.02624,0.40384,0.007712,0.022432,0.010624,0.03296,0.03632,3.00614,0.03568
+609,180.528,5.53931,4.75581,0.026976,0.755712,0.007936,0.005504,0.011168,0.034784,0.036512,3.84035,0.036864
+610,250.888,3.98584,3.54736,0.02672,0.389472,0.006528,0.005408,0.010624,0.032672,0.035232,3.00339,0.037312
+611,222.258,4.49927,3.67002,0.026656,0.507872,0.007808,0.005504,0.010816,0.032448,0.035584,3.00646,0.036864
+612,230.268,4.34277,4.71248,0.02656,0.697984,0.006592,0.004096,0.012288,0.032768,0.036704,3.86064,0.034848
+613,184.446,5.42163,3.54371,0.025248,0.405312,0.006336,0.006144,0.01024,0.034816,0.034848,2.9839,0.036864
+614,242.009,4.13208,3.54682,0.026464,0.391328,0.007648,0.00464,0.01024,0.032768,0.036704,3.00048,0.036544
+615,222.96,4.48511,4.46406,0.026624,0.401056,0.006496,0.006016,0.010368,0.032768,0.036384,3.90602,0.038336
+616,197.132,5.07275,3.57123,0.026336,0.403744,0.006144,0.005696,0.011872,0.032832,0.03536,3.01248,0.036768
+617,234.419,4.26587,3.55469,0.026624,0.385024,0.006144,0.006144,0.010272,0.032768,0.034784,3.0167,0.036224
+618,214.991,4.65137,4.72035,0.026752,0.691584,0.006656,0.004096,0.012288,0.036864,0.034944,3.87059,0.036576
+619,186.563,5.36011,3.5799,0.026624,0.411264,0.006528,0.006016,0.010368,0.032416,0.035168,3.01456,0.03696
+620,229.932,4.34912,3.59715,0.02544,0.421888,0.007616,0.004672,0.01024,0.0328,0.036352,3.02307,0.035072
+621,216.731,4.61401,4.60173,0.023872,0.555648,0.006208,0.006144,0.01024,0.0328,0.036736,3.89334,0.036736
+622,147.875,6.76245,3.69181,0.026624,0.507904,0.008096,0.004192,0.011296,0.031744,0.036832,3.02893,0.036192
+623,351.467,2.84521,3.83002,0.025536,0.3992,0.0064,0.006112,0.01024,0.03392,0.035424,3.27299,0.040192
+624,225.65,4.43164,4.42368,0.026624,0.386784,0.006432,0.005984,0.0104,0.03248,0.035104,3.88445,0.035424
+625,177.4,5.63696,3.57635,0.025248,0.397216,0.007744,0.004512,0.01168,0.032768,0.035424,3.02474,0.037024
+626,246.095,4.06348,3.5575,0.026624,0.384384,0.006784,0.004096,0.011584,0.032864,0.035424,3.01837,0.037376
+627,236.053,4.23633,3.58758,0.026336,0.395136,0.00656,0.005952,0.010432,0.032704,0.03488,3.03718,0.0384
+628,237.298,4.21411,3.54723,0.026624,0.364576,0.007872,0.004384,0.010336,0.032672,0.036864,3.02694,0.03696
+629,235.011,4.25513,3.58915,0.026624,0.401472,0.008,0.005504,0.01072,0.032448,0.035104,3.03238,0.036896
+630,221.717,4.51025,3.63427,0.026496,0.454784,0.007456,0.004832,0.01024,0.032768,0.036704,3.02301,0.037984
+631,229.622,4.35498,3.63181,0.02528,0.41984,0.006144,0.006144,0.010272,0.047008,0.046144,3.03315,0.037824
+632,234.271,4.26855,3.71712,0.026656,0.501728,0.007872,0.014656,0.011936,0.03248,0.035456,3.0487,0.037632
+633,233.51,4.28247,3.61472,0.026528,0.415232,0.006752,0.00576,0.011936,0.032544,0.03504,3.0439,0.037024
+634,222.73,4.48975,3.71354,0.026464,0.51264,0.00816,0.017792,0.01088,0.032768,0.034848,3.03059,0.039392
+635,225.613,4.43237,3.59232,0.025536,0.397312,0.006144,0.006144,0.01024,0.032768,0.035872,3.04022,0.03808
+636,226.611,4.41284,3.68845,0.026624,0.456704,0.017408,0.00512,0.02448,0.032704,0.03504,3.04077,0.0496
+637,224.857,4.44727,3.59632,0.02624,0.393632,0.007424,0.004864,0.01136,0.03168,0.034976,3.05043,0.035712
+638,241.154,4.14673,3.58086,0.027552,0.380832,0.00624,0.0056,0.010464,0.032992,0.036096,3.04419,0.036896
+639,226.386,4.41724,3.59603,0.026624,0.398816,0.006688,0.005856,0.010528,0.032768,0.034816,3.04256,0.037376
+640,231.373,4.32202,3.62288,0.02656,0.4216,0.006496,0.005344,0.01072,0.032256,0.035648,3.04848,0.035776
+641,236.094,4.2356,3.58227,0.026144,0.392064,0.007776,0.005536,0.0104,0.03264,0.035744,3.03491,0.037056
+642,226.236,4.42017,3.68019,0.026176,0.455392,0.007744,0.004544,0.010272,0.032768,0.036736,3.06595,0.040608
+643,235.416,4.2478,3.5903,0.026752,0.38096,0.00752,0.004768,0.01024,0.0328,0.036448,3.05395,0.036864
+644,233.617,4.28052,3.6232,0.026144,0.418272,0.0064,0.00544,0.010592,0.03312,0.036224,3.05011,0.036896
+645,224.882,4.44678,3.64957,0.026624,0.43008,0.007456,0.004832,0.011328,0.031712,0.034816,3.06582,0.036896
+646,218.279,4.5813,3.69078,0.025312,0.48112,0.006304,0.005536,0.010688,0.032928,0.036224,3.05581,0.036864
+647,233.138,4.28931,3.61475,0.026624,0.404832,0.006816,0.005696,0.010688,0.032608,0.035008,3.05501,0.037472
+648,235.809,4.24072,3.63661,0.026464,0.41584,0.006208,0.005632,0.01072,0.0328,0.036,3.06672,0.036224
+649,233.058,4.29077,3.62922,0.026368,0.393632,0.007712,0.004608,0.011616,0.03136,0.036416,3.06778,0.049728
+650,217.283,4.60229,4.01136,0.026656,0.4272,0.006944,0.004096,0.011296,0.032768,0.03552,3.43059,0.036288
+651,211.942,4.71826,4.51517,0.027744,0.4104,0.006272,0.006144,0.01024,0.032768,0.034848,3.95056,0.036192
+652,189.586,5.27466,3.67379,0.02608,0.426624,0.007616,0.004672,0.010272,0.032768,0.035808,3.0927,0.037248
+653,219.448,4.55688,4.0039,0.026336,0.411712,0.006432,0.006144,0.01024,0.0328,0.034784,3.43859,0.036864
+654,210.851,4.74268,4.28717,0.026464,0.645856,0.01792,0.004704,0.011968,0.034976,0.035008,3.47469,0.035584
+655,199.922,5.00195,3.64115,0.026624,0.403456,0.006144,0.006144,0.01168,0.031328,0.036352,3.0823,0.03712
+656,226.561,4.41382,4.06387,0.026176,0.455648,0.007488,0.0048,0.01024,0.032768,0.036064,3.45475,0.035936
+657,207.046,4.82983,3.84624,0.026464,0.617888,0.009024,0.005632,0.011808,0.03376,0.034816,3.06995,0.036896
+658,228.228,4.38159,3.61958,0.027424,0.378848,0.006144,0.005728,0.010624,0.032352,0.035296,3.08582,0.037344
+659,233.191,4.28833,3.99219,0.026272,0.361408,0.008032,0.004256,0.011328,0.032704,0.035264,3.47603,0.036896
+660,205.036,4.8772,4.21635,0.026656,0.5816,0.010112,0.004224,0.012288,0.034816,0.036224,3.47405,0.036384
+661,208.862,4.78784,3.60592,0.026624,0.36848,0.006304,0.006144,0.01024,0.032768,0.036128,3.08093,0.038304
+662,223.325,4.47778,4.03046,0.02608,0.391328,0.006528,0.005312,0.010624,0.032704,0.035328,3.4857,0.036864
+663,203.185,4.92163,4.37517,0.025568,0.684,0.03072,0.017792,0.019072,0.035904,0.035104,3.49171,0.035296
+664,207.183,4.82666,3.62291,0.026464,0.376992,0.007584,0.004704,0.01024,0.032768,0.036832,3.09046,0.036864
+665,228.075,4.38452,4.01622,0.026624,0.394304,0.007008,0.005504,0.010688,0.032352,0.03552,3.46835,0.035872
+666,192.816,5.18628,4.16454,0.025536,0.925184,0.006688,0.004064,0.012288,0.034688,0.034976,3.08426,0.036864
+667,234.862,4.25781,3.63398,0.025504,0.368608,0.007744,0.004544,0.011264,0.031744,0.03632,3.11082,0.03744
+668,229.712,4.35327,3.99085,0.02608,0.373472,0.008,0.004288,0.01024,0.032768,0.034848,3.46512,0.036032
+669,198.104,5.04785,4.11658,0.026272,0.866048,0.006912,0.005696,0.012096,0.033408,0.034816,3.09453,0.0368
+670,224.857,4.44727,3.65702,0.026336,0.393504,0.008,0.005376,0.01088,0.033088,0.036672,3.10634,0.036832
+671,230.631,4.33594,3.9929,0.026144,0.368288,0.006976,0.005248,0.01056,0.03248,0.035488,3.47072,0.036992
+672,202.582,4.93628,4.13763,0.025248,0.866304,0.00736,0.004832,0.012032,0.03456,0.035456,3.11498,0.036864
+673,203.417,4.91602,3.6639,0.026624,0.39936,0.006144,0.006144,0.01024,0.032768,0.035936,3.10979,0.036896
+674,229.404,4.35913,4.05011,0.026656,0.396864,0.00656,0.00528,0.010592,0.033088,0.03632,3.49872,0.036032
+675,195.261,5.12134,4.10269,0.026272,0.854944,0.006336,0.005952,0.012288,0.034144,0.03552,3.0904,0.036832
+676,206.504,4.84253,3.71686,0.026624,0.451744,0.007008,0.004096,0.01152,0.03328,0.035104,3.1105,0.036992
+677,250.888,3.98584,4.02941,0.02688,0.39104,0.007008,0.005536,0.010688,0.032288,0.0352,3.4839,0.036864
+678,179.712,5.56445,3.70758,0.026624,0.420352,0.006336,0.005504,0.010624,0.032288,0.03552,3.13357,0.036768
+679,270.792,3.69287,3.65162,0.026624,0.372736,0.007488,0.0048,0.01136,0.03168,0.036128,3.12307,0.037728
+680,227.935,4.38721,4.02435,0.026624,0.382976,0.007872,0.004416,0.010272,0.032768,0.036,3.4879,0.03552
+681,201.883,4.95337,3.9169,0.026624,0.65328,0.008224,0.006144,0.012256,0.034272,0.035392,3.10432,0.036384
+682,225.092,4.44263,3.66064,0.026496,0.388064,0.00752,0.004768,0.01024,0.032768,0.036,3.11795,0.036832
+683,217.179,4.60449,4.0919,0.04096,0.446304,0.006304,0.006144,0.01024,0.032768,0.034816,3.4775,0.036864
+684,193.226,5.17529,4.01056,0.027488,0.7168,0.007232,0.004832,0.011744,0.032544,0.03552,3.13782,0.036576
+685,225.613,4.43237,3.67363,0.026496,0.407424,0.0064,0.006112,0.010272,0.03248,0.035136,3.11213,0.037184
+686,228.24,4.38135,4.05459,0.026624,0.394976,0.006432,0.005376,0.010624,0.032384,0.035616,3.50614,0.036416
+687,184.604,5.41699,3.99754,0.034816,0.73136,0.006144,0.006144,0.011904,0.032864,0.035136,3.10243,0.036736
+688,227.139,4.40259,3.71926,0.025472,0.446464,0.007968,0.00432,0.010336,0.034144,0.035424,3.11814,0.036992
+689,221.681,4.51099,4.0464,0.026624,0.3992,0.006304,0.006144,0.01024,0.032576,0.035008,3.49328,0.037024
+690,192.735,5.18848,3.70893,0.02576,0.43504,0.00768,0.004608,0.01024,0.032768,0.036032,3.11994,0.036864
+691,221.645,4.51172,3.70195,0.026624,0.423968,0.007456,0.0048,0.01136,0.031648,0.036128,3.12189,0.03808
+692,228.801,4.37061,4.05066,0.026848,0.416064,0.007488,0.0048,0.01024,0.032768,0.036256,3.47997,0.036224
+693,181.528,5.50879,3.76013,0.026656,0.476928,0.006368,0.006144,0.010272,0.032736,0.034848,3.12915,0.037024
+694,254.536,3.92871,3.7151,0.026368,0.435552,0.00704,0.00416,0.011488,0.03296,0.035424,3.12525,0.036864
+695,221.705,4.5105,4.41363,0.025984,0.42032,0.006496,0.006016,0.010368,0.032704,0.03488,3.84,0.036864
+696,195.131,5.12476,3.67184,0.025312,0.407552,0.007936,0.004352,0.010336,0.033824,0.035712,3.10886,0.037952
+697,219.719,4.55127,3.72266,0.026656,0.43824,0.007232,0.005056,0.01024,0.0328,0.034848,3.1311,0.03648
+698,234.93,4.25659,4.03178,0.026656,0.3864,0.006784,0.004096,0.011584,0.0328,0.035488,3.49136,0.036608
+699,201.199,4.97021,3.66797,0.028448,0.403232,0.006592,0.005984,0.010432,0.032736,0.03648,3.10707,0.036992
+700,223.654,4.47119,3.69856,0.025952,0.434656,0.006336,0.005504,0.010688,0.03296,0.034816,3.11091,0.036736
+701,230.397,4.34033,4.68896,0.026624,0.377952,0.007008,0.005472,0.010688,0.032736,0.035168,3.90131,0.292
+702,188.339,5.30957,3.65555,0.026624,0.382496,0.006624,0.005184,0.010624,0.032832,0.035328,3.11824,0.0376
+703,232.926,4.29321,3.69008,0.026624,0.3912,0.007808,0.005536,0.010688,0.0328,0.035264,3.14298,0.037184
+704,229.301,4.36108,4.04688,0.026656,0.38912,0.007712,0.004544,0.01024,0.032768,0.036192,3.50275,0.036896
+705,204.055,4.90063,3.65773,0.028672,0.387072,0.007296,0.004992,0.010432,0.033824,0.035648,3.11293,0.036864
+706,236.326,4.23145,3.64566,0.025504,0.37888,0.007616,0.004672,0.01024,0.032768,0.036608,3.1128,0.036576
+707,224.18,4.46069,4.04864,0.026784,0.389728,0.007552,0.004704,0.011552,0.032896,0.034976,3.50387,0.036576
+708,203.984,4.90234,3.67005,0.028416,0.381824,0.007904,0.004384,0.01024,0.033888,0.035584,3.1289,0.038912
+709,233.803,4.2771,3.6639,0.026656,0.376832,0.007872,0.005536,0.010624,0.032384,0.035328,3.13114,0.037536
+710,231.073,4.32764,4.0448,0.026624,0.386592,0.006624,0.005216,0.010688,0.033216,0.03648,3.50253,0.036832
+711,198.104,5.04785,3.90339,0.026624,0.620544,0.009824,0.004512,0.012288,0.035936,0.035744,3.12099,0.036928
+712,233.204,4.28809,3.6393,0.026336,0.366016,0.007008,0.004096,0.011424,0.033248,0.035232,3.11907,0.036864
+713,229.249,4.36206,4.04102,0.026784,0.374944,0.007424,0.004864,0.011296,0.033472,0.034816,3.51059,0.036832
+714,205.128,4.875,3.65702,0.026176,0.39296,0.006848,0.004096,0.011552,0.032928,0.035392,3.11091,0.03616
+715,232.147,4.30762,3.66448,0.026592,0.377472,0.006144,0.006144,0.01024,0.032832,0.03632,3.13187,0.036864
+716,230.943,4.33008,4.01613,0.026656,0.380896,0.006144,0.005792,0.010592,0.032672,0.034912,3.48282,0.035648
+717,157.278,6.35815,4.57523,0.026624,0.43616,0.006208,0.006144,0.01024,0.032768,0.036064,3.98621,0.034816
+718,256.224,3.90283,3.67856,0.0264,0.42064,0.006336,0.005504,0.010496,0.03264,0.035328,3.10381,0.037408
+719,224.931,4.4458,4.08986,0.026208,0.438688,0.007904,0.005536,0.010656,0.03232,0.03552,3.49728,0.035744
+720,175.711,5.69116,4.11117,0.027488,0.463872,0.007008,0.005344,0.01088,0.032672,0.0352,3.49354,0.035168
+721,229.455,4.35815,4.50925,0.026752,0.389408,0.008064,0.005504,0.010624,0.033152,0.034848,3.9649,0.036
+722,183.57,5.44751,4.79453,0.026272,0.682432,0.00624,0.00544,0.010912,0.034304,0.035488,3.95862,0.034816
+723,169.944,5.88428,3.65299,0.026624,0.384224,0.006944,0.005568,0.010688,0.032736,0.034976,3.11424,0.036992
+724,274.568,3.64209,3.65328,0.026624,0.39936,0.00784,0.004448,0.011584,0.032832,0.035456,3.09862,0.036512
+725,226.887,4.40747,4.52608,0.024288,0.395552,0.007296,0.004992,0.01024,0.032768,0.036832,3.97846,0.035648
+726,194.132,5.15112,3.692,0.026624,0.396384,0.007072,0.004096,0.01152,0.032512,0.035648,3.14144,0.036704
+727,224.34,4.45752,3.65171,0.02608,0.385792,0.007616,0.004672,0.01152,0.032864,0.035456,3.11094,0.036768
+728,229.057,4.36572,4.50192,0.022944,0.40128,0.006272,0.005568,0.010816,0.032768,0.03648,3.94893,0.036864
+729,190.867,5.23926,3.63562,0.026176,0.387264,0.006816,0.005664,0.010656,0.032384,0.03504,3.09475,0.036864
+730,218.523,4.57617,3.68256,0.026336,0.432704,0.0072,0.0048,0.010496,0.032768,0.036864,3.09462,0.036768
+731,232.358,4.30371,4.51997,0.024384,0.409792,0.007744,0.004544,0.01168,0.032768,0.035424,3.95779,0.03584
+732,191.886,5.21143,3.67168,0.026656,0.413664,0.00736,0.0048,0.0104,0.03264,0.036128,3.10259,0.03744
+733,224.87,4.44702,3.70013,0.026528,0.438368,0.006144,0.006144,0.011712,0.032896,0.035008,3.10685,0.03648
+734,222.754,4.48926,3.6823,0.026176,0.423872,0.006656,0.005408,0.010592,0.033152,0.036224,3.10336,0.036864
+735,227.796,4.38989,4.05709,0.026624,0.404896,0.006752,0.00576,0.010656,0.034016,0.0352,3.49632,0.036864
+736,199.261,5.01855,4.15094,0.026624,0.8704,0.007712,0.004576,0.012288,0.032832,0.036704,3.12307,0.036736
+737,210.548,4.74951,3.69558,0.025536,0.44032,0.007712,0.004576,0.011616,0.032576,0.035456,3.1009,0.036896
+738,230.306,4.34204,4.02432,0.026624,0.400736,0.006816,0.004096,0.012288,0.032768,0.036352,3.46931,0.035328
+739,187.391,5.33643,4.01312,0.028448,0.759328,0.006496,0.005504,0.011232,0.032768,0.034848,3.09654,0.037952
+740,214.912,4.65308,3.75808,0.026624,0.473088,0.00736,0.004832,0.010336,0.0328,0.036384,3.12979,0.036864
+741,230.319,4.3418,4.06429,0.026656,0.423872,0.006176,0.006144,0.01024,0.032768,0.035872,3.48627,0.036288
+742,191.733,5.21558,3.9424,0.036864,0.689504,0.006848,0.004064,0.011392,0.03168,0.03664,3.088,0.037408
+743,220.725,4.53052,3.75437,0.026112,0.49216,0.0064,0.006016,0.010368,0.032768,0.036032,3.10746,0.037056
+744,228.012,4.38574,4.72806,0.026624,0.423296,0.006784,0.004096,0.011648,0.033408,0.034816,3.89123,0.29616
+745,174.826,5.71997,3.7079,0.0256,0.456704,0.008032,0.005504,0.010624,0.032512,0.035392,3.09565,0.037888
+746,229.019,4.36646,3.68643,0.026624,0.42992,0.006304,0.005536,0.010624,0.032992,0.036544,3.10099,0.036896
+747,230.048,4.34692,4.20819,0.026176,0.557952,0.007456,0.004832,0.012288,0.034816,0.03824,3.48762,0.038816
+748,197.379,5.06641,3.67594,0.026176,0.424256,0.006784,0.004096,0.011648,0.032672,0.035552,3.09658,0.038176
+749,221.777,4.50903,3.71389,0.025408,0.460896,0.007968,0.005504,0.010688,0.032384,0.03552,3.09869,0.036832
+750,215.239,4.646,4.80259,0.02624,0.69264,0.007264,0.004832,0.01248,0.032768,0.036544,3.95501,0.034816
+751,189.542,5.27588,3.6737,0.026336,0.420128,0.007712,0.004576,0.012288,0.0328,0.03648,3.09619,0.037184
+752,228.597,4.37451,3.64726,0.026432,0.415936,0.007808,0.00448,0.01024,0.033952,0.03568,3.0761,0.03664
+753,208.618,4.79346,4.41837,0.026496,0.392128,0.007776,0.004512,0.011616,0.032992,0.035136,3.8688,0.038912
+754,208.236,4.80225,3.64515,0.026624,0.397312,0.007968,0.00432,0.010336,0.032704,0.036864,3.09245,0.036576
+755,222.802,4.48828,3.6631,0.02592,0.41024,0.006208,0.006144,0.01024,0.032768,0.034816,3.09869,0.03808
+756,225.725,4.43018,4.52202,0.022624,0.412704,0.007008,0.00416,0.011392,0.033056,0.035424,3.95994,0.035712
+757,186.487,5.3623,3.65171,0.026464,0.403392,0.006464,0.006048,0.010336,0.032768,0.034816,3.09453,0.036896
+758,226.173,4.42139,3.63043,0.024864,0.415104,0.00672,0.00416,0.011328,0.0328,0.035488,3.06362,0.036352
+759,231.779,4.31445,4.4984,0.025568,0.405216,0.006432,0.00608,0.010336,0.032736,0.036352,3.94,0.03568
+760,186.93,5.34961,3.65197,0.025504,0.415552,0.006304,0.005568,0.010624,0.032896,0.036128,3.08214,0.037248
+761,229.237,4.3623,3.90541,0.026368,0.408128,0.006144,0.006144,0.01024,0.033824,0.035488,3.33856,0.040512
+762,221.119,4.52246,4.4713,0.025152,0.409216,0.006432,0.005216,0.010688,0.033088,0.036704,3.90995,0.034848
+763,186.216,5.37012,3.65562,0.026624,0.428032,0.006144,0.006144,0.01024,0.0328,0.034784,3.07338,0.037472
+764,241.282,4.14453,3.88938,0.026592,0.399168,0.006592,0.00528,0.01104,0.032576,0.035072,3.33418,0.03888
+765,209.236,4.7793,4.54205,0.026624,0.442368,0.007968,0.005504,0.010624,0.033152,0.034912,3.94448,0.036416
+766,187.666,5.32861,3.75818,0.025792,0.4904,0.018112,0.004416,0.024576,0.043008,0.035968,3.07904,0.036864
+767,231.021,4.32861,4.02243,0.026112,0.403904,0.006368,0.006144,0.011392,0.031616,0.036224,3.46381,0.036864
+768,213.779,4.67773,4.4544,0.026624,0.39856,0.006944,0.004096,0.011488,0.03296,0.035424,3.90144,0.036864
+769,192.445,5.19629,3.63914,0.025952,0.40208,0.006144,0.005824,0.010592,0.032608,0.035072,3.08378,0.037088
+770,227.404,4.39746,3.98224,0.025504,0.394944,0.006464,0.005408,0.010688,0.032704,0.035168,3.43619,0.035168
+771,210.397,4.75293,4.46454,0.026624,0.403456,0.008192,0.005536,0.010752,0.032416,0.035168,3.90486,0.037536
+772,194.584,5.13916,3.60986,0.026624,0.404576,0.00704,0.004128,0.012128,0.032736,0.035008,3.05053,0.037088
+773,220.002,4.54541,4.01718,0.0264,0.41392,0.007328,0.00496,0.0104,0.033856,0.035616,3.44845,0.036256
+774,198.238,5.04443,4.0919,0.026624,0.8704,0.0072,0.0048,0.012,0.033344,0.036864,3.0656,0.035072
+775,228.037,4.38525,3.60858,0.026624,0.393216,0.00736,0.004928,0.011328,0.03168,0.0368,3.0593,0.037344
+776,233.55,4.28174,3.99754,0.026208,0.396832,0.007008,0.004128,0.01136,0.032672,0.03584,3.44678,0.036704
+777,205.19,4.87354,4.48515,0.026432,0.427232,0.007136,0.005568,0.010656,0.032896,0.034848,3.90144,0.038944
+778,197.493,5.06348,3.59635,0.026656,0.38608,0.00704,0.00416,0.011904,0.033056,0.036224,3.0543,0.036928
+779,230.995,4.3291,3.9833,0.02608,0.385824,0.006176,0.006144,0.011424,0.033312,0.035136,3.44221,0.036992
+780,193.701,5.1626,4.09805,0.026304,0.87664,0.006368,0.005536,0.012608,0.034464,0.035456,3.06518,0.035488
+781,227.454,4.39648,3.62086,0.026624,0.40112,0.006432,0.00608,0.010304,0.032768,0.03616,3.06451,0.036864
+782,234.674,4.26123,3.96682,0.026624,0.385024,0.007776,0.004512,0.01024,0.033984,0.035136,3.42682,0.036704
+783,191.832,5.21289,3.89939,0.026624,0.669696,0.01024,0.005568,0.01184,0.034976,0.03552,3.06806,0.036864
+784,236.19,4.23389,3.60442,0.026624,0.407552,0.007264,0.004832,0.010432,0.033888,0.035744,3.04115,0.036928
+785,233.125,4.28955,3.97642,0.026624,0.391104,0.006208,0.006144,0.011488,0.033568,0.034816,3.42954,0.036928
+786,200.176,4.99561,4.05978,0.025344,0.873472,0.006944,0.004288,0.012288,0.034816,0.036128,3.03078,0.035712
+787,224.734,4.44971,3.57526,0.026496,0.376992,0.00624,0.006144,0.01024,0.032768,0.036096,3.04208,0.038208
+788,236.654,4.22559,3.9567,0.026624,0.378112,0.006912,0.004096,0.011456,0.031552,0.036864,3.42426,0.036832
+789,211.745,4.72266,4.3592,0.02608,0.69392,0.049792,0.005536,0.011136,0.036352,0.035296,3.46317,0.03792
+790,193.848,5.15869,3.62973,0.02544,0.445824,0.006784,0.004096,0.011648,0.033152,0.035072,3.03104,0.036672
+791,239.308,4.17871,3.95766,0.025472,0.382976,0.007712,0.004576,0.011584,0.033216,0.035072,3.42141,0.035648
+792,201.199,4.97021,4.07395,0.026624,0.874848,0.006304,0.005376,0.010976,0.034816,0.036672,3.04147,0.036864
+793,228.955,4.36768,3.5737,0.026144,0.377632,0.007808,0.00448,0.011584,0.032864,0.035456,3.04035,0.037376
+794,231.099,4.32715,3.95478,0.02672,0.387072,0.00816,0.004128,0.011392,0.0328,0.03568,3.41197,0.036864
+795,216.034,4.62891,4.42576,0.0264,0.385312,0.0072,0.005056,0.010272,0.032736,0.036,3.88592,0.036864
+796,196.828,5.08057,3.59069,0.02544,0.393184,0.006176,0.005664,0.010688,0.032704,0.035968,3.04422,0.03664
+797,225.104,4.44238,3.98051,0.02576,0.391776,0.0064,0.006112,0.010272,0.0328,0.03616,3.43462,0.036608
+798,214.092,4.6709,4.13296,0.02672,0.546816,0.009568,0.004768,0.01232,0.036,0.035424,3.42627,0.035072
+799,212.404,4.70801,3.55331,0.026624,0.37888,0.006144,0.006144,0.01024,0.032768,0.036352,3.01926,0.036896
+800,237.284,4.21436,3.96867,0.026144,0.391904,0.007616,0.004672,0.01024,0.032768,0.034816,3.42426,0.036256
+801,202.913,4.92822,4.29914,0.02608,0.658176,0.036864,0.028672,0.012288,0.034816,0.035968,3.43066,0.035616
+802,209.879,4.76465,3.54291,0.026624,0.374784,0.006144,0.005792,0.010592,0.032768,0.036256,3.0127,0.037248
+803,233.737,4.27832,3.95878,0.0264,0.401632,0.007776,0.004608,0.011584,0.032576,0.035104,3.40224,0.036864
+804,196.507,5.08887,4.05478,0.026368,0.876032,0.00688,0.004128,0.012288,0.034816,0.036384,3.02128,0.036608
+805,225.774,4.4292,3.57581,0.026624,0.391008,0.006304,0.006144,0.01024,0.032768,0.036416,3.02918,0.03712
+806,234.701,4.26074,3.95779,0.026592,0.393248,0.008064,0.004224,0.01024,0.033952,0.03568,3.40947,0.03632
+807,209.386,4.77588,4.45763,0.026624,0.41984,0.006144,0.006144,0.01024,0.0328,0.036416,3.88342,0.036
+808,200.215,4.99463,3.56525,0.026624,0.38912,0.007296,0.004832,0.0104,0.032896,0.036768,3.02006,0.037248
+809,235.078,4.25391,3.93654,0.026368,0.40144,0.006624,0.00592,0.010464,0.032768,0.034816,3.38125,0.036896
+810,221.957,4.50537,4.15981,0.026272,0.578176,0.009568,0.004768,0.012064,0.034784,0.036192,3.42269,0.035296
+811,201.337,4.9668,3.57171,0.026624,0.386656,0.00656,0.005952,0.010432,0.032768,0.036896,3.02896,0.036864
+812,237.422,4.21191,3.90979,0.025216,0.372736,0.007584,0.004704,0.01024,0.032864,0.0368,3.3833,0.036352
+813,217.849,4.59033,4.43181,0.026624,0.396416,0.00704,0.005536,0.010848,0.0328,0.036,3.87974,0.0368
+814,192.862,5.18506,3.56147,0.026208,0.393664,0.007936,0.00432,0.010368,0.03264,0.036576,3.0129,0.036864
+815,233.178,4.28857,3.95459,0.025504,0.396608,0.006848,0.005664,0.010624,0.032768,0.034944,3.40483,0.0368
+816,205.21,4.87305,4.3561,0.026624,0.755712,0.034816,0.005472,0.012,0.0352,0.03552,3.41594,0.034816
+817,189.647,5.27295,3.62259,0.026624,0.452608,0.006144,0.006048,0.010336,0.032512,0.035072,3.01466,0.038592
+818,241.852,4.13477,3.93581,0.026432,0.389216,0.00624,0.005568,0.010848,0.032736,0.0368,3.39146,0.036512
+819,200.293,4.99268,4.07258,0.026656,0.892896,0.0072,0.005088,0.012288,0.034816,0.035936,3.02141,0.036288
+820,232.437,4.30225,3.54918,0.026656,0.403424,0.007552,0.004736,0.01024,0.032768,0.036352,2.99059,0.036864
+821,220.618,4.53271,3.99174,0.026528,0.438528,0.00816,0.005504,0.01072,0.03248,0.035296,3.39763,0.036896
+822,209.108,4.78223,4.08909,0.026208,0.524064,0.008832,0.004096,0.012288,0.034816,0.036544,3.40582,0.036416
+823,213.356,4.68701,3.57776,0.026656,0.399264,0.006336,0.006144,0.01024,0.032768,0.036864,3.0207,0.038784
+824,210.181,4.75781,4.11587,0.035872,0.572384,0.007776,0.004512,0.010272,0.033888,0.035712,3.3792,0.036256
+825,215.262,4.64551,4.29094,0.02656,0.665376,0.008864,0.004096,0.055296,0.044064,0.035808,3.41402,0.036864
+826,204.452,4.89111,3.54099,0.026464,0.389312,0.007456,0.0048,0.01024,0.034016,0.035616,2.99578,0.037312
+827,223.434,4.47559,4.00186,0.026336,0.459104,0.007552,0.004736,0.011456,0.031552,0.036192,3.38806,0.036864
+828,213.556,4.68262,3.54861,0.024992,0.411648,0.006208,0.00576,0.010592,0.032736,0.036128,2.9841,0.036448
+829,235.755,4.2417,3.58986,0.026144,0.406528,0.007904,0.005504,0.010464,0.0328,0.035072,3.02733,0.038112
+830,235.619,4.24414,3.93629,0.0264,0.399584,0.007744,0.004544,0.011456,0.032896,0.035424,3.38304,0.0352
+831,203.558,4.9126,4.24435,0.025504,0.626656,0.047008,0.012096,0.011968,0.035168,0.035072,3.41536,0.03552
+832,209.772,4.76709,3.5576,0.026464,0.40384,0.006144,0.005792,0.010592,0.032768,0.03616,3,0.03584
+833,233.63,4.28027,3.92557,0.026272,0.395616,0.007296,0.004992,0.012288,0.032704,0.03488,3.3745,0.037024
+834,199.98,5.00049,3.77302,0.025216,0.63216,0.008832,0.004096,0.012288,0.034816,0.036832,2.98352,0.035264
+835,227.885,4.38818,3.57443,0.026816,0.416192,0.007552,0.004736,0.011456,0.032672,0.035552,3.00256,0.036896
+836,237.946,4.20264,3.9281,0.02608,0.39376,0.007328,0.0048,0.0104,0.032576,0.03632,3.37997,0.036864
+837,212.669,4.70215,4.39869,0.02656,0.409856,0.007168,0.005088,0.011264,0.031744,0.035968,3.83581,0.035232
+838,196.3,5.09424,3.54349,0.025024,0.396352,0.007104,0.004096,0.011424,0.031584,0.036448,2.99408,0.037376
+839,231.727,4.31543,3.94077,0.026208,0.395776,0.006432,0.00608,0.011456,0.032672,0.035136,3.39011,0.036896
+840,212.735,4.70068,4.18806,0.025408,0.63488,0.00976,0.004576,0.012288,0.034848,0.03648,3.3937,0.036128
+841,205.643,4.86279,4.35971,0.024448,0.381056,0.006144,0.006144,0.01024,0.033824,0.035488,3.82525,0.03712
+842,198.315,5.04248,3.9215,0.02496,0.393152,0.006144,0.005792,0.010592,0.0328,0.036224,3.37536,0.03648
+843,190.105,5.26025,3.86064,0.026048,0.727168,0.006592,0.00576,0.011808,0.032992,0.035456,2.97779,0.037024
+844,241.595,4.13916,3.49798,0.026624,0.385024,0.006144,0.005792,0.010592,0.032768,0.036512,2.9577,0.036832
+845,236.49,4.22852,3.88563,0.025312,0.38656,0.006656,0.00592,0.010464,0.032544,0.036064,3.34512,0.036992
+846,207.561,4.81787,3.84339,0.028832,0.689856,0.006592,0.004096,0.012288,0.033856,0.035808,2.99565,0.036416
+847,241.026,4.14893,3.48886,0.026624,0.36864,0.007616,0.004704,0.011456,0.032544,0.035232,2.96406,0.037984
+848,235.809,4.24072,3.91347,0.026656,0.409024,0.006688,0.00512,0.010656,0.033408,0.036672,3.34864,0.036608
+849,190.654,5.24512,3.89936,0.026624,0.768832,0.010016,0.005536,0.011072,0.036448,0.0352,2.96934,0.036288
+850,225.974,4.42529,3.52019,0.026304,0.385376,0.007232,0.004832,0.010432,0.0328,0.036832,2.97942,0.03696
+851,229.16,4.36377,3.91581,0.026624,0.391168,0.006144,0.006144,0.01024,0.0328,0.035968,3.36982,0.036896
+852,217.78,4.5918,4.10813,0.026624,0.575488,0.01808,0.004448,0.012288,0.034816,0.034816,3.36486,0.036704
+853,215.511,4.64014,3.52096,0.027072,0.370688,0.00752,0.004768,0.011424,0.032768,0.03552,2.99411,0.037088
+854,238.667,4.18994,3.8769,0.026144,0.378656,0.006848,0.004096,0.011584,0.031424,0.036864,3.34438,0.036896
+855,216.903,4.61035,4.37254,0.025536,0.39936,0.008,0.005504,0.010688,0.033024,0.034944,3.81949,0.036
+856,201.476,4.96338,3.49571,0.026304,0.388096,0.007808,0.004448,0.010272,0.033824,0.035648,2.95264,0.036672
+857,236.217,4.2334,3.90198,0.025248,0.394688,0.006592,0.00576,0.010624,0.032512,0.035072,3.35466,0.036832
+858,215.534,4.63965,4.36301,0.025312,0.402912,0.006688,0.005152,0.011232,0.032672,0.035968,3.80765,0.035424
+859,197.645,5.05957,3.55894,0.026272,0.401984,0.006304,0.005984,0.01024,0.032768,0.03648,3.00186,0.037056
+860,234.862,4.25781,3.90909,0.0264,0.402016,0.0072,0.004832,0.010496,0.032768,0.036288,3.35293,0.03616
+861,211.069,4.73779,4.40531,0.026464,0.448928,0.00672,0.005792,0.010624,0.032672,0.035968,3.80173,0.036416
+862,202.732,4.93262,3.50592,0.026528,0.397792,0.006144,0.005696,0.010688,0.032768,0.036704,2.95133,0.038272
+863,237.422,4.21191,3.91184,0.026368,0.401792,0.008096,0.005536,0.010752,0.032192,0.035584,3.35462,0.036896
+864,221.525,4.51416,4.4079,0.025536,0.42096,0.007008,0.00416,0.011296,0.031744,0.036576,3.83411,0.036512
+865,191.384,5.2251,4.41171,0.02624,0.421696,0.007008,0.005504,0.010688,0.032992,0.034816,3.83709,0.03568
+866,195.663,5.11084,3.90432,0.02544,0.407552,0.006144,0.005792,0.010592,0.032512,0.036576,3.34288,0.036832
+867,203.7,4.90918,4.00099,0.026624,0.880576,0.006208,0.006144,0.012032,0.034848,0.035072,2.96138,0.038112
+868,237.808,4.20508,3.52774,0.026656,0.393184,0.007744,0.004544,0.01024,0.032768,0.036128,2.97958,0.036896
+869,225.005,4.44434,3.9137,0.026848,0.432672,0.007488,0.0048,0.011424,0.031584,0.036832,3.32518,0.036864
+870,208.13,4.80469,4.13725,0.026432,0.602464,0.024704,0.004096,0.012288,0.036032,0.035648,3.36077,0.034816
+871,214.45,4.66309,3.50938,0.026624,0.409408,0.006336,0.006144,0.01024,0.0328,0.036224,2.94358,0.038016
+872,234.862,4.25781,3.90605,0.026336,0.394112,0.007712,0.004576,0.01024,0.0328,0.036832,3.35667,0.036768
+873,213.801,4.67725,4.37251,0.026464,0.388832,0.006592,0.005984,0.0104,0.032768,0.035904,3.8303,0.035264
+874,199.669,5.0083,3.50928,0.026656,0.411616,0.007744,0.004544,0.01024,0.03296,0.036672,2.94205,0.0368
+875,218.058,4.58594,3.9711,0.026624,0.47696,0.006368,0.006144,0.01024,0.032512,0.034848,3.34045,0.03696
+876,226.098,4.42285,4.38211,0.026272,0.418336,0.006144,0.005664,0.01072,0.0328,0.03664,3.80947,0.036064
+877,196.375,5.09229,3.4895,0.026624,0.388608,0.00704,0.005504,0.010752,0.032864,0.034848,2.94611,0.037152
+878,246.302,4.06006,3.84816,0.026656,0.371808,0.007008,0.004128,0.011328,0.032928,0.035424,3.32205,0.036832
+879,214.968,4.65186,4.14314,0.026624,0.62464,0.032736,0.005536,0.012736,0.035008,0.03616,3.3328,0.036896
+880,201.555,4.96143,3.58662,0.026304,0.471136,0.006912,0.004096,0.011456,0.032736,0.03568,2.96134,0.03696
+881,213.89,4.67529,4.06944,0.02624,0.577984,0.006144,0.015904,0.01072,0.038912,0.034816,3.32186,0.036864
+882,200.942,4.97656,3.97213,0.026624,0.876032,0.006688,0.004064,0.012288,0.034816,0.036864,2.93827,0.03648
+883,235.402,4.24805,3.48163,0.026656,0.39056,0.00672,0.006144,0.01024,0.0328,0.036832,2.93472,0.03696
+884,236.162,4.23438,3.91725,0.026656,0.432096,0.007936,0.004352,0.011648,0.032544,0.03568,3.32957,0.036768
+885,197.189,5.07129,4.46259,0.028704,0.49296,0.00672,0.005856,0.010528,0.033824,0.035648,3.81261,0.035744
+886,211.243,4.73389,3.50128,0.026624,0.413696,0.007968,0.00432,0.0104,0.032672,0.0368,2.93184,0.03696
+887,237.532,4.20996,3.91171,0.02672,0.421696,0.006816,0.005728,0.010624,0.0328,0.034816,3.33546,0.037056
+888,195.364,5.11865,3.97725,0.026624,0.88864,0.006336,0.005376,0.011008,0.034848,0.036832,2.93181,0.035776
+889,231.203,4.3252,4.30557,0.023168,0.37888,0.007168,0.00512,0.011808,0.033216,0.034848,3.77446,0.036896
+890,198.392,5.04053,3.91421,0.025632,0.434016,0.006272,0.005568,0.010816,0.032768,0.053248,3.30957,0.03632
+891,199.455,5.01367,3.80125,0.043648,0.675904,0.006304,0.006144,0.01024,0.032768,0.036704,2.95312,0.036416
+892,229.777,4.35205,3.48592,0.026368,0.393664,0.006144,0.00576,0.010624,0.032768,0.036192,2.9375,0.036896
+893,239.085,4.18262,3.86365,0.026656,0.390336,0.006944,0.005664,0.010688,0.0328,0.034816,3.31901,0.036736
+894,181.738,5.50244,4.22742,0.026176,1.13539,0.007584,0.004704,0.01952,0.0368,0.03584,2.92573,0.03568
+895,210.353,4.75391,3.75018,0.025536,0.633856,0.007168,0.014112,0.011456,0.033792,0.04304,2.94294,0.038272
+896,251.196,3.98096,3.87686,0.026624,0.405536,0.007584,0.004672,0.01024,0.032768,0.036416,3.31616,0.036864
+897,198.047,5.04932,3.80362,0.028704,0.709216,0.007488,0.0048,0.01232,0.032768,0.034944,2.93654,0.036832
+898,243.578,4.10547,3.51197,0.026624,0.39936,0.007872,0.004416,0.01024,0.032768,0.036864,2.95654,0.03728
+899,222.657,4.49121,3.93706,0.027008,0.426432,0.021568,0.005056,0.010368,0.040832,0.048704,3.32016,0.036928
+900,202.752,4.93213,3.9977,0.025984,0.924576,0.007808,0.00448,0.012256,0.034656,0.035008,2.91635,0.036576
+901,238.084,4.2002,3.47709,0.026624,0.37888,0.007872,0.004416,0.011552,0.033088,0.035232,2.94061,0.038816
+902,207.898,4.81006,4.02691,0.026272,0.562048,0.007168,0.013312,0.011904,0.032352,0.035648,3.30256,0.035648
+903,223.948,4.46533,3.75011,0.02608,0.669856,0.00896,0.005952,0.011904,0.034592,0.035552,2.92048,0.036736
+904,234.997,4.25537,3.49309,0.026624,0.39936,0.007296,0.004832,0.0104,0.034304,0.03536,2.93782,0.037088
+905,235.945,4.23828,3.86253,0.026624,0.371872,0.007008,0.006112,0.010272,0.032768,0.049152,3.32186,0.036864
+906,213.445,4.68506,4.3313,0.026048,0.418656,0.008,0.004288,0.01024,0.034816,0.034816,3.75808,0.036352
+907,198.777,5.03076,3.49251,0.027488,0.405504,0.00768,0.004608,0.011648,0.032704,0.035488,2.93002,0.037376
+908,243.057,4.11426,3.87482,0.02656,0.405504,0.006208,0.0056,0.010688,0.032544,0.035232,3.31562,0.036864
+909,206.639,4.83936,4.34387,0.025856,0.439104,0.006144,0.006144,0.01024,0.03408,0.035264,3.7521,0.034944
+910,200.078,4.99805,3.46726,0.026464,0.383136,0.006144,0.005824,0.010592,0.032768,0.036832,2.92864,0.036864
+911,238.89,4.18604,3.85434,0.026624,0.38912,0.006144,0.006144,0.01024,0.03392,0.035648,3.30963,0.036864
+912,221.453,4.51562,4.36064,0.026464,0.41984,0.006752,0.004096,0.011616,0.032768,0.035584,3.78861,0.034912
+913,195.308,5.12012,4.35462,0.02448,0.389024,0.006912,0.005696,0.010656,0.0328,0.036128,3.81206,0.036864
+914,197.932,5.05225,3.87686,0.026592,0.415776,0.008,0.004288,0.01184,0.032768,0.035264,3.30566,0.036672
+915,200.843,4.979,3.95254,0.02512,0.862208,0.00752,0.004768,0.012288,0.034816,0.034848,2.93414,0.036832
+916,229.906,4.34961,3.48976,0.026432,0.405952,0.007872,0.004416,0.010304,0.034432,0.036256,2.92682,0.03728
+917,238.806,4.1875,3.85789,0.026624,0.391168,0.008032,0.005504,0.011072,0.032736,0.034816,3.31146,0.03648
+918,214.765,4.65625,4.07472,0.026624,0.585728,0.009344,0.004832,0.012064,0.03488,0.035136,3.33008,0.036032
+919,193.335,5.17236,3.65747,0.026752,0.55456,0.006592,0.00592,0.010464,0.032768,0.040864,2.94218,0.037376
+920,259.438,3.85449,3.87046,0.0264,0.394528,0.007072,0.004128,0.01136,0.033536,0.03616,3.32067,0.036608
+921,215.42,4.64209,4.37453,0.0264,0.4192,0.007008,0.005568,0.010752,0.032576,0.035072,3.80115,0.0368
+922,201.001,4.9751,3.4952,0.026656,0.401376,0.007808,0.00448,0.01024,0.033824,0.035808,2.93805,0.03696
+923,226.699,4.41113,3.88426,0.027808,0.392032,0.007424,0.004864,0.011264,0.033568,0.03504,3.33539,0.036864
+924,222.512,4.49414,4.39091,0.026624,0.415456,0.006432,0.005376,0.010656,0.032992,0.035072,3.82349,0.034816
+925,187.976,5.31982,3.55226,0.03584,0.458176,0.00672,0.005792,0.010592,0.032768,0.034816,2.93037,0.037184
+926,226.624,4.4126,3.87203,0.02656,0.4072,0.00656,0.005248,0.011168,0.032736,0.036256,3.30973,0.036576
+927,200.391,4.99023,3.97914,0.026368,0.881632,0.00736,0.004928,0.012288,0.034336,0.035136,2.94061,0.03648
+928,238.611,4.19092,3.47802,0.026304,0.403648,0.006784,0.004096,0.011488,0.033024,0.03536,2.91994,0.037376
+929,239.616,4.17334,3.85024,0.026656,0.38656,0.006624,0.005888,0.010496,0.0328,0.035808,3.30854,0.036864
+930,213.2,4.69043,4.34483,0.025632,0.418912,0.006432,0.004064,0.010144,0.032736,0.035328,3.76038,0.0512
+931,190.388,5.25244,3.51168,0.026496,0.413856,0.006496,0.00608,0.010304,0.033952,0.035616,2.94099,0.037888
+932,243.433,4.10791,3.85802,0.026656,0.382944,0.007264,0.0048,0.010464,0.032768,0.036096,3.32058,0.036448
+933,208.681,4.79199,4.24499,0.03488,0.69216,0.01024,0.015968,0.044896,0.034912,0.035296,3.34006,0.036576
+934,208.533,4.79541,3.50845,0.026144,0.396,0.007744,0.004544,0.01024,0.034208,0.035424,2.95731,0.036832
+935,236.19,4.23389,3.86541,0.025536,0.398688,0.006816,0.005728,0.010656,0.032768,0.035872,3.31194,0.037408
+936,190.229,5.25684,4.60595,0.025344,0.660608,0.007008,0.004128,0.011424,0.032832,0.035616,3.7929,0.036096
+937,217.571,4.59619,4.37731,0.025408,0.388384,0.006752,0.005568,0.023104,0.032768,0.043008,3.81542,0.036896
+938,199.98,5.00049,3.8416,0.026368,0.379264,0.006144,0.005824,0.01056,0.032768,0.036128,3.30784,0.036704
+939,186.03,5.37549,3.54781,0.02848,0.432992,0.007936,0.005536,0.01072,0.033152,0.036736,2.95446,0.037792
+940,243.317,4.10986,3.47184,0.026144,0.385568,0.00656,0.004096,0.010368,0.033728,0.035776,2.93274,0.036864
+941,237.642,4.20801,3.84954,0.026304,0.373408,0.007744,0.004512,0.011712,0.032864,0.035232,3.3209,0.036864
+942,191.653,5.21777,3.52461,0.028672,0.416896,0.00704,0.004096,0.011392,0.031616,0.036864,2.95117,0.036864
+943,234.057,4.27246,3.50218,0.026208,0.402368,0.007584,0.004672,0.012128,0.032864,0.03488,2.94298,0.038496
+944,241.909,4.13379,3.8463,0.025536,0.382656,0.006464,0.005376,0.010592,0.033152,0.036224,3.30995,0.036352
+945,202.172,4.94629,4.02422,0.026208,0.9384,0.006176,0.006112,0.012288,0.03456,0.035072,2.92864,0.036768
+946,238.056,4.20068,3.46397,0.0256,0.393248,0.00768,0.004576,0.01024,0.032768,0.036608,2.91651,0.036736
+947,231.047,4.32812,3.8953,0.026624,0.419584,0.0064,0.006144,0.01024,0.032768,0.036192,3.32048,0.036864
+948,212.58,4.7041,4.1823,0.026112,0.639552,0.026208,0.00464,0.012128,0.034976,0.034816,3.36896,0.034912
+949,212.404,4.70801,3.49603,0.026304,0.399072,0.006816,0.005696,0.010688,0.0328,0.036064,2.94138,0.037216
+950,226.499,4.41504,3.90304,0.0264,0.407776,0.007552,0.004736,0.01024,0.032768,0.036384,3.34077,0.036416
+951,218.757,4.57129,4.34589,0.026432,0.380672,0.006976,0.005536,0.010848,0.032768,0.035968,3.81014,0.036544
+952,201.396,4.96533,3.4721,0.025408,0.385024,0.006144,0.005632,0.010656,0.032896,0.036832,2.93245,0.037056
+953,237.835,4.20459,3.87043,0.026144,0.3896,0.007584,0.004704,0.01152,0.031488,0.036416,3.32608,0.036896
+954,210.57,4.74902,4.34147,0.026176,0.410048,0.007232,0.004832,0.010464,0.0328,0.03616,3.77859,0.035168
+955,202.752,4.93213,3.47549,0.026304,0.3928,0.00688,0.005664,0.010656,0.032832,0.034816,2.92864,0.036896
+956,242.281,4.12744,3.85418,0.026656,0.399328,0.00768,0.004608,0.011424,0.032608,0.03584,3.29933,0.036704
+957,201.139,4.97168,4.49946,0.026464,0.5224,0.006144,0.006144,0.01024,0.03408,0.035232,3.82192,0.036832
+958,202.372,4.94141,3.46861,0.026144,0.379488,0.007808,0.00448,0.010272,0.032864,0.036736,2.93414,0.036672
+959,239.169,4.18115,3.85907,0.025216,0.395264,0.006144,0.006144,0.01152,0.032928,0.035424,3.30957,0.036864
+960,208.703,4.7915,4.4504,0.026144,0.490048,0.007936,0.004352,0.01024,0.033856,0.035776,3.80723,0.034816
+961,197.436,5.06494,4.39046,0.026144,0.434656,0.006144,0.006144,0.010272,0.034016,0.035584,3.80109,0.036416
+962,202.492,4.93848,3.86458,0.026624,0.386272,0.006944,0.004096,0.01152,0.03296,0.035392,3.32573,0.03504
+963,168.574,5.93213,3.53216,0.025824,0.426784,0.00752,0.004768,0.01184,0.032288,0.035136,2.95126,0.036736
+964,328.468,3.04443,3.50618,0.026624,0.403456,0.007808,0.00448,0.011296,0.033312,0.035296,2.94704,0.036864
+965,237.257,4.21484,3.8807,0.026624,0.382976,0.006144,0.006144,0.01024,0.032768,0.036608,3.3423,0.036896
+966,203.437,4.91553,3.96717,0.025056,0.872032,0.00656,0.005312,0.011072,0.034816,0.036256,2.93952,0.036544
+967,217.364,4.60059,3.5439,0.025472,0.425952,0.0072,0.005088,0.011296,0.031936,0.036448,2.96272,0.037792
+968,237.587,4.20898,3.89341,0.02624,0.419584,0.006912,0.004096,0.011616,0.032864,0.035424,3.32102,0.035648
+969,208.958,4.78564,4.38067,0.026592,0.415296,0.006624,0.005888,0.010496,0.032768,0.036032,3.81142,0.035552
+970,186.759,5.35449,3.58118,0.026624,0.482848,0.006624,0.00544,0.010976,0.033792,0.035264,2.94298,0.03664
+971,241.852,4.13477,3.89955,0.026592,0.387232,0.007424,0.004864,0.011296,0.032736,0.03504,3.35747,0.036896
+972,215.556,4.63916,3.72986,0.026016,0.621152,0.008608,0.005344,0.011136,0.03472,0.036864,2.95043,0.035584
+973,227.809,4.38965,3.49184,0.026464,0.388288,0.007072,0.005504,0.010688,0.032704,0.036288,2.94797,0.036864
+974,231.465,4.32031,3.87427,0.026336,0.398976,0.006816,0.004096,0.011584,0.032704,0.035584,3.32186,0.03632
+975,215.262,4.64551,4.35117,0.026176,0.416192,0.007424,0.004864,0.01136,0.033056,0.035392,3.78067,0.036032
+976,179.57,5.56885,3.50208,0.025504,0.405216,0.006432,0.00544,0.010784,0.032928,0.036704,2.94237,0.036704
+977,262.901,3.80371,3.90099,0.025632,0.402368,0.006176,0.006144,0.011552,0.043744,0.034816,3.33344,0.03712
+978,209.407,4.77539,4.39494,0.026624,0.431712,0.00656,0.005312,0.011072,0.0328,0.036832,3.80854,0.035488
+979,191.402,5.22461,3.53898,0.026624,0.434176,0.007648,0.00464,0.012288,0.032768,0.034816,2.94864,0.037376
+980,241.766,4.13623,3.90125,0.02624,0.416128,0.007744,0.004544,0.010336,0.032768,0.036672,3.33018,0.03664
+981,212.934,4.69629,4.38022,0.026336,0.409952,0.007744,0.004544,0.011712,0.0328,0.035072,3.81562,0.036448
+982,199.493,5.0127,3.49763,0.026624,0.38912,0.007904,0.004384,0.01136,0.033056,0.035456,2.95309,0.03664
+983,217.479,4.59814,3.98637,0.026656,0.477472,0.006752,0.005792,0.010592,0.0328,0.034784,3.35462,0.036896
+984,206.285,4.84766,3.9752,0.026144,0.868832,0.007264,0.004832,0.012128,0.035136,0.03648,2.94851,0.035872
+985,231.91,4.31201,3.49398,0.02624,0.39728,0.006656,0.00592,0.010464,0.032768,0.035936,2.94141,0.037312
+986,239.448,4.17627,3.90243,0.025568,0.390752,0.00656,0.005344,0.010656,0.032896,0.036128,3.35766,0.036864
+987,199.513,5.01221,4.45424,0.02528,0.458016,0.00688,0.005632,0.010688,0.032832,0.036192,3.84067,0.038048
+988,194.289,5.14697,3.51392,0.026624,0.413696,0.008128,0.00416,0.01024,0.032768,0.036576,2.94326,0.038464
+989,220.69,4.53125,3.97312,0.026528,0.451872,0.006976,0.0056,0.010816,0.032672,0.03488,3.36691,0.036864
+990,190.654,5.24512,3.83795,0.028608,0.723008,0.006144,0.005632,0.010752,0.034144,0.035488,2.95731,0.036864
+991,231.439,4.3208,3.56352,0.026592,0.45056,0.006176,0.006144,0.01136,0.031648,0.036224,2.95709,0.037728
+992,227.631,4.39307,3.90378,0.026336,0.433952,0.006944,0.004096,0.011648,0.032704,0.035552,3.31674,0.035808
+993,188.443,5.30664,3.89571,0.05328,0.74176,0.007424,0.004864,0.011392,0.033664,0.036352,2.96986,0.03712
+994,246.628,4.05469,3.49421,0.02656,0.393888,0.00752,0.004768,0.01024,0.032768,0.036512,2.94502,0.036928
+995,232.648,4.29834,3.8831,0.026432,0.405344,0.006816,0.005728,0.010656,0.032768,0.034848,3.32387,0.03664
+996,198.951,5.02637,3.88301,0.028576,0.734368,0.00704,0.00416,0.012288,0.032768,0.036864,2.98598,0.04096
+997,230.761,4.3335,3.48586,0.026592,0.385504,0.006336,0.006144,0.01024,0.032768,0.03616,2.94374,0.038368
+998,237.147,4.2168,3.8824,0.026432,0.405696,0.007904,0.004384,0.01024,0.034816,0.036416,3.32026,0.036256
+999,211.527,4.72754,4.13232,0.026656,0.583648,0.010112,0.005504,0.013056,0.07552,0.035104,3.34637,0.036352
+1000,199.844,5.00391,3.54957,0.026048,0.447424,0.007232,0.004832,0.010464,0.032768,0.03488,2.94906,0.036864
+1001,228.164,4.38281,3.92605,0.02656,0.426048,0.007968,0.005504,0.01072,0.032864,0.035104,3.34438,0.036896
+1002,200.372,4.99072,3.98909,0.025856,0.885728,0.007584,0.004704,0.012224,0.034688,0.035008,2.94707,0.036224
+1003,204.086,4.8999,3.50214,0.0256,0.41984,0.007264,0.005024,0.01024,0.033824,0.035744,2.92666,0.037952
+1004,257.254,3.88721,3.90502,0.026144,0.4296,0.007104,0.004096,0.011488,0.033536,0.034848,3.32182,0.036384
+1005,206.493,4.84277,4.31104,0.026624,0.684032,0.009536,0.0048,0.012288,0.044032,0.0768,3.41606,0.036864
+1006,206.952,4.83203,3.49798,0.026656,0.410688,0.007072,0.004096,0.011488,0.03328,0.035104,2.93274,0.036864
+1007,215.897,4.63184,3.98355,0.0264,0.489856,0.00736,0.004928,0.011488,0.03152,0.036,3.3391,0.036896
+1008,192.953,5.18262,3.83398,0.043168,0.726176,0.006912,0.00416,0.012288,0.032768,0.036544,2.93635,0.035616
+1009,226.674,4.41162,3.48966,0.026336,0.40016,0.007296,0.004992,0.011904,0.032576,0.03488,2.93325,0.038272
+1010,227.177,4.40186,3.93626,0.026272,0.466944,0.006496,0.005344,0.010688,0.032864,0.03696,3.31501,0.03568
+1011,194.252,5.14795,4.02768,0.040032,0.904096,0.00752,0.0048,0.012288,0.034784,0.036416,2.94957,0.038176
+1012,222.343,4.49756,3.4752,0.026624,0.38912,0.006144,0.005696,0.010624,0.033984,0.035712,2.92998,0.037312
+1013,255.393,3.91553,3.89088,0.025024,0.392736,0.006624,0.005888,0.010496,0.032704,0.036064,3.34474,0.036608
+1014,203.175,4.92188,3.53277,0.025088,0.427968,0.006144,0.005792,0.010624,0.032768,0.036832,2.95117,0.036384
+1015,232.674,4.29785,3.55942,0.026368,0.473344,0.007776,0.004512,0.011648,0.032704,0.0352,2.93101,0.036864
+1016,238.834,4.18701,3.87632,0.026624,0.395296,0.007872,0.004384,0.01024,0.033824,0.035584,3.32618,0.03632
+1017,202.392,4.94092,4.41379,0.025984,0.447424,0.006144,0.006144,0.01024,0.032768,0.035968,3.81341,0.035712
+1018,198.181,5.0459,3.51382,0.026176,0.406272,0.007744,0.004544,0.01024,0.033984,0.035648,2.95219,0.037024
+1019,189.893,5.26611,3.9177,0.02624,0.434368,0.006528,0.00608,0.010304,0.032704,0.03488,3.32989,0.036704
+1020,217.849,4.59033,3.88342,0.037024,0.760064,0.006144,0.005568,0.010944,0.033824,0.03568,2.95731,0.036864
+1021,243.375,4.10889,3.50093,0.025472,0.407552,0.00784,0.005504,0.01072,0.03312,0.035008,2.93853,0.037184
+1022,231.622,4.31738,3.89901,0.026624,0.425888,0.00624,0.005632,0.01072,0.0328,0.03632,3.3183,0.03648
+1023,197.645,5.05957,3.9897,0.026304,0.890976,0.006592,0.005824,0.01264,0.034624,0.034976,2.94054,0.037216
+1024,226.925,4.40674,3.53242,0.0264,0.41152,0.006496,0.005312,0.010464,0.032896,0.035296,2.96736,0.036672
+1025,229.262,4.36182,3.90186,0.025216,0.417792,0.007424,0.004864,0.011296,0.03376,0.034816,3.32976,0.036928
+1026,198.777,5.03076,3.99594,0.026912,0.886784,0.007712,0.004576,0.012192,0.034592,0.035136,2.94707,0.04096
+1027,220.928,4.52637,3.50278,0.026432,0.418496,0.006368,0.006144,0.01024,0.032768,0.036576,2.92806,0.037696
+1028,230.164,4.34473,3.88915,0.026624,0.417792,0.006144,0.00576,0.010624,0.032256,0.035328,3.31776,0.036864
+1029,196.639,5.08545,4.00694,0.0256,0.892928,0.007808,0.005536,0.011232,0.034816,0.036864,2.95472,0.03744
+1030,206.057,4.85303,3.55734,0.025344,0.4792,0.007584,0.004704,0.010272,0.032736,0.036736,2.9239,0.036864
+1031,245.123,4.07959,3.92243,0.026208,0.457632,0.006144,0.006144,0.01024,0.0344,0.035232,3.30957,0.036864
+1032,203.498,4.91406,4.33046,0.026848,0.901184,0.006848,0.004096,0.012288,0.034816,0.036032,3.27325,0.035104
+1033,215.943,4.63086,4.34976,0.027872,0.387872,0.006144,0.006144,0.01024,0.0328,0.035872,3.80614,0.036672
+1034,174.759,5.72217,4.11654,0.02544,0.728672,0.00656,0.005504,0.011008,0.034688,0.0368,2.94051,0.32736
+1035,218.151,4.58398,3.51357,0.028672,0.414816,0.007008,0.005536,0.010688,0.032832,0.034976,2.94074,0.038304
+1036,232.042,4.30957,3.62387,0.025536,0.534528,0.007488,0.0048,0.01024,0.03424,0.035392,2.93478,0.036864
+1037,193.135,5.17773,3.93312,0.025632,0.833472,0.007296,0.00496,0.012288,0.032768,0.036,2.94333,0.037376
+1038,205.788,4.85938,3.63152,0.02848,0.545376,0.007744,0.004544,0.01024,0.033792,0.035872,2.92979,0.03568
+1039,203.457,4.91504,3.66368,0.025952,0.555584,0.006368,0.006144,0.01024,0.032768,0.035968,2.95366,0.036992
+1040,196.075,5.1001,3.84659,0.02608,0.721344,0.006688,0.00528,0.010656,0.032416,0.035616,2.97165,0.036864
+1041,234.459,4.26514,3.88602,0.025536,0.429152,0.007072,0.005504,0.010688,0.032416,0.035104,3.30368,0.036864
+1042,203.964,4.90283,4.00566,0.026656,0.679904,0.009568,0.004768,0.012288,0.034656,0.036128,2.92534,0.276352
+1043,199.513,5.01221,4.53722,0.026336,0.523296,0.007488,0.004768,0.011424,0.033152,0.035296,3.85981,0.035648
+1044,203.235,4.92041,3.57187,0.02656,0.479424,0.007296,0.020384,0.010688,0.033248,0.03488,2.9225,0.036896
+1045,237.918,4.20312,3.49194,0.026336,0.418752,0.006144,0.006144,0.01024,0.032768,0.034848,2.91632,0.040384
+1046,243.578,4.10547,3.49555,0.02608,0.403264,0.006976,0.004096,0.011488,0.032992,0.035392,2.93824,0.037024
+1047,223.313,4.47803,3.87402,0.026496,0.419968,0.007648,0.00464,0.011552,0.032544,0.035616,3.29744,0.038112
+1048,213.267,4.68896,4.48787,0.02528,0.681984,0.008192,0.014016,0.03888,0.04736,0.035104,3.59814,0.038912
+1049,198.912,5.02734,4.34797,0.026368,0.408,0.006144,0.006144,0.011584,0.032992,0.035328,3.78605,0.03536
+1050,197.474,5.06396,3.46288,0.02656,0.399424,0.0072,0.004832,0.010496,0.034144,0.035136,2.90803,0.037056
+1051,233.311,4.28613,3.4817,0.026656,0.40336,0.006208,0.006144,0.01024,0.033824,0.035552,2.92432,0.035392
+1052,248.785,4.01953,4.33331,0.026496,0.393664,0.007904,0.004384,0.01024,0.034272,0.03536,3.7847,0.036288
+1053,189.999,5.26318,3.5513,0.02624,0.464704,0.00672,0.00576,0.010624,0.032768,0.035872,2.93168,0.036928
+1054,239.728,4.17139,3.45891,0.026624,0.397312,0.007584,0.004704,0.011584,0.033472,0.036384,2.90454,0.036704
+1055,235.727,4.24219,4.32333,0.024448,0.391296,0.00752,0.004768,0.011488,0.032704,0.035456,3.77981,0.03584
+1056,199.513,5.01221,3.4721,0.025344,0.395232,0.0072,0.0048,0.010528,0.032768,0.036384,2.92298,0.036864
+1057,240.15,4.16406,3.50995,0.026624,0.406976,0.00672,0.005792,0.010592,0.033952,0.035712,2.94704,0.036544
+1058,225.476,4.43506,4.63914,0.025024,0.688096,0.006144,0.005632,0.012128,0.033216,0.0352,3.79856,0.035136
+1059,192.572,5.19287,3.49814,0.02608,0.417792,0.006848,0.005664,0.01072,0.033824,0.035136,2.92518,0.036896
+1060,238.945,4.18506,3.50128,0.026656,0.41776,0.00784,0.004448,0.01024,0.033984,0.035648,2.92864,0.036064
+1061,226.774,4.40967,4.60803,0.0256,0.678976,0.006912,0.005504,0.01104,0.033824,0.035712,3.77456,0.035904
+1062,200.765,4.98096,3.4953,0.026272,0.418464,0.007616,0.004672,0.010272,0.032768,0.036832,2.92045,0.037952
+1063,206.389,4.84521,3.52394,0.026336,0.440608,0.007616,0.004672,0.01152,0.0328,0.034976,2.92826,0.037152
+1064,270.078,3.70264,4.39501,0.026624,0.444384,0.006176,0.005664,0.011936,0.035424,0.037056,3.79293,0.034816
+1065,197.913,5.05273,3.47715,0.026208,0.399872,0.0072,0.005056,0.01024,0.032768,0.036128,2.92118,0.038496
+1066,248.785,4.01953,3.45731,0.026912,0.38256,0.00656,0.00528,0.010688,0.033184,0.036224,2.91904,0.036864
+1067,237.284,4.21436,3.85322,0.025568,0.401216,0.006272,0.006144,0.01024,0.032768,0.034816,3.30064,0.035552
+1068,203.7,4.90918,3.44954,0.028544,0.379168,0.006656,0.005184,0.01072,0.033088,0.034976,2.91408,0.03712
+1069,242.855,4.11768,3.47994,0.02672,0.389376,0.007232,0.005056,0.01024,0.033952,0.035296,2.93453,0.037536
+1070,235.89,4.23926,3.88301,0.026624,0.428032,0.00752,0.004768,0.01024,0.032736,0.036288,3.29994,0.036864
+1071,217.317,4.60156,3.4816,0.026304,0.40304,0.00688,0.005696,0.010688,0.032768,0.034848,2.92451,0.036864
+1072,242.052,4.13135,3.4529,0.026656,0.386176,0.007008,0.004096,0.011328,0.032832,0.035712,2.91165,0.03744
+1073,240.094,4.16504,3.83635,0.025184,0.405344,0.007584,0.004704,0.011392,0.031712,0.036768,3.27664,0.037024
+1074,224.759,4.44922,4.31514,0.026208,0.412416,0.0064,0.00544,0.010688,0.033056,0.036192,3.74851,0.036224
+1075,203.457,4.91504,3.46989,0.0264,0.400064,0.006208,0.006144,0.01024,0.032768,0.034816,2.91622,0.037024
+1076,244.947,4.08252,3.84515,0.026656,0.39488,0.006496,0.005312,0.010688,0.033152,0.035936,3.29616,0.035872
+1077,220.952,4.52588,4.33562,0.026656,0.429824,0.006368,0.006144,0.01024,0.032768,0.03616,3.75181,0.035648
+1078,201.952,4.95166,3.46627,0.026464,0.396704,0.006912,0.004096,0.011552,0.032736,0.035584,2.91574,0.03648
+1079,238.14,4.19922,3.85251,0.025408,0.393216,0.007584,0.004704,0.011456,0.032736,0.034944,3.30595,0.036512
+1080,227.733,4.39111,4.29088,0.026368,0.385792,0.0064,0.00544,0.010496,0.033216,0.034816,3.75194,0.036416
+1081,197.97,5.05127,4.5744,0.026624,0.43984,0.006624,0.005824,0.01056,0.032768,0.034816,3.97875,0.038592
+1082,191.134,5.23193,3.83939,0.02592,0.400352,0.007968,0.00432,0.0104,0.033696,0.035776,3.28477,0.036192
+1083,221.885,4.50684,4.36224,0.026624,0.442144,0.006368,0.006144,0.01024,0.032768,0.036128,3.76499,0.036832
+1084,203.964,4.90283,3.48371,0.026144,0.416288,0.006144,0.005824,0.01056,0.0328,0.036032,2.91296,0.03696
+1085,240.432,4.15918,3.86982,0.026592,0.394784,0.006752,0.005824,0.01056,0.032768,0.034816,3.32128,0.036448
+1086,220.904,4.52686,4.31514,0.026304,0.37136,0.0064,0.005536,0.022784,0.034272,0.05168,3.76054,0.036256
+1087,201.021,4.97461,3.46198,0.026528,0.388032,0.007552,0.004768,0.011424,0.031584,0.034784,2.91971,0.0376
+1088,242.769,4.11914,3.84614,0.026656,0.397088,0.006336,0.005472,0.010624,0.032544,0.03536,3.29699,0.035072
+1089,218.71,4.57227,4.37658,0.026624,0.4648,0.00624,0.006144,0.01024,0.032768,0.036704,3.75619,0.036864
+1090,196.15,5.09814,3.4591,0.026624,0.405536,0.007744,0.004512,0.01024,0.034528,0.037152,2.89587,0.036896
+1091,242.252,4.12793,3.84714,0.0256,0.409568,0.007616,0.004672,0.012192,0.032704,0.034976,3.284,0.035808
+1092,217.548,4.59668,4.28237,0.026656,0.399296,0.006176,0.005664,0.010656,0.032672,0.036128,3.72928,0.03584
+1093,195.029,5.12744,3.65738,0.026336,0.573568,0.006304,0.006144,0.01024,0.0328,0.038176,2.92525,0.03856
+1094,246.806,4.05176,3.84038,0.025472,0.405408,0.006144,0.005696,0.010688,0.032768,0.036,3.28176,0.036448
+1095,224.365,4.45703,4.28707,0.026176,0.377888,0.007296,0.00496,0.010272,0.032768,0.036576,3.75594,0.0352
+1096,198.258,5.04395,3.51786,0.026528,0.477056,0.006368,0.005472,0.010688,0.032992,0.036096,2.88595,0.036704
+1097,236.544,4.22754,3.78269,0.027648,0.387552,0.006688,0.005856,0.010528,0.032768,0.035968,3.24016,0.03552
+1098,232.173,4.30713,4.26803,0.026624,0.382496,0.006624,0.005216,0.010976,0.032896,0.03488,3.73331,0.035008
+1099,201.734,4.95703,3.45206,0.026624,0.392768,0.006592,0.00592,0.010464,0.032736,0.034848,2.90406,0.038048
+1100,243.781,4.10205,3.44554,0.025376,0.400896,0.006656,0.005152,0.01072,0.03328,0.036064,2.89059,0.0368
+1101,233.977,4.27393,4.29114,0.023136,0.391168,0.007392,0.004864,0.011328,0.031744,0.036416,3.74938,0.035712
+1102,206.535,4.8418,3.4345,0.02592,0.383936,0.007872,0.004416,0.01024,0.034144,0.035488,2.89542,0.037056
+1103,239.841,4.16943,3.47235,0.025536,0.394688,0.00672,0.005824,0.01056,0.032768,0.034976,2.91574,0.045536
+1104,230.009,4.34766,4.10061,0.02512,0.667008,0.006752,0.004096,0.012288,0.03392,0.035712,3.28045,0.035264
+1105,218.29,4.58105,3.45293,0.026272,0.39056,0.007008,0.005472,0.010464,0.032512,0.035616,2.90611,0.038912
+1106,241.168,4.14648,3.49344,0.026368,0.410912,0.00704,0.004192,0.022528,0.034048,0.035584,2.9161,0.036672
+1107,229.006,4.3667,3.8441,0.026624,0.41472,0.00704,0.005504,0.01072,0.032448,0.035424,3.27475,0.036864
+1108,218.151,4.58398,3.76643,0.028,0.39984,0.006496,0.005344,0.01104,0.032768,0.036384,3.21123,0.035328
+1109,219.578,4.5542,4.39174,0.025568,0.48096,0.006432,0.006112,0.010272,0.032768,0.03488,3.75802,0.036736
+1110,197.018,5.07568,3.6879,0.026624,0.643072,0.007616,0.004672,0.012192,0.03472,0.036288,2.88605,0.036672
+1111,205.54,4.86523,3.45446,0.027808,0.404448,0.00784,0.005504,0.010624,0.033376,0.034816,2.89178,0.038272
+1112,239.7,4.17188,3.46528,0.026272,0.40592,0.0072,0.004832,0.010496,0.032768,0.036864,2.90365,0.03728
+1113,244.683,4.08691,3.83526,0.026656,0.396832,0.006592,0.005984,0.0104,0.03296,0.036096,3.28278,0.03696
+1114,216.628,4.61621,3.45242,0.02496,0.406688,0.007008,0.004096,0.011296,0.031712,0.036864,2.89382,0.035968
+1115,239.672,4.17236,4.30285,0.02656,0.409408,0.0064,0.006144,0.01024,0.0328,0.035968,3.7385,0.036832
+1116,204.82,4.88232,3.45104,0.026496,0.407584,0.007008,0.004096,0.011488,0.03328,0.035264,2.88752,0.038304
+1117,236.19,4.23389,3.456,0.026528,0.421472,0.006656,0.005856,0.010528,0.0328,0.03616,2.87978,0.036224
+1118,232.992,4.29199,4.53632,0.034816,0.6656,0.007904,0.004384,0.012256,0.033888,0.035552,3.70662,0.035296
+1119,205.622,4.86328,3.43024,0.026368,0.377536,0.00736,0.004928,0.011872,0.032768,0.035104,2.896,0.038304
+1120,246.48,4.05713,3.48573,0.026144,0.43856,0.007424,0.004832,0.010464,0.032768,0.047136,2.8815,0.036896
+1121,239.897,4.16846,4.47856,0.026624,0.374784,0.007456,0.004832,0.011456,0.0336,0.034816,3.94646,0.038528
+1122,198.546,5.03662,3.45379,0.02544,0.395264,0.007328,0.004832,0.010368,0.0328,0.036544,2.90419,0.037024
+1123,241.111,4.14746,3.43859,0.0264,0.387136,0.006304,0.006144,0.01024,0.032768,0.036128,2.89578,0.037696
+1124,250.459,3.99268,3.79904,0.026624,0.372064,0.006816,0.004096,0.011552,0.03312,0.035232,3.2727,0.036832
+1125,200.059,4.99854,3.75578,0.02848,0.700608,0.0072,0.005088,0.012256,0.0328,0.035936,2.89661,0.0368
+1126,251.443,3.97705,3.42435,0.026144,0.380992,0.006656,0.005152,0.010464,0.032992,0.03648,2.88861,0.036864
+1127,241.966,4.13281,3.83386,0.0264,0.391392,0.006144,0.006144,0.01024,0.0328,0.036512,3.28736,0.036864
+1128,227.303,4.39941,4.32934,0.026208,0.424576,0.007584,0.004704,0.01024,0.032768,0.036864,3.74989,0.036512
+1129,202.993,4.92627,3.43907,0.027136,0.370656,0.007744,0.004544,0.011616,0.032672,0.035584,2.91184,0.03728
+1130,244.246,4.09424,3.85024,0.026624,0.39024,0.007072,0.004096,0.011424,0.032864,0.035584,3.30698,0.03536
+1131,208.703,4.7915,4.36672,0.026144,0.43504,0.008,0.005504,0.02672,0.041376,0.035168,3.75322,0.035552
+1132,205.561,4.86475,4.29718,0.025344,0.384032,0.007008,0.004224,0.011264,0.033344,0.035264,3.76154,0.035168
+1133,198.777,5.03076,3.81907,0.026624,0.386272,0.006592,0.005504,0.010688,0.032736,0.035392,3.2785,0.036768
+1134,206.723,4.8374,3.9399,0.025088,0.890432,0.00656,0.005152,0.011232,0.034848,0.036832,2.89357,0.036192
+1135,240.235,4.1626,3.43453,0.028224,0.383424,0.007776,0.004512,0.011392,0.032704,0.03536,2.89424,0.036896
+1136,243.868,4.10059,3.80221,0.026624,0.38448,0.006688,0.00528,0.01072,0.032864,0.0352,3.26397,0.036384
+1137,214.63,4.65918,4.35558,0.026624,0.407552,0.022528,0.005856,0.01056,0.032256,0.035328,3.77853,0.036352
+1138,203.356,4.91748,3.5001,0.026368,0.442144,0.006688,0.005152,0.01072,0.03296,0.035136,2.90406,0.036864
+1139,241.852,4.13477,3.87859,0.026272,0.395616,0.007456,0.004832,0.01136,0.032768,0.035648,3.328,0.03664
+1140,181.143,5.52051,4.30106,0.026304,0.39376,0.007296,0.004832,0.0104,0.047104,0.036736,3.73978,0.034848
+1141,232.173,4.30713,3.48774,0.026624,0.444416,0.007456,0.004832,0.011392,0.031616,0.036608,2.88752,0.03728
+1142,254.378,3.93115,3.83706,0.026624,0.405504,0.008,0.004288,0.011264,0.033344,0.035264,3.2768,0.035968
+1143,197.874,5.05371,4.28064,0.026432,0.380608,0.006976,0.005888,0.010496,0.032768,0.034816,3.74704,0.035616
+1144,229.648,4.35449,3.45955,0.02608,0.41376,0.007008,0.00416,0.012,0.033056,0.036704,2.88992,0.036864
+1145,236.19,4.23389,3.77933,0.026592,0.406336,0.0072,0.005056,0.01024,0.033952,0.03552,3.21757,0.036864
+1146,232.042,4.30957,4.26064,0.025344,0.389024,0.00624,0.0056,0.010656,0.032896,0.036608,3.71942,0.034848
+1147,162.346,6.15967,3.47136,0.026432,0.432192,0.006272,0.006144,0.01024,0.0328,0.036224,2.88419,0.036864
+1148,314.11,3.18359,3.56141,0.025312,0.503776,0.007456,0.004832,0.010368,0.03264,0.035872,2.90496,0.036192
+1149,236.708,4.22461,4.31421,0.026336,0.422112,0.006208,0.006144,0.01024,0.032768,0.036032,3.73843,0.035936
+1150,202.572,4.93652,3.46944,0.026624,0.419872,0.007552,0.004704,0.01024,0.033792,0.035872,2.89379,0.036992
+1151,235.836,4.24023,3.46931,0.026592,0.419776,0.006656,0.005952,0.010432,0.032768,0.036416,2.89379,0.036928
+1152,242.942,4.11621,4.2609,0.024608,0.38016,0.00688,0.004096,0.011552,0.031456,0.036864,3.72941,0.035872
+1153,207.919,4.80957,3.42848,0.026016,0.381696,0.007392,0.004896,0.01024,0.032896,0.036736,2.8912,0.037408
+1154,202.712,4.93311,3.60666,0.026144,0.571008,0.006976,0.004256,0.015392,0.033504,0.035072,2.87888,0.035424
+1155,257.74,3.87988,4.50029,0.025504,0.66144,0.007808,0.004448,0.013312,0.032928,0.0352,3.68397,0.03568
+1156,207.12,4.82812,3.43514,0.026208,0.383936,0.007552,0.004704,0.01024,0.034144,0.035488,2.89546,0.037408
+1157,241.111,4.14746,3.4753,0.026464,0.424096,0.006144,0.006144,0.01024,0.032768,0.0384,2.89434,0.036704
+1158,252.465,3.96094,4.13626,0.026272,0.399744,0.007648,0.004608,0.010272,0.032768,0.036256,3.27126,0.347424
+1159,209.901,4.76416,3.74525,0.028672,0.36864,0.007648,0.00464,0.012288,0.032768,0.036,3.21622,0.038368
+1160,229.262,4.36182,4.25811,0.026176,0.373504,0.007872,0.004416,0.01024,0.032768,0.03632,3.73162,0.0352
+1161,202.652,4.93457,3.43392,0.026624,0.376832,0.007872,0.004416,0.01136,0.031648,0.036352,2.90051,0.038304
+1162,250.95,3.98486,3.42182,0.025888,0.37952,0.006272,0.005312,0.01088,0.03296,0.036512,2.88803,0.036448
+1163,244.596,4.08838,4.26624,0.022784,0.382688,0.006432,0.006112,0.010272,0.033856,0.035392,3.73363,0.035072
+1164,203.034,4.92529,3.4304,0.02608,0.387616,0.006144,0.00576,0.010592,0.032512,0.0352,2.88963,0.036864
+1165,238.25,4.19727,3.51632,0.026144,0.4608,0.006624,0.005888,0.010496,0.032768,0.036,2.90083,0.036768
+1166,248.967,4.0166,4.4305,0.026368,0.570304,0.007968,0.00432,0.012288,0.034816,0.036256,3.70262,0.035552
+1167,200.391,4.99023,3.42141,0.02624,0.368384,0.006784,0.005408,0.010784,0.032512,0.035296,2.89757,0.038432
+1168,226.474,4.41553,3.41654,0.025056,0.387072,0.006144,0.005664,0.010688,0.032736,0.03504,2.87882,0.035328
+1169,246.302,4.06006,4.12534,0.026816,0.387552,0.007488,0.0048,0.010272,0.032736,0.036096,3.26938,0.350208
+1170,209.172,4.78076,3.40438,0.02832,0.385344,0.006784,0.004096,0.011712,0.033056,0.035104,2.8631,0.036864
+1171,252.621,3.9585,3.41818,0.026272,0.358816,0.007744,0.004512,0.011872,0.033184,0.036096,2.90278,0.036896
+1172,240.884,4.15137,3.81546,0.026624,0.399232,0.006272,0.005568,0.010752,0.032832,0.036864,3.26042,0.036896
+1173,203.862,4.90527,3.92806,0.026624,0.882688,0.007616,0.004672,0.012288,0.034688,0.034944,2.88768,0.036864
+1174,241.225,4.14551,3.40762,0.027136,0.366016,0.006624,0.005504,0.010752,0.032544,0.036544,2.87606,0.046432
+1175,226.223,4.42041,3.8111,0.02656,0.390976,0.006688,0.006048,0.010304,0.032768,0.034848,3.26573,0.037184
+1176,227.127,4.40283,4.28893,0.026176,0.392032,0.006144,0.005792,0.010528,0.032352,0.035328,3.74554,0.03504
+1177,205.602,4.86377,3.42371,0.025984,0.378944,0.006784,0.005728,0.010656,0.032768,0.034848,2.8897,0.038304
+1178,246.45,4.05762,3.80307,0.026176,0.384768,0.006944,0.004096,0.01024,0.0328,0.036608,3.26605,0.035392
+1179,220.595,4.5332,4.31702,0.026144,0.413824,0.006592,0.00592,0.010464,0.032768,0.034848,3.74986,0.036608
+1180,206.015,4.854,3.41203,0.025536,0.376832,0.007232,0.005056,0.011328,0.032928,0.035776,2.88067,0.036672
+1181,245.005,4.08154,3.75398,0.026656,0.380512,0.006528,0.006016,0.010368,0.032576,0.03504,3.21942,0.036864
+1182,222.029,4.50391,4.28032,0.026624,0.385024,0.007424,0.004832,0.010272,0.032768,0.036352,3.7417,0.035328
+1183,203.074,4.92432,4.47418,0.026624,0.387072,0.00784,0.004448,0.011424,0.032704,0.03504,3.93053,0.038496
+1184,195.159,5.12402,3.80477,0.026656,0.384992,0.006144,0.0056,0.010784,0.032768,0.0368,3.264,0.037024
+1185,206.743,4.83691,4.48592,0.02544,0.478272,0.007072,0.013856,0.010784,0.048352,0.035584,3.83082,0.035744
+1186,205.149,4.87451,3.42019,0.027712,0.379008,0.006976,0.004096,0.011808,0.033056,0.036064,2.88458,0.036896
+1187,242.884,4.11719,3.83424,0.02656,0.391616,0.007232,0.005056,0.010272,0.032768,0.036512,3.28851,0.035712
+1188,226.223,4.42041,4.30298,0.026464,0.403936,0.006464,0.005376,0.0104,0.033408,0.050976,3.7296,0.036352
+1189,183.315,5.45508,3.43654,0.026624,0.376416,0.00656,0.005984,0.0104,0.032768,0.036864,2.89357,0.04736
+1190,246.836,4.05127,3.97475,0.026272,0.538976,0.007552,0.004736,0.01024,0.032768,0.0368,3.28096,0.036448
+1191,223.556,4.47314,4.32742,0.026656,0.414784,0.007072,0.005536,0.010528,0.032384,0.03552,3.75965,0.035296
+1192,196.583,5.08691,3.45891,0.026624,0.395264,0.022496,0.005248,0.011168,0.033984,0.035648,2.89178,0.036704
+1193,240.941,4.15039,3.83546,0.026816,0.38896,0.007808,0.005536,0.010688,0.032992,0.035104,3.29069,0.036864
+1194,217.041,4.60742,4.38067,0.025888,0.483104,0.007008,0.004192,0.01024,0.048416,0.036832,3.73018,0.034816
+1195,202.953,4.92725,3.42426,0.026144,0.383456,0.006144,0.006144,0.010272,0.034144,0.03744,2.88365,0.036864
+1196,253.465,3.94531,3.74685,0.026624,0.382976,0.007424,0.004608,0.010496,0.032768,0.036192,3.20989,0.035872
+1197,232.674,4.29785,4.25898,0.026368,0.360704,0.007872,0.004416,0.01024,0.032768,0.036288,3.74378,0.036544
+1198,191.402,5.22461,3.42458,0.026112,0.379712,0.007552,0.004736,0.01024,0.0328,0.036416,2.89014,0.036864
+1199,247.492,4.04053,3.42701,0.02528,0.376832,0.00752,0.004768,0.011936,0.032736,0.0352,2.89501,0.037728
+1200,247.852,4.03467,4.27446,0.025984,0.375488,0.006368,0.005632,0.010688,0.032832,0.036768,3.74384,0.036864
+1201,206.202,4.84961,3.40787,0.026624,0.366592,0.007936,0.004352,0.01152,0.032832,0.03536,2.88579,0.036864
+1202,230.605,4.33643,3.5281,0.026624,0.473088,0.007488,0.0048,0.01024,0.047168,0.0368,2.88563,0.036256
+1203,230.501,4.33838,4.55318,0.026368,0.664416,0.007232,0.005024,0.012032,0.033024,0.035872,3.73245,0.036768
+1204,208.724,4.79102,3.4312,0.025376,0.382976,0.008,0.004288,0.011744,0.033024,0.036288,2.89235,0.037152
+1205,192.084,5.20605,3.49776,0.026016,0.43648,0.006816,0.005504,0.010912,0.0328,0.035904,2.90499,0.038336
+1206,335.628,2.97949,3.81747,0.026496,0.389248,0.006144,0.005728,0.010656,0.032768,0.036256,3.27325,0.036928
+1207,202.132,4.94727,3.86278,0.02736,0.417536,0.0064,0.006144,0.011744,0.032672,0.034816,3.28966,0.036448
+1208,219.225,4.56152,4.38275,0.026464,0.507232,0.006976,0.00512,0.01072,0.032736,0.035392,3.72326,0.034848
+1209,194.289,5.14697,4.56909,0.026016,0.657056,0.006912,0.00432,0.012256,0.032768,0.034816,3.75949,0.035456
+1210,189.63,5.27344,3.4568,0.02624,0.402912,0.007008,0.00416,0.01136,0.032704,0.035488,2.90003,0.036896
+1211,232.648,4.29834,3.56557,0.026624,0.521824,0.00656,0.006016,0.010368,0.0328,0.036832,2.88758,0.03696
+1212,233.63,4.28027,4.53635,0.026816,0.672544,0.007776,0.00448,0.013472,0.03168,0.036448,3.7072,0.035936
+1213,206.952,4.83203,3.42122,0.026656,0.368608,0.007616,0.004672,0.01024,0.032768,0.035008,2.89773,0.03792
+1214,232.41,4.30273,3.47136,0.026624,0.441536,0.006976,0.004096,0.011392,0.033664,0.036544,2.87366,0.036864
+1215,248.755,4.02002,4.57949,0.026048,0.47792,0.007744,0.004544,0.011456,0.0336,0.034816,3.94445,0.038912
+1216,198.507,5.0376,3.43181,0.026624,0.380928,0.007936,0.004352,0.01024,0.033824,0.035808,2.89382,0.038272
+1217,247.882,4.03418,3.44035,0.026368,0.381312,0.006688,0.005824,0.010144,0.032544,0.035456,2.90384,0.038176
+1218,246.985,4.04883,3.80448,0.026624,0.37888,0.007936,0.004352,0.01168,0.033312,0.03488,3.26992,0.036896
+1219,205.313,4.87061,3.9137,0.025152,0.876544,0.006336,0.005952,0.012288,0.034688,0.035968,2.87987,0.036896
+1220,238.528,4.19238,4.26803,0.026112,0.367104,0.00784,0.004448,0.01136,0.033088,0.035456,3.74576,0.036864
+1221,198.085,5.04834,3.40154,0.026016,0.365472,0.007904,0.005504,0.010528,0.033312,0.034912,2.87952,0.038368
+1222,238.445,4.19385,3.43245,0.026656,0.395232,0.007648,0.00464,0.01024,0.033824,0.035808,2.88326,0.035136
+1223,238.056,4.20068,4.29894,0.025376,0.397184,0.006272,0.005824,0.010592,0.033984,0.034976,3.74848,0.036256
+1224,207.057,4.82959,3.44246,0.02592,0.401824,0.006432,0.005888,0.010496,0.032768,0.036768,2.88573,0.03664
+1225,239.336,4.17822,3.53363,0.025472,0.488928,0.006624,0.005888,0.010496,0.034816,0.036896,2.8887,0.035808
+1226,245.74,4.06934,4.11232,0.026624,0.380416,0.006656,0.005184,0.010656,0.033088,0.036544,3.26506,0.348096
+1227,211.221,4.73438,3.42291,0.027424,0.37632,0.006528,0.005216,0.010656,0.032992,0.035104,2.89126,0.037408
+1228,253.058,3.95166,3.43085,0.025312,0.384416,0.006752,0.005696,0.010688,0.032768,0.036384,2.89184,0.036992
+1229,223.63,4.47168,3.79962,0.02624,0.381856,0.007616,0.004672,0.01024,0.033824,0.035808,3.26246,0.036896
+1230,220.713,4.53076,3.41846,0.026336,0.393568,0.006336,0.005568,0.010304,0.032672,0.035488,2.87293,0.035264
+1231,246.896,4.05029,3.45968,0.027232,0.402592,0.007008,0.005376,0.01072,0.033088,0.034784,2.90186,0.037024
+1232,249.513,4.00781,3.85363,0.026464,0.382752,0.006528,0.005376,0.01104,0.032864,0.036736,3.31571,0.03616
+1233,201.873,4.95361,4.45846,0.036864,0.546816,0.007392,0.004896,0.010464,0.033888,0.036672,3.74464,0.036832
+1234,206.223,4.84912,4.09795,0.024512,0.385088,0.007552,0.004736,0.01024,0.032768,0.03664,3.29341,0.303008
+1235,192.21,5.20264,3.96358,0.025728,0.542592,0.007456,0.004832,0.01136,0.033024,0.035488,3.26643,0.036672
+1236,210.786,4.74414,3.91978,0.02608,0.866848,0.008192,0.005248,0.011264,0.03472,0.036576,2.89408,0.036768
+1237,239.141,4.18164,3.43395,0.026624,0.374432,0.006496,0.006048,0.010336,0.0328,0.036384,2.90246,0.038368
+1238,246.747,4.05273,3.80518,0.026656,0.390784,0.006496,0.004096,0.011776,0.032768,0.035328,3.2615,0.035776
+1239,227.101,4.40332,4.31974,0.026528,0.40816,0.007232,0.005056,0.0104,0.034656,0.034816,3.75747,0.035424
+1240,207.561,4.81787,3.41107,0.026496,0.368768,0.00752,0.004768,0.01024,0.033824,0.036896,2.88454,0.038016
+1241,242.31,4.12695,3.80109,0.026624,0.382976,0.00752,0.0048,0.011264,0.032896,0.03568,3.26246,0.036864
+1242,232.147,4.30762,4.26576,0.0264,0.36448,0.006432,0.005952,0.010464,0.032864,0.036736,3.74704,0.035392
+1243,203.599,4.91162,3.42979,0.026112,0.389632,0.007296,0.004992,0.011296,0.031712,0.036768,2.88483,0.037152
+1244,245.829,4.06787,3.42634,0.026624,0.388288,0.006976,0.004096,0.011456,0.03264,0.035776,2.88358,0.036896
+1245,243.693,4.10352,4.29507,0.026016,0.373536,0.006336,0.005824,0.01056,0.0328,0.036448,3.76666,0.036896
+1246,194.992,5.12842,3.43453,0.026624,0.38912,0.00736,0.004832,0.010336,0.032768,0.03616,2.89043,0.036896
+1247,240.828,4.15234,3.45002,0.026592,0.39072,0.006624,0.005696,0.01056,0.032896,0.036096,2.90387,0.03696
+1248,236.873,4.22168,4.54672,0.026624,0.653312,0.007872,0.004416,0.012288,0.032768,0.036192,3.73827,0.034976
+1249,203.336,4.91797,3.43558,0.026624,0.38224,0.00688,0.005312,0.010752,0.03264,0.035264,2.89792,0.037952
+1250,242.453,4.12451,3.43654,0.026656,0.37888,0.008,0.004256,0.0104,0.03264,0.036832,2.90314,0.035744
+1251,252.124,3.96631,4.11853,0.026624,0.36656,0.006304,0.006016,0.011296,0.031712,0.036192,3.28752,0.346304
+1252,209.065,4.7832,3.81517,0.02816,0.38336,0.00656,0.00528,0.010464,0.032832,0.035392,3.2768,0.03632
+1253,202.492,4.93848,4.36182,0.026624,0.450144,0.00656,0.005984,0.02064,0.032896,0.036192,3.74634,0.036448
+1254,220.904,4.52686,3.41402,0.026624,0.378752,0.006272,0.005536,0.01088,0.032544,0.036832,2.88102,0.035552
+1255,250.397,3.99365,3.73658,0.025568,0.378368,0.006656,0.005632,0.010496,0.032704,0.035136,3.20627,0.035744
+1256,233.098,4.29004,4.2983,0.026624,0.376096,0.00688,0.004096,0.01136,0.033152,0.03536,3.76832,0.036416
+1257,200.274,4.99316,3.80563,0.025152,0.37056,0.006272,0.006144,0.01024,0.032768,0.036864,3.28077,0.036864
+1258,201.933,4.95215,3.79552,0.028384,0.37728,0.006464,0.00528,0.01056,0.032672,0.035456,3.26451,0.034912
+1259,225.278,4.43896,4.27584,0.0264,0.362656,0.006656,0.005856,0.010528,0.032768,0.03648,3.75846,0.036032
+1260,201.634,4.95947,3.42221,0.026368,0.37504,0.00768,0.004608,0.01024,0.032768,0.034848,2.88355,0.047104
+1261,253.215,3.94922,3.44182,0.026624,0.382976,0.006144,0.006144,0.01024,0.032768,0.036352,2.90416,0.036416
+1262,245.152,4.0791,4.28426,0.025184,0.374336,0.006592,0.005792,0.010624,0.032768,0.035968,3.75626,0.036736
+1263,196.885,5.0791,3.42634,0.026016,0.37072,0.00672,0.005824,0.01056,0.032448,0.035136,2.90202,0.036896
+1264,248.303,4.02734,3.43658,0.026624,0.39088,0.006432,0.005984,0.0104,0.032768,0.035904,2.89197,0.035616
+1265,247.433,4.0415,3.89123,0.027808,0.439136,0.007744,0.004544,0.012288,0.034848,0.03632,3.29165,0.036896
+1266,220.239,4.54053,3.43043,0.026048,0.381536,0.0072,0.005088,0.010272,0.032768,0.03648,2.89402,0.037024
+1267,248.152,4.02979,3.4161,0.026624,0.364416,0.006272,0.005952,0.010432,0.032768,0.034816,2.89738,0.03744
+1268,242.625,4.12158,3.82976,0.026656,0.38704,0.006144,0.00576,0.010624,0.0328,0.036096,3.28778,0.036864
+1269,225.203,4.44043,3.54506,0.026176,0.470656,0.006976,0.005408,0.010976,0.034816,0.03472,2.9185,0.036832
+1270,213.467,4.68457,3.58608,0.025024,0.4992,0.016,0.004992,0.024576,0.040288,0.03552,2.90307,0.037408
+1271,270.72,3.69385,3.83674,0.025504,0.392288,0.007072,0.005248,0.010528,0.032832,0.03536,3.29098,0.036928
+1272,221.19,4.521,4.28438,0.026336,0.377312,0.00736,0.0048,0.010336,0.032768,0.036096,3.75379,0.035584
+1273,208.003,4.80762,3.42838,0.026624,0.382976,0.007584,0.004704,0.011328,0.03168,0.036352,2.89024,0.036896
+1274,234.513,4.26416,3.86253,0.026464,0.420256,0.007424,0.004832,0.010272,0.032768,0.03648,3.28733,0.036704
+1275,221.717,4.51025,4.30563,0.025536,0.403104,0.006496,0.006016,0.011424,0.03328,0.035296,3.74784,0.03664
+1276,211.156,4.73584,3.42451,0.02688,0.374368,0.00656,0.004096,0.011872,0.032352,0.035648,2.89587,0.036864
+1277,210.418,4.75244,3.94925,0.026496,0.565344,0.00688,0.006144,0.0176,0.031552,0.03584,3.22253,0.036864
+1278,262.329,3.81201,4.28646,0.0264,0.381152,0.007424,0.004864,0.01024,0.0328,0.036448,3.75232,0.034816
+1279,201.139,4.97168,3.43664,0.026528,0.377024,0.007712,0.004576,0.011264,0.031776,0.036288,2.90461,0.036864
+1280,246.391,4.05859,3.42842,0.026656,0.38464,0.00656,0.005248,0.01088,0.03264,0.0352,2.88973,0.036864
+1281,211.899,4.71924,4.46262,0.024576,0.539776,0.007008,0.005536,0.010656,0.032448,0.035392,3.77034,0.036896
+1282,208.046,4.80664,3.44003,0.026624,0.386752,0.006464,0.0056,0.010784,0.032768,0.036256,2.8983,0.03648
+1283,239.925,4.16797,3.44269,0.026624,0.3768,0.006176,0.006144,0.01024,0.032768,0.03584,2.9111,0.036992
+1284,222.415,4.49609,4.34006,0.02464,0.413504,0.006624,0.005248,0.010688,0.033088,0.051328,3.76013,0.034816
+1285,213.156,4.69141,3.44637,0.026112,0.397824,0.007168,0.00512,0.011616,0.032448,0.03552,2.89216,0.0384
+1286,247.732,4.03662,3.4231,0.025472,0.400544,0.007008,0.004096,0.011584,0.032928,0.03536,2.87037,0.035744
+1287,243.491,4.10693,3.63917,0.025216,0.58976,0.007232,0.005056,0.012288,0.034848,0.03616,2.89178,0.036832
+1288,201.694,4.95801,3.51642,0.028672,0.458464,0.006432,0.005536,0.01072,0.032448,0.035264,2.90125,0.037632
+1289,236.818,4.22266,3.43507,0.02528,0.378848,0.007712,0.004576,0.011872,0.033184,0.038912,2.89594,0.038752
+1290,268.309,3.72705,3.7929,0.026624,0.366112,0.006624,0.005728,0.010656,0.032768,0.036128,3.26525,0.043008
+1291,198.661,5.03369,4.19018,0.027808,0.797536,0.009312,0.005056,0.012256,0.034816,0.035904,3.22861,0.03888
+1292,224.931,4.4458,4.26963,0.026656,0.371968,0.00688,0.00544,0.010784,0.032928,0.036224,3.74234,0.036416
+1293,204.555,4.88867,3.43654,0.026464,0.381088,0.007424,0.004864,0.010528,0.032512,0.034784,2.8937,0.045184
+1294,238.056,4.20068,3.4593,0.030688,0.391424,0.00752,0.004768,0.01024,0.032768,0.036384,2.90864,0.036864
+1295,248.273,4.02783,4.29578,0.023808,0.367136,0.006368,0.006144,0.01024,0.032768,0.036064,3.77731,0.035936
+1296,205.953,4.85547,3.41712,0.026624,0.366592,0.007616,0.004576,0.010336,0.0328,0.036,2.89469,0.037888
+1297,245.269,4.07715,3.52998,0.026112,0.460544,0.006912,0.005248,0.010784,0.032384,0.035392,2.91446,0.038144
+1298,215.33,4.64404,4.26394,0.026624,0.790528,0.00768,0.004608,0.012288,0.036256,0.03648,3.31466,0.034816
+1299,229.596,4.35547,3.45562,0.0256,0.390624,0.006688,0.00512,0.009216,0.034048,0.035584,2.91021,0.038528
+1300,252.746,3.95654,3.43152,0.026656,0.378848,0.007488,0.0048,0.01024,0.03296,0.036,2.89654,0.037984
+1301,245.093,4.08008,3.81747,0.026656,0.370688,0.007648,0.00464,0.011328,0.03168,0.036512,3.29123,0.037088
+1302,197.817,5.05518,3.92208,0.04096,0.85184,0.006272,0.005632,0.012064,0.033504,0.036288,2.90029,0.035232
+1303,241.481,4.14111,3.44688,0.026336,0.385472,0.007808,0.00448,0.01024,0.032864,0.036768,2.90518,0.037728
+1304,246.065,4.06396,3.82195,0.026624,0.391584,0.008,0.004256,0.010272,0.032832,0.036768,3.27619,0.035424
+1305,224.857,4.44727,4.40138,0.026432,0.387072,0.006528,0.005984,0.0104,0.032768,0.034848,3.86045,0.036896
+1306,198.315,5.04248,4.30672,0.022848,0.385056,0.007456,0.0048,0.01024,0.0328,0.036544,3.77174,0.035232
+1307,202.592,4.93604,3.81178,0.0264,0.373024,0.006432,0.005728,0.010656,0.032768,0.036064,3.28486,0.03584
+1308,212.669,4.70215,3.92064,0.025312,0.86128,0.006848,0.00432,0.012288,0.034816,0.03648,2.90352,0.035776
+1309,235.132,4.25293,3.43299,0.026304,0.37104,0.006656,0.005856,0.0104,0.032256,0.035488,2.90784,0.037152
+1310,249.695,4.00488,3.80944,0.026496,0.379808,0.006144,0.005728,0.01056,0.032416,0.035264,3.27645,0.036576
+1311,230.761,4.3335,4.27622,0.026624,0.38096,0.007488,0.004768,0.01136,0.031648,0.03648,3.74144,0.035456
+1312,202.312,4.94287,3.43136,0.025376,0.374304,0.006752,0.005216,0.010656,0.033248,0.035936,2.90448,0.035392
+1313,241.709,4.13721,3.80925,0.025312,0.372768,0.007456,0.0048,0.01024,0.032768,0.036032,3.28358,0.036288
+1314,235.429,4.24756,4.26406,0.026624,0.362208,0.006432,0.005984,0.0104,0.032864,0.036608,3.748,0.034944
+1315,164.445,6.08105,3.48554,0.026624,0.407296,0.0064,0.005344,0.010656,0.036448,0.035488,2.92026,0.037024
+1316,314.11,3.18359,3.45126,0.025248,0.38912,0.007296,0.004832,0.0104,0.0328,0.036416,2.90858,0.036576
+1317,245.652,4.0708,4.26349,0.026624,0.364544,0.007264,0.005024,0.01024,0.032768,0.035904,3.7447,0.036416
+1318,207.771,4.81299,3.44307,0.026144,0.38384,0.007552,0.004736,0.01024,0.0328,0.036256,2.90464,0.036864
+1319,235.456,4.24707,3.54512,0.026144,0.489056,0.00704,0.005504,0.010688,0.032576,0.035232,2.90202,0.036864
+1320,246.569,4.05566,4.35686,0.025792,0.448256,0.006144,0.005696,0.022912,0.03488,0.047104,3.73082,0.035264
+1321,201.535,4.96191,3.46893,0.02512,0.410784,0.007008,0.005408,0.010688,0.033056,0.034912,2.90397,0.037984
+1322,200.922,4.97705,3.45939,0.024896,0.378528,0.020832,0.005792,0.010592,0.033888,0.035776,2.91341,0.03568
+1323,326.011,3.06738,3.81136,0.026624,0.366592,0.007424,0.004864,0.010368,0.033952,0.035552,3.2889,0.037088
+1324,198.123,5.04736,3.42336,0.028064,0.373344,0.007264,0.0048,0.010464,0.032768,0.036224,2.89242,0.038016
+1325,243.751,4.10254,3.42595,0.026624,0.368352,0.006432,0.005664,0.01056,0.032832,0.034912,2.90317,0.037408
+1326,247.492,4.04053,3.83382,0.026048,0.379072,0.006848,0.004096,0.011616,0.033312,0.034944,3.30138,0.036512
+1327,207.099,4.82861,3.9049,0.026144,0.859744,0.00704,0.005504,0.012032,0.033728,0.036544,2.88794,0.036224
+1328,231.989,4.31055,4.28646,0.026272,0.383008,0.00704,0.004096,0.012,0.032768,0.035104,3.74989,0.036288
+1329,176.096,5.67871,4.05338,0.027008,0.565248,0.007744,0.004544,0.01168,0.032736,0.035488,3.32797,0.04096
+1330,210.289,4.75537,3.52253,0.026304,0.469312,0.007488,0.0048,0.011904,0.033152,0.036416,2.89574,0.037408
+1331,241.396,4.14258,3.45414,0.02624,0.37856,0.006848,0.005472,0.010912,0.032768,0.034816,2.92045,0.03808
+1332,253.027,3.95215,3.8384,0.025504,0.3768,0.007744,0.004544,0.011616,0.032832,0.03552,3.30739,0.036448
+1333,209.75,4.76758,3.66912,0.026656,0.610272,0.010016,0.005536,0.011072,0.034816,0.034816,2.89901,0.036928
+1334,242.855,4.11768,4.32218,0.02336,0.405408,0.006368,0.006048,0.010336,0.032768,0.036832,3.76592,0.035136
+1335,203.943,4.90332,3.44787,0.026624,0.376192,0.006784,0.00576,0.010624,0.032768,0.034816,2.91635,0.037952
+1336,228.24,4.38135,3.53123,0.026624,0.450784,0.0064,0.005472,0.01072,0.035008,0.052512,2.90685,0.036864
+1337,230.839,4.33203,4.39066,0.026144,0.6664,0.00784,0.005504,0.011232,0.032768,0.035936,3.3105,0.294336
+1338,216.376,4.62158,3.45907,0.026656,0.38224,0.006848,0.005376,0.010752,0.032608,0.035232,2.92045,0.038912
+1339,161.4,6.1958,4.09606,0.026624,1.03405,0.006336,0.006144,0.01024,0.032768,0.035904,2.90842,0.035584
+1340,385.615,2.59326,3.47606,0.026496,0.424704,0.007968,0.00432,0.0104,0.033888,0.035584,2.89571,0.036992
+1341,243.028,4.11475,3.4432,0.02624,0.37568,0.007584,0.004704,0.011456,0.0328,0.035328,2.91254,0.036864
+1342,247.164,4.0459,4.27418,0.026656,0.359616,0.006944,0.004192,0.011424,0.032576,0.035776,3.76013,0.036864
+1343,201.614,4.95996,3.82358,0.026624,0.376832,0.007328,0.00496,0.011328,0.03168,0.03616,3.29165,0.037024
+1344,209.793,4.7666,3.92496,0.025568,0.878592,0.006144,0.0056,0.012064,0.033536,0.036864,2.8912,0.035392
+1345,236.599,4.22656,3.48621,0.026624,0.41008,0.007392,0.004896,0.01024,0.046592,0.04336,2.89987,0.037152
+1346,247.373,4.04248,3.82941,0.026624,0.398592,0.006912,0.004096,0.011456,0.031584,0.036064,3.27757,0.036512
+1347,230.268,4.34277,4.31203,0.025568,0.395264,0.008096,0.005536,0.010528,0.032576,0.035424,3.76218,0.036864
+1348,204.025,4.90137,3.44186,0.026656,0.384448,0.006688,0.00592,0.010464,0.032768,0.036864,2.89997,0.03808
+1349,244.596,4.08838,3.82886,0.026624,0.385024,0.00784,0.005504,0.010624,0.032576,0.035008,3.28912,0.036544
+1350,219.766,4.55029,4.36803,0.026464,0.428224,0.006432,0.005504,0.010688,0.03296,0.036128,3.78544,0.036192
+1351,207.015,4.83057,3.44883,0.026304,0.377088,0.006208,0.006144,0.01024,0.0328,0.036992,2.91546,0.0376
+1352,243.839,4.10107,3.79494,0.026624,0.395232,0.006176,0.005504,0.010528,0.032736,0.036416,3.24486,0.036864
+1353,229.88,4.3501,4.29264,0.026624,0.379904,0.007008,0.004256,0.01024,0.03392,0.035584,3.75923,0.035872
+1354,204.943,4.87939,3.44173,0.026656,0.378336,0.006656,0.00528,0.010912,0.032672,0.035136,2.90957,0.036512
+1355,242.597,4.12207,3.44688,0.025184,0.382624,0.006496,0.006144,0.01024,0.032768,0.034816,2.91171,0.036896
+1356,248.002,4.03223,4.2873,0.0232,0.371872,0.007104,0.00416,0.011328,0.03168,0.035968,3.76262,0.03936
+1357,195.327,5.11963,3.83709,0.026624,0.382976,0.007424,0.004864,0.011328,0.03168,0.036192,3.29926,0.036736
+1358,201.734,4.95703,3.75866,0.027456,0.695776,0.006688,0.004096,0.012288,0.033952,0.03568,2.90611,0.036608
+1359,246.124,4.06299,4.28646,0.026624,0.364,0.006688,0.00512,0.010688,0.032512,0.035168,3.7688,0.036864
+1360,172.057,5.81201,3.44566,0.0256,0.380928,0.007232,0.004832,0.010496,0.032736,0.034944,2.91123,0.037664
+1361,253.654,3.94238,3.44717,0.02656,0.387488,0.007296,0.004992,0.01024,0.032768,0.036256,2.90467,0.036896
+1362,245.829,4.06787,4.28854,0.026592,0.38096,0.007648,0.00464,0.01024,0.032768,0.036704,3.75408,0.034912
+1363,196.866,5.07959,3.4241,0.026208,0.374432,0.006912,0.005664,0.010656,0.032832,0.034816,2.89549,0.037088
+1364,241.852,4.13477,3.42771,0.026368,0.37712,0.007808,0.004448,0.01024,0.0328,0.036832,2.89546,0.03664
+1365,252.248,3.96436,4.32336,0.02624,0.444096,0.006848,0.00576,0.01184,0.033632,0.036416,3.72317,0.03536
+1366,202.592,4.93604,3.44496,0.025312,0.380928,0.00784,0.004448,0.011616,0.03296,0.035296,2.90816,0.0384
+1367,202.572,4.93652,3.56563,0.026368,0.478912,0.006976,0.019808,0.010912,0.038112,0.03536,2.91251,0.036672
+1368,299.59,3.33789,4.12877,0.0264,0.368896,0.007136,0.004832,0.010528,0.032544,0.03504,3.29424,0.349152
+1369,208.13,4.80469,3.83181,0.026624,0.390208,0.00704,0.005536,0.010912,0.032192,0.035296,3.28864,0.03536
+1370,222.972,4.48486,4.30285,0.0328,0.393184,0.00752,0.004544,0.010464,0.032768,0.036288,3.75046,0.034816
+1371,204.106,4.89941,3.46112,0.026624,0.406528,0.006336,0.004832,0.010336,0.032768,0.034816,2.90179,0.037088
+1372,250.919,3.98535,3.45104,0.026528,0.391424,0.008,0.005312,0.010944,0.032512,0.035392,2.90544,0.035488
+1373,245.858,4.06738,4.37862,0.026624,0.368672,0.007584,0.004672,0.011744,0.032992,0.035136,3.85427,0.036928
+1374,147.328,6.7876,3.54589,0.027456,0.458528,0.020544,0.004224,0.012032,0.033024,0.050656,2.90218,0.037248
+1375,250,4,3.47136,0.026656,0.400352,0.00704,0.005504,0.01072,0.032544,0.035328,2.9143,0.038912
+1376,236.053,4.23633,3.50106,0.026624,0.405536,0.007712,0.004544,0.026624,0.032768,0.045056,2.9143,0.037888
+1377,228.291,4.38037,3.87238,0.026624,0.421888,0.007328,0.00496,0.011744,0.032704,0.039552,3.29018,0.037408
+1378,207.099,4.82861,3.5249,0.025312,0.462272,0.006752,0.004096,0.011648,0.03312,0.035072,2.90931,0.037312
+1379,232.516,4.30078,3.48365,0.0264,0.418048,0.007136,0.00512,0.011264,0.031744,0.036192,2.91018,0.037568
+1380,240.998,4.14941,3.83331,0.025952,0.397472,0.006688,0.004096,0.011584,0.033056,0.035264,3.28291,0.036288
+1381,210.895,4.7417,4.38022,0.026624,0.530336,0.008288,0.006144,0.01216,0.034688,0.035072,3.6905,0.036416
+1382,196.98,5.07666,4.34813,0.02624,0.436832,0.007872,0.004416,0.01024,0.032768,0.042112,3.7521,0.035552
+1383,203.437,4.91553,3.45674,0.026208,0.393792,0.006208,0.00528,0.010656,0.032512,0.03552,2.90931,0.037248
+1384,233.577,4.28125,3.82259,0.025824,0.448288,0.0072,0.004832,0.010528,0.032736,0.03632,3.22147,0.035392
+1385,218.36,4.57959,4.36013,0.026592,0.423744,0.006368,0.006144,0.01024,0.032768,0.034816,3.78454,0.034912
+1386,196.244,5.0957,3.46733,0.025344,0.402624,0.006944,0.005184,0.010688,0.032608,0.035648,2.90778,0.040512
+1387,241.452,4.1416,3.78675,0.026656,0.380832,0.006208,0.006144,0.01024,0.032896,0.036256,3.25168,0.03584
+1388,222.15,4.50146,4.37658,0.026368,0.422144,0.00768,0.004608,0.024576,0.0328,0.036736,3.78624,0.035424
+1389,194.271,5.14746,3.51805,0.026144,0.419968,0.006752,0.005728,0.010656,0.047104,0.042368,2.9088,0.050528
+1390,240.206,4.16309,3.4512,0.026848,0.393312,0.007296,0.004832,0.0104,0.032768,0.036864,2.90211,0.036768
+1391,239.476,4.17578,3.45296,0.02768,0.396128,0.006272,0.006144,0.01024,0.0328,0.034784,2.90202,0.036896
+1392,244.013,4.09814,3.81674,0.026464,0.385248,0.007936,0.004288,0.01024,0.033888,0.035744,3.27661,0.03632
+1393,219.837,4.54883,4.45949,0.025568,0.469024,0.007552,0.014272,0.010944,0.032768,0.034816,3.82944,0.035104
+1394,196.075,5.1001,4.30493,0.026656,0.384992,0.007904,0.004384,0.01024,0.032768,0.036288,3.76637,0.035328
+1395,194.326,5.146,3.53709,0.026176,0.460256,0.007008,0.005504,0.015104,0.032768,0.034816,2.91843,0.037024
+1396,239.813,4.16992,3.4688,0.027744,0.401824,0.006656,0.005184,0.010688,0.03296,0.036256,2.91114,0.036352
+1397,241.88,4.13428,4.26896,0.023424,0.39936,0.007552,0.004736,0.011264,0.031776,0.036544,3.71936,0.034944
+1398,201.12,4.97217,3.45002,0.02624,0.395648,0.006144,0.005792,0.010592,0.0328,0.036352,2.90019,0.036256
+1399,235.213,4.25146,3.51635,0.026656,0.442336,0.007488,0.0048,0.022528,0.0328,0.038144,2.9048,0.0368
+1400,243.693,4.10352,3.68675,0.026048,0.603008,0.007616,0.004672,0.01216,0.034944,0.049184,2.91222,0.036896
+1401,215.715,4.63574,3.46115,0.026592,0.409024,0.006752,0.005824,0.01056,0.032192,0.03536,2.89747,0.037376
+1402,245.77,4.06885,3.45379,0.025568,0.388992,0.006272,0.005632,0.010656,0.032864,0.036352,2.90867,0.038784
+1403,240.743,4.15381,3.82554,0.026656,0.386912,0.006272,0.005664,0.01072,0.032672,0.03488,3.2847,0.037056
+1404,182.174,5.48926,3.91981,0.028672,0.825376,0.007872,0.004384,0.012288,0.04496,0.045152,2.91021,0.040896
+1405,263.002,3.80225,3.47453,0.026624,0.397024,0.006432,0.006112,0.010272,0.0328,0.036,2.92128,0.037984
+1406,239.897,4.16846,3.80845,0.026624,0.380928,0.007584,0.004704,0.01024,0.0328,0.03616,3.27133,0.03808
+1407,198.623,5.03467,4.67882,0.026624,0.4096,0.007456,0.004832,0.01136,0.0336,0.034912,4.1136,0.036832
+1408,208.66,4.79248,4.31898,0.025184,0.395264,0.007648,0.00464,0.01024,0.03296,0.036672,3.77037,0.036
+1409,201.495,4.96289,4.15392,0.02624,0.38336,0.00672,0.00576,0.010624,0.032416,0.035168,3.61267,0.04096
+1410,206.327,4.84668,3.44861,0.02528,0.392928,0.0064,0.00544,0.010592,0.0328,0.035136,2.90202,0.038016
+1411,254.568,3.92822,3.43901,0.026048,0.388096,0.007232,0.005024,0.01024,0.032768,0.036224,2.89638,0.036992
+1412,243.317,4.10986,3.80906,0.026624,0.382976,0.007552,0.004736,0.01024,0.0328,0.03632,3.27104,0.036768
+1413,225.526,4.43408,4.30003,0.026656,0.39728,0.007648,0.00464,0.011808,0.032768,0.035328,3.74781,0.036096
+1414,190.211,5.25732,3.55379,0.031264,0.47104,0.006336,0.005568,0.01904,0.034208,0.035392,2.91408,0.036864
+1415,259.635,3.85156,3.82195,0.0256,0.380128,0.006944,0.0056,0.010688,0.03232,0.034912,3.28854,0.037216
+1416,225.377,4.43701,4.29392,0.026624,0.37808,0.006944,0.004096,0.011264,0.031776,0.03664,3.76237,0.036128
+1417,207.687,4.81494,3.44678,0.026624,0.38912,0.00624,0.006048,0.01024,0.032768,0.035936,2.90256,0.037248
+1418,233.923,4.2749,3.82771,0.026144,0.392,0.006144,0.005792,0.010592,0.032768,0.035872,3.28304,0.03536
+1419,229.828,4.35107,4.26464,0.026656,0.365184,0.006144,0.006144,0.01024,0.0328,0.036832,3.74374,0.036896
+1420,206.514,4.84229,3.45088,0.026624,0.382976,0.007584,0.004704,0.01024,0.032768,0.036064,2.91306,0.036864
+1421,235.646,4.24365,3.77446,0.026624,0.37888,0.007904,0.005504,0.011168,0.032768,0.034816,3.23789,0.038912
+1422,231.412,4.32129,4.29261,0.026592,0.385056,0.006144,0.005824,0.010528,0.03248,0.035136,3.75578,0.035072
+1423,206.806,4.83545,3.4281,0.026176,0.369408,0.00624,0.005888,0.010496,0.0328,0.036768,2.9031,0.037216
+1424,242.31,4.12695,3.44032,0.026624,0.395264,0.007872,0.004416,0.01024,0.032768,0.036544,2.89005,0.036544
+1425,234.701,4.26074,4.31978,0.023072,0.382816,0.006272,0.006144,0.01024,0.032768,0.03648,3.78643,0.035552
+1426,183.43,5.45166,3.46992,0.025152,0.421888,0.008064,0.004224,0.010432,0.032576,0.036576,2.89411,0.036896
+1427,237.697,4.20703,3.47152,0.025088,0.41776,0.007744,0.004544,0.011648,0.033248,0.035008,2.89987,0.036608
+1428,239.672,4.17236,4.25779,0.02432,0.358656,0.007712,0.004576,0.01024,0.032768,0.036576,3.74608,0.036864
+1429,209.836,4.76562,3.44432,0.026496,0.383584,0.006272,0.006144,0.01024,0.0328,0.035904,2.90499,0.037888
+1430,217.156,4.60498,3.52906,0.025984,0.474048,0.006144,0.006048,0.010336,0.032768,0.036192,2.90227,0.035264
+1431,259.47,3.854,3.69661,0.025504,0.641024,0.007552,0.004736,0.012288,0.034752,0.034912,2.89789,0.037952
+1432,223.142,4.48145,3.45315,0.028384,0.39744,0.007008,0.004128,0.011328,0.032928,0.035616,2.89792,0.0384
+1433,250.95,3.98486,3.42931,0.025664,0.372608,0.006144,0.006144,0.01024,0.032768,0.034816,2.90346,0.037472
+1434,247.074,4.04736,3.80928,0.025056,0.37888,0.007616,0.004672,0.011392,0.032736,0.035456,3.2767,0.036768
+1435,193.317,5.17285,3.83302,0.026144,0.745984,0.009504,0.004832,0.012288,0.034688,0.034944,2.9225,0.042144
+1436,264.156,3.78564,4.26598,0.024,0.3856,0.007264,0.004832,0.010464,0.032736,0.0368,3.72906,0.035232
+1437,210.224,4.75684,3.42426,0.026624,0.366592,0.007776,0.004512,0.01024,0.032736,0.034848,2.90371,0.037216
+1438,239.869,4.16895,3.54918,0.026624,0.493568,0.007904,0.004384,0.011392,0.032992,0.03552,2.90138,0.035424
+1439,223.142,4.48145,4.14096,0.026624,0.688032,0.00624,0.006048,0.011744,0.033056,0.035168,3.29728,0.036768
+1440,221.477,4.51514,3.43754,0.025568,0.38672,0.006496,0.005408,0.01056,0.033056,0.034976,2.89699,0.03776
+1441,254.885,3.92334,3.42941,0.026624,0.374784,0.006144,0.00608,0.010336,0.032768,0.035872,2.89882,0.037984
+1442,200.627,4.98438,3.98973,0.02528,0.536608,0.007552,0.004704,0.018304,0.032736,0.036224,3.2919,0.036416
+1443,243.173,4.1123,3.73136,0.054752,0.643616,0.007584,0.004704,0.01152,0.0328,0.034976,2.90464,0.036768
+1444,242.252,4.12793,3.51424,0.02656,0.43424,0.007744,0.004544,0.011392,0.033024,0.035456,2.92387,0.037408
+1445,232.569,4.2998,3.93421,0.026656,0.485344,0.022112,0.005952,0.010688,0.032928,0.034816,3.27885,0.036864
+1446,224.291,4.4585,4.36461,0.026496,0.446496,0.006528,0.005312,0.010656,0.032736,0.035296,3.76624,0.034848
+1447,209.15,4.78125,3.4345,0.026336,0.376128,0.00704,0.005504,0.010976,0.032384,0.0352,2.90202,0.038912
+1448,240.658,4.15527,3.80723,0.026624,0.387072,0.007456,0.004832,0.01024,0.032384,0.0352,3.26656,0.036864
+1449,225.625,4.43213,4.29709,0.025216,0.399328,0.00736,0.004928,0.01024,0.032768,0.035936,3.74467,0.03664
+1450,204.35,4.89355,3.43453,0.02656,0.385088,0.007616,0.004672,0.01024,0.03392,0.03568,2.89386,0.036896
+1451,247.642,4.03809,3.81747,0.026496,0.364672,0.00736,0.004928,0.01024,0.034016,0.035456,3.29744,0.036864
+1452,222.56,4.49316,4.29322,0.026464,0.3712,0.006368,0.005248,0.010912,0.033024,0.036064,3.76909,0.034848
+1453,205.334,4.87012,3.46563,0.026304,0.387776,0.007296,0.004992,0.01024,0.033856,0.034912,2.92336,0.036896
+1454,242.166,4.12939,3.7519,0.026144,0.373408,0.007616,0.004672,0.01024,0.032896,0.036608,3.22368,0.03664
+1455,232.094,4.30859,4.26346,0.026368,0.368352,0.006816,0.005568,0.010624,0.032416,0.03536,3.74147,0.03648
+1456,204.473,4.89062,3.80906,0.026144,0.37936,0.007872,0.004416,0.011648,0.033024,0.0352,3.27478,0.036608
+1457,201.754,4.95654,3.80518,0.028672,0.375808,0.007008,0.005504,0.010688,0.032672,0.035264,3.27459,0.034976
+1458,228.189,4.38232,4.28442,0.026592,0.376704,0.006304,0.005504,0.010656,0.032992,0.034816,3.75603,0.034816
+1459,199.63,5.00928,3.4535,0.025408,0.407552,0.007488,0.004704,0.010336,0.032768,0.036544,2.8911,0.0376
+1460,248.303,4.02734,3.44509,0.02608,0.381824,0.007168,0.0048,0.01056,0.032448,0.035136,2.91021,0.036864
+1461,245.534,4.07275,4.30275,0.026432,0.393696,0.006304,0.006112,0.01024,0.033824,0.035136,3.75386,0.037152
+1462,185.726,5.38428,3.43085,0.026624,0.37872,0.006752,0.00544,0.010752,0.032832,0.034976,2.89722,0.037536
+1463,270.185,3.70117,3.53834,0.026624,0.494752,0.007008,0.005344,0.010528,0.032448,0.035552,2.88922,0.036864
+1464,231.412,4.32129,4.51424,0.025024,0.658784,0.006816,0.005472,0.011008,0.032672,0.036448,3.70298,0.03504
+1465,209.944,4.76318,3.42835,0.026624,0.376832,0.007904,0.004384,0.012288,0.032416,0.035168,2.89587,0.036864
+1466,236.9,4.22119,3.49184,0.026624,0.458624,0.006272,0.00512,0.010624,0.033312,0.036736,2.87766,0.036864
+1467,240.376,4.16016,4.53222,0.026624,0.395264,0.007936,0.004352,0.011552,0.045536,0.039168,3.96288,0.038912
+1468,202.312,4.94287,3.4304,0.026368,0.384672,0.006752,0.005728,0.010688,0.032704,0.036672,2.8895,0.037312
+1469,179.335,5.57617,3.49392,0.02624,0.436608,0.00768,0.004608,0.011616,0.036576,0.035296,2.89824,0.037056
+1470,392.112,2.55029,3.80522,0.02608,0.385216,0.00656,0.005376,0.010656,0.032704,0.035232,3.26659,0.0368
+1471,211.701,4.72363,3.90675,0.026656,0.84976,0.006272,0.006144,0.01216,0.0344,0.03536,2.89792,0.03808
+1472,237.394,4.2124,4.25309,0.026176,0.372672,0.006656,0.005376,0.010656,0.03296,0.036448,3.72573,0.036416
+1473,191.366,5.22559,3.62714,0.026464,0.587968,0.00624,0.006144,0.010272,0.032768,0.034784,2.88554,0.03696
+1474,215.579,4.63867,3.6056,0.026624,0.586848,0.007072,0.004096,0.011584,0.03248,0.035808,2.86493,0.03616
+1475,255.139,3.91943,3.82986,0.024192,0.387488,0.00768,0.004576,0.011488,0.032896,0.035296,3.28291,0.043328
+1476,173.662,5.7583,3.47344,0.026496,0.45232,0.00656,0.005248,0.010656,0.032928,0.035168,2.86675,0.037312
+1477,338.512,2.9541,3.46387,0.02656,0.414528,0.006144,0.006144,0.01024,0.0328,0.03616,2.89424,0.037056
+1478,242.052,4.13135,3.82829,0.025152,0.417088,0.006496,0.004448,0.01024,0.034336,0.035296,3.25837,0.036864
+1479,215.67,4.63672,3.44067,0.028672,0.38912,0.007872,0.005504,0.010592,0.03248,0.035616,2.8912,0.039616
+1480,195.122,5.125,3.51472,0.026016,0.469376,0.00672,0.005376,0.010976,0.032704,0.034912,2.89178,0.036864
+1481,273.03,3.6626,3.8441,0.026304,0.424256,0.007264,0.005024,0.012288,0.032768,0.034816,3.26451,0.036864
+1482,205.808,4.85889,3.43654,0.028704,0.382944,0.008032,0.004256,0.010304,0.032704,0.036224,2.89354,0.03984
+1483,256.096,3.90479,3.43062,0.0256,0.378016,0.006976,0.004288,0.011392,0.031424,0.036608,2.89818,0.038144
+1484,232.966,4.29248,3.82976,0.026624,0.425984,0.007584,0.004704,0.01024,0.032768,0.036704,3.24829,0.036864
+1485,225.725,4.43018,4.26899,0.025536,0.38704,0.007968,0.005536,0.010592,0.032896,0.035168,3.72928,0.034976
+1486,200.765,4.98096,3.41197,0.026656,0.382944,0.007296,0.004832,0.0104,0.032768,0.036608,2.87334,0.03712
+1487,238.973,4.18457,3.82867,0.025568,0.415488,0.006368,0.006016,0.010368,0.032768,0.034848,3.26038,0.036864
+1488,220.026,4.54492,4.35264,0.025472,0.452576,0.00784,0.004448,0.01024,0.033984,0.035648,3.74579,0.03664
+1489,200.706,4.98242,3.44122,0.026208,0.397856,0.006592,0.005568,0.010176,0.033088,0.035136,2.88938,0.037216
+1490,226.024,4.42432,3.83459,0.026528,0.421728,0.007008,0.004192,0.011328,0.032992,0.035552,3.25837,0.036896
+1491,227.556,4.39453,4.27629,0.02528,0.372736,0.00736,0.004896,0.01024,0.032768,0.0512,3.73558,0.036224
+1492,203.134,4.92285,3.40195,0.02512,0.372736,0.007552,0.004736,0.011424,0.033632,0.036224,2.87363,0.036896
+1493,246.213,4.06152,3.78867,0.026176,0.375232,0.006272,0.006016,0.011712,0.032416,0.03536,3.25875,0.036736
+1494,229.108,4.36475,4.28269,0.025376,0.394304,0.007008,0.004192,0.011328,0.03504,0.035552,3.7335,0.036384
+1495,209.022,4.78418,3.41814,0.026624,0.384192,0.006976,0.005216,0.010688,0.0328,0.035008,2.87974,0.036896
+1496,248.453,4.0249,3.73181,0.026624,0.376608,0.00672,0.005664,0.010688,0.032704,0.03616,3.19994,0.036704
+1497,216.88,4.61084,4.26394,0.026496,0.376512,0.006592,0.00592,0.010464,0.032768,0.034816,3.7335,0.036864
+1498,205.499,4.86621,3.39549,0.026624,0.374048,0.00688,0.005472,0.010656,0.033056,0.036256,2.86506,0.03744
+1499,247.313,4.04346,3.41155,0.026208,0.383424,0.007904,0.005504,0.010528,0.031328,0.036192,2.87373,0.036736
+1500,244.537,4.08936,3.80733,0.024672,0.374784,0.0072,0.005088,0.01024,0.034016,0.035648,3.28042,0.035264
+1501,223.069,4.48291,3.41683,0.026592,0.387776,0.006336,0.006016,0.01024,0.032768,0.035968,2.87376,0.037376
+1502,243.549,4.10596,3.42016,0.026624,0.397312,0.007872,0.004416,0.01024,0.033952,0.03552,2.86736,0.036864
+1503,255.617,3.91211,3.82218,0.025632,0.389088,0.007488,0.0048,0.011264,0.031744,0.036448,3.27869,0.037024
+1504,188.634,5.30127,3.97827,0.028672,0.532,0.02048,0.004576,0.01776,0.035424,0.036,3.26749,0.035872
+1505,216.011,4.62939,4.37725,0.026528,0.489824,0.00656,0.005952,0.010432,0.032768,0.034816,3.7335,0.036864
+1506,194.013,5.1543,4.55344,0.02544,0.674976,0.006912,0.004192,0.01216,0.032896,0.036064,3.72544,0.03536
+1507,195.887,5.10498,3.43808,0.026624,0.397312,0.008,0.005472,0.010688,0.03264,0.03536,2.88358,0.0384
+1508,231.36,4.32227,3.53437,0.026624,0.500128,0.007296,0.0048,0.0104,0.0328,0.036,2.8801,0.036224
+1509,238.167,4.19873,4.09162,0.026656,0.66048,0.006848,0.004416,0.012256,0.032768,0.034816,3.2768,0.036576
+1510,222.875,4.48682,3.4345,0.026624,0.39056,0.006752,0.005504,0.01072,0.03232,0.035424,2.88883,0.03776
+1511,247.942,4.0332,3.4263,0.026592,0.393216,0.006176,0.005984,0.0104,0.0328,0.03632,2.8759,0.038912
+1512,246.302,4.06006,3.78061,0.026432,0.368832,0.006208,0.00576,0.010496,0.032448,0.0352,3.25965,0.035584
+1513,209.75,4.76758,3.71642,0.028672,0.684032,0.007904,0.005504,0.011168,0.0328,0.036288,2.87187,0.038176
+1514,210.375,4.75342,4.38682,0.025248,0.487392,0.006176,0.015904,0.01232,0.042432,0.041984,3.71917,0.036192
+1515,233.523,4.28223,3.4345,0.026624,0.391168,0.007808,0.004512,0.011392,0.031616,0.034816,2.8897,0.036864
+1516,245.299,4.07666,3.42176,0.024864,0.38912,0.007808,0.00448,0.01024,0.033984,0.035648,2.87885,0.036768
+1517,249.118,4.01416,3.49178,0.025312,0.448512,0.007648,0.005792,0.011136,0.034816,0.036896,2.88355,0.038112
+1518,231.412,4.32129,3.4183,0.025376,0.397344,0.008,0.004256,0.01024,0.032768,0.036864,2.8663,0.037152
+1519,257.383,3.88525,3.40595,0.026624,0.371936,0.006944,0.005504,0.010656,0.032576,0.035232,2.87949,0.036992
+1520,242.453,4.12451,3.78646,0.026528,0.380224,0.006944,0.004096,0.011296,0.032896,0.035712,3.25219,0.036576
+1521,224.537,4.45361,4.06224,0.026592,0.572864,0.032704,0.004768,0.012288,0.035904,0.03536,3.30573,0.036032
+1522,209.836,4.76562,3.42416,0.026208,0.395616,0.006656,0.005248,0.01072,0.033088,0.036416,2.87376,0.036448
+1523,244.275,4.09375,3.77235,0.025984,0.373408,0.007744,0.004544,0.01152,0.032608,0.035104,3.24445,0.036992
+1524,222.319,4.49805,4.33152,0.026624,0.458752,0.007296,0.004992,0.011264,0.03312,0.03552,3.71709,0.036864
+1525,188.46,5.30615,3.43446,0.026432,0.39408,0.007712,0.004576,0.011648,0.0328,0.035456,2.88355,0.038208
+1526,243.926,4.09961,3.78864,0.026656,0.38304,0.006304,0.005536,0.010688,0.032928,0.036096,3.25094,0.036448
+1527,227.859,4.38867,4.33562,0.026624,0.458496,0.0064,0.005536,0.010656,0.034112,0.035552,3.72138,0.036864
+1528,162.617,6.14941,3.56182,0.035168,0.52016,0.008064,0.004224,0.020512,0.040768,0.036576,2.85946,0.036896
+1529,326.219,3.06543,3.85226,0.025472,0.423936,0.007712,0.004544,0.011904,0.032736,0.035232,3.27421,0.036512
+1530,195.42,5.11719,4.26506,0.026624,0.385024,0.007808,0.00448,0.01024,0.034048,0.035584,3.72531,0.035936
+1531,242.482,4.12402,3.39398,0.025024,0.364544,0.007744,0.004544,0.0104,0.033696,0.035072,2.87555,0.037408
+1532,241.538,4.14014,3.72349,0.026336,0.381408,0.007584,0.004704,0.01024,0.032768,0.036064,3.18874,0.035648
+1533,236.79,4.22314,4.24259,0.026656,0.36656,0.00624,0.005984,0.010304,0.032768,0.036064,3.72166,0.036352
+1534,206.493,4.84277,3.42221,0.026624,0.382048,0.006944,0.004224,0.01152,0.033056,0.035296,2.88518,0.037312
+1535,213.534,4.68311,3.73315,0.026432,0.4016,0.006176,0.006144,0.01024,0.032768,0.035904,3.17712,0.036768
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..9905e7a
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,157.371,6.3908,5.65838,0.0265229,0.424142,0.00727309,0.00572794,0.0112256,5.14657,0.0369196
+max_1024,202.332,8.43457,6.86902,0.04512,1.24029,0.044672,0.023136,0.053248,6.29475,0.29376
+min_1024,118.56,4.94238,5.10566,0.022528,0.344544,0.006112,0.004096,0.009184,4.64557,0.034816
+512,151.01,6.62207,5.71872,0.02352,0.40928,0.006496,0.006144,0.01024,5.2265,0.036544
+513,157.939,6.33154,6.16448,0.026624,0.3768,0.006176,0.006144,0.01024,5.70166,0.036832
+514,145.202,6.88696,5.31994,0.026112,0.3712,0.007808,0.005536,0.011232,4.86154,0.036512
+515,167.834,5.95825,5.3023,0.026624,0.36832,0.006464,0.006112,0.010304,4.84758,0.036896
+516,158.938,6.29175,5.32166,0.023488,0.3864,0.006816,0.006112,0.010272,4.85302,0.035552
+517,169.966,5.88354,6.16966,0.0264,0.370912,0.007232,0.005056,0.01024,5.71392,0.035904
+518,145.496,6.87305,5.35414,0.026176,0.401408,0.007072,0.005536,0.010656,4.86797,0.035328
+519,161.572,6.18921,5.73082,0.025088,0.411648,0.007392,0.004896,0.011296,5.23363,0.036864
+520,159.13,6.28418,6.18704,0.026624,0.36448,0.006208,0.00608,0.010304,5.73776,0.035584
+521,142.753,7.00513,5.33507,0.026112,0.397792,0.006176,0.006144,0.01024,4.85178,0.036832
+522,161.808,6.18018,5.74262,0.026624,0.429792,0.006432,0.006144,0.010272,5.22768,0.03568
+523,158.563,6.30664,6.20816,0.025216,0.374784,0.007872,0.005568,0.010784,5.74704,0.036896
+524,141.877,7.04834,5.33094,0.02656,0.407616,0.0072,0.005088,0.010336,4.83728,0.036864
+525,164.089,6.09424,5.69958,0.026656,0.4192,0.006752,0.005824,0.010592,5.19568,0.03488
+526,154.718,6.46338,6.18205,0.027936,0.388896,0.007072,0.005536,0.01072,5.70589,0.036
+527,146.317,6.83447,5.70368,0.026624,0.376544,0.006432,0.005568,0.010752,5.24259,0.035168
+528,154.648,6.46631,5.30227,0.026656,0.39728,0.006144,0.006144,0.01024,4.81651,0.039296
+529,153.673,6.50732,5.31046,0.029824,0.38912,0.00704,0.005664,0.011872,4.83168,0.035264
+530,169.536,5.89844,5.29818,0.026624,0.37888,0.007968,0.00432,0.011392,4.83363,0.03536
+531,160.514,6.22998,5.34941,0.026016,0.440544,0.00656,0.006112,0.011872,4.82144,0.036864
+532,170.227,5.87451,6.15354,0.026624,0.384992,0.006176,0.006144,0.01024,5.6832,0.03616
+533,121.047,8.26123,6.16227,0.025312,1.24029,0.006816,0.005792,0.010592,4.83738,0.036096
+534,120.28,8.31396,5.36755,0.024576,0.43776,0.006656,0.00592,0.010464,4.84557,0.036608
+535,149.62,6.68359,5.84064,0.026528,0.938528,0.006336,0.005312,0.011168,4.8168,0.035968
+536,166.274,6.01416,5.31024,0.026624,0.392896,0.006464,0.006112,0.010272,4.83123,0.03664
+537,163.748,6.10693,5.75958,0.025248,0.439744,0.006656,0.005888,0.010496,5.2359,0.035648
+538,155.399,6.43506,6.16202,0.026528,0.404704,0.00704,0.0056,0.01072,5.67098,0.036448
+539,145.89,6.85449,5.30026,0.025536,0.395232,0.006176,0.006144,0.01024,4.82083,0.036096
+540,166.816,5.99463,5.66298,0.025088,0.397344,0.008032,0.005536,0.01072,5.17965,0.036608
+541,157.575,6.34619,6.12352,0.026624,0.388224,0.007008,0.005216,0.011008,5.65034,0.035104
+542,148.277,6.74414,5.27552,0.026624,0.376096,0.00688,0.005888,0.010496,4.8128,0.036736
+543,164.922,6.06348,5.65501,0.02608,0.369696,0.007392,0.004864,0.011424,5.20026,0.035296
+544,160.754,6.2207,5.8927,0.026496,0.373184,0.006432,0.005952,0.010464,5.43126,0.038912
+545,148.848,6.71826,5.64838,0.026272,0.39104,0.006624,0.005952,0.010432,5.17254,0.03552
+546,157.806,6.33691,5.25107,0.026624,0.387072,0.008,0.005568,0.010784,4.77616,0.036864
+547,162.437,6.15625,5.81616,0.026624,0.517472,0.008608,0.005536,0.011104,5.21011,0.036704
+548,155.116,6.44678,5.29229,0.027328,0.38912,0.007648,0.00464,0.011712,4.81533,0.036512
+549,163.356,6.12158,5.6599,0.026656,0.386368,0.006816,0.005856,0.010528,5.18755,0.036128
+550,153.202,6.52734,6.60077,0.026048,0.45536,0.007552,0.004736,0.011456,6.0601,0.03552
+551,138.659,7.21191,6.30832,0.02576,0.493216,0.006336,0.006144,0.01024,5.7303,0.03632
+552,126.264,7.91992,5.7952,0.026816,0.516032,0.007904,0.005504,0.01088,5.19184,0.036224
+553,178.927,5.58887,6.15203,0.026624,0.395264,0.007296,0.004992,0.011296,5.66986,0.036704
+554,144.276,6.93115,5.40989,0.026688,0.4792,0.007968,0.005536,0.010752,4.84179,0.037952
+555,160.653,6.22461,5.69549,0.026624,0.429568,0.006656,0.005952,0.010432,5.18115,0.035104
+556,159.75,6.25977,6.17866,0.026528,0.413824,0.007328,0.004928,0.011904,5.67744,0.036704
+557,140.698,7.10742,5.3177,0.026656,0.444704,0.006784,0.005824,0.01056,4.788,0.035168
+558,169.061,5.91504,5.63366,0.026624,0.390624,0.006688,0.005888,0.010528,5.15683,0.03648
+559,159.006,6.28906,6.11331,0.026624,0.36768,0.00704,0.005536,0.010752,5.65878,0.036896
+560,146.926,6.80615,5.63504,0.0256,0.365728,0.006976,0.005728,0.010208,5.18586,0.034944
+561,157.055,6.36719,5.30819,0.026208,0.395712,0.00768,0.004576,0.011648,4.82573,0.03664
+562,155.753,6.42041,5.2248,0.02864,0.376544,0.015008,0.006144,0.010272,4.75299,0.0352
+563,169.298,5.90674,5.23712,0.026592,0.376416,0.017216,0.005952,0.010464,4.76365,0.036832
+564,167.075,5.98535,5.41366,0.02528,0.530432,0.00752,0.004768,0.012288,4.7975,0.035872
+565,160.175,6.24316,6.11971,0.026016,0.387968,0.00768,0.004608,0.011648,5.6465,0.035296
+566,151.58,6.59717,5.23597,0.026624,0.372064,0.006816,0.00576,0.010624,4.77757,0.036512
+567,162.192,6.16553,5.63341,0.026624,0.411648,0.007776,0.005536,0.010848,5.13475,0.036224
+568,160.842,6.21729,6.12086,0.026624,0.4056,0.008,0.005536,0.010688,5.62816,0.036256
+569,142.509,7.01709,5.30765,0.026624,0.42352,0.00656,0.006048,0.010336,4.79779,0.036768
+570,168.421,5.9375,5.64691,0.025696,0.398816,0.006496,0.006048,0.010336,5.16304,0.03648
+571,156.863,6.375,6.03802,0.026208,0.387968,0.007584,0.004736,0.01152,5.56416,0.03584
+572,149.927,6.66992,5.60461,0.026176,0.375232,0.006144,0.006144,0.01024,5.14416,0.036512
+573,159.988,6.25049,5.26045,0.026624,0.36864,0.007968,0.005536,0.010656,4.80499,0.036032
+574,149.315,6.69727,5.75293,0.02592,0.889632,0.007904,0.005536,0.011136,4.77696,0.03584
+575,178.304,5.6084,5.3288,0.026496,0.434656,0.00624,0.006144,0.01024,4.8087,0.03632
+576,165.495,6.04248,5.70198,0.0264,0.40608,0.007712,0.004576,0.011712,5.20822,0.03728
+577,157.879,6.33398,6.25459,0.026496,0.452736,0.007808,0.005568,0.010816,5.71574,0.035424
+578,142.311,7.02686,5.35514,0.026368,0.466624,0.00672,0.005888,0.010496,4.80256,0.03648
+579,163.096,6.13135,5.76515,0.026624,0.49152,0.007936,0.005536,0.010432,5.18765,0.035456
+580,159.788,6.2583,6.16656,0.026624,0.431488,0.006784,0.005824,0.01056,5.64957,0.035712
+581,149.162,6.7041,5.23568,0.025536,0.366464,0.006272,0.006144,0.01024,4.78413,0.036896
+582,166.979,5.98877,5.64022,0.026624,0.382144,0.006976,0.005632,0.010752,5.1712,0.036896
+583,159.813,6.25732,5.87782,0.026272,0.37872,0.00672,0.005856,0.010528,5.15597,0.29376
+584,147.243,6.7915,5.67635,0.026624,0.49152,0.006304,0.005984,0.01024,5.09882,0.036864
+585,161.361,6.19727,5.26141,0.02624,0.383328,0.00624,0.006144,0.01024,4.79379,0.035424
+586,156.419,6.39307,5.8184,0.028384,0.92752,0.006656,0.005664,0.012064,4.80122,0.036896
+587,160.918,6.21436,5.27213,0.026496,0.389824,0.006144,0.005952,0.010112,4.79789,0.035712
+588,169.13,5.9126,5.68829,0.025568,0.376832,0.006144,0.006144,0.024576,5.19987,0.049152
+589,152.166,6.57178,6.13168,0.026464,0.381088,0.007648,0.00464,0.011616,5.66339,0.036832
+590,147.148,6.7959,5.3352,0.025536,0.425696,0.006432,0.006144,0.01024,4.82461,0.036544
+591,168.532,5.93359,5.65811,0.026336,0.37152,0.007776,0.005568,0.009184,5.20189,0.03584
+592,157.224,6.36035,6.11101,0.026624,0.380224,0.006848,0.005888,0.010496,5.64429,0.03664
+593,147.731,6.76904,5.61725,0.025184,0.372736,0.007232,0.005056,0.0104,5.15875,0.037888
+594,145.372,6.87891,6.16246,0.026432,0.415936,0.008192,0.005568,0.01072,5.65872,0.036896
+595,151.692,6.59229,5.26822,0.02544,0.367872,0.006816,0.004096,0.01152,4.81504,0.03744
+596,159.888,6.25439,5.79152,0.0264,0.508192,0.006368,0.006144,0.01024,5.19782,0.036352
+597,156.815,6.37695,5.26627,0.02544,0.366272,0.006464,0.006144,0.01024,4.8128,0.038912
+598,153.927,6.49658,5.30227,0.028672,0.398912,0.006592,0.00608,0.010304,4.81616,0.035552
+599,151.726,6.59082,5.49533,0.029248,0.573408,0.007936,0.013888,0.010944,4.82464,0.035264
+600,165.535,6.04102,5.31267,0.026496,0.399648,0.0072,0.005088,0.010368,4.82867,0.0352
+601,170.51,5.86475,6.23021,0.026624,0.396672,0.006496,0.004384,0.011808,5.74922,0.035008
+602,144.073,6.94092,5.68784,0.026432,0.387776,0.006144,0.006144,0.01024,5.21546,0.035648
+603,158.379,6.31396,6.5688,0.025664,0.36432,0.00736,0.004928,0.01024,6.11942,0.036864
+604,135.03,7.40576,6.21101,0.026624,0.391072,0.006368,0.006016,0.026624,5.71802,0.036288
+605,148.557,6.73145,5.28621,0.026656,0.359744,0.007072,0.005376,0.01072,4.83978,0.036864
+606,152.313,6.56543,5.75078,0.026624,0.41888,0.007104,0.005568,0.010656,5.24656,0.035392
+607,143.952,6.94678,6.21443,0.025376,0.429696,0.006528,0.006048,0.010336,5.70083,0.035616
+608,149.664,6.68164,5.32051,0.02624,0.367584,0.008192,0.006144,0.01024,4.86573,0.036384
+609,162.695,6.14648,5.68323,0.026624,0.369792,0.00704,0.005536,0.010784,5.22774,0.035712
+610,153.939,6.49609,6.27315,0.026624,0.4608,0.00736,0.00496,0.011872,5.72659,0.034944
+611,145.32,6.88135,5.68934,0.026624,0.374752,0.006176,0.006144,0.02048,5.22035,0.034816
+612,157.357,6.35498,6.17187,0.026112,0.38352,0.006144,0.006144,0.01024,5.70368,0.036032
+613,135.548,7.37744,5.38214,0.026304,0.42768,0.006816,0.005728,0.011808,4.86694,0.036864
+614,166.193,6.01709,5.73402,0.026496,0.395232,0.006304,0.006144,0.01024,5.25312,0.03648
+615,154.24,6.4834,5.70778,0.026624,0.40288,0.00672,0.005888,0.010496,5.18144,0.073728
+616,151.794,6.58789,5.39443,0.02608,0.414016,0.006368,0.006144,0.01024,4.89472,0.036864
+617,163.356,6.12158,5.44371,0.025984,0.47152,0.006432,0.006144,0.01024,4.88845,0.034944
+618,163.356,6.12158,5.3928,0.026144,0.41664,0.00752,0.004768,0.011456,4.89069,0.035584
+619,165.615,6.03809,6.22755,0.026528,0.387424,0.007328,0.00496,0.011296,5.75382,0.036192
+620,144.745,6.90869,5.3711,0.026432,0.39344,0.007424,0.004832,0.012,4.89043,0.036544
+621,162.604,6.1499,5.77331,0.026624,0.405408,0.00624,0.006144,0.01024,5.28339,0.035264
+622,155.352,6.43701,6.2833,0.026112,0.407584,0.006624,0.005856,0.011616,5.79018,0.035328
+623,141.779,7.05322,5.38912,0.025376,0.409216,0.006528,0.006048,0.010336,4.89472,0.036896
+624,165.495,6.04248,5.7529,0.026304,0.393248,0.006496,0.006144,0.010272,5.27526,0.035168
+625,148.61,6.729,6.33987,0.026624,0.4824,0.00704,0.005536,0.01088,5.77126,0.036128
+626,147.604,6.7749,5.76035,0.026624,0.405504,0.007552,0.004736,0.01168,5.26806,0.036192
+627,153.569,6.51172,6.28998,0.026016,0.403808,0.006816,0.005696,0.010688,5.80198,0.034976
+628,142.599,7.0127,5.37962,0.026432,0.389568,0.007616,0.004672,0.011616,4.9031,0.036608
+629,164.643,6.07373,5.8049,0.0256,0.392128,0.007072,0.005696,0.010688,5.32803,0.03568
+630,151.737,6.59033,5.38742,0.026624,0.388448,0.006816,0.00576,0.010656,4.9127,0.036416
+631,159.514,6.26904,5.39034,0.028544,0.391296,0.0072,0.005088,0.01024,4.91248,0.035488
+632,164.419,6.08203,5.39443,0.026624,0.390208,0.00704,0.005536,0.010784,4.91862,0.035616
+633,150.345,6.65137,5.68211,0.025536,0.694272,0.007392,0.004896,0.012288,4.9025,0.035232
+634,164.577,6.07617,6.30602,0.025152,0.42352,0.00656,0.004096,0.01024,5.79994,0.036512
+635,139.852,7.15039,5.59309,0.026624,0.546464,0.006496,0.006144,0.012032,4.95962,0.035712
+636,162.746,6.14453,6.67443,0.026624,0.388192,0.007072,0.005632,0.010752,6.20115,0.035008
+637,126.139,7.92773,6.37571,0.026208,0.485824,0.006336,0.006144,0.01024,5.80608,0.03488
+638,144.786,6.90674,5.45901,0.026656,0.44848,0.00784,0.005536,0.010784,4.9233,0.036416
+639,165.589,6.03906,5.87184,0.026624,0.389152,0.006752,0.005856,0.010528,5.39651,0.036416
+640,150.821,6.63037,6.28941,0.026624,0.395264,0.007488,0.0048,0.011488,5.8071,0.03664
+641,140.679,7.1084,5.41942,0.02512,0.387072,0.007296,0.004992,0.01024,4.94797,0.036736
+642,159.39,6.27393,5.82627,0.026624,0.388352,0.006912,0.005664,0.01072,5.35142,0.036576
+643,153.858,6.49951,6.30061,0.025536,0.38912,0.0072,0.005088,0.01024,5.82845,0.034976
+644,140.892,7.09766,5.49539,0.0264,0.408416,0.007936,0.005536,0.010528,5.00128,0.035296
+645,160.012,6.24951,5.83165,0.025568,0.39936,0.007872,0.005536,0.011168,5.34682,0.035328
+646,153.569,6.51172,6.29734,0.02656,0.39328,0.007584,0.004704,0.011584,5.81702,0.036608
+647,140.063,7.13965,5.47773,0.026656,0.403232,0.006336,0.006144,0.01024,4.98867,0.036448
+648,160.817,6.21826,5.83555,0.025344,0.382976,0.007936,0.005536,0.010912,5.36602,0.036832
+649,149.795,6.67578,6.34496,0.026304,0.440864,0.00736,0.004928,0.011264,5.81898,0.035264
+650,142.015,7.0415,5.88618,0.026368,0.39776,0.008,0.005568,0.010656,5.40246,0.03536
+651,146.884,6.80811,6.18634,0.02624,0.43232,0.006336,0.006144,0.01024,5.66672,0.038336
+652,145.579,6.86914,5.51222,0.026624,0.4424,0.007648,0.004608,0.011552,4.98259,0.0368
+653,162.889,6.13916,5.81744,0.026624,0.403456,0.007936,0.005568,0.010624,5.32707,0.03616
+654,152.847,6.54248,5.4792,0.025376,0.411648,0.00752,0.004768,0.01216,4.98086,0.036864
+655,155.765,6.41992,5.46205,0.024576,0.40928,0.006464,0.006144,0.01024,4.9697,0.035648
+656,157.055,6.36719,5.6073,0.026624,0.542688,0.006176,0.006144,0.01024,4.97869,0.036736
+657,159.278,6.27832,5.65306,0.025152,0.538624,0.00736,0.00496,0.012256,5.02922,0.035488
+658,160.213,6.2417,6.37338,0.026656,0.414688,0.007168,0.0056,0.01072,5.87322,0.035328
+659,136.67,7.31689,5.4743,0.026656,0.394368,0.007008,0.005568,0.010656,4.99466,0.035392
+660,166.898,5.9917,5.85523,0.0264,0.397536,0.006144,0.00592,0.010464,5.37334,0.035424
+661,147,6.80273,6.35533,0.026176,0.428448,0.00656,0.006016,0.010368,5.84294,0.034816
+662,142.618,7.01172,5.5528,0.025248,0.431264,0.007008,0.0056,0.01072,5.03747,0.035488
+663,158.945,6.2915,5.90224,0.025312,0.400416,0.00704,0.005536,0.010976,5.41693,0.036032
+664,150.444,6.64697,6.32832,0.026656,0.391136,0.007296,0.004992,0.01024,5.85286,0.035136
+665,139.767,7.15479,5.50096,0.026272,0.428384,0.007872,0.005568,0.01072,4.98656,0.035584
+666,159.043,6.2876,5.91818,0.026624,0.446464,0.0072,0.005088,0.0104,5.38608,0.03632
+667,149.522,6.68799,6.38157,0.026656,0.401408,0.008032,0.005536,0.01072,5.89347,0.035744
+668,140.053,7.14014,5.91462,0.026624,0.42912,0.00704,0.005568,0.01072,5.39994,0.035616
+669,148.234,6.74609,6.74406,0.026112,0.391808,0.00784,0.005536,0.01072,6.26534,0.036704
+670,130.371,7.67041,6.39901,0.0256,0.443808,0.006464,0.004416,0.011584,5.87206,0.035072
+671,145.053,6.89404,5.49123,0.026976,0.386656,0.00672,0.00592,0.010464,5.0176,0.036896
+672,163.083,6.13184,5.91901,0.026528,0.417376,0.006912,0.005728,0.010656,5.41651,0.035296
+673,148.095,6.75244,6.37725,0.026624,0.398944,0.00656,0.006048,0.010336,5.8921,0.03664
+674,142.977,6.99414,5.87162,0.026784,0.382816,0.007776,0.005568,0.010752,5.40282,0.035104
+675,147.827,6.76465,6.34061,0.026368,0.399456,0.006304,0.006016,0.010368,5.8569,0.0352
+676,141.358,7.07422,5.52736,0.026368,0.411936,0.007168,0.005088,0.01024,5.02989,0.036672
+677,157.502,6.34912,5.94339,0.026624,0.416896,0.00704,0.0056,0.010656,5.44166,0.034912
+678,139.301,7.17871,5.84621,0.026624,0.37888,0.007296,0.004992,0.010432,5.3792,0.038784
+679,165.642,6.03711,5.49472,0.026624,0.401408,0.008032,0.005344,0.010656,5.00586,0.0368
+680,159.514,6.26904,5.55232,0.02624,0.425504,0.00704,0.005664,0.010656,5.04179,0.035424
+681,160.163,6.24365,5.50781,0.026336,0.396192,0.00624,0.006144,0.01136,5.02467,0.036864
+682,157.623,6.34424,6.42198,0.026624,0.423936,0.007872,0.005536,0.011168,5.91053,0.03632
+683,139.121,7.18799,5.50483,0.028288,0.399744,0.006144,0.006144,0.01024,5.0176,0.036672
+684,160.476,6.23145,5.65046,0.026624,0.565248,0.007648,0.00464,0.012288,4.99712,0.036896
+685,149.555,6.68652,6.86902,0.026464,0.489632,0.006144,0.006144,0.01024,6.29475,0.035648
+686,131.434,7.6084,6.22474,0.025408,0.692224,0.008192,0.006144,0.012256,5.44531,0.0352
+687,138.603,7.21484,5.53517,0.026944,0.43344,0.006656,0.004096,0.010432,5.0176,0.036
+688,159.95,6.25195,6.45734,0.026624,0.487296,0.006272,0.006144,0.01024,5.88595,0.034816
+689,136.442,7.3291,5.55811,0.024704,0.448544,0.00736,0.004896,0.011328,5.02474,0.036544
+690,161.171,6.20459,5.87792,0.025472,0.384992,0.007712,0.004576,0.011712,5.4073,0.03616
+691,146.926,6.80615,6.41171,0.026112,0.432224,0.00688,0.020384,0.010336,5.87981,0.035968
+692,141.057,7.08936,5.63648,0.025216,0.52736,0.00704,0.005536,0.010624,5.02365,0.037056
+693,158.244,6.31934,5.89619,0.026624,0.397312,0.00784,0.005536,0.010688,5.41133,0.036864
+694,153.443,6.51709,6.39187,0.026496,0.416,0.00688,0.005696,0.010688,5.88973,0.036384
+695,142.232,7.03076,5.5296,0.027648,0.375808,0.008032,0.005536,0.01072,5.06499,0.036864
+696,151.692,6.59229,5.9089,0.026816,0.402688,0.007072,0.005536,0.010688,5.41923,0.036864
+697,154.31,6.48047,6.37686,0.026656,0.372224,0.006624,0.006112,0.010272,5.91872,0.036256
+698,142.143,7.03516,5.49622,0.026208,0.37728,0.008032,0.005536,0.010784,5.03216,0.036224
+699,162.269,6.1626,5.888,0.026624,0.364576,0.00752,0.004768,0.011488,5.43766,0.03536
+700,145.125,6.89062,6.77318,0.03728,0.386912,0.006304,0.006144,0.01024,6.29056,0.035744
+701,135.692,7.36963,6.34637,0.026528,0.38448,0.006784,0.00592,0.010464,5.87571,0.03648
+702,131.535,7.60254,5.98998,0.038912,0.47104,0.006144,0.006144,0.01024,5.42106,0.036448
+703,165.749,6.0332,6.33146,0.026624,0.366464,0.006272,0.006144,0.01024,5.87981,0.035904
+704,144.674,6.91211,5.48867,0.026624,0.374592,0.006336,0.006144,0.01024,5.02784,0.036896
+705,158.821,6.29639,5.88595,0.026624,0.397312,0.007648,0.004672,0.011616,5.4025,0.035584
+706,155.753,6.42041,6.3569,0.0264,0.3776,0.006144,0.006144,0.01024,5.89414,0.036224
+707,139.9,7.14795,5.88614,0.02672,0.41792,0.007616,0.004672,0.011648,5.38214,0.035424
+708,152.904,6.54004,6.39197,0.026528,0.428064,0.006208,0.006144,0.01024,5.87946,0.035328
+709,136.552,7.32324,5.72019,0.026432,0.56544,0.006272,0.014336,0.012224,5.05862,0.036864
+710,162.064,6.17041,5.86253,0.026656,0.38704,0.007776,0.005568,0.010688,5.38838,0.036416
+711,153.777,6.50293,5.46874,0.026208,0.38192,0.008,0.005536,0.010688,5.00138,0.035008
+712,159.34,6.27588,5.47357,0.026304,0.370688,0.006496,0.006112,0.01024,5.01712,0.036608
+713,159.651,6.26367,5.59309,0.042432,0.467456,0.006208,0.006144,0.01024,5.02512,0.035488
+714,139.027,7.19287,6.06077,0.02528,0.57344,0.007328,0.004416,0.012832,5.40182,0.035648
+715,165.508,6.04199,6.42208,0.026624,0.438272,0.007712,0.004576,0.011712,5.89677,0.036416
+716,119.71,8.35352,5.75875,0.040736,0.622272,0.006688,0.005696,0.014368,5.03235,0.03664
+717,184.388,5.42334,5.75683,0.025184,0.642624,0.006592,0.006016,0.012096,5.02803,0.036288
+718,157.26,6.35889,6.38525,0.026656,0.38912,0.007904,0.005536,0.010688,5.9089,0.036448
+719,139.064,7.19092,5.51226,0.026624,0.374496,0.006432,0.006144,0.01024,5.04218,0.046144
+720,157.357,6.35498,5.59718,0.026592,0.497632,0.006208,0.00528,0.013152,5.01277,0.035552
+721,154.624,6.46729,5.53398,0.0264,0.447456,0.007232,0.005056,0.0104,5.0009,0.036544
+722,168.007,5.95215,5.50029,0.026368,0.379328,0.021504,0.00512,0.018432,5.0128,0.036736
+723,163.448,6.11816,5.4743,0.026624,0.37888,0.0072,0.005088,0.010304,5.01059,0.035616
+724,151.412,6.60449,5.63814,0.026624,0.50176,0.006144,0.006144,0.01024,5.05037,0.036864
+725,151.133,6.6167,5.61021,0.026944,0.53696,0.007264,0.005024,0.018432,4.97869,0.036896
+726,160.213,6.2417,5.56032,0.026464,0.450752,0.007264,0.004992,0.011296,5.02058,0.038976
+727,153.351,6.521,5.58013,0.026624,0.47856,0.006816,0.005856,0.014624,5.01142,0.036224
+728,156.479,6.39062,5.48176,0.0264,0.390528,0.007008,0.005568,0.01072,5.00522,0.03632
+729,156.348,6.396,5.48368,0.02624,0.39776,0.007264,0.005056,0.011744,4.9991,0.036512
+730,160,6.25,5.58694,0.031904,0.478048,0.006144,0.006144,0.010368,5.01856,0.035776
+731,153.351,6.521,5.55008,0.026624,0.462848,0.007328,0.00496,0.011296,5.00016,0.036864
+732,164.432,6.08154,5.53206,0.026144,0.436672,0.00656,0.006016,0.010368,5.00941,0.036896
+733,158.846,6.29541,5.51117,0.026624,0.425984,0.007584,0.004704,0.01152,4.99789,0.036864
+734,161.273,6.20068,5.91872,0.02672,0.407456,0.007904,0.005568,0.010656,5.42355,0.036864
+735,150.334,6.65186,6.36083,0.026624,0.405504,0.00736,0.004928,0.011296,5.86851,0.036608
+736,141.769,7.05371,5.86806,0.026816,0.4008,0.007136,0.005536,0.010848,5.3801,0.036832
+737,150.788,6.63184,6.39795,0.026624,0.417568,0.006368,0.006144,0.01024,5.89414,0.036864
+738,143.157,6.98535,5.49434,0.027968,0.391872,0.007456,0.004832,0.011392,5.0144,0.036416
+739,157.976,6.33008,5.91261,0.025408,0.413632,0.006208,0.006144,0.01024,5.41491,0.036064
+740,152.528,6.55615,5.79798,0.026336,0.389504,0.007776,0.005536,0.010656,5.32038,0.037792
+741,149.555,6.68652,5.52454,0.026624,0.428032,0.006144,0.006144,0.010304,5.01104,0.036256
+742,167.279,5.97803,5.43347,0.0264,0.383424,0.006144,0.006144,0.01024,4.96435,0.036768
+743,161.209,6.20312,5.48454,0.024224,0.395616,0.007456,0.004832,0.011456,5.0041,0.036864
+744,159.427,6.27246,6.35776,0.025536,0.395264,0.007776,0.004512,0.011328,5.87782,0.03552
+745,140.679,7.1084,5.49661,0.02624,0.42656,0.006304,0.006144,0.01024,4.98438,0.036736
+746,153.5,6.51465,5.90768,0.026624,0.438272,0.007936,0.005536,0.010656,5.38246,0.036192
+747,158.686,6.30176,6.30784,0.026624,0.378496,0.006528,0.006048,0.010336,5.84496,0.034848
+748,142.728,7.00635,5.49984,0.025504,0.403456,0.007808,0.005536,0.01072,5.00992,0.036896
+749,161.07,6.2085,5.82634,0.026112,0.381952,0.006144,0.006144,0.01024,5.35962,0.036128
+750,154.811,6.45947,6.32858,0.026528,0.38128,0.008,0.005536,0.010688,5.86125,0.035296
+751,140.746,7.10498,5.8441,0.026624,0.393216,0.007264,0.005024,0.01024,5.36576,0.035968
+752,154.449,6.47461,6.6847,0.026144,0.385568,0.00736,0.004896,0.01136,6.2137,0.03568
+753,130.305,7.67432,6.32886,0.02624,0.420768,0.007744,0.004544,0.011712,5.82243,0.035424
+754,144.063,6.94141,5.4272,0.026368,0.381184,0.00768,0.004608,0.011616,4.95888,0.036864
+755,163.135,6.12988,5.86758,0.02624,0.389472,0.006656,0.005984,0.0104,5.39238,0.036448
+756,150.888,6.62744,6.33744,0.026784,0.38784,0.006144,0.006144,0.01024,5.86464,0.035648
+757,143.227,6.98193,5.43904,0.026176,0.375744,0.008064,0.004224,0.01024,4.97808,0.036512
+758,161.476,6.19287,5.84064,0.026656,0.395232,0.006144,0.006144,0.01024,5.35965,0.036576
+759,154.031,6.49219,6.30838,0.026784,0.390656,0.00704,0.005536,0.010752,5.83232,0.035296
+760,141.564,7.06396,5.83264,0.0264,0.401632,0.007808,0.005536,0.011264,5.3432,0.0368
+761,153.685,6.50684,6.14605,0.026624,0.402816,0.006784,0.005792,0.010592,5.65587,0.037568
+762,146.926,6.80615,5.44451,0.025504,0.406592,0.007072,0.005568,0.010848,4.95206,0.036864
+763,156.935,6.37207,5.64224,0.026624,0.364544,0.007328,0.00496,0.011296,5.18982,0.037664
+764,160.213,6.2417,5.41773,0.026816,0.384928,0.006816,0.00576,0.010656,4.94749,0.035264
+765,155.128,6.44629,5.97402,0.026656,0.518112,0.009376,0.00496,0.012288,5.36733,0.035296
+766,151.827,6.58643,5.4129,0.027968,0.391552,0.006496,0.006112,0.01136,4.93354,0.035872
+767,161.846,6.17871,5.8184,0.026656,0.405472,0.007936,0.004352,0.011712,5.32678,0.035488
+768,153.916,6.49707,6.68435,0.026656,0.39936,0.008032,0.005536,0.010784,6.19744,0.036544
+769,133.795,7.47412,6.3497,0.02544,0.445792,0.006816,0.005792,0.010624,5.81978,0.035456
+770,141.661,7.05908,5.58304,0.026368,0.56336,0.00688,0.00576,0.011904,4.93235,0.036416
+771,161.133,6.20605,6.26566,0.025408,0.392448,0.006912,0.005664,0.01072,5.7897,0.034816
+772,142.857,7,5.43949,0.026368,0.401248,0.00656,0.006048,0.010336,4.95325,0.03568
+773,162.565,6.15137,5.79734,0.026656,0.389088,0.006144,0.006144,0.01024,5.32256,0.036512
+774,153.305,6.52295,6.32803,0.026624,0.404544,0.007104,0.005568,0.010816,5.8368,0.036576
+775,141.613,7.06152,5.41638,0.026368,0.402816,0.00704,0.005568,0.010912,4.9272,0.03648
+776,164.962,6.06201,5.8113,0.026624,0.404896,0.006752,0.005824,0.010592,5.3207,0.035904
+777,151.794,6.58789,6.27818,0.0264,0.397536,0.0072,0.005088,0.011936,5.79414,0.035872
+778,145.548,6.87061,5.75923,0.0264,0.370208,0.007104,0.005632,0.010752,5.30429,0.034848
+779,144.786,6.90674,6.30506,0.026656,0.421824,0.006176,0.006144,0.01024,5.79789,0.036128
+780,148.02,6.75586,5.3975,0.026624,0.387072,0.007264,0.005024,0.011296,4.92403,0.036192
+781,165.255,6.05127,5.76538,0.026016,0.379776,0.007744,0.005536,0.010656,5.29878,0.036864
+782,154.613,6.46777,5.7143,0.02624,0.373504,0.007232,0.005056,0.01024,5.25312,0.038912
+783,156.623,6.38477,5.36371,0.02656,0.376064,0.006976,0.005664,0.010528,4.90278,0.035136
+784,159.08,6.28613,5.38422,0.02416,0.40592,0.00736,0.004928,0.011328,4.89475,0.035776
+785,166.491,6.00635,6.32154,0.026048,0.44064,0.0064,0.006144,0.012288,5.79379,0.036224
+786,125.552,7.96484,5.98627,0.026624,0.575456,0.008224,0.006144,0.012288,5.3207,0.036832
+787,171.28,5.83838,5.40387,0.026336,0.416,0.006176,0.006144,0.01024,4.90221,0.036768
+788,166.966,5.98926,5.77955,0.026912,0.387072,0.007712,0.004576,0.011712,5.3049,0.036672
+789,152.585,6.55371,6.23002,0.026624,0.392928,0.006432,0.006144,0.01024,5.7521,0.035552
+790,147.253,6.79102,5.3569,0.026624,0.371712,0.007168,0.005632,0.01072,4.89818,0.036864
+791,161.846,6.17871,5.78464,0.026624,0.4096,0.00784,0.004448,0.01136,5.28886,0.035904
+792,159.502,6.26953,6.22666,0.026368,0.381888,0.0072,0.005088,0.01024,5.76019,0.03568
+793,144.154,6.93701,5.33891,0.026528,0.381792,0.00736,0.004928,0.011296,4.87059,0.036416
+794,167.402,5.97363,5.71578,0.026432,0.364736,0.007616,0.004672,0.011584,5.26406,0.036672
+795,158.183,6.32178,5.39216,0.026624,0.367872,0.006912,0.0056,0.010688,4.93782,0.03664
+796,141.134,7.08545,5.89472,0.028224,0.674592,0.006368,0.006144,0.01024,5.13024,0.038912
+797,170.057,5.88037,5.36986,0.026624,0.38912,0.007648,0.00464,0.011616,4.89526,0.034944
+798,166.018,6.02344,5.94122,0.026624,0.548864,0.00944,0.004896,0.012288,5.30227,0.036832
+799,151.704,6.5918,5.3495,0.026368,0.38352,0.007744,0.005568,0.010784,4.87878,0.036736
+800,166.328,6.01221,5.74874,0.026624,0.417408,0.007584,0.005088,0.0104,5.24477,0.036864
+801,144.93,6.8999,6.67648,0.026496,0.441856,0.006784,0.00544,0.010944,6.15014,0.034816
+802,146.422,6.82959,6.18422,0.026304,0.379296,0.007968,0.005568,0.01072,5.71814,0.036224
+803,144.704,6.91064,5.73658,0.026304,0.389792,0.007904,0.005536,0.011168,5.25923,0.03664
+804,154.438,6.4751,6.20464,0.026624,0.396704,0.006752,0.005824,0.01056,5.72211,0.036064
+805,143.307,6.97803,5.3289,0.026624,0.37888,0.007328,0.00496,0.011264,4.86298,0.036864
+806,158.293,6.31738,5.77126,0.026432,0.448704,0.007936,0.005536,0.010784,5.23613,0.035744
+807,148.718,6.72412,6.32349,0.026144,0.509536,0.00704,0.005536,0.010752,5.72835,0.036128
+808,144.653,6.91309,5.33914,0.026624,0.39936,0.007232,0.005056,0.01184,4.85216,0.036864
+809,161.412,6.19531,5.68934,0.026336,0.389408,0.008,0.005536,0.01104,5.21382,0.0352
+810,161.451,6.19385,6.13814,0.026912,0.393024,0.006336,0.006144,0.011616,5.65725,0.036864
+811,142.232,7.03076,5.69962,0.026624,0.390368,0.006944,0.005664,0.01072,5.22416,0.035136
+812,155.328,6.43799,5.71491,0.025568,0.443488,0.007072,0.005568,0.010752,5.18061,0.041856
+813,148.762,6.72217,5.37402,0.025536,0.458752,0.00816,0.005536,0.019072,4.82045,0.036512
+814,168.574,5.93213,5.31802,0.027968,0.398016,0.007552,0.004736,0.01024,4.83296,0.036544
+815,156.959,6.37109,5.44579,0.022656,0.507904,0.00752,0.004768,0.011456,4.85578,0.035712
+816,169.832,5.88818,6.22992,0.026016,0.445024,0.00656,0.006048,0.010336,5.69958,0.036352
+817,143.257,6.98047,5.32275,0.026592,0.407584,0.006144,0.006144,0.01024,4.82915,0.036896
+818,164.353,6.08447,5.69139,0.026688,0.391104,0.007328,0.00496,0.011328,5.21312,0.036864
+819,157.309,6.35693,6.15382,0.026464,0.37744,0.007648,0.00464,0.01168,5.68963,0.03632
+820,128.265,7.79639,5.43667,0.026624,0.503104,0.006848,0.005728,0.010656,4.84557,0.038144
+821,188.93,5.29297,5.75856,0.02672,0.48144,0.008064,0.005536,0.011008,5.1896,0.036192
+822,157.019,6.36865,6.20362,0.02624,0.391008,0.006912,0.005728,0.010656,5.72621,0.036864
+823,134.569,7.43115,5.33389,0.026912,0.438496,0.006528,0.005824,0.01056,4.8087,0.036864
+824,179.429,5.57324,5.69056,0.026464,0.397472,0.007488,0.0048,0.011456,5.20669,0.036192
+825,150.633,6.63867,5.95571,0.026432,0.422208,0.008,0.005536,0.010688,5.44394,0.038912
+826,149.26,6.69971,5.70618,0.026304,0.413888,0.006784,0.005472,0.020352,5.19629,0.037088
+827,151.692,6.59229,5.34202,0.02544,0.442336,0.007296,0.004992,0.011296,4.81526,0.035392
+828,159.576,6.2666,5.31002,0.028672,0.402528,0.007072,0.005536,0.010752,4.81907,0.036384
+829,162.115,6.16846,5.27235,0.025376,0.39056,0.006752,0.005248,0.010688,4.78867,0.045056
+830,156.098,6.40625,5.43875,0.026656,0.511712,0.0064,0.006144,0.026624,4.82493,0.036288
+831,160.855,6.2168,6.2257,0.026624,0.476352,0.006976,0.005632,0.010656,5.66282,0.03664
+832,150.301,6.65332,5.2681,0.025216,0.378048,0.006976,0.005728,0.010656,4.80454,0.036928
+833,164.67,6.07275,5.65248,0.026624,0.391008,0.006304,0.006144,0.011328,5.17584,0.035232
+834,159.353,6.27539,6.09552,0.0264,0.372992,0.006816,0.00576,0.010624,5.63712,0.035808
+835,144.878,6.90234,5.65107,0.025216,0.400704,0.006848,0.005728,0.010688,5.16688,0.035008
+836,158.637,6.30371,6.51133,0.025312,0.395264,0.007168,0.00512,0.01024,6.03251,0.035712
+837,134.233,7.44971,6.15424,0.026784,0.441312,0.00704,0.005536,0.010656,5.62774,0.035168
+838,150.433,6.64746,5.29043,0.025536,0.394624,0.006624,0.006144,0.01024,4.81011,0.037152
+839,164.736,6.07031,5.34733,0.026624,0.452608,0.007296,0.004992,0.01024,4.80982,0.035744
+840,154.847,6.45801,5.35347,0.040224,0.47504,0.006976,0.0056,0.01072,4.77805,0.036864
+841,153.202,6.52734,5.66272,0.028672,0.41968,0.006304,0.006144,0.010272,5.15478,0.036864
+842,158,6.3291,5.26544,0.026304,0.401696,0.006464,0.006144,0.01024,4.77798,0.036608
+843,154.484,6.47314,5.5625,0.0288,0.700416,0.00736,0.004864,0.011904,4.77338,0.035776
+844,162.967,6.13623,5.31904,0.02496,0.462848,0.006144,0.006144,0.01024,4.77331,0.035392
+845,169.733,5.8916,5.6567,0.026624,0.391104,0.006208,0.006144,0.01024,5.18099,0.035392
+846,160.981,6.21191,6.0969,0.026464,0.376992,0.007936,0.004448,0.010336,5.63386,0.036864
+847,140.804,7.10205,5.26598,0.026272,0.415712,0.007072,0.005536,0.010752,4.76358,0.037056
+848,172.783,5.7876,5.63008,0.02624,0.387872,0.006176,0.006144,0.01024,5.1568,0.036608
+849,144.94,6.89941,6.10842,0.026656,0.380864,0.006176,0.006144,0.01024,5.64224,0.036096
+850,146.119,6.84375,5.25517,0.026592,0.388672,0.006624,0.005952,0.010464,4.76365,0.053216
+851,168.255,5.94336,5.63104,0.026112,0.372608,0.006784,0.005824,0.01056,5.17325,0.035904
+852,152.551,6.55518,6.53107,0.026336,0.411456,0.006624,0.005984,0.0104,6.0345,0.035776
+853,139.891,7.14844,6.49347,0.0264,0.394752,0.00688,0.005728,0.010688,6.0128,0.036224
+854,139.225,7.18262,6.13648,0.035616,0.380832,0.00624,0.006144,0.01024,5.66067,0.036736
+855,147.497,6.77979,5.19885,0.026624,0.364576,0.007808,0.005536,0.010624,4.74698,0.036704
+856,173.736,5.75586,5.48659,0.026624,0.370688,0.007488,0.0048,0.01024,5.02992,0.036832
+857,160.012,6.24951,5.19677,0.0256,0.36816,0.006592,0.006048,0.010336,4.74429,0.035744
+858,171.323,5.83691,6.09142,0.027008,0.387232,0.006272,0.006144,0.01024,5.61971,0.034816
+859,141.661,7.05908,5.25722,0.026624,0.423296,0.006784,0.005856,0.010528,4.74726,0.036864
+860,171.985,5.81445,5.61965,0.026656,0.39728,0.007904,0.005536,0.01072,5.13475,0.0368
+861,156.971,6.37061,6.10749,0.02624,0.391616,0.006656,0.006112,0.010272,5.62995,0.03664
+862,146.642,6.81934,5.21424,0.026656,0.374752,0.006144,0.006144,0.01024,4.75341,0.036896
+863,168.296,5.94189,5.5928,0.026368,0.371072,0.007264,0.005024,0.01024,5.13638,0.036448
+864,157.442,6.35156,6.10304,0.025248,0.405472,0.007264,0.005024,0.011904,5.61181,0.03632
+865,145.827,6.85742,5.22854,0.026784,0.406272,0.007904,0.005536,0.010752,4.73475,0.036544
+866,169.284,5.90723,5.64589,0.02768,0.420832,0.007616,0.004672,0.01136,5.13725,0.03648
+867,155.73,6.42139,5.22173,0.02624,0.38928,0.006368,0.006144,0.01024,4.74688,0.036576
+868,151.76,6.58936,5.26755,0.028352,0.434592,0.006144,0.006144,0.01024,4.74522,0.036864
+869,164.076,6.09473,5.25926,0.026624,0.421888,0.007552,0.004736,0.012288,4.75088,0.035296
+870,165.817,6.03076,6.13792,0.02544,0.425632,0.006496,0.00608,0.010304,5.62787,0.036096
+871,138.304,7.23047,5.40042,0.025408,0.565216,0.007616,0.004704,0.011584,4.74938,0.036512
+872,170.326,5.87109,5.64176,0.02624,0.41808,0.006368,0.006144,0.01024,5.13818,0.036512
+873,157.369,6.35449,6.11264,0.026336,0.395584,0.007872,0.005536,0.01072,5.63014,0.036448
+874,143.709,6.9585,5.22266,0.026144,0.405728,0.006592,0.005984,0.0104,4.73088,0.036928
+875,167.704,5.96289,5.60899,0.026624,0.401408,0.00736,0.004928,0.011296,5.12099,0.036384
+876,157.733,6.33984,6.13366,0.026624,0.431264,0.007008,0.0056,0.010752,5.61565,0.036768
+877,146.286,6.83594,5.20397,0.026624,0.38912,0.007392,0.004896,0.011872,4.7272,0.036864
+878,171.539,5.82959,5.59309,0.026624,0.380928,0.008032,0.005568,0.010688,5.12598,0.035264
+879,159.192,6.28174,5.18307,0.02512,0.376,0.006976,0.005664,0.010752,4.72208,0.03648
+880,159.813,6.25732,5.20653,0.029152,0.389152,0.007936,0.005568,0.010752,4.72816,0.035808
+881,156.779,6.37842,5.2671,0.024096,0.446496,0.006592,0.006144,0.01024,4.73702,0.036512
+882,178.428,5.60449,6.13555,0.02528,0.419648,0.006336,0.006144,0.010272,5.63187,0.036
+883,145.827,6.85742,5.24294,0.0264,0.427488,0.006656,0.004384,0.01024,4.73088,0.036896
+884,171.295,5.83789,5.57059,0.026208,0.358848,0.007424,0.004832,0.01024,5.12614,0.036896
+885,161.489,6.19238,6.0457,0.026688,0.370272,0.006496,0.005952,0.010432,5.5905,0.03536
+886,146.526,6.82471,5.59245,0.026464,0.393312,0.006208,0.006144,0.01024,5.11386,0.036224
+887,159.526,6.26855,6.44365,0.026464,0.38784,0.006144,0.006144,0.01024,5.9713,0.03552
+888,142.519,7.0166,6.04134,0.026624,0.387808,0.006176,0.006144,0.010304,5.56832,0.035968
+889,146.747,6.81445,5.5808,0.026624,0.388576,0.006688,0.00592,0.010464,5.10755,0.034976
+890,161.323,6.19873,5.92867,0.026304,0.383264,0.00624,0.006144,0.01024,5.45997,0.036512
+891,148.009,6.75635,5.19878,0.025536,0.399328,0.00768,0.004608,0.011648,4.71309,0.036896
+892,173.061,5.77832,5.18198,0.026112,0.39424,0.008032,0.005536,0.010816,4.70035,0.036896
+893,169.93,5.88477,5.1943,0.026336,0.397728,0.006592,0.005984,0.0104,4.71178,0.035488
+894,169.649,5.89453,6.07235,0.026624,0.423936,0.007872,0.005536,0.010816,5.56182,0.035744
+895,149.391,6.69385,5.19581,0.026176,0.379072,0.006432,0.006144,0.01024,4.7303,0.03744
+896,170.269,5.87305,5.58656,0.025088,0.387072,0.007616,0.004704,0.011648,5.11402,0.036416
+897,159.988,6.25049,6.07629,0.026656,0.395232,0.007616,0.004672,0.011552,5.59382,0.036736
+898,145.186,6.8877,5.26045,0.026144,0.454592,0.006816,0.005888,0.010496,4.71962,0.036896
+899,167.841,5.95801,5.59795,0.0256,0.40128,0.006272,0.006144,0.012064,5.10998,0.036608
+900,160.401,6.23438,5.59248,0.026656,0.39728,0.006144,0.006144,0.01024,5.10758,0.038432
+901,148.643,6.72754,5.60493,0.026656,0.43824,0.008096,0.005568,0.010624,5.07923,0.036512
+902,164.975,6.06152,5.22368,0.026656,0.405472,0.006144,0.006144,0.01024,4.73235,0.036672
+903,158.538,6.30762,5.50506,0.028672,0.689984,0.006336,0.00608,0.011872,4.72522,0.036896
+904,159.601,6.26562,5.5296,0.026624,0.699648,0.00688,0.005536,0.01264,4.74141,0.036864
+905,168.643,5.92969,6.47504,0.026624,0.39936,0.007168,0.00512,0.011424,5.98922,0.036128
+906,137.487,7.27344,6.08045,0.026144,0.43024,0.006464,0.006144,0.010272,5.56438,0.0368
+907,147.891,6.76172,5.20192,0.02624,0.389504,0.007456,0.004832,0.011456,4.72557,0.036864
+908,171.18,5.8418,5.55421,0.026656,0.391136,0.007776,0.005568,0.011232,5.07645,0.035392
+909,157.793,6.3374,6.04774,0.026624,0.38912,0.007328,0.00496,0.011264,5.57158,0.036864
+910,146.004,6.84912,5.25517,0.026368,0.452032,0.006976,0.005664,0.01072,4.71654,0.036864
+911,162.025,6.17188,5.63613,0.026496,0.434336,0.017856,0.005952,0.010656,5.10512,0.035712
+912,159.763,6.25928,6.04448,0.02544,0.399328,0.008,0.005536,0.01104,5.55827,0.036864
+913,138.089,7.2417,5.18211,0.025248,0.405504,0.007264,0.005024,0.011264,4.69088,0.036928
+914,173.002,5.78027,5.55565,0.026656,0.397056,0.006368,0.006144,0.011648,5.07107,0.036704
+915,158.257,6.31885,5.19869,0.025408,0.405504,0.008128,0.005536,0.01072,4.70806,0.035328
+916,149.96,6.66846,5.82861,0.026624,1.01786,0.007712,0.004576,0.012288,4.72269,0.036864
+917,160.754,6.2207,5.21626,0.024576,0.407552,0.007488,0.0048,0.011488,4.72349,0.036864
+918,160.163,6.24365,6.13642,0.025184,0.466944,0.006144,0.006144,0.01024,5.58691,0.034848
+919,148.341,6.74121,5.3096,0.026624,0.523968,0.006464,0.006112,0.010272,4.69939,0.036768
+920,172.594,5.79395,5.5864,0.026624,0.403488,0.007456,0.0048,0.01152,5.09619,0.03632
+921,157.599,6.34521,6.45498,0.02656,0.376896,0.00752,0.004768,0.011424,5.99126,0.036544
+922,137.783,7.25781,6.06413,0.026624,0.417472,0.006464,0.005344,0.010752,5.5623,0.035168
+923,145.548,6.87061,5.5767,0.026464,0.387232,0.006144,0.006144,0.01024,5.10518,0.035296
+924,156.755,6.37939,6.12698,0.02592,0.455584,0.007392,0.004896,0.011424,5.58573,0.036032
+925,146.129,6.84326,5.20858,0.025088,0.423936,0.007168,0.00512,0.01024,4.70016,0.036864
+926,171.08,5.84521,5.59395,0.025408,0.4096,0.0072,0.005088,0.01024,5.09952,0.036896
+927,156.24,6.40039,5.21117,0.026304,0.43376,0.00688,0.005728,0.010688,4.68989,0.03792
+928,158.723,6.30029,5.54995,0.028512,0.40768,0.006176,0.006144,0.01024,5.05446,0.036736
+929,158.908,6.29297,5.20134,0.026624,0.4096,0.006144,0.006144,0.012032,4.70426,0.036544
+930,159.613,6.26514,5.45523,0.026144,0.666208,0.010048,0.005568,0.011008,4.70016,0.036096
+931,167.594,5.9668,5.21283,0.025248,0.423936,0.007424,0.004864,0.011456,4.7041,0.035808
+932,171.783,5.82129,5.57542,0.025376,0.409568,0.007456,0.004832,0.012288,5.08042,0.035488
+933,148.116,6.75146,6.13622,0.026208,0.4616,0.007936,0.005536,0.010656,5.58739,0.036896
+934,151.704,6.5918,5.17133,0.026112,0.381408,0.00656,0.006048,0.011648,4.70294,0.036608
+935,164.221,6.08936,5.68419,0.025536,0.495616,0.007168,0.00512,0.010336,5.10506,0.03536
+936,160.804,6.21875,6.06822,0.026016,0.391136,0.006784,0.005792,0.010592,5.59235,0.035552
+937,141.877,7.04834,5.21322,0.025568,0.407392,0.006304,0.006144,0.011552,4.72061,0.035648
+938,168.214,5.94482,5.57882,0.02528,0.39936,0.007904,0.005536,0.010688,5.09382,0.036224
+939,159.328,6.27637,5.20758,0.026624,0.39856,0.006944,0.005664,0.01072,4.71981,0.039264
+940,151.726,6.59082,5.62586,0.03072,0.798208,0.006656,0.00576,0.011872,4.73725,0.035392
+941,168.089,5.94922,5.18298,0.023904,0.403616,0.006656,0.00592,0.010496,4.69603,0.036352
+942,169.158,5.91162,6.10486,0.026656,0.425504,0.006656,0.00592,0.010464,5.59309,0.036576
+943,140.063,7.13965,5.28723,0.026336,0.47968,0.006272,0.006144,0.01024,4.72208,0.03648
+944,164.962,6.06201,5.64429,0.026624,0.44384,0.00672,0.005888,0.010496,5.11558,0.035136
+945,147.689,6.771,6.16762,0.025984,0.475808,0.008,0.005536,0.012576,5.60378,0.035936
+946,148.935,6.71436,5.21427,0.026432,0.403648,0.007744,0.004544,0.011712,4.7233,0.036896
+947,166.504,6.00586,5.58541,0.026464,0.40176,0.006464,0.006144,0.01024,5.09936,0.034976
+948,155.588,6.42725,6.08717,0.025088,0.408736,0.007008,0.005568,0.010816,5.59514,0.034816
+949,145.001,6.89648,5.21523,0.028,0.424608,0.007936,0.005536,0.01104,4.7015,0.036608
+950,168.31,5.94141,5.59514,0.026624,0.417792,0.007968,0.005536,0.01072,5.0912,0.035296
+951,158.244,6.31934,5.18182,0.026752,0.383648,0.007392,0.004896,0.011904,4.71078,0.036448
+952,156.121,6.40527,5.22051,0.028384,0.394912,0.006944,0.005632,0.01072,4.7383,0.035616
+953,166.18,6.01758,5.21421,0.026624,0.408896,0.006848,0.005824,0.01056,4.71821,0.037248
+954,169.396,5.90332,6.08054,0.026656,0.409568,0.007328,0.00496,0.011328,5.58534,0.03536
+955,139.093,7.18945,5.56445,0.026624,0.706368,0.006336,0.006144,0.011968,4.7712,0.035808
+956,169.368,5.9043,6.48806,0.026624,0.392576,0.006784,0.006144,0.011392,6.00934,0.0352
+957,134.286,7.44678,6.15818,0.026656,0.460032,0.00688,0.004096,0.011328,5.61376,0.035424
+958,149.697,6.68018,5.21162,0.02608,0.407584,0.006656,0.005952,0.010464,4.71856,0.03632
+959,170.439,5.86719,5.57453,0.026528,0.3864,0.006912,0.005664,0.010752,5.10154,0.036736
+960,159.229,6.28027,6.07232,0.026624,0.411424,0.006368,0.005728,0.011968,5.57482,0.035392
+961,147.795,6.76611,5.18966,0.026624,0.394912,0.006496,0.006144,0.01024,4.70835,0.036896
+962,164.922,6.06348,5.61152,0.026624,0.413696,0.007328,0.00496,0.01136,5.11254,0.035008
+963,156.635,6.38428,5.90438,0.027968,0.400064,0.00768,0.004608,0.01136,5.41574,0.03696
+964,152.597,6.55322,5.60333,0.026624,0.387072,0.006144,0.006144,0.01024,5.13206,0.03504
+965,155.21,6.44287,5.21184,0.02656,0.407552,0.006208,0.006144,0.01024,4.71789,0.037248
+966,159.415,6.27295,5.53293,0.04512,0.684032,0.007296,0.004992,0.011296,4.74416,0.036032
+967,156.014,6.40967,5.2239,0.026624,0.411648,0.008064,0.005536,0.010752,4.72496,0.03632
+968,172.478,5.79785,5.34938,0.026208,0.544224,0.007072,0.005536,0.012,4.71747,0.036864
+969,166.952,5.98975,6.06842,0.0264,0.395584,0.006208,0.006144,0.01024,5.58835,0.035488
+970,145.393,6.87793,5.22035,0.027904,0.400128,0.007168,0.00512,0.01024,4.73398,0.035808
+971,166.193,6.01709,5.59514,0.026656,0.409024,0.006688,0.005792,0.010624,5.10102,0.035328
+972,158.575,6.30615,6.41846,0.026304,0.395584,0.007936,0.005568,0.010752,5.93542,0.036896
+973,140.843,7.1001,6.08198,0.0264,0.389376,0.007904,0.005536,0.010752,5.60093,0.041088
+974,136.752,7.3125,5.80406,0.026624,0.600096,0.018208,0.005568,0.017152,5.09952,0.036896
+975,160.175,6.24316,6.13376,0.026624,0.441664,0.006848,0.005728,0.010208,5.60717,0.03552
+976,142.987,6.99365,5.26733,0.026048,0.443072,0.006144,0.006144,0.011776,4.73744,0.036704
+977,166.328,6.01221,5.60752,0.026336,0.409984,0.0072,0.005088,0.011712,5.11203,0.035168
+978,157.478,6.3501,5.18554,0.026656,0.405472,0.006144,0.006144,0.01024,4.69402,0.036864
+979,157.031,6.36816,5.18758,0.028672,0.392736,0.006624,0.005984,0.0104,4.70768,0.035488
+980,167.731,5.96191,5.20054,0.025248,0.41088,0.006912,0.005664,0.010688,4.70586,0.035296
+981,166.261,6.01465,6.09462,0.026624,0.427456,0.00672,0.00592,0.010464,5.5808,0.03664
+982,151.2,6.61377,5.23798,0.026176,0.442816,0.00752,0.004768,0.011616,4.70838,0.036704
+983,171.596,5.82764,5.5744,0.026208,0.370432,0.00704,0.005568,0.01072,5.11805,0.036384
+984,158.489,6.30957,6.10285,0.026624,0.440352,0.008128,0.005536,0.010816,5.57472,0.036672
+985,150.356,6.65088,5.19341,0.026624,0.37888,0.007296,0.004992,0.011264,4.72781,0.036544
+986,173.295,5.77051,5.60138,0.026656,0.374752,0.007552,0.004736,0.011488,5.14128,0.034912
+987,140.756,7.10449,5.90157,0.026624,0.387072,0.007872,0.005536,0.010816,5.4255,0.038144
+988,173.383,5.76758,5.56541,0.030944,0.387552,0.006432,0.006144,0.01024,5.08723,0.036864
+989,160.514,6.22998,5.22326,0.025536,0.386464,0.00672,0.005984,0.0104,4.75136,0.0368
+990,167.443,5.97217,5.94534,0.026624,0.673024,0.012672,0.005536,0.011232,5.18144,0.034816
+991,152.54,6.55566,5.78563,0.026624,0.54272,0.010048,0.005536,0.011136,5.15411,0.035456
+992,142.658,7.00977,5.5624,0.026592,0.726816,0.0064,0.006048,0.011904,4.74774,0.036896
+993,173.192,5.77393,6.04554,0.026656,0.36624,0.006464,0.006144,0.010272,5.59418,0.035584
+994,145.331,6.88086,5.22854,0.026624,0.448512,0.007712,0.004576,0.011648,4.69261,0.036864
+995,171.309,5.8374,5.56851,0.026624,0.367712,0.007072,0.005536,0.01056,5.11517,0.03584
+996,155.446,6.43311,6.17395,0.026112,0.45744,0.007264,0.004992,0.011264,5.63072,0.03616
+997,126.529,7.90332,5.90688,0.025216,1.07725,0.007456,0.004832,0.011392,4.74406,0.036672
+998,166.355,6.01123,5.67082,0.026624,0.444384,0.006368,0.005952,0.01024,5.14048,0.036768
+999,154.648,6.46631,6.12502,0.026496,0.462624,0.006624,0.006016,0.0104,5.57667,0.036192
+1000,151.278,6.61035,5.21395,0.02608,0.36512,0.007776,0.005568,0.0112,4.7616,0.036608
+1001,165.361,6.04736,5.65501,0.025536,0.432128,0.006144,0.006144,0.010304,5.13837,0.036384
+1002,155.269,6.44043,5.20086,0.025408,0.386944,0.006272,0.006144,0.012288,4.72579,0.038016
+1003,162.708,6.146,5.19581,0.026624,0.39488,0.006528,0.018432,0.011648,4.7008,0.036896
+1004,171.812,5.82031,5.21491,0.024736,0.430208,0.00656,0.006112,0.010272,4.70195,0.035072
+1005,159.117,6.28467,6.07635,0.02608,0.389664,0.007904,0.004224,0.0104,5.60256,0.03552
+1006,147.074,6.79932,5.38214,0.02768,0.580576,0.006144,0.005504,0.01088,4.7145,0.036864
+1007,160.464,6.23193,5.68102,0.026208,0.44896,0.007904,0.005568,0.010656,5.14499,0.036736
+1008,159.988,6.25049,6.16374,0.026336,0.456992,0.007264,0.005024,0.011296,5.6207,0.036128
+1009,128.2,7.80029,5.89744,0.026592,1.09571,0.007168,0.00512,0.010368,4.71613,0.036352
+1010,169.033,5.91602,5.64186,0.025248,0.40752,0.007712,0.02096,0.01024,5.13414,0.036032
+1011,162.437,6.15625,6.06822,0.026432,0.386528,0.00688,0.00576,0.010624,5.5969,0.035104
+1012,146.968,6.8042,5.16765,0.02624,0.388,0.006144,0.006144,0.01024,4.6951,0.035776
+1013,170.057,5.88037,5.5911,0.02544,0.403104,0.006496,0.006112,0.010272,5.10365,0.036032
+1014,148.686,6.72559,5.18723,0.026656,0.399328,0.007936,0.005536,0.01072,4.70054,0.036512
+1015,158.465,6.31055,5.4593,0.028704,0.372704,0.007776,0.005536,0.010784,4.99555,0.03824
+1016,161.285,6.2002,5.2511,0.026624,0.411296,0.006496,0.006144,0.010272,4.75453,0.035744
+1017,149.315,6.69727,5.93309,0.027072,1.09712,0.006784,0.005632,0.022144,4.73789,0.036448
+1018,163.474,6.11719,5.2816,0.026272,0.458784,0.00704,0.005536,0.01072,4.7311,0.042144
+1019,143.77,6.95557,5.62314,0.026432,0.403648,0.008032,0.004256,0.011616,5.13296,0.036192
+1020,183.48,5.4502,6.04365,0.026464,0.381664,0.008,0.005536,0.01072,5.57491,0.036352
+1021,147.977,6.75781,5.20186,0.026016,0.38992,0.0072,0.005088,0.01024,4.72675,0.03664
+1022,167.786,5.95996,5.57878,0.026624,0.368192,0.006592,0.005984,0.0104,5.12547,0.03552
+1023,156.169,6.40332,6.03955,0.026624,0.372096,0.006784,0.005856,0.010528,5.5808,0.036864
+1024,148.234,6.74609,5.62666,0.026496,0.397664,0.00672,0.005856,0.012064,5.14259,0.035264
+1025,153.558,6.51221,6.0552,0.02656,0.462912,0.007872,0.005536,0.010688,5.50534,0.036288
+1026,139.948,7.14551,5.34774,0.025056,0.509248,0.006752,0.005824,0.010592,4.75338,0.036896
+1027,179.854,5.56006,5.61309,0.026624,0.39632,0.007072,0.005536,0.010688,5.13005,0.0368
+1028,161.731,6.18311,5.1712,0.026624,0.364544,0.008032,0.004256,0.011648,4.71923,0.036864
+1029,155.623,6.42578,5.68768,0.02624,0.873184,0.006176,0.006112,0.012288,4.72784,0.03584
+1030,165.897,6.02783,5.26176,0.025024,0.436192,0.006144,0.006144,0.01024,4.74112,0.036896
+1031,167.457,5.97168,5.62163,0.026656,0.388096,0.007072,0.005536,0.010912,5.14662,0.036736
+1032,157.818,6.33643,6.08874,0.02816,0.387584,0.007904,0.005536,0.010688,5.61325,0.035616
+1033,147.211,6.79297,5.18563,0.025568,0.392736,0.006624,0.005952,0.010432,4.70819,0.036128
+1034,170.312,5.87158,5.576,0.02768,0.386016,0.00784,0.005536,0.01072,5.10205,0.03616
+1035,159.229,6.28027,6.0601,0.026464,0.39008,0.006176,0.006144,0.01024,5.5849,0.036096
+1036,146.244,6.83789,5.64602,0.026112,0.430592,0.007168,0.00512,0.010368,5.13011,0.036544
+1037,160.25,6.24023,5.18144,0.026624,0.395296,0.007584,0.004672,0.012288,4.69811,0.036864
+1038,165.135,6.05566,5.20118,0.028672,0.414848,0.00704,0.005568,0.010752,4.69795,0.036352
+1039,161.859,6.17822,5.23264,0.026624,0.409504,0.00624,0.006144,0.01024,4.7384,0.035488
+1040,168.269,5.94287,5.23059,0.025632,0.44336,0.007456,0.004832,0.012288,4.7016,0.035424
+1041,172.725,5.78955,6.06381,0.026176,0.369312,0.007744,0.004576,0.01184,5.60781,0.036352
+1042,147.636,6.77344,5.59923,0.026624,0.382976,0.007648,0.005824,0.010688,5.13011,0.03536
+1043,157.891,6.3335,6.46909,0.026336,0.39104,0.00656,0.006144,0.01136,5.99133,0.03632
+1044,139.291,7.1792,6.04061,0.026432,0.393408,0.007296,0.004992,0.0104,5.56211,0.035968
+1045,147.923,6.76025,5.24109,0.026496,0.399584,0.006304,0.00576,0.010624,4.75677,0.035552
+1046,165.375,6.04688,5.66477,0.026656,0.44016,0.006336,0.00608,0.01024,5.13997,0.035328
+1047,159.179,6.28223,6.05184,0.026336,0.382784,0.006624,0.005952,0.010432,5.58458,0.035136
+1048,149.74,6.67822,5.56003,0.026368,0.380576,0.007072,0.0056,0.010656,5.0935,0.036256
+1049,159.192,6.28174,5.50707,0.026624,0.3584,0.007552,0.004736,0.01024,5.06061,0.038912
+1050,161.693,6.18457,5.1751,0.026112,0.371264,0.007584,0.004704,0.01024,4.71859,0.036608
+1051,167.375,5.97461,5.16048,0.026304,0.372992,0.00624,0.006144,0.01024,4.70221,0.036352
+1052,171.166,5.84229,5.31821,0.026368,0.504128,0.007328,0.00496,0.012288,4.7265,0.03664
+1053,170.001,5.88232,6.03139,0.026336,0.362784,0.006144,0.006144,0.01024,5.58403,0.035712
+1054,147.572,6.77637,5.20083,0.0256,0.403296,0.006144,0.006144,0.012192,4.71155,0.035904
+1055,170.255,5.87354,5.57683,0.026752,0.391296,0.007904,0.005536,0.01072,5.09901,0.035616
+1056,154.788,6.46045,6.08554,0.026944,0.4304,0.006432,0.006144,0.01024,5.57024,0.035136
+1057,147.116,6.79736,5.55357,0.026624,0.395264,0.006144,0.006144,0.01024,5.0729,0.036256
+1058,162.992,6.13525,6.21846,0.025312,0.411648,0.007424,0.004864,0.011424,5.4687,0.289088
+1059,139.929,7.14648,6.12762,0.026656,0.439712,0.00672,0.005984,0.0104,5.60301,0.035136
+1060,149.391,6.69385,5.60947,0.026624,0.425856,0.006272,0.006144,0.01024,5.09747,0.036864
+1061,156.062,6.40771,5.18214,0.02528,0.405504,0.007936,0.005536,0.011104,4.68992,0.036864
+1062,158.502,6.30908,5.22454,0.02896,0.41776,0.007232,0.005056,0.01024,4.71859,0.036704
+1063,163.866,6.10254,5.25475,0.026624,0.479232,0.007392,0.004896,0.011328,4.68883,0.036448
+1064,170.284,5.87256,5.30941,0.025568,0.514048,0.007264,0.005056,0.016128,4.70448,0.036864
+1065,167.498,5.97021,6.03354,0.026432,0.389568,0.00784,0.005536,0.01072,5.5567,0.036736
+1066,148.277,6.74414,5.19699,0.026624,0.38704,0.006176,0.006144,0.01024,4.72269,0.03808
+1067,165.575,6.03955,5.59309,0.026624,0.397312,0.00816,0.005408,0.010496,5.10992,0.035168
+1068,162.902,6.13867,6.06451,0.0264,0.381536,0.007808,0.005536,0.010688,5.59747,0.035072
+1069,144.981,6.89746,5.5808,0.026624,0.404832,0.006816,0.005952,0.010432,5.09034,0.035808
+1070,160.956,6.21289,5.50707,0.026624,0.370688,0.006144,0.006144,0.01024,5.04832,0.038912
+1071,150.71,6.63525,5.27219,0.025184,0.499712,0.007712,0.004576,0.01168,4.68643,0.036896
+1072,174.224,5.73975,5.19808,0.026048,0.377696,0.008064,0.005568,0.010688,4.73318,0.036832
+1073,169.691,5.89307,5.14694,0.02288,0.367776,0.006976,0.005632,0.01072,4.69766,0.035296
+1074,167.814,5.95898,6.02973,0.026016,0.389152,0.006784,0.005568,0.010176,5.55702,0.035008
+1075,144.47,6.92188,5.17715,0.024576,0.376832,0.007232,0.005056,0.010272,4.71651,0.036672
+1076,181.063,5.52295,5.56832,0.02592,0.381856,0.007968,0.005536,0.010816,5.09968,0.036544
+1077,159.192,6.28174,6.04003,0.026496,0.366624,0.00672,0.005824,0.01056,5.58838,0.035424
+1078,150.422,6.64795,5.1871,0.026624,0.40144,0.00816,0.005952,0.010432,4.69792,0.036576
+1079,168.007,5.95215,5.5337,0.026624,0.378304,0.00672,0.00592,0.010464,5.07046,0.0352
+1080,163.683,6.10938,5.15722,0.02688,0.385312,0.008,0.005536,0.01072,4.6841,0.036672
+1081,157.793,6.3374,5.1671,0.03008,0.385664,0.007552,0.004736,0.011616,4.69168,0.035776
+1082,169.13,5.9126,5.15891,0.022528,0.395264,0.00784,0.005536,0.010752,4.68154,0.035456
+1083,168.685,5.92822,6.10307,0.0264,0.42544,0.006912,0.005664,0.010656,5.59286,0.035136
+1084,152.121,6.57373,5.17533,0.026368,0.370944,0.00768,0.004608,0.011648,4.71718,0.036896
+1085,170.937,5.8501,5.60282,0.02608,0.381472,0.007968,0.005536,0.010688,5.13472,0.036352
+1086,157.466,6.35059,6.04803,0.026848,0.387136,0.007872,0.005568,0.010752,5.57424,0.035616
+1087,144.347,6.92773,5.23843,0.026656,0.456672,0.007232,0.005056,0.0104,4.69578,0.03664
+1088,172.652,5.79199,5.58285,0.026624,0.40064,0.006912,0.005664,0.01072,5.09542,0.036864
+1089,155.352,6.43701,5.20637,0.026272,0.379168,0.00656,0.006048,0.010336,4.74214,0.03584
+1090,160.1,6.24609,5.44518,0.028672,0.425984,0.007584,0.004736,0.011584,4.92765,0.038976
+1091,161.82,6.17969,5.21421,0.026624,0.423616,0.006464,0.006112,0.010304,4.70422,0.036864
+1092,173.78,5.75439,6.01363,0.02528,0.374816,0.008,0.005568,0.010688,5.55408,0.0352
+1093,146.757,6.81396,5.23469,0.026208,0.401824,0.007776,0.005568,0.010816,4.74563,0.036864
+1094,173.884,5.75098,5.57322,0.025376,0.393056,0.006144,0.006144,0.01024,5.09542,0.036832
+1095,157.224,6.36035,6.4545,0.026624,0.38912,0.008128,0.005536,0.010784,5.97814,0.03616
+1096,137.792,7.25732,6.0408,0.026624,0.395264,0.00768,0.004608,0.01168,5.55888,0.036064
+1097,145.651,6.86572,5.5615,0.026176,0.39776,0.006144,0.006144,0.01024,5.07904,0.036
+1098,161.897,6.17676,6.06208,0.026432,0.409792,0.006144,0.006144,0.01024,5.56794,0.035392
+1099,144.388,6.92578,5.19712,0.026304,0.415936,0.006272,0.006144,0.01024,4.696,0.036224
+1100,169.326,5.90576,5.55344,0.026624,0.397216,0.00624,0.006144,0.011488,5.0696,0.036128
+1101,158.957,6.29102,5.52554,0.026624,0.385024,0.007616,0.004672,0.011648,5.05101,0.038944
+1102,160.175,6.24316,5.49949,0.026464,0.37696,0.006784,0.005824,0.01056,5.03603,0.036864
+1103,161.642,6.18652,5.1799,0.025376,0.382688,0.006432,0.006144,0.01024,4.71245,0.036576
+1104,161.412,6.19531,5.91165,0.026464,0.675584,0.044672,0.004896,0.012288,5.11181,0.035936
+1105,151.099,6.61816,5.19933,0.028672,0.4096,0.00784,0.005536,0.01072,4.70064,0.03632
+1106,166.87,5.99268,5.56883,0.026464,0.385472,0.007776,0.005568,0.010656,5.096,0.036896
+1107,162.308,6.16113,6.02726,0.026656,0.380896,0.008,0.004288,0.012224,5.55978,0.035424
+1108,149.949,6.66895,5.20739,0.026208,0.436576,0.00656,0.005632,0.010784,4.68506,0.036576
+1109,161.438,6.19434,5.59309,0.026624,0.428032,0.007872,0.005536,0.010752,5.07907,0.0352
+1110,155.411,6.43457,6.12365,0.026176,0.467552,0.006112,0.006144,0.010272,5.5719,0.035488
+1111,150.433,6.64746,5.15853,0.026496,0.378976,0.006688,0.00592,0.010464,4.69331,0.036672
+1112,166.898,5.9917,5.59424,0.026528,0.423424,0.006752,0.005856,0.010528,5.0848,0.036352
+1113,161.057,6.20898,5.15597,0.026624,0.380832,0.00624,0.006144,0.011456,4.68582,0.038848
+1114,157.684,6.3418,5.67075,0.026336,0.887744,0.006336,0.005952,0.012288,4.69574,0.036352
+1115,165.83,6.03027,5.18579,0.023264,0.413632,0.007392,0.004896,0.011456,4.6887,0.036448
+1116,170.567,5.86279,6.09677,0.026656,0.403456,0.008,0.005536,0.01072,5.6057,0.036704
+1117,148.859,6.71777,5.16096,0.026592,0.368672,0.007488,0.019136,0.013536,4.68976,0.035776
+1118,170.369,5.86963,5.5855,0.025184,0.407552,0.007808,0.005536,0.010688,5.09379,0.034944
+1119,150.389,6.64941,6.0569,0.025504,0.39936,0.006144,0.006144,0.010272,5.57389,0.035584
+1120,153.397,6.51904,5.13648,0.025984,0.363232,0.007488,0.004832,0.011456,4.68662,0.036864
+1121,172.536,5.7959,5.56032,0.026656,0.3768,0.007424,0.004864,0.011296,5.0977,0.035584
+1122,160.113,6.24561,5.52141,0.026624,0.389024,0.00624,0.006144,0.01024,5.04422,0.038912
+1123,160.766,6.22021,5.17206,0.026912,0.38768,0.007776,0.005568,0.010752,4.69651,0.036864
+1124,157.599,6.34521,5.30931,0.026496,0.519168,0.007808,0.018816,0.011808,4.6895,0.035712
+1125,178.958,5.58789,6.04365,0.026656,0.409568,0.007296,0.004992,0.011328,5.54858,0.035232
+1126,146.317,6.83447,5.25104,0.025184,0.46064,0.006304,0.006144,0.02048,4.69581,0.03648
+1127,168.048,5.95068,5.59514,0.026592,0.40896,0.006816,0.005824,0.010592,5.10112,0.035232
+1128,160.829,6.21777,6.02102,0.026752,0.377184,0.007872,0.005536,0.0112,5.55616,0.03632
+1129,145.053,6.89404,5.54618,0.02656,0.413952,0.008,0.005536,0.010752,5.04586,0.03552
+1130,164.829,6.06689,6.39126,0.027648,0.381952,0.007904,0.005536,0.01072,5.92118,0.03632
+1131,141.593,7.0625,6.0335,0.02624,0.374432,0.006976,0.0056,0.010688,5.57434,0.035232
+1132,147.774,6.76709,5.20602,0.026624,0.392224,0.007168,0.006112,0.01024,4.72678,0.036864
+1133,171.209,5.84082,5.55946,0.026496,0.367936,0.006976,0.005632,0.010752,5.10506,0.036608
+1134,161.032,6.20996,5.16704,0.025952,0.377312,0.006496,0.005664,0.01072,4.70426,0.03664
+1135,160.038,6.24854,5.48384,0.028704,0.679936,0.006144,0.006144,0.012096,4.71398,0.036832
+1136,171.971,5.81494,5.18531,0.024576,0.393216,0.007808,0.005568,0.01072,4.70678,0.03664
+1137,159.514,6.26904,6.0927,0.026528,0.439296,0.007136,0.004128,0.01216,5.56659,0.036864
+1138,156.899,6.37354,5.15485,0.026624,0.370688,0.007456,0.004832,0.011392,4.69696,0.036896
+1139,162.269,6.1626,5.59318,0.027392,0.41536,0.006528,0.006048,0.010336,5.09133,0.036192
+1140,163.096,6.13135,6.00851,0.026368,0.37312,0.007424,0.004864,0.011424,5.5489,0.036416
+1141,150.246,6.65576,5.14461,0.026624,0.362112,0.006528,0.00608,0.010304,4.69606,0.036896
+1142,170.34,5.87061,5.5399,0.026304,0.38336,0.007936,0.005568,0.01072,5.07059,0.035424
+1143,162.695,6.14648,5.48864,0.026624,0.380928,0.007776,0.005536,0.009344,5.02061,0.037824
+1144,159.502,6.26953,5.18595,0.025504,0.407552,0.007648,0.00464,0.011584,4.69245,0.036576
+1145,165.522,6.0415,5.18381,0.023008,0.415296,0.006592,0.005984,0.0104,4.68582,0.036704
+1146,173.589,5.76074,6.08666,0.026624,0.43376,0.006592,0.00608,0.010272,5.56829,0.03504
+1147,140.322,7.12646,5.52256,0.026336,0.753952,0.008096,0.005568,0.012224,4.67974,0.03664
+1148,163.696,6.10889,6.54422,0.025408,0.503456,0.006496,0.00608,0.010304,5.95702,0.035456
+1149,141.789,7.05273,6.01907,0.026656,0.369792,0.007008,0.005568,0.010784,5.56371,0.035552
+1150,148.352,6.74072,5.18349,0.026624,0.403456,0.007744,0.00464,0.011648,4.69251,0.036864
+1151,169.508,5.89941,5.57347,0.02544,0.387072,0.00768,0.004608,0.011712,5.10134,0.035616
+1152,162.954,6.13672,6.03357,0.02608,0.3792,0.006528,0.00608,0.010304,5.57046,0.034912
+1153,148.859,6.71777,5.18173,0.026208,0.408256,0.007232,0.005056,0.0104,4.68781,0.036768
+1154,165.937,6.02637,5.64611,0.026944,0.483392,0.006272,0.005696,0.009888,5.0777,0.036224
+1155,159.464,6.271,5.16554,0.026144,0.391392,0.006912,0.005664,0.01072,4.68582,0.03888
+1156,157.806,6.33691,5.57469,0.026496,0.802176,0.00688,0.005536,0.012,4.68602,0.035584
+1157,165.201,6.05322,5.17472,0.023552,0.40448,0.006144,0.006144,0.01024,4.68784,0.03632
+1158,168.796,5.92432,6.01907,0.026624,0.387072,0.007872,0.005536,0.010688,5.54602,0.035264
+1159,145.114,6.89111,5.15914,0.026048,0.37968,0.007936,0.00432,0.011904,4.69235,0.036896
+1160,174.789,5.72119,5.56867,0.026176,0.39776,0.007296,0.004992,0.01024,5.08698,0.035232
+1161,153.696,6.50635,6.10202,0.0256,0.436224,0.007488,0.0048,0.011424,5.57962,0.036864
+1162,147.317,6.78809,5.20227,0.024896,0.432128,0.008064,0.005536,0.010688,4.68406,0.036896
+1163,171.841,5.81934,5.54173,0.024768,0.38496,0.006208,0.006144,0.01024,5.0729,0.036512
+1164,157.587,6.3457,6.44899,0.025024,0.393024,0.006336,0.006144,0.011488,5.97072,0.036256
+1165,132.454,7.5498,6.56422,0.02672,0.541312,0.0072,0.005088,0.010368,5.93702,0.036512
+1166,133.091,7.51367,6.21568,0.026304,0.459072,0.00736,0.015104,0.026688,5.64592,0.035232
+1167,137.063,7.2959,5.32685,0.02672,0.53648,0.00768,0.004608,0.01168,4.70262,0.037056
+1168,143.8,6.9541,5.32275,0.0264,0.524512,0.006144,0.006144,0.026624,4.69715,0.035776
+1169,201.773,4.95605,5.57248,0.026208,0.397312,0.00656,0.005984,0.0104,5.08931,0.036704
+1170,157.611,6.34473,5.25293,0.026624,0.462464,0.006528,0.006048,0.010336,4.70426,0.036672
+1171,146.894,6.80762,5.87178,0.026656,1.0745,0.020736,0.005984,0.012,4.69613,0.035776
+1172,163.866,6.10254,5.18816,0.0264,0.416512,0.008128,0.005536,0.010816,4.68387,0.036896
+1173,145.807,6.8584,6.10784,0.025504,0.454656,0.007712,0.004608,0.012256,5.56755,0.035552
+1174,168.227,5.94434,5.16704,0.026464,0.379168,0.007584,0.004704,0.01152,4.70064,0.03696
+1175,171.409,5.83398,5.69424,0.025312,0.505408,0.006592,0.006016,0.010368,5.10509,0.035456
+1176,159.006,6.28906,6.0145,0.027872,0.370656,0.006976,0.005632,0.010752,5.55622,0.036384
+1177,148.967,6.71289,5.17184,0.025216,0.374784,0.00752,0.004768,0.01152,4.71258,0.035456
+1178,158.367,6.31445,5.64618,0.026112,0.436832,0.007584,0.004704,0.012256,5.1231,0.035584
+1179,172.333,5.80273,6.00861,0.026528,0.381632,0.007584,0.004672,0.011712,5.5401,0.036384
+1180,151.479,6.60156,5.56035,0.026656,0.36768,0.00704,0.005568,0.010688,5.10592,0.0368
+1181,158.391,6.31348,5.1448,0.026048,0.373536,0.007328,0.00496,0.01136,4.68598,0.035584
+1182,161.846,6.17871,5.64042,0.025504,0.865728,0.00672,0.005792,0.012128,4.68771,0.036832
+1183,152.859,6.54199,5.17722,0.026656,0.406848,0.006816,0.00576,0.010624,4.68378,0.036736
+1184,191.976,5.20898,5.5767,0.026624,0.388672,0.006592,0.006016,0.010368,5.10307,0.03536
+1185,162.876,6.13965,5.99597,0.026624,0.367808,0.006976,0.0056,0.01056,5.54189,0.036512
+1186,148.427,6.7373,5.15891,0.026624,0.387072,0.007744,0.004544,0.011712,4.68435,0.036864
+1187,163.265,6.125,5.61754,0.026304,0.439232,0.00784,0.005536,0.013248,5.08928,0.036096
+1188,160.552,6.22852,6.10307,0.026624,0.446464,0.007808,0.005536,0.01072,5.57037,0.035552
+1189,138.304,7.23047,5.59107,0.027712,0.381408,0.006624,0.00592,0.010464,5.12208,0.036864
+1190,178.366,5.60645,5.1712,0.02656,0.385152,0.00784,0.005568,0.01072,4.69853,0.036832
+1191,164.736,6.07031,5.16755,0.02912,0.386496,0.006752,0.005856,0.011936,4.69056,0.036832
+1192,172.507,5.79688,5.19238,0.025376,0.394176,0.00704,0.005568,0.01072,4.71402,0.035488
+1193,167.979,5.95312,5.54877,0.026336,0.37168,0.007552,0.004736,0.011552,5.09117,0.035744
+1194,165.375,6.04688,6.03757,0.026272,0.367456,0.00784,0.005536,0.01072,5.58333,0.036416
+1195,149.489,6.68945,5.15654,0.026624,0.370368,0.006496,0.006112,0.01024,4.7,0.036704
+1196,162.154,6.16699,5.5761,0.026624,0.37888,0.00784,0.005536,0.010688,5.11027,0.036256
+1197,161.463,6.19336,6.04582,0.02624,0.382464,0.006976,0.005568,0.010976,5.5783,0.035296
+1198,151.929,6.58203,5.16387,0.026656,0.369472,0.00784,0.004448,0.011424,4.70826,0.035776
+1199,169.172,5.91113,5.51018,0.026624,0.36864,0.007648,0.00464,0.011488,5.05485,0.036288
+1200,165.401,6.0459,5.14291,0.025632,0.370656,0.007168,0.00512,0.01024,4.68787,0.036224
+1201,164.604,6.0752,6.1496,0.02704,0.45824,0.006656,0.020128,0.010592,5.59104,0.035904
+1202,145.599,6.86816,5.3064,0.024576,0.52224,0.008,0.005568,0.010688,4.69955,0.035776
+1203,170.411,5.86816,6.07846,0.026624,0.39936,0.007168,0.00512,0.011456,5.59187,0.036864
+1204,142.242,7.03027,5.20602,0.026304,0.426304,0.007552,0.004736,0.01232,4.69318,0.035616
+1205,175.013,5.71387,5.5767,0.026656,0.3768,0.0072,0.005088,0.01024,5.11574,0.034976
+1206,139.643,7.16113,6.22573,0.026624,0.569344,0.008032,0.005568,0.010688,5.56992,0.035552
+1207,159.353,6.27539,5.13869,0.0264,0.35888,0.007904,0.005536,0.010656,4.69245,0.036864
+1208,174.239,5.73926,5.56442,0.026624,0.376832,0.007456,0.004832,0.01024,5.10326,0.035168
+1209,159.9,6.25391,6.03136,0.026624,0.372448,0.006432,0.006144,0.01024,5.57261,0.036864
+1210,153.431,6.51758,5.53165,0.026656,0.36656,0.008,0.005536,0.010592,5.07894,0.03536
+1211,158.588,6.30566,5.15808,0.026656,0.372704,0.0072,0.005088,0.01024,4.69949,0.036704
+1212,177.132,5.64551,5.91117,0.027264,0.647168,0.010016,0.006368,0.04016,5.1448,0.035392
+1213,143.659,6.96094,5.29021,0.026432,0.49808,0.007968,0.005536,0.010752,4.70579,0.035648
+1214,177.101,5.64648,5.53571,0.026144,0.375328,0.006144,0.006144,0.01024,5.07494,0.036768
+1215,163.161,6.12891,6.02742,0.026144,0.352032,0.007008,0.005312,0.010592,5.58947,0.036864
+1216,143.177,6.98438,5.5673,0.0256,0.401216,0.007456,0.004832,0.012288,5.07904,0.036864
+1217,162.102,6.16895,6.44304,0.025312,0.370688,0.00768,0.004608,0.011584,5.98701,0.03616
+1218,130.114,7.68555,6.02976,0.02624,0.353056,0.007904,0.005568,0.010624,5.58947,0.036896
+1219,164.261,6.08789,5.16915,0.026624,0.36,0.006592,0.006112,0.010304,4.72266,0.036864
+1220,173.972,5.74805,5.59517,0.026624,0.372704,0.006176,0.006144,0.01024,5.13757,0.035712
+1221,160.075,6.24707,5.50496,0.026624,0.356224,0.006272,0.006144,0.01024,5.06061,0.038848
+1222,161.311,6.19922,5.42944,0.026304,0.369152,0.0072,0.005088,0.01024,4.97021,0.041248
+1223,164.789,6.06836,5.15632,0.026144,0.363232,0.007232,0.005056,0.01024,4.70806,0.036352
+1224,163.396,6.12012,6.07206,0.025184,0.394976,0.00768,0.004896,0.01136,5.5919,0.036064
+1225,151.636,6.59473,5.16726,0.0264,0.370592,0.006848,0.005728,0.010688,4.70976,0.037248
+1226,171.582,5.82812,5.56237,0.02768,0.383968,0.007552,0.004736,0.01152,5.09146,0.035456
+1227,162.488,6.1543,6.01498,0.02656,0.368704,0.007808,0.00448,0.01024,5.56208,0.035104
+1228,149.162,6.7041,5.19322,0.026624,0.374784,0.00752,0.004768,0.011392,4.73178,0.036352
+1229,170.071,5.87988,5.56669,0.026048,0.38368,0.007168,0.00512,0.011392,5.09798,0.035296
+1230,159.701,6.26172,5.9703,0.026144,0.44128,0.007968,0.005472,0.010784,5.44189,0.036768
+1231,157.152,6.36328,5.50858,0.026656,0.364512,0.007968,0.00432,0.011584,5.05722,0.03632
+1232,165.108,6.05664,5.15629,0.025984,0.365472,0.00768,0.004576,0.011424,4.70438,0.036768
+1233,153.754,6.50391,6.17923,0.026528,0.510464,0.007872,0.005568,0.01072,5.58118,0.036896
+1234,150.566,6.6416,5.18237,0.023456,0.385024,0.007872,0.005536,0.010848,4.71389,0.035744
+1235,163.474,6.11719,6.26214,0.026624,0.58368,0.007904,0.005536,0.011136,5.59104,0.036224
+1236,144.776,6.90723,6.21594,0.026752,0.518496,0.00624,0.006144,0.02032,5.60253,0.035456
+1237,148.945,6.71387,5.20778,0.025312,0.406624,0.00704,0.005568,0.01072,4.71626,0.036256
+1238,169.396,5.90332,5.57104,0.025216,0.380928,0.007648,0.00464,0.011584,5.10435,0.036672
+1239,161.209,6.20312,6.03222,0.026496,0.372864,0.007008,0.0056,0.010816,5.57382,0.035616
+1240,141.809,7.05176,5.29238,0.02624,0.490176,0.006176,0.005856,0.010528,4.71654,0.036864
+1241,170.213,5.875,5.58861,0.024672,0.384416,0.006752,0.005888,0.010528,5.11997,0.036384
+1242,163.945,6.09961,5.89421,0.025984,0.357056,0.007456,0.004832,0.01024,5.45328,0.03536
+1243,151.547,6.59863,5.53693,0.026176,0.374528,0.006848,0.005728,0.010656,5.07645,0.036544
+1244,163.657,6.11035,5.16669,0.026624,0.374816,0.007424,0.004832,0.011424,4.70461,0.03696
+1245,162.179,6.16602,6.16109,0.027136,0.456864,0.007904,0.005536,0.024928,5.60362,0.035104
+1246,149.664,6.68164,5.24285,0.026784,0.417984,0.006144,0.006144,0.01024,4.73907,0.03648
+1247,170.128,5.87793,5.33914,0.026624,0.536576,0.0072,0.005088,0.012288,4.71578,0.035584
+1248,169.144,5.91211,6.04051,0.025536,0.360352,0.00624,0.005984,0.0104,5.59683,0.035168
+1249,146.6,6.82129,5.2121,0.026624,0.4096,0.007296,0.004992,0.011296,4.71549,0.0368
+1250,166.126,6.01953,5.58701,0.026112,0.379488,0.007488,0.004768,0.011424,5.12214,0.035584
+1251,159.377,6.27441,6.0681,0.024832,0.387072,0.00736,0.004928,0.011264,5.59616,0.03648
+1252,149.598,6.68457,5.18326,0.026528,0.407328,0.006464,0.006144,0.01024,4.68989,0.036672
+1253,170.923,5.85059,5.54218,0.025472,0.362272,0.006336,0.006144,0.01024,5.09507,0.03664
+1254,165.964,6.02539,5.15264,0.026464,0.348992,0.007776,0.004512,0.010368,4.71232,0.042208
+1255,160.451,6.23242,5.42544,0.026368,0.621088,0.009952,0.005536,0.011136,4.71578,0.035584
+1256,166.612,6.00195,5.24083,0.026624,0.4424,0.007776,0.005568,0.0112,4.7104,0.036864
+1257,171.009,5.84766,6.09309,0.024832,0.401408,0.007584,0.004704,0.011552,5.60611,0.036896
+1258,150.389,6.64941,5.16864,0.026624,0.376832,0.007648,0.00464,0.011584,4.70448,0.036832
+1259,169.93,5.88477,5.57853,0.026272,0.381344,0.006592,0.006112,0.010272,5.11152,0.036416
+1260,159.278,6.27832,6.03603,0.0264,0.37952,0.006208,0.006144,0.01024,5.57229,0.035232
+1261,152.109,6.57422,5.5417,0.026048,0.352992,0.007456,0.004864,0.011232,5.10259,0.036512
+1262,163.448,6.11816,5.1601,0.0264,0.368288,0.00672,0.005536,0.01056,4.70563,0.03696
+1263,148.643,6.72754,5.24704,0.030848,0.431552,0.006752,0.005888,0.010528,4.7247,0.036768
+1264,169.116,5.91309,5.20803,0.026848,0.420448,0.00736,0.004896,0.011264,4.70118,0.036032
+1265,157.393,6.35352,5.33914,0.025792,0.518688,0.006432,0.006144,0.01024,4.7361,0.035744
+1266,173.383,5.76758,6.13981,0.025984,0.432896,0.007328,0.004992,0.011296,5.62067,0.03664
+1267,150.743,6.63379,5.17939,0.027872,0.367392,0.007424,0.004864,0.01168,4.7233,0.036864
+1268,169.508,5.89941,5.56118,0.026784,0.375488,0.007232,0.005088,0.010208,5.10074,0.035648
+1269,163.866,6.10254,6.06915,0.025696,0.353536,0.00672,0.005536,0.010784,5.61978,0.047104
+1270,139.206,7.18359,5.22349,0.026464,0.427424,0.006912,0.005728,0.010656,4.70973,0.036576
+1271,170.838,5.85352,5.56861,0.026592,0.382688,0.00656,0.006048,0.010336,5.10106,0.035328
+1272,165.241,6.05176,5.13024,0.026624,0.350208,0.006144,0.006144,0.011648,4.69258,0.036896
+1273,159.676,6.2627,5.17734,0.028704,0.376192,0.006752,0.005856,0.010528,4.71245,0.036864
+1274,162.902,6.13867,5.23478,0.026688,0.439936,0.007008,0.0056,0.01072,4.70842,0.036416
+1275,159.229,6.28027,6.23219,0.026624,0.54272,0.007744,0.005568,0.01072,5.6032,0.035616
+1276,160.175,6.24316,5.1625,0.025056,0.371712,0.00704,0.004224,0.011744,4.70602,0.036704
+1277,171.409,5.83398,5.59638,0.026528,0.366272,0.00656,0.006144,0.01024,5.14458,0.036064
+1278,160.829,6.21777,6.0072,0.026496,0.37536,0.008096,0.005568,0.010752,5.54563,0.035296
+1279,150.766,6.63281,5.17498,0.026496,0.360256,0.006944,0.005664,0.010592,4.72691,0.038112
+1280,164.763,6.06934,5.63613,0.03072,0.439936,0.006528,0.00608,0.010304,5.10742,0.035136
+1281,165.615,6.03809,5.5152,0.026304,0.360768,0.007168,0.00512,0.01024,5.068,0.0376
+1282,161.82,6.17969,5.42874,0.0264,0.357792,0.00688,0.005568,0.010656,4.98317,0.038272
+1283,158.342,6.31543,5.17098,0.027968,0.367296,0.006144,0.006144,0.01024,4.71654,0.03664
+1284,169.033,5.91602,5.82861,0.026272,0.579136,0.03664,0.00512,0.012288,5.13376,0.035392
+1285,135.468,7.38184,5.35347,0.026592,0.532352,0.006304,0.02048,0.01136,4.71952,0.036864
+1286,201.654,4.95898,5.57546,0.025344,0.382976,0.00768,0.004608,0.011552,5.1064,0.036896
+1287,161.897,6.17676,6.08051,0.026624,0.376832,0.006144,0.006144,0.01024,5.61773,0.0368
+1288,148.212,6.74707,5.20192,0.026624,0.394688,0.00672,0.005856,0.010528,4.72067,0.036832
+1289,171.611,5.82715,5.60333,0.026656,0.365824,0.006912,0.0056,0.010752,5.1519,0.03568
+1290,147.211,6.79297,5.97197,0.026048,0.416736,0.007616,0.014656,0.026208,5.44426,0.036448
+1291,169.2,5.91016,5.58285,0.025952,0.363168,0.007488,0.0048,0.011296,5.13328,0.036864
+1292,162.488,6.1543,5.15517,0.025504,0.37072,0.007648,0.004608,0.011392,4.69891,0.036384
+1293,162.462,6.15527,6.10675,0.026624,0.391168,0.007392,0.004896,0.02048,5.61971,0.03648
+1294,152.631,6.55176,5.21325,0.026656,0.39648,0.006944,0.00528,0.010816,4.7311,0.035968
+1295,137.468,7.27441,5.78662,0.025632,0.946144,0.008192,0.005568,0.012096,4.75213,0.036864
+1296,201.1,4.97266,6.07232,0.026624,0.372064,0.006816,0.005472,0.010496,5.61536,0.035488
+1297,149.708,6.67969,5.18445,0.025536,0.37184,0.00704,0.005536,0.010592,4.72704,0.036864
+1298,168.977,5.91797,5.58694,0.026624,0.376352,0.006624,0.005984,0.0104,5.12602,0.034944
+1299,162.488,6.1543,6.04714,0.026624,0.370688,0.007232,0.005056,0.01152,5.58963,0.036384
+1300,135.199,7.39648,5.60602,0.026592,0.418304,0.006304,0.006144,0.011456,5.1023,0.034912
+1301,161.769,6.18164,6.05389,0.026624,0.374784,0.007456,0.004832,0.011392,5.59341,0.035392
+1302,152.676,6.5498,5.17917,0.026144,0.385216,0.006432,0.006144,0.01024,4.708,0.036992
+1303,167.102,5.98438,5.51741,0.025568,0.380416,0.006656,0.005984,0.0104,5.0392,0.049184
+1304,162.385,6.1582,5.17776,0.02656,0.360928,0.00736,0.004928,0.01024,4.73088,0.036864
+1305,154.031,6.49219,6.14605,0.026368,0.473344,0.007776,0.005568,0.01936,5.5783,0.035328
+1306,151.099,6.61816,5.28794,0.028224,0.436608,0.022208,0.005536,0.010752,4.74966,0.034944
+1307,162.824,6.1416,5.65267,0.026112,0.434464,0.00656,0.006048,0.010336,5.13363,0.03552
+1308,165.937,6.02637,6.06029,0.025376,0.364416,0.007968,0.005504,0.010208,5.61037,0.036448
+1309,150.301,6.65332,5.15923,0.026336,0.35488,0.007264,0.005024,0.010272,4.71754,0.03792
+1310,158.514,6.30859,5.60637,0.02704,0.409824,0.006464,0.00608,0.010304,5.10976,0.036896
+1311,163.866,6.10254,6.03549,0.026624,0.366592,0.007488,0.0048,0.011328,5.58176,0.036896
+1312,148.492,6.73438,5.20941,0.026048,0.398112,0.007776,0.005536,0.010784,4.72432,0.036832
+1313,151.591,6.59668,5.7608,0.026624,0.559136,0.007328,0.014496,0.010912,5.10566,0.03664
+1314,165.455,6.04395,5.20045,0.025568,0.388832,0.006432,0.006144,0.010272,4.71958,0.043616
+1315,153.731,6.50488,5.77338,0.032416,0.684096,0.006496,0.005568,0.01184,4.99533,0.037632
+1316,162.565,6.15137,5.18285,0.026624,0.376832,0.00784,0.005536,0.01072,4.71907,0.036224
+1317,168.921,5.91992,6.10006,0.026624,0.427584,0.006592,0.0056,0.010752,5.58698,0.035936
+1318,148.041,6.75488,5.2735,0.026112,0.442368,0.006688,0.006016,0.02672,4.72883,0.036768
+1319,173.148,5.77539,5.56854,0.026624,0.368608,0.006176,0.006144,0.01024,5.11539,0.03536
+1320,164.234,6.08887,6.10714,0.026784,0.384864,0.007488,0.0048,0.01024,5.63776,0.0352
+1321,146.6,6.82129,5.56032,0.026304,0.374336,0.006912,0.00576,0.010624,5.10077,0.035616
+1322,163.005,6.13477,6.44413,0.026624,0.37392,0.00704,0.0056,0.010784,5.98422,0.035936
+1323,139.986,7.14355,6.04998,0.026208,0.37744,0.007904,0.005536,0.010592,5.58742,0.03488
+1324,152.2,6.57031,5.56195,0.026112,0.36464,0.006688,0.005856,0.010528,5.11181,0.03632
+1325,154.333,6.47949,6.18426,0.02672,0.490656,0.006912,0.005664,0.01072,5.60742,0.03616
+1326,154.683,6.46484,5.21424,0.0264,0.37472,0.006432,0.006144,0.01024,4.75341,0.036896
+1327,172.71,5.79004,5.156,0.026432,0.366784,0.007808,0.005536,0.01072,4.70253,0.036192
+1328,168.615,5.93066,5.23898,0.026688,0.425728,0.006464,0.006144,0.01024,4.72867,0.03504
+1329,171.094,5.84473,6.07258,0.025504,0.37664,0.006336,0.006144,0.011936,5.60982,0.036192
+1330,130.23,7.67871,5.2984,0.026528,0.4832,0.006496,0.004224,0.010208,4.73088,0.036864
+1331,193.719,5.16211,5.59014,0.026624,0.41136,0.006432,0.006144,0.01024,5.09338,0.035968
+1332,162.077,6.16992,6.0928,0.0264,0.397408,0.006272,0.006144,0.01024,5.60947,0.036864
+1333,149.141,6.70508,5.19712,0.026624,0.364544,0.008,0.005536,0.01072,4.74515,0.036544
+1334,172.769,5.78809,5.5905,0.026656,0.372608,0.00624,0.006144,0.01024,5.13229,0.03632
+1335,162.488,6.1543,5.17594,0.026464,0.368544,0.007008,0.005376,0.01056,4.72099,0.036992
+1336,163.5,6.11621,5.20925,0.026528,0.38512,0.007712,0.004576,0.012288,4.7368,0.036224
+1337,169.312,5.90625,5.22496,0.025632,0.419808,0.007648,0.00464,0.011648,4.71917,0.036416
+1338,156.264,6.39941,6.19382,0.025248,0.479232,0.007424,0.004864,0.011392,5.63085,0.034816
+1339,141.495,7.06738,5.50861,0.026016,0.698016,0.00688,0.005568,0.01104,4.72448,0.036608
+1340,174.953,5.71582,6.4337,0.025504,0.352256,0.00816,0.005536,0.010528,5.99648,0.035232
+1341,139.434,7.17188,6.07226,0.026432,0.375712,0.007872,0.005536,0.010656,5.60998,0.036064
+1342,151.457,6.60254,5.18147,0.026336,0.368928,0.007264,0.005024,0.01024,4.72678,0.036896
+1343,167.539,5.96875,5.5585,0.026816,0.374848,0.007456,0.0048,0.011488,5.09741,0.03568
+1344,165.455,6.04395,6.05357,0.02656,0.354368,0.007264,0.005056,0.010208,5.61357,0.036544
+1345,144.429,6.92383,5.56032,0.026624,0.370368,0.006464,0.00592,0.010464,5.10515,0.035328
+1346,163.057,6.13281,6.05776,0.026432,0.358208,0.006528,0.006048,0.010208,5.6137,0.03664
+1347,150.988,6.62305,5.16659,0.026272,0.35424,0.00656,0.005696,0.010688,4.72608,0.037056
+1348,171.812,5.82031,5.17808,0.025312,0.354304,0.007424,0.004864,0.011264,4.73805,0.036864
+1349,169.93,5.88477,5.20336,0.0328,0.363808,0.006848,0.00576,0.010624,4.74726,0.036256
+1350,161.438,6.19434,6.27712,0.02544,0.558752,0.006368,0.006144,0.02624,5.61907,0.035104
+1351,147.849,6.76367,5.33517,0.025504,0.496768,0.006976,0.005728,0.010656,4.75286,0.036672
+1352,169.368,5.9043,5.58637,0.026624,0.402976,0.006624,0.005984,0.0104,5.09747,0.036288
+1353,165.028,6.05957,6.09555,0.025632,0.366592,0.008096,0.005536,0.010144,5.64301,0.036544
+1354,151.367,6.60645,5.17674,0.026624,0.370624,0.006208,0.006016,0.010368,4.72064,0.036256
+1355,147.465,6.78125,5.71805,0.026464,0.526496,0.00752,0.004768,0.010272,5.10704,0.035488
+1356,185.507,5.39062,5.53373,0.026176,0.370784,0.006496,0.006048,0.010336,5.07494,0.038944
+1357,161.591,6.18848,5.19014,0.026272,0.366912,0.006656,0.005856,0.010528,4.73866,0.035264
+1358,169.256,5.9082,5.17421,0.025536,0.374784,0.007904,0.005568,0.010496,4.71306,0.036864
+1359,173.236,5.77246,6.03341,0.025984,0.348096,0.006848,0.005728,0.010656,5.60106,0.03504
+1360,128.24,7.79785,5.34179,0.025152,0.522048,0.006336,0.006144,0.011584,4.73363,0.036896
+1361,178.118,5.61426,5.56957,0.02656,0.371904,0.00704,0.005408,0.010496,5.11206,0.036096
+1362,164.419,6.08203,6.0728,0.026656,0.364992,0.007808,0.00448,0.01152,5.62237,0.034976
+1363,147.849,6.76367,5.19766,0.026176,0.372544,0.006944,0.005504,0.010592,4.73936,0.036544
+1364,172.885,5.78418,5.57299,0.026368,0.37312,0.0064,0.005856,0.010464,5.11539,0.035392
+1365,149.927,6.66992,6.14432,0.03776,0.448512,0.007968,0.022528,0.010464,5.5808,0.036288
+1366,160.905,6.21484,5.5561,0.026624,0.376128,0.006848,0.005344,0.01056,5.09491,0.03568
+1367,162.154,6.16699,5.16326,0.026464,0.357952,0.007008,0.005312,0.010624,4.72013,0.035776
+1368,160.426,6.2334,5.59866,0.026624,0.77824,0.009824,0.005536,0.011264,4.73088,0.036288
+1369,163.866,6.10254,5.2736,0.026304,0.46432,0.00704,0.005568,0.010688,4.72422,0.035456
+1370,159.278,6.27832,5.52275,0.026176,0.7152,0.007296,0.004992,0.012288,4.7199,0.036896
+1371,174.09,5.74414,6.11942,0.02624,0.430464,0.007584,0.004704,0.011552,5.60326,0.035616
+1372,151.39,6.60547,5.1712,0.026624,0.3584,0.00784,0.004448,0.01024,4.72678,0.036864
+1373,172.246,5.80566,5.56646,0.026368,0.355712,0.00704,0.00528,0.010784,5.12442,0.036864
+1374,159.9,6.25391,6.42358,0.026624,0.383008,0.007808,0.005536,0.010752,5.95398,0.035872
+1375,141.73,7.05566,6.45629,0.0256,0.380896,0.0072,0.005088,0.01024,5.99168,0.035584
+1376,140.236,7.13086,6.06618,0.026624,0.376832,0.008032,0.005536,0.010976,5.6032,0.034976
+1377,150.147,6.66016,5.16458,0.026176,0.366592,0.006784,0.005504,0.010784,4.71226,0.03648
+1378,175.824,5.6875,5.51923,0.026336,0.365216,0.00768,0.004608,0.011424,5.06749,0.03648
+1379,159.328,6.27637,5.17325,0.026624,0.374784,0.007616,0.004672,0.011552,4.71114,0.036864
+1380,163.866,6.10254,6.10918,0.026624,0.421888,0.00768,0.004608,0.011648,5.60179,0.034944
+1381,149.817,6.6748,5.24698,0.026112,0.434688,0.007488,0.0048,0.012096,4.72634,0.035456
+1382,163.892,6.10156,5.74054,0.026624,0.509216,0.00688,0.004096,0.015968,5.1409,0.036864
+1383,157.587,6.3457,6.08899,0.025504,0.405504,0.007776,0.005536,0.01072,5.59773,0.036224
+1384,142.758,7.00488,5.33027,0.026624,0.50176,0.007552,0.004736,0.01152,4.74186,0.036224
+1385,169.733,5.8916,5.63242,0.02544,0.401152,0.0064,0.006112,0.010304,5.14659,0.036416
+1386,161.642,6.18652,6.03955,0.026624,0.384832,0.006336,0.006144,0.01024,5.5705,0.03488
+1387,151.457,6.60254,5.54214,0.026048,0.367424,0.007424,0.004864,0.0104,5.08912,0.036864
+1388,136.533,7.32422,6.26282,0.026496,0.600192,0.008192,0.014272,0.010336,5.56781,0.03552
+1389,174.953,5.71582,5.17725,0.026624,0.366592,0.007488,0.0048,0.011456,4.72352,0.036768
+1390,176.369,5.66992,5.16506,0.02656,0.366656,0.00752,0.004768,0.010336,4.71235,0.036864
+1391,167.402,5.97363,5.19222,0.026912,0.368704,0.007584,0.004704,0.01152,4.73728,0.03552
+1392,176.704,5.65918,6.02448,0.026144,0.344544,0.007392,0.004896,0.010304,5.59507,0.036128
+1393,129.228,7.73828,5.18893,0.026464,0.386816,0.00656,0.006144,0.010272,4.71626,0.036416
+1394,192.264,5.20117,5.60726,0.026816,0.428256,0.008,0.005536,0.010688,5.09168,0.036288
+1395,166.64,6.00098,6.08461,0.026112,0.382656,0.006976,0.005632,0.01056,5.61581,0.036864
+1396,147.721,6.76953,5.18304,0.026624,0.378528,0.006496,0.006112,0.010176,4.71869,0.036416
+1397,170.781,5.85547,5.56358,0.026624,0.370688,0.007584,0.004704,0.01024,5.10771,0.036032
+1398,159.825,6.25684,5.2983,0.026144,0.479104,0.007008,0.005632,0.01072,4.72067,0.049024
+1399,164.287,6.08691,5.21011,0.028576,0.406976,0.006816,0.00608,0.010304,4.71616,0.0352
+1400,157.538,6.34766,5.31216,0.02672,0.493536,0.006336,0.00608,0.013664,4.72928,0.036544
+1401,165.508,6.04199,6.20237,0.026592,0.47312,0.007968,0.013792,0.011008,5.63405,0.03584
+1402,134.295,7.44629,5.45587,0.027808,0.631648,0.006144,0.006144,0.020352,4.72691,0.036864
+1403,171.812,5.82031,5.43165,0.026528,0.602496,0.006304,0.006144,0.01216,4.74125,0.036768
+1404,169.649,5.89453,6.0928,0.026528,0.386272,0.00704,0.005536,0.01072,5.62131,0.035392
+1405,144.205,6.93457,5.25219,0.026624,0.431904,0.006368,0.0136,0.027168,4.71008,0.036448
+1406,170.383,5.86914,5.59114,0.0256,0.376864,0.00768,0.004576,0.01168,5.12813,0.036608
+1407,163.109,6.13086,6.05504,0.026336,0.352576,0.007776,0.004512,0.01024,5.6176,0.036
+1408,142.519,7.0166,5.6279,0.026624,0.393216,0.007424,0.004864,0.012032,5.14893,0.034816
+1409,158.71,6.30078,5.96365,0.026656,0.393184,0.007552,0.004736,0.011488,5.4833,0.036736
+1410,154.917,6.45508,5.17613,0.025504,0.36848,0.006144,0.006144,0.01024,4.72269,0.036928
+1411,168.145,5.94727,5.1896,0.0264,0.384384,0.007008,0.0056,0.010752,4.71862,0.036832
+1412,168.227,5.94434,5.20902,0.025568,0.40448,0.007008,0.005568,0.01072,4.72042,0.035264
+1413,160.855,6.2168,6.15424,0.026368,0.470816,0.006624,0.005568,0.010592,5.59741,0.036864
+1414,151.749,6.58984,5.19302,0.026304,0.38944,0.007328,0.00496,0.010304,4.71843,0.036256
+1415,162.205,6.16504,5.58902,0.026624,0.405504,0.006144,0.006144,0.01024,5.0985,0.035872
+1416,163.552,6.11426,6.0513,0.026624,0.366272,0.006464,0.006144,0.010272,5.5992,0.03632
+1417,145.786,6.85938,5.1753,0.026368,0.372544,0.006592,0.005728,0.010656,4.71654,0.036864
+1418,162.591,6.15039,5.60333,0.026624,0.415552,0.006336,0.006144,0.01024,5.10266,0.035776
+1419,162.979,6.13574,6.01952,0.025504,0.35328,0.00704,0.005536,0.01056,5.58122,0.036384
+1420,152.381,6.5625,5.54454,0.025184,0.352256,0.007936,0.005568,0.010976,5.10739,0.035232
+1421,159.328,6.27637,5.1769,0.02672,0.372736,0.007648,0.004608,0.011488,4.71533,0.038368
+1422,174.002,5.74707,5.70371,0.02656,0.499776,0.010016,0.005536,0.011072,5.1153,0.035456
+1423,155.505,6.43066,5.17485,0.038784,0.37696,0.007264,0.005024,0.01024,4.6999,0.036672
+1424,175.433,5.7002,5.5337,0.026624,0.364544,0.007392,0.004896,0.01024,5.08442,0.035584
+1425,164.129,6.09277,6.05731,0.026624,0.354304,0.0072,0.005088,0.011872,5.61597,0.036256
+1426,148.406,6.73828,5.57226,0.026624,0.372736,0.007904,0.005568,0.010688,5.11222,0.036512
+1427,161.616,6.1875,6.41437,0.025152,0.366592,0.007296,0.005024,0.010208,5.96378,0.03632
+1428,141.358,7.07422,6.04269,0.026624,0.373952,0.006976,0.005792,0.010592,5.58285,0.035904
+1429,150.854,6.62891,5.53168,0.026624,0.366592,0.006144,0.006144,0.01024,5.08006,0.035872
+1430,163.892,6.10156,6.0368,0.025728,0.368928,0.00688,0.005696,0.01056,5.58298,0.036032
+1431,148.751,6.72266,5.14707,0.026272,0.360608,0.006752,0.005856,0.010528,4.70016,0.036896
+1432,177.01,5.64941,5.17974,0.026976,0.36656,0.007712,0.004608,0.011328,4.72566,0.036896
+1433,152.676,6.5498,5.3185,0.026688,0.525408,0.00704,0.005568,0.010688,4.70653,0.036576
+1434,169.005,5.91699,6.12797,0.025984,0.449504,0.0072,0.005088,0.01024,5.59478,0.035168
+1435,126.186,7.9248,5.52349,0.026656,0.696288,0.007776,0.005536,0.014976,4.73514,0.03712
+1436,191.976,5.20898,5.57277,0.02528,0.391104,0.00752,0.004832,0.01136,5.09629,0.036384
+1437,164.895,6.06445,6.07661,0.026656,0.38736,0.006688,0.005888,0.010496,5.60307,0.036448
+1438,146.684,6.81738,5.19939,0.026624,0.412704,0.007072,0.005568,0.01072,4.69994,0.036768
+1439,168.754,5.92578,5.568,0.026656,0.37232,0.007008,0.00576,0.010656,5.10928,0.03632
+1440,149.336,6.69629,6.09574,0.025504,0.432096,0.00752,0.004768,0.011552,5.57891,0.035392
+1441,162.179,6.16602,5.54394,0.026656,0.372,0.006848,0.005728,0.010688,5.08698,0.03504
+1442,163.971,6.09863,5.15875,0.026272,0.369056,0.00752,0.004768,0.01024,4.70403,0.036864
+1443,156.647,6.38379,5.54387,0.028224,0.3744,0.006976,0.005728,0.010656,5.08109,0.0368
+1444,165.803,6.03125,5.14256,0.026624,0.354304,0.006144,0.006144,0.01024,4.70358,0.03552
+1445,141.966,7.04395,6.1481,0.026624,0.4608,0.007744,0.004544,0.012192,5.60118,0.035008
+1446,158.269,6.31836,6.21942,0.03184,0.555936,0.00768,0.014496,0.020832,5.55315,0.035488
+1447,138.472,7.22168,5.2777,0.026848,0.484832,0.006464,0.006144,0.01024,4.7063,0.036864
+1448,155.34,6.4375,5.22464,0.026304,0.449056,0.007392,0.004864,0.011424,4.68874,0.036864
+1449,174.002,5.74707,6.04742,0.026496,0.393344,0.007264,0.005056,0.010336,5.56838,0.036544
+1450,148.298,6.74316,5.13837,0.026496,0.36672,0.007648,0.00464,0.011616,4.68406,0.037184
+1451,172.072,5.81152,5.52496,0.026528,0.366688,0.007168,0.00512,0.01024,5.0729,0.03632
+1452,163.997,6.09766,6.03075,0.026624,0.387072,0.007616,0.004672,0.011392,5.55712,0.036256
+1453,147.891,6.76172,5.54787,0.026624,0.380928,0.007712,0.004576,0.011584,5.0809,0.035552
+1454,163.369,6.12109,5.16448,0.02656,0.370752,0.007968,0.005568,0.01072,4.70598,0.036928
+1455,154.287,6.48145,5.15811,0.028576,0.37456,0.006464,0.006144,0.011392,4.69395,0.037024
+1456,174.15,5.74219,5.14048,0.026592,0.37072,0.00784,0.005536,0.010528,4.6824,0.036864
+1457,167.293,5.97754,5.15763,0.02736,0.38272,0.0064,0.006144,0.010272,4.68787,0.036864
+1458,171.812,5.82031,6.02064,0.026656,0.356096,0.006368,0.006016,0.010368,5.57875,0.036384
+1459,151.704,6.5918,5.17754,0.02528,0.377952,0.00704,0.005536,0.010656,4.71466,0.036416
+1460,173.178,5.77441,5.54259,0.026272,0.37376,0.007424,0.004864,0.011424,5.08336,0.035488
+1461,160.527,6.22949,6.00986,0.026624,0.377312,0.006656,0.00592,0.010464,5.54739,0.035488
+1462,153.661,6.50781,5.50698,0.026624,0.356192,0.006304,0.006144,0.01024,5.0647,0.036768
+1463,159.825,6.25684,5.8599,0.025312,0.362336,0.007584,0.004736,0.011808,5.41264,0.035488
+1464,156.719,6.38086,5.1567,0.026624,0.376832,0.007456,0.004832,0.01024,4.69366,0.037056
+1465,172.944,5.78223,5.15546,0.026432,0.3712,0.006432,0.006144,0.01024,4.69814,0.036864
+1466,158.44,6.31152,5.22614,0.027712,0.447424,0.007488,0.0048,0.011488,4.69072,0.036512
+1467,175.613,5.69434,6.0231,0.026624,0.368672,0.007808,0.004448,0.011264,5.56749,0.0368
+1468,135.611,7.37402,5.16515,0.02656,0.385088,0.006144,0.006144,0.01024,4.69542,0.035552
+1469,179.838,5.56055,5.56035,0.02672,0.36832,0.006976,0.005568,0.01056,5.10586,0.036352
+1470,164.208,6.08984,6.04979,0.0264,0.370656,0.0064,0.006144,0.01024,5.5944,0.035552
+1471,147.148,6.7959,5.16301,0.026624,0.380928,0.0072,0.005088,0.01024,4.69606,0.036864
+1472,174.328,5.73633,5.57261,0.026656,0.374496,0.0064,0.005952,0.010432,5.11363,0.03504
+1473,118.56,8.43457,6.0631,0.027104,0.393632,0.006272,0.006144,0.010272,5.58413,0.035552
+1474,150.5,6.64453,5.54461,0.026304,0.377408,0.006464,0.006144,0.01024,5.08269,0.03536
+1475,158.637,6.30371,6.0495,0.026496,0.370688,0.006432,0.006144,0.010272,5.59306,0.036416
+1476,151.233,6.6123,5.15418,0.026624,0.376,0.006976,0.005632,0.010688,4.68998,0.038272
+1477,174.387,5.73438,5.4313,0.026752,0.362368,0.008096,0.004192,0.01152,4.97946,0.038912
+1478,165.642,6.03711,5.12698,0.025408,0.354304,0.007616,0.004672,0.011584,4.68816,0.035232
+1479,138.961,7.19629,6.26096,0.025248,0.568896,0.00656,0.014336,0.011808,5.5977,0.036416
+1480,168.089,5.94922,5.58285,0.026208,0.81552,0.006272,0.006016,0.012192,4.67978,0.036864
+1481,174.536,5.72949,6.40608,0.026656,0.384512,0.006624,0.005952,0.010432,5.93629,0.035616
+1482,141.534,7.06543,6.06147,0.026432,0.391232,0.006272,0.005952,0.010432,5.5849,0.036256
+1483,148.191,6.74805,5.23219,0.026144,0.45152,0.008,0.004224,0.011616,4.69398,0.036704
+1484,172.856,5.78516,5.51526,0.02624,0.363904,0.00704,0.005536,0.010784,5.0649,0.036864
+1485,161.82,6.17969,6.01046,0.026624,0.360448,0.007744,0.004544,0.01024,5.56442,0.036448
+1486,152.042,6.57715,5.1599,0.026624,0.38192,0.007712,0.004576,0.011712,4.6905,0.036864
+1487,170.638,5.86035,5.56192,0.026624,0.385024,0.007648,0.004672,0.01168,5.08989,0.036384
+1488,164.683,6.07227,5.14845,0.026176,0.369152,0.007904,0.005536,0.010592,4.69251,0.036576
+1489,172.681,5.79102,5.73213,0.026208,0.52256,0.008736,0.006016,0.012064,5.12035,0.036192
+1490,151.457,6.60254,5.23133,0.025376,0.449856,0.006848,0.005856,0.010528,4.69606,0.0368
+1491,173.559,5.76172,6.00483,0.026688,0.364544,0.008064,0.005536,0.010208,5.55408,0.035712
+1492,122.342,8.17383,5.71645,0.026368,0.944992,0.008,0.00544,0.01104,4.68493,0.03568
+1493,202.332,4.94238,5.53418,0.025504,0.376832,0.007552,0.004736,0.01152,5.07162,0.036416
+1494,160.401,6.23438,6.0799,0.026656,0.380896,0.007648,0.00464,0.01024,5.61357,0.036256
+1495,147.402,6.78418,5.59923,0.02656,0.387136,0.007296,0.004992,0.011328,5.1263,0.035616
+1496,163.135,6.12988,6.00054,0.026368,0.370976,0.006176,0.006112,0.01024,5.54496,0.035712
+1497,138.998,7.19434,5.62826,0.026944,0.477184,0.008064,0.005536,0.010464,5.06445,0.035616
+1498,156.959,6.37109,6.3791,0.026624,0.368512,0.006368,0.006048,0.01024,5.92486,0.036448
+1499,146.6,6.82129,5.8559,0.025248,0.376864,0.007168,0.005088,0.01024,5.39606,0.035232
+1500,152.813,6.54395,5.54294,0.026496,0.362624,0.007584,0.023136,0.01024,5.0767,0.03616
+1501,163.031,6.13379,5.14035,0.026656,0.356,0.006464,0.006048,0.010336,4.68742,0.047424
+1502,153.916,6.49707,5.94442,0.026656,0.722912,0.01024,0.01024,0.053248,5.08518,0.035936
+1503,158.293,6.31738,5.14368,0.026624,0.364576,0.0072,0.005056,0.010304,4.69366,0.036256
+1504,169.846,5.8877,5.36749,0.026176,0.56784,0.021504,0.00512,0.02784,4.6823,0.036704
+1505,168.034,5.95117,5.9904,0.026112,0.364992,0.006208,0.006144,0.01024,5.53984,0.036864
+1506,152.29,6.56641,5.14976,0.026624,0.374784,0.006144,0.006144,0.01024,4.68944,0.036384
+1507,169.005,5.91699,5.52182,0.02624,0.37152,0.00768,0.004608,0.011712,5.06323,0.036832
+1508,166.234,6.01562,5.9864,0.026176,0.371232,0.006144,0.006144,0.01024,5.53107,0.035392
+1509,151.816,6.58691,5.10749,0.026528,0.364672,0.007968,0.004288,0.011424,4.65555,0.037056
+1510,172.71,5.79004,5.41158,0.025504,0.370528,0.006144,0.006144,0.01024,4.95206,0.04096
+1511,167.484,5.9707,5.11258,0.026432,0.37168,0.007584,0.004672,0.011648,4.65478,0.035776
+1512,173.324,5.76953,6.1281,0.026112,0.431072,0.00768,0.004608,0.011616,5.61142,0.035584
+1513,144.307,6.92969,5.44397,0.026016,0.666592,0.007904,0.005536,0.021376,4.67968,0.036864
+1514,174.357,5.73535,6.00477,0.026496,0.36672,0.006208,0.006048,0.010272,5.55344,0.035584
+1515,147.593,6.77539,5.48083,0.025536,0.37232,0.006464,0.006112,0.010272,5.02374,0.036384
+1516,162.462,6.15527,6.39946,0.026176,0.375232,0.007648,0.00464,0.01168,5.93776,0.03632
+1517,137.912,7.25098,6.10803,0.033664,0.48656,0.007008,0.005568,0.010688,5.52893,0.035616
+1518,155.34,6.4375,5.12867,0.026112,0.390112,0.007424,0.004864,0.01024,4.65306,0.036864
+1519,174.268,5.73828,5.52755,0.026624,0.364352,0.006336,0.006144,0.01024,5.07904,0.034816
+1520,132.317,7.55762,5.45251,0.025344,0.370656,0.006144,0.006144,0.011328,4.99603,0.036864
+1521,185.541,5.38965,5.15123,0.028512,0.37856,0.00704,0.005568,0.01072,4.68547,0.03536
+1522,161.897,6.17676,5.57702,0.026624,0.79152,0.008192,0.00608,0.012352,4.69594,0.03632
+1523,167.731,5.96191,5.22013,0.028352,0.46832,0.007072,0.005568,0.010592,4.66358,0.03664
+1524,174.625,5.72656,6.00992,0.026624,0.380928,0.00752,0.004768,0.011488,5.54269,0.035904
+1525,147.148,6.7959,5.15197,0.026624,0.392992,0.006368,0.006144,0.01024,4.67309,0.036512
+1526,172.42,5.7998,5.50122,0.024896,0.3824,0.00672,0.005888,0.010496,5.03514,0.03568
+1527,163.631,6.11133,5.98288,0.026368,0.370624,0.007072,0.00544,0.01072,5.52742,0.035232
+1528,148.989,6.71191,5.51322,0.026464,0.37904,0.007296,0.004992,0.011296,5.04726,0.036864
+1529,159.353,6.27539,5.92022,0.026272,0.409952,0.007808,0.005536,0.010752,5.42317,0.036736
+1530,134.33,7.44434,5.49891,0.026624,0.378816,0.006208,0.006144,0.01024,5.03398,0.036896
+1531,190.405,5.25195,5.10566,0.02624,0.366976,0.007872,0.004416,0.011584,4.65171,0.036864
+1532,169.368,5.9043,5.44768,0.026624,0.712096,0.0088,0.00592,0.011808,4.64557,0.036864
+1533,164.524,6.07812,5.34115,0.0264,0.55328,0.007776,0.005568,0.011232,4.70016,0.036736
+1534,170.071,5.87988,6.39952,0.026624,0.385024,0.008128,0.005536,0.01072,5.9271,0.036384
+1535,133.839,7.47168,6.02317,0.026624,0.417792,0.006144,0.006144,0.01024,5.52141,0.034816
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..0fa4e14
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1305.28,0.822969,0.318965,0.00557231,0.21955,0.00528191,0.00502478,0.00534025,0.00588906,0.00581694,0.0610367,0.00545328
+max_1024,1821.66,2.39026,0.949152,0.020896,0.835552,0.04096,0.028704,0.022176,0.040736,0.026752,0.090592,0.036672
+min_1024,418.365,0.54895,0.274336,0.004288,0.192416,0.004064,0.004064,0.004096,0.004288,0.004448,0.04096,0.004128
+512,1590.68,0.628662,0.283968,0.006048,0.20192,0.004896,0.004256,0.005952,0.005824,0.005664,0.043968,0.00544
+513,1208.62,0.827393,0.28544,0.004992,0.204096,0.0048,0.004096,0.005888,0.005696,0.0048,0.045056,0.006016
+514,1724.99,0.579712,0.284512,0.00608,0.200768,0.005536,0.004704,0.005216,0.005056,0.006112,0.045088,0.005952
+515,1356.07,0.737427,0.280864,0.00448,0.19856,0.005472,0.004768,0.00528,0.00496,0.006144,0.045184,0.006016
+516,1572.06,0.636108,0.279104,0.004992,0.198624,0.004096,0.005728,0.004512,0.006144,0.005856,0.043296,0.005856
+517,1371.28,0.729248,0.289664,0.00512,0.2048,0.004096,0.005664,0.005952,0.004768,0.006144,0.047104,0.006016
+518,1358.09,0.736328,0.290816,0.006144,0.208896,0.005728,0.004512,0.005568,0.005792,0.006912,0.04272,0.004544
+519,1267.92,0.788696,0.2888,0.00576,0.207232,0.005536,0.004704,0.006048,0.005728,0.006656,0.04256,0.004576
+520,1114.1,0.897583,0.530272,0.007712,0.445024,0.007552,0.004736,0.005344,0.004896,0.006144,0.043008,0.005856
+521,708.283,1.41187,0.341152,0.005408,0.26208,0.004896,0.004192,0.005856,0.0056,0.004896,0.043008,0.005216
+522,1196.61,0.835693,0.290464,0.006144,0.208576,0.004416,0.005248,0.004992,0.006144,0.005888,0.043264,0.005792
+523,1524.38,0.656006,0.284704,0.00544,0.203456,0.00528,0.004832,0.00528,0.00512,0.006112,0.044576,0.004608
+524,1104.19,0.90564,0.28336,0.004896,0.200704,0.005216,0.004864,0.004256,0.006144,0.006144,0.045056,0.00608
+525,1600,0.625,0.285568,0.00496,0.204,0.004896,0.004096,0.005984,0.005568,0.004832,0.046656,0.004576
+526,1371.28,0.729248,0.284672,0.005664,0.201184,0.004096,0.005728,0.004512,0.006144,0.006144,0.046272,0.004928
+527,1532.93,0.652344,0.293312,0.004864,0.20992,0.004896,0.00432,0.00576,0.005728,0.005984,0.046016,0.005824
+528,1071.55,0.933228,0.497632,0.008192,0.40928,0.005472,0.004864,0.00432,0.006144,0.006144,0.047104,0.006112
+529,799.297,1.2511,0.289312,0.005088,0.204672,0.004224,0.0056,0.00464,0.006176,0.00576,0.047456,0.005696
+530,1302.38,0.767822,0.306912,0.004608,0.224736,0.00464,0.004256,0.005984,0.005856,0.005728,0.04576,0.005344
+531,1237.28,0.808228,0.288288,0.006144,0.205824,0.004928,0.004288,0.005632,0.004608,0.006144,0.045056,0.005664
+532,1650.28,0.605957,0.290208,0.006048,0.206144,0.004896,0.004096,0.005984,0.005824,0.00576,0.04592,0.005536
+533,1302.38,0.767822,0.2912,0.00496,0.210208,0.0048,0.004096,0.00608,0.006208,0.006144,0.043008,0.005696
+534,1474.71,0.678101,0.28672,0.00576,0.207232,0.004128,0.00576,0.004448,0.006144,0.006144,0.04272,0.004384
+535,1405.87,0.711304,0.305152,0.006144,0.223232,0.005504,0.004736,0.005568,0.005728,0.005088,0.044032,0.00512
+536,1296.41,0.771362,0.2888,0.005856,0.208864,0.004416,0.005376,0.004864,0.006048,0.005504,0.043424,0.004448
+537,636.47,1.57117,0.3,0.007136,0.21504,0.005312,0.004832,0.004224,0.006112,0.006144,0.045056,0.006144
+538,1489.45,0.671387,0.286592,0.005888,0.203008,0.00432,0.005664,0.004352,0.006144,0.006144,0.045056,0.006016
+539,1496.26,0.668335,0.28672,0.005408,0.20144,0.00512,0.004864,0.004352,0.006144,0.005984,0.048576,0.004832
+540,654.731,1.52734,0.3112,0.006144,0.223264,0.005408,0.0048,0.005312,0.004928,0.006144,0.049152,0.006048
+541,1319.8,0.75769,0.30992,0.004768,0.223232,0.005792,0.004448,0.005632,0.005728,0.00704,0.04832,0.00496
+542,1281,0.78064,0.290816,0.006016,0.20448,0.004544,0.005216,0.005024,0.006144,0.006144,0.047104,0.006144
+543,1503.12,0.665283,0.310432,0.006144,0.22528,0.005888,0.004352,0.005696,0.005728,0.00496,0.047072,0.005312
+544,1386.59,0.721191,0.522272,0.006144,0.425984,0.016544,0.005664,0.004448,0.006112,0.006144,0.046784,0.004448
+545,737.354,1.3562,0.29056,0.00464,0.206208,0.004736,0.004096,0.00608,0.005728,0.005728,0.048,0.005344
+546,1422.47,0.703003,0.285536,0.00496,0.198656,0.005408,0.004832,0.00528,0.00496,0.006144,0.05088,0.004416
+547,1383.32,0.7229,0.287776,0.006144,0.198656,0.005248,0.004992,0.005728,0.004544,0.006112,0.051072,0.00528
+548,1430.17,0.699219,0.311488,0.004896,0.22464,0.004736,0.004096,0.00592,0.00576,0.005728,0.050176,0.005536
+549,1293.95,0.772827,0.288768,0.00544,0.201408,0.004096,0.005728,0.004544,0.006112,0.00608,0.05056,0.0048
+550,1464.16,0.682983,0.284,0.00576,0.1968,0.004288,0.005728,0.004512,0.006144,0.005952,0.049344,0.005472
+551,1560.08,0.640991,0.286976,0.005664,0.199392,0.00592,0.00432,0.005728,0.006368,0.005632,0.049248,0.004704
+552,1478.7,0.67627,0.290528,0.00592,0.204352,0.004768,0.004096,0.00608,0.00576,0.00576,0.047936,0.005856
+553,1356.74,0.737061,0.518144,0.006144,0.427872,0.006304,0.006144,0.005344,0.004896,0.006144,0.049152,0.006144
+554,704.567,1.41931,0.28224,0.00448,0.2,0.0048,0.004096,0.00608,0.005536,0.004768,0.047104,0.005376
+555,1590.37,0.628784,0.281728,0.005856,0.198304,0.004736,0.004224,0.005888,0.0056,0.004768,0.047072,0.00528
+556,1512.56,0.661133,0.282688,0.005376,0.195392,0.005472,0.004768,0.005344,0.004896,0.006144,0.050496,0.0048
+557,1342.07,0.745117,0.282656,0.005792,0.196992,0.005728,0.00448,0.005792,0.005728,0.004864,0.048864,0.004416
+558,1570.85,0.636597,0.286432,0.006112,0.200704,0.004128,0.005632,0.004608,0.006144,0.00576,0.047488,0.005856
+559,1263.03,0.791748,0.277536,0.005344,0.19456,0.004896,0.004128,0.006144,0.005952,0.005728,0.045472,0.005312
+560,717.589,1.39355,0.280576,0.005632,0.201024,0.004288,0.005472,0.004768,0.006112,0.005728,0.042912,0.00464
+561,1069.03,0.935425,0.528384,0.006144,0.432128,0.01552,0.00496,0.00576,0.005792,0.004832,0.048384,0.004864
+562,783.549,1.27625,0.307232,0.005408,0.221888,0.00416,0.005568,0.004672,0.006144,0.00592,0.048448,0.005024
+563,1310.3,0.763184,0.285184,0.004896,0.200704,0.005312,0.004832,0.004224,0.006112,0.006144,0.047104,0.005856
+564,1669.45,0.598999,0.278528,0.005888,0.198912,0.00512,0.00512,0.005216,0.005024,0.006144,0.042304,0.0048
+565,1459.47,0.685181,0.280352,0.005408,0.19968,0.005216,0.004704,0.004416,0.006144,0.006144,0.043008,0.005632
+566,1434.17,0.697266,0.278016,0.004544,0.198656,0.005152,0.004864,0.00432,0.006144,0.006144,0.04288,0.005312
+567,1490,0.671143,0.2792,0.004736,0.198656,0.005568,0.004672,0.006112,0.00576,0.005728,0.04304,0.004928
+568,1384.49,0.72229,0.282368,0.00544,0.202592,0.004896,0.00416,0.00592,0.00576,0.004704,0.043008,0.005888
+569,1510.32,0.662109,0.548896,0.006144,0.466944,0.00752,0.004768,0.00592,0.005792,0.004672,0.042496,0.00464
+570,637.758,1.56799,0.277152,0.004736,0.19984,0.004928,0.004128,0.005888,0.005696,0.0048,0.042656,0.00448
+571,1697.82,0.588989,0.274336,0.005632,0.193024,0.005824,0.004416,0.005536,0.004704,0.006144,0.043008,0.006048
+572,1295.59,0.771851,0.27552,0.005984,0.19472,0.004096,0.00592,0.00432,0.006144,0.006144,0.04288,0.005312
+573,1483.25,0.674194,0.2744,0.00576,0.194112,0.004896,0.00416,0.00592,0.0056,0.00592,0.04192,0.006112
+574,1466,0.682129,0.274432,0.005792,0.19424,0.004768,0.004192,0.006048,0.005472,0.004768,0.043008,0.006144
+575,1637.42,0.610718,0.274432,0.006016,0.194304,0.004512,0.005248,0.00496,0.005984,0.005696,0.04272,0.004992
+576,1491.9,0.670288,0.276864,0.004736,0.197888,0.004864,0.004096,0.005984,0.005728,0.005728,0.041952,0.005888
+577,1335.72,0.748657,0.294528,0.004448,0.216832,0.004384,0.005376,0.004832,0.006048,0.005568,0.041632,0.005408
+578,1399.62,0.714478,0.55648,0.00448,0.47088,0.006304,0.005664,0.004576,0.006144,0.00592,0.0472,0.005312
+579,581.117,1.72083,0.337952,0.005472,0.251616,0.005056,0.004096,0.006048,0.005792,0.005696,0.049696,0.00448
+580,1617.69,0.618164,0.290816,0.005824,0.20448,0.004736,0.004192,0.006048,0.006016,0.00576,0.0488,0.00496
+581,1430.92,0.698853,0.29296,0.005376,0.205408,0.00432,0.005472,0.004768,0.006144,0.006144,0.050528,0.0048
+582,1433.67,0.69751,0.292768,0.005824,0.20512,0.00512,0.004864,0.004384,0.006144,0.005888,0.049376,0.006048
+583,1218.32,0.820801,0.291616,0.00512,0.20592,0.004896,0.004224,0.005856,0.005664,0.004864,0.049152,0.00592
+584,1663.35,0.601196,0.296512,0.006144,0.208256,0.004736,0.004096,0.006144,0.005696,0.005696,0.050048,0.005696
+585,1302.18,0.767944,0.302784,0.005952,0.21472,0.004608,0.005152,0.005088,0.006048,0.00624,0.049152,0.005824
+586,1437.7,0.695557,0.302368,0.005888,0.217344,0.0056,0.00464,0.00544,0.006848,0.00592,0.04528,0.005408
+587,1359.22,0.735718,0.28768,0.005056,0.20848,0.004512,0.005184,0.005056,0.005888,0.005728,0.043072,0.004704
+588,686.27,1.45715,0.296,0.01024,0.210464,0.004576,0.005184,0.005056,0.005888,0.005696,0.043136,0.00576
+589,1432.17,0.698242,0.280576,0.006144,0.200032,0.004768,0.004096,0.006112,0.005696,0.005664,0.04192,0.006144
+590,1583.3,0.631592,0.279584,0.00512,0.198688,0.00544,0.004704,0.005184,0.005152,0.006112,0.04448,0.004704
+591,1381.22,0.723999,0.278112,0.005472,0.195232,0.00528,0.004864,0.004192,0.006144,0.006112,0.045088,0.005728
+592,1540.43,0.64917,0.27856,0.005568,0.195136,0.005728,0.004512,0.0056,0.00576,0.005024,0.04672,0.004512
+593,1443.02,0.692993,0.282688,0.005856,0.198944,0.005408,0.004832,0.005984,0.00576,0.005664,0.045888,0.004352
+594,1227.63,0.814575,0.289408,0.004736,0.202784,0.00544,0.004768,0.005344,0.004928,0.006112,0.05072,0.004576
+595,1537.83,0.650269,0.293568,0.005088,0.206848,0.005184,0.004832,0.00432,0.006144,0.006144,0.049152,0.005856
+596,701.55,1.42542,0.321536,0.007936,0.23168,0.005888,0.004384,0.005664,0.005888,0.004832,0.050624,0.00464
+597,1515.63,0.65979,0.286752,0.0048,0.202752,0.005184,0.004864,0.004288,0.008,0.00592,0.045472,0.005472
+598,1167.45,0.856567,0.286496,0.005408,0.198816,0.004736,0.004096,0.006144,0.005952,0.005696,0.049792,0.005856
+599,1158.7,0.863037,0.307136,0.005632,0.219648,0.005504,0.004736,0.005344,0.004896,0.006144,0.049152,0.00608
+600,1651.61,0.605469,0.296832,0.005632,0.203264,0.004096,0.00576,0.00448,0.006144,0.005376,0.056064,0.006016
+601,1402.26,0.713135,0.300416,0.005376,0.205728,0.005408,0.004832,0.005344,0.004896,0.006144,0.057344,0.005344
+602,1205.24,0.829712,0.303104,0.005728,0.209312,0.005824,0.004416,0.005632,0.005728,0.005024,0.055296,0.006144
+603,1116.53,0.89563,0.305696,0.004704,0.212992,0.004096,0.005728,0.004512,0.006144,0.005792,0.055648,0.00608
+604,1660.99,0.602051,0.538624,0.005728,0.413568,0.00656,0.004224,0.004096,0.006144,0.006144,0.061344,0.030816
+605,697.073,1.43457,0.293888,0.00608,0.20416,0.0048,0.005184,0.005056,0.006144,0.006144,0.05088,0.00544
+606,1347.15,0.74231,0.293728,0.00496,0.200704,0.004096,0.006176,0.005344,0.004864,0.006144,0.056384,0.005056
+607,1473.12,0.678833,0.281536,0.005056,0.19456,0.005504,0.004736,0.005408,0.004832,0.006144,0.050976,0.00432
+608,1419.51,0.704468,0.287392,0.004768,0.200704,0.004096,0.005824,0.004416,0.006144,0.006144,0.050656,0.00464
+609,1466.79,0.681763,0.284064,0.006144,0.19456,0.005888,0.004352,0.005824,0.00576,0.0048,0.0512,0.005536
+610,1487.02,0.672485,0.2824,0.004384,0.19664,0.0056,0.004608,0.0056,0.00576,0.005024,0.049152,0.005632
+611,1157.55,0.863892,0.290976,0.005376,0.20368,0.005152,0.004864,0.00432,0.006144,0.006144,0.050464,0.004832
+612,1416.32,0.706055,0.285312,0.004704,0.206624,0.00432,0.00544,0.0048,0.0056,0.005728,0.043616,0.00448
+613,645.853,1.54834,0.315552,0.007488,0.228192,0.005216,0.004864,0.004224,0.006144,0.006144,0.048224,0.005056
+614,1602.19,0.624146,0.291936,0.005888,0.205056,0.005632,0.004608,0.005408,0.004832,0.006144,0.049088,0.00528
+615,1463.64,0.683228,0.28624,0.006144,0.198656,0.005792,0.004448,0.005696,0.005792,0.004928,0.04912,0.005664
+616,1274.03,0.784912,0.282528,0.004736,0.202752,0.005504,0.004768,0.005344,0.004864,0.006144,0.043008,0.005408
+617,1643.33,0.608521,0.284512,0.005792,0.201088,0.00528,0.004736,0.004288,0.006144,0.006144,0.045056,0.005984
+618,1013.86,0.986328,0.292864,0.006144,0.206848,0.004224,0.005728,0.004416,0.006112,0.00608,0.048448,0.004864
+619,1280,0.78125,0.290816,0.005376,0.205568,0.00544,0.0048,0.005248,0.006464,0.005984,0.04736,0.004576
+620,1009.61,0.990479,0.30496,0.006016,0.219264,0.005408,0.004832,0.005248,0.004992,0.006144,0.047104,0.005952
+621,1225.98,0.815674,0.530592,0.005056,0.442368,0.007232,0.005056,0.005632,0.00576,0.006368,0.047776,0.005344
+622,750.527,1.3324,0.301024,0.005408,0.211872,0.005408,0.004832,0.005248,0.004992,0.006144,0.0512,0.00592
+623,1307.37,0.764893,0.313568,0.004288,0.224576,0.0048,0.004096,0.006144,0.00576,0.006496,0.052768,0.00464
+624,1038.14,0.963257,0.319264,0.004512,0.230336,0.004896,0.004288,0.00576,0.005728,0.006016,0.052096,0.005632
+625,1431.17,0.69873,0.29696,0.005504,0.20544,0.005824,0.004416,0.005664,0.004608,0.007296,0.052064,0.006144
+626,1675.26,0.596924,0.286976,0.005376,0.197632,0.005152,0.004864,0.00432,0.006144,0.006144,0.052224,0.00512
+627,1334.64,0.749268,0.284576,0.006048,0.196704,0.005888,0.004352,0.006144,0.006112,0.005696,0.047584,0.006048
+628,1341.41,0.745483,0.294912,0.005952,0.209088,0.004096,0.005664,0.004576,0.006144,0.006144,0.047104,0.006144
+629,1363.06,0.733643,0.502016,0.004736,0.415392,0.006496,0.006048,0.005216,0.00512,0.006144,0.047104,0.00576
+630,764.25,1.30847,0.296608,0.005792,0.214528,0.004896,0.00416,0.005888,0.00576,0.006272,0.04352,0.005792
+631,1391.54,0.718628,0.285856,0.005888,0.20096,0.005152,0.004864,0.00432,0.006144,0.006144,0.047104,0.00528
+632,1542.46,0.648315,0.2824,0.005408,0.198944,0.004704,0.005664,0.004576,0.006144,0.005856,0.045344,0.00576
+633,1390.6,0.719116,0.27456,0.005344,0.19552,0.005632,0.004576,0.005504,0.00576,0.00512,0.04096,0.006144
+634,1573.27,0.63562,0.278048,0.005504,0.195232,0.005696,0.004512,0.005632,0.005728,0.005024,0.045056,0.005664
+635,1358.54,0.736084,0.278528,0.00592,0.194784,0.005728,0.004512,0.005568,0.006656,0.005728,0.043488,0.006144
+636,1518.44,0.658569,0.281056,0.004576,0.200736,0.005152,0.004768,0.004384,0.00608,0.005696,0.044576,0.005088
+637,883.425,1.13196,0.31952,0.005056,0.23104,0.00448,0.00528,0.00496,0.005888,0.005696,0.05168,0.00544
+638,818.3,1.22205,0.552288,0.005408,0.412416,0.030944,0.028704,0.005472,0.004768,0.006176,0.052864,0.005536
+639,994.658,1.00537,0.31648,0.005952,0.231616,0.005472,0.004768,0.005408,0.004832,0.006144,0.046944,0.005344
+640,1324.49,0.755005,0.310816,0.006144,0.22528,0.005152,0.005088,0.00528,0.00496,0.0072,0.046048,0.005664
+641,1486.21,0.672852,0.294912,0.00576,0.213152,0.00432,0.00544,0.0048,0.006144,0.006144,0.044512,0.00464
+642,1290.69,0.77478,0.292896,0.005376,0.211424,0.004416,0.005344,0.004896,0.006112,0.006016,0.044384,0.004928
+643,1564.85,0.639038,0.2952,0.00448,0.212576,0.004416,0.005344,0.004896,0.005824,0.00592,0.0456,0.006144
+644,1374.96,0.727295,0.288512,0.004448,0.206432,0.004512,0.005248,0.004992,0.006016,0.005728,0.0456,0.005536
+645,1357.64,0.736572,0.292128,0.005408,0.207072,0.004608,0.00512,0.00512,0.006144,0.006176,0.047072,0.005408
+646,1305.29,0.766113,0.522432,0.004992,0.434176,0.007936,0.004352,0.005664,0.00576,0.00496,0.049024,0.005568
+647,740.352,1.35071,0.298496,0.005632,0.213248,0.004352,0.005408,0.004832,0.006144,0.005504,0.047744,0.005632
+648,1251.64,0.79895,0.299008,0.006016,0.21312,0.00592,0.00432,0.005728,0.005696,0.00496,0.04816,0.005088
+649,1588.83,0.629395,0.2888,0.006144,0.200704,0.005248,0.004864,0.004256,0.006112,0.006144,0.049152,0.006176
+650,1308.42,0.764282,0.282656,0.006016,0.194688,0.004096,0.005632,0.004608,0.006144,0.006112,0.05056,0.0048
+651,1345.38,0.743286,0.285984,0.00544,0.197312,0.004096,0.005664,0.005792,0.004928,0.006144,0.0512,0.005408
+652,1638.07,0.610474,0.28832,0.005568,0.198496,0.004832,0.004096,0.00608,0.005824,0.005728,0.052,0.005696
+653,1214.17,0.823608,0.28896,0.005408,0.198912,0.004768,0.004128,0.00608,0.005632,0.005696,0.0536,0.004736
+654,1606.9,0.622314,0.292896,0.006144,0.200704,0.005568,0.004672,0.005376,0.004864,0.006144,0.054464,0.00496
+655,1424.45,0.702026,0.533408,0.005056,0.428,0.02048,0.005984,0.004256,0.006144,0.006144,0.0512,0.006144
+656,660.698,1.51355,0.308128,0.005024,0.216864,0.00432,0.00544,0.0048,0.006144,0.006144,0.054432,0.00496
+657,1620.57,0.617065,0.29312,0.004448,0.203968,0.004832,0.004096,0.005856,0.00576,0.004768,0.054752,0.00464
+658,1508.1,0.663086,0.290848,0.005568,0.199232,0.004096,0.006144,0.005376,0.004864,0.006144,0.054784,0.00464
+659,1364.88,0.732666,0.286688,0.005536,0.195136,0.00448,0.00528,0.004928,0.006048,0.005632,0.053856,0.005792
+660,1260.89,0.793091,0.281792,0.005856,0.194368,0.004576,0.004128,0.006112,0.0056,0.00576,0.05008,0.005312
+661,1559.19,0.641357,0.294912,0.005504,0.205312,0.004224,0.005568,0.004672,0.006144,0.005888,0.053152,0.004448
+662,1284.62,0.778442,0.296256,0.00608,0.204864,0.005312,0.004864,0.005184,0.0064,0.004864,0.053248,0.00544
+663,1354.27,0.738403,0.304832,0.005376,0.213856,0.005792,0.004448,0.005632,0.005696,0.005056,0.053248,0.005728
+664,705.963,1.4165,0.30176,0.006816,0.210976,0.005664,0.004544,0.005504,0.004832,0.006048,0.052352,0.005024
+665,1413.88,0.707275,0.284576,0.004512,0.198496,0.004192,0.00576,0.004384,0.006176,0.005728,0.049536,0.005792
+666,1524.94,0.655762,0.290208,0.004352,0.202272,0.00448,0.005216,0.005024,0.00576,0.005728,0.052,0.005376
+667,1251.07,0.799316,0.284192,0.00464,0.19568,0.004864,0.004288,0.005984,0.005824,0.005792,0.051808,0.005312
+668,1609.43,0.621338,0.284672,0.005408,0.195328,0.005536,0.004672,0.005376,0.004864,0.006144,0.052928,0.004416
+669,1485.4,0.673218,0.285216,0.004736,0.19456,0.005632,0.004608,0.005536,0.005792,0.005056,0.053248,0.006048
+670,1350.7,0.740356,0.280576,0.005984,0.192672,0.005504,0.004736,0.00528,0.00496,0.006144,0.05088,0.004416
+671,1490.27,0.671021,0.288832,0.00544,0.201472,0.005568,0.004672,0.00592,0.00576,0.004704,0.050784,0.004512
+672,1202.05,0.831909,0.503968,0.005408,0.414592,0.007488,0.0048,0.005248,0.004992,0.006144,0.050816,0.00448
+673,814.8,1.22729,0.290368,0.006144,0.205952,0.004672,0.004416,0.00544,0.004832,0.006112,0.047136,0.005664
+674,1548.88,0.64563,0.28896,0.005376,0.201664,0.004224,0.006016,0.005376,0.004864,0.006144,0.050912,0.004384
+675,807.571,1.23828,0.302976,0.00544,0.215744,0.006048,0.005504,0.004832,0.006144,0.005824,0.047424,0.006016
+676,1395.33,0.716675,0.296608,0.005376,0.209856,0.005888,0.004352,0.005728,0.005696,0.00496,0.049152,0.0056
+677,1531.79,0.652832,0.284928,0.005408,0.198848,0.004928,0.00512,0.005088,0.006144,0.005888,0.047424,0.00608
+678,1527.79,0.654541,0.286336,0.005824,0.198336,0.004736,0.005632,0.004608,0.005984,0.00592,0.049536,0.00576
+679,1245.74,0.802734,0.291072,0.004832,0.202752,0.005856,0.004384,0.005504,0.006336,0.005664,0.05008,0.005664
+680,618.498,1.61682,0.291072,0.005376,0.20736,0.004608,0.005184,0.005056,0.005728,0.004512,0.04832,0.004928
+681,1521.83,0.657104,0.29696,0.007584,0.207456,0.005376,0.004864,0.004096,0.006144,0.006176,0.050496,0.004768
+682,1405.39,0.711548,0.284704,0.006144,0.196608,0.005888,0.004352,0.005632,0.00576,0.004992,0.05088,0.004448
+683,1558.6,0.641602,0.289056,0.004384,0.202752,0.005184,0.004704,0.004448,0.006144,0.006144,0.050912,0.004384
+684,1452.48,0.688477,0.281312,0.004832,0.19456,0.00544,0.0048,0.005536,0.005792,0.005088,0.050624,0.00464
+685,1363.74,0.733276,0.282624,0.005632,0.195072,0.005856,0.004384,0.006144,0.006144,0.005856,0.04912,0.004416
+686,1396.52,0.716064,0.281472,0.004992,0.195808,0.004896,0.004096,0.006016,0.005536,0.004832,0.050784,0.004512
+687,1596.57,0.626343,0.284416,0.005376,0.198592,0.005024,0.005312,0.004928,0.006048,0.00576,0.047584,0.005792
+688,1299.08,0.769775,0.288096,0.005824,0.200768,0.004352,0.005408,0.004832,0.006144,0.00576,0.049536,0.005472
+689,1477.37,0.67688,0.28672,0.006048,0.200576,0.00432,0.00544,0.005952,0.004992,0.006144,0.04848,0.004768
+690,653.217,1.53088,0.292864,0.008192,0.204352,0.004544,0.005216,0.005024,0.006144,0.006016,0.048352,0.005024
+691,1504.78,0.664551,0.285792,0.006112,0.199744,0.004896,0.004288,0.006144,0.006144,0.006016,0.047136,0.005312
+692,1385.89,0.721558,0.278528,0.006144,0.194464,0.004192,0.0056,0.00464,0.006144,0.00576,0.04656,0.005024
+693,1577.51,0.633911,0.280608,0.005824,0.196384,0.00464,0.004128,0.006048,0.005792,0.00576,0.047136,0.004896
+694,962.632,1.03882,0.280576,0.005472,0.19728,0.005312,0.004288,0.004736,0.006144,0.00576,0.046656,0.004928
+695,1524.09,0.656128,0.2856,0.005024,0.201984,0.004864,0.005408,0.004832,0.006144,0.00576,0.046624,0.00496
+696,1186.04,0.84314,0.282944,0.004512,0.200608,0.005728,0.004512,0.005504,0.004768,0.006112,0.046112,0.005088
+697,1355.84,0.737549,0.287008,0.0048,0.202752,0.006048,0.004192,0.005888,0.00608,0.005728,0.045792,0.005728
+698,813.829,1.22876,0.292768,0.008192,0.2048,0.004096,0.005664,0.004576,0.006144,0.00576,0.047488,0.006048
+699,1292.11,0.773926,0.288768,0.006144,0.202688,0.00416,0.0056,0.00464,0.006144,0.005856,0.048544,0.004992
+700,1760.21,0.568115,0.282624,0.005952,0.194752,0.005856,0.004384,0.006144,0.006016,0.005888,0.047488,0.006144
+701,1408.77,0.709839,0.280672,0.005376,0.19504,0.00448,0.005856,0.004416,0.006112,0.006112,0.048512,0.004768
+702,1452.74,0.688354,0.282304,0.005408,0.194624,0.004768,0.004096,0.006112,0.005728,0.005696,0.050048,0.005824
+703,1301.76,0.768188,0.280128,0.005408,0.193248,0.005696,0.004544,0.005504,0.005792,0.005088,0.049152,0.005696
+704,1694.66,0.590088,0.280576,0.006144,0.192512,0.005536,0.004704,0.005184,0.005056,0.006144,0.050976,0.00432
+705,1032.13,0.968872,0.290272,0.005344,0.20096,0.004864,0.004096,0.006144,0.006144,0.006048,0.051296,0.005376
+706,1272.25,0.786011,0.284672,0.005984,0.198816,0.005344,0.004832,0.005248,0.005056,0.006144,0.048704,0.004544
+707,881.239,1.13477,0.284608,0.007488,0.19728,0.004416,0.005344,0.004896,0.006112,0.005728,0.047552,0.005792
+708,1635.13,0.611572,0.278528,0.005984,0.19472,0.0056,0.00464,0.005504,0.004768,0.006112,0.046656,0.004544
+709,1467.05,0.681641,0.280544,0.005856,0.194848,0.005216,0.004992,0.005216,0.005056,0.006144,0.047104,0.006112
+710,1238.96,0.807129,0.283072,0.004544,0.194496,0.00416,0.005536,0.004704,0.006048,0.005728,0.051712,0.006144
+711,1729.73,0.578125,0.284512,0.004352,0.19408,0.004448,0.005568,0.004672,0.006144,0.006144,0.053248,0.005856
+712,1395.57,0.716553,0.281312,0.004832,0.19664,0.004064,0.005856,0.004384,0.006144,0.005952,0.04864,0.0048
+713,1450.94,0.689209,0.279552,0.005952,0.192704,0.005696,0.004576,0.005568,0.005728,0.005056,0.04896,0.005312
+714,797.197,1.25439,0.2952,0.004384,0.209952,0.004896,0.00432,0.00576,0.006496,0.006144,0.047136,0.006112
+715,1282.4,0.779785,0.53632,0.004512,0.41552,0.006368,0.005536,0.004704,0.005984,0.005728,0.059968,0.028
+716,714.336,1.3999,0.291072,0.005408,0.205792,0.005728,0.004512,0.005568,0.004704,0.006112,0.048224,0.005024
+717,1522.96,0.656616,0.280576,0.006112,0.19648,0.004256,0.005504,0.004736,0.006144,0.005792,0.046912,0.00464
+718,1297.02,0.770996,0.279872,0.005376,0.19536,0.005632,0.004608,0.00544,0.004832,0.006112,0.047104,0.005408
+719,1369.44,0.730225,0.282336,0.005472,0.196352,0.004896,0.004224,0.006112,0.005696,0.005824,0.047936,0.005824
+720,1411.68,0.708374,0.297792,0.004992,0.21456,0.004576,0.005184,0.005056,0.005792,0.005568,0.045984,0.00608
+721,1575.69,0.634644,0.29328,0.004608,0.206784,0.005728,0.00448,0.006144,0.00592,0.005728,0.048832,0.005056
+722,1180.4,0.847168,0.288544,0.005632,0.201216,0.005824,0.004416,0.005664,0.005728,0.004992,0.049152,0.00592
+723,1626.69,0.614746,0.284672,0.006144,0.200576,0.004224,0.005536,0.004704,0.006144,0.005856,0.047168,0.00432
+724,1486.21,0.672852,0.540992,0.005536,0.414624,0.038144,0.012768,0.004416,0.006112,0.006112,0.04736,0.00592
+725,667.753,1.49756,0.284192,0.00576,0.196608,0.004512,0.005248,0.00496,0.005856,0.005664,0.04992,0.005664
+726,1304.67,0.766479,0.399392,0.005472,0.3096,0.004416,0.00544,0.0048,0.006144,0.005696,0.053088,0.004736
+727,1213.27,0.824219,0.359584,0.005632,0.250368,0.004096,0.014336,0.005728,0.00576,0.014976,0.053376,0.005312
+728,1595.64,0.626709,0.290592,0.005408,0.197632,0.005248,0.004832,0.004256,0.007904,0.005696,0.053984,0.005632
+729,1395.1,0.716797,0.287392,0.0048,0.200672,0.005632,0.004608,0.00544,0.004832,0.006112,0.050752,0.004544
+730,1392.49,0.71814,0.290528,0.006048,0.2008,0.005888,0.004352,0.005888,0.005792,0.0048,0.051104,0.005856
+731,1481.37,0.675049,0.295808,0.00512,0.210944,0.004096,0.005632,0.004608,0.006144,0.005984,0.047296,0.005984
+732,1372.42,0.728638,0.294656,0.006144,0.208896,0.005152,0.004864,0.00432,0.006144,0.006144,0.047104,0.005888
+733,505.804,1.97705,0.406176,0.006816,0.294912,0.013856,0.004576,0.005888,0.020256,0.006112,0.048896,0.004864
+734,1199.06,0.833984,0.306272,0.006016,0.219264,0.005216,0.004864,0.004256,0.006144,0.006144,0.049088,0.00528
+735,1433.17,0.697754,0.294656,0.005376,0.201472,0.005728,0.004512,0.005536,0.00576,0.005088,0.055296,0.005888
+736,1583.91,0.631348,0.287296,0.004736,0.19664,0.005856,0.004352,0.005536,0.005728,0.00512,0.05328,0.006048
+737,1492.17,0.670166,0.290528,0.005984,0.199872,0.004928,0.004256,0.005632,0.00576,0.004992,0.053248,0.005856
+738,1446.84,0.691162,0.285536,0.00496,0.196576,0.004128,0.005632,0.004608,0.006144,0.005888,0.053216,0.004384
+739,1291.3,0.774414,0.294944,0.005472,0.203424,0.005216,0.004832,0.005696,0.005856,0.005024,0.05472,0.004704
+740,1470.47,0.680054,0.509984,0.005888,0.413952,0.006336,0.005664,0.004384,0.006144,0.006144,0.056544,0.004928
+741,652.853,1.53174,0.294656,0.005504,0.199104,0.004288,0.00544,0.0048,0.006144,0.005728,0.05776,0.005888
+742,1513.95,0.660522,0.289216,0.004544,0.19456,0.005952,0.004288,0.005696,0.005792,0.004896,0.058752,0.004736
+743,1482.18,0.674683,0.294272,0.006112,0.194592,0.005472,0.004768,0.00512,0.00512,0.006144,0.06144,0.005504
+744,1520.98,0.657471,0.299744,0.004896,0.200704,0.00576,0.00448,0.005344,0.004896,0.006144,0.06144,0.00608
+745,1322.57,0.756104,0.296032,0.005792,0.19664,0.004416,0.00544,0.0048,0.006144,0.005696,0.061792,0.005312
+746,1498.45,0.667358,0.295648,0.004832,0.197952,0.004704,0.004192,0.005792,0.005792,0.0048,0.062752,0.004832
+747,1392.01,0.718384,0.304544,0.005376,0.205184,0.004512,0.005248,0.00496,0.00592,0.00592,0.06192,0.005504
+748,1178.2,0.848755,0.296832,0.004512,0.206816,0.005344,0.004864,0.005184,0.005088,0.006144,0.053248,0.005632
+749,1459.21,0.685303,0.300288,0.006144,0.206304,0.00464,0.00512,0.00512,0.005824,0.005664,0.056096,0.005376
+750,723.292,1.38257,0.32432,0.00688,0.22528,0.004128,0.005728,0.00448,0.006144,0.006016,0.061024,0.00464
+751,1373.11,0.728271,0.294944,0.005504,0.19664,0.004704,0.004224,0.006016,0.006144,0.005952,0.060992,0.004768
+752,1099.89,0.90918,0.302176,0.006144,0.202784,0.005856,0.004352,0.005728,0.005664,0.004992,0.061472,0.005184
+753,1638.07,0.610474,0.295392,0.004576,0.198656,0.004128,0.005696,0.004512,0.006144,0.00608,0.060704,0.004896
+754,1391.78,0.718506,0.295008,0.00464,0.196608,0.00576,0.00448,0.006144,0.00592,0.005696,0.060064,0.005696
+755,1446.07,0.691528,0.292864,0.005888,0.196352,0.004608,0.005184,0.005056,0.006016,0.005696,0.059456,0.004608
+756,1384.49,0.72229,0.316288,0.004992,0.218624,0.004608,0.005152,0.005088,0.006144,0.006144,0.059392,0.006144
+757,1349.37,0.741089,0.301056,0.006144,0.204128,0.004768,0.00512,0.00512,0.006144,0.005856,0.058752,0.005024
+758,602.132,1.66077,0.3072,0.007776,0.209312,0.0056,0.00464,0.005408,0.004832,0.006144,0.058688,0.0048
+759,1433.42,0.697632,0.296096,0.005504,0.199296,0.005408,0.004832,0.005216,0.005024,0.006144,0.059296,0.005376
+760,1484.33,0.673706,0.29632,0.006144,0.195936,0.004768,0.004096,0.006112,0.005632,0.005728,0.0624,0.005504
+761,1528.36,0.654297,0.292896,0.005664,0.196672,0.004512,0.005472,0.004768,0.006144,0.005664,0.059296,0.004704
+762,1147.98,0.871094,0.290848,0.005728,0.194912,0.00416,0.005632,0.004608,0.006144,0.005984,0.058784,0.004896
+763,1325.14,0.754639,0.29264,0.004544,0.19584,0.004832,0.004096,0.006144,0.006048,0.00576,0.059872,0.005504
+764,1568.45,0.637573,0.28704,0.004512,0.196512,0.004096,0.006144,0.00544,0.0048,0.006144,0.055264,0.004128
+765,1432.17,0.698242,0.301696,0.00512,0.206848,0.005792,0.004448,0.00544,0.0048,0.006144,0.057344,0.00576
+766,961.051,1.04053,0.5712,0.006144,0.423936,0.006144,0.005568,0.004672,0.017504,0.004992,0.065568,0.036672
+767,715.959,1.39673,0.32432,0.004832,0.216672,0.004512,0.005216,0.005024,0.00592,0.005696,0.07168,0.004768
+768,1598.44,0.62561,0.292544,0.004608,0.202752,0.005728,0.004512,0.005568,0.004672,0.006144,0.053248,0.005312
+769,1371.28,0.729248,0.284704,0.005536,0.195168,0.005792,0.004448,0.005632,0.005792,0.00496,0.052896,0.00448
+770,1675.26,0.596924,0.288768,0.005376,0.197376,0.005344,0.004896,0.004096,0.006144,0.006112,0.05456,0.004864
+771,889.468,1.12427,0.368032,0.005376,0.269248,0.004096,0.005632,0.004608,0.006144,0.006144,0.061056,0.005728
+772,1592.23,0.628052,0.308992,0.006144,0.218496,0.004736,0.00416,0.00608,0.005728,0.005664,0.052096,0.005888
+773,1284.01,0.778809,0.29696,0.006144,0.206848,0.00576,0.00448,0.00544,0.0048,0.006144,0.05248,0.004864
+774,1446.07,0.691528,0.507904,0.006016,0.415872,0.007936,0.004352,0.005728,0.005856,0.006592,0.05072,0.004832
+775,669.445,1.49377,0.292576,0.005408,0.203616,0.005728,0.004512,0.005536,0.00576,0.005088,0.0512,0.005728
+776,1563.36,0.639648,0.29008,0.005888,0.20096,0.005184,0.004864,0.004288,0.006144,0.006048,0.051296,0.005408
+777,1419.76,0.704346,0.28928,0.004864,0.2,0.0048,0.0056,0.00464,0.006144,0.006016,0.051328,0.005888
+778,1536.38,0.650879,0.28656,0.005632,0.197152,0.005184,0.005024,0.00576,0.00576,0.004864,0.0512,0.005984
+779,1457.91,0.685913,0.287424,0.0048,0.19664,0.005824,0.004416,0.005664,0.005824,0.004864,0.054912,0.00448
+780,1377.73,0.72583,0.29312,0.005056,0.200416,0.004384,0.00592,0.00432,0.006144,0.006144,0.055296,0.00544
+781,1385.42,0.721802,0.291616,0.004896,0.199904,0.004896,0.004096,0.006016,0.006272,0.005984,0.054496,0.005056
+782,1445.31,0.691895,0.303104,0.005376,0.207392,0.00432,0.00544,0.0048,0.006144,0.006144,0.05872,0.004768
+783,1307.58,0.764771,0.534496,0.005376,0.414432,0.006208,0.005728,0.004512,0.006144,0.006016,0.063488,0.022592
+784,712.72,1.40308,0.309856,0.004704,0.21504,0.005856,0.004384,0.005728,0.005568,0.005088,0.058464,0.005024
+785,1456.87,0.686401,0.295136,0.005376,0.201152,0.00464,0.00416,0.00608,0.006016,0.005824,0.057568,0.00432
+786,1308.63,0.76416,0.342176,0.014816,0.23552,0.005344,0.004864,0.005184,0.005088,0.006144,0.059392,0.005824
+787,1497.62,0.667725,0.291168,0.004512,0.198464,0.004288,0.005472,0.004768,0.006144,0.006144,0.055328,0.006048
+788,1471.79,0.679443,0.28672,0.005696,0.196928,0.004224,0.005536,0.004704,0.006144,0.006144,0.052512,0.004832
+789,1398.91,0.714844,0.291424,0.004704,0.19984,0.004896,0.00416,0.005984,0.005728,0.004672,0.056704,0.004736
+790,684.035,1.46191,0.397088,0.005568,0.303328,0.004448,0.005312,0.004928,0.006016,0.005696,0.055872,0.00592
+791,1233.92,0.810425,0.666496,0.004992,0.526336,0.03072,0.022528,0.005664,0.00576,0.00496,0.059392,0.006144
+792,684.778,1.46033,0.297408,0.004544,0.2048,0.005184,0.004832,0.004352,0.006112,0.005952,0.057312,0.00432
+793,1532.36,0.652588,0.294944,0.005376,0.201504,0.005472,0.004736,0.005216,0.005024,0.006144,0.056448,0.005024
+794,1390.83,0.718994,0.292864,0.005664,0.202368,0.004864,0.004192,0.006144,0.00608,0.005696,0.052832,0.005024
+795,1387.3,0.720825,0.29696,0.00608,0.19632,0.004448,0.005312,0.004928,0.006048,0.005696,0.061984,0.006144
+796,1290.69,0.77478,0.288576,0.005408,0.194816,0.004576,0.004096,0.006144,0.005824,0.005664,0.056096,0.005952
+797,1469.94,0.680298,0.287232,0.004608,0.194496,0.00416,0.0056,0.00464,0.006144,0.005728,0.057088,0.004768
+798,1344.94,0.74353,0.323296,0.0048,0.229376,0.00512,0.004896,0.00432,0.006144,0.006144,0.057152,0.005344
+799,1366.7,0.731689,0.57216,0.004832,0.475136,0.007968,0.005504,0.00496,0.005952,0.005696,0.057024,0.005088
+800,614.093,1.62842,0.303104,0.004448,0.216672,0.004512,0.005216,0.005024,0.005952,0.00576,0.049728,0.005792
+801,1453.51,0.687988,0.31376,0.020896,0.20912,0.005536,0.004704,0.005376,0.006208,0.005888,0.050112,0.00592
+802,1146.86,0.871948,0.30512,0.004512,0.214336,0.004768,0.004128,0.006048,0.00576,0.005728,0.054112,0.005728
+803,1295.79,0.771729,0.30256,0.004576,0.215072,0.005344,0.004832,0.005216,0.006336,0.004864,0.051232,0.005088
+804,1432.92,0.697876,0.3072,0.005536,0.217696,0.005408,0.004832,0.005216,0.005024,0.006144,0.0512,0.006144
+805,1352.71,0.739258,0.299008,0.005408,0.209632,0.005152,0.004832,0.004352,0.006144,0.006016,0.051328,0.006144
+806,1581.16,0.632446,0.290944,0.004512,0.202592,0.004192,0.00592,0.005824,0.00464,0.006144,0.0512,0.00592
+807,1400.58,0.713989,0.557056,0.006144,0.466144,0.006944,0.005664,0.004576,0.006144,0.005856,0.051008,0.004576
+808,599.225,1.66882,0.3072,0.006144,0.218592,0.00464,0.00512,0.00512,0.006016,0.005792,0.049632,0.006144
+809,1532.93,0.652344,0.28656,0.006144,0.202112,0.004736,0.00416,0.00608,0.00576,0.005696,0.045888,0.005984
+810,1626.36,0.614868,0.280416,0.004512,0.196608,0.005248,0.00496,0.005216,0.005056,0.006144,0.047104,0.005568
+811,1476.57,0.677246,0.278816,0.004416,0.194528,0.005888,0.005536,0.00496,0.00608,0.005728,0.046976,0.004704
+812,1425.44,0.701538,0.282528,0.006016,0.196544,0.004288,0.005472,0.004768,0.006144,0.006144,0.047104,0.006048
+813,1440.99,0.69397,0.278528,0.005632,0.193024,0.005664,0.004576,0.00544,0.006368,0.005824,0.04688,0.00512
+814,1485.13,0.67334,0.280864,0.004384,0.196288,0.004416,0.00544,0.0048,0.006144,0.005792,0.048896,0.004704
+815,1365.56,0.7323,0.289248,0.004608,0.206016,0.004896,0.004096,0.006048,0.00576,0.004608,0.04832,0.004896
+816,1455.84,0.68689,0.5192,0.005824,0.4304,0.007264,0.004864,0.004256,0.006144,0.006144,0.049024,0.00528
+817,610.205,1.63879,0.297056,0.004992,0.206848,0.005312,0.004864,0.005184,0.00512,0.006144,0.053248,0.005344
+818,1613.87,0.619629,0.290496,0.004448,0.200704,0.005408,0.0048,0.005888,0.005728,0.004768,0.053248,0.005504
+819,1572.36,0.635986,0.2888,0.006112,0.198496,0.004288,0.00608,0.005312,0.004992,0.006144,0.052832,0.004544
+820,1326.85,0.753662,0.284416,0.004864,0.195648,0.004896,0.004256,0.005792,0.005728,0.004864,0.053056,0.005312
+821,1277.01,0.783081,0.284672,0.005408,0.195296,0.00544,0.004832,0.00576,0.00576,0.004832,0.05232,0.005024
+822,1674.91,0.597046,0.284672,0.005504,0.196256,0.004928,0.004256,0.005856,0.00576,0.0048,0.052576,0.004736
+823,1345.38,0.743286,0.292352,0.006112,0.19584,0.004896,0.004128,0.006112,0.005984,0.005728,0.05792,0.005632
+824,1485.94,0.672974,0.295968,0.00512,0.202752,0.004096,0.005664,0.004576,0.006144,0.006144,0.056864,0.004608
+825,1056.35,0.946655,0.54896,0.005376,0.414528,0.007552,0.004736,0.005152,0.021344,0.026752,0.058848,0.004672
+826,840.464,1.18982,0.292896,0.006144,0.198656,0.005312,0.004864,0.00416,0.006048,0.005728,0.057376,0.004608
+827,1240.27,0.806274,0.293344,0.004544,0.198336,0.004416,0.005344,0.0064,0.005952,0.005888,0.057632,0.004832
+828,1324.49,0.755005,0.315392,0.006144,0.219136,0.005248,0.004864,0.004224,0.006144,0.006144,0.058688,0.0048
+829,1268.11,0.788574,0.291328,0.00496,0.196608,0.00512,0.004832,0.004384,0.006144,0.005792,0.057696,0.005792
+830,1257.79,0.795044,0.294144,0.006112,0.197984,0.0048,0.004096,0.00608,0.005792,0.00576,0.058144,0.005376
+831,1702.76,0.58728,0.290816,0.006144,0.19456,0.005824,0.004416,0.0056,0.00464,0.006144,0.059296,0.004192
+832,1262.25,0.792236,0.301472,0.004512,0.205952,0.004896,0.004224,0.005856,0.005792,0.005792,0.058304,0.006144
+833,1590.06,0.628906,0.291328,0.004576,0.19664,0.005856,0.004352,0.005728,0.005664,0.004992,0.058944,0.004576
+834,624.2,1.60205,0.310944,0.007488,0.21168,0.005216,0.00464,0.00448,0.006144,0.006144,0.059392,0.00576
+835,1375.88,0.726807,0.293024,0.005408,0.197472,0.005664,0.004608,0.005472,0.005792,0.005088,0.058848,0.004672
+836,1566.95,0.638184,0.292864,0.00608,0.194144,0.004576,0.005216,0.005024,0.005824,0.005728,0.060128,0.006144
+837,1529.79,0.653687,0.28672,0.005472,0.193216,0.005216,0.004832,0.004288,0.006112,0.00608,0.05712,0.004384
+838,1381.45,0.723877,0.29712,0.005408,0.203648,0.004096,0.005664,0.004576,0.006144,0.005856,0.056896,0.004832
+839,1417.55,0.705444,0.291456,0.005088,0.197632,0.004928,0.004288,0.005984,0.005792,0.004672,0.05728,0.005792
+840,1439.72,0.69458,0.303136,0.004832,0.206848,0.004096,0.00576,0.00448,0.006144,0.006144,0.059392,0.00544
+841,1333.55,0.749878,0.30864,0.006144,0.212992,0.004096,0.005728,0.004512,0.007584,0.00576,0.056288,0.005536
+842,837.2,1.19446,0.53088,0.004672,0.434176,0.007744,0.004544,0.005568,0.005984,0.005952,0.056224,0.006016
+843,962.293,1.03918,0.298592,0.005632,0.203232,0.004128,0.005632,0.004608,0.006144,0.006112,0.057376,0.005728
+844,1686.99,0.592773,0.291264,0.004544,0.196448,0.004256,0.005504,0.004736,0.006144,0.006144,0.058816,0.004672
+845,1424.7,0.701904,0.296992,0.006144,0.201984,0.004864,0.004096,0.005824,0.005952,0.005824,0.057632,0.004672
+846,1266.74,0.789429,0.293184,0.004512,0.19856,0.00576,0.004448,0.005472,0.0048,0.006112,0.058656,0.004864
+847,1051.87,0.950684,0.303968,0.004992,0.209984,0.004896,0.004224,0.005824,0.005696,0.006336,0.057312,0.004704
+848,1545.66,0.646973,0.30352,0.004608,0.208768,0.004224,0.005536,0.004704,0.006144,0.005984,0.057504,0.006048
+849,1372.42,0.728638,0.307552,0.004896,0.210944,0.005376,0.004832,0.005216,0.005056,0.006176,0.05936,0.005696
+850,1332.03,0.750732,0.32752,0.004608,0.233152,0.004448,0.00528,0.004928,0.006144,0.005856,0.05744,0.005664
+851,600.983,1.66394,0.312448,0.008128,0.214752,0.004448,0.005344,0.004896,0.006048,0.00576,0.057792,0.00528
+852,1496.8,0.668091,0.295008,0.005632,0.203648,0.004192,0.005792,0.004352,0.006144,0.006144,0.053248,0.005856
+853,1265.17,0.790405,0.28992,0.00608,0.19808,0.004736,0.004192,0.006016,0.005696,0.005952,0.053856,0.005312
+854,1407.8,0.710327,0.295488,0.00464,0.2048,0.004096,0.005792,0.004448,0.006144,0.006048,0.054944,0.004576
+855,1594.39,0.627197,0.292864,0.006144,0.200704,0.005632,0.004608,0.005696,0.00592,0.004768,0.054368,0.005024
+856,1458.69,0.685547,0.294912,0.005952,0.202944,0.005376,0.004864,0.005184,0.005056,0.006176,0.054592,0.004768
+857,1192.08,0.838867,0.292384,0.005792,0.196288,0.004768,0.004192,0.006016,0.00576,0.00608,0.057824,0.005664
+858,1237.46,0.808105,0.315392,0.006016,0.223168,0.004288,0.005536,0.004704,0.006144,0.006144,0.054368,0.005024
+859,1407.08,0.710693,0.518432,0.004384,0.425184,0.006944,0.005632,0.004608,0.006144,0.006016,0.054528,0.004992
+860,754.745,1.32495,0.290208,0.005856,0.196896,0.005792,0.004448,0.005632,0.00576,0.004992,0.055296,0.005536
+861,1398.67,0.714966,0.288544,0.006144,0.19632,0.004384,0.005376,0.004864,0.00592,0.005952,0.053664,0.00592
+862,1557.41,0.64209,0.290592,0.005664,0.198656,0.004608,0.005152,0.005088,0.005952,0.005728,0.053824,0.00592
+863,1387.77,0.720581,0.28672,0.00608,0.194624,0.0056,0.00464,0.00528,0.00496,0.006144,0.054528,0.004864
+864,1442.76,0.693115,0.284672,0.005504,0.193056,0.0056,0.004736,0.005472,0.004768,0.006144,0.054912,0.00448
+865,1533.51,0.6521,0.284672,0.0056,0.192416,0.004736,0.00576,0.00448,0.006144,0.006144,0.054784,0.004608
+866,634.35,1.57642,0.30944,0.005376,0.20896,0.004896,0.004192,0.005952,0.006304,0.005728,0.063104,0.004928
+867,915.512,1.09229,0.47744,0.00704,0.376832,0.005152,0.004832,0.004384,0.006112,0.006144,0.06144,0.005504
+868,1163.8,0.859253,0.299936,0.005024,0.206144,0.0048,0.004096,0.00608,0.00576,0.006336,0.055552,0.006144
+869,1282.61,0.779663,0.302464,0.005664,0.208416,0.004928,0.004256,0.005792,0.005728,0.004832,0.057344,0.005504
+870,1264.78,0.790649,0.294944,0.005536,0.201088,0.00432,0.00544,0.0048,0.006112,0.00592,0.057216,0.004512
+871,1692.21,0.590942,0.294912,0.005632,0.201216,0.005248,0.004832,0.004256,0.006144,0.006144,0.056608,0.004832
+872,1391.54,0.718628,0.293696,0.004928,0.198048,0.004704,0.004192,0.006048,0.005184,0.005056,0.060832,0.004704
+873,1528.64,0.654175,0.298272,0.005376,0.197472,0.004256,0.005504,0.004736,0.006144,0.00608,0.06336,0.005344
+874,1297.43,0.770752,0.30736,0.005408,0.212864,0.004896,0.00432,0.005728,0.005824,0.004864,0.057344,0.006112
+875,1467.84,0.681274,0.301056,0.006144,0.200384,0.004416,0.005344,0.004896,0.005888,0.005536,0.063968,0.00448
+876,663.051,1.50818,0.320352,0.00704,0.223232,0.005504,0.004736,0.005344,0.004928,0.006112,0.057344,0.006112
+877,1526.36,0.655151,0.294912,0.0056,0.1992,0.005376,0.004864,0.005152,0.005088,0.006144,0.058464,0.005024
+878,1419.27,0.70459,0.29216,0.006144,0.196608,0.005856,0.005536,0.004992,0.005792,0.00576,0.056032,0.00544
+879,1445.56,0.691772,0.286784,0.004448,0.194592,0.005216,0.004768,0.00432,0.006112,0.005728,0.055744,0.005856
+880,1551.22,0.644653,0.2888,0.006144,0.193984,0.004672,0.004096,0.006144,0.006048,0.005888,0.05712,0.004704
+881,1345.16,0.743408,0.284832,0.005824,0.19488,0.004128,0.00576,0.00592,0.00576,0.005088,0.052896,0.004576
+882,1372.42,0.728638,0.282656,0.005984,0.192672,0.005248,0.004864,0.005792,0.00576,0.00496,0.052832,0.004544
+883,1434.68,0.697021,0.294784,0.006144,0.202752,0.005824,0.004416,0.0056,0.00464,0.006144,0.053248,0.006016
+884,1463.9,0.683105,0.513504,0.005952,0.420032,0.006304,0.005696,0.004384,0.006144,0.006144,0.053248,0.0056
+885,653.27,1.53076,0.305152,0.005376,0.215168,0.004736,0.005696,0.004544,0.006144,0.005952,0.051392,0.006144
+886,1643.99,0.608276,0.290528,0.005632,0.19888,0.004384,0.005536,0.004704,0.006144,0.005888,0.053504,0.005856
+887,1321.93,0.75647,0.285152,0.004544,0.196576,0.004128,0.005632,0.004608,0.006144,0.00592,0.052832,0.004768
+888,1602.19,0.624146,0.284672,0.006144,0.19456,0.005536,0.004704,0.005472,0.005824,0.00512,0.052512,0.0048
+889,1496.26,0.668335,0.2888,0.00544,0.195264,0.004096,0.0056,0.00464,0.006144,0.005856,0.057184,0.004576
+890,1430.92,0.698853,0.290176,0.006144,0.194496,0.00416,0.005568,0.004672,0.006144,0.006144,0.057344,0.005504
+891,1315.35,0.760254,0.288384,0.00544,0.193248,0.005344,0.004832,0.005216,0.006432,0.004768,0.057344,0.00576
+892,1548,0.645996,0.29488,0.004576,0.200704,0.005152,0.004864,0.00432,0.006144,0.006144,0.057344,0.005632
+893,1284.01,0.778809,0.292736,0.005696,0.197056,0.005344,0.004832,0.00528,0.005024,0.006144,0.057344,0.006016
+894,697.429,1.43384,0.305184,0.007872,0.207168,0.005376,0.004864,0.005408,0.004832,0.006144,0.059008,0.004512
+895,1470.21,0.680176,0.292576,0.005408,0.197056,0.00464,0.00512,0.00512,0.006144,0.006144,0.057344,0.0056
+896,1560.68,0.640747,0.292864,0.006144,0.19808,0.004672,0.005152,0.005088,0.005856,0.005696,0.057056,0.00512
+897,1341.41,0.745483,0.298912,0.004704,0.206848,0.00512,0.004864,0.004352,0.006144,0.005888,0.055552,0.00544
+898,1247.64,0.801514,0.290816,0.005472,0.194944,0.004384,0.005568,0.004672,0.006144,0.005696,0.059456,0.00448
+899,1698.88,0.588623,0.291424,0.004704,0.196608,0.004096,0.005856,0.004384,0.006144,0.006112,0.058464,0.005056
+900,1326,0.75415,0.292864,0.005888,0.196672,0.00432,0.00544,0.004768,0.006144,0.006048,0.058624,0.00496
+901,1505.05,0.664429,0.310752,0.005856,0.207136,0.00544,0.0048,0.005216,0.005024,0.006144,0.065536,0.0056
+902,1228.19,0.814209,0.512032,0.006144,0.415744,0.007264,0.004896,0.004224,0.006144,0.006144,0.057344,0.004128
+903,737.354,1.3562,0.295168,0.005376,0.203808,0.005536,0.004704,0.005408,0.005984,0.005088,0.054688,0.004576
+904,1332.9,0.750244,0.310784,0.006048,0.212128,0.004896,0.004256,0.006144,0.006144,0.006144,0.059392,0.005632
+905,804.873,1.24243,0.3104,0.00576,0.210528,0.004896,0.005184,0.005056,0.006144,0.006144,0.061376,0.005312
+906,1473.38,0.678711,0.301504,0.004864,0.200704,0.004096,0.005824,0.004416,0.006144,0.006144,0.063488,0.005824
+907,1365.56,0.7323,0.299392,0.00448,0.19456,0.005344,0.004832,0.004192,0.006112,0.006144,0.068704,0.005024
+908,1427.18,0.700684,0.301152,0.005408,0.195392,0.005408,0.004832,0.005248,0.004992,0.006144,0.067584,0.006144
+909,1398.67,0.714966,0.305184,0.006048,0.2008,0.00544,0.0048,0.005216,0.005024,0.006144,0.067328,0.004384
+910,1139.36,0.877686,0.517856,0.007488,0.4104,0.00608,0.00416,0.005888,0.005952,0.005856,0.066272,0.00576
+911,778.263,1.28491,0.30352,0.00496,0.200096,0.004704,0.004096,0.006144,0.005856,0.00592,0.066048,0.005696
+912,1564.25,0.639282,0.294688,0.00576,0.196992,0.00416,0.00576,0.004416,0.006144,0.006144,0.059392,0.00592
+913,1602.82,0.623901,0.29376,0.00496,0.196608,0.005216,0.004864,0.005728,0.005728,0.005088,0.060544,0.005024
+914,1345.16,0.743408,0.311072,0.006144,0.210944,0.005376,0.004864,0.004128,0.00752,0.00576,0.060416,0.00592
+915,1435.93,0.696411,0.291424,0.004704,0.19456,0.005856,0.004416,0.00576,0.00576,0.004832,0.061184,0.004352
+916,1508.93,0.66272,0.292832,0.004672,0.195744,0.004864,0.004192,0.005984,0.00576,0.005728,0.060352,0.005536
+917,1051.33,0.951172,0.301088,0.006144,0.202752,0.005632,0.004608,0.005472,0.006016,0.0064,0.05984,0.004224
+918,1342.07,0.745117,0.312384,0.005536,0.214944,0.0048,0.004128,0.00608,0.005856,0.004448,0.06128,0.005312
+919,745.066,1.34216,0.302784,0.00752,0.203616,0.004096,0.00576,0.00448,0.006144,0.005856,0.05968,0.005632
+920,1585.45,0.630737,0.294912,0.005856,0.196896,0.005152,0.005088,0.0056,0.005728,0.005056,0.060928,0.004608
+921,1469.68,0.68042,0.293728,0.00496,0.197984,0.004768,0.004128,0.005888,0.005824,0.005824,0.058208,0.006144
+922,1362.83,0.733765,0.292864,0.005952,0.194368,0.00448,0.00528,0.00496,0.006016,0.005728,0.061344,0.004736
+923,1522.11,0.656982,0.287136,0.004512,0.19456,0.005408,0.004832,0.005216,0.005024,0.006144,0.056416,0.005024
+924,946.396,1.05664,0.30928,0.006016,0.215168,0.005152,0.004864,0.004352,0.006112,0.006144,0.057152,0.00432
+925,1690.47,0.591553,0.299008,0.006144,0.2048,0.005728,0.004512,0.006144,0.00592,0.006336,0.054816,0.004608
+926,1384.49,0.72229,0.299296,0.005408,0.206912,0.004896,0.005536,0.004864,0.006144,0.00608,0.05488,0.004576
+927,1390.12,0.71936,0.293376,0.004704,0.200704,0.005248,0.004864,0.00544,0.004928,0.006144,0.055296,0.006048
+928,690.667,1.44788,0.300352,0.007712,0.203232,0.004096,0.005792,0.004448,0.006144,0.00608,0.057408,0.00544
+929,1653.61,0.604736,0.296384,0.006144,0.198688,0.005248,0.004864,0.004288,0.00752,0.004672,0.059392,0.005568
+930,1334.2,0.749512,0.29696,0.006144,0.200704,0.004096,0.005856,0.004416,0.006112,0.005856,0.057632,0.006144
+931,1578.72,0.633423,0.293728,0.00496,0.2,0.0048,0.004096,0.006144,0.006048,0.005696,0.05584,0.006144
+932,1256.44,0.795898,0.290656,0.006144,0.198656,0.004096,0.005728,0.004512,0.006144,0.005408,0.053984,0.005984
+933,1638.07,0.610474,0.29296,0.004704,0.198048,0.004704,0.004224,0.006016,0.006144,0.006144,0.057344,0.005632
+934,1422.22,0.703125,0.289312,0.00464,0.196608,0.005824,0.004416,0.005632,0.005728,0.005024,0.05696,0.00448
+935,1327.71,0.753174,0.31536,0.005408,0.219296,0.004672,0.004096,0.006144,0.006144,0.005568,0.05792,0.006112
+936,1277.01,0.783081,0.521888,0.004544,0.424992,0.007104,0.00416,0.00592,0.005728,0.004704,0.059392,0.005344
+937,741.29,1.349,0.300704,0.004672,0.198656,0.005664,0.004576,0.005504,0.004768,0.006112,0.065408,0.005344
+938,1290.28,0.775024,0.298752,0.006112,0.196416,0.00432,0.00544,0.006464,0.00576,0.004864,0.063488,0.005888
+939,1433.92,0.697388,0.303104,0.005568,0.199232,0.004128,0.005824,0.005536,0.004992,0.006144,0.066592,0.005088
+940,1600,0.625,0.299808,0.004896,0.196608,0.004128,0.00576,0.004448,0.007808,0.005728,0.065856,0.004576
+941,1338.34,0.747192,0.29696,0.005664,0.19504,0.005792,0.004448,0.005888,0.005696,0.0048,0.064928,0.004704
+942,1140.15,0.877075,0.304288,0.006144,0.198656,0.005408,0.004832,0.005248,0.004992,0.007872,0.065824,0.005312
+943,1704.54,0.58667,0.301792,0.004992,0.198656,0.00576,0.00448,0.005568,0.00576,0.005056,0.065536,0.005984
+944,847.507,1.17993,0.29984,0.004928,0.204448,0.004448,0.005376,0.004864,0.006112,0.005696,0.059072,0.004896
+945,1110.78,0.900269,0.507552,0.008192,0.403168,0.005504,0.005024,0.005664,0.00576,0.00496,0.063488,0.005792
+946,992.488,1.00757,0.294912,0.005632,0.198464,0.0048,0.004096,0.006144,0.006144,0.00592,0.059168,0.004544
+947,1267.72,0.788818,0.294432,0.004416,0.196608,0.005184,0.004864,0.005632,0.0048,0.006144,0.061376,0.005408
+948,1523.24,0.656494,0.294784,0.005728,0.195008,0.005472,0.004736,0.005952,0.005856,0.005728,0.060288,0.006016
+949,1498.99,0.667114,0.292864,0.006144,0.194368,0.004288,0.005472,0.004768,0.006144,0.005888,0.061184,0.004608
+950,1268.31,0.788452,0.295168,0.004704,0.196128,0.004576,0.004096,0.006144,0.005824,0.005696,0.06224,0.00576
+951,1391.54,0.718628,0.311296,0.006112,0.208928,0.005792,0.004448,0.00544,0.0048,0.006144,0.063488,0.006144
+952,1409.98,0.709229,0.3032,0.005408,0.203648,0.005536,0.004704,0.006144,0.006016,0.005728,0.059936,0.00608
+953,1324.92,0.754761,0.521888,0.004704,0.417184,0.006784,0.005824,0.004384,0.006144,0.006144,0.065376,0.005344
+954,626.587,1.59595,0.305152,0.006112,0.202208,0.004672,0.005824,0.004416,0.006144,0.006144,0.064672,0.00496
+955,1279.8,0.781372,0.30816,0.005056,0.210944,0.00512,0.004832,0.004384,0.006144,0.006144,0.059392,0.006144
+956,1761.34,0.567749,0.298976,0.00544,0.195296,0.0056,0.004608,0.005984,0.005792,0.005792,0.064352,0.006112
+957,1187.76,0.841919,0.318144,0.004832,0.199872,0.004928,0.005472,0.020448,0.0048,0.006176,0.065504,0.006112
+958,1515.91,0.659668,0.297152,0.005376,0.194848,0.004768,0.004096,0.005952,0.005792,0.005792,0.064384,0.006144
+959,1433.92,0.697388,0.296832,0.005952,0.193728,0.004928,0.004288,0.0056,0.00576,0.005024,0.065536,0.006016
+960,1236.71,0.808594,0.310112,0.00496,0.208672,0.00432,0.005504,0.004736,0.006144,0.006144,0.064768,0.004864
+961,1434.68,0.697021,0.299008,0.0056,0.200352,0.004896,0.004192,0.005856,0.005728,0.004832,0.063232,0.00432
+962,1126.98,0.887329,0.52352,0.007744,0.419776,0.004608,0.005728,0.004512,0.006144,0.00592,0.063712,0.005376
+963,919.313,1.08777,0.301152,0.005376,0.199552,0.00528,0.004864,0.005216,0.005088,0.006144,0.065376,0.004256
+964,1454.29,0.687622,0.301056,0.006144,0.196448,0.005536,0.004864,0.005664,0.00592,0.005888,0.064448,0.006144
+965,1356.07,0.737427,0.296864,0.004544,0.195648,0.004896,0.004288,0.00592,0.00576,0.004736,0.065472,0.0056
+966,1454.29,0.687622,0.299744,0.004896,0.19632,0.004384,0.005376,0.004864,0.006144,0.005792,0.065888,0.00608
+967,1365.79,0.732178,0.303136,0.005824,0.19488,0.00592,0.00432,0.006016,0.00576,0.005696,0.07008,0.00464
+968,1335.94,0.748535,0.30384,0.004832,0.194592,0.005728,0.00448,0.005376,0.004864,0.006144,0.0728,0.005024
+969,1373.81,0.727905,0.3032,0.005376,0.19744,0.0056,0.00464,0.005184,0.005056,0.006144,0.069344,0.004416
+970,1393.67,0.717529,0.305152,0.005856,0.198592,0.004448,0.005312,0.004928,0.006144,0.006144,0.068864,0.004864
+971,694.59,1.4397,0.31056,0.00816,0.202208,0.004672,0.004256,0.005984,0.005664,0.005728,0.06848,0.005408
+972,1560.08,0.640991,0.302944,0.005728,0.19696,0.00416,0.0056,0.00464,0.006144,0.00576,0.067968,0.005984
+973,1353.6,0.73877,0.299104,0.005344,0.19552,0.005344,0.004896,0.005696,0.005856,0.004832,0.065568,0.006048
+974,1535.81,0.651123,0.304384,0.005568,0.198304,0.004768,0.004352,0.005984,0.005568,0.004832,0.069632,0.005376
+975,1302.8,0.767578,0.302464,0.006112,0.196032,0.004704,0.004096,0.006016,0.0056,0.004768,0.069632,0.005504
+976,1476.83,0.677124,0.30288,0.0048,0.19632,0.004352,0.005344,0.004896,0.005664,0.004608,0.071584,0.005312
+977,1348.48,0.741577,0.301664,0.004672,0.196128,0.004576,0.005344,0.004896,0.00608,0.005472,0.069952,0.004544
+978,1448.63,0.690308,0.311296,0.005824,0.200544,0.004576,0.005184,0.005056,0.00592,0.006304,0.072992,0.004896
+979,1303.21,0.767334,0.52656,0.005376,0.414688,0.006336,0.005952,0.005536,0.005728,0.00512,0.071744,0.00608
+980,695.298,1.43823,0.3032,0.005376,0.197184,0.004384,0.005376,0.004864,0.006144,0.00576,0.06928,0.004832
+981,1342.29,0.744995,0.303136,0.006144,0.194144,0.004544,0.005216,0.004992,0.006112,0.00592,0.071584,0.00448
+982,1031.09,0.969849,0.310144,0.004992,0.204608,0.004288,0.005472,0.004768,0.006144,0.005888,0.069344,0.00464
+983,1605.64,0.622803,0.305152,0.005856,0.200896,0.004192,0.005568,0.004672,0.006144,0.006048,0.066848,0.004928
+984,1492.44,0.670044,0.302624,0.00544,0.197312,0.004128,0.005664,0.004544,0.006144,0.006144,0.067584,0.005664
+985,1453,0.688232,0.295424,0.00464,0.196352,0.004352,0.005408,0.004832,0.006144,0.006144,0.06144,0.006112
+986,1137.62,0.879028,0.295232,0.004416,0.199808,0.004928,0.004192,0.005824,0.0056,0.004928,0.061248,0.004288
+987,1748.56,0.571899,0.300768,0.005536,0.201312,0.005248,0.004864,0.005728,0.00576,0.005024,0.06144,0.005856
+988,627.884,1.59265,0.306976,0.006752,0.208064,0.004896,0.004128,0.005728,0.00576,0.005984,0.060352,0.005312
+989,1293.13,0.773315,0.291264,0.004544,0.196608,0.0056,0.00464,0.00544,0.0048,0.006144,0.058432,0.005056
+990,1531.5,0.652954,0.290816,0.005376,0.194656,0.004928,0.005536,0.004704,0.006144,0.005856,0.057632,0.005984
+991,1511.44,0.661621,0.289248,0.004576,0.196448,0.004256,0.005504,0.004736,0.006144,0.005888,0.057152,0.004544
+992,1221.41,0.818726,0.292192,0.006144,0.195744,0.00496,0.005408,0.004832,0.006112,0.005696,0.057824,0.005472
+993,1671.84,0.598145,0.290816,0.005728,0.194976,0.004096,0.005728,0.004512,0.006144,0.005984,0.059104,0.004544
+994,1462.6,0.683716,0.291072,0.005376,0.195552,0.004096,0.005792,0.004448,0.006144,0.005984,0.059008,0.004672
+995,1442.25,0.693359,0.293312,0.004544,0.198656,0.005312,0.004928,0.005248,0.004992,0.006144,0.05856,0.004928
+996,1312.82,0.761719,0.292096,0.006016,0.19616,0.004672,0.004096,0.006048,0.00592,0.005888,0.05792,0.005376
+997,615.338,1.62512,0.299584,0.00688,0.202752,0.005152,0.004864,0.004352,0.006112,0.006144,0.057344,0.005984
+998,1580.86,0.632568,0.294368,0.006144,0.194592,0.005824,0.004384,0.006144,0.00608,0.005696,0.059904,0.0056
+999,1531.5,0.652954,0.294336,0.005408,0.196512,0.004896,0.004288,0.00608,0.005792,0.00576,0.060128,0.005472
+1000,1227.45,0.814697,0.292896,0.005056,0.19456,0.0056,0.00464,0.005536,0.004704,0.006144,0.061344,0.005312
+1001,956.227,1.04578,0.355904,0.006176,0.255968,0.0056,0.00464,0.00544,0.004832,0.0072,0.060352,0.005696
+1002,1648.29,0.606689,0.30768,0.004576,0.206432,0.004512,0.005248,0.004992,0.006144,0.005888,0.064864,0.005024
+1003,968.436,1.03259,0.318848,0.006144,0.22528,0.004096,0.005792,0.004448,0.006144,0.00592,0.05552,0.005504
+1004,1380.05,0.724609,0.509984,0.006144,0.415488,0.0064,0.005568,0.004672,0.006144,0.005856,0.055264,0.004448
+1005,670.376,1.4917,0.30416,0.005504,0.20544,0.005856,0.004384,0.005696,0.00576,0.004928,0.061216,0.005376
+1006,1311.56,0.762451,0.286752,0.006176,0.194496,0.004128,0.005632,0.004608,0.006144,0.005824,0.055168,0.004576
+1007,1624.11,0.615723,0.28848,0.0048,0.19456,0.004096,0.005664,0.004576,0.005824,0.005696,0.057952,0.005312
+1008,1251.64,0.79895,0.290176,0.005408,0.195296,0.004096,0.006016,0.004224,0.006144,0.006144,0.057344,0.005504
+1009,1513.11,0.660889,0.294912,0.00576,0.196992,0.005152,0.004896,0.004288,0.006144,0.006144,0.0608,0.004736
+1010,1347.15,0.74231,0.297312,0.004448,0.198656,0.00592,0.00432,0.005984,0.005984,0.005696,0.061408,0.004896
+1011,1250.69,0.799561,0.315392,0.005664,0.2176,0.005408,0.0048,0.00528,0.00496,0.006144,0.059392,0.006144
+1012,1665.04,0.600586,0.295776,0.00496,0.196608,0.005248,0.004832,0.004288,0.006112,0.006144,0.06144,0.006144
+1013,624.676,1.60083,0.301056,0.008192,0.198336,0.004416,0.005312,0.004928,0.005728,0.005728,0.06352,0.004896
+1014,1578.42,0.633545,0.298816,0.005728,0.19632,0.0048,0.004096,0.005856,0.00576,0.004768,0.065536,0.005952
+1015,1374.04,0.727783,0.297024,0.005376,0.196416,0.004896,0.005408,0.005056,0.005952,0.005888,0.061888,0.006144
+1016,1480.84,0.675293,0.299008,0.005888,0.202752,0.004352,0.00608,0.005248,0.005056,0.006144,0.059072,0.004416
+1017,1205.41,0.82959,0.294912,0.006144,0.196608,0.005728,0.004544,0.005696,0.005728,0.004928,0.059392,0.006144
+1018,1611.65,0.620483,0.293024,0.005408,0.196672,0.004896,0.004096,0.006048,0.005728,0.005664,0.05968,0.004832
+1019,1456.1,0.686768,0.294912,0.006144,0.196128,0.004576,0.005184,0.005024,0.00576,0.00576,0.060192,0.006144
+1020,906.395,1.10327,0.319808,0.004416,0.223232,0.005248,0.004832,0.004256,0.006144,0.00608,0.060576,0.005024
+1021,585.143,1.70898,0.527232,0.004992,0.415616,0.006272,0.005472,0.020544,0.006304,0.006048,0.057408,0.004576
+1022,1060.73,0.942749,0.313632,0.004416,0.20272,0.005504,0.004768,0.019584,0.006176,0.004928,0.060544,0.004992
+1023,1748.19,0.572021,0.300256,0.005568,0.20128,0.00544,0.0048,0.006048,0.00576,0.005696,0.06032,0.005344
+1024,1296.82,0.771118,0.29712,0.004864,0.198656,0.005504,0.004736,0.005728,0.005824,0.006336,0.059936,0.005536
+1025,1629.6,0.613647,0.292736,0.005504,0.194784,0.004544,0.00512,0.005056,0.00576,0.005728,0.060224,0.006016
+1026,1421.24,0.703613,0.298528,0.005888,0.194816,0.00528,0.00496,0.005728,0.00576,0.004896,0.065536,0.005664
+1027,1385.89,0.721558,0.30128,0.005344,0.199104,0.004672,0.004096,0.006144,0.005856,0.005696,0.064224,0.006144
+1028,1205.59,0.829468,0.297824,0.00496,0.202016,0.004832,0.004096,0.006016,0.005952,0.00592,0.059424,0.004608
+1029,1368.76,0.730591,0.519936,0.004608,0.420896,0.007104,0.005504,0.004768,0.006144,0.00592,0.059616,0.005376
+1030,729.93,1.37,0.310624,0.0056,0.207392,0.00416,0.005728,0.004448,0.007424,0.004864,0.065536,0.005472
+1031,1469.15,0.680664,0.301152,0.005376,0.197472,0.005472,0.004672,0.005216,0.00512,0.006144,0.066784,0.004896
+1032,1343.83,0.744141,0.303104,0.005984,0.20016,0.0048,0.004128,0.005984,0.00576,0.00576,0.06608,0.004448
+1033,1503.67,0.665039,0.302496,0.006176,0.197856,0.004864,0.005536,0.004704,0.006144,0.00592,0.06576,0.005536
+1034,1201.35,0.832397,0.300992,0.004512,0.196608,0.005536,0.004736,0.005568,0.005728,0.005056,0.067584,0.005664
+1035,1651.28,0.605591,0.297792,0.004928,0.197792,0.00496,0.005504,0.004736,0.006144,0.005824,0.063552,0.004352
+1036,1449.14,0.690063,0.303488,0.00464,0.200672,0.0056,0.004672,0.005344,0.004864,0.006144,0.065536,0.006016
+1037,1362.83,0.733765,0.301504,0.004544,0.202752,0.005216,0.004864,0.004416,0.005984,0.006144,0.063008,0.004576
+1038,554.225,1.80432,0.331776,0.007872,0.227648,0.004096,0.005696,0.005792,0.004896,0.006144,0.064544,0.005088
+1039,1659.31,0.602661,0.301088,0.005376,0.201344,0.004256,0.005856,0.004384,0.006144,0.006144,0.06144,0.006144
+1040,1443.27,0.692871,0.293504,0.004736,0.19456,0.005536,0.004704,0.005632,0.005696,0.005056,0.062464,0.00512
+1041,1344.27,0.743896,0.2976,0.005056,0.197792,0.004896,0.00416,0.005856,0.005696,0.004832,0.063488,0.005824
+1042,1406.11,0.711182,0.300608,0.006144,0.197888,0.004864,0.004096,0.007328,0.005984,0.00512,0.063488,0.005696
+1043,1249.16,0.800537,0.2976,0.004768,0.196544,0.004128,0.005632,0.004608,0.006144,0.006144,0.06496,0.004672
+1044,1722.46,0.580566,0.296704,0.005472,0.1952,0.004128,0.0056,0.00464,0.006112,0.005664,0.064,0.005888
+1045,1361.7,0.734375,0.298976,0.006144,0.196192,0.004512,0.005216,0.005024,0.006016,0.005728,0.064032,0.006112
+1046,1448.89,0.690186,0.519776,0.00576,0.41408,0.007264,0.004864,0.004256,0.006144,0.006144,0.065536,0.005728
+1047,689.04,1.45129,0.301152,0.005408,0.19744,0.005792,0.004448,0.005664,0.004672,0.006048,0.067232,0.004448
+1048,1452.22,0.688599,0.295008,0.005408,0.195392,0.005792,0.004448,0.005888,0.006016,0.00592,0.061728,0.004416
+1049,1330.52,0.751587,0.294912,0.005696,0.195008,0.004096,0.005792,0.005568,0.005024,0.006144,0.06144,0.006144
+1050,1504.22,0.664795,0.294592,0.005376,0.194656,0.004928,0.004192,0.006144,0.006144,0.005792,0.061792,0.005568
+1051,1358.99,0.73584,0.296096,0.005344,0.195008,0.004512,0.005792,0.004448,0.006144,0.006144,0.063392,0.005312
+1052,1238.77,0.807251,0.29152,0.0048,0.196608,0.004096,0.005664,0.004576,0.006144,0.006144,0.059104,0.004384
+1053,1821.66,0.54895,0.288416,0.005344,0.195168,0.00432,0.005664,0.004608,0.006112,0.005984,0.055456,0.00576
+1054,1235.04,0.809692,0.297984,0.006144,0.19824,0.004512,0.005248,0.004992,0.008096,0.005888,0.059552,0.005312
+1055,1262.44,0.792114,0.525888,0.00784,0.39472,0.023424,0.018432,0.005312,0.004928,0.006144,0.059392,0.005696
+1056,885.334,1.12952,0.296128,0.005408,0.199072,0.004416,0.00544,0.0048,0.005408,0.004832,0.061376,0.005376
+1057,1355.39,0.737793,0.295552,0.004832,0.196608,0.005792,0.004448,0.006144,0.00608,0.00576,0.05984,0.006048
+1058,898.344,1.11316,0.325984,0.004448,0.23136,0.00416,0.0056,0.00464,0.006144,0.00608,0.058944,0.004608
+1059,1508.66,0.662842,0.304608,0.005824,0.202368,0.0048,0.004128,0.006112,0.005824,0.00576,0.064192,0.0056
+1060,1556.53,0.642456,0.303104,0.00592,0.200928,0.005152,0.004704,0.00448,0.006176,0.006112,0.064544,0.005088
+1061,1310.93,0.762817,0.31744,0.006144,0.21488,0.004256,0.006144,0.005248,0.004992,0.006176,0.065024,0.004576
+1062,1252.22,0.798584,0.29936,0.004864,0.197664,0.004928,0.004256,0.00576,0.00576,0.006272,0.064128,0.005728
+1063,1447.61,0.690796,0.328128,0.004512,0.227328,0.005536,0.004704,0.005344,0.00592,0.00512,0.065184,0.00448
+1064,601.027,1.66382,0.333408,0.008128,0.22896,0.004576,0.004096,0.00608,0.005888,0.005792,0.06416,0.005728
+1065,1469.15,0.680664,0.297472,0.004608,0.196,0.004704,0.004096,0.006144,0.006144,0.005888,0.063744,0.006144
+1066,1241.59,0.80542,0.29328,0.004512,0.196288,0.004416,0.005344,0.004896,0.006144,0.006144,0.060672,0.004864
+1067,1572.06,0.636108,0.288736,0.004992,0.193664,0.004896,0.004192,0.005888,0.005728,0.00592,0.058112,0.005344
+1068,1122.19,0.891113,0.322048,0.004608,0.210944,0.005696,0.004544,0.005472,0.005792,0.00512,0.060448,0.019424
+1069,1398.43,0.715088,0.315392,0.005632,0.217568,0.004128,0.0056,0.00464,0.006144,0.006144,0.06064,0.004896
+1070,1535.23,0.651367,0.299424,0.004512,0.19968,0.004896,0.004288,0.0056,0.00608,0.005728,0.064,0.00464
+1071,1268.31,0.788452,0.300928,0.006144,0.200704,0.005408,0.004832,0.005248,0.005024,0.006112,0.06144,0.006016
+1072,668.353,1.49622,0.308608,0.008192,0.204384,0.004512,0.005248,0.004992,0.006144,0.006144,0.063488,0.005504
+1073,1515.63,0.65979,0.295136,0.005952,0.198432,0.004512,0.005248,0.004992,0.005408,0.004832,0.061184,0.004576
+1074,1376.58,0.72644,0.29568,0.004928,0.198464,0.004288,0.005472,0.004768,0.006016,0.005728,0.059936,0.00608
+1075,1480.57,0.675415,0.295904,0.005088,0.196608,0.005568,0.004672,0.006144,0.006144,0.005856,0.061344,0.00448
+1076,1354.05,0.738525,0.294272,0.005376,0.195552,0.00416,0.005664,0.00448,0.006144,0.005824,0.06176,0.005312
+1077,1433.67,0.69751,0.297664,0.004832,0.200704,0.004096,0.006144,0.005376,0.004864,0.006144,0.059392,0.006112
+1078,798.596,1.2522,0.303072,0.00496,0.200704,0.005248,0.004864,0.006272,0.006016,0.005728,0.063968,0.005312
+1079,1270.08,0.787354,0.313632,0.004928,0.212992,0.005408,0.004832,0.005216,0.0064,0.005824,0.062432,0.0056
+1080,731.886,1.36633,0.313984,0.006912,0.212512,0.004576,0.005152,0.005088,0.006144,0.006144,0.06144,0.006016
+1081,1360.35,0.735107,0.296128,0.005792,0.196416,0.00464,0.00512,0.00512,0.005504,0.004736,0.063424,0.005376
+1082,1403.94,0.71228,0.299072,0.005408,0.197344,0.004128,0.005792,0.005472,0.005088,0.006144,0.065344,0.004352
+1083,1548.88,0.64563,0.301056,0.00608,0.19872,0.006144,0.004096,0.006144,0.005856,0.005728,0.063296,0.004992
+1084,1383.32,0.7229,0.296192,0.005504,0.1952,0.005888,0.004352,0.005952,0.00576,0.00576,0.0624,0.005376
+1085,1384.49,0.72229,0.297536,0.004672,0.198656,0.005216,0.004864,0.004256,0.006144,0.005952,0.062688,0.005088
+1086,1354.5,0.738281,0.298976,0.005056,0.198656,0.004096,0.005696,0.004544,0.006144,0.005984,0.063488,0.005312
+1087,1399.39,0.7146,0.302624,0.006144,0.202016,0.004832,0.004096,0.006144,0.005856,0.005728,0.062144,0.005664
+1088,1307.16,0.765015,0.516096,0.005984,0.413856,0.007968,0.00432,0.005728,0.005728,0.004928,0.06256,0.005024
+1089,707.61,1.41321,0.305152,0.005792,0.2072,0.005248,0.004864,0.004224,0.006144,0.006144,0.061216,0.00432
+1090,1344.49,0.743774,0.29696,0.005888,0.200256,0.0048,0.004096,0.007296,0.004992,0.006144,0.058912,0.004576
+1091,1567.25,0.638062,0.296992,0.005824,0.198976,0.004128,0.006112,0.005312,0.005952,0.00512,0.060736,0.004832
+1092,1205.95,0.829224,0.290816,0.005888,0.194848,0.005696,0.004512,0.005536,0.004704,0.006144,0.0584,0.005088
+1093,1601.25,0.624512,0.291584,0.004864,0.19664,0.005088,0.00512,0.005216,0.005024,0.006144,0.058592,0.004896
+1094,1528.07,0.654419,0.293504,0.005056,0.198176,0.004576,0.005664,0.004576,0.006144,0.00592,0.057568,0.005824
+1095,1393.91,0.717407,0.292864,0.005376,0.197376,0.004096,0.006144,0.005472,0.004768,0.006144,0.057344,0.006144
+1096,1402.74,0.712891,0.290816,0.005984,0.195936,0.004896,0.004128,0.005952,0.005728,0.004704,0.058432,0.005056
+1097,1100.48,0.908691,0.514048,0.006048,0.41696,0.007072,0.005536,0.004704,0.006176,0.006112,0.057312,0.004128
+1098,433.783,2.3053,0.360608,0.00496,0.266144,0.004192,0.005568,0.005824,0.004992,0.006144,0.057344,0.00544
+1099,1279.6,0.781494,0.31712,0.004416,0.221184,0.005216,0.004864,0.004256,0.006144,0.006144,0.059392,0.005504
+1100,1303.01,0.767456,0.313344,0.006144,0.215072,0.005408,0.004832,0.005184,0.005024,0.006144,0.060544,0.004992
+1101,1430.92,0.698853,0.29696,0.006144,0.20048,0.00432,0.005152,0.004992,0.004384,0.005952,0.059392,0.006144
+1102,1433.17,0.697754,0.294752,0.00496,0.198656,0.006144,0.004096,0.005984,0.005824,0.004608,0.059168,0.005312
+1103,1527.5,0.654663,0.303104,0.006048,0.204864,0.004128,0.0056,0.00464,0.006048,0.005984,0.059648,0.006144
+1104,1397.24,0.715698,0.307232,0.006144,0.208896,0.00528,0.004832,0.004256,0.006112,0.006144,0.060864,0.004704
+1105,592.979,1.6864,0.337856,0.008,0.238944,0.004896,0.00416,0.00592,0.005568,0.004896,0.059392,0.00608
+1106,1437.45,0.695679,0.30336,0.004608,0.204192,0.004704,0.004096,0.006144,0.005632,0.005824,0.062272,0.005888
+1107,1299.7,0.769409,0.30928,0.00576,0.192896,0.004096,0.00576,0.022176,0.004832,0.006144,0.063104,0.004512
+1108,1317.04,0.759277,0.299104,0.00464,0.200416,0.004352,0.005536,0.004704,0.006144,0.005824,0.06176,0.005728
+1109,1627.01,0.614624,0.305568,0.005632,0.202816,0.004896,0.00416,0.006144,0.006144,0.005952,0.06368,0.006144
+1110,1379.36,0.724976,0.3032,0.005376,0.201536,0.005248,0.004864,0.004224,0.006144,0.006144,0.065024,0.00464
+1111,1436.44,0.696167,0.301056,0.00592,0.200352,0.004672,0.004096,0.00608,0.005728,0.004576,0.065312,0.00432
+1112,1446.84,0.691162,0.299008,0.006112,0.198208,0.004576,0.005184,0.005056,0.005888,0.005696,0.063968,0.00432
+1113,653.791,1.52954,0.317472,0.00784,0.213184,0.004256,0.005472,0.004768,0.006144,0.005792,0.065504,0.004512
+1114,856.635,1.16736,0.292864,0.005952,0.1968,0.004096,0.00576,0.00448,0.006144,0.005984,0.0592,0.004448
+1115,1411.44,0.708496,0.3184,0.005056,0.218304,0.004896,0.004128,0.005888,0.0064,0.005664,0.063392,0.004672
+1116,1242.15,0.805054,0.309248,0.006112,0.208928,0.005312,0.004832,0.004192,0.006144,0.006144,0.063296,0.004288
+1117,1464.69,0.682739,0.305696,0.00464,0.208128,0.004896,0.004064,0.006016,0.006112,0.005824,0.061152,0.004864
+1118,1448.89,0.690186,0.313376,0.005696,0.219584,0.004096,0.005728,0.004512,0.006144,0.006112,0.056992,0.004512
+1119,1356.07,0.737427,0.303136,0.004992,0.208352,0.00464,0.004096,0.006144,0.006144,0.005856,0.057568,0.005344
+1120,1439.97,0.694458,0.3048,0.005632,0.205344,0.005856,0.004352,0.005728,0.00576,0.004896,0.06144,0.005792
+1121,1138.25,0.87854,0.538336,0.0056,0.422432,0.025632,0.005088,0.0056,0.005792,0.005024,0.057312,0.005856
+1122,696.066,1.43665,0.311328,0.005952,0.217152,0.004224,0.005536,0.004704,0.006144,0.006048,0.056928,0.00464
+1123,1576.6,0.634277,0.29696,0.005856,0.205088,0.004192,0.005696,0.004448,0.006144,0.005888,0.054944,0.004704
+1124,1513.39,0.660767,0.290848,0.00592,0.198752,0.004224,0.005536,0.004704,0.00608,0.005792,0.0552,0.00464
+1125,1402.74,0.712891,0.2928,0.006016,0.19472,0.005312,0.004864,0.005792,0.005792,0.004832,0.059392,0.00608
+1126,1230.21,0.812866,0.292032,0.005664,0.196064,0.004896,0.005408,0.005056,0.006144,0.00592,0.057568,0.005312
+1127,1794.52,0.557251,0.29088,0.005376,0.196416,0.004896,0.005728,0.004704,0.006144,0.005824,0.057408,0.004384
+1128,1388.71,0.720093,0.299136,0.005056,0.202752,0.005216,0.004896,0.005952,0.005888,0.005792,0.058208,0.005376
+1129,1265.56,0.790161,0.293376,0.004576,0.201952,0.004896,0.004096,0.005952,0.005728,0.005728,0.05568,0.004768
+1130,665.8,1.50195,0.304832,0.007968,0.208704,0.004512,0.005248,0.004992,0.006016,0.006048,0.05552,0.005824
+1131,1644.98,0.60791,0.290528,0.005536,0.197216,0.00592,0.00432,0.005984,0.00576,0.005728,0.054208,0.005856
+1132,1279,0.78186,0.28816,0.005792,0.194912,0.004224,0.005696,0.004416,0.006144,0.006144,0.055296,0.005536
+1133,1635.13,0.611572,0.293344,0.004576,0.202176,0.004672,0.005216,0.005024,0.005952,0.00576,0.054912,0.005056
+1134,819.61,1.22009,0.316288,0.004992,0.224832,0.004544,0.005216,0.005024,0.00592,0.005728,0.0552,0.004832
+1135,1568.45,0.637573,0.294944,0.006016,0.202912,0.005312,0.004864,0.005184,0.00512,0.006112,0.054848,0.004576
+1136,1429.67,0.699463,0.294912,0.005408,0.203488,0.00528,0.004864,0.004192,0.006176,0.006112,0.053248,0.006144
+1137,1371.51,0.729126,0.563488,0.00448,0.468896,0.007904,0.005472,0.005056,0.006112,0.005792,0.053632,0.006144
+1138,738.018,1.35498,0.294944,0.005824,0.203008,0.00416,0.0056,0.00464,0.006144,0.006144,0.055008,0.004416
+1139,1605.64,0.622803,0.28768,0.005056,0.197664,0.004896,0.004288,0.005312,0.004928,0.006144,0.054496,0.004896
+1140,1431.92,0.698364,0.292864,0.005696,0.195008,0.00512,0.00512,0.005312,0.005088,0.005984,0.060544,0.004992
+1141,1290.69,0.77478,0.291424,0.00496,0.194592,0.005536,0.004672,0.00544,0.0048,0.006144,0.059392,0.005888
+1142,1609.75,0.621216,0.299584,0.004672,0.202432,0.004416,0.005344,0.004896,0.006144,0.006144,0.060832,0.004704
+1143,1219.59,0.819946,0.29696,0.00576,0.196384,0.004704,0.00528,0.00496,0.006016,0.005728,0.063712,0.004416
+1144,1646.96,0.607178,0.298272,0.005376,0.196928,0.0048,0.004352,0.005888,0.005856,0.005696,0.064064,0.005312
+1145,1364.88,0.732666,0.30336,0.00448,0.202688,0.005728,0.00448,0.0056,0.005856,0.00496,0.063456,0.006112
+1146,1313.45,0.761353,0.516096,0.00608,0.412832,0.007072,0.004096,0.005984,0.00576,0.005888,0.063904,0.00448
+1147,708.712,1.41101,0.306208,0.006144,0.202752,0.005792,0.004448,0.005632,0.006656,0.006048,0.063424,0.005312
+1148,1445.31,0.691895,0.301088,0.00576,0.200704,0.004512,0.005312,0.004896,0.006016,0.005728,0.06352,0.00464
+1149,1356.29,0.737305,0.298944,0.005376,0.196832,0.004704,0.004096,0.005984,0.005824,0.005728,0.064384,0.006016
+1150,1511.72,0.661499,0.303104,0.006144,0.198368,0.004384,0.005632,0.004608,0.006144,0.006144,0.066656,0.005024
+1151,1201.88,0.832031,0.299008,0.005952,0.196,0.004896,0.004096,0.005856,0.005696,0.004832,0.06688,0.0048
+1152,1664.03,0.600952,0.296992,0.005632,0.198336,0.004896,0.004128,0.006144,0.006144,0.00592,0.061152,0.00464
+1153,722.271,1.38452,0.313344,0.005984,0.216736,0.004608,0.005152,0.005088,0.00592,0.005376,0.05968,0.0048
+1154,1497.62,0.667725,0.51584,0.006144,0.413696,0.008,0.004288,0.00576,0.005664,0.00496,0.06144,0.005888
+1155,652.281,1.53308,0.299296,0.004384,0.205856,0.004864,0.00432,0.006144,0.006112,0.00576,0.057184,0.004672
+1156,1587.6,0.629883,0.299488,0.004608,0.200704,0.005152,0.005056,0.005536,0.005728,0.00512,0.063136,0.004448
+1157,1442.76,0.693115,0.299008,0.005568,0.199232,0.005184,0.005088,0.005632,0.00576,0.00496,0.062848,0.004736
+1158,1514.51,0.660278,0.293664,0.004896,0.19776,0.004896,0.004192,0.005664,0.005728,0.004992,0.060928,0.004608
+1159,1345.16,0.743408,0.290816,0.006144,0.194592,0.005792,0.004416,0.005632,0.00592,0.004832,0.057344,0.006144
+1160,1457.91,0.685913,0.294112,0.006144,0.198112,0.00464,0.004096,0.006144,0.006144,0.00608,0.057408,0.005344
+1161,1501.47,0.666016,0.295584,0.004832,0.196256,0.004448,0.005312,0.004928,0.006144,0.006048,0.061536,0.00608
+1162,1351.82,0.739746,0.29504,0.005408,0.199552,0.00576,0.004448,0.006144,0.00576,0.005664,0.05728,0.005024
+1163,1473.65,0.678589,0.299008,0.005984,0.200576,0.004416,0.005344,0.006528,0.005888,0.005824,0.059616,0.004832
+1164,643.317,1.55444,0.312288,0.007136,0.216448,0.004736,0.004224,0.006016,0.0056,0.005728,0.057504,0.004896
+1165,1507.82,0.663208,0.305024,0.006016,0.204928,0.004096,0.00576,0.00448,0.006144,0.005952,0.061632,0.006016
+1166,1223.23,0.817505,0.321408,0.006016,0.223392,0.004192,0.005728,0.004384,0.006144,0.005728,0.059808,0.006016
+1167,1628.95,0.613892,0.29904,0.0056,0.200832,0.004512,0.00528,0.006464,0.00576,0.006336,0.05968,0.004576
+1168,1237.65,0.807983,0.301472,0.004512,0.200736,0.005536,0.004672,0.005344,0.006272,0.005792,0.063872,0.004736
+1169,1401.3,0.713623,0.29904,0.005504,0.199296,0.005184,0.004864,0.004288,0.006144,0.006144,0.063232,0.004384
+1170,1578.72,0.633423,0.303584,0.004576,0.204352,0.004544,0.005248,0.004992,0.005984,0.005728,0.0632,0.00496
+1171,1293.13,0.773315,0.309248,0.005664,0.207328,0.005408,0.004832,0.005216,0.005024,0.006176,0.063456,0.006144
+1172,587.114,1.70325,0.329728,0.007744,0.227808,0.005568,0.00464,0.005408,0.004832,0.006144,0.06304,0.004544
+1173,1630.25,0.613403,0.303104,0.006112,0.200736,0.005504,0.004736,0.005984,0.00592,0.005792,0.062176,0.006144
+1174,1441.75,0.693604,0.300672,0.006144,0.196608,0.005664,0.004576,0.005472,0.00496,0.005952,0.065536,0.00576
+1175,1462.33,0.683838,0.300096,0.006016,0.19632,0.004512,0.00608,0.005216,0.005088,0.006144,0.065376,0.005344
+1176,1361.02,0.734741,0.303232,0.005056,0.202432,0.004416,0.005344,0.004896,0.006048,0.005696,0.064032,0.005312
+1177,1463.12,0.683472,0.299008,0.006112,0.197792,0.004896,0.004192,0.005792,0.005632,0.00496,0.0648,0.004832
+1178,1354.27,0.738403,0.298016,0.005632,0.19632,0.004896,0.004096,0.005408,0.004864,0.006112,0.065408,0.00528
+1179,1432.67,0.697998,0.306336,0.00512,0.202592,0.004224,0.005952,0.004288,0.007744,0.005728,0.066112,0.004576
+1180,1346.93,0.742432,0.518112,0.00464,0.417792,0.007712,0.004608,0.005408,0.0048,0.006144,0.061376,0.005632
+1181,662.998,1.5083,0.30464,0.006048,0.204832,0.00416,0.0056,0.004672,0.006112,0.005952,0.061632,0.005632
+1182,1340.31,0.746094,0.305088,0.004928,0.202752,0.005856,0.004384,0.005664,0.00576,0.00496,0.065472,0.005312
+1183,1530.07,0.653564,0.302656,0.006144,0.196608,0.006112,0.005312,0.00496,0.006112,0.005664,0.066048,0.005696
+1184,1378.89,0.72522,0.304224,0.005984,0.198816,0.005408,0.004832,0.006144,0.006176,0.00592,0.065632,0.005312
+1185,1512,0.661377,0.303872,0.00512,0.199776,0.004896,0.004224,0.00592,0.005952,0.005888,0.066208,0.005888
+1186,1332.03,0.750732,0.297728,0.004864,0.19776,0.004928,0.004224,0.00592,0.005728,0.005728,0.063872,0.004704
+1187,1351.37,0.73999,0.302048,0.00512,0.198624,0.005376,0.004832,0.005216,0.006624,0.006624,0.06464,0.004992
+1188,1531.79,0.652832,0.303296,0.004896,0.198656,0.005792,0.004448,0.005568,0.005856,0.005088,0.067456,0.005536
+1189,679.327,1.47205,0.319488,0.007808,0.213376,0.00576,0.00448,0.005376,0.005888,0.00512,0.066944,0.004736
+1190,1495.71,0.668579,0.3024,0.005472,0.19728,0.004096,0.005856,0.004384,0.006144,0.006144,0.067584,0.00544
+1191,626.3,1.59668,0.306592,0.00592,0.204288,0.004832,0.004096,0.006144,0.006176,0.005728,0.063872,0.005536
+1192,1635.46,0.61145,0.301056,0.006144,0.198656,0.005472,0.004768,0.005152,0.005088,0.006144,0.065216,0.004416
+1193,1535.52,0.651245,0.305152,0.006144,0.200704,0.0056,0.00464,0.00528,0.00496,0.006144,0.065536,0.006144
+1194,1170.45,0.85437,0.306656,0.00608,0.198752,0.005504,0.004736,0.005152,0.005056,0.006144,0.069632,0.0056
+1195,1508.1,0.663086,0.309856,0.006464,0.202112,0.004864,0.004256,0.005824,0.005696,0.004864,0.069632,0.006144
+1196,1424.2,0.702148,0.329888,0.004448,0.226432,0.004992,0.004096,0.005952,0.005728,0.004736,0.067552,0.005952
+1197,687.71,1.4541,0.486976,0.008032,0.38048,0.004704,0.00512,0.00512,0.005824,0.005696,0.066304,0.005696
+1198,1247.26,0.801758,0.307648,0.004544,0.204256,0.00464,0.00512,0.00496,0.005792,0.00576,0.067936,0.00464
+1199,1342.51,0.744873,0.305024,0.005408,0.19952,0.005632,0.004608,0.005472,0.004768,0.007232,0.066496,0.005888
+1200,1511.44,0.661621,0.30304,0.006144,0.196608,0.0056,0.00464,0.005408,0.006208,0.00592,0.066432,0.00608
+1201,1302.18,0.767944,0.300704,0.006016,0.194688,0.005536,0.004704,0.005344,0.006048,0.004992,0.067584,0.005792
+1202,1472.85,0.678955,0.303104,0.005408,0.199392,0.004096,0.005728,0.004512,0.006144,0.005984,0.066912,0.004928
+1203,1461.29,0.684326,0.301984,0.005056,0.199904,0.004864,0.004096,0.005824,0.005728,0.004832,0.06688,0.0048
+1204,1246.69,0.802124,0.307584,0.004512,0.204256,0.00464,0.004352,0.005888,0.005952,0.005984,0.065888,0.006112
+1205,1589.45,0.62915,0.518432,0.005376,0.414176,0.006688,0.00592,0.00432,0.006144,0.006144,0.065056,0.004608
+1206,635.137,1.57446,0.3072,0.00608,0.202816,0.005728,0.004512,0.005536,0.004704,0.006144,0.067296,0.004384
+1207,1528.07,0.654419,0.302048,0.005088,0.196608,0.00528,0.004864,0.004224,0.006112,0.006144,0.068832,0.004896
+1208,1458.43,0.685669,0.306816,0.005792,0.194912,0.005728,0.004512,0.005376,0.004896,0.006112,0.073728,0.00576
+1209,795.031,1.25781,0.299008,0.005472,0.195232,0.004096,0.005728,0.004512,0.006144,0.005792,0.067392,0.00464
+1210,1554.16,0.643433,0.313504,0.005376,0.209824,0.005664,0.004576,0.00528,0.00496,0.00608,0.0672,0.004544
+1211,1455.84,0.68689,0.302464,0.006144,0.198656,0.00576,0.00448,0.005408,0.004864,0.006112,0.065536,0.005504
+1212,1367.61,0.731201,0.309472,0.004672,0.204832,0.005408,0.0048,0.005248,0.004992,0.006144,0.067584,0.005792
+1213,1187.94,0.841797,0.524288,0.006176,0.415712,0.007744,0.004544,0.006144,0.006144,0.006144,0.066848,0.004832
+1214,736.029,1.35864,0.308032,0.004896,0.2048,0.005312,0.004864,0.005216,0.005088,0.007264,0.065984,0.004608
+1215,1273.24,0.7854,0.303872,0.004864,0.200256,0.004544,0.005184,0.005056,0.006016,0.005856,0.06736,0.004736
+1216,1673.54,0.597534,0.303104,0.005984,0.1968,0.005696,0.004544,0.005728,0.00576,0.004896,0.068992,0.004704
+1217,1182.96,0.845337,0.30512,0.00576,0.19904,0.005888,0.004352,0.005696,0.005952,0.005792,0.066528,0.006112
+1218,1599.69,0.625122,0.303936,0.004928,0.19968,0.004928,0.004288,0.006016,0.005856,0.005856,0.067616,0.004768
+1219,1434.68,0.697021,0.302464,0.006016,0.197952,0.004896,0.004128,0.006048,0.00576,0.005696,0.066464,0.005504
+1220,1419.27,0.70459,0.305152,0.0056,0.200384,0.004896,0.004192,0.005856,0.006304,0.005728,0.067136,0.005056
+1221,1119.74,0.893066,0.304544,0.00576,0.19904,0.005408,0.004832,0.00528,0.006656,0.0056,0.066432,0.005536
+1222,772.102,1.29517,0.311936,0.006784,0.206816,0.004128,0.005632,0.004608,0.006144,0.006144,0.067136,0.004544
+1223,1522.39,0.65686,0.30784,0.005056,0.202784,0.004192,0.006016,0.00528,0.00496,0.006144,0.067584,0.005824
+1224,1446.58,0.691284,0.305152,0.006144,0.198656,0.005312,0.004864,0.005216,0.005088,0.006144,0.067584,0.006144
+1225,1206.12,0.829102,0.30848,0.005376,0.202656,0.004896,0.004192,0.005888,0.005696,0.0048,0.069632,0.005344
+1226,1575.38,0.634766,0.302816,0.004448,0.200704,0.005664,0.004576,0.005472,0.006624,0.005632,0.064192,0.005504
+1227,1489.73,0.671265,0.303392,0.004384,0.2024,0.004448,0.005312,0.00496,0.006112,0.005728,0.064928,0.00512
+1228,1363.52,0.733398,0.305024,0.005856,0.20256,0.004576,0.005184,0.005056,0.006016,0.00576,0.064,0.006016
+1229,1216.51,0.822021,0.313344,0.005568,0.213568,0.005408,0.004832,0.005856,0.0056,0.004928,0.063136,0.004448
+1230,1036.57,0.964722,0.310016,0.004832,0.212992,0.00528,0.004864,0.005216,0.00512,0.006144,0.060608,0.00496
+1231,833.452,1.19983,0.315392,0.00672,0.216672,0.004512,0.005248,0.004992,0.005952,0.00592,0.059808,0.005568
+1232,1533.22,0.652222,0.305408,0.005376,0.20176,0.005408,0.0048,0.005248,0.006592,0.005728,0.065984,0.004512
+1233,1356.52,0.737183,0.305568,0.004704,0.204352,0.004544,0.005216,0.005024,0.006144,0.006144,0.063488,0.005952
+1234,1280.6,0.780884,0.303968,0.004928,0.202752,0.005888,0.004352,0.005696,0.005824,0.00496,0.064896,0.004672
+1235,1599.38,0.625244,0.300864,0.004768,0.202752,0.005248,0.004832,0.005952,0.00576,0.004864,0.061376,0.005312
+1236,1445.05,0.692017,0.300736,0.006016,0.200832,0.005728,0.004512,0.005504,0.00656,0.005856,0.059904,0.005824
+1237,1444.29,0.692383,0.295392,0.004544,0.198656,0.005536,0.004704,0.005632,0.00576,0.004992,0.060672,0.004896
+1238,1370.59,0.729614,0.300992,0.005792,0.204224,0.004896,0.004224,0.005696,0.00592,0.0048,0.05936,0.00608
+1239,1261.67,0.792603,0.516128,0.005376,0.416608,0.006272,0.00608,0.00544,0.0048,0.006144,0.059392,0.006016
+1240,684.721,1.46045,0.30032,0.005376,0.203616,0.005888,0.004352,0.005728,0.00592,0.004736,0.059392,0.005312
+1241,1572.36,0.635986,0.294432,0.005376,0.198976,0.004736,0.004192,0.005792,0.005728,0.004768,0.059392,0.005472
+1242,1489.18,0.671509,0.298144,0.005632,0.201248,0.005568,0.00464,0.005376,0.006368,0.005696,0.058336,0.00528
+1243,1201,0.832642,0.296704,0.004768,0.198688,0.00576,0.004448,0.00608,0.005856,0.005696,0.060064,0.005344
+1244,1597.19,0.626099,0.29728,0.005408,0.199552,0.004224,0.005536,0.005856,0.006176,0.00496,0.06048,0.005088
+1245,1517.88,0.658813,0.294912,0.00592,0.198784,0.004192,0.0056,0.00464,0.005952,0.005728,0.059008,0.005088
+1246,1268.9,0.788086,0.296288,0.00576,0.198304,0.004832,0.004096,0.005888,0.005664,0.004832,0.061344,0.005568
+1247,1450.68,0.689331,0.30272,0.005408,0.205696,0.005632,0.004608,0.005888,0.005856,0.005728,0.058304,0.0056
+1248,732.344,1.36548,0.511456,0.005952,0.414144,0.006336,0.004128,0.006112,0.005792,0.006272,0.0576,0.00512
+1249,994.537,1.00549,0.311872,0.004672,0.216736,0.004448,0.004192,0.006048,0.005856,0.006432,0.05888,0.004608
+1250,1338.34,0.747192,0.30048,0.006112,0.202784,0.005728,0.004512,0.005408,0.004864,0.006112,0.059392,0.005568
+1251,1603.13,0.623779,0.303104,0.005536,0.201312,0.005408,0.004832,0.004096,0.006144,0.006144,0.064896,0.004736
+1252,1325.57,0.754395,0.294912,0.00608,0.197984,0.004864,0.005344,0.004864,0.006112,0.005696,0.059136,0.004832
+1253,1297.23,0.770874,0.297664,0.005152,0.20192,0.004896,0.004128,0.00592,0.0056,0.004832,0.059424,0.005792
+1254,1682.48,0.59436,0.29904,0.005376,0.199456,0.004096,0.005728,0.004512,0.006144,0.00608,0.06288,0.004768
+1255,1233.55,0.810669,0.308256,0.005952,0.206208,0.004896,0.004128,0.005984,0.005728,0.004672,0.065376,0.005312
+1256,1446.33,0.691406,0.575488,0.005536,0.467136,0.00656,0.005408,0.004832,0.006176,0.005984,0.069408,0.004448
+1257,669.719,1.49316,0.321696,0.005376,0.209856,0.005248,0.004864,0.004224,0.006144,0.006112,0.07504,0.004832
+1258,1357.19,0.736816,0.313152,0.005472,0.20272,0.0048,0.004128,0.005984,0.005824,0.00576,0.072512,0.005952
+1259,1456.61,0.686523,0.313696,0.00448,0.20272,0.005344,0.004896,0.005856,0.006016,0.00576,0.07424,0.004384
+1260,1256.06,0.796143,0.310336,0.00576,0.200672,0.004512,0.005248,0.004992,0.005728,0.00576,0.072384,0.00528
+1261,1512.56,0.661133,0.315008,0.005344,0.199136,0.00464,0.005152,0.005088,0.00592,0.005888,0.078304,0.005536
+1262,1321.29,0.756836,0.317312,0.005952,0.198656,0.004288,0.005472,0.004768,0.006144,0.006144,0.079872,0.006016
+1263,1519.29,0.658203,0.317888,0.005088,0.198656,0.004096,0.005824,0.00592,0.005888,0.005088,0.081728,0.0056
+1264,1308.21,0.764404,0.319552,0.005376,0.201088,0.004544,0.005184,0.005056,0.005888,0.00576,0.081856,0.0048
+1265,1097.53,0.911133,0.567072,0.006144,0.413472,0.030176,0.021056,0.004288,0.006144,0.006144,0.073728,0.00592
+1266,775.097,1.29016,0.315648,0.005408,0.203744,0.004096,0.005664,0.005888,0.004832,0.006144,0.074784,0.005088
+1267,1120.35,0.892578,0.3232,0.004416,0.212704,0.004384,0.005344,0.004896,0.00608,0.005696,0.07424,0.00544
+1268,1686.29,0.593018,0.31216,0.00496,0.199712,0.004896,0.004288,0.0056,0.006368,0.005728,0.07568,0.004928
+1269,1385.42,0.721802,0.310816,0.005888,0.200896,0.00416,0.0056,0.00464,0.006144,0.005984,0.07184,0.005664
+1270,1413.63,0.707397,0.307232,0.005376,0.199456,0.00576,0.00448,0.005536,0.004704,0.006144,0.071424,0.004352
+1271,1306.33,0.765503,0.31536,0.005536,0.199264,0.004096,0.005664,0.004576,0.006144,0.006112,0.077888,0.00608
+1272,1411.93,0.708252,0.311136,0.005376,0.202624,0.004896,0.004352,0.006112,0.006048,0.005792,0.07008,0.005856
+1273,1238.58,0.807373,0.523456,0.006144,0.414976,0.006912,0.005664,0.004576,0.006144,0.005984,0.067648,0.005408
+1274,684.378,1.46118,0.31264,0.006144,0.208896,0.005152,0.004832,0.004384,0.006112,0.006144,0.065536,0.00544
+1275,1580.25,0.632812,0.313344,0.006144,0.198656,0.005344,0.004864,0.00416,0.006112,0.006144,0.077184,0.004736
+1276,1488.37,0.671875,0.309248,0.006144,0.199712,0.004896,0.004288,0.006144,0.005952,0.005696,0.071744,0.004672
+1277,1346.26,0.742798,0.307232,0.0056,0.198848,0.004448,0.005312,0.004928,0.006144,0.006144,0.071232,0.004576
+1278,1433.67,0.69751,0.303776,0.004832,0.198656,0.005856,0.004384,0.005568,0.00576,0.005056,0.067616,0.006048
+1279,1309.67,0.76355,0.305152,0.006048,0.2008,0.004096,0.0056,0.004672,0.006112,0.005888,0.067584,0.004352
+1280,1471.79,0.679443,0.3072,0.005536,0.196928,0.004384,0.005376,0.004864,0.00608,0.005984,0.072928,0.00512
+1281,1277.8,0.782593,0.315392,0.006144,0.200704,0.00512,0.004864,0.004352,0.006144,0.006144,0.077504,0.004416
+1282,1060.04,0.943359,0.560928,0.004608,0.415744,0.008224,0.006112,0.005952,0.004288,0.007808,0.078208,0.029984
+1283,831.506,1.20264,0.316928,0.005984,0.208608,0.004544,0.00528,0.00496,0.006048,0.005728,0.070144,0.005632
+1284,1472.85,0.678955,0.30864,0.00592,0.202176,0.004896,0.004096,0.006144,0.006176,0.005952,0.067744,0.005536
+1285,1292.11,0.773926,0.301056,0.005376,0.195328,0.005856,0.004384,0.005696,0.0056,0.005088,0.0688,0.004928
+1286,579.349,1.72607,0.949152,0.005024,0.835552,0.004128,0.004192,0.005728,0.005568,0.00496,0.078976,0.005024
+1287,1597.19,0.626099,0.31328,0.0048,0.210464,0.004608,0.005152,0.005056,0.00592,0.00592,0.065984,0.005376
+1288,1265.96,0.789917,0.308992,0.006144,0.204768,0.00416,0.00576,0.005824,0.006048,0.00592,0.06448,0.005888
+1289,1347.81,0.741943,0.518176,0.005792,0.414048,0.006304,0.005984,0.005536,0.00576,0.005088,0.064704,0.00496
+1290,711.111,1.40625,0.312864,0.00592,0.211136,0.004128,0.005632,0.004608,0.006144,0.00576,0.063872,0.005664
+1291,1306.75,0.765259,0.305152,0.006016,0.200832,0.005472,0.004768,0.005888,0.00592,0.005728,0.064384,0.006144
+1292,1481.11,0.675171,0.301568,0.004576,0.201824,0.004928,0.004192,0.005696,0.00576,0.004928,0.063488,0.006176
+1293,1512,0.661377,0.302912,0.005888,0.200256,0.0048,0.004096,0.00608,0.005792,0.005696,0.064352,0.005952
+1294,1385.89,0.721558,0.299328,0.004672,0.197728,0.004896,0.004224,0.005824,0.006272,0.005728,0.064096,0.005888
+1295,1219.77,0.819824,0.299008,0.006016,0.19472,0.005696,0.004512,0.005792,0.00592,0.00592,0.06432,0.006112
+1296,1663.69,0.601074,0.301312,0.005408,0.199648,0.00512,0.004832,0.004384,0.006144,0.006144,0.06464,0.004992
+1297,1344.49,0.743774,0.31616,0.004864,0.196384,0.00432,0.005216,0.005024,0.005952,0.00576,0.083616,0.005024
+1298,1379.36,0.724976,0.597856,0.006016,0.467072,0.00768,0.004608,0.005472,0.0048,0.006016,0.09024,0.005952
+1299,674.294,1.48303,0.313344,0.005728,0.209312,0.005728,0.004512,0.005536,0.004704,0.006144,0.065536,0.006144
+1300,1382.38,0.723389,0.306304,0.005376,0.200704,0.004864,0.004096,0.005952,0.005952,0.005952,0.068128,0.00528
+1301,1428.92,0.699829,0.303776,0.004768,0.19968,0.004896,0.00432,0.005888,0.005728,0.006336,0.067808,0.004352
+1302,1510.6,0.661987,0.301184,0.005408,0.196992,0.004608,0.005152,0.005056,0.005472,0.004768,0.068608,0.00512
+1303,1387.77,0.720581,0.300672,0.00592,0.194784,0.005536,0.004736,0.005408,0.005824,0.00512,0.067584,0.00576
+1304,1205.24,0.829712,0.30352,0.00448,0.200704,0.005472,0.004768,0.005312,0.004928,0.006144,0.067232,0.00448
+1305,1273.43,0.785278,0.308864,0.00576,0.207232,0.005696,0.004544,0.005344,0.004896,0.007168,0.062464,0.00576
+1306,1327.71,0.753174,0.309248,0.005824,0.208224,0.004896,0.004288,0.00576,0.005792,0.00592,0.063776,0.004768
+1307,644.583,1.55139,0.315808,0.00656,0.210944,0.004096,0.005792,0.004448,0.006176,0.006112,0.065536,0.006144
+1308,1633.5,0.612183,0.300544,0.006144,0.200704,0.004096,0.005728,0.004512,0.006144,0.00592,0.061664,0.005632
+1309,1422.72,0.702881,0.30192,0.00496,0.200736,0.005472,0.004736,0.005312,0.00624,0.004832,0.064512,0.00512
+1310,1444.03,0.692505,0.301952,0.004992,0.200288,0.004512,0.005536,0.00656,0.005728,0.004704,0.065248,0.004384
+1311,1365.56,0.7323,0.299008,0.006144,0.196608,0.004096,0.00576,0.00576,0.004896,0.006112,0.063488,0.006144
+1312,1404.18,0.712158,0.305408,0.00496,0.20016,0.00464,0.004256,0.005984,0.006144,0.006144,0.067584,0.005536
+1313,1295.79,0.771729,0.301056,0.005824,0.196512,0.004512,0.00528,0.00496,0.006112,0.005888,0.067328,0.00464
+1314,1578.42,0.633545,0.309024,0.0056,0.202784,0.004608,0.00512,0.00512,0.006144,0.006112,0.067616,0.00592
+1315,1323.85,0.755371,0.52592,0.006144,0.417792,0.007456,0.004832,0.005824,0.00576,0.005888,0.066496,0.005728
+1316,701.49,1.42554,0.307936,0.004832,0.202752,0.005856,0.004384,0.005664,0.005664,0.005056,0.067584,0.006144
+1317,1350.48,0.740479,0.299232,0.005344,0.196896,0.004832,0.004096,0.006048,0.005792,0.00576,0.065856,0.004608
+1318,1494.89,0.668945,0.297184,0.005408,0.195296,0.00432,0.005408,0.004832,0.006144,0.005984,0.06496,0.004832
+1319,1207.9,0.827881,0.299008,0.005664,0.195072,0.005312,0.004896,0.005728,0.005888,0.005792,0.065856,0.0048
+1320,1664.03,0.600952,0.305184,0.006144,0.196608,0.005216,0.004832,0.004288,0.006144,0.006144,0.071168,0.00464
+1321,1412.41,0.708008,0.30352,0.004512,0.196608,0.005248,0.004864,0.004256,0.006112,0.006144,0.069632,0.006144
+1322,1411.2,0.708618,0.303104,0.005472,0.19728,0.006112,0.004128,0.006016,0.005792,0.005728,0.068256,0.00432
+1323,1358.54,0.736084,0.304224,0.0056,0.194976,0.004224,0.005536,0.004704,0.006144,0.005984,0.071744,0.005312
+1324,569.522,1.75586,0.340928,0.007104,0.228992,0.00448,0.00528,0.00496,0.006016,0.005728,0.07408,0.004288
+1325,1532.36,0.652588,0.308992,0.00576,0.1968,0.004288,0.005472,0.005792,0.00512,0.006144,0.073728,0.005888
+1326,1481.11,0.675171,0.306944,0.00448,0.196064,0.00464,0.005152,0.005088,0.005824,0.005728,0.074464,0.005504
+1327,1208.26,0.827637,0.3072,0.005344,0.195072,0.004384,0.005376,0.004864,0.006144,0.005856,0.075136,0.005024
+1328,1511.72,0.661499,0.309632,0.004512,0.195936,0.004736,0.00416,0.00608,0.006144,0.006144,0.077504,0.004416
+1329,1522.11,0.656982,0.309248,0.005888,0.196192,0.004768,0.004128,0.005664,0.005696,0.004992,0.075776,0.006144
+1330,1394.86,0.716919,0.307936,0.004832,0.196128,0.004576,0.005184,0.005056,0.006144,0.006144,0.075072,0.0048
+1331,1185.87,0.843262,0.303104,0.006144,0.196448,0.004256,0.005504,0.004736,0.006144,0.00608,0.069056,0.004736
+1332,1566.05,0.63855,0.535328,0.004896,0.42752,0.006656,0.005312,0.004928,0.006144,0.005952,0.067776,0.006144
+1333,681.021,1.46838,0.30464,0.004448,0.198496,0.004256,0.005504,0.004736,0.006144,0.006144,0.069568,0.005344
+1334,1494.89,0.668945,0.301056,0.005824,0.19488,0.005408,0.004832,0.005184,0.005056,0.006144,0.068896,0.004832
+1335,1310.09,0.763306,0.303936,0.004896,0.19456,0.004224,0.005664,0.004448,0.005984,0.005728,0.07408,0.004352
+1336,1509.49,0.662476,0.304704,0.004576,0.196608,0.004096,0.005728,0.005792,0.005984,0.005088,0.071488,0.005344
+1337,1400.1,0.714233,0.301088,0.005376,0.194336,0.004896,0.005792,0.004672,0.006144,0.00592,0.069024,0.004928
+1338,1431.42,0.698608,0.303104,0.005984,0.195872,0.004896,0.004192,0.006144,0.006144,0.005632,0.069152,0.005088
+1339,1193.3,0.838013,0.303264,0.005376,0.196768,0.004864,0.005408,0.004832,0.006144,0.00576,0.069664,0.004448
+1340,1621.86,0.616577,0.306368,0.006144,0.198656,0.005632,0.004608,0.005312,0.004928,0.006144,0.069632,0.005312
+1341,688.23,1.453,0.313376,0.007488,0.20144,0.005408,0.004832,0.005248,0.0064,0.005952,0.072288,0.00432
+1342,1470.21,0.680176,0.30464,0.005472,0.197248,0.004128,0.005504,0.004736,0.005728,0.005728,0.070464,0.005632
+1343,1040.52,0.96106,0.321504,0.005952,0.213216,0.005184,0.004864,0.004256,0.006144,0.006144,0.069632,0.006112
+1344,1227.08,0.814941,0.313376,0.005888,0.205024,0.00416,0.0056,0.004608,0.007232,0.005056,0.070912,0.004896
+1345,1533.8,0.651978,0.308,0.00512,0.202752,0.005568,0.004672,0.005248,0.004992,0.006144,0.067584,0.00592
+1346,1166.79,0.857056,0.312384,0.00544,0.205504,0.006144,0.005184,0.005056,0.006144,0.006176,0.067456,0.00528
+1347,1650.28,0.605957,0.302944,0.00448,0.198528,0.004096,0.005728,0.004512,0.006144,0.005984,0.067744,0.005728
+1348,1284.42,0.778564,0.303104,0.006144,0.198656,0.005632,0.00464,0.005408,0.006496,0.00576,0.064224,0.006144
+1349,1391.78,0.718506,0.3072,0.005376,0.20352,0.005152,0.004864,0.00432,0.006144,0.006048,0.067584,0.004192
+1350,711.667,1.40515,0.308256,0.007936,0.198944,0.005664,0.004544,0.005472,0.004768,0.006144,0.069472,0.005312
+1351,1682.48,0.59436,0.30608,0.005024,0.201792,0.004992,0.00416,0.005504,0.00592,0.00496,0.069216,0.004512
+1352,1168.28,0.855957,0.301056,0.005856,0.19792,0.004896,0.00432,0.005952,0.005824,0.005824,0.06592,0.004544
+1353,1477.37,0.67688,0.299008,0.006112,0.196672,0.005216,0.004864,0.005312,0.005088,0.006112,0.063488,0.006144
+1354,1676.63,0.596436,0.298848,0.005856,0.1968,0.004192,0.005568,0.004672,0.006144,0.006144,0.063488,0.005984
+1355,1369.21,0.730347,0.299008,0.005792,0.1968,0.004256,0.006112,0.005216,0.00512,0.00608,0.064736,0.004896
+1356,1399.86,0.714355,0.299008,0.005536,0.195168,0.005536,0.004704,0.005216,0.005024,0.006144,0.065536,0.006144
+1357,1417.3,0.705566,0.302752,0.005504,0.198752,0.00464,0.004256,0.005984,0.006016,0.005952,0.065888,0.00576
+1358,712.72,1.40308,0.485376,0.008192,0.376832,0.005632,0.004608,0.00544,0.0048,0.006144,0.068992,0.004736
+1359,1193.82,0.837646,0.299008,0.005472,0.195232,0.005312,0.004928,0.005888,0.005824,0.005728,0.065792,0.004832
+1360,1482.45,0.674561,0.299008,0.005632,0.195072,0.005344,0.004864,0.005536,0.005888,0.004992,0.06736,0.00432
+1361,1191.39,0.839355,0.300192,0.006144,0.19456,0.00528,0.004832,0.005312,0.005056,0.006144,0.067552,0.005312
+1362,539.018,1.85522,0.350368,0.005024,0.24576,0.005536,0.004704,0.005376,0.004864,0.006144,0.067584,0.005376
+1363,1335.29,0.748901,0.31584,0.004544,0.210944,0.00512,0.004864,0.004352,0.006144,0.006016,0.069728,0.004128
+1364,1335.07,0.749023,0.33888,0.005056,0.231424,0.004096,0.005696,0.004544,0.006144,0.006016,0.071584,0.00432
+1365,1349.37,0.741089,0.618496,0.00592,0.464128,0.00688,0.004352,0.012288,0.040736,0.012224,0.06704,0.004928
+1366,683.863,1.46228,0.310944,0.00608,0.204864,0.005888,0.004352,0.005696,0.006592,0.005696,0.065984,0.005792
+1367,1482.98,0.674316,0.301088,0.006048,0.196704,0.004096,0.005664,0.004576,0.006144,0.00576,0.06704,0.005056
+1368,1360.8,0.734863,0.301056,0.0056,0.195104,0.005568,0.004672,0.005696,0.00592,0.004768,0.069024,0.004704
+1369,1502.29,0.665649,0.302688,0.005472,0.19488,0.004448,0.005312,0.004928,0.006144,0.006144,0.069632,0.005728
+1370,1212.55,0.824707,0.301184,0.005376,0.19488,0.004672,0.005184,0.005056,0.005888,0.005664,0.069344,0.00512
+1371,1670.81,0.598511,0.303104,0.005664,0.1968,0.004384,0.005344,0.004896,0.00592,0.005696,0.069536,0.004864
+1372,1417.06,0.705688,0.309504,0.005376,0.19968,0.005824,0.004416,0.006144,0.006144,0.00576,0.071104,0.005056
+1373,1239.71,0.806641,0.527616,0.006144,0.415104,0.006784,0.005888,0.004352,0.006144,0.006144,0.07168,0.005376
+1374,671.09,1.49011,0.305792,0.004736,0.197664,0.004928,0.004256,0.005664,0.00576,0.00496,0.07296,0.004864
+1375,1637.09,0.61084,0.302656,0.005472,0.195232,0.004096,0.005728,0.004512,0.006144,0.00592,0.069856,0.005696
+1376,1308.42,0.764282,0.301664,0.004768,0.195872,0.004832,0.004096,0.006016,0.005664,0.00576,0.068576,0.00608
+1377,1519.57,0.658081,0.3072,0.005792,0.196032,0.004896,0.004224,0.005824,0.005824,0.004736,0.075232,0.00464
+1378,1306.75,0.765259,0.303104,0.006144,0.195776,0.004896,0.004128,0.005888,0.00576,0.0048,0.069568,0.006144
+1379,1471.53,0.679565,0.311296,0.006016,0.196448,0.004384,0.00528,0.00496,0.006176,0.006112,0.07696,0.00496
+1380,835.748,1.19653,0.461856,0.00576,0.348224,0.004416,0.005344,0.004896,0.006048,0.006208,0.075744,0.005216
+1381,1016.38,0.983887,0.3976,0.004512,0.28864,0.00576,0.00448,0.005568,0.005792,0.005024,0.073056,0.004768
+1382,658.362,1.51892,0.34592,0.00768,0.229536,0.004448,0.005312,0.004928,0.006144,0.006016,0.075904,0.005952
+1383,813.748,1.22888,0.429728,0.006144,0.300416,0.00576,0.004864,0.014528,0.006176,0.005696,0.080352,0.005792
+1384,1717.76,0.582153,0.310112,0.00496,0.202752,0.005152,0.00496,0.004256,0.006112,0.006144,0.071488,0.004288
+1385,1225.43,0.81604,0.3072,0.006144,0.196416,0.004288,0.005472,0.004768,0.006112,0.005728,0.0736,0.004672
+1386,1558.6,0.641602,0.311296,0.006144,0.19456,0.005792,0.004448,0.005984,0.00576,0.00576,0.078048,0.0048
+1387,1466.79,0.681763,0.30944,0.005376,0.195488,0.004128,0.005408,0.0048,0.006144,0.005824,0.077856,0.004416
+1388,1374.73,0.727417,0.31136,0.005408,0.198656,0.004896,0.004096,0.00592,0.005792,0.00576,0.076192,0.00464
+1389,1277.01,0.783081,0.61408,0.005472,0.46752,0.005888,0.004448,0.005504,0.006144,0.006304,0.0824,0.0304
+1390,662.194,1.51013,0.311296,0.005632,0.19712,0.005664,0.004576,0.005472,0.004768,0.006144,0.075776,0.006144
+1391,1371.51,0.729126,0.311296,0.004672,0.196576,0.004128,0.005952,0.00432,0.006112,0.006144,0.077856,0.005536
+1392,1511.72,0.661499,0.309248,0.005408,0.195232,0.00416,0.0056,0.00464,0.006144,0.005824,0.077632,0.004608
+1393,1420.5,0.703979,0.306752,0.006112,0.194592,0.0056,0.00464,0.005248,0.004992,0.006112,0.07376,0.005696
+1394,1414.85,0.706787,0.309184,0.00608,0.194656,0.005792,0.004416,0.005504,0.005984,0.004896,0.075776,0.00608
+1395,1339.66,0.74646,0.305152,0.005408,0.1952,0.004192,0.0056,0.00464,0.006176,0.006112,0.072832,0.004992
+1396,1378.66,0.725342,0.309664,0.004544,0.201952,0.004864,0.004096,0.006112,0.005504,0.0048,0.073344,0.004448
+1397,1254.52,0.797119,0.315328,0.004576,0.201824,0.004928,0.004192,0.006112,0.006112,0.005952,0.076032,0.0056
+1398,418.365,2.39026,0.318176,0.00688,0.200704,0.005344,0.004832,0.005184,0.006432,0.004864,0.079232,0.004704
+1399,993.934,1.0061,0.344064,0.00592,0.225504,0.005856,0.004384,0.005696,0.005792,0.004896,0.081056,0.00496
+1400,1513.67,0.660645,0.311296,0.005408,0.198848,0.00464,0.00512,0.00512,0.006144,0.00576,0.074112,0.006144
+1401,1416.57,0.705933,0.30768,0.004576,0.196608,0.00544,0.004832,0.005408,0.005824,0.00512,0.075104,0.004768
+1402,1180.57,0.847046,0.305184,0.005792,0.194752,0.004256,0.005536,0.004704,0.006144,0.00608,0.073376,0.004544
+1403,1515.63,0.65979,0.319488,0.006048,0.212928,0.004256,0.005472,0.004768,0.006144,0.00592,0.069344,0.004608
+1404,1524.38,0.656006,0.303424,0.004416,0.19856,0.004192,0.005568,0.004672,0.005888,0.005888,0.069152,0.005088
+1405,655.308,1.526,0.307136,0.007072,0.19664,0.0056,0.004608,0.00544,0.0048,0.006144,0.071392,0.00544
+1406,1452.74,0.688354,0.305024,0.00576,0.19904,0.005632,0.004608,0.00544,0.0048,0.006144,0.067584,0.006016
+1407,1377.73,0.72583,0.301728,0.004928,0.19456,0.004096,0.005664,0.004576,0.006144,0.005984,0.069792,0.005984
+1408,1299.7,0.769409,0.304064,0.005056,0.195584,0.00512,0.00544,0.0048,0.006144,0.005824,0.07104,0.005056
+1409,1454.03,0.687744,0.3072,0.005824,0.19488,0.005792,0.004448,0.00576,0.00592,0.00592,0.07376,0.004896
+1410,1369.67,0.730103,0.30688,0.004736,0.196032,0.004672,0.005792,0.005568,0.005024,0.006144,0.073632,0.00528
+1411,1426.18,0.701172,0.303584,0.005088,0.19424,0.004416,0.005216,0.005024,0.005984,0.00576,0.072224,0.005632
+1412,1386.83,0.721069,0.318752,0.006112,0.201984,0.004896,0.004128,0.005984,0.006272,0.005952,0.078016,0.005408
+1413,1388.47,0.720215,0.530304,0.006144,0.415744,0.00752,0.004768,0.005952,0.00576,0.005728,0.072672,0.006016
+1414,686.097,1.45752,0.305152,0.005568,0.194816,0.004416,0.005312,0.004928,0.006048,0.005728,0.073376,0.00496
+1415,1491.9,0.670288,0.302784,0.004768,0.196608,0.005312,0.004832,0.005312,0.005056,0.006112,0.069472,0.005312
+1416,1303.84,0.766968,0.306176,0.00512,0.19664,0.005632,0.004576,0.005472,0.004768,0.006144,0.072704,0.00512
+1417,1134.78,0.881226,0.322976,0.00576,0.213376,0.005664,0.004576,0.005504,0.005824,0.005088,0.071648,0.005536
+1418,1712.73,0.583862,0.309248,0.005568,0.199232,0.0056,0.004672,0.005664,0.006016,0.00592,0.071456,0.00512
+1419,1333.12,0.750122,0.305184,0.006144,0.196288,0.004416,0.005312,0.004928,0.006144,0.00592,0.071488,0.004544
+1420,1524.94,0.655762,0.306464,0.006144,0.196608,0.00592,0.00432,0.0056,0.00464,0.006144,0.07168,0.005408
+1421,1130.4,0.884644,0.303232,0.004864,0.194528,0.005728,0.004512,0.005408,0.004832,0.006144,0.07168,0.005536
+1422,721.254,1.38647,0.311328,0.007808,0.200192,0.004928,0.00416,0.005856,0.00592,0.005824,0.07216,0.00448
+1423,1336.38,0.748291,0.305152,0.0056,0.194944,0.004256,0.005472,0.004768,0.006144,0.00576,0.073504,0.004704
+1424,1495.44,0.668701,0.308768,0.006144,0.19456,0.005696,0.004544,0.005312,0.004928,0.006144,0.075776,0.005664
+1425,1331.82,0.750854,0.308288,0.006112,0.194528,0.00416,0.006144,0.005216,0.005056,0.006112,0.075584,0.005376
+1426,1414.85,0.706787,0.3072,0.005664,0.19504,0.005376,0.004864,0.00576,0.006016,0.005856,0.073888,0.004736
+1427,1300.52,0.768921,0.308672,0.005664,0.196512,0.004672,0.005184,0.005056,0.005888,0.00576,0.074368,0.005568
+1428,1488.37,0.671875,0.306816,0.005728,0.194752,0.00432,0.00544,0.0048,0.006144,0.005792,0.07408,0.00576
+1429,1323.21,0.755737,0.3072,0.00608,0.19568,0.004896,0.004288,0.005856,0.005792,0.004736,0.075072,0.0048
+1430,1445.31,0.691895,0.53472,0.005376,0.4208,0.007424,0.004832,0.005216,0.005056,0.006144,0.07552,0.004352
+1431,645.649,1.54883,0.310976,0.006144,0.197728,0.004928,0.004192,0.005856,0.005632,0.004896,0.075776,0.005824
+1432,1517.6,0.658936,0.310272,0.006016,0.196736,0.005312,0.004864,0.00528,0.005024,0.006144,0.07552,0.005376
+1433,1214.89,0.82312,0.309248,0.005888,0.196032,0.004896,0.004128,0.005792,0.005792,0.006336,0.07424,0.006144
+1434,1616.1,0.618774,0.299648,0.004736,0.19456,0.005312,0.004832,0.005216,0.00512,0.006144,0.068928,0.0048
+1435,1348.03,0.741821,0.300032,0.00512,0.19616,0.004544,0.005376,0.004864,0.006048,0.005696,0.067168,0.005056
+1436,986.869,1.01331,0.327712,0.005536,0.219392,0.004448,0.005312,0.004928,0.005984,0.00576,0.072032,0.00432
+1437,1546.54,0.646606,0.317472,0.0056,0.203264,0.004128,0.0056,0.00464,0.006144,0.006144,0.077408,0.004544
+1438,1181.08,0.84668,0.582592,0.005056,0.466944,0.007296,0.004832,0.004256,0.006144,0.006144,0.075776,0.006144
+1439,725.469,1.37842,0.31888,0.006144,0.202752,0.004096,0.005632,0.005792,0.005184,0.00592,0.077824,0.005536
+1440,1412.41,0.708008,0.320352,0.00496,0.215072,0.005408,0.0048,0.005312,0.004928,0.006144,0.067584,0.006144
+1441,1397.95,0.715332,0.302976,0.006144,0.196608,0.005184,0.004864,0.00544,0.004992,0.006144,0.067584,0.006016
+1442,1407.08,0.710693,0.305152,0.005632,0.196352,0.004864,0.005472,0.004768,0.006144,0.005632,0.070144,0.006144
+1443,1373.57,0.728027,0.301088,0.006016,0.196736,0.005184,0.004864,0.005472,0.005088,0.006016,0.066848,0.004864
+1444,1348.92,0.741333,0.30096,0.005856,0.196896,0.005184,0.004864,0.004288,0.006144,0.006144,0.065536,0.006048
+1445,1517.04,0.65918,0.305152,0.005664,0.198944,0.004288,0.00576,0.00448,0.006144,0.006144,0.068704,0.005024
+1446,1133.06,0.882568,0.30416,0.00512,0.199904,0.004896,0.004096,0.005984,0.005728,0.00576,0.068096,0.004576
+1447,1045.97,0.956055,0.520896,0.006848,0.4096,0.006144,0.005664,0.004576,0.006144,0.006016,0.070944,0.00496
+1448,854.312,1.17053,0.308192,0.005088,0.202176,0.004672,0.004128,0.006112,0.006144,0.00592,0.068864,0.005088
+1449,1494.62,0.669067,0.307872,0.004864,0.198464,0.004288,0.005472,0.004768,0.00608,0.005728,0.07216,0.006048
+1450,1409.74,0.709351,0.303616,0.004608,0.197952,0.0048,0.005472,0.004768,0.006144,0.006144,0.06864,0.005088
+1451,1315.56,0.760132,0.299072,0.005376,0.195392,0.005312,0.004864,0.005184,0.00512,0.006144,0.066848,0.004832
+1452,1534.08,0.651855,0.299104,0.004704,0.197984,0.004768,0.004128,0.005888,0.005728,0.00576,0.064512,0.005632
+1453,1348.92,0.741333,0.30128,0.005024,0.196384,0.00432,0.005536,0.004704,0.006144,0.006016,0.067712,0.00544
+1454,1397.95,0.715332,0.302848,0.005376,0.195552,0.00576,0.00448,0.005408,0.004832,0.006144,0.069632,0.005664
+1455,1408.04,0.710205,0.311296,0.005856,0.200608,0.00448,0.005248,0.004992,0.005984,0.005984,0.072,0.006144
+1456,684.32,1.4613,0.316864,0.007808,0.207232,0.005856,0.004416,0.005696,0.00656,0.005792,0.067872,0.005632
+1457,1381.68,0.723755,0.30304,0.004704,0.198656,0.005344,0.004832,0.005216,0.006528,0.005728,0.06656,0.005472
+1458,1589.45,0.62915,0.307232,0.006144,0.198656,0.005536,0.004704,0.00592,0.005792,0.00576,0.069664,0.005056
+1459,1342.95,0.744629,0.303232,0.005024,0.198592,0.00416,0.0056,0.00464,0.006144,0.00592,0.067808,0.005344
+1460,1204.88,0.829956,0.303104,0.006144,0.196608,0.005504,0.004736,0.005792,0.00576,0.004832,0.068896,0.004832
+1461,1622.82,0.616211,0.303008,0.005664,0.197024,0.00416,0.0056,0.00464,0.006144,0.005952,0.067776,0.006048
+1462,1374.5,0.727539,0.30384,0.004832,0.1984,0.004352,0.005408,0.004832,0.006144,0.005952,0.06896,0.00496
+1463,1466.79,0.681763,0.303552,0.004544,0.2,0.0048,0.004096,0.006144,0.006144,0.006016,0.065664,0.006144
+1464,1407.8,0.710327,0.3072,0.00576,0.198784,0.004352,0.00528,0.00496,0.006144,0.005792,0.07136,0.004768
+1465,622.256,1.60706,0.315616,0.006688,0.202784,0.00528,0.004928,0.005408,0.004832,0.006144,0.073728,0.005824
+1466,1480.84,0.675293,0.307392,0.005376,0.196672,0.004896,0.004192,0.005952,0.005856,0.00576,0.072544,0.006144
+1467,1456.87,0.686401,0.307936,0.004832,0.198528,0.004224,0.005536,0.004704,0.006144,0.005888,0.073504,0.004576
+1468,1218.14,0.820923,0.311392,0.0048,0.196608,0.00416,0.005696,0.00448,0.006144,0.00592,0.07808,0.005504
+1469,1343.39,0.744385,0.315392,0.006144,0.196608,0.004128,0.00576,0.004448,0.007392,0.005152,0.08112,0.00464
+1470,1672.52,0.5979,0.308672,0.005472,0.19728,0.005312,0.004832,0.005216,0.00512,0.006144,0.073728,0.005568
+1471,1346.26,0.742798,0.31232,0.00512,0.196512,0.004192,0.005504,0.004736,0.005984,0.005696,0.080096,0.00448
+1472,1401.54,0.713501,0.307168,0.00576,0.19904,0.00544,0.0048,0.005376,0.005984,0.005056,0.0696,0.006112
+1473,742.231,1.34729,0.493536,0.007488,0.377728,0.00416,0.005664,0.004576,0.006144,0.005984,0.075936,0.005856
+1474,682.553,1.46509,0.32976,0.005632,0.217344,0.004352,0.004256,0.005248,0.004832,0.005184,0.078048,0.004864
+1475,1586.98,0.630127,0.313344,0.006144,0.198656,0.005216,0.004864,0.004256,0.006144,0.006144,0.07696,0.00496
+1476,1404.42,0.712036,0.309632,0.00448,0.196608,0.005824,0.004416,0.006144,0.005696,0.005728,0.074592,0.006144
+1477,1208.08,0.827759,0.31712,0.005376,0.194688,0.004896,0.004192,0.005664,0.00576,0.00496,0.075776,0.015808
+1478,1617.37,0.618286,0.308832,0.00544,0.194432,0.004896,0.004288,0.005984,0.006016,0.005984,0.076064,0.005728
+1479,1262.25,0.792236,0.339968,0.006016,0.217216,0.005888,0.004352,0.005728,0.006528,0.00592,0.083488,0.004832
+1480,1344.05,0.744019,0.321024,0.005984,0.196768,0.005664,0.004576,0.006144,0.006144,0.00592,0.084192,0.005632
+1481,640.1,1.56226,0.336288,0.006592,0.206368,0.004576,0.005376,0.004864,0.006112,0.005696,0.090592,0.006112
+1482,1473.65,0.678589,0.31248,0.005376,0.197248,0.00432,0.00544,0.0048,0.006144,0.00576,0.078112,0.00528
+1483,1255.86,0.796265,0.311872,0.004672,0.19456,0.005728,0.004512,0.0056,0.00576,0.005024,0.081632,0.004384
+1484,1538.11,0.650146,0.315456,0.00464,0.196608,0.00576,0.00448,0.006144,0.00576,0.005696,0.080736,0.005632
+1485,1153.97,0.866577,0.30736,0.005344,0.193184,0.004384,0.005344,0.004896,0.00608,0.00576,0.076224,0.006144
+1486,1612.28,0.620239,0.30528,0.0048,0.194208,0.004448,0.0056,0.00464,0.006144,0.005824,0.074048,0.005568
+1487,1205.06,0.829834,0.303904,0.004896,0.194208,0.005568,0.004832,0.004288,0.006144,0.00608,0.073504,0.004384
+1488,1592.84,0.627808,0.321568,0.005408,0.210944,0.004864,0.004096,0.005984,0.005728,0.004672,0.075232,0.00464
+1489,1101.08,0.908203,0.550272,0.007552,0.432768,0.005504,0.004768,0.00592,0.006336,0.00576,0.07616,0.005504
+1490,857.083,1.16675,0.308896,0.004544,0.196608,0.004096,0.005888,0.004352,0.006144,0.006112,0.075808,0.005344
+1491,1329.87,0.751953,0.305152,0.005568,0.193088,0.005216,0.004832,0.004288,0.006144,0.006144,0.0752,0.004672
+1492,1442,0.693481,0.311808,0.004864,0.196608,0.00528,0.00496,0.005408,0.004832,0.006144,0.077824,0.005888
+1493,888.985,1.12488,0.395648,0.0056,0.268992,0.00432,0.005408,0.015072,0.006144,0.006144,0.079168,0.0048
+1494,1795.7,0.556885,0.31504,0.005856,0.19616,0.004832,0.005664,0.004608,0.006112,0.006144,0.079872,0.005792
+1495,1306.75,0.765259,0.30992,0.0048,0.195552,0.005056,0.00416,0.006144,0.006144,0.005824,0.077152,0.005088
+1496,1384.72,0.722168,0.313344,0.005856,0.196608,0.004384,0.005344,0.004896,0.005984,0.005536,0.079904,0.004832
+1497,1463.9,0.683105,0.313536,0.004864,0.196608,0.005312,0.004864,0.005184,0.00512,0.006144,0.079872,0.005568
+1498,611.07,1.63647,0.315584,0.006624,0.200544,0.004256,0.005504,0.004736,0.006144,0.006144,0.075808,0.005824
+1499,1502.02,0.665771,0.309824,0.004736,0.196608,0.005344,0.004832,0.00416,0.006144,0.006144,0.075776,0.00608
+1500,1354.72,0.738159,0.309504,0.005376,0.19536,0.00432,0.005408,0.004832,0.006048,0.005696,0.07632,0.006144
+1501,1498.99,0.667114,0.309376,0.004672,0.196384,0.004288,0.005472,0.004768,0.006144,0.005792,0.076128,0.005728
+1502,1320.01,0.757568,0.310944,0.006144,0.19456,0.005824,0.004416,0.005792,0.005792,0.004832,0.077792,0.005792
+1503,1437.45,0.695679,0.309344,0.005376,0.194976,0.004544,0.006048,0.005216,0.00512,0.006144,0.077312,0.004608
+1504,1331.6,0.750977,0.30736,0.005376,0.195488,0.005696,0.004544,0.005376,0.00592,0.005088,0.073728,0.006144
+1505,1484.06,0.673828,0.30768,0.005088,0.198144,0.004608,0.00512,0.00496,0.005728,0.005696,0.072704,0.005632
+1506,738.284,1.35449,0.49152,0.00768,0.377344,0.005216,0.004864,0.004256,0.006144,0.006144,0.075232,0.00464
+1507,1143.81,0.874268,0.308064,0.004928,0.196608,0.004128,0.005664,0.004544,0.006144,0.005984,0.075488,0.004576
+1508,1330.09,0.751831,0.306816,0.005376,0.19472,0.004896,0.004128,0.00592,0.005632,0.0048,0.075776,0.005568
+1509,1511.72,0.661499,0.308896,0.005632,0.19504,0.004128,0.005632,0.004608,0.006144,0.006144,0.075776,0.005792
+1510,1330.52,0.751587,0.303104,0.005792,0.194592,0.004416,0.005184,0.005056,0.00592,0.00576,0.072192,0.004192
+1511,1419.02,0.704712,0.3072,0.005664,0.194912,0.004224,0.005536,0.004704,0.006144,0.00608,0.073792,0.006144
+1512,1178.87,0.848267,0.319744,0.005376,0.205664,0.004224,0.005536,0.004704,0.006144,0.006144,0.077536,0.004416
+1513,1555.05,0.643066,0.31744,0.006144,0.202752,0.005216,0.00496,0.005984,0.005824,0.005696,0.076128,0.004736
+1514,1400.82,0.713867,0.547072,0.00448,0.433152,0.007072,0.004064,0.006016,0.00576,0.005984,0.07584,0.004704
+1515,658.151,1.51941,0.313344,0.005792,0.199008,0.005408,0.004832,0.005216,0.005024,0.006144,0.0776,0.00432
+1516,1424.7,0.701904,0.311296,0.005504,0.197024,0.00432,0.005408,0.004832,0.006144,0.005792,0.07728,0.004992
+1517,1494.62,0.669067,0.312352,0.005408,0.197344,0.004224,0.006016,0.005632,0.00576,0.004992,0.0776,0.005376
+1518,1301.35,0.768433,0.309248,0.006144,0.19456,0.004128,0.005984,0.004224,0.006144,0.006144,0.07696,0.00496
+1519,1488.64,0.671753,0.309664,0.004512,0.196608,0.005216,0.005056,0.005312,0.004896,0.006144,0.077152,0.004768
+1520,1344.71,0.743652,0.31088,0.005632,0.19712,0.00512,0.00512,0.005408,0.005952,0.005056,0.075744,0.005728
+1521,1446.33,0.691406,0.310752,0.006144,0.195776,0.004928,0.004096,0.00592,0.005824,0.005696,0.076768,0.0056
+1522,1310.72,0.762939,0.311296,0.005824,0.196928,0.005664,0.004576,0.005312,0.005088,0.005984,0.076832,0.005088
+1523,1154.62,0.866089,0.546816,0.008192,0.397312,0.019968,0.022496,0.00464,0.006144,0.00608,0.076928,0.005056
+1524,840.119,1.19031,0.314592,0.005728,0.194976,0.005248,0.004832,0.004256,0.006144,0.00592,0.082144,0.005344
+1525,1491.62,0.67041,0.316864,0.006144,0.194592,0.0056,0.004608,0.00608,0.005856,0.005792,0.082624,0.005568
+1526,1310.72,0.762939,0.310592,0.005408,0.19504,0.004672,0.0056,0.004608,0.006144,0.006112,0.077696,0.005312
+1527,1432.92,0.697876,0.309856,0.004832,0.196416,0.004288,0.006144,0.005248,0.004992,0.006144,0.075776,0.006016
+1528,1339,0.746826,0.31728,0.006144,0.196512,0.004192,0.00608,0.005472,0.00592,0.005056,0.08192,0.005984
+1529,1458.43,0.685669,0.311904,0.004704,0.196032,0.004672,0.004096,0.00608,0.005696,0.005856,0.078816,0.005952
+1530,1396.28,0.716187,0.311968,0.005056,0.19456,0.005728,0.004512,0.005568,0.00576,0.005056,0.079872,0.005856
+1531,1391.54,0.718628,0.3152,0.005984,0.196768,0.005568,0.004672,0.006112,0.005728,0.005696,0.07872,0.005952
+1532,567.706,1.76147,0.580256,0.004736,0.428032,0.04096,0.005376,0.004864,0.006112,0.00576,0.079872,0.004544
+1533,1281.6,0.780273,0.32592,0.0056,0.207616,0.00432,0.005376,0.004864,0.006144,0.005856,0.08016,0.005984
+1534,1297.64,0.77063,0.313472,0.005376,0.197536,0.005184,0.005024,0.005376,0.00592,0.005088,0.078944,0.005024
+1535,1298.05,0.770386,0.315296,0.0048,0.196608,0.005632,0.004608,0.005952,0.005888,0.005728,0.080736,0.005344
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..d6b6198
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,495.632,2.68857,1.58598,1.58054,0.00544394
+max_1024,6318.55,602.707,2.29786,2.29315,0.020512
+min_1024,1.65918,0.158264,1.40176,1.39766,0.004096
+512,6318.55,0.158264,1.41731,1.4112,0.006112
+513,1.65918,602.707,1.41744,1.41139,0.006048
+514,594.183,1.68298,1.41808,1.41194,0.006144
+515,366.057,2.73181,1.41747,1.41133,0.006144
+516,871.026,1.14807,1.41722,1.41245,0.004768
+517,609.705,1.64014,1.41696,1.41123,0.005728
+518,547.337,1.82703,1.41034,1.4049,0.00544
+519,404.164,2.47424,1.4175,1.41165,0.005856
+520,649.643,1.53931,1.41661,1.41107,0.005536
+521,517.4,1.93274,1.99018,1.98451,0.005664
+522,423.885,2.35913,1.67325,1.66835,0.004896
+523,372.889,2.68176,1.42435,1.41821,0.006144
+524,714.46,1.39966,1.73818,1.73286,0.005312
+525,493.911,2.02466,1.66771,1.66323,0.00448
+526,428.901,2.33154,1.41734,1.41146,0.005888
+527,504.962,1.98035,1.41731,1.41174,0.005568
+528,561.134,1.7821,2.23894,2.2328,0.006144
+529,382.321,2.6156,1.41712,1.41107,0.006048
+530,555.842,1.79907,1.41744,1.4113,0.006144
+531,534.482,1.87097,2.0088,2.00294,0.005856
+532,411.266,2.43152,1.67363,1.66749,0.006144
+533,484.275,2.06494,1.41565,1.41126,0.004384
+534,434.335,2.30237,1.74618,1.74086,0.005312
+535,509.833,1.96143,1.66912,1.66403,0.005088
+536,472.788,2.11511,1.4175,1.41187,0.005632
+537,532.467,1.87805,1.41712,1.41107,0.006048
+538,518.383,1.92908,1.66317,1.65811,0.005056
+539,350.475,2.85327,1.41728,1.41219,0.005088
+540,537.956,1.85889,1.41686,1.41107,0.005792
+541,541.012,1.84839,2.03571,2.03066,0.005056
+542,363.201,2.7533,1.41594,1.41082,0.00512
+543,601.645,1.66211,1.41722,1.41107,0.006144
+544,530.501,1.88501,1.99718,1.9913,0.005888
+545,434.036,2.30396,1.67235,1.66704,0.005312
+546,463.716,2.15649,1.41654,1.41107,0.005472
+547,544.355,1.83704,1.41661,1.41107,0.005536
+548,532.986,1.87622,1.66403,1.65872,0.005312
+549,300.778,3.32471,1.41722,1.41107,0.006144
+550,689.04,1.45129,1.4167,1.41139,0.005312
+551,528.141,1.89343,1.68701,1.68163,0.005376
+552,452.272,2.21106,1.41776,1.41178,0.005984
+553,490.392,2.03918,1.4169,1.41107,0.005824
+554,551.353,1.81372,2.00115,1.99507,0.00608
+555,404.943,2.46948,1.67379,1.66765,0.006144
+556,492.9,2.02881,1.41722,1.4128,0.004416
+557,530.776,1.88403,1.73251,1.72646,0.006048
+558,450.605,2.21924,1.6712,1.66566,0.005536
+559,436.488,2.29102,1.41706,1.41107,0.005984
+560,535.075,1.8689,1.41677,1.41149,0.00528
+561,539.196,1.85461,2.01501,2.0097,0.005312
+562,410.215,2.43774,1.4161,1.40995,0.006144
+563,497.178,2.01135,1.41587,1.41126,0.004608
+564,518.645,1.9281,2.02138,2.01635,0.005024
+565,409.887,2.4397,1.67149,1.66582,0.005664
+566,451.3,2.21582,1.41638,1.41107,0.005312
+567,520.094,1.92273,2.00083,1.99475,0.00608
+568,401.097,2.49316,1.67184,1.66726,0.004576
+569,450.011,2.22217,1.41613,1.41165,0.00448
+570,333.062,3.00244,1.41715,1.4113,0.005856
+571,854.045,1.1709,1.68214,1.67613,0.006016
+572,374.748,2.66846,1.41722,1.41107,0.006144
+573,571.429,1.75,1.41549,1.41094,0.004544
+574,505.585,1.97791,1.66237,1.65706,0.005312
+575,358.387,2.79028,1.41578,1.41133,0.004448
+576,576.131,1.73572,1.41555,1.41046,0.005088
+577,543.416,1.84021,1.99738,1.99299,0.004384
+578,380.634,2.6272,1.41926,1.41437,0.004896
+579,581.488,1.71973,1.41565,1.41136,0.004288
+580,549.725,1.81909,1.99459,1.98861,0.005984
+581,391.643,2.55334,1.67149,1.66534,0.006144
+582,501.961,1.99219,1.41517,1.41069,0.00448
+583,528.687,1.89148,1.40928,1.40317,0.006112
+584,496.997,2.01208,1.67702,1.67117,0.005856
+585,380.298,2.62952,1.41712,1.41107,0.006048
+586,606.276,1.64941,1.41661,1.41107,0.005536
+587,503.38,1.98657,2.00794,2.00294,0.004992
+588,381.965,2.61804,1.41894,1.4135,0.00544
+589,582.48,1.7168,1.41517,1.41037,0.0048
+590,522.316,1.91455,1.99414,1.98864,0.005504
+591,412.052,2.42688,1.67862,1.67322,0.005408
+592,332.603,3.00659,1.41542,1.41082,0.004608
+593,836.943,1.19482,1.40902,1.4047,0.00432
+594,520.061,1.92285,1.66298,1.65853,0.004448
+595,429.103,2.33044,1.41722,1.4119,0.005312
+596,576.455,1.73474,1.41904,1.41312,0.00592
+597,504.061,1.98389,1.99901,1.99296,0.006048
+598,414.869,2.4104,1.4161,1.40995,0.006144
+599,542.086,1.84473,1.41517,1.41069,0.00448
+600,428.071,2.33606,1.73693,1.73104,0.005888
+601,535.915,1.86597,1.6695,1.66445,0.005056
+602,440.17,2.27185,1.41661,1.41107,0.005536
+603,570.037,1.75427,1.40899,1.40368,0.005312
+604,514.799,1.9425,1.66365,1.6593,0.004352
+605,396.918,2.51941,1.41549,1.4096,0.005888
+606,535.985,1.86572,1.41536,1.41088,0.00448
+607,527.903,1.89429,2.00909,2.00294,0.006144
+608,381.343,2.62231,1.42582,1.41981,0.006016
+609,541.906,1.84534,1.41722,1.41107,0.006144
+610,530.124,1.88635,2.00704,2.00227,0.004768
+611,431.749,2.31616,1.67155,1.66592,0.005632
+612,482.82,2.07117,1.41654,1.41123,0.005312
+613,542.337,1.84387,1.41629,1.41094,0.005344
+614,530.295,1.88574,1.97197,1.96611,0.005856
+615,367.668,2.71985,1.41533,1.40947,0.005856
+616,572.147,1.7478,1.41542,1.4104,0.005024
+617,574.353,1.74109,1.9968,1.99178,0.005024
+618,374.218,2.67224,1.41718,1.4112,0.005984
+619,568.455,1.75916,1.41517,1.41018,0.004992
+620,545.152,1.83435,1.73011,1.72458,0.005536
+621,446.723,2.23853,1.66752,1.66179,0.005728
+622,452.047,2.21216,1.41645,1.41107,0.005376
+623,488.783,2.0459,1.41517,1.41062,0.004544
+624,505.274,1.97913,1.66298,1.6584,0.004576
+625,396.132,2.52441,1.4168,1.41107,0.005728
+626,531.741,1.88062,1.41686,1.41107,0.005792
+627,505.024,1.9801,2.00704,2.00218,0.004864
+628,395.864,2.52612,1.41523,1.41091,0.00432
+629,513.283,1.94824,1.4217,1.41555,0.006144
+630,454.631,2.19958,1.9927,1.988,0.004704
+631,440.359,2.27087,1.67194,1.66605,0.005888
+632,474.184,2.10889,1.41539,1.41069,0.004704
+633,525.128,1.9043,1.99926,1.99357,0.005696
+634,393.241,2.54297,1.67264,1.66707,0.005568
+635,470.588,2.125,1.416,1.41101,0.004992
+636,543.813,1.83887,1.40957,1.40355,0.006016
+637,396.323,2.52319,1.67302,1.66752,0.005504
+638,451.748,2.21362,1.41664,1.41107,0.005568
+639,553.925,1.8053,1.41568,1.40982,0.005856
+640,526.749,1.89844,2.24912,2.2431,0.006016
+641,367.981,2.71753,1.41517,1.4105,0.004672
+642,552.133,1.81116,1.41514,1.40902,0.006112
+643,529.267,1.8894,2.00909,2.00294,0.006144
+644,309.039,3.23584,1.42765,1.4128,0.014848
+645,748.949,1.33521,1.4152,1.41078,0.004416
+646,541.155,1.8479,1.9968,1.99197,0.004832
+647,418.643,2.38867,1.67715,1.67184,0.005312
+648,467.473,2.13916,1.41501,1.40902,0.005984
+649,529.199,1.88965,1.4073,1.40275,0.004544
+650,419.071,2.38623,1.67088,1.66506,0.005824
+651,398.25,2.51099,1.41517,1.41027,0.004896
+652,513.541,1.94727,1.4152,1.41078,0.004416
+653,550.501,1.81653,2.25763,2.24928,0.008352
+654,394.51,2.53479,1.41558,1.4096,0.005984
+655,543.092,1.84131,1.41514,1.40902,0.006112
+656,517.27,1.93323,2.00742,2.00128,0.006144
+657,413.091,2.42078,1.41517,1.41024,0.004928
+658,502.022,1.99194,1.43094,1.41043,0.020512
+659,424.258,2.35706,1.73866,1.73309,0.005568
+660,528.209,1.89319,1.67322,1.66707,0.006144
+661,438.497,2.28052,1.41517,1.41043,0.004736
+662,545.697,1.83252,1.40778,1.4033,0.00448
+663,451.151,2.21655,1.66746,1.6631,0.004352
+664,384.601,2.6001,1.41546,1.40931,0.006144
+665,541.441,1.84692,1.4152,1.41072,0.00448
+666,534.9,1.86951,2.26093,2.25523,0.005696
+667,365.144,2.73865,1.41517,1.41008,0.005088
+668,546.68,1.82922,1.41622,1.41091,0.005312
+669,503.163,1.98743,1.99494,1.9895,0.00544
+670,431.385,2.31812,1.41574,1.41101,0.004736
+671,501.408,1.99438,1.41517,1.41014,0.005024
+672,529.781,1.88757,2.01104,2.00525,0.005792
+673,404.044,2.47498,1.68755,1.68291,0.00464
+674,460.018,2.17383,1.41405,1.40963,0.004416
+675,533.889,1.87305,1.4153,1.40957,0.005728
+676,514.056,1.94531,1.66912,1.66448,0.00464
+677,366.729,2.72681,1.41696,1.41107,0.005888
+678,522.282,1.91467,1.41517,1.4105,0.004672
+679,514.832,1.94238,2.03139,2.02608,0.005312
+680,418.685,2.38843,1.42486,1.41926,0.0056
+681,297.664,3.3595,1.40698,1.4024,0.004576
+682,589.056,1.69763,1.6631,1.65869,0.004416
+683,404.863,2.46997,1.41555,1.41046,0.005088
+684,545.116,1.83447,1.41533,1.40992,0.005408
+685,532.363,1.87842,1.99197,1.98656,0.005408
+686,404.324,2.47327,1.41517,1.41053,0.00464
+687,525.229,1.90393,1.41587,1.41107,0.0048
+688,459.682,2.17542,1.71715,1.71206,0.005088
+689,478.924,2.08801,1.68086,1.6751,0.00576
+690,455.086,2.19739,1.41498,1.40902,0.005952
+691,586.148,1.70605,1.41382,1.40944,0.004384
+692,529.575,1.88831,2.25053,2.24464,0.005888
+693,371.705,2.69031,1.41392,1.40915,0.004768
+694,545.842,1.83203,1.4159,1.40976,0.006144
+695,547.484,1.82654,1.99885,1.9927,0.006144
+696,367.239,2.72302,1.4176,1.41152,0.00608
+697,587.072,1.70337,1.41517,1.41011,0.005056
+698,537.85,1.85925,2.0328,2.02749,0.005312
+699,371.654,2.69067,1.67731,1.66298,0.014336
+700,499.147,2.00342,1.41552,1.40938,0.006144
+701,552.245,1.81079,1.41395,1.40947,0.00448
+702,479.906,2.08374,1.66707,1.66093,0.006144
+703,364.835,2.74097,1.41517,1.40902,0.006144
+704,597.389,1.67395,1.4152,1.41072,0.00448
+705,490.157,2.04016,2.23811,2.23232,0.005792
+706,389.409,2.56799,1.4152,1.40976,0.00544
+707,574.595,1.74036,1.41517,1.4104,0.004768
+708,526.208,1.90039,1.97478,1.96989,0.004896
+709,411.183,2.43201,1.66912,1.6641,0.005024
+710,384.475,2.60095,1.41693,1.41107,0.005856
+711,606.68,1.64832,2.02739,2.02157,0.005824
+712,402.872,2.48218,1.66861,1.66298,0.005632
+713,478.086,2.09167,1.41315,1.40822,0.004928
+714,461.547,2.16663,1.41517,1.4105,0.004672
+715,453.298,2.20605,1.68141,1.67658,0.004832
+716,408.721,2.44666,1.41517,1.40902,0.006144
+717,447.43,2.23499,1.41331,1.40883,0.00448
+718,580.993,1.72119,1.67731,1.67117,0.006144
+719,369.558,2.70593,1.41856,1.41312,0.00544
+720,532.432,1.87817,1.41507,1.40902,0.006048
+721,534.621,1.87048,2.28589,2.27974,0.006144
+722,356.236,2.80713,1.41482,1.40918,0.005632
+723,504.309,1.98291,1.4152,1.41069,0.004512
+724,601.115,1.66357,1.98048,1.97613,0.004352
+725,356.205,2.80737,1.41517,1.41021,0.00496
+726,514.832,1.94238,1.42234,1.41702,0.005312
+727,543.524,1.83984,2.01821,2.01366,0.004544
+728,412.778,2.42261,1.66915,1.66422,0.004928
+729,443.963,2.25244,1.41405,1.40944,0.004608
+730,585.059,1.70923,1.41456,1.40902,0.005536
+731,529.747,1.8877,2.23232,2.2279,0.004416
+732,344.955,2.89893,1.41328,1.40896,0.00432
+733,609.342,1.64111,1.41373,1.40922,0.004512
+734,545.333,1.83374,2.21594,2.21104,0.004896
+735,336.593,2.97095,1.41517,1.41037,0.0048
+736,537.251,1.86133,1.42394,1.40944,0.014496
+737,491.245,2.03564,1.98483,1.97504,0.009792
+738,394.795,2.53296,1.41642,1.41107,0.005344
+739,513.605,1.94702,1.41472,1.40861,0.006112
+740,549.651,1.81934,1.4089,1.40288,0.006016
+741,489.191,2.04419,1.41725,1.41222,0.005024
+742,341.732,2.92627,1.41462,1.40902,0.0056
+743,504.309,1.98291,1.41686,1.41107,0.005792
+744,505.554,1.97803,1.67712,1.6712,0.00592
+745,382.446,2.61475,1.41328,1.40893,0.004352
+746,515.091,1.94141,1.70128,1.69574,0.005536
+747,475.119,2.10474,1.66643,1.6607,0.005728
+748,442.38,2.2605,1.41402,1.40922,0.0048
+749,561.096,1.78223,1.41456,1.40902,0.005536
+750,542.948,1.8418,1.97251,1.96688,0.005632
+751,405.946,2.46338,1.41517,1.40902,0.006144
+752,502.33,1.99072,1.41517,1.40902,0.006144
+753,556.295,1.79761,1.41315,1.40883,0.00432
+754,474.568,2.10718,1.95206,1.9472,0.004864
+755,415.289,2.40796,1.41379,1.40902,0.004768
+756,524.456,1.90674,1.41331,1.40854,0.004768
+757,541.155,1.8479,1.67117,1.66502,0.006144
+758,339.326,2.94702,1.41475,1.40902,0.005728
+759,544.898,1.83521,1.41334,1.40902,0.00432
+760,540.583,1.84985,2.26714,2.26243,0.004704
+761,360.215,2.77612,1.4151,1.40941,0.005696
+762,557.582,1.79346,1.41366,1.40934,0.00432
+763,508.63,1.96606,2.00499,1.98451,0.02048
+764,400.783,2.49512,1.41469,1.40909,0.0056
+765,503.627,1.9856,1.41462,1.40902,0.0056
+766,530.433,1.88525,1.73757,1.71709,0.02048
+767,417.193,2.39697,1.67718,1.67184,0.005344
+768,372.228,2.68652,1.41491,1.40922,0.005696
+769,611.435,1.6355,1.41216,1.40688,0.00528
+770,512.513,1.95117,1.6719,1.66602,0.005888
+771,394.074,2.5376,1.41517,1.41011,0.005056
+772,530.295,1.88574,1.41517,1.40902,0.006144
+773,471.509,2.12085,1.94973,1.94522,0.004512
+774,421.269,2.37378,1.41459,1.40902,0.005568
+775,541.727,1.84595,1.4337,1.42755,0.006144
+776,457.705,2.18481,1.70227,1.69629,0.005984
+777,438.215,2.28198,1.41334,1.40883,0.004512
+778,488.783,2.0459,1.4152,1.41056,0.00464
+779,533.125,1.87573,1.40762,1.40173,0.005888
+780,521.85,1.91626,1.67117,1.66621,0.00496
+781,399.454,2.50342,1.41354,1.40909,0.004448
+782,553.588,1.8064,1.41408,1.40918,0.004896
+783,428.317,2.33472,2.2319,2.22624,0.005664
+784,416.176,2.40283,1.41494,1.40902,0.00592
+785,546.644,1.82935,1.41312,1.40698,0.006144
+786,558.038,1.79199,2.22413,2.21923,0.004896
+787,375.126,2.66577,1.41542,1.4103,0.00512
+788,558.038,1.79199,1.41456,1.40902,0.005536
+789,516.845,1.93481,1.96813,1.96198,0.006144
+790,345.101,2.89771,1.41469,1.40909,0.0056
+791,597.956,1.67236,1.41501,1.40902,0.005984
+792,510.341,1.95947,1.41501,1.4097,0.005312
+793,567.785,1.76123,1.67072,1.66502,0.005696
+794,382.446,2.61475,1.41517,1.40902,0.006144
+795,555.465,1.80029,1.41469,1.40902,0.005664
+796,524.389,1.90698,2.22646,2.22032,0.006144
+797,385.252,2.5957,1.41312,1.40877,0.004352
+798,458.525,2.18091,1.41478,1.40902,0.00576
+799,512,1.95312,2.00851,1.988,0.020512
+800,437.093,2.28784,1.41395,1.40922,0.004736
+801,443.434,2.25513,1.41434,1.40902,0.005312
+802,593.968,1.68359,1.96813,1.96362,0.004512
+803,405.063,2.46875,1.6695,1.66365,0.005856
+804,484.562,2.06372,1.41507,1.40902,0.006048
+805,452.497,2.20996,1.41517,1.40902,0.006144
+806,570.871,1.75171,1.66707,1.66112,0.005952
+807,404.903,2.46973,1.41469,1.40902,0.005664
+808,555.842,1.79907,1.41373,1.40758,0.006144
+809,510.469,1.95898,2.21549,2.21021,0.00528
+810,386.816,2.58521,1.4152,1.41043,0.004768
+811,564.265,1.77222,1.4151,1.40902,0.00608
+812,485.136,2.06128,1.96813,1.96307,0.005056
+813,383.269,2.60913,1.66886,1.66352,0.005344
+814,519.072,1.92651,1.41472,1.40902,0.005696
+815,558.266,1.79126,1.73136,1.72522,0.006144
+816,453.951,2.20288,1.68381,1.67792,0.005888
+817,413.779,2.41675,1.41514,1.40902,0.006112
+818,566.293,1.76587,1.41517,1.41008,0.005088
+819,421.096,2.37476,1.67846,1.67315,0.005312
+820,420.793,2.37646,1.41338,1.4088,0.004576
+821,515.804,1.93872,1.41315,1.40851,0.00464
+822,584.308,1.71143,1.98451,1.97878,0.005728
+823,409.682,2.44092,1.41315,1.40867,0.00448
+824,499.39,2.00244,1.41379,1.40877,0.005024
+825,548.107,1.82446,1.40698,1.40253,0.004448
+826,501.224,1.99512,1.68182,1.6767,0.00512
+827,382.304,2.61572,1.41328,1.40874,0.004544
+828,574.555,1.74048,1.41309,1.40742,0.005664
+829,520.59,1.9209,1.68083,1.67526,0.005568
+830,330.376,3.02686,1.41478,1.40902,0.00576
+831,598.743,1.67017,1.41443,1.40902,0.005408
+832,525.87,1.90161,2.21606,2.21075,0.005312
+833,383.449,2.60791,1.41517,1.41014,0.005024
+834,557.962,1.79224,1.41312,1.40861,0.004512
+835,541.656,1.84619,1.96512,1.95955,0.005568
+836,415.795,2.40503,1.67104,1.66502,0.006016
+837,446.042,2.24194,1.41312,1.40854,0.004576
+838,581.24,1.72046,1.41405,1.40797,0.00608
+839,499.086,2.00366,1.67814,1.67334,0.0048
+840,383.988,2.60425,1.4144,1.40902,0.005376
+841,560.482,1.78418,1.41354,1.40886,0.004672
+842,529.884,1.88721,1.93184,1.92752,0.00432
+843,394.074,2.5376,1.41514,1.40902,0.006112
+844,404.024,2.4751,1.41459,1.40902,0.005568
+845,761.48,1.31323,1.70192,1.69741,0.004512
+846,462.929,2.16016,1.41312,1.40838,0.004736
+847,455.972,2.19312,1.41312,1.40877,0.004352
+848,538.31,1.85767,1.4135,1.40758,0.00592
+849,545.479,1.83325,2.24659,2.24128,0.005312
+850,364.089,2.74658,1.41382,1.40768,0.006144
+851,324.873,3.07812,1.4137,1.40912,0.004576
+852,1400.82,0.713867,2.23258,2.2271,0.005472
+853,394.491,2.53491,1.41312,1.40749,0.005632
+854,537.815,1.85938,1.41187,1.40752,0.004352
+855,564.888,1.77026,1.97744,1.97213,0.005312
+856,358.92,2.78613,1.41373,1.40787,0.005856
+857,582.066,1.71802,1.41312,1.40835,0.004768
+858,553.888,1.80542,1.69984,1.69514,0.004704
+859,381.13,2.62378,1.70608,1.69994,0.006144
+860,520.524,1.92114,1.4143,1.40896,0.005344
+861,560.942,1.78271,1.4137,1.40874,0.00496
+862,548.841,1.82202,2.21792,2.21184,0.00608
+863,377.303,2.65039,1.41226,1.40694,0.005312
+864,552.617,1.80957,1.412,1.40723,0.004768
+865,550.242,1.81738,1.97632,1.97181,0.004512
+866,406.027,2.46289,1.41517,1.4104,0.004768
+867,485.653,2.05908,1.41325,1.40736,0.005888
+868,559.257,1.78809,1.70221,1.69632,0.005888
+869,471.781,2.11963,1.66666,1.66093,0.005728
+870,437.934,2.28345,1.41475,1.40902,0.005728
+871,547.887,1.8252,1.4144,1.40902,0.005376
+872,530.295,1.88574,1.6656,1.65974,0.005856
+873,349.846,2.8584,1.41312,1.40803,0.005088
+874,441.951,2.2627,1.41312,1.40803,0.005088
+875,678.258,1.47437,1.96717,1.96182,0.005344
+876,399.766,2.50146,1.41581,1.40989,0.00592
+877,545.842,1.83203,1.41478,1.40902,0.00576
+878,557.886,1.79248,1.96547,1.96013,0.005344
+879,406.793,2.45825,1.67322,1.66851,0.004704
+880,442.189,2.26147,1.41472,1.40902,0.005696
+881,554.413,1.80371,1.4216,1.41677,0.004832
+882,470.75,2.12427,2.21446,2.20957,0.004896
+883,372.94,2.6814,1.41322,1.40813,0.005088
+884,612.166,1.63354,1.41309,1.40698,0.006112
+885,542.732,1.84253,1.96867,1.96394,0.004736
+886,401.884,2.48828,1.41466,1.40918,0.005472
+887,511.361,1.95557,1.41312,1.40822,0.004896
+888,529.267,1.8894,1.97837,1.9736,0.004768
+889,269.616,3.70898,1.67046,1.66515,0.005312
+890,1009.86,0.990234,1.41402,1.40909,0.004928
+891,521.916,1.91602,1.69779,1.69165,0.006144
+892,473.8,2.1106,1.6663,1.66096,0.005344
+893,439.532,2.27515,1.41312,1.40803,0.005088
+894,537.956,1.85889,1.42189,1.41715,0.004736
+895,531.327,1.88208,2.22022,2.21523,0.004992
+896,342.246,2.92188,1.41312,1.40819,0.004928
+897,308.922,3.23706,1.42122,1.41517,0.006048
+898,530.364,1.8855,1.6823,1.67744,0.004864
+899,503.689,1.98535,1.40643,1.40083,0.0056
+900,496.184,2.01538,1.41517,1.40902,0.006144
+901,621.453,1.60913,1.41322,1.4088,0.004416
+902,539.018,1.85522,1.6752,1.66912,0.00608
+903,485.538,2.05957,1.41328,1.40851,0.004768
+904,473.198,2.11328,1.41338,1.40838,0.004992
+905,547.52,1.82642,1.67747,1.67286,0.004608
+906,359.93,2.77832,1.41421,1.40886,0.005344
+907,562.869,1.77661,1.41312,1.40822,0.004896
+908,538.947,1.85547,2.29638,2.29034,0.006048
+909,366.828,2.72607,1.41312,1.4088,0.00432
+910,530.501,1.88501,1.41334,1.40822,0.00512
+911,465.825,2.14673,2.00166,1.99558,0.00608
+912,457.654,2.18506,1.42131,1.41645,0.004864
+913,501.285,1.99487,1.41462,1.40902,0.0056
+914,546.935,1.82837,1.73306,1.72832,0.004736
+915,459.296,2.17725,1.66755,1.66179,0.00576
+916,440.241,2.27148,1.41379,1.40874,0.005056
+917,554.638,1.80298,1.41382,1.40768,0.006144
+918,537.462,1.8606,1.93946,1.93331,0.006144
+919,378.034,2.64526,1.41478,1.40902,0.00576
+920,574.232,1.74146,1.41453,1.40902,0.005504
+921,559.869,1.78613,1.99053,1.98451,0.006016
+922,393.015,2.54443,1.41606,1.40992,0.006144
+923,513.863,1.94604,1.41312,1.40861,0.004512
+924,535.635,1.86694,1.73037,1.72502,0.005344
+925,419.457,2.38403,1.66643,1.66093,0.005504
+926,413.487,2.41846,1.41334,1.40832,0.005024
+927,640.4,1.56152,1.41331,1.40858,0.004736
+928,512.32,1.9519,2.29786,2.29315,0.004704
+929,381.094,2.62402,1.41344,1.40861,0.004832
+930,545.333,1.83374,1.41302,1.40768,0.005344
+931,492.722,2.02954,2.00554,2.00144,0.004096
+932,415.163,2.40869,1.41606,1.41104,0.005024
+933,526.884,1.89795,1.41363,1.40899,0.00464
+934,518.875,1.92725,1.74291,1.73789,0.005024
+935,458.166,2.18262,1.66912,1.66413,0.004992
+936,456.888,2.18872,1.41466,1.40902,0.005632
+937,545.406,1.8335,1.41456,1.40902,0.005536
+938,487.039,2.05322,1.6609,1.65482,0.00608
+939,383.162,2.60986,1.41312,1.40698,0.006144
+940,553.738,1.80591,1.41408,1.408,0.00608
+941,431.476,2.31763,1.99123,1.98618,0.005056
+942,515.479,1.93994,1.41341,1.4087,0.004704
+943,540.441,1.85034,1.41312,1.40819,0.004928
+944,545.188,1.83423,1.40698,1.40083,0.006144
+945,481.203,2.07812,1.66458,1.65898,0.0056
+946,442.237,2.26123,1.41453,1.40902,0.005504
+947,551.798,1.81226,1.41517,1.41014,0.005024
+948,507.874,1.96899,2.00259,1.99702,0.005568
+949,411.617,2.42944,1.41482,1.40954,0.00528
+950,525.061,1.90454,1.41427,1.40896,0.005312
+951,552.916,1.80859,1.99286,1.98672,0.006144
+952,409.354,2.44287,1.66912,1.66461,0.004512
+953,475.671,2.10229,1.41325,1.40838,0.004864
+954,553.364,1.80713,1.7367,1.73181,0.004896
+955,449.912,2.22266,1.65914,1.65366,0.005472
+956,410.75,2.43457,1.41373,1.40794,0.005792
+957,614.001,1.62866,1.41507,1.40906,0.006016
+958,520.987,1.91943,2.00499,2.00029,0.004704
+959,415.88,2.40454,1.41312,1.40835,0.004768
+960,501.408,1.99438,1.41386,1.40954,0.00432
+961,553.813,1.80566,2.00794,2.00349,0.004448
+962,394.529,2.53467,1.67091,1.66502,0.005888
+963,496.124,2.01562,1.41354,1.40848,0.005056
+964,497.087,2.01172,1.73674,1.73219,0.004544
+965,475.615,2.10254,1.65782,1.6529,0.004928
+966,449.024,2.22705,1.41517,1.40902,0.006144
+967,538.876,1.85571,1.41424,1.40893,0.005312
+968,545.842,1.83203,1.9969,1.9921,0.0048
+969,406.753,2.4585,1.412,1.40771,0.004288
+970,514.056,1.94531,1.41328,1.40867,0.004608
+971,434.451,2.30176,1.41722,1.41283,0.004384
+972,525.937,1.90137,1.41878,1.41312,0.005664
+973,372.397,2.6853,1.41424,1.40893,0.005312
+974,632.196,1.58179,1.40653,1.40083,0.005696
+975,496.124,2.01562,1.66602,1.66118,0.004832
+976,428.228,2.33521,1.41395,1.40899,0.00496
+977,546.133,1.83105,1.41312,1.40819,0.004928
+978,550.316,1.81714,1.99027,1.98461,0.005664
+979,363.249,2.75293,1.4151,1.40902,0.00608
+980,541.441,1.84692,1.41443,1.40902,0.005408
+981,446.674,2.23877,1.98867,1.98253,0.006144
+982,454.757,2.19897,1.66858,1.66285,0.005728
+983,500.122,1.99951,1.41517,1.41062,0.004544
+984,534.098,1.87231,1.40682,1.40083,0.005984
+985,514.832,1.94238,1.65725,1.65274,0.004512
+986,360.563,2.77344,1.41315,1.40845,0.004704
+987,696.007,1.43677,1.41357,1.40765,0.00592
+988,542.373,1.84375,2.0031,1.99744,0.005664
+989,403.031,2.4812,1.41315,1.40765,0.005504
+990,517.172,1.93359,1.41405,1.40797,0.00608
+991,488.491,2.04712,1.9968,1.99174,0.005056
+992,429.395,2.32886,1.67088,1.66538,0.005504
+993,486.172,2.05688,1.41504,1.40902,0.006016
+994,526.546,1.89917,1.72442,1.71827,0.006144
+995,457.807,2.18433,1.66442,1.65885,0.005568
+996,443.194,2.25635,1.41315,1.40864,0.004512
+997,545.697,1.83252,1.41334,1.4072,0.006144
+998,562.097,1.77905,2.24131,2.2367,0.004608
+999,364.77,2.74146,1.41354,1.40874,0.0048
+1000,559.257,1.78809,1.41482,1.40902,0.005792
+1001,457.5,2.18579,1.98272,1.97821,0.004512
+1002,456.582,2.19019,1.66707,1.66278,0.004288
+1003,507.874,1.96899,1.4129,1.40726,0.005632
+1004,576.577,1.73438,1.72838,1.72307,0.005312
+1005,455.212,2.19678,1.66506,1.65994,0.00512
+1006,438.356,2.28125,1.41299,1.40701,0.005984
+1007,546.133,1.83105,1.41517,1.40902,0.006144
+1008,509.136,1.96411,1.69574,1.69066,0.005088
+1009,416.176,2.40283,1.41328,1.4088,0.00448
+1010,518.809,1.92749,1.41315,1.40874,0.004416
+1011,531.051,1.88306,1.99475,1.98995,0.0048
+1012,417.363,2.396,1.66925,1.66435,0.004896
+1013,482.677,2.07178,1.41379,1.40765,0.006144
+1014,528.994,1.89038,1.73674,1.7321,0.00464
+1015,465.825,2.14673,1.65888,1.65382,0.005056
+1016,398.366,2.51025,1.41296,1.40765,0.005312
+1017,577.145,1.73267,1.41258,1.40698,0.0056
+1018,541.799,1.8457,2.00061,1.99475,0.005856
+1019,423.929,2.35889,1.41331,1.40758,0.005728
+1020,496.726,2.01318,1.41491,1.40902,0.005888
+1021,394.681,2.53369,1.98454,1.98,0.004544
+1022,573.911,1.74243,1.6672,1.66211,0.005088
+1023,483.875,2.06665,1.41312,1.40832,0.0048
+1024,510.278,1.95972,1.4135,1.40778,0.005728
+1025,538.381,1.85742,1.66694,1.66163,0.005312
+1026,361.805,2.76392,1.41312,1.4088,0.00432
+1027,554.113,1.80469,1.41344,1.4079,0.005536
+1028,563.954,1.77319,1.68352,1.6776,0.00592
+1029,421.746,2.37109,1.41315,1.40784,0.005312
+1030,486.692,2.05469,1.41357,1.40742,0.006144
+1031,402.081,2.48706,2.00262,1.9968,0.005824
+1032,542.373,1.84375,1.66912,1.66298,0.006144
+1033,477.779,2.09302,1.41315,1.4088,0.004352
+1034,566.059,1.7666,2.01715,2.01114,0.006016
+1035,399.493,2.50317,1.66435,1.65901,0.005344
+1036,483.133,2.06982,1.41434,1.40899,0.005344
+1037,536.828,1.86279,1.4143,1.40899,0.005312
+1038,479.625,2.08496,1.96624,1.96192,0.00432
+1039,339.635,2.94434,1.41392,1.40781,0.006112
+1040,591.822,1.6897,1.41312,1.408,0.00512
+1041,513.283,1.94824,2.24179,2.23642,0.005376
+1042,376.748,2.6543,1.41341,1.40794,0.005472
+1043,537.251,1.86133,1.41325,1.40781,0.00544
+1044,517.826,1.93115,2.00909,2.00467,0.004416
+1045,411.907,2.42773,1.66912,1.66298,0.006144
+1046,462.355,2.16284,1.41344,1.4073,0.006144
+1047,530.501,1.88501,1.99338,1.98861,0.004768
+1048,411.617,2.42944,1.66912,1.66301,0.006112
+1049,483.304,2.06909,1.41504,1.40902,0.006016
+1050,543.164,1.84106,1.41363,1.40758,0.006048
+1051,512.898,1.94971,1.65856,1.65277,0.005792
+1052,352.072,2.84033,1.41315,1.40845,0.004704
+1053,470.967,2.12329,1.41315,1.40877,0.004384
+1054,635.827,1.57275,2.24259,2.23789,0.004704
+1055,367.354,2.72217,1.41315,1.40781,0.005344
+1056,536.758,1.86304,1.41459,1.40928,0.005312
+1057,529.815,1.88745,2.00845,2.00294,0.005504
+1058,395.252,2.53003,1.41539,1.41088,0.004512
+1059,510.723,1.95801,1.41456,1.40902,0.005536
+1060,544.03,1.83813,1.72198,1.71622,0.00576
+1061,432.478,2.31226,1.41315,1.40739,0.00576
+1062,494.686,2.02148,1.41312,1.4087,0.004416
+1063,556.673,1.79639,1.41514,1.40963,0.005504
+1064,548.18,1.82422,1.4145,1.40902,0.005472
+1065,534.516,1.87085,1.66707,1.66246,0.004608
+1066,473.964,2.10986,1.41322,1.40845,0.004768
+1067,516.259,1.93701,1.7256,1.72029,0.005312
+1068,461.677,2.16602,1.66707,1.6625,0.004576
+1069,407.036,2.45679,1.41312,1.40822,0.004896
+1070,568.336,1.75952,1.41312,1.40854,0.004576
+1071,571.668,1.74927,2.2391,2.2344,0.004704
+1072,376.817,2.65381,1.41357,1.40893,0.00464
+1073,556.522,1.79688,1.4137,1.40877,0.004928
+1074,519.007,1.92676,1.99238,1.98662,0.00576
+1075,421.269,2.37378,1.66605,1.66157,0.00448
+1076,419.973,2.3811,1.4135,1.40736,0.006144
+1077,594.485,1.68213,1.71424,1.70851,0.005728
+1078,505.242,1.97925,1.66464,1.65926,0.005376
+1079,437.747,2.28442,1.4135,1.40736,0.006144
+1080,532.501,1.87793,1.41376,1.40899,0.004768
+1081,550.982,1.81494,1.99165,1.98694,0.004704
+1082,408.171,2.44995,1.41312,1.40845,0.004672
+1083,498.661,2.00537,1.41312,1.40822,0.004896
+1084,430.071,2.3252,1.99056,1.9848,0.00576
+1085,481.486,2.0769,1.68749,1.68218,0.005312
+1086,474.844,2.10596,1.41366,1.40774,0.00592
+1087,594.83,1.68115,1.4136,1.40746,0.006144
+1088,478.337,2.09058,1.66688,1.66093,0.005952
+1089,397.053,2.51855,1.4135,1.40758,0.00592
+1090,559.257,1.78809,1.41296,1.40698,0.005984
+1091,512.32,1.9519,1.68278,1.67734,0.00544
+1092,422.66,2.36597,1.41338,1.40902,0.004352
+1093,518.744,1.92773,1.41354,1.40742,0.006112
+1094,457.347,2.18652,1.71606,1.71034,0.005728
+1095,554.788,1.80249,1.66544,1.66109,0.004352
+1096,430.117,2.32495,1.41443,1.40902,0.005408
+1097,564.576,1.77124,1.72646,1.72032,0.006144
+1098,462.929,2.16016,1.66093,1.65603,0.004896
+1099,408.538,2.44775,1.41386,1.4089,0.00496
+1100,559.105,1.78857,1.41414,1.4088,0.005344
+1101,522.849,1.9126,1.99392,1.98861,0.005312
+1102,418.429,2.38989,1.41363,1.4087,0.004928
+1103,493.197,2.02759,1.41312,1.40698,0.006144
+1104,543.236,1.84082,1.99274,1.98813,0.004608
+1105,410.544,2.43579,1.66733,1.66285,0.00448
+1106,492.308,2.03125,1.41482,1.40928,0.005536
+1107,514.056,1.94531,1.41277,1.40698,0.005792
+1108,544.971,1.83496,1.66733,1.66147,0.005856
+1109,374.064,2.67334,1.41459,1.40902,0.005568
+1110,572.467,1.74683,1.41322,1.40742,0.005792
+1111,540.298,1.85083,1.99507,1.98902,0.006048
+1112,412.737,2.42285,1.41376,1.40762,0.006144
+1113,487.387,2.05176,1.41354,1.40755,0.005984
+1114,468.275,2.1355,1.99478,1.98941,0.005376
+1115,475.064,2.10498,1.66813,1.66282,0.005312
+1116,483.19,2.06958,1.4129,1.40704,0.005856
+1117,550.908,1.81519,1.74326,1.73818,0.005088
+1118,458.319,2.18188,1.66502,1.65888,0.006144
+1119,425.78,2.34863,1.4137,1.40768,0.006016
+1120,543.308,1.84058,1.41331,1.40842,0.004896
+1121,569.363,1.75635,1.99885,1.99408,0.004768
+1122,384.637,2.59985,1.41325,1.40771,0.005536
+1123,530.776,1.88403,1.41347,1.40787,0.0056
+1124,545.915,1.83179,1.99274,1.98803,0.004704
+1125,405.906,2.46362,1.66707,1.66096,0.006112
+1126,465.666,2.14746,1.41344,1.4073,0.006144
+1127,562.174,1.77881,1.72899,1.72426,0.004736
+1128,450.011,2.22217,1.65962,1.65459,0.005024
+1129,326.948,3.05859,1.41421,1.4089,0.005312
+1130,849.44,1.17725,1.41312,1.40698,0.006144
+1131,544.826,1.83545,2.24499,2.23885,0.006144
+1132,368.943,2.71045,1.41315,1.40848,0.004672
+1133,547.52,1.82642,1.4143,1.40899,0.005312
+1134,498.539,2.00586,1.99683,1.99238,0.004448
+1135,433.21,2.30835,1.41354,1.408,0.005536
+1136,502.145,1.99146,1.41312,1.40816,0.00496
+1137,489.835,2.0415,1.73421,1.72854,0.005664
+1138,509.833,1.96143,1.66662,1.66128,0.005344
+1139,436.302,2.29199,1.41312,1.40842,0.004704
+1140,535.285,1.86816,1.41347,1.40762,0.005856
+1141,564.888,1.77026,1.92717,1.92282,0.004352
+1142,356.267,2.80688,1.4136,1.40787,0.005728
+1143,549.283,1.82056,1.40662,1.40054,0.00608
+1144,467.954,2.13696,1.99798,1.9927,0.00528
+1145,472.379,2.11694,1.66822,1.66291,0.005312
+1146,474.678,2.10669,1.41366,1.40778,0.005888
+1147,542.086,1.84473,1.4064,1.40083,0.005568
+1148,520.987,1.91943,1.66691,1.66093,0.005984
+1149,415.542,2.40649,1.41315,1.40787,0.00528
+1150,539.444,1.85376,1.41312,1.40698,0.006144
+1151,575.847,1.73657,2.27382,2.2681,0.005728
+1152,335.024,2.98486,1.41306,1.40778,0.00528
+1153,572.627,1.74634,1.41117,1.40656,0.004608
+1154,573.027,1.74512,2.01078,2.00499,0.005792
+1155,392.149,2.55005,1.66906,1.66298,0.00608
+1156,485.251,2.06079,1.41312,1.40698,0.006144
+1157,548.841,1.82202,1.99885,1.9944,0.004448
+1158,407.724,2.45264,1.66509,1.66058,0.004512
+1159,450.209,2.22119,1.41309,1.40762,0.005472
+1160,573.589,1.74341,1.41731,1.41142,0.005888
+1161,506.993,1.97241,2.23613,2.23034,0.005792
+1162,394.909,2.53223,1.41312,1.40877,0.004352
+1163,548.988,1.82153,1.41171,1.40707,0.00464
+1164,532.848,1.87671,1.99936,1.9943,0.005056
+1165,399.22,2.50488,1.4128,1.40698,0.005824
+1166,549.062,1.82129,1.41366,1.40778,0.005888
+1167,475.726,2.10205,1.72106,1.71632,0.004736
+1168,496.786,2.01294,1.66573,1.65968,0.006048
+1169,443.963,2.25244,1.41286,1.40714,0.005728
+1170,543.669,1.83936,1.41315,1.40851,0.00464
+1171,549.577,1.81958,2.28093,2.27533,0.0056
+1172,369.142,2.70898,1.41354,1.40739,0.006144
+1173,531.189,1.88257,1.41194,1.40589,0.006048
+1174,515.285,1.94067,2.00109,1.9951,0.005984
+1175,398.637,2.50854,1.41485,1.40902,0.005824
+1176,559.869,1.78613,1.41152,1.40714,0.004384
+1177,547.594,1.82617,1.71731,1.71203,0.00528
+1178,465.613,2.14771,1.66512,1.65898,0.006144
+1179,432.387,2.31274,1.41315,1.40829,0.004864
+1180,536.406,1.86426,1.41315,1.40806,0.005088
+1181,556.068,1.79834,2.23232,2.22784,0.00448
+1182,347.443,2.87817,1.41309,1.40755,0.005536
+1183,616.403,1.62231,1.41296,1.40707,0.005888
+1184,512.513,1.95117,1.99616,1.99072,0.00544
+1185,418.258,2.39087,1.66806,1.66192,0.006144
+1186,481.316,2.07764,1.41187,1.40573,0.006144
+1187,548.547,1.823,1.72237,1.71622,0.006144
+1188,457.245,2.18701,1.66506,1.66035,0.004704
+1189,380.21,2.63013,1.41133,1.40675,0.004576
+1190,607.085,1.64722,1.4113,1.40573,0.005568
+1191,532.017,1.87964,1.65674,1.65139,0.005344
+1192,300.073,3.33252,1.41312,1.4081,0.005024
+1193,621.265,1.60962,1.41107,1.40646,0.004608
+1194,537.462,1.8606,1.66093,1.65482,0.006112
+1195,363.895,2.74805,1.41104,1.40493,0.006112
+1196,385.288,2.59546,1.4129,1.40774,0.005152
+1197,695.534,1.43774,1.98374,1.97837,0.005376
+1198,423.666,2.36035,1.41302,1.40698,0.006048
+1199,504.496,1.98218,1.41312,1.40813,0.004992
+1200,542.588,1.84302,1.99142,1.98547,0.005952
+1201,402.951,2.48169,1.66694,1.66163,0.005312
+1202,474.184,2.10889,1.41312,1.40803,0.005088
+1203,539.8,1.85254,1.41312,1.40698,0.006144
+1204,475.395,2.10352,1.66874,1.66298,0.00576
+1205,384.854,2.59839,1.41277,1.40749,0.00528
+1206,565.824,1.76733,1.4112,1.40618,0.005024
+1207,511.616,1.95459,1.6592,1.6535,0.005696
+1208,397.246,2.51733,1.41258,1.40698,0.0056
+1209,567.549,1.76196,1.41194,1.40691,0.005024
+1210,481.542,2.07666,2.00522,2.00109,0.004128
+1211,415.037,2.40942,1.41107,1.40653,0.004544
+1212,524.523,1.90649,1.41309,1.40778,0.005312
+1213,550.612,1.81616,1.40531,1.39962,0.005696
+1214,494.03,2.02417,1.66541,1.65926,0.006144
+1215,416.472,2.40112,1.41264,1.40698,0.005664
+1216,561.866,1.77979,1.41142,1.40707,0.004352
+1217,524.053,1.9082,1.99181,1.98634,0.005472
+1218,416.26,2.40234,1.41312,1.408,0.00512
+1219,463.453,2.15771,1.41286,1.40698,0.005888
+1220,579.595,1.72534,1.99197,1.98656,0.005408
+1221,401.254,2.49219,1.66659,1.66106,0.005536
+1222,470.264,2.12646,1.41251,1.40698,0.005536
+1223,571.827,1.74878,1.9927,1.98774,0.00496
+1224,405.946,2.46338,1.66595,1.66147,0.00448
+1225,477.668,2.09351,1.41312,1.40698,0.006144
+1226,476.168,2.1001,1.41312,1.40842,0.004704
+1227,606.096,1.6499,2.24339,2.23904,0.004352
+1228,377.616,2.64819,1.41296,1.40698,0.005984
+1229,532.848,1.87671,1.41107,1.40627,0.0048
+1230,497.752,2.00903,2.00611,2.00067,0.00544
+1231,392.563,2.54736,1.41312,1.40819,0.004928
+1232,567.628,1.76172,1.4129,1.40698,0.00592
+1233,531.465,1.88159,1.74326,1.73738,0.005888
+1234,386.816,2.58521,1.66707,1.66221,0.004864
+1235,471.401,2.12134,1.41261,1.40698,0.005632
+1236,600.41,1.66553,1.41206,1.40592,0.006144
+1237,493.019,2.02832,1.65683,1.65242,0.004416
+1238,384.024,2.604,1.41206,1.40707,0.004992
+1239,570.633,1.75244,1.41158,1.40717,0.004416
+1240,466.355,2.14429,2.02602,2.02093,0.005088
+1241,378.838,2.63965,1.41315,1.40851,0.00464
+1242,580.088,1.72388,1.41296,1.40698,0.005984
+1243,585.143,1.70898,2.00035,1.99475,0.0056
+1244,394.263,2.53638,1.66781,1.66323,0.004576
+1245,482.905,2.0708,1.41312,1.40803,0.005088
+1246,543.38,1.84033,1.75082,1.7449,0.00592
+1247,456.328,2.19141,1.67117,1.6657,0.005472
+1248,338.484,2.95435,1.41226,1.40698,0.00528
+1249,709.018,1.4104,1.41178,1.40714,0.00464
+1250,554.563,1.80322,2.26131,2.25635,0.00496
+1251,351.981,2.84106,1.41142,1.40538,0.006048
+1252,560.405,1.78442,1.41274,1.40742,0.005312
+1253,495.464,2.01831,2.01533,2.01024,0.005088
+1254,401.372,2.49146,1.41312,1.40829,0.004832
+1255,557.886,1.79248,1.41181,1.40566,0.006144
+1256,486.692,2.05469,1.99245,1.98656,0.005888
+1257,425.029,2.35278,1.66502,1.66061,0.004416
+1258,488.724,2.04614,1.41245,1.40698,0.005472
+1259,532.363,1.87842,1.40499,1.39914,0.005856
+1260,476.113,2.10034,1.65763,1.65318,0.004448
+1261,447.601,2.23413,1.41238,1.40698,0.005408
+1262,532.501,1.87793,1.41245,1.40701,0.00544
+1263,331.017,3.021,2.03725,2.03171,0.005536
+1264,520.524,1.92114,1.41165,1.40669,0.00496
+1265,552.841,1.80884,1.41238,1.4071,0.00528
+1266,579.267,1.72632,1.98656,1.98042,0.006144
+1267,410.174,2.43799,1.66646,1.66115,0.005312
+1268,472.434,2.1167,1.41312,1.40816,0.00496
+1269,556.597,1.79663,1.73018,1.72442,0.00576
+1270,284.721,3.51221,1.66611,1.6608,0.005312
+1271,833.198,1.2002,1.4128,1.40733,0.005472
+1272,562.715,1.7771,1.41133,1.40688,0.004448
+1273,514.185,1.94482,2.2344,2.22832,0.00608
+1274,378.873,2.6394,1.41258,1.40698,0.0056
+1275,552.394,1.8103,1.41312,1.40845,0.004672
+1276,486.403,2.05591,2.00499,2.0001,0.004896
+1277,399.649,2.5022,1.41251,1.40701,0.005504
+1278,521.12,1.91895,1.4111,1.40669,0.004416
+1279,532.778,1.87695,1.72653,1.72166,0.004864
+1280,466.249,2.14478,1.66765,1.66278,0.004864
+1281,434.312,2.30249,1.41114,1.40672,0.004416
+1282,534.029,1.87256,1.72611,1.7208,0.005312
+1283,453.198,2.20654,1.65683,1.65226,0.004576
+1284,432.707,2.31104,1.41722,1.41283,0.004384
+1285,359.456,2.78198,1.41219,1.40694,0.005248
+1286,735.896,1.35889,1.9919,1.98656,0.005344
+1287,440.099,2.27222,1.41133,1.40701,0.00432
+1288,509.199,1.96387,1.41168,1.40589,0.005792
+1289,508.82,1.96533,1.98374,1.97837,0.005376
+1290,430.614,2.32227,1.66688,1.66093,0.005952
+1291,436.674,2.29004,1.41312,1.40826,0.004864
+1292,542.948,1.8418,1.41194,1.40682,0.00512
+1293,462.773,2.16089,1.66726,1.6616,0.005664
+1294,387.365,2.58154,1.41216,1.40685,0.005312
+1295,552.841,1.80884,1.72726,1.72259,0.004672
+1296,470.264,2.12646,1.65888,1.65408,0.0048
+1297,429.665,2.32739,1.41222,1.40691,0.005312
+1298,531.327,1.88208,1.41165,1.4055,0.006144
+1299,502.453,1.99023,2.01808,2.01194,0.006144
+1300,373.212,2.67944,1.41165,1.40563,0.006016
+1301,491.363,2.03516,1.4295,1.42336,0.006144
+1302,468.168,2.13599,2.00294,1.9968,0.006144
+1303,395.214,2.53027,1.41213,1.40682,0.005312
+1304,568.731,1.7583,1.41107,1.40672,0.004352
+1305,550.538,1.81641,1.72445,1.71846,0.005984
+1306,455.871,2.1936,1.66838,1.66298,0.005408
+1307,430.886,2.3208,1.41133,1.40646,0.004864
+1308,546.935,1.82837,1.41213,1.40682,0.005312
+1309,492.604,2.03003,1.66093,1.65629,0.00464
+1310,341.476,2.92847,1.4128,1.40698,0.005824
+1311,610.341,1.63843,1.41226,1.40694,0.005312
+1312,506.054,1.97607,2.25174,2.2456,0.006144
+1313,363.733,2.74927,1.41104,1.40576,0.00528
+1314,506.868,1.9729,1.41251,1.4072,0.005312
+1315,555.089,1.80151,2.01475,2.00944,0.005312
+1316,372.228,2.68652,1.41424,1.4089,0.005344
+1317,546.935,1.82837,1.41248,1.40698,0.005504
+1318,509.326,1.96338,1.72077,1.71629,0.00448
+1319,478.896,2.08813,1.66666,1.66093,0.005728
+1320,437.747,2.28442,1.41149,1.40707,0.004416
+1321,493.791,2.02515,1.4111,1.40675,0.004352
+1322,563.877,1.77344,1.65888,1.6545,0.004384
+1323,377.755,2.64722,1.41222,1.40691,0.005312
+1324,547.52,1.82642,1.4111,1.40634,0.004768
+1325,518.481,1.92871,1.99027,1.98566,0.004608
+1326,399.571,2.50269,1.41072,1.40518,0.005536
+1327,528.721,1.89136,1.41107,1.40691,0.00416
+1328,527.359,1.89624,1.99027,1.98458,0.005696
+1329,418.9,2.38721,1.67117,1.66672,0.004448
+1330,440.241,2.27148,1.4127,1.40698,0.005728
+1331,578.286,1.72925,1.4111,1.4065,0.004608
+1332,475.395,2.10352,1.66707,1.66208,0.004992
+1333,366.434,2.729,1.41168,1.40717,0.004512
+1334,542.948,1.8418,1.4113,1.4063,0.004992
+1335,517.433,1.93262,1.65824,1.65274,0.005504
+1336,356.081,2.80835,1.41226,1.40694,0.005312
+1337,510.596,1.9585,1.4111,1.40672,0.004384
+1338,557.734,1.79297,1.99293,1.98733,0.0056
+1339,400.665,2.49585,1.41245,1.40694,0.005504
+1340,530.707,1.88428,1.4111,1.40672,0.004384
+1341,543.958,1.83838,2.0088,2.00294,0.005856
+1342,393.392,2.54199,1.66704,1.66093,0.006112
+1343,481.882,2.0752,1.40176,1.39766,0.004096
+1344,414.281,2.41382,1.41245,1.40698,0.005472
+1345,555.239,1.80103,1.41421,1.40893,0.00528
+1346,401.018,2.49365,1.41261,1.40698,0.005632
+1347,543.813,1.83887,1.42573,1.4063,0.019424
+1348,530.845,1.88379,1.40493,1.40019,0.004736
+1349,508.126,1.96802,1.41165,1.40704,0.004608
+1350,491.009,2.03662,1.41274,1.40698,0.00576
+1351,542.229,1.84424,2.02736,2.02173,0.005632
+1352,387.622,2.57983,1.66854,1.66298,0.005568
+1353,498.904,2.00439,1.41219,1.40688,0.005312
+1354,535.005,1.86914,1.72675,1.72208,0.004672
+1355,462.511,2.16211,1.66448,1.65888,0.0056
+1356,433.21,2.30835,1.41133,1.40688,0.004448
+1357,528.789,1.89111,1.41238,1.4071,0.00528
+1358,522.649,1.91333,1.98659,1.98182,0.004768
+1359,349.786,2.85889,1.41722,1.41107,0.006144
+1360,441.189,2.2666,1.41139,1.40669,0.004704
+1361,605.559,1.65137,1.99219,1.98656,0.005632
+1362,342.074,2.92334,1.41229,1.40698,0.005312
+1363,815.774,1.22583,1.41344,1.40781,0.005632
+1364,560.098,1.7854,2.0015,1.99651,0.004992
+1365,409.232,2.4436,1.67731,1.67117,0.006144
+1366,291.302,3.43286,1.41107,1.40662,0.004448
+1367,1110.63,0.900391,1.41126,1.40656,0.004704
+1368,552.096,1.81128,1.66026,1.65478,0.005472
+1369,374.406,2.6709,1.41155,1.4072,0.004352
+1370,554.938,1.802,1.4111,1.40646,0.00464
+1371,535.495,1.86743,1.99066,1.9857,0.00496
+1372,402.121,2.48682,1.41226,1.40691,0.005344
+1373,502.762,1.98901,1.41136,1.40522,0.006144
+1374,300.315,3.32983,1.75782,1.75277,0.005056
+1375,537.18,1.86157,1.41168,1.40557,0.006112
+1376,370.511,2.69897,1.41107,1.4063,0.004768
+1377,620.7,1.61108,1.96675,1.96064,0.006112
+1378,425.073,2.35254,1.41107,1.40675,0.00432
+1379,477.835,2.09277,1.41136,1.40586,0.005504
+1380,567.392,1.76245,1.97062,1.96458,0.006048
+1381,394.149,2.53711,1.70605,1.70138,0.004672
+1382,480.526,2.08105,1.41235,1.40698,0.005376
+1383,552.543,1.80981,1.4111,1.40666,0.004448
+1384,495.105,2.01978,1.66688,1.66093,0.005952
+1385,388.246,2.57568,1.4111,1.40566,0.00544
+1386,564.032,1.77295,1.4113,1.40646,0.004832
+1387,534.935,1.86938,1.96576,1.96045,0.005312
+1388,314.738,3.17725,1.41517,1.41056,0.004608
+1389,783.773,1.27588,1.41155,1.40541,0.006144
+1390,550.908,1.81519,1.96346,1.95789,0.005568
+1391,412.487,2.42432,1.66541,1.65949,0.00592
+1392,474.349,2.10815,1.41155,1.40544,0.006112
+1393,549.135,1.82104,1.40493,1.40048,0.004448
+1394,534.865,1.86963,1.65888,1.65274,0.006144
+1395,402.2,2.48633,1.41123,1.40509,0.006144
+1396,517.498,1.93237,1.41101,1.4057,0.005312
+1397,546.862,1.82861,1.99274,1.98787,0.004864
+1398,411.782,2.42847,1.41264,1.40698,0.005664
+1399,505.991,1.97632,1.41178,1.40563,0.006144
+1400,517.433,1.93262,1.97664,1.97206,0.004576
+1401,426.178,2.34644,1.71418,1.70816,0.006016
+1402,465.772,2.14697,1.41194,1.40752,0.004416
+1403,435.143,2.2981,1.69574,1.69165,0.004096
+1404,560.558,1.78394,1.66515,1.66054,0.004608
+1405,432.478,2.31226,1.41274,1.40698,0.00576
+1406,549.209,1.8208,1.41312,1.40698,0.006144
+1407,497.752,2.00903,1.67962,1.67414,0.005472
+1408,475.615,2.10254,1.41226,1.40694,0.005312
+1409,496.605,2.01367,1.41107,1.4065,0.004576
+1410,550.982,1.81494,1.98064,1.97616,0.00448
+1411,348.033,2.87329,1.66685,1.6615,0.005344
+1412,583.31,1.71436,1.41107,1.40637,0.004704
+1413,560.865,1.78296,1.40326,1.3985,0.004768
+1414,493.316,2.0271,1.69802,1.69216,0.005856
+1415,428.631,2.33301,1.41002,1.40387,0.006144
+1416,530.158,1.88623,1.41235,1.40698,0.005376
+1417,569.839,1.75488,1.97325,1.96794,0.005312
+1418,378.593,2.64136,1.41981,1.41514,0.004672
+1419,486.576,2.05518,1.41213,1.40682,0.005312
+1420,576.495,1.73462,1.96534,1.95994,0.005408
+1421,416.345,2.40186,1.66506,1.66064,0.004416
+1422,471.889,2.11914,1.41136,1.40659,0.004768
+1423,575.119,1.73877,1.41101,1.40547,0.005536
+1424,459.811,2.1748,1.66442,1.65888,0.005536
+1425,379.963,2.63184,1.41274,1.40714,0.0056
+1426,368.412,2.71436,1.41165,1.40566,0.005984
+1427,874.093,1.14404,1.68045,1.67514,0.005312
+1428,436.534,2.29077,1.4121,1.40595,0.006144
+1429,508.252,1.96753,1.41229,1.40698,0.005312
+1430,496.665,2.01343,1.97472,1.97002,0.004704
+1431,420.146,2.38013,1.41107,1.4064,0.004672
+1432,481.146,2.07837,1.41251,1.40698,0.005536
+1433,529.404,1.88892,1.4111,1.4065,0.004608
+1434,410.997,2.43311,1.70656,1.7007,0.005856
+1435,467.42,2.1394,1.41293,1.40698,0.005952
+1436,550.908,1.81519,1.4127,1.40698,0.005728
+1437,516.585,1.93579,2.2352,2.2304,0.0048
+1438,370.914,2.69604,1.4111,1.40646,0.00464
+1439,540.013,1.85181,1.41155,1.40541,0.006144
+1440,457.296,2.18677,1.97718,1.97283,0.004352
+1441,324.719,3.07959,1.41107,1.4064,0.004672
+1442,716.084,1.39648,1.41136,1.40582,0.005536
+1443,534.656,1.87036,1.99117,1.98634,0.004832
+1444,409.969,2.43921,1.66746,1.66246,0.004992
+1445,449.813,2.22314,1.41251,1.4072,0.005312
+1446,543.885,1.83862,1.96342,1.95786,0.005568
+1447,414.072,2.41504,1.67968,1.66099,0.018688
+1448,403.07,2.48096,1.41146,1.40678,0.004672
+1449,637.808,1.56787,1.41238,1.40698,0.005408
+1450,516.129,1.9375,1.92925,1.92474,0.004512
+1451,376.229,2.65796,1.41139,1.40678,0.004608
+1452,542.588,1.84302,1.41114,1.40538,0.00576
+1453,513.734,1.94653,2.232,2.22618,0.005824
+1454,373.961,2.67407,1.4112,1.40534,0.005856
+1455,494.567,2.02197,1.41213,1.40682,0.005312
+1456,335.765,2.97827,1.96403,1.95914,0.004896
+1457,592.764,1.68701,1.41117,1.40525,0.00592
+1458,610.705,1.63745,1.4112,1.40634,0.004864
+1459,560.482,1.78418,1.69587,1.68992,0.005952
+1460,470.426,2.12573,1.66381,1.65789,0.00592
+1461,433.99,2.3042,1.41142,1.40662,0.0048
+1462,556.976,1.79541,1.4111,1.40666,0.004448
+1463,504.993,1.98022,2.24666,2.24214,0.004512
+1464,336.538,2.97144,1.41264,1.40698,0.005664
+1465,615.477,1.62476,1.41213,1.40682,0.005312
+1466,520.457,1.92139,1.97434,1.96902,0.005312
+1467,387.402,2.5813,1.41158,1.4071,0.00448
+1468,582.314,1.71729,1.41069,1.40538,0.005312
+1469,533.75,1.87354,1.9655,1.95994,0.005568
+1470,416.684,2.3999,1.66502,1.66016,0.004864
+1471,400,2.5,1.41267,1.40698,0.005696
+1472,595.089,1.68042,1.4097,1.40534,0.004352
+1473,523.384,1.91064,1.65875,1.65274,0.006016
+1474,381.556,2.62085,1.41242,1.40698,0.00544
+1475,543.885,1.83862,1.41302,1.40698,0.006048
+1476,495.704,2.01733,2.00896,2.00358,0.005376
+1477,416.768,2.39941,1.41824,1.41296,0.00528
+1478,421.659,2.37158,1.4111,1.40627,0.004832
+1479,542.229,1.84424,1.97478,1.97021,0.004576
+1480,469.026,2.13208,1.66618,1.66086,0.005312
+1481,464.189,2.1543,1.41149,1.4065,0.004992
+1482,536.055,1.86548,1.96435,1.96,0.004352
+1483,412.862,2.42212,1.67731,1.67226,0.005056
+1484,475.229,2.10425,1.41238,1.40698,0.005408
+1485,553.663,1.80615,1.41226,1.40694,0.005312
+1486,452.697,2.20898,2.24461,2.23846,0.006144
+1487,411.08,2.43262,1.41107,1.40634,0.004736
+1488,530.089,1.88647,1.41107,1.40662,0.004448
+1489,571.349,1.75024,1.96198,1.95696,0.005024
+1490,380.492,2.62817,1.4127,1.40698,0.005728
+1491,513.798,1.94629,1.41069,1.40499,0.005696
+1492,571.19,1.75073,1.96813,1.96336,0.004768
+1493,368.478,2.71387,1.66528,1.65984,0.00544
+1494,530.433,1.88525,1.41178,1.4056,0.006176
+1495,564.187,1.77246,1.41107,1.40493,0.006144
+1496,506.555,1.97412,1.67939,1.67389,0.005504
+1497,378.034,2.64526,1.41229,1.40698,0.005312
+1498,522.516,1.91382,1.41062,1.40502,0.0056
+1499,596.737,1.67578,1.97386,1.96813,0.005728
+1500,414.953,2.40991,1.41312,1.40858,0.004544
+1501,447.113,2.23657,1.4113,1.40554,0.00576
+1502,609.433,1.64087,1.41107,1.40602,0.005056
+1503,523.919,1.90869,1.67962,1.67466,0.00496
+1504,352.739,2.83496,1.41139,1.40592,0.005472
+1505,548.988,1.82153,1.41066,1.40493,0.005728
+1506,530.639,1.88452,1.6575,1.6527,0.0048
+1507,375.849,2.66064,1.41101,1.40493,0.00608
+1508,541.298,1.84741,1.4111,1.40662,0.00448
+1509,541.942,1.84521,2.0009,1.99597,0.004928
+1510,395.1,2.53101,1.41123,1.40634,0.004896
+1511,514.121,1.94507,1.41104,1.40502,0.006016
+1512,539.586,1.85327,1.69968,1.69386,0.005824
+1513,437.981,2.2832,1.70832,1.70272,0.0056
+1514,452.647,2.20923,1.41299,1.40698,0.006016
+1515,542.086,1.84473,1.41155,1.40563,0.00592
+1516,520.524,1.92114,2.22541,2.2201,0.005312
+1517,379.646,2.63403,1.41107,1.40672,0.004352
+1518,543.452,1.84009,1.41126,1.40634,0.004928
+1519,552.767,1.80908,1.9679,1.96218,0.005728
+1520,397.015,2.5188,1.41107,1.40493,0.006144
+1521,560.022,1.78564,1.41114,1.40586,0.00528
+1522,554.113,1.80469,1.41254,1.40698,0.005568
+1523,541.012,1.84839,1.4111,1.4057,0.005408
+1524,536.758,1.86304,1.41171,1.40557,0.006144
+1525,504.558,1.98193,1.4129,1.40698,0.00592
+1526,432.707,2.31104,1.41174,1.4056,0.006144
+1527,601.204,1.66333,1.41114,1.40499,0.006144
+1528,500.489,1.99805,1.4112,1.40586,0.005344
+1529,570.553,1.75269,1.41302,1.40698,0.006048
+1530,553.439,1.80688,1.40973,1.40381,0.00592
+1531,531.879,1.88013,1.41197,1.40586,0.006112
+1532,380.882,2.62549,1.41254,1.40698,0.005568
+1533,877.464,1.13965,1.4111,1.4065,0.004608
+1534,545.988,1.83154,1.40986,1.40506,0.0048
+1535,553.214,1.80762,1.41136,1.40522,0.006144
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..efeef78
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,1265.65,0.832302,0.334645,0.00566834,0.224801,0.00561916,0.00496228,0.00527509,0.0828243,0.00549444
+max_1024,1716.32,4.22864,0.635488,0.032768,0.52224,0.044768,0.023904,0.014336,0.129024,0.018528
+min_1024,236.483,0.582642,0.27616,0.004096,0.189184,0.004064,0.004096,0.004096,0.053952,0.004352
+512,1135.41,0.880737,0.32944,0.004512,0.243712,0.005504,0.004736,0.005376,0.06016,0.00544
+513,885.526,1.12927,0.337856,0.00544,0.252608,0.005888,0.004352,0.00576,0.057728,0.00608
+514,1320.23,0.757446,0.306976,0.0048,0.222368,0.004896,0.00416,0.005952,0.059104,0.005696
+515,985.089,1.01514,0.3256,0.006176,0.238688,0.004928,0.00416,0.00592,0.059616,0.006112
+516,969.927,1.03101,0.347808,0.004672,0.261408,0.004832,0.004096,0.006112,0.061312,0.005376
+517,1303.01,0.767456,0.324064,0.00464,0.237504,0.004096,0.005696,0.004544,0.06144,0.006144
+518,888.118,1.12598,0.550528,0.006048,0.419744,0.044768,0.006624,0.005536,0.062048,0.00576
+519,299.382,3.34021,0.338912,0.005088,0.251904,0.005536,0.004736,0.00544,0.061472,0.004736
+520,1265.17,0.790405,0.462848,0.006144,0.376832,0.005792,0.004448,0.005696,0.057792,0.006144
+521,917.049,1.09045,0.335872,0.006016,0.25408,0.005248,0.004896,0.005248,0.055456,0.004928
+522,1178.71,0.848389,0.313376,0.00576,0.228928,0.004896,0.004128,0.005984,0.059072,0.004608
+523,1276.81,0.783203,0.309248,0.006144,0.22528,0.005632,0.004608,0.005728,0.05728,0.004576
+524,605.469,1.65161,0.350944,0.006912,0.265472,0.004832,0.004096,0.006112,0.057408,0.006112
+525,236.483,4.22864,0.37744,0.004704,0.292672,0.004288,0.005536,0.004704,0.06048,0.005056
+526,792.11,1.26245,0.635488,0.004704,0.52224,0.03056,0.0056,0.0048,0.06144,0.006144
+527,986.988,1.01318,0.354336,0.005664,0.26672,0.005408,0.004832,0.005248,0.061888,0.004576
+528,1293.13,0.773315,0.319488,0.005728,0.23184,0.00544,0.0048,0.005376,0.0616,0.004704
+529,1116.08,0.895996,0.321664,0.005952,0.236928,0.004928,0.004096,0.006016,0.059168,0.004576
+530,1084.32,0.922241,0.313344,0.006144,0.227296,0.004128,0.005664,0.004576,0.060544,0.004992
+531,1010.24,0.989868,0.317728,0.005472,0.231616,0.004864,0.004096,0.00608,0.059456,0.006144
+532,1165.62,0.85791,0.31744,0.006144,0.231424,0.005824,0.005472,0.005088,0.057376,0.006112
+533,1327.5,0.753296,0.585184,0.005408,0.498528,0.007968,0.005568,0.004896,0.057344,0.005472
+534,646.414,1.547,0.335872,0.006176,0.251872,0.005888,0.004352,0.00576,0.057024,0.0048
+535,1345.82,0.743042,0.306496,0.00544,0.219968,0.00544,0.0048,0.00528,0.059584,0.005984
+536,1377.96,0.725708,0.284672,0.005728,0.199072,0.004192,0.005792,0.004352,0.060768,0.004768
+537,1407.8,0.710327,0.291936,0.006048,0.2064,0.00464,0.005344,0.004896,0.059296,0.005312
+538,1052.82,0.949829,0.287872,0.005632,0.200416,0.004896,0.004096,0.005952,0.061472,0.005408
+539,1273.63,0.785156,0.294912,0.006144,0.206016,0.004928,0.004096,0.005984,0.063072,0.004672
+540,1604.7,0.623169,0.311264,0.004672,0.223136,0.004192,0.005632,0.004608,0.063488,0.005536
+541,1088.35,0.918823,0.606656,0.004512,0.484512,0.037728,0.005696,0.004544,0.065248,0.004416
+542,759.785,1.31616,0.342016,0.00608,0.249952,0.004064,0.005856,0.004384,0.066976,0.004704
+543,1094.31,0.913818,0.313376,0.00464,0.225312,0.005728,0.00448,0.005632,0.061952,0.005632
+544,1223.6,0.817261,0.302976,0.006144,0.214784,0.004352,0.005472,0.004768,0.06144,0.006016
+545,1341.19,0.745605,0.313408,0.005408,0.226112,0.005088,0.004896,0.00432,0.06144,0.006144
+546,1379.82,0.724731,0.305632,0.004576,0.219136,0.00592,0.00432,0.005792,0.059744,0.006144
+547,1086.33,0.920532,0.290816,0.006176,0.204192,0.004672,0.005184,0.005056,0.060864,0.004672
+548,1181.08,0.84668,0.342112,0.005408,0.256832,0.005472,0.004768,0.005376,0.05824,0.006016
+549,973.268,1.02747,0.591904,0.006144,0.47104,0.008128,0.005568,0.004736,0.091776,0.004512
+550,1080.17,0.925781,0.284672,0.00608,0.202816,0.005536,0.004704,0.00544,0.053952,0.006144
+551,1452.22,0.688599,0.290592,0.005536,0.207456,0.005344,0.004864,0.005248,0.056224,0.00592
+552,1362.61,0.733887,0.286496,0.005408,0.201536,0.005504,0.004736,0.005376,0.058112,0.005824
+553,1381.68,0.723755,0.2888,0.006144,0.202752,0.005536,0.004704,0.005312,0.058176,0.006176
+554,1502.02,0.665771,0.288672,0.004704,0.2048,0.005248,0.004864,0.005248,0.058368,0.00544
+555,1447.61,0.690796,0.464416,0.00592,0.379104,0.004096,0.005888,0.004352,0.059392,0.005664
+556,922.419,1.08411,0.295104,0.004672,0.210816,0.004224,0.005568,0.004672,0.059392,0.00576
+557,1647.96,0.606812,0.283552,0.004992,0.198208,0.004544,0.00528,0.00496,0.060416,0.005152
+558,733.262,1.36377,0.297248,0.006656,0.210944,0.005632,0.004608,0.005472,0.058016,0.00592
+559,1444.03,0.692505,0.285856,0.006144,0.200608,0.004192,0.0056,0.00464,0.05936,0.005312
+560,1222.69,0.817871,0.300544,0.005408,0.219584,0.004384,0.005408,0.004832,0.055296,0.005632
+561,1558.3,0.641724,0.28688,0.005472,0.205024,0.004704,0.004096,0.006144,0.056352,0.005088
+562,1180.4,0.847168,0.300352,0.006016,0.21472,0.004544,0.00528,0.00496,0.059168,0.005664
+563,1447.09,0.69104,0.507296,0.00464,0.423744,0.004096,0.00576,0.00448,0.059232,0.005344
+564,1112.59,0.898804,0.28464,0.006016,0.20288,0.0056,0.00464,0.00544,0.053952,0.006112
+565,1433.67,0.69751,0.306528,0.005472,0.225056,0.004928,0.004256,0.005696,0.055712,0.005408
+566,1233.55,0.810669,0.293856,0.005088,0.212256,0.004832,0.004192,0.006048,0.05648,0.00496
+567,772.976,1.2937,0.319648,0.008192,0.23472,0.004896,0.004096,0.006016,0.057152,0.004576
+568,1275.42,0.784058,0.28816,0.005376,0.20576,0.005248,0.004864,0.005248,0.056288,0.005376
+569,1570.55,0.636719,0.284352,0.006144,0.202656,0.004192,0.005632,0.004608,0.055296,0.005824
+570,1318.1,0.758667,0.28624,0.004384,0.203904,0.004928,0.00416,0.006144,0.056832,0.005888
+571,1649.95,0.606079,0.27616,0.005472,0.193248,0.005536,0.004704,0.005472,0.055968,0.00576
+572,1195.74,0.836304,0.278816,0.004544,0.198464,0.004288,0.005504,0.004736,0.055296,0.005984
+573,1289.67,0.775391,0.31104,0.005888,0.22752,0.00416,0.005632,0.004608,0.057344,0.005888
+574,1264.39,0.790894,0.311424,0.005408,0.229536,0.0048,0.004128,0.006112,0.056416,0.005024
+575,734.643,1.36121,0.488608,0.00784,0.396768,0.004992,0.006144,0.00528,0.062272,0.005312
+576,1441.24,0.693848,0.294944,0.005952,0.20704,0.0056,0.00464,0.0056,0.061568,0.004544
+577,1381.22,0.723999,0.31136,0.004736,0.223232,0.0056,0.00464,0.005472,0.062112,0.005568
+578,1371.73,0.729004,0.292416,0.005408,0.20352,0.005536,0.004704,0.00544,0.062144,0.005664
+579,1368.3,0.730835,0.313344,0.006112,0.2232,0.005536,0.004768,0.005344,0.06224,0.006144
+580,1335.07,0.749023,0.524672,0.00544,0.435168,0.005856,0.004384,0.005728,0.06352,0.004576
+581,1111.99,0.899292,0.299616,0.004704,0.210944,0.006144,0.004096,0.006112,0.0632,0.004416
+582,1395.33,0.716675,0.305152,0.005728,0.2128,0.004704,0.004192,0.006048,0.065536,0.006144
+583,1139.36,0.877686,0.318016,0.004672,0.229376,0.00544,0.0048,0.00528,0.063616,0.004832
+584,732.737,1.36475,0.304544,0.00784,0.213344,0.005888,0.004352,0.00576,0.061824,0.005536
+585,1319.59,0.757812,0.30784,0.004736,0.221216,0.005184,0.005024,0.005696,0.061152,0.004832
+586,1485.4,0.673218,0.29696,0.0056,0.207392,0.005376,0.004864,0.005248,0.06352,0.00496
+587,1351.59,0.739868,0.307392,0.005056,0.216352,0.004832,0.004096,0.006112,0.065568,0.005376
+588,1181.42,0.846436,0.29904,0.006144,0.202752,0.004096,0.00576,0.00448,0.071232,0.004576
+589,1320.65,0.757202,0.323968,0.004672,0.227296,0.005824,0.004416,0.005664,0.070112,0.005984
+590,1339.88,0.746338,0.319488,0.006144,0.227328,0.004096,0.005856,0.004384,0.066624,0.005056
+591,717.087,1.39453,0.327136,0.005568,0.229056,0.00496,0.005504,0.004768,0.07168,0.0056
+592,1296.2,0.771484,0.3304,0.007136,0.229344,0.005504,0.004736,0.005408,0.072416,0.005856
+593,1351.15,0.740112,0.31216,0.005024,0.21504,0.004096,0.00576,0.00448,0.07168,0.00608
+594,1199.41,0.83374,0.294848,0.006048,0.199808,0.004896,0.004288,0.005856,0.067872,0.00608
+595,1266.74,0.789429,0.313344,0.005408,0.225216,0.004896,0.004256,0.005888,0.061696,0.005984
+596,1618.01,0.618042,0.29696,0.006016,0.206976,0.005504,0.004736,0.005376,0.06336,0.004992
+597,1120.04,0.892822,0.306176,0.00512,0.21904,0.004192,0.0056,0.00464,0.062912,0.004672
+598,1318.1,0.758667,0.313696,0.005504,0.224192,0.005376,0.004864,0.00528,0.063904,0.004576
+599,981.313,1.01904,0.367712,0.005792,0.275872,0.005056,0.004096,0.005952,0.0656,0.005344
+600,824.228,1.21326,0.313344,0.007968,0.219392,0.005472,0.004736,0.005408,0.065504,0.004864
+601,903.098,1.1073,0.319904,0.004672,0.231264,0.004096,0.005728,0.004512,0.065024,0.004608
+602,1373.11,0.728271,0.31952,0.006016,0.229504,0.004096,0.005792,0.004448,0.064832,0.004832
+603,1548,0.645996,0.289152,0.005824,0.197472,0.00576,0.00448,0.005632,0.064,0.005984
+604,1340.75,0.74585,0.290496,0.005952,0.198848,0.00544,0.0048,0.005312,0.064352,0.005792
+605,1083.17,0.923218,0.29584,0.005024,0.204288,0.004608,0.005216,0.005024,0.065536,0.006144
+606,1363.97,0.733154,0.292864,0.00544,0.19936,0.005696,0.004544,0.0056,0.06608,0.006144
+607,1463.64,0.683228,0.294912,0.006112,0.201856,0.00496,0.00416,0.00592,0.067392,0.004512
+608,614.231,1.62805,0.315712,0.006656,0.204608,0.02048,0.005632,0.005792,0.06752,0.005024
+609,1491.35,0.670532,0.296544,0.00592,0.20416,0.004928,0.004128,0.005984,0.065696,0.005728
+610,1435.43,0.696655,0.2872,0.004576,0.19664,0.00512,0.004896,0.005824,0.06528,0.004864
+611,1540.72,0.649048,0.288352,0.006016,0.196736,0.005312,0.004864,0.005248,0.064448,0.005728
+612,1281.6,0.780273,0.308768,0.005792,0.219488,0.005696,0.004544,0.005568,0.062016,0.005664
+613,1307.16,0.765015,0.290688,0.006144,0.200704,0.005408,0.004832,0.00528,0.062304,0.006016
+614,1160.5,0.861694,0.29296,0.00608,0.202816,0.004096,0.005728,0.004544,0.06512,0.004576
+615,1500.37,0.666504,0.31136,0.005408,0.221088,0.004896,0.004192,0.00592,0.064928,0.004928
+616,1423.46,0.702515,0.29696,0.006144,0.2048,0.005856,0.004384,0.005728,0.063904,0.006144
+617,709.756,1.40894,0.31744,0.008224,0.2232,0.005856,0.004384,0.00576,0.063872,0.006144
+618,1316.41,0.759644,0.295872,0.005056,0.204832,0.005408,0.0048,0.005312,0.0656,0.004864
+619,1456.87,0.686401,0.292864,0.006016,0.199968,0.004928,0.004128,0.005984,0.065696,0.006144
+620,1479.5,0.675903,0.286784,0.005408,0.198848,0.004832,0.004128,0.006112,0.06144,0.006016
+621,900.121,1.11096,0.516032,0.005376,0.43088,0.004096,0.005728,0.004512,0.059392,0.006048
+622,1327.93,0.753052,0.286848,0.005472,0.199648,0.005792,0.004416,0.005728,0.059808,0.005984
+623,1499.54,0.66687,0.29344,0.004672,0.210944,0.005632,0.004608,0.005504,0.05696,0.00512
+624,1257.79,0.795044,0.534528,0.006048,0.43808,0.006432,0.006144,0.005376,0.066304,0.006144
+625,966.38,1.03479,0.292864,0.005888,0.200192,0.004864,0.004096,0.006016,0.065664,0.006144
+626,1442,0.693481,0.294208,0.005472,0.201376,0.005504,0.004736,0.005376,0.066304,0.00544
+627,1305.29,0.766113,0.295648,0.0048,0.200704,0.004096,0.005728,0.004512,0.061088,0.01472
+628,1495.98,0.668457,0.30336,0.004544,0.212992,0.004096,0.005664,0.004576,0.065536,0.005952
+629,1419.76,0.704346,0.290016,0.00576,0.198624,0.004512,0.005312,0.004928,0.065472,0.005408
+630,1188.8,0.841187,0.470176,0.005664,0.378528,0.004928,0.004096,0.00608,0.065504,0.005376
+631,1236.53,0.808716,0.30512,0.005376,0.211712,0.005728,0.004512,0.005632,0.066048,0.006112
+632,1408.29,0.710083,0.299392,0.0048,0.20672,0.004224,0.005568,0.004672,0.067584,0.005824
+633,1026.05,0.974609,0.544768,0.006144,0.423936,0.03664,0.0056,0.004864,0.061472,0.006112
+634,1143.34,0.874634,0.289248,0.004768,0.202528,0.004128,0.005664,0.004576,0.062528,0.005056
+635,1387.77,0.720581,0.299168,0.005056,0.2048,0.005696,0.004544,0.005664,0.068032,0.005376
+636,1283.41,0.779175,0.294528,0.006144,0.202176,0.004672,0.005152,0.005088,0.065536,0.00576
+637,1355.84,0.737549,0.321696,0.006112,0.228736,0.004768,0.004096,0.006144,0.067264,0.004576
+638,1364.88,0.732666,0.306336,0.005408,0.21376,0.005408,0.0048,0.005312,0.065984,0.005664
+639,1180.4,0.847168,0.301376,0.00464,0.216096,0.004928,0.004256,0.005856,0.05968,0.00592
+640,1264.98,0.790527,0.313856,0.004672,0.225216,0.004096,0.00576,0.00448,0.063488,0.006144
+641,720.239,1.38843,0.384864,0.020736,0.27552,0.004896,0.004256,0.005856,0.067872,0.005728
+642,1015.87,0.984375,0.314656,0.008192,0.225184,0.004192,0.005632,0.004608,0.06144,0.005408
+643,1291.71,0.77417,0.295968,0.006144,0.202752,0.00576,0.00448,0.005632,0.065824,0.005376
+644,1509.77,0.662354,0.296672,0.005568,0.205376,0.004096,0.005856,0.004384,0.065536,0.005856
+645,1431.92,0.698364,0.294912,0.006048,0.202848,0.004096,0.005824,0.004416,0.066848,0.004832
+646,1345.16,0.743408,0.299008,0.006176,0.206816,0.005216,0.004864,0.004256,0.065536,0.006144
+647,1225.8,0.815796,0.301664,0.005152,0.208864,0.005664,0.004576,0.005536,0.066144,0.005728
+648,1062.93,0.940796,0.31904,0.005888,0.227584,0.005536,0.004704,0.00544,0.064192,0.005696
+649,1358.09,0.736328,0.331584,0.006144,0.23952,0.004192,0.005632,0.004608,0.065536,0.005952
+650,997.929,1.00208,0.517408,0.028672,0.393216,0.006144,0.005632,0.004608,0.073728,0.005408
+651,1149.59,0.869873,0.322336,0.005024,0.220864,0.004416,0.005376,0.004864,0.075776,0.006016
+652,1417.55,0.705444,0.30432,0.006144,0.206336,0.004608,0.005312,0.004928,0.071584,0.005408
+653,1371.05,0.72937,0.308928,0.004672,0.212256,0.004832,0.005632,0.004608,0.071552,0.005376
+654,1462.6,0.683716,0.297056,0.005504,0.199072,0.004416,0.005344,0.004896,0.072928,0.004896
+655,1402.5,0.713013,0.528384,0.005664,0.428512,0.005728,0.004512,0.0056,0.07344,0.004928
+656,1089.65,0.917725,0.286688,0.005632,0.190976,0.005216,0.004896,0.004256,0.0696,0.006112
+657,1382.85,0.723145,0.300256,0.006144,0.202592,0.004256,0.005536,0.004704,0.07168,0.005344
+658,1241.02,0.805786,0.54272,0.005664,0.424416,0.03072,0.005696,0.004544,0.066848,0.004832
+659,731.298,1.36743,0.316768,0.006176,0.221152,0.00528,0.004896,0.005216,0.068576,0.005472
+660,1399.86,0.714355,0.2992,0.004672,0.206048,0.004768,0.004096,0.006144,0.067584,0.005888
+661,1536.96,0.650635,0.304992,0.004928,0.208896,0.005536,0.004704,0.005536,0.069984,0.005408
+662,1344.49,0.743774,0.29088,0.005408,0.195392,0.005888,0.004352,0.005728,0.068,0.006112
+663,1562.17,0.640137,0.295616,0.0048,0.200704,0.00512,0.004896,0.005408,0.069696,0.004992
+664,1187.07,0.842407,0.294816,0.006048,0.200704,0.005664,0.004576,0.005376,0.067744,0.004704
+665,1138.57,0.878296,0.306336,0.006144,0.208896,0.005504,0.004736,0.005408,0.070304,0.005344
+666,1458.69,0.685547,0.317472,0.005472,0.221888,0.005344,0.004832,0.005248,0.068576,0.006112
+667,711.543,1.4054,0.315392,0.007968,0.217312,0.0056,0.00464,0.005504,0.069408,0.00496
+668,1445.05,0.692017,0.294752,0.006144,0.198432,0.00432,0.005504,0.004736,0.069632,0.005984
+669,1431.42,0.698608,0.297024,0.004992,0.200544,0.004256,0.005536,0.004704,0.071584,0.005408
+670,1363.74,0.733276,0.298976,0.00496,0.202784,0.005568,0.004672,0.005408,0.070208,0.005376
+671,1520.42,0.657715,0.292832,0.006144,0.200032,0.004768,0.004096,0.006144,0.065536,0.006112
+672,1210.94,0.825806,0.290528,0.005696,0.197056,0.005664,0.00432,0.004352,0.067584,0.005856
+673,1261.47,0.792725,0.289024,0.00512,0.19664,0.005504,0.004736,0.005408,0.06624,0.005376
+674,1381.92,0.723633,0.294912,0.005504,0.202624,0.004864,0.004096,0.006048,0.066912,0.004864
+675,1332.9,0.750244,0.54832,0.005728,0.419424,0.039744,0.006144,0.005472,0.066208,0.0056
+676,890.145,1.12341,0.286848,0.005472,0.197408,0.005568,0.004672,0.005408,0.063392,0.004928
+677,1436.19,0.696289,0.2888,0.00544,0.19936,0.005504,0.004736,0.005248,0.063936,0.004576
+678,1278.2,0.782349,0.284512,0.004512,0.195744,0.004896,0.00416,0.006144,0.063488,0.005568
+679,996.23,1.00378,0.3072,0.005632,0.2176,0.005216,0.005024,0.00528,0.063552,0.004896
+680,784.599,1.27454,0.289696,0.00512,0.200704,0.004096,0.005728,0.004512,0.06352,0.006016
+681,1622.18,0.616455,0.292544,0.0048,0.202592,0.004256,0.005536,0.004704,0.065312,0.005344
+682,1173.13,0.852417,0.331776,0.005856,0.243232,0.004736,0.004256,0.005792,0.06192,0.005984
+683,1424.94,0.701782,0.297696,0.005024,0.206784,0.00416,0.005632,0.004608,0.065536,0.005952
+684,621.737,1.6084,0.31744,0.007616,0.228992,0.00496,0.004192,0.005888,0.0608,0.004992
+685,1422.96,0.702759,0.292864,0.00576,0.205184,0.005344,0.004864,0.005248,0.06032,0.006144
+686,1595.95,0.626587,0.288672,0.004864,0.200736,0.005088,0.004896,0.00432,0.063328,0.00544
+687,1318.1,0.758667,0.289504,0.004672,0.202528,0.00432,0.005472,0.004768,0.063168,0.004576
+688,1499.27,0.666992,0.280608,0.005472,0.194848,0.004512,0.00528,0.00496,0.060672,0.004864
+689,1045.43,0.956543,0.2864,0.006144,0.196608,0.005664,0.004576,0.005568,0.062016,0.005824
+690,1493.8,0.669434,0.294976,0.00544,0.20768,0.005216,0.004864,0.004256,0.06144,0.00608
+691,1381.22,0.723999,0.284896,0.004768,0.196576,0.004096,0.005792,0.00448,0.063456,0.005728
+692,647.231,1.54504,0.30576,0.006784,0.217056,0.00576,0.00448,0.005568,0.060992,0.00512
+693,1374.04,0.727783,0.287264,0.004992,0.200704,0.00576,0.00448,0.005632,0.059904,0.005792
+694,1461.29,0.684326,0.281088,0.005056,0.194304,0.004352,0.005472,0.004768,0.06144,0.005696
+695,1563.06,0.639771,0.285792,0.005472,0.19728,0.004096,0.006144,0.0056,0.06176,0.00544
+696,1237.65,0.807983,0.2864,0.00544,0.197312,0.004096,0.005856,0.004384,0.063488,0.005824
+697,1146.38,0.872314,0.292864,0.006144,0.202752,0.00576,0.00448,0.005664,0.062976,0.005088
+698,1339.22,0.746704,0.296384,0.00576,0.205184,0.006016,0.004224,0.005856,0.063776,0.005568
+699,1557.71,0.641968,0.298688,0.005504,0.209536,0.00576,0.00448,0.006144,0.06144,0.005824
+700,621.312,1.6095,0.31744,0.008064,0.227456,0.004096,0.005824,0.004416,0.06304,0.004544
+701,1266.15,0.789795,0.292768,0.005408,0.203616,0.004096,0.005824,0.004416,0.063488,0.00592
+702,1293.95,0.772827,0.301984,0.004832,0.214912,0.004224,0.005568,0.004672,0.063104,0.004672
+703,1291.91,0.774048,0.314048,0.004736,0.227328,0.005312,0.004896,0.005216,0.061984,0.004576
+704,1540.43,0.64917,0.289376,0.004704,0.202752,0.005568,0.004672,0.005408,0.060128,0.006144
+705,1454.29,0.687622,0.468064,0.005792,0.379232,0.004096,0.005792,0.004448,0.06336,0.005344
+706,973.847,1.02686,0.299712,0.004768,0.212992,0.00544,0.0048,0.005248,0.061696,0.004768
+707,1629.92,0.613525,0.29104,0.005408,0.201664,0.005344,0.004864,0.00528,0.064096,0.004384
+708,602.486,1.65979,0.307232,0.008192,0.217088,0.004096,0.005728,0.004512,0.062912,0.004704
+709,1716.32,0.582642,0.28912,0.004896,0.198688,0.005344,0.004864,0.00528,0.064352,0.005696
+710,1277.21,0.782959,0.307008,0.004672,0.218112,0.004928,0.00416,0.005952,0.063552,0.005632
+711,1480.57,0.675415,0.284768,0.005792,0.196192,0.004864,0.004096,0.00608,0.063168,0.004576
+712,1439.72,0.69458,0.288256,0.005568,0.197216,0.005568,0.00464,0.006144,0.063488,0.005632
+713,1509.77,0.662354,0.465056,0.00464,0.376832,0.004096,0.005856,0.004416,0.063456,0.00576
+714,1138.89,0.878052,0.28112,0.00496,0.19248,0.005312,0.004736,0.005984,0.061792,0.005856
+715,737.885,1.35522,0.294816,0.006144,0.204672,0.004224,0.0056,0.00464,0.063488,0.006048
+716,1007.13,0.99292,0.540032,0.032768,0.419776,0.0056,0.004704,0.006112,0.065568,0.005504
+717,1264.78,0.790649,0.292768,0.004864,0.20224,0.004608,0.005216,0.005024,0.065408,0.005408
+718,1309.04,0.763916,0.291936,0.005664,0.20064,0.00464,0.005152,0.005088,0.065376,0.005376
+719,1567.25,0.638062,0.28672,0.00544,0.195264,0.004096,0.005888,0.004352,0.065536,0.006144
+720,1287.44,0.776733,0.29008,0.005824,0.198496,0.004576,0.005216,0.005024,0.065536,0.005408
+721,1438.45,0.69519,0.32768,0.005472,0.23824,0.004096,0.00576,0.00448,0.064896,0.004736
+722,1108.98,0.901733,0.290816,0.005952,0.198848,0.005152,0.004896,0.004288,0.066752,0.004928
+723,1371.05,0.72937,0.292864,0.005664,0.20096,0.00432,0.005472,0.004768,0.065536,0.006144
+724,1111.68,0.899536,0.557248,0.005408,0.419936,0.039776,0.010144,0.005216,0.070656,0.006112
+725,1006.51,0.99353,0.298976,0.005376,0.201696,0.005472,0.004768,0.00592,0.069856,0.005888
+726,1371.05,0.72937,0.296864,0.006144,0.200448,0.004352,0.00544,0.0048,0.069632,0.006048
+727,1536.38,0.650879,0.29584,0.005024,0.198656,0.005472,0.004768,0.006016,0.070784,0.00512
+728,1410.95,0.70874,0.290912,0.005568,0.195136,0.004096,0.005728,0.004512,0.071328,0.004544
+729,1406.35,0.71106,0.295936,0.005952,0.198752,0.004192,0.005632,0.004608,0.071456,0.005344
+730,1382.85,0.723145,0.467104,0.005408,0.375648,0.00528,0.004832,0.004224,0.067072,0.00464
+731,1173.81,0.851929,0.290848,0.006112,0.198688,0.005696,0.004544,0.005568,0.065632,0.004608
+732,1176.34,0.850098,0.320096,0.004736,0.2232,0.005568,0.004672,0.005408,0.070368,0.006144
+733,1485.4,0.673218,0.553248,0.005024,0.456704,0.008192,0.006016,0.004256,0.067552,0.005504
+734,733.524,1.36328,0.30736,0.005408,0.215616,0.004416,0.005376,0.004864,0.066752,0.004928
+735,1505.33,0.664307,0.301056,0.005888,0.207008,0.004192,0.0056,0.00464,0.067584,0.006144
+736,1470.47,0.680054,0.295584,0.00496,0.200736,0.004064,0.005856,0.004384,0.069632,0.005952
+737,1458.95,0.685425,0.294112,0.006176,0.196576,0.005696,0.004544,0.0056,0.070176,0.005344
+738,1371.05,0.72937,0.312416,0.005792,0.217024,0.004512,0.005312,0.004928,0.069504,0.005344
+739,1128.53,0.886108,0.303328,0.006144,0.2048,0.00592,0.00432,0.005792,0.071776,0.004576
+740,1148.95,0.870361,0.299008,0.005632,0.203168,0.004192,0.005632,0.004608,0.070688,0.005088
+741,1611.65,0.620483,0.305184,0.006144,0.20272,0.004128,0.005888,0.004352,0.077088,0.004864
+742,750.802,1.33191,0.313376,0.007552,0.210784,0.004896,0.004096,0.006048,0.073824,0.006176
+743,1419.27,0.70459,0.2936,0.004832,0.192512,0.005312,0.004896,0.005248,0.076224,0.004576
+744,1537.83,0.650269,0.30144,0.004896,0.198656,0.005728,0.004512,0.006144,0.075552,0.005952
+745,1295.38,0.771973,0.299136,0.00544,0.195296,0.004192,0.005632,0.004608,0.079104,0.004864
+746,1513.39,0.660767,0.296576,0.005632,0.194848,0.00432,0.005888,0.004352,0.075776,0.00576
+747,1308.42,0.764282,0.296064,0.00512,0.191552,0.004928,0.004224,0.005568,0.08,0.004672
+748,1166.29,0.857422,0.30528,0.005408,0.198656,0.004864,0.004096,0.007264,0.080416,0.004576
+749,1090.23,0.917236,0.306848,0.00544,0.19936,0.004096,0.005824,0.004448,0.081888,0.005792
+750,1531.21,0.653076,0.321952,0.004672,0.216928,0.005696,0.004544,0.005568,0.07968,0.004864
+751,1317.04,0.759277,0.552384,0.00576,0.448064,0.006976,0.00576,0.00448,0.075776,0.005568
+752,828.144,1.20752,0.323616,0.005952,0.219328,0.004096,0.005888,0.004352,0.078976,0.005024
+753,834.641,1.19812,0.304704,0.005984,0.198144,0.004768,0.004128,0.006112,0.079872,0.005696
+754,1415.34,0.706543,0.313344,0.006016,0.20608,0.004928,0.00416,0.005984,0.081536,0.00464
+755,1321.5,0.756714,0.493568,0.006048,0.388448,0.004864,0.004128,0.006112,0.077888,0.00608
+756,1127.13,0.887207,0.316736,0.006048,0.208896,0.005792,0.004448,0.005632,0.080384,0.005536
+757,947.49,1.05542,0.313344,0.006144,0.206848,0.005856,0.004384,0.005728,0.07824,0.006144
+758,740.085,1.3512,0.315872,0.006784,0.210624,0.004416,0.0056,0.00464,0.077824,0.005984
+759,1394.62,0.717041,0.307584,0.004512,0.198624,0.005152,0.004896,0.004288,0.085184,0.004928
+760,1418.53,0.704956,0.298656,0.005568,0.190144,0.004928,0.004192,0.006016,0.082016,0.005792
+761,1503.95,0.664917,0.301504,0.004832,0.19824,0.004512,0.00528,0.00496,0.077824,0.005856
+762,1385.89,0.721558,0.294656,0.006144,0.1944,0.004256,0.005536,0.004704,0.073728,0.005888
+763,1301.76,0.768188,0.296576,0.0056,0.201248,0.005152,0.005088,0.005376,0.068352,0.00576
+764,1136.52,0.879883,0.291808,0.00512,0.190464,0.005824,0.004384,0.006144,0.073728,0.006144
+765,1422.96,0.702759,0.297952,0.005088,0.201792,0.004928,0.004224,0.005888,0.069888,0.006144
+766,1332.9,0.750244,0.306624,0.00576,0.205184,0.005376,0.004864,0.00528,0.074592,0.005568
+767,871.953,1.14685,0.309376,0.00752,0.209632,0.004128,0.005792,0.004416,0.07328,0.004608
+768,1446.84,0.691162,0.313824,0.00512,0.212992,0.005632,0.004576,0.005536,0.074336,0.005632
+769,1311.98,0.762207,0.293504,0.004736,0.19664,0.00512,0.004896,0.00432,0.073056,0.004736
+770,1495.16,0.668823,0.300128,0.005952,0.198848,0.00528,0.004832,0.006304,0.0736,0.005312
+771,1384.72,0.722168,0.296576,0.004736,0.200512,0.005568,0.004672,0.00544,0.070304,0.005344
+772,807.89,1.23779,0.491712,0.005472,0.39184,0.005152,0.005088,0.005696,0.073888,0.004576
+773,1346.26,0.742798,0.32144,0.005664,0.223712,0.005472,0.004768,0.005568,0.070208,0.006048
+774,1217.06,0.821655,0.327392,0.005792,0.231584,0.004288,0.005504,0.004736,0.069632,0.005856
+775,924.605,1.08154,0.50032,0.006752,0.393216,0.006016,0.0056,0.004768,0.078944,0.005024
+776,1105.09,0.904907,0.315392,0.00576,0.21072,0.004704,0.005216,0.005024,0.078848,0.00512
+777,1422.72,0.702881,0.30608,0.005024,0.2048,0.004096,0.005728,0.004512,0.075776,0.006144
+778,1281.8,0.780151,0.299008,0.005568,0.205376,0.00608,0.00416,0.00592,0.067328,0.004576
+779,1473.12,0.678833,0.296576,0.004672,0.20416,0.004736,0.004096,0.006144,0.067232,0.005536
+780,1384.95,0.722046,0.472544,0.006144,0.378816,0.004352,0.005952,0.005536,0.066144,0.0056
+781,1124.66,0.88916,0.290144,0.00544,0.196672,0.004736,0.00416,0.00608,0.067584,0.005472
+782,1247.83,0.801392,0.3032,0.0056,0.202848,0.004896,0.00512,0.00512,0.073728,0.005888
+783,1426.18,0.701172,0.299008,0.005408,0.20352,0.005248,0.004896,0.005216,0.069696,0.005024
+784,639.9,1.56274,0.309024,0.00752,0.209664,0.00592,0.00432,0.005792,0.069984,0.005824
+785,1343.39,0.744385,0.299008,0.006144,0.196608,0.005312,0.004864,0.005248,0.074688,0.006144
+786,1456.1,0.686768,0.290816,0.006144,0.1936,0.00496,0.004192,0.006144,0.071136,0.00464
+787,1499.27,0.666992,0.294944,0.005952,0.192704,0.005536,0.004704,0.005408,0.07568,0.00496
+788,1249.35,0.800415,0.31696,0.005408,0.215392,0.004544,0.004096,0.006144,0.075776,0.0056
+789,1174.14,0.851685,0.299008,0.004992,0.198688,0.00576,0.004448,0.005664,0.074048,0.005408
+790,828.144,1.20752,0.29888,0.005472,0.19936,0.005856,0.004384,0.005696,0.072128,0.005984
+791,1191.74,0.839111,0.5448,0.005952,0.424,0.024704,0.00608,0.005312,0.07408,0.004672
+792,904.993,1.10498,0.306848,0.006144,0.20832,0.004672,0.005152,0.005088,0.07168,0.005792
+793,1213.45,0.824097,0.354976,0.004672,0.256,0.005824,0.004416,0.005696,0.073792,0.004576
+794,1320.86,0.75708,0.301312,0.006144,0.201984,0.004864,0.004096,0.006048,0.073504,0.004672
+795,1581.47,0.632324,0.303104,0.00544,0.19936,0.005504,0.004768,0.00544,0.07648,0.006112
+796,1267.52,0.78894,0.478944,0.005632,0.377344,0.005472,0.004768,0.005888,0.073984,0.005856
+797,1180.74,0.846924,0.29744,0.004544,0.196608,0.004096,0.005888,0.004352,0.076928,0.005024
+798,1301.14,0.768555,0.327744,0.005792,0.223584,0.005472,0.004768,0.005344,0.078208,0.004576
+799,1319.59,0.757812,0.541088,0.004512,0.43008,0.016384,0.006048,0.005248,0.074144,0.004672
+800,862.316,1.15967,0.298688,0.006144,0.197888,0.004864,0.004096,0.00608,0.073792,0.005824
+801,1396.28,0.716187,0.299136,0.005472,0.197376,0.00592,0.00432,0.00576,0.0752,0.005088
+802,1352.04,0.739624,0.290816,0.006176,0.198624,0.005664,0.004576,0.005504,0.065376,0.004896
+803,1590.37,0.628784,0.2896,0.004928,0.198656,0.004096,0.005696,0.004544,0.065536,0.006144
+804,1373.81,0.727905,0.295104,0.005088,0.196608,0.005664,0.004576,0.006144,0.07168,0.005344
+805,1464.69,0.682739,0.472064,0.004864,0.377088,0.00528,0.004928,0.005216,0.068544,0.006144
+806,1124.81,0.889038,0.285184,0.004672,0.1904,0.005344,0.004896,0.005216,0.068544,0.006112
+807,1545.95,0.646851,0.2944,0.00592,0.198176,0.0048,0.004128,0.006112,0.069632,0.005632
+808,1286.23,0.777466,0.575584,0.00544,0.484128,0.007328,0.004992,0.005824,0.063392,0.00448
+809,755.51,1.32361,0.314976,0.005408,0.224096,0.005152,0.004896,0.004256,0.065536,0.005632
+810,1617.37,0.618286,0.288384,0.00544,0.197312,0.005216,0.004864,0.004256,0.065536,0.00576
+811,1497.62,0.667725,0.288768,0.005504,0.199392,0.004192,0.0056,0.00464,0.063488,0.005952
+812,1393.2,0.717773,0.285344,0.004768,0.194112,0.004544,0.005248,0.004992,0.066784,0.004896
+813,1468.63,0.680908,0.28448,0.005376,0.193408,0.005504,0.004736,0.00592,0.063712,0.005824
+814,1299.08,0.769775,0.467136,0.005472,0.379456,0.004384,0.005504,0.004736,0.062624,0.00496
+815,980.139,1.02026,0.294816,0.004672,0.201888,0.004928,0.005536,0.004736,0.067584,0.005472
+816,1703.47,0.587036,0.304928,0.005824,0.209216,0.005888,0.004352,0.005792,0.067936,0.00592
+817,1456.87,0.686401,0.291776,0.005056,0.197696,0.004832,0.00432,0.0056,0.069568,0.004704
+818,733.984,1.36243,0.29424,0.007712,0.200448,0.004832,0.004096,0.00608,0.0656,0.005472
+819,1522.11,0.656982,0.28576,0.0056,0.19824,0.004928,0.004224,0.005728,0.061632,0.005408
+820,1270.67,0.786987,0.281344,0.004864,0.19456,0.005248,0.004896,0.004192,0.06144,0.006144
+821,1647.96,0.606812,0.286528,0.005568,0.195168,0.005664,0.004544,0.005664,0.063968,0.005952
+822,1359.67,0.735474,0.29024,0.006144,0.19456,0.004096,0.005792,0.004448,0.069632,0.005568
+823,1272.44,0.785889,0.292224,0.005984,0.196384,0.00448,0.005696,0.004544,0.069632,0.005504
+824,1261.67,0.792603,0.290816,0.006144,0.19456,0.005696,0.004544,0.005536,0.06928,0.005056
+825,1486.21,0.672852,0.298912,0.005888,0.20096,0.005472,0.004768,0.005312,0.070464,0.006048
+826,1149.27,0.870117,0.541728,0.006144,0.43008,0.015456,0.005056,0.00576,0.073344,0.005888
+827,922.523,1.08398,0.293152,0.00448,0.202656,0.005632,0.004608,0.005472,0.065408,0.004896
+828,1402.26,0.713135,0.290144,0.005728,0.197024,0.005376,0.004864,0.005248,0.066432,0.005472
+829,783.174,1.27686,0.302976,0.0056,0.202624,0.004704,0.00416,0.004128,0.075744,0.006016
+830,1611.96,0.620361,0.291328,0.004608,0.199968,0.004832,0.004096,0.006112,0.065568,0.006144
+831,1248.21,0.801147,0.297984,0.00512,0.202752,0.005504,0.004736,0.006016,0.067712,0.006144
+832,1200.12,0.833252,0.298976,0.004864,0.206432,0.004512,0.00528,0.00496,0.067552,0.005376
+833,1585.45,0.630737,0.2888,0.00608,0.196256,0.004512,0.005312,0.004928,0.066816,0.004896
+834,1391.78,0.718506,0.535008,0.004704,0.44032,0.007392,0.004928,0.005888,0.06576,0.006016
+835,833.706,1.19946,0.290816,0.006176,0.193632,0.00496,0.004128,0.005952,0.069824,0.006144
+836,1541.59,0.648682,0.290816,0.006144,0.198272,0.00448,0.005344,0.004928,0.066848,0.0048
+837,1243.47,0.804199,0.290816,0.005536,0.195168,0.005696,0.004544,0.005568,0.06816,0.006144
+838,1686.29,0.593018,0.290688,0.005472,0.195232,0.005664,0.004576,0.005536,0.068192,0.006016
+839,1299.9,0.769287,0.288256,0.006144,0.194144,0.004512,0.005312,0.004928,0.067584,0.005632
+840,1362.83,0.733765,0.29904,0.006144,0.196608,0.00576,0.00448,0.005792,0.075264,0.004992
+841,1051.06,0.951416,0.307072,0.005856,0.204896,0.004288,0.005568,0.004672,0.075776,0.006016
+842,1708.8,0.585205,0.297184,0.005408,0.199136,0.004576,0.005216,0.005024,0.0728,0.005024
+843,1223.97,0.817017,0.540672,0.006144,0.442368,0.00752,0.004768,0.006048,0.06944,0.004384
+844,902.6,1.10791,0.29504,0.005376,0.2016,0.005376,0.004864,0.005216,0.06752,0.005088
+845,1318.1,0.758667,0.291872,0.005664,0.198976,0.004256,0.00544,0.0048,0.0672,0.005536
+846,1312.19,0.762085,0.311552,0.004448,0.220448,0.004832,0.004096,0.006112,0.065568,0.006048
+847,1653.61,0.604736,0.288768,0.004928,0.194272,0.004384,0.00544,0.0048,0.0696,0.005344
+848,1014.24,0.985962,0.288992,0.00544,0.195488,0.005312,0.004736,0.004288,0.067584,0.006144
+849,1316.83,0.759399,0.294848,0.005472,0.201568,0.004096,0.005664,0.004576,0.067584,0.005888
+850,1438.2,0.695312,0.29184,0.006144,0.19824,0.004512,0.005312,0.004928,0.067264,0.00544
+851,737.42,1.35608,0.56736,0.004736,0.429984,0.03072,0.023904,0.004768,0.067584,0.005664
+852,850.234,1.17615,0.289888,0.005984,0.19472,0.00544,0.0048,0.005312,0.068224,0.005408
+853,1547.12,0.646362,0.293248,0.005504,0.199136,0.00464,0.005184,0.005056,0.067584,0.006144
+854,1199.77,0.833496,0.291104,0.004448,0.196608,0.005984,0.004256,0.005888,0.06784,0.00608
+855,1644.65,0.608032,0.296896,0.005536,0.20048,0.004896,0.004128,0.005984,0.069792,0.00608
+856,1261.86,0.79248,0.303456,0.004448,0.210496,0.004544,0.005184,0.00448,0.069472,0.004832
+857,1129.31,0.885498,0.302912,0.006144,0.20448,0.004416,0.005376,0.004864,0.07168,0.005952
+858,1465.74,0.682251,0.297216,0.005856,0.196896,0.005504,0.004736,0.005344,0.074208,0.004672
+859,1457.13,0.686279,0.303104,0.006144,0.202784,0.005376,0.004864,0.006112,0.071712,0.006112
+860,743.916,1.34424,0.310112,0.007008,0.208896,0.005568,0.004672,0.005408,0.073504,0.005056
+861,1496.26,0.668335,0.296,0.006144,0.197856,0.004896,0.004096,0.006144,0.071552,0.005312
+862,1338.34,0.747192,0.288736,0.00464,0.19456,0.005632,0.004608,0.005504,0.068224,0.005568
+863,1293.13,0.773315,0.302944,0.006112,0.196192,0.004544,0.00528,0.006496,0.078336,0.005984
+864,1579.33,0.633179,0.291168,0.004448,0.196608,0.005664,0.004576,0.005536,0.068192,0.006144
+865,1339,0.746826,0.475808,0.004768,0.37872,0.004256,0.005664,0.004576,0.073152,0.004672
+866,950.9,1.05164,0.291008,0.005376,0.197152,0.004512,0.005312,0.004928,0.067584,0.006144
+867,999.756,1.00024,0.317472,0.005824,0.223328,0.00432,0.005472,0.004768,0.069056,0.004704
+868,1069.45,0.935059,0.31312,0.007552,0.211808,0.005856,0.004384,0.00576,0.072064,0.005696
+869,1341.85,0.745239,0.311296,0.006144,0.211008,0.005856,0.00432,0.005824,0.072032,0.006112
+870,1405.87,0.711304,0.30384,0.004832,0.202752,0.005824,0.004416,0.005696,0.074176,0.006144
+871,1260.5,0.793335,0.3072,0.00592,0.206464,0.004704,0.004096,0.006144,0.075296,0.004576
+872,1511.16,0.661743,0.308096,0.004992,0.201728,0.004896,0.00432,0.005632,0.08144,0.005088
+873,1285.83,0.77771,0.307168,0.004896,0.19776,0.004992,0.005408,0.004832,0.083872,0.005408
+874,1206.12,0.829102,0.30512,0.005536,0.196448,0.004928,0.004256,0.005888,0.082176,0.005888
+875,1287.85,0.776489,0.305152,0.005792,0.209088,0.004256,0.005536,0.004704,0.071072,0.004704
+876,1285.22,0.778076,0.29696,0.005696,0.200128,0.004768,0.004448,0.005664,0.070112,0.006144
+877,775.244,1.28992,0.301792,0.006912,0.200704,0.004096,0.005824,0.004416,0.073728,0.006112
+878,1505.33,0.664307,0.294912,0.005952,0.197984,0.004928,0.004128,0.005984,0.069792,0.006144
+879,1321.5,0.756714,0.288768,0.006016,0.190592,0.004096,0.005792,0.004448,0.07168,0.006144
+880,1495.44,0.668701,0.29504,0.00544,0.19744,0.005664,0.004576,0.005664,0.070112,0.006144
+881,1366.24,0.731934,0.295552,0.005024,0.197824,0.004928,0.004096,0.006048,0.071776,0.005856
+882,1526.08,0.655273,0.475168,0.0056,0.37728,0.004192,0.005696,0.004544,0.07168,0.006176
+883,1029.02,0.971802,0.289472,0.004672,0.193536,0.00496,0.004256,0.005824,0.071648,0.004576
+884,1608.48,0.621704,0.297536,0.004672,0.198656,0.005792,0.004448,0.005696,0.072128,0.006144
+885,1336.16,0.748413,0.299328,0.00544,0.201696,0.00512,0.004896,0.00432,0.073248,0.004608
+886,699.215,1.43018,0.500512,0.006784,0.393184,0.006144,0.004096,0.004096,0.081632,0.004576
+887,1212.91,0.824463,0.305792,0.004576,0.208384,0.004608,0.005216,0.005024,0.073408,0.004576
+888,1567.25,0.638062,0.300832,0.00448,0.200576,0.004224,0.005568,0.004672,0.075776,0.005536
+889,1405.87,0.711304,0.303104,0.006112,0.200736,0.004096,0.005792,0.004448,0.075776,0.006144
+890,1162.32,0.860352,0.354816,0.004896,0.241664,0.005216,0.0048,0.00432,0.088064,0.005856
+891,1153.48,0.866943,0.301088,0.006144,0.197728,0.004928,0.004192,0.005888,0.07728,0.004928
+892,1371.96,0.728882,0.309248,0.00608,0.203968,0.004896,0.005536,0.0048,0.079072,0.004896
+893,1281.4,0.780396,0.31376,0.00496,0.208896,0.005408,0.004832,0.005248,0.07872,0.005696
+894,716.836,1.39502,0.31088,0.007904,0.20304,0.00528,0.004896,0.005216,0.078816,0.005728
+895,1346.48,0.742676,0.304064,0.005024,0.200576,0.004224,0.005568,0.004672,0.079648,0.004352
+896,1352.48,0.73938,0.296768,0.005376,0.195264,0.004288,0.005312,0.004928,0.075776,0.005824
+897,1357.19,0.736816,0.29824,0.005728,0.194976,0.00592,0.00432,0.005632,0.076288,0.005376
+898,1415.83,0.706299,0.29696,0.005376,0.19328,0.005824,0.004416,0.005728,0.076192,0.006144
+899,1208.44,0.827515,0.303104,0.005984,0.196768,0.00576,0.00448,0.0056,0.079744,0.004768
+900,1412.66,0.707886,0.307712,0.004928,0.202752,0.004096,0.005856,0.006464,0.077824,0.005792
+901,1400.34,0.714111,0.301728,0.004768,0.19792,0.004832,0.004096,0.006112,0.077856,0.006144
+902,1079.03,0.926758,0.505856,0.013472,0.392032,0.006144,0.005632,0.004608,0.077824,0.006144
+903,1072.39,0.932495,0.299744,0.004736,0.194496,0.005824,0.004416,0.005664,0.080032,0.004576
+904,1443.78,0.692627,0.30112,0.004576,0.196608,0.004096,0.005792,0.004448,0.079872,0.005728
+905,928.904,1.07654,0.312288,0.005088,0.208896,0.005312,0.0048,0.004256,0.07792,0.006016
+906,1370.82,0.729492,0.325184,0.005824,0.220832,0.004768,0.004128,0.006112,0.077824,0.005696
+907,1408.77,0.709839,0.319008,0.005568,0.209472,0.005888,0.004352,0.005728,0.082336,0.005664
+908,1465.47,0.682373,0.322656,0.005984,0.2152,0.00544,0.0048,0.00592,0.079968,0.005344
+909,1293.54,0.773071,0.333152,0.005632,0.229792,0.004192,0.005632,0.004608,0.077824,0.005472
+910,1370.59,0.729614,0.309248,0.006144,0.208608,0.004384,0.00544,0.004864,0.074816,0.004992
+911,1444.03,0.692505,0.301056,0.006144,0.198688,0.005248,0.004896,0.005216,0.07472,0.006144
+912,1504.78,0.664551,0.299008,0.005632,0.19712,0.004096,0.005888,0.0064,0.074976,0.004896
+913,1371.96,0.728882,0.304352,0.006144,0.196608,0.005152,0.004864,0.005792,0.080448,0.005344
+914,1379.12,0.725098,0.303104,0.005824,0.192832,0.005664,0.004576,0.005536,0.082528,0.006144
+915,1452.74,0.688354,0.29696,0.006144,0.195872,0.004832,0.004096,0.00608,0.07488,0.005056
+916,1421.48,0.703491,0.293952,0.005568,0.193088,0.00592,0.00432,0.005792,0.073856,0.005408
+917,1432.42,0.69812,0.294336,0.006144,0.192512,0.004096,0.005728,0.00592,0.074368,0.005568
+918,1412.41,0.708008,0.29264,0.005472,0.193056,0.004224,0.005568,0.004672,0.073728,0.00592
+919,1412.66,0.707886,0.298304,0.006016,0.198816,0.005248,0.004864,0.005248,0.072672,0.00544
+920,1311.35,0.762573,0.299392,0.004448,0.200704,0.0056,0.00464,0.005472,0.072352,0.006176
+921,1494.35,0.669189,0.2936,0.004832,0.19568,0.004928,0.004192,0.005888,0.073248,0.004832
+922,1446.58,0.691284,0.2992,0.006144,0.198656,0.004096,0.005792,0.004448,0.075424,0.00464
+923,1362.61,0.733887,0.301824,0.004832,0.20016,0.00464,0.005792,0.004448,0.077216,0.004736
+924,1443.27,0.692871,0.306272,0.005248,0.205792,0.005696,0.004544,0.005408,0.07424,0.005344
+925,1467.84,0.681274,0.290208,0.005568,0.190336,0.0048,0.004128,0.00608,0.07376,0.005536
+926,1426.43,0.70105,0.295904,0.005088,0.19456,0.00544,0.0048,0.005312,0.075584,0.00512
+927,523.183,1.91138,0.321952,0.004544,0.217056,0.005216,0.004864,0.004288,0.08096,0.005024
+928,1298.67,0.77002,0.315584,0.006144,0.208608,0.004384,0.005408,0.004832,0.0816,0.004608
+929,1605.96,0.622681,0.303104,0.006144,0.198304,0.004448,0.005344,0.004896,0.078912,0.005056
+930,1364.65,0.732788,0.313824,0.004576,0.206848,0.005728,0.004512,0.0056,0.080416,0.006144
+931,1387.3,0.720825,0.313056,0.005728,0.20688,0.00448,0.00512,0.00512,0.079872,0.005856
+932,1397.24,0.715698,0.301408,0.004448,0.200704,0.004096,0.005696,0.004544,0.077088,0.004832
+933,1377.27,0.726074,0.32368,0.0048,0.219136,0.005152,0.004864,0.004352,0.07984,0.005536
+934,1400.1,0.714233,0.307904,0.004768,0.202304,0.004544,0.00528,0.00496,0.08128,0.004768
+935,1394.86,0.716919,0.303296,0.00608,0.199808,0.004896,0.004256,0.005888,0.077664,0.004704
+936,1069.03,0.935425,0.311648,0.004896,0.204512,0.004384,0.005408,0.004832,0.08192,0.005696
+937,1676.63,0.596436,0.311296,0.006144,0.202368,0.00448,0.006016,0.004224,0.083104,0.00496
+938,1358.09,0.736328,0.321472,0.006048,0.215008,0.004224,0.0056,0.00464,0.079872,0.00608
+939,1447.61,0.690796,0.309248,0.006144,0.200704,0.005504,0.004736,0.005344,0.081952,0.004864
+940,1398.43,0.715088,0.301216,0.004928,0.194368,0.004288,0.005504,0.004736,0.08192,0.005472
+941,1427.43,0.700562,0.304416,0.005536,0.192096,0.004928,0.004288,0.005824,0.086336,0.005408
+942,1360.12,0.735229,0.312896,0.005536,0.197216,0.005792,0.004448,0.005664,0.088544,0.005696
+943,1358.99,0.73584,0.323584,0.005504,0.207488,0.004096,0.005888,0.004352,0.091552,0.004704
+944,1382.62,0.723267,0.305408,0.00544,0.199584,0.005632,0.004608,0.005504,0.078624,0.006016
+945,1354.05,0.738525,0.306912,0.004672,0.199904,0.004896,0.004128,0.006016,0.081952,0.005344
+946,1409.74,0.709351,0.300416,0.005504,0.195072,0.00448,0.005312,0.004928,0.079776,0.005344
+947,967.521,1.03357,0.32864,0.005056,0.222976,0.004352,0.00544,0.0048,0.079872,0.006144
+948,1558.01,0.641846,0.305824,0.004736,0.204096,0.0048,0.004096,0.006144,0.076896,0.005056
+949,1445.31,0.691895,0.3,0.005056,0.196608,0.004096,0.00576,0.00448,0.078912,0.005088
+950,1368.3,0.730835,0.298336,0.005376,0.19536,0.004096,0.006144,0.005472,0.076448,0.00544
+951,1432.17,0.698242,0.304256,0.006176,0.198624,0.0056,0.00464,0.005472,0.078336,0.005408
+952,1374.96,0.727295,0.316224,0.004928,0.214208,0.004896,0.004128,0.005984,0.07728,0.0048
+953,1424.45,0.702026,0.3016,0.004928,0.19776,0.004896,0.004192,0.00592,0.078048,0.005856
+954,1361.48,0.734497,0.31648,0.005504,0.210624,0.004928,0.004256,0.00592,0.07936,0.005888
+955,1235.04,0.809692,0.307104,0.006144,0.196608,0.00528,0.004896,0.005216,0.082912,0.006048
+956,1497.08,0.667969,0.310688,0.005376,0.201088,0.004512,0.00528,0.00496,0.083968,0.005504
+957,1394.86,0.716919,0.310016,0.004832,0.202752,0.004096,0.005792,0.004448,0.08192,0.006176
+958,1400.34,0.714111,0.3072,0.006144,0.198208,0.004544,0.005248,0.004992,0.083456,0.004608
+959,1468.1,0.681152,0.303296,0.00496,0.19568,0.004928,0.004192,0.00592,0.082144,0.005472
+960,1371.05,0.72937,0.305184,0.004512,0.198272,0.00448,0.005312,0.004928,0.08192,0.00576
+961,1371.28,0.729248,0.314304,0.005056,0.19824,0.004512,0.00592,0.00432,0.0912,0.005056
+962,1391.07,0.718872,0.330048,0.004384,0.216576,0.004608,0.005216,0.005024,0.089408,0.004832
+963,1394.38,0.717163,0.314944,0.005952,0.198496,0.004448,0.005344,0.004896,0.090112,0.005696
+964,1365.56,0.7323,0.328768,0.006144,0.21504,0.0056,0.00464,0.005472,0.085984,0.005888
+965,1413.63,0.707397,0.313376,0.005568,0.202656,0.004768,0.004096,0.006144,0.085152,0.004992
+966,1356.74,0.737061,0.32096,0.006144,0.208096,0.004896,0.004096,0.006048,0.086112,0.005568
+967,1419.76,0.704346,0.307584,0.005408,0.196864,0.004768,0.004096,0.006144,0.085728,0.004576
+968,1139.68,0.877441,0.336992,0.006144,0.224672,0.004704,0.004192,0.006048,0.085824,0.005408
+969,1468.89,0.680786,0.305152,0.00592,0.19888,0.005152,0.004864,0.00432,0.081056,0.00496
+970,1539.27,0.649658,0.309248,0.006144,0.199776,0.004928,0.004192,0.005952,0.082112,0.006144
+971,1402.5,0.713013,0.309664,0.004672,0.198656,0.00592,0.00432,0.006144,0.083968,0.005984
+972,1368.98,0.730469,0.316224,0.004896,0.198688,0.005088,0.004896,0.004384,0.093312,0.00496
+973,1349.81,0.740845,0.31952,0.005888,0.19856,0.004448,0.005504,0.004736,0.085472,0.014912
+974,1084.03,0.922485,0.311232,0.006048,0.19808,0.004672,0.005888,0.004352,0.086016,0.006176
+975,1590.99,0.62854,0.31952,0.006112,0.198688,0.00592,0.00432,0.005792,0.094336,0.004352
+976,1304.87,0.766357,0.320832,0.005568,0.200288,0.004896,0.00432,0.00576,0.09456,0.00544
+977,1419.51,0.704468,0.321312,0.004768,0.199936,0.004768,0.00416,0.00608,0.096256,0.005344
+978,1369.9,0.72998,0.313344,0.005088,0.192512,0.004096,0.00576,0.00448,0.095968,0.00544
+979,1365.11,0.732544,0.305152,0.005536,0.193152,0.00592,0.004288,0.005792,0.0856,0.004864
+980,1429.17,0.699707,0.309216,0.00608,0.196672,0.00528,0.004896,0.005312,0.084864,0.006112
+981,1344.05,0.744019,0.307232,0.005504,0.197184,0.004192,0.005568,0.004672,0.085536,0.004576
+982,1414.85,0.706787,0.309248,0.005472,0.198656,0.004768,0.004128,0.006112,0.085504,0.004608
+983,1388.95,0.719971,0.311552,0.004672,0.196544,0.004096,0.00576,0.00448,0.090112,0.005888
+984,1311.35,0.762573,0.323584,0.005504,0.207488,0.004096,0.00576,0.00448,0.090208,0.006048
+985,1310.09,0.763306,0.323456,0.00464,0.21296,0.005664,0.004576,0.005504,0.084608,0.005504
+986,1374.5,0.727539,0.305152,0.005504,0.1952,0.004096,0.005888,0.004352,0.085184,0.004928
+987,1430.92,0.698853,0.3072,0.006112,0.19424,0.004448,0.005344,0.004896,0.08704,0.00512
+988,1454.55,0.6875,0.304896,0.005376,0.195552,0.005376,0.004864,0.005152,0.082912,0.005664
+989,913.266,1.09497,0.331488,0.004672,0.212864,0.0056,0.004608,0.005472,0.092832,0.00544
+990,1676.97,0.596313,0.311136,0.005408,0.200896,0.0048,0.004096,0.006144,0.083968,0.005824
+991,1271.06,0.786743,0.30976,0.00512,0.20032,0.00448,0.005344,0.004896,0.083968,0.005632
+992,1434.42,0.697144,0.30336,0.004416,0.194112,0.004544,0.00528,0.00496,0.083968,0.00608
+993,1349.37,0.741089,0.30704,0.006144,0.19776,0.004928,0.00416,0.005792,0.082272,0.005984
+994,1364.2,0.733032,0.310944,0.005856,0.200992,0.004096,0.00576,0.00448,0.083968,0.005792
+995,1373.11,0.728271,0.305152,0.005504,0.1952,0.00576,0.00448,0.0056,0.082496,0.006112
+996,1456.1,0.686768,0.30128,0.005376,0.19456,0.004928,0.004256,0.005824,0.080192,0.006144
+997,1411.68,0.708374,0.303776,0.004736,0.190496,0.005888,0.00432,0.005888,0.08768,0.004768
+998,1463.38,0.68335,0.307296,0.006048,0.193952,0.004704,0.00512,0.005088,0.087808,0.004576
+999,1222.14,0.818237,0.304256,0.006144,0.190464,0.004096,0.005728,0.004512,0.087872,0.00544
+1000,1611.33,0.620605,0.30592,0.004864,0.196,0.004704,0.004096,0.006144,0.083968,0.006144
+1001,1294.77,0.772339,0.305792,0.004736,0.193728,0.004928,0.004096,0.006016,0.087264,0.005024
+1002,1408.53,0.709961,0.313344,0.006112,0.193664,0.00496,0.00416,0.00576,0.093632,0.005056
+1003,1290.28,0.775024,0.336992,0.006144,0.216736,0.004448,0.005344,0.004896,0.09408,0.005344
+1004,1331.82,0.750854,0.345184,0.005696,0.225728,0.004096,0.005824,0.004416,0.094016,0.005408
+1005,1433.42,0.697632,0.314752,0.00608,0.195808,0.00496,0.004096,0.00592,0.092384,0.005504
+1006,1425.44,0.701538,0.309248,0.00576,0.192896,0.005728,0.004512,0.0056,0.088608,0.006144
+1007,1427.18,0.700684,0.315392,0.005792,0.191872,0.004896,0.004288,0.005888,0.096512,0.006144
+1008,1413.88,0.707275,0.307584,0.005056,0.192384,0.004192,0.0056,0.00464,0.090112,0.0056
+1009,1284.01,0.778809,0.32544,0.00544,0.207552,0.004096,0.00576,0.00448,0.09216,0.005952
+1010,922.626,1.08386,0.325632,0.006144,0.206688,0.004256,0.005536,0.005792,0.092352,0.004864
+1011,1383.55,0.722778,0.346112,0.00544,0.23008,0.004192,0.00576,0.004384,0.091456,0.0048
+1012,1340.31,0.746094,0.333504,0.00592,0.216544,0.004736,0.004224,0.005888,0.090368,0.005824
+1013,1241.59,0.80542,0.34848,0.004416,0.233056,0.004512,0.005312,0.004928,0.090144,0.006112
+1014,1414.61,0.706909,0.331776,0.005536,0.21104,0.004608,0.005216,0.005024,0.095392,0.00496
+1015,1347.15,0.74231,0.313344,0.005504,0.1952,0.005216,0.004896,0.004256,0.092128,0.006144
+1016,1400.82,0.713867,0.316224,0.0048,0.198656,0.005312,0.004896,0.00528,0.092704,0.004576
+1017,1410.23,0.709106,0.312384,0.005568,0.19104,0.005312,0.004864,0.005216,0.095008,0.005376
+1018,1378.2,0.725586,0.313728,0.004992,0.192448,0.00416,0.005664,0.004576,0.096032,0.005856
+1019,1388,0.720459,0.31136,0.005024,0.193792,0.004864,0.004096,0.006048,0.092192,0.005344
+1020,1371.28,0.729248,0.311808,0.00496,0.195744,0.004928,0.004128,0.00608,0.090176,0.005792
+1021,646.465,1.54688,0.311392,0.00544,0.19648,0.00496,0.004128,0.005952,0.090048,0.004384
+1022,1344.71,0.743652,0.317728,0.005408,0.197632,0.005888,0.004352,0.006144,0.093184,0.00512
+1023,1404.42,0.712036,0.311136,0.0056,0.193088,0.005536,0.004672,0.006144,0.090112,0.005984
+1024,1359.22,0.735718,0.313344,0.005408,0.204832,0.0048,0.004096,0.006144,0.083392,0.004672
+1025,1438.96,0.694946,0.3072,0.005984,0.193984,0.004832,0.004096,0.006144,0.087744,0.004416
+1026,1399.15,0.714722,0.307392,0.005472,0.191328,0.004096,0.005856,0.004416,0.091264,0.00496
+1027,1425.69,0.701416,0.314976,0.005472,0.19536,0.005312,0.004864,0.005248,0.09312,0.0056
+1028,1375.65,0.726929,0.31744,0.005536,0.194368,0.004896,0.004096,0.00608,0.097344,0.00512
+1029,1423.21,0.702637,0.3072,0.005536,0.191072,0.005312,0.004896,0.005216,0.090048,0.00512
+1030,703.297,1.42188,0.319168,0.004416,0.21056,0.00448,0.005312,0.004928,0.083968,0.005504
+1031,1422.47,0.703003,0.328224,0.00464,0.217088,0.004096,0.005696,0.004544,0.086016,0.006144
+1032,1340.53,0.745972,0.324032,0.005504,0.211936,0.004096,0.00576,0.00448,0.087648,0.004608
+1033,1329.44,0.752197,0.32208,0.004736,0.208928,0.005408,0.0048,0.00528,0.08688,0.006048
+1034,1280.4,0.781006,0.315328,0.00608,0.202176,0.004672,0.00512,0.00512,0.086016,0.006144
+1035,1296.41,0.771362,0.31248,0.005472,0.197408,0.005504,0.004736,0.005376,0.088672,0.005312
+1036,1476.04,0.67749,0.315744,0.004992,0.198656,0.005152,0.004896,0.004288,0.09216,0.0056
+1037,1044.9,0.957031,0.32784,0.005472,0.2136,0.00432,0.005472,0.004768,0.089152,0.005056
+1038,1359.67,0.735474,0.3208,0.006144,0.204128,0.004768,0.005664,0.004576,0.090112,0.005408
+1039,1355.17,0.737915,0.311584,0.004512,0.202016,0.004768,0.00416,0.00592,0.084192,0.006016
+1040,1570.85,0.636597,0.3072,0.005408,0.195296,0.0056,0.00464,0.00544,0.085856,0.00496
+1041,732.017,1.36609,0.315392,0.007776,0.207264,0.005632,0.004608,0.005472,0.079552,0.005088
+1042,1298.26,0.770264,0.315424,0.006112,0.210176,0.004896,0.004096,0.006048,0.079328,0.004768
+1043,1517.6,0.658936,0.298496,0.005664,0.192992,0.005312,0.004864,0.005216,0.078816,0.005632
+1044,1390.36,0.719238,0.301056,0.006144,0.19584,0.004864,0.004096,0.00608,0.078944,0.005088
+1045,1195.39,0.836548,0.49104,0.00544,0.377024,0.004704,0.005184,0.005056,0.088064,0.005568
+1046,1377.04,0.726196,0.307072,0.005408,0.195488,0.005152,0.004896,0.004256,0.086048,0.005824
+1047,1371.05,0.72937,0.3112,0.005792,0.198752,0.004352,0.00608,0.005216,0.08496,0.006048
+1048,1218.5,0.820679,0.559104,0.005792,0.437984,0.014976,0.00576,0.00448,0.083968,0.006144
+1049,762.472,1.31152,0.319776,0.005408,0.20784,0.005344,0.004896,0.005216,0.08656,0.004512
+1050,1441.75,0.693604,0.323808,0.005088,0.202464,0.004384,0.005408,0.004832,0.09568,0.005952
+1051,1420.5,0.703979,0.309248,0.005792,0.196992,0.005408,0.0048,0.005248,0.086208,0.0048
+1052,1368.53,0.730713,0.310656,0.006144,0.196608,0.005344,0.004896,0.004128,0.088032,0.005504
+1053,1343.83,0.744141,0.313728,0.004576,0.194464,0.005888,0.004352,0.00576,0.092544,0.006144
+1054,1215.07,0.822998,0.308736,0.006144,0.19456,0.005888,0.004352,0.00576,0.0864,0.005632
+1055,1259.34,0.794067,0.31152,0.005472,0.199008,0.00464,0.005184,0.005056,0.086016,0.006144
+1056,1581.47,0.632324,0.309248,0.006144,0.196608,0.004096,0.005792,0.004448,0.087296,0.004864
+1057,1271.06,0.786743,0.57728,0.0056,0.452832,0.006464,0.006144,0.014336,0.086016,0.005888
+1058,855.74,1.16858,0.31328,0.0056,0.196256,0.004928,0.00416,0.005984,0.090304,0.006048
+1059,1440.99,0.69397,0.311296,0.006144,0.193728,0.004928,0.004096,0.006144,0.09184,0.004416
+1060,1513.39,0.660767,0.315968,0.004672,0.197632,0.004832,0.004384,0.005728,0.09376,0.00496
+1061,1267.72,0.788818,0.309824,0.004672,0.194592,0.005888,0.005504,0.00496,0.089152,0.005056
+1062,1520.13,0.657837,0.312512,0.00608,0.196672,0.004096,0.005856,0.004384,0.089984,0.00544
+1063,1067.5,0.936768,0.303264,0.006144,0.19392,0.004736,0.004096,0.006144,0.083648,0.004576
+1064,1427.18,0.700684,0.31152,0.005408,0.200992,0.0048,0.004096,0.006112,0.084,0.006112
+1065,1312.61,0.761841,0.308352,0.005536,0.197024,0.004288,0.005504,0.004736,0.085952,0.005312
+1066,813.667,1.229,0.315552,0.007552,0.201504,0.005632,0.004608,0.005504,0.085792,0.00496
+1067,1327.93,0.753052,0.305376,0.005024,0.200704,0.005312,0.004864,0.00416,0.079872,0.00544
+1068,1535.23,0.651367,0.3072,0.00608,0.196672,0.005216,0.004896,0.004256,0.083936,0.006144
+1069,1147.5,0.87146,0.317472,0.005408,0.212864,0.004928,0.00416,0.00592,0.07936,0.004832
+1070,1437.45,0.695679,0.3032,0.005376,0.196928,0.00464,0.005152,0.005088,0.08096,0.005056
+1071,1450.42,0.689453,0.482784,0.005664,0.377696,0.005856,0.004384,0.005696,0.078176,0.005312
+1072,1147.82,0.871216,0.30624,0.00544,0.19936,0.005504,0.004736,0.005472,0.080384,0.005344
+1073,1284.82,0.77832,0.333568,0.005504,0.227584,0.004576,0.005248,0.004992,0.079872,0.005792
+1074,1422.72,0.702881,0.297632,0.004768,0.19456,0.005728,0.004512,0.0056,0.077376,0.005088
+1075,681.191,1.46802,0.313408,0.00752,0.20672,0.00496,0.004224,0.005856,0.078112,0.006016
+1076,1363.74,0.733276,0.304576,0.00608,0.194624,0.005472,0.004768,0.005344,0.08272,0.005568
+1077,1550.93,0.644775,0.29664,0.004608,0.192032,0.004576,0.005376,0.004864,0.07984,0.005344
+1078,1284.62,0.778442,0.301408,0.004448,0.19456,0.005664,0.004576,0.005536,0.08048,0.006144
+1079,1564.25,0.639282,0.299776,0.004864,0.195648,0.004928,0.004224,0.005888,0.07808,0.006144
+1080,1075.63,0.929688,0.300352,0.005632,0.192224,0.004768,0.004224,0.005888,0.082176,0.00544
+1081,1426.18,0.701172,0.316192,0.004896,0.207936,0.004928,0.004224,0.005824,0.08224,0.006144
+1082,1278,0.782471,0.314656,0.005536,0.202944,0.004512,0.00528,0.00496,0.086016,0.005408
+1083,656.463,1.52332,0.335616,0.006624,0.221184,0.005632,0.004608,0.005472,0.086688,0.005408
+1084,1451.2,0.689087,0.3072,0.005824,0.196928,0.0056,0.00464,0.005472,0.083776,0.00496
+1085,1583.91,0.631348,0.310432,0.00592,0.197984,0.004928,0.004256,0.005824,0.086176,0.005344
+1086,1271.65,0.786377,0.30864,0.005472,0.196704,0.004672,0.005152,0.005088,0.086016,0.005536
+1087,1458.17,0.685791,0.307456,0.004672,0.197888,0.004832,0.004096,0.00608,0.084032,0.005856
+1088,1085.46,0.921265,0.487424,0.005568,0.37936,0.004192,0.005696,0.004576,0.08192,0.006112
+1089,1258.57,0.794556,0.310592,0.005984,0.197792,0.00496,0.004288,0.00576,0.086368,0.00544
+1090,1362.61,0.733887,0.339968,0.005792,0.224928,0.0048,0.005184,0.005056,0.088064,0.006144
+1091,722.335,1.3844,0.313856,0.006624,0.202048,0.0048,0.004096,0.006112,0.085536,0.00464
+1092,1455.58,0.687012,0.309632,0.00496,0.198656,0.005824,0.004416,0.00576,0.084352,0.005664
+1093,1455.84,0.68689,0.3072,0.006144,0.196192,0.004512,0.004096,0.006144,0.085024,0.005088
+1094,1269.09,0.787964,0.309184,0.004608,0.196608,0.00576,0.00448,0.005632,0.086528,0.005568
+1095,1408.29,0.710083,0.315424,0.00544,0.199648,0.00544,0.0048,0.005312,0.088928,0.005856
+1096,1253.94,0.797485,0.501056,0.006144,0.380256,0.004768,0.005152,0.005088,0.094208,0.00544
+1097,1203.82,0.830688,0.305664,0.004768,0.1976,0.004928,0.00416,0.00592,0.083584,0.004704
+1098,1369.21,0.730347,0.305152,0.005408,0.195296,0.005696,0.004544,0.005664,0.08256,0.005984
+1099,1360.35,0.735107,0.556192,0.005472,0.42224,0.02816,0.00496,0.005824,0.084224,0.005312
+1100,810.527,1.23376,0.304576,0.005376,0.194592,0.004896,0.004256,0.005856,0.084192,0.005408
+1101,1491.08,0.670654,0.320832,0.005952,0.208128,0.004928,0.004224,0.006144,0.086048,0.005408
+1102,1207.9,0.827881,0.308192,0.00512,0.197856,0.004896,0.004096,0.006016,0.084096,0.006112
+1103,1578.72,0.633423,0.30752,0.004992,0.196512,0.004192,0.0056,0.00464,0.086016,0.005568
+1104,1253.56,0.797729,0.303712,0.004768,0.196384,0.005216,0.004896,0.004224,0.083648,0.004576
+1105,1313.03,0.761597,0.301792,0.004832,0.192512,0.005728,0.004512,0.005568,0.082528,0.006112
+1106,1317.89,0.758789,0.304704,0.006144,0.19456,0.00592,0.00432,0.005792,0.082272,0.005696
+1107,884.188,1.13098,0.32256,0.00512,0.210944,0.005632,0.004608,0.005344,0.086048,0.004864
+1108,1541.88,0.64856,0.559168,0.005376,0.45104,0.009824,0.004896,0.00592,0.076,0.006112
+1109,886.772,1.12769,0.301056,0.005664,0.19472,0.004416,0.005376,0.004864,0.081344,0.004672
+1110,1388,0.720459,0.295968,0.00608,0.194624,0.005344,0.004896,0.005216,0.074464,0.005344
+1111,1441.49,0.693726,0.303104,0.006144,0.196224,0.00448,0.005312,0.004928,0.079872,0.006144
+1112,1316.2,0.759766,0.29904,0.005472,0.192192,0.004928,0.004288,0.005792,0.081536,0.004832
+1113,1520.7,0.657593,0.482848,0.00576,0.379104,0.004256,0.005632,0.004608,0.077824,0.005664
+1114,1087.92,0.919189,0.301056,0.006176,0.194336,0.004288,0.005536,0.005824,0.080224,0.004672
+1115,1400.34,0.714111,0.31216,0.017216,0.195904,0.004832,0.004096,0.005984,0.079264,0.004864
+1116,1337.69,0.747559,0.299008,0.006144,0.193888,0.004768,0.004128,0.006112,0.077824,0.006144
+1117,717.15,1.39441,0.301056,0.008192,0.196416,0.004288,0.005536,0.004704,0.076832,0.005088
+1118,1635.78,0.611328,0.299616,0.004832,0.199904,0.004896,0.004096,0.006048,0.073824,0.006016
+1119,1304.25,0.766724,0.299008,0.005856,0.196896,0.005408,0.004832,0.00528,0.074592,0.006144
+1120,1550.34,0.64502,0.303008,0.006144,0.198272,0.00448,0.005312,0.004928,0.077824,0.006048
+1121,1244.04,0.803833,0.3,0.005088,0.196256,0.004448,0.005312,0.004928,0.07936,0.004608
+1122,1253.94,0.797485,0.305152,0.006016,0.198784,0.005824,0.004416,0.005696,0.078272,0.006144
+1123,1328.36,0.752808,0.31456,0.005664,0.204448,0.004928,0.004096,0.005856,0.084224,0.005344
+1124,1454.03,0.687744,0.30928,0.005568,0.201248,0.005152,0.004864,0.004384,0.083488,0.004576
+1125,539.622,1.85315,0.30592,0.00688,0.198592,0.00416,0.005632,0.004608,0.081024,0.005024
+1126,1712.02,0.584106,0.307232,0.005568,0.20128,0.005408,0.004736,0.004192,0.081632,0.004416
+1127,1315.77,0.76001,0.3064,0.006144,0.194592,0.005888,0.00432,0.005888,0.084096,0.005472
+1128,1413.39,0.70752,0.309856,0.00512,0.198112,0.00464,0.005152,0.005088,0.086048,0.005696
+1129,1349.81,0.740845,0.317344,0.006144,0.2048,0.00544,0.0048,0.005312,0.0848,0.006048
+1130,1231.14,0.812256,0.309248,0.005472,0.196448,0.004896,0.004128,0.005984,0.087584,0.004736
+1131,1214.53,0.823364,0.304576,0.006144,0.19664,0.005664,0.004576,0.005536,0.080448,0.005568
+1132,1613.23,0.619873,0.311072,0.006144,0.20224,0.004608,0.004096,0.006144,0.08192,0.00592
+1133,1118.36,0.894165,0.545056,0.004896,0.435264,0.011168,0.0056,0.004672,0.077824,0.005632
+1134,949.357,1.05334,0.305152,0.005792,0.200352,0.0048,0.004096,0.006144,0.078848,0.00512
+1135,1295.79,0.771729,0.320288,0.004896,0.214912,0.004224,0.005568,0.004672,0.081088,0.004928
+1136,1472.59,0.679077,0.305856,0.0048,0.198496,0.004256,0.005568,0.004672,0.083008,0.005056
+1137,1299.29,0.769653,0.306688,0.00608,0.19872,0.005376,0.004864,0.005216,0.0808,0.005632
+1138,1269.09,0.787964,0.305536,0.00448,0.19808,0.004672,0.005152,0.005024,0.081984,0.006144
+1139,1017.77,0.982544,0.315392,0.004832,0.20848,0.00448,0.005312,0.004928,0.08192,0.00544
+1140,1478.17,0.676514,0.311232,0.005696,0.199104,0.00512,0.004896,0.00432,0.086016,0.00608
+1141,1256.83,0.795654,0.335648,0.00576,0.217472,0.005728,0.004512,0.005632,0.090624,0.00592
+1142,941.826,1.06177,0.557408,0.004448,0.436224,0.008128,0.0056,0.004704,0.09216,0.006144
+1143,1064.03,0.939819,0.31552,0.005408,0.203584,0.00592,0.00432,0.006144,0.085056,0.005088
+1144,702.513,1.42346,0.33056,0.004928,0.22064,0.00464,0.005184,0.005056,0.085504,0.004608
+1145,1310.3,0.763184,0.318208,0.004896,0.200672,0.004096,0.005792,0.004448,0.093728,0.004576
+1146,1247.64,0.801514,0.493152,0.004736,0.378848,0.004096,0.006144,0.005568,0.088416,0.005344
+1147,1347.37,0.742188,0.30848,0.005984,0.192672,0.004096,0.00576,0.00448,0.090112,0.005376
+1148,1394.15,0.717285,0.31008,0.004928,0.200704,0.005344,0.004864,0.005248,0.082848,0.006144
+1149,668.789,1.49524,0.318976,0.008192,0.200736,0.00544,0.004768,0.005344,0.088864,0.005632
+1150,1692.21,0.590942,0.305792,0.004704,0.195904,0.0048,0.004096,0.006144,0.084992,0.005152
+1151,1304.67,0.766479,0.309568,0.005472,0.192576,0.004928,0.00416,0.006144,0.091456,0.004832
+1152,1468.1,0.681152,0.307168,0.00464,0.19968,0.004896,0.004128,0.00592,0.082144,0.00576
+1153,1383.32,0.7229,0.326048,0.004672,0.21808,0.004928,0.004192,0.00592,0.083424,0.004832
+1154,1220.68,0.819214,0.612192,0.005824,0.50208,0.005568,0.004672,0.005408,0.082656,0.005984
+1155,1030.18,0.970703,0.32272,0.005792,0.214368,0.004928,0.004288,0.006144,0.081856,0.005344
+1156,1499.27,0.666992,0.3088,0.005376,0.201344,0.004352,0.00544,0.0048,0.08192,0.005568
+1157,1192.6,0.838501,0.550912,0.006144,0.44032,0.008,0.005568,0.004864,0.08112,0.004896
+1158,900.022,1.11108,0.331328,0.005536,0.219744,0.005376,0.004864,0.005504,0.084608,0.005696
+1159,1316.2,0.759766,0.329344,0.006112,0.215072,0.004096,0.005728,0.004512,0.088064,0.00576
+1160,1515.63,0.65979,0.314176,0.004928,0.200704,0.004096,0.00576,0.00448,0.089184,0.005024
+1161,1212.19,0.824951,0.306528,0.0056,0.194944,0.004256,0.005536,0.00576,0.08496,0.005472
+1162,1539.85,0.649414,0.309024,0.005472,0.197312,0.004064,0.005888,0.004352,0.086016,0.00592
+1163,938.159,1.06592,0.494112,0.005024,0.376832,0.005856,0.004384,0.005696,0.09056,0.00576
+1164,1372.88,0.728394,0.320384,0.004992,0.202272,0.004576,0.005216,0.005024,0.09216,0.006144
+1165,1557.71,0.641968,0.319072,0.006144,0.198208,0.004544,0.005216,0.005024,0.094208,0.005728
+1166,1336.16,0.748413,0.554976,0.005376,0.43504,0.008,0.005568,0.004864,0.090112,0.006016
+1167,806.855,1.23938,0.315072,0.005504,0.19648,0.004864,0.004096,0.006048,0.092256,0.005824
+1168,1470.21,0.680176,0.308832,0.005568,0.19104,0.005888,0.004352,0.005728,0.090528,0.005728
+1169,1501.19,0.666138,0.306368,0.005472,0.191136,0.00512,0.004864,0.004352,0.09008,0.005344
+1170,1339.22,0.746704,0.311296,0.005984,0.19472,0.005856,0.004384,0.005792,0.089728,0.004832
+1171,1408.04,0.710205,0.308832,0.00544,0.193056,0.004256,0.005536,0.004704,0.090112,0.005728
+1172,977.332,1.02319,0.307232,0.005856,0.190752,0.004096,0.00576,0.00448,0.091648,0.00464
+1173,1537.83,0.650269,0.313344,0.005984,0.19472,0.004096,0.005728,0.004512,0.093216,0.005088
+1174,1353.6,0.73877,0.31136,0.005376,0.193472,0.00592,0.00432,0.005792,0.090496,0.005984
+1175,1333.77,0.749756,0.560768,0.006112,0.434208,0.011616,0.004768,0.006048,0.092256,0.00576
+1176,816.831,1.22424,0.305952,0.004896,0.192512,0.005248,0.004896,0.00624,0.086048,0.006112
+1177,1509.49,0.662476,0.303008,0.005888,0.190176,0.00464,0.005312,0.004928,0.086016,0.006048
+1178,1331.38,0.751099,0.298816,0.006144,0.190464,0.00528,0.004864,0.005216,0.080896,0.005952
+1179,1567.25,0.638062,0.299168,0.005408,0.191296,0.004096,0.005824,0.004416,0.083552,0.004576
+1180,1328.79,0.752563,0.510688,0.004864,0.393216,0.00528,0.004896,0.005248,0.091072,0.006112
+1181,1097.53,0.911133,0.312512,0.005856,0.194016,0.004928,0.004096,0.006016,0.092256,0.005344
+1182,759.855,1.31604,0.323584,0.005952,0.20704,0.005888,0.004352,0.006048,0.08944,0.004864
+1183,1084.75,0.921875,0.356384,0.018464,0.227328,0.004096,0.005728,0.004512,0.091648,0.004608
+1184,1440.48,0.694214,0.312864,0.005984,0.1968,0.005248,0.004896,0.005216,0.089056,0.005664
+1185,1378.43,0.725464,0.307072,0.005888,0.194816,0.00528,0.004896,0.005184,0.084992,0.006016
+1186,1337.25,0.747803,0.323712,0.004992,0.212,0.004928,0.004256,0.006016,0.086144,0.005376
+1187,1230.4,0.812744,0.315584,0.005408,0.20576,0.005792,0.004448,0.005632,0.082432,0.006112
+1188,1698.88,0.588623,0.31344,0.004448,0.203872,0.004928,0.004192,0.006144,0.083968,0.005888
+1189,1135.26,0.880859,0.313344,0.005536,0.201312,0.005856,0.004384,0.005728,0.084384,0.006144
+1190,1179.72,0.847656,0.307936,0.00496,0.196608,0.005728,0.004512,0.005632,0.08448,0.006016
+1191,591.053,1.69189,0.315104,0.00608,0.2024,0.004512,0.00512,0.00512,0.086016,0.005856
+1192,1309.46,0.763672,0.335616,0.008224,0.218848,0.004352,0.005696,0.004576,0.088032,0.005888
+1193,1468.63,0.680908,0.335936,0.005376,0.217568,0.004448,0.005344,0.004896,0.09216,0.006144
+1194,1073.23,0.931763,0.323424,0.0048,0.2048,0.005888,0.004352,0.005856,0.092352,0.005376
+1195,1635.13,0.611572,0.31776,0.004448,0.198624,0.005728,0.004512,0.005568,0.092736,0.006144
+1196,1389.42,0.719727,0.534464,0.004352,0.41776,0.004128,0.005728,0.004512,0.09216,0.005824
+1197,1039.33,0.962158,0.321824,0.004672,0.202752,0.005696,0.004544,0.005568,0.092736,0.005856
+1198,1229.48,0.813354,0.323936,0.004416,0.206848,0.004096,0.005856,0.004416,0.093728,0.004576
+1199,647.435,1.54456,0.36864,0.006176,0.235488,0.006144,0.005216,0.005024,0.092064,0.018528
+1200,1310.72,0.762939,0.329728,0.008128,0.21088,0.004224,0.0056,0.00464,0.09136,0.004896
+1201,1219.96,0.819702,0.362496,0.005568,0.234016,0.004128,0.006144,0.005376,0.10112,0.006144
+1202,1333.33,0.75,0.329728,0.005664,0.211424,0.0056,0.00464,0.005472,0.092096,0.004832
+1203,1480.84,0.675293,0.323584,0.006144,0.212576,0.004512,0.00528,0.00496,0.085568,0.004544
+1204,1390.12,0.71936,0.490944,0.00608,0.376896,0.005344,0.004864,0.005248,0.086944,0.005568
+1205,1038.8,0.962646,0.331424,0.00464,0.214976,0.0056,0.00464,0.005568,0.08864,0.00736
+1206,1311.98,0.762207,0.321536,0.005824,0.205152,0.005664,0.004544,0.005536,0.090048,0.004768
+1207,1102.85,0.906738,0.323744,0.00544,0.20272,0.004928,0.00416,0.005952,0.095904,0.00464
+1208,949.357,1.05334,0.32752,0.006944,0.206656,0.004256,0.006144,0.005248,0.092928,0.005344
+1209,1275.62,0.783936,0.321248,0.005504,0.199456,0.004352,0.00544,0.004768,0.096256,0.005472
+1210,1432.67,0.697998,0.323744,0.004672,0.202656,0.005824,0.004416,0.005696,0.094656,0.005824
+1211,1280.6,0.780884,0.315616,0.005472,0.196512,0.004928,0.004256,0.005824,0.093728,0.004896
+1212,1049.72,0.952637,0.317504,0.00608,0.19872,0.004096,0.005792,0.004448,0.093792,0.004576
+1213,1398.91,0.714844,0.344384,0.00464,0.227296,0.005376,0.004864,0.005248,0.09104,0.00592
+1214,1287.24,0.776855,0.319232,0.006144,0.2048,0.004096,0.005696,0.004544,0.088064,0.005888
+1215,1229.48,0.813354,0.577536,0.005568,0.422464,0.036864,0.006144,0.00544,0.096256,0.0048
+1216,883.616,1.13171,0.325152,0.005856,0.200992,0.005824,0.004416,0.006144,0.096256,0.005664
+1217,1238.4,0.807495,0.322368,0.004928,0.200704,0.005184,0.004864,0.005312,0.095232,0.006144
+1218,1015.75,0.984497,0.333824,0.005984,0.211104,0.005408,0.004832,0.00528,0.096384,0.004832
+1219,1624.43,0.615601,0.327648,0.006144,0.2048,0.005472,0.004768,0.004128,0.096224,0.006112
+1220,1234.29,0.810181,0.315616,0.00464,0.196608,0.004096,0.005728,0.004512,0.094208,0.005824
+1221,1281.2,0.780518,0.321568,0.005408,0.201024,0.004672,0.004288,0.005952,0.094208,0.006016
+1222,1296.82,0.771118,0.32496,0.005696,0.202336,0.004928,0.004128,0.005952,0.096448,0.005472
+1223,1400.34,0.714111,0.33504,0.006112,0.208928,0.005728,0.004512,0.0056,0.098752,0.005408
+1224,939.989,1.06384,0.52816,0.015968,0.393024,0.004704,0.006144,0.005568,0.096832,0.00592
+1225,1174.99,0.851074,0.325088,0.005888,0.198176,0.004832,0.004096,0.006144,0.100352,0.0056
+1226,1256.06,0.796143,0.324032,0.004672,0.198464,0.00416,0.005632,0.004608,0.100352,0.006144
+1227,1498.45,0.667358,0.32768,0.005888,0.20096,0.004096,0.005792,0.005664,0.099168,0.006112
+1228,1136.36,0.880005,0.319488,0.006144,0.200608,0.004192,0.005408,0.004832,0.09328,0.005024
+1229,1557.71,0.641968,0.565248,0.005536,0.429984,0.01504,0.005312,0.004928,0.099392,0.005056
+1230,1036.96,0.964355,0.320704,0.005952,0.1968,0.005312,0.004928,0.005536,0.096736,0.00544
+1231,1368.53,0.730713,0.321088,0.00608,0.202432,0.00448,0.005312,0.004928,0.09216,0.005696
+1232,1277.41,0.782837,0.332832,0.005792,0.210624,0.004768,0.004096,0.006144,0.096032,0.005376
+1233,749.908,1.3335,0.326016,0.00752,0.205824,0.004128,0.005696,0.004512,0.093856,0.00448
+1234,1267.13,0.789185,0.324672,0.005696,0.2032,0.005728,0.004512,0.0056,0.09456,0.005376
+1235,1399.86,0.714355,0.329664,0.006144,0.212768,0.00432,0.005472,0.004768,0.090144,0.006048
+1236,1329.22,0.752319,0.319488,0.006144,0.197664,0.004928,0.004256,0.005664,0.096032,0.0048
+1237,1021.96,0.978516,0.32528,0.005952,0.208576,0.004608,0.005184,0.005056,0.090112,0.005792
+1238,1468.36,0.68103,0.309248,0.005856,0.1928,0.005856,0.004384,0.005568,0.09008,0.004704
+1239,1357.64,0.736572,0.31232,0.00512,0.194464,0.004192,0.005632,0.004608,0.0936,0.004704
+1240,1352.93,0.739136,0.314464,0.006144,0.198656,0.005312,0.004864,0.005408,0.088736,0.005344
+1241,718.407,1.39197,0.322624,0.008192,0.200736,0.005184,0.004864,0.004288,0.094016,0.005344
+1242,1364.42,0.73291,0.310848,0.005536,0.194656,0.004736,0.005472,0.004768,0.090112,0.005568
+1243,1481.11,0.675171,0.325568,0.005856,0.202144,0.004928,0.00416,0.005984,0.096416,0.00608
+1244,1330.3,0.751709,0.31392,0.004672,0.194144,0.004512,0.00528,0.00496,0.09568,0.004672
+1245,1397.24,0.715698,0.312288,0.005088,0.194592,0.005248,0.004896,0.005312,0.092288,0.004864
+1246,1134,0.881836,0.309888,0.004768,0.192512,0.00528,0.004864,0.004256,0.092096,0.006112
+1247,1532.65,0.652466,0.310112,0.00496,0.19456,0.00544,0.0048,0.005376,0.0904,0.004576
+1248,1361.02,0.734741,0.317792,0.004768,0.196064,0.00448,0.005312,0.004928,0.096256,0.005984
+1249,700.051,1.42847,0.32352,0.007488,0.19664,0.004864,0.004096,0.00608,0.098368,0.005984
+1250,1429.17,0.699707,0.313632,0.005024,0.190112,0.004448,0.005344,0.004896,0.098304,0.005504
+1251,1424.45,0.702026,0.31936,0.004864,0.196352,0.004352,0.00544,0.0048,0.098144,0.005408
+1252,1355.39,0.737793,0.315392,0.004736,0.19248,0.005728,0.004512,0.005568,0.096832,0.005536
+1253,1415.1,0.706665,0.316064,0.004736,0.195488,0.004928,0.004256,0.005792,0.096288,0.004576
+1254,1251.83,0.798828,0.33536,0.005408,0.203776,0.005504,0.00432,0.004512,0.106432,0.005408
+1255,1115.47,0.896484,0.32144,0.004448,0.194176,0.00448,0.005312,0.004928,0.1024,0.005696
+1256,970.846,1.03003,0.344064,0.006144,0.213024,0.00512,0.004864,0.004352,0.106016,0.004544
+1257,1446.84,0.691162,0.565888,0.004704,0.434176,0.007648,0.00464,0.006144,0.1024,0.006176
+1258,834.981,1.19763,0.346528,0.004672,0.216928,0.004096,0.005856,0.004416,0.104416,0.006144
+1259,1220.86,0.819092,0.334944,0.005984,0.20496,0.005536,0.004704,0.005408,0.102976,0.005376
+1260,1470.21,0.680176,0.329472,0.004672,0.199584,0.004928,0.00432,0.006112,0.104448,0.005408
+1261,1318.31,0.758545,0.324704,0.005984,0.19472,0.005152,0.005088,0.005568,0.102816,0.005376
+1262,1424.7,0.701904,0.32768,0.006144,0.196608,0.00544,0.0048,0.005536,0.103008,0.006144
+1263,1072.25,0.932617,0.320096,0.004704,0.19456,0.005504,0.004736,0.005376,0.100256,0.00496
+1264,1415.34,0.706543,0.327776,0.004608,0.198656,0.005824,0.004416,0.005696,0.102848,0.005728
+1265,1172.63,0.852783,0.573568,0.006112,0.42192,0.025632,0.005088,0.005824,0.104416,0.004576
+1266,893.933,1.11865,0.33056,0.004928,0.202688,0.00416,0.005664,0.004576,0.103584,0.00496
+1267,1303.63,0.76709,0.32448,0.004992,0.195968,0.004736,0.004096,0.006144,0.1024,0.006144
+1268,1486.48,0.672729,0.326048,0.004544,0.195936,0.004768,0.004256,0.00592,0.104512,0.006112
+1269,1276.21,0.783569,0.319488,0.006112,0.194592,0.005184,0.004864,0.00432,0.09936,0.005056
+1270,1270.67,0.786987,0.321696,0.004992,0.198656,0.005824,0.004416,0.00576,0.09664,0.005408
+1271,1439.72,0.69458,0.501728,0.005472,0.379552,0.005216,0.005024,0.00528,0.095072,0.006112
+1272,865.87,1.15491,0.318208,0.004864,0.196608,0.005184,0.004864,0.004288,0.096256,0.006144
+1273,1691.51,0.591187,0.321152,0.006144,0.196608,0.005376,0.004864,0.005248,0.097152,0.00576
+1274,847.77,1.17957,0.580928,0.00544,0.41872,0.036864,0.01344,0.004992,0.095936,0.005536
+1275,1205.24,0.829712,0.339584,0.00544,0.210912,0.004896,0.005504,0.004736,0.1024,0.005696
+1276,1264.78,0.790649,0.360768,0.005472,0.24032,0.004384,0.005408,0.004832,0.095552,0.0048
+1277,1081.17,0.924927,0.378912,0.006144,0.258048,0.005344,0.004864,0.00416,0.095584,0.004768
+1278,1178.87,0.848267,0.329056,0.005504,0.205504,0.005792,0.004416,0.005664,0.096736,0.00544
+1279,1533.51,0.6521,0.499712,0.006144,0.376832,0.005824,0.004416,0.005728,0.095872,0.004896
+1280,1001.47,0.998535,0.323968,0.004896,0.204192,0.004704,0.004096,0.006144,0.09424,0.005696
+1281,917.666,1.08972,0.35872,0.004544,0.237568,0.00576,0.00448,0.005664,0.094688,0.006016
+1282,986.988,1.01318,0.329984,0.007552,0.21184,0.00544,0.0048,0.005344,0.09056,0.004448
+1283,1491.35,0.670532,0.313824,0.00496,0.197856,0.004704,0.004256,0.005888,0.090368,0.005792
+1284,1452.48,0.688477,0.321664,0.00544,0.199488,0.005792,0.00448,0.00544,0.09488,0.006144
+1285,1371.73,0.729004,0.323136,0.005504,0.201088,0.004352,0.00544,0.0048,0.096256,0.005696
+1286,1278,0.782471,0.321024,0.005504,0.1952,0.005792,0.004448,0.005632,0.098816,0.005632
+1287,1448.89,0.690186,0.316288,0.00496,0.193824,0.004736,0.004224,0.006112,0.097312,0.00512
+1288,1133.06,0.882568,0.324416,0.004928,0.202752,0.004096,0.00576,0.00448,0.0976,0.0048
+1289,1341.41,0.745483,0.319488,0.006016,0.200128,0.0048,0.004096,0.006112,0.093472,0.004864
+1290,1410.95,0.70874,0.616448,0.005632,0.491712,0.012512,0.0056,0.004736,0.091264,0.004992
+1291,782.8,1.27747,0.320192,0.0048,0.197824,0.004928,0.004096,0.006016,0.096384,0.006144
+1292,1501.47,0.666016,0.319328,0.006144,0.196608,0.005856,0.004384,0.005504,0.094848,0.005984
+1293,963.085,1.03833,0.3568,0.004544,0.235328,0.004288,0.005504,0.004736,0.09744,0.00496
+1294,1620.25,0.617188,0.317216,0.004768,0.196384,0.00432,0.005504,0.004736,0.096224,0.00528
+1295,1407.8,0.710327,0.317696,0.005024,0.19456,0.005184,0.004896,0.004288,0.098272,0.005472
+1296,1174.48,0.85144,0.315552,0.005472,0.193344,0.004096,0.005824,0.004416,0.096256,0.006144
+1297,1090.96,0.916626,0.323264,0.006112,0.200608,0.004224,0.005568,0.004672,0.096256,0.005824
+1298,1501.19,0.666138,0.3216,0.004384,0.202592,0.004256,0.005536,0.004704,0.094208,0.00592
+1299,721.571,1.38586,0.336256,0.006656,0.212896,0.005888,0.004352,0.00576,0.094592,0.006112
+1300,1404.9,0.711792,0.313472,0.005408,0.193376,0.005152,0.004864,0.00432,0.095936,0.004416
+1301,1473.12,0.678833,0.323584,0.00544,0.193216,0.005216,0.004864,0.004256,0.106016,0.004576
+1302,1295.79,0.771729,0.320416,0.004992,0.192512,0.005632,0.004608,0.005568,0.1024,0.004704
+1303,1468.89,0.680786,0.327872,0.004704,0.194592,0.005856,0.004352,0.00576,0.10688,0.005728
+1304,1265.96,0.789917,0.505664,0.004864,0.376832,0.005216,0.004864,0.004256,0.104288,0.005344
+1305,1138.25,0.87854,0.323936,0.00464,0.19456,0.004096,0.00576,0.00448,0.104448,0.005952
+1306,1296.61,0.77124,0.325792,0.005408,0.197376,0.004224,0.005376,0.004864,0.103872,0.004672
+1307,1382.62,0.723267,0.332736,0.005088,0.200576,0.004192,0.005632,0.004608,0.106496,0.006144
+1308,665.421,1.50281,0.34816,0.008032,0.2152,0.005152,0.004864,0.00432,0.105952,0.00464
+1309,1411.44,0.708496,0.330976,0.006144,0.199936,0.004864,0.004096,0.00608,0.10448,0.005376
+1310,1267.33,0.789062,0.330016,0.005472,0.201664,0.004096,0.005792,0.004448,0.103776,0.004768
+1311,846.106,1.18188,0.3192,0.005408,0.196416,0.004928,0.004224,0.00592,0.096512,0.005792
+1312,1385.89,0.721558,0.330624,0.004992,0.204736,0.00416,0.005664,0.004576,0.100352,0.006144
+1313,1459.47,0.685181,0.331776,0.006112,0.202784,0.005856,0.004384,0.005696,0.1008,0.006144
+1314,1178.37,0.848633,0.330112,0.005568,0.2032,0.004608,0.005184,0.005056,0.101664,0.004832
+1315,812.537,1.23071,0.33856,0.007008,0.204832,0.005344,0.004864,0.005248,0.105344,0.00592
+1316,1341.63,0.745361,0.320416,0.004992,0.192512,0.005568,0.004672,0.006016,0.10176,0.004896
+1317,1393.91,0.717407,0.324448,0.00496,0.197728,0.004896,0.004224,0.005888,0.10064,0.006112
+1318,1327.93,0.753052,0.319616,0.004896,0.194496,0.00416,0.005536,0.004704,0.100352,0.005472
+1319,1486.21,0.672852,0.323584,0.005472,0.195232,0.005184,0.004896,0.005632,0.102528,0.00464
+1320,1210.76,0.825928,0.342016,0.005984,0.2152,0.005376,0.00432,0.00464,0.1016,0.004896
+1321,1180.23,0.84729,0.323968,0.00448,0.197664,0.004928,0.004256,0.005728,0.102176,0.004736
+1322,1256.06,0.796143,0.326368,0.0048,0.206848,0.005888,0.004352,0.005728,0.094336,0.004416
+1323,1334.42,0.74939,0.560576,0.005376,0.426848,0.0216,0.005024,0.005792,0.090464,0.005472
+1324,839.43,1.19128,0.317312,0.006144,0.200704,0.005888,0.004352,0.005952,0.088256,0.006016
+1325,1499.54,0.66687,0.31552,0.005376,0.197536,0.005472,0.004736,0.005472,0.090784,0.006144
+1326,1367.84,0.731079,0.311136,0.006144,0.192512,0.004096,0.006144,0.005696,0.09056,0.005984
+1327,1410.23,0.709106,0.309664,0.004512,0.1944,0.004256,0.005376,0.004864,0.090112,0.006144
+1328,1318.74,0.758301,0.30944,0.005472,0.191328,0.005408,0.004832,0.005248,0.092192,0.00496
+1329,1493.26,0.669678,0.49552,0.004768,0.378112,0.004864,0.004128,0.006112,0.092128,0.005408
+1330,620.23,1.6123,0.325088,0.005792,0.206848,0.004448,0.005376,0.004864,0.09216,0.0056
+1331,1285.22,0.778076,0.575488,0.006144,0.448512,0.007584,0.004704,0.006112,0.096288,0.006144
+1332,902.401,1.10815,0.31968,0.004736,0.19776,0.004896,0.004096,0.005984,0.096416,0.005792
+1333,1413.63,0.707397,0.312544,0.00576,0.194784,0.004256,0.005536,0.004704,0.092096,0.005408
+1334,1434.17,0.697266,0.314528,0.006144,0.196064,0.00464,0.00544,0.0048,0.092032,0.005408
+1335,1299.9,0.769287,0.315488,0.004832,0.197696,0.004928,0.005824,0.004544,0.09216,0.005504
+1336,1353.38,0.738892,0.316288,0.005024,0.194528,0.005824,0.004416,0.005952,0.0944,0.006144
+1337,1195.39,0.836548,0.318016,0.004672,0.195808,0.004896,0.00416,0.005984,0.097856,0.00464
+1338,1184.67,0.844116,0.321056,0.006112,0.200256,0.004576,0.005856,0.004384,0.094208,0.005664
+1339,1640.04,0.609741,0.317504,0.005472,0.196736,0.004704,0.00512,0.00512,0.095712,0.00464
+1340,1275.62,0.783936,0.31568,0.00544,0.193472,0.004096,0.005792,0.004448,0.096256,0.006176
+1341,727.984,1.37366,0.32576,0.008192,0.202368,0.00448,0.005312,0.004928,0.095904,0.004576
+1342,1466.52,0.681885,0.316896,0.00544,0.197504,0.005824,0.004416,0.005664,0.092576,0.005472
+1343,1422.22,0.703125,0.32,0.004576,0.196608,0.005792,0.004448,0.005664,0.097824,0.005088
+1344,1398.19,0.71521,0.324,0.004672,0.200544,0.005376,0.004864,0.005216,0.097184,0.006144
+1345,1319.8,0.75769,0.530528,0.004864,0.40896,0.004736,0.005152,0.005088,0.096256,0.005472
+1346,1083.45,0.922974,0.31968,0.005376,0.19456,0.004896,0.004288,0.005824,0.098624,0.006112
+1347,1252.98,0.798096,0.319264,0.005568,0.201088,0.004544,0.005248,0.004992,0.09216,0.005664
+1348,1124.35,0.889404,0.525568,0.014272,0.395328,0.005856,0.0056,0.004928,0.094208,0.005376
+1349,1008.74,0.991333,0.324128,0.004864,0.206848,0.005152,0.004896,0.004288,0.09216,0.00592
+1350,1475.5,0.677734,0.317888,0.004544,0.198656,0.004096,0.005824,0.005856,0.092768,0.006144
+1351,1292.11,0.773926,0.315488,0.005376,0.195456,0.005408,0.004832,0.006016,0.092288,0.006112
+1352,1512.83,0.661011,0.31744,0.005792,0.19696,0.00416,0.005952,0.004224,0.094208,0.006144
+1353,1334.64,0.749268,0.311616,0.004512,0.19248,0.005248,0.004896,0.005216,0.093184,0.00608
+1354,1385.42,0.721802,0.496512,0.004992,0.378656,0.00432,0.005568,0.004672,0.093728,0.004576
+1355,1050.12,0.952271,0.309248,0.005376,0.189184,0.0056,0.00464,0.005696,0.093856,0.004896
+1356,1532.36,0.652588,0.31888,0.005408,0.199456,0.005344,0.004896,0.004096,0.094208,0.005472
+1357,660.379,1.51428,0.336128,0.006752,0.21504,0.005504,0.004736,0.005376,0.09296,0.00576
+1358,1330.52,0.751587,0.315392,0.005504,0.195232,0.005376,0.004672,0.004256,0.094208,0.006144
+1359,1405.87,0.711304,0.317472,0.004608,0.198432,0.00432,0.006144,0.005504,0.0928,0.005664
+1360,1456.61,0.686523,0.32,0.004768,0.201888,0.004928,0.004128,0.006016,0.092288,0.005984
+1361,1401.06,0.713745,0.313216,0.004832,0.191872,0.004736,0.004096,0.006144,0.09616,0.005376
+1362,722.271,1.38452,0.317152,0.004768,0.197952,0.004704,0.00512,0.00512,0.094048,0.00544
+1363,1357.19,0.736816,0.317408,0.005632,0.197152,0.005184,0.004896,0.004224,0.094208,0.006112
+1364,1477.1,0.677002,0.327456,0.004832,0.206368,0.004576,0.005792,0.004448,0.096096,0.005344
+1365,783.324,1.27661,0.321536,0.008192,0.204544,0.004352,0.00544,0.0048,0.089088,0.00512
+1366,1611.96,0.620361,0.312896,0.00544,0.19936,0.004096,0.005728,0.004512,0.088064,0.005696
+1367,944.105,1.0592,0.323936,0.00544,0.207808,0.005536,0.004704,0.00544,0.090432,0.004576
+1368,1639.71,0.609863,0.316,0.004704,0.202752,0.005248,0.004896,0.005792,0.086496,0.006112
+1369,1311.56,0.762451,0.313856,0.004576,0.200704,0.004096,0.005824,0.004448,0.088032,0.006176
+1370,1406.35,0.71106,0.493568,0.005216,0.379584,0.00432,0.005568,0.004672,0.088064,0.006144
+1371,1103.89,0.905884,0.309056,0.00608,0.196672,0.00528,0.004864,0.005248,0.08496,0.005952
+1372,1386.83,0.721069,0.32096,0.005984,0.208608,0.004544,0.005824,0.004416,0.086016,0.005568
+1373,1279.8,0.781372,0.319488,0.006144,0.202752,0.005472,0.004768,0.005312,0.089984,0.005056
+1374,845.757,1.18237,0.329728,0.007712,0.214624,0.004928,0.00416,0.00592,0.087936,0.004448
+1375,1376.81,0.726318,0.31616,0.004832,0.200704,0.005632,0.004608,0.005504,0.090016,0.004864
+1376,1450.42,0.689453,0.312768,0.00544,0.19744,0.004096,0.005792,0.004448,0.090112,0.00544
+1377,1339,0.746826,0.314944,0.005568,0.199232,0.004096,0.005888,0.004352,0.090112,0.005696
+1378,1411.44,0.708496,0.31744,0.006144,0.202176,0.004672,0.00432,0.00592,0.089568,0.00464
+1379,1123.58,0.890015,0.313536,0.005408,0.197536,0.005632,0.004576,0.005504,0.08976,0.00512
+1380,1419.27,0.70459,0.3312,0.005472,0.215904,0.00512,0.004896,0.00432,0.09008,0.005408
+1381,1252.6,0.79834,0.31856,0.006016,0.202208,0.004768,0.004096,0.006144,0.089952,0.005376
+1382,748.675,1.33569,0.345568,0.007776,0.225696,0.004096,0.005696,0.004544,0.09216,0.0056
+1383,1357.64,0.736572,0.32016,0.0048,0.200224,0.004576,0.005248,0.004992,0.094208,0.006112
+1384,1415.34,0.706543,0.328256,0.004928,0.208928,0.005312,0.004896,0.00576,0.092544,0.005888
+1385,1358.54,0.736084,0.316256,0.004928,0.19456,0.005824,0.004416,0.005568,0.095872,0.005088
+1386,803.847,1.24402,0.32976,0.005664,0.20528,0.005216,0.004896,0.004224,0.099456,0.005024
+1387,1177.52,0.849243,0.354304,0.005888,0.227584,0.005696,0.004544,0.005568,0.098944,0.00608
+1388,1344.27,0.743896,0.3448,0.0048,0.208896,0.005312,0.0048,0.004224,0.112096,0.004672
+1389,958.353,1.04346,0.627392,0.004768,0.475136,0.02048,0.00592,0.00432,0.112128,0.00464
+1390,904.394,1.10571,0.374272,0.005824,0.233824,0.005408,0.0048,0.00528,0.113504,0.005632
+1391,1350.92,0.740234,0.339936,0.00608,0.203936,0.004928,0.004192,0.00592,0.108768,0.006112
+1392,1434.42,0.697144,0.3352,0.005856,0.198944,0.00528,0.004864,0.005248,0.109536,0.005472
+1393,1245.55,0.802856,0.333952,0.004992,0.196608,0.005856,0.004384,0.00576,0.110976,0.005376
+1394,1458.17,0.685791,0.343712,0.006144,0.204832,0.00544,0.004768,0.005568,0.111168,0.005792
+1395,1094.75,0.913452,0.332224,0.004672,0.197568,0.004928,0.004224,0.005856,0.109888,0.005088
+1396,1386.36,0.721313,0.33408,0.00464,0.200544,0.005632,0.004608,0.005472,0.107168,0.006016
+1397,1333.98,0.749634,0.33456,0.005024,0.206496,0.004448,0.005344,0.004896,0.1024,0.005952
+1398,713.962,1.40063,0.341376,0.007584,0.209088,0.004864,0.004096,0.00608,0.10432,0.005344
+1399,1377.27,0.726074,0.331808,0.004768,0.198656,0.005888,0.004352,0.005792,0.106848,0.005504
+1400,1459.47,0.685181,0.333632,0.005856,0.200992,0.005792,0.004448,0.006144,0.104448,0.005952
+1401,1157.23,0.864136,0.331776,0.006144,0.201952,0.004896,0.004096,0.006016,0.102528,0.006144
+1402,1522.39,0.65686,0.332,0.005504,0.195488,0.00416,0.005632,0.004608,0.110592,0.006016
+1403,1283.41,0.779175,0.512384,0.004608,0.37872,0.004256,0.0056,0.00464,0.108544,0.006016
+1404,742.836,1.34619,0.349088,0.004992,0.21504,0.005344,0.004864,0.005216,0.109248,0.004384
+1405,1464.43,0.682861,0.346144,0.005664,0.209024,0.004448,0.005344,0.004896,0.112192,0.004576
+1406,688.635,1.45215,0.373376,0.006816,0.23664,0.004928,0.004192,0.005856,0.108832,0.006112
+1407,1354.5,0.738281,0.328128,0.005024,0.198656,0.004096,0.005856,0.004416,0.104416,0.005664
+1408,1402.98,0.712769,0.325216,0.005408,0.197536,0.005248,0.004864,0.005248,0.101376,0.005536
+1409,1206.84,0.828613,0.33056,0.004928,0.20448,0.004416,0.005376,0.004864,0.101952,0.004544
+1410,1509.49,0.662476,0.323552,0.005536,0.197216,0.004096,0.005824,0.004416,0.100352,0.006112
+1411,1150.4,0.869263,0.326432,0.004992,0.200384,0.004416,0.005376,0.004864,0.100352,0.006048
+1412,1443.52,0.692749,0.322784,0.00544,0.201344,0.004224,0.005568,0.004672,0.096128,0.005408
+1413,1292.32,0.773804,0.323904,0.005024,0.204512,0.004384,0.005344,0.004896,0.094208,0.005536
+1414,703.176,1.42212,0.3376,0.006656,0.21296,0.005632,0.004608,0.00608,0.096192,0.005472
+1415,1394.62,0.717041,0.315392,0.006144,0.196608,0.004096,0.005728,0.004512,0.09216,0.006144
+1416,1513.11,0.660889,0.319936,0.004864,0.200704,0.005504,0.004736,0.006144,0.09216,0.005824
+1417,1112.89,0.89856,0.318464,0.006176,0.197888,0.004832,0.004096,0.007232,0.092896,0.005344
+1418,1646.63,0.6073,0.311712,0.004544,0.196608,0.004128,0.005792,0.004416,0.090112,0.006112
+1419,1377.27,0.726074,0.492,0.005952,0.375392,0.004096,0.005824,0.004416,0.091648,0.004672
+1420,1035,0.966187,0.343776,0.0048,0.225312,0.004064,0.006016,0.00432,0.093824,0.00544
+1421,1400.34,0.714111,0.32128,0.006144,0.2048,0.005696,0.004544,0.005536,0.088704,0.005856
+1422,1100.48,0.908691,0.559104,0.005792,0.428,0.01472,0.006144,0.00528,0.093024,0.006144
+1423,945.958,1.05713,0.321536,0.005728,0.20112,0.005312,0.004864,0.005216,0.094656,0.00464
+1424,1446.07,0.691528,0.3176,0.005408,0.2016,0.004096,0.005824,0.004416,0.090144,0.006112
+1425,1250.5,0.799683,0.309248,0.005824,0.194624,0.004352,0.005472,0.004768,0.089152,0.005056
+1426,1568.45,0.637573,0.321664,0.006144,0.196608,0.005856,0.004384,0.005536,0.098528,0.004608
+1427,1293.95,0.772827,0.319488,0.006144,0.195744,0.004928,0.004128,0.005984,0.096416,0.006144
+1428,1256.06,0.796143,0.321344,0.00448,0.200416,0.004384,0.005408,0.004832,0.096256,0.005568
+1429,1246.31,0.802368,0.323136,0.00544,0.197376,0.005824,0.004416,0.005664,0.098784,0.005632
+1430,1514.51,0.660278,0.32848,0.004896,0.204832,0.005504,0.004704,0.005408,0.098496,0.00464
+1431,606.995,1.64746,0.332928,0.008192,0.208896,0.0056,0.00464,0.005472,0.094816,0.005312
+1432,1511.44,0.661621,0.325088,0.006144,0.200704,0.005184,0.004896,0.004256,0.098304,0.0056
+1433,1123.58,0.890015,0.321504,0.006112,0.198048,0.004736,0.004192,0.006048,0.096256,0.006112
+1434,1624.11,0.615723,0.316896,0.00544,0.199392,0.005856,0.004352,0.00576,0.090496,0.0056
+1435,1336.38,0.748291,0.323584,0.00576,0.200832,0.004352,0.00544,0.0048,0.097376,0.005024
+1436,1433.92,0.697388,0.500576,0.004928,0.378112,0.004864,0.004096,0.006144,0.096256,0.006176
+1437,958.689,1.04309,0.319168,0.005792,0.194912,0.005888,0.004352,0.005728,0.096672,0.005824
+1438,1458.95,0.685425,0.335872,0.006016,0.218976,0.004384,0.005408,0.004832,0.09168,0.004576
+1439,1392.25,0.718262,0.573344,0.006048,0.423072,0.03072,0.00496,0.005824,0.098144,0.004576
+1440,535.775,1.86646,0.345824,0.006144,0.227328,0.005856,0.004384,0.005728,0.09056,0.005824
+1441,1388.95,0.719971,0.330656,0.005024,0.21504,0.004096,0.005888,0.004384,0.09136,0.004864
+1442,1480.3,0.675537,0.331904,0.004416,0.204768,0.005536,0.004704,0.005408,0.101088,0.005984
+1443,1331.38,0.751099,0.328544,0.00496,0.200256,0.004544,0.005248,0.004992,0.10368,0.004864
+1444,1170.79,0.854126,0.323776,0.00544,0.202816,0.004896,0.004128,0.006144,0.095616,0.004736
+1445,1322.14,0.756348,0.318272,0.004928,0.200288,0.004512,0.005312,0.004928,0.093504,0.0048
+1446,1191.22,0.839478,0.327136,0.005696,0.207072,0.00432,0.005536,0.004704,0.094208,0.0056
+1447,909.414,1.09961,0.34432,0.007584,0.20704,0.004768,0.004096,0.006144,0.108544,0.006144
+1448,1457.91,0.685913,0.33584,0.006144,0.202304,0.004544,0.005248,0.006496,0.104992,0.006112
+1449,1241.96,0.805176,0.329376,0.006144,0.198656,0.004096,0.006016,0.005248,0.103424,0.005792
+1450,1414.61,0.706909,0.329664,0.005952,0.19856,0.004384,0.005408,0.004832,0.10448,0.006048
+1451,1302.38,0.767822,0.32992,0.005888,0.196864,0.005344,0.004896,0.005728,0.106624,0.004576
+1452,1419.02,0.704712,0.509184,0.005824,0.37664,0.004608,0.00528,0.00496,0.106496,0.005376
+1453,959.363,1.04236,0.3336,0.005408,0.201408,0.00432,0.005664,0.004576,0.106496,0.005728
+1454,1421.24,0.703613,0.362496,0.006144,0.227328,0.004096,0.005728,0.004512,0.108576,0.006112
+1455,1258.76,0.794434,0.58352,0.006112,0.444064,0.006528,0.006144,0.005248,0.109472,0.005952
+1456,822.738,1.21545,0.345568,0.005632,0.203168,0.005504,0.004832,0.005312,0.11552,0.0056
+1457,1383.55,0.722778,0.340128,0.005504,0.199168,0.004576,0.005216,0.005024,0.114688,0.005952
+1458,1391.3,0.71875,0.337216,0.005504,0.197056,0.004288,0.005536,0.004704,0.114688,0.00544
+1459,1113.5,0.898071,0.351712,0.005472,0.209856,0.004096,0.005792,0.004448,0.11664,0.005408
+1460,1532.93,0.652344,0.331776,0.005536,0.1984,0.004928,0.004128,0.005888,0.10816,0.004736
+1461,1059.9,0.943481,0.340192,0.005024,0.20208,0.004768,0.004128,0.006112,0.11264,0.00544
+1462,1311.56,0.762451,0.341248,0.005696,0.201152,0.004128,0.00576,0.004448,0.114624,0.00544
+1463,1068.34,0.936035,0.569344,0.0056,0.42448,0.022112,0.005632,0.005024,0.100352,0.006144
+1464,974.658,1.026,0.328128,0.004864,0.202752,0.006016,0.004224,0.005696,0.098752,0.005824
+1465,1393.91,0.717407,0.332928,0.005536,0.205408,0.00576,0.00448,0.005792,0.10064,0.005312
+1466,1279,0.78186,0.325632,0.006016,0.200832,0.005216,0.005024,0.005696,0.09824,0.004608
+1467,1417.3,0.705566,0.329216,0.005824,0.200544,0.004576,0.005216,0.005024,0.1024,0.005632
+1468,1255.09,0.796753,0.328576,0.004992,0.199712,0.004896,0.004288,0.005856,0.104064,0.004768
+1469,1474.44,0.678223,0.508224,0.005504,0.379168,0.004736,0.005248,0.004992,0.104,0.004576
+1470,1005.89,0.994141,0.317344,0.00608,0.196672,0.005184,0.004896,0.004256,0.094208,0.006048
+1471,1511.16,0.661743,0.331776,0.00576,0.201088,0.005792,0.004448,0.005664,0.10288,0.006144
+1472,1054.58,0.948242,0.573472,0.005472,0.440992,0.008192,0.006144,0.005568,0.100928,0.006176
+1473,917.974,1.08936,0.335776,0.006144,0.20624,0.004704,0.004192,0.006048,0.1024,0.006048
+1474,1395.57,0.716553,0.350624,0.004608,0.227296,0.004128,0.005664,0.00576,0.09712,0.006048
+1475,1490.81,0.670776,0.323264,0.006144,0.200704,0.00528,0.004896,0.005344,0.095104,0.005792
+1476,1241.21,0.805664,0.3216,0.005504,0.19936,0.004096,0.005888,0.004384,0.097536,0.004832
+1477,1398.19,0.71521,0.323648,0.005408,0.203744,0.005664,0.00416,0.004512,0.094208,0.005952
+1478,892.569,1.12036,0.347872,0.00448,0.227328,0.005888,0.004352,0.00576,0.094592,0.005472
+1479,1354.95,0.738037,0.333824,0.005472,0.215712,0.004096,0.005728,0.004512,0.093664,0.00464
+1480,1309.67,0.76355,0.565888,0.004736,0.433952,0.013792,0.004864,0.005952,0.096448,0.006144
+1481,926.278,1.07959,0.32768,0.005504,0.20544,0.004096,0.005856,0.005472,0.096416,0.004896
+1482,1228.19,0.814209,0.322464,0.005024,0.200704,0.005856,0.004384,0.005696,0.094688,0.006112
+1483,1461.81,0.684082,0.325856,0.00544,0.202624,0.004928,0.004288,0.005792,0.096608,0.006176
+1484,1231.88,0.811768,0.319488,0.006112,0.198656,0.004128,0.005696,0.004544,0.095296,0.005056
+1485,1549.17,0.645508,0.331776,0.006144,0.202752,0.00512,0.004864,0.004352,0.10352,0.005024
+1486,1110.18,0.900757,0.329536,0.005408,0.199456,0.004096,0.005792,0.004448,0.104448,0.005888
+1487,1432.42,0.69812,0.32784,0.00464,0.202624,0.004128,0.005664,0.004576,0.100352,0.005856
+1488,1302.18,0.767944,0.330208,0.004576,0.2048,0.005824,0.004416,0.005696,0.100064,0.004832
+1489,1024,0.976562,0.577984,0.004544,0.43008,0.02656,0.0056,0.004704,0.100352,0.006144
+1490,978.383,1.02209,0.336,0.005664,0.20704,0.004384,0.005472,0.004768,0.104096,0.004576
+1491,1366.47,0.731812,0.331776,0.006016,0.20272,0.004256,0.005536,0.004704,0.103904,0.00464
+1492,1271.46,0.786499,0.331776,0.005696,0.200448,0.0048,0.004096,0.006144,0.105504,0.005088
+1493,1410.23,0.709106,0.335552,0.006144,0.202752,0.004096,0.005728,0.004512,0.106496,0.005824
+1494,1330.95,0.751343,0.548992,0.005824,0.416064,0.005952,0.004288,0.005824,0.106464,0.004576
+1495,1074.78,0.93042,0.3312,0.00576,0.198368,0.004768,0.005696,0.004576,0.106464,0.005568
+1496,1282.81,0.779541,0.335904,0.005952,0.207072,0.005728,0.00448,0.005632,0.101952,0.005088
+1497,786.558,1.27136,0.591168,0.004096,0.445536,0.02112,0.0056,0.004928,0.104448,0.00544
+1498,1379.12,0.725098,0.331968,0.004416,0.2048,0.004096,0.005728,0.004512,0.1024,0.006016
+1499,1085.61,0.921143,0.365184,0.005056,0.23552,0.005664,0.004576,0.005472,0.103072,0.005824
+1500,1526.93,0.654907,0.34192,0.006144,0.201856,0.004896,0.004192,0.006144,0.11264,0.006048
+1501,1156.08,0.86499,0.33792,0.006144,0.200224,0.004576,0.005248,0.004992,0.110592,0.006144
+1502,1087.77,0.919312,0.526336,0.005824,0.38944,0.005152,0.004896,0.004288,0.111776,0.00496
+1503,1146.86,0.871948,0.349184,0.005696,0.19472,0.004384,0.005408,0.004832,0.1288,0.005344
+1504,1235.78,0.809204,0.369888,0.00576,0.223616,0.005408,0.004832,0.005248,0.119648,0.005376
+1505,1255.86,0.796265,0.358464,0.005408,0.211744,0.005216,0.004896,0.004224,0.120832,0.006144
+1506,849.616,1.177,0.350432,0.00816,0.206912,0.005216,0.004896,0.004192,0.11648,0.004576
+1507,1320.01,0.757568,0.328416,0.004768,0.198656,0.00544,0.0048,0.00576,0.104416,0.004576
+1508,1405.87,0.711304,0.339552,0.006048,0.200384,0.004512,0.00528,0.00496,0.11264,0.005728
+1509,1305.08,0.766235,0.3584,0.00592,0.202368,0.004704,0.004096,0.00736,0.127808,0.006144
+1510,1328.79,0.752563,0.351552,0.005664,0.196384,0.0048,0.004096,0.006144,0.129024,0.00544
+1511,1002.2,0.997803,0.351296,0.00592,0.19888,0.004096,0.005792,0.004448,0.126816,0.005344
+1512,1401.54,0.713501,0.352256,0.0056,0.2024,0.004928,0.00416,0.005952,0.124544,0.004672
+1513,1108.53,0.9021,0.587808,0.005504,0.426624,0.019712,0.004864,0.005952,0.120096,0.005056
+1514,917.049,1.09045,0.350368,0.005376,0.205088,0.004736,0.004096,0.006144,0.118784,0.006144
+1515,953.889,1.04834,0.369952,0.00576,0.233888,0.00544,0.004768,0.005376,0.109312,0.005408
+1516,1144.77,0.873535,0.350432,0.004736,0.216672,0.00432,0.005536,0.004704,0.108544,0.00592
+1517,1296.41,0.771362,0.342048,0.005472,0.21312,0.00464,0.005152,0.005088,0.104064,0.004512
+1518,1138.89,0.878052,0.344448,0.004704,0.212992,0.00416,0.00608,0.005568,0.105024,0.00592
+1519,1278.8,0.781982,0.358048,0.006144,0.226528,0.004896,0.004096,0.006048,0.104544,0.005792
+1520,1103.89,0.905884,0.356352,0.005632,0.225568,0.00432,0.005472,0.004768,0.104448,0.006144
+1521,1292.73,0.77356,0.633056,0.005504,0.47104,0.043776,0.00592,0.00432,0.09792,0.004576
+1522,859.331,1.1637,0.340032,0.005408,0.215808,0.005344,0.004896,0.005216,0.098656,0.004704
+1523,1284.82,0.77832,0.329824,0.005696,0.206976,0.004512,0.005312,0.004928,0.097408,0.004992
+1524,1181.6,0.846313,0.326144,0.005504,0.201664,0.004096,0.005888,0.005824,0.09856,0.004608
+1525,1501.47,0.666016,0.321568,0.006048,0.194688,0.005504,0.004704,0.005472,0.100736,0.004416
+1526,1454.55,0.6875,0.323456,0.00496,0.197728,0.004928,0.004192,0.006144,0.099904,0.0056
+1527,1064.17,0.939697,0.325088,0.006144,0.196608,0.00528,0.004864,0.004192,0.1024,0.0056
+1528,1491.9,0.670288,0.32288,0.004416,0.198176,0.004544,0.00528,0.00496,0.10016,0.005344
+1529,1272.44,0.785889,0.317728,0.004576,0.19456,0.005408,0.004832,0.005216,0.097184,0.005952
+1530,775.537,1.28943,0.330528,0.007008,0.204768,0.005504,0.004736,0.005376,0.097024,0.006112
+1531,1359.67,0.735474,0.325632,0.006144,0.200704,0.005792,0.004448,0.005856,0.09792,0.004768
+1532,602.309,1.66028,0.317472,0.006144,0.198688,0.00528,0.004864,0.005248,0.09216,0.005088
+1533,1292.52,0.773682,0.332,0.005504,0.2192,0.004896,0.004128,0.005984,0.087456,0.004832
+1534,1104.64,0.905273,0.3392,0.005888,0.223488,0.005888,0.004352,0.00576,0.088448,0.005376
+1535,1305.5,0.765991,0.327264,0.005792,0.209248,0.005856,0.004416,0.005632,0.090592,0.005728
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..3a1a274
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,108.657,9.23252,8.40398,0.038725,0.600473,0.00847259,0.00536219,0.0165709,0.0512584,0.0545115,7.56945,0.0591591
+max_1024,135.092,12.4639,10.1394,0.07888,2.44752,0.065184,0.028672,0.031008,0.067584,0.07168,9.31542,0.315648
+min_1024,80.2319,7.40234,7.86301,0.034816,0.52288,0.006176,0.004064,0.014688,0.049152,0.051936,7.09014,0.057024
+512,131.594,7.59912,8.60138,0.035456,0.575488,0.008224,0.005632,0.01616,0.049856,0.054752,7.79728,0.058528
+513,88.9314,11.2446,9.08906,0.038912,0.61168,0.00816,0.0048,0.016384,0.057376,0.053216,8.24093,0.0576
+514,101.216,9.87988,8.31715,0.03824,0.637632,0.008064,0.004224,0.016384,0.0512,0.05456,7.44726,0.059584
+515,111.238,8.98975,8.56474,0.038912,0.53248,0.008224,0.006112,0.01616,0.050912,0.053696,7.80038,0.057856
+516,98.5611,10.146,8.50624,0.03984,0.855744,0.008064,0.004512,0.016384,0.051008,0.053088,7.41821,0.059392
+517,113.658,8.79834,8.20307,0.037856,0.536576,0.008128,0.005184,0.015392,0.051168,0.053248,7.43629,0.059232
+518,112.238,8.90967,8.57533,0.038528,0.53328,0.008192,0.005472,0.016096,0.049856,0.053504,7.81251,0.057888
+519,100.56,9.94434,8.49043,0.04096,0.847872,0.008224,0.00608,0.016128,0.050528,0.053696,7.40813,0.058816
+520,112.035,8.92578,8.19616,0.038912,0.544768,0.008192,0.005184,0.015328,0.052224,0.054272,7.41949,0.057792
+521,107.456,9.30615,8.78189,0.038752,0.755616,0.008032,0.0056,0.015296,0.051136,0.053344,7.79642,0.057696
+522,108.228,9.23975,8.20669,0.037632,0.552,0.007264,0.005632,0.016096,0.049792,0.054368,7.42602,0.057888
+523,112.435,8.89404,8.18947,0.04096,0.531712,0.008032,0.005024,0.016384,0.05072,0.05376,7.42397,0.058912
+524,112.596,8.88135,8.5832,0.038912,0.53648,0.008064,0.005792,0.01616,0.049952,0.053248,7.8169,0.057696
+525,106.379,9.40039,8.44966,0.038368,0.775136,0.01024,0.006144,0.016384,0.051232,0.053216,7.44038,0.05856
+526,107.332,9.31689,8.32118,0.038336,0.63152,0.00816,0.005504,0.016128,0.05008,0.053216,7.45888,0.05936
+527,115.27,8.67529,8.58368,0.03888,0.534208,0.007264,0.005888,0.016384,0.05056,0.05392,7.81866,0.05792
+528,97.1721,10.291,9.35418,0.037984,0.70848,0.00816,0.005536,0.016384,0.049792,0.061408,8.40909,0.057344
+529,105.22,9.50391,8.27213,0.038752,0.576,0.008192,0.005824,0.016192,0.049824,0.054624,7.46342,0.059296
+530,110.709,9.03271,8.68147,0.038464,0.565696,0.008192,0.004224,0.016256,0.050496,0.053632,7.88618,0.058336
+531,96.6767,10.3438,8.42093,0.037952,0.729504,0.006688,0.006144,0.0264,0.050752,0.062112,7.44243,0.058944
+532,121.392,8.23779,8.28483,0.037536,0.564672,0.007968,0.004896,0.016192,0.050752,0.053856,7.49059,0.058368
+533,110.919,9.01562,8.64125,0.038848,0.564,0.008192,0.006112,0.015968,0.0496,0.054272,7.84672,0.057536
+534,101.587,9.84375,8.53878,0.049536,0.841696,0.008032,0.00448,0.016384,0.050496,0.053408,7.45699,0.05776
+535,112.102,8.92041,8.2207,0.038432,0.528864,0.008192,0.006112,0.015936,0.050784,0.05392,7.45904,0.059424
+536,111.638,8.95752,8.62378,0.038624,0.555168,0.008032,0.004384,0.016384,0.051136,0.053312,7.8377,0.05904
+537,102.59,9.74756,8.77306,0.038912,1.05216,0.008032,0.004768,0.017984,0.051264,0.053632,7.48749,0.058816
+538,106.263,9.41064,8.26576,0.038528,0.573216,0.008064,0.004832,0.01616,0.051136,0.053536,7.46195,0.058336
+539,110.721,9.03174,8.67901,0.038912,0.625728,0.00816,0.005088,0.016384,0.050944,0.053504,7.82128,0.059008
+540,106.163,9.41943,8.24525,0.038144,0.555008,0.008032,0.004896,0.01616,0.049504,0.053248,7.46221,0.058048
+541,109.895,9.09961,8.33837,0.037824,0.65696,0.008064,0.00464,0.016416,0.051168,0.054496,7.45078,0.058016
+542,112.164,8.91553,8.62886,0.038624,0.535456,0.008192,0.004096,0.016384,0.051008,0.05344,7.86381,0.057856
+543,100.103,9.98975,8.56102,0.053504,0.854144,0.008032,0.0056,0.01632,0.050112,0.05472,7.4608,0.057792
+544,112.102,8.92041,8.24115,0.038496,0.542784,0.008032,0.004608,0.016384,0.050592,0.053888,7.46698,0.059392
+545,112.602,8.88086,8.6143,0.037568,0.533728,0.006912,0.00592,0.016128,0.049632,0.053248,7.85312,0.058048
+546,101.825,9.8208,8.53859,0.039424,0.839136,0.008032,0.004768,0.016192,0.049344,0.05328,7.47046,0.057952
+547,112.435,8.89404,8.20016,0.038912,0.528384,0.008192,0.006048,0.016416,0.051264,0.054784,7.4368,0.05936
+548,107.399,9.31104,8.72422,0.04432,0.616896,0.008064,0.004512,0.016384,0.050976,0.053216,7.87072,0.059136
+549,105.551,9.47412,8.25104,0.038144,0.543488,0.008192,0.005984,0.016224,0.049472,0.055296,7.47536,0.05888
+550,110.09,9.0835,8.2408,0.038912,0.534528,0.008192,0.004096,0.016384,0.051232,0.054688,7.47373,0.05904
+551,108.78,9.19287,8.26726,0.038848,0.557024,0.008064,0.0056,0.015232,0.051072,0.054368,7.47792,0.059136
+552,109.495,9.13281,9.49427,0.050944,0.551168,0.008192,0.005664,0.016064,0.049952,0.054848,8.69981,0.057632
+553,97.5099,10.2554,8.25856,0.037888,0.528384,0.008192,0.005984,0.016352,0.049344,0.055104,7.49792,0.059392
+554,112.981,8.85107,8.96349,0.038464,0.528768,0.008096,0.005856,0.016128,0.049856,0.054976,8.19846,0.06288
+555,102.257,9.7793,8.20893,0.037824,0.534144,0.008128,0.005984,0.016576,0.049632,0.053184,7.44442,0.05904
+556,114.625,8.72412,8.22083,0.038688,0.526752,0.00816,0.004096,0.016192,0.050432,0.053376,7.46486,0.058272
+557,110.102,9.08252,8.69069,0.037856,0.592928,0.007296,0.005984,0.016384,0.0512,0.05456,7.86637,0.058112
+558,97.6913,10.2363,8.35366,0.040608,0.62912,0.008064,0.004352,0.01744,0.050144,0.053248,7.49158,0.059104
+559,112.429,8.89453,8.25856,0.037888,0.538624,0.008224,0.005792,0.01632,0.049536,0.05456,7.49002,0.0576
+560,109.525,9.13037,8.64982,0.03872,0.549056,0.008192,0.005664,0.016128,0.049888,0.055104,7.86973,0.057344
+561,102.61,9.74561,8.27434,0.040416,0.5496,0.008,0.005632,0.015296,0.051168,0.0544,7.49043,0.059392
+562,110.841,9.02197,8.26803,0.038656,0.5312,0.008192,0.005472,0.016128,0.050112,0.061472,7.49766,0.059136
+563,101.956,9.80811,8.84515,0.038688,0.759008,0.007296,0.006016,0.024576,0.051008,0.067776,7.83302,0.05776
+564,104.918,9.53125,9.40237,0.04,0.831584,0.007264,0.005632,0.016288,0.051232,0.053568,8.33872,0.05808
+565,97.0846,10.3003,8.31338,0.038432,0.59472,0.008032,0.0056,0.01936,0.05456,0.053472,7.48096,0.05824
+566,110.315,9.06494,8.31472,0.038912,0.578976,0.008032,0.004864,0.01616,0.050528,0.052096,7.50592,0.059232
+567,109.145,9.16211,9.10771,0.03904,0.542816,0.008032,0.0056,0.015296,0.051072,0.053344,8.33331,0.0592
+568,100.956,9.90527,8.27242,0.038528,0.544768,0.008032,0.004896,0.016352,0.05088,0.057888,7.4752,0.075872
+569,109.186,9.15869,8.49667,0.038304,0.538496,0.008064,0.00496,0.0264,0.050464,0.05344,7.71558,0.06096
+570,108.872,9.18506,9.09331,0.038944,0.542464,0.00832,0.004352,0.016384,0.050848,0.053632,8.32022,0.058144
+571,101.196,9.88184,8.29229,0.038592,0.646112,0.00816,0.0056,0.016192,0.051008,0.053984,7.41398,0.058656
+572,110.185,9.07568,8.60602,0.03824,0.543744,0.008224,0.005536,0.016192,0.049888,0.0544,7.83245,0.057344
+573,101.825,9.8208,9.11155,0.038848,0.562432,0.008032,0.00512,0.016352,0.0512,0.054496,8.31568,0.059392
+574,101.607,9.8418,8.23354,0.038496,0.553952,0.008192,0.004128,0.016352,0.050976,0.053472,7.45002,0.057952
+575,110.5,9.0498,9.42973,0.035552,0.540416,0.007904,0.00464,0.016416,0.051168,0.054752,8.65949,0.059392
+576,92.219,10.8438,9.16566,0.037568,0.642752,0.016736,0.005824,0.022528,0.053152,0.053632,8.276,0.057472
+577,108.665,9.20264,8.22218,0.038784,0.546944,0.008192,0.006048,0.016064,0.052832,0.056128,7.43821,0.058976
+578,111.377,8.97852,8.6152,0.038944,0.554976,0.008096,0.004192,0.016384,0.051168,0.053312,7.82947,0.058656
+579,106.683,9.37354,9.0665,0.038848,0.578752,0.007264,0.00592,0.016384,0.0504,0.053056,8.25853,0.057344
+580,101.582,9.84424,8.21962,0.037888,0.563168,0.008224,0.005504,0.016096,0.051136,0.05408,7.42413,0.059392
+581,101.774,9.82568,8.80259,0.038752,0.750016,0.014336,0.005824,0.016704,0.051008,0.06096,7.80723,0.05776
+582,114.548,8.72998,8.45616,0.038912,0.805984,0.010464,0.004736,0.01648,0.051328,0.054688,7.41421,0.05936
+583,107.119,9.33545,8.2239,0.038176,0.564,0.00816,0.006144,0.022464,0.050432,0.054112,7.41987,0.060544
+584,114.165,8.75928,8.59546,0.03888,0.562976,0.008032,0.004512,0.016384,0.051072,0.053376,7.80288,0.057344
+585,105.562,9.47314,9.20576,0.038912,0.675104,0.008192,0.004832,0.022528,0.0512,0.05328,8.29427,0.05744
+586,99.4464,10.0557,8.67469,0.038528,0.653952,0.008352,0.0056,0.016032,0.049888,0.060896,7.78294,0.058496
+587,108.091,9.25146,10.1394,0.038912,0.5912,0.008064,0.004896,0.016416,0.051072,0.053504,9.31542,0.059936
+588,91.5553,10.9224,8.17766,0.038848,0.554336,0.008128,0.004864,0.015968,0.050912,0.053952,7.39126,0.059392
+589,112.645,8.87744,8.15827,0.038944,0.538592,0.008192,0.006144,0.016384,0.05024,0.054208,7.38694,0.058624
+590,109.601,9.12402,8.18909,0.038912,0.55248,0.008032,0.004736,0.016352,0.050496,0.053984,7.40557,0.058528
+591,105.993,9.43457,9.22707,0.037728,0.738784,0.00816,0.00464,0.017664,0.051968,0.053248,8.2567,0.058176
+592,98.1548,10.188,8.26515,0.038912,0.643072,0.008256,0.012224,0.030528,0.051104,0.053536,7.3687,0.058816
+593,109.801,9.10742,8.17978,0.038528,0.555968,0.018144,0.004352,0.016384,0.050656,0.053792,7.38304,0.058912
+594,111.407,8.97607,9.34093,0.038944,0.829408,0.008192,0.005536,0.016256,0.04992,0.053344,8.28198,0.057344
+595,101.653,9.8374,8.14925,0.038272,0.536704,0.008032,0.005024,0.016384,0.0512,0.054304,7.37994,0.059392
+596,106.462,9.39307,8.24525,0.038848,0.597888,0.008032,0.004448,0.016384,0.063488,0.062592,7.39555,0.058016
+597,114.33,8.74658,9.05232,0.034976,0.53248,0.008,0.005376,0.015296,0.051232,0.054848,8.29229,0.057824
+598,100.264,9.97363,8.52381,0.038688,0.542976,0.00816,0.005472,0.016096,0.050112,0.054816,7.75005,0.05744
+599,104.107,9.60547,8.54032,0.039552,0.577472,0.008192,0.005888,0.016128,0.049632,0.05472,7.72973,0.059008
+600,107.518,9.30078,9.01962,0.038592,0.548928,0.008032,0.004736,0.016384,0.049152,0.05472,8.24173,0.057344
+601,99.5044,10.0498,8.17914,0.03856,0.581344,0.008064,0.005088,0.016384,0.057344,0.06144,7.35232,0.058592
+602,112.478,8.89062,8.53299,0.037888,0.55296,0.008224,0.0056,0.016192,0.049856,0.05344,7.75133,0.057504
+603,107.113,9.33594,8.95757,0.038912,0.546592,0.008128,0.0056,0.02128,0.050496,0.053344,8.17421,0.059008
+604,104.661,9.55469,8.13818,0.038784,0.553088,0.008192,0.004096,0.016384,0.0512,0.053248,7.35437,0.058816
+605,111.093,9.00146,8.53261,0.038592,0.58672,0.00816,0.006112,0.016416,0.0512,0.053248,7.71402,0.058144
+606,108.595,9.2085,8.97264,0.038624,0.540896,0.008128,0.004576,0.016384,0.050784,0.053664,8.20202,0.057568
+607,102.114,9.79297,8.09987,0.038688,0.558752,0.008064,0.004832,0.016384,0.0512,0.053248,7.30931,0.059392
+608,109.812,9.10645,8.51242,0.037824,0.552928,0.008224,0.005664,0.016192,0.05088,0.053728,7.72941,0.057568
+609,109.174,9.15967,8.98051,0.038848,0.533728,0.00816,0.004992,0.016384,0.0512,0.0544,8.2152,0.0576
+610,100.245,9.97559,9.46189,0.038912,0.636032,0.007264,0.005632,0.01616,0.049664,0.067584,8.58259,0.058048
+611,90.4993,11.0498,8.69997,0.038336,0.770272,0.008064,0.004672,0.017824,0.04976,0.055104,7.69837,0.057568
+612,116.232,8.60352,9.0609,0.038496,0.63776,0.008032,0.004384,0.016384,0.0512,0.06144,8.18586,0.057344
+613,101.191,9.88232,8.0712,0.03872,0.536768,0.008192,0.00576,0.016064,0.050048,0.055104,7.30112,0.059424
+614,111.815,8.94336,8.63552,0.038656,0.646624,0.008032,0.0112,0.03072,0.065216,0.053568,7.72301,0.058496
+615,107.62,9.29199,8.97517,0.037728,0.559104,0.008192,0.006144,0.016384,0.051104,0.053376,8.18554,0.0576
+616,98.2254,10.1807,8.26186,0.041248,0.703936,0.008672,0.004192,0.016416,0.051168,0.053376,7.32352,0.059328
+617,112.639,8.87793,8.52787,0.038912,0.609952,0.00832,0.0056,0.01616,0.050144,0.053376,7.68714,0.058272
+618,104.468,9.57227,8.60982,0.03888,1.05677,0.008224,0.004128,0.017824,0.051008,0.054016,7.3208,0.058176
+619,112.794,8.86572,8.072,0.039712,0.540672,0.008032,0.0056,0.016224,0.050016,0.0544,7.29178,0.065568
+620,100.981,9.90283,8.10259,0.038656,0.565344,0.008096,0.004864,0.016544,0.051232,0.053216,7.30698,0.057664
+621,109.192,9.1582,9.48061,0.038656,0.693184,0.018432,0.005856,0.031008,0.05072,0.05344,8.53162,0.057696
+622,104.57,9.56299,8.05133,0.03872,0.53856,0.007168,0.005632,0.016448,0.050912,0.053376,7.28301,0.057504
+623,111.962,8.93164,8.43776,0.036864,0.538656,0.00816,0.005824,0.016128,0.050912,0.053984,7.66941,0.057824
+624,107.801,9.27637,8.09757,0.037536,0.552832,0.008064,0.004352,0.016384,0.051232,0.053376,7.3153,0.058496
+625,112.577,8.88281,8.07168,0.038432,0.541632,0.008192,0.006144,0.016352,0.050688,0.053792,7.29702,0.059424
+626,114.663,8.72119,8.4648,0.0384,0.566048,0.007424,0.004864,0.01632,0.049216,0.054368,7.67069,0.057472
+627,105.523,9.47656,8.76301,0.038912,0.86016,0.016384,0.006048,0.01648,0.05328,0.055072,7.65917,0.057504
+628,107.761,9.27979,8.05274,0.038944,0.542688,0.008192,0.00528,0.016352,0.050048,0.053248,7.27859,0.059392
+629,115.076,8.68994,8.44576,0.037696,0.540128,0.008032,0.0048,0.016384,0.0512,0.053248,7.6759,0.058368
+630,106.867,9.35742,8.9856,0.038912,0.63072,0.008128,0.004224,0.016384,0.051232,0.053216,8.12442,0.058368
+631,103.691,9.64404,8.04259,0.038528,0.546912,0.008096,0.0056,0.015392,0.051168,0.055104,7.2624,0.059392
+632,113.018,8.84814,8.44742,0.038912,0.540672,0.008192,0.005504,0.016,0.050208,0.053248,7.67123,0.063456
+633,103.576,9.65479,9.03485,0.038944,0.66352,0.008192,0.005728,0.016096,0.05136,0.054912,8.13763,0.058464
+634,103.283,9.68213,8.124,0.042016,0.605088,0.008064,0.00432,0.016384,0.057312,0.053248,7.27859,0.058976
+635,113.79,8.78809,8.4249,0.038464,0.547072,0.008032,0.0056,0.025184,0.051488,0.053312,7.63693,0.058816
+636,107.023,9.34375,8.81853,0.038496,0.864672,0.038112,0.019232,0.01648,0.053184,0.054976,7.67414,0.059232
+637,106.152,9.42041,8.06093,0.040736,0.556416,0.007264,0.005888,0.016384,0.0512,0.055296,7.26835,0.059392
+638,111.553,8.96436,8.50294,0.038912,0.60416,0.008192,0.004096,0.016384,0.0512,0.05328,7.66768,0.05904
+639,108.792,9.19189,8.86493,0.038912,0.557056,0.008224,0.005632,0.01616,0.051168,0.053856,8.07542,0.058496
+640,104.778,9.54395,8.05418,0.03888,0.561184,0.008224,0.00576,0.016224,0.050944,0.054016,7.25971,0.059232
+641,112.275,8.90674,8.4305,0.037888,0.55248,0.007936,0.004832,0.022144,0.057792,0.069536,7.61978,0.058112
+642,108.872,9.18506,8.89242,0.038944,0.579072,0.008032,0.004736,0.016224,0.05136,0.053248,8.08349,0.057312
+643,101.668,9.83594,8.04502,0.038752,0.590464,0.008192,0.005696,0.016096,0.050048,0.055136,7.22106,0.059584
+644,114.465,8.73633,8.41526,0.038912,0.562464,0.008032,0.004864,0.016512,0.050464,0.053632,7.62301,0.057376
+645,107.841,9.27295,8.8615,0.038912,0.578976,0.008032,0.004864,0.016416,0.051168,0.054432,8.05053,0.058176
+646,100.961,9.90479,7.9791,0.038592,0.548352,0.007296,0.005632,0.01616,0.050752,0.053568,7.19936,0.059392
+647,114.638,8.72314,8.36131,0.038336,0.549632,0.008192,0.006144,0.016288,0.050912,0.053408,7.57987,0.058528
+648,105.036,9.52051,8.88096,0.037696,0.561184,0.00816,0.005248,0.015264,0.051168,0.054784,8.0896,0.057856
+649,109.186,9.15869,8.01456,0.0376,0.542528,0.008032,0.0056,0.015264,0.051168,0.05488,7.2401,0.059392
+650,114.26,8.75195,8.38992,0.038912,0.540672,0.008192,0.004128,0.016352,0.051232,0.054752,7.61702,0.058656
+651,109.256,9.15283,8.8552,0.038912,0.55296,0.008192,0.005632,0.01616,0.04992,0.054528,8.0711,0.057792
+652,102.467,9.75928,8.02909,0.037824,0.5848,0.007296,0.005632,0.016672,0.051168,0.053248,7.21306,0.059392
+653,114.875,8.70508,8.39616,0.03856,0.58336,0.008032,0.004928,0.016384,0.050624,0.053824,7.58173,0.05872
+654,111.039,9.00586,8.86973,0.038496,0.57216,0.008192,0.005408,0.015072,0.052288,0.053312,8.06717,0.057632
+655,103.231,9.68701,7.96726,0.037408,0.544256,0.008032,0.004768,0.016384,0.051232,0.057344,7.18957,0.058272
+656,115.582,8.65186,8.40909,0.038592,0.588256,0.008192,0.004224,0.016256,0.0512,0.054336,7.5888,0.059232
+657,108.826,9.18896,8.83078,0.037568,0.543968,0.00816,0.004928,0.016384,0.05088,0.053568,8.05683,0.058496
+658,98.6275,10.1392,8.02006,0.038784,0.600896,0.007392,0.004704,0.016064,0.049792,0.053152,7.18813,0.061152
+659,123.292,8.11084,8.38787,0.039136,0.558464,0.008032,0.004672,0.016384,0.0512,0.054272,7.59706,0.058656
+660,109.472,9.13477,8.85709,0.040064,0.569824,0.008032,0.004672,0.016384,0.051168,0.05328,8.05478,0.05888
+661,103.252,9.68506,8.00867,0.037824,0.597376,0.008064,0.004864,0.016384,0.050912,0.053536,7.18032,0.059392
+662,111.262,8.98779,8.45984,0.038784,0.655328,0.008096,0.004576,0.016384,0.05088,0.053568,7.5735,0.05872
+663,108.411,9.22412,8.86675,0.037888,0.589824,0.008192,0.005664,0.01632,0.051104,0.053728,8.0447,0.059328
+664,102.651,9.7417,8.06912,0.03872,0.628192,0.008032,0.004896,0.016128,0.050752,0.053856,7.21088,0.057664
+665,114.805,8.71045,8.35686,0.038912,0.577024,0.006656,0.00608,0.016224,0.050912,0.05376,7.54864,0.058656
+666,110.001,9.09082,8.88016,0.03856,0.563616,0.00816,0.005344,0.01616,0.050176,0.053248,8.0855,0.059392
+667,103.143,9.69531,7.95578,0.037152,0.546336,0.008032,0.004736,0.017568,0.050016,0.054304,7.17923,0.0584
+668,115.263,8.67578,8.39066,0.038944,0.585696,0.008192,0.005536,0.016256,0.049888,0.055136,7.57315,0.057856
+669,108.971,9.17676,8.80832,0.038912,0.548864,0.008288,0.006048,0.016384,0.050848,0.0536,8.02611,0.059264
+670,105.323,9.49463,7.94646,0.0384,0.549184,0.008064,0.004608,0.016384,0.0512,0.05328,7.16592,0.059424
+671,115.024,8.69385,8.32582,0.0376,0.548096,0.007936,0.005088,0.016384,0.0512,0.054976,7.5472,0.057344
+672,99.4948,10.0508,9.41466,0.038784,1.14701,0.008224,0.005312,0.01632,0.050016,0.054304,8.03667,0.058016
+673,107.569,9.29639,7.97046,0.038272,0.58,0.008032,0.004896,0.016352,0.051168,0.053312,7.15978,0.058656
+674,117.069,8.54199,8.34355,0.04096,0.539904,0.008032,0.004896,0.016192,0.0512,0.0536,7.57126,0.057504
+675,108.786,9.19238,8.87712,0.038944,0.610304,0.00816,0.006144,0.01632,0.051264,0.05328,8.03427,0.058432
+676,104.298,9.58789,7.94496,0.037824,0.544768,0.008288,0.00576,0.016128,0.051168,0.053824,7.168,0.0592
+677,103.57,9.65527,8.3415,0.038912,0.558464,0.008224,0.004704,0.016384,0.0512,0.054624,7.55165,0.057344
+678,124.129,8.05615,8.82381,0.038944,0.556224,0.008032,0.005056,0.016384,0.051008,0.053472,8.03632,0.058368
+679,104.293,9.58838,7.95638,0.038432,0.548608,0.008032,0.00512,0.016384,0.05072,0.053728,7.17619,0.059168
+680,116.562,8.5791,8.34499,0.038304,0.543552,0.008192,0.00544,0.016192,0.05008,0.054944,7.56941,0.05888
+681,109.589,9.125,8.78301,0.0384,0.544352,0.007264,0.005952,0.016384,0.050976,0.053472,8.00768,0.058528
+682,102.544,9.75195,8.00275,0.038912,0.598016,0.008192,0.005344,0.0168,0.050848,0.053984,7.17155,0.059104
+683,116.39,8.5918,7.95443,0.038464,0.561472,0.008032,0.0056,0.015168,0.0512,0.053248,7.16339,0.057856
+684,111.614,8.95947,8.8616,0.038848,0.626752,0.007968,0.00544,0.015296,0.051168,0.055104,8.00173,0.059296
+685,106.678,9.37402,7.92986,0.03888,0.550944,0.008288,0.006048,0.016384,0.050464,0.053952,7.14522,0.05968
+686,114.593,8.72656,7.95814,0.038432,0.55344,0.008192,0.004096,0.016384,0.0512,0.053248,7.17414,0.059008
+687,114.747,8.71484,8.74253,0.0384,0.542848,0.008032,0.00464,0.016384,0.051232,0.054528,7.96746,0.059008
+688,105.545,9.47461,7.93398,0.038912,0.536064,0.008064,0.004736,0.016224,0.051136,0.053504,7.16704,0.058304
+689,116.609,8.57568,7.96266,0.03888,0.566784,0.008032,0.0048,0.016384,0.0512,0.055136,7.16202,0.059424
+690,115.231,8.67822,9.16358,0.038976,0.536928,0.008032,0.004672,0.016256,0.051296,0.05328,8.38838,0.06576
+691,98.8512,10.1162,7.92157,0.038912,0.540672,0.008224,0.00544,0.016128,0.05008,0.055008,7.14781,0.059296
+692,118.375,8.44775,8.29789,0.038688,0.536224,0.007296,0.005888,0.01632,0.051264,0.05456,7.52918,0.058464
+693,108.716,9.19824,7.90378,0.035488,0.540544,0.008192,0.006048,0.016096,0.051008,0.053728,7.13507,0.0576
+694,114.895,8.70361,7.96541,0.038784,0.564096,0.008032,0.004256,0.01616,0.051104,0.053568,7.17002,0.059392
+695,115.465,8.66064,8.28179,0.038656,0.534592,0.008064,0.004832,0.015584,0.051104,0.053792,7.51635,0.058816
+696,109.753,9.11133,8.17299,0.038944,0.801984,0.010464,0.004672,0.016416,0.05248,0.053856,7.13536,0.058816
+697,114.381,8.74268,7.90813,0.039072,0.530176,0.008192,0.00496,0.016384,0.052224,0.056448,7.14253,0.058144
+698,112.583,8.88232,8.40163,0.038912,0.639104,0.008032,0.004768,0.016256,0.05104,0.053536,7.53254,0.05744
+699,110.494,9.05029,8.704,0.03824,0.533184,0.008064,0.005696,0.016416,0.04992,0.055296,7.93786,0.059328
+700,106.962,9.34912,7.90246,0.038912,0.525664,0.00784,0.004864,0.016128,0.05072,0.053952,7.14576,0.058624
+701,116.755,8.56494,8.26477,0.038912,0.527712,0.008032,0.004928,0.016384,0.0512,0.055104,7.50371,0.058784
+702,112.195,8.91309,8.75725,0.039104,0.544064,0.008096,0.004704,0.016384,0.05072,0.053728,7.98294,0.057504
+703,95.185,10.5059,7.936,0.038944,0.558784,0.008096,0.0056,0.01536,0.052224,0.07056,7.12899,0.05744
+704,128.425,7.78662,8.29696,0.038464,0.535488,0.008192,0.005184,0.015296,0.0512,0.055232,7.51958,0.06832
+705,104.102,9.60596,8.87603,0.038912,0.65104,0.016064,0.00464,0.028384,0.051488,0.053248,7.97395,0.058304
+706,104.897,9.5332,7.94845,0.0384,0.57408,0.008192,0.005344,0.015264,0.051072,0.053248,7.14512,0.057728
+707,116.476,8.58545,8.27894,0.037792,0.536544,0.008064,0.0056,0.01632,0.04992,0.055264,7.51174,0.057696
+708,112.041,8.92529,8.75104,0.038912,0.546816,0.008192,0.00544,0.016096,0.050144,0.054688,7.97261,0.058144
+709,105.339,9.49316,7.90614,0.037728,0.546272,0.008064,0.004768,0.016416,0.052192,0.053952,7.1287,0.058048
+710,107.197,9.32861,8.59139,0.038912,0.823072,0.008032,0.00448,0.016416,0.053216,0.07168,7.51805,0.057536
+711,115.556,8.65381,8.81776,0.038944,0.634848,0.008192,0.005792,0.014688,0.051232,0.054272,7.95133,0.058464
+712,103.833,9.63086,8.0529,0.038272,0.674048,0.016928,0.005984,0.016256,0.050688,0.05408,7.13846,0.058176
+713,114.914,8.70215,8.2041,0.038336,0.584416,0.008064,0.0056,0.016128,0.051104,0.052224,7.38698,0.061248
+714,112.726,8.87109,8.7593,0.038496,0.550752,0.008032,0.004832,0.016288,0.050848,0.06928,7.96342,0.057344
+715,98.8322,10.1182,8.20176,0.038368,0.844224,0.009792,0.014432,0.0288,0.049792,0.0544,7.10282,0.059136
+716,115.186,8.68164,8.20637,0.038752,0.59072,0.008192,0.004096,0.016416,0.050752,0.053696,7.37869,0.065056
+717,112.701,8.87305,8.78595,0.038912,0.550304,0.008128,0.004768,0.016384,0.0512,0.06352,7.99456,0.058176
+718,105.469,9.48145,7.91494,0.038912,0.544768,0.008192,0.005216,0.015296,0.052192,0.064512,7.12656,0.059296
+719,112.047,8.9248,7.93203,0.038368,0.560032,0.00816,0.00592,0.020064,0.060032,0.063424,7.11686,0.059168
+720,117.553,8.50684,8.75325,0.037824,0.534528,0.008224,0.004096,0.016384,0.051168,0.058784,7.98371,0.058528
+721,104.57,9.56299,7.91952,0.038912,0.545888,0.007296,0.00592,0.016384,0.050528,0.05392,7.14138,0.059296
+722,116.159,8.60889,7.8967,0.038592,0.546656,0.00816,0.004608,0.016288,0.050336,0.055232,7.10758,0.069248
+723,113.677,8.79688,8.92288,0.038912,0.735232,0.008192,0.006144,0.016384,0.05296,0.055616,7.9503,0.059136
+724,100.664,9.93408,7.92435,0.038656,0.596832,0.008224,0.004096,0.017504,0.050048,0.054976,7.09459,0.059424
+725,117.485,8.51172,7.89914,0.038848,0.548928,0.008192,0.006144,0.016384,0.051168,0.05328,7.11674,0.059456
+726,112.121,8.91895,9.11104,0.038912,0.546816,0.008192,0.004096,0.016416,0.051168,0.054432,8.33213,0.05888
+727,102.267,9.77832,7.86723,0.037728,0.540096,0.00688,0.005984,0.016288,0.050432,0.054112,7.09632,0.059392
+728,113.721,8.79346,7.94,0.03872,0.594304,0.008128,0.004544,0.016384,0.0512,0.05344,7.1137,0.059584
+729,114.785,8.71191,8.64461,0.038816,0.54896,0.007264,0.005024,0.016384,0.051104,0.053504,7.86419,0.05936
+730,101.997,9.8042,8.77712,0.038912,0.556096,0.00816,0.004864,0.016288,0.05072,0.054048,7.98925,0.058784
+731,106.672,9.37451,7.87043,0.038432,0.547424,0.008192,0.00592,0.016064,0.051136,0.053856,7.09014,0.059264
+732,112.993,8.8501,9.17146,0.037376,0.572768,0.008032,0.004896,0.016256,0.049312,0.055264,8.37021,0.057344
+733,101.021,9.89893,7.89709,0.038912,0.544768,0.008192,0.006144,0.015968,0.05088,0.053984,7.11888,0.05936
+734,117.33,8.52295,7.86301,0.0376,0.535776,0.00832,0.004768,0.016384,0.0512,0.05344,7.09613,0.059392
+735,113.525,8.80859,9.13549,0.038784,0.545952,0.007264,0.006016,0.016384,0.050848,0.0536,8.35923,0.057408
+736,98.216,10.1816,7.92205,0.038528,0.57824,0.008032,0.004288,0.016384,0.050752,0.053696,7.11376,0.058368
+737,115.082,8.68945,8.34947,0.038656,0.598368,0.008256,0.00608,0.016352,0.051232,0.053248,7.51821,0.059072
+738,100.402,9.95996,8.36422,0.07888,0.983008,0.008192,0.005472,0.016096,0.050112,0.053248,7.11066,0.05856
+739,118,8.47461,7.88365,0.038816,0.547456,0.008096,0.0056,0.01536,0.0512,0.053344,7.10438,0.059392
+740,115.14,8.68506,8.24694,0.038656,0.54448,0.006944,0.004192,0.016288,0.051264,0.055008,7.47133,0.058784
+741,98.183,10.1851,8.6473,0.0376,0.866272,0.065184,0.005632,0.01696,0.051488,0.05472,7.49126,0.058176
+742,121.226,8.24902,7.89642,0.0384,0.55888,0.008064,0.004832,0.01632,0.05104,0.0536,7.10656,0.05872
+743,115.517,8.65674,8.24554,0.038336,0.538592,0.008032,0.00512,0.016384,0.051136,0.054336,7.47606,0.057536
+744,111.992,8.9292,8.74272,0.038944,0.536544,0.008224,0.004064,0.016416,0.05104,0.053344,7.97667,0.057472
+745,104.629,9.55762,7.88131,0.037568,0.542304,0.008,0.004704,0.016416,0.051008,0.053408,7.10861,0.059296
+746,116.835,8.55908,8.31693,0.038912,0.575488,0.008192,0.005216,0.015264,0.0512,0.055232,7.51005,0.057376
+747,110.613,9.04053,8.72758,0.03856,0.547168,0.008192,0.005888,0.016544,0.05088,0.053664,7.94771,0.058976
+748,99.6254,10.0376,7.95686,0.037536,0.611616,0.008064,0.004832,0.016384,0.050784,0.053696,7.10966,0.064288
+749,113.507,8.81006,8.37872,0.038912,0.663872,0.008384,0.0056,0.016064,0.050048,0.055232,7.48106,0.059552
+750,108.475,9.21875,8.79197,0.038656,0.585568,0.007264,0.005664,0.016256,0.050944,0.053696,7.97523,0.058688
+751,104.709,9.55029,7.88902,0.038912,0.546816,0.008192,0.006016,0.016064,0.050976,0.051936,7.11245,0.057664
+752,114.785,8.71191,8.28032,0.037696,0.55232,0.008064,0.004864,0.016192,0.05072,0.053824,7.49782,0.058816
+753,102.559,9.75049,8.8385,0.038592,0.628352,0.022496,0.006016,0.018848,0.050976,0.053952,7.96032,0.058944
+754,112.819,8.86377,7.87078,0.038208,0.545792,0.008192,0.005568,0.016096,0.050016,0.054624,7.0945,0.057792
+755,114.503,8.7334,8.29568,0.0384,0.537184,0.008192,0.005728,0.015936,0.051232,0.05408,7.5264,0.058528
+756,110.703,9.0332,8.78902,0.038944,0.579136,0.00656,0.005504,0.016064,0.050144,0.054304,7.97997,0.0584
+757,104.102,9.60596,7.88422,0.038912,0.54272,0.008192,0.00576,0.016,0.04992,0.053248,7.11066,0.058816
+758,115.896,8.62842,8.26218,0.037408,0.544192,0.008096,0.004768,0.016224,0.05088,0.053728,7.48893,0.057952
+759,111.341,8.98145,8.74336,0.037824,0.534368,0.008032,0.004384,0.016416,0.051168,0.053248,7.97229,0.065632
+760,101.391,9.86279,7.92531,0.038912,0.565088,0.008064,0.004864,0.016096,0.05072,0.054048,7.12909,0.058432
+761,112.225,8.91064,8.35293,0.038912,0.603232,0.007296,0.00592,0.016384,0.050912,0.053536,7.51821,0.058528
+762,111.62,8.95898,8.75194,0.03776,0.554496,0.008032,0.004768,0.016288,0.050976,0.053568,7.96672,0.059328
+763,104.581,9.56201,7.94419,0.03872,0.555136,0.008128,0.0056,0.016224,0.067424,0.054272,7.14038,0.058304
+764,108.137,9.24756,8.44621,0.038496,0.680096,0.008064,0.004864,0.016128,0.060864,0.061696,7.51683,0.059168
+765,108.434,9.22217,8.872,0.04704,0.673728,0.008064,0.0056,0.016256,0.0512,0.054112,7.95798,0.058016
+766,106.945,9.35059,7.92192,0.03712,0.58576,0.00816,0.005376,0.016192,0.050144,0.054528,7.10701,0.057632
+767,116.443,8.58789,8.24746,0.037664,0.544096,0.008032,0.004928,0.016384,0.0512,0.054592,7.47181,0.058752
+768,109.671,9.11816,8.81898,0.038208,0.604896,0.0064,0.006144,0.016384,0.050336,0.053792,7.98547,0.057344
+769,103.733,9.64014,7.92672,0.03904,0.58864,0.008192,0.006144,0.01616,0.050816,0.053856,7.10454,0.059328
+770,105.16,9.50928,8.23299,0.038752,0.587296,0.008064,0.004864,0.016096,0.051136,0.0536,7.41171,0.061472
+771,121.162,8.25342,8.74822,0.038912,0.540704,0.00816,0.005792,0.016128,0.050944,0.053792,7.97523,0.05856
+772,105.123,9.5127,7.94237,0.0384,0.553792,0.008224,0.005536,0.016224,0.049888,0.054848,7.15616,0.059296
+773,113.112,8.84082,7.97302,0.038912,0.587328,0.008064,0.004672,0.01776,0.049824,0.054688,7.15414,0.057632
+774,116.199,8.60596,8.75824,0.035744,0.558784,0.00832,0.004352,0.016384,0.050848,0.0536,7.97238,0.057824
+775,104.532,9.56641,7.96333,0.037568,0.602112,0.008192,0.006144,0.016352,0.05088,0.053472,7.12922,0.059392
+776,114.203,8.75635,7.9856,0.03872,0.5936,0.007104,0.005824,0.01616,0.051136,0.05376,7.1615,0.057792
+777,114.985,8.69678,9.28771,0.038912,0.652928,0.008064,0.00464,0.017888,0.05376,0.054688,8.39926,0.057568
+778,98.9707,10.104,8.78182,0.038912,0.58368,0.008192,0.005312,0.0152,0.051168,0.054432,7.96755,0.057376
+779,102.216,9.7832,7.93245,0.037408,0.55504,0.00816,0.006144,0.01632,0.051072,0.05344,7.14752,0.057344
+780,115.949,8.62451,8.77754,0.036864,0.552896,0.008032,0.00432,0.016384,0.050944,0.053504,7.99539,0.0592
+781,102.15,9.78955,7.98214,0.038272,0.587648,0.008064,0.004992,0.016384,0.057344,0.060416,7.15011,0.058912
+782,116.08,8.61475,8.00819,0.037376,0.622592,0.00816,0.004128,0.02368,0.05008,0.054848,7.14976,0.057568
+783,111.638,8.95752,9.05075,0.038816,0.826048,0.008032,0.0056,0.015072,0.0512,0.054976,7.99302,0.057984
+784,102.231,9.78174,7.93549,0.038912,0.559104,0.008192,0.004096,0.016384,0.0512,0.053248,7.14538,0.058976
+785,113.828,8.78516,8.03933,0.03776,0.602112,0.008192,0.006144,0.026624,0.0512,0.053248,7.19584,0.058208
+786,111.559,8.96387,8.9559,0.038656,0.715072,0.008192,0.005536,0.016992,0.053248,0.059392,7.99949,0.059328
+787,102.977,9.71094,7.93773,0.038944,0.56112,0.00816,0.0056,0.016096,0.050048,0.054528,7.14416,0.059072
+788,110.446,9.0542,8.0959,0.037568,0.683264,0.008192,0.004864,0.016224,0.050848,0.061952,7.17414,0.058848
+789,115.608,8.6499,9.51853,0.038112,0.539616,0.007488,0.0048,0.016384,0.050752,0.053728,8.74899,0.058656
+790,96.9927,10.3101,8.77568,0.038912,0.547904,0.007296,0.005696,0.016096,0.049728,0.054336,7.9943,0.061408
+791,103.236,9.68652,7.94646,0.038272,0.557856,0.008192,0.005984,0.016288,0.051104,0.0536,7.15776,0.057408
+792,113.93,8.77734,8.77136,0.038592,0.549216,0.008192,0.005568,0.016256,0.051392,0.053728,7.99034,0.05808
+793,103.912,9.62354,7.93792,0.038912,0.567296,0.008192,0.005696,0.015904,0.05008,0.055168,7.13741,0.059264
+794,109.437,9.1377,7.94246,0.038592,0.546432,0.007264,0.005664,0.0168,0.050944,0.053248,7.16176,0.06176
+795,114.663,8.72119,9.10448,0.03824,0.836256,0.008192,0.005856,0.015968,0.04992,0.05504,8.03642,0.058592
+796,102.946,9.71387,8.01014,0.038336,0.607168,0.008064,0.004288,0.016352,0.05072,0.053728,7.1721,0.059392
+797,114.375,8.74316,7.95882,0.038272,0.590208,0.008032,0.0048,0.016384,0.051072,0.053088,7.13926,0.057696
+798,113.974,8.77393,8.94803,0.038208,0.685056,0.008192,0.00528,0.016896,0.052864,0.056064,8.02608,0.059392
+799,103.628,9.6499,7.96246,0.038912,0.562752,0.008032,0.004704,0.016384,0.05248,0.054016,7.16595,0.059232
+800,114.19,8.75732,7.99421,0.037728,0.55888,0.008032,0.00448,0.016416,0.064704,0.054048,7.19053,0.059392
+801,110.757,9.02881,9.24784,0.038912,0.583008,0.00832,0.00464,0.016384,0.0512,0.054272,8.43213,0.058976
+802,102.93,9.71533,7.91341,0.038432,0.547008,0.008032,0.004608,0.016384,0.0512,0.054624,7.13386,0.059264
+803,116.139,8.61035,8.2865,0.03824,0.532928,0.008064,0.004736,0.016384,0.0512,0.053248,7.52352,0.058176
+804,106.545,9.38574,7.99738,0.040416,0.55328,0.008,0.004736,0.016224,0.050784,0.053856,7.21098,0.059104
+805,114.254,8.75244,7.9143,0.037856,0.546336,0.008032,0.004736,0.016384,0.051232,0.054752,7.13574,0.059232
+806,117.715,8.49512,8.31107,0.038272,0.534496,0.007104,0.005248,0.015232,0.0512,0.05456,7.54659,0.058368
+807,108.503,9.21631,8.53811,0.038592,0.753376,0.010464,0.0056,0.01712,0.053184,0.053504,7.54874,0.057536
+808,107.242,9.32471,7.98406,0.037728,0.57552,0.00816,0.005248,0.015264,0.051328,0.055136,7.17722,0.058464
+809,114.612,8.7251,8.39642,0.038432,0.612,0.007264,0.00592,0.016384,0.050656,0.053824,7.55299,0.058944
+810,110.523,9.04785,8.79821,0.038912,0.539744,0.007264,0.005632,0.01616,0.051456,0.053536,8.02816,0.057344
+811,105.004,9.52344,7.93875,0.037568,0.555008,0.008288,0.006048,0.016384,0.053248,0.053248,7.14957,0.059392
+812,115.38,8.66699,8.36608,0.038912,0.534528,0.008192,0.005312,0.0152,0.051168,0.054496,7.6,0.058272
+813,106.867,9.35742,8.88922,0.03776,0.62464,0.008128,0.0056,0.016064,0.050112,0.054432,8.03309,0.059392
+814,106.7,9.37207,7.92272,0.037888,0.542432,0.007648,0.004928,0.01552,0.050016,0.053248,7.15165,0.059392
+815,116.034,8.61816,8.3311,0.038912,0.54272,0.008192,0.005984,0.016032,0.049664,0.054752,7.55562,0.059232
+816,110.859,9.02051,8.80893,0.038368,0.543776,0.008192,0.005344,0.0152,0.051104,0.053248,8.03594,0.05776
+817,103.78,9.63574,7.9545,0.03792,0.554976,0.008064,0.0056,0.016128,0.05008,0.054976,7.16826,0.058496
+818,116.073,8.61523,8.31078,0.038912,0.544288,0.008128,0.00464,0.016384,0.051072,0.053376,7.53664,0.057344
+819,109.203,9.15723,8.80541,0.038944,0.551968,0.007296,0.005952,0.016384,0.050688,0.053728,8.02198,0.058464
+820,102.977,9.71094,7.95581,0.038912,0.561152,0.008224,0.00528,0.0152,0.052256,0.053472,7.16259,0.05872
+821,115.903,8.62793,8.33536,0.0376,0.547904,0.00832,0.00496,0.016352,0.051232,0.063424,7.54694,0.058624
+822,109.343,9.14551,8.84326,0.038624,0.552736,0.008096,0.004704,0.016384,0.0512,0.053248,8.06093,0.057344
+823,103.644,9.64844,7.99325,0.038912,0.574656,0.008032,0.005088,0.016384,0.051072,0.053376,7.18643,0.059296
+824,113.879,8.78125,8.32986,0.037728,0.55088,0.00816,0.004128,0.016352,0.0512,0.053248,7.54995,0.058208
+825,108.348,9.22949,8.8025,0.038432,0.591648,0.008064,0.00512,0.016384,0.0512,0.054464,7.97885,0.058336
+826,106.545,9.38574,7.94829,0.038592,0.561472,0.008192,0.005248,0.015328,0.051136,0.053216,7.15747,0.057632
+827,115.328,8.6709,8.2864,0.038624,0.544608,0.008032,0.004896,0.016416,0.051168,0.054496,7.50992,0.05824
+828,111.717,8.95117,8.74784,0.037664,0.540672,0.00816,0.004128,0.016384,0.051072,0.053376,7.97901,0.057376
+829,104.714,9.5498,7.90938,0.038688,0.542144,0.008032,0.005056,0.016384,0.051008,0.05344,7.13482,0.059808
+830,115.497,8.6582,7.93613,0.038496,0.554944,0.008032,0.004864,0.016032,0.049824,0.0544,7.15037,0.059168
+831,115.693,8.64355,8.79507,0.035584,0.549056,0.008192,0.006144,0.016288,0.051168,0.053408,8.01587,0.05936
+832,104.736,9.54785,7.9392,0.038368,0.563584,0.008064,0.004384,0.016384,0.0512,0.05328,7.14506,0.05888
+833,113.174,8.83594,7.96877,0.038912,0.565184,0.008064,0.004288,0.016384,0.050432,0.056064,7.17149,0.057952
+834,111.595,8.96094,9.12554,0.037408,0.833536,0.008128,0.00416,0.016416,0.050944,0.054624,8.06182,0.058496
+835,105.274,9.49902,7.91242,0.037856,0.544736,0.008192,0.00576,0.016,0.050944,0.053728,7.13741,0.057792
+836,113.904,8.7793,7.99501,0.038592,0.590144,0.008192,0.00416,0.01632,0.051168,0.053312,7.17414,0.058976
+837,115.55,8.6543,9.53725,0.038912,0.536576,0.008224,0.005952,0.016128,0.049568,0.054464,8.7695,0.05792
+838,97.0156,10.3076,8.7865,0.03744,0.54272,0.008192,0.005344,0.015296,0.05104,0.053248,8.01507,0.058144
+839,96.9422,10.3154,7.95648,0.038496,0.591328,0.00736,0.005888,0.016384,0.051168,0.05328,7.13472,0.057856
+840,117.042,8.54395,8.79494,0.037728,0.542688,0.008192,0.005376,0.016256,0.055456,0.053984,8.01792,0.057344
+841,104.288,9.58887,7.91962,0.03856,0.542944,0.008032,0.0056,0.016224,0.050144,0.054528,7.14419,0.059392
+842,113.099,8.8418,7.96483,0.038912,0.581632,0.008192,0.0056,0.016288,0.049792,0.05328,7.15341,0.057728
+843,112.17,8.91504,9.04742,0.038528,0.823904,0.008032,0.0056,0.0152,0.051232,0.055232,7.9913,0.0584
+844,104.309,9.58691,7.93104,0.038496,0.549216,0.008032,0.00432,0.016384,0.050816,0.053632,7.1511,0.05904
+845,117.418,8.5166,7.9417,0.038624,0.536928,0.008032,0.004544,0.016384,0.050752,0.053696,7.17414,0.058592
+846,113.513,8.80957,8.96928,0.038912,0.73728,0.0072,0.004896,0.016576,0.053248,0.056448,7.99629,0.058432
+847,99.0042,10.1006,7.90787,0.038592,0.528416,0.008,0.00512,0.01568,0.049824,0.054432,7.14957,0.05824
+848,124.212,8.05078,8.31197,0.03888,0.53456,0.008192,0.005504,0.014976,0.051232,0.05504,7.5448,0.058784
+849,101.759,9.82715,8.26982,0.04096,0.55424,0.008032,0.005024,0.016384,0.05056,0.053888,7.48275,0.057984
+850,113.816,8.78613,8.76426,0.037728,0.53792,0.008032,0.004896,0.01616,0.049472,0.054624,7.99808,0.057344
+851,105.144,9.51074,7.89917,0.038912,0.539776,0.007264,0.00592,0.016384,0.051136,0.054496,7.12586,0.059424
+852,114.375,8.74316,9.1664,0.038912,0.57344,0.008128,0.00416,0.016416,0.051168,0.05328,8.36195,0.058944
+853,101.85,9.81836,7.88726,0.038624,0.537056,0.008096,0.0056,0.01536,0.051136,0.054624,7.11725,0.05952
+854,118.78,8.41895,7.93373,0.038912,0.5344,0.008032,0.0056,0.015328,0.05104,0.054528,7.16672,0.059168
+855,114.529,8.73145,9.15117,0.037792,0.54016,0.008032,0.004768,0.016416,0.0512,0.054592,8.37603,0.062176
+856,96.051,10.4111,7.91245,0.038912,0.535712,0.008288,0.004704,0.016288,0.050752,0.053984,7.14451,0.059296
+857,119.014,8.40234,8.3047,0.038336,0.52288,0.008192,0.005952,0.016128,0.0496,0.054368,7.55139,0.057856
+858,105.676,9.46289,8.39475,0.038944,1.01946,0.008064,0.00464,0.0176,0.052032,0.053344,7.14285,0.057824
+859,115.981,8.62207,7.89478,0.04096,0.524288,0.008192,0.00528,0.01632,0.05008,0.054944,7.13558,0.059136
+860,115.576,8.65234,8.29117,0.038752,0.530624,0.00832,0.004736,0.016448,0.050528,0.053344,7.53107,0.057344
+861,109.765,9.11035,9.49485,0.0384,0.528768,0.008032,0.004704,0.016384,0.0512,0.057344,8.72842,0.0616
+862,96.4945,10.3633,7.95405,0.038912,0.570944,0.008128,0.004608,0.016384,0.05104,0.053472,7.15155,0.059008
+863,110.321,9.06445,8.33043,0.038464,0.567872,0.00816,0.0056,0.016032,0.051072,0.05376,7.53101,0.058464
+864,110.119,9.08105,8.58762,0.038528,0.753568,0.02496,0.004448,0.017664,0.054048,0.054592,7.58237,0.05744
+865,109.718,9.11426,7.93203,0.0384,0.53136,0.008096,0.005632,0.01616,0.051616,0.053664,7.16752,0.059584
+866,117.23,8.53027,8.30048,0.039136,0.532448,0.008032,0.004448,0.016384,0.0512,0.053248,7.53664,0.058944
+867,110.392,9.05859,8.79238,0.038624,0.549824,0.008192,0.0056,0.016192,0.04992,0.055264,8.01101,0.05776
+868,99.1192,10.0889,7.9968,0.043136,0.620672,0.008192,0.005344,0.015264,0.052448,0.059776,7.13251,0.059456
+869,116.615,8.5752,8.32442,0.038912,0.54656,0.008032,0.0056,0.020672,0.050944,0.054272,7.5407,0.05872
+870,111.425,8.97461,8.7704,0.037696,0.536448,0.008064,0.004352,0.01632,0.049216,0.054816,8.00595,0.057536
+871,106.379,9.40039,7.92781,0.038912,0.536576,0.008192,0.004416,0.016064,0.051232,0.053216,7.16179,0.057408
+872,115.719,8.6416,8.30288,0.03888,0.5328,0.008192,0.005408,0.016192,0.05008,0.053376,7.54,0.057952
+873,103.382,9.67285,9.13354,0.038944,0.528352,0.008192,0.005248,0.01632,0.050112,0.053248,8.37427,0.058848
+874,104.575,9.5625,7.90915,0.040768,0.546336,0.008032,0.004864,0.016448,0.0512,0.053248,7.12909,0.059168
+875,117.069,8.54199,8.28211,0.038912,0.529888,0.008064,0.004768,0.016384,0.0512,0.054656,7.51885,0.059392
+876,110.799,9.02539,8.83494,0.038656,0.56192,0.008192,0.005216,0.01536,0.051136,0.05456,8.04115,0.058752
+877,104.682,9.55273,7.91155,0.038656,0.542784,0.008032,0.0056,0.015392,0.051168,0.053376,7.13872,0.057824
+878,116.205,8.60547,8.29232,0.04096,0.558848,0.008032,0.004512,0.016384,0.051232,0.054368,7.49987,0.058112
+879,111.45,8.97266,8.75952,0.037504,0.535712,0.008032,0.00512,0.016384,0.050912,0.053568,7.99331,0.058976
+880,104.023,9.61328,7.91741,0.039104,0.5408,0.008224,0.004128,0.01632,0.051232,0.053216,7.14547,0.058912
+881,115.628,8.64844,8.33126,0.038304,0.534272,0.008064,0.005088,0.016384,0.050816,0.0536,7.56646,0.058272
+882,110.488,9.05078,8.74704,0.038912,0.534176,0.008032,0.004608,0.016256,0.051008,0.053504,7.98301,0.057536
+883,104.288,9.58887,7.95034,0.038784,0.603808,0.008032,0.004736,0.016384,0.0512,0.053248,7.11645,0.057696
+884,113.538,8.80762,8.3023,0.038912,0.54272,0.007744,0.004544,0.016384,0.051136,0.053312,7.52845,0.059104
+885,102.461,9.75977,8.94771,0.038848,0.673856,0.016384,0.005824,0.024864,0.05328,0.054848,8.02182,0.057984
+886,110.072,9.08496,7.89094,0.038912,0.537888,0.008064,0.004864,0.016192,0.051296,0.05344,7.1209,0.059392
+887,115.863,8.63086,8.18013,0.037408,0.544512,0.008032,0.0056,0.015328,0.050656,0.053376,7.39923,0.065984
+888,113.538,8.80762,8.81462,0.038912,0.534528,0.008192,0.006144,0.016384,0.0512,0.053248,8.04848,0.057536
+889,104.437,9.5752,7.92118,0.038624,0.537088,0.008192,0.006144,0.016352,0.050848,0.053632,7.15139,0.058912
+890,116.377,8.59277,7.91738,0.038944,0.54608,0.00816,0.004832,0.015904,0.05168,0.05328,7.1393,0.0592
+891,113.137,8.83887,8.81251,0.037696,0.559104,0.008192,0.005728,0.016064,0.051104,0.054112,8.01789,0.062624
+892,102.884,9.71973,7.90557,0.038336,0.541536,0.008192,0.004096,0.016384,0.050976,0.053472,7.13318,0.059392
+893,115.863,8.63086,7.92621,0.039168,0.565632,0.008192,0.006144,0.016224,0.050848,0.053568,7.12726,0.059168
+894,107.88,9.26953,9.08694,0.038656,0.841344,0.008064,0.004864,0.016128,0.051456,0.053376,8.0137,0.05936
+895,100.807,9.91992,7.92768,0.038848,0.5776,0.008192,0.00592,0.016128,0.049824,0.054528,7.11706,0.059584
+896,116.882,8.55566,8.73693,0.038912,0.617856,0.006784,0.005216,0.015264,0.051232,0.054816,7.8873,0.059552
+897,106.048,9.42969,8.7471,0.036448,0.5288,0.008192,0.006048,0.016224,0.051392,0.054432,7.98803,0.057536
+898,105.698,9.46094,7.93398,0.038912,0.534528,0.008192,0.005184,0.015296,0.051232,0.054464,7.16682,0.05936
+899,108.809,9.19043,7.89885,0.038944,0.557024,0.008224,0.005632,0.016032,0.049984,0.053248,7.11066,0.059104
+900,109.753,9.11133,9.13629,0.037184,0.817152,0.008192,0.005824,0.016192,0.049696,0.05488,8.08912,0.058048
+901,104.383,9.58008,7.9361,0.038304,0.53648,0.008288,0.004768,0.016384,0.050912,0.053536,7.168,0.059424
+902,116.708,8.56836,7.90749,0.03872,0.540448,0.008032,0.004832,0.016384,0.0512,0.05328,7.13635,0.05824
+903,112.912,8.85645,8.97434,0.038912,0.75776,0.008192,0.006144,0.016384,0.053184,0.05536,7.98029,0.058112
+904,98.5848,10.1436,8.06298,0.038784,0.671872,0.008192,0.004096,0.017888,0.063168,0.053568,7.14602,0.059392
+905,121.356,8.24023,7.91738,0.038784,0.534656,0.008192,0.005824,0.014688,0.051232,0.054624,7.1497,0.05968
+906,103.738,9.63965,9.26643,0.038912,0.634048,0.006944,0.005504,0.022208,0.050144,0.054784,8.39526,0.058624
+907,105.851,9.44727,7.91069,0.038912,0.53616,0.008032,0.004672,0.016384,0.0512,0.053248,7.14342,0.058656
+908,113.803,8.78711,8.31754,0.037472,0.54272,0.008192,0.005472,0.016096,0.050144,0.054528,7.54557,0.057344
+909,105.687,9.46191,8.89856,0.04096,0.650688,0.008544,0.00432,0.027936,0.053984,0.054784,7.99923,0.058112
+910,104.012,9.61426,7.92157,0.038464,0.5312,0.009312,0.004768,0.01616,0.050944,0.053984,7.15776,0.058976
+911,115.929,8.62598,7.89882,0.037568,0.534528,0.008192,0.00544,0.01504,0.0512,0.05328,7.13315,0.060416
+912,114.785,8.71191,9.17862,0.038432,0.530656,0.008064,0.004736,0.016256,0.051072,0.053504,8.41728,0.058624
+913,100.996,9.90137,7.88928,0.03776,0.534528,0.008192,0.005664,0.016064,0.049984,0.053216,7.12483,0.05904
+914,117.837,8.48633,7.91766,0.038624,0.528512,0.008032,0.004992,0.016224,0.050656,0.05376,7.15795,0.058912
+915,115.367,8.66797,9.09238,0.038944,0.54064,0.008224,0.005664,0.016,0.049984,0.053248,8.32032,0.05936
+916,97.682,10.2373,7.88755,0.037568,0.54272,0.007616,0.004672,0.016224,0.050656,0.053792,7.11674,0.057568
+917,114.914,8.70215,8.304,0.038464,0.557504,0.008224,0.005312,0.015136,0.051008,0.053472,7.51603,0.058848
+918,107.248,9.32422,8.36102,0.038496,0.976736,0.008128,0.004736,0.016384,0.052736,0.05344,7.15194,0.058432
+919,115.916,8.62695,8.25958,0.038368,0.52816,0.008064,0.004992,0.016384,0.050976,0.053472,7.50182,0.057344
+920,111.268,8.9873,9.1119,0.03856,0.528928,0.008256,0.004288,0.016384,0.050432,0.054016,8.35174,0.059296
+921,94.5173,10.5801,8.448,0.038912,1.07706,0.008064,0.005568,0.016288,0.051584,0.06,7.13114,0.059392
+922,120.726,8.2832,7.93475,0.040768,0.527328,0.008192,0.005728,0.01632,0.0512,0.053728,7.1721,0.059392
+923,114.337,8.74609,8.29021,0.037504,0.539776,0.008096,0.005056,0.016384,0.05088,0.053568,7.52026,0.058688
+924,110.119,9.08105,8.75558,0.0384,0.545632,0.008192,0.005152,0.016416,0.050112,0.054432,7.9792,0.058048
+925,100.837,9.91699,7.9807,0.038272,0.60624,0.008032,0.004992,0.016384,0.051104,0.054464,7.14192,0.059296
+926,114.529,8.73145,8.31779,0.037728,0.5632,0.008192,0.0056,0.01616,0.04992,0.0544,7.52525,0.057344
+927,111.039,9.00586,8.76304,0.038784,0.542048,0.008064,0.005024,0.016384,0.049152,0.053248,7.9913,0.05904
+928,98.1783,10.1855,8.12237,0.038848,0.737344,0.008192,0.004096,0.016384,0.051232,0.054656,7.15165,0.059968
+929,116.496,8.58398,8.30934,0.038624,0.54288,0.008064,0.004928,0.016384,0.050944,0.053504,7.53584,0.058176
+930,108.348,9.22949,8.7632,0.037696,0.538592,0.008224,0.00528,0.016256,0.050112,0.061472,7.98726,0.058304
+931,108.085,9.25195,8.32035,0.038912,0.528384,0.008064,0.004224,0.016384,0.05472,0.053824,7.55712,0.05872
+932,110.691,9.03418,9.14845,0.038912,0.529824,0.008032,0.004768,0.015456,0.050208,0.05488,8.38877,0.0576
+933,97.246,10.2832,8.50557,0.038304,0.713536,0.030592,0.0056,0.017056,0.0512,0.054368,7.53722,0.057696
+934,109.099,9.16602,7.94832,0.038912,0.562496,0.008032,0.004864,0.016512,0.051168,0.053248,7.14944,0.063648
+935,115.863,8.63086,8.29571,0.038592,0.530752,0.008064,0.005344,0.015296,0.051168,0.054752,7.53309,0.058656
+936,109.93,9.09668,8.78778,0.038592,0.544608,0.008032,0.004736,0.016384,0.05088,0.057632,8.0095,0.057408
+937,104.139,9.60254,7.93328,0.03824,0.563456,0.008032,0.004672,0.016416,0.051104,0.053312,7.13846,0.059584
+938,113.866,8.78223,8.37222,0.038752,0.612288,0.008,0.004512,0.016384,0.05072,0.053408,7.5304,0.05776
+939,109.989,9.0918,8.8105,0.038912,0.59968,0.008032,0.00464,0.016384,0.0512,0.053248,7.98051,0.057888
+940,100.412,9.95898,8.2623,0.03776,0.881696,0.007264,0.005792,0.016064,0.050976,0.053728,7.14954,0.059488
+941,116.073,8.61523,8.32512,0.038944,0.585536,0.008096,0.0056,0.015264,0.051104,0.053312,7.50992,0.057344
+942,107.091,9.33789,8.82694,0.038368,0.60272,0.00928,0.004864,0.016128,0.050816,0.053728,7.99338,0.057664
+943,104.437,9.5752,8.32102,0.038912,0.5664,0.007296,0.005888,0.016384,0.053248,0.054944,7.52013,0.057824
+944,105.982,9.43555,9.21792,0.038528,0.60448,0.008032,0.004672,0.016384,0.05088,0.053568,8.38246,0.058912
+945,96.2316,10.3916,8.4408,0.03792,1.06899,0.008192,0.00608,0.016448,0.051136,0.053312,7.13933,0.059392
+946,111.183,8.99414,7.98621,0.038912,0.6184,0.008128,0.004256,0.016384,0.051232,0.054336,7.13542,0.059136
+947,114.682,8.71973,8.32602,0.037728,0.59392,0.008032,0.0056,0.016288,0.049984,0.054944,7.50112,0.0584
+948,108.971,9.17676,8.86989,0.038912,0.603328,0.008032,0.004864,0.01616,0.0496,0.054784,8.03664,0.057568
+949,102.267,9.77832,7.94157,0.038752,0.585856,0.008,0.005632,0.016288,0.051136,0.054048,7.12294,0.058912
+950,111.754,8.94824,8.04144,0.037856,0.659456,0.008224,0.005632,0.016352,0.049664,0.05328,7.15312,0.057856
+951,107.88,9.26953,8.44019,0.037536,0.669056,0.006784,0.00592,0.01616,0.050624,0.05392,7.54109,0.059104
+952,109.566,9.12695,7.96058,0.038432,0.593568,0.008032,0.004864,0.016256,0.050688,0.053792,7.13555,0.059392
+953,115.615,8.64941,8.31078,0.038912,0.561152,0.008224,0.006112,0.016224,0.050784,0.053728,7.51757,0.05808
+954,108.786,9.19238,8.81869,0.038688,0.581856,0.008192,0.005568,0.01616,0.051008,0.05424,8.00544,0.057536
+955,104.309,9.58691,8.36525,0.038944,0.60208,0.008192,0.005856,0.01616,0.050912,0.0536,7.53094,0.05856
+956,108.983,9.17578,9.2033,0.038496,0.565728,0.008192,0.005216,0.015296,0.051168,0.053248,8.40704,0.058912
+957,96.5764,10.3545,8.41283,0.038496,1.02778,0.008064,0.004992,0.016384,0.0512,0.054432,7.15248,0.059008
+958,112.962,8.85254,7.93789,0.037536,0.5528,0.008192,0.004096,0.016384,0.0512,0.053248,7.15501,0.059424
+959,114.49,8.73438,8.34131,0.038496,0.57168,0.008064,0.0048,0.016384,0.051136,0.053312,7.53872,0.05872
+960,109.052,9.16992,8.82688,0.038912,0.600064,0.008192,0.004096,0.016384,0.0512,0.054944,7.99574,0.057344
+961,104.714,9.5498,7.94765,0.038752,0.569312,0.00832,0.005632,0.016064,0.05008,0.055264,7.14342,0.0608
+962,114.966,8.69824,8.34358,0.038304,0.55904,0.008032,0.004768,0.015936,0.051072,0.053728,7.55498,0.057728
+963,110.787,9.02637,8.77549,0.0376,0.546176,0.008032,0.004896,0.016384,0.050912,0.053248,7.99978,0.058464
+964,104.607,9.55957,7.92166,0.038752,0.554592,0.008064,0.0048,0.016384,0.052768,0.053728,7.13318,0.059392
+965,115.85,8.63184,8.3209,0.038816,0.547296,0.008192,0.005632,0.016064,0.049984,0.054688,7.54134,0.05888
+966,109.954,9.09473,8.80422,0.038784,0.547264,0.008192,0.005376,0.015104,0.0512,0.0552,8.02554,0.057568
+967,101.729,9.83008,8.30259,0.038976,0.671712,0.00816,0.004096,0.016384,0.050592,0.053856,7.39738,0.06144
+968,116.047,8.61719,9.13818,0.038912,0.5424,0.008096,0.004512,0.016384,0.050656,0.053792,8.36608,0.057344
+969,100.412,9.95898,8.74858,0.038912,0.550784,0.008032,0.0056,0.0152,0.051168,0.054592,7.96656,0.057728
+970,105.829,9.44922,7.93008,0.037376,0.548864,0.008192,0.005312,0.016288,0.050112,0.054368,7.15046,0.059104
+971,115.224,8.67871,8.29254,0.037824,0.542752,0.00816,0.00544,0.016384,0.049856,0.054432,7.51898,0.05872
+972,111.196,8.99316,8.80435,0.038944,0.544544,0.008032,0.004448,0.016384,0.051008,0.053472,8.03005,0.057472
+973,103.174,9.69238,7.94122,0.03888,0.554016,0.007104,0.00416,0.016384,0.049152,0.054816,7.15763,0.059072
+974,117.243,8.5293,8.33722,0.038464,0.543328,0.008032,0.00464,0.016384,0.0512,0.05328,7.56323,0.058656
+975,108.199,9.24219,8.81894,0.038656,0.559616,0.008192,0.00608,0.02464,0.0512,0.05328,8.01789,0.059392
+976,102.997,9.70898,7.9785,0.038912,0.585024,0.008032,0.004896,0.016064,0.050976,0.053856,7.16186,0.05888
+977,115.929,8.62598,8.31866,0.038912,0.549504,0.008192,0.005696,0.01616,0.051008,0.05408,7.53667,0.058432
+978,108.624,9.20605,8.86618,0.038336,0.59008,0.008096,0.004896,0.01616,0.050784,0.053536,8.04694,0.057344
+979,104.639,9.55664,7.94957,0.038912,0.560896,0.008032,0.005632,0.015264,0.051232,0.053408,7.15757,0.058624
+980,113.187,8.83496,9.18941,0.035008,0.554496,0.006496,0.005536,0.01616,0.049984,0.055264,8.40864,0.057824
+981,100.353,9.96484,8.79776,0.038592,0.557056,0.008032,0.00496,0.016384,0.051232,0.054592,8.00835,0.05856
+982,103.372,9.67383,7.92803,0.03824,0.549664,0.008032,0.004352,0.016384,0.0512,0.05328,7.14877,0.058112
+983,117.85,8.48535,8.28163,0.038944,0.530112,0.008224,0.0056,0.016288,0.050048,0.054432,7.51907,0.058912
+984,111.244,8.98926,8.8105,0.038912,0.54992,0.007264,0.00576,0.016192,0.050624,0.053312,8.03069,0.057824
+985,100.049,9.99512,7.97286,0.038912,0.593184,0.008064,0.00496,0.016384,0.050752,0.053728,7.14749,0.059392
+986,108.28,9.23535,8.40608,0.038944,0.622304,0.008,0.004576,0.016416,0.061248,0.058848,7.53731,0.058432
+987,106.246,9.41211,8.84499,0.038688,0.600288,0.018112,0.0056,0.021344,0.057376,0.053216,7.99232,0.058048
+988,103.508,9.66113,7.96269,0.038272,0.575456,0.008032,0.004864,0.020608,0.05104,0.053408,7.15162,0.059392
+989,115.667,8.64551,8.29459,0.038656,0.555424,0.008224,0.005664,0.016416,0.050944,0.05392,7.50701,0.058336
+990,109.954,9.09473,8.83526,0.038624,0.582112,0.008192,0.004064,0.016384,0.0512,0.059392,8.01789,0.057408
+991,99.9902,10.001,8.98522,0.03856,0.731616,0.008032,0.004768,0.017536,0.054016,0.056992,8.01635,0.057344
+992,102.873,9.7207,8.34704,0.038688,0.553088,0.008032,0.004352,0.016384,0.051008,0.05344,7.5633,0.058752
+993,109.507,9.13184,8.82176,0.037888,0.591008,0.008032,0.005088,0.016384,0.0512,0.054336,7.99987,0.057952
+994,105.393,9.48828,7.94214,0.038208,0.541376,0.008128,0.005536,0.016384,0.0512,0.053824,7.1681,0.059392
+995,114.031,8.76953,8.31306,0.038816,0.545376,0.008064,0.004352,0.016384,0.0512,0.05328,7.53661,0.058976
+996,99.1096,10.0898,9.03584,0.038624,0.76832,0.008192,0.005184,0.015328,0.063424,0.05328,8.02611,0.057376
+997,107.113,9.33594,7.90733,0.038912,0.540672,0.008192,0.006144,0.016224,0.050784,0.05376,7.13325,0.059392
+998,115.095,8.68848,8.33597,0.037824,0.541888,0.008032,0.005056,0.016384,0.051168,0.05328,7.56326,0.059072
+999,106.822,9.36133,8.96656,0.037568,0.698336,0.008192,0.006144,0.016096,0.051104,0.053632,8.03763,0.057856
+1000,102.114,9.79297,8.00403,0.037824,0.585728,0.008192,0.005536,0.016512,0.051296,0.053632,7.18627,0.05904
+1001,109.695,9.11621,8.3783,0.038912,0.594976,0.021472,0.006144,0.01744,0.050144,0.054336,7.53558,0.059296
+1002,111.196,8.99316,8.91059,0.038592,0.60576,0.008032,0.004864,0.029984,0.050048,0.053248,8.06202,0.058048
+1003,101.951,9.80859,8.79629,0.034944,0.557056,0.008224,0.00592,0.01632,0.04944,0.055008,8.00998,0.059392
+1004,91.6331,10.9131,7.93789,0.038752,0.566656,0.008288,0.0048,0.016256,0.051264,0.05744,7.1352,0.059232
+1005,135.092,7.40234,8.47203,0.038912,0.70656,0.008192,0.006144,0.018464,0.051072,0.053344,7.53053,0.058816
+1006,105.328,9.49414,7.95568,0.04096,0.569344,0.008256,0.005504,0.016224,0.049888,0.054528,7.15187,0.059104
+1007,116.364,8.59375,8.31878,0.038368,0.53888,0.008,0.004832,0.016384,0.050208,0.05408,7.54909,0.058944
+1008,107.191,9.3291,8.87971,0.038944,0.665888,0.008128,0.00416,0.016384,0.058688,0.053952,7.97491,0.058656
+1009,105.155,9.50977,7.93763,0.038528,0.551296,0.008256,0.004448,0.016384,0.0512,0.0552,7.15283,0.059488
+1010,113.828,8.78516,8.31139,0.037536,0.561056,0.00816,0.004128,0.016384,0.0512,0.053248,7.52195,0.057728
+1011,102.39,9.7666,8.88016,0.038912,0.642432,0.006784,0.01584,0.02896,0.050464,0.053824,7.98554,0.057408
+1012,111.571,8.96289,7.94141,0.0384,0.55376,0.008224,0.005152,0.015328,0.051168,0.054272,7.15469,0.060416
+1013,114.811,8.70996,8.31661,0.038912,0.54256,0.008064,0.0056,0.015168,0.0512,0.053248,7.54387,0.057984
+1014,110.907,9.0166,8.77718,0.0384,0.541664,0.008192,0.005888,0.016192,0.050624,0.052224,8.00563,0.058368
+1015,100.867,9.91406,9.05421,0.038592,0.821312,0.008032,0.004512,0.016384,0.050528,0.053888,8.00288,0.05808
+1016,95.8084,10.4375,8.15005,0.038912,0.746624,0.023072,0.0056,0.016256,0.050208,0.053216,7.15725,0.058912
+1017,121.673,8.21875,8.33763,0.03776,0.565248,0.008224,0.006112,0.016128,0.049408,0.054944,7.54218,0.057632
+1018,99.6012,10.04,7.99389,0.040832,0.585632,0.008032,0.004896,0.016192,0.05136,0.053408,7.17414,0.059392
+1019,112.429,8.89453,8.01235,0.037824,0.638976,0.008192,0.00592,0.01616,0.051104,0.05584,7.13923,0.059104
+1020,113.942,8.77637,8.36522,0.038944,0.591232,0.00816,0.004736,0.016288,0.049248,0.054848,7.54326,0.058496
+1021,100.599,9.94043,8.46029,0.038944,1.09478,0.007008,0.006144,0.01776,0.051648,0.053472,7.1311,0.059424
+1022,114.644,8.72266,8.41322,0.038752,0.6248,0.008192,0.005536,0.022336,0.049952,0.053248,7.55299,0.057408
+1023,107.552,9.29785,8.83507,0.038912,0.59392,0.008192,0.006144,0.016096,0.050464,0.053664,8.01034,0.057344
+1024,103.32,9.67871,7.98534,0.038656,0.586112,0.008032,0.004832,0.016384,0.050752,0.053696,7.16762,0.059264
+1025,112.453,8.89258,8.34195,0.037312,0.595936,0.008192,0.006112,0.016288,0.050816,0.05376,7.51552,0.058016
+1026,108.659,9.20312,8.87872,0.03872,0.620384,0.008096,0.004864,0.016192,0.050752,0.054112,8.02816,0.05744
+1027,101.547,9.84766,8.86803,0.035552,0.599072,0.007264,0.006016,0.016384,0.0512,0.054624,8.03907,0.058848
+1028,102.196,9.78516,8.00931,0.038912,0.604096,0.008064,0.004288,0.016384,0.05088,0.0536,7.17411,0.058976
+1029,112.047,8.9248,9.26304,0.03728,0.614144,0.008128,0.0056,0.01536,0.05104,0.053248,8.41933,0.058912
+1030,97.1537,10.293,7.99539,0.038912,0.60416,0.008192,0.005504,0.01616,0.064352,0.062528,7.13738,0.058208
+1031,116.695,8.56934,7.92986,0.038944,0.552928,0.008192,0.005632,0.016352,0.049696,0.055104,7.14512,0.057888
+1032,113.576,8.80469,9.18486,0.037312,0.559104,0.008032,0.004256,0.016384,0.051232,0.053216,8.3968,0.058528
+1033,99.35,10.0654,7.92048,0.037824,0.568576,0.008288,0.004672,0.016416,0.051104,0.053312,7.1209,0.059392
+1034,115.706,8.64258,7.94774,0.038912,0.550912,0.008192,0.005216,0.015296,0.052288,0.0536,7.16448,0.058848
+1035,107.214,9.32715,9.31923,0.037696,0.65696,0.008032,0.004704,0.016384,0.064896,0.064128,8.4071,0.059328
+1036,101.116,9.88965,7.95757,0.038912,0.557056,0.008192,0.005408,0.016736,0.05072,0.053184,7.16832,0.05904
+1037,113.601,8.80273,7.92976,0.03888,0.5528,0.008128,0.004992,0.016384,0.051104,0.053376,7.1449,0.0592
+1038,109.052,9.16992,9.24208,0.038944,0.630752,0.008064,0.004224,0.016384,0.051008,0.05344,8.38042,0.058848
+1039,99.6206,10.0381,8.34342,0.038912,0.571392,0.008192,0.00544,0.015136,0.051104,0.054368,7.53962,0.059264
+1040,108.613,9.20703,8.90176,0.038432,0.659936,0.008192,0.005248,0.01632,0.050144,0.053216,8.01194,0.058336
+1041,103.163,9.69336,7.94624,0.038944,0.57104,0.008352,0.005632,0.01504,0.051168,0.055168,7.1415,0.059392
+1042,109.742,9.1123,8.32368,0.03776,0.57344,0.008192,0.00416,0.01776,0.049696,0.05328,7.52032,0.059072
+1043,109.777,9.10938,8.85146,0.038624,0.608544,0.008192,0.00608,0.016192,0.051392,0.054432,8.00989,0.058112
+1044,104.725,9.54883,7.95357,0.038912,0.589088,0.008064,0.004864,0.01648,0.050976,0.053568,7.13238,0.059232
+1045,112.639,8.87793,8.34928,0.038656,0.583104,0.008032,0.005088,0.016384,0.0512,0.05504,7.5328,0.058976
+1046,106.301,9.40723,8.92314,0.038528,0.63472,0.008032,0.0048,0.016224,0.050496,0.060256,8.05264,0.05744
+1047,101.962,9.80762,8.00861,0.039264,0.604768,0.00816,0.006144,0.016416,0.065504,0.063488,7.14547,0.059392
+1048,108.074,9.25293,8.57776,0.0376,0.786144,0.01872,0.004096,0.023808,0.04992,0.059424,7.5407,0.057344
+1049,113.362,8.82129,8.82672,0.038944,0.579552,0.008224,0.005824,0.016128,0.051008,0.053504,8.01571,0.057824
+1050,104.065,9.60938,8.8056,0.036864,0.550944,0.00816,0.005408,0.016256,0.05152,0.053792,8.02406,0.058592
+1051,103.57,9.65527,7.94045,0.038624,0.575168,0.007264,0.00592,0.016384,0.0512,0.05328,7.13466,0.057952
+1052,109.613,9.12305,8.36208,0.037632,0.583712,0.009408,0.004864,0.016128,0.050784,0.053728,7.54858,0.057248
+1053,98.4426,10.1582,8.07731,0.047136,0.684,0.008192,0.005696,0.016064,0.049952,0.0544,7.15248,0.059392
+1054,111.705,8.95215,8.03898,0.038496,0.633824,0.008192,0.004096,0.016384,0.065536,0.06464,7.14842,0.059392
+1055,114.107,8.76367,9.04602,0.038752,0.632992,0.008192,0.00592,0.016192,0.049696,0.054336,7.92429,0.315648
+1056,101.477,9.85449,8.00954,0.038688,0.596384,0.008224,0.004064,0.016384,0.06144,0.06352,7.16182,0.059008
+1057,104.213,9.5957,8.05696,0.038304,0.679904,0.008032,0.005024,0.016384,0.050784,0.053664,7.14547,0.059392
+1058,113.677,8.79688,9.11987,0.037536,0.550912,0.008192,0.005728,0.01648,0.049472,0.054784,8.33792,0.058848
+1059,99.7565,10.0244,7.9425,0.038432,0.553792,0.00816,0.005632,0.016256,0.049856,0.0544,7.15152,0.064448
+1060,111.815,8.94336,7.97686,0.037792,0.585728,0.008224,0.005568,0.016928,0.050976,0.053472,7.15792,0.060256
+1061,92.981,10.7549,9.65408,0.038368,0.639776,0.008224,0.00592,0.01616,0.049568,0.054432,8.78416,0.057472
+1062,110.262,9.06934,8.82931,0.037664,0.597664,0.008032,0.004608,0.016384,0.050912,0.053248,8.00182,0.058976
+1063,103.039,9.70508,8.05434,0.043008,0.65536,0.008224,0.006048,0.027776,0.050112,0.054752,7.15011,0.058944
+1064,108.302,9.2334,8.81686,0.03616,0.582528,0.008224,0.0056,0.01616,0.049888,0.05328,8.00762,0.057408
+1065,104.309,9.58691,7.97331,0.037312,0.561152,0.008224,0.006112,0.016352,0.050656,0.053632,7.18048,0.059392
+1066,114.657,8.72168,7.94547,0.038912,0.559104,0.008192,0.005472,0.016096,0.050112,0.053344,7.15562,0.058624
+1067,114.26,8.75195,8.8023,0.038144,0.55712,0.008064,0.004928,0.016384,0.0512,0.053248,8.01578,0.05744
+1068,100.936,9.90723,8.31277,0.037664,0.566624,0.008032,0.004768,0.016256,0.050784,0.053664,7.51629,0.058688
+1069,112.367,8.89941,8.15293,0.038336,0.772864,0.010176,0.0056,0.016992,0.0512,0.05328,7.14522,0.059264
+1070,113.463,8.81348,7.94304,0.037792,0.558272,0.008032,0.004864,0.01632,0.051456,0.05472,7.15219,0.059392
+1071,115.445,8.66211,8.31738,0.038944,0.567904,0.008128,0.0056,0.016064,0.050112,0.055136,7.51734,0.058144
+1072,109.46,9.13574,8.79923,0.038592,0.56112,0.008096,0.004544,0.016384,0.0512,0.053248,8.00768,0.058368
+1073,103.351,9.67578,8.38666,0.038848,0.625856,0.008064,0.00512,0.016384,0.050336,0.053536,7.53107,0.05744
+1074,111.401,8.97656,9.19517,0.038912,0.565216,0.008096,0.005504,0.015232,0.051104,0.053216,8.39885,0.05904
+1075,99.4561,10.0547,8.80435,0.037664,0.5816,0.008096,0.0056,0.016608,0.0496,0.0544,7.99376,0.057024
+1076,104.918,9.53125,8.00566,0.038336,0.625216,0.008192,0.005504,0.016224,0.050176,0.054784,7.14931,0.05792
+1077,114.747,8.71484,8.3073,0.038656,0.532416,0.007296,0.005568,0.016128,0.04976,0.067584,7.53053,0.05936
+1078,99.3018,10.0703,9.00973,0.03856,0.789344,0.007744,0.004608,0.01632,0.05072,0.053568,7.99152,0.057344
+1079,113.942,8.77637,7.93184,0.038464,0.54112,0.008192,0.006144,0.016192,0.050976,0.053664,7.15734,0.059744
+1080,113.162,8.83691,8.32512,0.038912,0.550912,0.008224,0.004064,0.017472,0.050112,0.054592,7.54349,0.057344
+1081,110.991,9.00977,8.79488,0.037632,0.55808,0.007264,0.006048,0.016384,0.05024,0.053792,8.008,0.05744
+1082,103.665,9.64648,7.92371,0.038048,0.550848,0.008384,0.004832,0.016288,0.050944,0.054944,7.13987,0.059552
+1083,115.981,8.62207,8.29235,0.038528,0.5472,0.008192,0.006144,0.016384,0.051232,0.053216,7.51325,0.058208
+1084,109.954,9.09473,8.78387,0.038688,0.555232,0.008192,0.00512,0.01536,0.052224,0.053792,7.99725,0.058016
+1085,102.298,9.77539,8.38864,0.038464,0.6128,0.008192,0.005792,0.01616,0.04976,0.054464,7.54554,0.057472
+1086,111.742,8.94922,9.16288,0.038624,0.555424,0.008192,0.00544,0.016128,0.050112,0.05488,8.37651,0.057568
+1087,100.186,9.98145,8.79616,0.038944,0.559072,0.008192,0.006144,0.016256,0.04928,0.054816,8.00611,0.057344
+1088,105.285,9.49805,7.95322,0.037696,0.546816,0.008192,0.005984,0.016256,0.051168,0.053568,7.17555,0.057984
+1089,114.863,8.70605,8.2727,0.037696,0.541792,0.007264,0.005952,0.016384,0.050528,0.05392,7.5009,0.058272
+1090,107.383,9.3125,8.86794,0.038592,0.633248,0.008192,0.005344,0.016288,0.050048,0.054592,8.004,0.057632
+1091,108.017,9.25781,7.93805,0.038912,0.542688,0.006176,0.006144,0.016288,0.050496,0.053728,7.16416,0.059456
+1092,114.695,8.71875,8.29091,0.038656,0.545088,0.008,0.00496,0.016384,0.0512,0.054336,7.5144,0.057888
+1093,110.931,9.01465,8.79875,0.037664,0.55632,0.008128,0.004896,0.016384,0.051232,0.054848,8.01149,0.057792
+1094,103.184,9.69141,7.94426,0.037792,0.56432,0.008224,0.004864,0.016448,0.053216,0.053344,7.14733,0.05872
+1095,115.38,8.66699,8.30896,0.03856,0.551424,0.008192,0.006144,0.016288,0.05088,0.053728,7.52611,0.057632
+1096,110.214,9.07324,8.7959,0.038912,0.536576,0.008192,0.004096,0.016384,0.050464,0.053504,8.02966,0.058112
+1097,102.987,9.70996,9.01939,0.038912,0.78352,0.008064,0.00512,0.016352,0.053248,0.056832,7.99798,0.05936
+1098,103.644,9.64844,8.31139,0.03744,0.550656,0.008448,0.005344,0.016448,0.049888,0.064864,7.52054,0.05776
+1099,109.93,9.09668,8.76339,0.038496,0.545184,0.008192,0.005664,0.015936,0.050112,0.054272,7.98819,0.057344
+1100,105.709,9.45996,7.91386,0.038432,0.541344,0.008032,0.004448,0.016384,0.051072,0.053376,7.14131,0.059456
+1101,114.94,8.7002,8.29846,0.038912,0.538624,0.008192,0.006144,0.016352,0.050816,0.053664,7.52218,0.063584
+1102,109.297,9.14941,8.81779,0.038912,0.55664,0.008064,0.00464,0.016416,0.0504,0.053344,8.03088,0.058496
+1103,104.875,9.53516,7.96531,0.037696,0.58128,0.008032,0.0056,0.01536,0.051008,0.053472,7.15158,0.06128
+1104,114.76,8.71387,8.31651,0.038592,0.545088,0.008192,0.005568,0.01616,0.049984,0.053216,7.54074,0.058976
+1105,110.751,9.0293,8.78742,0.038912,0.544288,0.008,0.004768,0.016384,0.051232,0.053216,8.01178,0.058848
+1106,103.466,9.66504,7.9647,0.038944,0.568512,0.008032,0.004864,0.016064,0.050752,0.054016,7.16512,0.0584
+1107,112.626,8.87891,8.36608,0.038912,0.600064,0.008192,0.00576,0.016448,0.051264,0.053536,7.5345,0.057408
+1108,109.966,9.09375,8.8433,0.03888,0.62016,0.008032,0.004672,0.016384,0.0504,0.053568,7.99373,0.057472
+1109,104.511,9.56836,9.15469,0.038208,0.550912,0.006976,0.00576,0.016032,0.04992,0.05344,8.37558,0.057856
+1110,101.597,9.84277,8.32851,0.0384,0.561536,0.008096,0.004448,0.016384,0.050784,0.053664,7.53664,0.05856
+1111,109.942,9.0957,8.80515,0.037664,0.550912,0.008032,0.0056,0.01616,0.050112,0.05456,8.02448,0.057632
+1112,102.626,9.74414,7.96778,0.038912,0.577568,0.00816,0.005472,0.016704,0.0536,0.056896,7.15181,0.058656
+1113,116.562,8.5791,8.32058,0.038944,0.56112,0.008192,0.006144,0.016384,0.049152,0.054272,7.52742,0.058944
+1114,108.682,9.20117,8.83488,0.038912,0.579584,0.008192,0.00528,0.015232,0.051168,0.053248,8.02576,0.057504
+1115,104.139,9.60254,7.91178,0.037216,0.55008,0.006976,0.004096,0.01648,0.050528,0.05328,7.13546,0.057664
+1116,116.629,8.57422,8.33741,0.038752,0.549024,0.008192,0.004128,0.016352,0.0512,0.054304,7.55805,0.057408
+1117,109.495,9.13281,8.87402,0.038944,0.544768,0.008256,0.006048,0.016384,0.050656,0.053792,8.09715,0.058016
+1118,103.886,9.62598,7.93312,0.038528,0.551456,0.00816,0.005632,0.016064,0.050016,0.053216,7.1513,0.058752
+1119,112.85,8.86133,8.38237,0.038592,0.622912,0.007392,0.004896,0.016384,0.0512,0.05328,7.52944,0.058272
+1120,109.367,9.14355,8.83923,0.038624,0.583584,0.008096,0.00464,0.016384,0.05088,0.053568,8.02512,0.058336
+1121,100.117,9.98828,8.08077,0.038912,0.671744,0.008128,0.0056,0.016,0.062432,0.054368,7.16483,0.058752
+1122,116.576,8.57812,8.31933,0.03872,0.551072,0.008032,0.004608,0.016416,0.051008,0.053408,7.53869,0.057376
+1123,108.67,9.20215,8.83549,0.038432,0.57648,0.008192,0.005696,0.01664,0.050912,0.053728,8.02611,0.059296
+1124,100.777,9.92285,8.05894,0.03856,0.66768,0.008032,0.00464,0.016384,0.050656,0.053728,7.16115,0.058112
+1125,117.593,8.50391,8.32906,0.038304,0.577376,0.008032,0.005056,0.016352,0.051136,0.053344,7.52029,0.059168
+1126,104.097,9.60645,8.88666,0.043392,0.632832,0.009344,0.004864,0.016192,0.050976,0.053504,8.01616,0.059392
+1127,105.09,9.51562,7.93498,0.03792,0.546752,0.008064,0.0056,0.016192,0.059904,0.055328,7.14707,0.058144
+1128,114.12,8.7627,8.32086,0.038944,0.563168,0.008192,0.005216,0.01536,0.051104,0.05504,7.52589,0.057952
+1129,107.699,9.28516,8.85408,0.038496,0.59488,0.008192,0.006144,0.016288,0.050528,0.053536,8.02771,0.058304
+1130,100.728,9.92773,7.9705,0.03888,0.599808,0.008032,0.004544,0.016384,0.051232,0.054272,7.13827,0.059072
+1131,114.362,8.74414,8.28691,0.037536,0.552096,0.007264,0.005888,0.016384,0.051232,0.053216,7.50506,0.05824
+1132,110.072,9.08496,8.80634,0.038912,0.55872,0.008064,0.004608,0.016384,0.051232,0.053248,8.01706,0.058112
+1133,101.156,9.88574,8.01178,0.038912,0.601824,0.022144,0.0048,0.016352,0.051008,0.067776,7.15146,0.057504
+1134,116.192,8.60645,8.35587,0.038912,0.554496,0.008064,0.004736,0.016384,0.050912,0.053536,7.57146,0.057376
+1135,109.041,9.1709,8.80438,0.038912,0.557056,0.008224,0.006112,0.016384,0.050752,0.053696,8.01542,0.057824
+1136,103.759,9.6377,7.94691,0.037664,0.565248,0.008192,0.005632,0.016224,0.049792,0.053248,7.15293,0.057984
+1137,112.925,8.85547,8.34266,0.049088,0.572992,0.016928,0.006016,0.016192,0.050688,0.054048,7.51792,0.058784
+1138,110.131,9.08008,8.78579,0.038912,0.554496,0.008032,0.004768,0.016224,0.050528,0.05408,7.99949,0.059264
+1139,104.875,9.53516,7.92509,0.038272,0.549088,0.008064,0.00496,0.016384,0.050848,0.053664,7.14541,0.0584
+1140,114.337,8.74609,8.35536,0.038912,0.563232,0.00816,0.00608,0.016288,0.050848,0.05376,7.56038,0.057696
+1141,107.36,9.31445,8.84496,0.038944,0.597984,0.008192,0.005728,0.015936,0.050016,0.053248,8.01696,0.057952
+1142,105.621,9.46777,8.02205,0.038912,0.628736,0.008352,0.005632,0.01616,0.05104,0.053344,7.16045,0.059424
+1143,114.644,8.72266,8.33331,0.038112,0.551712,0.008192,0.006144,0.016288,0.050816,0.053728,7.55098,0.057344
+1144,110.333,9.06348,8.76944,0.038944,0.56112,0.008192,0.00512,0.015392,0.051168,0.053248,7.97808,0.058176
+1145,104.182,9.59863,7.96582,0.038912,0.578784,0.008032,0.005056,0.016384,0.050976,0.053472,7.15558,0.058624
+1146,114.863,8.70605,8.35306,0.038432,0.567328,0.008,0.004736,0.01632,0.050432,0.053344,7.55581,0.058656
+1147,106.99,9.34668,8.80762,0.038912,0.571424,0.009248,0.005056,0.016416,0.050816,0.0536,8.00358,0.05856
+1148,102.904,9.71777,8.03021,0.03888,0.634912,0.008192,0.005632,0.01616,0.04992,0.054592,7.16413,0.057792
+1149,114.107,8.76367,7.95709,0.03744,0.569344,0.008192,0.005888,0.01616,0.05072,0.054208,7.15075,0.064384
+1150,113.312,8.8252,7.94016,0.03856,0.55136,0.00816,0.00528,0.0152,0.0512,0.054688,7.15632,0.059392
+1151,116.802,8.56152,7.93843,0.038592,0.55184,0.008064,0.0056,0.016224,0.051072,0.053952,7.15341,0.05968
+1152,113.425,8.81641,7.96605,0.03888,0.564608,0.008032,0.004864,0.016128,0.051232,0.053312,7.17027,0.05872
+1153,116.06,8.61621,7.9015,0.038336,0.534496,0.007296,0.00592,0.01632,0.053312,0.056896,7.12954,0.059392
+1154,112.837,8.8623,8.01587,0.038912,0.628352,0.008128,0.004544,0.016384,0.0512,0.053248,7.15571,0.059392
+1155,111.304,8.98438,7.96877,0.038944,0.585152,0.008032,0.004832,0.016352,0.050848,0.0536,7.15162,0.059392
+1156,114.158,8.75977,7.95206,0.038464,0.559552,0.008192,0.005184,0.015296,0.051264,0.055232,7.16099,0.057888
+1157,113.475,8.8125,7.93584,0.04096,0.556064,0.007264,0.006016,0.016384,0.0512,0.054368,7.14365,0.059936
+1158,114.324,8.74707,8.0712,0.038912,0.677888,0.008224,0.005568,0.01616,0.04992,0.054368,7.16106,0.059104
+1159,114.413,8.74023,8.30384,0.038336,0.552768,0.008032,0.005024,0.016384,0.051072,0.053376,7.52026,0.058592
+1160,109.777,9.10938,7.95238,0.038656,0.55888,0.00832,0.004448,0.016384,0.0512,0.053312,7.16349,0.057696
+1161,114.426,8.73926,8.31696,0.038912,0.550304,0.008032,0.004896,0.016352,0.0512,0.054496,7.53488,0.057888
+1162,104.394,9.5791,8.88624,0.038624,0.597696,0.006816,0.005632,0.016576,0.051456,0.054944,8.05517,0.059328
+1163,109.262,9.15234,7.91658,0.038592,0.540992,0.00816,0.0056,0.016096,0.050016,0.054592,7.14381,0.05872
+1164,114.708,8.71777,8.33837,0.037856,0.548832,0.008192,0.004256,0.016224,0.0512,0.065536,7.54886,0.057408
+1165,108.222,9.24023,8.88554,0.038912,0.591328,0.008032,0.0048,0.016384,0.050976,0.053472,8.06298,0.058656
+1166,80.2319,12.4639,7.99274,0.038912,0.577536,0.008192,0.005632,0.016128,0.051232,0.053984,7.18224,0.05888
+1167,120.541,8.2959,8.33965,0.03824,0.584576,0.008224,0.006112,0.016384,0.050496,0.053952,7.5223,0.05936
+1168,104.725,9.54883,8.67686,0.038912,0.866304,0.014336,0.020128,0.016736,0.054432,0.053504,7.55466,0.057856
+1169,108.971,9.17676,7.96611,0.038912,0.581632,0.008224,0.006112,0.01632,0.050752,0.053792,7.15158,0.058784
+1170,113.249,8.83008,8.39008,0.038944,0.602112,0.00816,0.004096,0.016384,0.0512,0.05328,7.55654,0.05936
+1171,107.45,9.30664,8.84688,0.038912,0.593728,0.008096,0.0056,0.017152,0.050976,0.0536,8.02118,0.057632
+1172,105.252,9.50098,8.01219,0.038368,0.592832,0.008192,0.00528,0.015232,0.051168,0.05472,7.18806,0.058336
+1173,112.515,8.8877,8.37098,0.037664,0.608288,0.00816,0.00576,0.016224,0.049728,0.055232,7.53178,0.058144
+1174,105.296,9.49707,8.94362,0.038944,0.66352,0.008224,0.005632,0.016128,0.049888,0.054784,8.04915,0.057344
+1175,103.581,9.6543,7.97405,0.038656,0.567552,0.008224,0.006112,0.016384,0.051104,0.053376,7.17312,0.05952
+1176,115.942,8.625,8.35789,0.038912,0.540672,0.008192,0.00512,0.01536,0.0512,0.053248,7.58733,0.057856
+1177,109.73,9.11328,8.82688,0.038048,0.572256,0.008192,0.006144,0.016192,0.050496,0.053792,8.02419,0.057568
+1178,105.317,9.49512,7.96262,0.04096,0.54592,0.008128,0.005056,0.016384,0.0512,0.05328,7.1823,0.059392
+1179,113.387,8.81934,8.34627,0.037696,0.554432,0.008,0.004864,0.016384,0.051008,0.05344,7.56122,0.059232
+1180,110.048,9.08691,8.8032,0.03776,0.540672,0.008224,0.006112,0.016384,0.050752,0.053696,8.03226,0.057344
+1181,103.675,9.64551,7.9319,0.038944,0.551968,0.008128,0.00512,0.016384,0.0512,0.054464,7.14749,0.058208
+1182,116.47,8.58594,8.2919,0.038912,0.542752,0.008192,0.005824,0.016064,0.050816,0.053792,7.51664,0.058912
+1183,110.381,9.05957,8.7921,0.038624,0.539968,0.007264,0.006016,0.016288,0.050848,0.053728,8.02198,0.057376
+1184,101.176,9.88379,7.97562,0.037536,0.587808,0.00816,0.004096,0.016384,0.0512,0.05328,7.15773,0.059424
+1185,114.516,8.73242,8.37018,0.038944,0.619936,0.008032,0.004832,0.016384,0.0512,0.05328,7.51939,0.058176
+1186,109.907,9.09863,8.84941,0.038912,0.587776,0.008224,0.005408,0.01616,0.050144,0.054464,8.03098,0.057344
+1187,103.56,9.65625,8.01283,0.038464,0.623072,0.018208,0.0056,0.015072,0.0512,0.058432,7.14438,0.0584
+1188,105.523,9.47656,8.30054,0.038912,0.536576,0.008192,0.004096,0.016416,0.051168,0.05472,7.53264,0.057824
+1189,118.642,8.42871,8.76858,0.038752,0.540832,0.008192,0.006144,0.016384,0.050912,0.053536,7.99539,0.058432
+1190,105.643,9.46582,7.94138,0.038944,0.54272,0.00816,0.00528,0.0152,0.0512,0.053248,7.16794,0.058688
+1191,113.35,8.82227,8.32723,0.038656,0.555488,0.00816,0.0056,0.016256,0.049856,0.0544,7.54102,0.057792
+1192,108.555,9.21191,8.82074,0.038912,0.585728,0.008224,0.00512,0.01536,0.05072,0.053696,8.0055,0.057472
+1193,104.182,9.59863,7.95101,0.038656,0.559712,0.008064,0.0056,0.015328,0.050688,0.053728,7.16115,0.05808
+1194,115.302,8.67285,8.32515,0.038912,0.573472,0.008288,0.0056,0.016256,0.051104,0.053376,7.52077,0.057376
+1195,110.013,9.08984,8.79459,0.038496,0.548928,0.006976,0.00576,0.016192,0.04976,0.054912,8.01622,0.057344
+1196,100.639,9.93652,8.06906,0.037312,0.683168,0.008096,0.00496,0.016384,0.0512,0.054368,7.15462,0.058944
+1197,115.55,8.6543,8.34227,0.038688,0.549696,0.009216,0.00512,0.016384,0.0512,0.054848,7.55936,0.05776
+1198,109.53,9.12988,8.84294,0.038336,0.555008,0.008096,0.004864,0.016192,0.050752,0.05392,8.05808,0.057696
+1199,104.107,9.60547,7.96086,0.037728,0.556096,0.008096,0.00512,0.016384,0.050848,0.067232,7.16051,0.058848
+1200,114.914,8.70215,8.30669,0.040992,0.532448,0.008192,0.005344,0.016288,0.0512,0.053696,7.54064,0.057888
+1201,111.864,8.93945,8.77866,0.037664,0.532224,0.008384,0.005152,0.015328,0.0512,0.053248,8.01792,0.057536
+1202,104.714,9.5498,7.92346,0.03808,0.539296,0.008032,0.004576,0.016288,0.051264,0.05328,7.15366,0.058976
+1203,108.948,9.17871,8.4177,0.038336,0.623584,0.008192,0.005856,0.016224,0.063392,0.061984,7.54243,0.057696
+1204,112.392,8.89746,8.80643,0.038912,0.540704,0.00816,0.005728,0.016128,0.049888,0.054592,8.03437,0.057952
+1205,104.309,9.58691,7.96976,0.037888,0.567264,0.008032,0.005632,0.016128,0.049984,0.053376,7.16995,0.061504
+1206,113.765,8.79004,8.37149,0.0384,0.58768,0.00832,0.004704,0.016384,0.053248,0.057312,7.54691,0.058528
+1207,108.04,9.25586,8.81757,0.037888,0.558176,0.007296,0.005952,0.016352,0.0512,0.053248,8.02928,0.058176
+1208,102.997,9.70898,7.95517,0.037856,0.562336,0.008064,0.005088,0.024608,0.054272,0.05424,7.14717,0.061536
+1209,111.51,8.96777,8.43293,0.038912,0.62464,0.008192,0.005728,0.016128,0.051456,0.053664,7.57558,0.058624
+1210,105.6,9.46973,8.8095,0.042048,0.553952,0.00816,0.004096,0.016384,0.0512,0.053344,8.02176,0.05856
+1211,104.351,9.58301,8.02038,0.03792,0.644512,0.008,0.004832,0.016384,0.0512,0.054336,7.14438,0.058816
+1212,113.841,8.78418,8.3415,0.038528,0.558848,0.008,0.004896,0.016128,0.051136,0.0536,7.55258,0.057792
+1213,102.987,9.70996,8.85923,0.037344,0.579392,0.02416,0.004704,0.016416,0.051168,0.053248,8.03386,0.058944
+1214,104.789,9.54297,7.96307,0.037312,0.568704,0.00816,0.004768,0.016384,0.050624,0.053824,7.16547,0.057824
+1215,114.35,8.74512,8.32701,0.038816,0.546912,0.008192,0.005696,0.016224,0.04976,0.0552,7.54845,0.05776
+1216,110.392,9.05859,8.82691,0.038592,0.565568,0.008192,0.004096,0.016384,0.0512,0.053248,8.03152,0.058112
+1217,103.132,9.69629,7.94858,0.039168,0.57552,0.008192,0.006144,0.016384,0.051168,0.05328,7.14045,0.058272
+1218,113.412,8.81738,8.44208,0.0384,0.639744,0.00816,0.004096,0.016384,0.051232,0.053216,7.57347,0.057376
+1219,110.991,9.00977,8.80381,0.038912,0.566816,0.008032,0.004736,0.016416,0.051168,0.053248,8.00563,0.058848
+1220,103.77,9.63672,7.97085,0.038624,0.579648,0.00816,0.004384,0.016384,0.050912,0.053568,7.1617,0.057472
+1221,114.824,8.70898,8.33581,0.037536,0.579232,0.008032,0.0056,0.01536,0.0512,0.054336,7.52531,0.0592
+1222,109.954,9.09473,8.79952,0.03888,0.549952,0.007136,0.005408,0.015072,0.05136,0.054688,8.01837,0.058656
+1223,100.323,9.96777,7.95376,0.038912,0.55888,0.008064,0.004672,0.016416,0.051008,0.054496,7.16214,0.059168
+1224,120.117,8.3252,8.00352,0.038656,0.577056,0.008032,0.00496,0.016192,0.050752,0.053952,7.19581,0.058112
+1225,114.426,8.73926,8.77066,0.038912,0.546816,0.008128,0.005632,0.014944,0.0512,0.055264,7.9913,0.058464
+1226,103.77,9.63672,7.93078,0.037824,0.54064,0.00752,0.004768,0.01632,0.050656,0.053856,7.15981,0.059392
+1227,111.766,8.94727,7.99949,0.038912,0.614144,0.008032,0.0056,0.015328,0.051168,0.054784,7.15341,0.058112
+1228,112.552,8.88477,8.89734,0.035648,0.627808,0.007296,0.0056,0.016192,0.050784,0.054176,8.04218,0.057664
+1229,103.981,9.61719,7.96342,0.037792,0.569312,0.007808,0.0056,0.015264,0.0512,0.05328,7.16371,0.059456
+1230,109.472,9.13477,8.10003,0.039104,0.692192,0.00624,0.006016,0.01616,0.050496,0.05328,7.17715,0.059392
+1231,114.85,8.70703,9.10461,0.038336,0.833952,0.008064,0.0056,0.016384,0.05008,0.054912,8.03878,0.058496
+1232,101.82,9.82129,8.05619,0.038464,0.635328,0.008192,0.005408,0.016128,0.050144,0.055104,7.18378,0.063648
+1233,109.53,9.12988,8.09562,0.03904,0.710208,0.016416,0.005632,0.015136,0.050976,0.053472,7.1455,0.059232
+1234,114.069,8.7666,8.8207,0.035904,0.561184,0.008128,0.004896,0.016288,0.051168,0.0536,8.03149,0.058048
+1235,102.41,9.76465,7.97795,0.037824,0.580992,0.006816,0.006112,0.016256,0.050592,0.053728,7.16621,0.059424
+1236,114.734,8.71582,8.00845,0.037632,0.608,0.008032,0.004512,0.016384,0.0512,0.053248,7.17008,0.05936
+1237,109.93,9.09668,9.10301,0.03744,0.855968,0.008448,0.005888,0.016384,0.0512,0.053248,8.01587,0.05856
+1238,104.629,9.55762,7.97082,0.038912,0.5648,0.008032,0.004704,0.016352,0.051232,0.053248,7.17414,0.059392
+1239,111.693,8.95312,7.99334,0.038496,0.600384,0.008064,0.0056,0.01616,0.050016,0.054432,7.16189,0.058304
+1240,114.695,8.71875,8.96205,0.038912,0.671264,0.008032,0.004736,0.016384,0.051392,0.057152,8.05683,0.057344
+1241,102.267,9.77832,7.94598,0.038624,0.557728,0.008192,0.006144,0.016256,0.051328,0.053248,7.15568,0.058784
+1242,114.58,8.72754,7.98022,0.038528,0.555392,0.008192,0.00528,0.016288,0.051264,0.053568,7.19299,0.05872
+1243,112.85,8.86133,9.22422,0.038912,0.558208,0.007264,0.00592,0.016384,0.050752,0.053536,8.43491,0.058336
+1244,100.117,9.98828,7.96058,0.038912,0.539968,0.008352,0.00464,0.016384,0.050656,0.068128,7.17565,0.057888
+1245,116.192,8.60645,7.9319,0.038656,0.536832,0.008192,0.005824,0.01616,0.051392,0.0536,7.16186,0.059392
+1246,113.099,8.8418,9.21293,0.037888,0.540256,0.008064,0.00464,0.016384,0.05072,0.05328,8.4441,0.0576
+1247,100.58,9.94238,7.96912,0.038784,0.56928,0.008032,0.0048,0.016384,0.051136,0.053312,7.16918,0.058208
+1248,112.047,8.9248,8.32278,0.0536,0.53888,0.008256,0.005632,0.016128,0.05136,0.053632,7.53619,0.059104
+1249,104.682,9.55273,8.01187,0.040352,0.606976,0.008096,0.005184,0.015328,0.051168,0.054752,7.1665,0.06352
+1250,117.742,8.49316,7.92685,0.038912,0.534528,0.008064,0.004224,0.016384,0.050816,0.053632,7.16128,0.059008
+1251,107.102,9.33691,7.94013,0.038496,0.557472,0.008192,0.005856,0.01616,0.0512,0.053568,7.14976,0.059424
+1252,122.181,8.18457,8.38986,0.038848,0.60592,0.008128,0.004608,0.016384,0.05072,0.053696,7.55306,0.058496
+1253,100.897,9.91113,7.9913,0.04096,0.573408,0.008224,0.005696,0.016832,0.05104,0.053408,7.18234,0.059392
+1254,114.644,8.72266,7.98915,0.03888,0.593952,0.008192,0.005632,0.01616,0.04992,0.053216,7.1639,0.059296
+1255,112.788,8.86621,8.31088,0.038624,0.53232,0.008064,0.004768,0.016416,0.051168,0.054528,7.54765,0.057344
+1256,101.658,9.83691,8.30054,0.04848,0.875008,0.008032,0.004416,0.017728,0.051584,0.0536,7.1823,0.059392
+1257,115.995,8.62109,8.33936,0.038688,0.53792,0.007296,0.00592,0.016384,0.0512,0.06512,7.55754,0.059296
+1258,107.631,9.29102,8.83066,0.03872,0.566784,0.007296,0.005632,0.016224,0.051456,0.053408,8.03341,0.057728
+1259,103.309,9.67969,7.93792,0.038656,0.54288,0.008288,0.005696,0.016,0.050016,0.053216,7.16342,0.059744
+1260,115.772,8.6377,8.35238,0.037504,0.552896,0.008064,0.004288,0.016384,0.0512,0.05472,7.56966,0.057664
+1261,109.402,9.14062,8.85571,0.037856,0.591552,0.0064,0.006144,0.016416,0.050496,0.05392,8.03434,0.058592
+1262,99.9122,10.0088,8.07344,0.037472,0.647168,0.008192,0.004096,0.016384,0.0512,0.054272,7.19501,0.059648
+1263,110.392,9.05859,8.39728,0.038368,0.605184,0.008128,0.0056,0.016128,0.064352,0.063488,7.53837,0.057664
+1264,111.644,8.95703,8.83814,0.03792,0.554176,0.008032,0.004864,0.016352,0.051424,0.054368,8.05366,0.057344
+1265,103.497,9.66211,7.95034,0.038848,0.553024,0.008192,0.006048,0.016064,0.050848,0.054016,7.16384,0.059456
+1266,115.55,8.6543,8.33098,0.038656,0.549792,0.008192,0.005984,0.016256,0.049568,0.054464,7.54963,0.058432
+1267,109.718,9.11426,8.81754,0.038784,0.53552,0.008288,0.005856,0.016192,0.050752,0.054048,8.05072,0.057376
+1268,102.853,9.72266,7.98445,0.038912,0.58368,0.008192,0.004096,0.016384,0.0512,0.0544,7.16832,0.059264
+1269,115.955,8.62402,8.35174,0.038912,0.56928,0.008032,0.005632,0.01616,0.050144,0.05488,7.55098,0.057728
+1270,109.613,9.12305,8.77978,0.038688,0.538848,0.008192,0.005248,0.015328,0.051136,0.063456,8.00141,0.057472
+1271,104.768,9.54492,7.94733,0.038912,0.550272,0.008064,0.004896,0.016352,0.0512,0.05328,7.1656,0.058752
+1272,114.477,8.73535,8.3281,0.038976,0.561728,0.008032,0.004544,0.016384,0.0512,0.053248,7.53664,0.057344
+1273,108.199,9.24219,8.84941,0.03888,0.614432,0.008192,0.005952,0.016064,0.049696,0.054944,8.00339,0.057856
+1274,103.959,9.61914,8.0185,0.03744,0.626688,0.008192,0.004096,0.016384,0.051168,0.05328,7.16317,0.05808
+1275,93.3625,10.7109,7.95891,0.038272,0.563232,0.007296,0.005984,0.016384,0.051104,0.053344,7.1639,0.059392
+1276,114.567,8.72852,8.35165,0.038464,0.552864,0.007296,0.005632,0.016256,0.05088,0.053792,7.5687,0.05776
+1277,106.923,9.35254,7.93971,0.038176,0.549536,0.008,0.0056,0.016192,0.05024,0.0552,7.15741,0.05936
+1278,105.285,9.49805,8.50291,0.038912,0.692224,0.008192,0.005376,0.025344,0.052224,0.053728,7.56794,0.058976
+1279,120.103,8.32617,8.78349,0.037632,0.543712,0.007264,0.00592,0.016384,0.05056,0.053888,8.00973,0.0584
+1280,100.255,9.97461,8.09574,0.038624,0.669984,0.00816,0.004128,0.016384,0.0512,0.055104,7.19277,0.059392
+1281,116.087,8.61426,8.36198,0.038624,0.5408,0.008032,0.0056,0.0152,0.050976,0.053472,7.59171,0.057568
+1282,109.789,9.1084,8.81818,0.038912,0.54272,0.008224,0.005568,0.016288,0.051008,0.064256,8.03379,0.057408
+1283,103.132,9.69629,8.01178,0.038912,0.604192,0.00816,0.005632,0.016384,0.053376,0.05568,7.17114,0.058304
+1284,114.567,8.72852,8.34061,0.03856,0.541088,0.008224,0.005696,0.016224,0.05088,0.06848,7.55302,0.058432
+1285,102.946,9.71387,8.94362,0.038912,0.616448,0.008192,0.006144,0.01616,0.051168,0.053536,8.09302,0.060032
+1286,99.4561,10.0547,8.13069,0.0384,0.719488,0.008224,0.005152,0.016768,0.050976,0.054048,7.17811,0.05952
+1287,115.693,8.64355,8.31082,0.038912,0.535648,0.007296,0.00592,0.016384,0.049152,0.055232,7.5447,0.057568
+1288,107.383,9.3125,8.8303,0.038912,0.578848,0.008032,0.004864,0.016224,0.051136,0.053632,8.01293,0.065728
+1289,101.507,9.85156,8.82688,0.036864,0.587776,0.008096,0.0056,0.016224,0.049984,0.054976,8.01002,0.057344
+1290,101.729,9.83008,8.08102,0.038304,0.668128,0.008032,0.004384,0.016384,0.0512,0.055136,7.18035,0.059104
+1291,110.333,9.06348,9.3049,0.050016,0.652384,0.007264,0.00592,0.016384,0.05088,0.053344,8.41072,0.057984
+1292,98.3386,10.1689,8.02298,0.037856,0.603712,0.008,0.004704,0.016352,0.059456,0.062496,7.17216,0.05824
+1293,114.031,8.76953,7.98976,0.03744,0.608256,0.00816,0.0056,0.016128,0.052032,0.05456,7.14826,0.059328
+1294,114.966,8.69824,8.35174,0.038848,0.55696,0.008064,0.004384,0.016384,0.05072,0.053728,7.56506,0.0576
+1295,107.315,9.31836,7.93686,0.040832,0.546944,0.008064,0.005088,0.016384,0.0512,0.0544,7.15587,0.05808
+1296,113.463,8.81348,7.96422,0.038496,0.561568,0.008032,0.005504,0.015392,0.050976,0.053216,7.17203,0.059008
+1297,109.895,9.09961,8.39443,0.038752,0.597952,0.008096,0.005568,0.025472,0.0512,0.053248,7.55616,0.057984
+1298,104.235,9.59375,8.43574,0.046176,1.02493,0.008128,0.00416,0.016384,0.0512,0.054656,7.17069,0.059424
+1299,115.732,8.64062,8.38182,0.038912,0.585152,0.008064,0.0048,0.016384,0.051232,0.054304,7.56387,0.059104
+1300,107.733,9.28223,8.84307,0.037472,0.570944,0.008064,0.004672,0.016384,0.051136,0.053312,8.04253,0.05856
+1301,104.983,9.52539,8.36813,0.03856,0.5656,0.008192,0.005824,0.01616,0.051168,0.053856,7.57146,0.057312
+1302,109.332,9.14648,9.21958,0.038656,0.573728,0.008192,0.005248,0.0152,0.0512,0.053248,8.41523,0.05888
+1303,97.1353,10.2949,8.21453,0.038208,0.782176,0.010112,0.005088,0.0176,0.051072,0.053824,7.19853,0.05792
+1304,114.082,8.76562,8.0159,0.038848,0.607744,0.008032,0.004832,0.01632,0.051264,0.053248,7.17776,0.057856
+1305,110.476,9.05176,8.44595,0.038912,0.671008,0.008064,0.00496,0.024192,0.049536,0.06144,7.52989,0.057952
+1306,106.756,9.36719,8.93978,0.037504,0.664992,0.030752,0.004576,0.016384,0.050848,0.0536,8.02371,0.057408
+1307,103.549,9.65723,7.95222,0.038912,0.574496,0.007264,0.006016,0.016384,0.050912,0.053536,7.14547,0.059232
+1308,106.778,9.36523,7.99981,0.03904,0.58832,0.008096,0.004448,0.016384,0.050944,0.053504,7.1801,0.058976
+1309,118.931,8.4082,8.352,0.038816,0.56608,0.009216,0.00512,0.016384,0.0512,0.054528,7.55174,0.058912
+1310,104.245,9.59277,8.3233,0.043296,0.908736,0.007776,0.004896,0.016096,0.05104,0.053888,7.17824,0.059328
+1311,114.966,8.69824,8.33744,0.038912,0.55296,0.008192,0.0056,0.016128,0.049984,0.054432,7.55306,0.058176
+1312,109.075,9.16797,8.81238,0.038912,0.561152,0.00832,0.005664,0.016256,0.049632,0.055232,8.01933,0.057888
+1313,104.661,9.55469,8.36848,0.037792,0.556512,0.008032,0.004768,0.017472,0.051296,0.054112,7.58083,0.057664
+1314,109.006,9.17383,9.188,0.037632,0.552896,0.00816,0.004096,0.017792,0.050944,0.054144,8.40458,0.05776
+1315,98.9372,10.1074,8.1897,0.038944,0.75568,0.010272,0.006112,0.016384,0.052576,0.053792,7.1968,0.059136
+1316,113.614,8.80176,7.93286,0.037824,0.54064,0.008192,0.005632,0.016096,0.051328,0.05392,7.15981,0.059424
+1317,114.018,8.77051,8.33034,0.0384,0.553472,0.008224,0.005952,0.016128,0.050624,0.054176,7.54486,0.058496
+1318,109.801,9.10742,8.82883,0.037632,0.565248,0.008192,0.00576,0.016768,0.050912,0.053568,8.03222,0.058528
+1319,104.245,9.59277,7.93834,0.037184,0.556832,0.008032,0.005632,0.016256,0.050112,0.055232,7.14963,0.059424
+1320,112.614,8.87988,8.3457,0.038656,0.577888,0.007264,0.004864,0.016224,0.05136,0.0536,7.5385,0.057344
+1321,111.353,8.98047,8.81254,0.037344,0.559104,0.008192,0.006144,0.01632,0.050816,0.053696,8.02205,0.05888
+1322,103.267,9.68359,7.94586,0.038912,0.575328,0.008096,0.004352,0.016384,0.051072,0.053376,7.13872,0.059616
+1323,115.824,8.63379,8.33299,0.037536,0.557056,0.008192,0.005632,0.016192,0.049856,0.054688,7.54541,0.058432
+1324,109.11,9.16504,8.78851,0.038752,0.559296,0.008128,0.004672,0.01632,0.050912,0.053472,7.99898,0.057984
+1325,100.245,9.97559,8.40294,0.038944,0.648896,0.008032,0.0056,0.01536,0.051168,0.0544,7.52234,0.058208
+1326,115.968,8.62305,9.18205,0.037696,0.550912,0.008192,0.005376,0.016128,0.050176,0.054848,8.40118,0.057536
+1327,97.3384,10.2734,8.84685,0.038528,0.606592,0.008032,0.004672,0.016384,0.0512,0.053248,8.00973,0.058464
+1328,104.298,9.58789,7.9913,0.038528,0.587296,0.008032,0.004896,0.016128,0.05088,0.054048,7.17341,0.05808
+1329,113.854,8.7832,8.35958,0.038912,0.548864,0.008224,0.005696,0.01616,0.049792,0.054688,7.56797,0.06928
+1330,105.589,9.4707,8.86291,0.038912,0.638624,0.008032,0.004608,0.016384,0.050304,0.053408,7.99411,0.058528
+1331,102.216,9.7832,8.08115,0.037632,0.665024,0.008032,0.004832,0.016416,0.051168,0.054432,7.18454,0.059072
+1332,113.74,8.79199,8.33347,0.038976,0.555008,0.008192,0.004096,0.016416,0.051168,0.053248,7.54893,0.05744
+1333,108.394,9.22559,8.86198,0.038432,0.6336,0.008192,0.006144,0.016384,0.050656,0.053472,7.99725,0.057856
+1334,103.623,9.65039,7.96269,0.038912,0.555008,0.008192,0.005536,0.016256,0.05152,0.053664,7.1753,0.058304
+1335,109.145,9.16211,8.42243,0.03792,0.64304,0.008192,0.006016,0.01856,0.051232,0.053408,7.54614,0.05792
+1336,111.244,8.98926,8.89363,0.038944,0.626336,0.008064,0.004544,0.016384,0.050944,0.053312,8.03654,0.05856
+1337,103.424,9.66895,8.8208,0.038784,0.56544,0.008192,0.006048,0.01616,0.049472,0.055296,8.02355,0.057856
+1338,104.235,9.59375,7.96554,0.037728,0.567296,0.008224,0.005184,0.015328,0.051136,0.053376,7.16787,0.059392
+1339,112.875,8.85938,9.20384,0.038464,0.57184,0.00928,0.005056,0.016384,0.0512,0.0544,8.39955,0.057664
+1340,98.6703,10.1348,8.00963,0.038688,0.612832,0.008064,0.004224,0.016384,0.051232,0.054624,7.16454,0.05904
+1341,116.589,8.57715,8.3577,0.037664,0.557056,0.008192,0.006016,0.01616,0.050528,0.053952,7.56928,0.058848
+1342,106.633,9.37793,8.21648,0.03776,0.78848,0.010304,0.00576,0.016704,0.051296,0.05424,7.19341,0.058528
+1343,110.381,9.05957,8.04454,0.038944,0.658464,0.00816,0.00512,0.016352,0.051136,0.053312,7.15491,0.058144
+1344,113.639,8.7998,8.36848,0.038592,0.575776,0.008032,0.00464,0.016384,0.051072,0.053376,7.56256,0.058048
+1345,108.67,9.20215,8.80947,0.038944,0.565216,0.008192,0.006016,0.01616,0.05056,0.053536,8.01248,0.058368
+1346,97.7939,10.2256,8.09654,0.038688,0.673792,0.020544,0.004864,0.01616,0.049536,0.05488,7.17866,0.059424
+1347,113.538,8.80762,8.0215,0.038944,0.6328,0.008192,0.005824,0.016224,0.051136,0.053792,7.15565,0.058944
+1348,112.342,8.90137,8.3927,0.03856,0.584032,0.008192,0.00512,0.015392,0.051168,0.053248,7.57965,0.057344
+1349,104.394,9.5791,9.13603,0.040448,0.903744,0.008096,0.0056,0.016256,0.050144,0.0544,7.99834,0.059008
+1350,103.539,9.6582,7.98925,0.038912,0.6144,0.008192,0.005568,0.016192,0.04992,0.054752,7.14326,0.058048
+1351,110.357,9.06152,8.4008,0.038912,0.645056,0.008032,0.0056,0.015104,0.0512,0.053248,7.52598,0.057664
+1352,108.855,9.18652,8.01354,0.04096,0.595872,0.008288,0.004096,0.016384,0.0512,0.05328,7.18435,0.059104
+1353,113.828,8.78516,8.34298,0.038912,0.56656,0.008096,0.004928,0.017888,0.049696,0.054688,7.54342,0.058784
+1354,102.206,9.78418,8.95552,0.038944,0.671296,0.00816,0.014784,0.01744,0.050144,0.053248,8.04374,0.05776
+1355,108.751,9.19531,8.03059,0.03872,0.646816,0.007104,0.006016,0.016128,0.050624,0.054208,7.15162,0.05936
+1356,112.688,8.87402,8.41117,0.038912,0.609792,0.008032,0.004768,0.016384,0.050976,0.05344,7.57075,0.058112
+1357,108.085,9.25195,8.85469,0.0384,0.597728,0.008032,0.02096,0.016544,0.049504,0.054848,8.01014,0.058528
+1358,96.069,10.4092,8.06349,0.038976,0.655744,0.008288,0.004064,0.016384,0.0512,0.053248,7.17619,0.059392
+1359,104.703,9.55078,8.02666,0.038752,0.608096,0.008128,0.005024,0.016384,0.062592,0.0616,7.16803,0.058048
+1360,126.764,7.88867,8.4984,0.03856,0.649216,0.008032,0.020992,0.016384,0.067584,0.055296,7.58374,0.058592
+1361,107.642,9.29004,8.8496,0.037024,0.589216,0.008256,0.00464,0.016416,0.051168,0.054848,8.03046,0.057568
+1362,102.585,9.74805,8.37882,0.037856,0.58736,0.008064,0.011968,0.029536,0.051136,0.053376,7.54067,0.058848
+1363,107.248,9.32422,8.16362,0.0392,0.78848,0.010208,0.0056,0.01696,0.051136,0.053312,7.14141,0.057312
+1364,111.827,8.94238,7.96995,0.038912,0.555008,0.008192,0.00544,0.016192,0.051296,0.05312,7.18278,0.059008
+1365,112.342,8.90137,8.3415,0.038912,0.569024,0.008032,0.0056,0.01536,0.0512,0.053248,7.54179,0.058336
+1366,108.544,9.21289,8.89347,0.037888,0.573056,0.008032,0.00464,0.01632,0.0504,0.054048,8.09123,0.057856
+1367,104.065,9.60938,7.97696,0.038912,0.572928,0.008032,0.004768,0.016384,0.0512,0.05456,7.17078,0.059392
+1368,113.866,8.78223,8.3273,0.036992,0.558816,0.008,0.004608,0.016352,0.050464,0.053664,7.54096,0.05744
+1369,109.613,9.12305,8.84941,0.038912,0.599424,0.008032,0.004896,0.017472,0.050112,0.054432,8.01872,0.057408
+1370,103.34,9.67676,7.98282,0.037568,0.566912,0.008032,0.00464,0.016416,0.051168,0.054592,7.1848,0.058688
+1371,110.416,9.05664,8.4439,0.038912,0.67792,0.00816,0.006144,0.016288,0.05056,0.056032,7.5305,0.059392
+1372,111.341,8.98145,8.85501,0.038912,0.586816,0.007296,0.0056,0.016128,0.051392,0.053664,8.03635,0.058848
+1373,100.343,9.96582,8.88653,0.035072,0.618496,0.008192,0.006048,0.016256,0.06544,0.06352,8.01578,0.057728
+1374,105.458,9.48242,7.95766,0.038912,0.561152,0.008192,0.005344,0.015136,0.051232,0.054528,7.16451,0.058656
+1375,111.815,8.94336,9.18528,0.038688,0.593696,0.008448,0.0056,0.016128,0.050144,0.053248,8.36189,0.05744
+1376,100.392,9.96094,7.98307,0.038944,0.56608,0.008192,0.006144,0.016384,0.0512,0.05328,7.18435,0.058496
+1377,113.702,8.79492,8.38755,0.037888,0.5952,0.008032,0.004992,0.016384,0.0512,0.054432,7.56125,0.058176
+1378,101.729,9.83008,8.49283,0.038784,1.08762,0.00928,0.005056,0.017536,0.051328,0.053824,7.16614,0.063264
+1379,110.179,9.07617,8.05824,0.038912,0.681696,0.008064,0.0056,0.015328,0.051168,0.053408,7.1449,0.059168
+1380,114.018,8.77051,8.36534,0.038912,0.592992,0.007296,0.0056,0.01616,0.049696,0.054528,7.5415,0.058656
+1381,89.3933,11.1865,9.82746,0.038752,2.44752,0.01024,0.005376,0.017056,0.052512,0.054112,7.14134,0.060544
+1382,113.149,8.83789,8.06797,0.037888,0.6528,0.008064,0.004576,0.016384,0.05104,0.054624,7.18438,0.058208
+1383,113.024,8.84766,8.0383,0.038496,0.598496,0.00816,0.006144,0.016352,0.050944,0.053568,7.20688,0.059264
+1384,111.329,8.98242,9.6497,0.038528,0.60064,0.008192,0.005216,0.015296,0.051168,0.053248,8.81872,0.058688
+1385,95.6831,10.4512,8.86387,0.038656,0.594144,0.008096,0.004928,0.016384,0.0512,0.054304,8.03734,0.058816
+1386,101.668,9.83594,7.99706,0.03888,0.588288,0.008,0.004384,0.016384,0.050944,0.053536,7.17818,0.058464
+1387,111.413,8.97559,8.85376,0.035584,0.605472,0.008032,0.005088,0.016384,0.0512,0.054592,8.0184,0.059008
+1388,101.597,9.84277,7.9936,0.038752,0.599904,0.008096,0.004832,0.016192,0.051296,0.05344,7.16186,0.059232
+1389,114.247,8.75293,7.98106,0.038336,0.567072,0.008032,0.005056,0.016384,0.0512,0.05472,7.18259,0.057664
+1390,113.262,8.8291,8.83917,0.03632,0.5776,0.008032,0.004736,0.016384,0.051232,0.054464,8.03232,0.05808
+1391,102.002,9.80371,7.97312,0.038688,0.59392,0.008032,0.004736,0.016384,0.050912,0.053536,7.14752,0.059392
+1392,113.187,8.83496,8.02829,0.038624,0.59024,0.008192,0.004096,0.016384,0.0512,0.05328,7.20819,0.05808
+1393,111.051,9.00488,8.89309,0.037536,0.622592,0.008192,0.006144,0.01632,0.051264,0.053248,8.03981,0.057984
+1394,103.028,9.70605,7.97299,0.038528,0.584192,0.008288,0.005632,0.01616,0.049856,0.054848,7.1561,0.059392
+1395,110.167,9.07715,8.00326,0.038912,0.606208,0.008192,0.00608,0.016192,0.049408,0.057344,7.16186,0.059072
+1396,108.509,9.21582,8.93955,0.038912,0.671744,0.008192,0.00592,0.016224,0.050592,0.054208,8.0359,0.057856
+1397,108.04,9.25586,7.96266,0.038912,0.565056,0.008032,0.0056,0.015264,0.0512,0.053376,7.16579,0.059424
+1398,112.738,8.87012,7.98723,0.03856,0.577408,0.008032,0.004736,0.016352,0.050752,0.053728,7.17824,0.059424
+1399,109.942,9.0957,9.12224,0.037408,0.886784,0.008224,0.006112,0.016288,0.050848,0.05504,8.00339,0.058144
+1400,103.372,9.67383,7.98765,0.037728,0.58368,0.008224,0.005376,0.016224,0.050048,0.065568,7.16163,0.059168
+1401,106.644,9.37695,7.98102,0.037632,0.589824,0.008384,0.005952,0.016384,0.051008,0.05344,7.15981,0.058592
+1402,121.905,8.20312,8.92112,0.038304,0.66416,0.008192,0.005312,0.016992,0.053472,0.053248,8.02406,0.057376
+1403,101.607,9.8418,7.95462,0.038528,0.569152,0.00832,0.004736,0.016384,0.052224,0.054144,7.15174,0.059392
+1404,115.929,8.62598,7.96672,0.038272,0.57392,0.008096,0.004352,0.016384,0.051232,0.053216,7.16298,0.058272
+1405,113.993,8.77246,9.21971,0.038272,0.5656,0.008224,0.0056,0.015296,0.051168,0.053248,8.42342,0.05888
+1406,99.8051,10.0195,7.98858,0.038944,0.577504,0.008192,0.005184,0.016416,0.05008,0.05328,7.18026,0.05872
+1407,113.904,8.7793,7.95197,0.038592,0.561696,0.008192,0.006144,0.016256,0.051264,0.053312,7.15757,0.058944
+1408,112.589,8.88184,9.26541,0.038304,0.617312,0.00816,0.005504,0.016128,0.050112,0.053216,8.41891,0.05776
+1409,100.382,9.96191,7.94918,0.03776,0.569344,0.008192,0.005792,0.015968,0.04992,0.05456,7.14829,0.05936
+1410,113.689,8.7959,8.35792,0.038912,0.578944,0.00848,0.004448,0.016384,0.0512,0.053248,7.54835,0.057952
+1411,102.77,9.73047,9.27782,0.039584,1.01786,0.008192,0.006144,0.016384,0.052672,0.053824,8.0255,0.057664
+1412,102.461,9.75977,7.93382,0.038912,0.555008,0.008192,0.0056,0.016256,0.049888,0.054944,7.14576,0.059264
+1413,114.184,8.75781,7.94838,0.0384,0.559712,0.00816,0.006144,0.016384,0.051072,0.053408,7.15568,0.059424
+1414,112.392,8.89746,9.21853,0.038496,0.566144,0.00816,0.004128,0.016384,0.0512,0.053248,8.42317,0.0576
+1415,98.794,10.1221,7.98701,0.038912,0.591488,0.008032,0.004672,0.016352,0.050784,0.053664,7.1639,0.0592
+1416,114.631,8.72363,7.9479,0.038368,0.544672,0.007296,0.0056,0.016384,0.050656,0.05392,7.17232,0.058688
+1417,109.966,9.09375,9.09434,0.038144,0.824128,0.008192,0.005792,0.016736,0.053024,0.05552,8.0343,0.058496
+1418,102.033,9.80078,8.00966,0.038592,0.624384,0.008032,0.004864,0.016096,0.049504,0.053248,7.15571,0.059232
+1419,113.187,8.83496,7.94829,0.038912,0.558304,0.008096,0.004992,0.016384,0.0512,0.054816,7.15728,0.058304
+1420,109.495,9.13281,9.33274,0.0384,0.676352,0.008192,0.004096,0.016384,0.05072,0.053728,8.42752,0.057344
+1421,100.777,9.92285,8.01882,0.037824,0.618432,0.008224,0.006112,0.016384,0.0512,0.05328,7.16931,0.058048
+1422,113.4,8.81836,8.34749,0.038848,0.559008,0.008,0.004448,0.016416,0.051168,0.055072,7.55683,0.057696
+1423,104.426,9.57617,9.1208,0.036864,0.857568,0.008032,0.0048,0.017792,0.051232,0.053856,8.03226,0.0584
+1424,103.917,9.62305,7.96742,0.03904,0.55968,0.008224,0.005216,0.015264,0.051072,0.053344,7.17622,0.05936
+1425,111.51,8.96777,7.97082,0.038912,0.579008,0.008032,0.004864,0.016352,0.0512,0.0544,7.16026,0.057792
+1426,112.987,8.85059,9.05258,0.038656,0.756352,0.008224,0.004096,0.017792,0.051808,0.054944,8.06336,0.057344
+1427,100.215,9.97852,7.96352,0.037792,0.5816,0.008224,0.006048,0.016128,0.050944,0.053632,7.14976,0.059392
+1428,112.862,8.86035,7.99165,0.038464,0.584032,0.008032,0.004704,0.016288,0.050912,0.053632,7.17824,0.057344
+1429,111.644,8.95703,8.95821,0.037088,0.694272,0.008224,0.005952,0.016544,0.0528,0.053696,8.03226,0.057376
+1430,101.056,9.89551,7.99101,0.03728,0.596896,0.007232,0.005664,0.016064,0.049856,0.05504,7.16374,0.059232
+1431,114.286,8.75,7.97491,0.038912,0.58112,0.008032,0.0048,0.016352,0.050848,0.0536,7.16301,0.05824
+1432,110.631,9.03906,9.01878,0.045056,0.720512,0.008096,0.004608,0.016352,0.055296,0.055296,8.05594,0.057632
+1433,102.308,9.77441,8.38042,0.038944,0.611424,0.007264,0.00592,0.016384,0.0512,0.053248,7.53667,0.05936
+1434,107.983,9.26074,8.86784,0.038912,0.587552,0.008416,0.005856,0.01616,0.051008,0.053376,8.04883,0.057728
+1435,102.894,9.71875,8.8521,0.035584,0.597408,0.008288,0.005632,0.01536,0.051232,0.054848,8.02554,0.058208
+1436,105.08,9.5166,7.9752,0.03904,0.567456,0.008032,0.004256,0.016384,0.051136,0.053312,7.17782,0.05776
+1437,113.753,8.79102,7.95885,0.03872,0.568064,0.008032,0.0056,0.016288,0.050176,0.054432,7.15862,0.058912
+1438,111.365,8.97949,9.10838,0.037792,0.83968,0.007744,0.004544,0.016384,0.050688,0.053696,8.04051,0.057344
+1439,103.949,9.62012,7.95238,0.03872,0.561376,0.00816,0.006144,0.016192,0.050496,0.054144,7.15776,0.059392
+1440,114.811,8.70996,7.96819,0.038208,0.572288,0.00816,0.004128,0.016384,0.051328,0.054816,7.16426,0.058624
+1441,112.305,8.9043,8.97603,0.038688,0.698112,0.008032,0.004768,0.017568,0.05408,0.057344,8.03971,0.057728
+1442,101.426,9.85938,7.9872,0.038912,0.580704,0.007296,0.0056,0.016128,0.051328,0.053728,7.17411,0.059392
+1443,111.876,8.93848,7.96262,0.040928,0.577568,0.008192,0.005824,0.016224,0.049664,0.055168,7.15136,0.057696
+1444,112.231,8.91016,9.05619,0.038496,0.768096,0.008032,0.004576,0.01776,0.051872,0.057344,8.05069,0.059328
+1445,102.708,9.73633,8.32973,0.037376,0.567072,0.007776,0.004736,0.016544,0.051008,0.0544,7.53142,0.059392
+1446,108.878,9.18457,8.8208,0.038912,0.5632,0.008192,0.004128,0.016352,0.052224,0.053632,8.02675,0.057408
+1447,102.677,9.73926,8.85555,0.04096,0.601568,0.00832,0.005632,0.015264,0.051232,0.054816,8.0201,0.057664
+1448,104.65,9.55566,7.97056,0.037504,0.562784,0.00656,0.00544,0.016128,0.050112,0.054432,7.17869,0.058912
+1449,111.998,8.92871,8.00173,0.038624,0.600544,0.008192,0.006144,0.016384,0.050848,0.053184,7.16992,0.057888
+1450,108.521,9.21484,9.16003,0.038368,0.883232,0.008192,0.00544,0.01616,0.051104,0.053792,8.04605,0.057696
+1451,98.1972,10.1836,8.02378,0.038752,0.647328,0.007488,0.0048,0.016384,0.0512,0.053312,7.14541,0.059104
+1452,113.917,8.77832,8.01162,0.038912,0.608096,0.008032,0.004416,0.016384,0.05104,0.05344,7.17206,0.059232
+1453,114.413,8.74023,8.81562,0.037856,0.571392,0.008288,0.006048,0.016384,0.050912,0.053536,8.01293,0.058272
+1454,104.002,9.61523,7.95216,0.038176,0.551712,0.008064,0.004384,0.016384,0.050976,0.053472,7.16954,0.059456
+1455,114.605,8.72559,7.96528,0.039072,0.577984,0.008224,0.00608,0.016128,0.050592,0.05376,7.15546,0.057984
+1456,107.495,9.30273,9.11962,0.038464,0.83024,0.008064,0.004352,0.016384,0.0512,0.05328,8.05862,0.059008
+1457,104.811,9.54102,8.33536,0.038912,0.54816,0.008,0.004992,0.016384,0.0512,0.053248,7.55638,0.05808
+1458,108.005,9.25879,8.86989,0.038624,0.622912,0.008032,0.004832,0.016064,0.049568,0.053216,8.01792,0.05872
+1459,103.907,9.62402,8.80208,0.036352,0.571968,0.008192,0.005632,0.016288,0.051296,0.053728,7.99984,0.058784
+1460,104.511,9.56836,7.98074,0.03856,0.56192,0.008192,0.006144,0.01632,0.050912,0.0536,7.1863,0.058784
+1461,112.515,8.8877,7.97286,0.039936,0.584352,0.008128,0.0056,0.015328,0.051168,0.053248,7.15715,0.057952
+1462,111.232,8.99023,8.89114,0.03776,0.620416,0.008192,0.005248,0.015232,0.051232,0.05504,8.04042,0.0576
+1463,103.143,9.69531,8.01533,0.038368,0.620672,0.008032,0.004672,0.016384,0.0512,0.053248,7.16384,0.058912
+1464,106.622,9.37891,8.06419,0.038432,0.659968,0.00816,0.004096,0.016384,0.0512,0.053248,7.17398,0.05872
+1465,117.377,8.51953,9.10432,0.038976,0.854784,0.008032,0.0056,0.015328,0.051072,0.054688,8.01795,0.057888
+1466,103.749,9.63867,7.98451,0.038912,0.572896,0.008,0.004832,0.016384,0.051136,0.053344,7.18026,0.058752
+1467,113.854,8.7832,7.92509,0.038912,0.558592,0.008032,0.0048,0.016352,0.050816,0.053632,7.13523,0.05872
+1468,114.85,8.70703,8.94486,0.038464,0.686528,0.008192,0.00416,0.017856,0.05376,0.054496,8.02282,0.058592
+1469,100.098,9.99023,8.34502,0.038912,0.577536,0.008192,0.005888,0.016192,0.049632,0.055104,7.53475,0.058816
+1470,108.371,9.22754,8.83082,0.0376,0.579616,0.00816,0.005536,0.016832,0.051136,0.053056,8.02038,0.058496
+1471,103.949,9.62012,8.77261,0.036096,0.55168,0.008192,0.005824,0.016192,0.051072,0.05392,7.99114,0.058496
+1472,105.534,9.47559,7.9888,0.038912,0.589472,0.008032,0.004608,0.016384,0.051072,0.053376,7.168,0.058944
+1473,113.012,8.84863,7.95238,0.038624,0.580256,0.00816,0.006144,0.016096,0.049472,0.054976,7.13962,0.05904
+1474,106.889,9.35547,9.12896,0.037856,0.872352,0.008032,0.004352,0.016384,0.0512,0.054976,8.02573,0.05808
+1475,107.858,9.27148,7.95491,0.037888,0.558624,0.008,0.004768,0.016384,0.0512,0.054688,7.16413,0.059232
+1476,114.734,8.71582,7.93894,0.037792,0.54624,0.008032,0.0048,0.016256,0.050752,0.053632,7.16374,0.057696
+1477,112.664,8.87598,8.916,0.038592,0.671648,0.008416,0.0056,0.01696,0.052736,0.05392,8.00973,0.0584
+1478,102.77,9.73047,7.94269,0.037472,0.556768,0.018496,0.00432,0.017568,0.050016,0.054432,7.14429,0.059328
+1479,116.828,8.55957,7.92317,0.038432,0.551264,0.008032,0.004672,0.016416,0.051168,0.054944,7.13763,0.060608
+1480,113.187,8.83496,9.25891,0.037696,0.579072,0.008,0.0048,0.016128,0.050624,0.053408,8.45072,0.058464
+1481,99.5528,10.0449,8.30979,0.038528,0.55744,0.008064,0.005632,0.016192,0.050016,0.0544,7.52112,0.0584
+1482,111.45,8.97266,8.81952,0.037696,0.554016,0.007296,0.0056,0.01616,0.050976,0.053888,8.03654,0.057344
+1483,99.1575,10.085,9.08083,0.038912,0.83968,0.008128,0.005632,0.01616,0.051008,0.054208,8.00976,0.057344
+1484,105.426,9.48535,7.96883,0.038272,0.559968,0.008256,0.005632,0.016192,0.049792,0.054656,7.17683,0.059232
+1485,111.329,8.98242,7.99645,0.038688,0.607904,0.008032,0.004832,0.016416,0.051168,0.053248,7.15776,0.0584
+1486,107.383,9.3125,9.2127,0.039008,0.942784,0.008032,0.004256,0.016384,0.0512,0.0544,8.0393,0.057344
+1487,102.063,9.79785,7.97696,0.038912,0.598016,0.008128,0.0056,0.01632,0.049856,0.055264,7.14531,0.059552
+1488,113.387,8.81934,7.96704,0.038624,0.573792,0.008032,0.004864,0.016128,0.049472,0.054656,7.1625,0.058976
+1489,112.305,8.9043,9.1464,0.038112,0.84048,0.008064,0.0056,0.016096,0.050112,0.055168,8.06035,0.072416
+1490,100.817,9.91895,7.98528,0.038464,0.59696,0.008192,0.00416,0.01632,0.050848,0.0536,7.15744,0.059296
+1491,112.145,8.91699,8.05661,0.038912,0.671744,0.008192,0.016384,0.029728,0.0512,0.053728,7.12755,0.059168
+1492,109.718,9.11426,9.08902,0.03824,0.84224,0.008128,0.00432,0.016384,0.051072,0.053376,8.01757,0.057696
+1493,101.618,9.84082,8.37238,0.03888,0.599296,0.008032,0.005056,0.016384,0.055328,0.061408,7.53018,0.057824
+1494,108.302,9.2334,8.88218,0.049184,0.788,0.035296,0.028672,0.017472,0.05216,0.054784,7.56378,0.292832
+1495,101.266,9.875,8.82899,0.038912,0.567296,0.008192,0.005696,0.016256,0.049728,0.053248,8.03206,0.0576
+1496,101.931,9.81055,7.98106,0.038624,0.573728,0.024576,0.00512,0.016928,0.051136,0.057888,7.15472,0.058336
+1497,114.992,8.69629,7.97286,0.038464,0.611808,0.007328,0.005952,0.016384,0.050688,0.05376,7.13027,0.058208
+1498,114.618,8.72461,8.84349,0.038912,0.58976,0.008064,0.004512,0.016384,0.050784,0.053664,8.02342,0.057984
+1499,103.153,9.69434,7.96634,0.038368,0.57616,0.008192,0.006144,0.016384,0.05104,0.05344,7.15744,0.059168
+1500,108.786,9.19238,8.02032,0.053792,0.595968,0.008192,0.005312,0.01648,0.049888,0.053248,7.17824,0.0592
+1501,115.876,8.62988,8.90643,0.034816,0.586944,0.008032,0.004896,0.016448,0.05952,0.054624,8.08208,0.059072
+1502,102.165,9.78809,8.01587,0.047104,0.600064,0.008192,0.004096,0.016384,0.067584,0.05456,7.16006,0.057824
+1503,113.249,8.83008,7.92835,0.037728,0.562432,0.008032,0.005024,0.016384,0.0512,0.05328,7.1352,0.059072
+1504,114.146,8.76074,8.82896,0.038912,0.567296,0.008288,0.0056,0.016288,0.051296,0.053696,8.02973,0.057856
+1505,101.577,9.84473,8.37222,0.038912,0.619744,0.008032,0.005056,0.016384,0.0512,0.054528,7.51898,0.059392
+1506,113.074,8.84375,8.84691,0.0384,0.57424,0.008224,0.005632,0.0168,0.050752,0.05376,8.04182,0.05728
+1507,103.101,9.69922,8.84544,0.038848,0.592064,0.008288,0.006048,0.016384,0.050592,0.053856,8.02182,0.057536
+1508,104.918,9.53125,7.94214,0.038912,0.557056,0.008192,0.00416,0.01632,0.0512,0.05328,7.15504,0.057984
+1509,113.312,8.8252,7.95238,0.038688,0.5776,0.00832,0.0056,0.01616,0.049952,0.0552,7.14294,0.05792
+1510,113.425,8.81641,8.82048,0.038592,0.571936,0.008192,0.005184,0.015296,0.051232,0.054816,8.01632,0.058912
+1511,104.118,9.60449,7.94346,0.038656,0.56928,0.008032,0.004576,0.016416,0.051168,0.054656,7.14138,0.059296
+1512,111.876,8.93848,8.00602,0.038528,0.629408,0.008064,0.004448,0.016384,0.05056,0.053632,7.14573,0.059264
+1513,115.082,8.68945,8.92029,0.038944,0.665568,0.008192,0.0056,0.016736,0.050912,0.0536,8.02214,0.058592
+1514,102.822,9.72559,7.95693,0.03776,0.576608,0.007296,0.0056,0.01616,0.049696,0.054656,7.15021,0.058944
+1515,115.745,8.63965,7.95853,0.038912,0.552288,0.008032,0.004928,0.016384,0.0512,0.069408,7.15798,0.059392
+1516,113.387,8.81934,9.21398,0.038912,0.555008,0.008192,0.004096,0.016384,0.051136,0.053344,8.42954,0.057376
+1517,94.2042,10.6152,8.39907,0.038336,0.62752,0.00816,0.005824,0.016704,0.050944,0.053536,7.5399,0.058144
+1518,117.122,8.53809,8.82077,0.03888,0.586976,0.006976,0.015808,0.016864,0.050816,0.053728,7.99328,0.05744
+1519,102.298,9.77539,8.79002,0.038912,0.563232,0.00816,0.006144,0.016288,0.050624,0.05392,7.99462,0.058112
+1520,104.907,9.53223,8.01213,0.038528,0.602848,0.008032,0.004256,0.016384,0.051008,0.053472,7.17987,0.057728
+1521,110.381,9.05957,8.14509,0.038272,0.752448,0.008192,0.005952,0.01584,0.049888,0.0544,7.16202,0.05808
+1522,108.177,9.24414,9.13933,0.038592,0.864224,0.008128,0.004512,0.016384,0.0512,0.05504,8.0439,0.057344
+1523,102.236,9.78125,7.9248,0.03888,0.577024,0.008,0.004832,0.016384,0.0512,0.054432,7.1151,0.058944
+1524,113.651,8.79883,8.05069,0.038848,0.662784,0.008064,0.004832,0.01632,0.04944,0.0544,7.15661,0.059392
+1525,109.099,9.16602,9.06381,0.038912,0.849504,0.008064,0.00464,0.016416,0.052256,0.054208,7.98106,0.058752
+1526,103.707,9.64258,8.0039,0.038784,0.59824,0.008032,0.005024,0.016384,0.0512,0.053248,7.17414,0.058848
+1527,115.043,8.69238,7.96262,0.038912,0.560928,0.008064,0.0056,0.016256,0.050208,0.054624,7.17002,0.058016
+1528,113.816,8.78613,8.85302,0.038912,0.667616,0.008256,0.004064,0.01792,0.0536,0.053408,7.95034,0.058912
+1529,97.0432,10.3047,7.93398,0.038784,0.556192,0.007264,0.006016,0.016384,0.051136,0.054496,7.14429,0.059424
+1530,112.701,8.87305,8.35555,0.046464,0.6,0.00816,0.004864,0.01616,0.05088,0.053632,7.51763,0.05776
+1531,104.49,9.57031,8.81648,0.040928,0.578784,0.008512,0.004608,0.016384,0.0512,0.055136,8.00301,0.05792
+1532,104.213,9.5957,7.93414,0.03872,0.558432,0.007296,0.0056,0.016096,0.05104,0.053792,7.14541,0.05776
+1533,109.554,9.12793,8.02406,0.038912,0.632832,0.008224,0.006112,0.016384,0.051168,0.0544,7.15846,0.057568
+1534,113.715,8.79395,8.82733,0.038688,0.602656,0.008192,0.005152,0.015328,0.051264,0.054848,7.99373,0.057472
+1535,105.047,9.51953,7.91824,0.037536,0.55296,0.008192,0.005888,0.016224,0.050912,0.053952,7.13318,0.059392
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..be44b31
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,64.4773,15.555,14.6243,0.0388573,0.610785,0.00866616,0.00570697,0.0168465,13.8829,0.0605067
+max_1024,74.6138,20.7197,17.8565,0.067584,1.584,0.051328,0.024576,0.04096,17.1463,0.354304
+min_1024,48.2632,13.4023,13.7117,0.035552,0.51904,0.006144,0.004096,0.014784,13.0369,0.057344
+512,57.3605,17.4336,15.2994,0.037696,0.692224,0.008192,0.006144,0.01616,14.4796,0.059392
+513,57.0156,17.5391,15.2599,0.038272,0.698592,0.007968,0.004992,0.016384,14.4335,0.060192
+514,65.1731,15.3438,16.4966,0.038752,0.610464,0.008192,0.005664,0.016384,15.7589,0.058272
+515,60.7607,16.458,15.151,0.038912,0.54272,0.008256,0.00608,0.016384,14.4788,0.059872
+516,62.4657,16.0088,16.3877,0.038752,0.53808,0.007008,0.005536,0.016256,15.7233,0.058848
+517,57.3573,17.4346,15.2093,0.037728,0.57344,0.008192,0.005952,0.016352,14.5062,0.06144
+518,60.3987,16.5566,16.4412,0.038944,0.5816,0.007744,0.004544,0.016384,15.7321,0.05984
+519,59.2113,16.8887,15.1976,0.037184,0.542208,0.008224,0.004576,0.016384,14.5297,0.059296
+520,62.0493,16.1162,16.3934,0.038944,0.564896,0.008192,0.005536,0.015264,15.7017,0.058848
+521,57.9776,17.248,15.233,0.038912,0.56528,0.00816,0.006016,0.01616,14.5391,0.059392
+522,60.1433,16.627,16.5164,0.038912,0.533824,0.008224,0.004768,0.016384,15.8556,0.05872
+523,57.2067,17.4805,15.2534,0.03856,0.594816,0.008192,0.005536,0.016192,14.5293,0.060832
+524,63.0038,15.8721,16.468,0.038912,0.552064,0.008224,0.00496,0.016384,15.788,0.059392
+525,57.1429,17.5,15.2867,0.03872,0.622304,0.01936,0.00608,0.016224,14.5244,0.059648
+526,61.5718,16.2412,16.4635,0.038688,0.540896,0.008192,0.00544,0.029376,15.7819,0.058976
+527,58.6887,17.0391,15.565,0.037856,0.546784,0.008192,0.006144,0.016384,14.8908,0.058816
+528,55.9257,17.8809,15.8953,0.05312,1.21741,0.008192,0.006112,0.016416,14.5347,0.059392
+529,61.138,16.3564,16.5989,0.038944,0.624608,0.016384,0.006144,0.026624,15.8269,0.059328
+530,60.3027,16.583,15.2416,0.03728,0.554592,0.00656,0.006048,0.01616,14.5555,0.065536
+531,58.7156,17.0312,16.6418,0.037536,0.630464,0.024512,0.005536,0.015328,15.8679,0.06048
+532,58.8134,17.0029,15.2628,0.038912,0.544544,0.008192,0.005536,0.015328,14.5909,0.059328
+533,62.3516,16.0381,16.4797,0.038784,0.534688,0.00816,0.006144,0.016352,15.8159,0.059648
+534,58.0861,17.2158,15.714,0.038624,0.549184,0.008192,0.0056,0.016192,15.0372,0.059008
+535,57.9382,17.2598,16.9814,0.038912,0.997344,0.008224,0.0056,0.016928,15.8511,0.06336
+536,56.747,17.6221,15.4522,0.038944,0.70624,0.008224,0.005536,0.016224,14.6176,0.059392
+537,61.0942,16.3682,15.3825,0.038592,0.641472,0.008224,0.005536,0.01536,14.6138,0.059552
+538,60.7067,16.4727,16.6587,0.038528,0.63552,0.008192,0.005888,0.016096,15.8951,0.059392
+539,56.2854,17.7666,15.3812,0.037728,0.636192,0.00816,0.004864,0.016384,14.6176,0.060224
+540,58.311,17.1494,16.6504,0.038624,0.610752,0.008192,0.005824,0.016032,15.9116,0.059392
+541,57.9579,17.2539,16.5089,0.038912,0.56048,0.008192,0.004768,0.016384,15.8219,0.058304
+542,53.4503,18.709,17.5355,0.038496,1.584,0.008192,0.006144,0.016384,15.8244,0.057792
+543,59.4243,16.8281,15.3134,0.0384,0.570048,0.008096,0.005536,0.015328,14.6166,0.059424
+544,63.2411,15.8125,16.5474,0.038944,0.552224,0.008224,0.004768,0.016384,15.8679,0.059008
+545,57.3798,17.4277,15.3542,0.03856,0.58,0.008384,0.005536,0.016224,14.6456,0.059936
+546,62.1095,16.1006,15.3709,0.037536,0.58368,0.008192,0.005664,0.016096,14.6617,0.058048
+547,60.9306,16.4121,16.5417,0.040992,0.58496,0.008128,0.004896,0.016384,15.8269,0.059392
+548,57.2707,17.4609,16.6381,0.038688,0.639584,0.008224,0.00576,0.016032,15.8701,0.059712
+549,55.9808,17.8633,15.391,0.03888,0.644064,0.008192,0.006016,0.016224,14.6182,0.059456
+550,61.1635,16.3496,16.6485,0.03856,0.653184,0.008192,0.004928,0.016384,15.8679,0.059392
+551,56.5465,17.6846,15.4012,0.038528,0.64768,0.008224,0.005536,0.015392,14.6265,0.059328
+552,60.5237,16.5225,15.4153,0.038912,0.662752,0.008192,0.004896,0.016384,14.6245,0.05968
+553,58.598,17.0654,16.6908,0.038304,0.673472,0.008224,0.004992,0.028416,15.8702,0.067136
+554,58.598,17.0654,15.3006,0.038912,0.537984,0.008192,0.004736,0.016416,14.6344,0.060032
+555,56.0911,17.8281,17.8565,0.038368,0.582176,0.008192,0.00592,0.016192,17.1463,0.059392
+556,56.2298,17.7842,15.2863,0.038944,0.548,0.008224,0.004896,0.016416,14.6104,0.059424
+557,63.8882,15.6523,16.5374,0.038912,0.525344,0.008224,0.005056,0.016384,15.8823,0.061216
+558,56.165,17.8047,15.3076,0.037888,0.55088,0.008192,0.006112,0.016416,14.6281,0.06
+559,62.401,16.0254,16.4905,0.038944,0.542048,0.008192,0.004768,0.016352,15.8205,0.059648
+560,59.1292,16.9121,15.317,0.040992,0.529536,0.008192,0.00496,0.016384,14.6575,0.059392
+561,60.388,16.5596,16.5532,0.038912,0.571488,0.009184,0.005056,0.016384,15.8535,0.05872
+562,57.9448,17.2578,15.3286,0.037216,0.569152,0.008192,0.005536,0.015168,14.6344,0.058944
+563,61.9405,16.1445,16.4987,0.038944,0.565248,0.008288,0.006016,0.016384,15.8044,0.059392
+564,55.4263,18.042,15.3141,0.038592,0.60448,0.008192,0.006144,0.016256,14.5815,0.058944
+565,58.9183,16.9727,16.7178,0.04096,0.690176,0.014336,0.005984,0.028672,15.8783,0.059392
+566,61.2257,16.333,15.2944,0.038368,0.541248,0.008192,0.005792,0.016192,14.6253,0.059296
+567,56.5433,17.6855,16.5294,0.038912,0.597856,0.006304,0.006144,0.01632,15.8045,0.059424
+568,57.8695,17.2803,15.4563,0.052416,0.701248,0.008192,0.01392,0.026208,14.5949,0.059424
+569,63.4685,15.7559,16.4949,0.038368,0.53552,0.008192,0.006016,0.016064,15.8315,0.059264
+570,58.1785,17.1885,15.2433,0.03744,0.538624,0.008224,0.005472,0.01616,14.5777,0.059616
+571,63.2645,15.8066,16.4577,0.037664,0.538624,0.008192,0.006048,0.01616,15.7919,0.059104
+572,57.1652,17.4932,15.253,0.038528,0.53264,0.008224,0.004736,0.016384,14.592,0.06048
+573,63.2606,15.8076,16.5642,0.03776,0.550688,0.008288,0.005536,0.01616,15.8852,0.060544
+574,56.8573,17.5879,16.5272,0.038912,0.536544,0.008256,0.005536,0.016416,15.8623,0.059264
+575,57.2355,17.4717,16.4086,0.038496,0.542304,0.00816,0.00496,0.016384,15.7402,0.058112
+576,59.521,16.8008,15.1593,0.038912,0.52624,0.008192,0.005568,0.016224,14.5048,0.059392
+577,62.5,16,16.5356,0.038912,0.550912,0.008224,0.005696,0.016352,15.8561,0.059392
+578,56.0175,17.8516,15.4419,0.038912,0.679936,0.008192,0.014336,0.016384,14.6248,0.059392
+579,58.7425,17.0234,16.5187,0.039072,0.620416,0.008192,0.005536,0.016288,15.77,0.059168
+580,58.5745,17.0723,15.1979,0.038688,0.532704,0.008192,0.00576,0.016064,14.5365,0.06
+581,62.2341,16.0684,17.3489,0.03744,0.534208,0.006464,0.006112,0.016224,16.6889,0.05952
+582,54.2402,18.4365,15.1836,0.037568,0.530432,0.008192,0.005792,0.016512,14.5258,0.059328
+583,62.5458,15.9883,16.4854,0.037888,0.569344,0.008192,0.005696,0.016064,15.7888,0.059424
+584,58.4675,17.1035,15.2307,0.038912,0.557056,0.023744,0.004928,0.016384,14.5285,0.06112
+585,63.027,15.8662,15.1542,0.037888,0.528384,0.008192,0.00592,0.016576,14.4991,0.058144
+586,61.9068,16.1533,16.5456,0.038944,0.677888,0.00816,0.006144,0.016352,15.7388,0.059328
+587,55.1457,18.1338,16.5006,0.038912,0.618048,0.008192,0.004544,0.016416,15.7552,0.059232
+588,57.5184,17.3857,16.3747,0.037856,0.536256,0.008224,0.005568,0.015168,15.7123,0.059392
+589,57.827,17.293,15.2781,0.0384,0.641536,0.024384,0.005536,0.015232,14.4935,0.059456
+590,63.1787,15.8281,16.5523,0.049888,0.695776,0.008256,0.004576,0.0176,15.7168,0.059424
+591,59.0985,16.9209,15.1729,0.038912,0.53376,0.008192,0.004864,0.016416,14.5112,0.059552
+592,59.0032,16.9482,15.283,0.037696,0.707552,0.008192,0.00512,0.016384,14.4497,0.058368
+593,61.9517,16.1416,16.5523,0.038368,0.613216,0.008192,0.005632,0.01632,15.8111,0.059424
+594,56.4592,17.7119,15.2146,0.038464,0.608704,0.008192,0.005984,0.016096,14.4778,0.059392
+595,62.3896,16.0283,16.4245,0.038912,0.565248,0.008192,0.00608,0.01648,15.7225,0.067104
+596,56.6968,17.6377,15.1746,0.037856,0.60992,0.008192,0.005536,0.01536,14.4381,0.059648
+597,62.5802,15.9795,16.4002,0.038912,0.577536,0.008192,0.006048,0.01648,15.6918,0.061216
+598,57.6285,17.3525,15.1557,0.03888,0.598272,0.008224,0.005568,0.016288,14.4291,0.059392
+599,61.8806,16.1602,16.3739,0.038496,0.635296,0.008192,0.00608,0.016224,15.6118,0.057856
+600,56.4001,17.7305,16.3928,0.038816,0.610464,0.008096,0.004864,0.016384,15.6548,0.059296
+601,59.5037,16.8057,16.3135,0.038912,0.6016,0.008192,0.004608,0.016384,15.5852,0.058592
+602,57.6058,17.3594,15.0782,0.037824,0.58368,0.008192,0.005792,0.016192,14.3666,0.059968
+603,62.5267,15.9932,15.4809,0.038688,0.596032,0.008256,0.005536,0.016256,14.7567,0.059424
+604,58.4942,17.0957,15.7631,0.037632,1.23226,0.008192,0.004544,0.01792,14.402,0.060512
+605,59.4588,16.8184,15.4523,0.03872,0.577056,0.008224,0.0048,0.016384,14.7476,0.059424
+606,55.2796,18.0898,15.9459,0.038624,0.608704,0.008192,0.006144,0.016064,15.2088,0.059392
+607,72.5778,13.7783,16.0775,0.037568,0.679136,0.008288,0.0048,0.017728,15.2703,0.059648
+608,54.6279,18.3057,16.2137,0.038656,0.540928,0.008192,0.006144,0.016256,15.5444,0.059072
+609,64.1524,15.5879,14.9695,0.038752,0.551072,0.008192,0.004896,0.016384,14.2907,0.059552
+610,63.6143,15.7197,14.9831,0.038944,0.544736,0.008192,0.005824,0.01616,14.3094,0.05984
+611,63.2177,15.8184,16.2775,0.038944,0.558176,0.008256,0.004928,0.017472,15.5895,0.060192
+612,56.769,17.6152,14.98,0.03776,0.538624,0.007808,0.005536,0.015328,14.3166,0.058272
+613,64.8265,15.4258,16.1997,0.038912,0.54,0.008224,0.004736,0.016384,15.532,0.059392
+614,58.4542,17.1074,14.9982,0.0376,0.57952,0.008256,0.005536,0.016192,14.2917,0.059392
+615,63.3703,15.7803,14.9745,0.038912,0.540352,0.008224,0.005536,0.015232,14.307,0.059232
+616,63.1904,15.8252,16.238,0.038912,0.552448,0.008224,0.004576,0.022528,15.5525,0.058848
+617,58.0993,17.2119,15.0327,0.03744,0.6144,0.024576,0.006144,0.016416,14.2743,0.059424
+618,64.1644,15.585,14.9344,0.038432,0.528416,0.008192,0.004928,0.016384,14.2787,0.059392
+619,63.5512,15.7354,16.1775,0.038656,0.53296,0.00768,0.004896,0.016384,15.517,0.059936
+620,58.7695,17.0156,16.2427,0.038688,0.568224,0.008224,0.005632,0.016416,15.5468,0.058656
+621,57.7292,17.3223,14.9279,0.040864,0.582496,0.008192,0.006144,0.016352,14.2132,0.060704
+622,63.8165,15.6699,15.2958,0.038528,0.55744,0.008224,0.006112,0.01632,14.6101,0.059072
+623,59.3623,16.8457,15.3847,0.03872,1.05107,0.00832,0.006016,0.016384,14.2045,0.059712
+624,61.9592,16.1396,14.9771,0.038208,0.58384,0.008224,0.004672,0.016384,14.2664,0.059392
+625,63.6658,15.707,15.2453,0.038848,0.5592,0.00816,0.006144,0.016288,14.5573,0.059392
+626,58.7931,17.0088,15.4523,0.038624,1.08083,0.009088,0.005536,0.039552,14.2191,0.059552
+627,58.9183,16.9727,16.1383,0.038944,0.582656,0.008224,0.005056,0.016384,15.4286,0.0584
+628,62.3478,16.0391,16.0979,0.037792,0.590848,0.008256,0.005056,0.023776,15.3731,0.05904
+629,59.8306,16.7139,14.8783,0.038912,0.548864,0.008192,0.00592,0.016192,14.2011,0.059072
+630,61.7761,16.1875,14.8621,0.0384,0.57008,0.008288,0.006048,0.016384,14.1634,0.059488
+631,62.6913,15.9512,16.1587,0.038752,0.680096,0.008288,0.006048,0.016384,15.3498,0.05936
+632,59.5834,16.7832,14.8507,0.037568,0.5992,0.008224,0.004928,0.016384,14.1245,0.05984
+633,63.948,15.6377,14.8563,0.038496,0.539232,0.008192,0.005824,0.026944,14.1781,0.059488
+634,63.7411,15.6885,16.1188,0.038944,0.620512,0.008384,0.005952,0.016384,15.3702,0.058464
+635,59.4243,16.8281,14.8311,0.038336,0.574176,0.008192,0.005888,0.016224,14.1276,0.060736
+636,63.6143,15.7197,14.78,0.038944,0.544096,0.008256,0.004672,0.016384,14.1086,0.05904
+637,63.2099,15.8203,16.0481,0.038912,0.587072,0.008672,0.005536,0.015168,15.3347,0.05808
+638,58.4742,17.1016,14.7891,0.037568,0.609696,0.008192,0.005536,0.01536,14.0534,0.059392
+639,64.3782,15.5332,14.7975,0.038784,0.587808,0.008224,0.004768,0.016384,14.082,0.059488
+640,62.4276,16.0186,15.4756,0.037824,0.615488,0.008192,0.005056,0.016384,14.4384,0.354304
+641,61.8731,16.1621,16.0069,0.040608,0.549088,0.008224,0.005536,0.016128,15.3276,0.059648
+642,59.4381,16.8242,14.7436,0.038912,0.546784,0.00816,0.005568,0.01632,14.0682,0.059616
+643,63.9121,15.6465,15.1491,0.038912,0.577536,0.008192,0.005728,0.016224,14.4431,0.059424
+644,61.7723,16.1885,14.7907,0.040992,0.560352,0.008192,0.004864,0.016384,14.1015,0.058336
+645,62.8259,15.917,14.7335,0.038816,0.559072,0.008224,0.005536,0.01536,14.0467,0.059808
+646,64.4187,15.5234,15.9662,0.038784,0.544672,0.008416,0.005728,0.016096,15.2931,0.059392
+647,48.2632,20.7197,16.0032,0.037792,0.555008,0.008192,0.005568,0.016128,15.3215,0.059008
+648,72.0113,13.8867,15.9728,0.03872,0.565792,0.008224,0.005536,0.016256,15.2791,0.059136
+649,61.4941,16.2617,15.9599,0.037568,0.57328,0.008224,0.005568,0.016192,15.2605,0.05856
+650,59.4899,16.8096,15.9068,0.038912,0.548672,0.008192,0.005536,0.016192,15.2309,0.058368
+651,58.0137,17.2373,15.6326,0.039488,0.632896,0.008192,0.005856,0.016224,14.871,0.059008
+652,61.3321,16.3047,16.2898,0.038464,0.546784,0.008192,0.004576,0.016384,15.616,0.059392
+653,59.0849,16.9248,16.1738,0.0376,0.53968,0.008384,0.004864,0.016384,15.5074,0.059456
+654,58.0203,17.2354,14.6257,0.037888,0.548864,0.008192,0.0056,0.016224,13.9496,0.059296
+655,65.2562,15.3242,15.0604,0.039008,0.550176,0.006784,0.005792,0.016288,14.3833,0.059136
+656,61.7202,16.2021,15.4983,0.038656,0.571008,0.008192,0.004736,0.016384,14.8009,0.058368
+657,61.0105,16.3906,14.6596,0.038912,0.595616,0.008192,0.005536,0.015296,13.9366,0.059392
+658,64.2047,15.5752,15.9378,0.038688,0.5696,0.008192,0.004832,0.016384,15.2412,0.058912
+659,59.225,16.8848,14.5802,0.03856,0.540544,0.008224,0.005056,0.016384,13.9121,0.059392
+660,63.7093,15.6963,14.5789,0.038912,0.57456,0.008192,0.005024,0.016384,13.8766,0.059264
+661,64.7159,15.4521,15.8315,0.037568,0.542176,0.00816,0.004672,0.016384,15.1633,0.0592
+662,58.5009,17.0938,14.6752,0.0384,0.641312,0.008256,0.005536,0.0152,13.9074,0.059104
+663,60.8293,16.4395,14.7067,0.038912,0.681984,0.008288,0.006048,0.016384,13.8954,0.059648
+664,63.8125,15.6709,16.8923,0.037376,0.824512,0.008224,0.004768,0.020128,15.9393,0.057984
+665,56.239,17.7812,14.678,0.03824,0.624832,0.01696,0.00608,0.02256,13.91,0.059392
+666,64.7405,15.4463,14.6189,0.038304,0.650144,0.008192,0.006144,0.015968,13.8421,0.058112
+667,65.0448,15.374,15.7704,0.037664,0.55296,0.008192,0.005792,0.016192,15.0902,0.059392
+668,59.7921,16.7246,14.5627,0.038848,0.55888,0.008192,0.005536,0.015264,13.8768,0.059136
+669,63.7014,15.6982,14.5956,0.047104,0.587776,0.007296,0.004992,0.016384,13.8727,0.059392
+670,63.062,15.8574,15.9297,0.055424,0.655584,0.016384,0.006144,0.016352,15.1199,0.059936
+671,59.3795,16.8408,14.4937,0.038816,0.536672,0.008192,0.005888,0.016096,13.8286,0.059392
+672,64.6505,15.4678,14.4772,0.038944,0.56112,0.008224,0.006112,0.016288,13.7869,0.059648
+673,65.0365,15.376,15.6672,0.038848,0.546112,0.008256,0.004832,0.016352,14.989,0.06384
+674,60.1999,16.6113,14.5475,0.038432,0.63984,0.008288,0.005536,0.016128,13.7796,0.059648
+675,65.3311,15.3066,14.5469,0.038784,0.6104,0.008192,0.005536,0.016352,13.8083,0.059392
+676,63.8364,15.665,15.774,0.03856,0.605184,0.008192,0.00608,0.016192,15.0408,0.059072
+677,58.3409,17.1406,15.7161,0.039232,0.58384,0.008192,0.00576,0.016256,15.0042,0.058656
+678,62.7259,15.9424,14.4343,0.038912,0.550944,0.008192,0.005888,0.016128,13.7548,0.059392
+679,65.4648,15.2754,15.6599,0.03776,0.557088,0.00816,0.005984,0.016224,14.9767,0.057984
+680,60.4629,16.5391,14.4665,0.038784,0.610432,0.008192,0.005664,0.016256,13.7279,0.0592
+681,65.2437,15.3271,14.4259,0.038656,0.544064,0.008384,0.004864,0.016384,13.754,0.05952
+682,65.3728,15.2969,15.7011,0.038912,0.59392,0.008448,0.005888,0.016384,14.9789,0.058592
+683,59.4278,16.8271,14.4941,0.038368,0.598752,0.00832,0.005568,0.016096,13.7676,0.059456
+684,65.2936,15.3154,15.6956,0.03728,0.597952,0.008224,0.005536,0.016192,14.9716,0.058848
+685,59.352,16.8486,14.8975,0.038624,0.678752,0.008192,0.006016,0.016096,14.0907,0.059136
+686,62.7489,15.9365,14.4567,0.04096,0.59392,0.008192,0.005824,0.016192,13.7323,0.059296
+687,64.9911,15.3867,14.4721,0.037792,0.655392,0.008384,0.00592,0.016384,13.6837,0.064512
+688,64.8594,15.418,15.7585,0.037888,0.665184,0.007712,0.004992,0.016384,14.9685,0.057856
+689,59.8376,16.7119,14.485,0.038496,0.661952,0.008224,0.005536,0.016224,13.6951,0.059392
+690,62.9534,15.8848,14.5511,0.037856,0.732448,0.008256,0.004736,0.016384,13.692,0.059456
+691,64.0921,15.6025,15.79,0.03856,0.69904,0.008256,0.005536,0.016192,14.9631,0.059296
+692,62.9883,15.876,14.3954,0.038336,0.564928,0.008224,0.00496,0.016384,13.7032,0.05936
+693,63.335,15.7891,14.4277,0.038656,0.673696,0.008224,0.005568,0.015328,13.6265,0.059808
+694,66.1456,15.1182,15.7588,0.038752,0.676,0.009216,0.00512,0.016384,14.9536,0.059712
+695,60.6887,16.4775,14.3878,0.037824,0.601632,0.008224,0.004544,0.016416,13.6594,0.059776
+696,64.9581,15.3945,14.3362,0.039104,0.57744,0.008256,0.005536,0.016256,13.6302,0.059392
+697,65.5822,15.248,15.5403,0.037792,0.561152,0.008192,0.005792,0.016256,14.8522,0.058976
+698,61.1599,16.3506,14.3538,0.038944,0.558176,0.008192,0.004992,0.016384,13.6602,0.066944
+699,63.3585,15.7832,14.5536,0.037824,0.751136,0.008448,0.013984,0.02688,13.6554,0.059904
+700,64.7118,15.4531,15.6324,0.038912,0.610304,0.016384,0.006144,0.016384,14.8849,0.059392
+701,59.8971,16.6953,14.391,0.038816,0.665696,0.008192,0.006048,0.016128,13.5844,0.071648
+702,65.2188,15.333,14.2807,0.038912,0.5632,0.008224,0.006112,0.016384,13.5823,0.065536
+703,65.3395,15.3047,15.6091,0.038432,0.60416,0.008224,0.004544,0.016384,14.8784,0.058944
+704,61.0979,16.3672,14.2727,0.038368,0.559392,0.008192,0.004576,0.016384,13.5864,0.059392
+705,65.2437,15.3271,15.6591,0.0472,0.638976,0.008384,0.005952,0.016384,14.8828,0.059392
+706,61.3798,16.292,15.4925,0.038496,0.552896,0.008096,0.004864,0.016384,14.813,0.05872
+707,61.0906,16.3691,14.3114,0.038912,0.600064,0.008224,0.006112,0.016384,13.5823,0.059392
+708,66.1328,15.1211,14.2325,0.037824,0.561152,0.00768,0.004608,0.016384,13.5455,0.059392
+709,66.1841,15.1094,15.5238,0.038912,0.56016,0.008224,0.005056,0.016384,14.8357,0.059392
+710,61.2733,16.3203,14.2243,0.037824,0.552032,0.008224,0.004992,0.016384,13.5455,0.059392
+711,65.6242,15.2383,14.2516,0.038912,0.557056,0.008192,0.00608,0.016064,13.566,0.059264
+712,65.053,15.3721,16.7984,0.03856,0.603104,0.008192,0.006144,0.016128,16.0668,0.059424
+713,56.6905,17.6396,14.3132,0.03856,0.65792,0.008192,0.006144,0.016256,13.5251,0.060992
+714,66.3084,15.0811,14.2526,0.037536,0.55904,0.008192,0.006144,0.01632,13.5656,0.05984
+715,65.6284,15.2373,15.3129,0.038528,0.588192,0.00816,0.005984,0.016224,14.5964,0.059456
+716,62.5344,15.9912,14.1499,0.03712,0.536608,0.00816,0.006144,0.01632,13.4861,0.059392
+717,66.1627,15.1143,14.2358,0.039104,0.58368,0.008224,0.005824,0.016096,13.5215,0.06144
+718,66.1926,15.1074,15.4808,0.038464,0.583584,0.008192,0.00464,0.016416,14.7718,0.057728
+719,61.3909,16.2891,14.1956,0.037728,0.540672,0.008192,0.006144,0.016192,13.5272,0.059392
+720,66.4547,15.0479,14.2418,0.038912,0.542688,0.008192,0.005536,0.016064,13.571,0.059392
+721,65.9454,15.1641,15.3909,0.03776,0.538432,0.008224,0.005536,0.015072,14.7263,0.059584
+722,61.8881,16.1582,14.159,0.039008,0.550816,0.008192,0.005984,0.016,13.4801,0.058976
+723,66.6233,15.0098,14.2211,0.038912,0.558592,0.008224,0.004576,0.016384,13.5344,0.06
+724,66.9587,14.9346,15.2381,0.038912,0.560512,0.008192,0.004736,0.016384,14.549,0.060416
+725,62.4695,16.0078,15.4246,0.038784,0.548992,0.008192,0.005984,0.016544,14.7456,0.060512
+726,59.2044,16.8906,14.1701,0.038944,0.542272,0.008224,0.005536,0.016416,13.4993,0.059456
+727,69.7595,14.335,14.6796,0.038432,0.628544,0.008224,0.005024,0.016384,13.9242,0.05888
+728,62.4962,16.001,14.6354,0.038656,1.01245,0.008192,0.006144,0.016384,13.4943,0.059296
+729,65.7,15.2207,14.1827,0.038336,0.578016,0.006816,0.005472,0.016064,13.4785,0.059488
+730,66.3771,15.0654,15.436,0.038976,0.581088,0.008192,0.004768,0.016384,14.7282,0.0584
+731,61.2404,16.3291,14.1352,0.038752,0.538816,0.00816,0.006144,0.01616,13.4679,0.059328
+732,66.6146,15.0117,14.2184,0.038144,0.60288,0.008192,0.005664,0.01632,13.4879,0.059328
+733,66.5756,15.0205,15.4429,0.03792,0.591104,0.008224,0.0048,0.016384,14.7262,0.058272
+734,61.1343,16.3574,14.198,0.038912,0.577472,0.008192,0.005376,0.017216,13.4902,0.060704
+735,65.8648,15.1826,14.1455,0.038912,0.546816,0.008256,0.00608,0.016352,13.4697,0.059392
+736,66.554,15.0254,14.5507,0.038944,0.577504,0.008192,0.006112,0.016096,13.8446,0.059296
+737,62.5764,15.9805,14.5762,0.04352,0.976096,0.008224,0.004864,0.016384,13.4689,0.058176
+738,66.0432,15.1416,14.2866,0.03712,0.668704,0.008256,0.005024,0.016384,13.4936,0.057536
+739,66.1157,15.125,15.4561,0.038592,0.6552,0.008288,0.005536,0.017408,14.6719,0.059168
+740,60.6923,16.4766,14.5838,0.038944,0.655328,0.008192,0.00608,0.016224,13.7991,0.06
+741,64.8389,15.4229,14.1006,0.037568,0.536576,0.008192,0.0056,0.01488,13.4381,0.059712
+742,66.6016,15.0146,15.3921,0.038688,0.52656,0.008192,0.00592,0.016288,14.7377,0.058752
+743,61.0396,16.3828,14.1828,0.038784,0.567744,0.008192,0.005536,0.016064,13.487,0.059424
+744,65.4104,15.2881,14.1887,0.03856,0.58624,0.008192,0.006016,0.024704,13.4666,0.058368
+745,67.5106,14.8125,14.5433,0.03856,0.559904,0.008192,0.006048,0.01648,13.8565,0.0576
+746,62.9921,15.875,14.3094,0.04048,0.725472,0.008192,0.005792,0.01584,13.4555,0.058176
+747,66.0773,15.1338,15.4266,0.037856,0.538656,0.00816,0.006144,0.016224,14.762,0.057536
+748,60.4665,16.5381,14.5284,0.038912,0.540224,0.008224,0.004512,0.03248,13.8459,0.05824
+749,64.3904,15.5303,14.4068,0.03888,0.816576,0.010272,0.004672,0.01792,13.459,0.05952
+750,64.0921,15.6025,14.261,0.0376,0.658784,0.008256,0.014944,0.025888,13.4575,0.057984
+751,66.3427,15.0732,15.4686,0.038368,0.602208,0.00832,0.005536,0.015328,14.7395,0.059424
+752,61.0214,16.3877,14.2153,0.043168,0.607808,0.00816,0.004544,0.016384,13.4756,0.059616
+753,66.347,15.0723,14.0991,0.038912,0.572384,0.008192,0.005696,0.016384,13.3985,0.059104
+754,67.1343,14.8955,15.4074,0.038592,0.56512,0.008256,0.004736,0.016384,14.7149,0.059392
+755,61.5163,16.2559,14.1394,0.038432,0.552992,0.008224,0.004544,0.016416,13.4594,0.05936
+756,66.9719,14.9316,14.2111,0.038784,0.55104,0.009312,0.005024,0.016384,13.5325,0.058048
+757,66.214,15.1025,15.3948,0.038624,0.562496,0.008288,0.0048,0.015584,14.7068,0.05824
+758,62.0493,16.1162,14.1804,0.038336,0.555648,0.008256,0.00608,0.016384,13.4984,0.057376
+759,66.4504,15.0488,14.1664,0.037216,0.556864,0.008384,0.004096,0.01632,13.4854,0.058048
+760,66.274,15.0889,15.3784,0.038944,0.57728,0.008192,0.005536,0.016288,14.6744,0.057824
+761,61.5385,16.25,14.6106,0.038624,0.60272,0.009216,0.00512,0.016384,13.8793,0.059264
+762,62.325,16.0449,14.6304,0.038816,1.06266,0.008192,0.005568,0.016864,13.4394,0.058848
+763,66.1413,15.1191,15.4498,0.037376,0.624672,0.00816,0.005984,0.016128,14.6984,0.059008
+764,60.6491,16.4883,14.2559,0.038272,0.640928,0.008192,0.004928,0.016384,13.4793,0.067968
+765,65.1399,15.3516,14.2414,0.038304,0.643936,0.008224,0.005536,0.016352,13.4703,0.058784
+766,65.4439,15.2803,15.36,0.038816,0.57968,0.008192,0.005632,0.016128,14.6535,0.058016
+767,60.6635,16.4844,14.3565,0.038176,0.731104,0.006912,0.005376,0.01616,13.4987,0.060128
+768,63.3467,15.7861,14.6598,0.038944,1.13392,0.008192,0.004896,0.016384,13.4001,0.057408
+769,64.6342,15.4717,16.6122,0.037728,0.695456,0.007008,0.004096,0.017568,15.793,0.057344
+770,60.2211,16.6055,14.1509,0.03856,0.558944,0.008256,0.004544,0.017824,13.4641,0.058752
+771,65.3228,15.3086,14.1578,0.038816,0.602944,0.008,0.005536,0.016192,13.4257,0.060608
+772,67.333,14.8516,15.5141,0.037408,0.59376,0.008192,0.005568,0.015072,14.7948,0.059392
+773,59.6459,16.7656,14.2603,0.038816,0.659456,0.008256,0.005568,0.01616,13.4726,0.059424
+774,64.7037,15.4551,14.2202,0.037792,0.655328,0.008192,0.005632,0.016128,13.4388,0.058304
+775,65.7169,15.2168,15.4617,0.038912,0.62464,0.008192,0.005728,0.016128,14.7094,0.058656
+776,60.7139,16.4707,14.1615,0.038912,0.608256,0.00832,0.006016,0.016384,13.4246,0.058976
+777,65.1607,15.3467,14.1537,0.038528,0.604192,0.008288,0.004544,0.016416,13.4224,0.05936
+778,65.3979,15.291,15.4558,0.038944,0.636896,0.008224,0.006112,0.016384,14.6896,0.05968
+779,60.6959,16.4756,14.2152,0.038912,0.616064,0.008256,0.005536,0.016352,13.4707,0.059424
+780,65.1068,15.3594,14.2215,0.038496,0.626912,0.008192,0.005568,0.016416,13.4681,0.057824
+781,67.086,14.9062,14.916,0.037504,0.609472,0.008224,0.004896,0.016416,14.1783,0.061184
+782,63.2411,15.8125,14.2438,0.038912,0.602144,0.008192,0.006112,0.016384,13.5127,0.059392
+783,65.2853,15.3174,15.497,0.039264,0.620736,0.008384,0.005952,0.016384,14.7476,0.058592
+784,56.5527,17.6826,14.6802,0.038432,0.680608,0.009216,0.005088,0.016384,13.8711,0.059392
+785,65.5108,15.2646,14.2382,0.037408,0.644576,0.008576,0.005536,0.016896,13.4658,0.059392
+786,68.7756,14.54,14.2364,0.037632,0.673792,0.008224,0.00576,0.016448,13.4372,0.057344
+787,65.5402,15.2578,15.6447,0.038912,0.68528,0.008224,0.004864,0.017472,14.8321,0.057856
+788,55.9655,17.8682,14.2619,0.038784,0.649536,0.008224,0.005568,0.016192,13.4845,0.05904
+789,65.9411,15.165,14.3008,0.038336,0.690752,0.008192,0.005888,0.016128,13.4825,0.058976
+790,69.3344,14.4229,15.5126,0.038752,0.579552,0.008224,0.005536,0.015104,14.807,0.0584
+791,59.5487,16.793,14.2654,0.038912,0.638944,0.008192,0.005568,0.016064,13.4985,0.059232
+792,65.4062,15.2891,14.3092,0.039744,0.761824,0.008192,0.006048,0.020576,13.4143,0.05856
+793,65.2229,15.332,14.204,0.038912,0.640448,0.008288,0.004576,0.016416,13.4363,0.059072
+794,65.3311,15.3066,14.2439,0.037536,0.669664,0.007936,0.014624,0.029888,13.4234,0.060864
+795,66.5237,15.0322,14.1932,0.039296,0.62112,0.008224,0.00608,0.01632,13.4431,0.059072
+796,65.7548,15.208,14.2488,0.037728,0.612352,0.017984,0.005984,0.01616,13.5005,0.058112
+797,66.0816,15.1328,14.1331,0.038496,0.564064,0.008192,0.005952,0.016064,13.4408,0.059488
+798,66.0092,15.1494,15.5157,0.038848,0.697568,0.008256,0.004896,0.016384,14.6917,0.058048
+799,61.2257,16.333,14.2554,0.038624,0.611968,0.008256,0.004928,0.026496,13.5046,0.060512
+800,65.5864,15.2471,14.2906,0.038688,0.65904,0.008224,0.004736,0.026496,13.4943,0.059104
+801,64.3216,15.5469,14.6137,0.038688,0.644384,0.008192,0.021216,0.016224,13.8257,0.059328
+802,63.8006,15.6738,14.5121,0.049184,0.903136,0.008352,0.005984,0.016384,13.4708,0.058336
+803,66.1114,15.126,14.2253,0.038208,0.565344,0.008192,0.0048,0.016384,13.5332,0.059232
+804,66.2697,15.0898,15.4,0.038912,0.546592,0.008064,0.005536,0.015328,14.7267,0.05888
+805,61.2038,16.3389,14.5777,0.038592,0.592224,0.008384,0.00592,0.01744,13.8557,0.059392
+806,63.5788,15.7285,14.2213,0.038464,0.57728,0.008096,0.004896,0.016384,13.518,0.058176
+807,66.8233,14.9648,15.3887,0.038912,0.55056,0.008192,0.004448,0.016384,14.7108,0.059392
+808,61.5311,16.252,14.037,0.038912,0.54272,0.008192,0.006112,0.016064,13.3656,0.059392
+809,66.2183,15.1016,14.1092,0.037472,0.565248,0.008288,0.006048,0.016288,13.4165,0.059328
+810,66.606,15.0137,14.5285,0.038912,0.60416,0.008192,0.006112,0.016448,13.7966,0.058112
+811,64.2087,15.5742,14.2147,0.0408,0.601632,0.008352,0.004576,0.016384,13.484,0.058944
+812,65.5067,15.2656,14.5715,0.038304,0.639808,0.00816,0.006016,0.016192,13.8034,0.05968
+813,65.423,15.2852,16.2804,0.037664,0.565248,0.008224,0.005568,0.016192,15.5881,0.059392
+814,57.994,17.2432,14.1273,0.038656,0.568,0.008192,0.005568,0.016192,13.4312,0.05952
+815,66.5583,15.0244,14.1738,0.038912,0.548032,0.008192,0.004928,0.016384,13.4979,0.059424
+816,66.1584,15.1152,15.3587,0.039712,0.588992,0.008256,0.004832,0.016384,14.6412,0.059392
+817,62.038,16.1191,14.166,0.038944,0.568384,0.008192,0.005024,0.016416,13.4713,0.057792
+818,66.7057,14.9912,14.1529,0.038528,0.592288,0.008224,0.006112,0.016192,13.431,0.060576
+819,66.6753,14.998,15.3622,0.03744,0.566464,0.008224,0.004896,0.016384,14.6697,0.059072
+820,61.2513,16.3262,14.1888,0.041504,0.585856,0.008192,0.006144,0.016384,13.4712,0.05952
+821,67.064,14.9111,14.1107,0.038784,0.538048,0.008192,0.0048,0.016384,13.4451,0.059392
+822,67.1608,14.8896,15.4057,0.037728,0.577344,0.008192,0.006144,0.01632,14.7006,0.059424
+823,60.4023,16.5557,14.24,0.038848,0.669632,0.008192,0.005568,0.015328,13.4429,0.059488
+824,65.9411,15.165,14.1763,0.038944,0.624608,0.00768,0.004608,0.016416,13.4246,0.059392
+825,65.6452,15.2334,15.464,0.038592,0.627008,0.007616,0.004672,0.01616,14.711,0.058944
+826,61.6533,16.2197,14.1803,0.038912,0.618496,0.008224,0.005568,0.01616,13.4335,0.059424
+827,65.3854,15.2939,15.4453,0.038944,0.623872,0.008192,0.004832,0.016384,14.6943,0.058784
+828,61.6348,16.2246,15.3912,0.038528,0.610528,0.008224,0.004736,0.016384,14.6534,0.059392
+829,60.9596,16.4043,14.1672,0.038912,0.589824,0.007712,0.004608,0.016384,13.4492,0.060608
+830,66.915,14.9443,14.1271,0.038912,0.575488,0.006144,0.006144,0.016384,13.4246,0.059392
+831,67.1563,14.8906,15.1347,0.038752,0.573632,0.008384,0.00592,0.016384,14.1836,0.308064
+832,62.0794,16.1084,14.1781,0.038912,0.57344,0.008192,0.005856,0.016448,13.4761,0.059168
+833,66.6667,15,14.6513,0.039008,0.593472,0.008224,0.005024,0.016384,13.9301,0.059072
+834,64.7487,15.4443,16.2691,0.038912,0.557088,0.009216,0.005088,0.016384,15.5832,0.0592
+835,57.622,17.3545,14.2194,0.038048,0.607168,0.008192,0.005824,0.016192,13.4845,0.059424
+836,66.619,15.0107,14.0305,0.037184,0.54464,0.008224,0.005536,0.016096,13.3594,0.059424
+837,65.8606,15.1836,15.4962,0.038048,0.599904,0.00816,0.005888,0.024832,14.7599,0.059424
+838,61.7537,16.1934,14.1203,0.038944,0.562304,0.008192,0.00496,0.016384,13.43,0.059488
+839,65.7379,15.2119,14.1977,0.038848,0.702816,0.008224,0.004704,0.016384,13.3673,0.059392
+840,66.9325,14.9404,15.4509,0.03776,0.650688,0.008224,0.00464,0.016384,14.6739,0.059264
+841,62.102,16.1025,14.0857,0.038912,0.566848,0.008224,0.005536,0.01536,13.3898,0.060992
+842,66.9325,14.9404,14.0857,0.038912,0.56096,0.008224,0.005536,0.015168,13.3978,0.05904
+843,67.2887,14.8613,15.3586,0.037472,0.559104,0.008192,0.006144,0.01616,14.6721,0.059392
+844,61.6014,16.2334,14.0986,0.038656,0.567424,0.008224,0.004544,0.017792,13.4028,0.0592
+845,67.3153,14.8555,14.0294,0.037664,0.552256,0.008288,0.004544,0.01648,13.3508,0.05936
+846,67.4928,14.8164,15.3927,0.03856,0.5656,0.008224,0.006112,0.01616,14.6987,0.059328
+847,59.2696,16.8721,14.4831,0.038912,0.564448,0.008256,0.004832,0.016384,13.7909,0.05936
+848,65.6873,15.2236,14.6021,0.038912,1.0745,0.008224,0.004768,0.01776,13.3987,0.059232
+849,66.8713,14.9541,15.2965,0.038464,0.555328,0.008192,0.005568,0.016096,14.6135,0.059392
+850,61.8582,16.166,14.1488,0.038528,0.603872,0.008192,0.004864,0.016384,13.4001,0.076896
+851,65.4983,15.2676,14.1339,0.038688,0.59648,0.008096,0.004544,0.016416,13.4103,0.059392
+852,67.0157,14.9219,14.4371,0.03872,0.564192,0.008256,0.006048,0.016384,13.7441,0.059392
+853,63.2528,15.8096,14.6022,0.038912,1.12026,0.008192,0.006144,0.016384,13.353,0.059328
+854,66.541,15.0283,14.0718,0.038784,0.566496,0.00832,0.004896,0.016384,13.3789,0.058016
+855,66.8146,14.9668,16.2523,0.038912,0.571392,0.008224,0.006112,0.01632,15.5525,0.058816
+856,58.2149,17.1777,14.0955,0.038912,0.609472,0.008288,0.004832,0.016384,13.3571,0.060544
+857,67.4172,14.833,14.0951,0.037728,0.56928,0.00832,0.006016,0.016288,13.3978,0.05968
+858,66.6884,14.9951,15.3522,0.037248,0.561152,0.008096,0.005536,0.016128,14.6657,0.058368
+859,61.8059,16.1797,14.0131,0.037824,0.554112,0.008224,0.00496,0.016384,13.3318,0.059744
+860,67.2092,14.8789,14.078,0.038336,0.569952,0.008224,0.005888,0.016256,13.3817,0.057632
+861,68.6557,14.5654,14.4681,0.038624,0.579872,0.008288,0.006048,0.016288,13.7586,0.060416
+862,63.6697,15.7061,15.755,0.038944,1.03421,0.008192,0.006144,0.016384,14.592,0.059168
+863,59.3968,16.8359,14.1486,0.037856,0.638112,0.008224,0.004928,0.01632,13.3836,0.05952
+864,63.8165,15.6699,15.3518,0.038912,0.65536,0.007456,0.004832,0.016384,14.5705,0.058368
+865,64.032,15.6172,14.1842,0.0384,0.722784,0.008192,0.01328,0.016384,13.3254,0.059744
+866,64.6791,15.4609,14.0595,0.038912,0.609376,0.008224,0.004992,0.017824,13.3208,0.059392
+867,69.2407,14.4424,15.4035,0.038752,0.670528,0.008192,0.00592,0.016224,14.6044,0.059552
+868,60.6168,16.4971,14.0216,0.037856,0.597632,0.008192,0.005568,0.016896,13.296,0.059456
+869,68.2667,14.6484,14.1619,0.0384,0.633344,0.008192,0.005888,0.016096,13.4006,0.059392
+870,65.0572,15.3711,15.1701,0.038656,0.707392,0.00832,0.006016,0.016384,14.334,0.05936
+871,62.772,15.9307,14.0331,0.037568,0.569344,0.008192,0.005728,0.016448,13.3364,0.059424
+872,67.5061,14.8135,13.9879,0.038944,0.565088,0.008224,0.005568,0.016224,13.2956,0.058208
+873,66.9806,14.9297,15.2945,0.038528,0.636576,0.00688,0.005696,0.016224,14.5312,0.059392
+874,61.4167,16.2822,13.9959,0.038976,0.557056,0.008224,0.005536,0.016096,13.3106,0.059424
+875,67.2401,14.8721,14.0376,0.038784,0.602816,0.008192,0.005856,0.016128,13.3061,0.05968
+876,66.7579,14.9795,15.3588,0.03776,0.659488,0.008384,0.00592,0.016384,14.5715,0.059392
+877,61.6051,16.2324,15.2756,0.038944,0.585056,0.008192,0.004736,0.016384,14.5633,0.058944
+878,61.5348,16.251,13.9859,0.038464,0.598016,0.008224,0.004672,0.016352,13.2601,0.060064
+879,67.3862,14.8398,15.0858,0.038624,0.5944,0.008352,0.005952,0.016256,14.3622,0.059968
+880,63.1904,15.8252,14.0431,0.038336,0.563776,0.008192,0.005952,0.016128,13.3514,0.059392
+881,67.4261,14.8311,14.0592,0.038912,0.555008,0.008192,0.005696,0.016352,13.3739,0.061088
+882,67.1652,14.8887,15.1884,0.038464,0.549728,0.008192,0.005728,0.016224,14.512,0.058048
+883,62.2682,16.0596,14.0143,0.038272,0.566016,0.008224,0.006112,0.016384,13.3196,0.059648
+884,67.4794,14.8193,14.7332,0.038464,0.550912,0.008224,0.004832,0.018432,14.0513,0.061024
+885,63.6064,15.7217,15.4096,0.038816,0.635008,0.008,0.004768,0.016352,14.6473,0.059392
+886,62.1661,16.0859,13.9562,0.038304,0.531072,0.009184,0.00512,0.016416,13.2956,0.06048
+887,67.5774,14.7979,13.9847,0.038688,0.590144,0.008192,0.004768,0.016384,13.2669,0.059584
+888,67.5729,14.7988,14.3469,0.038592,0.561664,0.008224,0.005536,0.015392,13.6578,0.059712
+889,65.2354,15.3291,14.0203,0.037184,0.57136,0.008352,0.005984,0.016384,13.3215,0.059488
+890,67.2578,14.8682,13.9713,0.038912,0.58352,0.008192,0.005536,0.0152,13.2607,0.0592
+891,66.2097,15.1035,15.298,0.0408,0.589984,0.008256,0.005536,0.016256,14.578,0.059168
+892,62.0907,16.1055,13.9715,0.038912,0.5816,0.008192,0.005536,0.016096,13.2617,0.059392
+893,66.9719,14.9316,13.9902,0.038368,0.582496,0.008416,0.00592,0.016384,13.2783,0.060288
+894,67.8101,14.7471,14.7272,0.038944,0.628704,0.008256,0.00608,0.016384,13.953,0.075776
+895,63.4645,15.7568,13.992,0.038432,0.573984,0.008288,0.006048,0.016384,13.2895,0.059392
+896,66.9456,14.9375,13.9199,0.03744,0.587744,0.008224,0.005536,0.016256,13.2055,0.059232
+897,67.855,14.7373,15.2151,0.038496,0.583904,0.008192,0.0048,0.016384,14.5038,0.05952
+898,62.2114,16.0742,13.982,0.038304,0.619072,0.008192,0.005568,0.01536,13.2362,0.059328
+899,67.7338,14.7637,13.9252,0.037632,0.556896,0.008256,0.005568,0.016128,13.2411,0.059584
+900,67.4439,14.8271,16.3652,0.038912,0.57344,0.008192,0.006144,0.016224,15.6626,0.059744
+901,58.1587,17.1943,13.9674,0.038944,0.569312,0.008192,0.005664,0.016192,13.2697,0.059392
+902,67.2225,14.876,13.9634,0.038336,0.568032,0.008224,0.006048,0.016224,13.2672,0.059392
+903,67.1563,14.8906,14.3278,0.038944,0.575456,0.008192,0.00608,0.016448,13.6244,0.058272
+904,64.3904,15.5303,14.0003,0.037248,0.591872,0.008352,0.005984,0.016384,13.2813,0.059168
+905,67.6399,14.7842,13.9709,0.038912,0.558272,0.008256,0.004864,0.0176,13.2834,0.059584
+906,66.0986,15.1289,15.2413,0.038688,0.61056,0.008224,0.00544,0.016128,14.5043,0.058016
+907,61.5533,16.2461,14.087,0.037888,0.679488,0.00832,0.005536,0.015296,13.2804,0.060064
+908,68.5959,14.5781,13.9333,0.037632,0.601792,0.008224,0.005568,0.015232,13.2052,0.05968
+909,67.2004,14.8809,14.9607,0.038752,0.601888,0.008224,0.004544,0.016384,13.9725,0.318432
+910,63.5275,15.7412,13.8879,0.03744,0.554912,0.00816,0.005888,0.016576,13.2067,0.058272
+911,67.0245,14.9199,14.0124,0.038912,0.626176,0.008192,0.004608,0.016384,13.2601,0.05808
+912,67.8505,14.7383,15.1851,0.038208,0.594624,0.008192,0.006144,0.01616,14.4622,0.059552
+913,61.3798,16.292,13.9394,0.037792,0.595968,0.008192,0.005856,0.016128,13.206,0.069408
+914,66.9325,14.9404,15.2177,0.038912,0.535904,0.008256,0.004704,0.016416,14.5548,0.05872
+915,61.8769,16.1611,15.2156,0.040992,0.56208,0.008192,0.006112,0.01616,14.5237,0.058304
+916,62.3478,16.0391,13.9303,0.038912,0.577312,0.00816,0.005568,0.0152,13.226,0.0592
+917,66.915,14.9443,14.0226,0.038304,0.595712,0.015232,0.006144,0.03184,13.2761,0.059296
+918,66.3513,15.0713,14.946,0.038944,0.550304,0.008192,0.004672,0.016384,14.2664,0.061088
+919,55.1338,18.1377,14.0556,0.040992,0.661664,0.007232,0.005056,0.04096,13.2396,0.06016
+920,67.3418,14.8496,13.9254,0.038304,0.600704,0.00816,0.006112,0.016192,13.1955,0.06048
+921,65.7084,15.2188,16.4012,0.037664,0.61616,0.008128,0.005536,0.015328,15.6601,0.058304
+922,58.2745,17.1602,13.857,0.038592,0.530944,0.008224,0.006112,0.016384,13.1973,0.059392
+923,64.2006,15.5762,13.9837,0.038912,0.6144,0.008192,0.014336,0.016384,13.2321,0.059392
+924,71.1803,14.0488,15.2078,0.038272,0.533504,0.00816,0.006144,0.016224,14.5461,0.059328
+925,61.9367,16.1455,13.9067,0.054016,0.559104,0.008224,0.005824,0.016352,13.2038,0.059392
+926,67.5595,14.8018,13.8741,0.037792,0.538624,0.008192,0.006144,0.016288,13.2076,0.059392
+927,67.2887,14.8613,15.186,0.038752,0.548608,0.008256,0.005536,0.016832,14.5085,0.05952
+928,62.4657,16.0088,13.8813,0.038912,0.567296,0.008192,0.005792,0.015968,13.1858,0.059392
+929,67.6622,14.7793,13.9801,0.037728,0.6592,0.008192,0.005536,0.016672,13.1937,0.059104
+930,66.541,15.0283,14.3805,0.038912,0.624448,0.008192,0.005536,0.025248,13.6193,0.05888
+931,65.2936,15.3154,13.899,0.037024,0.540512,0.008224,0.005536,0.016128,13.231,0.060544
+932,66.5021,15.0371,14.0433,0.037728,0.661504,0.008192,0.006144,0.016192,13.2542,0.059328
+933,67.7204,14.7666,15.1574,0.041344,0.579776,0.008416,0.005632,0.01616,14.4466,0.059488
+934,62.584,15.9785,13.8874,0.038784,0.589792,0.008352,0.005632,0.016096,13.1694,0.059296
+935,68.1576,14.6719,14.2664,0.038944,0.544736,0.008224,0.006112,0.01616,13.5943,0.057952
+936,64.6138,15.4766,15.5053,0.038912,1.06202,0.008192,0.004992,0.016384,14.3155,0.059296
+937,62.8993,15.8984,13.9774,0.038944,0.548864,0.008192,0.005888,0.01616,13.3001,0.059232
+938,67.2843,14.8623,13.9162,0.038912,0.54032,0.008224,0.005536,0.015264,13.2485,0.059392
+939,66.5108,15.0352,15.3013,0.037632,0.617632,0.008224,0.004896,0.016384,14.5572,0.059392
+940,59.869,16.7031,14.1282,0.038432,0.708576,0.018944,0.006176,0.016352,13.2807,0.059008
+941,67.6891,14.7734,13.9694,0.038592,0.62496,0.021696,0.004928,0.016384,13.2048,0.058016
+942,67.6712,14.7773,15.1363,0.038912,0.567296,0.007968,0.005536,0.015328,14.442,0.059232
+943,62.5,16,13.9816,0.038624,0.589696,0.007872,0.004832,0.016384,13.2639,0.060288
+944,66.7928,14.9717,13.9194,0.038912,0.585696,0.008192,0.005536,0.016128,13.2062,0.058656
+945,66.8975,14.9482,14.3908,0.038912,0.65136,0.009152,0.015328,0.016416,13.6005,0.059168
+946,65.6536,15.2314,13.9382,0.036864,0.559104,0.008192,0.005664,0.01616,13.2451,0.067072
+947,66.593,15.0166,13.9796,0.038528,0.62,0.008192,0.005024,0.017504,13.231,0.059296
+948,67.1431,14.8936,15.2003,0.038912,0.591872,0.008288,0.006048,0.016384,14.4805,0.05824
+949,62.4962,16.001,13.9229,0.038656,0.539232,0.008192,0.005536,0.015168,13.2565,0.059584
+950,67.7787,14.7539,15.1521,0.037856,0.546816,0.007264,0.005024,0.028,14.4692,0.057888
+951,62.0982,16.1035,15.0569,0.037536,0.547968,0.008224,0.004992,0.016352,14.3831,0.05872
+952,62.7913,15.9258,13.8711,0.038912,0.574912,0.008224,0.00464,0.016384,13.1686,0.059392
+953,68.3761,14.625,13.8797,0.038752,0.531008,0.008192,0.006112,0.01616,13.2201,0.059392
+954,67.9406,14.7188,15.1246,0.038496,0.540512,0.008192,0.004928,0.016384,14.4568,0.059296
+955,62.5076,15.998,13.8798,0.03872,0.570144,0.008384,0.005952,0.016384,13.1807,0.05952
+956,66.832,14.9629,13.8868,0.038912,0.621888,0.008224,0.004768,0.016384,13.1376,0.059008
+957,64.4552,15.5146,15.3211,0.038912,0.666848,0.008256,0.004832,0.016384,14.5278,0.05808
+958,64.9005,15.4082,14.0675,0.03872,0.762432,0.007744,0.004832,0.01616,13.1787,0.058912
+959,67.4883,14.8174,13.9341,0.038912,0.616448,0.008192,0.00592,0.016128,13.1895,0.059008
+960,65.9029,15.1738,14.4527,0.038912,0.732704,0.016864,0.005728,0.020064,13.5791,0.059392
+961,62.7874,15.9268,14.2561,0.067584,0.91136,0.008192,0.006144,0.016192,13.1873,0.059392
+962,67.855,14.7373,13.8275,0.03728,0.548,0.008192,0.004992,0.016352,13.1539,0.058784
+963,68.4172,14.6162,15.0794,0.038592,0.53648,0.008384,0.0048,0.016384,14.4158,0.058912
+964,62.3782,16.0312,13.9244,0.038496,0.580064,0.008192,0.00608,0.016224,13.216,0.059392
+965,67.0772,14.9082,13.9664,0.03872,0.653504,0.008192,0.00608,0.016192,13.1832,0.06048
+966,68.4767,14.6035,14.218,0.038912,0.557664,0.008192,0.005536,0.016352,13.532,0.059392
+967,65.111,15.3584,13.9694,0.04096,0.612352,0.008192,0.005792,0.016256,13.2277,0.058176
+968,67.3551,14.8467,13.9866,0.03904,0.672416,0.008288,0.006016,0.016128,13.1853,0.059392
+969,67.7652,14.7568,15.2176,0.038976,0.66032,0.008192,0.006112,0.016032,14.4285,0.059392
+970,62.4428,16.0146,13.8976,0.038528,0.60256,0.008224,0.00576,0.016352,13.167,0.0592
+971,67.828,14.7432,13.9897,0.038912,0.679552,0.008288,0.005536,0.015232,13.1826,0.059552
+972,66.8276,14.9639,16.5235,0.0384,0.665632,0.008192,0.0048,0.016384,15.7318,0.058272
+973,57.2611,17.4639,13.8691,0.038528,0.56768,0.009248,0.005088,0.016384,13.1727,0.059392
+974,68.7848,14.5381,13.8667,0.038912,0.565248,0.008192,0.0056,0.01616,13.1727,0.05984
+975,68.1667,14.6699,15.0852,0.038592,0.54304,0.008192,0.006048,0.016128,14.4142,0.059008
+976,62.4809,16.0049,13.9018,0.038752,0.557696,0.008224,0.005536,0.016256,13.2146,0.060672
+977,68.144,14.6748,13.8259,0.038912,0.536096,0.006624,0.00592,0.016192,13.1629,0.0592
+978,66.9194,14.9434,16.2393,0.03744,0.82944,0.009248,0.005088,0.016384,15.2841,0.057664
+979,59.876,16.7012,13.8518,0.03888,0.530464,0.008352,0.005984,0.016352,13.1928,0.059008
+980,68.2394,14.6543,13.8451,0.03744,0.530432,0.008224,0.005632,0.016288,13.1876,0.059392
+981,66.5756,15.0205,14.3267,0.037728,0.634496,0.008224,0.005568,0.015392,13.5659,0.059392
+982,64.5975,15.4805,13.9409,0.039648,0.630752,0.008192,0.005568,0.016192,13.181,0.059488
+983,66.3427,15.0732,14.0099,0.0384,0.678752,0.0256,0.005088,0.016384,13.1869,0.058752
+984,57.2387,17.4707,14.4097,0.039072,0.702304,0.01776,0.005952,0.025088,13.5617,0.057856
+985,74.3916,13.4424,14.9017,0.03728,0.649216,0.024128,0.005952,0.016192,14.1095,0.059392
+986,66.4547,15.0479,13.9145,0.038624,0.57616,0.022496,0.005536,0.01632,13.1958,0.05952
+987,70.6402,14.1562,14.9361,0.038912,0.53248,0.008192,0.004096,0.016416,14.278,0.058048
+988,62.799,15.9238,13.9853,0.038528,0.678304,0.008,0.005568,0.015168,13.1809,0.058784
+989,65.6747,15.2266,13.9553,0.03872,0.6312,0.008192,0.005888,0.020736,13.1912,0.05936
+990,67.086,14.9062,14.3024,0.038944,0.63824,0.008192,0.0048,0.016384,13.5372,0.058656
+991,66.6233,15.0098,14.8152,0.038944,0.608032,0.008192,0.005536,0.01616,14.0805,0.057888
+992,63.3899,15.7754,15.231,0.038592,0.668,0.00816,0.006144,0.016416,14.4359,0.05776
+993,61.4351,16.2773,15.3375,0.038912,0.669728,0.008416,0.005888,0.016384,14.5388,0.059424
+994,62.1963,16.0781,13.9434,0.037568,0.615424,0.00704,0.005536,0.016096,13.2023,0.059392
+995,65.9369,15.166,14.0947,0.038752,0.733696,0.00816,0.005824,0.016256,13.2326,0.059392
+996,67.1123,14.9004,15.156,0.037632,0.60816,0.008192,0.005568,0.016096,14.422,0.058304
+997,62.699,15.9492,13.92,0.038592,0.538944,0.008192,0.00544,0.016064,13.253,0.059776
+998,63.745,15.6875,14.0864,0.048864,0.739872,0.00816,0.005952,0.016064,13.2081,0.059424
+999,67.5551,14.8027,15.3613,0.0384,0.813408,0.008192,0.005536,0.015264,14.422,0.058464
+1000,63.4213,15.7676,14.115,0.038944,0.763616,0.01664,0.006144,0.01776,13.2123,0.059584
+1001,64.1765,15.582,14.0621,0.037376,0.772096,0.018432,0.005728,0.016512,13.1525,0.059392
+1002,71.2893,14.0273,15.2873,0.03696,0.663488,0.00832,0.006016,0.016352,14.4958,0.060416
+1003,58.8844,16.9824,13.9774,0.038944,0.64864,0.006688,0.005664,0.016128,13.2018,0.05952
+1004,71.8899,13.9102,13.9404,0.038624,0.603712,0.008192,0.004832,0.016384,13.2092,0.059488
+1005,66.9106,14.9453,14.4143,0.038432,0.682944,0.008192,0.005728,0.01632,13.6033,0.05936
+1006,64.1845,15.5801,13.8877,0.039808,0.591232,0.008192,0.004704,0.016384,13.1686,0.058784
+1007,67.8595,14.7363,15.231,0.038816,0.646656,0.006752,0.005952,0.01616,14.4572,0.059392
+1008,61.3835,16.291,14.3815,0.037312,0.646816,0.007872,0.004768,0.016416,13.6103,0.05808
+1009,65.8436,15.1875,14.7313,0.038336,0.585952,0.008192,0.004544,0.016384,14.0186,0.059296
+1010,63.1709,15.8301,14.0043,0.038848,0.630848,0.008192,0.0056,0.016096,13.2467,0.058016
+1011,67.2357,14.873,15.2013,0.038912,0.630048,0.018464,0.0048,0.016384,14.4323,0.06048
+1012,62.7836,15.9277,13.8547,0.0384,0.520704,0.008288,0.006048,0.016032,13.2059,0.059392
+1013,67.3241,14.8535,13.9896,0.038944,0.668864,0.008192,0.004896,0.016384,13.1932,0.059136
+1014,66.606,15.0137,14.3258,0.038624,0.630432,0.008224,0.004704,0.016384,13.5693,0.058048
+1015,64.1363,15.5918,14.4056,0.038912,1.03834,0.008192,0.006144,0.016384,13.2398,0.057824
+1016,67.2887,14.8613,13.9162,0.037888,0.57136,0.008224,0.005536,0.016064,13.2184,0.05872
+1017,66.4849,15.041,15.1282,0.038976,0.575296,0.008224,0.0048,0.016384,14.426,0.058496
+1018,60.356,16.5684,13.8454,0.038976,0.51904,0.008256,0.00592,0.016128,13.1977,0.059392
+1019,68.294,14.6426,13.8907,0.038592,0.53648,0.008224,0.004544,0.016384,13.228,0.058432
+1020,67.8236,14.7441,14.9688,0.038912,0.607648,0.008192,0.004704,0.016384,13.979,0.313952
+1021,63.5867,15.7266,13.9127,0.037472,0.546144,0.008192,0.0048,0.016352,13.2413,0.058368
+1022,67.4216,14.832,14.7521,0.035552,0.561152,0.008192,0.005664,0.016224,14.0662,0.059104
+1023,63.5078,15.7461,15.1369,0.038912,0.598016,0.008192,0.006048,0.016128,14.4122,0.05744
+1024,63.062,15.8574,13.945,0.03872,0.569696,0.008192,0.005536,0.016064,13.2474,0.059424
+1025,66.9719,14.9316,13.9716,0.0376,0.672736,0.008192,0.00512,0.016384,13.1727,0.058816
+1026,68.3487,14.6309,15.1388,0.038944,0.562176,0.008256,0.005056,0.016352,14.4497,0.058368
+1027,62.0305,16.1211,13.8866,0.038912,0.542752,0.009408,0.004896,0.016384,13.2148,0.059392
+1028,67.1475,14.8926,15.2106,0.038464,0.56544,0.008192,0.005536,0.01536,14.5201,0.057504
+1029,61.0105,16.3906,14.3082,0.037824,0.542592,0.008192,0.006144,0.01632,13.6397,0.057376
+1030,63.7768,15.6797,14.0175,0.038912,0.642176,0.00832,0.004864,0.016384,13.2485,0.058368
+1031,67.7607,14.7578,13.9047,0.037888,0.582976,0.008256,0.004736,0.016384,13.1952,0.059296
+1032,64.3216,15.5469,15.1938,0.03856,0.557888,0.008192,0.005664,0.016544,14.5084,0.05856
+1033,62.8144,15.9199,13.9428,0.038912,0.57344,0.008192,0.006144,0.016288,13.2417,0.058176
+1034,63.3193,15.793,14.0804,0.038368,0.74832,0.008192,0.005888,0.016032,13.2052,0.0584
+1035,68.8913,14.5156,15.1552,0.038496,0.568928,0.008256,0.004864,0.016384,14.4527,0.065504
+1036,62.0005,16.1289,13.9796,0.038944,0.575456,0.008192,0.005824,0.016192,13.2769,0.058144
+1037,65.869,15.1816,14.0047,0.037312,0.638208,0.008032,0.005024,0.016384,13.2403,0.059392
+1038,65.4564,15.2773,14.7134,0.037376,0.602048,0.02576,0.005024,0.016416,13.9428,0.084
+1039,64.622,15.4746,13.9337,0.0384,0.608128,0.024768,0.004544,0.017504,13.1819,0.058496
+1040,63.4842,15.752,14.0032,0.040384,0.71328,0.008192,0.005824,0.016288,13.1547,0.064544
+1041,72.9865,13.7012,15.2146,0.04016,0.670496,0.008192,0.006144,0.016416,14.4138,0.05936
+1042,63.2177,15.8184,15.1224,0.038944,0.540416,0.008224,0.005536,0.01616,14.4532,0.059904
+1043,58.783,17.0117,14.0988,0.03776,0.72704,0.018208,0.00432,0.016192,13.2364,0.058848
+1044,72.1533,13.8594,15.0755,0.037312,0.527904,0.008224,0.004608,0.016288,14.423,0.05808
+1045,62.8144,15.9199,13.8854,0.038656,0.557312,0.008224,0.00592,0.016032,13.1996,0.059712
+1046,67.6265,14.7871,13.9284,0.038912,0.606208,0.018432,0.005856,0.016224,13.1834,0.059392
+1047,67.698,14.7715,14.4131,0.038944,0.66352,0.009312,0.005024,0.016384,13.6212,0.058688
+1048,64.5812,15.4844,14.2693,0.037792,0.8704,0.02048,0.006144,0.016384,13.2604,0.057792
+1049,66.8844,14.9512,13.8948,0.03856,0.559456,0.008192,0.005696,0.015808,13.2083,0.058848
+1050,67.395,14.8379,15.1785,0.037568,0.600064,0.008192,0.005888,0.016128,14.4532,0.057472
+1051,62.439,16.0156,13.8629,0.038912,0.5544,0.008192,0.004704,0.016384,13.1809,0.059392
+1052,67.7428,14.7617,14.0001,0.038912,0.67584,0.008192,0.006144,0.016384,13.1953,0.059392
+1053,66.7101,14.9902,14.4039,0.038496,0.682688,0.008192,0.0056,0.016064,13.5952,0.0576
+1054,64.6383,15.4707,13.9171,0.037504,0.5512,0.008192,0.005792,0.016192,13.2388,0.059392
+1055,66.9456,14.9375,13.9416,0.037728,0.589856,0.00816,0.006144,0.016256,13.2241,0.059424
+1056,66.6146,15.0117,15.2393,0.038432,0.651872,0.00816,0.006016,0.01616,14.4608,0.057792
+1057,63.1242,15.8418,14.1961,0.038336,0.528288,0.008224,0.004736,0.016384,13.5414,0.05872
+1058,66.4504,15.0488,14.7179,0.03792,0.558464,0.008224,0.004608,0.017888,14.0327,0.058048
+1059,64.3944,15.5293,15.2187,0.038176,0.606112,0.008192,0.004928,0.016384,14.4868,0.05808
+1060,62.3706,16.0332,13.9705,0.038912,0.612416,0.009184,0.005088,0.016384,13.228,0.06048
+1061,67.5195,14.8105,13.9732,0.0384,0.671488,0.008192,0.004864,0.016384,13.1739,0.059904
+1062,67.5551,14.8027,15.2795,0.039008,0.671008,0.008224,0.0048,0.01808,14.4797,0.058656
+1063,62.1963,16.0781,13.9705,0.037888,0.618496,0.008192,0.005664,0.01616,13.2258,0.058272
+1064,66.7014,14.9922,13.9677,0.038464,0.626624,0.008224,0.005024,0.016416,13.2147,0.058272
+1065,66.2955,15.084,16.2982,0.037536,0.855648,0.008384,0.005568,0.016288,15.3157,0.05904
+1066,59.7991,16.7227,13.8717,0.038432,0.529344,0.008224,0.005504,0.01616,13.2162,0.057824
+1067,68.808,14.5332,13.857,0.037824,0.546592,0.008224,0.005344,0.015328,13.1844,0.059232
+1068,68.3213,14.6367,14.3156,0.038784,0.557184,0.008224,0.005536,0.016064,13.632,0.05776
+1069,63.2802,15.8027,13.9361,0.036864,0.58368,0.008192,0.004128,0.016352,13.2279,0.05904
+1070,68.0942,14.6855,13.8632,0.037408,0.532512,0.00816,0.005792,0.016032,13.2042,0.059104
+1071,68.3761,14.625,15.0712,0.038976,0.525632,0.008192,0.004736,0.016416,14.4194,0.05792
+1072,62.8221,15.918,13.8545,0.038816,0.529824,0.008192,0.0048,0.016384,13.1973,0.059136
+1073,67.6622,14.7793,13.8936,0.038816,0.542816,0.007936,0.005536,0.015232,13.2239,0.059392
+1074,68.2576,14.6504,14.2706,0.0472,0.54272,0.008192,0.00544,0.016128,13.5915,0.059392
+1075,64.0961,15.6016,13.8659,0.039776,0.54272,0.008192,0.006144,0.016224,13.1954,0.057376
+1076,65.8352,15.1895,13.9566,0.038944,0.618464,0.008192,0.005888,0.016064,13.1993,0.06976
+1077,66.4417,15.0508,15.1745,0.043904,0.581248,0.008192,0.005536,0.01536,14.4609,0.059328
+1078,61.8208,16.1758,13.994,0.038944,0.671712,0.016384,0.006144,0.01632,13.1851,0.059424
+1079,66.4935,15.0391,15.1593,0.038848,0.576768,0.008192,0.004928,0.016384,14.4548,0.059392
+1080,61.2294,16.332,15.0739,0.03856,0.547776,0.008192,0.006144,0.016384,14.399,0.057824
+1081,62.7528,15.9355,13.8507,0.037504,0.563168,0.008192,0.006016,0.016064,13.1507,0.069088
+1082,62.6453,15.9629,14.0299,0.052128,0.673792,0.008224,0.014304,0.016384,13.2065,0.058528
+1083,65.3812,15.2949,15.2081,0.03728,0.636832,0.00624,0.006144,0.016384,14.4466,0.058624
+1084,63.7371,15.6895,13.8693,0.037696,0.532096,0.008192,0.005536,0.01536,13.2107,0.05968
+1085,65.6326,15.2363,13.8777,0.038624,0.56192,0.008192,0.006112,0.01616,13.1846,0.062144
+1086,66.5713,15.0215,15.8477,0.038624,0.5384,0.008192,0.004832,0.016384,15.1815,0.059712
+1087,60.2211,16.6055,13.8342,0.038368,0.530272,0.008192,0.0048,0.016384,13.1768,0.059392
+1088,67.564,14.8008,13.8813,0.04032,0.530464,0.008544,0.005568,0.016288,13.2146,0.065536
+1089,67.0947,14.9043,15.2166,0.038944,0.614368,0.008192,0.006016,0.040416,14.4493,0.05936
+1090,61.9255,16.1484,13.8448,0.038656,0.556928,0.008224,0.004768,0.016416,13.1604,0.059392
+1091,66.6493,15.0039,13.8919,0.037696,0.557056,0.008192,0.005888,0.01616,13.2077,0.0592
+1092,68.3304,14.6348,15.0242,0.038432,0.66,0.008192,0.005568,0.016672,14.2359,0.059424
+1093,62.4238,16.0195,15.2084,0.038816,0.678016,0.008384,0.00592,0.016384,14.4036,0.057344
+1094,62.5305,15.9922,14.0324,0.038912,0.661504,0.008192,0.005664,0.016544,13.2427,0.058944
+1095,67.3153,14.8555,14.3189,0.038944,0.6328,0.008192,0.006144,0.016384,13.5578,0.058656
+1096,63.3037,15.7969,14.318,0.038272,1.00189,0.008192,0.004704,0.017696,13.1878,0.059392
+1097,67.2446,14.8711,13.8889,0.03888,0.532544,0.00816,0.006016,0.016352,13.2282,0.058784
+1098,66.2354,15.0977,15.2167,0.038656,0.643392,0.018464,0.00608,0.016,14.4361,0.058016
+1099,61.9555,16.1406,13.963,0.038688,0.612576,0.019712,0.004864,0.016416,13.2116,0.059168
+1100,67.5551,14.8027,14.2841,0.038912,0.606208,0.017504,0.005024,0.016384,13.541,0.059104
+1101,65.8267,15.1914,15.037,0.03744,0.544832,0.008192,0.00432,0.016416,14.3667,0.05904
+1102,63.3742,15.7793,13.8048,0.041984,0.530528,0.008224,0.004992,0.016384,13.1441,0.058592
+1103,68.5592,14.5859,13.956,0.037824,0.643104,0.00816,0.006144,0.01616,13.1852,0.059392
+1104,68.0942,14.6855,15.1388,0.038912,0.526368,0.00816,0.005536,0.016,14.4857,0.058144
+1105,62.3782,16.0312,13.9039,0.038912,0.597184,0.019104,0.005952,0.01616,13.1672,0.059392
+1106,67.4928,14.8164,13.8841,0.037536,0.600064,0.008192,0.005888,0.016096,13.1585,0.057824
+1107,67.7966,14.75,15.1113,0.038208,0.574144,0.008224,0.005568,0.01616,14.4105,0.058496
+1108,62.4771,16.0059,14.3115,0.038912,0.605376,0.008192,0.004928,0.016384,13.5797,0.05792
+1109,66.4676,15.0449,14.719,0.038752,0.533824,0.008192,0.00496,0.016384,14.0575,0.059392
+1110,63.4527,15.7598,14.2047,0.038688,0.538848,0.008192,0.005664,0.016576,13.5376,0.0592
+1111,65.082,15.3652,14.3906,0.064928,1.02816,0.008256,0.004576,0.017856,13.2081,0.058752
+1112,66.1157,15.125,13.8465,0.038912,0.61184,0.008224,0.004576,0.016384,13.1072,0.059392
+1113,68.3669,14.627,15.1336,0.037824,0.567296,0.008192,0.006112,0.01616,14.4399,0.058176
+1114,62.4466,16.0137,13.8754,0.038464,0.596448,0.008224,0.005696,0.016128,13.1527,0.057728
+1115,60.2778,16.5898,13.9476,0.037536,0.634784,0.008192,0.019776,0.024736,13.1631,0.059392
+1116,68.3852,14.623,16.3242,0.038304,0.526336,0.008224,0.004896,0.016384,15.6713,0.058752
+1117,57.8727,17.2793,13.878,0.03776,0.55296,0.008288,0.006048,0.022592,13.1911,0.059232
+1118,68.3669,14.627,13.9399,0.037984,0.605088,0.024512,0.005536,0.016192,13.1917,0.058848
+1119,68.0037,14.7051,14.209,0.038912,0.54272,0.008192,0.005568,0.016224,13.5378,0.059584
+1120,64.4755,15.5098,14.42,0.055136,1.04054,0.008224,0.006048,0.016448,13.2342,0.059392
+1121,66.9982,14.9258,13.9535,0.038592,0.652096,0.007296,0.004992,0.016384,13.1761,0.058112
+1122,66.658,15.002,15.1825,0.039104,0.653088,0.008224,0.004864,0.016384,14.4015,0.059328
+1123,62.799,15.9238,13.8909,0.038912,0.55024,0.008224,0.004736,0.016352,13.2127,0.059712
+1124,65.3728,15.2969,13.7954,0.038496,0.549184,0.008224,0.005536,0.016192,13.1183,0.059456
+1125,70.8454,14.1152,14.3037,0.03856,0.596768,0.008192,0.005728,0.014784,13.5803,0.05936
+1126,63.6104,15.7207,13.9218,0.04096,0.571392,0.0072,0.005088,0.016384,13.2219,0.058912
+1127,67.9225,14.7227,13.7851,0.04096,0.54272,0.008288,0.006048,0.016384,13.1113,0.059392
+1128,68.0761,14.6895,15.1342,0.038688,0.598048,0.008224,0.005536,0.016192,14.4085,0.058976
+1129,62.0155,16.125,13.919,0.037632,0.643072,0.008192,0.005728,0.016352,13.1486,0.059392
+1130,67.6712,14.7773,15.1245,0.03856,0.62832,0.008256,0.0048,0.016384,14.3706,0.057568
+1131,62.8067,15.9219,15.0768,0.038912,0.562624,0.00672,0.004096,0.016128,14.3895,0.058816
+1132,62.4847,16.0039,13.8966,0.037824,0.577536,0.00848,0.005856,0.016384,13.1912,0.059392
+1133,68.2394,14.6543,13.786,0.037792,0.52224,0.008288,0.006048,0.016384,13.1359,0.059392
+1134,68.0308,14.6992,15.0405,0.03872,0.529728,0.008224,0.00496,0.016352,14.3849,0.057632
+1135,62.653,15.9609,13.8844,0.039872,0.571104,0.008224,0.005536,0.025344,13.1749,0.059392
+1136,63.3428,15.7871,14.1517,0.038912,0.88064,0.015648,0.004864,0.016352,13.1371,0.058208
+1137,69.3016,14.4297,15.1618,0.038496,0.670624,0.008224,0.005536,0.016,14.3636,0.059296
+1138,62.5993,15.9746,13.832,0.03888,0.589856,0.008192,0.005344,0.016224,13.1143,0.059232
+1139,66.7014,14.9922,13.8849,0.038784,0.634688,0.008192,0.004864,0.016384,13.1215,0.060448
+1140,67.8056,14.748,14.3324,0.038592,0.666432,0.008224,0.006112,0.016384,13.5373,0.059392
+1141,64.5894,15.4824,13.828,0.040672,0.527232,0.008192,0.005568,0.016128,13.171,0.0592
+1142,68.1848,14.666,13.8547,0.038912,0.565248,0.008192,0.00592,0.016192,13.1609,0.059392
+1143,67.8236,14.7441,15.1634,0.038912,0.667648,0.008192,0.005728,0.016224,14.3673,0.059424
+1144,62.0305,16.1211,14.3319,0.038624,0.630208,0.008224,0.004928,0.016384,13.5741,0.059392
+1145,65.3645,15.2988,14.8418,0.037792,0.654368,0.008224,0.012768,0.016832,14.0526,0.059232
+1146,64.1684,15.584,15.1807,0.03776,0.671744,0.008352,0.005984,0.016384,14.3803,0.06016
+1147,62.1963,16.0781,13.9628,0.038528,0.66192,0.008192,0.005664,0.016096,13.1715,0.06096
+1148,68.4675,14.6055,13.7743,0.038912,0.527616,0.008224,0.004832,0.016384,13.1194,0.058976
+1149,68.0399,14.6973,15.1297,0.03872,0.604352,0.008096,0.005536,0.016096,14.3978,0.05904
+1150,62.5305,15.9922,13.9155,0.038912,0.591872,0.008192,0.005568,0.01616,13.1794,0.075328
+1151,66.3041,15.082,13.867,0.038912,0.593504,0.00656,0.006048,0.016096,13.1465,0.05936
+1152,67.6891,14.7734,16.0215,0.038304,0.58368,0.008288,0.004608,0.016416,15.3124,0.057888
+1153,59.4105,16.832,13.8085,0.03776,0.530432,0.008192,0.006016,0.016032,13.1507,0.059392
+1154,67.3862,14.8398,13.8759,0.0376,0.616448,0.008192,0.006112,0.016224,13.1336,0.05776
+1155,68.1032,14.6836,14.3278,0.038688,0.669728,0.007488,0.004992,0.024576,13.5229,0.059424
+1156,64.9829,15.3887,13.8398,0.040352,0.553568,0.008192,0.006112,0.01616,13.1564,0.058944
+1157,68.1395,14.6758,13.8404,0.038944,0.536544,0.008192,0.00592,0.016608,13.1748,0.059392
+1158,68.5042,14.5977,14.9996,0.038752,0.524448,0.008256,0.00608,0.016384,14.3475,0.058144
+1159,62.3174,16.0469,13.8946,0.038944,0.6272,0.008352,0.005536,0.015232,13.14,0.05936
+1160,68.5684,14.584,13.7784,0.038912,0.533632,0.008192,0.004992,0.016384,13.1169,0.059424
+1161,66.8407,14.9609,14.3626,0.038912,0.662944,0.008224,0.004704,0.017728,13.5707,0.059328
+1162,65.2229,15.332,13.8696,0.040576,0.58256,0.008192,0.006144,0.016384,13.1564,0.05936
+1163,64.1926,15.5781,14.0288,0.038304,0.743488,0.008224,0.004608,0.018592,13.1562,0.059392
+1164,71.0914,14.0664,15.2105,0.038784,0.659104,0.008224,0.004544,0.016384,14.4241,0.059392
+1165,62.1359,16.0938,13.8651,0.037504,0.571392,0.008192,0.006144,0.016288,13.1663,0.059232
+1166,69.1985,14.4512,15.0569,0.038944,0.542688,0.008192,0.006048,0.016192,14.3853,0.05952
+1167,63.0387,15.8633,15.0073,0.038912,0.54272,0.008192,0.005984,0.016064,14.3365,0.058976
+1168,63.2255,15.8164,13.8321,0.038944,0.540416,0.008224,0.004928,0.016384,13.1639,0.059296
+1169,67.1828,14.8848,13.9029,0.038944,0.56912,0.008224,0.005536,0.015104,13.2055,0.060448
+1170,68.0761,14.6895,14.1692,0.038944,0.544256,0.008192,0.004576,0.016384,13.4984,0.058528
+1171,67.1828,14.8848,14.6575,0.038912,0.538624,0.008192,0.005728,0.016768,13.9899,0.059392
+1172,63.2333,15.8145,13.8568,0.038528,0.561344,0.008192,0.005536,0.01648,13.1686,0.058176
+1173,68.1032,14.6836,15.0628,0.038752,0.548096,0.008224,0.005024,0.016352,14.3872,0.059104
+1174,62.439,16.0156,13.8579,0.038912,0.611936,0.008384,0.00432,0.016384,13.1174,0.060512
+1175,67.9135,14.7246,13.8294,0.038144,0.543296,0.008192,0.005568,0.025504,13.1482,0.060512
+1176,67.8955,14.7285,15.0854,0.038912,0.557056,0.008192,0.005888,0.01616,14.4,0.0592
+1177,61.933,16.1465,13.8219,0.038432,0.555488,0.008192,0.00592,0.016256,13.1383,0.059328
+1178,67.3773,14.8418,13.8413,0.037856,0.575488,0.00816,0.00576,0.016064,13.1386,0.059392
+1179,68.6787,14.5605,15.0964,0.038816,0.552672,0.008256,0.00496,0.016384,14.4175,0.05776
+1180,61.5015,16.2598,14.2317,0.038624,0.584192,0.008608,0.005664,0.016192,13.5195,0.058944
+1181,65.8521,15.1855,14.6964,0.038496,0.59024,0.008192,0.006112,0.016224,13.9778,0.059392
+1182,64.8101,15.4297,15.0322,0.03824,0.540704,0.008192,0.004736,0.016384,14.366,0.057952
+1183,62.7682,15.9316,13.7373,0.038752,0.533888,0.006944,0.005696,0.016288,13.0764,0.059328
+1184,67.9315,14.7207,13.8118,0.038912,0.569056,0.008192,0.005568,0.01536,13.1152,0.05952
+1185,68.4767,14.6035,15.0855,0.038176,0.553696,0.007968,0.005568,0.015168,14.4056,0.059296
+1186,61.1051,16.3652,13.8398,0.038528,0.641312,0.008192,0.005536,0.016224,13.0711,0.05888
+1187,67.6443,14.7832,13.9361,0.03856,0.63728,0.008352,0.005984,0.016384,13.1707,0.05888
+1188,65.5654,15.252,16.3289,0.037472,0.542656,0.007424,0.004864,0.016384,15.6611,0.059072
+1189,60.4843,16.5332,13.8188,0.037824,0.55632,0.008192,0.004832,0.016384,13.1359,0.059392
+1190,68.0942,14.6855,13.8096,0.038944,0.54272,0.00832,0.005984,0.016384,13.1379,0.059328
+1191,66.3556,15.0703,14.4504,0.038432,0.764384,0.008192,0.006016,0.016192,13.5581,0.059104
+1192,66.3987,15.0605,13.816,0.037472,0.540672,0.008224,0.005568,0.016096,13.149,0.058976
+1193,68.6143,14.5742,13.7644,0.038944,0.535904,0.008224,0.004704,0.016384,13.1011,0.0592
+1194,66.0049,15.1504,15.2593,0.03856,0.722624,0.018272,0.004928,0.016384,14.3994,0.059136
+1195,62.2795,16.0566,13.8444,0.038432,0.547392,0.008192,0.006048,0.02464,13.1602,0.059488
+1196,68.9934,14.4941,13.8266,0.037504,0.54672,0.008192,0.00576,0.016064,13.1383,0.074048
+1197,65.7253,15.2148,14.2168,0.046272,0.560096,0.008352,0.005984,0.024096,13.5063,0.065664
+1198,64.7855,15.4355,13.9604,0.038176,0.687904,0.008192,0.01456,0.030432,13.1226,0.058624
+1199,66.8757,14.9531,13.9598,0.045408,0.649472,0.008256,0.00608,0.01632,13.1748,0.059392
+1200,66.7362,14.9844,15.2433,0.040032,0.733792,0.008224,0.005568,0.016832,14.3794,0.059392
+1201,63.2021,15.8223,13.8708,0.038976,0.624672,0.00816,0.006144,0.016192,13.1172,0.059392
+1202,68.0761,14.6895,14.2748,0.037792,0.59392,0.008192,0.006112,0.02592,13.5442,0.05872
+1203,65.3311,15.3066,15.0014,0.038688,0.549088,0.008416,0.00592,0.016384,14.3237,0.059232
+1204,62.2114,16.0742,13.8882,0.037504,0.630784,0.008256,0.01536,0.03168,13.1052,0.059456
+1205,68.6327,14.5703,13.8447,0.038368,0.561856,0.008,0.005536,0.015168,13.1564,0.059392
+1206,68.1576,14.6719,14.2377,0.038912,0.601824,0.008288,0.005536,0.022464,13.5013,0.059424
+1207,66.5454,15.0273,14.7668,0.037568,0.595936,0.008384,0.005952,0.026624,14.0329,0.059392
+1208,64.249,15.5645,13.7606,0.038912,0.536576,0.008192,0.005984,0.016128,13.0968,0.058016
+1209,67.6354,14.7852,15.0768,0.038336,0.55968,0.008192,0.006144,0.016384,14.3831,0.064992
+1210,63.0076,15.8711,13.8322,0.038944,0.612224,0.008288,0.005696,0.01616,13.0913,0.059552
+1211,67.6443,14.7832,13.9469,0.038688,0.661728,0.008192,0.005632,0.016192,13.1571,0.059392
+1212,67.7966,14.75,15.1474,0.038816,0.670464,0.008192,0.005824,0.016128,14.3489,0.059104
+1213,61.963,16.1387,13.8061,0.03872,0.581728,0.008192,0.004672,0.016416,13.0969,0.059424
+1214,67.8146,14.7461,13.849,0.037408,0.618016,0.008192,0.004576,0.016384,13.1047,0.059712
+1215,68.0218,14.7012,15.1764,0.038656,0.67072,0.00816,0.006144,0.016384,14.377,0.059392
+1216,62.1058,16.1016,14.2297,0.038656,0.58624,0.008224,0.005984,0.016096,13.5166,0.057952
+1217,65.7,15.2207,14.7096,0.037728,0.580672,0.008224,0.005024,0.016384,14.0022,0.059328
+1218,64.1926,15.5781,14.5151,0.037792,0.559072,0.008192,0.005984,0.016032,13.8286,0.059424
+1219,64.7609,15.4414,13.8275,0.038592,0.593856,0.008224,0.005536,0.015328,13.1071,0.058848
+1220,67.2004,14.8809,13.8698,0.038912,0.61312,0.007648,0.004608,0.016384,13.1296,0.059488
+1221,68.2303,14.6562,15.061,0.038912,0.534272,0.008224,0.005536,0.015264,14.3994,0.059424
+1222,62.7451,15.9375,13.8157,0.038528,0.552576,0.008192,0.004928,0.016384,13.1359,0.059232
+1223,67.9496,14.7168,13.7646,0.038912,0.552992,0.00816,0.005856,0.01616,13.0831,0.059392
+1224,68.6143,14.5742,16.2899,0.038304,0.543456,0.008192,0.0056,0.016064,15.6189,0.059392
+1225,58.4275,17.1152,13.7956,0.038688,0.545408,0.008224,0.005568,0.01616,13.1218,0.059744
+1226,68.2212,14.6582,13.8629,0.038944,0.575424,0.008192,0.005536,0.016192,13.1592,0.059392
+1227,67.3507,14.8477,15.0426,0.038912,0.531904,0.008192,0.004672,0.016384,14.3844,0.058144
+1228,62.4619,16.0098,13.867,0.038912,0.583584,0.008224,0.005536,0.016192,13.1552,0.059392
+1229,68.2485,14.6523,13.8124,0.037632,0.53248,0.008192,0.005664,0.016128,13.153,0.059296
+1230,67.0772,14.9082,15.0072,0.038912,0.554528,0.006784,0.005792,0.016384,14.3259,0.058944
+1231,63.0387,15.8633,13.8097,0.038848,0.574592,0.008224,0.005024,0.016384,13.1072,0.059392
+1232,68.6419,14.5684,13.8051,0.038848,0.541984,0.008192,0.004896,0.016384,13.1354,0.05936
+1233,67.9586,14.7148,14.2049,0.037792,0.544768,0.008192,0.006144,0.016256,13.5323,0.059424
+1234,65.2978,15.3145,14.0677,0.038944,0.773344,0.010368,0.004768,0.01776,13.1632,0.059392
+1235,63.6974,15.6992,13.9807,0.045056,0.694272,0.008192,0.005824,0.024928,13.1432,0.0592
+1236,67.5106,14.8125,15.2289,0.038592,0.674112,0.007328,0.00496,0.016384,14.4282,0.05936
+1237,62.4238,16.0195,13.901,0.038912,0.694272,0.008192,0.005824,0.016128,13.0771,0.06064
+1238,63.3507,15.7852,15.1736,0.038336,0.683872,0.00816,0.004864,0.016384,14.3626,0.059392
+1239,64.7528,15.4434,15.3354,0.045056,0.898912,0.008224,0.005536,0.016096,14.3034,0.05824
+1240,63.0542,15.8594,13.9549,0.038912,0.683136,0.008352,0.004832,0.016384,13.142,0.061248
+1241,68.6972,14.5566,13.7544,0.038912,0.565248,0.008192,0.006016,0.016256,13.0604,0.059424
+1242,68.5042,14.5977,15.0408,0.03744,0.577536,0.008192,0.005824,0.016192,14.3363,0.059296
+1243,62.3098,16.0488,13.9173,0.038976,0.591808,0.008192,0.005952,0.016352,13.1955,0.060512
+1244,66.5973,15.0156,13.8588,0.038944,0.610272,0.008192,0.005888,0.016064,13.1212,0.058304
+1245,64.3216,15.5469,15.1863,0.0384,0.656224,0.008192,0.006016,0.016192,14.4017,0.05952
+1246,63.8802,15.6543,13.8479,0.038912,0.598016,0.008192,0.00608,0.016192,13.121,0.059552
+1247,67.2534,14.8691,13.9183,0.037664,0.652672,0.008224,0.022208,0.023456,13.115,0.05904
+1248,67.7787,14.7539,14.3273,0.038336,0.684864,0.008192,0.005728,0.01616,13.5152,0.058784
+1249,65.0159,15.3809,13.8313,0.036896,0.569312,0.008192,0.005952,0.016192,13.1353,0.05952
+1250,65.7,15.2207,13.8896,0.046816,0.671968,0.008192,0.005536,0.01616,13.0835,0.057472
+1251,69.9072,14.3047,15.0508,0.038912,0.538592,0.008224,0.005568,0.016192,14.3839,0.059392
+1252,63.0231,15.8672,13.7933,0.038912,0.544416,0.007808,0.004864,0.016352,13.1215,0.059424
+1253,67.5908,14.7949,15.1048,0.037696,0.536608,0.00816,0.005856,0.016096,14.441,0.059392
+1254,62.799,15.9238,13.8015,0.038592,0.557376,0.008192,0.005856,0.016544,13.1166,0.058304
+1255,68.7987,14.5352,13.8469,0.038304,0.555424,0.008192,0.004704,0.016384,13.1645,0.059392
+1256,67.8775,14.7324,15.1252,0.037728,0.544512,0.008224,0.005536,0.016224,14.4537,0.059296
+1257,60.3062,16.582,13.8158,0.038912,0.575488,0.009216,0.00512,0.016384,13.1113,0.059392
+1258,67.2004,14.8809,13.8486,0.04096,0.62,0.008224,0.00464,0.020448,13.0949,0.059392
+1259,67.4216,14.832,16.3205,0.038432,0.604608,0.006176,0.006144,0.016384,15.5894,0.059392
+1260,58.9726,16.957,13.8084,0.038752,0.541632,0.008192,0.00608,0.016128,13.126,0.07168
+1261,66.6667,15,13.7816,0.037888,0.5424,0.008256,0.005536,0.015264,13.1129,0.059328
+1262,68.2576,14.6504,15.0323,0.03888,0.567104,0.008224,0.005536,0.01648,14.3367,0.059424
+1263,59.0883,16.9238,14.1533,0.038624,0.901088,0.006976,0.005984,0.016384,13.1249,0.05936
+1264,71.9606,13.8965,13.8158,0.038912,0.587424,0.008224,0.005536,0.015264,13.1011,0.059392
+1265,67.7249,14.7656,15.086,0.037824,0.569376,0.008352,0.005952,0.016384,14.3883,0.05984
+1266,63.3115,15.7949,15.0218,0.038272,0.541376,0.008224,0.005952,0.016128,14.3528,0.059072
+1267,63.0542,15.8594,13.7243,0.03856,0.543744,0.008192,0.005856,0.01616,13.0524,0.05936
+1268,68.5867,14.5801,14.1804,0.038688,0.606304,0.008192,0.005568,0.019168,13.4429,0.05952
+1269,64.4593,15.5137,14.1701,0.039648,0.862144,0.008224,0.006016,0.016512,13.1786,0.058944
+1270,66.6406,15.0059,13.8609,0.03872,0.64736,0.008192,0.00576,0.016224,13.0869,0.057664
+1271,67.7338,14.7637,15.0154,0.038528,0.571392,0.008224,0.004768,0.016384,14.3155,0.060576
+1272,63.0154,15.8691,13.8118,0.044896,0.57984,0.008192,0.005568,0.016192,13.0974,0.059776
+1273,68.4584,14.6074,13.781,0.038944,0.546784,0.008192,0.004096,0.016224,13.1074,0.059424
+1274,68.2121,14.6602,16.1383,0.03888,0.566144,0.008224,0.005536,0.01616,15.4445,0.058848
+1275,58.8168,17.002,13.7462,0.038944,0.54064,0.008192,0.005248,0.015264,13.0785,0.059392
+1276,65.3728,15.2969,13.8588,0.038912,0.64272,0.016064,0.004768,0.016384,13.0785,0.06144
+1277,71.6385,13.959,14.2207,0.038848,0.572768,0.008224,0.0048,0.016416,13.5209,0.058784
+1278,66.9456,14.9375,14.6388,0.038272,0.542784,0.008032,0.005088,0.016384,13.9694,0.058816
+1279,63.8484,15.6621,13.8772,0.038912,0.638976,0.008192,0.006144,0.016224,13.1074,0.06144
+1280,67.4572,14.8242,15.1113,0.038912,0.636512,0.008256,0.005536,0.015296,14.3483,0.058464
+1281,63.5709,15.7305,15.015,0.038912,0.536576,0.008384,0.005952,0.016384,14.35,0.058784
+1282,63.0464,15.8613,13.7339,0.038592,0.536896,0.009216,0.00512,0.016384,13.0683,0.05936
+1283,67.9947,14.707,14.1675,0.038496,0.584544,0.008192,0.005888,0.016128,13.455,0.059264
+1284,64.884,15.4121,14.4609,0.039968,0.793024,0.051328,0.005536,0.016928,13.4961,0.05808
+1285,65.7675,15.2051,13.8507,0.038144,0.611072,0.008192,0.005632,0.016128,13.1132,0.058336
+1286,67.5729,14.7988,15.0888,0.040448,0.56576,0.008192,0.005952,0.016192,14.3928,0.059456
+1287,63.1319,15.8398,14.16,0.038496,0.54928,0.007392,0.004896,0.026624,13.4738,0.059552
+1288,65.2645,15.3223,14.6907,0.038592,0.60896,0.008224,0.006112,0.016224,13.9532,0.059392
+1289,64.3216,15.5469,15.0007,0.038624,0.614784,0.00832,0.006016,0.016384,14.2561,0.06048
+1290,62.722,15.9434,13.8305,0.038592,0.637376,0.008192,0.005568,0.016192,13.065,0.059584
+1291,69.0492,14.4824,13.7925,0.038912,0.535968,0.008384,0.005536,0.015392,13.1276,0.06064
+1292,68.6051,14.5762,15.0077,0.038368,0.530976,0.008192,0.006144,0.016288,14.3498,0.058016
+1293,63.062,15.8574,13.7602,0.038304,0.551808,0.00816,0.006144,0.016288,13.0786,0.060864
+1294,67.707,14.7695,13.8324,0.03712,0.591872,0.008288,0.006048,0.016384,13.1133,0.059392
+1295,67.0157,14.9219,16.3128,0.037568,0.579296,0.008192,0.004384,0.028672,15.595,0.05968
+1296,58.7898,17.0098,13.7667,0.038944,0.54064,0.008288,0.006048,0.016384,13.097,0.059392
+1297,68.1576,14.6719,13.8016,0.038688,0.579776,0.008224,0.005536,0.016288,13.0937,0.059392
+1298,67.6712,14.7773,14.2336,0.03872,0.587968,0.008192,0.00608,0.016384,13.5169,0.059392
+1299,65.2645,15.3223,14.7251,0.044992,0.626752,0.008192,0.006112,0.02464,13.9571,0.057344
+1300,65.0324,15.377,13.8133,0.038848,0.564512,0.008224,0.004864,0.016384,13.1211,0.059392
+1301,68.2758,14.6465,15.0838,0.037152,0.533984,0.008192,0.00464,0.016416,14.4242,0.059232
+1302,63.1319,15.8398,13.7808,0.038912,0.534528,0.008192,0.005408,0.015104,13.1187,0.059936
+1303,68.7895,14.5371,13.7748,0.038464,0.531136,0.008448,0.005888,0.016384,13.115,0.059488
+1304,68.2394,14.6543,14.1906,0.038688,0.58512,0.008192,0.004928,0.016384,13.4797,0.0576
+1305,65.3895,15.293,14.0209,0.038656,0.80064,0.01024,0.00512,0.0176,13.0889,0.059712
+1306,67.6175,14.7891,13.8772,0.037632,0.658976,0.006816,0.005952,0.016384,13.0929,0.058528
+1307,63.563,15.7324,15.2316,0.037632,0.718272,0.008224,0.00464,0.016384,14.3865,0.059936
+1308,66.6146,15.0117,13.822,0.038752,0.579712,0.008192,0.00464,0.016384,13.1133,0.060928
+1309,63.7847,15.6777,15.1816,0.037312,0.654496,0.008192,0.004992,0.016352,14.4013,0.058912
+1310,66.1328,15.1211,14.2666,0.039296,0.602112,0.008192,0.005888,0.016352,13.5355,0.059232
+1311,65.3145,15.3105,13.8354,0.040896,0.648992,0.008448,0.005536,0.016128,13.0561,0.059264
+1312,68.4035,14.6191,13.8013,0.040416,0.551328,0.008192,0.005568,0.015296,13.1215,0.058976
+1313,68.1758,14.668,15.0613,0.038848,0.555424,0.008224,0.005952,0.016064,14.3785,0.058368
+1314,62.4238,16.0195,13.8215,0.038528,0.594304,0.008192,0.006144,0.016384,13.0988,0.059232
+1315,67.2181,14.877,13.8925,0.037728,0.656576,0.008416,0.004704,0.01792,13.1088,0.058336
+1316,67.1123,14.9004,14.592,0.03856,0.598144,0.008224,0.005536,0.01616,13.8659,0.05952
+1317,63.8165,15.6699,13.8691,0.038304,0.640608,0.008224,0.005088,0.016384,13.1024,0.058016
+1318,68.1123,14.6816,13.7823,0.038752,0.589984,0.008192,0.006144,0.016352,13.0636,0.059264
+1319,65.6579,15.2305,15.236,0.039104,0.736,0.008224,0.006048,0.015936,14.3713,0.059328
+1320,64.5405,15.4941,13.7933,0.038912,0.577536,0.008192,0.006016,0.016096,13.0882,0.058336
+1321,64,15.625,13.8057,0.0384,0.630656,0.008256,0.004896,0.016384,13.0476,0.059552
+1322,74.6138,13.4023,14.2014,0.038464,0.562112,0.008192,0.006144,0.016224,13.5124,0.057824
+1323,65.6916,15.2227,13.7899,0.039712,0.567136,0.008192,0.005632,0.016096,13.0948,0.058304
+1324,67.4305,14.8301,15.1173,0.039104,0.676128,0.008224,0.00464,0.017504,14.3139,0.057888
+1325,62.4314,16.0176,15.1982,0.038784,0.673152,0.008192,0.004864,0.016384,14.3974,0.059392
+1326,61.6051,16.2324,13.9366,0.038912,0.704512,0.008192,0.006144,0.016256,13.1045,0.058144
+1327,67.4305,14.8301,13.8158,0.038944,0.589408,0.008192,0.005568,0.015296,13.099,0.059424
+1328,67.7697,14.7559,15.148,0.037856,0.659456,0.008384,0.005952,0.01744,14.3593,0.059648
+1329,62.8529,15.9102,13.7863,0.03872,0.56464,0.008192,0.004896,0.016384,13.0941,0.059296
+1330,68.7802,14.5391,13.7503,0.038912,0.555008,0.008192,0.005376,0.016192,13.0672,0.059392
+1331,67.8865,14.7305,15.105,0.037888,0.610304,0.018432,0.006016,0.016224,14.3568,0.059392
+1332,62.1888,16.0801,13.7544,0.037696,0.575488,0.008224,0.006016,0.016192,13.0516,0.059104
+1333,67.0596,14.9121,13.9867,0.037728,0.74448,0.008192,0.005088,0.03072,13.1011,0.059392
+1334,68.5867,14.5801,15.1316,0.038912,0.556032,0.008384,0.004928,0.017472,14.4468,0.059104
+1335,63.0542,15.8594,13.7262,0.038848,0.528608,0.008192,0.004896,0.016384,13.0703,0.059008
+1336,67.9857,14.709,13.8524,0.038336,0.646112,0.008352,0.005952,0.016384,13.0782,0.059072
+1337,66.9019,14.9473,14.2027,0.03856,0.565984,0.009216,0.00512,0.016384,13.5086,0.058848
+1338,65.2728,15.3203,14.2547,0.037472,1.03014,0.008192,0.005664,0.016864,13.0961,0.060288
+1339,67.2976,14.8594,14.8038,0.037696,0.684032,0.00784,0.005536,0.016768,13.9897,0.06224
+1340,64.056,15.6113,14.983,0.038912,0.535616,0.008224,0.005024,0.016384,14.3196,0.059232
+1341,61.933,16.1465,13.8089,0.03872,0.56544,0.008288,0.006048,0.016352,13.1148,0.059232
+1342,69.3485,14.4199,13.7909,0.038784,0.528512,0.008192,0.005824,0.016384,13.1321,0.061088
+1343,65.1068,15.3594,14.678,0.038688,0.717024,0.008448,0.01408,0.016384,13.8234,0.059968
+1344,65.7084,15.2188,13.7792,0.03776,0.548864,0.008192,0.005888,0.016064,13.1027,0.059776
+1345,68.1667,14.6699,15.0318,0.038944,0.550304,0.008224,0.004672,0.015872,14.3549,0.058912
+1346,63.1787,15.8281,15.0219,0.037408,0.542752,0.00816,0.006144,0.016384,14.3503,0.060736
+1347,62.653,15.9609,13.9564,0.038912,0.714752,0.008256,0.005984,0.016064,13.1117,0.060736
+1348,67.564,14.8008,13.779,0.038912,0.58368,0.008192,0.005568,0.016256,13.0685,0.057856
+1349,68.882,14.5176,15.0512,0.037696,0.534304,0.008224,0.004288,0.016416,14.3913,0.059008
+1350,62.3478,16.0391,13.8445,0.03776,0.607808,0.008064,0.00464,0.016384,13.1092,0.060576
+1351,68.0942,14.6855,13.7933,0.03872,0.553152,0.008192,0.005632,0.016384,13.1114,0.05984
+1352,67.9766,14.7109,15.1425,0.03824,0.666496,0.008256,0.005632,0.016864,14.3482,0.058784
+1353,62.7451,15.9375,13.8397,0.038912,0.598048,0.008256,0.006048,0.016384,13.1124,0.059648
+1354,67.0157,14.9219,13.822,0.038912,0.630784,0.008192,0.005664,0.016096,13.0629,0.059424
+1355,67.6891,14.7734,15.0572,0.039136,0.628736,0.008224,0.006112,0.016384,14.2991,0.059424
+1356,63.8643,15.6582,13.7117,0.037664,0.528352,0.008224,0.006112,0.016384,13.056,0.058976
+1357,68.5042,14.5977,13.8367,0.038432,0.595968,0.008192,0.00496,0.016384,13.1133,0.059392
+1358,66.0901,15.1309,14.1158,0.037856,0.522208,0.008192,0.005248,0.015232,13.4676,0.059392
+1359,69.8881,14.3086,14.6725,0.037856,0.534528,0.008192,0.006144,0.016384,14.0101,0.059296
+1360,64.008,15.623,15.0743,0.037888,0.5304,0.008192,0.006144,0.016384,14.4175,0.05776
+1361,62.8915,15.9004,15.061,0.037824,0.595968,0.008192,0.006048,0.016096,14.3364,0.060512
+1362,62.699,15.9492,13.937,0.037696,0.649152,0.008192,0.005568,0.016128,13.1612,0.058976
+1363,68.5408,14.5898,13.7811,0.038528,0.52272,0.008224,0.004512,0.016384,13.1316,0.0592
+1364,67.8325,14.7422,14.2466,0.037536,0.626688,0.008256,0.00608,0.016384,13.4922,0.059392
+1365,63.4921,15.75,13.8773,0.038688,0.585952,0.008224,0.006016,0.016256,13.16,0.062144
+1366,65.1399,15.3516,14.0072,0.037824,0.731104,0.008192,0.014336,0.024576,13.1318,0.059392
+1367,65.1317,15.3535,15.2873,0.038912,0.82944,0.008192,0.023904,0.016352,14.3121,0.0584
+1368,62.6376,15.9648,13.8199,0.038816,0.587264,0.008192,0.004704,0.016384,13.1046,0.059936
+1369,65.557,15.2539,13.8772,0.038784,0.611744,0.008224,0.0048,0.016384,13.1379,0.059392
+1370,65.5906,15.2461,15.2188,0.038144,0.748256,0.008064,0.005312,0.015328,14.3442,0.059456
+1371,62.4238,16.0195,13.8262,0.038784,0.614784,0.008224,0.006112,0.01632,13.0827,0.059296
+1372,64.1926,15.5781,13.9336,0.037888,0.689248,0.008256,0.00496,0.016384,13.1174,0.059392
+1373,68.9006,14.5137,14.1815,0.048384,0.598784,0.008224,0.00576,0.016352,13.4451,0.058944
+1374,64.4187,15.5234,14.3976,0.037056,1.17146,0.008192,0.005696,0.016832,13.099,0.059392
+1375,68.058,14.6934,13.8609,0.038912,0.608256,0.008192,0.005536,0.016672,13.1239,0.059392
+1376,68.5867,14.5801,15.1284,0.038688,0.618016,0.008192,0.004928,0.017376,14.3821,0.059072
+1377,61.3321,16.3047,13.8543,0.037056,0.60592,0.008192,0.005536,0.016256,13.1221,0.059264
+1378,66.554,15.0254,13.8016,0.038272,0.58784,0.008224,0.004736,0.016384,13.088,0.058112
+1379,69.9262,14.3008,14.1599,0.038464,0.577984,0.008192,0.00608,0.016448,13.4533,0.05936
+1380,66.2354,15.0977,13.818,0.038144,0.604928,0.008192,0.005664,0.016064,13.0875,0.0576
+1381,66.5886,15.0176,15.0816,0.037632,0.606208,0.007488,0.0048,0.016384,14.3499,0.059232
+1382,63.0076,15.8711,14.1408,0.038944,0.575456,0.009216,0.00512,0.016384,13.4368,0.058816
+1383,66.1584,15.1152,14.6862,0.038368,0.57808,0.008192,0.006016,0.016128,13.9811,0.058304
+1384,64.443,15.5176,13.7637,0.038912,0.583104,0.008256,0.004608,0.016384,13.0519,0.060576
+1385,66.3556,15.0703,15.1615,0.03872,0.620576,0.007872,0.004128,0.01616,14.4147,0.059392
+1386,62.9611,15.8828,13.779,0.03888,0.56528,0.008192,0.005696,0.016,13.0855,0.059488
+1387,68.3031,14.6406,13.8404,0.038912,0.571392,0.008256,0.00608,0.016384,13.1392,0.060096
+1388,68.7802,14.5391,15.0587,0.038912,0.550912,0.008192,0.005696,0.016224,14.3796,0.059136
+1389,62.023,16.123,13.9189,0.03776,0.660992,0.008192,0.004608,0.016384,13.1316,0.059424
+1390,68.8542,14.5234,13.7278,0.037504,0.54272,0.008192,0.006112,0.016032,13.0584,0.05888
+1391,68.8913,14.5156,15.0794,0.038912,0.548864,0.008384,0.005952,0.016384,14.4033,0.057632
+1392,63.1787,15.8281,13.8145,0.037728,0.546816,0.008192,0.00576,0.01616,13.14,0.059872
+1393,68.3578,14.6289,13.7873,0.037248,0.550912,0.008192,0.006144,0.016352,13.1084,0.060032
+1394,68.44,14.6113,15.054,0.038624,0.539968,0.008224,0.005056,0.016384,14.3869,0.058752
+1395,62.7759,15.9297,13.8236,0.038912,0.562592,0.008224,0.004672,0.01744,13.1327,0.059008
+1396,67.6712,14.7773,15.0156,0.03888,0.5544,0.008224,0.004704,0.018016,14.3335,0.057888
+1397,63.4056,15.7715,15.0316,0.038688,0.538848,0.008192,0.005728,0.016512,14.365,0.058656
+1398,62.8838,15.9023,13.7843,0.038368,0.568,0.008192,0.005888,0.01616,13.0872,0.06048
+1399,68.8727,14.5195,13.7831,0.038144,0.547648,0.008192,0.006016,0.01632,13.1073,0.05952
+1400,67.6443,14.7832,14.1974,0.037664,0.523584,0.008064,0.0048,0.016384,13.5489,0.057984
+1401,63.7371,15.6895,14.3411,0.049248,1.0752,0.008416,0.004736,0.018368,13.1271,0.057984
+1402,66.832,14.9629,13.7318,0.038944,0.544128,0.008192,0.004704,0.031744,13.0462,0.057952
+1403,67.698,14.7715,15.0185,0.038784,0.563808,0.008224,0.005536,0.01616,14.3266,0.059328
+1404,63.1787,15.8281,13.777,0.038272,0.53328,0.008288,0.005696,0.016192,13.1154,0.05984
+1405,67.5818,14.7969,13.7509,0.038528,0.541664,0.008192,0.006048,0.01616,13.0809,0.059392
+1406,66.0986,15.1289,14.366,0.041216,0.747008,0.008256,0.004512,0.016416,13.49,0.058528
+1407,62.7297,15.9414,13.9844,0.04096,0.731872,0.008224,0.006112,0.026496,13.1114,0.059328
+1408,68.5592,14.5859,13.7997,0.038688,0.597728,0.008224,0.0048,0.016384,13.0744,0.059424
+1409,69.6314,14.3613,15.022,0.038368,0.537376,0.008416,0.00592,0.016384,14.3565,0.059104
+1410,62.9225,15.8926,15.0593,0.0384,0.557984,0.008224,0.005504,0.016384,14.3736,0.0592
+1411,62.9766,15.8789,13.8441,0.038368,0.572192,0.008192,0.005856,0.016064,13.144,0.059456
+1412,67.6712,14.7773,15.0536,0.037664,0.5632,0.007264,0.005024,0.016384,14.3647,0.059392
+1413,62.8375,15.9141,13.8195,0.038656,0.54912,0.008192,0.005568,0.016032,13.1409,0.060992
+1414,67.5373,14.8066,13.8072,0.038784,0.620672,0.008192,0.006144,0.016032,13.0575,0.05984
+1415,67.6354,14.7852,15.049,0.037824,0.605248,0.008192,0.005056,0.016384,14.3176,0.058688
+1416,63.0076,15.8711,13.7996,0.038816,0.588608,0.008416,0.00592,0.016384,13.0806,0.060928
+1417,67.3596,14.8457,15.0757,0.038624,0.625312,0.008192,0.005952,0.016032,14.318,0.063584
+1418,62.5687,15.9824,15.0344,0.038912,0.548864,0.020352,0.005536,0.01616,14.3452,0.059392
+1419,63.4527,15.7598,13.7626,0.047104,0.538624,0.008192,0.0056,0.016192,13.0873,0.05952
+1420,68.3761,14.625,13.7565,0.038496,0.54064,0.008224,0.004576,0.016416,13.0887,0.059392
+1421,67.7697,14.7559,14.267,0.038944,0.653216,0.008192,0.005056,0.016384,13.4857,0.05952
+1422,63.7927,15.6758,14.2218,0.049408,0.995072,0.008192,0.004576,0.01792,13.0888,0.057792
+1423,69.0679,14.4785,13.7847,0.038944,0.54064,0.008192,0.0056,0.01648,13.1158,0.059008
+1424,66.9281,14.9414,15.0476,0.037824,0.54672,0.008288,0.005664,0.01616,14.3753,0.057664
+1425,62.0907,16.1055,13.8363,0.03856,0.583168,0.008512,0.00464,0.026624,13.1048,0.069984
+1426,66.8931,14.9492,13.8015,0.038912,0.601632,0.008192,0.004576,0.016384,13.0722,0.059584
+1427,68.9469,14.5039,14.1638,0.038656,0.557312,0.008192,0.00592,0.016064,13.4783,0.059328
+1428,65.8775,15.1797,13.8176,0.04096,0.567136,0.008192,0.005536,0.016256,13.1204,0.059136
+1429,67.2711,14.8652,13.7692,0.041088,0.587968,0.008224,0.005536,0.016832,13.0501,0.059424
+1430,69.3861,14.4121,15.0327,0.039072,0.566784,0.008512,0.004544,0.016384,14.338,0.059392
+1431,62.8838,15.9023,14.2484,0.03872,0.610912,0.008416,0.00592,0.016384,13.5086,0.059392
+1432,65.4146,15.2871,14.8644,0.038464,0.741824,0.008192,0.004512,0.016384,13.9972,0.057824
+1433,62.8144,15.9199,15.2023,0.038912,0.68976,0.00656,0.006016,0.016288,14.3854,0.059392
+1434,61.5237,16.2539,13.8901,0.037728,0.6688,0.008192,0.004736,0.016352,13.0945,0.059776
+1435,66.5108,15.0352,13.8883,0.037632,0.65744,0.00816,0.006112,0.016192,13.1033,0.059424
+1436,68.5684,14.584,14.1627,0.037824,0.58976,0.008192,0.005536,0.017056,13.4462,0.058144
+1437,65.7675,15.2051,14.639,0.038944,0.993248,0.01024,0.006144,0.016512,13.516,0.05792
+1438,63.8484,15.6621,13.7743,0.038144,0.574432,0.008192,0.005792,0.01648,13.0716,0.059648
+1439,66.6753,14.998,16.0541,0.036128,0.699104,0.008224,0.006112,0.016384,15.2289,0.059232
+1440,59.8201,16.7168,13.7914,0.037824,0.56688,0.008192,0.005568,0.01536,13.0983,0.059232
+1441,67.1475,14.8926,13.8664,0.038592,0.62048,0.008224,0.005536,0.015424,13.1173,0.0608
+1442,68.6327,14.5703,14.1852,0.0376,0.54032,0.008224,0.005536,0.015296,13.5209,0.057376
+1443,63.745,15.6875,13.8916,0.03712,0.683776,0.008224,0.005536,0.015168,13.0823,0.059424
+1444,68.1304,14.6777,13.8322,0.038912,0.58368,0.008192,0.005792,0.016224,13.1198,0.059616
+1445,66.1926,15.1074,15.2166,0.03824,0.686816,0.008192,0.005632,0.01616,14.4023,0.059296
+1446,62.0681,16.1113,13.8541,0.038624,0.617088,0.008256,0.005696,0.016224,13.1092,0.05904
+1447,66.5886,15.0176,13.8275,0.038912,0.58368,0.008288,0.006048,0.016352,13.1147,0.059584
+1448,67.475,14.8203,14.9996,0.038912,0.603744,0.008256,0.005536,0.015392,14.2697,0.058048
+1449,63.2567,15.8086,13.8949,0.038912,0.675264,0.008224,0.00464,0.016416,13.0909,0.060576
+1450,67.7787,14.7539,13.8145,0.037664,0.567328,0.00816,0.006144,0.016384,13.1195,0.05936
+1451,67.9406,14.7188,14.1967,0.038912,0.5688,0.008096,0.004736,0.016384,13.5016,0.058144
+1452,66.0134,15.1484,14.6455,0.037632,0.583616,0.008224,0.005536,0.015104,13.9365,0.05888
+1453,63.0076,15.8711,15.1941,0.038912,0.667648,0.008192,0.006016,0.01616,14.3978,0.059424
+1454,62.0681,16.1113,15.1061,0.038784,0.589184,0.008288,0.004768,0.016416,14.3892,0.059424
+1455,61.0105,16.3906,13.8894,0.038464,0.711392,0.008128,0.005536,0.016288,13.0498,0.059872
+1456,66.5454,15.0273,13.9367,0.038336,0.707456,0.00816,0.005536,0.016096,13.1021,0.059072
+1457,68.0761,14.6895,14.9887,0.038464,0.553408,0.008192,0.005888,0.01664,14.3012,0.064928
+1458,62.6453,15.9629,13.8207,0.037664,0.589824,0.008192,0.006144,0.016288,13.1032,0.059424
+1459,66.8582,14.957,13.866,0.038816,0.610048,0.008224,0.005536,0.01536,13.1276,0.06048
+1460,67.7787,14.7539,15.0825,0.038912,0.598016,0.008192,0.006144,0.016288,14.3565,0.058496
+1461,62.5458,15.9883,13.8181,0.037856,0.606208,0.008288,0.006048,0.016384,13.0827,0.060704
+1462,65.641,15.2344,13.8572,0.038336,0.627712,0.008192,0.006112,0.016384,13.1011,0.05936
+1463,66.1926,15.1074,15.2104,0.038912,0.652672,0.008256,0.004672,0.016384,14.4302,0.059296
+1464,60.8582,16.4316,13.8468,0.045984,0.623968,0.008224,0.004736,0.016384,13.0887,0.058752
+1465,66.7014,14.9922,13.9503,0.038592,0.675232,0.008416,0.016064,0.020928,13.1315,0.059648
+1466,66.8146,14.9668,14.5838,0.038912,0.601088,0.008192,0.00512,0.016384,13.8547,0.059392
+1467,63.968,15.6328,14.078,0.038944,0.565216,0.008192,0.00576,0.0168,13.3834,0.059648
+1468,66.3041,15.082,14.6842,0.038912,0.60416,0.008192,0.005792,0.016128,13.9516,0.059392
+1469,63.3428,15.7871,14.2213,0.038912,0.59968,0.006528,0.00608,0.016544,13.4954,0.05824
+1470,65.2479,15.3262,14.8419,0.038944,0.686048,0.008192,0.005792,0.01616,14.0293,0.057472
+1471,64.048,15.6133,13.7917,0.037344,0.59392,0.008192,0.006112,0.01616,13.0701,0.059904
+1472,66.8146,14.9668,15.1941,0.038656,0.651328,0.008192,0.005568,0.016384,14.4146,0.059392
+1473,61.1855,16.3438,13.9249,0.038496,0.688992,0.008256,0.006048,0.016384,13.1072,0.059488
+1474,69.1611,14.459,13.8834,0.038912,0.567296,0.008192,0.006144,0.016288,13.1872,0.059392
+1475,67.7876,14.752,16.2165,0.038496,0.568128,0.008192,0.005856,0.016192,15.5213,0.058304
+1476,58.541,17.082,13.8387,0.038592,0.580288,0.009248,0.005088,0.016384,13.1297,0.059392
+1477,67.4661,14.8223,13.867,0.038944,0.628704,0.008192,0.006144,0.016096,13.1095,0.059392
+1478,68.1123,14.6816,15.2059,0.038912,0.656576,0.008224,0.004896,0.016384,14.422,0.058912
+1479,61.8208,16.1758,13.9212,0.037952,0.6696,0.008288,0.006048,0.018432,13.1215,0.059392
+1480,65.9029,15.1738,13.8524,0.03728,0.6224,0.008192,0.005568,0.015104,13.1049,0.058944
+1481,68.9006,14.5137,15.0446,0.038944,0.569312,0.008352,0.005984,0.016384,14.3462,0.059392
+1482,63.1242,15.8418,13.7182,0.038624,0.538848,0.008192,0.004832,0.016384,13.0533,0.058016
+1483,68.1395,14.6758,13.8092,0.038368,0.548992,0.008224,0.004512,0.017792,13.1324,0.058848
+1484,68.5592,14.5859,15.1083,0.038688,0.57984,0.008192,0.005792,0.016064,14.4019,0.057856
+1485,61.4277,16.2793,13.8416,0.038368,0.55904,0.008192,0.004704,0.016384,13.1555,0.059424
+1486,65.4146,15.2871,13.9261,0.038912,0.660928,0.020096,0.005056,0.026016,13.116,0.059136
+1487,65.8098,15.1953,15.1572,0.038912,0.659456,0.008224,0.013632,0.031264,14.3465,0.059296
+1488,63.335,15.7891,13.824,0.038656,0.583488,0.008224,0.005536,0.01536,13.113,0.059776
+1489,67.5818,14.7969,15.2167,0.038912,0.714752,0.008384,0.005952,0.016416,14.3746,0.057632
+1490,63.2567,15.8086,15.1012,0.038752,0.614368,0.008224,0.005536,0.015328,14.3604,0.058656
+1491,63.0542,15.8594,13.8429,0.038464,0.574336,0.008192,0.0056,0.015904,13.1402,0.060192
+1492,68.2212,14.6582,13.8363,0.038304,0.594528,0.008,0.005536,0.01616,13.1156,0.058208
+1493,69.2641,14.4375,15.1388,0.03888,0.556928,0.008192,0.005536,0.01616,14.455,0.058176
+1494,61.6867,16.2109,13.8748,0.03856,0.633728,0.008224,0.006112,0.016384,13.0949,0.076928
+1495,67.3241,14.8535,13.8568,0.038624,0.63008,0.008192,0.016736,0.01616,13.0876,0.059392
+1496,69.1518,14.4609,15.0363,0.038912,0.534112,0.008192,0.005568,0.01648,14.3736,0.059456
+1497,62.584,15.9785,13.734,0.03824,0.539104,0.008192,0.005536,0.015296,13.068,0.05968
+1498,68.1123,14.6816,13.7307,0.037856,0.542752,0.009216,0.005088,0.016384,13.0599,0.059488
+1499,69.0213,14.4883,15.0497,0.038912,0.603872,0.007904,0.004672,0.016384,14.319,0.058976
+1500,62.3554,16.0371,13.7685,0.037632,0.546816,0.008192,0.024576,0.016384,13.0744,0.06048
+1501,68.2667,14.6484,13.7769,0.03888,0.550944,0.009248,0.005088,0.016384,13.0984,0.057952
+1502,68.1304,14.6777,15.0446,0.038784,0.616608,0.00816,0.00608,0.015968,14.2996,0.059392
+1503,62.8915,15.9004,14.1953,0.037696,0.593376,0.008224,0.004608,0.016384,13.4758,0.0592
+1504,66.6406,15.0059,14.6472,0.038688,0.540576,0.008224,0.004928,0.016384,13.9796,0.058784
+1505,64.3378,15.543,14.1947,0.038624,0.577824,0.008192,0.005536,0.016256,13.4889,0.059392
+1506,64.2409,15.5664,14.1378,0.039712,0.913376,0.008192,0.005536,0.016064,13.0959,0.059008
+1507,68.203,14.6621,13.7903,0.038912,0.559104,0.008192,0.00608,0.016256,13.103,0.058816
+1508,67.2799,14.8633,15.0835,0.038592,0.607072,0.008192,0.005696,0.016128,14.3485,0.059232
+1509,62.8221,15.918,13.7892,0.038304,0.554656,0.008224,0.005056,0.016384,13.1071,0.05952
+1510,68.5592,14.5859,13.7748,0.0384,0.546496,0.008096,0.005024,0.016384,13.1005,0.059936
+1511,66.8146,14.9668,16.3034,0.038592,0.672064,0.008416,0.00592,0.028672,15.4911,0.058624
+1512,58.2679,17.1621,13.9585,0.038912,0.708288,0.008224,0.005536,0.015392,13.1214,0.060768
+1513,66.771,14.9766,13.8602,0.038912,0.617472,0.008256,0.005056,0.016384,13.1148,0.05936
+1514,68.7617,14.543,14.9855,0.038304,0.570272,0.007904,0.005536,0.015232,14.2889,0.059392
+1515,62.7759,15.9297,13.8042,0.037664,0.610304,0.008192,0.005664,0.016096,13.0661,0.06016
+1516,68.55,14.5879,13.8094,0.038432,0.618208,0.006976,0.005632,0.016096,13.065,0.05904
+1517,68.4218,14.6152,14.9777,0.037568,0.548,0.00816,0.004992,0.016384,14.303,0.059584
+1518,63.3037,15.7969,13.7708,0.038816,0.548544,0.008192,0.005568,0.015328,13.094,0.060352
+1519,67.707,14.7695,13.7485,0.0384,0.583904,0.00784,0.005024,0.016384,13.0369,0.060064
+1520,69.5747,14.373,14.207,0.038912,0.611392,0.008192,0.005056,0.016384,13.4692,0.057888
+1521,65.8267,15.1914,14.7297,0.038784,0.629536,0.008192,0.005632,0.015968,13.9721,0.059552
+1522,63.6578,15.709,13.8469,0.038688,0.631456,0.008256,0.006048,0.016384,13.0867,0.05936
+1523,67.8685,14.7344,15.1729,0.03824,0.684896,0.008192,0.005792,0.016128,14.3602,0.059456
+1524,62.151,16.0898,13.91,0.038912,0.693952,0.008224,0.005568,0.016768,13.0867,0.059872
+1525,67.6175,14.7891,14.2894,0.037856,0.644768,0.008192,0.005536,0.015296,13.5184,0.05936
+1526,65.4146,15.2871,15.2616,0.038624,0.706848,0.008192,0.00576,0.016576,14.4276,0.057984
+1527,60.207,16.6094,13.8588,0.040896,0.598112,0.00816,0.00608,0.01616,13.13,0.059392
+1528,67.9315,14.7207,13.7902,0.037856,0.58944,0.008224,0.005536,0.015328,13.0743,0.059488
+1529,65.4648,15.2754,15.1555,0.038816,0.651616,0.008192,0.00576,0.01616,14.3766,0.058368
+1530,62.038,16.1191,13.8568,0.038912,0.612352,0.008192,0.005664,0.01616,13.1172,0.058336
+1531,67.7159,14.7676,13.8053,0.038784,0.558624,0.008224,0.004672,0.016384,13.1189,0.059776
+1532,67.7787,14.7539,15.0063,0.038752,0.548672,0.008192,0.005056,0.016384,14.331,0.05824
+1533,62.3023,16.0508,13.8376,0.038624,0.606208,0.008192,0.005536,0.015232,13.1042,0.059616
+1534,66.9982,14.9258,13.861,0.038912,0.671072,0.008192,0.0048,0.016352,13.0619,0.059776
+1535,67.8415,14.7402,14.1907,0.0384,0.565504,0.008192,0.004704,0.02816,13.4865,0.059296
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..8e6c746
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,836.92,1.2443,0.750228,0.00707663,0.253149,0.00633034,0.00521488,0.00645113,0.0105325,0.0114433,0.439997,0.0100339
+max_1024,1678.69,3.44324,1.44592,0.038144,0.54624,0.04624,0.01568,0.043232,0.020512,0.027264,1.1487,0.268512
+min_1024,290.424,0.595703,0.62656,0.006144,0.214336,0.004576,0.004064,0.004864,0.008736,0.010144,0.351904,0.006336
+512,974.542,1.02612,0.828928,0.00656,0.401216,0.00576,0.004672,0.006176,0.017824,0.010816,0.368096,0.007808
+513,785.577,1.27295,0.641152,0.006752,0.221184,0.006144,0.005984,0.006304,0.009888,0.010624,0.366464,0.007808
+514,872.046,1.14673,0.681984,0.006144,0.259072,0.00512,0.005536,0.006304,0.010336,0.010592,0.372128,0.006752
+515,906.596,1.10303,0.697216,0.006784,0.255456,0.004992,0.006048,0.006144,0.01024,0.01024,0.39024,0.007072
+516,875.588,1.14209,1.07523,0.006208,0.23712,0.005824,0.004832,0.006144,0.011328,0.0112,0.783776,0.0088
+517,591.865,1.68958,0.65536,0.006144,0.229376,0.006144,0.006144,0.006144,0.01024,0.011808,0.371168,0.008192
+518,772.539,1.29443,0.704224,0.007296,0.281472,0.005792,0.004448,0.006144,0.011776,0.010784,0.368608,0.007904
+519,957.121,1.0448,0.67184,0.006624,0.249888,0.005888,0.0056,0.006336,0.009952,0.011104,0.36864,0.007808
+520,829.906,1.20496,0.666432,0.006816,0.243968,0.006176,0.004064,0.007264,0.010912,0.01168,0.367456,0.008096
+521,1048.51,0.953735,0.669344,0.006176,0.249216,0.00576,0.005088,0.006144,0.01024,0.012288,0.364544,0.009888
+522,540.655,1.84961,0.679936,0.009536,0.256704,0.006144,0.005408,0.006304,0.010848,0.010208,0.366592,0.008192
+523,1064.73,0.939209,0.983296,0.00688,0.224928,0.00576,0.005088,0.007936,0.010208,0.01056,0.702432,0.009504
+524,707.121,1.41418,0.638976,0.006176,0.221152,0.005856,0.004384,0.007392,0.01104,0.011552,0.364448,0.006976
+525,932.499,1.07239,0.677248,0.006304,0.247808,0.006144,0.005568,0.00576,0.009152,0.011712,0.376992,0.007808
+526,582.604,1.71643,0.68848,0.006496,0.2576,0.005792,0.004832,0.006208,0.010272,0.012096,0.376992,0.008192
+527,965.127,1.03613,0.669056,0.008192,0.239616,0.006144,0.004192,0.006144,0.010144,0.011968,0.375104,0.007552
+528,866.328,1.1543,0.665856,0.006432,0.240992,0.004992,0.005888,0.006144,0.011328,0.011072,0.371872,0.007136
+529,978.734,1.02173,0.835584,0.0072,0.401664,0.004992,0.005984,0.006176,0.01024,0.01136,0.379776,0.008192
+530,814.152,1.22827,0.652416,0.007936,0.229056,0.005792,0.004864,0.006304,0.010272,0.01152,0.368896,0.007776
+531,913.572,1.0946,0.641792,0.006784,0.220928,0.00576,0.004864,0.007584,0.009984,0.011104,0.366592,0.008192
+532,964.105,1.03723,0.635776,0.006752,0.221408,0.00576,0.004544,0.006144,0.011328,0.011168,0.36048,0.008192
+533,688.288,1.45288,0.851072,0.008864,0.415968,0.005344,0.00496,0.006144,0.010272,0.012224,0.38016,0.007136
+534,756.487,1.3219,0.637056,0.006336,0.22272,0.005952,0.0048,0.006144,0.010432,0.012032,0.360512,0.008128
+535,870.193,1.14917,0.651296,0.006176,0.222272,0.005056,0.006144,0.006176,0.01008,0.010592,0.377856,0.006944
+536,952.78,1.04956,0.651104,0.00688,0.2312,0.00576,0.004832,0.006144,0.011648,0.01088,0.365984,0.007776
+537,974.89,1.02576,0.634528,0.006368,0.221184,0.006144,0.00592,0.006144,0.010048,0.010656,0.360256,0.007808
+538,902.401,1.10815,0.649152,0.006752,0.223584,0.005984,0.004256,0.006144,0.011488,0.01104,0.372064,0.00784
+539,556.144,1.7981,1.31062,0.007744,0.444864,0.038912,0.0056,0.006304,0.010176,0.010688,0.77792,0.008416
+540,864.774,1.15637,0.982176,0.007616,0.236096,0.006144,0.005408,0.00688,0.011744,0.010784,0.688128,0.009376
+541,689.62,1.45007,0.668064,0.006624,0.251712,0.00576,0.004672,0.007168,0.011168,0.010464,0.362368,0.008128
+542,841.673,1.18811,0.659488,0.007264,0.236448,0.006176,0.005408,0.006304,0.012064,0.01104,0.367616,0.007168
+543,999.268,1.00073,0.706208,0.006144,0.294912,0.006144,0.0056,0.006272,0.01024,0.010656,0.3584,0.00784
+544,813.344,1.22949,1.27795,0.007552,0.44096,0.03072,0.005312,0.006432,0.010784,0.011872,0.75408,0.01024
+545,667.699,1.49768,0.644704,0.006336,0.227328,0.006144,0.005696,0.006368,0.010336,0.010368,0.36432,0.007808
+546,914.388,1.09363,0.8096,0.006784,0.39936,0.006144,0.005312,0.006304,0.010912,0.010272,0.356352,0.00816
+547,815.043,1.22693,0.64512,0.006144,0.221184,0.005856,0.00592,0.006304,0.009952,0.01088,0.371808,0.007072
+548,952.891,1.04944,0.657408,0.007328,0.225312,0.004992,0.005632,0.006176,0.010656,0.011872,0.378528,0.006912
+549,898.837,1.11255,0.651264,0.007168,0.223968,0.00576,0.004768,0.006208,0.010208,0.011872,0.37312,0.008192
+550,806.141,1.24048,0.833952,0.008896,0.417184,0.004928,0.005344,0.006272,0.01088,0.011808,0.360832,0.007808
+551,796.577,1.25537,0.633792,0.006752,0.225632,0.00592,0.005568,0.006272,0.01008,0.010912,0.354464,0.008192
+552,822.986,1.21509,0.646432,0.006144,0.233024,0.00576,0.004864,0.006208,0.01024,0.012288,0.359968,0.007936
+553,975.122,1.02551,0.63904,0.00624,0.221152,0.006144,0.005792,0.006496,0.01024,0.011616,0.363168,0.008192
+554,967.292,1.03381,0.638912,0.007616,0.221056,0.005024,0.005632,0.007584,0.010848,0.010528,0.362496,0.008128
+555,880.576,1.13562,0.65328,0.006144,0.223232,0.005792,0.0056,0.006944,0.010112,0.020704,0.366592,0.00816
+556,537.568,1.86023,0.643072,0.008192,0.229088,0.00576,0.004768,0.006144,0.0104,0.012128,0.3584,0.008192
+557,956.451,1.04553,0.647168,0.006144,0.22672,0.00576,0.005088,0.006144,0.01024,0.011328,0.367552,0.008192
+558,796.577,1.25537,0.633984,0.00736,0.223232,0.005024,0.005664,0.006528,0.010304,0.011936,0.35616,0.007776
+559,1003.43,0.996582,0.62656,0.006784,0.22096,0.00576,0.004704,0.007712,0.010112,0.010848,0.351904,0.007776
+560,839.947,1.19055,0.636672,0.006432,0.227008,0.00576,0.0048,0.006144,0.01136,0.011168,0.356224,0.007776
+561,1077.61,0.927979,0.64528,0.006464,0.223232,0.005888,0.005568,0.006272,0.01008,0.011104,0.36864,0.008032
+562,562.715,1.7771,0.665376,0.009248,0.250144,0.005024,0.005632,0.006336,0.010336,0.01216,0.358528,0.007968
+563,859.331,1.1637,0.975456,0.00672,0.225728,0.006112,0.004128,0.006144,0.01024,0.011552,0.695008,0.009824
+564,788.223,1.26868,0.63488,0.006208,0.223008,0.00576,0.00464,0.006144,0.011488,0.010912,0.359712,0.007008
+565,917.666,1.08972,0.649216,0.007328,0.231872,0.00576,0.004896,0.006176,0.010208,0.011744,0.36304,0.008192
+566,998.172,1.00183,0.638976,0.006144,0.227328,0.006144,0.005536,0.006624,0.0104,0.012224,0.356384,0.008192
+567,929.958,1.07532,1.24723,0.007424,0.450496,0.020352,0.005056,0.006144,0.01024,0.011776,0.726656,0.009088
+568,598.131,1.67188,0.641984,0.00672,0.223168,0.00576,0.004864,0.006208,0.010272,0.012128,0.36576,0.007104
+569,968.894,1.0321,0.823296,0.007616,0.401984,0.005824,0.005568,0.006304,0.010144,0.010976,0.366688,0.008192
+570,796.19,1.25598,0.64512,0.007264,0.22416,0.005888,0.004352,0.006176,0.011392,0.01104,0.366656,0.008192
+571,955.001,1.04712,0.630784,0.006144,0.221184,0.006144,0.006144,0.006144,0.010272,0.011328,0.35664,0.006784
+572,917.974,1.08936,0.66976,0.006432,0.249856,0.005792,0.004448,0.006144,0.01168,0.010848,0.366592,0.007968
+573,809.886,1.23474,0.837696,0.008256,0.419136,0.004832,0.00608,0.006176,0.01024,0.01232,0.363584,0.007072
+574,817.402,1.22339,0.6488,0.0064,0.22528,0.005792,0.004448,0.006144,0.011456,0.011072,0.370336,0.007872
+575,934.307,1.07031,0.84256,0.006784,0.4016,0.005856,0.0056,0.006304,0.010048,0.011104,0.388256,0.007008
+576,763.467,1.30981,0.6536,0.006432,0.219168,0.006112,0.004096,0.007968,0.010464,0.011936,0.379232,0.008192
+577,987.464,1.0127,0.641024,0.006176,0.225248,0.006048,0.0056,0.006784,0.01024,0.01184,0.361952,0.007136
+578,702.272,1.42395,0.700416,0.006656,0.278528,0.006176,0.005312,0.006272,0.010912,0.011584,0.3672,0.007776
+579,995.625,1.00439,0.874432,0.038144,0.41648,0.005568,0.004704,0.007168,0.009216,0.012096,0.372928,0.008128
+580,793.722,1.25989,0.645184,0.00624,0.225248,0.006176,0.00528,0.006304,0.010848,0.010496,0.3664,0.008192
+581,893.64,1.11902,0.837632,0.006144,0.401408,0.006048,0.005568,0.006432,0.010624,0.011296,0.38192,0.008192
+582,821.995,1.21655,0.643776,0.006752,0.22128,0.00576,0.00448,0.007232,0.010944,0.010528,0.368608,0.008192
+583,967.521,1.03357,0.632,0.007584,0.220864,0.005056,0.006112,0.006144,0.01024,0.01024,0.357952,0.007808
+584,912.148,1.09631,0.6656,0.007424,0.251776,0.004992,0.005632,0.006304,0.010624,0.012096,0.359936,0.006816
+585,598.48,1.6709,0.659456,0.008192,0.23552,0.006176,0.005664,0.006336,0.009952,0.010816,0.369728,0.007072
+586,958.129,1.0437,0.642432,0.00752,0.22768,0.00576,0.0048,0.006144,0.011296,0.011072,0.360288,0.007872
+587,874.84,1.14307,0.64512,0.006176,0.2232,0.00608,0.004384,0.007104,0.009088,0.011968,0.368928,0.008192
+588,945.74,1.05737,0.647168,0.007648,0.217632,0.006144,0.005472,0.006848,0.011296,0.010784,0.373152,0.008192
+589,928.798,1.07666,0.65376,0.00672,0.223264,0.006176,0.00592,0.006304,0.010304,0.011392,0.37568,0.008
+590,965.582,1.03564,1.03738,0.00736,0.228032,0.005792,0.004576,0.006144,0.011456,0.011072,0.75344,0.009504
+591,552.506,1.80994,0.654112,0.006752,0.237088,0.00576,0.005024,0.006144,0.01024,0.011456,0.364448,0.0072
+592,1041.58,0.960083,0.65968,0.006368,0.224512,0.005024,0.005664,0.006304,0.0104,0.011904,0.381376,0.008128
+593,801.33,1.24792,0.642464,0.00768,0.22304,0.004992,0.005952,0.006144,0.01024,0.012288,0.364384,0.007744
+594,921.381,1.08533,0.627968,0.006144,0.218784,0.00576,0.004832,0.006144,0.011392,0.011168,0.355936,0.007808
+595,840.378,1.18994,0.644768,0.006272,0.218624,0.005792,0.004928,0.006144,0.010272,0.011552,0.37344,0.007744
+596,1058.4,0.944824,1.24314,0.007776,0.468576,0.006976,0.005664,0.006272,0.010624,0.011648,0.71536,0.01024
+597,614.093,1.62842,0.666624,0.006144,0.227328,0.006176,0.00512,0.006304,0.00912,0.011904,0.386688,0.00784
+598,920.553,1.0863,0.978336,0.006464,0.220576,0.005792,0.005024,0.006144,0.011424,0.011104,0.702464,0.009344
+599,724.251,1.38074,0.632832,0.006144,0.221184,0.00576,0.005568,0.006272,0.009024,0.012192,0.358528,0.00816
+600,989.85,1.01025,0.636928,0.007616,0.217664,0.006144,0.005184,0.00656,0.010816,0.011776,0.364192,0.006976
+601,977.682,1.02283,0.65104,0.006208,0.2224,0.004992,0.00608,0.007392,0.008992,0.012288,0.374784,0.007904
+602,548.253,1.82397,0.653344,0.009888,0.223392,0.00576,0.004672,0.006144,0.01024,0.011488,0.373728,0.008032
+603,969.927,1.03101,0.630208,0.007584,0.217696,0.006144,0.005952,0.006272,0.010048,0.010496,0.358144,0.007872
+604,861.771,1.1604,0.82096,0.007456,0.399104,0.00512,0.005536,0.00624,0.01072,0.011456,0.367424,0.007904
+605,857.621,1.16602,0.640928,0.006176,0.220864,0.00576,0.004768,0.006176,0.010336,0.01216,0.366592,0.008096
+606,938.266,1.0658,0.645024,0.007328,0.217408,0.00576,0.004928,0.00608,0.0104,0.011776,0.373248,0.008096
+607,913.266,1.09497,0.647168,0.00784,0.221536,0.006144,0.006016,0.006272,0.010272,0.01024,0.370656,0.008192
+608,594.269,1.68274,0.646528,0.009536,0.223616,0.005792,0.004768,0.006144,0.011328,0.0112,0.366304,0.00784
+609,966.266,1.03491,0.651392,0.007296,0.220128,0.005824,0.005568,0.0064,0.008832,0.012288,0.378016,0.00704
+610,864.774,1.15637,0.637312,0.00656,0.219136,0.006112,0.00512,0.006144,0.010848,0.010656,0.364544,0.008192
+611,927.431,1.07825,0.657408,0.007744,0.219136,0.005792,0.004896,0.006144,0.01024,0.011968,0.383296,0.008192
+612,969.697,1.03125,0.660992,0.007552,0.21568,0.006144,0.004096,0.007264,0.01088,0.010528,0.39104,0.007808
+613,932.18,1.07275,1.02614,0.00624,0.224256,0.00512,0.006144,0.006144,0.010176,0.011328,0.74832,0.008416
+614,583.725,1.71313,0.642496,0.006144,0.223264,0.006016,0.004192,0.006144,0.011296,0.011232,0.366496,0.007712
+615,963.992,1.03735,0.652608,0.007776,0.221088,0.005792,0.00496,0.006144,0.01024,0.011712,0.377088,0.007808
+616,809.086,1.23596,0.647424,0.0064,0.218336,0.004992,0.005664,0.006432,0.010336,0.011776,0.37648,0.007008
+617,803.925,1.2439,0.668608,0.006752,0.244032,0.006144,0.005568,0.006336,0.010048,0.010848,0.372,0.00688
+618,1022.08,0.978394,0.684768,0.006816,0.260032,0.00576,0.004832,0.006144,0.01024,0.012288,0.370688,0.007968
+619,913.063,1.09521,1.27699,0.007424,0.455424,0.02048,0.006144,0.006144,0.010272,0.011488,0.750336,0.00928
+620,593.365,1.6853,0.65008,0.006816,0.22752,0.006144,0.004096,0.0072,0.010976,0.010496,0.369856,0.006976
+621,928.272,1.07727,0.988448,0.006432,0.235552,0.006112,0.005376,0.00624,0.00992,0.011136,0.697984,0.009696
+622,771.084,1.29688,0.640128,0.007232,0.218048,0.005888,0.004352,0.006176,0.011616,0.010912,0.367968,0.007936
+623,907.098,1.10242,0.64512,0.006176,0.22288,0.00576,0.0048,0.006144,0.01024,0.01168,0.370624,0.006816
+624,928.062,1.07751,0.647104,0.007488,0.221024,0.005024,0.005632,0.006304,0.01056,0.0104,0.372544,0.008128
+625,558.228,1.79138,0.663552,0.008192,0.23552,0.006144,0.0056,0.006304,0.010176,0.010688,0.37376,0.007168
+626,986.513,1.01367,0.647552,0.006528,0.22528,0.00576,0.00448,0.006144,0.010368,0.012064,0.368736,0.008192
+627,843.059,1.18616,0.64512,0.006144,0.220768,0.00576,0.004928,0.006112,0.01024,0.011872,0.371104,0.008192
+628,953.556,1.04871,0.651456,0.006336,0.222912,0.00576,0.0048,0.006144,0.01024,0.011872,0.3752,0.008192
+629,933.136,1.07166,0.655456,0.006368,0.222432,0.004992,0.005888,0.006304,0.010016,0.010464,0.380928,0.008064
+630,674.738,1.48206,0.662272,0.006752,0.237696,0.005824,0.004416,0.006144,0.011552,0.01104,0.370624,0.008224
+631,630.348,1.58643,0.670784,0.009792,0.241152,0.005056,0.006144,0.006176,0.010208,0.011296,0.373376,0.007584
+632,991.048,1.00903,0.980928,0.007392,0.22608,0.005952,0.00544,0.006464,0.010816,0.011584,0.697056,0.010144
+633,711.976,1.40454,0.643648,0.00672,0.221184,0.006048,0.0056,0.006784,0.009984,0.010528,0.368608,0.008192
+634,983.197,1.01709,0.646496,0.006176,0.221056,0.005728,0.00464,0.007328,0.010656,0.01072,0.372256,0.007936
+635,932.605,1.07227,0.647168,0.006144,0.226368,0.005056,0.005824,0.006336,0.010368,0.011872,0.367008,0.008192
+636,535.53,1.86731,0.640896,0.008896,0.222752,0.004672,0.005504,0.006304,0.010624,0.01136,0.363008,0.007776
+637,972.575,1.0282,0.645248,0.006304,0.221152,0.005984,0.005312,0.006272,0.009248,0.011968,0.371872,0.007136
+638,934.946,1.06958,0.822944,0.007744,0.401568,0.00576,0.004768,0.006144,0.010272,0.01216,0.366688,0.00784
+639,814.719,1.22742,0.638976,0.0072,0.216032,0.006176,0.005728,0.0064,0.010368,0.011712,0.367168,0.008192
+640,959.138,1.0426,0.638976,0.007264,0.223456,0.006528,0.004416,0.006176,0.011488,0.01104,0.3616,0.007008
+641,956.451,1.04553,0.649344,0.006272,0.224544,0.005024,0.005952,0.006144,0.01024,0.010272,0.372704,0.008192
+642,550.908,1.81519,0.70176,0.009856,0.266624,0.006176,0.005152,0.006304,0.010848,0.010432,0.37856,0.007808
+643,1240.08,0.806396,0.668224,0.006688,0.241728,0.00592,0.0056,0.00688,0.01024,0.011296,0.37168,0.008192
+644,819.364,1.22046,0.641824,0.006816,0.224448,0.005056,0.005568,0.00672,0.011296,0.011232,0.362496,0.008192
+645,931.862,1.07312,0.644096,0.00688,0.22352,0.00592,0.0056,0.006112,0.01008,0.011168,0.366624,0.008192
+646,954.334,1.04785,0.64176,0.006784,0.217312,0.006048,0.00416,0.006144,0.011584,0.010944,0.370688,0.008096
+647,934.946,1.06958,0.65568,0.006496,0.227296,0.006144,0.005824,0.006368,0.010112,0.010496,0.376032,0.006912
+648,643.721,1.55347,0.652256,0.008928,0.231584,0.00576,0.004576,0.006144,0.011424,0.011104,0.364544,0.008192
+649,986.513,1.01367,0.655104,0.006144,0.220896,0.00576,0.004768,0.006144,0.010272,0.01184,0.381344,0.007936
+650,794.183,1.25916,0.639488,0.00688,0.225056,0.005728,0.004864,0.006144,0.01024,0.011936,0.3608,0.00784
+651,1011.11,0.989014,0.638976,0.006144,0.219136,0.00608,0.005568,0.006272,0.01008,0.010912,0.366592,0.008192
+652,940.42,1.06335,0.64592,0.006848,0.219232,0.006144,0.005952,0.006336,0.01024,0.011936,0.37104,0.008192
+653,946.068,1.05701,0.64672,0.007616,0.22688,0.00512,0.006144,0.007648,0.008864,0.01216,0.364352,0.007936
+654,581.158,1.7207,0.663552,0.008608,0.23552,0.006144,0.005152,0.006304,0.009024,0.011936,0.373088,0.007776
+655,976.633,1.02393,0.65408,0.006688,0.223456,0.005888,0.005568,0.00688,0.01008,0.010496,0.376832,0.008192
+656,815.855,1.22571,0.667648,0.007456,0.2416,0.004992,0.00576,0.006272,0.010432,0.01168,0.372512,0.006944
+657,982.019,1.01831,0.661536,0.006656,0.222656,0.005792,0.005024,0.006176,0.010208,0.012288,0.38496,0.007776
+658,889.951,1.12366,0.636992,0.006624,0.218432,0.005984,0.004896,0.006208,0.010272,0.012032,0.364704,0.00784
+659,987.226,1.01294,1.05686,0.006752,0.220864,0.00576,0.005088,0.006144,0.01024,0.011488,0.781088,0.00944
+660,564.888,1.77026,0.645984,0.006752,0.222496,0.005088,0.005568,0.006304,0.010656,0.010272,0.370656,0.008192
+661,981.901,1.01843,0.644768,0.0064,0.220832,0.005536,0.005056,0.00752,0.01024,0.010944,0.370432,0.007808
+662,799.61,1.25061,0.64096,0.007552,0.21776,0.005952,0.004256,0.006144,0.011808,0.01072,0.36864,0.008128
+663,965.355,1.03589,0.639744,0.006752,0.218464,0.004928,0.006144,0.006144,0.01024,0.011808,0.368192,0.007072
+664,961.502,1.04004,0.65328,0.007744,0.223104,0.00576,0.004896,0.006304,0.011488,0.010912,0.374912,0.00816
+665,851.736,1.17407,1.24211,0.008128,0.462912,0.008032,0.0056,0.006208,0.010272,0.010848,0.720736,0.009376
+666,654.888,1.52698,0.638656,0.006464,0.222976,0.00576,0.004704,0.00592,0.010496,0.011392,0.363008,0.007936
+667,891.307,1.12195,0.976,0.007264,0.219904,0.00576,0.00464,0.006144,0.010272,0.01152,0.70096,0.009536
+668,516.422,1.9364,0.687328,0.007776,0.237536,0.005792,0.004896,0.006144,0.011488,0.011008,0.394688,0.008
+669,1678.69,0.595703,0.661504,0.006144,0.227232,0.005792,0.004544,0.006144,0.01024,0.011776,0.38144,0.008192
+670,842.538,1.18689,0.658208,0.006784,0.223392,0.005984,0.004256,0.006176,0.011648,0.010848,0.381984,0.007136
+671,677.417,1.4762,0.658752,0.009248,0.222176,0.006176,0.005856,0.006304,0.010048,0.010528,0.380672,0.007744
+672,973.268,1.02747,0.647328,0.006304,0.21872,0.00576,0.004768,0.006272,0.01024,0.011776,0.37648,0.007008
+673,949.797,1.05286,0.815456,0.006496,0.401152,0.00576,0.004736,0.007264,0.009344,0.012064,0.360448,0.008192
+674,824.809,1.2124,0.649568,0.006592,0.227296,0.006144,0.005504,0.006208,0.010336,0.01072,0.36864,0.008128
+675,913.674,1.09448,0.636448,0.006208,0.221152,0.006144,0.00608,0.006208,0.010112,0.0104,0.362368,0.007776
+676,950.238,1.05237,0.645536,0.00656,0.221184,0.006144,0.005152,0.006304,0.010816,0.010528,0.370656,0.008192
+677,538.664,1.85645,0.655424,0.008704,0.237568,0.005792,0.005568,0.006272,0.01008,0.011072,0.362432,0.007936
+678,972.806,1.02795,0.652832,0.006496,0.2232,0.00736,0.004896,0.006176,0.010272,0.011936,0.374592,0.007904
+679,553.327,1.80725,0.639232,0.0064,0.218976,0.00576,0.00464,0.008,0.009952,0.01072,0.366592,0.008192
+680,1503.95,0.664917,0.643072,0.0072,0.22624,0.00576,0.004512,0.007328,0.010976,0.010496,0.362368,0.008192
+681,965.241,1.03601,0.651264,0.006144,0.223232,0.006176,0.00576,0.006336,0.009984,0.010688,0.374784,0.00816
+682,587.957,1.70081,1.24077,0.006432,0.46672,0.007744,0.004768,0.006144,0.011392,0.011136,0.7168,0.009632
+683,960.15,1.0415,0.642816,0.006336,0.228736,0.005792,0.005088,0.006144,0.01024,0.011392,0.361312,0.007776
+684,912.351,1.09607,0.966752,0.00624,0.217088,0.006144,0.004096,0.007232,0.009152,0.011872,0.694688,0.01024
+685,772.393,1.29468,0.63696,0.006784,0.224672,0.005024,0.005568,0.0064,0.009952,0.010848,0.359776,0.007936
+686,913.165,1.09509,0.642464,0.006144,0.223136,0.00624,0.005632,0.006272,0.010624,0.01136,0.365248,0.007808
+687,942.584,1.06091,0.665312,0.007616,0.227552,0.006496,0.00608,0.006208,0.010112,0.010368,0.382976,0.007904
+688,566.92,1.76392,0.68608,0.009696,0.266784,0.006112,0.004128,0.006144,0.011872,0.010784,0.362368,0.008192
+689,1009.36,0.990723,0.650464,0.006144,0.227328,0.006016,0.005568,0.006304,0.010144,0.010912,0.37024,0.007808
+690,954.779,1.04736,0.824704,0.0064,0.401312,0.00576,0.004576,0.006144,0.011392,0.011104,0.370272,0.007744
+691,760.914,1.31421,0.67104,0.006176,0.247776,0.006144,0.005952,0.006304,0.010272,0.011584,0.369024,0.007808
+692,1015.62,0.984619,0.669696,0.007488,0.23008,0.005888,0.004352,0.007552,0.010912,0.011456,0.38496,0.007008
+693,919.21,1.08789,0.65632,0.00672,0.226816,0.004992,0.006144,0.006144,0.010144,0.011456,0.37728,0.006624
+694,663.051,1.50818,0.641024,0.009344,0.227712,0.005792,0.004896,0.006208,0.010272,0.011872,0.356736,0.008192
+695,939.45,1.06445,0.650912,0.007328,0.226144,0.006144,0.006144,0.006144,0.010208,0.010272,0.370688,0.00784
+696,938.696,1.06531,0.819232,0.006176,0.401184,0.00576,0.004704,0.006144,0.010304,0.012064,0.366016,0.00688
+697,784.524,1.27466,0.645568,0.006656,0.224576,0.005024,0.00592,0.007232,0.009152,0.012288,0.366592,0.008128
+698,1024.26,0.976318,0.638592,0.007488,0.21984,0.006176,0.004064,0.007904,0.010528,0.011552,0.3632,0.00784
+699,926.802,1.07898,0.6488,0.006144,0.229408,0.006112,0.005696,0.006304,0.010016,0.010752,0.366592,0.007776
+700,495.704,2.01733,0.683392,0.008192,0.257024,0.005152,0.00608,0.006176,0.01024,0.011584,0.37088,0.008064
+701,1167.78,0.856323,0.698368,0.007712,0.252384,0.006112,0.005568,0.006336,0.010112,0.010784,0.391168,0.008192
+702,741.626,1.34839,0.653152,0.007328,0.234336,0.006176,0.004064,0.006176,0.012096,0.010432,0.364512,0.008032
+703,980.608,1.01978,0.639168,0.007008,0.227008,0.005824,0.004736,0.006304,0.010112,0.01184,0.358368,0.007968
+704,859.691,1.16321,0.654848,0.006272,0.236864,0.004992,0.00592,0.006144,0.011584,0.010944,0.36432,0.007808
+705,982.254,1.01807,1.07622,0.006784,0.247232,0.005088,0.006112,0.006176,0.01024,0.011776,0.772576,0.01024
+706,605.828,1.65063,0.653312,0.006144,0.229376,0.005792,0.004448,0.007264,0.01088,0.010528,0.37184,0.00704
+707,891.889,1.12122,0.978816,0.006144,0.223232,0.006144,0.004096,0.006144,0.01024,0.011552,0.701152,0.010112
+708,759.081,1.31738,0.639136,0.006528,0.225248,0.00576,0.004512,0.007296,0.010816,0.01056,0.360448,0.007968
+709,937.3,1.06689,0.646432,0.008192,0.223232,0.006144,0.005152,0.006304,0.00912,0.012192,0.368288,0.007808
+710,936.015,1.06836,0.651936,0.006784,0.221216,0.006176,0.005216,0.006304,0.0104,0.010848,0.3768,0.008192
+711,913.266,1.09497,1.25037,0.00768,0.46336,0.008192,0.0056,0.006336,0.010464,0.010368,0.729056,0.009312
+712,610.159,1.63892,0.656608,0.007232,0.230336,0.006176,0.005408,0.006272,0.010688,0.0104,0.372288,0.007808
+713,678.146,1.47461,0.841888,0.006208,0.415552,0.005888,0.00496,0.006112,0.010272,0.012256,0.372736,0.007904
+714,990.928,1.00916,0.66256,0.007424,0.239488,0.004992,0.005408,0.006304,0.012576,0.010528,0.367904,0.007936
+715,914.184,1.09387,0.661952,0.006592,0.23904,0.00576,0.005088,0.006112,0.010272,0.011552,0.369344,0.008192
+716,979.787,1.02063,0.68608,0.006144,0.263936,0.00576,0.004736,0.006144,0.011392,0.011136,0.36864,0.008192
+717,661.072,1.5127,0.662656,0.008192,0.236576,0.005088,0.006144,0.006144,0.01024,0.011488,0.370976,0.007808
+718,955.112,1.047,0.654848,0.007744,0.221632,0.006144,0.005344,0.006304,0.01088,0.011328,0.377504,0.007968
+719,853.422,1.17175,0.6656,0.007584,0.23168,0.005792,0.0048,0.006144,0.01024,0.011488,0.37968,0.008192
+720,944.105,1.0592,0.647008,0.007552,0.221824,0.005984,0.005568,0.006336,0.01072,0.010304,0.370688,0.008032
+721,947.381,1.05554,0.652928,0.006144,0.227328,0.006048,0.005568,0.006304,0.010176,0.010816,0.372736,0.007808
+722,920.036,1.08691,0.651424,0.006304,0.22912,0.005888,0.004608,0.006144,0.012128,0.0104,0.36864,0.008192
+723,855.472,1.16895,1.24115,0.006688,0.462464,0.007776,0.004896,0.0072,0.010336,0.011072,0.72096,0.00976
+724,626.539,1.59607,0.650752,0.00768,0.227744,0.005792,0.004544,0.006144,0.010304,0.012128,0.368576,0.00784
+725,769.419,1.29968,0.662848,0.006144,0.241696,0.006016,0.005568,0.006304,0.00992,0.011072,0.368448,0.00768
+726,865.322,1.15564,0.67104,0.006336,0.263456,0.00576,0.004896,0.006272,0.01024,0.011296,0.355008,0.007776
+727,946.177,1.05688,0.681984,0.00784,0.263552,0.005088,0.006144,0.006144,0.01024,0.011328,0.363488,0.00816
+728,847.156,1.18042,1.05968,0.006752,0.239808,0.005824,0.004416,0.006144,0.012288,0.011456,0.764384,0.008608
+729,626.779,1.59546,0.652768,0.00768,0.231936,0.006144,0.00592,0.006176,0.010304,0.010368,0.366464,0.007776
+730,954.556,1.04761,0.976064,0.007168,0.226272,0.00576,0.004512,0.006144,0.011456,0.011072,0.694272,0.009408
+731,719.101,1.39062,0.644928,0.006688,0.22528,0.006144,0.006016,0.006272,0.01024,0.011648,0.364864,0.007776
+732,977.916,1.02258,0.659296,0.00656,0.228896,0.005792,0.004896,0.006176,0.01136,0.011168,0.37664,0.007808
+733,905.494,1.10437,0.646816,0.00736,0.228064,0.005792,0.004544,0.007328,0.009088,0.011968,0.364736,0.007936
+734,595.695,1.67871,0.692672,0.00864,0.268288,0.006144,0.005312,0.006272,0.010944,0.012192,0.366688,0.008192
+735,966.038,1.03516,0.66224,0.00672,0.229536,0.006176,0.005984,0.006304,0.010176,0.010272,0.380032,0.00704
+736,830.074,1.20471,0.65536,0.006176,0.225248,0.006176,0.004064,0.006304,0.011584,0.010816,0.3768,0.008192
+737,958.129,1.0437,0.651712,0.006592,0.221184,0.006144,0.005696,0.006368,0.00976,0.010976,0.37792,0.007072
+738,891.792,1.12134,0.649216,0.007424,0.225184,0.004992,0.005664,0.006592,0.010272,0.012,0.368896,0.008192
+739,748.949,1.33521,0.669696,0.007776,0.244128,0.006144,0.005952,0.006336,0.01024,0.011648,0.368544,0.008928
+740,655.308,1.526,0.661856,0.0088,0.239456,0.00576,0.00464,0.006144,0.011424,0.011104,0.366336,0.008192
+741,1003.43,0.996582,0.64848,0.007584,0.227072,0.004992,0.006112,0.006144,0.01024,0.011744,0.366816,0.007776
+742,775.758,1.28906,0.651392,0.006176,0.227296,0.006144,0.00528,0.007008,0.011392,0.011136,0.370112,0.006848
+743,962.293,1.03918,0.649664,0.006592,0.22704,0.00576,0.004768,0.006144,0.010272,0.011936,0.370336,0.006816
+744,916.946,1.09058,0.657408,0.007392,0.244512,0.006112,0.004128,0.006144,0.01168,0.010848,0.35952,0.007072
+745,939.557,1.06433,1.33126,0.006848,0.231488,0.005824,0.005568,0.006272,0.009984,0.010944,0.78992,0.264416
+746,568.297,1.75964,0.66448,0.006752,0.231264,0.00576,0.004896,0.006208,0.011424,0.011104,0.379968,0.007104
+747,885.526,1.12927,1.01786,0.006144,0.251904,0.00544,0.0048,0.006144,0.01024,0.011648,0.712512,0.009024
+748,735.632,1.35938,0.644896,0.00688,0.223264,0.00576,0.004512,0.0072,0.010848,0.010656,0.367968,0.007808
+749,906.395,1.10327,0.674816,0.006176,0.251648,0.005792,0.004672,0.007232,0.009152,0.012192,0.370208,0.007744
+750,962.067,1.03943,0.669696,0.007232,0.236416,0.00576,0.004544,0.006144,0.01152,0.011008,0.37888,0.008192
+751,478.589,2.08948,0.71136,0.008896,0.262144,0.006144,0.00592,0.006368,0.01024,0.01152,0.39296,0.007168
+752,1455.58,0.687012,0.662176,0.006752,0.23184,0.005984,0.004256,0.006144,0.011392,0.011104,0.376864,0.00784
+753,803.689,1.24426,0.65408,0.00672,0.22752,0.006144,0.005824,0.006304,0.009824,0.010848,0.373888,0.007008
+754,952.005,1.05042,0.65072,0.006144,0.228352,0.00512,0.005504,0.00656,0.010464,0.011712,0.369024,0.00784
+755,950.679,1.05188,0.649536,0.006784,0.227712,0.005952,0.005568,0.00624,0.00992,0.011072,0.36848,0.007808
+756,938.266,1.0658,1.05363,0.00688,0.233696,0.006144,0.004096,0.006304,0.012128,0.011296,0.764768,0.00832
+757,567.864,1.76099,0.675424,0.006144,0.237376,0.005792,0.00464,0.007296,0.00912,0.011936,0.385312,0.007808
+758,991.407,1.00867,0.665824,0.00672,0.227168,0.005728,0.004704,0.006176,0.011968,0.01056,0.384864,0.007936
+759,728.566,1.37256,0.68608,0.006176,0.255808,0.005856,0.004544,0.00736,0.010112,0.011136,0.378048,0.00704
+760,998.051,1.00195,0.65808,0.00688,0.229504,0.005792,0.004448,0.0072,0.010976,0.010528,0.374752,0.008
+761,895.105,1.11719,0.656832,0.006208,0.233472,0.006144,0.005664,0.006336,0.009984,0.010784,0.370432,0.007808
+762,861.228,1.16113,1.28819,0.007776,0.444832,0.032832,0.005728,0.006336,0.0104,0.01184,0.76,0.008448
+763,624.438,1.60144,0.65104,0.007264,0.228256,0.005952,0.004288,0.006144,0.010272,0.011808,0.369056,0.008
+764,737.885,1.35522,1.01725,0.006208,0.249728,0.005408,0.00496,0.006176,0.01152,0.01088,0.7128,0.009568
+765,863.133,1.15857,0.679392,0.006528,0.249856,0.006144,0.006144,0.006144,0.01024,0.011424,0.375104,0.007808
+766,908.607,1.10059,0.659392,0.006176,0.229376,0.00608,0.00416,0.00736,0.010816,0.010496,0.376832,0.008096
+767,937.944,1.06616,0.671744,0.007392,0.243936,0.00576,0.005056,0.006144,0.010272,0.011488,0.374656,0.00704
+768,771.302,1.29651,0.847456,0.008352,0.417632,0.005728,0.004512,0.006144,0.011296,0.011232,0.374752,0.007808
+769,801.801,1.24719,0.673824,0.007488,0.244416,0.006144,0.005952,0.006272,0.01008,0.011488,0.37376,0.008224
+770,918.901,1.08826,0.829184,0.007712,0.401216,0.005792,0.004896,0.006304,0.010336,0.011616,0.373376,0.007936
+771,809.246,1.23572,0.671648,0.007488,0.228032,0.006016,0.0056,0.006304,0.010112,0.01088,0.38912,0.008096
+772,915.001,1.0929,0.649056,0.006272,0.227328,0.00592,0.00432,0.006144,0.011456,0.011072,0.368384,0.00816
+773,966.038,1.03516,0.658848,0.00752,0.22976,0.005792,0.004736,0.007296,0.011136,0.011456,0.373248,0.007904
+774,630.59,1.58582,0.701536,0.009856,0.262496,0.00576,0.004512,0.006144,0.011776,0.010752,0.382432,0.007808
+775,915.512,1.09229,0.664736,0.006272,0.224736,0.005984,0.0048,0.006144,0.01024,0.011616,0.387168,0.007776
+776,855.919,1.16833,0.667648,0.00768,0.225792,0.006144,0.004096,0.007424,0.011008,0.011392,0.38592,0.008192
+777,598.918,1.66968,0.724992,0.007328,0.279392,0.006048,0.0056,0.006432,0.010592,0.010272,0.391136,0.008192
+778,1140.47,0.876831,0.727648,0.00672,0.286048,0.004768,0.005472,0.006304,0.010752,0.010368,0.390176,0.00704
+779,855.74,1.16858,1.25885,0.006144,0.459936,0.007008,0.006144,0.006144,0.01024,0.011968,0.741696,0.009568
+780,622.067,1.60754,0.681344,0.007488,0.25424,0.00576,0.004896,0.006144,0.01024,0.012,0.372608,0.007968
+781,906.496,1.10315,1.01581,0.007232,0.236288,0.005408,0.004672,0.006496,0.010272,0.011296,0.725824,0.00832
+782,697.667,1.43335,0.651424,0.006784,0.227008,0.00576,0.004896,0.006208,0.01024,0.012224,0.370496,0.007808
+783,972.229,1.02856,0.647904,0.006848,0.223232,0.005984,0.0056,0.006848,0.00992,0.01056,0.372,0.006912
+784,929.641,1.07568,0.671392,0.00624,0.239136,0.00576,0.004864,0.00624,0.010336,0.012032,0.379008,0.007776
+785,561.211,1.78186,0.667936,0.008896,0.240928,0.004864,0.00608,0.006208,0.01024,0.012288,0.370592,0.00784
+786,979.904,1.02051,0.65088,0.007488,0.228032,0.006016,0.004224,0.007264,0.010976,0.010496,0.368448,0.007936
+787,871.119,1.14795,0.666528,0.006752,0.233792,0.006144,0.006144,0.006176,0.009728,0.01072,0.37888,0.008192
+788,912.554,1.09583,0.6536,0.006432,0.225024,0.00576,0.004736,0.006144,0.011712,0.010848,0.374752,0.008192
+789,918.798,1.08838,0.65376,0.006752,0.22352,0.006112,0.005568,0.00672,0.01024,0.011776,0.375168,0.007904
+790,688.577,1.45227,0.711872,0.00752,0.268704,0.00576,0.004736,0.006144,0.010272,0.011648,0.38928,0.007808
+791,668.298,1.49634,0.688128,0.008192,0.256,0.006176,0.005888,0.006304,0.010016,0.01056,0.377952,0.00704
+792,922.107,1.08447,1.00442,0.006848,0.22736,0.00576,0.00464,0.006144,0.011968,0.01056,0.722304,0.008832
+793,728.307,1.37305,0.64752,0.006496,0.225312,0.005984,0.005568,0.006848,0.01024,0.011392,0.367488,0.008192
+794,929.22,1.07617,0.648992,0.006336,0.2232,0.00592,0.00432,0.006176,0.01168,0.010848,0.372576,0.007936
+795,945.849,1.05725,0.657312,0.0064,0.227328,0.006144,0.006016,0.006272,0.01008,0.0104,0.376832,0.00784
+796,517.662,1.93176,0.6656,0.00976,0.2376,0.00576,0.004896,0.006176,0.01024,0.011584,0.372512,0.007072
+797,946.614,1.0564,0.663552,0.007648,0.227008,0.005024,0.00608,0.006144,0.01024,0.01184,0.381376,0.008192
+798,884.092,1.1311,0.66224,0.00672,0.226944,0.005792,0.004896,0.006144,0.010336,0.011968,0.381248,0.008192
+799,886.196,1.12842,0.655328,0.00736,0.222016,0.006144,0.005664,0.006304,0.010592,0.01184,0.377248,0.00816
+800,965.241,1.03601,0.650784,0.006144,0.217088,0.006144,0.005696,0.006368,0.010496,0.011872,0.379136,0.00784
+801,945.849,1.05725,1.06496,0.007616,0.22384,0.006112,0.006048,0.00624,0.01024,0.011456,0.785056,0.008352
+802,513.026,1.94922,0.673568,0.007712,0.245664,0.005888,0.004864,0.006208,0.010272,0.012192,0.372736,0.008032
+803,1116.08,0.895996,0.673568,0.007424,0.223008,0.00512,0.006112,0.006144,0.010272,0.011328,0.396192,0.007968
+804,746.288,1.33997,0.674048,0.006752,0.244864,0.005056,0.0056,0.006176,0.008736,0.011904,0.377184,0.007776
+805,989.611,1.0105,0.659232,0.00752,0.219808,0.006144,0.006144,0.006144,0.010208,0.010304,0.384992,0.007968
+806,893.153,1.11963,0.663744,0.006336,0.22528,0.006112,0.004128,0.006144,0.011648,0.010912,0.384992,0.008192
+807,941.285,1.06238,1.28861,0.006528,0.455936,0.017152,0.006144,0.006144,0.01024,0.011776,0.76592,0.008768
+808,582.108,1.7179,0.661664,0.006144,0.227264,0.00576,0.004544,0.006144,0.01136,0.011168,0.382144,0.007136
+809,930.169,1.07507,0.99504,0.006144,0.219136,0.005632,0.004608,0.007264,0.010176,0.011264,0.720864,0.009952
+810,747.786,1.33728,0.649728,0.006656,0.21888,0.005888,0.004608,0.006144,0.010272,0.012256,0.376832,0.008192
+811,906.897,1.10266,0.650144,0.00672,0.223456,0.005792,0.004576,0.007296,0.00912,0.012224,0.374112,0.006848
+812,934.52,1.07007,0.659456,0.007328,0.22512,0.00512,0.005376,0.006272,0.01088,0.011776,0.379424,0.00816
+813,496.395,2.01453,0.67776,0.008832,0.2328,0.004992,0.006048,0.006144,0.01024,0.011968,0.38896,0.007776
+814,981.078,1.01929,0.653984,0.006784,0.224896,0.00576,0.004928,0.006112,0.01136,0.011136,0.374816,0.008192
+815,773.414,1.29297,0.6688,0.007552,0.231104,0.005056,0.006144,0.006176,0.01024,0.010208,0.38448,0.00784
+816,955.67,1.04639,0.651456,0.006336,0.222976,0.00576,0.004736,0.006144,0.01024,0.012288,0.374784,0.008192
+817,952.005,1.05042,0.666976,0.006176,0.229024,0.005792,0.004768,0.006144,0.01024,0.011968,0.384928,0.007936
+818,926.487,1.07935,1.34144,0.007424,0.530752,0.006592,0.005696,0.006336,0.010528,0.011712,0.75216,0.01024
+819,545.842,1.83203,0.659456,0.006144,0.225184,0.005792,0.004544,0.007328,0.009056,0.012096,0.38112,0.008192
+820,941.826,1.06177,1.0161,0.006688,0.223232,0.00592,0.004288,0.006144,0.011744,0.010784,0.73728,0.010016
+821,726.048,1.37732,0.659456,0.006144,0.221184,0.006048,0.005568,0.006304,0.010048,0.010976,0.384992,0.008192
+822,974.31,1.02637,0.64736,0.006592,0.221184,0.006144,0.004096,0.007424,0.011008,0.0104,0.372576,0.007936
+823,934.84,1.0697,0.667232,0.00624,0.224928,0.00576,0.004736,0.006272,0.010144,0.012224,0.38912,0.007808
+824,555.427,1.80042,0.664896,0.009472,0.230144,0.006144,0.005248,0.006304,0.01088,0.010336,0.378464,0.007904
+825,972.113,1.02869,0.657504,0.006272,0.226848,0.00576,0.004928,0.006176,0.01024,0.011584,0.377504,0.008192
+826,879.725,1.13672,0.65136,0.00688,0.224992,0.005856,0.004864,0.006144,0.01024,0.011904,0.372672,0.007808
+827,707.854,1.41272,0.661728,0.006464,0.231136,0.005792,0.004736,0.006176,0.01024,0.010272,0.378816,0.008096
+828,1265.56,0.790161,0.660256,0.006848,0.222752,0.005792,0.004896,0.006272,0.01024,0.011936,0.383328,0.008192
+829,883.234,1.1322,1.13869,0.007168,0.257024,0.00608,0.005568,0.006368,0.010496,0.0104,0.826976,0.008608
+830,570.474,1.75293,0.667648,0.007712,0.236,0.006048,0.004192,0.006144,0.011968,0.011648,0.375744,0.008192
+831,904.494,1.10559,0.667776,0.006592,0.22528,0.006144,0.005664,0.006304,0.010048,0.010752,0.38912,0.007872
+832,789.362,1.26685,0.656992,0.006368,0.22288,0.00576,0.004832,0.006144,0.01024,0.01184,0.38112,0.007808
+833,970.271,1.03064,0.65568,0.006464,0.221184,0.005952,0.005568,0.006464,0.010272,0.010688,0.380896,0.008192
+834,913.98,1.09412,0.663392,0.006176,0.225248,0.006144,0.004096,0.007296,0.011104,0.011456,0.38384,0.008032
+835,913.674,1.09448,1.35373,0.007584,0.494176,0.032288,0.004576,0.007328,0.010656,0.01072,0.778048,0.008352
+836,571.269,1.75049,0.654848,0.006592,0.222208,0.00512,0.00544,0.006144,0.010944,0.011424,0.379104,0.007872
+837,918.798,1.08838,0.831488,0.007744,0.399808,0.006176,0.006112,0.006144,0.01024,0.010272,0.378112,0.00688
+838,818.709,1.22144,0.669344,0.006592,0.231424,0.006016,0.00544,0.006304,0.010912,0.011328,0.383328,0.008
+839,901.706,1.10901,0.65808,0.00672,0.219456,0.006144,0.005408,0.006368,0.00992,0.01072,0.385376,0.007968
+840,643.014,1.55518,0.677888,0.00768,0.231936,0.006144,0.005376,0.006272,0.01088,0.011552,0.389888,0.00816
+841,789.286,1.26697,0.677888,0.009376,0.241568,0.005088,0.00608,0.006176,0.010112,0.0104,0.380928,0.00816
+842,937.729,1.06641,0.655456,0.00656,0.22304,0.00576,0.004672,0.006144,0.011616,0.010944,0.378848,0.007872
+843,856.725,1.16724,0.659456,0.007808,0.223648,0.00608,0.0056,0.006272,0.009984,0.010976,0.382144,0.006944
+844,1001.71,0.998291,0.650432,0.007424,0.22544,0.005792,0.004864,0.006304,0.010272,0.012096,0.370432,0.007808
+845,948.258,1.05457,0.659872,0.006624,0.226848,0.00576,0.00496,0.006144,0.01024,0.01168,0.379488,0.008128
+846,888.696,1.12524,0.66048,0.006784,0.223616,0.006144,0.005184,0.006592,0.010752,0.01024,0.384256,0.006912
+847,617.891,1.61841,0.673792,0.00832,0.230976,0.00576,0.0048,0.006144,0.010272,0.01136,0.387968,0.008192
+848,902.899,1.10754,0.694368,0.006304,0.247456,0.00576,0.0048,0.006144,0.01024,0.012288,0.393216,0.00816
+849,811.571,1.23218,0.6832,0.006144,0.226944,0.005568,0.005056,0.006176,0.01024,0.011808,0.403456,0.007808
+850,617.705,1.6189,0.65456,0.007264,0.219104,0.005056,0.0056,0.006272,0.010176,0.01072,0.382496,0.007872
+851,957.233,1.04468,0.668096,0.006752,0.230656,0.004992,0.00608,0.006144,0.01024,0.012032,0.383232,0.007968
+852,509.516,1.96265,0.707776,0.008224,0.25952,0.00576,0.004896,0.006304,0.01024,0.011904,0.393056,0.007872
+853,1219.59,0.819946,0.665312,0.006624,0.224672,0.005792,0.005056,0.007296,0.010144,0.011136,0.386912,0.00768
+854,807.014,1.23914,0.67776,0.006368,0.247808,0.006144,0.005504,0.006304,0.01072,0.01024,0.3768,0.007872
+855,957.233,1.04468,0.65328,0.007584,0.22288,0.005056,0.006112,0.006176,0.009984,0.011712,0.375616,0.00816
+856,967.978,1.03308,0.651264,0.007264,0.223616,0.00576,0.005024,0.006144,0.011872,0.010656,0.372736,0.008192
+857,846.456,1.1814,0.671872,0.006784,0.23504,0.004768,0.006112,0.006144,0.010272,0.010304,0.38448,0.007968
+858,592.207,1.6886,0.657408,0.009504,0.225728,0.005728,0.0048,0.006144,0.010368,0.01184,0.375104,0.008192
+859,942.91,1.06055,0.657504,0.006848,0.222912,0.00576,0.004864,0.00752,0.01008,0.011072,0.380704,0.007744
+860,789.058,1.26733,0.663552,0.006176,0.227296,0.006144,0.00544,0.00608,0.011008,0.01024,0.382976,0.008192
+861,895.594,1.11658,0.651488,0.006368,0.22096,0.00592,0.005568,0.006304,0.010112,0.011232,0.378144,0.00688
+862,919.416,1.08765,0.67328,0.006272,0.233216,0.00576,0.004736,0.007296,0.011072,0.010304,0.386784,0.00784
+863,901.905,1.10876,1.30458,0.007648,0.460992,0.018784,0.006144,0.006176,0.01024,0.011648,0.774752,0.008192
+864,575.523,1.73755,0.657504,0.00624,0.224512,0.005024,0.005568,0.006304,0.010528,0.01136,0.380864,0.007104
+865,769.997,1.29871,1.04448,0.006144,0.249728,0.00576,0.004608,0.007808,0.0104,0.01184,0.739136,0.009056
+866,821.995,1.21655,0.672608,0.006848,0.23568,0.00592,0.00432,0.006144,0.011744,0.010784,0.382976,0.008192
+867,775.758,1.28906,0.689536,0.006144,0.253952,0.006144,0.006144,0.006176,0.010176,0.011328,0.381664,0.007808
+868,1008.87,0.991211,0.701856,0.007424,0.264224,0.005024,0.005664,0.006432,0.011744,0.010784,0.382752,0.007808
+869,673.297,1.48523,0.668352,0.008864,0.234848,0.005024,0.00608,0.006144,0.011424,0.011104,0.376832,0.008032
+870,926.907,1.07886,0.662272,0.00672,0.221216,0.00576,0.00464,0.006144,0.011456,0.011072,0.387072,0.008192
+871,846.806,1.18091,0.683968,0.00672,0.247808,0.006112,0.005568,0.006336,0.010208,0.010688,0.382784,0.007744
+872,928.272,1.07727,0.6592,0.007296,0.224128,0.006144,0.00528,0.006336,0.010912,0.011584,0.379584,0.007936
+873,923.667,1.08264,0.648928,0.007744,0.219584,0.005984,0.0056,0.006848,0.010016,0.010496,0.374752,0.007904
+874,980.843,1.01953,1.0816,0.00672,0.22768,0.006144,0.005344,0.006304,0.01088,0.011264,0.797664,0.0096
+875,572.387,1.74707,0.668256,0.006752,0.230848,0.00576,0.005056,0.007712,0.010272,0.010688,0.382976,0.008192
+876,895.301,1.11694,0.653216,0.006208,0.22272,0.00576,0.004896,0.006176,0.010272,0.011744,0.377344,0.008096
+877,791.957,1.2627,0.669376,0.006144,0.222432,0.015136,0.006144,0.006144,0.01024,0.011808,0.383456,0.007872
+878,697.014,1.43469,0.6888,0.006752,0.259872,0.005792,0.004864,0.006176,0.010208,0.012,0.375072,0.008064
+879,1065.42,0.938599,0.684032,0.006176,0.247776,0.00592,0.0056,0.00624,0.010272,0.010912,0.382944,0.008192
+880,1035.26,0.965942,1.09366,0.00656,0.253952,0.006144,0.005408,0.006336,0.010784,0.01168,0.782976,0.009824
+881,582.895,1.71558,0.6656,0.006144,0.231104,0.00576,0.0048,0.008192,0.01024,0.01136,0.379808,0.008192
+882,934.946,1.06958,0.839712,0.006208,0.401376,0.00576,0.00448,0.006144,0.011488,0.011008,0.385056,0.008192
+883,811.732,1.23193,0.6656,0.006144,0.229376,0.006176,0.005472,0.006272,0.010208,0.010784,0.382976,0.008192
+884,893.348,1.11938,0.654528,0.00624,0.220576,0.00576,0.004896,0.007328,0.010976,0.010528,0.38064,0.007584
+885,916.434,1.09119,0.66272,0.006272,0.226432,0.004992,0.005696,0.00768,0.010272,0.011136,0.382208,0.008032
+886,563.256,1.77539,0.66208,0.008736,0.228768,0.00576,0.004928,0.006272,0.010272,0.012096,0.377024,0.008224
+887,1014.36,0.98584,0.649216,0.00752,0.221728,0.005856,0.005568,0.006528,0.0088,0.012224,0.3728,0.008192
+888,845.669,1.1825,0.65536,0.006144,0.221184,0.006048,0.004192,0.006144,0.012,0.010528,0.380928,0.008192
+889,906.997,1.10254,0.651136,0.006144,0.220672,0.00576,0.004992,0.006304,0.01008,0.011936,0.377184,0.008064
+890,964.786,1.0365,0.659456,0.006176,0.225056,0.005792,0.00464,0.006144,0.010368,0.012064,0.38224,0.006976
+891,657.569,1.52075,1.38051,0.006336,0.263968,0.005888,0.0056,0.006304,0.009152,0.01216,1.06237,0.008736
+892,693.004,1.44299,0.681824,0.00768,0.254464,0.006144,0.005152,0.006304,0.01088,0.011552,0.371616,0.008032
+893,830.242,1.20447,1.05747,0.006816,0.262176,0.006144,0.006144,0.006144,0.01024,0.011424,0.738144,0.01024
+894,748.88,1.33533,0.657152,0.006144,0.226848,0.00576,0.004896,0.006208,0.01024,0.012288,0.376832,0.007936
+895,941.501,1.06213,0.659456,0.007296,0.219776,0.005792,0.004704,0.006144,0.01024,0.012064,0.386432,0.007008
+896,947.819,1.05505,0.665184,0.007712,0.233952,0.005856,0.004384,0.006144,0.011616,0.010912,0.376832,0.007776
+897,884.379,1.13074,1.30458,0.007808,0.466656,0.019104,0.006144,0.006144,0.010272,0.01216,0.766048,0.01024
+898,585.896,1.70679,0.656128,0.006752,0.22544,0.006144,0.005472,0.006464,0.010592,0.0104,0.376672,0.008192
+899,926.592,1.07922,0.83088,0.006144,0.401408,0.005792,0.0056,0.006272,0.010176,0.011072,0.376672,0.007744
+900,777.672,1.28589,0.669728,0.006848,0.221312,0.006144,0.005888,0.006272,0.0104,0.011392,0.393664,0.007808
+901,911.539,1.09705,0.661088,0.006752,0.223232,0.006144,0.0056,0.006304,0.010176,0.010688,0.384448,0.007744
+902,935.48,1.06897,0.65536,0.006144,0.228896,0.005728,0.004896,0.00624,0.010272,0.011552,0.37344,0.008192
+903,519.072,1.92651,0.691872,0.008352,0.253952,0.005888,0.005568,0.006272,0.010112,0.011072,0.38288,0.007776
+904,1078.32,0.927368,0.669696,0.007584,0.22976,0.005728,0.004736,0.006144,0.012032,0.010496,0.385024,0.008192
+905,756.557,1.32178,0.652448,0.006272,0.224576,0.005024,0.005664,0.0064,0.010208,0.010272,0.376256,0.007776
+906,966.722,1.03442,0.654368,0.007168,0.22,0.00576,0.00464,0.006144,0.011456,0.010848,0.38048,0.007872
+907,881.239,1.13477,0.686496,0.006784,0.240896,0.004992,0.006016,0.006144,0.010272,0.012288,0.391136,0.007968
+908,935.267,1.06921,1.30893,0.0064,0.444128,0.036768,0.00448,0.007232,0.010816,0.010656,0.780256,0.008192
+909,574.071,1.74194,0.660192,0.00672,0.225408,0.006144,0.005824,0.00576,0.009984,0.011008,0.381152,0.008192
+910,935.694,1.06873,0.841536,0.006784,0.40096,0.006112,0.004672,0.006176,0.01136,0.01104,0.386656,0.007776
+911,813.505,1.22925,0.65456,0.006144,0.222432,0.006848,0.0056,0.006272,0.009984,0.011008,0.3784,0.007872
+912,946.614,1.0564,0.667552,0.017728,0.219712,0.00576,0.004608,0.006144,0.01024,0.012064,0.383136,0.00816
+913,931.015,1.0741,0.663936,0.006528,0.227328,0.006144,0.006144,0.006144,0.010112,0.011392,0.381952,0.008192
+914,562.56,1.77759,0.673824,0.008864,0.233024,0.004992,0.005664,0.006336,0.010368,0.01024,0.386528,0.007808
+915,957.681,1.04419,0.663552,0.006784,0.223392,0.006144,0.005888,0.006336,0.010208,0.010336,0.386624,0.00784
+916,753.565,1.32703,0.667744,0.006272,0.235488,0.006144,0.004096,0.007264,0.010528,0.01088,0.380096,0.006976
+917,1011.23,0.988892,0.667008,0.007168,0.22624,0.005792,0.004512,0.006176,0.010208,0.011808,0.387328,0.007776
+918,922.938,1.0835,0.663776,0.0064,0.222368,0.005024,0.00544,0.005888,0.010944,0.010528,0.389024,0.00816
+919,933.242,1.07153,1.09158,0.006144,0.225312,0.006112,0.005792,0.006272,0.010464,0.011776,0.811456,0.008256
+920,574.797,1.73975,0.663712,0.006336,0.229344,0.006144,0.005408,0.006272,0.01088,0.011456,0.37968,0.008192
+921,926.068,1.07983,0.66016,0.006752,0.220864,0.00576,0.004928,0.006112,0.01024,0.011392,0.386944,0.007168
+922,795.881,1.25647,0.658528,0.007808,0.217472,0.005888,0.004352,0.006176,0.011776,0.010752,0.386496,0.007808
+923,946.177,1.05688,0.659264,0.007456,0.217824,0.006176,0.005568,0.006368,0.009824,0.010976,0.386912,0.00816
+924,937.514,1.06665,0.6672,0.007168,0.224256,0.00576,0.00448,0.007936,0.010528,0.012128,0.38704,0.007904
+925,932.605,1.07227,1.08598,0.006688,0.222432,0.004992,0.006048,0.006144,0.01024,0.011904,0.809216,0.00832
+926,551.836,1.81213,0.653152,0.007808,0.221568,0.005888,0.004352,0.006144,0.011488,0.011072,0.3768,0.008032
+927,965.355,1.03589,0.864256,0.007616,0.420416,0.006144,0.005792,0.006272,0.01024,0.01152,0.388064,0.008192
+928,807.81,1.23792,0.648256,0.006144,0.220416,0.004992,0.005664,0.006112,0.010624,0.01136,0.375104,0.00784
+929,869.27,1.15039,0.70272,0.0064,0.26624,0.006144,0.005792,0.006304,0.009824,0.010848,0.384128,0.00704
+930,955.335,1.04675,0.662176,0.006784,0.229408,0.005888,0.004352,0.006144,0.011488,0.01104,0.380192,0.00688
+931,776.567,1.28772,0.856704,0.008896,0.41584,0.006144,0.0056,0.006528,0.010304,0.010336,0.385024,0.008032
+932,776.64,1.2876,0.675872,0.006464,0.247008,0.004992,0.005664,0.006304,0.010464,0.012192,0.37488,0.007904
+933,948.917,1.05383,0.836896,0.006144,0.401408,0.006176,0.005952,0.006272,0.010048,0.010592,0.382496,0.007808
+934,765.822,1.30579,0.685184,0.00752,0.241728,0.00576,0.004896,0.006272,0.010304,0.011552,0.389344,0.007808
+935,902.998,1.10742,0.66176,0.0064,0.22528,0.006144,0.006112,0.006176,0.01008,0.0104,0.384288,0.00688
+936,972.922,1.02783,0.659488,0.007584,0.22384,0.006144,0.005184,0.006304,0.01104,0.011968,0.380512,0.006912
+937,637.113,1.56958,0.664832,0.009376,0.226144,0.006144,0.005664,0.006624,0.010208,0.010272,0.382624,0.007776
+938,973.847,1.02686,0.65808,0.006752,0.226976,0.00576,0.004896,0.006144,0.01024,0.012224,0.376896,0.008192
+939,822.738,1.21545,0.662048,0.006752,0.226752,0.00576,0.005056,0.007488,0.010336,0.01088,0.380896,0.008128
+940,908.305,1.10095,0.663264,0.00752,0.223904,0.006016,0.004224,0.006144,0.011584,0.010944,0.385024,0.007904
+941,963.425,1.03796,0.676,0.006336,0.223232,0.006112,0.0056,0.0064,0.009792,0.010976,0.39936,0.008192
+942,779.819,1.28235,0.681568,0.00736,0.242496,0.006144,0.005472,0.006304,0.010752,0.010368,0.384896,0.007776
+943,687.479,1.45459,0.701056,0.008832,0.261408,0.005024,0.005952,0.006144,0.010272,0.012128,0.383104,0.008192
+944,912.961,1.09534,0.679168,0.006176,0.231168,0.015968,0.004768,0.006144,0.011584,0.010944,0.385024,0.007392
+945,809.406,1.23547,0.663776,0.0064,0.224768,0.00576,0.004992,0.006144,0.01024,0.01168,0.385632,0.00816
+946,882.568,1.13306,0.688224,0.006528,0.247808,0.006176,0.004064,0.007168,0.011168,0.01152,0.385888,0.007904
+947,974.774,1.02588,0.664096,0.006816,0.223488,0.005856,0.0056,0.006272,0.009984,0.011136,0.387104,0.00784
+948,926.173,1.07971,0.662048,0.006688,0.229056,0.00576,0.0048,0.006144,0.010272,0.011904,0.379232,0.008192
+949,633.516,1.57849,0.677376,0.00928,0.229792,0.00576,0.005056,0.006112,0.01024,0.018432,0.384896,0.007808
+950,973.731,1.02698,0.658016,0.006752,0.222432,0.004992,0.005696,0.006304,0.010432,0.011424,0.3832,0.006784
+951,782.8,1.27747,0.685664,0.007552,0.223872,0.006144,0.005728,0.006336,0.010272,0.010464,0.40752,0.007776
+952,865.779,1.15503,0.651712,0.006592,0.220832,0.005984,0.004608,0.006144,0.010272,0.012256,0.377024,0.008
+953,933.774,1.07092,0.661504,0.006144,0.226976,0.00576,0.004832,0.006208,0.010208,0.011424,0.38176,0.008192
+954,925.441,1.08057,1.3169,0.006176,0.448032,0.024224,0.004896,0.006144,0.010272,0.012,0.796704,0.008448
+955,544.536,1.83643,0.677184,0.006144,0.2376,0.006112,0.005984,0.006304,0.009824,0.010656,0.386784,0.007776
+956,865.962,1.15479,0.845472,0.006144,0.401408,0.006112,0.005504,0.006304,0.010752,0.010304,0.391104,0.00784
+957,877.37,1.13977,0.676352,0.006656,0.222528,0.005024,0.00592,0.007424,0.008992,0.012192,0.399424,0.008192
+958,953.112,1.04919,0.675424,0.00672,0.231424,0.006144,0.005248,0.00704,0.011648,0.01088,0.388448,0.007872
+959,927.326,1.07837,0.684032,0.006144,0.23712,0.00576,0.004928,0.006144,0.01024,0.011808,0.393696,0.008192
+960,565.824,1.76733,0.676352,0.008128,0.230304,0.006144,0.005312,0.006304,0.010912,0.011296,0.390112,0.00784
+961,974.89,1.02576,0.66496,0.006144,0.224736,0.005824,0.00496,0.006176,0.01024,0.011424,0.38768,0.007776
+962,787.238,1.27026,0.671744,0.006144,0.226912,0.00576,0.004864,0.006176,0.01024,0.011744,0.392896,0.007008
+963,944.432,1.05884,0.679264,0.006176,0.223232,0.006112,0.006048,0.017664,0.009152,0.012192,0.390944,0.007744
+964,920.243,1.08667,0.651264,0.00784,0.219328,0.005728,0.004672,0.00624,0.011968,0.010464,0.377888,0.007136
+965,928.588,1.0769,1.09325,0.006624,0.22448,0.005024,0.006016,0.006144,0.01024,0.011488,0.813856,0.009376
+966,574.273,1.74133,0.665824,0.006368,0.229376,0.006144,0.00528,0.007008,0.010272,0.011584,0.382784,0.007008
+967,703.236,1.422,0.673792,0.006144,0.222336,0.016544,0.006016,0.0064,0.009856,0.010912,0.387392,0.008192
+968,1126.2,0.887939,0.673792,0.007648,0.227872,0.00608,0.00416,0.006144,0.011872,0.010656,0.391168,0.008192
+969,860.323,1.16235,0.67584,0.007616,0.22368,0.00576,0.004608,0.007808,0.010368,0.010592,0.397216,0.008192
+970,879.914,1.13647,0.662528,0.006144,0.22528,0.006144,0.005216,0.006656,0.010272,0.010624,0.384352,0.00784
+971,887.444,1.12683,1.30253,0.007264,0.463328,0.014784,0.005888,0.006304,0.01008,0.01168,0.77472,0.00848
+972,587.704,1.70154,0.669696,0.00768,0.22784,0.005856,0.004384,0.006176,0.011648,0.010848,0.388096,0.007168
+973,960.6,1.04102,0.844032,0.006752,0.399616,0.006144,0.00576,0.006272,0.010176,0.01056,0.39088,0.007872
+974,809.886,1.23474,0.677888,0.006144,0.218144,0.00512,0.005664,0.006368,0.010496,0.012096,0.405664,0.008192
+975,932.18,1.07275,0.671744,0.006144,0.219168,0.006112,0.006144,0.007168,0.009216,0.012096,0.397504,0.008192
+976,874.093,1.14404,0.679776,0.006464,0.225184,0.00576,0.004576,0.006176,0.01024,0.012224,0.401408,0.007744
+977,661.392,1.51196,0.669792,0.008192,0.227264,0.005792,0.005568,0.007136,0.01024,0.011776,0.386976,0.006848
+978,971.768,1.02905,0.664896,0.0072,0.221152,0.00512,0.005536,0.006304,0.010688,0.012,0.389056,0.00784
+979,786.784,1.271,0.667136,0.006144,0.22736,0.006112,0.005344,0.006272,0.01008,0.011072,0.386848,0.007904
+980,290.424,3.44324,0.686688,0.00672,0.237568,0.006144,0.005248,0.006336,0.010944,0.011328,0.395392,0.007008
+981,1155.59,0.865356,1.37632,0.00624,0.240992,0.00576,0.00512,0.006144,0.01024,0.011424,0.822112,0.268288
+982,516.617,1.93567,0.68,0.00672,0.23696,0.005792,0.004864,0.006304,0.01024,0.012064,0.389344,0.007712
+983,1131.8,0.883545,0.839648,0.006144,0.393216,0.00608,0.00416,0.006144,0.010048,0.010432,0.395264,0.00816
+984,782.501,1.27795,0.677888,0.007168,0.22784,0.005824,0.004864,0.006208,0.01024,0.012032,0.39552,0.008192
+985,916.434,1.09119,0.67584,0.006144,0.230464,0.005056,0.006144,0.006144,0.01024,0.01152,0.391936,0.008192
+986,820.924,1.21814,1.36406,0.01648,0.227328,0.006144,0.005184,0.006272,0.010112,0.011232,1.07107,0.01024
+987,581.818,1.71875,0.659488,0.007712,0.226944,0.004992,0.006112,0.006144,0.010272,0.01152,0.378816,0.006976
+988,978.967,1.02148,0.851872,0.007392,0.40016,0.006176,0.004064,0.007232,0.011104,0.01216,0.395488,0.008096
+989,780.19,1.28174,0.667648,0.007232,0.223392,0.005024,0.006016,0.006144,0.01024,0.011584,0.391104,0.006912
+990,931.862,1.07312,0.673504,0.007488,0.223232,0.004992,0.005632,0.006464,0.010432,0.011808,0.395552,0.007904
+991,638.255,1.56677,0.722848,0.006688,0.27216,0.005792,0.004672,0.007232,0.010592,0.010848,0.397056,0.007808
+992,1230.77,0.8125,1.32509,0.007296,0.44736,0.04624,0.004896,0.006208,0.010272,0.012256,0.782336,0.008224
+993,602.264,1.6604,0.682912,0.00672,0.231776,0.006016,0.004224,0.007328,0.009088,0.012,0.398656,0.007104
+994,755.58,1.32349,0.666176,0.00672,0.223072,0.00576,0.00464,0.006144,0.011552,0.010976,0.38912,0.008192
+995,899.824,1.11133,0.688128,0.007616,0.225856,0.006144,0.006144,0.006144,0.01024,0.011936,0.405856,0.008192
+996,939.234,1.0647,0.6736,0.006784,0.223264,0.00608,0.00416,0.007744,0.010688,0.01152,0.39552,0.00784
+997,855.472,1.16895,1.29882,0.006528,0.446464,0.026592,0.005568,0.006304,0.010368,0.01056,0.77824,0.008192
+998,598.174,1.67175,0.677824,0.007296,0.224128,0.006144,0.005536,0.006496,0.010496,0.011936,0.397664,0.008128
+999,916.536,1.09106,0.86384,0.006144,0.419808,0.005792,0.005568,0.006304,0.01008,0.0112,0.390976,0.007968
+1000,763.111,1.31042,0.663872,0.006464,0.222272,0.005056,0.005568,0.006304,0.010688,0.01184,0.388896,0.006784
+1001,992.849,1.0072,0.661504,0.006144,0.221184,0.006144,0.005792,0.006304,0.010016,0.010784,0.388256,0.00688
+1002,890.628,1.1228,0.668736,0.007744,0.221632,0.005952,0.004288,0.006176,0.01152,0.011008,0.392608,0.007808
+1003,497.419,2.01038,0.695936,0.008768,0.249856,0.006144,0.006144,0.006144,0.01024,0.011808,0.389024,0.007808
+1004,1239.9,0.806519,0.673248,0.007552,0.224992,0.005024,0.005632,0.006336,0.01056,0.012032,0.393312,0.007808
+1005,835.151,1.19739,0.667168,0.0064,0.221184,0.006144,0.00576,0.006368,0.010272,0.010368,0.392704,0.007968
+1006,942.151,1.0614,0.681984,0.007552,0.22368,0.005728,0.004704,0.006144,0.01024,0.012064,0.40368,0.008192
+1007,902.203,1.1084,0.684256,0.006368,0.222912,0.00576,0.004832,0.007584,0.009952,0.011104,0.407552,0.008192
+1008,904.394,1.10571,1.35178,0.006848,0.221312,0.006144,0.005152,0.006912,0.010496,0.011648,0.821184,0.26208
+1009,543.272,1.8407,0.69136,0.006176,0.23104,0.00576,0.004832,0.006144,0.010272,0.011808,0.407488,0.00784
+1010,952.558,1.0498,1.01693,0.006208,0.225088,0.00576,0.004672,0.006144,0.01024,0.012288,0.73728,0.009248
+1011,715.209,1.39819,0.673792,0.006176,0.219072,0.005568,0.004704,0.006144,0.010272,0.011648,0.403072,0.007136
+1012,877.37,1.13977,0.712448,0.006144,0.24576,0.006144,0.005216,0.006592,0.010752,0.011776,0.412128,0.007936
+1013,907.399,1.10205,0.702976,0.006656,0.261696,0.00576,0.004928,0.006176,0.010208,0.012032,0.388704,0.006816
+1014,891.598,1.12158,1.29293,0.006784,0.467328,0.007776,0.004512,0.006144,0.011488,0.01104,0.768,0.009856
+1015,553.177,1.80774,0.684064,0.00736,0.22192,0.00576,0.004576,0.018432,0.01024,0.011616,0.397184,0.006976
+1016,845.32,1.18298,0.67584,0.007296,0.238048,0.005792,0.004864,0.006144,0.010272,0.011776,0.38464,0.007008
+1017,956.116,1.0459,0.673568,0.006176,0.224672,0.00576,0.005056,0.006144,0.01024,0.01184,0.395712,0.007968
+1018,931.65,1.07336,0.670112,0.006752,0.221408,0.005984,0.004256,0.006144,0.01184,0.010688,0.395264,0.007776
+1019,914.694,1.09326,1.35194,0.006752,0.22544,0.005792,0.005568,0.006304,0.010304,0.011008,1.0711,0.009664
+1020,409.007,2.44495,0.679936,0.007264,0.226208,0.006144,0.004096,0.0072,0.011136,0.011744,0.397952,0.008192
+1021,1199.24,0.833862,0.840384,0.006656,0.4016,0.00592,0.0056,0.006304,0.010016,0.011104,0.384992,0.008192
+1022,818.3,1.22205,0.669152,0.006144,0.223232,0.00592,0.005472,0.006304,0.010784,0.010432,0.393056,0.007808
+1023,891.21,1.12207,0.678464,0.006528,0.218496,0.005088,0.006144,0.006144,0.010208,0.011616,0.406208,0.008032
+1024,919.313,1.08777,0.670016,0.006464,0.220224,0.005056,0.00544,0.006112,0.010944,0.010304,0.39728,0.008192
+1025,664.288,1.50537,0.681888,0.008864,0.224896,0.00576,0.005024,0.006144,0.01024,0.011808,0.401344,0.007808
+1026,875.869,1.14172,0.667648,0.007744,0.224992,0.005024,0.00544,0.005888,0.011008,0.011744,0.388736,0.007072
+1027,837.885,1.19348,0.676192,0.006496,0.221184,0.006144,0.0056,0.006144,0.010272,0.010752,0.401408,0.008192
+1028,636.865,1.57019,0.671904,0.006432,0.222624,0.005952,0.004896,0.006144,0.01024,0.012288,0.395264,0.008064
+1029,1349.37,0.741089,0.684032,0.007712,0.231392,0.005792,0.00496,0.006176,0.010208,0.01168,0.39792,0.008192
+1030,763.965,1.30896,1.41082,0.006816,0.286816,0.006144,0.004096,0.007168,0.011296,0.010208,1.06906,0.009216
+1031,604.531,1.65417,0.682272,0.006432,0.228672,0.005024,0.00592,0.006144,0.01024,0.01184,0.39984,0.00816
+1032,891.307,1.12195,1.01786,0.0072,0.223744,0.004608,0.006112,0.005984,0.01008,0.011616,0.74032,0.008192
+1033,726.306,1.37683,0.679456,0.006592,0.221184,0.006144,0.006048,0.006272,0.01024,0.011776,0.403456,0.007744
+1034,877.746,1.13928,0.66752,0.007712,0.219232,0.006048,0.004576,0.0072,0.010944,0.01056,0.393184,0.008064
+1035,845.582,1.18262,0.693856,0.006144,0.239616,0.006144,0.005664,0.006656,0.010208,0.011392,0.40016,0.007872
+1036,776.787,1.28735,0.891936,0.02192,0.415776,0.004672,0.005568,0.006304,0.010688,0.01152,0.407616,0.007872
+1037,815.124,1.22681,0.684288,0.0064,0.22736,0.006112,0.006048,0.00624,0.010304,0.012224,0.401408,0.008192
+1038,879.82,1.1366,0.850048,0.006752,0.399424,0.006144,0.005248,0.006432,0.010848,0.01168,0.395744,0.007776
+1039,766.539,1.30457,0.68608,0.006144,0.221184,0.006144,0.005536,0.006304,0.00976,0.011168,0.411648,0.008192
+1040,982.726,1.01758,0.6784,0.006688,0.227008,0.00576,0.004768,0.006144,0.011584,0.010944,0.397312,0.008192
+1041,792.033,1.26257,0.686848,0.006944,0.239776,0.005824,0.0056,0.006272,0.010112,0.011104,0.393216,0.008
+1042,567.824,1.76111,0.720896,0.009664,0.268864,0.006144,0.00544,0.006272,0.010816,0.011392,0.394112,0.008192
+1043,993.934,1.0061,0.69232,0.006624,0.235392,0.00576,0.004608,0.007264,0.010208,0.011136,0.40352,0.007808
+1044,740.419,1.35059,0.690144,0.006496,0.2248,0.005824,0.004864,0.006144,0.01024,0.011968,0.411968,0.00784
+1045,934.52,1.07007,0.684128,0.006784,0.241056,0.005088,0.006112,0.006144,0.010144,0.010336,0.390656,0.007808
+1046,870.008,1.14941,0.688128,0.007712,0.233952,0.006144,0.005504,0.006496,0.010528,0.011712,0.39904,0.00704
+1047,967.178,1.03394,1.36019,0.00656,0.226368,0.005056,0.006144,0.006144,0.010048,0.010528,0.820832,0.268512
+1048,570.792,1.75195,0.677248,0.006336,0.224288,0.005088,0.006144,0.006176,0.010208,0.011648,0.399616,0.007744
+1049,928.062,1.07751,0.856672,0.00672,0.399392,0.006144,0.00576,0.006304,0.01008,0.011648,0.402464,0.00816
+1050,801.252,1.24805,0.67296,0.007584,0.21888,0.004992,0.005632,0.006112,0.010752,0.010272,0.400864,0.007872
+1051,866.053,1.15466,0.669056,0.007392,0.228128,0.005952,0.005568,0.006784,0.010176,0.010432,0.386816,0.007808
+1052,820.431,1.21887,0.68992,0.006464,0.247808,0.006144,0.004096,0.007232,0.01104,0.011488,0.388032,0.007616
+1053,564.81,1.77051,0.72704,0.00928,0.260736,0.00576,0.0048,0.006144,0.01024,0.012288,0.4096,0.008192
+1054,1219.59,0.819946,0.693728,0.007616,0.235904,0.00576,0.004672,0.006144,0.011328,0.0112,0.403296,0.007808
+1055,720.302,1.38831,0.684128,0.006752,0.22752,0.00576,0.004576,0.006112,0.01024,0.011264,0.403968,0.007936
+1056,896.476,1.11548,0.68672,0.006784,0.235136,0.005984,0.00464,0.006144,0.01024,0.011968,0.39888,0.006944
+1057,773.195,1.29333,0.730912,0.006144,0.275648,0.004992,0.00608,0.006144,0.01024,0.01024,0.403456,0.007968
+1058,1074.78,0.93042,1.36122,0.006336,0.237184,0.00576,0.004864,0.006144,0.010272,0.012128,1.06883,0.009696
+1059,547.52,1.82642,0.681728,0.007584,0.223424,0.005824,0.004832,0.006176,0.01024,0.012,0.403712,0.007936
+1060,849.088,1.17773,0.845824,0.006144,0.39936,0.006144,0.00512,0.006208,0.011072,0.010496,0.393088,0.008192
+1061,799.531,1.25073,0.679584,0.006752,0.221216,0.006144,0.006112,0.006176,0.010016,0.010464,0.404832,0.007872
+1062,942.693,1.06079,0.664896,0.006144,0.222816,0.00576,0.004864,0.006176,0.011328,0.0112,0.388416,0.008192
+1063,922.523,1.08398,0.692896,0.006752,0.22944,0.006144,0.005664,0.006624,0.01024,0.011872,0.407968,0.008192
+1064,673.629,1.4845,0.688128,0.009696,0.223808,0.006112,0.004096,0.008192,0.01024,0.012128,0.405696,0.00816
+1065,873.813,1.14441,0.687584,0.006176,0.2248,0.00576,0.004832,0.00576,0.009952,0.011008,0.411456,0.00784
+1066,698.083,1.4325,0.722432,0.006208,0.23952,0.005792,0.004544,0.006144,0.020512,0.012256,0.41968,0.007776
+1067,933.987,1.07068,0.669696,0.006144,0.223232,0.006144,0.006048,0.00624,0.010272,0.011648,0.391776,0.008192
+1068,794.414,1.25879,0.681952,0.006528,0.223232,0.006144,0.005216,0.006912,0.0104,0.012288,0.403456,0.007776
+1069,1057.31,0.945801,0.676224,0.006528,0.225152,0.00576,0.004608,0.007808,0.01008,0.010816,0.39728,0.008192
+1070,646.108,1.54773,0.7032,0.008896,0.249888,0.006144,0.005216,0.006336,0.01232,0.010944,0.395264,0.008192
+1071,919.416,1.08765,1.04698,0.00672,0.223232,0.006144,0.00576,0.006528,0.01024,0.012288,0.767008,0.009056
+1072,689.853,1.44958,0.67584,0.007232,0.219872,0.00576,0.004704,0.006144,0.011648,0.010912,0.401376,0.008192
+1073,938.911,1.06506,0.682144,0.006304,0.222528,0.005888,0.005056,0.006144,0.01024,0.01152,0.406272,0.008192
+1074,912.961,1.09534,0.699104,0.006784,0.229472,0.006144,0.005664,0.006272,0.010368,0.01168,0.414528,0.008192
+1075,820.184,1.21924,1.32467,0.006144,0.458752,0.012288,0.006144,0.006144,0.01024,0.01136,0.803744,0.009856
+1076,606.725,1.64819,0.690208,0.006176,0.225088,0.005792,0.00464,0.00768,0.010752,0.011488,0.4104,0.008192
+1077,800,1.25,0.679392,0.006176,0.22528,0.005888,0.005568,0.006304,0.010016,0.011136,0.40128,0.007744
+1078,519.929,1.92334,0.750816,0.007872,0.28432,0.004672,0.005472,0.006304,0.010816,0.011424,0.412096,0.00784
+1079,1313.03,0.761597,0.717024,0.0064,0.251872,0.006144,0.005888,0.006304,0.010336,0.012128,0.40976,0.008192
+1080,772.393,1.29468,1.3856,0.007488,0.262848,0.006144,0.005344,0.006272,0.01088,0.01232,1.06458,0.009728
+1081,575.281,1.73828,0.692608,0.006688,0.23376,0.006112,0.005632,0.006336,0.009888,0.010912,0.405408,0.007872
+1082,998.659,1.00134,0.852544,0.00672,0.39936,0.006144,0.004096,0.0072,0.010816,0.010688,0.39936,0.00816
+1083,750.389,1.33264,0.675392,0.00656,0.222784,0.00576,0.004928,0.006144,0.01024,0.01168,0.399488,0.007808
+1084,1008.25,0.991821,0.679296,0.006176,0.221152,0.006144,0.005248,0.006304,0.010944,0.010272,0.40512,0.007936
+1085,889.178,1.12463,0.682464,0.006496,0.221312,0.006144,0.00576,0.006304,0.010176,0.01056,0.40752,0.008192
+1086,665.259,1.50317,0.68848,0.00896,0.224736,0.005824,0.004832,0.0064,0.01024,0.012192,0.407456,0.00784
+1087,844.71,1.18384,0.684032,0.007456,0.223424,0.00576,0.005024,0.006144,0.01136,0.0112,0.405472,0.008192
+1088,741.022,1.34949,0.682752,0.006752,0.219328,0.006112,0.004096,0.006336,0.012096,0.01168,0.40816,0.008192
+1089,940.096,1.06372,0.686144,0.007264,0.219072,0.005088,0.006144,0.006144,0.01024,0.011648,0.413696,0.006848
+1090,634.842,1.5752,0.722944,0.007648,0.274752,0.005792,0.004672,0.006144,0.011872,0.011744,0.393568,0.006752
+1091,505.617,1.97778,0.720576,0.009696,0.258592,0.005952,0.005568,0.006336,0.009888,0.011168,0.405504,0.007872
+1092,954.89,1.04724,0.70432,0.006144,0.251936,0.005952,0.004256,0.006144,0.011776,0.010752,0.39936,0.008
+1093,782.501,1.27795,0.678144,0.006752,0.22896,0.005792,0.004992,0.006144,0.01024,0.012288,0.3952,0.007776
+1094,865.23,1.15576,0.682016,0.006208,0.222816,0.00576,0.004864,0.006144,0.01024,0.011872,0.406016,0.008096
+1095,911.133,1.09753,0.68608,0.006144,0.234656,0.004992,0.006112,0.006144,0.01024,0.012256,0.397344,0.008192
+1096,855.561,1.16882,1.41456,0.008128,0.54624,0.023072,0.004192,0.006176,0.011936,0.01056,0.794624,0.009632
+1097,562.058,1.77917,0.695872,0.006656,0.24576,0.006144,0.005632,0.006336,0.010112,0.010688,0.39696,0.007584
+1098,912.859,1.09546,0.863392,0.006144,0.401408,0.005984,0.004256,0.006144,0.011936,0.010592,0.409152,0.007776
+1099,792.8,1.26135,0.684192,0.006304,0.22704,0.00576,0.004768,0.007808,0.00976,0.011136,0.403424,0.008192
+1100,941.176,1.0625,0.676096,0.0064,0.226304,0.00512,0.005504,0.006336,0.010688,0.011328,0.39744,0.006976
+1101,761.692,1.31287,0.714112,0.00624,0.2616,0.005888,0.004864,0.006144,0.01024,0.011904,0.399392,0.00784
+1102,529.609,1.88818,0.714752,0.00944,0.250464,0.005792,0.00464,0.006144,0.01136,0.011168,0.408928,0.006816
+1103,986.275,1.01392,1.04826,0.006528,0.227328,0.005792,0.00592,0.006304,0.009952,0.010976,0.76592,0.009536
+1104,646.567,1.54663,0.679872,0.0072,0.222208,0.006112,0.005216,0.006304,0.010848,0.0104,0.403456,0.008128
+1105,953.223,1.04907,0.687936,0.006144,0.2232,0.00576,0.005568,0.006336,0.01024,0.01104,0.411648,0.008
+1106,871.86,1.14697,0.680512,0.006816,0.22768,0.005856,0.004384,0.006144,0.011456,0.011072,0.39888,0.008224
+1107,558.114,1.79175,0.68864,0.008832,0.239712,0.00576,0.005568,0.006336,0.009984,0.011136,0.393344,0.007968
+1108,949.467,1.05322,0.681984,0.007296,0.228224,0.006144,0.005248,0.006272,0.010688,0.01056,0.399392,0.00816
+1109,833.028,1.20044,0.673664,0.006144,0.223232,0.005888,0.005568,0.006272,0.008896,0.012288,0.397312,0.008064
+1110,939.234,1.0647,0.67408,0.006816,0.221216,0.006016,0.004224,0.006176,0.011552,0.010976,0.399296,0.007808
+1111,919.21,1.08789,0.66352,0.006144,0.223232,0.006016,0.005568,0.006592,0.010144,0.010592,0.387072,0.00816
+1112,909.616,1.09937,0.671296,0.006144,0.220672,0.00576,0.004864,0.006272,0.01024,0.011872,0.397664,0.007808
+1113,569.68,1.75537,0.677824,0.008352,0.2328,0.004992,0.00592,0.006176,0.010208,0.011712,0.389696,0.007968
+1114,923.354,1.08301,1.0305,0.006496,0.223264,0.00592,0.00544,0.006464,0.010816,0.01136,0.750496,0.01024
+1115,652.022,1.53369,0.699136,0.006784,0.241824,0.006112,0.00576,0.006304,0.010464,0.011296,0.40352,0.007072
+1116,928.377,1.07715,0.677824,0.007232,0.22624,0.006144,0.005472,0.006336,0.01072,0.012032,0.39552,0.008128
+1117,912.046,1.09644,0.684672,0.00672,0.229408,0.006176,0.00592,0.006304,0.010112,0.011488,0.401696,0.006848
+1118,873.72,1.14453,1.31098,0.0064,0.45584,0.019456,0.005664,0.006368,0.010336,0.011648,0.787072,0.008192
+1119,568.1,1.76025,0.699872,0.007424,0.239712,0.004992,0.00592,0.006144,0.01024,0.011616,0.406176,0.007648
+1120,822.16,1.21631,0.678464,0.006752,0.223552,0.006144,0.004096,0.00624,0.011808,0.010624,0.401408,0.00784
+1121,856.187,1.16797,0.694816,0.006688,0.22528,0.005824,0.004416,0.006176,0.01024,0.011584,0.417568,0.00704
+1122,865.779,1.15503,0.671744,0.007808,0.216704,0.005024,0.005984,0.006144,0.01152,0.01104,0.399328,0.008192
+1123,968.322,1.03271,1.37181,0.007296,0.226176,0.006144,0.00608,0.006208,0.010208,0.010272,1.08954,0.009888
+1124,531.741,1.88062,0.688864,0.006816,0.231488,0.005856,0.004384,0.006144,0.010432,0.011872,0.40496,0.006912
+1125,939.665,1.06421,0.856768,0.00688,0.405504,0.00576,0.004576,0.007296,0.010272,0.011104,0.397312,0.008064
+1126,717.589,1.39355,0.718304,0.006144,0.241664,0.006144,0.005312,0.006304,0.010912,0.02048,0.413536,0.007808
+1127,754.328,1.32568,0.688256,0.006272,0.235552,0.006112,0.005792,0.006304,0.009824,0.010848,0.39936,0.008192
+1128,1160.67,0.861572,0.670144,0.006816,0.228896,0.00576,0.004896,0.006208,0.010272,0.012,0.387328,0.007968
+1129,661.712,1.51123,0.690176,0.008192,0.228992,0.005792,0.004832,0.006176,0.01024,0.011808,0.407008,0.007136
+1130,912.249,1.09619,0.673792,0.007392,0.221312,0.004832,0.0056,0.006144,0.01072,0.011584,0.3992,0.007008
+1131,840.55,1.1897,0.667968,0.006624,0.219136,0.00608,0.005568,0.006784,0.009888,0.010592,0.395264,0.008032
+1132,901.805,1.10889,0.67392,0.006272,0.221184,0.005952,0.004288,0.006144,0.01168,0.010848,0.39936,0.008192
+1133,964.673,1.03662,0.684032,0.007616,0.22176,0.006144,0.005888,0.0064,0.009664,0.010816,0.409056,0.006688
+1134,891.792,1.12134,1.08762,0.006144,0.223232,0.006144,0.004096,0.007264,0.011104,0.011584,0.809728,0.00832
+1135,576.171,1.7356,0.684032,0.007296,0.223648,0.005792,0.00496,0.006112,0.011296,0.0112,0.406592,0.007136
+1136,922.73,1.08374,0.684608,0.00672,0.221184,0.006144,0.004096,0.006272,0.01168,0.01072,0.4096,0.008192
+1137,770.504,1.29785,0.6744,0.00672,0.218592,0.00576,0.005056,0.006144,0.01024,0.011776,0.40192,0.008192
+1138,928.588,1.0769,0.67376,0.006144,0.219168,0.006112,0.005536,0.00624,0.010784,0.011328,0.400288,0.00816
+1139,955.001,1.04712,0.674048,0.0064,0.225312,0.006112,0.00592,0.006336,0.010016,0.011744,0.394016,0.008192
+1140,665.8,1.50195,1.44592,0.007616,0.244256,0.005824,0.004448,0.006144,0.011424,0.011072,1.14486,0.010272
+1141,634.252,1.57666,0.70656,0.00752,0.23952,0.005024,0.005984,0.006144,0.01024,0.01184,0.41344,0.006848
+1142,1014.87,0.985352,0.85584,0.006144,0.39936,0.006144,0.005376,0.006304,0.010848,0.010336,0.40336,0.007968
+1143,777.377,1.28638,0.67856,0.00672,0.217184,0.006144,0.005568,0.006304,0.01008,0.010848,0.40752,0.008192
+1144,875.401,1.14233,0.68288,0.00688,0.231392,0.00576,0.004704,0.006144,0.011296,0.01088,0.397664,0.00816
+1145,949.467,1.05322,0.67792,0.007744,0.22368,0.006144,0.005792,0.006496,0.010048,0.010432,0.400544,0.00704
+1146,563.954,1.77319,0.700384,0.008928,0.221216,0.006144,0.004096,0.006144,0.011872,0.010656,0.42352,0.007808
+1147,748.128,1.33667,0.708608,0.006144,0.257952,0.00576,0.004672,0.007232,0.00912,0.011968,0.397568,0.008192
+1148,771.956,1.29541,0.690176,0.006144,0.235424,0.00576,0.004576,0.006144,0.01024,0.01216,0.401536,0.008192
+1149,1068.06,0.936279,0.665536,0.006304,0.217056,0.006176,0.005632,0.006624,0.01024,0.011392,0.394112,0.008
+1150,884.474,1.13062,0.710656,0.007584,0.248352,0.005792,0.004512,0.006176,0.01024,0.012256,0.408608,0.007136
+1151,971.076,1.02979,1.2928,0.006656,0.46272,0.007296,0.00512,0.006144,0.01024,0.011968,0.770368,0.012288
+1152,374.68,2.66895,0.72336,0.006976,0.257152,0.005088,0.005568,0.006272,0.010688,0.014336,0.409536,0.007744
+1153,1208.62,0.827393,0.681504,0.00624,0.2264,0.005024,0.005632,0.006304,0.010176,0.010688,0.403296,0.007744
+1154,977.799,1.02271,0.671744,0.006144,0.219168,0.006112,0.004096,0.006304,0.011712,0.010656,0.39936,0.008192
+1155,905.794,1.104,0.689248,0.007712,0.21552,0.006144,0.005312,0.006496,0.010176,0.026944,0.403168,0.007776
+1156,934.307,1.07031,1.33939,0.007744,0.50016,0.008192,0.004096,0.006208,0.011872,0.011648,0.780576,0.008896
+1157,578.204,1.72949,0.690176,0.007232,0.220096,0.00592,0.00432,0.006176,0.01024,0.026592,0.401408,0.008192
+1158,882.378,1.1333,1.0799,0.006752,0.215072,0.006112,0.004096,0.006144,0.011584,0.023392,0.798144,0.008608
+1159,665.583,1.50244,0.702464,0.007264,0.218016,0.006144,0.005408,0.006336,0.010208,0.010816,0.43008,0.008192
+1160,859.962,1.16284,0.658304,0.00688,0.214336,0.004992,0.005792,0.006304,0.0104,0.011744,0.389664,0.008192
+1161,1041.18,0.960449,0.669408,0.006144,0.220896,0.00576,0.004768,0.006304,0.01008,0.011776,0.395776,0.007904
+1162,634.744,1.57544,0.6896,0.008608,0.2184,0.004992,0.005632,0.006336,0.0104,0.01184,0.41552,0.007872
+1163,876.9,1.14038,0.665472,0.00768,0.218912,0.004992,0.00592,0.006208,0.01024,0.010304,0.393152,0.008064
+1164,662.569,1.50928,0.854432,0.00656,0.400544,0.005024,0.005632,0.006272,0.01056,0.011392,0.400256,0.008192
+1165,1133.68,0.88208,0.682208,0.006368,0.22256,0.005024,0.005888,0.006144,0.01024,0.01184,0.405952,0.008192
+1166,941.609,1.06201,0.679552,0.007552,0.219232,0.005856,0.004704,0.006112,0.010496,0.011744,0.406048,0.007808
+1167,941.609,1.06201,0.665632,0.006176,0.220704,0.005792,0.004896,0.006144,0.01024,0.01184,0.392864,0.006976
+1168,641.604,1.55859,0.67184,0.008192,0.222656,0.005824,0.004896,0.00624,0.0104,0.01184,0.394688,0.007104
+1169,924.188,1.08203,0.681888,0.007648,0.221216,0.00576,0.004896,0.006144,0.010272,0.011552,0.406208,0.008192
+1170,884.474,1.13062,0.681728,0.007616,0.217664,0.00608,0.00416,0.006144,0.011776,0.010784,0.409568,0.007936
+1171,886.005,1.12866,0.679936,0.007392,0.218912,0.005152,0.005376,0.006304,0.009984,0.010944,0.409024,0.006848
+1172,948.368,1.05444,0.67584,0.006144,0.218624,0.00592,0.004832,0.00608,0.010304,0.011808,0.405184,0.006944
+1173,891.792,1.12134,1.37002,0.007392,0.22528,0.004992,0.006048,0.006144,0.010272,0.011776,0.831008,0.267104
+1174,551.427,1.81348,0.69792,0.006144,0.219136,0.006144,0.005888,0.006272,0.011776,0.027264,0.407488,0.007808
+1175,906.596,1.10303,1.03834,0.007648,0.217632,0.006144,0.004096,0.006144,0.01024,0.011776,0.763392,0.011264
+1176,690.842,1.44751,0.688032,0.00768,0.219648,0.006144,0.00592,0.006304,0.010336,0.026592,0.397312,0.008096
+1177,742.298,1.34717,0.712736,0.006176,0.253952,0.006144,0.006144,0.006144,0.010112,0.010368,0.405504,0.008192
+1178,1159.68,0.862305,0.688896,0.006752,0.227392,0.005728,0.004608,0.006144,0.010336,0.011872,0.407872,0.008192
+1179,644.43,1.55176,0.678816,0.0088,0.2216,0.00576,0.005568,0.006656,0.009952,0.010976,0.401408,0.008096
+1180,894.518,1.11792,0.690784,0.006752,0.21632,0.005024,0.00576,0.006336,0.010272,0.026144,0.407136,0.00704
+1181,829.99,1.20483,0.688288,0.006336,0.215008,0.006144,0.005696,0.006272,0.00992,0.025216,0.405504,0.008192
+1182,922.73,1.08374,0.678432,0.00672,0.21712,0.006112,0.005568,0.006368,0.010592,0.011488,0.406304,0.00816
+1183,945.74,1.05737,0.697536,0.0072,0.21808,0.006144,0.005184,0.0064,0.010112,0.011072,0.425504,0.00784
+1184,890.435,1.12305,1.10371,0.006144,0.21712,0.006144,0.005248,0.006304,0.010848,0.010336,0.831488,0.01008
+1185,562.715,1.7771,0.686432,0.006496,0.223264,0.006112,0.00608,0.006208,0.010144,0.010336,0.410944,0.006848
+1186,932.18,1.07275,0.679296,0.00624,0.22528,0.006176,0.004064,0.0072,0.011104,0.010368,0.401024,0.00784
+1187,782.426,1.27808,0.684032,0.006176,0.219104,0.006144,0.005792,0.006176,0.01024,0.010592,0.412896,0.006912
+1188,937.085,1.06714,0.675936,0.00624,0.21872,0.00576,0.004896,0.006144,0.01024,0.012288,0.403488,0.00816
+1189,920.863,1.08594,0.679712,0.006144,0.223232,0.006144,0.006048,0.00624,0.010144,0.010336,0.403456,0.007968
+1190,424.896,2.35352,1.40272,0.006528,0.259616,0.00576,0.004896,0.006208,0.01024,0.012128,1.08765,0.009696
+1191,1296.2,0.771484,0.688448,0.006464,0.23488,0.00576,0.00512,0.006144,0.010144,0.010336,0.402464,0.007136
+1192,856.008,1.16821,0.860672,0.006656,0.401216,0.00576,0.004672,0.006144,0.010272,0.012256,0.405504,0.008192
+1193,866.695,1.15381,0.693248,0.006816,0.219488,0.006144,0.00592,0.006368,0.01024,0.011456,0.418624,0.008192
+1194,880.671,1.1355,0.695392,0.00736,0.21792,0.005856,0.004384,0.007712,0.010752,0.011392,0.42224,0.007776
+1195,881.998,1.13379,1.35542,0.006752,0.229376,0.006144,0.00592,0.006208,0.009952,0.010688,1.07072,0.009664
+1196,567.234,1.76294,0.688128,0.007328,0.227552,0.00576,0.004864,0.0064,0.01024,0.011904,0.406976,0.007104
+1197,898.837,1.11255,1.04093,0.006688,0.221184,0.006176,0.0056,0.006272,0.009984,0.010912,0.765888,0.008224
+1198,684.149,1.46167,0.685632,0.006144,0.220288,0.004992,0.005632,0.006272,0.010656,0.011648,0.412064,0.007936
+1199,936.443,1.06787,0.699904,0.019552,0.22128,0.005024,0.006048,0.006144,0.010144,0.010368,0.4136,0.007744
+1200,871.119,1.14795,0.694272,0.006176,0.227296,0.005952,0.004288,0.007232,0.0112,0.010272,0.41488,0.006976
+1201,558.876,1.78931,0.6808,0.008832,0.223456,0.006144,0.006112,0.006176,0.01024,0.011424,0.400224,0.008192
+1202,899.429,1.11182,0.708608,0.007424,0.2568,0.006112,0.005184,0.006272,0.010496,0.010816,0.397312,0.008192
+1203,838.485,1.19263,0.694592,0.006688,0.235424,0.00576,0.0056,0.006304,0.00912,0.012,0.405728,0.007968
+1204,912.249,1.09619,0.687328,0.006176,0.228448,0.004992,0.005344,0.006336,0.010784,0.010304,0.407104,0.00784
+1205,870.008,1.14941,0.691456,0.006144,0.231424,0.006144,0.005696,0.006304,0.010496,0.010272,0.407136,0.00784
+1206,894.128,1.11841,1.43754,0.006848,0.2336,0.005856,0.004384,0.006144,0.011488,0.01104,1.1487,0.009472
+1207,547.52,1.82642,0.68864,0.00672,0.223232,0.006144,0.0056,0.006176,0.00992,0.011072,0.411552,0.008224
+1208,864.5,1.15674,1.08134,0.007264,0.245696,0.004992,0.005408,0.006432,0.008768,0.011936,0.781664,0.009184
+1209,693.297,1.44238,0.673632,0.006368,0.217056,0.006112,0.005568,0.006144,0.009888,0.0112,0.403456,0.00784
+1210,965.81,1.0354,0.665632,0.006144,0.219072,0.00576,0.004544,0.006112,0.010272,0.01216,0.393344,0.008224
+1211,931.332,1.07373,0.68608,0.007392,0.223776,0.00576,0.004736,0.007232,0.009184,0.012256,0.407584,0.00816
+1212,520.061,1.92285,0.675424,0.009248,0.221696,0.00576,0.004896,0.006208,0.010272,0.012032,0.397472,0.00784
+1213,942.476,1.06104,0.66752,0.006176,0.219136,0.006112,0.005664,0.006176,0.010112,0.010816,0.395264,0.008064
+1214,619.761,1.61353,0.731776,0.021088,0.255168,0.004992,0.005792,0.006336,0.010336,0.012,0.408896,0.007168
+1215,1052.69,0.949951,0.67552,0.00656,0.222304,0.005024,0.006144,0.006112,0.01024,0.01024,0.401216,0.00768
+1216,929.43,1.07593,0.683552,0.006656,0.226752,0.00576,0.004864,0.006272,0.010304,0.011744,0.403392,0.007808
+1217,754.328,1.32568,0.884736,0.008192,0.432128,0.005408,0.004832,0.006176,0.010208,0.011776,0.397824,0.008192
+1218,775.905,1.28882,0.675264,0.006176,0.218784,0.005792,0.0048,0.006144,0.010272,0.012032,0.403392,0.007872
+1219,837.628,1.19385,0.908896,0.007744,0.447968,0.005088,0.006144,0.006144,0.01024,0.011456,0.406304,0.007808
+1220,853.511,1.17163,0.684032,0.006144,0.216864,0.00576,0.004704,0.006144,0.011616,0.020448,0.405344,0.007008
+1221,891.986,1.12109,0.679936,0.006144,0.217088,0.006144,0.005632,0.006176,0.010176,0.010816,0.409568,0.008192
+1222,898.049,1.11353,0.684032,0.00752,0.225024,0.005024,0.0056,0.006304,0.010624,0.011744,0.404,0.008192
+1223,643.721,1.55347,0.685344,0.008416,0.227104,0.00576,0.004736,0.007136,0.009216,0.012288,0.402752,0.007936
+1224,926.068,1.07983,0.69024,0.006208,0.221216,0.006112,0.005472,0.006272,0.010784,0.010272,0.415712,0.008192
+1225,925.232,1.08081,0.85248,0.006784,0.400864,0.00576,0.005088,0.006176,0.010208,0.011712,0.397888,0.008
+1226,778.263,1.28491,0.67584,0.006272,0.218496,0.005792,0.004864,0.006112,0.010368,0.012064,0.404736,0.007136
+1227,875.027,1.14282,0.684608,0.006688,0.232864,0.00576,0.00512,0.00736,0.010176,0.011104,0.3984,0.007136
+1228,894.518,1.11792,1.3536,0.006144,0.22528,0.006144,0.00528,0.007008,0.01024,0.012032,1.07238,0.009088
+1229,566.137,1.76636,0.684032,0.007616,0.225856,0.005824,0.004416,0.006144,0.01024,0.012064,0.404736,0.007136
+1230,933.881,1.0708,0.677952,0.006528,0.221184,0.006144,0.00528,0.006144,0.010816,0.010528,0.40336,0.007968
+1231,771.23,1.29663,0.687488,0.006144,0.21888,0.00576,0.004736,0.007424,0.010048,0.0112,0.415552,0.007744
+1232,936.229,1.06812,0.66704,0.006208,0.219104,0.00576,0.004512,0.006144,0.011648,0.01088,0.394848,0.007936
+1233,931.756,1.07324,0.676224,0.006528,0.218784,0.00576,0.004832,0.007744,0.010112,0.010816,0.403456,0.008192
+1234,881.05,1.13501,1.34342,0.006784,0.460192,0.012704,0.004512,0.006144,0.011744,0.010784,0.821248,0.009312
+1235,569.126,1.75708,0.68608,0.00752,0.221632,0.00576,0.004704,0.007744,0.010048,0.01088,0.4096,0.008192
+1236,892.375,1.12061,0.868352,0.007712,0.401216,0.004992,0.005632,0.0064,0.010272,0.01168,0.412256,0.008192
+1237,796.268,1.25586,0.684032,0.007168,0.22016,0.005888,0.0056,0.006336,0.010272,0.010848,0.409664,0.008096
+1238,915.716,1.09204,0.679776,0.006208,0.221184,0.006144,0.004096,0.007264,0.011008,0.010432,0.405472,0.007968
+1239,902.004,1.10864,0.708352,0.007232,0.224192,0.00608,0.00416,0.007904,0.009984,0.010784,0.43008,0.007936
+1240,563.877,1.77344,0.720896,0.008288,0.243616,0.006144,0.004096,0.007168,0.010816,0.01072,0.421856,0.008192
+1241,908.204,1.10107,0.68608,0.007296,0.22352,0.00576,0.005088,0.006144,0.010272,0.011552,0.408256,0.008192
+1242,755.162,1.32422,0.684416,0.00656,0.218528,0.00576,0.004864,0.006336,0.01136,0.010912,0.412064,0.008032
+1243,890.241,1.12329,0.696672,0.006496,0.216416,0.004992,0.00592,0.006144,0.01024,0.026496,0.411776,0.008192
+1244,900.418,1.1106,0.692896,0.006816,0.218304,0.004992,0.005792,0.006304,0.0104,0.011904,0.421504,0.00688
+1245,734.182,1.36206,1.3391,0.007744,0.483744,0.016416,0.006144,0.006144,0.010272,0.011712,0.788288,0.00864
+1246,642.006,1.55762,0.688128,0.006176,0.229344,0.005824,0.004416,0.006176,0.011616,0.01088,0.4056,0.008096
+1247,923.771,1.08252,0.872,0.00736,0.40192,0.00576,0.0048,0.00624,0.010176,0.024096,0.403808,0.00784
+1248,751.974,1.32983,0.669696,0.007264,0.220064,0.006144,0.005376,0.006112,0.01088,0.010592,0.395072,0.008192
+1249,967.407,1.03369,0.678848,0.006752,0.219488,0.006112,0.004128,0.006144,0.01024,0.012192,0.4056,0.008192
+1250,877.84,1.13916,0.692896,0.006784,0.219168,0.005952,0.004288,0.006144,0.011776,0.010784,0.403424,0.024576
+1251,621.548,1.60889,0.694272,0.009728,0.225056,0.004992,0.005984,0.006144,0.01024,0.011456,0.401344,0.019328
+1252,923.771,1.08252,0.720928,0.007424,0.256544,0.005792,0.004672,0.006144,0.011936,0.010592,0.4096,0.008224
+1253,771.375,1.29639,0.675744,0.006176,0.221184,0.006144,0.005824,0.006464,0.010048,0.011456,0.400384,0.008064
+1254,842.278,1.18726,0.691648,0.006368,0.223232,0.006144,0.00528,0.006912,0.010368,0.011648,0.41376,0.007936
+1255,989.85,1.01025,0.67344,0.006144,0.223232,0.00576,0.005568,0.006304,0.009024,0.012288,0.39728,0.00784
+1256,943.561,1.05981,1.36128,0.006144,0.226976,0.00576,0.004832,0.006144,0.01168,0.010848,1.0793,0.0096
+1257,563.721,1.77393,0.700384,0.006688,0.22528,0.005792,0.005568,0.006336,0.009984,0.011168,0.409664,0.019904
+1258,844.71,1.18384,0.894976,0.00736,0.446272,0.005152,0.005504,0.006304,0.01072,0.01184,0.394688,0.007136
+1259,784.825,1.27417,0.681984,0.006144,0.218976,0.00576,0.00464,0.006144,0.010336,0.012032,0.41088,0.007072
+1260,925.023,1.08105,0.676192,0.006752,0.218272,0.00512,0.005472,0.006144,0.010912,0.010336,0.405376,0.007808
+1261,885.048,1.12988,0.687488,0.006432,0.2208,0.00576,0.004864,0.006144,0.01024,0.011808,0.4136,0.00784
+1262,522.382,1.91431,0.6848,0.008864,0.224576,0.005024,0.005632,0.006368,0.0104,0.011296,0.405568,0.007072
+1263,837.114,1.19458,0.704512,0.007616,0.243296,0.005088,0.006144,0.006144,0.01024,0.011552,0.40624,0.008192
+1264,717.464,1.3938,0.684032,0.006144,0.23056,0.005024,0.005632,0.00624,0.010592,0.012064,0.399584,0.008192
+1265,974.078,1.02661,0.718688,0.007584,0.249824,0.005792,0.005088,0.006144,0.010272,0.011552,0.4144,0.008032
+1266,908.204,1.10107,0.669696,0.006144,0.223232,0.006144,0.00544,0.0064,0.010688,0.01024,0.394592,0.006816
+1267,791.651,1.26318,0.888288,0.00832,0.419456,0.004608,0.006016,0.006176,0.010208,0.012288,0.41344,0.007776
+1268,745.269,1.3418,0.677536,0.006304,0.221184,0.005856,0.004416,0.006144,0.011456,0.011072,0.403328,0.007776
+1269,829.15,1.20605,0.946176,0.007296,0.486272,0.006112,0.005568,0.006336,0.010112,0.010816,0.405472,0.008192
+1270,805.665,1.24121,0.673792,0.006144,0.223232,0.006176,0.005344,0.006304,0.010848,0.010272,0.39728,0.008192
+1271,920.449,1.08643,0.682528,0.00672,0.21744,0.006144,0.00592,0.006176,0.01024,0.010464,0.411616,0.007808
+1272,863.771,1.15771,0.702464,0.007904,0.248096,0.005856,0.004384,0.006144,0.011392,0.011136,0.400928,0.006624
+1273,663.857,1.50635,0.690752,0.008768,0.22848,0.004992,0.006144,0.006144,0.010272,0.011264,0.406496,0.008192
+1274,919.004,1.08813,0.672096,0.006496,0.219136,0.006048,0.004192,0.006144,0.011616,0.010912,0.39936,0.008192
+1275,829.654,1.20532,0.859904,0.007616,0.401984,0.00592,0.0056,0.006304,0.010304,0.010816,0.403424,0.007936
+1276,856.187,1.16797,0.66976,0.006208,0.222848,0.00576,0.004864,0.006144,0.01024,0.012128,0.394528,0.00704
+1277,880.292,1.13599,0.683904,0.00768,0.227136,0.005024,0.00592,0.006144,0.01024,0.011552,0.402144,0.008064
+1278,890.241,1.12329,0.701888,0.006304,0.229408,0.006112,0.005216,0.006336,0.010976,0.01024,0.419552,0.007744
+1279,632.489,1.58105,0.716,0.009728,0.252416,0.006144,0.005632,0.006304,0.010048,0.010784,0.4072,0.007744
+1280,942.259,1.06128,0.683104,0.006144,0.219136,0.006144,0.00544,0.006848,0.011328,0.011104,0.409152,0.007808
+1281,754.606,1.3252,0.6712,0.007488,0.225888,0.005792,0.005568,0.00656,0.01024,0.010848,0.390944,0.007872
+1282,922.315,1.08423,0.68256,0.00672,0.221184,0.005888,0.004352,0.006144,0.011424,0.011104,0.407552,0.008192
+1283,942.693,1.06079,0.67728,0.007232,0.220096,0.006144,0.006144,0.006144,0.01024,0.011584,0.401856,0.00784
+1284,854.401,1.17041,1.29638,0.007328,0.459616,0.008192,0.005376,0.006304,0.010848,0.01024,0.77824,0.01024
+1285,601.292,1.66309,0.691552,0.00752,0.225952,0.006144,0.005408,0.006304,0.00992,0.011136,0.411264,0.007904
+1286,924.605,1.08154,0.891744,0.006752,0.442432,0.00576,0.004672,0.006176,0.01152,0.011008,0.396576,0.006848
+1287,787.541,1.26978,0.67792,0.007488,0.21984,0.00576,0.00448,0.006176,0.011264,0.011136,0.404768,0.007008
+1288,880.86,1.13525,0.66912,0.006432,0.222336,0.004992,0.005664,0.00656,0.010304,0.011744,0.39328,0.007808
+1289,926.068,1.07983,0.683296,0.006304,0.226752,0.00576,0.004896,0.006304,0.010016,0.010464,0.405088,0.007712
+1290,569.601,1.75562,0.704512,0.009408,0.244384,0.00576,0.00464,0.006144,0.011648,0.01088,0.404512,0.007136
+1291,973.847,1.02686,0.677184,0.0064,0.227328,0.005888,0.005568,0.006304,0.010048,0.011072,0.396736,0.00784
+1292,813.99,1.22852,0.674592,0.006752,0.222688,0.004992,0.005632,0.006496,0.011264,0.011264,0.398368,0.007136
+1293,924.396,1.08179,0.680352,0.00656,0.219136,0.00576,0.005568,0.006304,0.010208,0.011072,0.408928,0.006816
+1294,942.259,1.06128,0.671296,0.006144,0.222496,0.005024,0.005664,0.006272,0.0104,0.012096,0.395456,0.007744
+1295,885.622,1.12915,1.34285,0.007392,0.223392,0.00576,0.00512,0.006144,0.010272,0.012096,1.06307,0.0096
+1296,568.179,1.76001,0.708416,0.007456,0.25264,0.006144,0.004096,0.006272,0.011872,0.010528,0.401408,0.008
+1297,898.246,1.11328,0.67168,0.007328,0.222048,0.00592,0.0056,0.006304,0.009824,0.011232,0.395296,0.008128
+1298,784.825,1.27417,0.68576,0.00672,0.219168,0.006176,0.004064,0.006144,0.011936,0.010624,0.413056,0.007872
+1299,879.159,1.13745,0.659936,0.006624,0.219136,0.006144,0.00576,0.006304,0.009952,0.010752,0.388288,0.006976
+1300,980.608,1.01978,0.698368,0.007232,0.223584,0.00576,0.004896,0.006336,0.011744,0.010816,0.419808,0.008192
+1301,832.013,1.2019,1.3361,0.006688,0.44064,0.0408,0.01568,0.006304,0.010336,0.010848,0.796384,0.008416
+1302,549.356,1.82031,0.713408,0.006816,0.260256,0.00608,0.00416,0.006144,0.011776,0.010496,0.399616,0.008064
+1303,938.804,1.06519,0.854016,0.006144,0.401408,0.006144,0.005728,0.006272,0.01008,0.01072,0.399328,0.008192
+1304,799.375,1.25098,0.678272,0.006848,0.219424,0.006144,0.004096,0.006144,0.012096,0.010464,0.405248,0.007808
+1305,925.232,1.08081,0.666304,0.00672,0.219296,0.006112,0.005664,0.006624,0.01024,0.010304,0.394496,0.006848
+1306,891.986,1.12109,1.3433,0.006144,0.22528,0.006144,0.004096,0.007744,0.010688,0.01168,1.06147,0.010048
+1307,577.878,1.73047,0.68,0.00624,0.223232,0.006144,0.006016,0.006272,0.011328,0.0112,0.401408,0.00816
+1308,908.405,1.10083,0.677344,0.006144,0.22048,0.004992,0.005632,0.006336,0.010368,0.012064,0.40352,0.007808
+1309,796.887,1.25488,0.67584,0.0072,0.222176,0.006176,0.006112,0.007232,0.009184,0.012128,0.39744,0.008192
+1310,896.28,1.11572,0.679968,0.006208,0.219104,0.006144,0.005504,0.006176,0.01088,0.011424,0.406336,0.008192
+1311,904.194,1.10596,0.688128,0.006144,0.227328,0.006144,0.00608,0.006208,0.010208,0.011488,0.406336,0.008192
+1312,918.798,1.08838,1.30938,0.006784,0.470272,0.006976,0.005312,0.00624,0.010976,0.011328,0.7824,0.009088
+1313,571.508,1.74976,0.693984,0.006144,0.223232,0.006144,0.005824,0.006464,0.00992,0.010592,0.41776,0.007904
+1314,500.489,1.99805,0.872928,0.006624,0.40096,0.005856,0.004832,0.006144,0.011328,0.011168,0.417824,0.008192
+1315,1097.24,0.911377,0.702464,0.006144,0.253376,0.00576,0.005056,0.006144,0.01024,0.011936,0.395648,0.00816
+1316,983.67,1.0166,0.683264,0.006272,0.221216,0.006112,0.005472,0.006336,0.010752,0.011264,0.407808,0.008032
+1317,736.823,1.35718,1.308,0.007488,0.472768,0.007168,0.006144,0.006144,0.010272,0.011424,0.774784,0.011808
+1318,673.463,1.48486,0.684032,0.006144,0.225088,0.00576,0.004672,0.006144,0.01024,0.01184,0.4072,0.006944
+1319,917.357,1.09009,1.03018,0.006176,0.2184,0.005824,0.004896,0.00576,0.010624,0.010496,0.755616,0.012384
+1320,719.986,1.38892,0.705664,0.007392,0.242464,0.006144,0.005248,0.00688,0.010432,0.011744,0.407552,0.007808
+1321,871.119,1.14795,0.696352,0.006144,0.220416,0.005024,0.005984,0.006144,0.01024,0.010272,0.425216,0.006912
+1322,927.746,1.07788,0.67456,0.006752,0.223424,0.00576,0.004672,0.006144,0.011648,0.01088,0.397312,0.007968
+1323,536.547,1.86377,0.704448,0.00976,0.246176,0.006144,0.006048,0.006272,0.01008,0.010368,0.401408,0.008192
+1324,917.768,1.0896,0.676608,0.006784,0.221568,0.005856,0.004384,0.006144,0.011552,0.010976,0.401408,0.007936
+1325,784.825,1.27417,0.671456,0.006528,0.219008,0.005728,0.00464,0.007264,0.00912,0.012288,0.399264,0.007616
+1326,612.898,1.63159,0.690464,0.006656,0.2312,0.00576,0.004704,0.006144,0.011264,0.011168,0.4056,0.007968
+1327,1439.21,0.694824,0.700192,0.006656,0.229376,0.006144,0.005568,0.00672,0.010144,0.010336,0.417472,0.007776
+1328,858.34,1.16504,1.31654,0.007456,0.463584,0.008192,0.00512,0.006304,0.010976,0.010368,0.794624,0.00992
+1329,602.619,1.65942,0.681984,0.006176,0.2232,0.005984,0.005568,0.00624,0.010112,0.011008,0.405504,0.008192
+1330,865.23,1.15576,0.851104,0.007392,0.400032,0.00576,0.004608,0.006144,0.01136,0.011168,0.396864,0.007776
+1331,799.844,1.25024,0.661504,0.007424,0.217056,0.005024,0.006016,0.006144,0.01008,0.0104,0.39248,0.00688
+1332,932.392,1.07251,0.684544,0.006592,0.226752,0.005792,0.004864,0.006304,0.011552,0.011008,0.404576,0.007104
+1333,929.22,1.07617,0.680736,0.00672,0.227552,0.005888,0.005568,0.006304,0.010208,0.010944,0.39936,0.008192
+1334,643.823,1.55322,0.690176,0.008192,0.228384,0.005088,0.005536,0.006336,0.010688,0.010208,0.408768,0.006976
+1335,879.725,1.13672,0.690176,0.006176,0.239584,0.005984,0.0056,0.006336,0.010624,0.0104,0.398592,0.00688
+1336,862.497,1.15942,0.686912,0.006752,0.221344,0.00576,0.004544,0.006144,0.010304,0.011936,0.411936,0.008192
+1337,900.616,1.11035,0.65696,0.006144,0.217088,0.006144,0.005376,0.006368,0.009888,0.011136,0.387008,0.007808
+1338,955.67,1.04639,0.67232,0.00672,0.218592,0.00576,0.005024,0.006176,0.011296,0.011072,0.399488,0.008192
+1339,573.027,1.74512,0.679936,0.006144,0.22528,0.006176,0.005632,0.006272,0.010272,0.01056,0.401408,0.008192
+1340,1024.26,0.976318,0.692224,0.009696,0.22992,0.005984,0.004256,0.007552,0.01088,0.01024,0.405504,0.008192
+1341,892.375,1.12061,0.679648,0.007584,0.220928,0.004992,0.006112,0.006144,0.01024,0.011648,0.404096,0.007904
+1342,762.898,1.31079,0.69872,0.006496,0.225056,0.00576,0.004704,0.006176,0.011296,0.011232,0.419808,0.008192
+1343,933.668,1.07104,0.669696,0.006144,0.220256,0.005024,0.005888,0.0064,0.010208,0.011616,0.395968,0.008192
+1344,927.536,1.07812,0.677888,0.006368,0.222944,0.005984,0.00432,0.007488,0.010944,0.01184,0.399808,0.008192
+1345,915.921,1.0918,1.10592,0.007584,0.22592,0.006016,0.005568,0.006304,0.010336,0.010656,0.82464,0.008896
+1346,555.917,1.79883,0.680256,0.006432,0.228672,0.005824,0.004864,0.0064,0.01024,0.012064,0.39888,0.00688
+1347,948.807,1.05396,0.882048,0.007584,0.412256,0.006144,0.006112,0.006176,0.01024,0.011392,0.414208,0.007936
+1348,719.733,1.3894,0.705152,0.006784,0.247808,0.005888,0.004352,0.006176,0.011744,0.010784,0.403424,0.008192
+1349,921.9,1.08472,0.680896,0.006784,0.223616,0.006144,0.00592,0.006272,0.010016,0.01056,0.403456,0.008128
+1350,889.082,1.12476,0.694176,0.007392,0.24416,0.005824,0.004768,0.006144,0.011776,0.010752,0.395264,0.008096
+1351,565.59,1.76807,0.707456,0.008896,0.241632,0.0056,0.004832,0.006144,0.01024,0.011808,0.41136,0.006944
+1352,821.83,1.2168,0.695968,0.007744,0.242112,0.00592,0.00432,0.006144,0.012288,0.01024,0.39936,0.00784
+1353,718.849,1.39111,0.73392,0.006784,0.276576,0.006048,0.005568,0.006304,0.010048,0.010944,0.403456,0.008192
+1354,835.577,1.19678,0.688288,0.006336,0.240896,0.004992,0.005664,0.006336,0.010368,0.011264,0.39424,0.008192
+1355,949.467,1.05322,0.690176,0.00752,0.234144,0.00592,0.005568,0.00688,0.010176,0.010368,0.401408,0.008192
+1356,762.898,1.31079,1.29843,0.007616,0.464928,0.007744,0.004896,0.006336,0.01024,0.01216,0.774272,0.01024
+1357,657.992,1.51978,0.680672,0.006848,0.227328,0.005792,0.005568,0.006272,0.010112,0.01088,0.39968,0.008192
+1358,855.293,1.16919,0.868032,0.00768,0.40128,0.00576,0.004896,0.006272,0.010336,0.011904,0.412032,0.007872
+1359,808.527,1.23682,0.688128,0.006144,0.221184,0.006016,0.0056,0.006144,0.009888,0.011264,0.414816,0.007072
+1360,884.665,1.13037,0.67824,0.006496,0.223232,0.006176,0.005376,0.004864,0.011776,0.010752,0.401376,0.008192
+1361,530.639,1.88452,0.884736,0.008192,0.417312,0.004576,0.006144,0.006176,0.01024,0.012192,0.413088,0.006816
+1362,788.754,1.26782,0.684256,0.006368,0.225248,0.00576,0.004512,0.006144,0.01024,0.011616,0.407232,0.007136
+1363,903.596,1.10669,0.863552,0.006144,0.402816,0.005792,0.005088,0.006144,0.01024,0.011488,0.408096,0.007744
+1364,727.144,1.37524,0.699584,0.007392,0.242464,0.006144,0.005536,0.006272,0.01072,0.011392,0.401792,0.007872
+1365,934.946,1.06958,0.710656,0.006144,0.253664,0.00576,0.004768,0.006144,0.011456,0.010912,0.403616,0.008192
+1366,845.757,1.18237,0.704704,0.006336,0.239616,0.006144,0.005408,0.006304,0.010816,0.012288,0.4096,0.008192
+1367,768.192,1.30176,0.900928,0.026368,0.417216,0.005056,0.005888,0.006304,0.010336,0.012288,0.4096,0.007872
+1368,771.084,1.29688,0.689792,0.007616,0.231968,0.00576,0.004512,0.007264,0.0112,0.011232,0.402368,0.007872
+1369,812.86,1.23022,0.690272,0.00624,0.229376,0.006144,0.005792,0.006208,0.010176,0.010592,0.407552,0.008192
+1370,888.118,1.12598,0.696736,0.00656,0.23248,0.005088,0.005568,0.006336,0.010624,0.01024,0.411648,0.008192
+1371,939.019,1.06494,0.67584,0.007232,0.223968,0.005792,0.004672,0.0072,0.009216,0.011584,0.397984,0.008192
+1372,891.986,1.12109,0.67776,0.006528,0.22528,0.006048,0.004192,0.008032,0.010432,0.011584,0.397824,0.00784
+1373,554.713,1.80273,0.717088,0.00848,0.263616,0.00576,0.005056,0.006176,0.010208,0.011968,0.398816,0.007008
+1374,957.905,1.04395,1.02605,0.007232,0.223648,0.00576,0.004896,0.006272,0.01024,0.011808,0.747008,0.009184
+1375,699.334,1.42993,0.684224,0.006752,0.224768,0.00576,0.005088,0.007488,0.01024,0.010944,0.405408,0.007776
+1376,707.427,1.41357,0.728896,0.006752,0.261952,0.00576,0.0048,0.006144,0.011712,0.010816,0.41312,0.00784
+1377,1064.17,0.939697,0.708384,0.006144,0.247808,0.006048,0.0056,0.006272,0.010208,0.010784,0.407552,0.007968
+1378,770.07,1.29858,1.32096,0.00752,0.450496,0.02032,0.004864,0.006272,0.01024,0.012,0.800544,0.008704
+1379,652.437,1.53271,0.692224,0.006144,0.232896,0.00576,0.005056,0.006144,0.01024,0.011808,0.405984,0.008192
+1380,842.452,1.18701,0.67888,0.00672,0.228992,0.005024,0.00576,0.006304,0.010336,0.01184,0.395712,0.008192
+1381,926.697,1.0791,0.679936,0.0072,0.226272,0.005984,0.0056,0.006336,0.009952,0.010976,0.400544,0.007072
+1382,881.808,1.13403,0.69824,0.006144,0.222272,0.005056,0.005632,0.006656,0.011424,0.011104,0.421888,0.008064
+1383,910.425,1.09839,0.681984,0.006144,0.227328,0.005824,0.0056,0.006304,0.008928,0.011808,0.401856,0.008192
+1384,628.993,1.58984,0.710432,0.009536,0.239968,0.00576,0.004832,0.006144,0.011968,0.010592,0.413664,0.007968
+1385,938.159,1.06592,0.673792,0.007584,0.221792,0.006016,0.005568,0.006304,0.009792,0.011264,0.39728,0.008192
+1386,745.134,1.34204,0.669696,0.007392,0.224032,0.006144,0.004096,0.007232,0.010976,0.010464,0.391168,0.008192
+1387,953.223,1.04907,0.681984,0.006752,0.228704,0.004992,0.00608,0.006144,0.01024,0.012288,0.39904,0.007744
+1388,812.376,1.23096,0.679936,0.00752,0.228032,0.006112,0.005376,0.006336,0.011008,0.011968,0.395392,0.008192
+1389,738.151,1.35474,1.39786,0.006144,0.272192,0.005792,0.004672,0.006144,0.01024,0.012256,0.818496,0.26192
+1390,658.309,1.51904,0.69632,0.007968,0.23296,0.006048,0.004896,0.006176,0.010304,0.012096,0.40768,0.008192
+1391,924.188,1.08203,0.854464,0.006592,0.40096,0.00576,0.004928,0.007616,0.010304,0.010752,0.39936,0.008192
+1392,810.127,1.23438,0.682112,0.006816,0.22976,0.006112,0.005472,0.006368,0.010688,0.01024,0.398848,0.007808
+1393,934.733,1.06982,0.685632,0.00624,0.225248,0.006144,0.005696,0.006368,0.010048,0.010656,0.407296,0.007936
+1394,899.627,1.11157,0.68096,0.006144,0.230656,0.006048,0.004896,0.00624,0.011712,0.010784,0.396576,0.007904
+1395,661.819,1.51099,0.878592,0.009888,0.418144,0.005472,0.0048,0.006112,0.010304,0.011712,0.405344,0.006816
+1396,715.959,1.39673,0.71328,0.00688,0.249024,0.005024,0.005632,0.006368,0.010528,0.011872,0.409984,0.007968
+1397,812.215,1.2312,0.685248,0.006144,0.23552,0.006144,0.005632,0.00624,0.009824,0.011072,0.396928,0.007744
+1398,931.968,1.073,0.704512,0.006144,0.249856,0.006144,0.00544,0.006848,0.01024,0.011776,0.399872,0.008192
+1399,779.003,1.28369,0.681984,0.006144,0.233472,0.006048,0.0056,0.006304,0.009952,0.011008,0.395264,0.008192
+1400,931.332,1.07373,1.31482,0.007584,0.461408,0.008192,0.005184,0.006304,0.011008,0.010304,0.79568,0.009152
+1401,570.633,1.75244,0.720576,0.006688,0.256064,0.006144,0.006048,0.00624,0.010112,0.010368,0.4112,0.007712
+1402,987.226,1.01294,0.847872,0.006144,0.401408,0.005792,0.004448,0.006144,0.011392,0.010944,0.393408,0.008192
+1403,776.787,1.28735,0.68304,0.007584,0.231488,0.00464,0.006144,0.006144,0.01024,0.011744,0.397248,0.007808
+1404,932.605,1.07227,0.672608,0.006784,0.223456,0.006112,0.004128,0.008064,0.0104,0.011616,0.393856,0.008192
+1405,919.623,1.0874,0.695904,0.00768,0.232992,0.005088,0.006144,0.006144,0.01024,0.01024,0.409568,0.007808
+1406,538.098,1.8584,0.70928,0.008928,0.239616,0.006144,0.005248,0.006368,0.010912,0.011296,0.41264,0.008128
+1407,952.337,1.05005,0.688512,0.00672,0.22864,0.004928,0.006048,0.00624,0.01024,0.011392,0.4064,0.007904
+1408,830.495,1.2041,0.69632,0.006176,0.225248,0.006144,0.005216,0.007072,0.01024,0.011872,0.41616,0.008192
+1409,876.337,1.14111,0.704512,0.007328,0.228192,0.00576,0.00448,0.006144,0.01024,0.011808,0.422368,0.008192
+1410,939.019,1.06494,0.683904,0.006464,0.227328,0.006144,0.004096,0.007392,0.010912,0.01056,0.4032,0.007808
+1411,888.696,1.12524,1.34432,0.006752,0.2296,0.005824,0.005568,0.006304,0.008928,0.012288,1.06058,0.00848
+1412,552.17,1.81104,0.681824,0.007584,0.231968,0.00576,0.004544,0.007712,0.01072,0.011456,0.394048,0.008032
+1413,965.582,1.03564,0.917568,0.00624,0.449632,0.005024,0.006112,0.006144,0.010272,0.01024,0.415712,0.008192
+1414,719.354,1.39014,0.684032,0.006144,0.231136,0.00576,0.004768,0.006144,0.011936,0.010624,0.399328,0.008192
+1415,891.016,1.12231,0.717344,0.006688,0.251872,0.005792,0.005568,0.007136,0.010208,0.011488,0.411456,0.007136
+1416,886.196,1.12842,0.693888,0.006528,0.236768,0.005024,0.005632,0.006304,0.010496,0.011872,0.403456,0.007808
+1417,573.027,1.74512,0.700416,0.008192,0.233472,0.006176,0.00576,0.006304,0.009952,0.01072,0.41296,0.00688
+1418,916.536,1.09106,0.679392,0.006304,0.228608,0.004992,0.005632,0.006304,0.010464,0.011712,0.397824,0.007552
+1419,772.102,1.29517,0.684736,0.006752,0.231136,0.006016,0.004704,0.006144,0.011296,0.011136,0.399456,0.008096
+1420,963.085,1.03833,0.690176,0.007776,0.2216,0.006144,0.005408,0.006912,0.01024,0.011968,0.412992,0.007136
+1421,834.216,1.19873,0.69632,0.007328,0.24832,0.005824,0.004768,0.006144,0.01024,0.011776,0.393728,0.008192
+1422,902.401,1.10815,1.33552,0.006336,0.468544,0.012704,0.004128,0.006176,0.011904,0.010592,0.806496,0.00864
+1423,592.764,1.68701,0.68208,0.006144,0.231424,0.006144,0.004096,0.006304,0.01008,0.01184,0.398912,0.007136
+1424,900.814,1.11011,0.909696,0.00656,0.450464,0.00576,0.004544,0.006144,0.011488,0.011072,0.405472,0.008192
+1425,775.611,1.28931,0.684352,0.006464,0.226752,0.00576,0.005056,0.006144,0.01024,0.01168,0.405216,0.00704
+1426,774.438,1.29126,0.700416,0.006144,0.237568,0.005856,0.004384,0.006144,0.011488,0.011008,0.41072,0.007104
+1427,1034.87,0.966309,0.69648,0.006368,0.237536,0.00592,0.0056,0.006304,0.010144,0.010752,0.405696,0.00816
+1428,574.232,1.74146,0.717536,0.008928,0.249856,0.006144,0.005568,0.006304,0.010688,0.011648,0.41024,0.00816
+1429,911.235,1.09741,0.682976,0.006784,0.224768,0.005024,0.00608,0.006144,0.010208,0.010272,0.40736,0.006336
+1430,722.781,1.38354,0.678368,0.006624,0.22528,0.006176,0.004064,0.006368,0.011616,0.01072,0.399328,0.008192
+1431,937.729,1.06641,0.68896,0.00672,0.2296,0.00576,0.0056,0.006336,0.009984,0.011264,0.406528,0.007168
+1432,867.613,1.15259,0.68608,0.00752,0.232096,0.007936,0.004352,0.006144,0.011904,0.010656,0.39728,0.008192
+1433,871.304,1.14771,1.37075,0.006752,0.236832,0.004992,0.006016,0.006144,0.010272,0.0104,0.8272,0.262144
+1434,582.314,1.71729,0.68096,0.006752,0.23088,0.005056,0.005376,0.006304,0.010848,0.011488,0.396064,0.008192
+1435,884.665,1.13037,0.857344,0.007648,0.400992,0.005088,0.006112,0.006144,0.01024,0.01024,0.40304,0.00784
+1436,787.238,1.27026,0.68608,0.006144,0.231392,0.00576,0.004512,0.006144,0.011616,0.010912,0.402688,0.006912
+1437,902.6,1.10791,0.70688,0.006496,0.226752,0.00576,0.005024,0.006144,0.01024,0.011424,0.426848,0.008192
+1438,894.518,1.11792,0.690688,0.006752,0.247296,0.005792,0.004896,0.006208,0.01024,0.012288,0.39024,0.006976
+1439,508.883,1.96509,0.718304,0.009504,0.258784,0.006144,0.005952,0.006272,0.00992,0.010624,0.4032,0.007904
+1440,964.218,1.03711,0.689536,0.007488,0.233952,0.00576,0.004704,0.006144,0.011296,0.011232,0.401152,0.007808
+1441,773.706,1.29248,0.679328,0.007392,0.227968,0.00576,0.00464,0.008192,0.01024,0.010272,0.396896,0.007968
+1442,945.303,1.05786,0.679936,0.007616,0.229952,0.006176,0.004064,0.007424,0.010848,0.010432,0.395232,0.008192
+1443,904.793,1.10522,0.689664,0.007776,0.229792,0.006144,0.006016,0.006272,0.010176,0.010304,0.405376,0.007808
+1444,880.103,1.13623,1.34989,0.006496,0.229376,0.006176,0.004064,0.007168,0.01072,0.010784,1.06496,0.010144
+1445,540.369,1.85059,0.695392,0.007424,0.228128,0.006016,0.005568,0.006272,0.010304,0.010784,0.413184,0.007712
+1446,960.826,1.04077,0.84976,0.006176,0.402624,0.004992,0.005664,0.006336,0.010432,0.011488,0.394016,0.008032
+1447,786.331,1.27173,0.670624,0.006752,0.221504,0.006144,0.005888,0.006272,0.010368,0.010272,0.395296,0.008128
+1448,943.779,1.05957,0.68624,0.006304,0.22656,0.004992,0.005632,0.006304,0.010464,0.011776,0.406016,0.008192
+1449,809.166,1.23584,0.71264,0.007712,0.25856,0.006112,0.005696,0.00624,0.010592,0.011424,0.398176,0.008128
+1450,612.532,1.63257,0.704512,0.008192,0.241152,0.00576,0.004896,0.006272,0.01024,0.011872,0.40928,0.006848
+1451,911.235,1.09741,0.708256,0.007392,0.242464,0.006176,0.005632,0.006304,0.010016,0.010816,0.411616,0.00784
+1452,777.672,1.28589,0.677728,0.006752,0.233376,0.005792,0.0048,0.006144,0.01024,0.01232,0.390496,0.007808
+1453,928.167,1.07739,0.6872,0.006144,0.227328,0.005888,0.0056,0.006528,0.010016,0.01088,0.407008,0.007808
+1454,963.538,1.03784,0.677888,0.00736,0.21792,0.006176,0.004064,0.006176,0.011712,0.010816,0.406528,0.007136
+1455,806.935,1.23926,0.706656,0.006272,0.25392,0.006016,0.005568,0.006304,0.01008,0.010944,0.40048,0.007072
+1456,586.567,1.70483,0.708864,0.008448,0.236608,0.005056,0.005568,0.006304,0.01056,0.010336,0.417792,0.008192
+1457,936.229,1.06812,0.88064,0.00736,0.415872,0.005024,0.00592,0.006144,0.01024,0.011968,0.40992,0.008192
+1458,749.086,1.33496,0.67504,0.006176,0.224672,0.00576,0.004896,0.006304,0.012256,0.011328,0.395808,0.00784
+1459,907.801,1.10156,0.674304,0.006656,0.22304,0.00576,0.004704,0.008,0.009792,0.01088,0.398624,0.006848
+1460,944.214,1.05908,0.686048,0.006464,0.22704,0.00576,0.004768,0.006144,0.01024,0.011776,0.406016,0.00784
+1461,546.644,1.82935,0.698784,0.008896,0.241056,0.004992,0.005984,0.006144,0.01024,0.012224,0.401472,0.007776
+1462,917.357,1.09009,0.671552,0.006144,0.221184,0.006176,0.004064,0.006368,0.012,0.011488,0.396128,0.008
+1463,531.672,1.88086,0.714752,0.00752,0.254016,0.00576,0.005088,0.006144,0.011584,0.010144,0.406336,0.00816
+1464,927.956,1.07764,0.725984,0.006752,0.249728,0.00576,0.004896,0.00624,0.011744,0.010816,0.421856,0.008192
+1465,922.73,1.08374,0.698656,0.006752,0.23376,0.006144,0.0056,0.006688,0.01024,0.011424,0.41024,0.007808
+1466,565.043,1.76978,0.689184,0.008896,0.23504,0.005024,0.005664,0.006272,0.010464,0.011648,0.399296,0.00688
+1467,916.946,1.09058,0.712448,0.006592,0.22112,0.00576,0.005568,0.006304,0.009056,0.011872,0.438688,0.007488
+1468,792.263,1.26221,0.67984,0.00672,0.2264,0.005024,0.005792,0.006336,0.010432,0.011424,0.399904,0.007808
+1469,888.696,1.12524,0.673824,0.0072,0.221888,0.00576,0.004768,0.0064,0.009984,0.011584,0.398016,0.008224
+1470,947.709,1.05518,0.678688,0.006784,0.220992,0.00576,0.004832,0.006144,0.011296,0.011104,0.403584,0.008192
+1471,883.52,1.13184,1.36006,0.00672,0.231008,0.00576,0.005056,0.006144,0.01024,0.011872,0.817568,0.265696
+1472,559.639,1.78687,0.695904,0.007392,0.22608,0.006112,0.004128,0.006144,0.011712,0.019008,0.407488,0.00784
+1473,888.889,1.125,1.0281,0.007488,0.223936,0.005312,0.004928,0.006176,0.01024,0.011904,0.749216,0.008896
+1474,718.093,1.39258,0.678112,0.006752,0.224608,0.005056,0.0056,0.006304,0.010656,0.011648,0.399488,0.008
+1475,774.877,1.29053,0.678176,0.006432,0.23552,0.006112,0.0056,0.006304,0.010144,0.010752,0.38912,0.008192
+1476,1021.19,0.979248,0.704672,0.006304,0.251936,0.006144,0.005248,0.006336,0.010912,0.010432,0.399168,0.008192
+1477,847.858,1.17944,1.33325,0.007264,0.437152,0.007552,0.014496,0.043232,0.010368,0.0104,0.794592,0.008192
+1478,582.646,1.71631,0.68192,0.006144,0.229376,0.005856,0.004384,0.00752,0.010912,0.01024,0.39936,0.008128
+1479,766.037,1.30542,0.688128,0.007168,0.227392,0.005056,0.006112,0.006176,0.010176,0.011712,0.406144,0.008192
+1480,946.833,1.05615,0.679936,0.006144,0.226496,0.004992,0.005664,0.006304,0.010496,0.011296,0.401536,0.007008
+1481,881.808,1.13403,0.689728,0.006528,0.229184,0.00576,0.00464,0.007296,0.00912,0.011968,0.407456,0.007776
+1482,859.421,1.16357,1.3136,0.006752,0.448832,0.030208,0.004608,0.006144,0.011456,0.010944,0.786112,0.008544
+1483,596.389,1.67676,0.688128,0.007584,0.231488,0.005792,0.004992,0.006144,0.01024,0.011264,0.402432,0.008192
+1484,923.771,1.08252,0.845824,0.007456,0.401216,0.005056,0.0056,0.006304,0.010592,0.011872,0.389536,0.008192
+1485,751.284,1.33105,0.674368,0.00672,0.227328,0.005792,0.004608,0.007872,0.009824,0.010976,0.393216,0.008032
+1486,956.562,1.04541,0.681536,0.006144,0.22656,0.005024,0.005632,0.006496,0.01184,0.01072,0.40128,0.00784
+1487,878.97,1.1377,0.679648,0.006592,0.231424,0.006144,0.005728,0.006304,0.010496,0.011616,0.393504,0.00784
+1488,495.284,2.01904,0.712032,0.008416,0.26144,0.005024,0.005632,0.006336,0.010368,0.011712,0.39536,0.007744
+1489,997.322,1.00269,0.698528,0.006688,0.231424,0.005792,0.0056,0.006304,0.010368,0.010848,0.413632,0.007872
+1490,729.995,1.36987,0.683648,0.00656,0.233216,0.004608,0.005632,0.0064,0.011648,0.01088,0.396896,0.007808
+1491,977.332,1.02319,0.689056,0.00672,0.237952,0.005984,0.005536,0.006336,0.010272,0.010752,0.398464,0.00704
+1492,888.118,1.12598,0.6656,0.007744,0.22576,0.006112,0.005248,0.006272,0.010848,0.011456,0.383968,0.008192
+1493,888.889,1.125,1.33229,0.006176,0.460768,0.024096,0.004576,0.00752,0.010432,0.01072,0.79872,0.00928
+1494,578.368,1.729,0.682368,0.00672,0.227296,0.00576,0.004512,0.007264,0.010816,0.010624,0.401376,0.008
+1495,920.449,1.08643,0.869856,0.008192,0.411136,0.005664,0.005088,0.006144,0.01024,0.011904,0.403712,0.007776
+1496,713.34,1.40186,0.688128,0.007424,0.229792,0.005792,0.0048,0.006144,0.01024,0.012192,0.403584,0.00816
+1497,955.67,1.04639,0.678656,0.00672,0.225056,0.005824,0.00496,0.007488,0.010048,0.011168,0.399328,0.008064
+1498,896.476,1.11548,0.692256,0.006176,0.227328,0.006144,0.004096,0.008192,0.01024,0.012,0.409888,0.008192
+1499,861.047,1.16138,1.3193,0.006528,0.446464,0.030656,0.0056,0.006752,0.01024,0.011424,0.79344,0.008192
+1500,556.371,1.79736,0.715712,0.006752,0.245088,0.00512,0.005568,0.006304,0.010656,0.012,0.416032,0.008192
+1501,781.53,1.27954,0.67648,0.006848,0.225472,0.00608,0.0056,0.006272,0.010176,0.010784,0.397312,0.007936
+1502,933.881,1.0708,0.68608,0.006144,0.222592,0.00576,0.004896,0.006368,0.01136,0.011168,0.4096,0.008192
+1503,856.366,1.16772,0.711488,0.00672,0.260352,0.006144,0.005664,0.006272,0.00992,0.01104,0.397184,0.008192
+1504,931.756,1.07324,1.31728,0.0064,0.456576,0.024704,0.004096,0.0072,0.011008,0.010496,0.788448,0.008352
+1505,564.421,1.77173,0.683936,0.006176,0.225248,0.006144,0.006112,0.006176,0.01024,0.011648,0.404096,0.008096
+1506,918.386,1.08887,0.845824,0.007712,0.39984,0.006144,0.004128,0.007232,0.011008,0.010464,0.391104,0.008192
+1507,801.722,1.24731,0.671904,0.006304,0.221184,0.006144,0.005664,0.006304,0.009952,0.01088,0.398624,0.006848
+1508,862.134,1.15991,0.67792,0.00736,0.223744,0.00576,0.0048,0.006144,0.011264,0.011232,0.400768,0.006848
+1509,903.397,1.10693,0.69632,0.0072,0.223968,0.005792,0.004704,0.006144,0.010272,0.011328,0.41872,0.008192
+1510,638.205,1.56689,0.681696,0.00848,0.22736,0.006112,0.005504,0.006272,0.010752,0.011584,0.397824,0.007808
+1511,945.74,1.05737,0.679296,0.007712,0.22736,0.005792,0.004896,0.006176,0.01024,0.012288,0.397248,0.007584
+1512,762.614,1.31128,0.700576,0.006304,0.24928,0.005824,0.004896,0.00624,0.010368,0.012096,0.398656,0.006912
+1513,896.28,1.11572,0.692896,0.006752,0.243744,0.006176,0.005792,0.006112,0.01008,0.010752,0.395264,0.008224
+1514,719.859,1.38916,0.697856,0.006592,0.237536,0.00576,0.004512,0.006144,0.011264,0.011264,0.40688,0.007904
+1515,1044.1,0.957764,1.41498,0.006144,0.247808,0.006048,0.005568,0.006304,0.010144,0.010848,1.11206,0.010048
+1516,566.45,1.76538,0.724608,0.0064,0.270336,0.005568,0.004672,0.006176,0.01152,0.010976,0.401216,0.007744
+1517,879.159,1.13745,0.86016,0.007168,0.402432,0.005664,0.0056,0.006336,0.010144,0.011168,0.403456,0.008192
+1518,742.432,1.34692,0.711776,0.007296,0.25072,0.00592,0.004352,0.006144,0.011584,0.010944,0.407008,0.007808
+1519,865.962,1.15479,0.69792,0.006496,0.247808,0.006112,0.005568,0.006304,0.010112,0.010816,0.3968,0.007904
+1520,963.992,1.03735,0.712704,0.007488,0.248512,0.006144,0.00512,0.006304,0.011104,0.011392,0.408448,0.008192
+1521,792.57,1.26172,1.38304,0.00672,0.267872,0.00576,0.004896,0.006176,0.010208,0.011808,1.06118,0.008416
+1522,513.669,1.94678,1.0967,0.007584,0.274176,0.00496,0.005408,0.006336,0.010784,0.011328,0.766912,0.009216
+1523,749.223,1.33472,0.682656,0.006912,0.230752,0.004992,0.005952,0.006144,0.010272,0.011648,0.39792,0.008064
+1524,849.264,1.17749,0.724992,0.007648,0.271904,0.00512,0.005568,0.006272,0.010688,0.012224,0.39856,0.007008
+1525,806.299,1.24023,0.685792,0.006176,0.237536,0.006048,0.005568,0.006304,0.009952,0.010784,0.39552,0.007904
+1526,580.499,1.72266,0.700256,0.00944,0.242464,0.006144,0.005152,0.006304,0.010976,0.010336,0.401408,0.008032
+1527,994.175,1.00586,0.678752,0.006784,0.222464,0.00512,0.006112,0.006144,0.01024,0.011328,0.402368,0.008192
+1528,789.514,1.2666,0.679936,0.007616,0.225888,0.006112,0.005376,0.006272,0.010816,0.010304,0.39936,0.008192
+1529,978.5,1.02197,0.702592,0.006272,0.226848,0.00576,0.00496,0.007488,0.010112,0.011072,0.421888,0.008192
+1530,875.401,1.14233,0.685824,0.007744,0.221536,0.00576,0.004576,0.006144,0.010336,0.011936,0.409856,0.007936
+1531,494.686,2.02148,1.36595,0.006144,0.511072,0.012672,0.004672,0.0072,0.009184,0.012256,0.793696,0.009056
+1532,1116.08,0.895996,0.673728,0.006912,0.227456,0.006144,0.00544,0.006272,0.010656,0.0104,0.392608,0.00784
+1533,897.262,1.1145,0.848064,0.006336,0.400704,0.005024,0.00592,0.006144,0.010272,0.01168,0.394816,0.007168
+1534,781.829,1.27905,0.68112,0.00736,0.224064,0.005984,0.004256,0.006144,0.011744,0.010816,0.402752,0.008
+1535,905.393,1.10449,0.68512,0.006144,0.22688,0.00576,0.004928,0.006144,0.010272,0.011936,0.405216,0.00784
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..386dbd6
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,25.2373,70.8062,52.7064,52.6984,0.00795366
+max_1024,6649.35,18073.1,57.1941,57.1843,0.022592
+min_1024,0.0553308,0.150391,49.5667,49.5585,0.006432
+512,6649.35,0.150391,52.0298,52.0228,0.006976
+513,0.0553308,18073.1,53.239,53.2312,0.007808
+514,20.4931,48.7969,52.0212,52.0131,0.008192
+515,19.032,52.543,53.2439,53.2368,0.007136
+516,18.7189,53.4219,52.0547,52.0465,0.008192
+517,18.8575,53.0293,50.903,50.8948,0.008192
+518,19.4795,51.3359,53.2478,53.2398,0.008032
+519,18.5776,53.8281,52.0558,52.0481,0.007744
+520,18.9805,52.6855,54.6857,54.6775,0.008224
+521,18.0868,55.2891,53.2157,53.2088,0.00688
+522,18.5763,53.832,52.3244,52.3143,0.010112
+523,18.8492,53.0527,52.7794,52.7715,0.007936
+524,18.798,53.1973,53.204,53.1969,0.007072
+525,18.6344,53.6641,53.2359,53.2293,0.00656
+526,17.9077,55.8418,52.0151,52.0069,0.008192
+527,19.5771,51.0801,53.241,53.2332,0.007872
+528,18.5326,53.959,52.0376,52.0294,0.008192
+529,18.9735,52.7051,52.0643,52.0561,0.008192
+530,19.0938,52.373,53.2033,53.1963,0.007008
+531,18.4798,54.1133,52.0465,52.0386,0.007872
+532,19.1073,52.3359,53.2378,53.2297,0.008096
+533,18.4199,54.2891,53.2603,53.2532,0.007104
+534,18.4146,54.3047,52.0394,52.0315,0.007872
+535,19.2171,52.0371,53.2213,53.2132,0.008128
+536,18.6501,53.6191,53.2382,53.2302,0.008
+537,18.546,53.9199,52.0457,52.0376,0.008032
+538,18.9735,52.7051,53.5035,53.4951,0.008384
+539,18.4884,54.0879,53.2316,53.2234,0.008192
+540,18.3736,54.4258,52.0566,52.0497,0.006912
+541,19.1552,52.2051,53.3038,53.2967,0.00704
+542,17.9071,55.8438,53.2395,53.2317,0.00784
+543,19.2851,51.8535,52.0403,52.0335,0.006784
+544,18.9946,52.6465,53.2434,53.2356,0.007808
+545,18.6019,53.7578,53.2274,53.2196,0.007776
+546,18.579,53.8242,52.0551,52.0473,0.007808
+547,18.8909,52.9355,53.2378,53.2296,0.00816
+548,18.6705,53.5605,53.2477,53.24,0.007776
+549,18.5125,54.0176,52.0398,52.032,0.007808
+550,18.9834,52.6777,52.0143,52.0063,0.007936
+551,19.054,52.4824,53.2395,53.2317,0.007744
+552,18.4898,54.084,52.0376,52.0295,0.00816
+553,19.1102,52.3281,52.0403,52.0321,0.008192
+554,19.0391,52.5234,53.2316,53.2234,0.008192
+555,18.577,53.8301,52.0481,52.04,0.008096
+556,19.0597,52.4668,53.2312,53.2234,0.007808
+557,18.6596,53.5918,53.2814,53.2732,0.008192
+558,18.5487,53.9121,52.0381,52.0299,0.008192
+559,18.9981,52.6367,53.2214,53.2102,0.011232
+560,18.6344,53.6641,53.2364,53.2295,0.00688
+561,18.5192,53.998,52.0495,52.0418,0.007776
+562,18.9321,52.8203,52.035,52.0273,0.007744
+563,18.5851,53.8066,53.2129,53.205,0.007872
+564,19.0753,52.4238,52.0172,52.0104,0.006816
+565,18.9763,52.6973,53.3037,53.2955,0.008192
+566,18.3941,54.3652,53.2726,53.2644,0.008192
+567,18.665,53.5762,52.052,52.0452,0.006784
+568,19.0611,52.4629,53.2443,53.2366,0.007712
+569,18.6555,53.6035,53.2132,53.2062,0.007008
+570,18.5259,53.9785,52.0229,52.0151,0.00784
+571,18.8388,53.082,53.2766,53.2688,0.00784
+572,18.7436,53.3516,53.2598,53.25,0.00976
+573,18.5952,53.7773,52.0315,52.0246,0.006912
+574,18.9398,52.7988,52.0432,52.0355,0.007712
+575,19.0682,52.4434,53.2548,53.2481,0.006624
+576,18.3526,54.4883,52.0297,52.0215,0.008192
+577,19.2026,52.0762,52.016,52.0091,0.006976
+578,19.1159,52.3125,53.2229,53.2152,0.007712
+579,18.6182,53.7109,52.0693,52.0611,0.008192
+580,18.8888,52.9414,53.2126,53.2048,0.007808
+581,18.7217,53.4141,53.2049,53.1971,0.007744
+582,18.5608,53.877,52.0233,52.0151,0.008192
+583,18.71,53.4473,53.2439,53.2357,0.008192
+584,18.8339,53.0957,53.2461,53.238,0.008192
+585,18.1928,54.9668,52.04,52.0331,0.006944
+586,19.4006,51.5449,52.0402,52.0322,0.008064
+587,19.0583,52.4707,53.2275,53.2205,0.006976
+588,18.6446,53.6348,52.0154,52.0073,0.008032
+589,19.0327,52.541,52.0417,52.0335,0.008192
+590,19.0172,52.584,53.222,53.215,0.006976
+591,18.5918,53.7871,52.0576,52.0499,0.007712
+592,19.0151,52.5898,52.0253,52.0182,0.007168
+593,18.6128,53.7266,53.2113,53.2031,0.008192
+594,18.9862,52.6699,52.0387,52.0309,0.007744
+595,18.6535,53.6094,53.2174,53.2096,0.007776
+596,18.8263,53.1172,53.2275,53.2193,0.008192
+597,18.6128,53.7266,52.0479,52.041,0.006848
+598,18.7683,53.2812,53.2275,53.2193,0.008192
+599,18.8173,53.1426,53.2467,53.2396,0.007072
+600,18.5857,53.8047,52.0315,52.0233,0.008192
+601,18.877,52.9746,53.2148,53.207,0.00784
+602,18.678,53.5391,53.2357,53.2275,0.008192
+603,18.4938,54.0723,53.2437,53.2357,0.008032
+604,18.6555,53.6035,52.0613,52.0535,0.007808
+605,18.9939,52.6484,53.2446,53.222,0.022592
+606,18.5696,53.8516,52.0423,52.0341,0.008192
+607,18.9286,52.8301,52.2997,52.2916,0.008096
+608,18.9363,52.8086,54.006,53.9991,0.006944
+609,18.0129,55.5156,52.0359,52.0281,0.007872
+610,19.3573,51.6602,55.1105,55.1023,0.00816
+611,17.9347,55.7578,53.2378,53.2306,0.007168
+612,18.6643,53.5781,52.3387,52.3298,0.008896
+613,18.8624,53.0156,52.829,52.821,0.008064
+614,18.7876,53.2266,53.2285,53.2203,0.008192
+615,18.5763,53.832,52.0581,52.0499,0.008192
+616,19.042,52.5156,52.0406,52.0324,0.008192
+617,18.2922,54.668,54.3988,54.3908,0.008
+618,18.8624,53.0156,52.0207,52.013,0.00768
+619,18.9489,52.7734,53.2394,53.2316,0.00784
+620,18.6467,53.6289,53.2357,53.2278,0.007936
+621,18.5979,53.7695,52.3162,52.308,0.008192
+622,18.854,53.0391,52.8392,52.8311,0.008096
+623,18.7642,53.293,53.2104,53.2025,0.00784
+624,18.5884,53.7969,52.0437,52.0356,0.008096
+625,18.1754,55.0195,52.0256,52.0186,0.007008
+626,19.5853,51.0586,53.2269,53.219,0.007904
+627,18.5185,54,52.0524,52.0442,0.008192
+628,18.9069,52.8906,52.0479,52.0397,0.008192
+629,18.9967,52.6406,53.2608,53.2537,0.007072
+630,18.575,53.8359,52.0357,52.0279,0.007808
+631,19.0306,52.5469,52.0453,52.0376,0.007744
+632,18.963,52.7344,53.2358,53.2276,0.008192
+633,18.5952,53.7773,52.0512,52.0434,0.007744
+634,19.0377,52.5273,53.2091,53.202,0.007072
+635,18.6467,53.6289,52.0506,52.0424,0.008192
+636,19.0108,52.6016,52.0372,52.0294,0.007808
+637,18.9953,52.6445,53.2226,53.2148,0.007808
+638,18.5979,53.7695,52.0429,52.0351,0.007744
+639,19.0632,52.457,52.0378,52.0296,0.008192
+640,19.0803,52.4102,54.3239,54.3157,0.00816
+641,18.2232,54.875,52.0172,52.009,0.008192
+642,19.0434,52.5117,53.2238,53.2159,0.007904
+643,18.6317,53.6719,53.2311,53.2233,0.007808
+644,18.5898,53.793,52.0581,52.0499,0.008192
+645,19.0335,52.5391,53.2544,53.2466,0.007808
+646,18.5709,53.8477,53.2306,53.2228,0.007776
+647,18.583,53.8125,52.0428,52.035,0.007808
+648,19.0803,52.4102,52.0169,52.009,0.007968
+649,18.9897,52.6602,53.2222,53.214,0.008192
+650,18.544,53.9258,52.0522,52.044,0.008192
+651,18.9503,52.7695,52.0533,52.0456,0.007776
+652,19.1002,52.3555,54.4069,54.399,0.007904
+653,18.2531,54.7852,52.0356,52.0274,0.008192
+654,19.0278,52.5547,53.2255,53.2173,0.00816
+655,18.5333,53.957,53.2479,53.2401,0.007744
+656,18.5965,53.7734,52.0456,52.0376,0.007968
+657,19.0788,52.4141,53.2029,53.1948,0.008192
+658,18.6467,53.6289,53.239,53.2312,0.007808
+659,18.6101,53.7344,53.2227,53.2148,0.00784
+660,18.6277,53.6836,52.0388,52.031,0.007776
+661,18.9798,52.6875,53.2398,53.2332,0.006624
+662,18.548,53.9141,53.2214,53.2149,0.006432
+663,18.6739,53.5508,52.0478,52.0401,0.007776
+664,19.0278,52.5547,53.237,53.2293,0.007744
+665,18.6019,53.7578,53.2296,53.2214,0.008192
+666,18.5239,53.9844,52.0292,52.0214,0.007808
+667,19.1302,52.2734,53.2326,53.2258,0.006848
+668,18.629,53.6797,52.0648,52.0579,0.006912
+669,18.9559,52.7539,52.0376,52.0294,0.008192
+670,19.1002,52.3555,53.2259,53.2187,0.0072
+671,18.6141,53.7227,52.0662,52.0581,0.008128
+672,18.9742,52.7031,52.0596,52.0518,0.007808
+673,18.5952,53.7773,53.2009,53.1931,0.00784
+674,19.0959,52.3672,52.0333,52.0255,0.007776
+675,19.0264,52.5586,53.2311,53.2233,0.007744
+676,17.5788,56.8867,53.2152,53.207,0.008192
+677,19.5122,51.25,52.0428,52.0349,0.007904
+678,19.1173,52.3086,53.2298,53.2216,0.008192
+679,18.606,53.7461,53.2227,53.2149,0.007776
+680,18.4067,54.3281,55.3263,55.3181,0.008224
+681,17.9586,55.6836,52.0409,52.0332,0.007712
+682,18.9855,52.6719,53.2562,53.248,0.00816
+683,18.5292,53.9688,52.027,52.0192,0.00784
+684,18.9841,52.6758,52.0274,52.0192,0.008192
+685,19.1216,52.2969,53.2126,53.2048,0.007808
+686,18.5682,53.8555,52.0097,52.0016,0.008064
+687,19.1002,52.3555,52.046,52.0378,0.008192
+688,18.5306,53.9648,53.2212,53.2132,0.008
+689,18.963,52.7344,52.0277,52.0199,0.007872
+690,19.1245,52.2891,54.8861,54.8778,0.008288
+691,18.06,55.3711,53.2337,53.2255,0.008192
+692,18.6114,53.7305,52.0417,52.0335,0.008192
+693,19.0717,52.4336,53.2132,53.205,0.008192
+694,18.5763,53.832,53.2398,53.232,0.007808
+695,18.6317,53.6719,52.0329,52.0252,0.007744
+696,19.0278,52.5547,52.0233,52.0151,0.008192
+697,18.9531,52.7617,54.3754,54.3672,0.008192
+698,18.3224,54.5781,52.023,52.0151,0.007872
+699,18.9714,52.7109,53.2454,53.2378,0.007584
+700,18.5898,53.793,53.2521,53.2439,0.008192
+701,18.5898,53.793,52.0622,52.054,0.008192
+702,18.9391,52.8008,53.2378,53.2296,0.00816
+703,18.7518,53.3281,53.2214,53.2143,0.00704
+704,18.625,53.6914,53.2415,53.2337,0.007808
+705,18.6195,53.707,52.0581,52.0503,0.007776
+706,19.0335,52.5391,53.2255,53.2173,0.008192
+707,18.6168,53.7148,53.2439,53.2369,0.00704
+708,18.5709,53.8477,52.0131,52.0062,0.00688
+709,19.059,52.4688,53.2092,53.201,0.008192
+710,18.6236,53.6953,52.0065,51.9987,0.007776
+711,19.076,52.4219,52.9619,52.9516,0.01024
+712,18.723,53.4102,53.2193,53.2111,0.008192
+713,18.5952,53.7773,52.0458,52.0389,0.00688
+714,18.4958,54.0664,53.2597,53.252,0.007776
+715,19.1073,52.3359,53.2751,53.2672,0.007936
+716,18.6209,53.7031,53.2221,53.214,0.008192
+717,18.5898,53.793,52.0563,52.0481,0.008192
+718,19.0165,52.5859,53.2009,53.1927,0.008192
+719,18.5992,53.7656,53.2501,53.242,0.008192
+720,18.625,53.6914,52.0258,52.0176,0.008192
+721,18.9377,52.8047,53.2275,53.2193,0.008192
+722,18.5965,53.7734,52.0204,52.0126,0.007808
+723,19.1173,52.3086,52.0328,52.025,0.007808
+724,18.9981,52.6367,53.2172,53.2091,0.008128
+725,18.6047,53.75,52.0274,52.0204,0.007008
+726,19.0959,52.3672,52.0356,52.0274,0.008192
+727,19.0278,52.5547,54.3937,54.3855,0.00816
+728,17.9851,55.6016,52.0388,52.031,0.007776
+729,19.2467,51.957,53.2303,53.2221,0.008192
+730,18.4252,54.2734,53.2214,53.2142,0.007168
+731,18.7134,53.4375,53.2363,53.2292,0.007104
+732,18.3289,54.5586,52.0357,52.0279,0.00784
+733,19.312,51.7812,53.2152,53.207,0.008192
+734,18.6684,53.5664,53.2189,53.2111,0.007744
+735,18.6141,53.7227,52.0377,52.0299,0.00784
+736,19.0448,52.5078,53.2566,53.2484,0.008192
+737,18.5884,53.7969,53.2377,53.2296,0.008096
+738,18.4438,54.2188,52.0238,52.0156,0.008128
+739,19.0732,52.4297,53.2214,53.2132,0.008192
+740,18.6101,53.7344,52.0494,52.0416,0.007808
+741,18.7436,53.3516,52.0166,52.0088,0.007808
+742,19.3033,51.8047,53.2588,53.2519,0.00688
+743,18.6317,53.6719,52.0274,52.0206,0.006816
+744,19.001,52.6289,52.0315,52.0245,0.006944
+745,18.7642,53.293,53.2131,53.205,0.008096
+746,18.8471,53.0586,52.0346,52.0268,0.007808
+747,18.9756,52.6992,53.2419,53.2337,0.008192
+748,18.5655,53.8633,53.2307,53.2229,0.007744
+749,18.5065,54.0352,52.9568,52.9471,0.00976
+750,18.5011,54.0508,52.0618,52.054,0.007776
+751,19.2568,51.9297,53.2603,53.2532,0.00704
+752,18.2051,54.9297,51.4043,51.3959,0.008384
+753,19.4381,51.4453,53.227,53.2191,0.007968
+754,18.6752,53.5469,52.048,52.0403,0.007776
+755,19.0391,52.5234,53.2398,53.2316,0.008192
+756,18.6317,53.6719,53.2275,53.2194,0.008096
+757,18.5467,53.918,49.5667,49.5585,0.008224
+758,20.0172,49.957,52.0374,52.0295,0.007872
+759,18.8916,52.9336,54.4238,54.4159,0.007968
+760,18.2609,54.7617,52.0455,52.0376,0.007904
+761,19.001,52.6289,51.1458,51.1365,0.009248
+762,19.3208,51.7578,53.205,53.1968,0.008192
+763,18.579,53.8242,52.0591,52.0509,0.008192
+764,19.0575,52.4727,53.2168,53.2091,0.007776
+765,18.54,53.9375,53.248,53.2398,0.00816
+766,18.4691,54.1445,54.7306,54.7226,0.008064
+767,18.1277,55.1641,52.046,52.0383,0.007776
+768,18.9981,52.6367,53.2332,53.2255,0.007776
+769,18.6087,53.7383,52.047,52.0393,0.007744
+770,18.9475,52.7773,52.279,52.2704,0.008576
+771,18.9531,52.7617,54.0066,53.9998,0.006848
+772,18.3315,54.5508,52.0335,52.0253,0.008192
+773,18.9981,52.6367,53.2011,53.1933,0.007808
+774,18.629,53.6797,53.2148,53.2072,0.007584
+775,18.0434,55.4219,52.0503,52.0432,0.007136
+776,19.5599,51.125,52.0229,52.0151,0.007776
+777,19.0561,52.4766,53.2541,53.2471,0.007008
+778,18.5091,54.0273,52.023,52.0151,0.007872
+779,19.1045,52.3438,52.0212,52.0131,0.008192
+780,18.54,53.9375,53.217,53.2091,0.007904
+781,19.0207,52.5742,52.0316,52.0235,0.008192
+782,19.0632,52.457,53.2251,53.2172,0.007968
+783,18.1021,55.2422,53.2173,53.2092,0.00816
+784,19.0547,52.4805,52.04,52.0318,0.008192
+785,18.9967,52.6406,53.2446,53.2375,0.007104
+786,18.6589,53.5938,53.2272,53.2193,0.007904
+787,18.6412,53.6445,52.0394,52.0315,0.007872
+788,18.9559,52.7539,53.1943,53.1865,0.007808
+789,18.6467,53.6289,53.2206,53.2128,0.007808
+790,18.6331,53.668,52.0212,52.0131,0.008096
+791,19.0405,52.5195,52.0474,52.0397,0.007744
+792,18.9644,52.7305,53.2293,53.2214,0.007904
+793,18.5763,53.832,52.0213,52.0143,0.007008
+794,18.9939,52.6484,52.3039,52.2957,0.008192
+795,18.9587,52.7461,54.0332,54.025,0.008192
+796,17.8223,56.1094,52.0278,52.0196,0.008192
+797,19.7014,50.7578,53.2389,53.2311,0.007744
+798,18.5252,53.9805,53.2359,53.2281,0.00784
+799,18.6535,53.6094,52.0327,52.0249,0.007776
+800,19.0703,52.4375,52.2936,52.2854,0.008192
+801,18.9321,52.8203,54.0464,54.0385,0.007872
+802,18.3224,54.5781,52.0335,52.0253,0.008192
+803,19.0632,52.457,53.226,53.2191,0.00688
+804,18.575,53.8359,53.25,53.2419,0.00816
+805,18.6589,53.5938,53.2232,53.2151,0.008064
+806,18.5709,53.8477,52.0316,52.0236,0.007904
+807,18.9996,52.6328,53.2351,53.2273,0.007808
+808,18.4372,54.2383,52.0432,52.0355,0.007776
+809,19.1602,52.1914,52.0479,52.0397,0.008192
+810,18.8624,53.0156,53.2743,53.2664,0.00784
+811,18.5979,53.7695,52.0438,52.0356,0.008192
+812,19.0547,52.4805,52.0397,52.0318,0.00784
+813,19.076,52.4219,53.2296,53.2214,0.008192
+814,18.2297,54.8555,52.0356,52.0274,0.008192
+815,19.3573,51.6602,52.0407,52.0325,0.008192
+816,18.5655,53.8633,53.2471,53.2393,0.00784
+817,18.9209,52.8516,52.3096,52.3,0.009632
+818,18.9405,52.7969,52.8507,52.8438,0.00688
+819,18.1265,55.168,53.2316,53.2246,0.007008
+820,19.225,52.0156,52.6932,52.6847,0.008416
+821,18.7917,53.2148,52.0253,52.0172,0.008192
+822,19.0264,52.5586,53.2109,53.2029,0.007936
+823,18.3921,54.3711,52.0672,52.059,0.008192
+824,19.3047,51.8008,52.0274,52.0192,0.008192
+825,18.9573,52.75,53.2152,53.207,0.008192
+826,18.7107,53.4453,52.0222,52.014,0.008192
+827,19.0066,52.6133,52.0206,52.0129,0.007712
+828,19.1159,52.3125,53.2187,53.211,0.007712
+829,18.6087,53.7383,52.0315,52.0233,0.008192
+830,19.0066,52.6133,52.046,52.038,0.007968
+831,19.0632,52.457,53.2364,53.2294,0.007008
+832,18.5925,53.7852,52.0274,52.0192,0.008192
+833,18.9798,52.6875,52.0685,52.0603,0.008192
+834,18.6317,53.6719,54.3949,54.3883,0.006592
+835,18.6019,53.7578,52.2815,52.2733,0.008192
+836,18.9897,52.6602,52.8874,52.8796,0.007808
+837,18.6195,53.707,53.2072,53.199,0.008192
+838,18.5574,53.8867,52.0223,52.0146,0.007712
+839,19.0519,52.4883,52.0425,52.0355,0.006976
+840,19.0533,52.4844,53.2255,53.2173,0.008192
+841,18.5467,53.918,52.0376,52.0294,0.008192
+842,18.9125,52.875,52.2933,52.2834,0.00992
+843,19.1245,52.2891,54.0396,54.0318,0.007776
+844,18.0421,55.4258,52.3154,52.3069,0.008448
+845,19.0646,52.4531,52.8729,52.865,0.00784
+846,18.8069,53.1719,53.2275,53.2193,0.008192
+847,18.6155,53.7188,52.0421,52.034,0.008192
+848,18.9742,52.7031,52.0525,52.0456,0.00688
+849,18.9391,52.8008,53.2504,53.2424,0.008064
+850,18.3473,54.5039,52.0576,52.0497,0.007936
+851,19.2554,51.9336,52.0386,52.0304,0.008192
+852,19.0151,52.5898,53.2153,53.2084,0.006912
+853,18.629,53.6797,52.054,52.0458,0.00816
+854,18.8818,52.9609,52.0352,52.0274,0.007808
+855,18.3132,54.6055,53.2384,53.2305,0.007904
+856,19.2713,51.8906,52.0417,52.0335,0.008192
+857,18.9953,52.6445,53.2397,53.2316,0.008096
+858,18.4279,54.2656,53.2316,53.2248,0.006848
+859,18.7697,53.2773,52.2716,52.2638,0.00784
+860,18.8291,53.1094,52.8638,52.8556,0.008192
+861,18.7973,53.1992,53.24,53.2318,0.008192
+862,18.5723,53.8438,53.2272,53.2193,0.007904
+863,18.6047,53.75,52.0602,52.052,0.008192
+864,19.0363,52.5312,53.2311,53.2233,0.007744
+865,18.6399,53.6484,52.0308,52.023,0.007776
+866,19.0207,52.5742,52.0323,52.0242,0.008096
+867,19.0788,52.4141,53.2541,53.246,0.008192
+868,18.6168,53.7148,52.0558,52.048,0.007808
+869,18.9897,52.6602,52.054,52.0458,0.008192
+870,19.059,52.4688,53.2398,53.2316,0.008192
+871,18.6358,53.6602,52.0462,52.0382,0.008032
+872,19.0123,52.5977,52.8936,52.8843,0.009248
+873,18.7477,53.3398,53.2149,53.207,0.007904
+874,18.4226,54.2812,52.0104,52.0027,0.007712
+875,19.2163,52.0391,53.2241,53.2159,0.008192
+876,18.5776,53.8281,53.1866,53.1794,0.007168
+877,18.6848,53.5195,52.0272,52.0193,0.007936
+878,18.963,52.7344,52.0362,52.0293,0.00688
+879,18.9559,52.7539,54.358,54.3498,0.008192
+880,18.2271,54.8633,52.0169,52.009,0.007904
+881,19.0888,52.3867,52.0298,52.0228,0.006944
+882,19.0377,52.5273,53.2044,53.1966,0.007808
+883,18.6128,53.7266,52.0397,52.0326,0.007072
+884,19.0306,52.5469,52.0268,52.0189,0.007936
+885,19.0193,52.5781,53.2237,53.2168,0.006912
+886,18.6372,53.6562,52.0185,52.0108,0.007744
+887,18.9981,52.6367,53.2257,53.2176,0.008096
+888,18.5803,53.8203,53.2234,53.2152,0.008192
+889,18.6236,53.6953,52.0463,52.0393,0.007072
+890,18.9784,52.6914,53.223,53.2152,0.007808
+891,18.5965,53.7734,53.2477,53.2396,0.008096
+892,18.5925,53.7852,52.0335,52.0254,0.008096
+893,19.086,52.3945,53.2193,53.2124,0.006976
+894,18.5979,53.7695,53.2387,53.2305,0.008192
+895,18.6589,53.5938,53.2397,53.2319,0.007744
+896,18.5844,53.8086,52.0134,52.0055,0.00784
+897,19.0236,52.5664,53.236,53.2278,0.008192
+898,18.3394,54.5273,52.0484,52.0404,0.008064
+899,19.2106,52.0547,52.906,52.8978,0.008224
+900,18.8513,53.0469,53.2448,53.2377,0.00704
+901,18.6033,53.7539,52.9367,52.9265,0.01024
+902,18.7381,53.3672,52.0479,52.0397,0.008192
+903,19.0448,52.5078,53.2193,53.2111,0.00816
+904,18.5709,53.8477,52.0316,52.0237,0.007904
+905,19.0803,52.4102,52.0458,52.0376,0.008192
+906,19.0137,52.5938,53.2443,53.2362,0.00816
+907,18.5494,53.9102,52.0499,52.0417,0.008192
+908,19.0931,52.375,52.8996,52.8911,0.00848
+909,18.7326,53.3828,53.2523,53.2441,0.008192
+910,18.5938,53.7812,52.03,52.0219,0.008128
+911,19.0774,52.418,53.2419,53.2337,0.00816
+912,18.5803,53.8203,53.2316,53.2234,0.008192
+913,18.6385,53.6523,52.052,52.0438,0.008192
+914,19.0632,52.457,52.0347,52.027,0.007712
+915,18.7532,53.3242,54.3787,54.3717,0.006944
+916,18.4265,54.2695,52.0224,52.0146,0.007776
+917,19.008,52.6094,53.2238,53.2169,0.006912
+918,18.6141,53.7227,52.0201,52.0132,0.006912
+919,19.0774,52.418,53.2357,53.2289,0.006848
+920,18.5763,53.832,52.0471,52.0394,0.007712
+921,19.0661,52.4492,53.2521,53.2441,0.007968
+922,18.3895,54.3789,52.0356,52.0274,0.008192
+923,18.9911,52.6562,52.0477,52.0397,0.008064
+924,19.2192,52.0312,53.214,53.2058,0.008192
+925,18.682,53.5273,52.046,52.0382,0.00784
+926,19.0151,52.5898,53.2357,53.2234,0.012288
+927,18.548,53.9141,53.2094,53.2016,0.007776
+928,18.6155,53.7188,52.0194,52.0115,0.007904
+929,18.9996,52.6328,53.2284,53.2202,0.008192
+930,18.6752,53.5469,53.2221,53.214,0.008192
+931,17.8447,56.0391,52.0245,52.0167,0.007808
+932,19.7546,50.6211,53.7559,53.7475,0.008448
+933,18.5011,54.0508,57.1941,57.1843,0.009888
+934,17.3067,57.7812,51.3434,51.335,0.008416
+935,19.331,51.7305,52.0263,52.0194,0.006912
+936,19.0945,52.3711,53.1968,53.1898,0.007008
+937,18.6277,53.6836,53.2252,53.2172,0.008064
+938,18.5992,53.7656,52.0133,52.0053,0.008032
+939,18.8888,52.9414,52.0356,52.0278,0.007776
+940,19.2134,52.0469,53.2261,53.2179,0.008192
+941,18.5346,53.9531,52.0542,52.046,0.00816
+942,19.1273,52.2812,53.2438,53.2358,0.007936
+943,18.575,53.8359,52.0373,52.0295,0.00784
+944,19.0974,52.3633,52.0298,52.0228,0.007008
+945,19.0236,52.5664,53.2255,53.2173,0.008192
+946,18.6603,53.5898,52.0356,52.0274,0.008192
+947,18.9953,52.6445,52.028,52.02,0.008032
+948,18.756,53.3164,54.3769,54.3689,0.008
+949,18.3816,54.4023,52.0099,52.0017,0.008192
+950,19.1388,52.25,53.2013,53.1932,0.00816
+951,18.6195,53.707,53.251,53.2428,0.008192
+952,18.5965,53.7734,52.0396,52.0317,0.007904
+953,18.7162,53.4297,53.2585,53.2513,0.007136
+954,18.8554,53.0352,53.2623,53.2542,0.00816
+955,18.606,53.7461,53.2287,53.2209,0.007744
+956,18.5911,53.7891,52.0417,52.0335,0.008128
+957,19.0066,52.6133,53.2518,53.2441,0.007744
+958,18.5601,53.8789,53.2171,53.2092,0.00784
+959,18.6698,53.5625,52.0397,52.0315,0.008192
+960,18.8846,52.9531,53.249,53.2412,0.007808
+961,18.7354,53.375,52.047,52.0392,0.007808
+962,18.9855,52.6719,52.053,52.0448,0.008192
+963,18.6616,53.5859,53.2705,53.2623,0.008192
+964,18.7986,53.1953,52.0417,52.0348,0.006944
+965,19.0207,52.5742,53.2541,53.246,0.00816
+966,18.6752,53.5469,53.2046,53.1968,0.007808
+967,18.5736,53.8398,52.0391,52.031,0.008032
+968,18.8944,52.9258,53.2012,53.1935,0.007744
+969,18.7945,53.207,53.2288,53.2209,0.007904
+970,18.5051,54.0391,53.1988,53.1907,0.008128
+971,18.663,53.582,52.052,52.0438,0.008192
+972,19.0137,52.5938,53.1953,53.1873,0.008032
+973,18.6263,53.6875,52.0249,52.0172,0.007776
+974,18.8513,53.0469,52.0294,52.0224,0.00704
+975,19.1216,52.2969,53.2726,53.2644,0.00816
+976,18.5965,53.7734,52.0397,52.0315,0.008192
+977,19.0193,52.5781,52.0318,52.0236,0.008192
+978,19.0193,52.5781,53.2151,53.207,0.008032
+979,18.6168,53.7148,52.0287,52.021,0.007744
+980,18.9363,52.8086,52.0308,52.023,0.007872
+981,18.8014,53.1875,53.2475,53.2396,0.00784
+982,18.6385,53.6523,52.0412,52.0335,0.007776
+983,19.0661,52.4492,52.0253,52.0172,0.008192
+984,18.9897,52.6602,53.2165,53.2086,0.007936
+985,18.5992,53.7656,52.0376,52.0246,0.013056
+986,18.6971,53.4844,53.2328,53.225,0.007776
+987,18.8651,53.0078,53.2439,53.2357,0.008192
+988,18.2401,54.8242,52.0292,52.0214,0.007744
+989,19.3004,51.8125,52.0335,52.0253,0.008192
+990,18.9996,52.6328,53.2191,53.2113,0.007776
+991,18.5642,53.8672,52.0359,52.0277,0.008192
+992,18.9391,52.8008,52.0335,52.0264,0.007136
+993,19.0547,52.4805,53.2302,53.2221,0.00816
+994,18.606,53.7461,52.0212,52.0132,0.008032
+995,18.9756,52.6992,52.0429,52.0351,0.007808
+996,18.4438,54.2188,54.3546,54.3464,0.008192
+997,18.6603,53.5898,52.0462,52.0384,0.007776
+998,19.0193,52.5781,53.2142,53.2061,0.008064
+999,18.6195,53.707,53.2028,53.195,0.007776
+1000,18.5453,53.9219,52.0093,52.0012,0.008192
+1001,18.4478,54.207,55.1366,55.1284,0.008192
+1002,18.4173,54.2969,53.2103,53.2025,0.007872
+1003,17.9536,55.6992,52.9004,52.8915,0.00896
+1004,19.0094,52.6055,52.052,52.0438,0.008192
+1005,19.1359,52.2578,53.2157,53.2087,0.00704
+1006,18.5507,53.9062,52.0193,52.0116,0.007744
+1007,19.0349,52.5352,52.0254,52.0186,0.006816
+1008,18.6548,53.6055,53.263,53.2548,0.008192
+1009,18.8111,53.1602,52.9071,52.8976,0.009536
+1010,18.7203,53.418,52.0227,52.0149,0.007808
+1011,18.9335,52.8164,53.2185,53.2107,0.007776
+1012,18.625,53.6914,52.0149,52.0071,0.007808
+1013,18.3684,54.4414,52.3165,52.3082,0.008256
+1014,19.5659,51.1094,54.0128,54.0059,0.006848
+1015,18.2427,54.8164,52.0502,52.042,0.008192
+1016,19.1016,52.3516,53.2116,53.2034,0.008192
+1017,18.583,53.8125,53.2695,53.2613,0.008192
+1018,18.1818,55,52.03,52.022,0.007968
+1019,19.3237,51.75,52.0428,52.035,0.007744
+1020,18.7986,53.1953,53.2428,53.2346,0.008192
+1021,18.8056,53.1758,52.0461,52.0379,0.008224
+1022,18.8721,52.9883,52.0397,52.0315,0.008192
+1023,19.0732,52.4297,53.2153,53.2082,0.007104
+1024,18.6006,53.7617,52.0136,52.0067,0.006912
+1025,18.977,52.6953,53.2394,53.2316,0.007808
+1026,18.6304,53.6758,53.215,53.207,0.007968
+1027,18.4398,54.2305,52.0435,52.0356,0.007872
+1028,19.0533,52.4844,53.2337,53.2255,0.008192
+1029,18.7477,53.3398,53.2093,53.2012,0.00816
+1030,18.579,53.8242,53.2277,53.22,0.007776
+1031,18.6344,53.6641,52.0356,52.0286,0.006976
+1032,19.0349,52.5352,53.1927,53.1849,0.007808
+1033,18.5655,53.8633,52.0374,52.0298,0.00768
+1034,19.0632,52.457,52.0311,52.0233,0.007808
+1035,18.2557,54.7773,54.3966,54.3888,0.007872
+1036,18.5373,53.9453,52.0347,52.0269,0.007808
+1037,19.2902,51.8398,50.7212,50.713,0.008192
+1038,19.5226,51.2227,53.2255,53.2187,0.006848
+1039,18.6087,53.7383,52.8753,52.8667,0.008544
+1040,18.4478,54.207,52.0294,52.0212,0.008192
+1041,18.5507,53.9062,53.2294,53.2216,0.007776
+1042,19.3222,51.7539,52.034,52.026,0.008032
+1043,18.9602,52.7422,52.0294,52.0212,0.00816
+1044,19.0292,52.5508,53.2177,53.2108,0.006944
+1045,18.6168,53.7148,52.0182,52.0104,0.007744
+1046,18.3315,54.5508,53.2343,53.2273,0.00704
+1047,19.1059,52.3398,53.207,53.2003,0.006784
+1048,18.5723,53.8438,53.2254,53.2177,0.007744
+1049,18.625,53.6914,52.0506,52.0425,0.008128
+1050,18.9349,52.8125,53.2104,53.2026,0.007776
+1051,18.5857,53.8047,52.0258,52.0176,0.008224
+1052,18.8429,53.0703,52.0458,52.0388,0.007008
+1053,19.2308,52,53.2228,53.2149,0.00784
+1054,18.5574,53.8867,52.0541,52.0464,0.007744
+1055,18.9139,52.8711,52.0253,52.0184,0.006912
+1056,19.0306,52.5469,53.1942,53.1863,0.007872
+1057,18.6277,53.6836,52.0368,52.029,0.007776
+1058,19.1102,52.3281,53.2281,53.2198,0.008224
+1059,18.6222,53.6992,53.268,53.2602,0.007808
+1060,18.583,53.8125,52.0294,52.0223,0.007168
+1061,18.4212,54.2852,53.2305,53.2223,0.008192
+1062,19.1402,52.2461,53.2582,53.2501,0.008128
+1063,18.5655,53.8633,52.0302,52.0222,0.008064
+1064,19.0207,52.5742,52.0374,52.0294,0.007968
+1065,19.1173,52.3086,53.2132,53.205,0.008192
+1066,18.4944,54.0703,52.0355,52.0277,0.007776
+1067,18.886,52.9492,52.0438,52.037,0.006784
+1068,18.5521,53.9023,53.2376,53.2296,0.008
+1069,19.1832,52.1289,52.0458,52.0376,0.008192
+1070,18.9728,52.707,53.2097,53.2029,0.006784
+1071,18.5992,53.7656,53.258,53.25,0.007936
+1072,18.4718,54.1367,52.011,52.004,0.006976
+1073,18.7738,53.2656,53.217,53.2092,0.007744
+1074,18.8471,53.0586,53.2169,53.2091,0.007776
+1075,18.5979,53.7695,53.2239,53.2159,0.007968
+1076,18.4771,54.1211,52.0344,52.0263,0.008096
+1077,19.0774,52.418,53.2132,53.2061,0.007104
+1078,18.5266,53.9766,52.0203,52.0125,0.007776
+1079,19.0476,52.5,52.0397,52.0325,0.007168
+1080,18.9181,52.8594,53.2605,53.2426,0.017888
+1081,18.4824,54.1055,52.0192,52.011,0.008192
+1082,19.0363,52.5312,52.0258,52.0177,0.008128
+1083,18.9812,52.6836,53.2039,53.1957,0.008192
+1084,18.6114,53.7305,52.0315,52.0237,0.00784
+1085,19.0405,52.5195,52.2947,52.2855,0.009184
+1086,18.9349,52.8125,54.0028,53.9949,0.007808
+1087,18.3723,54.4297,52.0274,52.0192,0.008192
+1088,19.0945,52.3711,53.2275,53.2207,0.006816
+1089,18.5601,53.8789,53.1948,53.1878,0.006944
+1090,18.625,53.6914,53.2073,53.2004,0.00688
+1091,18.6114,53.7305,52.0299,52.0217,0.008192
+1092,19.0476,52.5,53.2413,53.2334,0.00784
+1093,18.544,53.9258,52.0124,52.0046,0.007744
+1094,18.8457,53.0625,52.3039,52.2957,0.008192
+1095,19.1861,52.1211,53.9996,53.9914,0.008192
+1096,18.3434,54.5156,52.0455,52.0376,0.007872
+1097,19.076,52.4219,53.2333,53.2253,0.007936
+1098,18.5467,53.918,53.2171,53.2091,0.008
+1099,18.6575,53.5977,55.1435,55.1353,0.00816
+1100,17.97,55.6484,52.0212,52.0141,0.007104
+1101,19.025,52.5625,53.2439,53.237,0.006944
+1102,18.6548,53.6055,52.0452,52.0375,0.007712
+1103,18.977,52.6953,52.0487,52.0405,0.008192
+1104,19.0746,52.4258,53.2172,53.2095,0.007744
+1105,18.6141,53.7227,52.0172,52.009,0.008192
+1106,18.9728,52.707,53.229,53.2211,0.00784
+1107,18.6943,53.4922,53.2232,53.2152,0.007968
+1108,18.5682,53.8555,52.0413,52.0336,0.007744
+1109,19.0391,52.5234,53.2218,53.2136,0.008192
+1110,18.5386,53.9414,53.2767,53.2685,0.008192
+1111,18.544,53.9258,53.2177,53.2109,0.006784
+1112,18.606,53.7461,52.0242,52.0161,0.008128
+1113,19.0462,52.5039,53.2503,53.2423,0.008
+1114,18.6033,53.7539,52.0224,52.0147,0.007776
+1115,19.0931,52.375,52.0378,52.03,0.007776
+1116,19.0448,52.5078,53.2029,53.1948,0.008128
+1117,18.606,53.7461,52.0224,52.0146,0.00784
+1118,19.0221,52.5703,52.0049,51.9967,0.008192
+1119,19.0221,52.5703,53.2111,53.2041,0.007072
+1120,18.6277,53.6836,52.0624,52.0544,0.008
+1121,19.0831,52.4023,53.25,53.2419,0.008192
+1122,18.5252,53.9805,53.2315,53.2234,0.008032
+1123,18.6209,53.7031,52.0475,52.0397,0.007776
+1124,19.025,52.5625,53.2288,53.221,0.007808
+1125,18.6182,53.7109,53.2043,53.1964,0.007808
+1126,18.5467,53.918,52.0381,52.0313,0.00688
+1127,19.0137,52.5938,53.2022,53.1944,0.00784
+1128,18.6916,53.5,53.2253,53.2173,0.008
+1129,18.4411,54.2266,55.296,55.288,0.008
+1130,18.0663,55.3516,53.2062,53.1984,0.007872
+1131,18.5628,53.8711,52.9114,52.9014,0.009952
+1132,18.7876,53.2266,52.0597,52.0515,0.008192
+1133,18.8749,52.9805,53.2225,53.2147,0.00784
+1134,18.7711,53.2734,52.0377,52.0306,0.007168
+1135,19.0108,52.6016,52.0298,52.0217,0.008096
+1136,18.9742,52.7031,53.2076,53.2005,0.00704
+1137,18.6277,53.6836,52.0458,52.0389,0.006912
+1138,18.9517,52.7656,52.0524,52.0442,0.008192
+1139,19.0207,52.5742,53.2497,53.2419,0.00784
+1140,18.6943,53.4922,52.0208,52.0132,0.007616
+1141,19.0335,52.5391,52.0296,52.0225,0.007104
+1142,19.0462,52.5039,53.9812,53.973,0.008192
+1143,18.2844,54.6914,52.0567,52.0488,0.007872
+1144,18.9981,52.6367,53.2135,53.2053,0.008192
+1145,18.625,53.6914,53.2147,53.2068,0.007808
+1146,18.5763,53.832,53.1862,53.1784,0.007776
+1147,18.5898,53.793,52.0393,52.0315,0.007872
+1148,18.9405,52.7969,53.2316,53.2234,0.008192
+1149,18.6535,53.6094,52.041,52.0333,0.007712
+1150,19.0137,52.5938,52.0274,52.0203,0.007104
+1151,19.0434,52.5117,53.2258,53.2188,0.007008
+1152,18.6263,53.6875,52.0135,52.0054,0.008032
+1153,18.9475,52.7773,52.038,52.0302,0.007776
+1154,19.0917,52.3789,53.2345,53.2264,0.008128
+1155,18.5992,53.7656,52.0438,52.0359,0.007936
+1156,18.977,52.6953,52.0243,52.0161,0.008192
+1157,18.6358,53.6602,53.2627,53.2549,0.007776
+1158,19.0236,52.5664,52.017,52.0092,0.007776
+1159,18.9686,52.7188,53.2309,53.2231,0.007872
+1160,18.5588,53.8828,53.2392,53.2314,0.007776
+1161,18.7313,53.3867,52.0376,52.0294,0.008192
+1162,19.0066,52.6133,53.2443,53.2363,0.007936
+1163,18.6684,53.5664,53.2214,53.2132,0.008192
+1164,18.3539,54.4844,52.0376,52.0294,0.008192
+1165,19.2728,51.8867,52.024,52.0159,0.00816
+1166,19.0405,52.5195,53.2174,53.2094,0.008
+1167,18.6439,53.6367,52.0247,52.017,0.007744
+1168,19.0066,52.6133,52.0561,52.0479,0.008192
+1169,19.0405,52.5195,53.2314,53.2235,0.007872
+1170,18.6033,53.7539,52.0212,52.0141,0.007136
+1171,18.9447,52.7852,52.0466,52.0384,0.008192
+1172,19.0476,52.5,54.3703,54.3633,0.00704
+1173,18.2518,54.7891,52.0378,52.03,0.007872
+1174,19.0221,52.5703,52.0126,52.0048,0.00784
+1175,19.0377,52.5273,53.2117,53.2035,0.008192
+1176,18.6412,53.6445,52.0399,52.0319,0.007968
+1177,19.0363,52.5312,53.2203,53.2121,0.008192
+1178,18.6521,53.6133,52.0215,52.0145,0.007008
+1179,18.9377,52.8047,52.0571,52.0493,0.00784
+1180,18.5306,53.9648,53.2294,53.2214,0.008032
+1181,19.1373,52.2539,52.0197,52.0125,0.007168
+1182,19.0024,52.625,53.2169,53.2092,0.007712
+1183,18.5709,53.8477,53.2052,53.1974,0.007776
+1184,18.6033,53.7539,52.9501,52.9406,0.009472
+1185,18.7258,53.4023,52.0308,52.023,0.007808
+1186,19.0931,52.375,53.2132,53.205,0.008192
+1187,18.5952,53.7773,52.054,52.0469,0.007072
+1188,18.9293,52.8281,52.9054,52.8956,0.009792
+1189,18.7367,53.3711,53.2234,53.2152,0.008192
+1190,18.4611,54.168,52.2987,52.2905,0.008192
+1191,18.7601,53.3047,52.8309,52.8227,0.008192
+1192,18.8069,53.1719,53.2356,53.2276,0.008032
+1193,18.6277,53.6836,52.0231,52.015,0.008096
+1194,18.9996,52.6328,52.0391,52.0314,0.007744
+1195,18.7546,53.3203,53.2237,53.2158,0.007872
+1196,18.767,53.2852,52.0281,52.0199,0.008192
+1197,18.8958,52.9219,53.2193,53.2111,0.008192
+1198,18.7532,53.3242,53.2031,53.1952,0.00784
+1199,18.5521,53.9023,52.0163,52.0085,0.007776
+1200,18.412,54.3125,53.205,53.1968,0.008192
+1201,19.0774,52.418,53.2929,53.2849,0.008064
+1202,18.6047,53.75,53.2193,53.2111,0.008192
+1203,18.5925,53.7852,52.0485,52.0406,0.007968
+1204,18.893,52.9297,53.2316,53.2234,0.008192
+1205,18.5386,53.9414,52.0458,52.0376,0.008128
+1206,19.1073,52.3359,52.0342,52.026,0.008192
+1207,18.9531,52.7617,53.2171,53.2091,0.008032
+1208,18.4944,54.0703,52.0087,52.001,0.007744
+1209,19.0476,52.5,52.9897,52.98,0.00976
+1210,18.3671,54.4453,53.2152,53.2071,0.00816
+1211,18.9153,52.8672,52.0623,52.0541,0.008192
+1212,18.9826,52.6797,53.2156,53.2079,0.007744
+1213,18.6372,53.6562,53.2196,53.2115,0.008064
+1214,18.5817,53.8164,52.0335,52.0253,0.008192
+1215,18.2362,54.8359,53.2182,53.21,0.008224
+1216,19.312,51.7812,53.2546,53.2464,0.008192
+1217,18.5588,53.8828,53.2256,53.2174,0.008192
+1218,18.5507,53.9062,52.0399,52.0317,0.008192
+1219,18.9028,52.9023,53.2944,53.2767,0.017728
+1220,18.3868,54.3867,52.009,52.0008,0.008192
+1221,19.212,52.0508,52.0561,52.0491,0.006976
+1222,18.8152,53.1484,53.2503,53.2421,0.008192
+1223,18.7354,53.375,52.0194,52.0123,0.007072
+1224,18.9069,52.8906,52.0299,52.022,0.00784
+1225,18.9602,52.7422,53.2495,53.2417,0.007808
+1226,18.4864,54.0938,52.0153,52.0071,0.008192
+1227,19.1016,52.3516,52.267,52.2588,0.008192
+1228,18.7849,53.2344,54.0846,54.0777,0.006848
+1229,18.3329,54.5469,52.0209,52.0131,0.007872
+1230,18.8791,52.9688,53.1774,53.1696,0.00784
+1231,18.6155,53.7188,53.2787,53.2705,0.008192
+1232,18.5696,53.8516,53.1886,53.1804,0.008192
+1233,18.6236,53.6953,52.0561,52.0479,0.008192
+1234,18.9293,52.8281,53.2213,53.2135,0.007808
+1235,18.5938,53.7812,53.2202,53.212,0.00816
+1236,18.4784,54.1172,52.059,52.0508,0.008192
+1237,19.0476,52.5,53.2415,53.229,0.01248
+1238,18.5025,54.0469,52.0172,52.009,0.008192
+1239,19.0193,52.5781,52.0435,52.0358,0.007744
+1240,19.0618,52.4609,53.2171,53.2092,0.00784
+1241,18.629,53.6797,52.0487,52.0405,0.008192
+1242,19.0024,52.625,52.0326,52.0247,0.00784
+1243,18.9405,52.7969,53.217,53.2093,0.007712
+1244,18.5776,53.8281,52.0172,52.009,0.008192
+1245,18.8429,53.0703,53.2357,53.2275,0.008192
+1246,18.7628,53.2969,53.2357,53.2275,0.008192
+1247,17.9599,55.6797,53.2111,53.2042,0.006912
+1248,19.1302,52.2734,52.0234,52.0154,0.007968
+1249,19.0193,52.5781,53.2347,53.227,0.007744
+1250,18.6019,53.7578,53.2517,53.2439,0.007776
+1251,18.6643,53.5781,52.0416,52.0335,0.008032
+1252,18.854,53.0391,53.2233,53.2155,0.00784
+1253,18.5588,53.8828,52.0652,52.0571,0.008192
+1254,19.1159,52.3125,52.8712,52.861,0.010208
+1255,18.7381,53.3672,53.2457,53.2379,0.007808
+1256,18.3618,54.4609,52.2961,52.2878,0.008352
+1257,19.2423,51.9688,52.8665,52.859,0.007456
+1258,18.5992,53.7656,53.2158,53.2087,0.007072
+1259,18.7162,53.4297,53.2355,53.2275,0.007936
+1260,18.5239,53.9844,52.0547,52.0476,0.007136
+1261,18.9855,52.6719,53.2392,53.2315,0.007712
+1262,18.575,53.8359,52.0356,52.0284,0.007168
+1263,19.059,52.4688,52.0335,52.0264,0.007168
+1264,19.076,52.4219,53.2091,53.2009,0.008192
+1265,18.5025,54.0469,52.0317,52.0247,0.007072
+1266,19.1302,52.2734,52.0304,52.0222,0.008192
+1267,18.5884,53.7969,53.2249,53.2171,0.007808
+1268,18.9545,52.7578,52.9332,52.9229,0.01024
+1269,18.708,53.4531,52.0388,52.031,0.007776
+1270,18.6998,53.4766,53.2008,53.1927,0.008064
+1271,18.8763,52.9766,52.0487,52.0416,0.007104
+1272,18.9742,52.7031,52.0386,52.0316,0.006976
+1273,19.0561,52.4766,54.4276,54.4195,0.008192
+1274,18.2051,54.9297,52.0131,52.0049,0.008192
+1275,18.9996,52.6328,53.2438,53.236,0.007744
+1276,18.6155,53.7188,53.2456,53.2379,0.007744
+1277,18.5346,53.9531,52.0575,52.0496,0.007936
+1278,19.0533,52.4844,52.035,52.0272,0.007776
+1279,19.0788,52.4141,53.3022,53.2953,0.006912
+1280,18.0511,55.3984,52.0596,52.0518,0.007776
+1281,19.539,51.1797,52.009,52.0008,0.008192
+1282,19.042,52.5156,53.2234,53.2132,0.010208
+1283,18.6752,53.5469,52.0396,52.0315,0.008064
+1284,18.8429,53.0703,52.0274,52.0205,0.006848
+1285,19.1789,52.1406,53.2346,53.2275,0.007136
+1286,18.5185,54,52.0315,52.0233,0.008192
+1287,18.893,52.9297,52.0561,52.0479,0.008192
+1288,18.9939,52.6484,53.2603,53.2531,0.007168
+1289,18.6616,53.5859,52.0397,52.0315,0.008192
+1290,19.0476,52.5,53.2192,53.2114,0.007808
+1291,18.5803,53.8203,53.2133,53.2065,0.006816
+1292,18.5534,53.8984,52.0438,52.0356,0.008192
+1293,19.0788,52.4141,53.1907,53.1828,0.007904
+1294,18.648,53.625,53.2078,53.1998,0.007936
+1295,18.5723,53.8438,52.039,52.0313,0.007776
+1296,18.9742,52.7031,52.0298,52.0228,0.00704
+1297,18.6671,53.5703,54.4195,54.4031,0.016384
+1298,18.5105,54.0234,52.0205,52.0127,0.007776
+1299,18.9911,52.6562,52.8747,52.8669,0.007744
+1300,18.7683,53.2812,53.2092,53.2022,0.007008
+1301,18.4891,54.0859,52.0454,52.0376,0.007808
+1302,19.042,52.5156,52.0458,52.0253,0.02048
+1303,18.8457,53.0625,54.3803,54.3724,0.007936
+1304,18.3407,54.5234,52.0316,52.0234,0.008192
+1305,18.2155,54.8984,53.2266,53.2187,0.00784
+1306,19.0959,52.3672,53.2319,53.2238,0.008064
+1307,18.7711,53.2734,53.2249,53.2171,0.007808
+1308,18.5642,53.8672,52.0119,52.0037,0.008192
+1309,19.0052,52.6172,53.2765,53.2685,0.008
+1310,18.5158,54.0078,52.0087,52.001,0.007744
+1311,19.0108,52.6016,52.0372,52.0293,0.007904
+1312,19.1045,52.3438,53.241,53.2333,0.007712
+1313,18.575,53.8359,52.0479,52.0402,0.007744
+1314,19.0278,52.5547,52.8636,52.8533,0.01024
+1315,18.7959,53.2031,53.2245,53.2167,0.007808
+1316,18.5561,53.8906,52.2793,52.2711,0.008192
+1317,18.9209,52.8516,54.0344,54.0262,0.008192
+1318,18.4678,54.1484,53.0531,53.0432,0.009952
+1319,18.6698,53.5625,52.0499,52.0429,0.00704
+1320,19.0618,52.4609,53.2152,53.2083,0.006912
+1321,18.4891,54.0859,53.2316,53.2234,0.008192
+1322,18.6889,53.5078,52.0315,52.0233,0.008192
+1323,18.9911,52.6562,53.2581,53.2501,0.008
+1324,18.6426,53.6406,52.0237,52.0166,0.007104
+1325,18.977,52.6953,52.0448,52.037,0.007776
+1326,18.854,53.0391,53.2076,53.1995,0.008064
+1327,18.8042,53.1797,52.0493,52.0416,0.00768
+1328,18.8429,53.0703,52.0446,52.0375,0.007136
+1329,19.0618,52.4609,53.2528,53.2447,0.008128
+1330,18.5588,53.8828,52.0469,52.0391,0.007808
+1331,19.0221,52.5703,52.2794,52.2711,0.00832
+1332,18.9602,52.7422,54.1398,54.1328,0.007008
+1333,18.3486,54.5,52.0454,52.0376,0.007744
+1334,19.0391,52.5234,53.2267,53.219,0.007744
+1335,18.6047,53.75,53.2117,53.2035,0.008192
+1336,18.6209,53.7031,52.0459,52.0381,0.007744
+1337,19.0137,52.5938,53.2103,53.2025,0.007808
+1338,17.9372,55.75,53.2031,53.196,0.007104
+1339,19.3062,51.7969,53.2436,53.2357,0.007936
+1340,18.5938,53.7812,52.0199,52.0129,0.007008
+1341,18.9517,52.7656,53.2029,53.1948,0.008192
+1342,18.6236,53.6953,52.0394,52.0317,0.007744
+1343,19.0193,52.5781,52.294,52.2858,0.008192
+1344,19.0165,52.5859,54.0364,54.0287,0.007776
+1345,18.3302,54.5547,52.0622,52.0552,0.007008
+1346,18.977,52.6953,53.2152,53.2073,0.007872
+1347,18.6344,53.6641,53.2521,53.2439,0.008192
+1348,18.5669,53.8594,52.0447,52.0365,0.008192
+1349,19.0363,52.5312,52.049,52.0412,0.007744
+1350,18.8874,52.9453,53.2324,53.2243,0.008192
+1351,18.6725,53.5547,52.0402,52.0334,0.006816
+1352,18.9097,52.8828,52.0252,52.0172,0.008032
+1353,19.0646,52.4531,53.2248,53.217,0.007808
+1354,18.5212,53.9922,52.0162,52.0084,0.007808
+1355,19.0874,52.3906,52.0192,52.011,0.008192
+1356,19.0902,52.3828,53.2214,53.2132,0.008192
+1357,18.6209,53.7031,52.0246,52.0169,0.007776
+1358,19.0391,52.5234,52.0149,52.0069,0.008032
+1359,19.0505,52.4922,54.0342,54.0264,0.007808
+1360,18.2129,54.9062,52.0271,52.0192,0.007904
+1361,18.8818,52.9609,53.2004,53.1926,0.007776
+1362,18.8042,53.1797,53.2217,53.2135,0.008192
+1363,18.575,53.8359,52.0231,52.0151,0.008
+1364,19.0788,52.4141,52.0338,52.0256,0.008192
+1365,19.0448,52.5078,53.1966,53.1886,0.007968
+1366,18.5938,53.7812,52.0429,52.0352,0.007712
+1367,18.5803,53.8203,52.9408,52.9306,0.01024
+1368,19.1245,52.2891,53.2644,53.2562,0.008192
+1369,18.54,53.9375,52.2752,52.267,0.008224
+1370,18.9293,52.8281,52.8138,52.8068,0.007008
+1371,18.8235,53.125,53.2279,53.2197,0.008192
+1372,18.6263,53.6875,52.0263,52.0181,0.008192
+1373,19.0306,52.5469,52.0379,52.0297,0.008192
+1374,19.059,52.4688,53.2111,53.2041,0.00704
+1375,18.6263,53.6875,52.0539,52.0458,0.008064
+1376,19.0306,52.5469,53.2048,53.1968,0.007968
+1377,18.6344,53.6641,53.2228,53.2147,0.00816
+1378,18.5185,54,52.0458,52.0376,0.00816
+1379,18.8846,52.9531,53.2216,53.2148,0.006816
+1380,18.7601,53.3047,53.2229,53.2151,0.00784
+1381,18.6236,53.6953,52.0331,52.0253,0.007744
+1382,18.9883,52.6641,53.2623,53.2541,0.008192
+1383,18.6861,53.5156,53.2439,53.2368,0.007104
+1384,18.3197,54.5859,52.0561,52.0479,0.008192
+1385,19.2945,51.8281,52.0262,52.0193,0.006848
+1386,19.0675,52.4453,53.2234,53.2163,0.007136
+1387,18.629,53.6797,52.0155,52.0085,0.006976
+1388,19.0391,52.5234,52.0253,52.0183,0.00704
+1389,19.025,52.5625,53.238,53.2298,0.008224
+1390,18.6344,53.6641,52.0278,52.0196,0.008192
+1391,19.025,52.5625,52.0351,52.0273,0.007744
+1392,19.0278,52.5547,54.3389,54.3311,0.007776
+1393,18.2909,54.6719,52.0347,52.027,0.007712
+1394,18.9826,52.6797,53.2052,53.197,0.008192
+1395,18.5534,53.8984,53.2357,53.2287,0.006976
+1396,18.7408,53.3594,52.3018,52.2936,0.008192
+1397,18.9405,52.7969,52.8568,52.8486,0.008192
+1398,18.6752,53.5469,53.2398,53.2328,0.006976
+1399,18.6101,53.7344,53.2152,53.207,0.008192
+1400,18.5884,53.7969,52.0435,52.0356,0.007872
+1401,19.0278,52.5547,53.2592,53.2522,0.007072
+1402,18.6671,53.5703,52.0458,52.0376,0.008192
+1403,19.0448,52.5078,52.0391,52.0313,0.007744
+1404,18.9349,52.8125,53.2123,53.2041,0.008192
+1405,18.6562,53.6016,52.0295,52.0216,0.007904
+1406,19.0931,52.375,52.9033,52.8934,0.009856
+1407,18.7271,53.3984,53.2267,53.219,0.007648
+1408,18.6317,53.6719,52.0405,52.0325,0.008
+1409,19.0165,52.5859,53.205,53.1981,0.00688
+1410,18.6317,53.6719,53.2215,53.2135,0.007936
+1411,18.5615,53.875,52.0355,52.0274,0.008128
+1412,19.0959,52.3672,53.2132,53.205,0.008192
+1413,18.6074,53.7422,53.3074,53.3005,0.006944
+1414,18.4651,54.1562,53.207,53.2004,0.006688
+1415,18.6643,53.5781,52.0333,52.0255,0.007776
+1416,19.0335,52.5391,53.2132,53.205,0.00816
+1417,18.6671,53.5703,52.0211,52.0135,0.007616
+1418,18.893,52.9297,52.0282,52.02,0.008192
+1419,19.1588,52.1953,53.2414,53.2336,0.007808
+1420,18.5992,53.7656,52.0253,52.0182,0.007136
+1421,18.9433,52.7891,52.0479,52.0401,0.007776
+1422,19.0845,52.3984,53.2359,53.2289,0.007072
+1423,18.5669,53.8594,52.0347,52.0269,0.007744
+1424,18.9602,52.7422,52.0299,52.0217,0.008192
+1425,18.5992,53.7656,54.442,54.4338,0.008192
+1426,18.4438,54.2188,52.0312,52.0233,0.007904
+1427,19.0024,52.625,53.2439,53.2358,0.008064
+1428,18.4358,54.2422,53.2603,53.2532,0.007136
+1429,18.6074,53.7422,52.0373,52.0294,0.007872
+1430,18.9209,52.8516,53.2306,53.2224,0.008224
+1431,18.6507,53.6172,53.2562,53.248,0.008224
+1432,18.4491,54.2031,53.2592,53.251,0.008192
+1433,18.12,55.1875,52.0561,52.0479,0.008192
+1434,19.4884,51.3125,53.2397,53.2316,0.008128
+1435,18.6128,53.7266,53.2433,53.2266,0.016672
+1436,18.2622,54.7578,52.0291,52.0213,0.007776
+1437,19.2626,51.9141,53.2026,53.1948,0.007872
+1438,18.6535,53.6094,52.0236,52.0154,0.008192
+1439,18.7683,53.2812,52.2948,52.2854,0.009312
+1440,19.076,52.4219,53.9915,53.9837,0.007776
+1441,18.3486,54.5,52.0245,52.0165,0.007968
+1442,18.9714,52.7109,53.2242,53.2162,0.007968
+1443,18.5132,54.0156,53.1883,53.1804,0.007808
+1444,18.4465,54.2109,52.0177,52.0095,0.00816
+1445,19.2106,52.0547,53.2084,53.2005,0.007808
+1446,18.648,53.625,53.2418,53.2337,0.008096
+1447,18.6128,53.7266,52.0376,52.0294,0.008192
+1448,18.7436,53.3516,52.0233,52.0151,0.008192
+1449,19.1617,52.1875,54.4072,54.399,0.008192
+1450,18.1973,54.9531,52.0377,52.0298,0.007904
+1451,18.9742,52.7031,52.0131,52.0049,0.008192
+1452,18.2805,54.7031,54.3959,54.3888,0.007104
+1453,18.6943,53.4922,52.0366,52.0287,0.007872
+1454,18.8568,53.0312,53.2138,53.2056,0.008192
+1455,18.8457,53.0625,53.2372,53.2292,0.007936
+1456,18.187,54.9844,52.0356,52.0274,0.008192
+1457,19.3149,51.7734,52.0326,52.0249,0.007744
+1458,19.0874,52.3906,53.2582,53.2504,0.007872
+1459,18.5669,53.8594,52.0453,52.0374,0.007936
+1460,18.9855,52.6719,52.0171,52.0091,0.007968
+1461,19.0137,52.5938,53.2027,53.1948,0.007904
+1462,18.5965,53.7734,52.0294,52.0212,0.008192
+1463,18.9742,52.7031,52.0564,52.0484,0.008096
+1464,18.6889,53.5078,54.3836,54.3759,0.007744
+1465,18.3486,54.5,52.0443,52.0361,0.008192
+1466,19.0988,52.3594,53.2072,53.199,0.00816
+1467,18.5723,53.8438,53.2405,53.2324,0.008192
+1468,18.4067,54.3281,52.0173,52.0092,0.008128
+1469,19.0902,52.3828,53.2337,53.2255,0.008192
+1470,18.575,53.8359,53.2635,53.2557,0.007744
+1471,18.5588,53.8828,52.0438,52.0356,0.008192
+1472,18.9939,52.6484,53.2378,53.2296,0.008192
+1473,18.5938,53.7812,53.2359,53.2281,0.007808
+1474,18.5507,53.9062,52.0183,52.0105,0.007808
+1475,18.8513,53.0469,53.2067,53.199,0.007744
+1476,18.7025,53.4688,53.2282,53.22,0.008224
+1477,18.648,53.625,52.0398,52.0316,0.008128
+1478,19.0221,52.5703,53.2085,53.2008,0.007744
+1479,18.6074,53.7422,53.2234,53.2163,0.007168
+1480,18.6426,53.6406,52.8916,52.8835,0.008192
+1481,18.7134,53.4375,52.035,52.0273,0.007744
+1482,18.9883,52.6641,53.2205,53.2127,0.00784
+1483,18.6074,53.7422,52.0272,52.0192,0.007968
+1484,19.0703,52.4375,52.0211,52.0131,0.008032
+1485,19.0165,52.5859,53.2217,53.214,0.007776
+1486,18.6399,53.6484,52.0172,52.0103,0.006848
+1487,18.9911,52.6562,52.0276,52.0195,0.008192
+1488,19.0363,52.5312,54.3252,54.3183,0.006976
+1489,18.2727,54.7266,52.0511,52.0434,0.007744
+1490,18.9798,52.6875,53.2193,53.2111,0.008192
+1491,18.6426,53.6406,53.25,53.2431,0.006912
+1492,18.5965,53.7734,52.04,52.0321,0.007904
+1493,18.9686,52.7188,53.2309,53.2232,0.007744
+1494,18.5857,53.8047,53.2287,53.2209,0.007776
+1495,18.5884,53.7969,52.023,52.0152,0.00784
+1496,18.6507,53.6172,53.2272,53.2193,0.007904
+1497,18.9826,52.6797,53.2603,53.2532,0.007072
+1498,18.6344,53.6641,53.2179,53.2109,0.006976
+1499,18.5857,53.8047,52.026,52.0181,0.007872
+1500,18.9826,52.6797,53.2156,53.2075,0.00816
+1501,18.6317,53.6719,52.0358,52.029,0.006816
+1502,19.0335,52.5391,52.0069,52.0001,0.006848
+1503,18.9602,52.7422,53.2197,53.2116,0.00816
+1504,18.6236,53.6953,52.0524,52.0455,0.00688
+1505,19.0675,52.4453,53.2584,53.2503,0.008064
+1506,18.2232,54.875,52.0566,52.0497,0.00688
+1507,19.3091,51.7891,52.044,52.0361,0.007936
+1508,19.1388,52.25,53.2353,53.2275,0.007744
+1509,18.648,53.625,52.0431,52.0354,0.007776
+1510,19.0221,52.5703,52.265,52.2567,0.008224
+1511,18.8902,52.9375,53.9995,53.9917,0.007744
+1512,18.3171,54.5938,52.0467,52.0398,0.00688
+1513,19.0193,52.5781,53.2316,53.2234,0.008192
+1514,18.5965,53.7734,53.1895,53.1813,0.008192
+1515,18.6344,53.6641,52.038,52.0298,0.00816
+1516,19.0561,52.4766,53.2359,53.2279,0.008032
+1517,18.6101,53.7344,53.2218,53.215,0.006784
+1518,18.6507,53.6172,52.0516,52.0437,0.007808
+1519,18.9461,52.7812,53.2157,53.2075,0.008192
+1520,18.6344,53.6641,53.2264,53.2182,0.00816
+1521,18.5723,53.8438,52.0497,52.0417,0.008
+1522,19.0335,52.5391,53.223,53.2152,0.007776
+1523,18.6101,53.7344,53.2612,53.2531,0.008128
+1524,18.5427,53.9297,52.0376,52.0294,0.008128
+1525,19.0108,52.6016,53.2604,53.2522,0.008192
+1526,18.4624,54.1641,53.2353,53.2275,0.007808
+1527,17.9801,55.6172,52.308,52.2998,0.008192
+1528,19.5539,51.1406,52.8589,52.8518,0.007072
+1529,18.7601,53.3047,53.2441,53.2361,0.007968
+1530,18.4811,54.1094,52.0196,52.0114,0.008192
+1531,18.8679,53,52.0193,52.0111,0.008192
+1532,19.0278,52.5547,53.2187,53.2108,0.007904
+1533,18.7463,53.3438,52.0711,52.0632,0.007936
+1534,19.0108,52.6016,52.0357,52.0277,0.008032
+1535,18.8707,52.9922,54.4222,54.4151,0.007104
diff --git a/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..09c4836
--- /dev/null
+++ b/profile/Vis_0/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,712.907,1.46915,0.9728,0.007369,0.25251,0.00579103,0.00498234,0.00638425,0.687441,0.00832213
+max_1024,1620.89,3.41138,1.80022,0.024576,0.602432,0.05248,0.028512,0.03072,1.42541,0.266784
+min_1024,293.137,0.616943,0.778016,0.006144,0.211488,0.004096,0.003936,0.004992,0.5304,0.006464
+512,836.687,1.19519,0.861888,0.006368,0.243744,0.006112,0.004096,0.006144,0.587552,0.007872
+513,763.752,1.30933,1.29843,0.007552,0.402048,0.005344,0.004864,0.006176,0.864256,0.008192
+514,492.811,2.02917,0.821248,0.007744,0.235424,0.00464,0.00512,0.006336,0.55488,0.007104
+515,878.31,1.13855,0.866816,0.006656,0.23552,0.005152,0.004832,0.006304,0.601248,0.007104
+516,812.376,1.23096,0.827968,0.00672,0.222208,0.004992,0.004224,0.006176,0.576576,0.007072
+517,792.8,1.26135,0.875456,0.006848,0.223488,0.00592,0.00432,0.006144,0.6216,0.007136
+518,657.147,1.52173,1.16074,0.007808,0.26048,0.005696,0.004544,0.006144,0.867744,0.00832
+519,560.022,1.78564,0.849536,0.007456,0.248544,0.00576,0.00448,0.006144,0.56928,0.007872
+520,788.375,1.26843,0.865504,0.006336,0.26624,0.005184,0.004864,0.006272,0.568768,0.00784
+521,777.156,1.28674,0.831616,0.00736,0.254912,0.00512,0.004896,0.006304,0.544832,0.008192
+522,802.822,1.24561,0.815104,0.007776,0.22096,0.004736,0.004096,0.0072,0.562144,0.008192
+523,729.67,1.37048,1.55597,0.006144,0.228672,0.0048,0.004096,0.007232,1.2953,0.009728
+524,496.605,2.01367,0.811008,0.008064,0.225408,0.004288,0.005632,0.006272,0.553152,0.008192
+525,797.974,1.25317,0.819232,0.007776,0.225696,0.005344,0.004864,0.006176,0.561152,0.008224
+526,884.092,1.1311,0.817152,0.008192,0.223232,0.005504,0.004736,0.006144,0.561152,0.008192
+527,830.916,1.20349,0.792224,0.006592,0.224,0.004992,0.004224,0.006144,0.538496,0.007776
+528,693.943,1.44104,1.54227,0.007456,0.236384,0.005792,0.004448,0.006144,1.27363,0.008416
+529,524.154,1.90784,0.817184,0.006176,0.219168,0.005536,0.004672,0.006144,0.567296,0.008192
+530,787.238,1.27026,0.846912,0.007072,0.23264,0.004896,0.004096,0.006144,0.585024,0.00704
+531,704.385,1.41968,0.823488,0.006304,0.2288,0.004672,0.00512,0.00624,0.565344,0.007008
+532,934.307,1.07031,0.824864,0.006624,0.22048,0.004576,0.005184,0.006272,0.573664,0.008064
+533,667.373,1.49841,1.45622,0.00624,0.452544,0.0216,0.005088,0.006144,0.957568,0.00704
+534,549.467,1.81995,0.828288,0.00704,0.217088,0.005856,0.004384,0.006144,0.579584,0.008192
+535,819.118,1.22083,0.778016,0.006144,0.21712,0.005152,0.005056,0.006144,0.5304,0.008
+536,840.55,1.1897,0.782016,0.006304,0.214912,0.005152,0.005056,0.006176,0.536448,0.007968
+537,854.045,1.1709,0.808448,0.007264,0.219392,0.004768,0.004096,0.006144,0.558912,0.007872
+538,655.36,1.52588,1.58608,0.007072,0.247712,0.004192,0.005664,0.00624,1.30701,0.008192
+539,503.441,1.98633,0.797088,0.006592,0.235488,0.004096,0.005696,0.006272,0.531808,0.007136
+540,839.774,1.1908,0.791136,0.006752,0.221184,0.005728,0.004512,0.006144,0.538624,0.008192
+541,811.652,1.23206,0.81104,0.00752,0.2168,0.004928,0.004224,0.006144,0.56448,0.006944
+542,844.275,1.18445,1.06893,0.006912,0.219136,0.005792,0.004448,0.006144,0.818464,0.008032
+543,591.48,1.69067,1.46477,0.006624,0.45776,0.023488,0.006144,0.006144,0.956416,0.008192
+544,561.519,1.78088,0.808704,0.00768,0.225184,0.004704,0.004096,0.00784,0.551264,0.007936
+545,809.166,1.23584,0.808928,0.006368,0.222816,0.004288,0.005472,0.006304,0.55552,0.00816
+546,855.561,1.16882,0.816928,0.006784,0.216832,0.004352,0.005408,0.006272,0.569312,0.007968
+547,745.337,1.34167,1.19021,0.006816,0.227168,0.004224,0.005568,0.006272,0.93152,0.00864
+548,443.098,2.25684,0.808832,0.009856,0.235488,0.004704,0.004064,0.007264,0.539552,0.007904
+549,824.975,1.21216,0.815168,0.007616,0.227904,0.005408,0.004832,0.006144,0.55648,0.006784
+550,813.102,1.22986,0.823488,0.007392,0.220128,0.00528,0.004864,0.00624,0.571392,0.008192
+551,818.545,1.22168,0.807584,0.006816,0.220736,0.004544,0.005376,0.006112,0.555808,0.008192
+552,809.246,1.23572,1.01622,0.00656,0.39936,0.00576,0.00448,0.006144,0.585728,0.008192
+553,414.26,2.41394,0.883616,0.00912,0.266208,0.004128,0.005664,0.006272,0.58544,0.006784
+554,896.672,1.11523,0.807392,0.006656,0.226464,0.004928,0.004128,0.007616,0.54944,0.00816
+555,823.234,1.21472,0.802624,0.006592,0.221088,0.004192,0.005632,0.00656,0.550688,0.007872
+556,781.083,1.28027,0.805184,0.006592,0.221056,0.00512,0.004864,0.006304,0.553056,0.008192
+557,787.465,1.2699,1.00512,0.0072,0.400352,0.004128,0.005792,0.006272,0.573536,0.00784
+558,489.191,2.04419,0.85248,0.00992,0.240448,0.005408,0.004832,0.006144,0.577536,0.008192
+559,851.825,1.17395,0.810784,0.007424,0.226048,0.005824,0.004416,0.006144,0.55296,0.007968
+560,808.049,1.23755,0.802816,0.007616,0.215168,0.004544,0.005312,0.006272,0.555712,0.008192
+561,788.45,1.26831,0.852096,0.00624,0.221088,0.005568,0.004672,0.006144,0.601376,0.007008
+562,584.767,1.71008,1.57891,0.006656,0.228928,0.004576,0.005248,0.006656,1.31722,0.009632
+563,429.688,2.32727,0.832,0.006656,0.231232,0.004288,0.005504,0.006656,0.569472,0.008192
+564,1239.33,0.806885,0.83152,0.007392,0.2568,0.005312,0.004864,0.006208,0.544,0.006944
+565,787.92,1.26917,0.791104,0.006752,0.218496,0.004704,0.004096,0.006208,0.542688,0.00816
+566,828.479,1.20703,1.06586,0.00704,0.22288,0.004448,0.005568,0.006272,0.811456,0.008192
+567,635.63,1.57324,1.56672,0.008128,0.223296,0.0056,0.00464,0.006144,1.31072,0.008192
+568,524.389,1.90698,0.816736,0.006208,0.227136,0.004224,0.005344,0.006272,0.559584,0.007968
+569,837.713,1.19373,0.838464,0.006976,0.221184,0.005856,0.004384,0.006144,0.585728,0.008192
+570,748.265,1.33643,0.794656,0.007616,0.22144,0.004416,0.005344,0.006272,0.541344,0.008224
+571,790.047,1.26575,1.19606,0.00736,0.23216,0.004192,0.0056,0.006304,0.932224,0.008224
+572,414.722,2.41125,0.81632,0.01024,0.224544,0.004832,0.004096,0.006144,0.55856,0.007904
+573,838.829,1.19214,0.813632,0.00688,0.217088,0.005504,0.004736,0.00752,0.563872,0.008032
+574,697.904,1.43286,0.852384,0.00656,0.253664,0.004384,0.005408,0.00624,0.567936,0.008192
+575,893.153,1.11963,0.806336,0.007616,0.223808,0.004128,0.005824,0.006336,0.55008,0.008544
+576,677.753,1.47546,0.856928,0.006976,0.25808,0.005184,0.005024,0.006176,0.567264,0.008224
+577,488.113,2.04871,0.884736,0.008192,0.30064,0.004512,0.005152,0.006272,0.551776,0.008192
+578,811.491,1.2323,0.820128,0.007072,0.229024,0.004448,0.005536,0.006272,0.559584,0.008192
+579,824.477,1.21289,0.817568,0.006624,0.224864,0.004448,0.005376,0.006272,0.561792,0.008192
+580,787.162,1.27039,0.813376,0.00656,0.226816,0.004608,0.005184,0.006272,0.555616,0.00832
+581,711.853,1.40479,1.14682,0.00752,0.225664,0.004384,0.005408,0.006304,0.889408,0.008128
+582,569.72,1.75525,0.843776,0.00768,0.227456,0.00448,0.005824,0.006336,0.583808,0.008192
+583,805.665,1.24121,0.829184,0.007904,0.217344,0.004128,0.005632,0.006272,0.579968,0.007936
+584,730.125,1.36963,0.835072,0.00752,0.232096,0.005632,0.004608,0.006144,0.571232,0.00784
+585,744.118,1.34387,0.862784,0.00688,0.24576,0.00544,0.0048,0.006176,0.585664,0.008064
+586,706.451,1.41553,1.168,0.006784,0.247552,0.004352,0.005408,0.006304,0.889408,0.008192
+587,544.862,1.83533,0.886784,0.007456,0.254528,0.004288,0.005472,0.006272,0.601856,0.006912
+588,735.566,1.3595,0.893792,0.006816,0.247744,0.004352,0.00544,0.006272,0.616032,0.007136
+589,774.218,1.29163,0.894976,0.007616,0.238144,0.005184,0.004832,0.006272,0.624736,0.008192
+590,689.62,1.45007,1.2097,0.00736,0.24448,0.004352,0.00544,0.006272,0.9336,0.008192
+591,544.645,1.83606,1.47654,0.007328,0.44496,0.034144,0.005088,0.006144,0.970752,0.008128
+592,619.573,1.61401,0.842368,0.006624,0.231424,0.006016,0.004224,0.006176,0.580928,0.006976
+593,808.687,1.23657,0.845152,0.006272,0.217056,0.005696,0.004544,0.006144,0.597664,0.007776
+594,757.677,1.31982,0.864256,0.007552,0.25232,0.004352,0.00544,0.006272,0.580128,0.008192
+595,748.333,1.3363,1.024,0.008192,0.400704,0.0048,0.004096,0.007264,0.590752,0.008192
+596,454.026,2.20251,0.891904,0.009216,0.26624,0.005536,0.004704,0.006144,0.591872,0.008192
+597,789.743,1.26624,0.858528,0.00656,0.247104,0.0048,0.004096,0.006144,0.583008,0.006816
+598,782.8,1.27747,0.859968,0.00752,0.243744,0.004736,0.004096,0.007168,0.584704,0.008
+599,744.66,1.3429,0.854016,0.007552,0.243584,0.004864,0.004096,0.00736,0.578432,0.008128
+600,644.278,1.55212,1.64864,0.007168,0.255008,0.005472,0.012928,0.007456,1.35168,0.008928
+601,478.393,2.09033,0.862368,0.006304,0.253952,0.005184,0.004864,0.006272,0.5776,0.008192
+602,704.991,1.41846,0.886784,0.007776,0.25168,0.004736,0.004096,0.007232,0.603072,0.008192
+603,845.582,1.18262,0.848416,0.006688,0.239296,0.004416,0.005376,0.006272,0.578176,0.008192
+604,754.258,1.32581,1.00851,0.00704,0.40096,0.004544,0.00528,0.006208,0.576288,0.008192
+605,609.887,1.63965,1.4633,0.007168,0.466944,0.007936,0.005504,0.006688,0.960864,0.008192
+606,568.258,1.75977,0.87392,0.007264,0.261024,0.005504,0.004736,0.006144,0.58128,0.007968
+607,601.822,1.66162,1.19926,0.007648,0.602432,0.00432,0.00544,0.006272,0.565216,0.007936
+608,645.09,1.55017,1.11286,0.006944,0.253984,0.005312,0.004832,0.006208,0.827392,0.008192
+609,711.791,1.40491,1.59334,0.007872,0.252224,0.006016,0.004224,0.006144,1.30861,0.008256
+610,489.572,2.0426,0.87968,0.007456,0.274528,0.004736,0.004096,0.007168,0.57376,0.007936
+611,804.715,1.24268,0.851968,0.006752,0.250912,0.004896,0.004288,0.006144,0.571168,0.007808
+612,789.59,1.26648,0.821664,0.006592,0.23536,0.004224,0.005568,0.006272,0.555456,0.008192
+613,767.616,1.30273,1.05053,0.007936,0.442368,0.004352,0.005472,0.006304,0.576,0.008096
+614,593.494,1.68494,1.47862,0.006304,0.441536,0.036608,0.021088,0.00624,0.958688,0.00816
+615,510.532,1.95874,0.8504,0.006528,0.247808,0.005632,0.004608,0.006144,0.57264,0.00704
+616,1019.79,0.980591,0.824064,0.006816,0.22448,0.004928,0.00416,0.006144,0.5704,0.007136
+617,620.277,1.61218,0.83568,0.006848,0.256224,0.00528,0.004832,0.006272,0.548416,0.007808
+618,887.06,1.12732,0.8704,0.00752,0.283232,0.00416,0.0056,0.006272,0.55648,0.007136
+619,432.273,2.31335,1.05949,0.008896,0.442176,0.004256,0.005568,0.006272,0.584128,0.008192
+620,846.281,1.18164,0.8112,0.006336,0.226976,0.004448,0.005344,0.00624,0.554688,0.007168
+621,749.84,1.33362,0.825344,0.007744,0.235264,0.004832,0.004064,0.0072,0.558048,0.008192
+622,655.36,1.52588,1.10381,0.006336,0.240768,0.004928,0.004128,0.006144,0.833344,0.00816
+623,769.997,1.29871,1.47709,0.006976,0.442368,0.043008,0.006144,0.006144,0.964512,0.007936
+624,544.247,1.8374,0.82352,0.006464,0.237312,0.00592,0.00432,0.006144,0.556352,0.007008
+625,771.157,1.29675,0.819552,0.006464,0.2288,0.00464,0.005152,0.006272,0.561248,0.006976
+626,853.511,1.17163,0.83776,0.007904,0.227616,0.005824,0.004416,0.006144,0.578848,0.007008
+627,562.29,1.77844,1.20934,0.006176,0.260352,0.004832,0.004096,0.007168,0.918528,0.008192
+628,776.419,1.28796,1.46531,0.007136,0.457952,0.0168,0.005504,0.00624,0.963488,0.008192
+629,583.393,1.71411,0.86672,0.006592,0.236736,0.004896,0.004096,0.006144,0.60112,0.007136
+630,795.572,1.25696,0.788128,0.006304,0.216928,0.005824,0.004416,0.006176,0.54064,0.00784
+631,840.636,1.18958,0.806944,0.007328,0.226144,0.005472,0.004768,0.006144,0.548864,0.008224
+632,807.651,1.23816,0.98528,0.006144,0.400704,0.0048,0.004096,0.006304,0.556224,0.007008
+633,714.772,1.39905,1.53824,0.00688,0.489472,0.04464,0.005536,0.0064,0.977152,0.00816
+634,457.015,2.18811,0.841024,0.00736,0.246688,0.004128,0.005664,0.006272,0.562976,0.007936
+635,844.972,1.18347,0.843424,0.007776,0.24208,0.005152,0.004864,0.006272,0.56944,0.00784
+636,860.775,1.16174,0.821504,0.006816,0.220736,0.004544,0.005248,0.006272,0.569728,0.00816
+637,588.929,1.698,0.848384,0.006656,0.249856,0.006144,0.004096,0.006144,0.567296,0.008192
+638,602.841,1.65881,0.854016,0.01024,0.251904,0.005728,0.004512,0.006176,0.567264,0.008192
+639,783.623,1.27612,0.812608,0.007264,0.22944,0.004928,0.004128,0.006144,0.552832,0.007872
+640,855.651,1.1687,0.815104,0.007648,0.217632,0.005728,0.004512,0.006176,0.565216,0.008192
+641,771.593,1.29602,0.820832,0.008,0.221088,0.004384,0.005376,0.006272,0.567936,0.007776
+642,754.12,1.32605,1.19069,0.006944,0.24576,0.005696,0.004544,0.006144,0.913408,0.008192
+643,547.85,1.82532,0.839456,0.007968,0.221408,0.004096,0.005664,0.00624,0.586112,0.007968
+644,780.637,1.28101,0.867584,0.017824,0.24784,0.004928,0.004096,0.006144,0.57872,0.008032
+645,768.048,1.302,0.865888,0.007328,0.248608,0.004256,0.005504,0.006272,0.586048,0.007872
+646,771.157,1.29675,0.843168,0.007232,0.238528,0.00576,0.00448,0.006144,0.573472,0.007552
+647,613.357,1.63037,1.61408,0.007584,0.229504,0.004832,0.004096,0.006144,1.35363,0.008288
+648,441.189,2.2666,0.86144,0.007968,0.256064,0.004256,0.005792,0.006464,0.573088,0.007808
+649,923.979,1.08228,0.817152,0.006176,0.233312,0.004224,0.005792,0.006272,0.553184,0.008192
+650,810.287,1.23413,0.84848,0.006752,0.236608,0.004928,0.004224,0.006176,0.5816,0.008192
+651,727.531,1.37451,1.23507,0.006272,0.241152,0.004608,0.005152,0.006912,0.962816,0.00816
+652,531.534,1.88135,1.51232,0.00704,0.435904,0.006464,0.005632,0.006656,1.04243,0.008192
+653,631.417,1.58374,0.857376,0.006144,0.249216,0.004736,0.004096,0.00784,0.577632,0.007712
+654,786.03,1.27222,0.849728,0.006304,0.24576,0.005696,0.004544,0.006144,0.573408,0.007872
+655,799.922,1.25012,0.847872,0.00768,0.242176,0.005312,0.004832,0.00624,0.57344,0.008192
+656,770.577,1.29773,1.01843,0.006656,0.401408,0.005472,0.004768,0.006144,0.587008,0.006976
+657,474.129,2.10913,0.823296,0.00944,0.228128,0.005824,0.004416,0.006144,0.561152,0.008192
+658,528.243,1.89307,0.836864,0.008192,0.223232,0.004256,0.005632,0.006272,0.581152,0.008128
+659,1363.52,0.733398,0.845184,0.006272,0.231296,0.004256,0.005632,0.00624,0.58368,0.007808
+660,815.368,1.22644,0.808032,0.007808,0.222624,0.004992,0.004192,0.006144,0.554496,0.007776
+661,683.407,1.46326,1.46525,0.006848,0.48048,0.007104,0.005536,0.006304,0.950784,0.008192
+662,522.983,1.91211,0.811008,0.007936,0.229632,0.00576,0.00448,0.006144,0.548864,0.008192
+663,836.43,1.19556,0.809408,0.00672,0.229376,0.005888,0.005408,0.007136,0.546816,0.008064
+664,807.89,1.23779,0.809184,0.006304,0.21616,0.004896,0.00416,0.006144,0.564544,0.006976
+665,749.154,1.33484,1.09667,0.006784,0.250208,0.005696,0.004544,0.006144,0.815104,0.008192
+666,682.439,1.46533,1.57635,0.0064,0.23456,0.004992,0.005408,0.006272,1.30931,0.009408
+667,509.453,1.96289,0.812448,0.007712,0.217568,0.005568,0.004672,0.006144,0.562976,0.007808
+668,745.337,1.34167,0.823968,0.006656,0.220288,0.004992,0.004096,0.007264,0.573696,0.006976
+669,808.607,1.23669,0.868768,0.006624,0.245696,0.00544,0.0048,0.006144,0.591872,0.008192
+670,631.514,1.5835,1.19808,0.00752,0.225952,0.005728,0.004512,0.006144,0.940032,0.008192
+671,468.114,2.13623,0.852512,0.00992,0.250624,0.004192,0.0056,0.006336,0.567648,0.008192
+672,837.885,1.19348,0.824992,0.006688,0.219136,0.005312,0.004864,0.006208,0.574944,0.00784
+673,813.505,1.22925,0.822336,0.00784,0.213344,0.004192,0.005632,0.006272,0.577248,0.007808
+674,784.299,1.27502,0.816544,0.007872,0.223072,0.004576,0.005216,0.006272,0.561888,0.007648
+675,837.114,1.19458,1.74877,0.006336,0.401216,0.00416,0.005664,0.006336,1.31622,0.008832
+676,452.772,2.20862,0.813056,0.007552,0.21568,0.005632,0.004608,0.006144,0.565376,0.008064
+677,842.019,1.18762,0.828864,0.006592,0.218176,0.004928,0.004128,0.006144,0.581248,0.007648
+678,793.645,1.26001,0.823424,0.007328,0.21808,0.005504,0.004736,0.006144,0.574528,0.007104
+679,458.627,2.18042,0.843776,0.00624,0.215968,0.005056,0.00416,0.006144,0.598016,0.008192
+680,1522.96,0.656616,1.43155,0.006272,0.460288,0.006528,0.006112,0.006176,0.937984,0.008192
+681,534.656,1.87036,0.816992,0.00656,0.216768,0.004448,0.00544,0.006336,0.569632,0.007808
+682,807.81,1.23792,0.813056,0.007648,0.211488,0.005824,0.004416,0.006176,0.569312,0.008192
+683,824.062,1.2135,0.819072,0.006688,0.212352,0.004704,0.004096,0.007712,0.575776,0.007744
+684,818.545,1.22168,1.09536,0.006592,0.216096,0.004832,0.004128,0.006112,0.849056,0.008544
+685,652.905,1.53162,1.44794,0.006528,0.4608,0.008192,0.005696,0.00624,0.952352,0.008128
+686,538.275,1.85779,0.818272,0.008224,0.21296,0.005536,0.004704,0.006144,0.572832,0.007872
+687,823.648,1.21411,0.821248,0.006144,0.217088,0.00528,0.00496,0.006144,0.57344,0.008192
+688,830.326,1.20435,0.8104,0.007872,0.217312,0.004192,0.00544,0.006272,0.561184,0.008128
+689,785.728,1.27271,1.08102,0.007232,0.213952,0.005888,0.004352,0.007456,0.834016,0.008128
+690,640.55,1.56116,1.5831,0.00768,0.2176,0.004224,0.005632,0.006272,1.33283,0.008864
+691,512.513,1.95117,0.83104,0.008192,0.21872,0.004512,0.00528,0.006848,0.579744,0.007744
+692,825.806,1.21094,0.802336,0.006336,0.216288,0.004896,0.004096,0.006144,0.55664,0.007936
+693,844.101,1.18469,0.811104,0.006368,0.216864,0.005984,0.004256,0.006144,0.56448,0.007008
+694,815.287,1.22656,1.53789,0.006624,0.21888,0.005504,0.004704,0.006176,1.28717,0.008832
+695,449.172,2.22632,0.826464,0.007776,0.215488,0.005696,0.004512,0.007168,0.57792,0.007904
+696,819.2,1.2207,0.810752,0.006752,0.218528,0.004704,0.004096,0.007168,0.561504,0.008
+697,825.058,1.21204,0.839904,0.006784,0.216704,0.004736,0.004096,0.007872,0.591904,0.007808
+698,769.13,1.30017,0.806592,0.006368,0.214816,0.005664,0.004576,0.006144,0.561152,0.007872
+699,783.024,1.2771,1.36397,0.007328,0.43872,0.004544,0.005312,0.00624,0.893248,0.008576
+700,510.882,1.9574,0.802944,0.007776,0.216544,0.004928,0.004224,0.006144,0.55632,0.007008
+701,679.045,1.47266,0.832416,0.007072,0.221184,0.005472,0.004768,0.006144,0.579584,0.008192
+702,991.648,1.00842,0.821248,0.00736,0.217696,0.00448,0.00592,0.006272,0.571456,0.008064
+703,844.362,1.18433,0.814944,0.007264,0.220064,0.005728,0.004512,0.006144,0.5632,0.008032
+704,750.94,1.33167,1.38205,0.007872,0.43184,0.004736,0.004064,0.007296,0.918016,0.008224
+705,503.163,1.98743,0.821824,0.00672,0.217088,0.005472,0.004768,0.006144,0.57344,0.008192
+706,718.219,1.39233,0.809792,0.00688,0.227328,0.00576,0.00448,0.006144,0.552224,0.006976
+707,842.192,1.18738,0.831392,0.006944,0.24576,0.005728,0.004512,0.006048,0.554624,0.007776
+708,802.036,1.24683,0.790368,0.007552,0.211584,0.005856,0.004384,0.007296,0.545664,0.008032
+709,749.703,1.33386,1.36042,0.006176,0.401088,0.004928,0.004096,0.006144,0.930848,0.007136
+710,510.214,1.95996,0.834304,0.006944,0.232896,0.00464,0.004096,0.006144,0.571392,0.008192
+711,817.076,1.22388,0.840256,0.00672,0.212992,0.00528,0.00496,0.006144,0.597024,0.007136
+712,770.287,1.29822,0.8192,0.007552,0.223872,0.004256,0.005632,0.006464,0.563232,0.008192
+713,826.223,1.21033,0.832544,0.00768,0.223744,0.005152,0.004864,0.00624,0.576896,0.007968
+714,757.396,1.32031,1.76698,0.006496,0.39936,0.006144,0.005184,0.006272,1.33411,0.009408
+715,463.165,2.15906,0.815104,0.006336,0.226144,0.004992,0.004192,0.006176,0.559072,0.008192
+716,845.233,1.18311,0.833536,0.007488,0.215744,0.005344,0.004896,0.006144,0.585728,0.008192
+717,775.244,1.28992,0.849568,0.008192,0.217088,0.005888,0.004352,0.006176,0.600032,0.00784
+718,771.084,1.29688,0.831488,0.007424,0.21568,0.004224,0.005536,0.006752,0.58368,0.008192
+719,702.633,1.42322,1.49882,0.007712,0.467264,0.006304,0.006144,0.006144,0.997024,0.008224
+720,520.855,1.91992,0.81904,0.006624,0.217088,0.005216,0.004864,0.006272,0.57104,0.007936
+721,815.124,1.22681,0.823296,0.006272,0.216096,0.004896,0.00416,0.006144,0.577536,0.008192
+722,804.478,1.24304,0.832864,0.008096,0.2192,0.005344,0.004928,0.006144,0.581312,0.00784
+723,688.577,1.45227,1.3264,0.007392,0.45136,0.005504,0.00448,0.0064,0.843008,0.008256
+724,452.122,2.21179,0.851968,0.009952,0.2248,0.004864,0.004096,0.006208,0.593856,0.008192
+725,817.402,1.22339,0.879136,0.006688,0.219136,0.005728,0.004512,0.006144,0.628736,0.008192
+726,750.94,1.33167,0.833568,0.007744,0.240064,0.005472,0.004608,0.006112,0.561344,0.008224
+727,774.364,1.29138,0.819136,0.006144,0.217088,0.005184,0.004864,0.006336,0.571392,0.008128
+728,811.571,1.23218,1.06301,0.00624,0.444416,0.005664,0.004576,0.006144,0.587776,0.008192
+729,468.435,2.13477,0.832864,0.009856,0.221664,0.00576,0.00448,0.006144,0.577216,0.007744
+730,819.856,1.21973,0.806976,0.007904,0.215328,0.005792,0.004448,0.007264,0.559424,0.006816
+731,810.127,1.23438,0.8144,0.0072,0.217088,0.004896,0.005408,0.006976,0.56496,0.007872
+732,818.463,1.2218,0.813056,0.006336,0.22064,0.004448,0.005312,0.006336,0.561792,0.008192
+733,787.087,1.27051,1.38854,0.007584,0.40112,0.004992,0.004096,0.006176,0.956384,0.008192
+734,309.67,3.22925,0.84304,0.007744,0.239968,0.004224,0.005568,0.006304,0.571264,0.007968
+735,1620.89,0.616943,0.829888,0.006592,0.222784,0.004512,0.005248,0.006816,0.577088,0.006848
+736,805.506,1.24146,0.801696,0.007072,0.216288,0.004896,0.004096,0.006272,0.55488,0.008192
+737,796.965,1.25476,1.09344,0.007744,0.215488,0.005184,0.004864,0.006304,0.8456,0.008256
+738,576.983,1.73315,1.024,0.010272,0.415712,0.0056,0.00464,0.006144,0.57344,0.008192
+739,709.326,1.40979,0.81312,0.006144,0.217088,0.005152,0.004864,0.006272,0.566592,0.007008
+740,841.673,1.18811,0.802848,0.006816,0.21456,0.004576,0.005216,0.006112,0.557664,0.007904
+741,829.15,1.20605,0.805056,0.006752,0.21696,0.004288,0.005696,0.006272,0.557376,0.007712
+742,787.692,1.26953,0.83712,0.007264,0.219936,0.004224,0.005568,0.00672,0.585664,0.007744
+743,666.721,1.49988,1.45485,0.006944,0.462304,0.006656,0.005984,0.00624,0.958528,0.008192
+744,527.495,1.89575,0.812416,0.007488,0.219264,0.004672,0.004096,0.007296,0.561728,0.007872
+745,784.449,1.27478,0.827424,0.007552,0.223296,0.004672,0.004096,0.007264,0.573536,0.007008
+746,755.371,1.32385,0.843776,0.007168,0.228352,0.00432,0.005664,0.00624,0.58384,0.008192
+747,678.427,1.474,1.1047,0.006976,0.235104,0.004512,0.005248,0.00624,0.838432,0.008192
+748,721.254,1.38647,1.16122,0.0064,0.229408,0.005536,0.004672,0.006144,0.900224,0.008832
+749,579.145,1.72668,0.829184,0.008192,0.226496,0.004928,0.004096,0.006144,0.571392,0.007936
+750,827.642,1.20825,0.814912,0.00816,0.218816,0.004448,0.005344,0.006368,0.563488,0.008288
+751,799.844,1.25024,0.80816,0.007616,0.219232,0.004576,0.005184,0.0064,0.557376,0.007776
+752,766.611,1.30444,1.19808,0.007904,0.23376,0.00528,0.004864,0.00624,0.93184,0.008192
+753,421.356,2.37329,0.836544,0.009152,0.226592,0.004832,0.004096,0.007264,0.577856,0.006752
+754,827.726,1.20813,0.815104,0.007392,0.219168,0.004864,0.004096,0.006176,0.565216,0.008192
+755,773.487,1.29285,0.846208,0.006592,0.229248,0.00416,0.005632,0.006656,0.585728,0.008192
+756,771.375,1.29639,0.876128,0.007584,0.2176,0.004192,0.0056,0.006688,0.626528,0.007936
+757,708.467,1.4115,0.829504,0.006528,0.233472,0.005312,0.004832,0.00624,0.565248,0.007872
+758,492.633,2.02991,0.874496,0.010272,0.268256,0.005696,0.004544,0.006144,0.572544,0.00704
+759,807.014,1.23914,0.811008,0.007808,0.225376,0.004384,0.005408,0.00624,0.5536,0.008192
+760,832.944,1.20056,0.806784,0.006688,0.2184,0.004992,0.004224,0.007808,0.556672,0.008
+761,750.046,1.33325,0.853792,0.007616,0.24752,0.00496,0.004096,0.006176,0.575456,0.007968
+762,790.734,1.26465,1.20342,0.006336,0.2248,0.004576,0.005184,0.006304,0.946976,0.009248
+763,525.465,1.90308,0.82624,0.006848,0.219328,0.005536,0.004704,0.006176,0.575456,0.008192
+764,822.655,1.21558,0.814112,0.00752,0.218944,0.004928,0.004128,0.006176,0.564672,0.007744
+765,779.596,1.28271,0.844256,0.006624,0.22064,0.00464,0.00512,0.007168,0.591872,0.008192
+766,767.76,1.30249,0.817056,0.007904,0.221472,0.00512,0.004864,0.006272,0.56336,0.008064
+767,766.109,1.3053,0.84192,0.006336,0.239328,0.004384,0.005408,0.006272,0.572,0.008192
+768,444.903,2.24768,0.886432,0.009824,0.273344,0.00592,0.00432,0.006144,0.57888,0.008
+769,877.182,1.14001,0.828416,0.006784,0.225664,0.00416,0.005632,0.006304,0.57168,0.008192
+770,834.131,1.19885,0.809056,0.00624,0.217088,0.00544,0.0048,0.006144,0.561152,0.008192
+771,782.501,1.27795,1.11024,0.006368,0.216832,0.004352,0.00544,0.006272,0.862624,0.008352
+772,543.272,1.8407,1.0281,0.01024,0.41984,0.005792,0.005536,0.006848,0.571648,0.008192
+773,691.892,1.44531,0.831456,0.007072,0.221216,0.005664,0.004544,0.006144,0.579008,0.007808
+774,791.651,1.26318,0.821248,0.007552,0.221824,0.005728,0.004512,0.006176,0.567264,0.008192
+775,777.303,1.2865,0.8384,0.007072,0.230688,0.004832,0.004096,0.006144,0.577536,0.008032
+776,647.333,1.5448,1.13664,0.007488,0.247616,0.004992,0.005408,0.006304,0.856128,0.008704
+777,677.809,1.47534,1.02429,0.00848,0.417056,0.004832,0.006144,0.006144,0.57344,0.008192
+778,688.519,1.45239,0.837824,0.006752,0.221088,0.004192,0.005856,0.006272,0.585728,0.007936
+779,842.712,1.18665,0.821248,0.007904,0.21488,0.004576,0.005184,0.006816,0.573696,0.008192
+780,788.375,1.26843,0.820096,0.00704,0.218368,0.004864,0.004096,0.006144,0.571072,0.008512
+781,436.534,2.29077,1.14893,0.00624,0.235456,0.00592,0.004288,0.006144,0.881696,0.009184
+782,1263.22,0.791626,1.46173,0.006624,0.464672,0.006144,0.006144,0.006144,0.963712,0.008288
+783,545.08,1.83459,0.832512,0.006816,0.2248,0.004928,0.004096,0.006144,0.577536,0.008192
+784,778.929,1.28381,0.82144,0.00704,0.215104,0.005472,0.004736,0.006144,0.575008,0.007936
+785,814.719,1.22742,0.80896,0.007776,0.217184,0.004416,0.005344,0.006272,0.559776,0.008192
+786,780.488,1.28125,0.990816,0.006656,0.400928,0.004608,0.005248,0.00672,0.558848,0.007808
+787,503.441,1.98633,0.851968,0.009568,0.254624,0.005952,0.004288,0.006144,0.5632,0.008192
+788,829.234,1.20593,0.805344,0.006592,0.219136,0.0056,0.00464,0.006144,0.555008,0.008224
+789,807.173,1.23889,0.823296,0.006368,0.217888,0.004928,0.004288,0.006144,0.575488,0.008192
+790,859.241,1.16382,0.813056,0.00768,0.217056,0.00464,0.005216,0.006176,0.564096,0.008192
+791,741.022,1.34949,1.00762,0.007232,0.401632,0.004832,0.004096,0.007232,0.575424,0.007168
+792,510.087,1.96045,0.817216,0.009408,0.222112,0.005632,0.004576,0.006144,0.561152,0.008192
+793,792.723,1.26147,0.830336,0.017248,0.217088,0.005344,0.004864,0.00608,0.571488,0.008224
+794,828.228,1.2074,0.815104,0.00784,0.21488,0.004608,0.005184,0.007104,0.56832,0.007168
+795,834.471,1.19836,0.820992,0.006592,0.218336,0.004704,0.005888,0.006304,0.571392,0.007776
+796,781.009,1.2804,1.36035,0.006624,0.401408,0.005216,0.004864,0.00624,0.92704,0.00896
+797,497.359,2.01062,0.828224,0.006752,0.217344,0.004096,0.00576,0.006528,0.579584,0.00816
+798,707.916,1.4126,0.854016,0.008192,0.229376,0.005536,0.004704,0.006144,0.587744,0.01232
+799,640.901,1.5603,0.868352,0.0072,0.250848,0.004224,0.0056,0.006272,0.587296,0.006912
+800,1023.49,0.977051,0.80816,0.00752,0.215712,0.005856,0.004384,0.006176,0.560512,0.008
+801,708.344,1.41174,1.58925,0.00768,0.22784,0.005408,0.004832,0.006144,1.32883,0.008512
+802,516.715,1.9353,0.85216,0.007104,0.233536,0.00528,0.004896,0.006208,0.586816,0.00832
+803,825.474,1.21143,0.810816,0.007744,0.21936,0.00432,0.005504,0.00624,0.559648,0.008
+804,793.491,1.26025,0.833568,0.007168,0.224256,0.0056,0.00464,0.006144,0.577536,0.008224
+805,815.449,1.22632,0.824416,0.007552,0.221088,0.004832,0.004096,0.006144,0.573152,0.007552
+806,632.929,1.57996,1.5975,0.007392,0.229536,0.0048,0.004096,0.006144,1.33693,0.008608
+807,479.569,2.08521,0.8192,0.006272,0.2272,0.005856,0.004384,0.006144,0.562368,0.006976
+808,850.852,1.17529,0.849056,0.006144,0.227328,0.005696,0.004544,0.006144,0.591296,0.007904
+809,676.577,1.47803,0.886912,0.00736,0.23648,0.004256,0.005664,0.006272,0.619808,0.007072
+810,795.263,1.25745,1.22208,0.008192,0.241664,0.005792,0.004448,0.006144,0.947584,0.008256
+811,475.836,2.10156,0.830688,0.009824,0.230944,0.004928,0.00416,0.006176,0.567168,0.007488
+812,823.813,1.21387,0.835072,0.006592,0.221184,0.005856,0.004352,0.006144,0.582816,0.008128
+813,808.208,1.2373,0.829792,0.006656,0.219136,0.00592,0.00432,0.006176,0.579552,0.008032
+814,790.734,1.26465,0.848,0.006272,0.228864,0.004608,0.005184,0.006304,0.588576,0.008192
+815,783.024,1.2771,1.36192,0.008128,0.40064,0.004928,0.004128,0.006112,0.928992,0.008992
+816,489.191,2.04419,0.830208,0.00688,0.227296,0.005888,0.004352,0.006144,0.57264,0.007008
+817,736.492,1.35779,0.839552,0.00672,0.22528,0.005184,0.004608,0.006592,0.58336,0.007808
+818,864.682,1.15649,0.813856,0.006912,0.219136,0.00528,0.004864,0.006112,0.564672,0.00688
+819,789.819,1.26611,0.841856,0.006816,0.22736,0.00544,0.004768,0.006144,0.58352,0.007808
+820,688.693,1.45203,1.01578,0.0072,0.400352,0.005152,0.004864,0.006272,0.583776,0.00816
+821,496.696,2.01331,0.864256,0.010144,0.249952,0.005184,0.004832,0.006272,0.5808,0.007072
+822,817.565,1.22314,0.878592,0.00752,0.241472,0.004928,0.004128,0.006144,0.606208,0.008192
+823,776.199,1.28833,0.829824,0.006592,0.236736,0.004864,0.004096,0.006144,0.5632,0.008192
+824,734.379,1.36169,0.829888,0.006592,0.227328,0.00544,0.0048,0.006176,0.572448,0.007104
+825,763.325,1.31006,0.854336,0.00688,0.22752,0.005728,0.004512,0.006144,0.595712,0.00784
+826,487.793,2.05005,0.852096,0.009056,0.237568,0.005792,0.004448,0.006144,0.581056,0.008032
+827,763.04,1.31055,0.83056,0.008192,0.221184,0.005408,0.004832,0.006144,0.5768,0.008
+828,771.52,1.29614,0.873344,0.00704,0.249856,0.004192,0.005632,0.006272,0.59216,0.008192
+829,777.082,1.28687,1.13254,0.007776,0.24336,0.004864,0.004096,0.007296,0.856224,0.008928
+830,402.654,2.48352,0.893888,0.009184,0.261856,0.004352,0.00544,0.006272,0.598592,0.008192
+831,809.406,1.23547,0.833888,0.00688,0.225408,0.005824,0.004416,0.006144,0.577408,0.007808
+832,780.116,1.28186,0.857952,0.006848,0.24144,0.00432,0.005472,0.006304,0.585632,0.007936
+833,722.781,1.38354,0.853888,0.006752,0.247808,0.00528,0.004864,0.00624,0.575232,0.007712
+834,733.327,1.36365,1.18992,0.007552,0.224928,0.004896,0.004288,0.006144,0.932992,0.00912
+835,541.871,1.84546,0.860192,0.008032,0.231296,0.004384,0.005408,0.006272,0.596576,0.008224
+836,805.744,1.24109,0.821856,0.007008,0.21856,0.004672,0.00512,0.006336,0.572192,0.007968
+837,793.03,1.26099,0.838816,0.007552,0.227776,0.004288,0.005472,0.006272,0.579648,0.007808
+838,794.029,1.2594,0.855648,0.007776,0.223296,0.004448,0.005344,0.006272,0.60064,0.007872
+839,736.757,1.3573,1.60995,0.00672,0.227008,0.004416,0.00544,0.006304,1.35139,0.008672
+840,493.911,2.02466,0.8536,0.007936,0.225152,0.00448,0.006144,0.006144,0.595968,0.007776
+841,632.831,1.5802,0.872448,0.007296,0.232064,0.004352,0.00544,0.006272,0.610016,0.007008
+842,886.484,1.12805,0.833536,0.007808,0.22976,0.004224,0.005824,0.006272,0.571456,0.008192
+843,854.49,1.17029,1.11987,0.00672,0.219136,0.004256,0.0056,0.006528,0.868352,0.00928
+844,608.528,1.64331,1.48435,0.008128,0.458816,0.01984,0.004736,0.006144,0.978752,0.007936
+845,555.503,1.80017,0.823616,0.006464,0.2184,0.004832,0.004096,0.007392,0.57424,0.008192
+846,794.568,1.25854,0.827616,0.007072,0.218848,0.004448,0.005344,0.006304,0.5776,0.008
+847,809.406,1.23547,0.815104,0.007392,0.217504,0.00448,0.005344,0.006336,0.565856,0.008192
+848,787.011,1.27063,1.09056,0.007136,0.214688,0.004448,0.006016,0.006272,0.843328,0.008672
+849,643.418,1.5542,1.51603,0.006656,0.449984,0.010784,0.020512,0.03072,0.989184,0.008192
+850,425.647,2.34937,0.858208,0.00656,0.21904,0.005824,0.004416,0.006144,0.580928,0.035296
+851,672.688,1.48657,0.90112,0.022304,0.245984,0.005728,0.004512,0.006144,0.608256,0.008192
+852,756.417,1.32202,0.837632,0.007584,0.22576,0.004224,0.005536,0.006304,0.580032,0.008192
+853,718.849,1.39111,1.61514,0.007712,0.22576,0.004192,0.0056,0.006272,1.3561,0.009504
+854,497.722,2.00916,0.880672,0.007328,0.218144,0.005184,0.015264,0.007744,0.618944,0.008064
+855,761.834,1.31262,0.82592,0.006624,0.223264,0.005312,0.004864,0.006112,0.572768,0.006976
+856,785.577,1.27295,0.846912,0.008,0.222624,0.004896,0.004096,0.006144,0.593088,0.008064
+857,846.019,1.18201,1.13059,0.00624,0.220192,0.004896,0.004288,0.006176,0.878592,0.010208
+858,583.268,1.71448,1.47866,0.007392,0.447264,0.02432,0.005504,0.006272,0.979456,0.008448
+859,566.803,1.76428,0.842432,0.016896,0.225472,0.00512,0.004704,0.006272,0.577024,0.006944
+860,817.973,1.22253,0.817184,0.006624,0.216832,0.00416,0.005632,0.006272,0.569696,0.007968
+861,761.268,1.3136,0.833536,0.007584,0.221792,0.005856,0.004384,0.006176,0.580608,0.007136
+862,828.647,1.20679,1.07123,0.007072,0.472096,0.004992,0.00416,0.006144,0.569024,0.007744
+863,652.905,1.53162,1.52797,0.007392,0.453568,0.026112,0.028512,0.01408,0.990112,0.008192
+864,491.039,2.0365,0.868352,0.00736,0.240448,0.005952,0.004288,0.006144,0.595968,0.008192
+865,713.962,1.40063,0.841856,0.00688,0.235456,0.00416,0.005632,0.006272,0.575744,0.007712
+866,876.15,1.14136,0.843776,0.006368,0.224256,0.004896,0.004096,0.007648,0.58832,0.008192
+867,656.042,1.52429,1.20221,0.007552,0.232064,0.005952,0.004288,0.006144,0.935968,0.01024
+868,594.528,1.68201,0.83824,0.006848,0.230464,0.004896,0.004256,0.006144,0.577536,0.008096
+869,798.207,1.25281,0.845568,0.00816,0.21824,0.00496,0.00416,0.007648,0.594464,0.007936
+870,791.039,1.26416,0.83776,0.006592,0.21904,0.00576,0.004448,0.00736,0.58656,0.008
+871,826.807,1.20947,0.841184,0.006176,0.221152,0.004288,0.005952,0.006176,0.589568,0.007872
+872,713.651,1.40125,1.63261,0.006624,0.225152,0.005344,0.004864,0.006176,1.3759,0.008544
+873,486.519,2.05542,0.850624,0.006848,0.224288,0.00496,0.004224,0.007296,0.596064,0.006944
+874,793.107,1.26086,0.84992,0.006144,0.218944,0.004288,0.005472,0.006816,0.600096,0.00816
+875,770.577,1.29773,0.850976,0.007584,0.242272,0.006144,0.004096,0.008224,0.574656,0.008
+876,795.263,1.25745,1.13158,0.006464,0.222912,0.005696,0.004544,0.006144,0.876544,0.00928
+877,652.645,1.53223,1.4625,0.006592,0.467776,0.007104,0.005536,0.006304,0.960992,0.008192
+878,534.935,1.86938,0.828672,0.00736,0.22192,0.004192,0.0056,0.006272,0.575456,0.007872
+879,792.11,1.26245,0.846208,0.006528,0.22032,0.004928,0.004128,0.006144,0.597184,0.006976
+880,816.668,1.22449,0.83728,0.006176,0.219104,0.005408,0.004832,0.006144,0.587776,0.00784
+881,780.116,1.28186,1.10566,0.006368,0.220896,0.004416,0.005504,0.006592,0.852128,0.00976
+882,635.729,1.573,1.49085,0.00816,0.467872,0.007616,0.004672,0.006144,0.98848,0.007904
+883,536.828,1.86279,0.863968,0.007424,0.219904,0.005984,0.004256,0.006176,0.612224,0.008
+884,771.157,1.29675,0.827392,0.006144,0.2264,0.004928,0.004192,0.006144,0.571392,0.008192
+885,794.723,1.2583,0.835584,0.006176,0.225024,0.00432,0.005792,0.006528,0.58096,0.006784
+886,799.61,1.25061,1.04048,0.00736,0.419904,0.00496,0.004096,0.006144,0.589824,0.008192
+887,455.187,2.1969,0.879936,0.010016,0.242912,0.004928,0.004288,0.006144,0.60384,0.007808
+888,786.105,1.27209,0.88064,0.007712,0.227808,0.005184,0.004832,0.006272,0.62064,0.008192
+889,715.458,1.39771,0.864704,0.006592,0.232768,0.0048,0.004096,0.007264,0.600992,0.008192
+890,846.106,1.18188,0.842528,0.007104,0.21504,0.005664,0.004576,0.006144,0.595968,0.008032
+891,714.522,1.39954,1.23293,0.00816,0.229344,0.00416,0.005696,0.006272,0.969024,0.010272
+892,531.327,1.88208,0.859744,0.007328,0.220064,0.005856,0.004384,0.006176,0.608096,0.00784
+893,801.566,1.24756,0.858112,0.008032,0.221376,0.005696,0.004512,0.007232,0.603072,0.008192
+894,710.063,1.40833,0.858176,0.007904,0.235808,0.005184,0.004832,0.006336,0.591072,0.00704
+895,801.644,1.24744,0.882336,0.00624,0.251936,0.005888,0.00432,0.006176,0.599968,0.007808
+896,673.02,1.48584,1.55856,0.00736,0.521216,0.012288,0.005536,0.006272,0.997824,0.008064
+897,523.651,1.90967,0.857952,0.007776,0.225696,0.005664,0.004576,0.006144,0.600064,0.008032
+898,763.965,1.30896,0.846368,0.006688,0.223136,0.004192,0.005568,0.006592,0.592,0.008192
+899,798.129,1.25293,0.860192,0.007616,0.240224,0.005184,0.004864,0.006208,0.58912,0.006976
+900,517.76,1.9314,1.13869,0.007744,0.221632,0.005184,0.004832,0.006304,0.882752,0.01024
+901,925.859,1.08008,1.51552,0.007488,0.440928,0.05248,0.008192,0.00688,0.992576,0.006976
+902,556.333,1.79749,0.84784,0.006752,0.2376,0.005984,0.004256,0.006176,0.579168,0.007904
+903,745.337,1.34167,0.88992,0.007584,0.2296,0.00448,0.00528,0.006272,0.628928,0.007776
+904,771.956,1.29541,0.900896,0.007552,0.278304,0.00496,0.004096,0.006176,0.59184,0.007968
+905,610.66,1.63757,1.42227,0.007104,0.39936,0.00592,0.00432,0.006144,0.99088,0.008544
+906,575.119,1.73877,0.873344,0.007072,0.227296,0.005696,0.004544,0.006144,0.6144,0.008192
+907,772.393,1.29468,0.856064,0.007552,0.22592,0.005856,0.004384,0.006144,0.599168,0.00704
+908,777.377,1.28638,0.858144,0.007904,0.221024,0.004576,0.005216,0.006208,0.604992,0.008224
+909,786.407,1.27161,0.88464,0.008128,0.22304,0.004352,0.005408,0.006272,0.629344,0.008096
+910,694.237,1.44043,1.25405,0.006944,0.241152,0.004608,0.005216,0.006304,0.979712,0.010112
+911,540.619,1.84973,0.86752,0.007456,0.223968,0.005504,0.004736,0.006144,0.611904,0.007808
+912,810.287,1.23413,0.843616,0.006752,0.221376,0.005568,0.00464,0.006144,0.59136,0.007776
+913,742.702,1.34644,0.876544,0.007488,0.246336,0.004256,0.005504,0.006304,0.598592,0.008064
+914,753.981,1.32629,0.872672,0.00688,0.243968,0.00592,0.00432,0.006176,0.597536,0.007872
+915,667.808,1.49744,1.48442,0.006464,0.442368,0.006144,0.00528,0.00656,1.0095,0.008096
+916,531.051,1.88306,0.873024,0.00672,0.229376,0.004128,0.005632,0.006272,0.612704,0.008192
+917,813.021,1.22998,0.868544,0.007584,0.221792,0.0056,0.004608,0.006208,0.615744,0.007008
+918,758.168,1.31897,0.846368,0.00672,0.218688,0.004512,0.00528,0.006304,0.596672,0.008192
+919,808.049,1.23755,1.14128,0.006784,0.224512,0.004864,0.004096,0.006144,0.884736,0.010144
+920,570.871,1.75171,1.50195,0.006976,0.464896,0.008,0.005536,0.00624,1.00218,0.008128
+921,549.909,1.81848,0.85648,0.00656,0.22528,0.00576,0.00448,0.006144,0.601312,0.006944
+922,808.767,1.23645,0.863296,0.007776,0.21904,0.004608,0.005152,0.00624,0.612704,0.007776
+923,799.844,1.25024,0.866304,0.007232,0.219872,0.00432,0.005504,0.006784,0.6144,0.008192
+924,748.196,1.33655,1.39414,0.00768,0.399104,0.004864,0.004096,0.007168,0.961536,0.009696
+925,496.034,2.01599,0.8704,0.0064,0.231168,0.005728,0.004512,0.006144,0.608256,0.008192
+926,782.127,1.27856,0.84992,0.008192,0.217088,0.005728,0.004512,0.006144,0.600064,0.008192
+927,732.148,1.36584,0.870688,0.006464,0.221152,0.005952,0.004288,0.006144,0.618496,0.008192
+928,840.205,1.19019,0.842304,0.00672,0.22528,0.005216,0.004864,0.00624,0.585792,0.008192
+929,757.677,1.31982,1.80022,0.007936,0.400704,0.005056,0.004096,0.006144,1.36794,0.008352
+930,445.121,2.24658,0.875904,0.00736,0.226272,0.005152,0.004864,0.00624,0.618304,0.007712
+931,824.56,1.21277,0.88112,0.006624,0.217088,0.005472,0.004768,0.006144,0.632832,0.008192
+932,730.906,1.36816,0.866336,0.006336,0.233312,0.005152,0.004832,0.006272,0.60224,0.008192
+933,766.611,1.30444,0.848224,0.006496,0.219136,0.005408,0.004832,0.006144,0.598016,0.008192
+934,691.425,1.44629,1.48291,0.00672,0.445632,0.019296,0.0056,0.00624,0.991456,0.007968
+935,489.659,2.04224,0.8912,0.006912,0.237568,0.004224,0.005632,0.006304,0.62272,0.00784
+936,864.317,1.15698,0.84528,0.006528,0.22288,0.00448,0.005312,0.006272,0.592,0.007808
+937,789.21,1.26709,0.855424,0.006432,0.222688,0.00464,0.004192,0.007488,0.60208,0.007904
+938,772.102,1.29517,1.22694,0.007456,0.22416,0.005312,0.004928,0.00784,0.968896,0.008352
+939,420.426,2.37854,0.884736,0.01024,0.243712,0.005632,0.004608,0.006144,0.606208,0.008192
+940,804.32,1.24329,0.843936,0.007392,0.216064,0.00576,0.00448,0.00736,0.594752,0.008128
+941,794.337,1.25891,0.844448,0.006816,0.216352,0.004832,0.004096,0.006304,0.597856,0.008192
+942,730.515,1.3689,0.854528,0.006656,0.225184,0.004192,0.0056,0.006272,0.598432,0.008192
+943,800.313,1.24951,1.78918,0.008032,0.39952,0.005632,0.004608,0.006144,1.35578,0.009472
+944,452.447,2.21021,0.87024,0.007424,0.223552,0.004544,0.00528,0.006272,0.615136,0.008032
+945,513.508,1.94739,0.862208,0.006336,0.218944,0.005824,0.004416,0.006144,0.612224,0.00832
+946,1430.67,0.698975,0.870592,0.006624,0.22528,0.00592,0.00432,0.006176,0.614368,0.007904
+947,784.975,1.27393,1.1537,0.007008,0.220352,0.004928,0.005376,0.006368,0.899616,0.010048
+948,555.804,1.79919,1.07315,0.019872,0.416352,0.005568,0.004672,0.007168,0.61248,0.00704
+949,683.065,1.46399,0.847648,0.007392,0.22608,0.004256,0.005984,0.006144,0.589824,0.007968
+950,792.8,1.26135,0.850144,0.006368,0.218464,0.004768,0.004096,0.008192,0.600064,0.008192
+951,795.958,1.25635,0.841952,0.006592,0.229152,0.005952,0.004288,0.006144,0.581632,0.008192
+952,814.233,1.22815,1.12499,0.006784,0.217088,0.005376,0.004864,0.006144,0.87616,0.008576
+953,416.472,2.40112,0.857152,0.01024,0.231328,0.004192,0.0056,0.00624,0.591712,0.00784
+954,827.977,1.20776,0.845536,0.0064,0.219904,0.004896,0.00432,0.006144,0.595968,0.007904
+955,719.923,1.38904,0.841728,0.007616,0.217664,0.005248,0.004832,0.006272,0.591904,0.008192
+956,846.806,1.18091,0.872128,0.006144,0.227328,0.005344,0.004864,0.006176,0.614304,0.007968
+957,749.771,1.33374,1.03142,0.0072,0.400352,0.005248,0.004864,0.00624,0.59936,0.00816
+958,685.179,1.45947,1.49402,0.009184,0.448128,0.02672,0.005536,0.006304,0.991008,0.007136
+959,538.522,1.85693,0.83936,0.007776,0.217312,0.004288,0.005472,0.006816,0.589824,0.007872
+960,803.61,1.24438,0.838272,0.00704,0.21456,0.004576,0.005216,0.006432,0.592512,0.007936
+961,796.268,1.25586,0.834688,0.007328,0.215904,0.005376,0.004864,0.006176,0.587328,0.007712
+962,764.25,1.30847,1.01654,0.00688,0.400864,0.00464,0.005216,0.006272,0.585664,0.007008
+963,481.769,2.07568,0.85184,0.010208,0.217408,0.004576,0.005184,0.006272,0.60048,0.007712
+964,762.685,1.31116,0.85632,0.006848,0.241856,0.004288,0.005632,0.006272,0.583264,0.00816
+965,622.067,1.60754,0.856064,0.007744,0.229632,0.00432,0.005472,0.00624,0.594464,0.008192
+966,1029.92,0.970947,0.85008,0.006304,0.233056,0.00448,0.005312,0.006304,0.5864,0.008224
+967,712.844,1.40283,1.21011,0.007168,0.258624,0.004544,0.005216,0.006336,0.91824,0.009984
+968,558.876,1.78931,0.829856,0.006688,0.2232,0.00416,0.005632,0.006272,0.57584,0.008064
+969,742.5,1.3468,0.861536,0.008064,0.243616,0.00432,0.005472,0.006272,0.585984,0.007808
+970,894.128,1.11841,0.841728,0.007296,0.224128,0.005664,0.004576,0.006144,0.585728,0.008192
+971,780.637,1.28101,0.839808,0.006656,0.219104,0.004224,0.005632,0.00608,0.590272,0.00784
+972,684.378,1.46118,1.22058,0.00688,0.234592,0.004896,0.004192,0.006144,0.954368,0.009504
+973,540.833,1.849,0.849408,0.007808,0.229472,0.004384,0.005408,0.006208,0.588352,0.007776
+974,774.657,1.29089,0.845856,0.007744,0.217568,0.005376,0.004768,0.00624,0.597152,0.007008
+975,823.399,1.21448,0.833536,0.007648,0.21968,0.00416,0.005568,0.006272,0.583552,0.006656
+976,789.514,1.2666,0.839776,0.006592,0.21696,0.0056,0.00464,0.006144,0.591872,0.007968
+977,650.934,1.53625,1.61395,0.00736,0.228288,0.005504,0.004736,0.006144,1.35376,0.00816
+978,494.059,2.02405,0.881632,0.007072,0.23328,0.004352,0.00544,0.006304,0.616992,0.008192
+979,785.05,1.2738,0.843776,0.00672,0.224448,0.004928,0.004096,0.006176,0.589696,0.007712
+980,790.657,1.26477,0.840064,0.00704,0.223232,0.004128,0.00576,0.006304,0.585824,0.007776
+981,724.187,1.38086,1.22611,0.007264,0.2216,0.004608,0.005696,0.005792,0.97296,0.008192
+982,491.628,2.03406,0.839808,0.00848,0.225088,0.004128,0.005664,0.006304,0.583008,0.007136
+983,842.278,1.18726,0.856064,0.00752,0.221856,0.005312,0.004736,0.00624,0.602208,0.008192
+984,780.86,1.28064,0.832704,0.007968,0.216544,0.004864,0.004096,0.006144,0.584864,0.008224
+985,782.8,1.27747,0.82992,0.006656,0.217088,0.005472,0.004736,0.006144,0.581632,0.008192
+986,809.966,1.23462,1.04934,0.006944,0.399328,0.005632,0.004608,0.006144,0.618496,0.008192
+987,469.16,2.13147,0.859744,0.00992,0.22928,0.005664,0.004832,0.006304,0.595968,0.007776
+988,753.703,1.32678,0.847872,0.007424,0.219328,0.004672,0.005152,0.006272,0.596832,0.008192
+989,787.389,1.27002,0.845824,0.008064,0.244864,0.00496,0.004288,0.006144,0.569312,0.008192
+990,796.422,1.25562,0.866304,0.007328,0.217952,0.00592,0.00432,0.006176,0.616416,0.008192
+991,705.234,1.41797,0.850176,0.006912,0.227296,0.004288,0.005632,0.006272,0.591904,0.007872
+992,512.673,1.95056,0.887808,0.01024,0.239648,0.00512,0.004864,0.006272,0.613696,0.007968
+993,816.994,1.224,0.868416,0.006336,0.221184,0.005184,0.004832,0.006304,0.616512,0.008064
+994,751.629,1.33044,0.84992,0.008192,0.220352,0.004928,0.004096,0.006144,0.59904,0.007168
+995,820.595,1.21863,0.841152,0.007232,0.220096,0.005408,0.004832,0.006144,0.589344,0.008096
+996,695.121,1.4386,1.20854,0.006592,0.22528,0.004224,0.0056,0.006336,0.950528,0.009984
+997,541.512,1.84668,0.853856,0.006592,0.22288,0.004192,0.005568,0.006272,0.600512,0.00784
+998,793.107,1.26086,0.872288,0.006336,0.216928,0.005728,0.00448,0.006144,0.62464,0.008032
+999,775.758,1.28906,0.858112,0.006656,0.218464,0.004768,0.004096,0.006176,0.610144,0.007808
+1000,553.289,1.80737,1.13616,0.007744,0.229824,0.005568,0.004672,0.006144,0.872448,0.00976
+1001,828.898,1.20642,1.52538,0.0072,0.441312,0.04096,0.00528,0.006432,1.01632,0.007872
+1002,525.532,1.90283,0.862592,0.006528,0.223104,0.004224,0.005568,0.006272,0.608704,0.008192
+1003,879.064,1.13757,0.8624,0.00736,0.222208,0.005472,0.004768,0.006144,0.609568,0.00688
+1004,758.448,1.31848,0.866304,0.007264,0.222112,0.00544,0.0048,0.006144,0.612352,0.008192
+1005,737.354,1.3562,1.63722,0.007008,0.260096,0.00544,0.0048,0.006144,1.34554,0.008192
+1006,452.922,2.20789,0.835968,0.006656,0.2232,0.005408,0.004832,0.006112,0.581664,0.008096
+1007,788.83,1.2677,0.84192,0.007328,0.217952,0.005504,0.004736,0.006144,0.59328,0.006976
+1008,828.311,1.20728,0.851968,0.007872,0.223104,0.004544,0.005248,0.006272,0.597856,0.007072
+1009,797.43,1.25403,0.831392,0.006496,0.219136,0.00528,0.004832,0.006112,0.581792,0.007744
+1010,727.208,1.37512,1.02762,0.006688,0.399328,0.004384,0.0056,0.006272,0.597472,0.007872
+1011,441.832,2.26331,0.891072,0.008384,0.249888,0.005568,0.00464,0.006144,0.608256,0.008192
+1012,917.666,1.08972,0.8664,0.007328,0.219616,0.00448,0.005344,0.006944,0.61568,0.007008
+1013,783.549,1.27625,0.835744,0.006336,0.222848,0.004448,0.005344,0.00624,0.582336,0.008192
+1014,800.078,1.24988,0.86192,0.006784,0.222656,0.004672,0.004128,0.007264,0.609152,0.007264
+1015,669.008,1.49475,1.60458,0.006784,0.22768,0.005856,0.004384,0.006144,1.34522,0.008512
+1016,481.797,2.07556,0.850272,0.006592,0.224352,0.004928,0.004096,0.006144,0.597056,0.007104
+1017,814.638,1.22754,0.837824,0.006336,0.224288,0.004928,0.004256,0.006144,0.584736,0.007136
+1018,786.936,1.27075,0.845824,0.007936,0.221472,0.005792,0.004416,0.006144,0.591872,0.008192
+1019,794.414,1.25879,1.13498,0.006528,0.221184,0.004256,0.005632,0.006272,0.88224,0.008864
+1020,423.885,2.35913,1.47811,0.006272,0.46224,0.006624,0.006016,0.006272,0.9824,0.008288
+1021,898.64,1.11279,0.831488,0.006272,0.21904,0.00512,0.004832,0.006272,0.582816,0.007136
+1022,715.834,1.39697,0.882432,0.007968,0.262048,0.005568,0.004992,0.0072,0.58672,0.007936
+1023,731.167,1.36768,0.862208,0.008,0.225056,0.004512,0.005312,0.00624,0.604896,0.008192
+1024,808.049,1.23755,1.02787,0.007808,0.40384,0.00544,0.0048,0.006144,0.59184,0.008
+1025,436.069,2.29321,0.894976,0.009504,0.264576,0.00448,0.00528,0.00624,0.596704,0.008192
+1026,815.611,1.22607,0.833536,0.007552,0.227488,0.004576,0.005216,0.006272,0.57424,0.008192
+1027,746.356,1.33984,0.86864,0.00656,0.25792,0.005472,0.004768,0.006144,0.579584,0.008192
+1028,757.817,1.31958,0.86096,0.007072,0.244736,0.004992,0.004224,0.006176,0.585696,0.008064
+1029,697.073,1.43457,1.19757,0.006336,0.233024,0.004544,0.005312,0.006272,0.932544,0.009536
+1030,522.249,1.91479,0.876512,0.007328,0.236384,0.00576,0.00448,0.006144,0.608256,0.00816
+1031,804.083,1.24365,0.859648,0.006432,0.24752,0.004416,0.005376,0.006272,0.581888,0.007744
+1032,761.621,1.31299,0.845824,0.007648,0.237152,0.004992,0.00416,0.006144,0.577536,0.008192
+1033,695.18,1.43848,1.12845,0.007392,0.221984,0.00432,0.005632,0.006272,0.87424,0.008608
+1034,668.189,1.49658,1.48496,0.006304,0.448032,0.034304,0.005088,0.006176,0.976864,0.008192
+1035,542.373,1.84375,0.849536,0.007712,0.229376,0.004576,0.005184,0.006272,0.588608,0.007808
+1036,776.493,1.28784,0.87552,0.007168,0.234304,0.004288,0.006016,0.006272,0.608256,0.009216
+1037,771.956,1.29541,0.863328,0.007488,0.248512,0.005248,0.004992,0.006144,0.583136,0.007808
+1038,757.817,1.31958,1.36218,0.007008,0.399424,0.00592,0.004256,0.006176,0.92976,0.009632
+1039,498.661,2.00537,0.872192,0.007648,0.245664,0.004736,0.004096,0.007232,0.59488,0.007936
+1040,805.982,1.24072,0.855296,0.007968,0.242976,0.00496,0.004192,0.006176,0.581152,0.007872
+1041,717.589,1.39355,0.862432,0.007136,0.251904,0.00544,0.0048,0.006144,0.578976,0.008032
+1042,787.844,1.26929,0.862272,0.007424,0.24656,0.005216,0.004864,0.006272,0.584928,0.007008
+1043,708.528,1.41138,0.871136,0.006944,0.2592,0.004928,0.00416,0.006144,0.581632,0.008128
+1044,489.191,2.04419,0.8784,0.009024,0.256,0.005536,0.004704,0.006144,0.58912,0.007872
+1045,839.344,1.19141,0.85936,0.007808,0.233856,0.005696,0.004544,0.006144,0.593568,0.007744
+1046,790.734,1.26465,0.829312,0.006976,0.221184,0.004224,0.005632,0.006528,0.576832,0.007936
+1047,799.375,1.25098,0.858112,0.00784,0.239968,0.00528,0.004896,0.006144,0.585792,0.008192
+1048,546.498,1.82983,1.22413,0.007296,0.239968,0.00464,0.005152,0.006272,0.951136,0.009664
+1049,598.393,1.67114,0.874496,0.007712,0.260576,0.00416,0.0056,0.006304,0.581952,0.008192
+1050,819.364,1.22046,0.872448,0.006304,0.239456,0.00512,0.004992,0.006272,0.602112,0.008192
+1051,678.258,1.47437,0.848512,0.006752,0.228576,0.004896,0.004096,0.006144,0.590848,0.0072
+1052,868.533,1.15137,1.13619,0.007392,0.236512,0.004384,0.005824,0.006144,0.866304,0.009632
+1053,640.3,1.56177,1.25808,0.006784,0.245408,0.004416,0.005408,0.006208,0.981664,0.008192
+1054,522.116,1.91528,0.868864,0.006656,0.246816,0.00496,0.004224,0.006144,0.591872,0.008192
+1055,826.14,1.21045,0.883488,0.006976,0.221152,0.005888,0.004352,0.006176,0.631936,0.007008
+1056,731.037,1.36792,0.896672,0.008192,0.2536,0.004448,0.005376,0.006272,0.610944,0.00784
+1057,598.743,1.67017,1.03987,0.00752,0.39984,0.004288,0.005536,0.006272,0.60832,0.008096
+1058,576.009,1.73608,0.870464,0.009632,0.225888,0.00576,0.00448,0.006176,0.61152,0.007008
+1059,775.024,1.29028,0.851712,0.006336,0.220992,0.004256,0.005632,0.006304,0.600256,0.007936
+1060,814.962,1.22705,0.857856,0.006912,0.225248,0.005696,0.004544,0.006144,0.601312,0.008
+1061,775.905,1.28882,0.842368,0.006784,0.218976,0.004288,0.005536,0.00624,0.592352,0.008192
+1062,731.298,1.36743,0.851488,0.006592,0.234752,0.00464,0.005376,0.006272,0.586368,0.007488
+1063,514.379,1.94409,0.889024,0.00848,0.229184,0.004224,0.005536,0.006304,0.627104,0.008192
+1064,789.667,1.26636,0.84864,0.006912,0.221184,0.00528,0.004832,0.006272,0.595968,0.008192
+1065,768.48,1.30127,0.843776,0.008224,0.218336,0.004864,0.004096,0.006144,0.59392,0.008192
+1066,753.911,1.32642,0.841664,0.007616,0.229952,0.005824,0.004416,0.006176,0.579552,0.008128
+1067,754.189,1.32593,1.20374,0.007392,0.237952,0.004512,0.005248,0.006272,0.932608,0.00976
+1068,523.451,1.9104,0.868192,0.006656,0.225024,0.004352,0.00544,0.006304,0.61264,0.007776
+1069,821.335,1.21753,0.85712,0.007584,0.221792,0.005824,0.004416,0.006144,0.603616,0.007744
+1070,785.126,1.27368,0.817152,0.008128,0.219008,0.004288,0.005472,0.006176,0.565888,0.008192
+1071,807.253,1.23877,0.82144,0.006336,0.220992,0.00432,0.005472,0.006304,0.569824,0.008192
+1072,716.71,1.39526,0.858592,0.006624,0.241664,0.005568,0.004672,0.006144,0.585728,0.008192
+1073,534.098,1.87231,0.847872,0.009696,0.227872,0.005568,0.004672,0.006144,0.585728,0.008192
+1074,707.793,1.41284,0.880576,0.007104,0.235488,0.00576,0.00448,0.006144,0.613632,0.007968
+1075,777.672,1.28589,0.852544,0.00672,0.234912,0.004736,0.004064,0.007232,0.58784,0.00704
+1076,834.046,1.19897,1.1303,0.007328,0.25632,0.004672,0.005088,0.006272,0.840576,0.010048
+1077,630.445,1.58618,1.62893,0.006944,0.22928,0.004192,0.00576,0.006272,1.36784,0.00864
+1078,488.841,2.04565,0.843904,0.007712,0.229056,0.004896,0.0056,0.006272,0.583104,0.007264
+1079,856.008,1.16821,0.84672,0.007008,0.223232,0.005536,0.004704,0.006144,0.592992,0.007104
+1080,777.082,1.28687,0.856224,0.006976,0.223232,0.005152,0.004832,0.006304,0.601824,0.007904
+1081,768.625,1.30103,1.0199,0.007424,0.417888,0.004768,0.005216,0.006272,0.571232,0.007104
+1082,651.814,1.53418,1.50118,0.006144,0.452608,0.034816,0.006144,0.006144,0.987136,0.008192
+1083,499.756,2.00098,0.846112,0.006784,0.241408,0.004352,0.005472,0.006272,0.573984,0.00784
+1084,854.758,1.16992,0.843936,0.006368,0.237344,0.004256,0.005632,0.006304,0.577024,0.007008
+1085,803.295,1.24487,0.844672,0.006816,0.220864,0.004704,0.00512,0.00624,0.5928,0.008128
+1086,700.65,1.42725,0.850816,0.00704,0.23328,0.004288,0.005504,0.006272,0.58624,0.008192
+1087,509.073,1.96436,0.847904,0.01024,0.237344,0.00432,0.005472,0.006272,0.576096,0.00816
+1088,795.494,1.25708,0.846816,0.007008,0.225408,0.00512,0.004864,0.0064,0.589952,0.008064
+1089,792.263,1.26221,0.850016,0.00752,0.231488,0.004704,0.004096,0.007264,0.587936,0.007008
+1090,763.04,1.31055,0.866368,0.006208,0.249856,0.004224,0.0056,0.006272,0.585856,0.008352
+1091,651.296,1.5354,0.859168,0.007808,0.231264,0.00464,0.005184,0.006304,0.596128,0.00784
+1092,523.785,1.90918,0.877568,0.009216,0.251872,0.005248,0.004832,0.006208,0.591968,0.008224
+1093,804.083,1.24365,0.836608,0.007072,0.233568,0.00544,0.0048,0.006144,0.571392,0.008192
+1094,797.974,1.25317,0.851968,0.007616,0.232,0.005824,0.004416,0.006144,0.588928,0.00704
+1095,806.458,1.23999,1.12035,0.00624,0.22256,0.004736,0.004096,0.007232,0.866432,0.009056
+1096,576.171,1.7356,1.54186,0.008,0.50976,0.030432,0.004768,0.006144,0.974688,0.008064
+1097,519.863,1.92358,0.849088,0.007744,0.231552,0.004416,0.005376,0.00624,0.585856,0.007904
+1098,820.02,1.21948,0.874976,0.006624,0.232672,0.004896,0.004096,0.006144,0.613536,0.007008
+1099,755.162,1.32422,0.86176,0.007744,0.219584,0.005696,0.004544,0.006144,0.610208,0.00784
+1100,706.572,1.41528,1.02429,0.006464,0.399296,0.004128,0.005696,0.006304,0.594208,0.008192
+1101,669.062,1.49463,1.50733,0.007456,0.45936,0.018592,0.006112,0.006144,1.00147,0.008192
+1102,536.969,1.8623,0.834976,0.00752,0.219808,0.004096,0.005696,0.006592,0.583392,0.007872
+1103,805.19,1.24194,0.825344,0.007744,0.217152,0.00448,0.005312,0.006304,0.57616,0.008192
+1104,743.511,1.34497,0.860224,0.006304,0.235424,0.00416,0.005632,0.006272,0.59424,0.008192
+1105,687.248,1.45508,0.892928,0.0072,0.25904,0.005312,0.004896,0.015872,0.592416,0.008192
+1106,522.582,1.91357,0.860384,0.009952,0.248128,0.004608,0.005152,0.00624,0.578432,0.007872
+1107,835.066,1.19751,0.843328,0.006624,0.223072,0.005888,0.004352,0.006144,0.589376,0.007872
+1108,789.058,1.26733,0.86016,0.008064,0.24384,0.005888,0.004352,0.006176,0.583648,0.008192
+1109,786.482,1.27148,0.851232,0.00752,0.231328,0.004864,0.004096,0.006144,0.589504,0.007776
+1110,650.365,1.5376,0.845856,0.00688,0.228832,0.00464,0.005184,0.00624,0.584544,0.009536
+1111,535.075,1.8689,0.88512,0.009824,0.244704,0.005376,0.004864,0.006144,0.606208,0.008
+1112,821.335,1.21753,0.850432,0.007072,0.21712,0.005472,0.004768,0.006144,0.60192,0.007936
+1113,748.128,1.33667,0.844768,0.006784,0.225664,0.005216,0.004832,0.006272,0.58896,0.00704
+1114,841.24,1.18872,1.1383,0.007936,0.219392,0.004256,0.005632,0.006272,0.88496,0.009856
+1115,622.587,1.6062,1.48502,0.006784,0.446464,0.018432,0.006048,0.00624,0.992928,0.008128
+1116,520.061,1.92285,0.896544,0.007392,0.246592,0.005696,0.004512,0.006144,0.618368,0.00784
+1117,540.156,1.85132,0.894976,0.006272,0.243264,0.004416,0.005408,0.006272,0.621152,0.008192
+1118,1276.01,0.783691,0.856064,0.00752,0.230048,0.005344,0.004864,0.006176,0.59392,0.008192
+1119,778.707,1.28418,1.04403,0.006144,0.400608,0.004928,0.004064,0.006144,0.6144,0.007744
+1120,430.071,2.3252,0.887584,0.009024,0.24368,0.00512,0.004832,0.00624,0.610496,0.008192
+1121,835.237,1.19727,0.849216,0.006368,0.222656,0.00464,0.005152,0.0064,0.59616,0.00784
+1122,789.819,1.26611,0.839872,0.006816,0.217056,0.005888,0.004352,0.006176,0.591744,0.00784
+1123,787.995,1.26904,0.851872,0.007488,0.221888,0.005504,0.004736,0.006144,0.598016,0.008096
+1124,693.767,1.44141,1.22112,0.006656,0.22528,0.00528,0.004832,0.006272,0.964064,0.008736
+1125,527.02,1.89746,0.86256,0.006496,0.22528,0.00416,0.005632,0.006304,0.606496,0.008192
+1126,784.674,1.27441,0.885696,0.007104,0.247776,0.005952,0.004288,0.006144,0.606208,0.008224
+1127,766.611,1.30444,0.851968,0.007424,0.232,0.004288,0.005472,0.006272,0.58832,0.008192
+1128,654.104,1.52881,1.17376,0.00656,0.23936,0.00416,0.005632,0.006272,0.903424,0.008352
+1129,668.298,1.49634,1.2879,0.007648,0.284224,0.004992,0.004192,0.006176,0.97072,0.009952
+1130,544.247,1.8374,0.886656,0.007552,0.231232,0.004928,0.004096,0.006144,0.62464,0.008064
+1131,706.451,1.41553,0.843456,0.006624,0.219104,0.005568,0.004672,0.006144,0.593472,0.007872
+1132,856.366,1.16772,0.864448,0.00656,0.218912,0.005344,0.004864,0.006144,0.614432,0.008192
+1133,775.317,1.28979,1.10835,0.007104,0.46816,0.004928,0.004096,0.006144,0.610112,0.007808
+1134,506.993,1.97241,0.897056,0.01024,0.249888,0.004096,0.005632,0.006272,0.613824,0.007104
+1135,768.913,1.30054,0.864992,0.006816,0.231456,0.005504,0.004736,0.006144,0.603232,0.007104
+1136,787.238,1.27026,0.86256,0.006688,0.22528,0.0056,0.00464,0.006144,0.606208,0.008
+1137,786.03,1.27222,0.870688,0.006848,0.228608,0.004864,0.004096,0.006144,0.612352,0.007776
+1138,787.238,1.27026,1.07699,0.007296,0.400128,0.00416,0.005696,0.006272,0.645408,0.008032
+1139,620.418,1.61182,1.53734,0.0072,0.44336,0.032768,0.005824,0.006272,1.03398,0.007936
+1140,524.254,1.90747,0.885056,0.006592,0.229376,0.005824,0.004416,0.007232,0.623552,0.008064
+1141,782.575,1.27783,0.837632,0.006368,0.220768,0.004288,0.005472,0.006144,0.5864,0.008192
+1142,791.192,1.26392,0.8704,0.006368,0.22096,0.00544,0.0048,0.006144,0.618496,0.008192
+1143,726.37,1.37671,1.6657,0.006848,0.224704,0.004672,0.005088,0.006304,1.40966,0.008416
+1144,459.76,2.17505,0.88304,0.007072,0.22528,0.005408,0.004832,0.006144,0.626208,0.008096
+1145,786.936,1.27075,0.874848,0.006496,0.219072,0.00416,0.005664,0.006528,0.625888,0.00704
+1146,727.66,1.37427,0.933888,0.007808,0.24608,0.00416,0.005664,0.00624,0.655744,0.008192
+1147,727.144,1.37524,1.27386,0.006336,0.229216,0.005184,0.004864,0.00624,1.01382,0.008192
+1148,385.76,2.59229,0.919552,0.010144,0.251264,0.004832,0.004096,0.006144,0.63488,0.008192
+1149,780.637,1.28101,0.869024,0.006912,0.229184,0.004256,0.005504,0.006272,0.608768,0.008128
+1150,760.773,1.31445,0.891424,0.007072,0.225376,0.004192,0.005632,0.006272,0.635104,0.007776
+1151,782.277,1.27832,0.876544,0.007552,0.221824,0.00576,0.00448,0.007712,0.622048,0.007168
+1152,629.283,1.58911,1.55424,0.006752,0.446464,0.032608,0.005536,0.006144,1.04899,0.007744
+1153,527.495,1.89575,0.913632,0.006368,0.223232,0.00512,0.004832,0.006304,0.659584,0.008192
+1154,752.941,1.32812,0.937984,0.007616,0.217664,0.005632,0.004608,0.006144,0.689344,0.006976
+1155,745.405,1.34155,0.893344,0.00672,0.221184,0.00544,0.0048,0.006176,0.640992,0.008032
+1156,738.018,1.35498,1.6337,0.008192,0.23952,0.004192,0.00528,0.004992,1.36189,0.009632
+1157,440.241,2.27148,0.88336,0.006848,0.225152,0.004192,0.0056,0.006272,0.627104,0.008192
+1158,765.178,1.30688,0.939072,0.008192,0.280608,0.005408,0.0048,0.006144,0.626048,0.007872
+1159,700.89,1.42676,0.893248,0.006464,0.221184,0.00544,0.0048,0.006176,0.640992,0.008192
+1160,753.08,1.32788,0.851968,0.007552,0.215392,0.004384,0.005376,0.00624,0.604832,0.008192
+1161,673.241,1.48535,1.52576,0.008192,0.464768,0.006272,0.006144,0.006144,1.02605,0.008192
+1162,511.936,1.95337,0.894976,0.007616,0.223808,0.005216,0.004832,0.006304,0.639008,0.008192
+1163,696.007,1.43677,0.897408,0.006656,0.22848,0.004928,0.004128,0.006144,0.638976,0.008096
+1164,788.147,1.2688,0.903776,0.006752,0.220288,0.004896,0.004192,0.006144,0.6544,0.007104
+1165,712.844,1.40283,1.25549,0.006944,0.221184,0.004096,0.005856,0.005632,1.00362,0.00816
+1166,554.338,1.80396,1.0711,0.024576,0.415744,0.005664,0.004576,0.007232,0.60512,0.008192
+1167,685.753,1.45825,0.853728,0.007488,0.21552,0.00432,0.005472,0.006496,0.606528,0.007904
+1168,754.467,1.32544,0.873696,0.007968,0.22912,0.004576,0.005184,0.00624,0.612704,0.007904
+1169,743.511,1.34497,0.875424,0.006848,0.23968,0.004224,0.005504,0.006336,0.604608,0.008224
+1170,824.643,1.21265,1.4152,0.007328,0.40016,0.00416,0.005696,0.00624,0.98288,0.008736
+1171,489.542,2.04272,0.862016,0.007584,0.221024,0.004864,0.004096,0.006144,0.610272,0.008032
+1172,759.221,1.31714,0.898944,0.008032,0.214912,0.004384,0.005408,0.006144,0.652,0.008064
+1173,767.904,1.30225,0.847904,0.006176,0.21504,0.005184,0.004864,0.006304,0.60336,0.006976
+1174,739.751,1.35181,0.907104,0.007424,0.217696,0.004256,0.005632,0.00624,0.657824,0.008032
+1175,725.726,1.37793,1.67731,0.007872,0.219456,0.005888,0.004352,0.006176,1.42541,0.00816
+1176,490.421,2.03906,0.886784,0.007904,0.218848,0.004672,0.004096,0.00736,0.636768,0.007136
+1177,754.467,1.32544,0.851264,0.007616,0.215616,0.00416,0.005408,0.00624,0.604448,0.007776
+1178,711.605,1.40527,0.878624,0.007936,0.227136,0.004544,0.005216,0.006272,0.619296,0.008224
+1179,864.135,1.15723,1.12234,0.007328,0.217568,0.00448,0.005312,0.006272,0.872544,0.008832
+1180,574.958,1.73926,1.07709,0.00992,0.416064,0.005536,0.004704,0.006144,0.626688,0.008032
+1181,669.39,1.4939,0.910048,0.006848,0.218624,0.00464,0.00512,0.0064,0.660224,0.008192
+1182,754.05,1.32617,0.865152,0.006944,0.21504,0.005824,0.004416,0.007328,0.61856,0.00704
+1183,758.097,1.31909,0.85072,0.006976,0.218528,0.004704,0.00528,0.00624,0.602144,0.006848
+1184,817.076,1.22388,1.25725,0.006208,0.24368,0.005568,0.004672,0.006144,0.98288,0.008096
+1185,412.197,2.42603,0.888576,0.009696,0.225216,0.004736,0.004064,0.007232,0.629696,0.007936
+1186,767.76,1.30249,0.87856,0.007488,0.219168,0.004768,0.006144,0.006144,0.626688,0.00816
+1187,779.745,1.28247,0.869312,0.00688,0.21936,0.0056,0.00464,0.00624,0.6184,0.008192
+1188,678.933,1.4729,0.899136,0.006848,0.230816,0.004928,0.004128,0.006144,0.638336,0.007936
+1189,762.756,1.31104,0.905312,0.00624,0.234624,0.004928,0.00416,0.006144,0.641024,0.008192
+1190,406.148,2.46216,0.91136,0.010048,0.25552,0.0048,0.004064,0.007168,0.621568,0.008192
+1191,1482.98,0.674316,0.875008,0.006656,0.222432,0.004896,0.004096,0.00768,0.621056,0.008192
+1192,777.82,1.28564,0.905216,0.007776,0.221408,0.00432,0.005472,0.006208,0.65184,0.008192
+1193,774.584,1.29102,0.892832,0.007904,0.22064,0.004928,0.005248,0.006304,0.639712,0.008096
+1194,619.105,1.61523,1.54608,0.006624,0.464352,0.006464,0.006144,0.006144,1.04816,0.008192
+1195,477.445,2.09448,0.864896,0.006816,0.221248,0.005728,0.004512,0.006176,0.61232,0.008096
+1196,869.454,1.15015,0.867104,0.006816,0.222688,0.004608,0.005792,0.006304,0.613888,0.007008
+1197,779.003,1.28369,0.860704,0.00688,0.218496,0.004736,0.004096,0.0072,0.611296,0.008
+1198,293.137,3.41138,1.236,0.008096,0.235616,0.005344,0.004864,0.006208,0.966624,0.009248
+1199,1129.62,0.885254,0.887872,0.00992,0.25632,0.005184,0.004864,0.006304,0.597408,0.007872
+1200,773.414,1.29297,0.876352,0.007712,0.249984,0.004448,0.005376,0.00624,0.594432,0.00816
+1201,771.956,1.29541,0.866304,0.006144,0.243712,0.005632,0.004608,0.006144,0.591872,0.008192
+1202,721,1.38696,1.27901,0.008128,0.23968,0.005728,0.006336,0.00624,1.0047,0.008192
+1203,536.617,1.86353,1.67965,0.006848,0.257888,0.004256,0.00576,0.006304,1.38877,0.009824
+1204,562.328,1.77832,0.886976,0.006368,0.226944,0.004448,0.005184,0.006272,0.629568,0.008192
+1205,729.605,1.37061,0.874528,0.00752,0.221856,0.004096,0.005792,0.006432,0.621664,0.007168
+1206,845.757,1.18237,0.869504,0.008192,0.220352,0.004928,0.006144,0.006144,0.615936,0.007808
+1207,620.794,1.61084,1.2247,0.00752,0.250304,0.004352,0.0056,0.006272,0.941952,0.008704
+1208,577.145,1.73267,0.865344,0.008192,0.223264,0.005536,0.004672,0.006144,0.609664,0.007872
+1209,782.127,1.27856,0.86016,0.006272,0.219008,0.005248,0.004864,0.006272,0.610304,0.008192
+1210,805.665,1.24121,0.848352,0.006592,0.219136,0.004096,0.005504,0.006272,0.59984,0.006912
+1211,772.102,1.29517,0.848512,0.006784,0.216096,0.004992,0.004192,0.006144,0.602112,0.008192
+1212,652.022,1.53369,1.49283,0.007392,0.445312,0.0288,0.006112,0.006176,0.991232,0.007808
+1213,531.465,1.88159,0.834048,0.006848,0.219296,0.005216,0.004864,0.00624,0.583712,0.007872
+1214,816.75,1.22437,0.838656,0.007552,0.217472,0.004352,0.005696,0.00656,0.58912,0.007904
+1215,804.715,1.24268,0.8528,0.006976,0.219136,0.005632,0.004608,0.006144,0.602112,0.008192
+1216,807.571,1.23828,1.15098,0.006304,0.218816,0.004256,0.005792,0.006272,0.900704,0.008832
+1217,593.623,1.68457,1.4871,0.00656,0.452128,0.013664,0.005088,0.006144,0.995328,0.008192
+1218,467.847,2.13745,0.8872,0.006976,0.241664,0.005376,0.004832,0.006176,0.614112,0.008064
+1219,918.18,1.08911,0.855904,0.006912,0.222368,0.004928,0.004128,0.008192,0.601536,0.00784
+1220,770.214,1.29834,0.86016,0.008192,0.224352,0.004928,0.004192,0.007744,0.60256,0.008192
+1221,828.479,1.20703,1.02912,0.006816,0.401024,0.0048,0.004096,0.007232,0.59824,0.006912
+1222,655.57,1.52539,1.5169,0.007936,0.446688,0.03648,0.005536,0.006272,1.00598,0.008
+1223,524.322,1.90723,0.860576,0.006528,0.220256,0.004928,0.00416,0.006144,0.611552,0.007008
+1224,794.106,1.25928,0.833152,0.006688,0.217088,0.005472,0.004768,0.006112,0.585216,0.007808
+1225,795.34,1.25732,0.839712,0.007552,0.219328,0.004544,0.00544,0.006272,0.588352,0.008224
+1226,719.227,1.39038,1.38874,0.007328,0.410624,0.005472,0.004768,0.006144,0.945632,0.008768
+1227,500.795,1.99683,0.844736,0.007104,0.223232,0.00544,0.0048,0.006144,0.590912,0.007104
+1228,843.319,1.18579,0.839808,0.007328,0.21808,0.005824,0.004416,0.006144,0.589824,0.008192
+1229,804.083,1.24365,0.849312,0.007392,0.221536,0.004544,0.005248,0.006176,0.59664,0.007776
+1230,784.825,1.27417,0.833696,0.006592,0.219104,0.005152,0.004864,0.006368,0.58368,0.007936
+1231,713.092,1.40234,1.22266,0.007808,0.243904,0.004288,0.005472,0.006336,0.946176,0.008672
+1232,546.571,1.82959,0.852736,0.00704,0.225248,0.004128,0.005888,0.00624,0.596128,0.008064
+1233,792.57,1.26172,0.836448,0.006816,0.215232,0.0056,0.00464,0.006144,0.589824,0.008192
+1234,784.073,1.27539,0.855968,0.007456,0.219904,0.005568,0.00464,0.00608,0.604224,0.008096
+1235,794.26,1.25903,0.84928,0.007584,0.218976,0.004864,0.004096,0.007904,0.597952,0.007904
+1236,694.473,1.43994,1.60211,0.00688,0.221184,0.005632,0.004608,0.006176,1.34902,0.008608
+1237,505.617,1.97778,0.835648,0.00736,0.217984,0.005888,0.004352,0.00752,0.584352,0.008192
+1238,768.769,1.30078,0.835424,0.006368,0.217056,0.005856,0.004384,0.006144,0.587776,0.00784
+1239,636.618,1.5708,0.8424,0.006816,0.233472,0.005408,0.004832,0.006144,0.577568,0.00816
+1240,1082.17,0.924072,1.1591,0.008192,0.222912,0.004416,0.005344,0.006368,0.903104,0.008768
+1241,630.348,1.58643,1.64819,0.007744,0.24416,0.005664,0.004576,0.006144,1.37014,0.00976
+1242,491.304,2.0354,0.845856,0.006976,0.21904,0.004224,0.005568,0.006688,0.595424,0.007936
+1243,793.798,1.25977,0.83312,0.00784,0.21744,0.005792,0.004448,0.007584,0.58224,0.007776
+1244,783.474,1.27637,0.8368,0.007712,0.21936,0.004352,0.005568,0.006176,0.58576,0.007872
+1245,806.617,1.23975,1.40218,0.006144,0.433824,0.00448,0.005344,0.00624,0.936608,0.009536
+1246,480.526,2.08105,0.839232,0.007552,0.217728,0.005824,0.004416,0.007296,0.588448,0.007968
+1247,772.539,1.29443,0.828064,0.006784,0.217088,0.005728,0.004512,0.006144,0.58064,0.007168
+1248,823.979,1.21362,0.868832,0.006752,0.233184,0.004384,0.005376,0.006944,0.604128,0.008064
+1249,778.115,1.28516,0.849408,0.0064,0.214848,0.004288,0.005504,0.006336,0.604224,0.007808
+1250,442.524,2.25977,1.40493,0.006176,0.401376,0.005536,0.004704,0.006144,0.972512,0.00848
+1251,945.303,1.05786,0.85888,0.00688,0.221184,0.005152,0.004864,0.00608,0.606496,0.008224
+1252,770.649,1.29761,0.83104,0.006304,0.21504,0.004096,0.005824,0.00624,0.585632,0.007904
+1253,773.706,1.29248,0.835008,0.006144,0.218464,0.004768,0.004096,0.006144,0.587616,0.007776
+1254,812.537,1.23071,0.83968,0.007744,0.216544,0.00496,0.004224,0.006176,0.59184,0.008192
+1255,721.762,1.3855,1.20256,0.006528,0.218496,0.004736,0.004096,0.007264,0.9512,0.01024
+1256,542.948,1.8418,0.859584,0.007424,0.22128,0.004768,0.004096,0.006144,0.608096,0.007776
+1257,786.784,1.271,0.853632,0.006464,0.218816,0.004416,0.005152,0.00656,0.604352,0.007872
+1258,802.822,1.24561,0.853472,0.0064,0.221184,0.005792,0.005792,0.00624,0.600288,0.007776
+1259,758.097,1.31909,0.884768,0.007712,0.217568,0.004192,0.005632,0.006272,0.635168,0.008224
+1260,611.708,1.63477,0.882464,0.007584,0.24016,0.00416,0.005632,0.006304,0.610656,0.007968
+1261,502.453,1.99023,0.890976,0.008736,0.233312,0.004256,0.005472,0.006272,0.62512,0.007808
+1262,1115.77,0.89624,0.882688,0.007936,0.241088,0.004928,0.004096,0.006144,0.610304,0.008192
+1263,794.26,1.25903,0.878624,0.00688,0.218208,0.00496,0.00416,0.0072,0.629408,0.007808
+1264,749.36,1.33447,0.866304,0.007488,0.215744,0.005408,0.004832,0.007424,0.618368,0.00704
+1265,649.952,1.53857,1.50957,0.006336,0.453984,0.020608,0.00464,0.006144,1.00966,0.008192
+1266,533.056,1.87598,0.877152,0.006752,0.226976,0.004448,0.005344,0.00624,0.6192,0.008192
+1267,776.493,1.28784,0.879072,0.007008,0.224288,0.004928,0.004256,0.006144,0.62464,0.007808
+1268,765.321,1.30664,0.8488,0.007072,0.214432,0.004736,0.004064,0.006144,0.60416,0.008192
+1269,757.677,1.31982,1.26362,0.007584,0.23136,0.004768,0.00528,0.007008,0.999424,0.008192
+1270,436.116,2.29297,0.886784,0.01024,0.223264,0.00544,0.004768,0.006144,0.629792,0.007136
+1271,735.236,1.36011,0.878432,0.006368,0.223008,0.00528,0.004864,0.00624,0.62464,0.008032
+1272,746.22,1.34009,0.913408,0.008064,0.228736,0.004864,0.004096,0.006144,0.653312,0.008192
+1273,820.677,1.21851,0.856352,0.006432,0.22528,0.005216,0.004864,0.006304,0.600064,0.008192
+1274,698.38,1.43188,1.26339,0.007328,0.234336,0.00576,0.00448,0.006144,0.995328,0.010016
+1275,534.168,1.87207,0.869024,0.006848,0.220288,0.004928,0.004128,0.006176,0.61952,0.007136
+1276,773.414,1.29297,0.862208,0.007392,0.219648,0.005696,0.004832,0.006144,0.610304,0.008192
+1277,788.147,1.2688,0.884704,0.006784,0.222432,0.004928,0.004128,0.006176,0.632416,0.00784
+1278,771.375,1.29639,0.8848,0.00736,0.217504,0.004544,0.00512,0.005184,0.638624,0.006464
+1279,628.799,1.59033,1.66707,0.007648,0.239808,0.004448,0.005344,0.006304,1.39478,0.008736
+1280,490.598,2.03833,0.886784,0.007712,0.217568,0.004192,0.005632,0.006208,0.63728,0.008192
+1281,779.152,1.28345,0.869856,0.006592,0.21712,0.005504,0.004704,0.006144,0.621984,0.007808
+1282,716.46,1.39575,0.864352,0.00736,0.21344,0.004576,0.005184,0.006112,0.619488,0.008192
+1283,594.226,1.68286,1.27821,0.0064,0.237568,0.004256,0.003936,0.006144,1.01171,0.008192
+1284,518.153,1.92993,0.90112,0.00992,0.245216,0.004928,0.004128,0.006144,0.622592,0.008192
+1285,807.571,1.23828,0.857568,0.007808,0.217152,0.004416,0.005344,0.006304,0.608832,0.007712
+1286,794.106,1.25928,0.881856,0.008032,0.2152,0.005184,0.004864,0.00608,0.634592,0.007904
+1287,776.199,1.28833,0.883328,0.006784,0.216064,0.00496,0.004256,0.006144,0.638112,0.007008
+1288,681.985,1.46631,1.6471,0.006656,0.218784,0.004448,0.005312,0.00624,1.39747,0.008192
+1289,493.613,2.02588,0.874656,0.007072,0.222976,0.00432,0.00528,0.006272,0.620896,0.00784
+1290,750.321,1.33276,0.883872,0.007456,0.24016,0.004288,0.005632,0.006272,0.612224,0.00784
+1291,743.646,1.34473,0.87664,0.006272,0.232576,0.004864,0.004096,0.007168,0.614656,0.007008
+1292,710.741,1.40698,1.1673,0.008128,0.23888,0.004896,0.004096,0.006144,0.896,0.009152
+1293,664.073,1.50586,1.61997,0.006144,0.223264,0.005792,0.004416,0.006144,1.36602,0.008192
+1294,489.835,2.0415,0.898688,0.008064,0.268416,0.005216,0.004832,0.006304,0.59792,0.007936
+1295,800,1.25,0.855968,0.007904,0.217376,0.004256,0.005664,0.006272,0.6064,0.008096
+1296,795.649,1.25684,0.893536,0.007168,0.2312,0.00432,0.005472,0.006272,0.631168,0.007936
+1297,754.189,1.32593,1.0367,0.006592,0.401376,0.005184,0.004864,0.006272,0.604256,0.00816
+1298,479.962,2.0835,0.861536,0.009824,0.228,0.005696,0.004512,0.006144,0.59952,0.00784
+1299,782.426,1.27808,0.870848,0.006784,0.217248,0.004256,0.005632,0.006272,0.622816,0.00784
+1300,814.152,1.22827,0.892704,0.006752,0.219136,0.005376,0.004864,0.006144,0.64256,0.007872
+1301,746.628,1.33936,0.87184,0.007584,0.223872,0.005536,0.004672,0.006144,0.615776,0.008256
+1302,677.025,1.47705,1.63418,0.007744,0.22368,0.005632,0.004608,0.006144,1.37766,0.008704
+1303,512.256,1.95215,0.886816,0.006464,0.222528,0.0048,0.004096,0.006144,0.63488,0.007904
+1304,680.851,1.46875,0.894976,0.006208,0.24064,0.004928,0.004224,0.006144,0.62464,0.008192
+1305,889.468,1.12427,0.863008,0.006976,0.22672,0.004672,0.004096,0.007296,0.605056,0.008192
+1306,787.692,1.26953,1.16944,0.007648,0.221728,0.005728,0.004512,0.006176,0.915424,0.008224
+1307,591.651,1.69019,1.52858,0.006944,0.444384,0.032352,0.004512,0.007264,1.02493,0.008192
+1308,539.089,1.85498,0.891424,0.00672,0.220352,0.004896,0.004128,0.006144,0.641024,0.00816
+1309,738.284,1.35449,0.88848,0.00736,0.217376,0.00464,0.005216,0.006272,0.639776,0.00784
+1310,806.458,1.23999,0.868928,0.006848,0.221184,0.004096,0.005568,0.006304,0.616864,0.008064
+1311,758.659,1.31812,1.08349,0.008192,0.436224,0.005408,0.004832,0.006144,0.61568,0.007008
+1312,502.947,1.98828,0.897248,0.009568,0.229536,0.004672,0.005152,0.00624,0.635072,0.007008
+1313,809.326,1.2356,0.859936,0.007264,0.218016,0.00592,0.00432,0.006144,0.610304,0.007968
+1314,802.193,1.24658,0.854016,0.007456,0.223968,0.00576,0.00448,0.006144,0.598016,0.008192
+1315,429.485,2.32837,0.93568,0.006304,0.235456,0.00576,0.00448,0.006144,0.659104,0.018432
+1316,1171.29,0.85376,0.889664,0.006752,0.24096,0.005024,0.004096,0.006144,0.619584,0.007104
+1317,533.959,1.8728,0.88304,0.0096,0.228256,0.005216,0.004864,0.006272,0.621792,0.00704
+1318,817.239,1.22363,0.910528,0.008,0.223424,0.005824,0.004416,0.006176,0.654752,0.007936
+1319,720.746,1.38745,0.95232,0.00784,0.274784,0.006176,0.004064,0.006144,0.646176,0.007136
+1320,784.674,1.27441,1.1776,0.007552,0.217568,0.004256,0.005504,0.00624,0.928288,0.008192
+1321,548.4,1.82349,1.52202,0.006592,0.450112,0.033056,0.005536,0.00624,1.01347,0.007008
+1322,568.415,1.75928,0.905888,0.006816,0.227328,0.005664,0.004576,0.006144,0.647168,0.008192
+1323,778.707,1.28418,0.878048,0.007456,0.215616,0.004256,0.005536,0.00608,0.631392,0.007712
+1324,727.402,1.37476,0.927712,0.006592,0.220544,0.00464,0.005152,0.00704,0.675872,0.007872
+1325,730.776,1.36841,1.74144,0.006784,0.402944,0.004608,0.005152,0.006272,1.0489,0.266784
+1326,470.48,2.12549,0.89552,0.006688,0.243712,0.005792,0.004448,0.006144,0.620544,0.008192
+1327,711.976,1.40454,0.888544,0.00688,0.241312,0.004448,0.005376,0.00624,0.616512,0.007776
+1328,879.347,1.13721,0.917568,0.006304,0.22928,0.005376,0.004832,0.006176,0.657408,0.008192
+1329,749.908,1.3335,0.868352,0.006656,0.21648,0.004672,0.004096,0.007264,0.62144,0.007744
+1330,699.095,1.43042,1.66419,0.006336,0.222528,0.0048,0.004096,0.006176,1.41104,0.009216
+1331,461.781,2.16553,0.95056,0.006464,0.276416,0.004128,0.005632,0.006272,0.644544,0.007104
+1332,737.619,1.35571,0.909856,0.006752,0.237568,0.005792,0.004448,0.006144,0.641024,0.008128
+1333,783.773,1.27588,0.856032,0.006784,0.217088,0.005472,0.004768,0.006144,0.607968,0.007808
+1334,471.889,2.11914,1.25062,0.007616,0.240224,0.005792,0.004416,0.006144,0.978432,0.008
+1335,964.445,1.03687,1.69347,0.007776,0.24208,0.005216,0.004832,0.006272,1.41846,0.008832
+1336,445.993,2.24219,0.876768,0.00688,0.233472,0.005536,0.004704,0.006144,0.612128,0.007904
+1337,885.239,1.12964,0.894784,0.007936,0.237824,0.005408,0.004832,0.006144,0.62464,0.008
+1338,791.804,1.26294,0.866304,0.007968,0.2328,0.004928,0.00416,0.006176,0.603168,0.007104
+1339,656.41,1.52344,1.67158,0.006784,0.251584,0.004416,0.005376,0.00624,1.38842,0.008768
+1340,488.958,2.04517,0.843104,0.008128,0.225344,0.005152,0.004992,0.00624,0.585568,0.00768
+1341,797.663,1.25366,0.868224,0.007488,0.228032,0.005664,0.004576,0.006144,0.608256,0.008064
+1342,753.08,1.32788,0.861184,0.007072,0.219232,0.005696,0.004544,0.006144,0.610304,0.008192
+1343,478.561,2.0896,1.29229,0.006336,0.231232,0.005344,0.004864,0.006176,1.03014,0.008192
+1344,577.797,1.73071,0.880832,0.008704,0.253792,0.005664,0.004576,0.006144,0.59392,0.008032
+1345,902.998,1.10742,0.854016,0.008,0.21936,0.005792,0.004416,0.007488,0.600768,0.008192
+1346,765.321,1.30664,0.848,0.007456,0.216864,0.00496,0.004192,0.007616,0.599936,0.006976
+1347,760.349,1.31519,0.858144,0.007232,0.224192,0.00416,0.0056,0.006304,0.603584,0.007072
+1348,716.71,1.39526,1.25142,0.007008,0.2376,0.005824,0.004384,0.006144,0.980992,0.009472
+1349,535.005,1.86914,0.876288,0.007552,0.221792,0.00416,0.005632,0.006304,0.622912,0.007936
+1350,797.353,1.25415,0.872448,0.008192,0.223232,0.004128,0.006112,0.006144,0.616448,0.008192
+1351,756.837,1.32129,0.857984,0.00736,0.219584,0.00448,0.00528,0.006272,0.606944,0.008064
+1352,799.064,1.25146,0.853376,0.006368,0.226592,0.004608,0.005152,0.006272,0.596512,0.007872
+1353,705.234,1.41797,1.22138,0.006912,0.243456,0.004352,0.005504,0.006304,0.946112,0.008736
+1354,533.542,1.87427,0.882944,0.006432,0.229344,0.004256,0.005632,0.006272,0.622816,0.008192
+1355,789.667,1.26636,0.875456,0.007104,0.217088,0.005856,0.004384,0.007488,0.625344,0.008192
+1356,762.614,1.31128,0.875776,0.008032,0.233344,0.004384,0.005408,0.00688,0.609952,0.007776
+1357,786.03,1.27222,1.14483,0.00624,0.219072,0.005152,0.004864,0.006336,0.894816,0.008352
+1358,630.154,1.58691,1.50387,0.00688,0.45056,0.022528,0.006144,0.006144,1.00333,0.008288
+1359,524.657,1.90601,0.87952,0.007072,0.216096,0.004928,0.004256,0.006144,0.632832,0.008192
+1360,751.422,1.33081,0.858528,0.00656,0.23552,0.005184,0.005056,0.006144,0.591872,0.008192
+1361,566.92,1.76392,0.847264,0.007424,0.224,0.005376,0.004864,0.006144,0.591616,0.00784
+1362,740.152,1.35107,1.67562,0.006592,0.239616,0.00512,0.004832,0.006432,1.40445,0.008576
+1363,480.075,2.08301,0.894976,0.007552,0.223904,0.005504,0.004704,0.006144,0.638976,0.008192
+1364,739.884,1.35156,0.85552,0.006624,0.220128,0.004896,0.005216,0.006976,0.60384,0.00784
+1365,801.566,1.24756,0.857504,0.00752,0.21776,0.00544,0.00464,0.006304,0.608096,0.007744
+1366,757.677,1.31982,1.13869,0.007968,0.21728,0.005664,0.004608,0.006176,0.88864,0.008352
+1367,622.398,1.60669,1.50515,0.007744,0.44592,0.026976,0.004736,0.006176,1.00554,0.008064
+1368,544.03,1.83813,0.882272,0.006272,0.220288,0.004928,0.004096,0.00768,0.63104,0.007968
+1369,778.707,1.28418,0.872448,0.007936,0.221472,0.005472,0.004736,0.006144,0.618496,0.008192
+1370,768.336,1.30151,0.874112,0.007232,0.22608,0.004256,0.005536,0.00624,0.616864,0.007904
+1371,767.329,1.30322,1.24464,0.00768,0.219104,0.00464,0.004096,0.006144,0.994976,0.008
+1372,426.045,2.34717,0.896672,0.009888,0.242016,0.005888,0.004352,0.006176,0.620512,0.00784
+1373,831.169,1.20312,0.90112,0.0064,0.225024,0.005376,0.004864,0.006144,0.64512,0.008192
+1374,788.45,1.26831,0.855008,0.007104,0.21504,0.004128,0.005632,0.006624,0.608256,0.008224
+1375,770.794,1.29736,0.878944,0.006528,0.217056,0.00512,0.004864,0.00752,0.630848,0.007008
+1376,724.315,1.38062,1.63843,0.008096,0.229472,0.00592,0.00432,0.007392,1.37482,0.008416
+1377,460.691,2.17065,0.898272,0.007552,0.244128,0.00432,0.005504,0.006304,0.622528,0.007936
+1378,846.456,1.1814,0.890464,0.008224,0.225248,0.0056,0.00464,0.006144,0.6328,0.007808
+1379,712.968,1.40259,0.911904,0.006688,0.241664,0.00592,0.00432,0.007392,0.637728,0.008192
+1380,791.192,1.26392,1.22061,0.007424,0.215808,0.005888,0.004352,0.006144,0.972128,0.008864
+1381,394.111,2.53735,0.92912,0.01024,0.243712,0.005696,0.004544,0.006144,0.651008,0.007776
+1382,772.684,1.29419,0.888032,0.007584,0.221792,0.005344,0.004864,0.006208,0.634432,0.007808
+1383,756.278,1.32227,0.876544,0.007168,0.228352,0.004224,0.005632,0.006368,0.616608,0.008192
+1384,775.17,1.29004,0.872448,0.006304,0.218976,0.0056,0.00464,0.006144,0.622592,0.008192
+1385,736.293,1.35815,0.88288,0.00736,0.22416,0.004192,0.005568,0.006272,0.627136,0.008192
+1386,573.669,1.74316,0.874272,0.009856,0.219328,0.0048,0.004096,0.006144,0.622176,0.007872
+1387,559.028,1.78882,0.918016,0.00672,0.249952,0.00544,0.0048,0.006144,0.636928,0.008032
+1388,1086.47,0.92041,0.88896,0.006656,0.240992,0.004768,0.004096,0.0072,0.617344,0.007904
+1389,776.935,1.28711,0.878784,0.006336,0.2184,0.004832,0.004096,0.006144,0.630784,0.008192
+1390,589.947,1.69507,1.70336,0.008,0.256192,0.005888,0.004352,0.006176,1.41309,0.009664
+1391,498.539,2.00586,0.862496,0.0064,0.223232,0.005472,0.004768,0.006144,0.608256,0.008224
+1392,784.374,1.2749,0.846016,0.00752,0.217664,0.005248,0.004832,0.006304,0.59744,0.007008
+1393,771.23,1.29663,0.878752,0.008192,0.219168,0.00528,0.004864,0.007456,0.626784,0.007008
+1394,740.419,1.35059,1.25533,0.006784,0.229376,0.004096,0.005792,0.006272,0.994752,0.008256
+1395,485.308,2.06055,0.900032,0.009184,0.250848,0.004928,0.004288,0.006144,0.616448,0.008192
+1396,764.75,1.30762,0.87936,0.006944,0.2232,0.005792,0.004448,0.006144,0.62464,0.008192
+1397,685.294,1.45923,0.887968,0.007808,0.229184,0.004672,0.00512,0.006272,0.6272,0.007712
+1398,907.801,1.10156,0.86128,0.008192,0.223168,0.00416,0.005632,0.00624,0.606112,0.007776
+1399,726.757,1.37598,1.39626,0.006528,0.39936,0.005504,0.004736,0.006144,0.964608,0.009376
+1400,490.951,2.03687,0.886464,0.007776,0.227776,0.005344,0.004864,0.006144,0.626624,0.007936
+1401,838.485,1.19263,0.854304,0.006432,0.221184,0.00544,0.0048,0.006144,0.602112,0.008192
+1402,752.664,1.32861,0.890784,0.00736,0.22208,0.005696,0.004544,0.006144,0.636928,0.008032
+1403,784.073,1.27539,0.860032,0.007456,0.221568,0.004448,0.005344,0.006944,0.606208,0.008064
+1404,673.131,1.4856,1.65142,0.00704,0.230944,0.004608,0.005248,0.006336,1.38861,0.00864
+1405,490.363,2.03931,0.87888,0.006432,0.22528,0.005568,0.004672,0.006144,0.622592,0.008192
+1406,743.376,1.34521,0.87664,0.00656,0.224352,0.00496,0.00416,0.006176,0.62256,0.007872
+1407,794.877,1.25806,0.86464,0.007072,0.217024,0.004192,0.0056,0.006272,0.616704,0.007776
+1408,576.171,1.7356,1.14944,0.00704,0.238944,0.004864,0.004096,0.006144,0.878592,0.00976
+1409,758.518,1.31836,1.58797,0.006816,0.49776,0.007936,0.005536,0.00688,1.05603,0.007008
+1410,541.871,1.84546,0.858656,0.006688,0.22448,0.004896,0.004096,0.006144,0.605184,0.007168
+1411,770.939,1.29712,0.857248,0.007776,0.22512,0.004672,0.004096,0.007296,0.600544,0.007744
+1412,816.099,1.22534,0.85216,0.007776,0.22288,0.004864,0.004096,0.006144,0.599392,0.007008
+1413,749.771,1.33374,1.03328,0.006144,0.401408,0.005152,0.004864,0.006304,0.6016,0.007808
+1414,514.314,1.94434,0.864704,0.008704,0.237472,0.005792,0.004448,0.006144,0.59392,0.008224
+1415,822.82,1.21533,0.87872,0.00688,0.225472,0.006016,0.004224,0.007616,0.620576,0.007936
+1416,785.427,1.27319,0.827392,0.007552,0.217728,0.004256,0.005632,0.00624,0.579488,0.006496
+1417,783.923,1.27563,0.88096,0.006816,0.251648,0.004352,0.00544,0.006336,0.598528,0.00784
+1418,729.605,1.37061,1.03398,0.00768,0.399072,0.004896,0.005408,0.00624,0.602752,0.007936
+1419,438.591,2.28003,0.898432,0.010144,0.268224,0.004256,0.005472,0.006304,0.596224,0.007808
+1420,846.456,1.1814,0.867488,0.00768,0.229536,0.004448,0.005312,0.006304,0.606336,0.007872
+1421,776.64,1.2876,0.851904,0.0064,0.231008,0.004512,0.005248,0.006304,0.59056,0.007872
+1422,765.178,1.30688,0.858816,0.00688,0.232896,0.004672,0.00512,0.006272,0.594816,0.00816
+1423,641.805,1.55811,1.65731,0.006624,0.260096,0.006016,0.004224,0.006144,1.36547,0.008736
+1424,500.795,1.99683,0.862432,0.006368,0.230496,0.00496,0.00416,0.006144,0.602112,0.008192
+1425,792.723,1.26147,0.86352,0.007232,0.219616,0.004576,0.005184,0.006304,0.612768,0.00784
+1426,794.414,1.25879,0.84992,0.007936,0.22144,0.004096,0.005664,0.006624,0.595968,0.008192
+1427,715.959,1.39673,1.2503,0.006688,0.244064,0.004224,0.005536,0.006272,0.975328,0.008192
+1428,638.703,1.56567,1.62992,0.006784,0.227392,0.005696,0.004544,0.006144,1.37011,0.009248
+1429,459.553,2.17603,0.845824,0.007424,0.225152,0.004928,0.00416,0.00736,0.589792,0.007008
+1430,864.682,1.15649,0.870048,0.008192,0.251392,0.004608,0.005152,0.006272,0.58656,0.007872
+1431,729.085,1.37158,0.878016,0.0072,0.230368,0.005152,0.004864,0.006272,0.61632,0.00784
+1432,699.095,1.43042,1.25462,0.007872,0.260416,0.005728,0.004512,0.006144,0.960512,0.00944
+1433,548.4,1.82349,0.85072,0.006944,0.227328,0.005472,0.004768,0.006144,0.591872,0.008192
+1434,815.124,1.22681,0.84304,0.007424,0.221952,0.005664,0.004576,0.006144,0.58928,0.008
+1435,781.679,1.2793,0.84992,0.008032,0.226624,0.004928,0.004128,0.006144,0.591872,0.008192
+1436,794.414,1.25879,0.849056,0.008192,0.219136,0.005536,0.004704,0.006144,0.597504,0.00784
+1437,643.924,1.55298,1.6671,0.006304,0.261984,0.005792,0.004448,0.006144,1.37421,0.008224
+1438,487.097,2.05298,0.843776,0.00736,0.226112,0.004192,0.005632,0.006304,0.587168,0.007008
+1439,791.039,1.26416,0.905728,0.006656,0.236832,0.004864,0.004064,0.006144,0.640096,0.007072
+1440,747.718,1.3374,0.887232,0.00688,0.24576,0.005184,0.004832,0.006272,0.6104,0.007904
+1441,729.085,1.37158,1.23917,0.00672,0.251872,0.00528,0.00464,0.006208,0.956288,0.00816
+1442,449.468,2.22485,0.885248,0.008992,0.242816,0.004864,0.006144,0.006176,0.608224,0.008032
+1443,769.202,1.30005,0.878496,0.006368,0.24576,0.005568,0.004672,0.006144,0.602112,0.007872
+1444,785.728,1.27271,0.858112,0.007264,0.224032,0.004224,0.005536,0.00624,0.603776,0.00704
+1445,775.024,1.29028,0.894976,0.006144,0.256,0.005824,0.004416,0.006176,0.608224,0.008192
+1446,714.709,1.39917,0.853568,0.006624,0.227328,0.005344,0.004864,0.006176,0.59552,0.007712
+1447,482.336,2.07324,0.924416,0.009216,0.272384,0.006144,0.004096,0.006144,0.618496,0.007936
+1448,835.577,1.19678,0.852128,0.006784,0.230752,0.004768,0.005376,0.006272,0.590272,0.007904
+1449,796.887,1.25488,0.863392,0.007488,0.23968,0.004736,0.004096,0.0072,0.592416,0.007776
+1450,730.906,1.36816,0.869728,0.016384,0.23552,0.00544,0.0048,0.006144,0.593536,0.007904
+1451,687.364,1.45483,1.66093,0.008192,0.256,0.005312,0.004864,0.006208,1.37216,0.008192
+1452,490.245,2.03979,0.884736,0.006368,0.232864,0.00448,0.005312,0.006272,0.621248,0.008192
+1453,798.596,1.2522,0.835584,0.007552,0.219168,0.004736,0.004064,0.007232,0.58464,0.008192
+1454,769.925,1.29883,0.863392,0.007392,0.219072,0.004928,0.004128,0.006176,0.613952,0.007744
+1455,773.268,1.29321,1.25494,0.00768,0.231648,0.004416,0.005376,0.006272,0.991456,0.008096
+1456,437.186,2.28735,0.884704,0.00848,0.2272,0.005248,0.004832,0.006272,0.624672,0.008
+1457,797.974,1.25317,0.880672,0.006272,0.221024,0.004224,0.005568,0.006272,0.629184,0.008128
+1458,767.904,1.30225,0.858112,0.00816,0.223264,0.005536,0.004704,0.006144,0.602112,0.008192
+1459,780.19,1.28174,0.853504,0.007808,0.221568,0.004192,0.005632,0.006272,0.600224,0.007808
+1460,659.157,1.51709,0.887136,0.00656,0.245216,0.004576,0.005248,0.006304,0.61104,0.008192
+1461,517.629,1.93188,0.905088,0.00848,0.247744,0.005376,0.004864,0.006144,0.62464,0.00784
+1462,808.527,1.23682,0.864256,0.007264,0.221952,0.004256,0.005536,0.0064,0.610656,0.008192
+1463,744.998,1.34229,0.872448,0.007648,0.227392,0.004576,0.004096,0.007168,0.613376,0.008192
+1464,796.113,1.2561,0.853312,0.00736,0.228192,0.005472,0.004768,0.006176,0.593472,0.007872
+1465,666.884,1.49951,1.22061,0.007616,0.229952,0.00416,0.005632,0.006368,0.957856,0.009024
+1466,538.31,1.85767,0.873728,0.008064,0.227456,0.005632,0.004608,0.006144,0.613984,0.00784
+1467,775.611,1.28931,0.862208,0.008,0.225472,0.005312,0.004864,0.006208,0.60416,0.008192
+1468,766.467,1.30469,0.862208,0.00784,0.221568,0.00528,0.004864,0.006112,0.608352,0.008192
+1469,720.239,1.38843,1.15082,0.00672,0.241664,0.00576,0.00448,0.006176,0.876512,0.009504
+1470,517.433,1.93262,1.58922,0.007424,0.537312,0.023744,0.00496,0.006176,1.00144,0.00816
+1471,601.468,1.6626,0.876352,0.00624,0.241536,0.004224,0.0056,0.006272,0.60448,0.008
+1472,766.18,1.30518,0.86752,0.007424,0.240384,0.005536,0.004704,0.006144,0.595456,0.007872
+1473,784.975,1.27393,0.852512,0.006752,0.231424,0.005664,0.004576,0.006144,0.589824,0.008128
+1474,745.812,1.34082,1.02416,0.006784,0.39936,0.004096,0.005792,0.00624,0.594048,0.00784
+1475,488.783,2.0459,0.856576,0.009024,0.23344,0.005408,0.004832,0.006144,0.589824,0.007904
+1476,819.364,1.22046,0.865696,0.006144,0.231104,0.004416,0.005344,0.006304,0.604704,0.00768
+1477,760.773,1.31445,0.86032,0.006688,0.230528,0.00496,0.004128,0.006176,0.599968,0.007872
+1478,767.76,1.30249,0.851968,0.007584,0.221792,0.0056,0.00464,0.006176,0.597984,0.008192
+1479,683.806,1.4624,0.907168,0.00672,0.26352,0.004768,0.004096,0.006144,0.614176,0.007744
+1480,453.951,2.20288,0.948224,0.010144,0.284192,0.004672,0.004096,0.007296,0.629632,0.008192
+1481,795.803,1.25659,0.91792,0.006848,0.255232,0.004832,0.004096,0.006176,0.6328,0.007936
+1482,724.956,1.37939,0.905152,0.006144,0.258048,0.00544,0.0048,0.006144,0.616448,0.008128
+1483,652.125,1.53345,1.11152,0.007296,0.483392,0.004928,0.005568,0.006272,0.596288,0.007776
+1484,698.499,1.43164,1.67642,0.00736,0.256256,0.004672,0.005344,0.006304,1.38509,0.011392
+1485,503.256,1.98706,0.866208,0.006624,0.227328,0.005504,0.004736,0.006144,0.608,0.007872
+1486,790.276,1.26538,0.872448,0.00768,0.240128,0.005472,0.004768,0.006144,0.6016,0.006656
+1487,721.889,1.38525,0.861344,0.007392,0.224064,0.005536,0.004672,0.006144,0.605696,0.00784
+1488,734.84,1.36084,1.25072,0.006464,0.251904,0.005792,0.004448,0.006144,0.966688,0.00928
+1489,539.16,1.85474,0.846496,0.006816,0.223072,0.004256,0.005504,0.006592,0.592064,0.008192
+1490,794.568,1.25854,0.879776,0.007712,0.223072,0.004736,0.005152,0.00624,0.62496,0.007904
+1491,729.995,1.36987,0.860256,0.007136,0.2392,0.004512,0.005248,0.006304,0.590336,0.00752
+1492,796.887,1.25488,1.16477,0.006304,0.248896,0.004896,0.004096,0.006144,0.884736,0.009696
+1493,633.369,1.57886,1.64835,0.006368,0.22528,0.005216,0.004864,0.006272,1.38838,0.011968
+1494,470.372,2.12598,0.898176,0.00704,0.23664,0.004928,0.004192,0.006144,0.632128,0.007104
+1495,799.219,1.25122,0.864608,0.006816,0.220832,0.004704,0.00416,0.0072,0.613088,0.007808
+1496,791.804,1.26294,0.846016,0.0064,0.21888,0.004352,0.00544,0.00624,0.596576,0.008128
+1497,742.029,1.34766,1.04714,0.006816,0.39936,0.004288,0.005664,0.006304,0.616576,0.008128
+1498,608.618,1.64307,1.50278,0.006176,0.442336,0.032768,0.006144,0.006144,1.00122,0.008
+1499,556.446,1.79712,0.871456,0.006848,0.229536,0.005184,0.004864,0.006272,0.611744,0.007008
+1500,749.497,1.33423,0.902496,0.017408,0.222208,0.005472,0.022528,0.005792,0.621248,0.00784
+1501,777.672,1.28589,0.860192,0.006144,0.241536,0.004224,0.0056,0.00624,0.588224,0.008224
+1502,667.862,1.49731,0.924576,0.007072,0.270016,0.004416,0.005376,0.006272,0.623232,0.008192
+1503,469.294,2.13086,0.871136,0.00896,0.247776,0.00528,0.004864,0.00624,0.589824,0.008192
+1504,799.064,1.25146,0.876512,0.008192,0.223008,0.005696,0.004768,0.006144,0.620544,0.00816
+1505,764.037,1.30884,0.866624,0.006464,0.22304,0.004288,0.006048,0.00624,0.612352,0.008192
+1506,764.75,1.30762,1.26378,0.006528,0.222976,0.004352,0.005408,0.006304,1.01008,0.008128
+1507,398.211,2.51123,0.884736,0.01024,0.244896,0.00496,0.004096,0.006144,0.606208,0.008192
+1508,722.271,1.38452,0.902336,0.007392,0.264864,0.004224,0.005568,0.006336,0.606208,0.007744
+1509,834.556,1.19824,0.870144,0.008032,0.249312,0.0048,0.005504,0.006304,0.588256,0.007936
+1510,761.621,1.31299,0.868352,0.007712,0.227808,0.005248,0.004864,0.006272,0.608256,0.008192
+1511,458.268,2.18213,1.26157,0.007392,0.246304,0.004352,0.005664,0.006272,0.982912,0.008672
+1512,802.508,1.24609,0.905216,0.006624,0.257952,0.00544,0.0048,0.006144,0.616448,0.007808
+1513,715.709,1.39722,0.882688,0.007712,0.242144,0.0056,0.00464,0.006144,0.608256,0.008192
+1514,786.18,1.27197,0.91136,0.007648,0.279072,0.004192,0.005664,0.006272,0.601376,0.007136
+1515,751.698,1.33032,1.1351,0.00672,0.22224,0.004896,0.005408,0.00624,0.879424,0.010176
+1516,626.875,1.59521,1.51987,0.0064,0.446368,0.03424,0.004768,0.006176,1.01376,0.00816
+1517,524.12,1.90796,0.86976,0.0064,0.221184,0.005152,0.004896,0.006336,0.618048,0.007744
+1518,717.338,1.39404,0.885536,0.007008,0.22528,0.005728,0.004512,0.006176,0.628704,0.008128
+1519,769.491,1.29956,0.874144,0.007456,0.238304,0.005248,0.004832,0.006272,0.604192,0.00784
+1520,788.45,1.26831,1.04669,0.006304,0.400864,0.004672,0.005152,0.006272,0.616608,0.006816
+1521,342.733,2.91772,0.954112,0.01024,0.299008,0.005952,0.004288,0.007456,0.619232,0.007936
+1522,1432.67,0.697998,0.87712,0.006816,0.231424,0.005376,0.004864,0.006144,0.6144,0.008096
+1523,747.309,1.33813,0.88368,0.006816,0.223328,0.00432,0.005472,0.006816,0.629888,0.00704
+1524,802.665,1.24585,1.16688,0.008096,0.216416,0.004864,0.004096,0.007808,0.91584,0.00976
+1525,598.48,1.6709,1.49398,0.007168,0.466912,0.007168,0.00512,0.006144,0.993312,0.00816
+1526,531.741,1.88062,0.882752,0.007808,0.220768,0.004896,0.004096,0.008192,0.629984,0.007008
+1527,754.189,1.32593,0.84992,0.007296,0.226112,0.00416,0.005632,0.006272,0.593888,0.00656
+1528,799.531,1.25073,0.8744,0.008032,0.221216,0.004224,0.005568,0.00624,0.621024,0.008096
+1529,753.357,1.32739,1.23357,0.0072,0.221152,0.005824,0.004416,0.006176,0.980768,0.008032
+1530,488.783,2.0459,0.89088,0.01024,0.24576,0.004128,0.005792,0.006272,0.610496,0.008192
+1531,513.155,1.94873,0.86032,0.006784,0.214624,0.004768,0.004064,0.007232,0.614944,0.007904
+1532,1150.89,0.868896,0.86016,0.007808,0.225696,0.005376,0.004832,0.006144,0.602112,0.008192
+1533,959.026,1.04272,0.873824,0.007808,0.219136,0.00448,0.005312,0.006272,0.622912,0.007904
+1534,746.22,1.34009,1.41098,0.007328,0.400128,0.004192,0.005632,0.006272,0.97728,0.010144
+1535,489.191,2.04419,0.870816,0.00672,0.221184,0.005312,0.004864,0.006208,0.618496,0.008032
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..cfd0886
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,613.832,1.69437,1.2314,0.00880319,0.268922,0.00576794,0.00497991,0.007329,0.0135608,0.0146943,0.895376,0.0119631
+max_1024,1264,4.00232,1.95226,0.052416,0.726336,0.059392,0.02864,0.047744,0.04112,0.071616,1.62118,0.314336
+min_1024,249.855,0.791138,0.958464,0.006656,0.220128,0.004064,0.004064,0.006144,0.012256,0.0128,0.667648,0.008416
+512,491.245,2.03564,0.97504,0.008384,0.234976,0.00464,0.005152,0.007072,0.013408,0.014336,0.676832,0.01024
+513,654.313,1.52832,0.978944,0.00816,0.24784,0.00592,0.00432,0.007584,0.012928,0.014304,0.668864,0.009024
+514,700.051,1.42847,1.3817,0.008416,0.240672,0.004864,0.004096,0.008192,0.014336,0.014336,1.0744,0.012384
+515,538.912,1.85559,0.979264,0.008512,0.24176,0.0056,0.00464,0.007296,0.013184,0.014368,0.67376,0.010144
+516,738.218,1.35461,1.61382,0.009632,0.457312,0.03264,0.004224,0.007744,0.013792,0.014688,1.06355,0.01024
+517,494.806,2.021,0.976064,0.009376,0.227936,0.004352,0.00544,0.006848,0.01344,0.014656,0.684256,0.00976
+518,695.948,1.43689,0.970848,0.00832,0.227296,0.005248,0.004864,0.006272,0.014304,0.014304,0.68,0.01024
+519,684.32,1.4613,0.972032,0.008192,0.227168,0.004256,0.005536,0.006752,0.013664,0.01456,0.68224,0.009664
+520,689.098,1.45117,1.59578,0.008576,0.47312,0.006496,0.005472,0.006816,0.014272,0.0144,1.05581,0.010816
+521,522.516,1.91382,0.968544,0.00832,0.231296,0.005696,0.004544,0.00736,0.013024,0.014432,0.673792,0.01008
+522,716.46,1.39575,0.965664,0.008192,0.227328,0.004096,0.005856,0.006432,0.014144,0.014368,0.675776,0.009472
+523,730.125,1.36963,1.34298,0.009664,0.224896,0.004928,0.004224,0.007744,0.012736,0.014336,1.05408,0.010368
+524,539.16,1.85474,1.80838,0.009248,0.22944,0.004928,0.004192,0.00784,0.01264,0.014336,1.51347,0.012288
+525,390.858,2.55847,0.98304,0.007904,0.24016,0.005792,0.004448,0.007552,0.012928,0.014336,0.679936,0.009984
+526,924.918,1.08118,0.9856,0.008,0.238272,0.005664,0.004576,0.007392,0.01312,0.014304,0.684032,0.01024
+527,714.522,1.39954,1.34669,0.009568,0.237376,0.004928,0.004128,0.007776,0.012704,0.014336,1.04573,0.010144
+528,571.668,1.74927,0.972832,0.009696,0.231008,0.004896,0.004256,0.00768,0.0128,0.014336,0.677888,0.010272
+529,506.586,1.974,0.973152,0.010624,0.229344,0.005888,0.004352,0.007584,0.012896,0.014336,0.679392,0.008736
+530,656.621,1.52295,1.00157,0.008192,0.251936,0.005248,0.004832,0.006272,0.014368,0.014336,0.687712,0.008672
+531,766.539,1.30457,0.965792,0.008544,0.230048,0.005248,0.004832,0.006304,0.013792,0.014432,0.673632,0.00896
+532,648.871,1.54114,0.96992,0.009344,0.23344,0.004928,0.004192,0.007744,0.012736,0.014336,0.67344,0.00976
+533,668.08,1.49683,1.59712,0.00832,0.452608,0.023744,0.004928,0.007776,0.013792,0.014592,1.06106,0.010304
+534,511.52,1.95496,0.992064,0.006976,0.236896,0.004768,0.004096,0.008064,0.013664,0.014528,0.692832,0.01024
+535,518.809,1.92749,1.03242,0.008736,0.288768,0.005216,0.004832,0.006368,0.013888,0.01472,0.679968,0.00992
+536,934.626,1.06995,0.976928,0.009568,0.236192,0.004096,0.006144,0.00736,0.01312,0.014336,0.67584,0.010272
+537,652.074,1.53357,1.70013,0.008832,0.240704,0.004896,0.004256,0.007904,0.012576,0.015648,1.39133,0.013984
+538,495.824,2.01685,0.97264,0.008192,0.235296,0.00432,0.00544,0.006848,0.013824,0.014304,0.674336,0.01008
+539,723.355,1.38245,0.997376,0.008256,0.260288,0.0048,0.00528,0.007008,0.013408,0.014688,0.673888,0.00976
+540,733.59,1.36316,1.34499,0.00864,0.229376,0.005536,0.004704,0.006176,0.014112,0.014432,1.05181,0.010208
+541,543.524,1.83984,0.972736,0.008864,0.235296,0.004544,0.005248,0.00704,0.012288,0.015488,0.674016,0.009952
+542,549.393,1.82019,0.976032,0.012096,0.235712,0.005728,0.004512,0.007552,0.012928,0.014336,0.673472,0.009696
+543,701.01,1.42651,0.971104,0.00832,0.228192,0.005376,0.004832,0.008224,0.013728,0.0144,0.678208,0.009824
+544,732.213,1.36572,0.989504,0.008672,0.235104,0.004864,0.004096,0.007968,0.012512,0.014432,0.692096,0.00976
+545,564.849,1.77039,0.9856,0.009728,0.251712,0.00496,0.004256,0.007648,0.01424,0.013184,0.670688,0.009184
+546,581.199,1.72058,1.61382,0.008192,0.452448,0.03088,0.005536,0.006752,0.01424,0.014432,1.0711,0.01024
+547,574.514,1.7406,0.97728,0.008096,0.240096,0.004096,0.005696,0.006592,0.013824,0.01424,0.6744,0.01024
+548,729.02,1.3717,0.974528,0.008192,0.2312,0.00432,0.005472,0.006816,0.013472,0.0144,0.680736,0.00992
+549,626.252,1.5968,0.9704,0.008192,0.230624,0.004896,0.004096,0.008096,0.012384,0.014336,0.677888,0.009888
+550,734.313,1.36182,1.69878,0.008448,0.2424,0.00576,0.00448,0.007456,0.013024,0.014336,1.38854,0.014336
+551,477.473,2.09436,0.9744,0.008192,0.23456,0.004928,0.004224,0.00768,0.0128,0.014336,0.677888,0.009792
+552,700.65,1.42725,0.971744,0.00864,0.231008,0.004928,0.004224,0.00768,0.0128,0.015552,0.676672,0.01024
+553,669.281,1.49414,1.38195,0.008512,0.25968,0.004512,0.004096,0.008192,0.012288,0.015456,1.05882,0.0104
+554,574.998,1.73914,1.81005,0.009408,0.230208,0.005568,0.004672,0.007296,0.013184,0.014336,1.51347,0.011904
+555,442.213,2.26135,0.970752,0.008192,0.233472,0.00592,0.00432,0.00768,0.0128,0.01552,0.672608,0.01024
+556,706.694,1.41504,0.970752,0.008224,0.23344,0.005856,0.004384,0.007552,0.012928,0.014336,0.673792,0.01024
+557,773.268,1.29321,1.33766,0.008512,0.224928,0.004448,0.005376,0.006912,0.013664,0.014464,1.04912,0.01024
+558,570.513,1.75281,1.80634,0.00928,0.242624,0.004096,0.005472,0.006848,0.013824,0.014272,1.49763,0.012288
+559,448.877,2.22778,0.972224,0.009376,0.226144,0.005152,0.004832,0.0064,0.014048,0.014624,0.681888,0.00976
+560,723.292,1.38257,0.968736,0.008448,0.223232,0.005856,0.004384,0.00752,0.01296,0.014336,0.681984,0.010016
+561,727.402,1.37476,0.964,0.008512,0.225216,0.004128,0.0056,0.006688,0.013536,0.014592,0.675936,0.009792
+562,730.255,1.36938,0.97376,0.00864,0.223392,0.004448,0.005344,0.006944,0.012384,0.014368,0.689216,0.009024
+563,711.543,1.4054,0.964448,0.008192,0.224832,0.004544,0.005248,0.007072,0.013856,0.01456,0.676064,0.01008
+564,733.327,1.36365,0.96352,0.00864,0.223744,0.00544,0.0048,0.007872,0.012608,0.014336,0.67584,0.01024
+565,579.472,1.72571,0.981728,0.008416,0.250368,0.00576,0.00448,0.007456,0.013056,0.014304,0.667648,0.01024
+566,911.032,1.09766,0.98384,0.008576,0.241792,0.004384,0.005408,0.00688,0.013856,0.014688,0.678016,0.01024
+567,714.897,1.3988,0.971872,0.008288,0.231328,0.005632,0.004608,0.007456,0.013024,0.015936,0.67568,0.00992
+568,727.466,1.37463,0.962464,0.008608,0.227808,0.005696,0.004512,0.007392,0.01312,0.014464,0.671328,0.009536
+569,743.848,1.34436,0.958464,0.008224,0.2232,0.004096,0.005696,0.006592,0.013664,0.014496,0.672256,0.01024
+570,724.635,1.38,0.981312,0.008672,0.223584,0.004096,0.00576,0.006528,0.014336,0.014336,0.694272,0.009728
+571,721.571,1.38586,0.970688,0.008192,0.22688,0.004544,0.005248,0.006912,0.01248,0.01536,0.680896,0.010176
+572,718.975,1.39087,0.964608,0.009376,0.228192,0.005248,0.004896,0.007744,0.012832,0.014336,0.67312,0.008864
+573,726.37,1.37671,0.972096,0.008192,0.22528,0.005184,0.004864,0.008352,0.013472,0.014592,0.6824,0.00976
+574,734.577,1.36133,0.969216,0.008672,0.224864,0.004512,0.005312,0.006912,0.0136,0.0144,0.680672,0.010272
+575,722.845,1.38342,0.974336,0.008352,0.225376,0.004096,0.005792,0.006496,0.013824,0.014368,0.686432,0.0096
+576,719.101,1.39062,0.964608,0.008192,0.223232,0.005792,0.004448,0.008192,0.014176,0.014432,0.677728,0.008416
+577,681.871,1.46655,0.98368,0.008352,0.248288,0.004096,0.005696,0.006592,0.013504,0.01456,0.673728,0.008864
+578,709.94,1.40857,1.01795,0.008384,0.264192,0.005184,0.004928,0.006336,0.014048,0.01456,0.690176,0.010144
+579,714.772,1.39905,0.99328,0.008192,0.255744,0.00544,0.004864,0.008032,0.01264,0.0144,0.674784,0.009184
+580,726.434,1.37659,0.976544,0.009312,0.227648,0.004704,0.004096,0.008032,0.012608,0.015232,0.685024,0.009888
+581,723.164,1.38281,0.985184,0.008384,0.229152,0.004896,0.004096,0.007936,0.012544,0.014336,0.694208,0.009632
+582,721.571,1.38586,0.987328,0.008544,0.228416,0.004928,0.00544,0.006976,0.013856,0.0144,0.694688,0.01008
+583,708.099,1.41223,0.97008,0.008256,0.22528,0.0056,0.00464,0.008192,0.013696,0.014368,0.680256,0.009792
+584,737.686,1.35559,0.968864,0.008704,0.223712,0.004096,0.006016,0.006304,0.014048,0.014272,0.68192,0.009792
+585,723.739,1.38171,0.9728,0.009856,0.221568,0.004096,0.006144,0.00736,0.013152,0.014304,0.68608,0.01024
+586,723.739,1.38171,0.962592,0.008224,0.224704,0.004672,0.00592,0.006368,0.014048,0.014624,0.675264,0.008768
+587,726.499,1.37646,0.967552,0.008736,0.22528,0.004384,0.005696,0.006592,0.014016,0.014656,0.679232,0.00896
+588,709.571,1.4093,0.979584,0.008704,0.2296,0.00592,0.00432,0.008192,0.013984,0.0144,0.684352,0.010112
+589,719.038,1.39075,0.980128,0.008192,0.227328,0.005792,0.004448,0.00752,0.01296,0.014336,0.689632,0.00992
+590,716.648,1.39539,0.966848,0.008224,0.227488,0.004096,0.005728,0.00656,0.012288,0.014336,0.677888,0.01024
+591,726.306,1.37683,0.96656,0.009728,0.222752,0.004896,0.004288,0.008192,0.013696,0.01456,0.678304,0.010144
+592,731.951,1.36621,0.989824,0.008416,0.223712,0.005856,0.004384,0.007712,0.012768,0.014336,0.702464,0.010176
+593,616.357,1.62244,1.01104,0.008288,0.264128,0.004064,0.005888,0.0064,0.014336,0.014368,0.683808,0.00976
+594,711.235,1.40601,1.01619,0.008512,0.260384,0.00576,0.00448,0.00752,0.01296,0.014336,0.692224,0.010016
+595,698.559,1.43152,0.989184,0.008192,0.24304,0.004768,0.004096,0.008032,0.012448,0.014336,0.685216,0.009056
+596,687.999,1.45349,0.98304,0.008192,0.241664,0.004096,0.005792,0.006528,0.01408,0.016608,0.67584,0.01024
+597,783.474,1.27637,0.993088,0.019968,0.236064,0.00576,0.004448,0.007488,0.012992,0.014336,0.681984,0.010048
+598,706.694,1.41504,0.987136,0.009632,0.227936,0.004096,0.005856,0.006432,0.014272,0.014432,0.694272,0.010208
+599,736.956,1.35693,0.976832,0.00816,0.225312,0.005728,0.004384,0.006272,0.014336,0.014368,0.688096,0.010176
+600,718.03,1.3927,0.989184,0.008192,0.222912,0.004416,0.005216,0.007104,0.013568,0.014368,0.704864,0.008544
+601,712.348,1.40381,0.973568,0.008768,0.22256,0.004896,0.00416,0.007872,0.012608,0.015424,0.68704,0.01024
+602,720.366,1.38818,0.985088,0.009248,0.222176,0.005728,0.004512,0.00752,0.013024,0.015424,0.698272,0.009184
+603,716.46,1.39575,0.9704,0.008192,0.222304,0.0048,0.005504,0.006912,0.013536,0.014656,0.684608,0.009888
+604,598.349,1.67126,1.00166,0.008384,0.251424,0.004576,0.005184,0.007072,0.01232,0.015552,0.688096,0.009056
+605,707.916,1.4126,1.0056,0.008192,0.243712,0.005152,0.004896,0.006336,0.013696,0.01456,0.700064,0.008992
+606,768.913,1.30054,0.982912,0.009568,0.227936,0.00416,0.005632,0.006656,0.014112,0.014304,0.690432,0.010112
+607,707.304,1.41382,0.974944,0.008288,0.227328,0.005312,0.004928,0.007936,0.012544,0.014432,0.685568,0.008608
+608,721.19,1.3866,0.96832,0.008416,0.22736,0.005632,0.004576,0.007232,0.013248,0.014336,0.677888,0.009632
+609,668.353,1.49622,0.977504,0.0088,0.233504,0.005184,0.004928,0.00624,0.014176,0.014496,0.680992,0.009184
+610,694.708,1.43945,1.00147,0.008192,0.2376,0.005664,0.004544,0.00736,0.01312,0.014336,0.700416,0.01024
+611,770.939,1.29712,0.975744,0.008864,0.223264,0.004096,0.005792,0.006496,0.01408,0.014592,0.6896,0.00896
+612,701.01,1.42651,1.00147,0.009248,0.251968,0.00496,0.00416,0.007712,0.012768,0.015744,0.68576,0.009152
+613,734.972,1.3606,0.99136,0.008352,0.223232,0.00592,0.00432,0.007488,0.01296,0.026656,0.692224,0.010208
+614,721,1.38696,0.983744,0.008672,0.22448,0.00512,0.00528,0.007008,0.01344,0.01424,0.695264,0.01024
+615,663.911,1.50623,0.98304,0.008192,0.241664,0.004096,0.00576,0.006528,0.01376,0.014528,0.67968,0.008832
+616,767.041,1.30371,0.978944,0.008224,0.229344,0.005632,0.004608,0.006176,0.013984,0.014176,0.68656,0.01024
+617,658.256,1.51917,1.0279,0.008192,0.24576,0.005568,0.004672,0.007744,0.012768,0.014336,0.718816,0.010048
+618,741.693,1.34827,0.974144,0.00832,0.226368,0.00496,0.00416,0.008192,0.013536,0.014208,0.68464,0.00976
+619,734.643,1.36121,0.988672,0.009248,0.220128,0.005312,0.0048,0.006304,0.014112,0.026816,0.692128,0.009824
+620,684.664,1.46057,0.973824,0.008608,0.223808,0.005216,0.004864,0.006304,0.014144,0.014048,0.688128,0.008704
+621,745.608,1.34119,0.96672,0.008288,0.220608,0.00464,0.004096,0.00752,0.01296,0.014496,0.685088,0.009024
+622,678.764,1.47327,1.00966,0.009472,0.244512,0.005824,0.004384,0.007552,0.012928,0.014336,0.702016,0.00864
+623,707.61,1.41321,0.98048,0.008256,0.226592,0.004832,0.004096,0.007968,0.012512,0.014336,0.692064,0.009824
+624,735.302,1.35999,0.982304,0.009472,0.221952,0.0056,0.00464,0.007296,0.013184,0.03072,0.679904,0.009536
+625,654.313,1.52832,1.00096,0.009376,0.24256,0.005632,0.004576,0.007936,0.012544,0.014464,0.694112,0.00976
+626,681.417,1.46753,0.9968,0.00864,0.245312,0.004544,0.005248,0.00704,0.013504,0.013312,0.68976,0.00944
+627,686.385,1.45691,1.00486,0.008384,0.24336,0.004416,0.005344,0.006944,0.013344,0.014752,0.698528,0.009792
+628,735.236,1.36011,0.991264,0.008224,0.22528,0.005472,0.004352,0.00656,0.014208,0.014464,0.702464,0.01024
+629,684.378,1.46118,0.97456,0.008192,0.229312,0.00416,0.0056,0.006688,0.012288,0.01536,0.683008,0.009952
+630,641.654,1.55847,1.25238,0.008224,0.260032,0.004128,0.005632,0.006656,0.013728,0.014336,0.692736,0.246912
+631,604.843,1.65332,1.01782,0.008288,0.261824,0.005472,0.004832,0.0064,0.01392,0.014496,0.69248,0.010112
+632,637.708,1.56812,1.68704,0.008192,0.47104,0.059392,0.0056,0.006688,0.014336,0.01424,1.09782,0.009728
+633,508.157,1.9679,0.9816,0.00832,0.229472,0.00448,0.005312,0.006944,0.013408,0.0144,0.689024,0.01024
+634,723.419,1.38232,0.976896,0.008192,0.230848,0.004672,0.005312,0.006976,0.013344,0.014368,0.682944,0.01024
+635,653.895,1.5293,0.997728,0.00864,0.243712,0.00592,0.00432,0.007648,0.012832,0.014368,0.690144,0.010144
+636,648.204,1.54272,1.78797,0.008256,0.28384,0.004928,0.004096,0.00784,0.01264,0.014336,1.4377,0.014336
+637,423.951,2.35876,1.03779,0.007968,0.289344,0.005408,0.0048,0.007264,0.013216,0.014336,0.685664,0.009792
+638,692.828,1.44336,0.99344,0.008288,0.23968,0.00576,0.00448,0.007488,0.012992,0.014336,0.690176,0.01024
+639,653.061,1.53125,0.994528,0.009728,0.23808,0.00528,0.004864,0.00624,0.014048,0.014496,0.692192,0.0096
+640,678.202,1.47449,1.636,0.009856,0.448896,0.032768,0.005728,0.00656,0.014336,0.014336,1.09338,0.010144
+641,510.596,1.9585,0.989536,0.008544,0.233472,0.005216,0.005024,0.0072,0.01328,0.014336,0.692224,0.01024
+642,680.738,1.46899,0.981696,0.008032,0.236352,0.005312,0.004832,0.00624,0.013696,0.014368,0.684064,0.0088
+643,712.038,1.40442,1.37421,0.009792,0.23392,0.005248,0.004832,0.007776,0.012864,0.014336,1.0752,0.01024
+644,580.705,1.72205,1.82614,0.008448,0.23344,0.006144,0.00512,0.00704,0.013568,0.014752,1.52614,0.011488
+645,412.259,2.42566,1.0025,0.007136,0.24288,0.004896,0.004128,0.007808,0.012672,0.015648,0.697056,0.010272
+646,763.04,1.31055,1.02125,0.008192,0.251904,0.0056,0.00464,0.007328,0.013152,0.014336,0.70656,0.009536
+647,677.473,1.47607,1.408,0.009344,0.260992,0.004096,0.005792,0.006496,0.014336,0.014336,1.0825,0.010112
+648,520.656,1.92065,1.04243,0.008224,0.280544,0.005312,0.004928,0.007584,0.012896,0.014336,0.6984,0.010208
+649,556.976,1.79541,1.02195,0.011744,0.247808,0.00464,0.00512,0.007136,0.01232,0.01552,0.707424,0.01024
+650,715.209,1.39819,0.997376,0.008128,0.2328,0.004832,0.004096,0.007872,0.012608,0.014336,0.702496,0.010208
+651,673.463,1.48486,0.98304,0.0096,0.23136,0.0048,0.004096,0.008032,0.012448,0.014336,0.689216,0.009152
+652,648.204,1.54272,0.987008,0.008544,0.233504,0.005408,0.0048,0.006368,0.014112,0.014272,0.690112,0.009888
+653,486.49,2.05554,0.989184,0.012096,0.23328,0.00448,0.005312,0.006976,0.01232,0.015808,0.688832,0.01008
+654,461.365,2.16748,0.984512,0.00832,0.228768,0.004576,0.005216,0.007072,0.012352,0.015616,0.692928,0.009664
+655,982.019,1.01831,1.04838,0.008224,0.294048,0.004928,0.004096,0.007744,0.012736,0.014336,0.692256,0.010016
+656,704.749,1.41895,1.00352,0.008192,0.233248,0.00432,0.005472,0.006816,0.013632,0.014272,0.708672,0.008896
+657,691.717,1.44568,1.63965,0.008192,0.460032,0.027392,0.006144,0.007232,0.013248,0.014336,1.0928,0.010272
+658,489.806,2.04163,0.995168,0.009248,0.233856,0.004704,0.0056,0.006688,0.013536,0.014272,0.697184,0.01008
+659,704.506,1.41943,0.979424,0.008512,0.227712,0.005344,0.004864,0.006304,0.014208,0.014272,0.688192,0.010016
+660,696.836,1.43506,1.16758,0.008416,0.406944,0.004704,0.00512,0.007072,0.014208,0.014304,0.69808,0.008736
+661,624.533,1.6012,1.82272,0.008192,0.241664,0.005664,0.004576,0.007392,0.013088,0.014336,1.51552,0.012288
+662,451.499,2.21484,0.99328,0.008192,0.231424,0.004096,0.005792,0.007648,0.013184,0.014336,0.698368,0.01024
+663,686.097,1.45752,1.00352,0.008192,0.231424,0.005728,0.004512,0.007488,0.012992,0.014336,0.708608,0.01024
+664,642.308,1.55688,1.3783,0.008192,0.245376,0.00448,0.004096,0.00624,0.013536,0.013024,1.07312,0.01024
+665,613.679,1.62952,1.74822,0.008192,0.2432,0.004608,0.005184,0.007104,0.012288,0.014336,1.43882,0.014496
+666,439.32,2.27625,0.996096,0.008736,0.237696,0.005664,0.004576,0.00736,0.01312,0.014336,0.695712,0.008896
+667,744.457,1.34326,0.989216,0.008192,0.231424,0.005504,0.004736,0.007936,0.013696,0.01472,0.692736,0.010272
+668,727.854,1.3739,1.37165,0.008352,0.229216,0.005536,0.004704,0.007264,0.013248,0.014304,1.07693,0.012096
+669,536.934,1.86243,1.85514,0.008192,0.251904,0.004096,0.005888,0.0064,0.01408,0.014304,1.53834,0.011936
+670,447.699,2.23364,0.995328,0.008192,0.235424,0.004192,0.005568,0.00672,0.0136,0.014336,0.697056,0.01024
+671,717.275,1.39417,0.999424,0.008288,0.230816,0.004608,0.005184,0.007072,0.0136,0.014816,0.7048,0.01024
+672,692.418,1.44421,1.3792,0.008704,0.229536,0.005248,0.004864,0.006304,0.014304,0.014368,1.08458,0.011296
+673,434.589,2.30103,1.77011,0.008512,0.272704,0.004096,0.00576,0.00656,0.013504,0.014496,1.43014,0.014336
+674,572.307,1.74731,1.01686,0.008416,0.260896,0.004928,0.004288,0.00816,0.013504,0.014176,0.692928,0.009568
+675,731.821,1.36646,1.00352,0.009248,0.234368,0.004192,0.005664,0.006624,0.012288,0.014336,0.707936,0.008864
+676,696.658,1.43542,1.37539,0.009536,0.23008,0.0056,0.00464,0.007904,0.013696,0.014624,1.07725,0.012064
+677,550.575,1.81628,1.7471,0.00848,0.230752,0.004928,0.004288,0.007648,0.012832,0.014336,1.4497,0.014144
+678,460.976,2.16931,0.997376,0.009312,0.234464,0.005888,0.004288,0.008192,0.012288,0.014336,0.698368,0.01024
+679,482.962,2.07056,0.99328,0.008192,0.227008,0.004416,0.005504,0.006784,0.0136,0.014464,0.703072,0.01024
+680,1264,0.791138,1.3784,0.008288,0.229088,0.004384,0.005152,0.007136,0.013568,0.014592,1.08496,0.011232
+681,551.576,1.81299,1.00733,0.008736,0.241664,0.004256,0.005536,0.006752,0.0136,0.014656,0.702432,0.009696
+682,461.157,2.16846,1.02902,0.0112,0.263584,0.004672,0.00512,0.007136,0.01232,0.015424,0.700512,0.009056
+683,751.284,1.33105,0.98496,0.008192,0.227328,0.005536,0.004704,0.007328,0.01312,0.014368,0.694272,0.010112
+684,675.406,1.48059,1.2329,0.008192,0.232544,0.004928,0.004192,0.008224,0.01408,0.014432,0.702592,0.243712
+685,632.685,1.58057,1.00464,0.008224,0.237536,0.005792,0.004448,0.007456,0.013056,0.014304,0.704064,0.00976
+686,478.114,2.09155,1.01456,0.011168,0.24352,0.004288,0.005504,0.006784,0.013632,0.012992,0.706496,0.010176
+687,718.344,1.39209,1.00762,0.009344,0.230272,0.005568,0.004672,0.007168,0.012736,0.01488,0.712736,0.01024
+688,700.89,1.42676,0.99792,0.008576,0.23296,0.004768,0.005664,0.006624,0.01392,0.014784,0.70144,0.009184
+689,644.38,1.55188,1.00147,0.008192,0.224864,0.004512,0.00528,0.007008,0.01392,0.014464,0.712992,0.01024
+690,647.64,1.54407,1.83574,0.008768,0.23568,0.004096,0.005824,0.006464,0.014144,0.0144,1.53411,0.012256
+691,468.489,2.13452,1.00237,0.007072,0.230848,0.00464,0.005152,0.00688,0.012544,0.014336,0.710656,0.01024
+692,677.193,1.47668,1.00461,0.008192,0.245504,0.004352,0.00544,0.006848,0.01392,0.014496,0.696096,0.00976
+693,709.387,1.40967,1.16611,0.008928,0.405536,0.004256,0.0056,0.006688,0.014176,0.014528,0.696288,0.010112
+694,635.137,1.57446,1.72627,0.008416,0.237568,0.005312,0.004864,0.006304,0.01424,0.014336,1.4208,0.014432
+695,465.164,2.14978,0.998272,0.008704,0.233856,0.005664,0.004576,0.00736,0.013088,0.01424,0.701568,0.009216
+696,690.783,1.44763,1.04448,0.009344,0.25792,0.004928,0.004288,0.00784,0.013856,0.015008,0.721056,0.01024
+697,699.573,1.42944,1.37648,0.008416,0.235552,0.004064,0.005856,0.006432,0.013952,0.01472,1.07725,0.01024
+698,564.304,1.77209,1.75885,0.008192,0.2376,0.005248,0.004864,0.00624,0.014336,0.014368,1.45344,0.01456
+699,460.251,2.17273,0.996128,0.008192,0.232224,0.005696,0.004544,0.007456,0.013024,0.014336,0.701504,0.009152
+700,693.063,1.44287,0.997472,0.008256,0.229376,0.006144,0.004096,0.008224,0.013952,0.014368,0.70416,0.008896
+701,547.484,1.82654,1.42963,0.009792,0.272832,0.005696,0.004544,0.007424,0.013088,0.015328,1.08966,0.011264
+702,672.468,1.48706,1.75389,0.008672,0.233792,0.004096,0.0056,0.006688,0.013984,0.01424,1.4537,0.01312
+703,467.527,2.13892,1.00538,0.008672,0.23264,0.00496,0.004096,0.007872,0.012608,0.015616,0.70896,0.009952
+704,717.024,1.39465,0.999104,0.008416,0.227296,0.004096,0.005856,0.006432,0.014016,0.014688,0.708576,0.009728
+705,715.521,1.39758,1.38406,0.009248,0.230304,0.005408,0.004832,0.006336,0.014048,0.014432,1.08717,0.012288
+706,542.768,1.84241,1.7503,0.009312,0.2344,0.004096,0.00576,0.006528,0.014048,0.014208,1.44778,0.014176
+707,462.302,2.16309,1.00262,0.00944,0.231808,0.004512,0.00528,0.007008,0.0136,0.014656,0.706592,0.009728
+708,695.298,1.43823,1.00518,0.009472,0.228096,0.005792,0.004448,0.007456,0.013024,0.014336,0.712672,0.009888
+709,718.786,1.39124,1.24291,0.008928,0.233056,0.004512,0.00528,0.00704,0.012256,0.014336,0.71232,0.245184
+710,249.855,4.00232,1.02403,0.009472,0.250656,0.005888,0.00432,0.007584,0.012896,0.014368,0.708576,0.010272
+711,886.388,1.12817,1.07747,0.010528,0.294208,0.0048,0.004096,0.007968,0.012512,0.014336,0.718848,0.010176
+712,693.415,1.44214,1.03363,0.009632,0.252544,0.006112,0.004096,0.007968,0.012512,0.014368,0.716768,0.009632
+713,692.184,1.4447,1.03632,0.008192,0.266336,0.006048,0.004096,0.0072,0.013312,0.014304,0.707712,0.00912
+714,674.961,1.48157,1.37418,0.00928,0.234048,0.00448,0.004096,0.008064,0.013536,0.0144,1.07402,0.012256
+715,589.31,1.6969,1.01242,0.008576,0.241984,0.004096,0.005472,0.006816,0.013632,0.01472,0.70688,0.01024
+716,674.294,1.48303,0.995328,0.008192,0.228832,0.00464,0.005152,0.007136,0.013632,0.014528,0.70432,0.008896
+717,732.606,1.36499,1.3936,0.008864,0.225568,0.005312,0.004864,0.006208,0.01424,0.014336,1.10192,0.012288
+718,557.772,1.79285,1.33578,0.008544,0.234048,0.005472,0.004768,0.007968,0.012512,0.014336,1.03424,0.013888
+719,475.892,2.10132,1.03222,0.008192,0.251456,0.004544,0.005248,0.00704,0.013856,0.014816,0.7168,0.010272
+720,752.388,1.3291,0.997376,0.009632,0.225888,0.004096,0.005728,0.00656,0.01392,0.014336,0.706976,0.01024
+721,693.473,1.44202,1.24109,0.008192,0.224448,0.004928,0.004096,0.007968,0.012512,0.014368,0.953696,0.01088
+722,601.38,1.66284,0.987136,0.008064,0.227456,0.005184,0.004864,0.006336,0.014112,0.014016,0.698176,0.008928
+723,524.59,1.90625,1.01203,0.01088,0.235456,0.005376,0.004864,0.006304,0.01376,0.01456,0.710848,0.009984
+724,701.31,1.4259,1.0079,0.00832,0.227328,0.005568,0.004672,0.00752,0.01296,0.015424,0.717472,0.00864
+725,698.738,1.43115,1.00182,0.008448,0.229536,0.00544,0.0048,0.007744,0.012736,0.014336,0.708608,0.010176
+726,704.325,1.4198,1.1937,0.01024,0.405504,0.005152,0.004992,0.006272,0.014304,0.014336,0.722944,0.009952
+727,601.292,1.66309,1.68566,0.008768,0.516256,0.016384,0.005728,0.00656,0.014336,0.014336,1.09296,0.010336
+728,475.836,2.10156,0.997376,0.009536,0.23008,0.005536,0.004704,0.008224,0.014176,0.014176,0.701984,0.00896
+729,659.9,1.51538,1.03581,0.009376,0.246624,0.005216,0.004864,0.006304,0.01408,0.014624,0.72496,0.00976
+730,638.952,1.56506,1.30291,0.008576,0.527392,0.004992,0.004192,0.007744,0.014048,0.014336,0.712704,0.008928
+731,618.031,1.61804,1.8529,0.01008,0.241312,0.004608,0.005184,0.01472,0.012864,0.015744,1.53664,0.011744
+732,436.674,2.29004,1.00576,0.008448,0.234112,0.004096,0.005728,0.00656,0.014176,0.0144,0.708576,0.009664
+733,674.461,1.48267,1.008,0.008672,0.234848,0.004928,0.004192,0.007808,0.012704,0.0144,0.71056,0.009888
+734,679.665,1.47131,1.39222,0.008256,0.23136,0.00544,0.0048,0.007424,0.013056,0.01536,1.096,0.010528
+735,578.245,1.72937,1.75718,0.009248,0.234464,0.0056,0.00464,0.007296,0.019328,0.014368,1.4479,0.014336
+736,457.398,2.18628,1.01619,0.008576,0.243712,0.004096,0.005696,0.006592,0.013568,0.014304,0.710496,0.009152
+737,683.407,1.46326,1.01043,0.008768,0.229568,0.005664,0.004576,0.007392,0.01312,0.014464,0.71664,0.01024
+738,606.321,1.64929,1.38659,0.009792,0.234112,0.005856,0.004192,0.007168,0.013312,0.014336,1.08749,0.010336
+739,594.183,1.68298,1.85142,0.009312,0.238496,0.00576,0.00448,0.00752,0.014784,0.01456,1.54541,0.011104
+740,436.557,2.29065,1.01683,0.008352,0.23536,0.00512,0.004864,0.007616,0.01312,0.014336,0.7184,0.009664
+741,700.231,1.4281,1.01654,0.008736,0.22944,0.00448,0.005344,0.006944,0.013312,0.014368,0.723936,0.009984
+742,628.414,1.59131,1.24733,0.009632,0.460896,0.00464,0.005216,0.007072,0.014144,0.014304,0.722784,0.00864
+743,652.801,1.53186,1.86042,0.008416,0.236128,0.004096,0.005728,0.00656,0.01424,0.014432,1.55981,0.011008
+744,430.682,2.3219,1.00941,0.009376,0.232288,0.005472,0.004768,0.007872,0.012608,0.014336,0.712704,0.009984
+745,696.243,1.43628,1.00867,0.008192,0.230688,0.004832,0.004096,0.007968,0.012512,0.014336,0.716416,0.009632
+746,665.151,1.50342,1.39059,0.008224,0.230784,0.004704,0.004096,0.00784,0.0144,0.013696,1.09661,0.01024
+747,575.685,1.73706,1.32112,0.009312,0.238528,0.0056,0.004608,0.007328,0.013152,0.014336,0.71392,0.314336
+748,491.186,2.03589,1.01414,0.008608,0.235488,0.004096,0.00576,0.006528,0.014112,0.01424,0.716736,0.008576
+749,729.345,1.37109,1.00762,0.008192,0.231424,0.005696,0.004544,0.00736,0.01312,0.014336,0.712704,0.01024
+750,699.991,1.42859,1.38954,0.008672,0.231936,0.005888,0.004352,0.00768,0.0128,0.014336,1.09162,0.012256
+751,542.768,1.84241,1.28614,0.008256,0.235136,0.004416,0.005344,0.006944,0.0136,0.01424,0.709376,0.288832
+752,504.092,1.98376,1.0281,0.011968,0.241696,0.004384,0.005408,0.00688,0.013536,0.014496,0.719616,0.010112
+753,708.405,1.41162,0.995328,0.008192,0.228928,0.004544,0.005248,0.00704,0.012288,0.01536,0.7048,0.008928
+754,684.606,1.46069,1.24317,0.009472,0.22784,0.004352,0.00544,0.006848,0.01392,0.014336,0.950688,0.010272
+755,606.86,1.64783,1.02982,0.008416,0.2312,0.005216,0.004864,0.016544,0.014336,0.014304,0.725024,0.00992
+756,423.578,2.36084,1.06701,0.012256,0.26832,0.00432,0.005632,0.006432,0.013984,0.014464,0.732416,0.009184
+757,709.817,1.40881,1.03834,0.008192,0.253248,0.0048,0.005568,0.00672,0.0136,0.014304,0.722816,0.009088
+758,713.713,1.40112,1.01357,0.008224,0.247136,0.004736,0.004096,0.007968,0.012512,0.014336,0.704544,0.010016
+759,590.117,1.69458,1.03238,0.008736,0.243648,0.004352,0.005408,0.00688,0.013824,0.0144,0.72544,0.009696
+760,456.176,2.19214,1.03312,0.0112,0.237536,0.005408,0.004832,0.006336,0.014144,0.014336,0.729088,0.01024
+761,663.535,1.50708,0.996672,0.008256,0.230816,0.004704,0.004096,0.008032,0.01376,0.015104,0.702144,0.00976
+762,719.543,1.38977,1.02352,0.008256,0.233472,0.005472,0.004768,0.00736,0.01312,0.014336,0.72704,0.009696
+763,651.71,1.53442,1.0032,0.00832,0.229184,0.00416,0.005632,0.006656,0.013888,0.014496,0.710912,0.009952
+764,656.726,1.52271,1.65382,0.009824,0.448928,0.032768,0.00784,0.006496,0.014336,0.014336,1.10941,0.009888
+765,476.778,2.09741,1.03814,0.008128,0.233824,0.004128,0.005632,0.006656,0.013728,0.014528,0.741792,0.009728
+766,546.862,1.82861,1.01808,0.008416,0.243744,0.005632,0.004576,0.00736,0.01312,0.014208,0.712416,0.008608
+767,885.334,1.12952,1.19539,0.009664,0.405312,0.004864,0.004096,0.008,0.013984,0.01472,0.724832,0.00992
+768,573.549,1.74353,1.76845,0.008192,0.263712,0.004576,0.005184,0.007104,0.013376,0.01456,1.43638,0.01536
+769,449.394,2.22522,1.05472,0.008192,0.258048,0.005824,0.004416,0.007552,0.012928,0.014336,0.733184,0.01024
+770,683.863,1.46228,1.04035,0.009312,0.258656,0.004416,0.005376,0.006912,0.014336,0.014368,0.716768,0.010208
+771,649.386,1.53992,1.18346,0.008256,0.411296,0.004448,0.005408,0.00688,0.014336,0.014272,0.708672,0.009888
+772,668.462,1.49597,1.8536,0.008352,0.238752,0.00496,0.00544,0.006848,0.013728,0.014848,1.54976,0.010912
+773,437.981,2.2832,1.00576,0.008448,0.231168,0.004096,0.005696,0.006592,0.014016,0.014336,0.712384,0.009024
+774,681.701,1.46692,1.00352,0.008192,0.229408,0.005856,0.004352,0.008192,0.013792,0.014432,0.71024,0.009056
+775,663.374,1.50745,1.4087,0.00944,0.244512,0.005312,0.004832,0.006304,0.01392,0.014528,1.09904,0.010816
+776,518.35,1.9292,1.6943,0.0088,0.517984,0.006304,0.005696,0.006592,0.014336,0.015488,1.10886,0.01024
+777,485.049,2.06165,1.01379,0.00832,0.230912,0.004928,0.00416,0.008192,0.014048,0.014528,0.718944,0.00976
+778,740.888,1.34973,1.00995,0.008672,0.23072,0.00496,0.004096,0.007808,0.012672,0.014336,0.7168,0.009888
+779,667.264,1.49866,1.39386,0.008224,0.230784,0.004704,0.004096,0.008352,0.013952,0.014592,1.09878,0.010368
+780,552.17,1.81104,1.8616,0.008704,0.235264,0.004512,0.005792,0.006496,0.01392,0.0144,1.56093,0.011584
+781,434.704,2.30042,1.03014,0.008192,0.258048,0.005152,0.004864,0.006368,0.013472,0.013152,0.710656,0.01024
+782,728.437,1.3728,1.00797,0.008512,0.228832,0.00464,0.00512,0.00704,0.012416,0.015456,0.71568,0.010272
+783,675.908,1.47949,1.37789,0.009248,0.22544,0.004768,0.004256,0.007968,0.012544,0.014144,1.08918,0.010336
+784,519.731,1.92407,1.31478,0.008768,0.265472,0.004896,0.004256,0.007552,0.012928,0.014336,0.711936,0.28464
+785,517.139,1.93372,1.01008,0.011712,0.234464,0.004096,0.005792,0.006496,0.013824,0.014752,0.708704,0.01024
+786,744.524,1.34314,1.02269,0.008608,0.243648,0.00448,0.005312,0.006976,0.013568,0.014304,0.716928,0.008864
+787,699.573,1.42944,1.37984,0.008192,0.229376,0.005344,0.004864,0.006304,0.014208,0.014368,1.08518,0.012
+788,553.738,1.80591,1.77507,0.008192,0.230816,0.004704,0.004096,0.008064,0.012416,0.015456,1.4769,0.014432
+789,433.921,2.30457,1.05882,0.008192,0.266112,0.004224,0.005344,0.006944,0.012384,0.01552,0.729856,0.01024
+790,687.479,1.45459,1.02301,0.008384,0.242912,0.004704,0.004096,0.008064,0.012416,0.015584,0.717376,0.009472
+791,700.111,1.42834,1.39264,0.009248,0.234208,0.004352,0.00544,0.006848,0.013504,0.014496,1.09226,0.012288
+792,531.914,1.88,1.78122,0.008288,0.254304,0.005504,0.004736,0.0072,0.01328,0.014336,1.45818,0.015392
+793,467.233,2.14026,1.01174,0.008192,0.230464,0.004896,0.004256,0.00752,0.012992,0.014304,0.720032,0.009088
+794,702.392,1.42371,1.01046,0.008,0.224192,0.005568,0.004672,0.007264,0.013248,0.014304,0.724032,0.009184
+795,444.831,2.24805,1.4263,0.008864,0.253184,0.004896,0.004288,0.00768,0.0128,0.014336,1.10931,0.010944
+796,872.975,1.14551,1.3729,0.008576,0.284064,0.004928,0.004224,0.007776,0.012704,0.014336,1.02192,0.014368
+797,498.873,2.00452,1.03648,0.008384,0.253152,0.004896,0.004096,0.00784,0.01264,0.014368,0.722112,0.008992
+798,671.751,1.48865,1.0097,0.008224,0.229376,0.005344,0.004864,0.00624,0.014208,0.014368,0.716832,0.01024
+799,719.733,1.3894,1.39709,0.008544,0.231232,0.004288,0.005504,0.006784,0.013536,0.014464,1.10048,0.012256
+800,538.699,1.85632,1.33744,0.008,0.233728,0.005216,0.004864,0.006304,0.014336,0.014144,1.0015,0.049344
+801,499.847,2.00061,1.016,0.008352,0.230624,0.004896,0.004096,0.007904,0.012576,0.015616,0.72304,0.008896
+802,697.132,1.43445,1.02387,0.009728,0.242176,0.005792,0.004448,0.00752,0.01296,0.014336,0.7168,0.010112
+803,714.024,1.40051,1.24435,0.008192,0.227328,0.005344,0.004864,0.006176,0.014368,0.014336,0.952288,0.011456
+804,581.24,1.72046,0.999552,0.008192,0.230848,0.004672,0.004096,0.008032,0.012608,0.015328,0.706944,0.008832
+805,431.158,2.31934,1.06122,0.01168,0.279488,0.004096,0.005856,0.006432,0.014336,0.014368,0.71472,0.01024
+806,673.241,1.48535,1.05059,0.008384,0.264096,0.004192,0.0056,0.006688,0.013664,0.014272,0.72368,0.010016
+807,618.171,1.61768,1.33642,0.008192,0.321536,0.004096,0.005824,0.006464,0.014176,0.014528,0.95024,0.01136
+808,609.025,1.64197,1.02691,0.008736,0.24528,0.004896,0.004096,0.007904,0.012576,0.014496,0.720256,0.008672
+809,424.874,2.35364,1.05683,0.01168,0.266912,0.004096,0.005856,0.006464,0.013728,0.014336,0.72352,0.01024
+810,678.09,1.47473,1.0249,0.008672,0.246176,0.00592,0.00432,0.00768,0.012832,0.014304,0.714752,0.01024
+811,710.063,1.40833,1.44102,0.009472,0.26496,0.00576,0.00448,0.007616,0.012864,0.014336,1.10912,0.012416
+812,507.559,1.97021,1.3312,0.008224,0.239584,0.005312,0.004864,0.00624,0.014304,0.014336,1.00966,0.028672
+813,428.116,2.33582,1.03635,0.0088,0.251808,0.004224,0.005536,0.006752,0.013472,0.01456,0.721312,0.009888
+814,829.318,1.20581,1.05056,0.008224,0.270336,0.005248,0.004832,0.006272,0.014368,0.014304,0.7168,0.010176
+815,671.31,1.48962,1.26736,0.009536,0.250592,0.005664,0.004544,0.007392,0.01312,0.014304,0.950272,0.011936
+816,617.146,1.62036,1.0623,0.009664,0.272832,0.004224,0.005568,0.00672,0.013632,0.014432,0.7256,0.009632
+817,529.062,1.89014,1.24717,0.0328,0.433696,0.004608,0.006144,0.007744,0.014048,0.0144,0.723616,0.010112
+818,646.567,1.54663,1.02198,0.008192,0.232608,0.004928,0.004128,0.007904,0.012672,0.014336,0.728288,0.008928
+819,600.147,1.66626,1.04307,0.008768,0.24912,0.004896,0.004096,0.008192,0.013472,0.015104,0.73024,0.009184
+820,586.064,1.7063,1.05267,0.009664,0.258624,0.005728,0.004512,0.007392,0.01312,0.014304,0.729088,0.01024
+821,445.266,2.24585,1.02896,0.011072,0.244896,0.004928,0.004128,0.007872,0.01376,0.01456,0.718656,0.009088
+822,632.636,1.58069,1.04829,0.008192,0.239616,0.004096,0.00576,0.006528,0.014304,0.014368,0.745472,0.009952
+823,733.656,1.36304,1.03629,0.008192,0.243712,0.004096,0.005856,0.006432,0.013952,0.014336,0.729504,0.010208
+824,600.366,1.66565,1.04858,0.008416,0.263104,0.004896,0.00416,0.00784,0.014528,0.014496,0.721952,0.009184
+825,456.023,2.19287,1.04144,0.011264,0.25376,0.004288,0.005504,0.006784,0.013728,0.014048,0.721792,0.010272
+826,681.587,1.46716,1.02605,0.008512,0.233344,0.004224,0.005568,0.00672,0.014112,0.0144,0.729248,0.00992
+827,709.879,1.40869,1.00973,0.008288,0.233376,0.004192,0.0056,0.007744,0.013152,0.014048,0.71312,0.010208
+828,630.639,1.58569,1.02029,0.008448,0.231424,0.004096,0.006144,0.007168,0.013344,0.014336,0.726656,0.008672
+829,658.998,1.51746,1.67069,0.009248,0.447456,0.034816,0.021824,0.006848,0.014144,0.014528,1.11184,0.009984
+830,503.813,1.98486,1.02992,0.009504,0.238304,0.005376,0.004864,0.007296,0.013216,0.014304,0.72704,0.010016
+831,650.572,1.53711,1.01786,0.008256,0.234624,0.004896,0.004128,0.007904,0.012576,0.014336,0.72208,0.009056
+832,705.113,1.41821,1.19043,0.008672,0.405408,0.004256,0.005568,0.00672,0.014208,0.014368,0.722272,0.00896
+833,621.595,1.60876,1.80224,0.009568,0.24192,0.004512,0.005248,0.00704,0.013856,0.014752,1.49277,0.012576
+834,410.524,2.43591,1.03469,0.008512,0.237696,0.005536,0.004704,0.0072,0.01328,0.014336,0.734208,0.009216
+835,681.814,1.46667,1.08384,0.008448,0.288992,0.00576,0.004448,0.007488,0.012992,0.015584,0.729888,0.01024
+836,619.433,1.61438,1.188,0.007776,0.405312,0.004864,0.004096,0.008032,0.013728,0.014304,0.719648,0.01024
+837,667.753,1.49756,1.87622,0.008128,0.244,0.005856,0.004384,0.007616,0.012864,0.014368,1.56794,0.011072
+838,420.793,2.37646,1.02179,0.009472,0.238176,0.004256,0.005504,0.00784,0.01328,0.014336,0.718848,0.01008
+839,729.865,1.37012,1.04643,0.008352,0.259168,0.004896,0.004224,0.007712,0.012768,0.014368,0.72496,0.009984
+840,708.712,1.41101,1.21158,0.008352,0.417376,0.004512,0.005312,0.006976,0.013888,0.014496,0.731168,0.009504
+841,584.475,1.71094,1.3304,0.008224,0.247776,0.004096,0.005792,0.006496,0.014016,0.014272,1.01619,0.013536
+842,507.653,1.96985,1.01555,0.009376,0.233824,0.004608,0.005792,0.006528,0.013856,0.014016,0.717568,0.009984
+843,655.36,1.52588,1.05507,0.008896,0.263712,0.004832,0.004096,0.008192,0.013792,0.014144,0.727744,0.009664
+844,714.46,1.39966,1.4081,0.008192,0.232864,0.004704,0.004096,0.008032,0.013504,0.014656,1.11008,0.011968
+845,535.95,1.86584,1.33251,0.008064,0.245024,0.004928,0.004128,0.00784,0.01264,0.014336,1.00336,0.032192
+846,490.451,2.03894,1.05248,0.009696,0.262688,0.00416,0.005696,0.006528,0.014336,0.014336,0.724992,0.010048
+847,683.578,1.46289,1.04048,0.008768,0.241664,0.005664,0.004576,0.00736,0.013152,0.014304,0.7352,0.009792
+848,681.758,1.4668,1.43427,0.00864,0.241696,0.004288,0.005472,0.006816,0.024576,0.015776,1.11584,0.011168
+849,390.933,2.55798,1.36227,0.008192,0.233632,0.004288,0.005504,0.007808,0.013344,0.014304,1.06394,0.011264
+850,781.307,1.27991,1.03411,0.008192,0.233472,0.005504,0.004736,0.006144,0.014336,0.014336,0.73728,0.010112
+851,707.549,1.41333,1.00941,0.008192,0.22736,0.005376,0.004832,0.007456,0.013024,0.014368,0.718816,0.009984
+852,577.308,1.73218,1.28707,0.009088,0.26208,0.004192,0.00592,0.006368,0.01408,0.014592,0.960256,0.010496
+853,647.077,1.54541,1.0265,0.008544,0.237376,0.004352,0.005472,0.006816,0.013696,0.014528,0.726528,0.009184
+854,687.652,1.45422,1.66365,0.007968,0.455072,0.032672,0.00672,0.007808,0.014048,0.014112,1.11501,0.01024
+855,473.937,2.10999,1.03203,0.008672,0.235776,0.005408,0.004832,0.007904,0.012672,0.014304,0.732512,0.009952
+856,684.835,1.46021,1.04518,0.008096,0.234272,0.005184,0.005056,0.006336,0.014144,0.014336,0.749248,0.008512
+857,587.156,1.70312,1.02208,0.00832,0.233472,0.005792,0.004448,0.007488,0.013024,0.014304,0.726112,0.00912
+858,634.744,1.57544,1.65699,0.00928,0.46512,0.006912,0.005088,0.00704,0.01392,0.014496,1.12474,0.0104
+859,492.663,2.02979,1.03219,0.008192,0.235072,0.004544,0.005792,0.006496,0.01392,0.014656,0.734592,0.008928
+860,691.425,1.44629,1.01629,0.008608,0.229376,0.005504,0.004736,0.007264,0.013216,0.014368,0.724576,0.00864
+861,541.727,1.84595,1.03424,0.009472,0.24448,0.004096,0.005792,0.006496,0.013792,0.01488,0.72608,0.009152
+862,806.299,1.24023,1.75398,0.007072,0.563104,0.00624,0.005728,0.006528,0.014336,0.014176,1.12656,0.01024
+863,462.616,2.16162,1.0111,0.008224,0.232416,0.004928,0.004288,0.007648,0.012832,0.015456,0.715552,0.00976
+864,718.344,1.39209,1.03453,0.00848,0.243712,0.005728,0.004512,0.007424,0.013056,0.014336,0.72704,0.01024
+865,692.828,1.44336,1.19658,0.008736,0.40544,0.004128,0.005728,0.00656,0.014368,0.014304,0.728384,0.008928
+866,603.685,1.65649,1.76947,0.008192,0.233472,0.006112,0.004128,0.007872,0.012672,0.015424,1.46726,0.014336
+867,434.773,2.30005,1.06029,0.008448,0.258048,0.004096,0.005856,0.006432,0.014048,0.014304,0.739328,0.009728
+868,718.849,1.39111,1.0511,0.008672,0.233568,0.00544,0.0048,0.006368,0.014112,0.014336,0.753664,0.010144
+869,681.191,1.46802,1.23878,0.009376,0.44096,0.00432,0.005504,0.006784,0.01424,0.014368,0.733248,0.009984
+870,587.914,1.70093,1.89235,0.009312,0.252832,0.005536,0.004704,0.007168,0.013312,0.014336,1.57389,0.011264
+871,419.887,2.38159,1.01782,0.008736,0.233632,0.005344,0.004864,0.006208,0.014304,0.014336,0.720608,0.009792
+872,679.158,1.47241,1.01766,0.008192,0.229376,0.00544,0.0048,0.006144,0.014336,0.014336,0.724992,0.010048
+873,693.884,1.44116,1.20515,0.007104,0.405472,0.005792,0.004448,0.007584,0.012896,0.015392,0.736224,0.01024
+874,608.98,1.64209,1.86166,0.0088,0.231648,0.005152,0.004832,0.0064,0.014112,0.01408,1.56512,0.01152
+875,437.047,2.28809,1.03722,0.008448,0.230048,0.005568,0.004672,0.007456,0.013024,0.014336,0.743424,0.01024
+876,668.516,1.49585,1.0192,0.008192,0.2288,0.004672,0.004096,0.008064,0.013856,0.01424,0.727744,0.009536
+877,715.959,1.39673,1.38525,0.008992,0.229472,0.005664,0.004128,0.006496,0.013984,0.014528,1.09174,0.01024
+878,560.865,1.78296,1.70835,0.008512,0.507616,0.028992,0.005536,0.00672,0.014304,0.014304,1.11318,0.009184
+879,377.094,2.65186,1.03834,0.008192,0.255136,0.004896,0.00416,0.00784,0.014048,0.014368,0.719456,0.01024
+880,974.542,1.02612,1.07789,0.008672,0.283808,0.005024,0.00416,0.007872,0.012608,0.015552,0.72992,0.010272
+881,671.145,1.48999,1.42954,0.008256,0.26384,0.004352,0.00544,0.006912,0.012288,0.015392,1.10282,0.01024
+882,550.02,1.81812,1.81453,0.008416,0.259872,0.00512,0.004864,0.0064,0.014016,0.014656,1.48819,0.012992
+883,445.653,2.2439,1.02006,0.007872,0.232,0.004096,0.00576,0.006528,0.014144,0.014528,0.724992,0.010144
+884,711.853,1.40479,1.01418,0.008608,0.229376,0.005536,0.004704,0.008192,0.01424,0.014432,0.719968,0.00912
+885,679.834,1.47095,1.31072,0.008192,0.513024,0.004992,0.004224,0.007488,0.01408,0.014336,0.734144,0.01024
+886,580.334,1.72314,1.84733,0.008192,0.234816,0.0048,0.004096,0.00816,0.013408,0.014464,1.54819,0.0112
+887,452.697,2.20898,1.03683,0.00848,0.2296,0.005536,0.004672,0.00736,0.013184,0.014304,0.744704,0.008992
+888,682.212,1.46582,1.04858,0.008192,0.231424,0.005216,0.004864,0.007904,0.012736,0.014336,0.753664,0.01024
+889,622.209,1.60718,1.4273,0.008576,0.26624,0.005536,0.004288,0.00784,0.013056,0.014336,1.09693,0.010496
+890,554.863,1.80225,1.8247,0.008224,0.268256,0.00512,0.004864,0.006432,0.014016,0.014656,1.48886,0.014272
+891,423.053,2.36377,1.0608,0.00816,0.260224,0.005312,0.004832,0.00624,0.014368,0.014336,0.737248,0.01008
+892,750.733,1.33203,1.04038,0.008416,0.239424,0.00544,0.004768,0.007232,0.013248,0.014336,0.738624,0.008896
+893,706.207,1.41602,1.23539,0.008672,0.440288,0.005152,0.004864,0.006368,0.014336,0.014336,0.731136,0.01024
+894,601.468,1.6626,1.86586,0.008832,0.2368,0.004864,0.004096,0.007872,0.012608,0.015392,1.56362,0.011776
+895,426.756,2.34326,1.02013,0.008416,0.231296,0.004224,0.005568,0.008384,0.012672,0.014336,0.726208,0.009024
+896,716.334,1.396,1.04694,0.008032,0.229344,0.004704,0.004096,0.008,0.013536,0.01328,0.757152,0.0088
+897,644.126,1.55249,1.46637,0.009568,0.291488,0.005376,0.004864,0.007712,0.012768,0.014336,1.11002,0.01024
+898,488.9,2.04541,1.8537,0.008736,0.266272,0.0056,0.004608,0.007328,0.013184,0.014304,1.52093,0.012736
+899,454.253,2.20142,1.03168,0.008224,0.23184,0.00576,0.00448,0.008192,0.014144,0.014528,0.734912,0.0096
+900,657.992,1.51978,1.01738,0.009696,0.22992,0.00528,0.004832,0.006272,0.01424,0.014464,0.722912,0.00976
+901,741.357,1.34888,1.204,0.008192,0.404896,0.004704,0.005376,0.006912,0.014368,0.014304,0.735232,0.010016
+902,634.154,1.5769,1.8656,0.00944,0.234272,0.005696,0.004544,0.007328,0.013184,0.01424,1.56477,0.012128
+903,438.638,2.27979,1.05546,0.008032,0.250656,0.005216,0.004864,0.006304,0.013824,0.014304,0.743296,0.00896
+904,668.844,1.49512,1.02173,0.008192,0.231424,0.00512,0.004864,0.007808,0.012928,0.014336,0.72704,0.010016
+905,679.045,1.47266,1.19734,0.008416,0.40528,0.00528,0.004864,0.006304,0.014272,0.014336,0.728768,0.009824
+906,652.333,1.53296,1.8769,0.008704,0.233888,0.005536,0.004704,0.008,0.01248,0.014336,1.5785,0.010752
+907,403.626,2.47754,1.02259,0.00848,0.2376,0.004416,0.005408,0.00688,0.013536,0.01472,0.721344,0.010208
+908,751.836,1.33008,1.02352,0.00944,0.229952,0.00432,0.005504,0.006784,0.014176,0.014496,0.729088,0.00976
+909,679.721,1.47119,1.40186,0.009216,0.242464,0.00432,0.005536,0.006528,0.012512,0.014368,1.09565,0.011264
+910,544.681,1.83594,1.85261,0.008192,0.231424,0.005632,0.004608,0.00736,0.01312,0.014336,1.55645,0.011488
+911,435.42,2.29663,1.01555,0.007872,0.22896,0.004928,0.00544,0.00688,0.013728,0.01488,0.723008,0.009856
+912,685.867,1.45801,1.04586,0.008192,0.255776,0.00432,0.005472,0.006816,0.013728,0.014496,0.727232,0.009824
+913,697.429,1.43384,1.24288,0.008352,0.445792,0.004608,0.005216,0.007104,0.014016,0.014624,0.733184,0.009984
+914,602.353,1.66016,1.79194,0.008192,0.228448,0.004928,0.004192,0.007712,0.012768,0.014336,1.49821,0.013152
+915,459.863,2.17456,1.04038,0.0096,0.231392,0.004768,0.004096,0.008192,0.01408,0.014496,0.74464,0.00912
+916,449.024,2.22705,1.06336,0.008576,0.254016,0.005376,0.004864,0.007232,0.013248,0.014336,0.745472,0.01024
+917,1143.81,0.874268,1.40224,0.00928,0.238528,0.006144,0.004096,0.007744,0.012736,0.015424,1.09811,0.010176
+918,532.848,1.87671,1.85901,0.008192,0.231456,0.005792,0.004416,0.007488,0.012992,0.014368,1.56259,0.011712
+919,453.7,2.2041,1.044,0.00944,0.231936,0.004384,0.005376,0.008384,0.012864,0.014368,0.747456,0.009792
+920,705.234,1.41797,1.01389,0.00832,0.227328,0.005344,0.004864,0.006304,0.014016,0.01424,0.724544,0.008928
+921,708.038,1.41235,1.24717,0.008192,0.442112,0.004384,0.005472,0.006784,0.01424,0.014432,0.741376,0.010176
+922,593.881,1.68384,1.78,0.008288,0.229024,0.004608,0.004096,0.008192,0.013504,0.014592,1.48333,0.014368
+923,457.245,2.18701,1.03424,0.009568,0.233344,0.004896,0.004096,0.00784,0.012736,0.01424,0.73728,0.01024
+924,638.305,1.56665,1.06483,0.008352,0.249696,0.005696,0.004544,0.00736,0.013152,0.014304,0.751616,0.010112
+925,716.334,1.396,1.40288,0.008192,0.2328,0.004768,0.004096,0.007968,0.0136,0.01472,1.1065,0.01024
+926,557.052,1.79517,1.89046,0.008352,0.233152,0.004416,0.005376,0.006912,0.012288,0.014336,1.59469,0.010944
+927,437.934,2.28345,1.03427,0.00848,0.23184,0.005792,0.004448,0.00816,0.013504,0.014592,0.737696,0.00976
+928,684.95,1.45996,1.03421,0.008416,0.230848,0.004672,0.005152,0.007136,0.013952,0.014048,0.74,0.009984
+929,652.333,1.53296,1.42806,0.00832,0.253984,0.004544,0.004096,0.007968,0.012512,0.015712,1.11069,0.01024
+930,540.869,1.84888,1.7999,0.008256,0.232768,0.0048,0.004096,0.007936,0.012544,0.014368,1.50115,0.013984
+931,455.82,2.19385,1.02454,0.008736,0.23488,0.004736,0.004096,0.008032,0.012448,0.015616,0.72704,0.00896
+932,700.291,1.42798,1.03014,0.008608,0.233408,0.004672,0.005152,0.006752,0.012672,0.014336,0.734816,0.009728
+933,665.151,1.50342,1.4089,0.008192,0.235136,0.00416,0.004416,0.00816,0.013728,0.014432,1.11043,0.01024
+934,472.107,2.11816,1.81568,0.009568,0.276896,0.004352,0.00544,0.006848,0.013568,0.014208,1.46931,0.015488
+935,527.563,1.89551,1.07802,0.007136,0.257888,0.004256,0.005536,0.007904,0.013216,0.014304,0.75776,0.010016
+936,633.467,1.57861,1.02554,0.008192,0.233088,0.00448,0.005312,0.006976,0.014304,0.0144,0.729056,0.009728
+937,736.558,1.35767,1.21408,0.008224,0.419104,0.0048,0.004096,0.008224,0.013888,0.01456,0.731328,0.009856
+938,615.385,1.625,1.76794,0.008672,0.234944,0.004704,0.004096,0.008,0.01248,0.01536,1.46534,0.014336
+939,461.729,2.16577,1.02605,0.008192,0.235552,0.005152,0.004864,0.008,0.012672,0.014496,0.72688,0.01024
+940,685.294,1.45923,1.04042,0.008192,0.232864,0.004704,0.004096,0.008192,0.014016,0.014432,0.745152,0.008768
+941,697.429,1.43384,1.40934,0.007136,0.230624,0.004864,0.004096,0.00816,0.01232,0.014336,1.11616,0.011648
+942,525.802,1.90186,1.78806,0.008352,0.23552,0.005856,0.004384,0.007936,0.013568,0.014432,1.48362,0.0144
+943,392.412,2.54834,1.09312,0.008192,0.290464,0.004448,0.005312,0.006976,0.01376,0.014496,0.739744,0.009728
+944,889.468,1.12427,1.02992,0.008192,0.231424,0.005248,0.004896,0.00624,0.014336,0.014368,0.7352,0.010016
+945,619.012,1.61548,1.3985,0.00816,0.229888,0.005536,0.004704,0.006144,0.014144,0.014368,1.10525,0.010304
+946,594.657,1.68164,1.33939,0.009504,0.238304,0.005184,0.004832,0.00784,0.012736,0.014336,1.00774,0.038912
+947,507.811,1.96924,1.0272,0.008192,0.233408,0.00416,0.0056,0.006688,0.01408,0.014528,0.730752,0.009792
+948,673.463,1.48486,1.04378,0.009504,0.23344,0.0048,0.004096,0.008192,0.01424,0.014432,0.745472,0.0096
+949,683.692,1.46265,1.4176,0.00832,0.23168,0.005856,0.004384,0.007648,0.012928,0.014272,1.12026,0.012256
+950,544.247,1.8374,1.3616,0.009632,0.245824,0.00464,0.00592,0.006368,0.013632,0.01424,1.04938,0.011968
+951,487.387,2.05176,1.06342,0.008768,0.26032,0.00416,0.0056,0.006688,0.0136,0.014528,0.739872,0.009888
+952,677.473,1.47607,1.04128,0.008896,0.23776,0.005248,0.004864,0.006336,0.01392,0.01424,0.741088,0.008928
+953,687.364,1.45483,1.4296,0.008288,0.253088,0.004896,0.00416,0.008192,0.01344,0.014656,1.11062,0.012256
+954,525.6,1.90259,1.34675,0.008192,0.24128,0.00448,0.005312,0.006976,0.013632,0.014272,1.0017,0.050912
+955,487.619,2.05078,1.04448,0.008192,0.236704,0.004928,0.004128,0.008192,0.013984,0.014592,0.74352,0.01024
+956,732.475,1.36523,1.02598,0.008576,0.235488,0.004096,0.005728,0.00656,0.013952,0.014496,0.727264,0.009824
+957,694.944,1.43896,1.2575,0.008416,0.244,0.004544,0.005248,0.00704,0.01392,0.0144,0.948576,0.01136
+958,548.694,1.82251,1.05677,0.008192,0.24912,0.004768,0.00416,0.007904,0.0136,0.013312,0.745504,0.010208
+959,426.223,2.34619,1.06442,0.011808,0.247552,0.004832,0.004096,0.007936,0.012544,0.015552,0.750272,0.009824
+960,730.385,1.36914,1.03779,0.00832,0.239488,0.004224,0.0056,0.006688,0.014304,0.014368,0.73504,0.00976
+961,671.586,1.48901,1.25747,0.008192,0.239264,0.004448,0.005312,0.006976,0.01344,0.014592,0.954656,0.010592
+962,580.663,1.72217,1.03197,0.00784,0.242592,0.005504,0.004736,0.007232,0.013248,0.015552,0.725696,0.009568
+963,599.268,1.6687,1.65709,0.008608,0.457888,0.0152,0.005888,0.007648,0.013088,0.015552,1.12301,0.010208
+964,537.674,1.85986,1.04912,0.008704,0.241632,0.004224,0.005568,0.00672,0.014016,0.01392,0.74416,0.010176
+965,698.857,1.43091,1.01811,0.009248,0.230368,0.00512,0.004864,0.0064,0.01392,0.014752,0.724512,0.008928
+966,613.174,1.63086,1.03174,0.009568,0.24176,0.004672,0.004096,0.008192,0.014272,0.0144,0.724992,0.009792
+967,654.209,1.52856,1.65478,0.00832,0.448384,0.032768,0.005664,0.006624,0.014336,0.014336,1.11411,0.01024
+968,494.03,2.02417,1.03024,0.008544,0.2336,0.005824,0.004416,0.008192,0.013472,0.014496,0.73184,0.009856
+969,705.113,1.41821,1.04541,0.008864,0.229632,0.005344,0.004832,0.00624,0.01424,0.014432,0.75264,0.009184
+970,600.059,1.6665,1.04448,0.009408,0.242496,0.004096,0.005664,0.006624,0.014336,0.014336,0.73728,0.01024
+971,381.378,2.62207,1.8089,0.008128,0.258432,0.004288,0.00528,0.007008,0.013504,0.014304,1.48387,0.01408
+972,931.756,1.07324,1.03408,0.008192,0.236896,0.004608,0.004096,0.007392,0.013248,0.014368,0.735392,0.009888
+973,734.05,1.3623,1.03219,0.007616,0.231552,0.004544,0.004096,0.007904,0.012576,0.014528,0.739136,0.01024
+974,697.31,1.43408,1.01789,0.008192,0.225024,0.004192,0.00416,0.00624,0.01344,0.014464,0.731936,0.01024
+975,693.297,1.44238,1.03405,0.007648,0.231232,0.004832,0.004096,0.007232,0.013248,0.014368,0.741344,0.010048
+976,684.95,1.45996,1.25731,0.007872,0.24624,0.004192,0.00432,0.006208,0.013824,0.0128,0.950272,0.011584
+977,636.222,1.57178,1.02979,0.008384,0.235968,0.00576,0.00448,0.007456,0.013024,0.014336,0.730688,0.009696
+978,688.403,1.45264,1.02774,0.00832,0.227296,0.005184,0.004864,0.006368,0.014304,0.014336,0.73728,0.009792
+979,663.535,1.50708,1.01645,0.008864,0.231456,0.005152,0.004832,0.0064,0.014016,0.014368,0.721184,0.010176
+980,703.055,1.42236,1.77357,0.008384,0.235328,0.005216,0.004864,0.007808,0.013888,0.01472,1.47034,0.013024
+981,352.556,2.83643,1.06157,0.008,0.267136,0.005536,0.004704,0.00752,0.01296,0.014336,0.731136,0.01024
+982,725.469,1.37842,1.25747,0.00832,0.241536,0.004096,0.005792,0.006496,0.013856,0.014496,0.952256,0.010624
+983,568.652,1.75854,1.0591,0.00848,0.262144,0.005408,0.004832,0.0072,0.013056,0.014208,0.734656,0.00912
+984,614.369,1.62769,1.67786,0.008096,0.453376,0.03072,0.0056,0.006688,0.014272,0.014432,1.13456,0.010112
+985,525.061,1.90454,1.05043,0.008832,0.236992,0.004864,0.004096,0.007904,0.012576,0.01536,0.749888,0.00992
+986,654.731,1.52734,1.02605,0.008192,0.239616,0.005504,0.004736,0.007232,0.01328,0.014304,0.724064,0.00912
+987,634.35,1.57642,1.04048,0.008288,0.237568,0.005824,0.004416,0.007552,0.012928,0.014336,0.739328,0.01024
+988,646.669,1.54639,1.70058,0.008896,0.4424,0.007456,0.004704,0.018432,0.04112,0.014304,1.15302,0.01024
+989,483.818,2.06689,1.02851,0.008608,0.235424,0.004192,0.005568,0.00672,0.014272,0.014272,0.729376,0.01008
+990,420.103,2.38037,1.16445,0.018272,0.35024,0.004224,0.006112,0.006304,0.014208,0.022272,0.732928,0.009888
+991,1102.56,0.906982,1.0519,0.008192,0.239616,0.00576,0.00448,0.00752,0.014688,0.01408,0.747712,0.009856
+992,687.71,1.4541,1.32509,0.008224,0.233472,0.00576,0.00448,0.007296,0.013184,0.014336,1.01718,0.021152
+993,502.7,1.98926,1.04854,0.008192,0.251936,0.005248,0.004864,0.007424,0.012992,0.014368,0.733312,0.010208
+994,642.51,1.5564,1.0711,0.0096,0.282368,0.004928,0.00416,0.00784,0.013984,0.014208,0.723776,0.01024
+995,677.361,1.47632,1.2001,0.008192,0.405984,0.005536,0.004704,0.007264,0.013216,0.014336,0.731072,0.009792
+996,623.63,1.60352,1.04637,0.008224,0.247744,0.004128,0.006144,0.007328,0.013152,0.014336,0.735232,0.01008
+997,658.521,1.51855,1.6815,0.008288,0.45056,0.034848,0.005888,0.007808,0.014016,0.013216,1.13664,0.01024
+998,470.696,2.12451,1.0447,0.008416,0.237344,0.00432,0.005408,0.00688,0.013792,0.014688,0.743616,0.01024
+999,389.206,2.56934,1.42915,0.008512,0.241632,0.005728,0.004512,0.008224,0.013856,0.014272,1.12218,0.01024
+1000,1037.49,0.963867,1.05267,0.00928,0.250816,0.005472,0.004768,0.007488,0.012992,0.014336,0.73728,0.01024
+1001,398.948,2.50659,1.09046,0.0112,0.290816,0.005536,0.004672,0.0072,0.01312,0.014496,0.733216,0.010208
+1002,715.709,1.39722,1.05859,0.007936,0.24,0.005824,0.004416,0.007584,0.021088,0.030304,0.731584,0.009856
+1003,584.391,1.71118,1.06243,0.009504,0.25264,0.005536,0.004704,0.007328,0.013152,0.02048,0.739168,0.00992
+1004,696.836,1.43506,1.87805,0.009408,0.234304,0.005664,0.004576,0.007424,0.013056,0.014336,1.57805,0.011232
+1005,446.139,2.24146,1.03219,0.008192,0.23472,0.004896,0.004096,0.007936,0.012544,0.014336,0.735232,0.01024
+1006,637.311,1.56909,1.07712,0.008192,0.264192,0.004096,0.005728,0.00656,0.016448,0.030656,0.731136,0.010112
+1007,661.285,1.51221,1.04717,0.008928,0.24112,0.004736,0.004096,0.008032,0.012512,0.015328,0.742368,0.010048
+1008,450.952,2.21753,1.94189,0.008576,0.289344,0.0056,0.004608,0.00736,0.013152,0.014336,1.58717,0.011744
+1009,576.333,1.73511,1.07629,0.009248,0.27104,0.004384,0.005376,0.006912,0.01392,0.014464,0.74112,0.009824
+1010,635.039,1.57471,1.05638,0.008288,0.256,0.00544,0.0048,0.006144,0.014368,0.014336,0.737248,0.00976
+1011,629.089,1.5896,1.07146,0.008512,0.272384,0.00528,0.004832,0.006304,0.013888,0.01424,0.737056,0.00896
+1012,701.73,1.42505,1.03974,0.008192,0.249728,0.004224,0.0056,0.006688,0.014336,0.014336,0.72688,0.00976
+1013,652.229,1.5332,1.67574,0.008992,0.44976,0.035456,0.012448,0.008032,0.013824,0.014208,1.1231,0.00992
+1014,469.187,2.13135,1.05632,0.008192,0.251904,0.005504,0.004736,0.00736,0.01312,0.015424,0.740288,0.009792
+1015,708.896,1.41064,1.19856,0.008672,0.4048,0.0048,0.004096,0.007968,0.013984,0.014656,0.730592,0.008992
+1016,604.754,1.65356,1.90413,0.008224,0.242688,0.004928,0.004256,0.007712,0.012768,0.014336,1.59747,0.011744
+1017,411.328,2.43115,1.05462,0.008736,0.251936,0.005856,0.004384,0.007552,0.012928,0.014336,0.739072,0.009824
+1018,692.945,1.44312,1.03619,0.0096,0.23616,0.005536,0.004704,0.007296,0.013184,0.014368,0.735232,0.010112
+1019,671.145,1.48999,1.21373,0.008192,0.405504,0.005696,0.005568,0.007072,0.01424,0.014528,0.743072,0.009856
+1020,321.381,3.11157,1.06086,0.012192,0.256096,0.005312,0.004864,0.006304,0.014208,0.014368,0.738592,0.008928
+1021,696.007,1.43677,1.03834,0.00944,0.232224,0.004096,0.005792,0.006496,0.013856,0.014624,0.741568,0.01024
+1022,695.416,1.43799,1.24518,0.008192,0.228416,0.004896,0.004256,0.008,0.013888,0.014336,0.950912,0.012288
+1023,575.604,1.7373,1.04038,0.008192,0.232544,0.004928,0.004192,0.007936,0.012544,0.014464,0.746752,0.008832
+1024,504.558,1.98193,1.23085,0.011872,0.4384,0.005568,0.004896,0.006304,0.01424,0.014336,0.726368,0.008864
+1025,609.524,1.64062,1.03184,0.008704,0.23552,0.005664,0.004576,0.007424,0.012992,0.0144,0.732544,0.010016
+1026,656.2,1.52393,1.30048,0.008192,0.241664,0.005792,0.004448,0.00752,0.01296,0.014336,0.994784,0.010784
+1027,590.372,1.69385,1.03885,0.008736,0.243616,0.00464,0.005184,0.007104,0.013376,0.013344,0.733088,0.00976
+1028,699.215,1.43018,1.83091,0.008128,0.243776,0.004096,0.005696,0.006592,0.013856,0.014464,1.52198,0.01232
+1029,441.379,2.26562,1.03488,0.008256,0.23616,0.005408,0.004832,0.007264,0.013216,0.014336,0.735232,0.010176
+1030,700.89,1.42676,1.02579,0.008608,0.233568,0.00416,0.0056,0.00672,0.013696,0.01472,0.72864,0.01008
+1031,613.909,1.62891,1.02982,0.008192,0.231328,0.004192,0.0056,0.00672,0.013408,0.014656,0.735808,0.00992
+1032,655.57,1.52539,1.69696,0.008352,0.449952,0.037312,0.00544,0.00688,0.01408,0.014304,1.15085,0.009792
+1033,472.107,2.11816,1.05472,0.008192,0.256,0.004096,0.005696,0.006592,0.01344,0.014848,0.735648,0.010208
+1034,691.075,1.44702,1.02771,0.007904,0.234304,0.004096,0.005824,0.006464,0.014144,0.014272,0.730944,0.00976
+1035,537.321,1.86108,1.06496,0.0096,0.272896,0.004224,0.005568,0.00672,0.013728,0.014976,0.727008,0.01024
+1036,814.962,1.22705,1.81997,0.008192,0.262144,0.005504,0.004736,0.007296,0.013184,0.014336,1.49094,0.013632
+1037,454.757,2.19897,1.02419,0.008064,0.233632,0.005728,0.004512,0.007616,0.012864,0.014336,0.728544,0.008896
+1038,704.749,1.41895,1.03584,0.009408,0.234336,0.005408,0.0048,0.007264,0.01312,0.014432,0.737152,0.00992
+1039,679.834,1.47095,1.19821,0.008896,0.404928,0.004896,0.004096,0.007936,0.01376,0.01504,0.728928,0.009728
+1040,592.85,1.68677,1.81178,0.009248,0.2424,0.004352,0.00544,0.006848,0.013728,0.014336,1.50179,0.013632
+1041,451.898,2.21289,1.04448,0.008192,0.235488,0.004128,0.005664,0.00784,0.01312,0.014336,0.745472,0.01024
+1042,696.125,1.43652,1.03472,0.008576,0.237344,0.004416,0.005504,0.006784,0.013632,0.014432,0.733792,0.01024
+1043,628.414,1.59131,1.23085,0.008256,0.420608,0.005728,0.00464,0.00736,0.01312,0.014336,0.74704,0.00976
+1044,383.485,2.60767,1.10579,0.008576,0.310304,0.004896,0.004288,0.007744,0.012736,0.01456,0.73296,0.009728
+1045,645.446,1.54932,1.04634,0.012128,0.247264,0.0048,0.004096,0.008064,0.012416,0.014336,0.733184,0.010048
+1046,688.635,1.45215,1.05062,0.008192,0.239616,0.004096,0.005824,0.006464,0.014336,0.014336,0.748736,0.009024
+1047,692.477,1.44409,1.22544,0.00896,0.405472,0.006144,0.005472,0.006848,0.014272,0.014272,0.75376,0.01024
+1048,598.044,1.67212,1.88621,0.008192,0.239616,0.005472,0.004768,0.007392,0.013088,0.014464,1.58224,0.010976
+1049,436.302,2.29199,1.04448,0.008192,0.245792,0.005248,0.004864,0.006304,0.014272,0.014368,0.7352,0.01024
+1050,686.442,1.45679,1.04035,0.008256,0.235552,0.005088,0.004896,0.006368,0.014336,0.014368,0.741344,0.010144
+1051,693.063,1.44287,1.2111,0.009024,0.407072,0.004576,0.005312,0.007008,0.014016,0.014368,0.739584,0.010144
+1052,594.398,1.68237,1.83603,0.008704,0.241696,0.004576,0.005216,0.00704,0.01344,0.014592,1.52797,0.0128
+1053,419.414,2.38428,1.05974,0.007168,0.254944,0.004928,0.004192,0.007712,0.012768,0.014432,0.744672,0.008928
+1054,681.758,1.4668,1.04477,0.008416,0.23536,0.004704,0.004096,0.008192,0.013376,0.014336,0.746432,0.009856
+1055,703.297,1.42188,1.20013,0.008416,0.40528,0.006144,0.004096,0.008192,0.014048,0.014144,0.729568,0.01024
+1056,584.558,1.71069,1.41706,0.008192,0.267744,0.00464,0.005152,0.007072,0.013536,0.014496,1.0841,0.012128
+1057,493.494,2.02637,1.06294,0.00928,0.260128,0.004928,0.004192,0.007712,0.012768,0.014336,0.740416,0.009184
+1058,696.007,1.43677,1.03219,0.009312,0.231424,0.005024,0.004096,0.008224,0.014304,0.014336,0.735232,0.01024
+1059,656.2,1.52393,1.40378,0.008768,0.233344,0.004544,0.005184,0.006944,0.01248,0.01424,1.10803,0.01024
+1060,561.943,1.77954,1.37626,0.008192,0.240704,0.004928,0.004224,0.007776,0.013888,0.014336,1.07104,0.011168
+1061,495.045,2.02002,1.04794,0.007904,0.237952,0.005824,0.004416,0.007616,0.012864,0.014336,0.747264,0.00976
+1062,457.654,2.18506,1.08518,0.00864,0.264224,0.005472,0.004768,0.007264,0.013216,0.01552,0.756192,0.009888
+1063,1011.11,0.989014,1.45654,0.008256,0.270816,0.004192,0.0056,0.00784,0.013184,0.014336,1.1223,0.010016
+1064,570.633,1.75244,1.34774,0.008352,0.258048,0.00544,0.0048,0.007392,0.01312,0.014304,1.00352,0.032768
+1065,501.285,1.99487,1.05267,0.009312,0.236448,0.005504,0.004736,0.006144,0.014368,0.014336,0.751584,0.01024
+1066,714.585,1.39941,1.04176,0.008192,0.233472,0.005536,0.004704,0.007232,0.013248,0.014336,0.74528,0.00976
+1067,654.522,1.52783,1.43338,0.008608,0.24512,0.004736,0.004096,0.008096,0.013632,0.014272,1.12317,0.011648
+1068,544.826,1.83545,1.04832,0.008192,0.245696,0.00416,0.005632,0.006656,0.014016,0.014528,0.739456,0.009984
+1069,448.533,2.22949,1.06186,0.0112,0.257376,0.004768,0.004096,0.008032,0.012448,0.014336,0.74048,0.00912
+1070,693.18,1.44263,1.04086,0.008704,0.235488,0.004096,0.00576,0.006528,0.01408,0.014624,0.74288,0.008704
+1071,700.53,1.42749,1.44221,0.008064,0.246528,0.00416,0.005792,0.006464,0.013856,0.01456,1.13066,0.012128
+1072,511.106,1.95654,1.34922,0.007936,0.243968,0.005312,0.004928,0.007712,0.014656,0.014336,1.01139,0.038976
+1073,496.726,2.01318,1.0495,0.008736,0.239104,0.00496,0.004096,0.007808,0.012672,0.014336,0.748896,0.008896
+1074,701.971,1.42456,1.04941,0.00896,0.238976,0.0048,0.004096,0.008224,0.0136,0.01456,0.747136,0.009056
+1075,687.364,1.45483,1.42749,0.008928,0.235232,0.00464,0.005184,0.007104,0.012288,0.015776,1.12627,0.012064
+1076,537.462,1.8606,1.05699,0.008416,0.249184,0.004768,0.004096,0.008096,0.01344,0.0144,0.745504,0.009088
+1077,586.988,1.70361,1.27101,0.038944,0.421856,0.005792,0.005536,0.007072,0.013632,0.014656,0.75392,0.0096
+1078,616.96,1.62085,1.03446,0.008416,0.23264,0.004896,0.004128,0.008224,0.013824,0.014464,0.739168,0.008704
+1079,648.204,1.54272,1.29638,0.008352,0.23056,0.004768,0.004288,0.007808,0.012672,0.014336,1.00147,0.012128
+1080,610.159,1.63892,1.04054,0.008288,0.237472,0.004096,0.005856,0.006432,0.014368,0.014304,0.7408,0.008928
+1081,528.38,1.89258,1.67731,0.00976,0.452256,0.027456,0.005728,0.00656,0.014336,0.014368,1.13664,0.010208
+1082,550.168,1.81763,1.0672,0.008544,0.256416,0.004192,0.0056,0.006688,0.013696,0.014464,0.747872,0.009728
+1083,619.855,1.61328,1.06566,0.008352,0.26032,0.004576,0.005216,0.007072,0.013568,0.014496,0.741984,0.01008
+1084,677.473,1.47607,1.06573,0.008192,0.262016,0.004928,0.005408,0.006944,0.014336,0.014336,0.741152,0.008416
+1085,648.306,1.54248,1.93114,0.008384,0.264832,0.005696,0.004544,0.007456,0.013024,0.014336,1.60154,0.011328
+1086,409.395,2.44263,1.06496,0.008096,0.256224,0.004128,0.005632,0.006656,0.013888,0.014336,0.74592,0.01008
+1087,719.101,1.39062,1.27757,0.009888,0.252256,0.005632,0.004608,0.007392,0.01312,0.014304,0.958464,0.011904
+1088,566.137,1.76636,1.07453,0.009568,0.264896,0.005248,0.004864,0.006336,0.01424,0.014336,0.745472,0.009568
+1089,579.431,1.72583,1.7105,0.008608,0.45056,0.032096,0.012992,0.00768,0.012864,0.014336,1.16112,0.01024
+1090,507.37,1.97095,1.0655,0.008672,0.251936,0.005184,0.004896,0.006304,0.014336,0.014336,0.751104,0.008736
+1091,690.376,1.44849,1.31686,0.008224,0.241344,0.004384,0.005536,0.006752,0.014048,0.014656,1.01101,0.010912
+1092,569.205,1.75684,1.04454,0.00848,0.24368,0.005888,0.004352,0.007584,0.012896,0.014336,0.73728,0.010048
+1093,628.317,1.59155,1.8985,0.008224,0.26176,0.004448,0.005408,0.00688,0.013312,0.01456,1.57363,0.010272
+1094,443.482,2.25488,1.04166,0.008192,0.238624,0.004928,0.004256,0.007808,0.012672,0.015392,0.740192,0.0096
+1095,690.609,1.448,1.25024,0.008448,0.23824,0.004128,0.005664,0.006624,0.01344,0.014272,0.949184,0.01024
+1096,589.692,1.6958,1.07318,0.009632,0.262752,0.0056,0.00464,0.007488,0.012992,0.014368,0.746976,0.008736
+1097,676.131,1.479,1.74784,0.008256,0.505696,0.009184,0.024576,0.022528,0.014368,0.014304,1.13872,0.010208
+1098,466.727,2.14258,1.0487,0.00832,0.23296,0.004608,0.005184,0.00704,0.013408,0.013504,0.75344,0.01024
+1099,603.329,1.65747,1.34374,0.008288,0.28048,0.004544,0.005216,0.007072,0.013664,0.014592,0.999008,0.01088
+1100,583.559,1.71362,1.0472,0.010368,0.241856,0.004448,0.005312,0.006976,0.013664,0.014368,0.74,0.010208
+1101,441.855,2.26318,1.0752,0.01168,0.266272,0.004672,0.004096,0.008192,0.01392,0.014464,0.741664,0.01024
+1102,709.51,1.40942,1.0545,0.008192,0.247424,0.00448,0.005888,0.0064,0.014144,0.014528,0.743424,0.010016
+1103,696.125,1.43652,1.30048,0.009504,0.233824,0.00448,0.005312,0.006976,0.013312,0.013312,1.00259,0.011168
+1104,551.501,1.81323,1.06349,0.00848,0.24208,0.005824,0.004416,0.007616,0.012864,0.014336,0.75776,0.010112
+1105,685.638,1.4585,1.75005,0.008224,0.501728,0.007232,0.005056,0.007744,0.014144,0.035456,1.16054,0.00992
+1106,471.998,2.11865,1.0425,0.008256,0.235552,0.005536,0.004672,0.008,0.01248,0.014336,0.7448,0.008864
+1107,665.692,1.5022,1.04064,0.008448,0.233536,0.004096,0.00576,0.006528,0.014048,0.014528,0.74352,0.010176
+1108,563.334,1.77515,1.16522,0.008288,0.344992,0.004896,0.00432,0.00768,0.0128,0.014336,0.75776,0.010144
+1109,602.707,1.65918,1.95226,0.008704,0.280608,0.005376,0.004864,0.006304,0.014208,0.015584,1.60454,0.012064
+1110,432.341,2.31299,1.07958,0.00848,0.274432,0.005952,0.004288,0.007744,0.012736,0.014336,0.741376,0.01024
+1111,705.963,1.4165,1.44042,0.0088,0.243456,0.004416,0.005344,0.006944,0.012288,0.014368,1.13251,0.012288
+1112,510.087,1.96045,1.0649,0.026624,0.241056,0.004704,0.004096,0.008064,0.012544,0.015296,0.742336,0.010176
+1113,566.45,1.76538,1.25792,0.034848,0.424416,0.005568,0.00496,0.00768,0.0128,0.015584,0.742176,0.009888
+1114,653.165,1.53101,1.05101,0.008672,0.239264,0.004896,0.004096,0.007968,0.013664,0.014336,0.748416,0.009696
+1115,691.425,1.44629,1.06467,0.008608,0.237568,0.004096,0.005792,0.006528,0.013792,0.014592,0.763872,0.009824
+1116,571.508,1.74976,1.0896,0.008256,0.27184,0.00464,0.00512,0.007136,0.012448,0.014208,0.756736,0.009216
+1117,544.03,1.83813,1.79814,0.01024,0.543904,0.007008,0.005696,0.006592,0.030656,0.038976,1.14483,0.01024
+1118,472.434,2.1167,1.07139,0.00848,0.260128,0.005824,0.004384,0.007584,0.012928,0.014336,0.748608,0.00912
+1119,695.416,1.43799,1.32899,0.009632,0.255808,0.004896,0.004096,0.008,0.01408,0.014336,1.00602,0.012128
+1120,569.839,1.75488,1.06461,0.008192,0.251904,0.004096,0.005856,0.006432,0.014368,0.014304,0.749568,0.009888
+1121,557.431,1.79395,1.29616,0.052416,0.430592,0.005568,0.004992,0.007616,0.012864,0.015584,0.75648,0.010048
+1122,605.828,1.65063,1.06061,0.009792,0.239712,0.004448,0.005344,0.006944,0.013568,0.014976,0.75584,0.009984
+1123,657.253,1.52148,1.06,0.008192,0.236704,0.004928,0.004128,0.007904,0.013792,0.014752,0.759872,0.009728
+1124,622.492,1.60645,1.05875,0.009696,0.245824,0.004576,0.005216,0.007072,0.013472,0.014592,0.748128,0.010176
+1125,675.908,1.47949,1.3816,0.008192,0.247808,0.005504,0.004736,0.007264,0.013216,0.014336,1.06906,0.011488
+1126,447.308,2.2356,1.08746,0.008768,0.274656,0.0056,0.004608,0.007328,0.013152,0.014336,0.749408,0.0096
+1127,711.235,1.40601,1.10592,0.00976,0.274912,0.00528,0.004832,0.006304,0.014304,0.014272,0.76736,0.008896
+1128,583.476,1.71387,1.10819,0.008384,0.292864,0.00528,0.004896,0.006272,0.014208,0.014432,0.75296,0.008896
+1129,611.8,1.63452,1.45126,0.008192,0.278528,0.005568,0.004672,0.018432,0.014272,0.020192,1.07965,0.02176
+1130,469.779,2.12866,1.10835,0.008832,0.286336,0.004864,0.004096,0.008192,0.013504,0.014592,0.758336,0.0096
+1131,693.18,1.44263,1.06259,0.00928,0.25696,0.005888,0.004352,0.007776,0.012704,0.015392,0.74032,0.00992
+1132,599.883,1.66699,1.05654,0.008192,0.243712,0.005664,0.004576,0.007456,0.014272,0.014464,0.748192,0.010016
+1133,674.017,1.48364,1.8432,0.009504,0.254688,0.005632,0.004608,0.007392,0.013088,0.014336,1.52166,0.012288
+1134,407.968,2.45117,1.10576,0.008512,0.292864,0.005376,0.004864,0.006176,0.014304,0.014336,0.749536,0.009792
+1135,404.264,2.47363,1.08989,0.008512,0.261504,0.004736,0.004096,0.008192,0.01392,0.014784,0.763872,0.010272
+1136,1098.12,0.910645,1.07754,0.008512,0.251872,0.005632,0.004608,0.007616,0.012864,0.014336,0.76304,0.009056
+1137,620.418,1.61182,1.82656,0.008192,0.544256,0.006656,0.0056,0.006688,0.014336,0.071616,1.15923,0.009984
+1138,450.704,2.21875,1.0585,0.008544,0.246976,0.004928,0.004096,0.007936,0.013696,0.014528,0.748032,0.00976
+1139,697.31,1.43408,1.29866,0.008288,0.231392,0.004256,0.005504,0.006784,0.0136,0.014624,1.00192,0.012288
+1140,583.808,1.71289,1.04154,0.008192,0.23552,0.00528,0.004864,0.006272,0.014304,0.014336,0.7432,0.009568
+1141,560.328,1.78467,1.73232,0.008192,0.454656,0.006144,0.011648,0.047744,0.013984,0.014112,1.16589,0.009952
+1142,531.672,1.88086,1.03683,0.00864,0.235488,0.004224,0.005568,0.007968,0.013088,0.014336,0.738784,0.008736
+1143,633.467,1.57861,1.31482,0.008192,0.23872,0.004992,0.005312,0.006976,0.013664,0.014176,1.01219,0.010592
+1144,612.349,1.63306,1.05277,0.007904,0.23936,0.004736,0.004096,0.007968,0.013632,0.013216,0.751616,0.01024
+1145,471.944,2.1189,1.70189,0.009888,0.455008,0.026624,0.006144,0.007488,0.012992,0.015808,1.1577,0.01024
+1146,589.692,1.6958,1.0793,0.008192,0.264224,0.005152,0.004864,0.006336,0.014272,0.014304,0.751712,0.01024
+1147,646.567,1.54663,1.33997,0.008768,0.248896,0.004928,0.005568,0.006848,0.014048,0.014496,1.0256,0.010816
+1148,566.293,1.76587,1.06717,0.008096,0.262368,0.004096,0.005984,0.006304,0.014176,0.01424,0.7432,0.008704
+1149,658.627,1.51831,1.70541,0.008224,0.44432,0.026624,0.02864,0.00992,0.013856,0.014656,1.14918,0.009984
+1150,464.031,2.15503,1.06906,0.008384,0.247648,0.005504,0.004704,0.007296,0.013088,0.014432,0.759168,0.008832
+1151,636.222,1.57178,1.36285,0.008352,0.269024,0.005312,0.004864,0.006304,0.014208,0.014368,1.02963,0.010784
+1152,579.513,1.72559,1.07693,0.008288,0.243712,0.00512,0.004864,0.006432,0.014304,0.014336,0.770048,0.009824
+1153,640.4,1.56152,1.70179,0.009376,0.449024,0.039264,0.006144,0.007584,0.013952,0.014656,1.15165,0.010144
+1154,412.238,2.42578,1.08576,0.008512,0.2744,0.004128,0.005664,0.006624,0.014048,0.014368,0.747776,0.01024
+1155,708.528,1.41138,1.45818,0.008192,0.259136,0.004928,0.004224,0.00768,0.0128,0.014336,1.13459,0.012288
+1156,522.782,1.91284,1.10634,0.007968,0.268896,0.004096,0.005856,0.006432,0.014016,0.01408,0.776096,0.008896
+1157,594.14,1.68311,1.70781,0.008384,0.455872,0.04064,0.005056,0.007744,0.013952,0.0144,1.15174,0.010016
+1158,489.191,2.04419,1.06086,0.008192,0.249888,0.005536,0.004672,0.00736,0.01312,0.014368,0.748608,0.00912
+1159,590.883,1.69238,1.45613,0.008192,0.25808,0.00512,0.004832,0.0064,0.014144,0.014528,1.13459,0.01024
+1160,596.563,1.67627,1.91082,0.008224,0.239168,0.004544,0.005216,0.007072,0.012288,0.014336,1.6089,0.011072
+1161,416.981,2.39819,1.07318,0.008384,0.239424,0.00512,0.004864,0.0064,0.01408,0.014432,0.770208,0.010272
+1162,521.85,1.91626,1.08275,0.007904,0.268384,0.004608,0.005184,0.007072,0.01232,0.014336,0.753088,0.009856
+1163,864.135,1.15723,1.21856,0.008192,0.406976,0.004672,0.005184,0.007072,0.013696,0.014464,0.748064,0.01024
+1164,565.59,1.76807,1.92512,0.008224,0.255968,0.004096,0.005824,0.006464,0.013792,0.01488,1.60483,0.01104
+1165,440.335,2.271,1.05318,0.008384,0.234048,0.005536,0.004704,0.007232,0.01328,0.014304,0.755712,0.009984
+1166,666.45,1.50049,1.05997,0.007968,0.231648,0.00544,0.0048,0.0072,0.01328,0.014336,0.765632,0.009664
+1167,657.886,1.52002,1.24944,0.009664,0.404032,0.005408,0.004832,0.006144,0.014336,0.014336,0.78176,0.008928
+1168,523.517,1.91016,1.67904,0.00832,0.46784,0.007104,0.00416,0.008192,0.014336,0.014336,1.14467,0.01008
+1169,538.027,1.85864,1.05952,0.008864,0.23696,0.004768,0.004064,0.00928,0.013248,0.014336,0.75776,0.01024
+1170,640.1,1.56226,1.05917,0.008448,0.230816,0.0048,0.004096,0.008,0.012576,0.015488,0.764704,0.01024
+1171,588.76,1.69849,1.21917,0.008768,0.405344,0.004288,0.005536,0.00672,0.013984,0.0144,0.75136,0.008768
+1172,766.467,1.30469,1.84982,0.007904,0.239552,0.004896,0.004128,0.008224,0.013792,0.01456,1.54448,0.012288
+1173,444.107,2.25171,1.05882,0.008192,0.23552,0.005568,0.004672,0.007296,0.013184,0.013696,0.76208,0.008608
+1174,680.06,1.47046,1.07904,0.009888,0.235232,0.004736,0.005184,0.007072,0.01344,0.014304,0.7792,0.009984
+1175,666.125,1.50122,1.28582,0.009408,0.45344,0.006048,0.004192,0.007776,0.013888,0.01456,0.766592,0.00992
+1176,575.847,1.73657,1.81491,0.008448,0.237568,0.005536,0.004704,0.007264,0.013216,0.015392,1.50982,0.01296
+1177,451.101,2.2168,1.0551,0.008,0.237376,0.004864,0.004096,0.007872,0.012608,0.014336,0.756736,0.009216
+1178,690.376,1.44849,1.05066,0.008256,0.229344,0.004096,0.005856,0.006432,0.014208,0.014464,0.759104,0.008896
+1179,672.357,1.4873,1.4593,0.008352,0.25776,0.004224,0.006144,0.007584,0.012576,0.0144,1.13818,0.01008
+1180,427.245,2.34058,1.83405,0.008192,0.255328,0.004768,0.004096,0.008064,0.013504,0.013248,1.51312,0.013728
+1181,568.1,1.76025,1.06758,0.008576,0.231616,0.005312,0.004864,0.007232,0.013344,0.014304,0.77312,0.009216
+1182,654.313,1.52832,1.05427,0.008192,0.229376,0.004096,0.005696,0.006592,0.01376,0.014048,0.76272,0.009792
+1183,684.149,1.46167,1.2376,0.007328,0.409408,0.005632,0.004608,0.007328,0.013152,0.014336,0.765952,0.009856
+1184,616.403,1.62231,1.92307,0.008192,0.23888,0.004832,0.004096,0.007936,0.012608,0.014336,1.62118,0.011008
+1185,420.189,2.37988,1.0528,0.008,0.227648,0.005568,0.004672,0.007232,0.013248,0.014336,0.763232,0.008864
+1186,672.357,1.4873,1.0535,0.008512,0.225792,0.004096,0.005728,0.00656,0.013952,0.014304,0.765664,0.008896
+1187,694.355,1.44019,1.23712,0.008288,0.405504,0.004224,0.005632,0.006528,0.014336,0.014368,0.769088,0.009152
+1188,582.314,1.71729,1.84934,0.009376,0.26096,0.005248,0.004864,0.006336,0.014144,0.0144,1.52138,0.01264
+1189,413.32,2.41943,1.07738,0.00832,0.244992,0.004864,0.004096,0.007968,0.012512,0.015456,0.768928,0.01024
+1190,448.778,2.22827,1.06733,0.008512,0.239488,0.004224,0.005568,0.006752,0.014048,0.01456,0.76512,0.009056
+1191,1262.64,0.791992,1.23498,0.008704,0.405632,0.005504,0.004736,0.006144,0.014336,0.014336,0.76576,0.009824
+1192,610.159,1.63892,1.93869,0.008416,0.253056,0.004768,0.004096,0.008032,0.013536,0.015072,1.61994,0.011776
+1193,439.485,2.27539,1.06704,0.008256,0.227296,0.005568,0.004672,0.007904,0.012576,0.014336,0.776192,0.01024
+1194,657.675,1.52051,1.05718,0.008608,0.226592,0.004832,0.004096,0.007936,0.013664,0.014432,0.76784,0.009184
+1195,548.841,1.82202,1.23126,0.008896,0.405664,0.006016,0.004224,0.007712,0.014176,0.014432,0.760064,0.01008
+1196,757.536,1.32007,1.74573,0.008416,0.522848,0.00784,0.004448,0.00752,0.012992,0.01584,1.15562,0.010208
+1197,467.9,2.13721,1.06544,0.008128,0.227872,0.005696,0.004544,0.007968,0.012512,0.015424,0.774112,0.009184
+1198,610.887,1.63696,1.09418,0.008736,0.257344,0.0048,0.004096,0.007968,0.012512,0.014336,0.774144,0.01024
+1199,667.862,1.49731,1.23642,0.008192,0.405504,0.005312,0.004864,0.006208,0.014336,0.014336,0.768,0.009664
+1200,641.906,1.55786,1.83091,0.009312,0.2344,0.005376,0.004864,0.0072,0.013312,0.014304,1.52938,0.012768
+1201,428.004,2.33643,1.09366,0.008192,0.253632,0.004416,0.005216,0.007008,0.012384,0.015904,0.778016,0.008896
+1202,684.035,1.46191,1.0543,0.009504,0.228064,0.00592,0.00432,0.007616,0.012864,0.014336,0.761856,0.009824
+1203,695.77,1.43726,1.23091,0.008864,0.405824,0.005504,0.004736,0.007264,0.013216,0.014336,0.76144,0.009728
+1204,612.623,1.63232,1.80061,0.008608,0.233504,0.0056,0.004608,0.007296,0.013216,0.014336,1.50019,0.013248
+1205,446.431,2.23999,1.04829,0.008192,0.231424,0.00592,0.00432,0.007424,0.013088,0.014304,0.753664,0.009952
+1206,683.921,1.46216,1.07165,0.008704,0.236032,0.005536,0.004704,0.008032,0.012448,0.015776,0.770656,0.00976
+1207,523.584,1.90991,1.48624,0.008192,0.27648,0.005984,0.004256,0.007648,0.012832,0.01568,1.14502,0.010144
+1208,654.627,1.52759,1.87187,0.008352,0.271776,0.004544,0.005248,0.00704,0.01344,0.013184,1.536,0.012288
+1209,440.572,2.26978,1.06291,0.009536,0.238272,0.005344,0.004832,0.00624,0.014208,0.014432,0.761184,0.008864
+1210,693.884,1.44116,1.06339,0.008448,0.227808,0.005792,0.004448,0.007712,0.0128,0.015424,0.770976,0.009984
+1211,647.794,1.5437,1.23994,0.008896,0.413632,0.004352,0.005504,0.006784,0.014144,0.014496,0.763008,0.00912
+1212,614.738,1.62671,1.91354,0.008576,0.24608,0.004096,0.00576,0.006528,0.01392,0.01456,1.60173,0.012288
+1213,430.342,2.32373,1.0655,0.00848,0.237216,0.004704,0.004096,0.008192,0.014208,0.014464,0.763904,0.01024
+1214,664.288,1.50537,1.05459,0.008512,0.229376,0.005408,0.004832,0.006144,0.014272,0.0144,0.761856,0.009792
+1215,711.111,1.40625,1.25536,0.007104,0.406816,0.004832,0.004096,0.016384,0.014336,0.014336,0.777792,0.009664
+1216,521.319,1.91821,1.9415,0.009408,0.260928,0.005984,0.004256,0.00768,0.0128,0.014336,1.61533,0.010784
+1217,440.999,2.26758,1.05677,0.009536,0.233376,0.0048,0.004192,0.007712,0.012768,0.015648,0.758496,0.01024
+1218,700.051,1.42847,1.06477,0.008704,0.22736,0.005824,0.004416,0.007456,0.013024,0.014336,0.774048,0.0096
+1219,607.625,1.64575,1.06003,0.00832,0.229248,0.00592,0.00432,0.00816,0.013632,0.014624,0.766272,0.009536
+1220,666.992,1.49927,1.89203,0.008224,0.23344,0.005888,0.004352,0.007584,0.014176,0.014432,1.59194,0.012
+1221,435.374,2.29688,1.07104,0.008768,0.239552,0.00416,0.006048,0.006368,0.014208,0.014336,0.767936,0.009664
+1222,686.557,1.45654,1.05606,0.009312,0.226208,0.004096,0.005792,0.006496,0.01392,0.014624,0.765984,0.009632
+1223,667.21,1.49878,1.24221,0.008192,0.405504,0.005664,0.004576,0.007392,0.01424,0.014688,0.77232,0.009632
+1224,582.066,1.71802,1.70525,0.009568,0.446816,0.040672,0.004704,0.007264,0.014368,0.014496,1.1575,0.009856
+1225,469.402,2.13037,1.06291,0.008192,0.23264,0.004928,0.004096,0.007872,0.012608,0.014496,0.76912,0.00896
+1226,657.042,1.52197,1.0567,0.00944,0.229344,0.004928,0.004096,0.00784,0.01264,0.014336,0.763904,0.010176
+1227,667.21,1.49878,1.23341,0.006656,0.407552,0.00528,0.004864,0.00624,0.014336,0.014336,0.763904,0.01024
+1228,628.125,1.59204,1.91389,0.009632,0.232032,0.005536,0.004704,0.007232,0.013248,0.014336,1.61565,0.01152
+1229,429.575,2.32788,1.06534,0.008576,0.233472,0.00544,0.0048,0.006144,0.014336,0.014336,0.769376,0.008864
+1230,652.957,1.53149,1.06726,0.00848,0.226624,0.004768,0.004096,0.007968,0.0136,0.014528,0.77696,0.01024
+1231,674.461,1.48267,1.24038,0.008192,0.405504,0.005536,0.004704,0.007296,0.013184,0.014336,0.772032,0.0096
+1232,567.628,1.76172,1.91293,0.007968,0.233792,0.004096,0.006144,0.007456,0.013024,0.014336,1.61517,0.010944
+1233,451.549,2.2146,1.05898,0.008768,0.230816,0.004832,0.004096,0.008,0.01248,0.014368,0.765856,0.00976
+1234,590.457,1.6936,1.09968,0.009952,0.260384,0.004096,0.00576,0.006528,0.014176,0.014496,0.774176,0.010112
+1235,671.696,1.48877,1.25008,0.008544,0.405824,0.004224,0.005632,0.006688,0.014176,0.0144,0.780352,0.01024
+1236,583.31,1.71436,1.87597,0.008192,0.268288,0.0056,0.00464,0.007328,0.013152,0.014336,1.54214,0.012288
+1237,449.665,2.22388,1.06867,0.00832,0.23312,0.00432,0.005472,0.006816,0.012288,0.015392,0.773088,0.009856
+1238,692.594,1.44385,1.06896,0.008192,0.233472,0.005728,0.004512,0.007296,0.013184,0.014336,0.772096,0.010144
+1239,641.202,1.55957,1.0647,0.00848,0.231456,0.004192,0.005664,0.006528,0.013696,0.01456,0.770272,0.009856
+1240,613.909,1.62891,1.69987,0.008192,0.45056,0.026624,0.005472,0.006848,0.014016,0.0144,1.16458,0.009184
+1241,496.786,2.01294,1.06141,0.008256,0.231744,0.004224,0.005568,0.00672,0.013408,0.014304,0.766912,0.010272
+1242,665.692,1.5022,1.0632,0.00848,0.227328,0.005536,0.004704,0.006304,0.014176,0.014368,0.772064,0.01024
+1243,443.434,2.25513,1.24723,0.008672,0.406848,0.004832,0.004064,0.008128,0.013728,0.014496,0.776704,0.00976
+1244,938.159,1.06592,1.93747,0.008256,0.26832,0.005408,0.0048,0.007232,0.01472,0.014784,1.60323,0.01072
+1245,389.576,2.56689,1.15328,0.009536,0.317792,0.004448,0.005344,0.006944,0.013728,0.0144,0.772064,0.009024
+1246,591.737,1.68994,1.12746,0.008256,0.288704,0.005472,0.004768,0.018432,0.014144,0.020256,0.757824,0.0096
+1247,609.978,1.6394,1.06701,0.01024,0.23552,0.005888,0.004352,0.008064,0.013472,0.014688,0.766016,0.008768
+1248,649.128,1.54053,1.70752,0.008192,0.45056,0.026624,0.004096,0.008064,0.01392,0.014464,1.17152,0.01008
+1249,489.894,2.04126,1.0759,0.008256,0.234336,0.004096,0.005856,0.006432,0.013984,0.014464,0.778464,0.010016
+1250,676.242,1.47876,1.06291,0.008,0.230848,0.004864,0.004096,0.007936,0.012544,0.015584,0.769984,0.009056
+1251,624.2,1.60205,1.0728,0.008192,0.229376,0.005408,0.004832,0.00624,0.013952,0.014432,0.78048,0.009888
+1252,626.204,1.59692,1.86029,0.008576,0.244064,0.005696,0.004512,0.007456,0.013024,0.014336,1.54995,0.012672
+1253,429.981,2.32568,1.09325,0.00832,0.25744,0.004864,0.006144,0.007264,0.013248,0.014272,0.771904,0.009792
+1254,689.33,1.45068,1.07949,0.008384,0.228608,0.004864,0.004096,0.007744,0.012768,0.014304,0.789536,0.009184
+1255,620.042,1.61279,1.05984,0.008128,0.22848,0.004928,0.004224,0.007584,0.012896,0.014336,0.768,0.011264
+1256,598.393,1.67114,1.68758,0.00848,0.458784,0.01552,0.004864,0.006304,0.014336,0.014304,1.15507,0.00992
+1257,522.516,1.91382,1.0672,0.00832,0.232832,0.004768,0.004096,0.008192,0.013344,0.01456,0.772256,0.008832
+1258,682.212,1.46582,1.08531,0.008384,0.2496,0.00416,0.0056,0.006688,0.014016,0.014368,0.772384,0.010112
+1259,662.89,1.50854,1.24048,0.008192,0.406688,0.00496,0.004096,0.007808,0.014272,0.01472,0.77008,0.009664
+1260,554.263,1.8042,1.7248,0.008608,0.466624,0.031008,0.005344,0.006944,0.014144,0.014144,1.16774,0.01024
+1261,416.345,2.40186,1.08042,0.009376,0.24048,0.005664,0.004576,0.00736,0.013152,0.014336,0.775456,0.010016
+1262,778.559,1.28442,1.04749,0.008928,0.227552,0.005312,0.004864,0.006208,0.014368,0.014336,0.756864,0.009056
+1263,695.416,1.43799,1.25066,0.008192,0.405504,0.005632,0.004608,0.007328,0.01328,0.015456,0.781024,0.009632
+1264,604.13,1.65527,1.8993,0.008832,0.23776,0.00544,0.0048,0.007584,0.012896,0.014336,1.59539,0.012256
+1265,434.22,2.30298,1.07149,0.008544,0.231424,0.005888,0.004352,0.008224,0.01344,0.014432,0.776256,0.008928
+1266,653.165,1.53101,1.0585,0.008352,0.226304,0.004928,0.004288,0.007584,0.012896,0.014336,0.770048,0.00976
+1267,659.369,1.5166,1.26378,0.008352,0.406592,0.015008,0.005824,0.006752,0.014176,0.014528,0.782304,0.01024
+1268,599.532,1.66797,1.89792,0.008512,0.233408,0.00416,0.005632,0.006656,0.014048,0.014176,1.59958,0.011744
+1269,424.104,2.35791,1.05462,0.008448,0.22912,0.005696,0.004544,0.008064,0.012416,0.015712,0.76048,0.010144
+1270,683.692,1.46265,1.07885,0.008352,0.245568,0.004288,0.005504,0.006784,0.01392,0.014496,0.770016,0.00992
+1271,611.983,1.63403,1.05882,0.008224,0.229344,0.005952,0.004288,0.007648,0.012832,0.014336,0.767232,0.00896
+1272,326.245,3.06519,1.59085,0.00816,0.726336,0.00688,0.004096,0.008064,0.013952,0.0144,0.799168,0.009792
+1273,921.07,1.08569,1.04666,0.00832,0.228416,0.004928,0.004224,0.008192,0.013376,0.014464,0.754496,0.01024
+1274,713.589,1.40137,1.05648,0.009248,0.222176,0.005664,0.004576,0.006176,0.014048,0.014592,0.769952,0.010048
+1275,590.457,1.6936,1.05411,0.00944,0.223552,0.004576,0.005216,0.00704,0.01232,0.014336,0.76784,0.009792
+1276,449.517,2.22461,1.06704,0.012192,0.227424,0.00576,0.00448,0.007648,0.012928,0.015424,0.77248,0.008704
+1277,675.573,1.48022,1.06202,0.009344,0.224128,0.00576,0.00448,0.00752,0.01296,0.014336,0.77392,0.009568
+1278,690.143,1.44897,1.05072,0.009376,0.224096,0.004096,0.005728,0.00656,0.013984,0.014336,0.763872,0.008672
+1279,562.715,1.7771,1.06454,0.009568,0.225696,0.004352,0.005408,0.00688,0.01408,0.014304,0.774432,0.009824
+1280,445.993,2.24219,1.05981,0.0112,0.23552,0.004096,0.005824,0.006464,0.014048,0.014368,0.758016,0.010272
+1281,673.463,1.48486,1.05907,0.008128,0.224096,0.005504,0.004736,0.007744,0.012736,0.014336,0.771936,0.009856
+1282,696.007,1.43677,1.05882,0.009376,0.221184,0.004928,0.004128,0.00768,0.0128,0.014336,0.775488,0.008896
+1283,625.248,1.59937,1.05309,0.008576,0.221216,0.005472,0.004768,0.006144,0.014112,0.014464,0.769312,0.009024
+1284,629.186,1.58936,1.68346,0.008416,0.45648,0.008064,0.004224,0.007744,0.014464,0.016736,1.15709,0.01024
+1285,507.811,1.96924,1.05472,0.009696,0.221728,0.004096,0.00576,0.007712,0.01312,0.0144,0.767968,0.01024
+1286,667.862,1.49731,1.06717,0.008704,0.223392,0.004256,0.005536,0.006752,0.013824,0.014432,0.780704,0.009568
+1287,679.947,1.4707,1.24061,0.009312,0.410144,0.00448,0.005952,0.006336,0.014336,0.014336,0.765888,0.009824
+1288,464.452,2.15308,1.70752,0.008192,0.479232,0.007296,0.004864,0.006272,0.014336,0.014336,1.16285,0.010144
+1289,567.077,1.76343,1.06701,0.008192,0.227136,0.004288,0.005472,0.006816,0.013408,0.01456,0.776896,0.01024
+1290,710.618,1.40723,1.06032,0.008224,0.2224,0.004896,0.004096,0.007968,0.012512,0.01536,0.775104,0.00976
+1291,660.006,1.51514,1.23699,0.008192,0.407456,0.004192,0.005632,0.006656,0.014112,0.01456,0.765984,0.010208
+1292,625.153,1.59961,1.94173,0.008608,0.2728,0.005344,0.004896,0.007232,0.013248,0.014336,1.60352,0.011744
+1293,419.371,2.38452,1.06083,0.008224,0.225248,0.005184,0.004832,0.006368,0.014336,0.014336,0.772096,0.010208
+1294,683.921,1.46216,1.07117,0.008256,0.222624,0.004704,0.004096,0.007968,0.013824,0.015072,0.784384,0.01024
+1295,640.701,1.56079,1.23085,0.008192,0.405504,0.005152,0.004832,0.0064,0.014336,0.014368,0.7632,0.008864
+1296,624.676,1.60083,1.89606,0.00832,0.229248,0.004096,0.005792,0.006496,0.013984,0.014464,1.60176,0.011904
+1297,376.229,2.65796,1.32947,0.008544,0.493536,0.005472,0.004768,0.007584,0.012896,0.014336,0.772288,0.010048
+1298,652.437,1.53271,1.07418,0.009216,0.2304,0.005472,0.004768,0.007168,0.013312,0.014368,0.779808,0.009664
+1299,647.794,1.5437,1.06701,0.009632,0.22704,0.004992,0.004096,0.007488,0.012896,0.014464,0.777856,0.008544
+1300,674.794,1.48193,1.91866,0.007968,0.2352,0.004896,0.00416,0.008128,0.013728,0.01424,1.61869,0.011648
+1301,416.726,2.39966,1.05965,0.008768,0.228928,0.004864,0.005504,0.006784,0.013376,0.014496,0.766752,0.010176
+1302,661.072,1.5127,1.05821,0.009216,0.226304,0.005344,0.004864,0.006304,0.013888,0.014432,0.768224,0.009632
+1303,648.82,1.54126,1.05677,0.008224,0.2232,0.005792,0.004448,0.00752,0.01296,0.014336,0.770048,0.01024
+1304,675.908,1.47949,1.71472,0.008672,0.46112,0.022432,0.004192,0.007744,0.014432,0.014496,1.17165,0.009984
+1305,480.357,2.08179,1.05882,0.008192,0.227328,0.004096,0.005696,0.007776,0.01296,0.01456,0.7696,0.008608
+1306,662.783,1.50879,1.0735,0.008544,0.233504,0.005696,0.004512,0.008192,0.013504,0.014432,0.775968,0.009152
+1307,673.131,1.4856,1.23702,0.007936,0.40576,0.004224,0.005728,0.006432,0.014336,0.014208,0.769312,0.009088
+1308,589.437,1.69653,1.90643,0.008384,0.230816,0.004704,0.004096,0.00816,0.01344,0.013216,1.61178,0.01184
+1309,431.158,2.31934,1.06086,0.0096,0.227872,0.004192,0.005568,0.00672,0.014336,0.014336,0.768,0.01024
+1310,670.157,1.49219,1.05683,0.008192,0.227328,0.005824,0.004416,0.007872,0.012608,0.014336,0.767648,0.008608
+1311,718.975,1.39087,1.24109,0.008192,0.405184,0.004416,0.005408,0.00688,0.014176,0.014528,0.773216,0.009088
+1312,586.064,1.7063,1.89446,0.008256,0.229376,0.006144,0.004096,0.007872,0.012608,0.015552,1.59984,0.01072
+1313,435.837,2.29443,1.06291,0.009472,0.232192,0.005376,0.004704,0.006304,0.013728,0.014464,0.766432,0.01024
+1314,667.971,1.49707,1.05472,0.00944,0.230144,0.004128,0.005632,0.006656,0.013824,0.014528,0.760128,0.01024
+1315,572.867,1.74561,1.23526,0.008256,0.402848,0.004992,0.005088,0.007072,0.013696,0.014688,0.769472,0.009152
+1316,667.862,1.49731,1.40902,0.008288,0.257984,0.00528,0.004864,0.006272,0.014272,0.014368,1.08541,0.012288
+1317,503.565,1.98584,1.0576,0.008736,0.235808,0.005696,0.004576,0.007456,0.012992,0.014336,0.75904,0.00896
+1318,684.492,1.46094,1.06438,0.00928,0.225728,0.004608,0.005184,0.007104,0.013408,0.013216,0.776192,0.009664
+1319,677.697,1.47559,1.44003,0.008032,0.227776,0.004096,0.005504,0.006784,0.013632,0.01488,1.14909,0.01024
+1320,533.82,1.87329,1.8993,0.008608,0.234912,0.004896,0.004288,0.00768,0.0128,0.014336,1.60118,0.010592
+1321,430.342,2.32373,1.06259,0.008192,0.231424,0.005344,0.004864,0.006208,0.014208,0.014048,0.768384,0.00992
+1322,697.548,1.43359,1.06083,0.008192,0.229024,0.004448,0.005344,0.006944,0.01344,0.013312,0.76992,0.010208
+1323,685.064,1.45972,1.24512,0.008192,0.407328,0.00432,0.00528,0.007008,0.013888,0.014304,0.774624,0.010176
+1324,479.12,2.08716,1.91158,0.008448,0.258368,0.00432,0.00544,0.006848,0.013696,0.014112,1.58973,0.010624
+1325,519.336,1.92554,1.07203,0.008768,0.229248,0.004576,0.005216,0.007072,0.013344,0.01472,0.778848,0.01024
+1326,670.376,1.4917,1.05888,0.008864,0.227328,0.004096,0.005728,0.00656,0.014016,0.014592,0.768064,0.009632
+1327,671.365,1.4895,1.23661,0.008192,0.405408,0.004192,0.005664,0.006624,0.014336,0.014368,0.767936,0.009888
+1328,625.534,1.59863,1.88358,0.008224,0.2304,0.005056,0.004128,0.007808,0.012672,0.016384,1.5872,0.011712
+1329,423.228,2.36279,1.06256,0.009536,0.246464,0.005824,0.004416,0.007648,0.012832,0.014336,0.751616,0.009888
+1330,694.944,1.43896,1.05869,0.008192,0.227008,0.004416,0.005344,0.006944,0.013824,0.014816,0.768032,0.010112
+1331,683.921,1.46216,1.2648,0.008192,0.439936,0.00448,0.005344,0.006944,0.013856,0.014432,0.761696,0.00992
+1332,586.148,1.70605,1.83306,0.008288,0.2312,0.00432,0.005472,0.006816,0.01376,0.014528,1.53622,0.012448
+1333,362.093,2.76172,1.07853,0.009504,0.241568,0.004928,0.004096,0.008192,0.013376,0.014784,0.772416,0.009664
+1334,679.834,1.47095,1.05869,0.009568,0.229888,0.004256,0.005504,0.006784,0.013888,0.014464,0.764224,0.010112
+1335,651.607,1.53467,1.04989,0.009344,0.228,0.00432,0.005216,0.00704,0.013344,0.014496,0.7584,0.009728
+1336,618.451,1.61694,1.69248,0.008448,0.471616,0.006272,0.005728,0.006432,0.015424,0.013248,1.15658,0.008736
+1337,501.899,1.99243,1.06086,0.008192,0.229408,0.005536,0.004672,0.006368,0.01392,0.01456,0.767968,0.01024
+1338,674.128,1.4834,1.05882,0.009408,0.228,0.004256,0.005536,0.006752,0.013856,0.014528,0.76624,0.01024
+1339,676.577,1.47803,1.24342,0.008704,0.405184,0.00448,0.005344,0.006944,0.013792,0.01424,0.774784,0.009952
+1340,624.295,1.60181,1.90464,0.008544,0.237344,0.00544,0.004864,0.006272,0.014336,0.01424,1.60163,0.011968
+1341,422.573,2.36646,1.06077,0.008736,0.229472,0.004192,0.005568,0.00672,0.013728,0.014496,0.76784,0.010016
+1342,664.719,1.50439,1.0673,0.007904,0.236128,0.005856,0.004352,0.007584,0.012896,0.014336,0.769056,0.009184
+1343,669.39,1.4939,1.25987,0.007104,0.405504,0.004288,0.005568,0.00656,0.014304,0.014336,0.792416,0.009792
+1344,591.822,1.6897,1.87805,0.008384,0.234848,0.004768,0.004096,0.007968,0.01376,0.014464,1.57763,0.012128
+1345,436.813,2.28931,1.08246,0.008256,0.253952,0.005344,0.004832,0.006304,0.014208,0.014272,0.765248,0.010048
+1346,668.189,1.49658,1.0689,0.008512,0.235296,0.00432,0.00544,0.006848,0.013952,0.014272,0.770496,0.00976
+1347,713.092,1.40234,1.24317,0.008192,0.405504,0.006048,0.004192,0.007872,0.01408,0.0144,0.774112,0.008768
+1348,595.089,1.68042,1.85344,0.008192,0.233472,0.005312,0.004864,0.00624,0.014272,0.014304,1.55408,0.012704
+1349,437.747,2.28442,1.05517,0.00864,0.234848,0.004768,0.004096,0.008,0.012672,0.015424,0.757824,0.008896
+1350,690.842,1.44751,1.0553,0.008672,0.226496,0.004896,0.004224,0.008192,0.014368,0.014304,0.763904,0.01024
+1351,481.712,2.07593,1.33997,0.008448,0.483648,0.00512,0.004864,0.0064,0.014368,0.014304,0.792576,0.01024
+1352,805.031,1.24219,1.9319,0.008608,0.276672,0.004128,0.005664,0.006624,0.01408,0.0144,1.5905,0.011232
+1353,432.752,2.31079,1.06374,0.008416,0.231712,0.004416,0.005376,0.006912,0.01344,0.014912,0.76832,0.01024
+1354,678.146,1.47461,1.06128,0.008096,0.229696,0.004288,0.005504,0.006816,0.013824,0.014464,0.768352,0.01024
+1355,674.461,1.48267,1.23526,0.00848,0.411648,0.005248,0.004864,0.007872,0.013984,0.014528,0.759712,0.008928
+1356,461.469,2.16699,1.87024,0.008704,0.256288,0.004096,0.005792,0.006528,0.01408,0.014176,1.548,0.012576
+1357,532.501,1.87793,1.06147,0.008544,0.235104,0.004928,0.004224,0.007744,0.012768,0.014304,0.763904,0.009952
+1358,696.48,1.43579,1.05718,0.008704,0.222304,0.004928,0.004192,0.007168,0.013248,0.0144,0.772096,0.010144
+1359,681.078,1.46826,1.25261,0.008192,0.4096,0.005536,0.004704,0.006336,0.014144,0.014336,0.77984,0.00992
+1360,373.893,2.67456,1.93126,0.008192,0.264224,0.005472,0.004736,0.007232,0.013248,0.015552,1.60035,0.012256
+1361,703.176,1.42212,1.07677,0.009728,0.244256,0.00512,0.004864,0.007392,0.013312,0.014368,0.767488,0.01024
+1362,647.896,1.54346,1.07664,0.008544,0.251872,0.005888,0.004352,0.007584,0.012928,0.014304,0.761408,0.00976
+1363,605.917,1.65039,1.11309,0.009632,0.291424,0.005216,0.004864,0.006336,0.014304,0.014336,0.757216,0.00976
+1364,658.415,1.5188,1.90736,0.008448,0.239392,0.004736,0.004096,0.008096,0.012416,0.014432,1.60448,0.011264
+1365,428.183,2.33545,1.06374,0.009024,0.233472,0.005504,0.004736,0.007296,0.013056,0.018048,0.763744,0.008864
+1366,682.439,1.46533,1.06086,0.00944,0.227136,0.004896,0.004288,0.008,0.01248,0.016,0.769632,0.008992
+1367,627.932,1.59253,1.06218,0.008192,0.224864,0.004512,0.00528,0.007008,0.01248,0.01536,0.774464,0.010016
+1368,676.466,1.47827,1.70355,0.009536,0.483808,0.006368,0.0056,0.006688,0.014272,0.014336,1.15277,0.010176
+1369,448.877,2.22778,1.06227,0.008576,0.237568,0.004096,0.005824,0.007712,0.01312,0.014304,0.761312,0.00976
+1370,716.585,1.39551,1.07094,0.009472,0.230176,0.00576,0.004448,0.007264,0.013216,0.014336,0.776192,0.01008
+1371,667.645,1.4978,1.24483,0.008736,0.403456,0.00576,0.00448,0.00752,0.013024,0.014272,0.777856,0.009728
+1372,592.507,1.68774,1.74909,0.008672,0.525856,0.006656,0.005312,0.006944,0.013728,0.014944,1.15674,0.01024
+1373,456.481,2.19067,1.06102,0.008352,0.229376,0.005216,0.004864,0.006304,0.014016,0.014496,0.76928,0.00912
+1374,691.541,1.44604,1.05542,0.008672,0.225504,0.004096,0.00576,0.006528,0.014112,0.014464,0.767456,0.008832
+1375,633.076,1.57959,1.24518,0.008192,0.405216,0.004384,0.00544,0.006848,0.014048,0.014624,0.777472,0.00896
+1376,643.014,1.55518,1.90259,0.009536,0.229824,0.004352,0.005536,0.006752,0.013568,0.014336,1.6064,0.012288
+1377,423.447,2.36157,1.05267,0.009696,0.227872,0.00592,0.00432,0.006304,0.013984,0.014528,0.76112,0.008928
+1378,521.717,1.91675,1.06621,0.00944,0.23632,0.00592,0.00432,0.008224,0.013856,0.014272,0.764192,0.009664
+1379,923.563,1.08276,1.23699,0.008192,0.405504,0.005728,0.004512,0.007968,0.013696,0.01456,0.767872,0.00896
+1380,585.729,1.70728,1.8408,0.008352,0.237024,0.00464,0.005152,0.00704,0.012416,0.014464,1.53789,0.013824
+1381,451.449,2.21509,1.05142,0.008736,0.22912,0.004768,0.004096,0.007808,0.012672,0.015424,0.75872,0.01008
+1382,681.985,1.46631,1.05971,0.008864,0.22704,0.004608,0.005152,0.007008,0.013568,0.015232,0.768,0.01024
+1383,666.667,1.5,1.25133,0.008192,0.407328,0.00432,0.005504,0.006784,0.014336,0.014336,0.780288,0.01024
+1384,610.069,1.63916,1.90486,0.008672,0.22944,0.005312,0.004864,0.006208,0.014208,0.014048,1.61018,0.011936
+1385,428.99,2.33105,1.06909,0.008192,0.23552,0.005312,0.004864,0.008256,0.013632,0.014816,0.769536,0.00896
+1386,672.247,1.48755,1.06906,0.008288,0.230304,0.004928,0.004288,0.008192,0.014016,0.0144,0.776032,0.008608
+1387,578.94,1.72729,1.24154,0.008704,0.401376,0.005984,0.004256,0.00768,0.013856,0.014336,0.775168,0.010176
+1388,664.18,1.50562,1.84307,0.008288,0.2416,0.005632,0.004576,0.007392,0.013088,0.014368,1.53517,0.01296
+1389,445.121,2.24658,1.07469,0.008384,0.23328,0.00576,0.00448,0.00752,0.01296,0.014336,0.77824,0.009728
+1390,685.753,1.45825,1.05018,0.008448,0.22912,0.005856,0.004384,0.007712,0.012768,0.014336,0.75776,0.009792
+1391,706.329,1.41577,1.23904,0.008448,0.405088,0.004512,0.005312,0.006976,0.014112,0.014368,0.77024,0.009984
+1392,587.24,1.70288,1.8265,0.008256,0.233152,0.004352,0.00544,0.006848,0.013536,0.014304,1.52659,0.014016
+1393,449.074,2.22681,1.05472,0.008192,0.22736,0.005824,0.004384,0.007584,0.012896,0.0144,0.76384,0.01024
+1394,687.479,1.45459,1.06563,0.008704,0.227456,0.005248,0.004864,0.006272,0.01408,0.014432,0.775424,0.009152
+1395,644.025,1.55273,1.44019,0.008768,0.243552,0.004128,0.004608,0.006304,0.013504,0.014304,1.13494,0.01008
+1396,495.224,2.01929,1.4465,0.00832,0.24736,0.00496,0.00416,0.007872,0.012608,0.014336,1.13459,0.012288
+1397,492.544,2.03027,1.06387,0.00816,0.23376,0.0048,0.004096,0.008,0.01248,0.0144,0.767936,0.01024
+1398,722.526,1.38403,1.06886,0.008192,0.233472,0.005632,0.004608,0.007936,0.012544,0.014464,0.771968,0.010048
+1399,666.125,1.50122,1.44218,0.00832,0.25216,0.005248,0.004992,0.006176,0.01424,0.014432,1.1264,0.010208
+1400,549.872,1.8186,1.90259,0.008192,0.235008,0.004608,0.005152,0.007072,0.0136,0.014464,1.60346,0.01104
+1401,429.981,2.32568,1.0609,0.009504,0.230112,0.005632,0.004608,0.007392,0.013088,0.014336,0.767264,0.00896
+1402,685.638,1.4585,1.06291,0.009664,0.229984,0.004064,0.005856,0.006432,0.013952,0.01424,0.770048,0.008672
+1403,678.258,1.47437,1.22848,0.008448,0.40336,0.004192,0.005664,0.006624,0.01424,0.01424,0.76192,0.009792
+1404,597.433,1.67383,1.8903,0.008192,0.233248,0.00432,0.005408,0.00688,0.013632,0.014144,1.59376,0.01072
+1405,415.669,2.40576,1.07066,0.008192,0.241728,0.005856,0.00432,0.007648,0.012832,0.014336,0.76576,0.009984
+1406,647.077,1.54541,1.06368,0.008928,0.229184,0.004288,0.005472,0.006816,0.013568,0.014368,0.770784,0.010272
+1407,707.549,1.41333,1.23814,0.008224,0.405472,0.005184,0.004864,0.006336,0.014368,0.014304,0.769408,0.009984
+1408,609.796,1.63989,1.89757,0.008544,0.229888,0.005248,0.004896,0.00624,0.014336,0.014336,1.60333,0.010752
+1409,435.559,2.2959,1.06554,0.008064,0.227008,0.004928,0.004288,0.007648,0.012832,0.014336,0.776192,0.01024
+1410,665.259,1.50317,1.06301,0.008288,0.223232,0.005472,0.004704,0.006208,0.014112,0.014272,0.777952,0.008768
+1411,669.062,1.49463,1.23293,0.008128,0.404928,0.004768,0.004064,0.008096,0.014016,0.014592,0.764096,0.01024
+1412,600.586,1.66504,1.93424,0.008704,0.256416,0.00528,0.004832,0.006336,0.014112,0.014272,1.612,0.012288
+1413,428.183,2.33545,1.07469,0.00816,0.247264,0.004672,0.004096,0.00784,0.01264,0.014336,0.765952,0.009728
+1414,669.828,1.49292,1.0529,0.008544,0.229376,0.005792,0.004448,0.007552,0.012928,0.014336,0.759808,0.010112
+1415,699.693,1.4292,1.24221,0.007296,0.409472,0.005568,0.004672,0.007296,0.013184,0.014336,0.771456,0.008928
+1416,583.143,1.71484,1.91555,0.007168,0.24576,0.004096,0.00576,0.006528,0.014368,0.014304,1.60563,0.011936
+1417,437.093,2.28784,1.05008,0.008256,0.222304,0.004896,0.00416,0.007776,0.012704,0.0144,0.765888,0.009696
+1418,625.917,1.59766,1.06339,0.00864,0.237568,0.004096,0.005696,0.006592,0.013728,0.014272,0.763904,0.008896
+1419,684.492,1.46094,1.26368,0.008256,0.413696,0.02048,0.004096,0.008032,0.01392,0.023104,0.761856,0.01024
+1420,598.393,1.67114,1.73654,0.008544,0.485472,0.007456,0.004832,0.023584,0.013312,0.014336,1.1689,0.010112
+1421,463.978,2.15527,1.06339,0.007968,0.24208,0.004384,0.005408,0.00688,0.013984,0.014656,0.757824,0.010208
+1422,692.477,1.44409,1.05843,0.009504,0.223136,0.004928,0.004096,0.007648,0.012832,0.014336,0.772096,0.009856
+1423,431.476,2.31763,1.23699,0.00816,0.402976,0.014624,0.00432,0.008,0.01392,0.014176,0.761632,0.009184
+1424,1051.87,0.950684,1.83299,0.008256,0.242784,0.004896,0.004192,0.007776,0.012704,0.014336,1.52554,0.012512
+1425,440.904,2.26807,1.09101,0.009312,0.25696,0.005344,0.004896,0.00736,0.01312,0.014304,0.769856,0.009856
+1426,678.595,1.47363,1.0623,0.008192,0.231424,0.005664,0.004576,0.007552,0.012928,0.014336,0.768,0.009632
+1427,681.304,1.46777,1.23619,0.008,0.403552,0.004224,0.005696,0.006592,0.014336,0.014368,0.769664,0.00976
+1428,528.039,1.8938,1.40189,0.009664,0.241664,0.004672,0.0056,0.006688,0.013664,0.014368,1.09184,0.013728
+1429,538.381,1.85742,1.06902,0.008192,0.232608,0.004928,0.004128,0.007584,0.012896,0.014336,0.774144,0.010208
+1430,675.462,1.48047,1.06467,0.008192,0.229376,0.004096,0.004096,0.008032,0.012448,0.014336,0.774144,0.009952
+1431,672.357,1.4873,1.46083,0.008256,0.256544,0.005664,0.004576,0.008096,0.012384,0.014336,1.14074,0.01024
+1432,496.425,2.0144,1.86982,0.009952,0.246048,0.004128,0.005792,0.006464,0.014336,0.014336,1.55648,0.012288
+1433,466.09,2.14551,1.05085,0.008768,0.23312,0.004544,0.005248,0.00704,0.013376,0.014528,0.754432,0.009792
+1434,642.711,1.55591,1.0688,0.008288,0.227232,0.005472,0.004768,0.006464,0.014016,0.014176,0.778432,0.009952
+1435,696.362,1.43604,1.23488,0.008192,0.403456,0.005728,0.004512,0.007424,0.013056,0.015712,0.766624,0.010176
+1436,609.161,1.6416,1.88506,0.008672,0.229728,0.00416,0.0056,0.006688,0.013984,0.014336,1.59066,0.011232
+1437,429.575,2.32788,1.07933,0.008192,0.230848,0.004672,0.004096,0.008096,0.012384,0.015392,0.785376,0.010272
+1438,681.758,1.4668,1.04653,0.00944,0.224032,0.004096,0.005696,0.006592,0.014048,0.0144,0.759456,0.008768
+1439,675.573,1.48022,1.24451,0.008384,0.405472,0.004192,0.005632,0.006592,0.014368,0.014336,0.77552,0.010016
+1440,592.079,1.68896,1.89091,0.00864,0.233632,0.00544,0.0048,0.006336,0.014144,0.014336,1.59133,0.012256
+1441,433.669,2.30591,1.0711,0.008192,0.235136,0.00448,0.005312,0.006976,0.013536,0.014528,0.77392,0.009024
+1442,645.039,1.55029,1.05014,0.008192,0.229408,0.004064,0.005856,0.006432,0.013888,0.01408,0.758464,0.00976
+1443,717.589,1.39355,1.23974,0.008352,0.404,0.00576,0.00448,0.007488,0.014112,0.013216,0.772096,0.01024
+1444,606.995,1.64746,1.82272,0.00832,0.233344,0.005952,0.004288,0.007584,0.012896,0.014368,1.52368,0.012288
+1445,438.403,2.28101,1.07728,0.009536,0.252608,0.005696,0.004544,0.007424,0.013056,0.014336,0.76112,0.00896
+1446,707.06,1.41431,1.05632,0.008256,0.23136,0.004096,0.005728,0.00656,0.014336,0.014336,0.761856,0.009792
+1447,649.849,1.53882,1.24685,0.009568,0.426656,0.005856,0.004384,0.007456,0.013024,0.014336,0.75568,0.009888
+1448,617.612,1.61914,1.88179,0.00944,0.230176,0.005216,0.004864,0.006304,0.014336,0.014368,1.58512,0.011968
+1449,436.907,2.28882,1.06909,0.007936,0.231424,0.004608,0.00544,0.006848,0.01344,0.014304,0.775072,0.010016
+1450,564.966,1.77002,1.06701,0.009312,0.248736,0.005504,0.004736,0.006176,0.014208,0.014432,0.754912,0.008992
+1451,785.879,1.27246,1.25338,0.009536,0.423904,0.004832,0.004096,0.007904,0.013984,0.014944,0.765056,0.00912
+1452,619.761,1.61353,1.88979,0.00832,0.23472,0.004768,0.004096,0.007936,0.012544,0.014336,1.5913,0.011776
+1453,435.745,2.29492,1.05962,0.00848,0.227616,0.00432,0.00544,0.006848,0.013568,0.014496,0.770208,0.00864
+1454,671.696,1.48877,1.05875,0.009664,0.229952,0.004096,0.006144,0.00736,0.01312,0.014496,0.763744,0.010176
+1455,662.033,1.5105,1.28576,0.008288,0.454656,0.005824,0.004416,0.007552,0.014112,0.0152,0.765888,0.009824
+1456,591.053,1.69189,1.89117,0.00704,0.229248,0.004224,0.005568,0.00672,0.013344,0.014464,1.59834,0.012224
+1457,435.745,2.29492,1.04243,0.009472,0.225152,0.004896,0.004192,0.008064,0.012416,0.014464,0.753536,0.01024
+1458,697.429,1.43384,1.05677,0.00944,0.229824,0.004448,0.005824,0.006464,0.014176,0.0144,0.763072,0.00912
+1459,642.51,1.5564,1.26976,0.00928,0.433088,0.00592,0.00432,0.007648,0.013952,0.014368,0.770944,0.01024
+1460,575.766,1.73682,1.8903,0.008256,0.26208,0.005728,0.004512,0.00736,0.01312,0.014336,1.56262,0.012288
+1461,428.901,2.33154,1.0585,0.00864,0.237632,0.005856,0.00432,0.007616,0.012864,0.014336,0.757216,0.010016
+1462,721.889,1.38525,1.0552,0.007936,0.23216,0.005312,0.004928,0.007648,0.012832,0.014336,0.759808,0.01024
+1463,679.496,1.47168,1.22563,0.008384,0.40416,0.005472,0.004768,0.007232,0.013248,0.015488,0.757856,0.009024
+1464,600.234,1.66602,1.89235,0.009504,0.234208,0.005152,0.004864,0.006368,0.01392,0.014336,1.59328,0.01072
+1465,428.094,2.33594,1.05472,0.008192,0.229376,0.005888,0.004352,0.007648,0.012832,0.015904,0.761472,0.009056
+1466,692.711,1.4436,1.04118,0.008576,0.225664,0.005792,0.004448,0.008096,0.012384,0.014336,0.753248,0.00864
+1467,703.78,1.4209,1.26029,0.0088,0.436384,0.005344,0.004864,0.006304,0.014208,0.014336,0.75984,0.010208
+1468,576.739,1.73389,1.89219,0.008192,0.233472,0.0056,0.00464,0.00736,0.01312,0.014336,1.59334,0.012128
+1469,433.623,2.30615,1.05098,0.007008,0.227328,0.005344,0.004864,0.0072,0.013216,0.014112,0.762144,0.00976
+1470,606.545,1.64868,1.07315,0.00944,0.2456,0.00496,0.004192,0.007808,0.012704,0.015776,0.763808,0.008864
+1471,741.626,1.34839,1.2329,0.009632,0.404064,0.005792,0.004448,0.007648,0.012832,0.014336,0.763904,0.01024
+1472,607.175,1.64697,1.80701,0.008672,0.237088,0.004768,0.004096,0.007968,0.013568,0.013376,1.50518,0.012288
+1473,444.011,2.2522,1.06701,0.009408,0.232256,0.005248,0.004864,0.006272,0.014336,0.014336,0.770048,0.01024
+1474,667.536,1.49805,1.04701,0.008608,0.229536,0.005472,0.004736,0.008192,0.013984,0.014432,0.751872,0.010176
+1475,689.911,1.44946,1.42714,0.008352,0.237824,0.005152,0.004096,0.007136,0.013536,0.014784,1.12589,0.010368
+1476,541.656,1.84619,1.82528,0.008672,0.241728,0.005664,0.004544,0.007424,0.013056,0.014336,1.5175,0.012352
+1477,447.015,2.23706,1.052,0.008192,0.228704,0.004768,0.004096,0.007968,0.012512,0.0144,0.7616,0.00976
+1478,688.751,1.4519,1.05315,0.008672,0.224704,0.004672,0.00512,0.007072,0.013568,0.014656,0.764448,0.01024
+1479,492.485,2.03052,1.2329,0.009824,0.40592,0.00528,0.004864,0.006304,0.014272,0.014336,0.762944,0.009152
+1480,740.821,1.34985,1.88413,0.008576,0.27776,0.004864,0.004096,0.007904,0.014496,0.014304,1.53821,0.01392
+1481,442.907,2.25781,1.06448,0.008192,0.24352,0.004288,0.005504,0.006784,0.013504,0.014816,0.75808,0.009792
+1482,697.785,1.43311,1.06291,0.008192,0.23888,0.004768,0.00416,0.007936,0.012544,0.015584,0.760608,0.01024
+1483,645.446,1.54932,1.23155,0.008768,0.405632,0.005792,0.004448,0.007584,0.012896,0.014336,0.762912,0.009184
+1484,651.089,1.53589,1.89082,0.007968,0.237472,0.004896,0.004096,0.007872,0.012608,0.014336,1.59085,0.01072
+1485,438.826,2.27881,1.05501,0.008448,0.23136,0.00416,0.0056,0.006688,0.013568,0.014464,0.761504,0.009216
+1486,702.573,1.42334,1.0439,0.008192,0.22528,0.005728,0.004512,0.006144,0.01392,0.014368,0.756096,0.009664
+1487,647.077,1.54541,1.24822,0.00832,0.424096,0.004768,0.004192,0.008,0.01392,0.014176,0.76048,0.010272
+1488,499.33,2.00269,1.85933,0.008224,0.243712,0.00544,0.004704,0.006272,0.014304,0.014336,1.5495,0.012832
+1489,471.184,2.12231,1.05459,0.008288,0.231744,0.004192,0.0056,0.006688,0.013728,0.014944,0.759808,0.0096
+1490,824.145,1.21338,1.04704,0.008448,0.231776,0.00512,0.004864,0.008128,0.012576,0.014336,0.751616,0.010176
+1491,683.921,1.46216,1.4295,0.008192,0.241664,0.004096,0.006144,0.006176,0.013504,0.014816,1.12467,0.01024
+1492,540.94,1.84863,1.82406,0.008384,0.237568,0.005504,0.004736,0.006176,0.014048,0.014336,1.51987,0.01344
+1493,449.418,2.2251,1.04723,0.008352,0.227872,0.004096,0.006144,0.008096,0.012384,0.015616,0.754432,0.01024
+1494,682.212,1.46582,1.04189,0.008192,0.223232,0.005728,0.004512,0.007424,0.013056,0.014336,0.755584,0.009824
+1495,686.672,1.4563,1.26835,0.008768,0.446528,0.00576,0.00448,0.007456,0.013024,0.01552,0.757632,0.009184
+1496,577.064,1.73291,1.87264,0.008672,0.231424,0.004384,0.005376,0.006912,0.013472,0.013152,1.57846,0.010784
+1497,410.874,2.43384,1.0655,0.008832,0.243712,0.005184,0.004864,0.006336,0.013856,0.014656,0.75792,0.010144
+1498,736.558,1.35767,1.03341,0.009728,0.225792,0.005728,0.004512,0.007392,0.013088,0.014336,0.743424,0.009408
+1499,683.806,1.4624,1.41322,0.00816,0.225312,0.00576,0.00448,0.007456,0.013056,0.014304,1.12435,0.010336
+1500,551.056,1.8147,1.88586,0.008416,0.230752,0.004544,0.005248,0.007072,0.013312,0.014336,1.59024,0.011936
+1501,435.652,2.29541,1.04278,0.008032,0.231936,0.004096,0.005856,0.008288,0.01248,0.015392,0.746464,0.01024
+1502,668.298,1.49634,1.05088,0.00848,0.224928,0.004416,0.005376,0.006912,0.01392,0.014528,0.763232,0.009088
+1503,687.133,1.45532,1.22576,0.008416,0.40528,0.005184,0.004864,0.006336,0.014336,0.014336,0.757184,0.009824
+1504,627.259,1.59424,1.89235,0.009632,0.225888,0.005728,0.004512,0.007456,0.013024,0.014336,1.60083,0.010944
+1505,426.934,2.34229,1.03219,0.008192,0.223136,0.004192,0.005504,0.006784,0.013376,0.014944,0.747168,0.008896
+1506,635.433,1.57373,1.04042,0.009312,0.229312,0.004896,0.004288,0.007616,0.012864,0.015424,0.747776,0.008928
+1507,749.908,1.3335,1.21971,0.008128,0.405472,0.005568,0.004672,0.00784,0.013952,0.014848,0.749408,0.009824
+1508,601.645,1.66211,1.82262,0.008288,0.22928,0.005152,0.004672,0.006592,0.013984,0.014016,1.52746,0.013184
+1509,446.139,2.24146,1.04131,0.00832,0.224032,0.004096,0.005856,0.006432,0.013856,0.014304,0.755424,0.008992
+1510,679.496,1.47168,1.04291,0.008512,0.2248,0.004544,0.005248,0.00704,0.013536,0.014304,0.756,0.008928
+1511,657.675,1.52051,1.44122,0.008352,0.253376,0.00464,0.004128,0.008192,0.012288,0.014336,1.12435,0.011552
+1512,554.563,1.80322,1.88122,0.008352,0.226912,0.004352,0.00544,0.006848,0.014176,0.014496,1.58912,0.01152
+1513,441.474,2.26514,1.04976,0.009312,0.230048,0.004352,0.0056,0.00672,0.013728,0.014304,0.755968,0.009728
+1514,660.113,1.51489,1.05866,0.008128,0.225824,0.005184,0.016544,0.006944,0.0136,0.014432,0.7584,0.0096
+1515,649.231,1.54028,1.26243,0.00896,0.44656,0.005952,0.00544,0.00704,0.013984,0.014656,0.75072,0.00912
+1516,605.648,1.65112,1.87043,0.008672,0.229152,0.004768,0.004096,0.007968,0.012512,0.014336,1.57699,0.011936
+1517,448.484,2.22974,1.05194,0.00832,0.227328,0.004096,0.005792,0.006496,0.013728,0.014816,0.761376,0.009984
+1518,686.903,1.45581,1.04448,0.008256,0.224736,0.004576,0.005184,0.007072,0.0136,0.014464,0.757664,0.008928
+1519,685.867,1.45801,1.26534,0.008096,0.438496,0.004192,0.005664,0.00656,0.014368,0.014336,0.763808,0.009824
+1520,553.14,1.80786,1.88624,0.008192,0.231456,0.00512,0.004864,0.006368,0.014336,0.014272,1.59078,0.010848
+1521,454.505,2.2002,1.04646,0.008448,0.228736,0.00448,0.005312,0.006976,0.014368,0.014304,0.753664,0.010176
+1522,712.472,1.40356,1.04822,0.008224,0.227296,0.004096,0.005728,0.007808,0.013088,0.014336,0.75776,0.009888
+1523,641.403,1.55908,1.40822,0.008192,0.223232,0.00528,0.00432,0.006784,0.013536,0.01456,1.12083,0.011488
+1524,384.782,2.59888,1.88422,0.009312,0.261024,0.005632,0.004608,0.007264,0.013216,0.014368,1.55645,0.012352
+1525,694.944,1.43896,1.05968,0.008448,0.229984,0.004096,0.005856,0.007808,0.01296,0.014336,0.767168,0.009024
+1526,682.667,1.46484,1.0431,0.008736,0.231584,0.00544,0.004768,0.007584,0.012896,0.014336,0.74752,0.01024
+1527,663.857,1.50635,1.21651,0.009888,0.403808,0.005152,0.004896,0.006336,0.014336,0.014368,0.748544,0.009184
+1528,643.924,1.55298,1.872,0.008192,0.22528,0.00592,0.00432,0.007808,0.012672,0.015584,1.5816,0.010624
+1529,431.658,2.31665,1.04045,0.007968,0.229056,0.004704,0.005248,0.00704,0.013408,0.014528,0.749376,0.00912
+1530,673.906,1.48389,1.04499,0.008096,0.225888,0.004096,0.005696,0.008064,0.012864,0.014336,0.755744,0.010208
+1531,461.625,2.16626,1.03142,0.008416,0.22304,0.0056,0.004608,0.007232,0.013248,0.014336,0.745344,0.0096
+1532,630.93,1.58496,1.69712,0.008192,0.479232,0.007232,0.004864,0.006368,0.014304,0.01408,1.15126,0.011584
+1533,478.393,2.09033,1.05322,0.00704,0.229152,0.00432,0.005472,0.006816,0.013568,0.014368,0.762592,0.009888
+1534,668.08,1.49683,1.0504,0.008224,0.241024,0.004704,0.005152,0.00704,0.012384,0.014336,0.74752,0.010016
+1535,630.445,1.58618,1.03814,0.008448,0.223776,0.005696,0.004544,0.007904,0.012576,0.014336,0.750976,0.009888
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..b05b3c7
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,744.518,1.39892,0.919129,0.00888756,0.274281,0.0118885,0.0109816,0.0174519,0.0165047,0.0151436,0.55149,0.0125002
+max_1024,1575.08,3.78247,1.79376,0.044512,0.749216,0.081312,0.057344,0.057376,0.042304,0.031872,1.37712,0.026656
+min_1024,264.377,0.634888,0.7824,0.007072,0.217088,0.0088,0.009024,0.014624,0.014432,0.014176,0.464896,0.010752
+512,798.518,1.25232,0.99376,0.00816,0.409888,0.010592,0.014208,0.02192,0.014944,0.015776,0.485984,0.012288
+513,564.382,1.77185,0.806528,0.00848,0.229728,0.010208,0.011424,0.017248,0.016416,0.015392,0.485376,0.012256
+514,444.348,2.25049,0.816704,0.01024,0.245728,0.010272,0.01024,0.018432,0.016288,0.014432,0.478976,0.012096
+515,842.538,1.18689,0.793184,0.008576,0.22528,0.010464,0.00992,0.017792,0.015296,0.015424,0.478144,0.012288
+516,840.378,1.18994,1.06499,0.009248,0.220128,0.01024,0.010464,0.018208,0.016384,0.015392,0.750208,0.01472
+517,668.462,1.49597,0.789888,0.008192,0.223232,0.012256,0.010272,0.01808,0.015936,0.01504,0.474624,0.012256
+518,832.013,1.2019,1.58179,0.00848,0.229312,0.010752,0.01024,0.018432,0.016352,0.014368,1.25952,0.014336
+519,504.216,1.98328,0.799584,0.00848,0.223296,0.010528,0.010464,0.018016,0.016128,0.014848,0.485568,0.012256
+520,830.326,1.20435,0.811488,0.008576,0.223328,0.01024,0.01024,0.018432,0.016384,0.014336,0.497664,0.012288
+521,818.954,1.22107,1.18595,0.008672,0.227424,0.01024,0.01024,0.018432,0.016064,0.014656,0.868096,0.012128
+522,604.442,1.65442,0.823552,0.008448,0.220768,0.01184,0.011104,0.018432,0.016416,0.020448,0.503808,0.012288
+523,848.472,1.17859,1.45514,0.009632,0.47888,0.012672,0.01056,0.017888,0.016544,0.014816,0.88192,0.012224
+524,532.986,1.87622,0.808736,0.008192,0.229216,0.0104,0.010272,0.01808,0.01632,0.01456,0.489504,0.012192
+525,819.282,1.22058,0.80048,0.008192,0.222272,0.010528,0.010336,0.01696,0.016384,0.014336,0.489344,0.012128
+526,831.844,1.20215,1.19757,0.008192,0.217088,0.01024,0.01024,0.018208,0.016608,0.0144,0.890368,0.012224
+527,631.709,1.58301,0.802816,0.008224,0.227296,0.011392,0.011136,0.018432,0.016384,0.014336,0.483328,0.012288
+528,550.797,1.81555,0.8008,0.011264,0.22528,0.010528,0.010496,0.018464,0.015968,0.01488,0.4816,0.01232
+529,841.932,1.18774,0.798816,0.008288,0.221184,0.012256,0.010272,0.017984,0.016064,0.014592,0.485888,0.012288
+530,831.844,1.20215,0.80752,0.00848,0.22144,0.012096,0.010432,0.018048,0.01648,0.014624,0.494816,0.011104
+531,827.391,1.20862,1.00278,0.00832,0.421056,0.010624,0.010496,0.018624,0.01632,0.0144,0.490624,0.01232
+532,664.611,1.50464,0.825568,0.008416,0.247232,0.010528,0.010528,0.020192,0.016,0.01504,0.485344,0.012288
+533,497.45,2.01025,0.811808,0.010688,0.233024,0.01056,0.010464,0.01664,0.016384,0.016032,0.485728,0.012288
+534,808.448,1.23694,0.798752,0.009344,0.222112,0.010208,0.010272,0.0184,0.016384,0.014336,0.485376,0.01232
+535,631.855,1.58264,0.804064,0.008256,0.2224,0.011008,0.01024,0.023616,0.015296,0.015552,0.485568,0.012128
+536,1086.47,0.92041,0.983072,0.008224,0.409536,0.010304,0.010528,0.019616,0.014912,0.015648,0.482016,0.012288
+537,696.125,1.43652,0.807296,0.00848,0.22944,0.010272,0.010304,0.018368,0.016384,0.014336,0.487424,0.012288
+538,482.763,2.07141,0.811008,0.010368,0.227136,0.010336,0.01024,0.0184,0.016128,0.014592,0.49152,0.012288
+539,814.395,1.22791,0.802816,0.009216,0.228352,0.01024,0.01024,0.018176,0.015968,0.014944,0.483392,0.012288
+540,845.408,1.18286,0.800768,0.009216,0.225344,0.0112,0.010272,0.0176,0.016192,0.014912,0.48512,0.010912
+541,747.104,1.3385,0.8024,0.008192,0.227136,0.01152,0.010496,0.017088,0.016384,0.014336,0.484832,0.012416
+542,793.568,1.26013,1.12899,0.008736,0.222848,0.01056,0.010272,0.020096,0.015968,0.01456,0.811584,0.014368
+543,557.127,1.79492,0.821792,0.008704,0.2288,0.010496,0.010496,0.018048,0.014816,0.01552,0.502624,0.012288
+544,819.2,1.2207,0.793568,0.008672,0.222912,0.010528,0.0104,0.018112,0.01632,0.01456,0.479776,0.012288
+545,843.319,1.18579,0.794624,0.008192,0.222464,0.011008,0.01024,0.018432,0.015936,0.014496,0.481568,0.012288
+546,518.514,1.92859,0.843776,0.008192,0.251552,0.010464,0.013536,0.020928,0.02096,0.01552,0.490336,0.012288
+547,1063.34,0.94043,1.16685,0.008224,0.245184,0.010784,0.0104,0.02032,0.016416,0.014336,0.826432,0.014752
+548,603.418,1.65723,0.800768,0.00976,0.231168,0.010976,0.01024,0.018464,0.015936,0.014752,0.477184,0.012288
+549,820.431,1.21887,0.799808,0.008192,0.223232,0.01152,0.010496,0.018208,0.016576,0.01488,0.484416,0.012288
+550,832.859,1.20068,0.80528,0.008416,0.225472,0.01024,0.01024,0.018432,0.016384,0.015936,0.487872,0.012288
+551,821.006,1.21802,0.980992,0.008192,0.4096,0.01024,0.01216,0.01856,0.016288,0.014432,0.479232,0.012288
+552,719.354,1.39014,1.15712,0.008192,0.227328,0.01024,0.01024,0.02048,0.016352,0.014368,0.835168,0.014752
+553,467.794,2.1377,0.89888,0.009312,0.304032,0.011296,0.010464,0.0248,0.029216,0.015904,0.481664,0.012192
+554,1014.24,0.985962,0.796544,0.008192,0.224256,0.010496,0.01056,0.016864,0.01632,0.014368,0.48336,0.012128
+555,798.596,1.2522,0.795232,0.00864,0.225504,0.01024,0.010272,0.017824,0.015936,0.01456,0.480032,0.012224
+556,852.8,1.17261,0.989184,0.008192,0.411648,0.01024,0.012288,0.018432,0.016384,0.014336,0.485376,0.012288
+557,716.773,1.39514,0.802944,0.00832,0.22736,0.010208,0.011872,0.018848,0.015904,0.014464,0.48368,0.012288
+558,686.672,1.4563,1.0199,0.026144,0.422368,0.011328,0.010432,0.017152,0.016384,0.014336,0.490496,0.011264
+559,714.211,1.40015,0.8048,0.008192,0.229248,0.010368,0.010272,0.016544,0.016224,0.014304,0.48736,0.012288
+560,831.76,1.20227,0.801024,0.008448,0.221088,0.012384,0.01024,0.018016,0.016288,0.01488,0.487392,0.012288
+561,858.88,1.16431,0.991264,0.008224,0.411648,0.01024,0.01136,0.018688,0.015008,0.015712,0.488096,0.012288
+562,686.73,1.45618,0.80368,0.008576,0.2312,0.01056,0.010464,0.018432,0.016416,0.014304,0.482336,0.011392
+563,480.638,2.08057,0.80208,0.010528,0.22528,0.011552,0.010464,0.016896,0.016384,0.01536,0.483488,0.012128
+564,840.722,1.18945,0.799104,0.008448,0.22336,0.012288,0.01024,0.018048,0.016224,0.014752,0.483456,0.012288
+565,827.642,1.20825,0.800608,0.008192,0.225696,0.01024,0.01024,0.0184,0.016096,0.014624,0.484864,0.012256
+566,732.409,1.36536,0.997376,0.009472,0.416512,0.01024,0.014336,0.021984,0.016128,0.014592,0.481824,0.012288
+567,794.491,1.25867,0.800288,0.008352,0.226432,0.0104,0.010688,0.017952,0.016608,0.014656,0.483072,0.012128
+568,486.374,2.05603,0.82928,0.010624,0.240032,0.01024,0.024832,0.017728,0.016224,0.01488,0.48256,0.01216
+569,917.255,1.09021,0.797664,0.008512,0.22592,0.01024,0.01024,0.017536,0.015232,0.014336,0.483328,0.01232
+570,824.062,1.2135,0.794176,0.00848,0.223296,0.010432,0.011104,0.017376,0.016192,0.014528,0.480512,0.012256
+571,808.288,1.23718,0.995328,0.008192,0.409248,0.010592,0.01408,0.022208,0.014912,0.015552,0.488256,0.012288
+572,717.841,1.39307,0.802784,0.008192,0.22528,0.010272,0.01024,0.018208,0.01616,0.014752,0.487424,0.012256
+573,538.239,1.85791,0.804896,0.011712,0.231008,0.010496,0.010592,0.016768,0.016288,0.014432,0.481248,0.012352
+574,799.61,1.25061,0.801344,0.008512,0.221536,0.010336,0.011296,0.017248,0.016,0.014752,0.489152,0.012512
+575,806.061,1.2406,0.811616,0.008512,0.232832,0.01056,0.010528,0.017824,0.025504,0.014336,0.479232,0.012288
+576,695.475,1.43787,1.024,0.008192,0.415744,0.024128,0.010688,0.019712,0.015104,0.028704,0.490528,0.0112
+577,720.81,1.38733,0.823072,0.00848,0.235936,0.01024,0.011808,0.018912,0.016384,0.014336,0.494816,0.01216
+578,508.441,1.9668,0.833632,0.010528,0.250912,0.010528,0.010752,0.016544,0.016384,0.021952,0.483936,0.012096
+579,664.019,1.50598,0.809088,0.00832,0.237568,0.01024,0.01152,0.01696,0.015968,0.014976,0.48128,0.012256
+580,974.31,1.02637,1.09773,0.009408,0.252736,0.011264,0.010624,0.017024,0.016384,0.014336,0.751328,0.014624
+581,667.047,1.49915,0.806272,0.008384,0.225088,0.011264,0.010688,0.018816,0.016032,0.01488,0.48896,0.01216
+582,819.856,1.21973,1.57734,0.008288,0.226144,0.0104,0.011616,0.016896,0.016384,0.014336,1.25936,0.01392
+583,510.341,1.95947,0.797184,0.008704,0.227072,0.01056,0.010464,0.017664,0.0152,0.01568,0.479712,0.012128
+584,820.02,1.21948,0.796288,0.008544,0.221344,0.011552,0.010048,0.017312,0.016384,0.014336,0.484512,0.012256
+585,820.266,1.21912,1.07082,0.009472,0.221952,0.01024,0.01024,0.018272,0.015936,0.014688,0.75392,0.016096
+586,670.102,1.49231,0.7992,0.008768,0.221408,0.01024,0.01024,0.0184,0.016416,0.015776,0.48592,0.012032
+587,809.406,1.23547,1.44829,0.00848,0.474272,0.016544,0.01056,0.01856,0.015872,0.014848,0.876864,0.012288
+588,552.394,1.8103,0.7944,0.008192,0.223264,0.01024,0.01024,0.0184,0.016416,0.014304,0.481184,0.01216
+589,541.405,1.84705,0.823584,0.00848,0.239616,0.01024,0.012096,0.017984,0.016064,0.01488,0.491936,0.012288
+590,1418.28,0.705078,1.25424,0.008544,0.28704,0.010432,0.011296,0.017376,0.016384,0.014336,0.876544,0.012288
+591,612.623,1.63232,0.820672,0.008192,0.230592,0.010496,0.021056,0.018464,0.016256,0.014432,0.489152,0.012032
+592,817.239,1.22363,1.44662,0.008608,0.472928,0.012064,0.01056,0.016768,0.016384,0.014368,0.882656,0.012288
+593,541.763,1.84583,0.791264,0.008448,0.223008,0.010592,0.010272,0.017824,0.015264,0.015584,0.477984,0.012288
+594,841.673,1.18811,0.79456,0.008256,0.222624,0.010432,0.010048,0.01808,0.015232,0.015584,0.48208,0.012224
+595,816.75,1.22437,1.20669,0.008416,0.239648,0.010528,0.010432,0.018432,0.020512,0.014432,0.871936,0.012352
+596,614.001,1.62866,0.809888,0.00848,0.23136,0.01056,0.010624,0.019872,0.016096,0.01488,0.485728,0.012288
+597,711.543,1.4054,1.00509,0.018656,0.421952,0.01024,0.01024,0.018016,0.016256,0.01488,0.482688,0.01216
+598,725.726,1.37793,0.802912,0.008288,0.225216,0.010304,0.011392,0.01728,0.016384,0.014336,0.487424,0.012288
+599,816.587,1.22461,0.798304,0.009408,0.226144,0.010208,0.011424,0.017248,0.016288,0.014432,0.480992,0.01216
+600,603.196,1.65784,1.24928,0.008192,0.273984,0.010304,0.010656,0.0184,0.016384,0.014336,0.884736,0.012288
+601,775.978,1.2887,0.803712,0.00832,0.226048,0.010272,0.011424,0.019264,0.016384,0.014336,0.485376,0.012288
+602,485.596,2.05933,0.815104,0.01024,0.231424,0.011392,0.012352,0.016992,0.016416,0.01456,0.48944,0.012288
+603,838.056,1.19324,0.80112,0.008512,0.223424,0.01024,0.01024,0.017952,0.016224,0.014976,0.48736,0.012192
+604,824.311,1.21313,0.803136,0.008288,0.223744,0.010336,0.010208,0.017504,0.015264,0.014336,0.491392,0.012064
+605,815.53,1.2262,0.985536,0.008512,0.41008,0.010272,0.012256,0.018432,0.016384,0.01568,0.481696,0.012224
+606,720.873,1.38721,1.15664,0.008192,0.225216,0.010304,0.01024,0.02048,0.016416,0.01536,0.835584,0.014848
+607,564.498,1.77148,0.804128,0.008192,0.22848,0.01056,0.010528,0.016672,0.016384,0.014336,0.486752,0.012224
+608,808.847,1.23633,0.792512,0.008256,0.222336,0.011168,0.01024,0.0184,0.016384,0.014336,0.479136,0.012256
+609,836.174,1.19592,0.78848,0.009472,0.219904,0.01168,0.010592,0.01664,0.016384,0.014336,0.477184,0.012288
+610,861.681,1.16052,1.00416,0.008288,0.410048,0.010496,0.013568,0.022304,0.015328,0.014336,0.497664,0.012128
+611,572.787,1.74585,0.825344,0.00928,0.250816,0.01024,0.01184,0.018528,0.014688,0.015488,0.482176,0.012288
+612,642.762,1.55579,0.80896,0.011488,0.232224,0.01024,0.01024,0.018432,0.016416,0.014304,0.483328,0.012288
+613,792.493,1.26184,0.811904,0.008544,0.22688,0.011232,0.01024,0.019776,0.016512,0.014944,0.491488,0.012288
+614,863.771,1.15771,0.80224,0.008448,0.22944,0.01024,0.01024,0.018368,0.01616,0.014624,0.482752,0.011968
+615,811.169,1.23279,0.989408,0.009216,0.410176,0.01056,0.012416,0.022528,0.016384,0.014336,0.48128,0.012512
+616,731.625,1.36682,0.8032,0.008384,0.225472,0.01024,0.011616,0.018272,0.015168,0.014368,0.487392,0.012288
+617,799.922,1.25012,1.4295,0.008192,0.462688,0.012448,0.01024,0.017632,0.01616,0.014688,0.876416,0.01104
+618,547.703,1.82581,0.792704,0.008352,0.2232,0.01024,0.010272,0.0184,0.015968,0.014752,0.480416,0.011104
+619,820.595,1.21863,0.800352,0.008576,0.225216,0.010368,0.010432,0.01824,0.016384,0.014336,0.484576,0.012224
+620,817.81,1.22278,0.993152,0.008704,0.40896,0.010592,0.012352,0.02224,0.014912,0.015456,0.487872,0.012064
+621,715.146,1.39832,0.79872,0.008192,0.225312,0.01024,0.01136,0.019168,0.015584,0.014912,0.481664,0.012288
+622,486.143,2.05701,0.813152,0.010656,0.240736,0.010528,0.010496,0.016768,0.016416,0.014304,0.481024,0.012224
+623,844.014,1.18481,0.803808,0.00848,0.225536,0.010592,0.010304,0.01648,0.017312,0.01456,0.488224,0.01232
+624,822.82,1.21533,0.792512,0.009376,0.221248,0.01104,0.01024,0.016448,0.01632,0.014336,0.48128,0.012224
+625,825.058,1.21204,0.992736,0.008192,0.409024,0.010528,0.014464,0.02064,0.016384,0.014368,0.48688,0.012256
+626,691.191,1.44678,0.801888,0.008192,0.223232,0.010272,0.011584,0.019104,0.016384,0.014336,0.48672,0.012064
+627,514.832,1.94238,0.799392,0.009984,0.224192,0.011328,0.010496,0.016864,0.016352,0.014592,0.483328,0.012256
+628,826.39,1.21008,0.800224,0.008192,0.224992,0.010528,0.01024,0.016384,0.016384,0.015648,0.485696,0.01216
+629,822.655,1.21558,0.806144,0.008192,0.226784,0.010528,0.010496,0.018432,0.016256,0.014464,0.489056,0.011936
+630,803.374,1.24475,0.989184,0.009568,0.4096,0.010688,0.01152,0.019072,0.016288,0.014784,0.485376,0.012288
+631,733.853,1.36267,1.13651,0.008192,0.22672,0.010528,0.01056,0.01952,0.015296,0.016224,0.814592,0.01488
+632,554.675,1.80286,0.817472,0.008512,0.223232,0.01024,0.01024,0.018432,0.016224,0.014496,0.492608,0.023488
+633,726.886,1.37573,0.841824,0.008192,0.27408,0.01056,0.010272,0.017888,0.016352,0.014944,0.477152,0.012384
+634,825.224,1.21179,0.802816,0.008192,0.231424,0.011488,0.010432,0.016992,0.016192,0.014528,0.48128,0.012288
+635,774.218,1.29163,0.806912,0.008192,0.22928,0.010336,0.012288,0.022496,0.016,0.014464,0.4816,0.012256
+636,787.389,1.27002,0.80336,0.00848,0.22496,0.01056,0.010496,0.020064,0.014752,0.015392,0.487424,0.011232
+637,713.651,1.40125,1.00352,0.01024,0.42336,0.010528,0.010496,0.016448,0.016352,0.014336,0.489472,0.012288
+638,729.085,1.37158,0.80896,0.008288,0.227072,0.010496,0.011296,0.016864,0.015776,0.015072,0.491808,0.012288
+639,806.935,1.23926,0.79728,0.008512,0.227296,0.010464,0.01024,0.016352,0.016384,0.014336,0.482464,0.011232
+640,800.234,1.24963,0.994752,0.008192,0.423936,0.01024,0.0104,0.019584,0.01632,0.01504,0.479072,0.011968
+641,696.539,1.43567,0.815072,0.008416,0.22336,0.010464,0.024448,0.018528,0.016384,0.014336,0.486944,0.012192
+642,825.557,1.2113,1.44176,0.00832,0.471744,0.012288,0.011488,0.019136,0.016256,0.01456,0.875808,0.01216
+643,553.738,1.80591,0.792512,0.009408,0.222016,0.01024,0.01024,0.018432,0.016288,0.014432,0.479232,0.012224
+644,845.059,1.18335,0.79568,0.008224,0.223232,0.011616,0.01056,0.016704,0.016384,0.014336,0.482496,0.012128
+645,611.891,1.63428,1.02454,0.018784,0.417952,0.01024,0.01024,0.028672,0.02448,0.014432,0.487424,0.01232
+646,852.8,1.17261,0.813056,0.009312,0.236448,0.011264,0.011264,0.01968,0.015136,0.014336,0.483328,0.012288
+647,823.565,1.21423,1.43866,0.008512,0.462592,0.02048,0.010528,0.017056,0.016256,0.01552,0.876416,0.011296
+648,556.068,1.79834,0.802624,0.008224,0.2328,0.01088,0.010272,0.017568,0.015168,0.014368,0.481152,0.012192
+649,829.15,1.20605,0.802816,0.008192,0.223232,0.0104,0.011232,0.01728,0.016384,0.016128,0.48768,0.012288
+650,824.477,1.21289,0.9904,0.00928,0.418752,0.01024,0.01024,0.018176,0.016448,0.01456,0.480512,0.012192
+651,666.938,1.49939,0.804864,0.009312,0.22528,0.010528,0.010816,0.018528,0.016352,0.014336,0.487424,0.012288
+652,759.01,1.3175,0.995296,0.0104,0.421728,0.010528,0.010464,0.017632,0.015328,0.014336,0.482912,0.011968
+653,724.827,1.37964,0.790528,0.008288,0.223136,0.01024,0.010272,0.017536,0.01536,0.016,0.477408,0.012288
+654,829.654,1.20532,0.799776,0.009312,0.22416,0.011424,0.010336,0.016896,0.01616,0.014816,0.484448,0.012224
+655,823.234,1.21472,1.06701,0.009216,0.227392,0.010528,0.010496,0.0168,0.016416,0.014336,0.747232,0.014592
+656,535.18,1.86853,0.832352,0.00848,0.256576,0.011328,0.01072,0.0208,0.016224,0.014656,0.482304,0.011264
+657,925.545,1.08044,1.7367,0.009408,0.268768,0.010592,0.01024,0.018048,0.01472,0.01552,1.37712,0.012288
+658,442.452,2.26013,0.809856,0.008544,0.233504,0.010752,0.01024,0.017952,0.016288,0.014752,0.485536,0.012288
+659,954.111,1.0481,0.812704,0.009376,0.232288,0.01024,0.010272,0.01808,0.016128,0.014688,0.489344,0.012288
+660,825.224,1.21179,0.99328,0.008448,0.407168,0.010496,0.012448,0.021536,0.015328,0.015776,0.489792,0.012288
+661,660.539,1.51392,0.802816,0.008192,0.227328,0.01024,0.010304,0.020096,0.01568,0.014976,0.483712,0.012288
+662,787.238,1.27026,1.0049,0.010432,0.424,0.010272,0.010208,0.018432,0.016384,0.015744,0.4872,0.012224
+663,737.885,1.35522,0.794624,0.008192,0.225088,0.010432,0.01024,0.017856,0.016096,0.015008,0.479424,0.012288
+664,822.655,1.21558,0.796672,0.008192,0.226816,0.010528,0.010464,0.017952,0.016096,0.014528,0.479808,0.012288
+665,841.759,1.18799,1.1903,0.008448,0.227488,0.010272,0.01024,0.0184,0.016096,0.014624,0.872448,0.012288
+666,487.184,2.05261,0.801152,0.00848,0.22336,0.010272,0.012,0.01776,0.015264,0.015424,0.486336,0.012256
+667,769.78,1.29907,0.9976,0.010464,0.423936,0.01024,0.01024,0.01808,0.01632,0.014752,0.48128,0.012288
+668,789.058,1.26733,0.806912,0.008192,0.23536,0.010432,0.01024,0.018208,0.016608,0.014304,0.48128,0.012288
+669,862.497,1.15942,0.801088,0.008448,0.227488,0.01024,0.01024,0.018048,0.016192,0.014752,0.483488,0.012192
+670,786.558,1.27136,1.18317,0.008192,0.223232,0.010272,0.011328,0.016384,0.015296,0.014304,0.871904,0.012256
+671,643.823,1.55322,0.79872,0.00928,0.22624,0.01152,0.010528,0.01792,0.015328,0.015392,0.480224,0.012288
+672,830.832,1.20361,1.44234,0.00832,0.466816,0.012864,0.01024,0.02864,0.016384,0.01552,0.871264,0.012288
+673,549.43,1.82007,0.796416,0.008192,0.223168,0.010304,0.01024,0.016384,0.016384,0.015552,0.483968,0.012224
+674,838.914,1.19202,0.79632,0.008192,0.223232,0.01152,0.010528,0.0168,0.016384,0.0144,0.48304,0.012224
+675,818.463,1.2218,1.19664,0.008704,0.227008,0.011936,0.010528,0.016864,0.016352,0.014368,0.878592,0.012288
+676,621.501,1.60901,0.804864,0.008192,0.237568,0.01024,0.011648,0.018848,0.01584,0.01472,0.47552,0.012288
+677,797.353,1.25415,1.44826,0.008352,0.471264,0.012288,0.01024,0.018432,0.016384,0.014336,0.884736,0.012224
+678,544.934,1.83508,0.802624,0.009216,0.223584,0.01056,0.009888,0.017088,0.016384,0.015456,0.484256,0.016192
+679,264.377,3.78247,1.32227,0.008224,0.749216,0.010592,0.01024,0.017984,0.014848,0.015552,0.483584,0.012032
+680,1183.64,0.844849,1.58925,0.009216,0.242688,0.01024,0.011712,0.01696,0.016384,0.014336,1.25462,0.013088
+681,468.623,2.13391,0.802304,0.008192,0.227328,0.010272,0.011744,0.017056,0.017312,0.014624,0.483616,0.01216
+682,773.925,1.29211,0.801568,0.008256,0.228064,0.011456,0.010464,0.016992,0.016096,0.014624,0.483328,0.012288
+683,871.768,1.14709,1.01722,0.00944,0.439072,0.010368,0.011296,0.017248,0.016384,0.014336,0.486816,0.012256
+684,625.296,1.59924,0.825216,0.008416,0.255552,0.010592,0.010432,0.019648,0.015168,0.01616,0.476864,0.012384
+685,620.324,1.61206,1.53603,0.008192,0.45056,0.081312,0.010464,0.018816,0.016384,0.014368,0.90928,0.026656
+686,529.473,1.88867,0.806912,0.008192,0.239488,0.010368,0.011392,0.017056,0.016,0.014784,0.477376,0.012256
+687,1201,0.832642,0.804864,0.008192,0.23552,0.010304,0.012224,0.017888,0.015936,0.01456,0.477952,0.012288
+688,703.538,1.42139,0.981216,0.00832,0.406656,0.0112,0.01232,0.022528,0.016416,0.014304,0.477184,0.012288
+689,717.15,1.39441,0.833536,0.008224,0.257952,0.010304,0.01024,0.018432,0.016256,0.014464,0.485376,0.012288
+690,741.76,1.34814,1.03424,0.044512,0.424832,0.0104,0.011584,0.018112,0.0152,0.016224,0.481344,0.012032
+691,672.081,1.48792,0.801504,0.008608,0.232896,0.01056,0.010464,0.0184,0.016064,0.014656,0.477632,0.012224
+692,945.413,1.05774,0.802016,0.008192,0.231232,0.010432,0.01008,0.016544,0.016384,0.01536,0.481728,0.012064
+693,730.776,1.36841,1.03382,0.008192,0.460192,0.01056,0.010528,0.018432,0.016288,0.014432,0.482944,0.012256
+694,741.827,1.34802,0.800864,0.008512,0.23088,0.010496,0.010688,0.018432,0.016256,0.014464,0.479008,0.012128
+695,844.362,1.18433,1.48275,0.008192,0.4608,0.057344,0.01024,0.018272,0.01616,0.01472,0.88576,0.011264
+696,515.674,1.93921,0.79856,0.008512,0.230816,0.010592,0.010496,0.016544,0.016384,0.015584,0.47776,0.011872
+697,845.408,1.18286,0.796704,0.008352,0.230784,0.010528,0.010432,0.017728,0.01504,0.015424,0.476096,0.01232
+698,825.058,1.21204,1.00362,0.00848,0.40992,0.01024,0.011424,0.017216,0.016192,0.014656,0.503488,0.012
+699,726.37,1.37671,0.806592,0.008192,0.239552,0.010304,0.011392,0.019328,0.016032,0.014688,0.474784,0.01232
+700,770.07,1.29858,1.48512,0.00832,0.444576,0.070784,0.010528,0.016992,0.016384,0.014464,0.890752,0.01232
+701,543.921,1.8385,0.79872,0.00944,0.225376,0.010496,0.010432,0.01664,0.016384,0.014336,0.483328,0.012288
+702,795.417,1.2572,0.795872,0.008192,0.223232,0.01024,0.01024,0.016384,0.016384,0.016032,0.482944,0.012224
+703,869.454,1.15015,0.984992,0.009408,0.411936,0.010528,0.010432,0.01776,0.014976,0.015488,0.482176,0.012288
+704,706.694,1.41504,0.815264,0.008512,0.245056,0.010496,0.010336,0.017888,0.01648,0.01488,0.479584,0.012032
+705,493.851,2.0249,0.794624,0.01024,0.223232,0.01024,0.01024,0.017856,0.015936,0.014784,0.479808,0.012288
+706,839.086,1.19177,0.786432,0.008192,0.22224,0.010368,0.010336,0.017152,0.016384,0.01536,0.474112,0.012288
+707,833.961,1.1991,0.789312,0.008448,0.22176,0.010272,0.010208,0.016384,0.016384,0.014432,0.479136,0.012288
+708,836.089,1.19604,0.794144,0.008352,0.221024,0.01024,0.01024,0.017536,0.015232,0.0144,0.48496,0.01216
+709,832.605,1.20105,0.796864,0.008384,0.219136,0.011744,0.010528,0.016736,0.016288,0.016128,0.486784,0.011136
+710,669.993,1.49255,0.843776,0.008192,0.249856,0.024576,0.012192,0.017568,0.015296,0.018432,0.485408,0.012256
+711,1019.79,0.980591,0.792576,0.008192,0.223232,0.010368,0.011264,0.01728,0.016032,0.014688,0.479232,0.012288
+712,840.378,1.18994,0.790592,0.008224,0.220864,0.010528,0.010304,0.017696,0.016352,0.014816,0.48048,0.011328
+713,848.297,1.17883,0.802656,0.008192,0.220992,0.01184,0.010848,0.016416,0.016416,0.014304,0.49136,0.012288
+714,797.585,1.25378,0.797696,0.008192,0.221056,0.0104,0.012256,0.0224,0.015648,0.015232,0.480416,0.012096
+715,844.449,1.1842,0.816672,0.02432,0.22336,0.010368,0.01024,0.018464,0.016352,0.014336,0.487136,0.012096
+716,838.829,1.19214,0.791744,0.009248,0.220128,0.0104,0.011328,0.017184,0.016256,0.014464,0.4808,0.011936
+717,843.753,1.18518,0.790656,0.009408,0.219808,0.0104,0.01024,0.01776,0.015008,0.015488,0.481248,0.011296
+718,834.216,1.19873,0.79328,0.008224,0.22128,0.010816,0.01136,0.016672,0.015072,0.015872,0.481696,0.012288
+719,831.844,1.20215,0.78816,0.008352,0.221184,0.011296,0.009184,0.018304,0.015904,0.014944,0.476768,0.012224
+720,835.748,1.19653,0.794944,0.008192,0.219456,0.011264,0.010368,0.019008,0.016224,0.014592,0.483552,0.012288
+721,815.368,1.22644,0.797472,0.008608,0.227808,0.010336,0.011744,0.018368,0.016096,0.014784,0.47744,0.012288
+722,850.057,1.17639,0.790528,0.008192,0.219136,0.01152,0.010272,0.01712,0.016384,0.014336,0.48128,0.012288
+723,817.646,1.22302,0.806336,0.00928,0.220032,0.011872,0.010528,0.016576,0.028096,0.014912,0.483072,0.011968
+724,779.819,1.28235,0.802816,0.008224,0.227296,0.011872,0.010496,0.016544,0.016384,0.015648,0.484064,0.012288
+725,788.906,1.26758,0.793472,0.008544,0.22176,0.010208,0.011904,0.01664,0.016128,0.016096,0.479744,0.012448
+726,891.307,1.12195,0.792352,0.009376,0.221568,0.01184,0.01056,0.017056,0.01632,0.01552,0.477952,0.01216
+727,802.351,1.24634,0.8192,0.008192,0.22528,0.011488,0.0232,0.016512,0.016384,0.021856,0.484,0.012288
+728,854.401,1.17041,0.796576,0.008192,0.222592,0.01056,0.009952,0.016704,0.016192,0.014816,0.485216,0.012352
+729,839,1.19189,0.786432,0.008192,0.221152,0.010272,0.01024,0.017696,0.016352,0.014944,0.475296,0.012288
+730,841.327,1.1886,0.787552,0.009312,0.220064,0.010272,0.01024,0.018112,0.015904,0.014944,0.476448,0.012256
+731,838.914,1.19202,0.790528,0.008192,0.221184,0.01024,0.010272,0.017888,0.016192,0.01504,0.479232,0.012288
+732,835.577,1.19678,0.79616,0.008192,0.221184,0.01024,0.011552,0.018368,0.015136,0.01536,0.484064,0.012064
+733,810.527,1.23376,0.799456,0.008448,0.222944,0.010976,0.010272,0.018432,0.016128,0.014432,0.485536,0.012288
+734,838.056,1.19324,0.792,0.00944,0.219936,0.012288,0.010272,0.017792,0.014944,0.015968,0.479072,0.012288
+735,813.829,1.22876,0.804544,0.008192,0.222592,0.01088,0.01024,0.016384,0.028672,0.014496,0.480896,0.012192
+736,827.642,1.20825,0.805088,0.008544,0.219296,0.011552,0.010528,0.016832,0.028672,0.016096,0.481504,0.012064
+737,701.25,1.42603,0.886784,0.024352,0.2808,0.010272,0.01584,0.020992,0.015968,0.022944,0.48352,0.012096
+738,852.8,1.17261,0.809472,0.008352,0.231776,0.01024,0.010336,0.018368,0.016352,0.014336,0.487424,0.012288
+739,844.972,1.18347,0.796672,0.008192,0.22272,0.010784,0.011488,0.0192,0.016224,0.014496,0.48128,0.012288
+740,824.809,1.2124,0.800768,0.008192,0.223136,0.011552,0.010528,0.016928,0.016384,0.014336,0.487424,0.012288
+741,828.228,1.2074,0.789312,0.008416,0.221696,0.010336,0.010272,0.019712,0.015072,0.01536,0.47616,0.012288
+742,841.759,1.18799,0.798912,0.008384,0.220864,0.010592,0.01024,0.017376,0.01536,0.014336,0.489472,0.012288
+743,832.436,1.20129,0.804096,0.009568,0.221344,0.010752,0.01024,0.018048,0.016096,0.014912,0.490912,0.012224
+744,813.182,1.22974,0.805984,0.008192,0.22688,0.010656,0.010304,0.018336,0.016128,0.014656,0.488512,0.01232
+745,833.791,1.19934,0.79872,0.008192,0.221152,0.010272,0.010272,0.016352,0.016384,0.01536,0.488448,0.012288
+746,834.981,1.19763,0.793216,0.008352,0.219616,0.012256,0.010272,0.01744,0.015328,0.015648,0.482016,0.012288
+747,819.446,1.22034,0.81024,0.008192,0.222208,0.010624,0.010528,0.018784,0.026656,0.014368,0.48656,0.01232
+748,819.036,1.22095,0.803872,0.008192,0.221216,0.01024,0.011456,0.016544,0.025216,0.01584,0.48304,0.012128
+749,823.234,1.21472,0.80896,0.008192,0.221184,0.011328,0.01056,0.017024,0.027968,0.014848,0.4856,0.012256
+750,712.472,1.40356,0.841728,0.008192,0.27344,0.010528,0.010592,0.01792,0.0152,0.015392,0.478176,0.012288
+751,922.73,1.08374,0.796672,0.008192,0.224832,0.010688,0.01024,0.0184,0.015712,0.01504,0.48128,0.012288
+752,840.205,1.19019,0.795968,0.008192,0.222304,0.011168,0.01024,0.01744,0.016384,0.014464,0.483808,0.011968
+753,835.663,1.19666,0.79872,0.009696,0.221728,0.011456,0.01056,0.016896,0.016416,0.014304,0.485376,0.012288
+754,827.308,1.20874,0.8008,0.008224,0.221184,0.012288,0.012288,0.02048,0.016384,0.014464,0.484256,0.011232
+755,819.61,1.22009,0.792864,0.008544,0.223328,0.010592,0.0104,0.02048,0.016,0.01472,0.47664,0.01216
+756,843.753,1.18518,0.792064,0.008192,0.223136,0.010336,0.010272,0.0184,0.016192,0.014528,0.478848,0.01216
+757,836.089,1.19604,0.801024,0.008384,0.22112,0.01184,0.01056,0.01664,0.016416,0.015552,0.488224,0.012288
+758,830.747,1.20374,0.792576,0.008192,0.222304,0.011168,0.011296,0.017376,0.016288,0.014432,0.479264,0.012256
+759,836.345,1.19568,0.788576,0.009408,0.223456,0.010848,0.01152,0.017152,0.016384,0.01552,0.471904,0.012384
+760,836.345,1.19568,0.792096,0.008192,0.221184,0.011712,0.010592,0.016608,0.016384,0.015712,0.479424,0.012288
+761,756.977,1.32104,0.833568,0.008192,0.235552,0.010208,0.011744,0.016928,0.022528,0.030144,0.485952,0.01232
+762,850.498,1.17578,0.802656,0.008192,0.221152,0.01184,0.010624,0.017792,0.015072,0.021952,0.483872,0.01216
+763,594.83,1.68115,0.876032,0.009248,0.2872,0.01056,0.010432,0.017504,0.021408,0.030048,0.477056,0.012576
+764,991.648,1.00842,0.797408,0.008128,0.224032,0.010272,0.010208,0.01824,0.016512,0.0144,0.483328,0.012288
+765,837.971,1.19336,0.78848,0.009472,0.221952,0.01024,0.01024,0.017792,0.014976,0.015904,0.475616,0.012288
+766,839.516,1.19116,0.795264,0.008352,0.2216,0.011584,0.010528,0.016928,0.01632,0.014336,0.483328,0.012288
+767,822.49,1.21582,0.790784,0.007072,0.2232,0.01136,0.01056,0.016992,0.016416,0.015648,0.477376,0.01216
+768,843.406,1.18567,0.804864,0.008192,0.222272,0.0112,0.010432,0.017792,0.015968,0.014624,0.49312,0.011264
+769,827.057,1.20911,0.79344,0.008512,0.221728,0.011968,0.010528,0.016416,0.016384,0.01536,0.480256,0.012288
+770,808.288,1.23718,0.815104,0.008192,0.228736,0.01088,0.010272,0.018336,0.026688,0.015456,0.484256,0.012288
+771,822.986,1.21509,0.80928,0.008416,0.22112,0.010336,0.013696,0.020992,0.022624,0.014336,0.486432,0.011328
+772,815.611,1.22607,0.811008,0.008192,0.22224,0.01056,0.010336,0.01824,0.02944,0.015744,0.483968,0.012288
+773,823.399,1.21448,0.804864,0.009248,0.220128,0.012096,0.010464,0.0176,0.026912,0.014848,0.48128,0.012288
+774,823.648,1.21411,0.799232,0.008416,0.221504,0.012064,0.010496,0.017504,0.015232,0.01568,0.48608,0.012256
+775,827.308,1.20874,0.794624,0.008192,0.223232,0.011744,0.01056,0.016576,0.016096,0.014656,0.48128,0.012288
+776,629.815,1.58777,0.85744,0.009376,0.24464,0.026624,0.01024,0.026048,0.016576,0.014752,0.497184,0.012
+777,937.836,1.06628,0.79872,0.008192,0.227232,0.010368,0.010208,0.017472,0.015296,0.016,0.481664,0.012288
+778,843.319,1.18579,0.7944,0.008256,0.22528,0.012288,0.01024,0.018432,0.016384,0.014336,0.477024,0.01216
+779,845.408,1.18286,0.796672,0.009344,0.22208,0.011392,0.010464,0.018528,0.016224,0.014528,0.481824,0.012288
+780,834.811,1.19788,0.793088,0.008448,0.221376,0.010304,0.010272,0.017728,0.0168,0.014592,0.48128,0.012288
+781,831.338,1.20288,0.812896,0.009408,0.221856,0.011488,0.010496,0.017088,0.016032,0.01472,0.49936,0.012448
+782,824.311,1.21313,0.801088,0.008512,0.221408,0.011712,0.010496,0.016864,0.016224,0.01584,0.48768,0.012352
+783,830.242,1.20447,0.79056,0.009376,0.221056,0.011104,0.010368,0.017632,0.015136,0.01568,0.477888,0.01232
+784,828.982,1.2063,0.78592,0.008288,0.221504,0.011488,0.009152,0.017856,0.016256,0.014912,0.474304,0.01216
+785,838.571,1.1925,0.791552,0.009312,0.221888,0.010464,0.01024,0.016384,0.016384,0.014432,0.480256,0.012192
+786,826.39,1.21008,0.799008,0.008384,0.219712,0.012,0.010528,0.016384,0.028352,0.01568,0.47568,0.012288
+787,825.39,1.21155,0.808512,0.008192,0.222592,0.010528,0.010496,0.01648,0.03072,0.01536,0.48192,0.012224
+788,831.591,1.20251,0.8096,0.008608,0.21936,0.011392,0.010496,0.016608,0.029088,0.014432,0.487328,0.012288
+789,509.897,1.96118,0.839136,0.022112,0.228832,0.010592,0.010848,0.018432,0.042304,0.01504,0.47872,0.012256
+790,1211.3,0.825562,0.837824,0.008608,0.247488,0.01056,0.010464,0.016672,0.016384,0.028672,0.486752,0.012224
+791,845.844,1.18225,0.795392,0.008384,0.225184,0.01056,0.010592,0.016384,0.016384,0.015456,0.481216,0.011232
+792,842.625,1.18677,0.788352,0.00928,0.221856,0.010496,0.010272,0.017568,0.01536,0.015424,0.475872,0.012224
+793,831.591,1.20251,1.07014,0.008192,0.2232,0.010304,0.010208,0.01792,0.015904,0.014816,0.754176,0.015424
+794,686.27,1.45715,0.788384,0.008192,0.222624,0.010592,0.010336,0.017984,0.015968,0.014656,0.47584,0.012192
+795,834.131,1.19885,1.55507,0.008416,0.225696,0.01024,0.01024,0.018112,0.016096,0.01472,1.23722,0.014336
+796,512.737,1.95032,0.797056,0.008576,0.226944,0.010656,0.010208,0.017728,0.01504,0.014336,0.48128,0.012288
+797,802.351,1.24634,0.792448,0.008448,0.224672,0.011168,0.01024,0.016384,0.016416,0.015648,0.477152,0.01232
+798,834.981,1.19763,1.18419,0.008544,0.222656,0.010912,0.011424,0.017248,0.016192,0.014528,0.8704,0.012288
+799,646.414,1.547,0.798752,0.008448,0.221792,0.011296,0.011104,0.018048,0.015936,0.014848,0.485216,0.012064
+800,791.498,1.26343,1.44563,0.008256,0.473632,0.012352,0.01024,0.017984,0.016096,0.014752,0.880192,0.012128
+801,486.345,2.05615,0.831712,0.008448,0.25968,0.010496,0.0104,0.0176,0.016544,0.0232,0.473088,0.012256
+802,839.774,1.1908,0.806848,0.00848,0.237248,0.010528,0.010528,0.017632,0.0152,0.01536,0.479712,0.01216
+803,837.2,1.19446,0.978848,0.008224,0.408576,0.010592,0.010464,0.018176,0.01616,0.014656,0.47984,0.01216
+804,603.774,1.65625,0.80608,0.008224,0.231392,0.010368,0.012,0.018176,0.016096,0.01504,0.482656,0.012128
+805,881.334,1.13464,1.42909,0.008448,0.467008,0.012352,0.010272,0.017888,0.016416,0.014816,0.869664,0.012224
+806,547.703,1.82581,0.799424,0.008608,0.23376,0.01024,0.010336,0.017664,0.01632,0.014656,0.475552,0.012288
+807,876.712,1.14062,0.811008,0.00928,0.231648,0.011008,0.011424,0.016576,0.016224,0.014592,0.488,0.012256
+808,806.299,1.24023,0.983808,0.008608,0.407936,0.01024,0.01024,0.018432,0.01632,0.0144,0.485376,0.012256
+809,472.27,2.11743,0.820992,0.008192,0.233472,0.01152,0.010816,0.017728,0.015232,0.015488,0.49632,0.012224
+810,609.978,1.6394,0.83968,0.011616,0.26896,0.01024,0.011488,0.01712,0.015968,0.014816,0.477184,0.012288
+811,869.731,1.14978,0.813024,0.008192,0.237568,0.01024,0.01024,0.01776,0.016288,0.014752,0.485728,0.012256
+812,797.353,1.25415,0.827456,0.008192,0.26624,0.01024,0.01024,0.018368,0.016032,0.014592,0.4712,0.012352
+813,722.781,1.38354,0.829664,0.00832,0.264448,0.010272,0.010272,0.018368,0.01632,0.0144,0.47488,0.012384
+814,792.186,1.26233,0.837632,0.008448,0.265632,0.010528,0.011808,0.017248,0.016384,0.014336,0.481024,0.012224
+815,477.222,2.09546,0.814784,0.01024,0.243392,0.010528,0.010272,0.017856,0.014912,0.01584,0.47936,0.012384
+816,878.122,1.13879,0.796864,0.008416,0.231616,0.010304,0.010272,0.017536,0.0152,0.015744,0.475712,0.012064
+817,814.638,1.22754,1.05472,0.008192,0.228384,0.010528,0.010528,0.016416,0.016064,0.014624,0.735424,0.01456
+818,690.842,1.44751,0.795936,0.008192,0.226368,0.010528,0.010496,0.0168,0.016224,0.014496,0.48032,0.012512
+819,735.17,1.36023,1.62931,0.00928,0.259008,0.011584,0.010816,0.016512,0.016384,0.014336,1.27795,0.01344
+820,504.807,1.98096,0.805024,0.009472,0.237888,0.01056,0.010368,0.016384,0.016416,0.014304,0.478368,0.011264
+821,845.233,1.18311,0.796832,0.008352,0.232832,0.010304,0.010528,0.016672,0.016352,0.014368,0.475136,0.012288
+822,833.537,1.19971,1.05632,0.008224,0.228512,0.010528,0.010464,0.016416,0.01616,0.014912,0.7352,0.015904
+823,709.448,1.40955,0.79936,0.008544,0.23184,0.011744,0.010592,0.016608,0.016384,0.014336,0.477152,0.01216
+824,808.847,1.23633,1.58355,0.008448,0.235712,0.01024,0.011264,0.018912,0.016032,0.01488,1.25517,0.012896
+825,499.482,2.00208,0.79872,0.008192,0.233472,0.011456,0.010496,0.016768,0.015968,0.01488,0.4752,0.012288
+826,777.377,1.28638,0.8008,0.008224,0.2272,0.010368,0.010272,0.017568,0.015168,0.015456,0.484256,0.012288
+827,891.695,1.12146,1.18854,0.00848,0.225728,0.011296,0.01056,0.016608,0.016544,0.014592,0.872448,0.012288
+828,550.353,1.81702,0.790528,0.009664,0.225856,0.01024,0.012288,0.018432,0.016384,0.014336,0.47104,0.012288
+829,1004.54,0.995483,1.43334,0.008512,0.456832,0.02048,0.01024,0.01776,0.015008,0.01632,0.875968,0.012224
+830,530.227,1.88599,0.795488,0.00832,0.235392,0.011104,0.01024,0.016416,0.016352,0.015456,0.46992,0.012288
+831,822.16,1.21631,0.804832,0.009376,0.22768,0.010528,0.010496,0.016352,0.016384,0.014336,0.487424,0.012256
+832,845.582,1.18262,1.20134,0.009472,0.221952,0.01024,0.011552,0.016608,0.016512,0.01472,0.875808,0.02448
+833,573.87,1.74255,0.806944,0.00848,0.239296,0.010528,0.010464,0.018432,0.016416,0.014304,0.47696,0.012064
+834,816.913,1.22412,1.45264,0.008448,0.481888,0.01344,0.010528,0.018048,0.015328,0.015584,0.877184,0.012192
+835,567.982,1.76062,0.800992,0.008448,0.231296,0.010336,0.01024,0.016384,0.016384,0.014368,0.481248,0.012288
+836,744.66,1.3429,0.810208,0.00928,0.245952,0.01056,0.010432,0.01664,0.016384,0.014336,0.474368,0.012256
+837,834.216,1.19873,0.990592,0.008224,0.411648,0.010272,0.012256,0.020576,0.016288,0.015392,0.483584,0.012352
+838,737.42,1.35608,0.821184,0.009344,0.239488,0.01056,0.01088,0.016448,0.016384,0.015456,0.490368,0.012256
+839,492.042,2.03235,0.848064,0.010432,0.259616,0.01056,0.0104,0.016384,0.024576,0.028672,0.475136,0.012288
+840,849.881,1.17664,0.796128,0.00864,0.231424,0.01024,0.01024,0.016416,0.016352,0.015584,0.475072,0.01216
+841,839.43,1.19128,0.789472,0.008512,0.223872,0.010272,0.011264,0.01664,0.016256,0.014816,0.475552,0.012288
+842,705.903,1.41663,0.821248,0.008224,0.243392,0.010528,0.014368,0.021952,0.01488,0.018176,0.47744,0.012288
+843,703.901,1.42065,0.821824,0.008576,0.248,0.011296,0.011008,0.016608,0.016384,0.015392,0.482272,0.012288
+844,542.014,1.84497,0.806912,0.01024,0.241024,0.010592,0.010464,0.016416,0.01616,0.014592,0.475136,0.012288
+845,818.136,1.22229,0.803584,0.00864,0.227872,0.01024,0.01216,0.016448,0.01616,0.01872,0.48112,0.012224
+846,742.029,1.34766,0.8192,0.009792,0.229824,0.011424,0.010784,0.022848,0.030496,0.01456,0.477248,0.012224
+847,784.449,1.27478,0.798272,0.008192,0.231424,0.01024,0.01024,0.018432,0.016384,0.015648,0.475456,0.012256
+848,796.732,1.25513,1.12029,0.008288,0.231328,0.011296,0.010848,0.017824,0.016416,0.014752,0.794816,0.01472
+849,413.028,2.42114,0.7976,0.0088,0.233088,0.01056,0.010464,0.016544,0.016224,0.014368,0.475264,0.012288
+850,1575.08,0.634888,0.792992,0.008608,0.226848,0.01056,0.010464,0.016192,0.01616,0.014752,0.477184,0.012224
+851,811.571,1.23218,0.79552,0.008512,0.227872,0.011904,0.010528,0.01648,0.016384,0.014336,0.478208,0.011296
+852,746.492,1.3396,0.801792,0.008224,0.230464,0.011008,0.0104,0.01776,0.01648,0.014688,0.480704,0.012064
+853,812.215,1.2312,0.808992,0.008192,0.237568,0.01024,0.012032,0.018656,0.016032,0.01472,0.479232,0.01232
+854,478.03,2.09192,0.845824,0.01024,0.276096,0.01056,0.010336,0.016352,0.016384,0.015392,0.478176,0.012288
+855,841.846,1.18787,0.804128,0.008192,0.233472,0.012288,0.010272,0.01792,0.016192,0.015008,0.478624,0.01216
+856,839.688,1.19092,0.79472,0.008288,0.229376,0.01024,0.0104,0.017664,0.016,0.014752,0.475712,0.012288
+857,735.963,1.35876,0.801888,0.009376,0.229536,0.010656,0.010304,0.018624,0.01632,0.014432,0.479232,0.013408
+858,843.493,1.18555,1.13702,0.008448,0.234016,0.010272,0.012128,0.016672,0.016224,0.014336,0.80896,0.015968
+859,571.269,1.75049,0.794656,0.00976,0.229856,0.010272,0.011264,0.017376,0.01584,0.014656,0.473312,0.01232
+860,737.155,1.35657,0.794048,0.008352,0.229248,0.010208,0.0104,0.017664,0.016128,0.015168,0.474752,0.012128
+861,962.18,1.03931,0.79872,0.009248,0.227296,0.011264,0.01024,0.01808,0.016064,0.014752,0.479488,0.012288
+862,726.692,1.3761,0.800832,0.00848,0.225504,0.010304,0.013856,0.022336,0.014944,0.016192,0.476928,0.012288
+863,802.429,1.24622,0.799744,0.008512,0.234144,0.010272,0.010208,0.019712,0.015104,0.014336,0.47504,0.012416
+864,578.531,1.72852,0.817152,0.010304,0.238944,0.01056,0.010464,0.018496,0.016384,0.014336,0.48496,0.012704
+865,660.379,1.51428,0.878976,0.008544,0.276544,0.011296,0.020928,0.029184,0.016416,0.014304,0.490496,0.011264
+866,948.477,1.05432,0.82672,0.009344,0.2528,0.010272,0.010208,0.017664,0.015104,0.015552,0.483488,0.012288
+867,723.228,1.38269,0.81328,0.00848,0.23104,0.010752,0.013824,0.020064,0.015264,0.01568,0.485696,0.01248
+868,813.263,1.22961,0.79232,0.008224,0.229728,0.01024,0.01024,0.018048,0.016,0.015072,0.472576,0.012192
+869,566.137,1.76636,0.810336,0.01024,0.243712,0.01024,0.01184,0.016608,0.016192,0.014784,0.474496,0.012224
+870,849.616,1.177,0.797536,0.008544,0.233952,0.010272,0.010208,0.016384,0.016384,0.014336,0.475136,0.01232
+871,834.131,1.19885,0.79984,0.008192,0.227328,0.01024,0.011392,0.016608,0.016064,0.014752,0.482912,0.012352
+872,817.728,1.2229,0.982208,0.008288,0.409504,0.010272,0.012448,0.022304,0.016384,0.014368,0.47632,0.01232
+873,727.66,1.37427,0.805472,0.00848,0.232096,0.01024,0.011232,0.017408,0.016384,0.014336,0.482784,0.012512
+874,744.727,1.34277,1.452,0.008736,0.472352,0.012672,0.010496,0.018048,0.01632,0.014688,0.886464,0.012224
+875,560.827,1.78308,0.7984,0.008512,0.227392,0.0104,0.011328,0.017344,0.016384,0.014464,0.480288,0.012288
+876,821.583,1.21716,0.798912,0.00832,0.229248,0.010432,0.010272,0.016352,0.017536,0.015232,0.479168,0.012352
+877,686.442,1.45679,0.98304,0.009248,0.40816,0.01056,0.012352,0.020416,0.016288,0.015584,0.478144,0.012288
+878,828.982,1.2063,0.825344,0.008192,0.261312,0.010464,0.010688,0.018112,0.016128,0.014752,0.473408,0.012288
+879,780.042,1.28198,1.44202,0.008416,0.468896,0.012416,0.01024,0.017984,0.016608,0.01456,0.88064,0.012256
+880,552.543,1.80981,0.802208,0.00848,0.229152,0.010528,0.01024,0.017472,0.015296,0.01584,0.48304,0.01216
+881,831.506,1.20264,0.795552,0.00864,0.225728,0.010304,0.010272,0.017568,0.015168,0.015744,0.479872,0.012256
+882,848.033,1.1792,0.980128,0.009344,0.4064,0.01024,0.013888,0.020928,0.016416,0.01552,0.475072,0.01232
+883,711.853,1.40479,0.801344,0.008512,0.230848,0.010528,0.010752,0.017888,0.015936,0.014336,0.480256,0.012288
+884,702.452,1.42358,0.993344,0.011328,0.422848,0.011264,0.010464,0.017152,0.016288,0.014464,0.477184,0.012352
+885,720.873,1.38721,0.794624,0.009568,0.225952,0.01024,0.01024,0.016416,0.016352,0.014336,0.479232,0.012288
+886,794.723,1.2583,0.815808,0.008416,0.23504,0.011264,0.01024,0.016384,0.016384,0.014336,0.49152,0.012224
+887,860.143,1.1626,1.18957,0.008192,0.233472,0.012128,0.0104,0.016384,0.016384,0.014336,0.86576,0.012512
+888,609.342,1.64111,0.798752,0.009216,0.225504,0.011008,0.011552,0.017152,0.017856,0.014848,0.479296,0.01232
+889,697.488,1.43372,1.59334,0.00944,0.254784,0.011456,0.010528,0.016864,0.016416,0.014336,1.24627,0.013248
+890,544.934,1.83508,0.803424,0.0088,0.236896,0.010912,0.01024,0.016384,0.016384,0.01552,0.476,0.012288
+891,806.299,1.24023,0.798176,0.008608,0.231456,0.01024,0.011456,0.015168,0.016384,0.014336,0.477184,0.013344
+892,841.068,1.18896,0.978688,0.00832,0.407424,0.011904,0.012672,0.019552,0.015264,0.015488,0.475904,0.01216
+893,734.445,1.36157,0.796704,0.008224,0.229376,0.01024,0.011392,0.019328,0.016064,0.014656,0.475136,0.012288
+894,722.271,1.38452,1.4377,0.008192,0.474304,0.012704,0.010624,0.016256,0.016,0.014752,0.872576,0.012288
+895,590.159,1.69446,0.796384,0.008512,0.228832,0.010528,0.01056,0.01664,0.016064,0.014624,0.478496,0.012128
+896,800.939,1.24854,0.820352,0.008192,0.24288,0.010592,0.010464,0.01664,0.016288,0.022624,0.48048,0.012192
+897,721.826,1.38538,1.01517,0.0096,0.428256,0.01056,0.012384,0.02048,0.016352,0.014368,0.490752,0.012416
+898,754.814,1.32483,0.794688,0.008192,0.227136,0.010464,0.011488,0.017152,0.016384,0.016032,0.476544,0.011296
+899,524.758,1.90564,0.822752,0.01024,0.253952,0.01024,0.01024,0.016384,0.016384,0.014336,0.478592,0.012384
+900,894.812,1.11755,0.814432,0.008192,0.229376,0.010272,0.012096,0.016544,0.016384,0.014336,0.49504,0.012192
+901,803.847,1.24402,0.79872,0.008224,0.230912,0.010528,0.010464,0.016352,0.016384,0.01616,0.477408,0.012288
+902,815.368,1.22644,0.984896,0.00928,0.40832,0.010432,0.013376,0.019392,0.016384,0.014336,0.48128,0.012096
+903,726.048,1.37732,0.798592,0.008192,0.23104,0.010464,0.0104,0.018432,0.016384,0.014336,0.477088,0.012256
+904,498.176,2.00732,0.80368,0.01088,0.235648,0.010368,0.01024,0.016352,0.016384,0.014368,0.477152,0.012288
+905,797.353,1.25415,0.79872,0.009344,0.230272,0.01024,0.01024,0.0176,0.016288,0.01504,0.477408,0.012288
+906,817.32,1.22351,0.794944,0.008544,0.231936,0.01024,0.01024,0.017696,0.016192,0.01472,0.473056,0.01232
+907,844.972,1.18347,0.983232,0.008192,0.407552,0.011488,0.012512,0.02096,0.016192,0.014624,0.479232,0.01248
+908,732.148,1.36584,0.797728,0.009408,0.22976,0.010528,0.010432,0.018112,0.016512,0.014496,0.476288,0.012192
+909,542.912,1.84192,0.811552,0.010816,0.243552,0.010368,0.011392,0.016704,0.01632,0.014784,0.475328,0.012288
+910,847.419,1.18005,0.798336,0.008512,0.231424,0.01024,0.010272,0.016352,0.016384,0.015584,0.477184,0.012384
+911,805.269,1.24182,0.796832,0.008352,0.233472,0.01024,0.010304,0.01632,0.016384,0.015584,0.473888,0.012288
+912,872.789,1.14575,0.983872,0.00912,0.405504,0.011552,0.013024,0.021536,0.015328,0.014336,0.481248,0.012224
+913,698.917,1.43079,0.792576,0.009312,0.225984,0.010496,0.010208,0.018464,0.016352,0.014336,0.475136,0.012288
+914,762.047,1.31226,1.44211,0.008544,0.44848,0.047104,0.01024,0.017632,0.016352,0.014592,0.86688,0.012288
+915,557.241,1.79456,0.796448,0.008192,0.233504,0.010208,0.01024,0.016384,0.016384,0.014336,0.474944,0.012256
+916,847.156,1.18042,0.798464,0.008192,0.227264,0.010304,0.01024,0.017568,0.0152,0.016224,0.481312,0.01216
+917,762.969,1.31067,0.979552,0.0088,0.405504,0.01024,0.0136,0.02048,0.015072,0.015552,0.478016,0.012288
+918,757.747,1.3197,0.792832,0.008256,0.231616,0.011392,0.011072,0.01648,0.015968,0.014752,0.471008,0.012288
+919,716.836,1.39502,0.995072,0.0104,0.425984,0.01024,0.011392,0.01632,0.016448,0.014816,0.47728,0.012192
+920,710.248,1.40796,0.811008,0.009312,0.23024,0.010304,0.01024,0.016384,0.016384,0.016,0.489856,0.012288
+921,806.22,1.24036,0.803616,0.008512,0.227808,0.010272,0.010208,0.017568,0.0152,0.015616,0.486144,0.012288
+922,768.12,1.30188,1.20627,0.008192,0.239616,0.011264,0.011104,0.016576,0.015456,0.015232,0.876544,0.012288
+923,644.938,1.55054,0.813824,0.008736,0.24352,0.010528,0.010368,0.018432,0.016384,0.014336,0.479232,0.012288
+924,780.265,1.28162,1.44179,0.010112,0.477312,0.013632,0.01056,0.016768,0.016448,0.01568,0.868992,0.012288
+925,561.75,1.78015,0.793536,0.008544,0.229984,0.010272,0.010208,0.016384,0.016384,0.014336,0.475136,0.012288
+926,831.675,1.20239,0.800768,0.010176,0.233184,0.010496,0.010304,0.016416,0.016384,0.014336,0.477184,0.012288
+927,838.399,1.19275,1.01805,0.008352,0.450016,0.010528,0.010496,0.016352,0.016096,0.014656,0.479264,0.012288
+928,677.753,1.47546,0.79808,0.008192,0.229408,0.010208,0.011904,0.018368,0.016288,0.01488,0.476832,0.012
+929,830.579,1.20398,1.44234,0.008448,0.479008,0.012704,0.010464,0.016416,0.016384,0.015648,0.871008,0.012256
+930,528.38,1.89258,0.800608,0.008576,0.235616,0.01136,0.010272,0.016832,0.016064,0.014944,0.474592,0.012352
+931,835.918,1.19629,0.80016,0.009344,0.230272,0.01024,0.01024,0.018432,0.016384,0.014336,0.478592,0.01232
+932,841.846,1.18787,0.995136,0.008608,0.427616,0.01056,0.010464,0.016384,0.016384,0.016192,0.476544,0.012384
+933,594.614,1.68176,0.81696,0.00928,0.24672,0.011488,0.010752,0.016672,0.016416,0.014304,0.478944,0.012384
+934,936.55,1.06775,1.59949,0.008192,0.2576,0.01056,0.010368,0.018016,0.016256,0.01488,1.25053,0.013088
+935,505.523,1.97815,0.809184,0.008416,0.232672,0.01056,0.010432,0.016672,0.016288,0.014432,0.487424,0.012288
+936,790.2,1.2655,0.800768,0.009568,0.230048,0.01024,0.01024,0.016384,0.016384,0.014336,0.48128,0.012288
+937,855.919,1.16833,0.995744,0.00848,0.407232,0.010528,0.013056,0.022496,0.016192,0.014528,0.490784,0.012448
+938,720.81,1.38733,0.794624,0.008192,0.23056,0.010592,0.010752,0.016384,0.016416,0.015552,0.473888,0.012288
+939,474.981,2.10535,0.819232,0.011616,0.246432,0.01024,0.01024,0.016384,0.016384,0.014336,0.48128,0.01232
+940,810.608,1.23364,0.798944,0.008416,0.227296,0.010272,0.010208,0.017472,0.015488,0.015808,0.481664,0.01232
+941,814.395,1.22791,0.796672,0.009312,0.229792,0.010464,0.01056,0.016352,0.016192,0.014528,0.477184,0.012288
+942,773.852,1.29224,0.798016,0.008192,0.226304,0.01056,0.012576,0.018784,0.016224,0.01456,0.478528,0.012288
+943,809.486,1.23535,0.802816,0.008192,0.232992,0.01072,0.011296,0.017376,0.016384,0.014336,0.479136,0.012384
+944,545.551,1.83301,0.81648,0.010592,0.249856,0.011456,0.010528,0.016352,0.016224,0.014656,0.474784,0.012032
+945,817.483,1.22327,0.79392,0.008192,0.227328,0.01024,0.01024,0.016384,0.016384,0.015392,0.477568,0.012192
+946,885.143,1.12976,0.796672,0.009408,0.22576,0.010592,0.010432,0.017536,0.01504,0.015616,0.48,0.012288
+947,772.976,1.2937,0.985088,0.008224,0.40736,0.0104,0.013888,0.020096,0.015168,0.015392,0.482272,0.012288
+948,743.039,1.34583,0.804256,0.008416,0.233472,0.01024,0.011552,0.017088,0.016096,0.014656,0.48064,0.012096
+949,506.555,1.97412,0.796128,0.010528,0.236896,0.01056,0.01056,0.016416,0.016096,0.014624,0.468,0.012448
+950,846.543,1.18127,0.788896,0.00848,0.22336,0.011936,0.010528,0.016448,0.016416,0.014304,0.475136,0.012288
+951,751.422,1.33081,0.828,0.008704,0.24176,0.010528,0.0112,0.016704,0.016288,0.023104,0.47616,0.023552
+952,754.675,1.32507,0.808352,0.008192,0.22928,0.010368,0.01152,0.018208,0.02144,0.014336,0.48288,0.012128
+953,798.674,1.25208,0.790528,0.008192,0.231424,0.010272,0.011392,0.017248,0.016096,0.014624,0.468992,0.012288
+954,379.576,2.63452,1.47763,0.008544,0.44304,0.012288,0.012288,0.016544,0.016224,0.016096,0.940352,0.012256
+955,970.731,1.03015,0.815328,0.008512,0.248224,0.010368,0.01024,0.016352,0.017696,0.015008,0.476288,0.01264
+956,767.688,1.30261,1.06877,0.009472,0.246208,0.010528,0.010368,0.017376,0.016448,0.014912,0.72736,0.016096
+957,737.088,1.35669,0.806976,0.008672,0.239872,0.010528,0.010208,0.016384,0.017408,0.015072,0.476704,0.012128
+958,816.75,1.22437,1.57558,0.008512,0.239968,0.01024,0.01024,0.016384,0.016384,0.015808,1.24483,0.013216
+959,496.365,2.01465,0.800768,0.009216,0.23248,0.011392,0.010624,0.015936,0.0168,0.014656,0.477376,0.012288
+960,826.64,1.20972,0.795392,0.008512,0.22784,0.010272,0.011232,0.01536,0.016416,0.015648,0.477856,0.012256
+961,842.972,1.18628,1.18445,0.008608,0.228704,0.01072,0.01056,0.016416,0.016512,0.014368,0.867392,0.011168
+962,526.884,1.89795,0.793984,0.009504,0.22592,0.010336,0.012,0.016672,0.016352,0.014368,0.476448,0.012384
+963,1055.81,0.947144,1.45434,0.008448,0.479232,0.012288,0.011392,0.01696,0.016,0.014656,0.883072,0.012288
+964,478.924,2.08801,0.811456,0.00864,0.245184,0.010592,0.010464,0.016416,0.016352,0.015488,0.476032,0.012288
+965,974.658,1.026,0.824288,0.008544,0.260672,0.0104,0.011264,0.015232,0.01632,0.016384,0.473088,0.012384
+966,791.651,1.26318,0.978912,0.009472,0.406208,0.01024,0.01136,0.016576,0.016896,0.014592,0.48128,0.012288
+967,635.581,1.57336,0.835904,0.008544,0.268608,0.010496,0.011328,0.016928,0.01616,0.014752,0.4768,0.012288
+968,764.75,1.30762,1.44022,0.008448,0.469216,0.012288,0.011264,0.01536,0.016384,0.015488,0.879488,0.012288
+969,590.117,1.69458,0.81136,0.00848,0.247232,0.010624,0.010336,0.015744,0.016192,0.01472,0.475712,0.01232
+970,819.528,1.22021,0.790784,0.00848,0.22928,0.010336,0.01024,0.016416,0.016352,0.014336,0.473088,0.012256
+971,837.371,1.19421,0.977504,0.008416,0.407264,0.010592,0.012192,0.020256,0.016032,0.014848,0.475584,0.01232
+972,677.977,1.47498,0.801824,0.008192,0.237056,0.010752,0.01024,0.018336,0.016224,0.014624,0.473056,0.013344
+973,721.19,1.3866,1.4897,0.008576,0.45216,0.072544,0.011584,0.022624,0.016352,0.014848,0.87872,0.012288
+974,621.925,1.60791,0.7848,0.008512,0.227584,0.01024,0.011616,0.016064,0.01664,0.014688,0.467328,0.012128
+975,651.762,1.5343,0.886464,0.022528,0.282208,0.010656,0.011616,0.041632,0.016384,0.014336,0.474624,0.01248
+976,771.52,1.29614,0.808544,0.008192,0.23056,0.011104,0.012288,0.022304,0.015904,0.014848,0.48112,0.012224
+977,850.94,1.17517,0.808448,0.008192,0.241664,0.010272,0.01152,0.01712,0.016384,0.014336,0.476704,0.012256
+978,545.588,1.83289,0.804864,0.010272,0.237472,0.010304,0.010272,0.016352,0.016416,0.015488,0.476,0.012288
+979,807.332,1.23865,0.797024,0.008512,0.231104,0.01056,0.010272,0.016384,0.016512,0.015328,0.476064,0.012288
+980,881.524,1.1344,0.793088,0.00864,0.22784,0.012,0.010528,0.015968,0.016416,0.01472,0.474848,0.012128
+981,784.524,1.27466,0.994432,0.009536,0.407616,0.010592,0.012576,0.021984,0.015936,0.014656,0.488096,0.01344
+982,669.664,1.49329,0.796128,0.008192,0.231424,0.01024,0.012288,0.016384,0.01632,0.0144,0.4744,0.01248
+983,517.204,1.93347,0.836032,0.010784,0.274816,0.010304,0.01136,0.016448,0.0152,0.015904,0.468896,0.01232
+984,854.58,1.17017,0.794624,0.00944,0.228128,0.010272,0.01024,0.016352,0.016384,0.014336,0.477184,0.012288
+985,818.382,1.22192,0.811008,0.008192,0.228384,0.010496,0.010688,0.016672,0.015936,0.014688,0.493664,0.012288
+986,717.904,1.39294,0.809344,0.008576,0.235552,0.012064,0.014048,0.018912,0.016416,0.015424,0.476064,0.012288
+987,850.498,1.17578,0.800288,0.009312,0.230304,0.010272,0.010208,0.018432,0.016288,0.014432,0.478368,0.012672
+988,509.738,1.96179,0.809152,0.010688,0.246304,0.01024,0.011424,0.015232,0.016352,0.015424,0.471296,0.012192
+989,822.242,1.21619,0.79584,0.008192,0.227328,0.01024,0.01024,0.016384,0.016384,0.014336,0.480448,0.012288
+990,841.846,1.18787,0.797568,0.008416,0.223904,0.011424,0.010496,0.016,0.015328,0.015936,0.483776,0.012288
+991,736.757,1.3573,0.803104,0.008672,0.231296,0.010368,0.014016,0.020096,0.01504,0.014336,0.47696,0.01232
+992,859.511,1.16345,0.799552,0.008512,0.233216,0.010528,0.01184,0.018592,0.016224,0.014944,0.473408,0.012288
+993,786.633,1.27124,1.44035,0.0088,0.468992,0.012288,0.011584,0.016096,0.015328,0.015872,0.879104,0.012288
+994,551.167,1.81433,0.797024,0.008512,0.227392,0.011488,0.010528,0.016864,0.016128,0.014592,0.479232,0.012288
+995,793.184,1.26074,0.78848,0.008256,0.225216,0.011296,0.010368,0.015232,0.016352,0.01568,0.473792,0.012288
+996,839.516,1.19116,0.975296,0.008576,0.407552,0.011296,0.01328,0.01984,0.014976,0.015744,0.47168,0.012352
+997,675.74,1.47986,0.796096,0.008192,0.231456,0.011232,0.010912,0.016736,0.016416,0.014304,0.4744,0.012448
+998,504.682,1.98145,0.800864,0.01024,0.23712,0.01056,0.010368,0.016032,0.016736,0.014336,0.473088,0.012384
+999,898.936,1.11243,0.791776,0.009312,0.226208,0.01136,0.00912,0.016384,0.016384,0.014336,0.47648,0.012192
+1000,791.268,1.26379,0.792576,0.00944,0.22608,0.0104,0.011328,0.016672,0.016448,0.014784,0.475136,0.012288
+1001,822.82,1.21533,0.999712,0.00848,0.42512,0.010592,0.0128,0.02032,0.015904,0.014784,0.479424,0.012288
+1002,737.752,1.35547,0.808864,0.008192,0.242912,0.010656,0.011872,0.017184,0.016384,0.014336,0.475072,0.012256
+1003,472.297,2.11731,0.82736,0.011744,0.258592,0.010272,0.011232,0.016928,0.01632,0.014816,0.4752,0.012256
+1004,832.351,1.20142,0.794624,0.008192,0.228672,0.010528,0.010336,0.016096,0.022464,0.014688,0.47136,0.012288
+1005,825.39,1.21155,0.796448,0.008224,0.223232,0.011392,0.01056,0.014912,0.02048,0.015392,0.480032,0.012224
+1006,751.491,1.33069,0.825344,0.008192,0.255616,0.01056,0.010336,0.016352,0.01632,0.023776,0.471904,0.012288
+1007,780.637,1.28101,0.839936,0.007168,0.233472,0.026592,0.01024,0.017728,0.025216,0.031872,0.475296,0.012352
+1008,482.848,2.07104,0.829344,0.0104,0.2456,0.01024,0.010272,0.016352,0.01616,0.03072,0.477248,0.012352
+1009,854.49,1.17029,0.798944,0.008352,0.23552,0.011328,0.010528,0.015008,0.016384,0.014368,0.476128,0.011328
+1010,828.144,1.20752,0.795392,0.008704,0.232928,0.01056,0.010496,0.01568,0.015264,0.015584,0.473888,0.012288
+1011,693.415,1.44214,0.79872,0.00944,0.22752,0.01056,0.010528,0.018432,0.016352,0.014368,0.479232,0.012288
+1012,783.773,1.27588,0.8056,0.008512,0.23184,0.01024,0.011712,0.016576,0.016256,0.014848,0.483328,0.012288
+1013,545.406,1.8335,0.817632,0.010656,0.243808,0.01136,0.011136,0.016384,0.016384,0.015424,0.480192,0.012288
+1014,831,1.20337,0.793152,0.00848,0.22512,0.012352,0.010592,0.015936,0.016032,0.014656,0.477696,0.012288
+1015,787.389,1.27002,0.792096,0.009312,0.227424,0.010528,0.010464,0.015968,0.016192,0.014624,0.475264,0.01232
+1016,812.698,1.23047,0.798816,0.008224,0.231648,0.010528,0.0104,0.018304,0.016512,0.015552,0.475328,0.01232
+1017,805.031,1.24219,1.13251,0.00848,0.229472,0.01024,0.011616,0.017056,0.016288,0.014432,0.80896,0.015968
+1018,558.876,1.78931,0.799584,0.008608,0.231904,0.010272,0.010208,0.016384,0.016384,0.018112,0.475456,0.012256
+1019,482.848,2.07104,0.848768,0.009088,0.267616,0.009984,0.009248,0.023936,0.01616,0.015072,0.474112,0.023552
+1020,648.923,1.54102,0.974528,0.009536,0.406208,0.01024,0.013376,0.019392,0.016384,0.014336,0.472704,0.012352
+1021,745.676,1.34106,0.797728,0.008192,0.238976,0.01056,0.01056,0.01824,0.015776,0.01488,0.467232,0.013312
+1022,491.717,2.03369,0.812576,0.011296,0.248704,0.010336,0.010272,0.016352,0.016384,0.015616,0.471232,0.012384
+1023,829.15,1.20605,0.795392,0.008544,0.231936,0.011584,0.010304,0.014976,0.016384,0.016064,0.473152,0.012448
+1024,892.764,1.12012,0.78688,0.008512,0.226784,0.010912,0.01024,0.016384,0.016384,0.014336,0.471072,0.012256
+1025,842.105,1.1875,0.97648,0.009504,0.40624,0.01152,0.011008,0.017696,0.016192,0.014624,0.477472,0.012224
+1026,695.18,1.43848,0.79872,0.008192,0.230624,0.010496,0.010784,0.0176,0.016224,0.01472,0.477792,0.012288
+1027,544.681,1.83594,0.800224,0.01024,0.239616,0.011392,0.010496,0.016416,0.016096,0.014592,0.468864,0.012512
+1028,829.654,1.20532,0.7904,0.008544,0.227584,0.011648,0.010528,0.016352,0.016352,0.01456,0.472704,0.012128
+1029,684.263,1.46143,0.798784,0.008256,0.233536,0.01152,0.010464,0.016288,0.01648,0.01472,0.475232,0.012288
+1030,1044.37,0.95752,0.987136,0.009344,0.4064,0.01024,0.014368,0.022144,0.015936,0.015136,0.481312,0.012256
+1031,710.371,1.40771,0.79872,0.010016,0.235136,0.010528,0.010528,0.016416,0.016384,0.015424,0.472,0.012288
+1032,707.916,1.4126,1.42931,0.008192,0.462432,0.017952,0.010592,0.016096,0.016288,0.0152,0.870304,0.012256
+1033,607.805,1.64526,0.802592,0.008416,0.231712,0.011936,0.010432,0.01584,0.016416,0.015008,0.48048,0.012352
+1034,802.351,1.24634,0.800768,0.008224,0.231392,0.011584,0.010496,0.016288,0.01664,0.014656,0.4792,0.012288
+1035,790.276,1.26538,0.9856,0.008576,0.409728,0.01024,0.012288,0.020416,0.016096,0.014624,0.481344,0.012288
+1036,730.515,1.3689,0.796896,0.008544,0.237216,0.010528,0.010304,0.016384,0.016128,0.014592,0.471008,0.012192
+1037,491.186,2.03589,0.8192,0.01024,0.251904,0.01024,0.01024,0.016384,0.016384,0.015712,0.475808,0.012288
+1038,812.86,1.23022,0.79872,0.008256,0.228352,0.010624,0.010816,0.016416,0.016352,0.014368,0.481248,0.012288
+1039,852.978,1.17236,0.79248,0.008192,0.227072,0.011872,0.010496,0.016288,0.016256,0.014976,0.474848,0.01248
+1040,751.008,1.33154,0.800768,0.008192,0.234784,0.01056,0.014592,0.018272,0.015968,0.014496,0.471616,0.012288
+1041,817.402,1.22339,0.801536,0.008608,0.23376,0.01024,0.01024,0.01776,0.016032,0.014912,0.477632,0.012352
+1042,586.483,1.70508,0.809984,0.01024,0.237248,0.010496,0.011872,0.016576,0.01616,0.014752,0.480448,0.012192
+1043,817.891,1.22266,0.796864,0.008384,0.234752,0.010528,0.010464,0.016384,0.015904,0.015072,0.473088,0.012288
+1044,859.241,1.16382,0.79072,0.008608,0.227872,0.011328,0.010336,0.015168,0.016416,0.01536,0.473472,0.01216
+1045,817.565,1.22314,0.98768,0.00848,0.407744,0.010304,0.013536,0.020352,0.01648,0.015168,0.483328,0.012288
+1046,718.596,1.3916,0.796736,0.008288,0.229344,0.01024,0.012288,0.016576,0.016192,0.014336,0.477184,0.012288
+1047,795.031,1.25781,1.45408,0.009472,0.471488,0.012608,0.01024,0.016384,0.016384,0.015552,0.889664,0.012288
+1048,550.242,1.81738,0.798368,0.008224,0.231072,0.010528,0.010272,0.016416,0.016352,0.014336,0.47904,0.012128
+1049,822.986,1.21509,0.80368,0.008544,0.227808,0.010272,0.010304,0.016288,0.016384,0.015392,0.486368,0.01232
+1050,795.958,1.25635,0.980992,0.00944,0.406304,0.011296,0.01056,0.019264,0.016224,0.015648,0.479968,0.012288
+1051,715.583,1.39746,0.798816,0.008192,0.23552,0.01136,0.01104,0.016544,0.016,0.014688,0.473088,0.012384
+1052,715.209,1.39819,1.49322,0.008576,0.497824,0.012384,0.057344,0.016384,0.016416,0.015328,0.856736,0.012224
+1053,564.966,1.77002,0.794752,0.008192,0.231456,0.01024,0.012256,0.016384,0.016416,0.016224,0.4712,0.012384
+1054,822.655,1.21558,0.798016,0.008192,0.230784,0.01056,0.010528,0.015904,0.016256,0.014656,0.478944,0.012192
+1055,743.781,1.34448,0.999424,0.008192,0.42352,0.01056,0.014016,0.020768,0.016256,0.014432,0.479392,0.012288
+1056,750.183,1.33301,0.794592,0.008448,0.227968,0.011424,0.011104,0.016256,0.015712,0.015008,0.476384,0.012288
+1057,707.793,1.41284,1.02778,0.042208,0.42064,0.01024,0.01024,0.016384,0.016416,0.014304,0.48512,0.012224
+1058,727.273,1.375,0.797088,0.00864,0.228512,0.010592,0.01056,0.016128,0.016512,0.014656,0.4792,0.012288
+1059,792.723,1.26147,0.836288,0.008448,0.246208,0.011552,0.010432,0.01648,0.015968,0.023072,0.491808,0.01232
+1060,718.849,1.39111,0.981472,0.008544,0.423168,0.010592,0.010496,0.01616,0.01664,0.014464,0.46912,0.012288
+1061,726.757,1.37598,0.789792,0.009568,0.221504,0.010624,0.011296,0.015296,0.023808,0.014656,0.470784,0.012256
+1062,749.223,1.33472,1.47315,0.00848,0.481088,0.04944,0.010496,0.016032,0.018816,0.014304,0.862208,0.012288
+1063,561.943,1.77954,0.816256,0.009472,0.234208,0.010272,0.01024,0.016416,0.028704,0.015904,0.478688,0.012352
+1064,839.516,1.19116,0.79744,0.008672,0.228704,0.010688,0.010496,0.01632,0.016704,0.014336,0.4792,0.01232
+1065,714.086,1.40039,0.986208,0.00928,0.416704,0.011296,0.013184,0.018528,0.016384,0.014368,0.473056,0.013408
+1066,743.106,1.3457,0.815104,0.008192,0.245152,0.010528,0.01216,0.016832,0.016352,0.014368,0.47904,0.01248
+1067,729.995,1.36987,1.0103,0.029312,0.425984,0.010272,0.01024,0.016352,0.016384,0.014336,0.475136,0.012288
+1068,678.595,1.47363,0.80896,0.009536,0.241792,0.01056,0.010432,0.015872,0.016224,0.015072,0.477184,0.012288
+1069,822.325,1.21606,0.79248,0.008192,0.229376,0.011936,0.010496,0.01648,0.016384,0.015616,0.471648,0.012352
+1070,779.003,1.28369,1.2247,0.009376,0.256736,0.009824,0.00976,0.015392,0.016544,0.016224,0.87856,0.012288
+1071,647.077,1.54541,0.790528,0.009504,0.226016,0.010272,0.012256,0.01776,0.016192,0.014656,0.471456,0.012416
+1072,767.616,1.30273,1.44416,0.00848,0.49136,0.012672,0.010592,0.016448,0.016384,0.014336,0.861696,0.012192
+1073,471.401,2.12134,0.845344,0.009984,0.266496,0.01024,0.010272,0.016352,0.018464,0.030208,0.470976,0.012352
+1074,828.479,1.20703,0.82384,0.00848,0.245664,0.010496,0.010336,0.015968,0.024,0.02928,0.467328,0.012288
+1075,774.584,1.29102,0.98304,0.008192,0.41936,0.010592,0.010368,0.016224,0.016128,0.014752,0.475072,0.012352
+1076,772.83,1.29395,0.79664,0.008192,0.228352,0.01056,0.010944,0.017952,0.016128,0.015104,0.477152,0.012256
+1077,519.533,1.9248,0.801248,0.01072,0.233344,0.010368,0.01024,0.016096,0.015872,0.02128,0.47104,0.012288
+1078,831.675,1.20239,0.799392,0.008704,0.223392,0.01152,0.010592,0.016032,0.031392,0.014464,0.471008,0.012288
+1079,822.655,1.21558,0.805248,0.008384,0.223424,0.012288,0.01024,0.029792,0.016992,0.014688,0.477152,0.012288
+1080,779.152,1.28345,0.79312,0.00864,0.22128,0.011296,0.013152,0.01968,0.015264,0.021952,0.469568,0.012288
+1081,821.665,1.21704,0.793184,0.008416,0.23424,0.01024,0.010272,0.017728,0.015008,0.014368,0.47056,0.012352
+1082,575.928,1.73633,0.813984,0.010784,0.227776,0.01024,0.01024,0.016224,0.03088,0.014336,0.48128,0.012224
+1083,787.844,1.26929,0.798048,0.008192,0.228512,0.01056,0.010304,0.014816,0.017472,0.014784,0.481216,0.012192
+1084,825.806,1.21094,0.80448,0.00832,0.224512,0.01056,0.010336,0.01584,0.028544,0.015232,0.47888,0.012256
+1085,855.83,1.16846,0.97488,0.008192,0.407552,0.011264,0.012832,0.018912,0.016064,0.014656,0.473088,0.01232
+1086,711.358,1.40576,0.798496,0.008544,0.231424,0.01024,0.010368,0.01632,0.01632,0.014336,0.478688,0.012256
+1087,628.414,1.59131,1.00291,0.013984,0.424288,0.01024,0.011392,0.015232,0.016384,0.015488,0.48352,0.012384
+1088,735.764,1.35913,0.792128,0.008192,0.229152,0.010464,0.01024,0.016032,0.015936,0.01488,0.474976,0.012256
+1089,708.896,1.41064,0.86048,0.00848,0.280608,0.010272,0.010208,0.016384,0.016384,0.02576,0.480096,0.012288
+1090,848.209,1.17896,0.977472,0.008576,0.407744,0.010272,0.013824,0.018912,0.016384,0.014336,0.475136,0.012288
+1091,713.962,1.40063,0.796544,0.00944,0.232224,0.01024,0.01136,0.017152,0.016,0.01488,0.473056,0.012192
+1092,729.605,1.37061,1.42138,0.008192,0.454496,0.026144,0.010528,0.016064,0.016608,0.014816,0.862176,0.012352
+1093,588.506,1.69922,0.801184,0.008576,0.229376,0.010336,0.01024,0.016384,0.016384,0.015424,0.48192,0.012544
+1094,828.647,1.20679,0.802816,0.008192,0.228544,0.010528,0.010496,0.016512,0.016064,0.014816,0.485376,0.012288
+1095,809.326,1.2356,0.974848,0.008192,0.407552,0.01024,0.013536,0.019232,0.016192,0.014528,0.473088,0.012288
+1096,646.873,1.5459,0.845824,0.008416,0.268832,0.010272,0.011456,0.016768,0.016576,0.01456,0.486784,0.01216
+1097,771.811,1.29565,1.43808,0.008544,0.472672,0.020512,0.01056,0.015552,0.016448,0.015136,0.866368,0.012288
+1098,592.936,1.68652,0.80896,0.00864,0.24,0.010272,0.010208,0.016288,0.01616,0.014656,0.480544,0.012192
+1099,799.375,1.25098,0.815808,0.008448,0.253728,0.01056,0.00992,0.016192,0.015264,0.015712,0.473504,0.01248
+1100,795.031,1.25781,0.977952,0.008544,0.407808,0.010688,0.01232,0.020416,0.016,0.01472,0.475136,0.01232
+1101,702.935,1.42261,0.832032,0.008544,0.265792,0.01056,0.01056,0.018016,0.014752,0.015552,0.475968,0.012288
+1102,726.112,1.3772,0.992928,0.011296,0.424,0.01056,0.010528,0.016,0.016096,0.014848,0.477504,0.012096
+1103,736.691,1.35742,0.802784,0.008224,0.234912,0.010528,0.010496,0.016,0.016576,0.01456,0.479232,0.012256
+1104,809.966,1.23462,0.80224,0.00848,0.22736,0.011616,0.01056,0.01616,0.015968,0.014752,0.485088,0.012256
+1105,798.285,1.25269,1.21715,0.008544,0.262176,0.010496,0.00976,0.014816,0.017504,0.014432,0.86704,0.012384
+1106,617.332,1.61987,0.804992,0.008448,0.233312,0.010432,0.011424,0.015168,0.016384,0.0144,0.4832,0.012224
+1107,563.799,1.77368,1.46054,0.008512,0.487424,0.013632,0.010656,0.015936,0.016352,0.01504,0.880544,0.012448
+1108,774.584,1.29102,0.807392,0.00848,0.234176,0.010272,0.011808,0.01584,0.015328,0.015712,0.483296,0.01248
+1109,681.417,1.46753,0.80304,0.008416,0.232992,0.010496,0.010464,0.017792,0.015008,0.016064,0.479264,0.012544
+1110,938.159,1.06592,0.992992,0.008512,0.407104,0.010528,0.012448,0.02048,0.016416,0.014304,0.490752,0.012448
+1111,742.702,1.34644,0.792608,0.008192,0.232512,0.010592,0.010464,0.015808,0.015328,0.016032,0.471264,0.012416
+1112,761.621,1.31299,1.43846,0.008512,0.446912,0.052992,0.010496,0.016384,0.015936,0.014784,0.86016,0.012288
+1113,566.059,1.7666,0.795776,0.009216,0.2304,0.01024,0.011456,0.015168,0.016384,0.016224,0.473248,0.01344
+1114,847.682,1.17969,0.78672,0.008544,0.225888,0.011488,0.010464,0.014944,0.016352,0.014336,0.472384,0.01232
+1115,803.61,1.24438,0.976896,0.00944,0.410016,0.010496,0.010368,0.015488,0.015232,0.015712,0.477856,0.012288
+1116,723.419,1.38232,0.788064,0.008256,0.231424,0.010272,0.011424,0.017152,0.016064,0.014752,0.466496,0.012224
+1117,844.014,1.18481,1.42483,0.009472,0.467712,0.013888,0.01056,0.01584,0.01504,0.015424,0.864672,0.012224
+1118,527.563,1.89551,0.802816,0.008192,0.239616,0.01152,0.011008,0.015776,0.016192,0.01472,0.473536,0.012256
+1119,697.785,1.43311,0.804352,0.008192,0.243328,0.01056,0.010336,0.016032,0.016512,0.014496,0.472608,0.012288
+1120,1043.83,0.958008,1.01872,0.008576,0.45104,0.01024,0.01024,0.016384,0.016384,0.014336,0.479232,0.012288
+1121,611.617,1.63501,0.810976,0.008416,0.233056,0.010656,0.01024,0.017824,0.016096,0.0152,0.487296,0.012192
+1122,842.625,1.18677,1.4265,0.008192,0.468288,0.01264,0.010592,0.016064,0.015744,0.01456,0.86832,0.012096
+1123,595.955,1.67798,0.79872,0.008192,0.231424,0.01024,0.010272,0.016064,0.016224,0.01472,0.479296,0.012288
+1124,769.202,1.30005,0.79056,0.008192,0.230816,0.01056,0.010528,0.016384,0.014432,0.015488,0.47184,0.01232
+1125,933.881,1.0708,1.00618,0.008576,0.446688,0.01024,0.011424,0.015296,0.017536,0.014976,0.469152,0.012288
+1126,688.172,1.45312,0.797248,0.008544,0.225504,0.010272,0.010208,0.0184,0.016032,0.01472,0.481248,0.01232
+1127,791.804,1.26294,1.43171,0.008352,0.470592,0.016576,0.010496,0.016064,0.016064,0.015008,0.866272,0.012288
+1128,551.873,1.81201,0.794208,0.00848,0.229376,0.01024,0.01024,0.016384,0.016416,0.014304,0.47648,0.012288
+1129,824.809,1.2124,0.811584,0.008448,0.239424,0.01056,0.009856,0.014912,0.016384,0.015488,0.484224,0.012288
+1130,822.655,1.21558,1.17818,0.00864,0.224608,0.010656,0.010528,0.01584,0.01632,0.01488,0.864416,0.012288
+1131,413.529,2.41821,0.821792,0.008512,0.239072,0.01056,0.010688,0.016416,0.016384,0.014496,0.49312,0.012544
+1132,1141.27,0.876221,1.4377,0.008192,0.470272,0.012704,0.010592,0.015552,0.015168,0.015808,0.87712,0.012288
+1133,563.954,1.77319,0.824384,0.00944,0.260736,0.0104,0.01024,0.016384,0.016384,0.014368,0.474112,0.01232
+1134,838.142,1.19312,0.80496,0.008192,0.239584,0.010304,0.010208,0.016288,0.01632,0.014496,0.478432,0.011136
+1135,688.982,1.45142,0.825856,0.008064,0.262784,0.01024,0.01024,0.01776,0.016064,0.014368,0.474048,0.012288
+1136,881.808,1.13403,0.806752,0.00944,0.238368,0.01024,0.011296,0.016544,0.016288,0.014464,0.477824,0.012288
+1137,530.57,1.88477,0.804864,0.010368,0.241536,0.010272,0.010208,0.01632,0.016448,0.014336,0.473088,0.012288
+1138,844.71,1.18384,0.800768,0.010112,0.2336,0.01024,0.01024,0.016384,0.016384,0.015712,0.475808,0.012288
+1139,837.971,1.19336,0.798048,0.009248,0.230144,0.010464,0.01024,0.016384,0.016384,0.014336,0.477184,0.013664
+1140,716.334,1.396,0.798816,0.008608,0.2248,0.01072,0.013408,0.020928,0.015008,0.01552,0.4776,0.012224
+1141,861.047,1.16138,0.798752,0.008224,0.232864,0.010528,0.010592,0.01744,0.015296,0.015936,0.475584,0.012288
+1142,504.558,1.98193,0.838336,0.010784,0.268448,0.011328,0.010432,0.017024,0.016512,0.014336,0.477184,0.012288
+1143,853.333,1.17188,0.796672,0.008192,0.230848,0.010528,0.010528,0.016128,0.01616,0.014816,0.477184,0.012288
+1144,776.346,1.28809,0.791968,0.008192,0.22736,0.011232,0.010464,0.016256,0.015392,0.015808,0.475008,0.012256
+1145,880.671,1.1355,0.976256,0.008192,0.407552,0.011424,0.011136,0.0184,0.016416,0.014304,0.476416,0.012416
+1146,598.131,1.67188,0.794176,0.00864,0.233536,0.01024,0.012256,0.018432,0.016384,0.014336,0.468128,0.012224
+1147,615.94,1.62354,0.813024,0.01024,0.247808,0.011936,0.01056,0.015968,0.014784,0.015424,0.473856,0.012448
+1148,845.233,1.18311,0.796672,0.008192,0.233472,0.01024,0.01024,0.016384,0.016352,0.014368,0.475136,0.012288
+1149,849.264,1.17749,0.796672,0.008192,0.229376,0.01024,0.01024,0.016384,0.01632,0.0144,0.479232,0.012288
+1150,785.879,1.27246,0.980064,0.008192,0.407552,0.01024,0.014368,0.019872,0.014912,0.015808,0.476768,0.012352
+1151,744.321,1.34351,0.810912,0.008416,0.236704,0.010528,0.010816,0.016384,0.016384,0.014336,0.484736,0.012608
+1152,769.925,1.29883,1.42544,0.008224,0.452608,0.037952,0.010496,0.01664,0.016256,0.01472,0.857344,0.0112
+1153,557.355,1.79419,0.80896,0.008192,0.241664,0.010272,0.011776,0.016224,0.016128,0.015008,0.477408,0.012288
+1154,821.83,1.2168,0.800768,0.008192,0.238592,0.010528,0.010528,0.014912,0.016256,0.015776,0.473696,0.012288
+1155,822.49,1.21582,0.983424,0.008512,0.408096,0.01152,0.013056,0.02048,0.016096,0.01456,0.47728,0.013824
+1156,503.256,1.98706,0.815296,0.008448,0.245568,0.010528,0.010816,0.017632,0.015136,0.014336,0.48064,0.012192
+1157,1002.69,0.997314,0.990688,0.017568,0.422528,0.010464,0.01024,0.016224,0.016192,0.014688,0.47056,0.012224
+1158,729.345,1.37109,0.793792,0.008256,0.23472,0.010624,0.010176,0.016288,0.016256,0.01504,0.470304,0.012128
+1159,766.324,1.30493,0.813632,0.008544,0.233504,0.010432,0.01024,0.0176,0.016864,0.014688,0.489472,0.012288
+1160,890.822,1.12256,0.978944,0.008192,0.407296,0.010496,0.012288,0.02048,0.016416,0.015488,0.476,0.012288
+1161,625.439,1.59888,0.817152,0.009216,0.246432,0.010624,0.011328,0.016544,0.016288,0.014496,0.479936,0.012288
+1162,738.55,1.354,1.43866,0.008544,0.471616,0.013312,0.010816,0.01584,0.016896,0.014688,0.874624,0.01232
+1163,629.96,1.5874,0.821888,0.008544,0.2464,0.011552,0.010432,0.016032,0.015232,0.015712,0.485632,0.012352
+1164,809.166,1.23584,0.78992,0.008192,0.229376,0.011616,0.010464,0.015904,0.015264,0.015776,0.470816,0.012512
+1165,846.631,1.18115,0.976032,0.009248,0.406496,0.011584,0.012992,0.020256,0.01456,0.015456,0.473216,0.012224
+1166,700.89,1.42676,0.813056,0.00832,0.251776,0.011328,0.0112,0.017856,0.01616,0.014752,0.469376,0.012288
+1167,820.677,1.21851,1.50451,0.008192,0.528384,0.043008,0.011456,0.015168,0.016416,0.014432,0.854976,0.01248
+1168,530.295,1.88574,0.802848,0.008192,0.234496,0.010464,0.010496,0.01488,0.017504,0.015104,0.479392,0.01232
+1169,853.689,1.17139,0.79328,0.008448,0.227776,0.010336,0.010368,0.016256,0.016416,0.014304,0.476928,0.012448
+1170,815.287,1.22656,0.989184,0.008192,0.407168,0.010528,0.013568,0.019168,0.016192,0.014656,0.487424,0.012288
+1171,691.892,1.44531,0.811008,0.008192,0.237568,0.01024,0.01024,0.017408,0.01536,0.014336,0.485376,0.012288
+1172,778.411,1.28467,1.67072,0.008576,0.239232,0.010592,0.020512,0.03072,0.016384,0.014336,1.31686,0.013504
+1173,361.742,2.7644,0.848032,0.008352,0.269856,0.01072,0.012096,0.016416,0.016192,0.014688,0.487424,0.012288
+1174,1388,0.720459,0.80912,0.008416,0.232736,0.010528,0.010656,0.016032,0.022912,0.015584,0.480032,0.012224
+1175,758.518,1.31836,0.799104,0.008576,0.230912,0.010624,0.010368,0.018432,0.016384,0.014336,0.477184,0.012288
+1176,839.516,1.19116,0.808928,0.009248,0.232448,0.010208,0.012288,0.018368,0.016192,0.014592,0.483328,0.012256
+1177,783.923,1.27563,1.42038,0.008192,0.452608,0.03072,0.01024,0.016384,0.016384,0.015616,0.856832,0.013408
+1178,547.887,1.8252,0.804128,0.008288,0.234528,0.01056,0.010464,0.016096,0.015072,0.015776,0.480928,0.012416
+1179,816.587,1.22461,0.788224,0.00832,0.229344,0.01024,0.011424,0.016512,0.015232,0.015584,0.46912,0.012448
+1180,780.934,1.28052,0.798816,0.008256,0.226752,0.010464,0.010528,0.016448,0.016256,0.014464,0.483264,0.012384
+1181,768.336,1.30151,0.800768,0.008192,0.233472,0.011584,0.010624,0.01664,0.015904,0.014752,0.477312,0.012288
+1182,761.763,1.31274,1.4505,0.008544,0.473344,0.013536,0.010624,0.016448,0.01616,0.01472,0.884896,0.012224
+1183,590.372,1.69385,0.80768,0.00848,0.23408,0.01024,0.01024,0.016352,0.016416,0.014304,0.485056,0.012512
+1184,823.648,1.21411,0.788544,0.008224,0.227328,0.01136,0.010304,0.0152,0.016384,0.015456,0.472,0.012288
+1185,635.63,1.57324,0.855968,0.008288,0.298912,0.010272,0.010208,0.016384,0.016384,0.015456,0.467616,0.012448
+1186,851.736,1.17407,0.838112,0.008512,0.2768,0.01024,0.011744,0.016928,0.016352,0.014368,0.47088,0.012288
+1187,785.126,1.27368,1.64,0.008192,0.265728,0.01056,0.010464,0.01584,0.014976,0.015712,1.28576,0.012768
+1188,511.425,1.95532,0.794656,0.008192,0.23536,0.0104,0.01024,0.016384,0.016032,0.014688,0.471072,0.012288
+1189,803.768,1.24414,0.79376,0.008192,0.231424,0.010272,0.011264,0.015328,0.016224,0.014496,0.474368,0.012192
+1190,478.672,2.08911,0.7824,0.008256,0.227328,0.011392,0.010528,0.016928,0.015968,0.014816,0.464896,0.012288
+1191,1244.98,0.803223,0.805984,0.008224,0.23552,0.011392,0.011136,0.016384,0.016384,0.014336,0.479232,0.013376
+1192,780.339,1.28149,1.4377,0.008192,0.444128,0.056832,0.015136,0.016384,0.016416,0.014304,0.854016,0.012288
+1193,524.053,1.9082,0.78848,0.008192,0.231424,0.011488,0.010496,0.016032,0.015264,0.014304,0.468992,0.012288
+1194,899.034,1.1123,1.05677,0.008192,0.226528,0.01056,0.010048,0.016256,0.015136,0.015776,0.739712,0.01456
+1195,685.867,1.45801,0.79728,0.008448,0.230912,0.010592,0.010464,0.016256,0.016384,0.014496,0.477184,0.012544
+1196,827.475,1.2085,1.13526,0.0088,0.251648,0.010528,0.01152,0.016416,0.0152,0.015488,0.790432,0.015232
+1197,554.638,1.80298,0.802816,0.009536,0.237472,0.010528,0.012032,0.016224,0.015264,0.015424,0.474048,0.012288
+1198,822.325,1.21606,0.796768,0.008288,0.23552,0.01024,0.01024,0.016384,0.016416,0.014304,0.473088,0.012288
+1199,822.49,1.21582,1.05325,0.008544,0.231968,0.01024,0.01024,0.016256,0.016512,0.014336,0.729088,0.016064
+1200,673.795,1.48413,0.788576,0.008256,0.226592,0.010784,0.010432,0.016384,0.016384,0.014336,0.473088,0.01232
+1201,859.06,1.16406,0.801536,0.008576,0.227392,0.010528,0.010272,0.016384,0.016384,0.014336,0.485312,0.012352
+1202,489.308,2.0437,0.8128,0.01024,0.245472,0.010528,0.01024,0.016384,0.016416,0.015424,0.475968,0.012128
+1203,845.408,1.18286,0.798432,0.008256,0.233248,0.0104,0.01024,0.016384,0.016384,0.014336,0.47664,0.012544
+1204,836.772,1.19507,1.18742,0.009376,0.228096,0.010336,0.01024,0.016384,0.016384,0.015392,0.868864,0.012352
+1205,644.329,1.552,0.786464,0.008448,0.22704,0.01056,0.010368,0.017472,0.015296,0.014336,0.470624,0.01232
+1206,802.665,1.24585,1.5975,0.008224,0.234944,0.010528,0.010496,0.01632,0.016512,0.014304,1.27354,0.01264
+1207,457.092,2.18774,0.83392,0.018816,0.264064,0.010368,0.01024,0.016384,0.016384,0.016032,0.469344,0.012288
+1208,937.085,1.06714,0.7976,0.008512,0.23504,0.010592,0.010528,0.01584,0.016288,0.014912,0.47456,0.011328
+1209,829.99,1.20483,0.967808,0.008224,0.40704,0.01056,0.0104,0.016256,0.016512,0.014336,0.472256,0.012224
+1210,696.836,1.43506,0.792576,0.008192,0.229376,0.01024,0.011904,0.016768,0.01744,0.014816,0.471552,0.012288
+1211,831.169,1.20312,1.15165,0.008672,0.235744,0.010208,0.012064,0.016128,0.01648,0.01472,0.823136,0.014496
+1212,522.116,1.91528,0.79872,0.009408,0.236352,0.010272,0.010208,0.016416,0.017472,0.014976,0.471328,0.012288
+1213,951.231,1.05127,0.802624,0.0096,0.231648,0.010624,0.010272,0.016352,0.016384,0.014368,0.481024,0.012352
+1214,779.003,1.28369,1.20822,0.008224,0.232832,0.0088,0.011424,0.0152,0.01632,0.014432,0.8888,0.012192
+1215,632.587,1.58081,0.806912,0.008192,0.241056,0.010528,0.01056,0.016448,0.01632,0.015488,0.475936,0.012384
+1216,803.925,1.2439,1.67104,0.00848,0.237984,0.01216,0.010368,0.015968,0.016352,0.014816,1.34272,0.012192
+1217,480.808,2.07983,0.799168,0.008544,0.231552,0.016352,0.01024,0.016384,0.016384,0.015488,0.471936,0.012288
+1218,631.417,1.58374,0.790432,0.008192,0.231424,0.010272,0.011392,0.016544,0.016128,0.015072,0.469216,0.012192
+1219,969.927,1.03101,0.814592,0.008192,0.240992,0.010592,0.012608,0.02048,0.015904,0.014816,0.478496,0.012512
+1220,804.873,1.24243,0.822816,0.008192,0.25936,0.010496,0.01184,0.017152,0.01616,0.014752,0.472576,0.012288
+1221,824.809,1.2124,1.46733,0.008544,0.488032,0.012288,0.011328,0.015424,0.016256,0.01584,0.88736,0.012256
+1222,540.156,1.85132,0.815104,0.009472,0.237504,0.01056,0.011904,0.01648,0.01616,0.0144,0.486336,0.012288
+1223,803.295,1.24487,0.800928,0.008192,0.233472,0.01184,0.010496,0.016512,0.016352,0.014432,0.477184,0.012448
+1224,797.663,1.25366,0.970752,0.00928,0.406464,0.011296,0.011232,0.016384,0.016384,0.016192,0.471232,0.012288
+1225,721,1.38696,0.810624,0.008256,0.248992,0.01056,0.010496,0.016672,0.016384,0.014336,0.472352,0.012576
+1226,778.411,1.28467,1.62806,0.009824,0.280992,0.011584,0.010624,0.016256,0.016192,0.014752,1.2536,0.01424
+1227,490.304,2.03955,0.808416,0.008192,0.247808,0.01024,0.011808,0.015936,0.015264,0.015808,0.470976,0.012384
+1228,877.464,1.13965,0.804,0.009376,0.23024,0.01024,0.01024,0.016384,0.016416,0.015392,0.483712,0.012
+1229,755.162,1.32422,0.802112,0.008416,0.235552,0.0104,0.012096,0.016384,0.016288,0.014432,0.475168,0.013376
+1230,765.035,1.30713,0.826016,0.008288,0.254496,0.01136,0.010848,0.016704,0.016192,0.014528,0.48128,0.01232
+1231,791.039,1.26416,1.45587,0.008192,0.479008,0.012512,0.01024,0.016384,0.015904,0.014848,0.886528,0.012256
+1232,556.522,1.79688,0.795936,0.009248,0.234464,0.01024,0.01024,0.016384,0.016384,0.014336,0.47232,0.01232
+1233,800.939,1.24854,0.816928,0.008192,0.247104,0.010944,0.011488,0.015136,0.016384,0.014336,0.480832,0.012512
+1234,761.763,1.31274,0.797312,0.008416,0.231648,0.010464,0.010208,0.017696,0.016352,0.015136,0.475104,0.012288
+1235,794.723,1.2583,0.803808,0.008608,0.239808,0.01056,0.010304,0.016384,0.016384,0.015584,0.473696,0.01248
+1236,725.726,1.37793,1.44285,0.008192,0.44992,0.04896,0.010784,0.016768,0.016288,0.015424,0.864352,0.01216
+1237,605.38,1.65186,0.798976,0.008448,0.234176,0.01024,0.010272,0.016416,0.01632,0.016032,0.47344,0.013632
+1238,819.036,1.22095,0.794688,0.008192,0.233472,0.01024,0.01024,0.01824,0.016576,0.014336,0.472128,0.011264
+1239,642.51,1.5564,0.79744,0.008256,0.233728,0.01056,0.010368,0.017888,0.01648,0.014784,0.473088,0.012288
+1240,834.896,1.19775,0.792992,0.008608,0.229408,0.01136,0.010528,0.016992,0.016352,0.014368,0.473088,0.012288
+1241,549.135,1.82104,1.44672,0.008512,0.449184,0.055296,0.01024,0.01584,0.01616,0.014624,0.864288,0.012576
+1242,690.609,1.448,0.806464,0.008576,0.244896,0.010592,0.010528,0.016544,0.016096,0.014688,0.471072,0.013472
+1243,951.01,1.05151,0.823712,0.008416,0.259584,0.010496,0.010496,0.016576,0.016384,0.014336,0.475136,0.012288
+1244,745.541,1.34131,0.802816,0.009344,0.234368,0.01024,0.011392,0.017184,0.016064,0.014784,0.477152,0.012288
+1245,859.601,1.16333,0.800512,0.008224,0.237568,0.01024,0.01024,0.018272,0.015712,0.014784,0.472992,0.01248
+1246,753.911,1.32642,1.43744,0.008192,0.44976,0.045856,0.011424,0.01648,0.016224,0.014848,0.862432,0.012224
+1247,574.958,1.73926,0.797664,0.008448,0.232032,0.010272,0.010272,0.01632,0.016384,0.014336,0.477184,0.012416
+1248,807.094,1.23901,0.7976,0.008608,0.231712,0.010464,0.011328,0.016384,0.016384,0.015072,0.475328,0.01232
+1249,737.885,1.35522,0.794624,0.008224,0.233248,0.010432,0.010272,0.016352,0.016384,0.014336,0.473088,0.012288
+1250,760.208,1.31543,0.79872,0.00944,0.230176,0.01024,0.01136,0.017312,0.015904,0.014816,0.477184,0.012288
+1251,927.536,1.07812,1.664,0.00848,0.236256,0.01024,0.01024,0.01744,0.015328,0.015808,1.33792,0.012288
+1252,476.445,2.09888,0.796352,0.008192,0.233472,0.01024,0.01024,0.016384,0.01632,0.0144,0.474624,0.01248
+1253,830.326,1.20435,0.817152,0.01008,0.255936,0.010464,0.01024,0.016384,0.016352,0.014368,0.47104,0.012288
+1254,765.035,1.30713,0.801408,0.00816,0.234176,0.01024,0.010208,0.0176,0.015168,0.015616,0.477952,0.012288
+1255,798.441,1.25244,0.799296,0.00848,0.233792,0.01024,0.011296,0.015392,0.016288,0.015968,0.475552,0.012288
+1256,769.346,1.2998,1.45117,0.008192,0.47104,0.0224,0.010368,0.016384,0.016064,0.014656,0.879904,0.01216
+1257,559.334,1.78784,0.79872,0.008192,0.234592,0.01056,0.010464,0.016032,0.0152,0.015968,0.475424,0.012288
+1258,822.82,1.21533,0.798688,0.008576,0.233984,0.01024,0.010368,0.017888,0.016032,0.014912,0.47328,0.013408
+1259,778.263,1.28491,0.797408,0.008608,0.235392,0.010496,0.010432,0.01792,0.016192,0.014624,0.471456,0.012288
+1260,817.239,1.22363,0.80896,0.008192,0.239616,0.010272,0.011712,0.016896,0.015808,0.014656,0.47952,0.012288
+1261,751.284,1.33105,1.42304,0.00848,0.456128,0.023104,0.01024,0.016384,0.016384,0.01536,0.864704,0.012256
+1262,573.509,1.74365,0.812512,0.008384,0.236928,0.01056,0.010464,0.01648,0.016384,0.014336,0.48656,0.012416
+1263,790.886,1.2644,0.799392,0.008704,0.233632,0.011328,0.010464,0.015168,0.017536,0.01472,0.475552,0.012288
+1264,696.836,1.43506,0.827392,0.008192,0.256,0.01024,0.012288,0.018048,0.016224,0.014912,0.4792,0.012288
+1265,803.452,1.24463,0.830752,0.008192,0.265984,0.010496,0.01024,0.0176,0.015232,0.01584,0.473568,0.0136
+1266,560.712,1.78345,1.46163,0.009408,0.459584,0.059392,0.010336,0.017312,0.01536,0.014336,0.863776,0.012128
+1267,702.332,1.42383,0.853632,0.008192,0.280128,0.010528,0.0104,0.016384,0.016384,0.014336,0.484864,0.012416
+1268,816.424,1.22485,0.835808,0.008416,0.278528,0.01152,0.010496,0.016736,0.01648,0.0144,0.46848,0.010752
+1269,740.152,1.35107,0.808608,0.008512,0.23552,0.01232,0.01024,0.01776,0.016,0.014944,0.480864,0.012448
+1270,738.683,1.35376,0.8312,0.008256,0.253888,0.01024,0.012288,0.0176,0.015264,0.016,0.485376,0.012288
+1271,809.007,1.23608,1.60589,0.008448,0.247744,0.010304,0.01024,0.017472,0.015296,0.015584,1.26778,0.013024
+1272,482.109,2.07422,0.825728,0.008576,0.258048,0.01024,0.01024,0.016384,0.016416,0.01536,0.478176,0.012288
+1273,822.986,1.21509,1.0871,0.008192,0.247808,0.011328,0.010432,0.017152,0.016384,0.014336,0.745472,0.016
+1274,687.71,1.4541,0.808896,0.008224,0.237536,0.01024,0.01024,0.016384,0.016384,0.01536,0.482144,0.012384
+1275,804.873,1.24243,1.14179,0.008544,0.244384,0.010272,0.011776,0.01648,0.016512,0.0144,0.804896,0.014528
+1276,506.242,1.97534,0.825344,0.008224,0.262048,0.010368,0.01024,0.017472,0.016704,0.014592,0.47344,0.012256
+1277,889.082,1.12476,0.790656,0.0096,0.229152,0.01056,0.010272,0.015936,0.016992,0.01472,0.471008,0.012416
+1278,839.688,1.19092,1.07702,0.008192,0.247392,0.010528,0.0104,0.016352,0.016384,0.014336,0.737472,0.015968
+1279,651.296,1.5354,0.823296,0.008256,0.243648,0.011328,0.010528,0.016384,0.016224,0.025408,0.479232,0.012288
+1280,629.089,1.5896,0.822784,0.010144,0.259648,0.010496,0.010528,0.016384,0.016384,0.015488,0.471584,0.012128
+1281,890.822,1.12256,1.43814,0.008544,0.454752,0.026656,0.01024,0.016352,0.016384,0.015392,0.877504,0.01232
+1282,576.009,1.73608,0.810784,0.008608,0.24736,0.01056,0.010464,0.016352,0.016384,0.014336,0.4744,0.01232
+1283,879.725,1.13672,1.20835,0.008224,0.250944,0.010528,0.010656,0.016224,0.016288,0.014848,0.868384,0.012256
+1284,523.919,1.90869,0.82944,0.009504,0.260352,0.010624,0.010336,0.018432,0.016416,0.014304,0.477184,0.012288
+1285,951.452,1.05103,1.18048,0.008384,0.28448,0.01104,0.010304,0.016352,0.017632,0.014688,0.803264,0.014336
+1286,575.119,1.73877,0.807488,0.008512,0.239936,0.010368,0.011264,0.016352,0.016352,0.015264,0.477152,0.012288
+1287,813.505,1.22925,0.795488,0.00848,0.229952,0.01024,0.010432,0.017376,0.016608,0.014944,0.475168,0.012288
+1288,844.188,1.18457,1.18579,0.008224,0.225248,0.010272,0.010208,0.016384,0.01632,0.0144,0.872448,0.012288
+1289,447.993,2.23218,0.810752,0.008224,0.24368,0.011776,0.010752,0.016544,0.016224,0.015488,0.475584,0.01248
+1290,1358.54,0.736084,1.14794,0.008192,0.247392,0.010496,0.0104,0.01792,0.016064,0.015168,0.806912,0.015392
+1291,571.19,1.75073,0.800448,0.008512,0.232448,0.01056,0.010464,0.015872,0.015328,0.016096,0.47856,0.012608
+1292,827.141,1.20898,0.798784,0.008672,0.233696,0.01024,0.01024,0.016384,0.016384,0.014368,0.47632,0.01248
+1293,848.209,1.17896,0.983936,0.008928,0.407712,0.011488,0.012288,0.02032,0.015296,0.014336,0.48128,0.012288
+1294,623.44,1.604,0.807264,0.008608,0.242176,0.011424,0.011104,0.016384,0.015904,0.014848,0.474432,0.012384
+1295,843.84,1.18506,1.45891,0.008416,0.487936,0.012288,0.01024,0.016384,0.016384,0.014336,0.88064,0.012288
+1296,553.588,1.8064,0.806624,0.008192,0.239264,0.010528,0.010304,0.016256,0.016128,0.01472,0.478912,0.01232
+1297,849.969,1.17651,0.79712,0.008416,0.233536,0.0104,0.010272,0.016352,0.016384,0.016224,0.473248,0.012288
+1298,795.34,1.25732,0.98224,0.009536,0.408256,0.011424,0.013024,0.020544,0.016064,0.014752,0.476576,0.012064
+1299,433.531,2.30664,0.832736,0.00944,0.258848,0.01024,0.011968,0.016736,0.016384,0.014304,0.48128,0.013536
+1300,1097.53,0.911133,1.43091,0.008288,0.452608,0.029984,0.010528,0.016128,0.016096,0.015072,0.868608,0.0136
+1301,564.265,1.77222,0.806432,0.008224,0.236832,0.010528,0.011776,0.015264,0.016384,0.015648,0.479264,0.012512
+1302,832.859,1.20068,0.792864,0.00848,0.227328,0.011392,0.010496,0.016672,0.01632,0.014752,0.475136,0.012288
+1303,691.191,1.44678,0.793408,0.008576,0.23392,0.010272,0.010208,0.016416,0.016352,0.014336,0.47104,0.012288
+1304,826.64,1.20972,0.8192,0.008192,0.253952,0.01024,0.01024,0.018336,0.01632,0.014528,0.475104,0.012288
+1305,545.333,1.83374,0.819424,0.010784,0.249856,0.01152,0.010336,0.015008,0.016384,0.015616,0.477248,0.012672
+1306,791.957,1.2627,0.802944,0.00832,0.234976,0.010592,0.010432,0.015808,0.01632,0.014976,0.479232,0.012288
+1307,842.278,1.18726,0.822464,0.00944,0.254752,0.010432,0.01136,0.01616,0.015296,0.015648,0.475936,0.01344
+1308,709.264,1.40991,0.806016,0.008192,0.243712,0.01024,0.011648,0.016288,0.01632,0.014752,0.472512,0.012352
+1309,820.677,1.21851,0.82336,0.008352,0.246272,0.010208,0.01024,0.016384,0.017824,0.014816,0.486624,0.01264
+1310,848.209,1.17896,1.59254,0.00944,0.242464,0.010336,0.011328,0.016256,0.016384,0.01472,1.25805,0.013568
+1311,481.882,2.0752,0.794816,0.008224,0.237568,0.010432,0.011264,0.016608,0.01616,0.014848,0.467296,0.012416
+1312,859.601,1.16333,1.0575,0.008448,0.22992,0.01024,0.01024,0.016384,0.016384,0.015584,0.735264,0.01504
+1313,659.581,1.51611,0.803584,0.00864,0.235968,0.011424,0.010464,0.016512,0.016192,0.014624,0.477376,0.012384
+1314,835.066,1.19751,0.802848,0.008192,0.2376,0.01136,0.010784,0.016192,0.016416,0.014848,0.475136,0.01232
+1315,556.144,1.7981,0.825376,0.011712,0.26,0.01056,0.010496,0.015808,0.016064,0.014848,0.473568,0.01232
+1316,858.34,1.16504,0.805312,0.008544,0.231104,0.010528,0.010368,0.016352,0.016192,0.01456,0.485376,0.012288
+1317,792.11,1.26245,1.0585,0.008192,0.233472,0.011776,0.010496,0.01616,0.016192,0.01472,0.731424,0.016064
+1318,651.814,1.53418,0.823296,0.008192,0.263488,0.010528,0.010688,0.016352,0.016384,0.014336,0.47104,0.012288
+1319,875.214,1.14258,0.800704,0.009344,0.235552,0.010752,0.010592,0.016416,0.016096,0.014592,0.474624,0.012736
+1320,441.617,2.2644,0.839424,0.010432,0.271584,0.010592,0.010688,0.016064,0.016064,0.014976,0.476704,0.01232
+1321,867.981,1.1521,0.79488,0.008512,0.231424,0.010336,0.011296,0.01728,0.016384,0.015424,0.47168,0.012544
+1322,747.718,1.3374,1.2137,0.008192,0.247808,0.01024,0.011424,0.017248,0.016,0.01472,0.875904,0.01216
+1323,649.231,1.54028,0.809792,0.008576,0.244128,0.010272,0.010368,0.018208,0.016192,0.014656,0.475104,0.012288
+1324,800.625,1.24902,1.51962,0.009792,0.498112,0.065536,0.01024,0.016384,0.016416,0.014304,0.876544,0.012288
+1325,531.12,1.88281,0.796672,0.009408,0.23552,0.010528,0.010528,0.015904,0.016096,0.01472,0.47168,0.012288
+1326,849.264,1.17749,0.804064,0.00928,0.240256,0.010528,0.011744,0.016384,0.016352,0.014752,0.472704,0.012064
+1327,781.381,1.27979,0.979104,0.008352,0.407552,0.01024,0.014336,0.021856,0.015008,0.015584,0.473888,0.012288
+1328,723.036,1.38306,0.798752,0.008224,0.237472,0.010336,0.010272,0.017664,0.016672,0.014528,0.471232,0.012352
+1329,804.399,1.24316,1.17354,0.008192,0.253952,0.010304,0.011328,0.015232,0.016416,0.014304,0.828928,0.01488
+1330,533.611,1.87402,0.821024,0.008608,0.249856,0.011488,0.010528,0.016096,0.016704,0.014592,0.4808,0.012352
+1331,850.145,1.17627,0.79872,0.008224,0.234624,0.01056,0.010464,0.016128,0.014912,0.015616,0.475904,0.012288
+1332,856.725,1.16724,0.987776,0.008512,0.407648,0.01056,0.014176,0.020064,0.014912,0.015584,0.484032,0.012288
+1333,701.851,1.4248,0.808992,0.008224,0.238592,0.010944,0.01056,0.018112,0.016704,0.014336,0.479232,0.012288
+1334,810.768,1.2334,1.60557,0.00864,0.24416,0.010336,0.01152,0.016608,0.016224,0.014816,1.26989,0.013376
+1335,497.933,2.0083,0.80144,0.008576,0.234016,0.01024,0.01024,0.016064,0.01632,0.01472,0.478208,0.013056
+1336,829.318,1.20581,0.801376,0.008544,0.229632,0.011904,0.010592,0.015776,0.016288,0.01472,0.481632,0.012288
+1337,823.482,1.21436,0.980096,0.009728,0.407712,0.010592,0.012288,0.018432,0.016384,0.01536,0.47616,0.01344
+1338,710.864,1.40674,0.802816,0.008224,0.230528,0.010624,0.010784,0.017888,0.015936,0.014688,0.481856,0.012288
+1339,547.228,1.82739,1.6409,0.00864,0.243008,0.010528,0.010496,0.016544,0.016416,0.014336,1.30832,0.012608
+1340,675.908,1.47949,0.812672,0.008192,0.240928,0.01056,0.010464,0.016576,0.016384,0.014336,0.482848,0.012384
+1341,814.476,1.22778,0.794464,0.008256,0.229408,0.010208,0.011328,0.015296,0.017632,0.01472,0.475008,0.012608
+1342,748.812,1.33545,0.794432,0.008192,0.233216,0.010496,0.01024,0.016384,0.016384,0.015392,0.47184,0.012288
+1343,803.61,1.24438,0.818624,0.008192,0.256,0.01024,0.011744,0.016928,0.015648,0.015104,0.471008,0.01376
+1344,789.971,1.26587,1.43021,0.008576,0.448832,0.045056,0.01024,0.016384,0.016384,0.014336,0.858112,0.012288
+1345,523.384,1.91064,0.802784,0.00848,0.233792,0.011296,0.010464,0.015104,0.016384,0.014336,0.480448,0.01248
+1346,898.837,1.11255,0.805056,0.008416,0.23552,0.01136,0.010592,0.016128,0.016192,0.01488,0.47968,0.012288
+1347,758.518,1.31836,0.797152,0.008448,0.231968,0.011488,0.010912,0.01648,0.016416,0.014304,0.474688,0.012448
+1348,800.313,1.24951,0.806848,0.009536,0.237408,0.01056,0.010816,0.018048,0.016064,0.015008,0.477152,0.012256
+1349,823.151,1.21484,1.12614,0.008192,0.239584,0.010272,0.010272,0.016352,0.016416,0.015936,0.794208,0.014912
+1350,501.961,1.99219,0.851968,0.009568,0.271104,0.011488,0.010496,0.016832,0.016416,0.014304,0.490592,0.011168
+1351,987.94,1.01221,0.802432,0.008192,0.237568,0.01024,0.010272,0.016352,0.015968,0.014752,0.476928,0.01216
+1352,700.171,1.42822,0.83152,0.008192,0.258048,0.012,0.012384,0.020672,0.016384,0.014336,0.477184,0.01232
+1353,789.362,1.26685,0.825376,0.008288,0.266144,0.01024,0.01152,0.0168,0.016608,0.014464,0.468992,0.01232
+1354,713.216,1.4021,1.43456,0.00864,0.457216,0.038784,0.010368,0.016384,0.016384,0.014336,0.86016,0.012288
+1355,602.707,1.65918,0.816448,0.008192,0.239168,0.01056,0.010368,0.016384,0.016384,0.014336,0.487424,0.013632
+1356,830.495,1.2041,0.804864,0.008384,0.239424,0.011616,0.010496,0.016544,0.016544,0.014432,0.475136,0.012288
+1357,815.449,1.22632,0.981984,0.00864,0.407808,0.010528,0.013536,0.019232,0.01584,0.014368,0.479744,0.012288
+1358,682.894,1.46436,0.802656,0.00848,0.237632,0.011424,0.010464,0.017056,0.016352,0.014336,0.474656,0.012256
+1359,685.982,1.45776,1.43373,0.00832,0.452608,0.036864,0.01024,0.016384,0.016416,0.014304,0.866048,0.012544
+1360,397.516,2.51562,0.801024,0.008448,0.237568,0.01024,0.010272,0.017376,0.016416,0.015136,0.47328,0.012288
+1361,1129.62,0.885254,0.805504,0.008512,0.247744,0.010528,0.010272,0.016064,0.016288,0.01472,0.469024,0.012352
+1362,770.214,1.29834,0.81328,0.008416,0.24576,0.010336,0.011424,0.015104,0.016416,0.015712,0.477824,0.012288
+1363,759.081,1.31738,0.83968,0.008224,0.2744,0.01024,0.01024,0.018144,0.01648,0.014528,0.475136,0.012288
+1364,483.646,2.06763,0.835264,0.011264,0.266784,0.01056,0.010432,0.016352,0.015904,0.014496,0.47728,0.012192
+1365,829.822,1.20508,0.806944,0.008192,0.245472,0.010528,0.01024,0.016384,0.016384,0.014336,0.473088,0.01232
+1366,835.066,1.19751,1.19341,0.008192,0.237568,0.011456,0.010528,0.016032,0.016672,0.014944,0.865984,0.012032
+1367,627.836,1.59277,0.800768,0.009344,0.236416,0.011424,0.011136,0.016416,0.01632,0.015552,0.471872,0.012288
+1368,784.524,1.27466,0.823296,0.009248,0.261088,0.01136,0.011104,0.016096,0.016288,0.01456,0.471296,0.012256
+1369,503.38,1.98657,0.843616,0.010752,0.272544,0.011488,0.01056,0.014816,0.016384,0.016,0.478624,0.012448
+1370,876.337,1.14111,0.8112,0.008384,0.239616,0.01024,0.01024,0.016352,0.016128,0.014624,0.483328,0.012288
+1371,828.982,1.2063,0.969152,0.00848,0.407456,0.010464,0.01024,0.017568,0.015168,0.015712,0.471712,0.012352
+1372,557.355,1.79419,0.81856,0.009408,0.24624,0.01264,0.012,0.016672,0.016384,0.015616,0.47728,0.01232
+1373,1069.73,0.934814,1.66742,0.00848,0.253088,0.010944,0.010464,0.016384,0.01616,0.01456,1.32509,0.012256
+1374,485.884,2.05811,0.807488,0.008576,0.23776,0.01024,0.01024,0.016384,0.016384,0.015712,0.479904,0.012288
+1375,820.842,1.21826,0.80688,0.008288,0.233216,0.0104,0.010272,0.016352,0.016416,0.01552,0.483808,0.012608
+1376,745.812,1.34082,0.810304,0.008192,0.23296,0.010752,0.014336,0.019904,0.01664,0.014656,0.4808,0.012064
+1377,820.513,1.21875,0.811008,0.008192,0.24768,0.010368,0.012192,0.01808,0.016192,0.014496,0.47152,0.012288
+1378,818.545,1.22168,1.66656,0.008288,0.233056,0.01056,0.010272,0.016352,0.016416,0.015488,1.34349,0.01264
+1379,476.889,2.09692,0.805984,0.008192,0.241664,0.01024,0.01024,0.016384,0.01616,0.01456,0.475136,0.013408
+1380,813.829,1.22876,0.796672,0.008224,0.236704,0.010528,0.010784,0.016384,0.016384,0.015456,0.46992,0.012288
+1381,750.046,1.33325,0.800768,0.008192,0.23552,0.01024,0.010272,0.016352,0.016384,0.015424,0.476096,0.012288
+1382,779.596,1.28271,0.82944,0.008192,0.258048,0.010272,0.012032,0.016608,0.016384,0.0144,0.481216,0.012288
+1383,456.684,2.1897,1.4601,0.008512,0.451776,0.059808,0.010656,0.016384,0.016352,0.014368,0.86992,0.01232
+1384,620.888,1.6106,0.812992,0.009248,0.246496,0.010496,0.010272,0.016352,0.016416,0.015616,0.475872,0.012224
+1385,769.202,1.30005,1.20064,0.00848,0.237056,0.010816,0.010432,0.016384,0.016416,0.014304,0.874336,0.012416
+1386,645.649,1.54883,0.815552,0.008544,0.245856,0.011552,0.010528,0.016672,0.016544,0.014336,0.479232,0.012288
+1387,817.728,1.2229,1.14621,0.008192,0.24576,0.0104,0.011296,0.016192,0.01536,0.01584,0.807456,0.015712
+1388,597.085,1.6748,0.806912,0.009216,0.238432,0.0104,0.01024,0.016384,0.016416,0.014304,0.479232,0.012288
+1389,813.99,1.22852,0.798368,0.00848,0.23728,0.010496,0.0104,0.015872,0.014848,0.01552,0.471904,0.013568
+1390,809.646,1.23511,1.0288,0.008768,0.460416,0.01072,0.010432,0.016352,0.016416,0.014464,0.479072,0.01216
+1391,731.951,1.36621,0.813088,0.00848,0.233056,0.011072,0.011424,0.017376,0.016384,0.014368,0.488704,0.012224
+1392,741.76,1.34814,1.17776,0.00928,0.26912,0.010368,0.011392,0.015232,0.01824,0.014528,0.815104,0.014496
+1393,574.555,1.74048,0.814944,0.008672,0.250048,0.01024,0.01024,0.016384,0.016384,0.014336,0.475136,0.013504
+1394,831.844,1.20215,0.811008,0.009536,0.236224,0.01024,0.01024,0.016384,0.016384,0.014336,0.485376,0.012288
+1395,825.307,1.21167,1.20672,0.008544,0.242752,0.01056,0.01056,0.01584,0.015264,0.015968,0.874912,0.01232
+1396,576.252,1.73535,0.808928,0.008192,0.245664,0.010336,0.010272,0.0176,0.0152,0.014272,0.475136,0.012256
+1397,847.858,1.17944,1.45408,0.008192,0.469024,0.014304,0.01136,0.015264,0.016384,0.014368,0.892896,0.012288
+1398,540.869,1.84888,0.80528,0.008608,0.241024,0.01056,0.010464,0.014624,0.016192,0.015616,0.475936,0.012256
+1399,803.452,1.24463,0.799168,0.008512,0.239488,0.01056,0.010464,0.01616,0.016288,0.01472,0.470432,0.012544
+1400,819.856,1.21973,0.987456,0.008544,0.40784,0.01216,0.013728,0.019168,0.016384,0.014336,0.48304,0.012256
+1401,707.549,1.41333,0.807616,0.008576,0.242016,0.011424,0.011072,0.01648,0.016288,0.015552,0.473536,0.012672
+1402,792.57,1.26172,1.49453,0.009312,0.51088,0.042368,0.010464,0.016736,0.016,0.014624,0.861504,0.01264
+1403,537.462,1.8606,0.821024,0.009504,0.241536,0.010496,0.010464,0.01472,0.016384,0.015552,0.490016,0.012352
+1404,342.389,2.92065,1.29267,0.008576,0.725024,0.01168,0.010464,0.01664,0.016512,0.014304,0.477184,0.012288
+1405,962.632,1.03882,0.842016,0.008544,0.274368,0.010528,0.01056,0.016384,0.016416,0.014336,0.478432,0.012448
+1406,818.218,1.22217,0.834624,0.008192,0.264096,0.010336,0.01024,0.016384,0.016384,0.014336,0.48128,0.013376
+1407,539.8,1.85254,0.827872,0.009056,0.257856,0.010432,0.010176,0.015488,0.015296,0.015392,0.481568,0.012608
+1408,883.139,1.13232,0.806976,0.008256,0.243712,0.011712,0.00992,0.015232,0.016384,0.014336,0.475168,0.012256
+1409,692.009,1.44507,1.24493,0.00832,0.302784,0.01056,0.012288,0.020288,0.015936,0.01488,0.847424,0.012448
+1410,404.144,2.47437,0.846944,0.008256,0.267936,0.010592,0.010208,0.017984,0.015936,0.015104,0.488768,0.01216
+1411,633.271,1.5791,0.827392,0.011872,0.258464,0.010272,0.01024,0.016352,0.016416,0.014304,0.477216,0.012256
+1412,821.665,1.21704,0.825344,0.009344,0.248352,0.01056,0.010272,0.01616,0.016608,0.015424,0.486336,0.012288
+1413,559.028,1.78882,1.01651,0.008448,0.44896,0.01024,0.01024,0.017856,0.01616,0.01488,0.47744,0.012288
+1414,733.393,1.36353,0.827392,0.009504,0.26288,0.011296,0.010656,0.016544,0.016608,0.01456,0.473056,0.012288
+1415,954.334,1.04785,0.856768,0.008576,0.278368,0.010496,0.010464,0.017728,0.016672,0.014656,0.48752,0.012288
+1416,464.768,2.15161,1.024,0.012288,0.442368,0.01136,0.010528,0.016288,0.0152,0.015456,0.488224,0.012288
+1417,1058.4,0.944824,0.81856,0.008448,0.253408,0.010688,0.010336,0.016384,0.016384,0.016096,0.473376,0.01344
+1418,771.375,1.29639,0.989184,0.008192,0.407424,0.0104,0.01392,0.018816,0.016416,0.015488,0.48624,0.012288
+1419,494.567,2.02197,0.89504,0.008256,0.317216,0.010496,0.010208,0.0176,0.01664,0.014176,0.488192,0.012256
+1420,771.52,1.29614,1.44579,0.008864,0.471104,0.012288,0.01024,0.016384,0.016384,0.014336,0.882688,0.013504
+1421,662.247,1.51001,0.81904,0.008192,0.249824,0.010272,0.010272,0.016352,0.016384,0.014336,0.4808,0.012608
+1422,884.092,1.1311,1.0688,0.008352,0.241664,0.011264,0.01056,0.0152,0.017408,0.014976,0.733408,0.015968
+1423,661.819,1.51099,0.808768,0.009408,0.243616,0.010528,0.010432,0.0168,0.016192,0.01456,0.474848,0.012384
+1424,809.326,1.2356,0.853632,0.008224,0.274432,0.010208,0.010336,0.016288,0.016384,0.014336,0.491072,0.012352
+1425,599.006,1.66943,1.43546,0.008192,0.445536,0.012512,0.023232,0.042976,0.01616,0.014592,0.859712,0.012544
+1426,648.204,1.54272,0.80896,0.008288,0.249056,0.01056,0.0104,0.016096,0.015872,0.014976,0.471424,0.012288
+1427,855.293,1.16919,1.08138,0.00928,0.234432,0.01024,0.01024,0.016384,0.016384,0.015648,0.753856,0.014912
+1428,638.603,1.56592,0.808544,0.008192,0.237024,0.010592,0.010464,0.015936,0.01584,0.014912,0.4832,0.012384
+1429,787.389,1.27002,0.851296,0.009472,0.279296,0.010272,0.01024,0.016352,0.016384,0.015712,0.481024,0.012544
+1430,457.041,2.18799,1.08496,0.01024,0.518144,0.01024,0.01024,0.016384,0.016384,0.014496,0.476544,0.012288
+1431,808.527,1.23682,0.84448,0.008448,0.272608,0.01056,0.010432,0.016352,0.016416,0.015424,0.481792,0.012448
+1432,743.646,1.34473,0.98304,0.009344,0.408448,0.01024,0.01408,0.01872,0.016384,0.014368,0.4792,0.012256
+1433,646.057,1.54785,0.845568,0.00848,0.274464,0.010208,0.011424,0.017248,0.016416,0.014304,0.479232,0.013792
+1434,768.48,1.30127,1.79376,0.009376,0.387936,0.01024,0.01024,0.016384,0.016384,0.014336,1.3159,0.01296
+1435,476.501,2.09863,0.850624,0.008512,0.276864,0.011392,0.010752,0.015936,0.016608,0.014848,0.483424,0.012288
+1436,724.059,1.3811,1.13888,0.008544,0.313632,0.010368,0.011424,0.01504,0.016384,0.01552,0.732,0.015968
+1437,682.553,1.46509,0.825344,0.008192,0.253952,0.010272,0.01024,0.016352,0.016416,0.014304,0.482976,0.01264
+1438,718.219,1.39233,0.839456,0.008224,0.267456,0.010592,0.01072,0.017696,0.016288,0.014624,0.481568,0.012288
+1439,636.915,1.57007,1.44998,0.008192,0.448288,0.012512,0.01024,0.057376,0.01632,0.014368,0.8704,0.012288
+1440,661.926,1.51074,0.80944,0.00864,0.239616,0.01024,0.01024,0.01632,0.016032,0.014752,0.481312,0.012288
+1441,828.814,1.20654,1.21984,0.008448,0.24576,0.011776,0.010336,0.016032,0.015104,0.016128,0.882944,0.013312
+1442,494.089,2.02393,0.801088,0.00848,0.240256,0.010208,0.012288,0.016384,0.016416,0.01552,0.469344,0.012192
+1443,1080.74,0.925293,0.840064,0.008416,0.270496,0.011392,0.010464,0.016096,0.015296,0.016384,0.478912,0.012608
+1444,486.634,2.05493,0.835744,0.0104,0.261536,0.010592,0.010496,0.016384,0.016384,0.014336,0.483328,0.012288
+1445,861.59,1.16064,0.842976,0.008192,0.266272,0.010208,0.011392,0.016256,0.01536,0.015616,0.487456,0.012224
+1446,752.664,1.32861,0.848096,0.008416,0.262144,0.012,0.012576,0.021632,0.01536,0.015552,0.488128,0.012288
+1447,769.202,1.30005,0.840928,0.008192,0.26944,0.01056,0.010528,0.01648,0.016352,0.014272,0.482688,0.012416
+1448,826.807,1.20947,1.60784,0.00864,0.244256,0.01024,0.010208,0.016384,0.016416,0.0144,1.27376,0.013536
+1449,462.355,2.16284,0.813568,0.008672,0.239648,0.01024,0.01024,0.016032,0.016672,0.0144,0.485376,0.012288
+1450,903.397,1.10693,0.806912,0.009504,0.235552,0.010528,0.010464,0.016,0.016448,0.01456,0.481568,0.012288
+1451,697.31,1.43408,0.800768,0.008224,0.22848,0.01056,0.010592,0.017856,0.015232,0.01568,0.474848,0.019296
+1452,499.817,2.00073,0.854144,0.008192,0.292864,0.010272,0.011872,0.01616,0.01632,0.014688,0.47136,0.012416
+1453,651.089,1.53589,0.84496,0.01024,0.27136,0.010528,0.010496,0.016064,0.015232,0.015488,0.48208,0.013472
+1454,801.252,1.24805,0.811008,0.008192,0.235328,0.010432,0.010144,0.015808,0.016352,0.014816,0.487648,0.012288
+1455,699.215,1.43018,1.20832,0.008192,0.26192,0.010464,0.01024,0.016384,0.016384,0.014336,0.85808,0.01232
+1456,678.146,1.47461,0.857408,0.00832,0.243712,0.011648,0.01088,0.02432,0.015712,0.029184,0.491328,0.022304
+1457,693.297,1.44238,1.42205,0.008512,0.464928,0.012672,0.010272,0.016352,0.016352,0.014368,0.866304,0.012288
+1458,556.824,1.7959,0.796672,0.008192,0.230528,0.010528,0.010688,0.016448,0.016192,0.014624,0.477184,0.012288
+1459,827.809,1.20801,0.795968,0.008192,0.228864,0.010592,0.0104,0.01584,0.015968,0.014944,0.478688,0.01248
+1460,763.752,1.30933,0.996928,0.008448,0.405504,0.011744,0.012832,0.02048,0.016096,0.014432,0.494976,0.012416
+1461,746.764,1.33911,0.808672,0.008192,0.233056,0.010528,0.010912,0.018144,0.016256,0.014784,0.483296,0.013504
+1462,817.728,1.2229,1.59386,0.00864,0.23312,0.01056,0.01168,0.016224,0.016448,0.014624,1.26957,0.012992
+1463,495.224,2.01929,0.809632,0.008544,0.235072,0.010496,0.01088,0.016384,0.016416,0.014304,0.484928,0.012608
+1464,854.758,1.16992,0.796704,0.008192,0.22528,0.012064,0.010464,0.016384,0.016384,0.014336,0.48128,0.01232
+1465,786.784,1.271,0.985088,0.00832,0.407424,0.01024,0.012288,0.01824,0.015776,0.01456,0.485952,0.012288
+1466,718.47,1.39185,0.800416,0.008384,0.228768,0.01056,0.01072,0.016384,0.016384,0.014368,0.482752,0.012096
+1467,538.168,1.85815,0.817056,0.01024,0.251392,0.01056,0.010432,0.01568,0.016064,0.014528,0.47568,0.01248
+1468,854.936,1.16968,0.796704,0.008416,0.227328,0.011488,0.010496,0.016192,0.016416,0.014688,0.479424,0.012256
+1469,849.793,1.17676,0.808704,0.00848,0.227136,0.010656,0.010336,0.016384,0.016384,0.014336,0.49152,0.013472
+1470,783.324,1.27661,0.990944,0.008448,0.40752,0.01024,0.014336,0.02048,0.015872,0.014752,0.487136,0.01216
+1471,736.956,1.35693,0.802816,0.008448,0.229856,0.010368,0.01184,0.016544,0.016192,0.014656,0.482368,0.012544
+1472,788.45,1.26831,1.44074,0.00864,0.46128,0.022528,0.010272,0.016352,0.016384,0.014336,0.879616,0.011328
+1473,543.524,1.83984,0.794752,0.008608,0.229024,0.01056,0.010464,0.015872,0.016096,0.014784,0.476928,0.012416
+1474,831,1.20337,0.788896,0.008576,0.225312,0.011488,0.010432,0.01616,0.016448,0.01488,0.473312,0.012288
+1475,792.11,1.26245,0.979744,0.00864,0.409152,0.010624,0.012832,0.020384,0.016032,0.014784,0.474752,0.012544
+1476,726.628,1.37622,0.796672,0.008192,0.226688,0.01088,0.01024,0.016384,0.016384,0.015616,0.48,0.012288
+1477,784.975,1.27393,1.43379,0.008384,0.454656,0.02448,0.010336,0.016384,0.01632,0.0144,0.876544,0.012288
+1478,545.988,1.83154,0.79872,0.008192,0.233472,0.011904,0.010528,0.016384,0.016192,0.014624,0.475136,0.012288
+1479,842.972,1.18628,0.794368,0.008512,0.225344,0.01152,0.01056,0.015904,0.016512,0.014688,0.478912,0.012416
+1480,818.382,1.22192,0.977312,0.00848,0.40768,0.01136,0.013216,0.02048,0.016416,0.014304,0.473088,0.012288
+1481,732.213,1.36572,0.792608,0.00832,0.227584,0.01024,0.012288,0.016384,0.016064,0.014656,0.47456,0.012512
+1482,832.013,1.2019,1.44794,0.008192,0.479168,0.03488,0.01024,0.016384,0.016384,0.01568,0.85472,0.012288
+1483,531.396,1.88184,0.790944,0.008608,0.227328,0.011456,0.010464,0.016992,0.016224,0.015744,0.47184,0.012288
+1484,839,1.19189,0.786432,0.008192,0.225312,0.01024,0.011232,0.01536,0.016416,0.014304,0.473088,0.012288
+1485,851.382,1.17456,0.988192,0.008192,0.407264,0.01056,0.012256,0.021888,0.014976,0.01568,0.484032,0.013344
+1486,731.037,1.36792,0.794624,0.008192,0.223264,0.0104,0.011776,0.016704,0.016416,0.014304,0.48128,0.012288
+1487,735.368,1.35986,1.4377,0.008192,0.468992,0.012288,0.011456,0.017152,0.01632,0.014464,0.876544,0.012288
+1488,505.305,1.979,0.79872,0.008192,0.237568,0.01024,0.01024,0.016384,0.016384,0.014336,0.473088,0.012288
+1489,1035.91,0.965332,0.813536,0.008544,0.252288,0.011456,0.011072,0.016384,0.016192,0.014528,0.470528,0.012544
+1490,794.877,1.25806,0.980992,0.008192,0.407552,0.01024,0.011296,0.019424,0.016032,0.014592,0.481376,0.012288
+1491,725.084,1.37915,0.788992,0.00848,0.22672,0.010528,0.01056,0.016608,0.016384,0.014368,0.473056,0.012288
+1492,762.188,1.31201,1.44509,0.00944,0.475072,0.012672,0.01056,0.016544,0.016352,0.014368,0.877856,0.012224
+1493,577.145,1.73267,0.790048,0.008448,0.227392,0.010272,0.010272,0.016352,0.016416,0.014336,0.47408,0.01248
+1494,802.351,1.24634,0.78864,0.008288,0.22528,0.01152,0.010368,0.017056,0.01616,0.014528,0.473088,0.012352
+1495,839.688,1.19092,0.9904,0.008224,0.423168,0.010528,0.010496,0.016096,0.016416,0.014784,0.478336,0.012352
+1496,731.821,1.36646,0.798464,0.008192,0.224576,0.010592,0.010592,0.018432,0.016384,0.01536,0.482272,0.012064
+1497,806.776,1.2395,1.43907,0.008192,0.462848,0.021792,0.010528,0.016864,0.016288,0.0144,0.87568,0.01248
+1498,536.406,1.86426,0.801088,0.008512,0.227264,0.010336,0.010208,0.016384,0.016416,0.014304,0.485376,0.012288
+1499,825.64,1.21118,0.789696,0.009408,0.22368,0.01184,0.009024,0.016384,0.016384,0.015392,0.4752,0.012384
+1500,672.468,1.48706,1.01376,0.008192,0.4416,0.01056,0.012,0.02048,0.015072,0.014368,0.4792,0.012288
+1501,792.57,1.26172,0.801792,0.00944,0.228128,0.01024,0.011776,0.018816,0.015776,0.01488,0.479456,0.01328
+1502,756.417,1.32202,1.5681,0.008384,0.230816,0.01056,0.01056,0.01792,0.016384,0.014816,1.24477,0.013888
+1503,532.155,1.87915,0.796704,0.008544,0.227744,0.011584,0.010464,0.016864,0.016352,0.014368,0.478272,0.012512
+1504,836.26,1.1958,0.79136,0.00864,0.226976,0.010592,0.010304,0.016256,0.016224,0.014912,0.475136,0.01232
+1505,834.556,1.19824,0.981216,0.007936,0.405824,0.0104,0.012288,0.02016,0.015744,0.01456,0.482016,0.012288
+1506,688.635,1.45215,0.798624,0.008576,0.229376,0.01024,0.011392,0.01728,0.016192,0.014528,0.478752,0.012288
+1507,747.309,1.33813,1.0007,0.011456,0.42608,0.01056,0.010496,0.016544,0.016384,0.014336,0.48128,0.013568
+1508,724.956,1.37939,0.790528,0.009408,0.226112,0.010368,0.010112,0.016384,0.016384,0.014336,0.475136,0.012288
+1509,806.141,1.24048,0.792576,0.008192,0.226912,0.010592,0.010304,0.016384,0.016384,0.015616,0.475808,0.012384
+1510,815.774,1.22583,1.18934,0.008352,0.22288,0.010592,0.011424,0.016608,0.016128,0.014592,0.876672,0.012096
+1511,452.497,2.20996,0.794624,0.008192,0.231424,0.011296,0.011232,0.018432,0.015904,0.01472,0.471136,0.012288
+1512,1114.56,0.897217,0.987168,0.01024,0.423808,0.010368,0.010272,0.016352,0.016576,0.015808,0.471424,0.01232
+1513,727.66,1.37427,0.795712,0.009344,0.226176,0.010272,0.011616,0.016416,0.016288,0.014592,0.478688,0.01232
+1514,837.628,1.19385,0.79296,0.008576,0.224704,0.010464,0.010592,0.016128,0.01664,0.014336,0.479232,0.012288
+1515,829.654,1.20532,1.18326,0.008192,0.22528,0.010336,0.011168,0.016416,0.016384,0.014528,0.868672,0.012288
+1516,637.411,1.56885,0.787648,0.008352,0.223072,0.011328,0.011168,0.017728,0.016224,0.014656,0.472768,0.012352
+1517,799.844,1.25024,1.43978,0.008224,0.4648,0.018528,0.01024,0.017952,0.016512,0.014688,0.876384,0.012448
+1518,544.319,1.83716,0.797216,0.008608,0.227456,0.01024,0.01024,0.016384,0.016384,0.0144,0.481216,0.012288
+1519,839.344,1.19141,0.790144,0.008192,0.22528,0.01024,0.010304,0.017664,0.01504,0.015584,0.475072,0.012768
+1520,809.486,1.23535,1.18147,0.008192,0.224352,0.010336,0.010752,0.016032,0.015008,0.014336,0.870176,0.012288
+1521,641.303,1.55933,0.78688,0.00848,0.223392,0.01024,0.010336,0.018016,0.016288,0.014688,0.473152,0.012288
+1522,557.506,1.7937,1.49914,0.009632,0.521952,0.039264,0.010464,0.016672,0.016352,0.0144,0.858112,0.012288
+1523,745.269,1.3418,0.792512,0.008192,0.230752,0.01056,0.010464,0.016512,0.016032,0.01472,0.472672,0.012608
+1524,861.59,1.16064,0.786912,0.008448,0.227392,0.011488,0.010464,0.016032,0.015264,0.015552,0.469824,0.012448
+1525,790.886,1.2644,0.973216,0.00848,0.40768,0.01024,0.010272,0.016352,0.016384,0.014336,0.477184,0.012288
+1526,745.676,1.34106,0.795872,0.008192,0.224608,0.010496,0.018848,0.019488,0.016512,0.014848,0.470816,0.012064
+1527,808.847,1.23633,1.44794,0.008224,0.470688,0.017888,0.01056,0.016416,0.016256,0.014816,0.8808,0.012288
+1528,540.298,1.85083,0.794624,0.008256,0.228544,0.01056,0.010336,0.016544,0.01648,0.014464,0.477152,0.012288
+1529,795.803,1.25659,0.786432,0.008256,0.225216,0.011456,0.011104,0.016352,0.016384,0.014496,0.47088,0.012288
+1530,839.344,1.19141,1.1793,0.008192,0.2248,0.010528,0.010432,0.016384,0.015904,0.014784,0.865888,0.012384
+1531,464.768,2.15161,1.13018,0.008192,0.227328,0.01152,0.010592,0.0168,0.016384,0.014336,0.810048,0.014976
+1532,559.486,1.78735,0.806304,0.008192,0.239648,0.011392,0.010528,0.016192,0.01632,0.014848,0.476928,0.012256
+1533,870.933,1.14819,0.796672,0.008192,0.233216,0.010496,0.011648,0.016896,0.01568,0.014464,0.473792,0.012288
+1534,705.477,1.41748,0.837632,0.009312,0.24208,0.010592,0.010432,0.016352,0.022528,0.03072,0.483328,0.012288
+1535,738.817,1.35352,0.819744,0.008704,0.2536,0.01056,0.010304,0.018432,0.016416,0.014304,0.475136,0.012288
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..577f2c8
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,615.283,1.72256,1.27836,0.00818444,0.265188,0.00888831,0.00874781,0.0101772,0.0158393,0.0154333,0.933515,0.0123886
+max_1024,1386.59,3.26855,2.41664,0.045344,0.615776,0.050624,0.057344,0.024288,0.041984,0.04016,2.03872,0.286304
+min_1024,305.946,0.721191,1.00006,0.006816,0.220864,0.007328,0.006912,0.008288,0.014304,0.014304,0.697888,0.010432
+512,748.743,1.33557,1.01507,0.008192,0.228416,0.00832,0.008448,0.010336,0.014816,0.015456,0.709376,0.011712
+513,700.83,1.42688,1.00006,0.008096,0.226016,0.008192,0.008256,0.010208,0.015776,0.014688,0.697888,0.010944
+514,711.235,1.40601,2.06381,0.008192,0.48128,0.01024,0.008192,0.011488,0.015136,0.014336,1.50323,0.011712
+515,401.175,2.49268,1.02522,0.008096,0.235552,0.008256,0.008192,0.01024,0.016096,0.014624,0.712288,0.011872
+516,542.014,1.84497,1.01386,0.007936,0.232256,0.008224,0.00816,0.01024,0.015552,0.014816,0.704864,0.011808
+517,707.304,1.41382,1.08067,0.008192,0.292736,0.00832,0.008192,0.01152,0.015136,0.014464,0.710272,0.01184
+518,671.861,1.4884,2.06608,0.008224,0.475712,0.01024,0.008192,0.011552,0.01616,0.015008,1.50938,0.011616
+519,407.948,2.45129,1.01606,0.007904,0.23232,0.008224,0.009984,0.010016,0.014784,0.015456,0.70544,0.011936
+520,699.633,1.42932,1.02829,0.007008,0.230976,0.00832,0.009664,0.010112,0.0152,0.014432,0.720896,0.01168
+521,714.273,1.40002,1.01462,0.008128,0.232352,0.008192,0.008192,0.01024,0.015392,0.014464,0.706752,0.010912
+522,683.122,1.46387,2.21002,0.008192,0.23552,0.009344,0.008384,0.009952,0.015232,0.014432,1.89648,0.01248
+523,384.276,2.60229,1.01773,0.008192,0.22736,0.008192,0.00816,0.01024,0.015584,0.014784,0.713056,0.01216
+524,722.335,1.3844,1.00128,0.007936,0.22368,0.008192,0.008192,0.010272,0.015936,0.014368,0.7008,0.011904
+525,681.985,1.46631,1.01222,0.008128,0.225248,0.008256,0.008672,0.010016,0.014656,0.014368,0.711776,0.011104
+526,686.557,1.45654,2.05619,0.008192,0.464896,0.01024,0.00832,0.011776,0.01472,0.014336,1.51293,0.010784
+527,407.664,2.453,1.00973,0.00704,0.229312,0.009504,0.008736,0.009952,0.014848,0.014496,0.70416,0.01168
+528,709.94,1.40857,1.00634,0.007072,0.223072,0.008224,0.00816,0.01024,0.01568,0.014976,0.706624,0.012288
+529,711.296,1.40588,1.00378,0.008352,0.223488,0.008192,0.008192,0.01024,0.015392,0.014752,0.70304,0.012128
+530,720.302,1.38831,1.9927,0.008192,0.487424,0.01024,0.008224,0.011584,0.015008,0.014336,1.42336,0.014336
+531,410.606,2.43542,1.00944,0.008192,0.223104,0.008352,0.008192,0.009952,0.014592,0.014336,0.710688,0.012032
+532,715.834,1.39697,1.00589,0.007904,0.221088,0.008352,0.00864,0.010176,0.014496,0.016,0.706944,0.012288
+533,722.781,1.38354,1.01994,0.008192,0.221184,0.008256,0.009536,0.00992,0.015168,0.014496,0.722112,0.011072
+534,670.102,1.49231,2.21648,0.008,0.22576,0.00832,0.008512,0.01024,0.015392,0.014912,1.91264,0.012704
+535,366.729,2.72681,1.03078,0.008544,0.241504,0.008192,0.008224,0.009888,0.015104,0.019648,0.708704,0.010976
+536,730.125,1.36963,1.00608,0.007904,0.222176,0.008192,0.008192,0.010272,0.015776,0.01472,0.706752,0.012096
+537,680.964,1.46851,1.02403,0.008192,0.227328,0.008384,0.00944,0.01008,0.015136,0.024224,0.710016,0.011232
+538,671.916,1.48828,1.7449,0.008192,0.225056,0.008288,0.00832,0.010016,0.01456,0.015488,1.44176,0.013216
+539,436.767,2.28955,1.01635,0.008256,0.225696,0.008224,0.008352,0.010112,0.01568,0.015008,0.71376,0.011264
+540,647.948,1.54333,1.03782,0.008192,0.23552,0.008192,0.009312,0.00928,0.028448,0.0144,0.70656,0.01792
+541,703.357,1.42175,1.02794,0.00816,0.221248,0.008224,0.00816,0.010272,0.026688,0.015488,0.7176,0.012096
+542,722.59,1.38391,1.78102,0.008096,0.22288,0.008352,0.00848,0.024288,0.014688,0.015712,1.46493,0.0136
+543,431.453,2.31775,1.02291,0.007104,0.224928,0.008256,0.008128,0.00992,0.015008,0.022528,0.714752,0.012288
+544,697.488,1.43372,1.04829,0.008192,0.221184,0.008192,0.008192,0.010272,0.015872,0.024928,0.73936,0.012096
+545,551.91,1.81189,1.03747,0.008224,0.245728,0.008224,0.009344,0.010496,0.014944,0.01536,0.713568,0.011584
+546,818.791,1.22131,1.3473,0.007904,0.258624,0.00832,0.008288,0.01024,0.01568,0.014784,0.994624,0.028832
+547,499.512,2.00195,1.19046,0.00816,0.406112,0.00832,0.009504,0.010816,0.014368,0.01536,0.706944,0.01088
+548,634.891,1.57507,1.00864,0.007168,0.225312,0.008288,0.00912,0.009248,0.016352,0.014304,0.70656,0.012288
+549,721.444,1.38611,1.02186,0.007904,0.223104,0.008288,0.008512,0.01024,0.015424,0.014752,0.72144,0.012192
+550,674.961,1.48157,1.01834,0.00816,0.221216,0.008352,0.008352,0.010208,0.014816,0.014336,0.720896,0.012
+551,592.421,1.68799,1.66294,0.019424,0.464256,0.008192,0.00864,0.010432,0.01584,0.014816,1.10992,0.011424
+552,501.869,1.99255,1.024,0.008192,0.238752,0.008352,0.008128,0.010112,0.015232,0.01552,0.708928,0.010784
+553,694.237,1.44043,1.02326,0.008192,0.222848,0.008288,0.00848,0.01008,0.026784,0.01584,0.7112,0.011552
+554,680.794,1.46887,1.03437,0.008,0.221504,0.008384,0.009504,0.010208,0.029248,0.03056,0.704672,0.012288
+555,706.572,1.41528,1.76947,0.008192,0.225184,0.008256,0.010144,0.010304,0.0144,0.022272,1.45757,0.013152
+556,413.341,2.41931,1.03629,0.008224,0.223232,0.008352,0.0096,0.010272,0.031136,0.015488,0.718848,0.011136
+557,667.481,1.49817,1.00966,0.00944,0.223232,0.008288,0.008672,0.010272,0.014528,0.016128,0.707936,0.011168
+558,757.186,1.32068,1.01782,0.008192,0.221184,0.008192,0.008192,0.01024,0.01568,0.025088,0.7088,0.012256
+559,668.516,1.49585,1.81658,0.008224,0.243328,0.00832,0.008192,0.00976,0.01504,0.024576,1.4848,0.014336
+560,407.299,2.4552,1.0199,0.009376,0.222048,0.008288,0.00912,0.009248,0.030688,0.016128,0.704448,0.01056
+561,698.38,1.43188,1.04762,0.008192,0.237152,0.008352,0.010464,0.013344,0.015392,0.028512,0.714496,0.011712
+562,696.836,1.43506,1.04064,0.007968,0.223904,0.008224,0.008416,0.009984,0.03072,0.015744,0.715392,0.020288
+563,566.646,1.76477,1.35437,0.00784,0.277472,0.008192,0.009312,0.00928,0.016128,0.014432,0.982528,0.029184
+564,508.757,1.96558,1.01142,0.008448,0.229632,0.008192,0.009888,0.010112,0.014816,0.014464,0.704352,0.01152
+565,708.651,1.41113,1.02195,0.007872,0.223552,0.008192,0.008224,0.010208,0.030272,0.014784,0.70656,0.012288
+566,696.243,1.43628,1.024,0.008192,0.222624,0.008352,0.008352,0.010016,0.03056,0.015008,0.708608,0.012288
+567,639.55,1.5636,1.024,0.00784,0.23792,0.008192,0.008288,0.010144,0.016096,0.015808,0.7088,0.010912
+568,498.691,2.00525,1.20115,0.010656,0.409472,0.008288,0.00832,0.010752,0.016384,0.014336,0.711712,0.011232
+569,648.82,1.54126,1.01226,0.007072,0.224928,0.008288,0.008256,0.009984,0.014592,0.014336,0.712704,0.012096
+570,719.606,1.38965,1.01171,0.008192,0.222752,0.008352,0.00816,0.010112,0.014816,0.014336,0.714016,0.010976
+571,690.085,1.4491,1.00115,0.008224,0.2232,0.008224,0.00816,0.01024,0.014336,0.015584,0.701216,0.011968
+572,648.82,1.54126,2.28624,0.007968,0.224128,0.008192,0.008192,0.01024,0.015584,0.015104,1.98419,0.01264
+573,385.017,2.59729,1.0224,0.007136,0.241632,0.008224,0.00816,0.010272,0.015552,0.01488,0.704768,0.011776
+574,695.652,1.4375,1.03248,0.008032,0.245696,0.008352,0.00832,0.009888,0.014912,0.014336,0.710656,0.012288
+575,688.114,1.45325,1.01517,0.008192,0.22528,0.008192,0.01024,0.010048,0.014528,0.014336,0.712448,0.011904
+576,675.128,1.4812,2.06029,0.008192,0.456416,0.024864,0.008288,0.012032,0.01584,0.014624,1.50774,0.012288
+577,409.334,2.44299,1.01322,0.008192,0.22528,0.008224,0.010208,0.01024,0.015744,0.014592,0.708992,0.011744
+578,708.344,1.41174,1.03219,0.008192,0.23952,0.00832,0.00816,0.010016,0.01456,0.01568,0.716928,0.010816
+579,720.936,1.38708,1.01546,0.008192,0.224576,0.008288,0.008256,0.009792,0.015168,0.014496,0.714752,0.011936
+580,663.374,1.50745,1.93363,0.007264,0.460608,0.01024,0.008192,0.012288,0.01552,0.014496,1.3913,0.013728
+581,434.059,2.30383,1.00685,0.008192,0.22448,0.008288,0.008288,0.010464,0.01472,0.014336,0.706464,0.011616
+582,698.857,1.43091,1.01581,0.008192,0.229056,0.008288,0.008416,0.01024,0.015552,0.014848,0.709952,0.011264
+583,701.31,1.4259,1.00768,0.007872,0.224256,0.008224,0.00832,0.01008,0.015648,0.014784,0.706816,0.01168
+584,658.68,1.51819,1.79072,0.007968,0.234464,0.008192,0.008224,0.010208,0.015744,0.014816,1.47677,0.014336
+585,416.493,2.401,1.01645,0.007936,0.231456,0.00832,0.008704,0.010176,0.014624,0.015744,0.7072,0.012288
+586,657.411,1.52112,1.04032,0.007968,0.250784,0.008192,0.008192,0.01024,0.014336,0.015584,0.713248,0.011776
+587,737.686,1.35559,1.01581,0.008192,0.231424,0.009376,0.008672,0.00992,0.016192,0.015072,0.705952,0.011008
+588,708.405,1.41162,1.27549,0.008192,0.224288,0.00832,0.009056,0.010144,0.014432,0.015712,0.69904,0.286304
+589,518.022,1.93042,1.20627,0.01024,0.417792,0.008192,0.008256,0.01216,0.015584,0.014976,0.708032,0.01104
+590,598,1.67224,1.01002,0.007872,0.223392,0.008352,0.008544,0.01024,0.014464,0.01552,0.710848,0.010784
+591,709.879,1.40869,1.00762,0.008192,0.223232,0.008192,0.008192,0.010272,0.015392,0.014432,0.707424,0.012288
+592,479.991,2.08337,1.03424,0.008064,0.22336,0.008192,0.009568,0.010112,0.025376,0.015392,0.722944,0.011232
+593,588.083,1.70044,1.20173,0.01024,0.413248,0.008384,0.008448,0.011392,0.015232,0.01536,0.70752,0.011904
+594,647.129,1.54529,1.01222,0.007968,0.224192,0.008352,0.008224,0.010048,0.016384,0.014336,0.710656,0.012064
+595,722.59,1.38391,1.00557,0.008224,0.225024,0.008352,0.008192,0.00992,0.01472,0.015808,0.704448,0.01088
+596,644.43,1.55176,1.03834,0.008192,0.237216,0.008544,0.008192,0.02048,0.016416,0.014304,0.712704,0.012288
+597,727.015,1.37549,2.0897,0.008128,0.443104,0.010304,0.057344,0.012288,0.016384,0.014336,1.51658,0.011232
+598,390.207,2.56274,1.03616,0.008224,0.227776,0.009344,0.019328,0.010272,0.01568,0.019136,0.71472,0.01168
+599,704.506,1.41943,1.00371,0.00816,0.223328,0.008192,0.008192,0.01024,0.015648,0.014688,0.70416,0.011104
+600,715.146,1.39832,1.00934,0.007936,0.223136,0.00832,0.008256,0.01024,0.015008,0.015456,0.709216,0.011776
+601,710.063,1.40833,2.07667,0.008192,0.477184,0.01024,0.008192,0.012032,0.015808,0.014912,1.51782,0.012288
+602,396.438,2.52246,1.00749,0.008192,0.223232,0.008224,0.008128,0.009984,0.014624,0.014336,0.70864,0.012128
+603,721.508,1.38599,1.0095,0.008192,0.223168,0.008352,0.008352,0.009888,0.014944,0.014304,0.71056,0.011744
+604,724.187,1.38086,1.00819,0.008096,0.221888,0.008192,0.008288,0.010144,0.015616,0.014976,0.709952,0.01104
+605,658.309,1.51904,2.21779,0.008192,0.22528,0.008192,0.008384,0.01008,0.015712,0.02112,1.90669,0.014144
+606,377.72,2.64746,1.01021,0.007968,0.223904,0.008288,0.008192,0.010112,0.015552,0.01504,0.708896,0.012256
+607,749.291,1.33459,1.02189,0.007904,0.22352,0.008288,0.009184,0.009184,0.016288,0.0144,0.720896,0.012224
+608,671.916,1.48828,1.00829,0.00832,0.221728,0.008192,0.008192,0.01024,0.015392,0.014528,0.709408,0.012288
+609,459.399,2.17676,2.04298,0.008192,0.507712,0.010304,0.00832,0.011968,0.02464,0.030976,1.42723,0.013632
+610,585.101,1.70911,1.01277,0.008192,0.22736,0.00816,0.009472,0.01008,0.015264,0.014336,0.708352,0.011552
+611,662.408,1.50964,1.02774,0.008288,0.227072,0.00832,0.008672,0.0096,0.01504,0.027872,0.711232,0.011648
+612,724.443,1.38037,1.01158,0.007968,0.225696,0.008288,0.008096,0.009888,0.015072,0.014304,0.710656,0.011616
+613,710.125,1.4082,2.24454,0.008192,0.234816,0.008352,0.008672,0.008416,0.015808,0.014752,1.93274,0.0128
+614,372.042,2.68787,1.03059,0.00784,0.22752,0.008352,0.008672,0.01024,0.015616,0.02848,0.71296,0.010912
+615,667.862,1.49731,1.0137,0.008192,0.224608,0.008352,0.008096,0.009984,0.015232,0.020448,0.70656,0.012224
+616,710.186,1.40808,1.03235,0.007904,0.233888,0.00832,0.008064,0.01024,0.016224,0.02592,0.710592,0.0112
+617,639.5,1.56372,2.28662,0.008192,0.233472,0.008192,0.008192,0.010272,0.015392,0.014784,1.97478,0.013344
+618,321.016,3.11511,1.02899,0.00704,0.239168,0.008384,0.008352,0.010368,0.016288,0.0144,0.713856,0.011136
+619,929.009,1.07642,1.0199,0.008192,0.235008,0.008352,0.008064,0.010048,0.014976,0.014368,0.708608,0.012288
+620,715.146,1.39832,1.01965,0.008192,0.23312,0.008288,0.008096,0.009856,0.015072,0.014336,0.710656,0.012032
+621,672.357,1.4873,2.24957,0.007008,0.231424,0.008224,0.008224,0.010176,0.014464,0.015392,1.93987,0.014784
+622,373.586,2.67676,1.032,0.007872,0.236128,0.008224,0.009408,0.008992,0.015968,0.014752,0.718848,0.011808
+623,700.83,1.42688,1.01472,0.008224,0.225536,0.00832,0.008192,0.00992,0.015232,0.014304,0.712704,0.012288
+624,699.513,1.42957,1.02378,0.008096,0.222496,0.008288,0.008928,0.009952,0.014624,0.015712,0.715424,0.020256
+625,649.798,1.53894,2.12336,0.007968,0.527008,0.01024,0.008192,0.011904,0.016,0.014592,1.5159,0.011552
+626,407.096,2.45642,1.02195,0.008192,0.227328,0.008384,0.010048,0.01024,0.014496,0.01568,0.71648,0.011104
+627,660.912,1.51306,1.04669,0.009568,0.251712,0.0088,0.008448,0.010016,0.015744,0.014592,0.716768,0.01104
+628,681.701,1.46692,1.01312,0.008192,0.228512,0.008256,0.008736,0.009888,0.014944,0.014336,0.70848,0.011776
+629,665.746,1.50208,2.06442,0.008224,0.452544,0.03488,0.008352,0.012032,0.014432,0.015616,1.50605,0.012288
+630,415.985,2.40393,1.01894,0.008192,0.231392,0.008256,0.009632,0.00992,0.015136,0.0144,0.710464,0.011552
+631,722.208,1.38464,1.02416,0.008192,0.22736,0.009344,0.009088,0.01008,0.014496,0.014336,0.720512,0.010752
+632,671.255,1.48975,1.01786,0.008192,0.229376,0.008192,0.008192,0.009952,0.014624,0.015488,0.711552,0.012288
+633,703.841,1.42078,2.0031,0.008096,0.522656,0.01024,0.009376,0.011104,0.014336,0.015936,1.39718,0.014176
+634,416.874,2.3988,1.02934,0.007968,0.239168,0.00832,0.008736,0.009952,0.014656,0.014304,0.714624,0.011616
+635,693.18,1.44263,1.0177,0.008192,0.229376,0.009472,0.008704,0.009888,0.014944,0.014336,0.710656,0.012128
+636,692.36,1.44434,1.02195,0.008192,0.227328,0.008192,0.008224,0.01024,0.015808,0.01488,0.718048,0.01104
+637,704.325,1.4198,1.79613,0.008192,0.23552,0.008192,0.008224,0.01024,0.015328,0.014752,1.48131,0.014368
+638,396.266,2.52356,1.05642,0.008224,0.247456,0.008288,0.008352,0.009792,0.016928,0.027744,0.717728,0.011904
+639,729.41,1.37097,1.01171,0.008032,0.222784,0.008288,0.008192,0.009888,0.015232,0.014304,0.714016,0.010976
+640,666.829,1.49963,1.01046,0.008,0.222176,0.008192,0.008224,0.01024,0.01568,0.01472,0.71248,0.010752
+641,707.671,1.41309,1.79626,0.007904,0.245696,0.00832,0.009888,0.008768,0.016096,0.014624,1.47174,0.013216
+642,410.462,2.43628,1.04691,0.00848,0.237472,0.00832,0.008352,0.022816,0.016064,0.014688,0.718816,0.011904
+643,648.666,1.54163,1.04986,0.008288,0.249984,0.008192,0.009376,0.009024,0.016352,0.014368,0.722048,0.012224
+644,725.212,1.37891,1.0177,0.008064,0.227456,0.01024,0.008192,0.010208,0.014368,0.015584,0.711328,0.012256
+645,668.353,1.49622,1.78381,0.008192,0.2352,0.00832,0.008384,0.010144,0.014528,0.015808,1.4689,0.014336
+646,427.201,2.34082,1.02205,0.007968,0.236128,0.008192,0.008288,0.010176,0.014304,0.01568,0.709312,0.012
+647,722.717,1.38367,1.00966,0.008192,0.22448,0.008352,0.008128,0.008928,0.016032,0.014656,0.708608,0.012288
+648,703.599,1.42126,1.0143,0.007936,0.224032,0.008192,0.01024,0.01008,0.014496,0.015456,0.711584,0.012288
+649,705.599,1.41724,1.01811,0.007872,0.227552,0.008352,0.009696,0.00896,0.016032,0.014688,0.712704,0.012256
+650,469.94,2.12793,1.20243,0.010752,0.4056,0.008192,0.008192,0.010272,0.016256,0.014432,0.7168,0.011936
+651,636.47,1.57117,1.02739,0.008192,0.226656,0.00832,0.008736,0.009696,0.01488,0.015392,0.723552,0.011968
+652,690.958,1.44727,1.01603,0.007968,0.230848,0.008352,0.008992,0.010176,0.014368,0.016096,0.708416,0.010816
+653,652.801,1.53186,1.01242,0.007008,0.226752,0.008384,0.008416,0.010272,0.015552,0.014688,0.710144,0.0112
+654,715.959,1.39673,2.28048,0.009632,0.245568,0.00832,0.008352,0.010048,0.01504,0.014336,1.95584,0.013344
+655,357.37,2.79822,1.02995,0.008192,0.243712,0.008192,0.008224,0.01024,0.01584,0.014816,0.70864,0.012096
+656,716.836,1.39502,1.02195,0.007904,0.229344,0.008352,0.008352,0.010048,0.015808,0.014656,0.716384,0.011104
+657,698.142,1.43237,1.00739,0.00784,0.221568,0.009216,0.008224,0.009152,0.015968,0.014752,0.708608,0.012064
+658,638.354,1.56653,2.08899,0.008096,0.4568,0.050624,0.008352,0.010656,0.016128,0.014592,1.51267,0.011072
+659,424.039,2.35828,1.02246,0.007872,0.229312,0.008352,0.008704,0.009824,0.01504,0.014336,0.7168,0.012224
+660,686.097,1.45752,1.0231,0.008192,0.222432,0.00832,0.008864,0.010272,0.026624,0.014304,0.712416,0.01168
+661,682.439,1.46533,1.03014,0.008032,0.241184,0.008384,0.00864,0.009856,0.01472,0.014432,0.713856,0.01104
+662,615.385,1.625,2.12179,0.008,0.481504,0.018112,0.008352,0.012512,0.016352,0.028672,1.53734,0.010944
+663,421.746,2.37109,1.01629,0.00832,0.231744,0.009312,0.00864,0.009792,0.015264,0.014336,0.707712,0.011168
+664,707.671,1.41309,1.01658,0.007936,0.22976,0.008832,0.008064,0.010112,0.014592,0.014336,0.712096,0.010848
+665,692.126,1.44482,1.01744,0.008192,0.225632,0.008416,0.007968,0.01024,0.015488,0.01488,0.714784,0.01184
+666,700.051,1.42847,2.06192,0.008192,0.47104,0.01232,0.00816,0.01136,0.015264,0.014336,1.50938,0.011872
+667,399.473,2.5033,1.03008,0.007872,0.235904,0.008224,0.00816,0.00976,0.0152,0.0144,0.718752,0.011808
+668,707.366,1.4137,1.01587,0.008192,0.22528,0.008192,0.00944,0.010208,0.015168,0.014336,0.71408,0.010976
+669,701.13,1.42627,1.03187,0.008192,0.222816,0.00832,0.008416,0.009856,0.03104,0.01488,0.716512,0.01184
+670,624.343,1.60168,1.80019,0.008192,0.237568,0.008192,0.008224,0.010208,0.015648,0.01488,1.48294,0.014336
+671,415.205,2.40845,1.05558,0.00816,0.263008,0.008192,0.008192,0.010272,0.015584,0.014688,0.715168,0.01232
+672,676.075,1.47913,1.0199,0.008192,0.22672,0.008352,0.008128,0.010272,0.014816,0.014336,0.7168,0.012288
+673,728.307,1.37305,1.02477,0.008224,0.22624,0.008192,0.008192,0.010272,0.015424,0.014592,0.721568,0.012064
+674,676.131,1.479,2.24042,0.008096,0.233568,0.009248,0.00832,0.009088,0.016224,0.014464,1.92877,0.01264
+675,380.192,2.63025,1.03834,0.00928,0.23168,0.008352,0.010176,0.009952,0.014976,0.028928,0.712704,0.012288
+676,661.018,1.51282,1.02621,0.007136,0.225312,0.00928,0.008352,0.010112,0.015264,0.029664,0.70944,0.011648
+677,712.286,1.40393,1.0607,0.008192,0.231008,0.00832,0.008032,0.016832,0.01552,0.026848,0.721376,0.024576
+678,652.697,1.5321,2.0992,0.008192,0.501024,0.010272,0.008384,0.010752,0.016096,0.014624,1.51869,0.011168
+679,317.298,3.15161,1.04493,0.008192,0.250304,0.008224,0.00928,0.009152,0.015392,0.014784,0.717312,0.012288
+680,1025.92,0.974731,1.05882,0.008192,0.267392,0.008384,0.008416,0.009792,0.015296,0.014304,0.714752,0.012288
+681,731.69,1.3667,1.02218,0.00816,0.228672,0.008352,0.00864,0.010336,0.014592,0.01568,0.716832,0.010912
+682,643.57,1.55383,2.11046,0.007168,0.516096,0.011328,0.008448,0.010944,0.016192,0.014528,1.51347,0.012288
+683,429.08,2.33057,1.02403,0.007808,0.230336,0.008192,0.008224,0.010208,0.014336,0.015456,0.717728,0.011744
+684,686.442,1.45679,1.00966,0.008192,0.22528,0.008192,0.008192,0.009984,0.014592,0.015552,0.707392,0.012288
+685,720.746,1.38745,1.01376,0.008192,0.22496,0.008384,0.008192,0.009888,0.014816,0.014496,0.7136,0.011232
+686,693.297,1.44238,1.77744,0.008192,0.231424,0.008192,0.008224,0.010208,0.014336,0.01552,1.46723,0.014112
+687,415.816,2.40491,1.03014,0.008064,0.229504,0.008384,0.009696,0.009856,0.015072,0.014336,0.724416,0.010816
+688,708.283,1.41187,1.01558,0.008192,0.226304,0.00832,0.008256,0.009024,0.016064,0.014656,0.712704,0.012064
+689,676.354,1.47852,1.03398,0.008192,0.228512,0.008352,0.008672,0.009632,0.015168,0.014336,0.728832,0.012288
+690,679.045,1.47266,1.80224,0.008192,0.264192,0.008192,0.008224,0.010176,0.015616,0.014624,1.45869,0.014336
+691,418.514,2.3894,1.02986,0.008288,0.237472,0.00832,0.009568,0.009888,0.015264,0.014304,0.714752,0.012
+692,679.101,1.47253,1.02573,0.008192,0.225312,0.00816,0.008288,0.010144,0.015872,0.014752,0.72304,0.011968
+693,706.085,1.41626,1.00966,0.007936,0.223488,0.008224,0.008192,0.010208,0.014336,0.015616,0.711008,0.010656
+694,710.186,1.40808,1.76742,0.008,0.230816,0.008384,0.008832,0.010208,0.015872,0.014784,1.45619,0.014336
+695,397.477,2.51587,1.03424,0.008224,0.2304,0.00832,0.009056,0.010272,0.01568,0.014816,0.725216,0.012256
+696,716.084,1.39648,1.01376,0.008192,0.224512,0.008352,0.008192,0.009952,0.015232,0.014336,0.712704,0.012288
+697,669.117,1.49451,1.03405,0.008128,0.244064,0.008224,0.008192,0.01024,0.014336,0.015808,0.71328,0.011776
+698,685.925,1.45789,1.3729,0.00816,0.248576,0.008192,0.008224,0.010208,0.015744,0.014944,1.04451,0.014336
+699,463.453,2.15771,1.20422,0.008192,0.414752,0.008416,0.008736,0.010464,0.015584,0.0144,0.711392,0.012288
+700,596.129,1.67749,1.05942,0.007872,0.26512,0.008192,0.008192,0.01024,0.014336,0.014336,0.720288,0.010848
+701,728.696,1.37231,1.02621,0.007808,0.235232,0.008192,0.009024,0.009792,0.014816,0.014304,0.716032,0.011008
+702,691.016,1.44714,1.0335,0.008064,0.226624,0.008672,0.007808,0.008992,0.016096,0.01456,0.730752,0.011936
+703,614.415,1.62756,2.07261,0.007968,0.475584,0.011584,0.008928,0.011456,0.015136,0.015904,1.51395,0.012096
+704,436.209,2.29248,1.024,0.008064,0.235648,0.008192,0.008,0.009824,0.014944,0.01552,0.712768,0.01104
+705,667.536,1.49805,1.04426,0.008192,0.241536,0.008352,0.00816,0.01024,0.014336,0.015648,0.725728,0.012064
+706,651.814,1.53418,1.06413,0.008224,0.26416,0.008192,0.008192,0.01024,0.015648,0.014688,0.723232,0.011552
+707,679.608,1.47144,2.07462,0.008192,0.456704,0.02256,0.00816,0.011904,0.01472,0.015712,1.5257,0.010976
+708,411.845,2.4281,1.03773,0.008192,0.235328,0.00832,0.008128,0.009536,0.014848,0.014688,0.726944,0.011744
+709,681.587,1.46716,1.06803,0.008256,0.25696,0.008192,0.010112,0.009856,0.014848,0.014336,0.734208,0.011264
+710,666.938,1.49939,1.02864,0.007904,0.22736,0.008352,0.008352,0.00992,0.015136,0.015648,0.7248,0.011168
+711,624.628,1.60095,1.61027,0.010208,0.426208,0.00816,0.008704,0.011424,0.0152,0.014336,1.10387,0.01216
+712,499.117,2.00354,1.03184,0.007872,0.23216,0.008192,0.009216,0.01056,0.01504,0.014336,0.722784,0.01168
+713,673.463,1.48486,1.01504,0.008192,0.227328,0.008192,0.009824,0.009856,0.015136,0.014336,0.71024,0.011936
+714,710.988,1.40649,1.02205,0.008192,0.228864,0.00832,0.008608,0.010208,0.015456,0.015136,0.716256,0.011008
+715,636.964,1.56995,1.83971,0.00832,0.252384,0.008192,0.008288,0.010144,0.016096,0.014656,1.50867,0.01296
+716,419.844,2.38184,1.04038,0.00816,0.2432,0.00832,0.008352,0.009856,0.014976,0.014368,0.722336,0.010816
+717,701.49,1.42554,1.0264,0.006944,0.235488,0.008192,0.00928,0.009184,0.016128,0.01456,0.714752,0.011872
+718,707.304,1.41382,1.04611,0.008192,0.249856,0.008192,0.008192,0.01024,0.014432,0.015296,0.71984,0.011872
+719,615.523,1.62463,1.78333,0.008,0.241056,0.00832,0.008704,0.009856,0.01488,0.014336,1.46403,0.014144
+720,435.791,2.29468,1.01827,0.008288,0.229568,0.008192,0.008192,0.01024,0.015808,0.01488,0.712512,0.010592
+721,709.08,1.41028,1.01862,0.006912,0.22528,0.00928,0.008416,0.008928,0.015648,0.015008,0.718048,0.011104
+722,722.654,1.38379,1.0281,0.008192,0.226688,0.00816,0.0088,0.00992,0.01472,0.014368,0.72496,0.012288
+723,622.587,1.6062,1.79747,0.008192,0.246912,0.008416,0.008736,0.009792,0.014912,0.014336,1.47232,0.013856
+724,433.187,2.30847,1.02416,0.00832,0.230752,0.00816,0.008896,0.01024,0.014336,0.015744,0.716704,0.011008
+725,685.408,1.45898,1.02195,0.008192,0.223232,0.008288,0.010144,0.01008,0.014528,0.015648,0.719552,0.012288
+726,693.121,1.44275,1.02755,0.007968,0.231328,0.008608,0.008192,0.01024,0.015424,0.014816,0.7192,0.011776
+727,706.085,1.41626,1.33107,0.008064,0.2296,0.008416,0.008704,0.01008,0.014496,0.01552,0.987648,0.048544
+728,483.304,2.06909,1.03894,0.00864,0.237248,0.008384,0.009632,0.009056,0.016064,0.014624,0.724352,0.010944
+729,680.342,1.46985,1.02275,0.006944,0.228448,0.008288,0.008096,0.009152,0.016224,0.014464,0.72016,0.010976
+730,714.273,1.40002,1.02285,0.008128,0.22416,0.008192,0.008192,0.010176,0.0144,0.015712,0.72288,0.011008
+731,703.236,1.422,1.02262,0.007072,0.229312,0.008192,0.008224,0.010208,0.015712,0.014848,0.71696,0.012096
+732,654.784,1.52722,2.08666,0.010016,0.478688,0.010656,0.008352,0.010432,0.016256,0.014464,1.52576,0.012032
+733,405.163,2.46814,1.02589,0.00704,0.227232,0.009312,0.008096,0.009248,0.016096,0.014592,0.722624,0.011648
+734,693.18,1.44263,1.024,0.008192,0.229312,0.008256,0.008288,0.010144,0.015968,0.014624,0.716928,0.012288
+735,693.532,1.44189,1.02605,0.008192,0.225312,0.00816,0.01024,0.010208,0.014368,0.015744,0.721536,0.012288
+736,676.075,1.47913,2.08099,0.007936,0.457184,0.047104,0.008192,0.01024,0.016352,0.014368,1.50867,0.010944
+737,395.94,2.52563,1.03424,0.008,0.235616,0.00816,0.008128,0.009664,0.015136,0.014304,0.722944,0.012288
+738,676.242,1.47876,1.02006,0.007936,0.225664,0.00832,0.00912,0.009184,0.015712,0.015008,0.718176,0.010944
+739,736.823,1.35718,1.01581,0.008128,0.224768,0.008288,0.00816,0.00976,0.015328,0.014336,0.716448,0.010592
+740,684.435,1.46106,2.06848,0.008192,0.466272,0.015008,0.008192,0.011744,0.01488,0.015488,1.51763,0.011072
+741,404.643,2.47131,1.02227,0.00784,0.22704,0.008544,0.008128,0.00896,0.016256,0.014368,0.71888,0.012256
+742,707.793,1.41284,1.02522,0.008192,0.223232,0.008192,0.008192,0.01008,0.01568,0.01488,0.724992,0.011776
+743,672.909,1.48608,1.05581,0.008192,0.225248,0.008224,0.008192,0.009792,0.014784,0.015936,0.733632,0.031808
+744,674.35,1.48291,2.16064,0.00816,0.562976,0.010304,0.008384,0.010496,0.015936,0.014528,1.51923,0.010624
+745,387.805,2.57861,1.05248,0.007904,0.248096,0.00832,0.008288,0.009696,0.015136,0.02256,0.7208,0.01168
+746,705.113,1.41821,1.0321,0.007936,0.223808,0.008224,0.008192,0.023648,0.015264,0.015424,0.717632,0.011968
+747,674.461,1.48267,1.03488,0.00784,0.226272,0.008192,0.00832,0.010112,0.01584,0.02512,0.720896,0.012288
+748,689.098,1.45117,2.08224,0.008224,0.452576,0.034304,0.008352,0.010592,0.016384,0.014336,1.52576,0.011712
+749,374.149,2.67273,1.06701,0.008224,0.247776,0.00832,0.00944,0.008992,0.026272,0.028672,0.718432,0.01088
+750,748.401,1.33618,1.04035,0.008224,0.2232,0.008224,0.00816,0.01024,0.03072,0.015648,0.723712,0.012224
+751,687.768,1.45398,1.03594,0.008192,0.224928,0.008416,0.00832,0.010272,0.02864,0.015968,0.719264,0.011936
+752,385.56,2.59363,1.94179,0.007904,0.241504,0.008384,0.00832,0.00896,0.016288,0.014336,1.62314,0.01296
+753,631.319,1.58398,1.07725,0.008096,0.280672,0.008192,0.008352,0.01008,0.015744,0.014752,0.719072,0.012288
+754,714.149,1.40027,1.03424,0.008192,0.22736,0.00816,0.008384,0.01008,0.015968,0.014752,0.730208,0.011136
+755,671.916,1.48828,1.05181,0.008192,0.245344,0.008352,0.00816,0.009856,0.015008,0.014368,0.730752,0.011776
+756,678.033,1.47485,2.10947,0.008192,0.447584,0.010848,0.008384,0.0104,0.016224,0.014464,1.58218,0.0112
+757,393.506,2.54126,1.03194,0.008192,0.228352,0.008288,0.010144,0.009248,0.01568,0.01472,0.72528,0.012032
+758,662.408,1.50964,1.03834,0.008096,0.239264,0.008288,0.00832,0.00992,0.01488,0.014336,0.722944,0.012288
+759,664.234,1.50549,1.03014,0.008192,0.230592,0.00832,0.008288,0.009856,0.015136,0.014528,0.723968,0.011264
+760,681.814,1.46667,2.08896,0.008192,0.44832,0.010272,0.00832,0.010272,0.016416,0.014304,1.56176,0.011104
+761,389.854,2.56506,1.05085,0.007872,0.247968,0.00832,0.008448,0.009792,0.014784,0.014336,0.72704,0.012288
+762,649.952,1.53857,1.05584,0.008192,0.251904,0.008192,0.008192,0.010176,0.0144,0.015392,0.727392,0.012
+763,700.83,1.42688,1.02947,0.008192,0.227328,0.008192,0.009216,0.009248,0.016352,0.014336,0.72496,0.011648
+764,628.076,1.59216,2.06218,0.008,0.44224,0.010528,0.008352,0.010464,0.015872,0.014592,1.54032,0.011808
+765,443.266,2.25598,1.02928,0.00784,0.229632,0.00832,0.010112,0.009888,0.01488,0.015648,0.721344,0.011616
+766,699.454,1.42969,1.02554,0.00784,0.227712,0.008192,0.008192,0.01008,0.015744,0.01456,0.721376,0.01184
+767,717.526,1.39368,1.02198,0.008192,0.226688,0.008384,0.008128,0.008704,0.016416,0.014304,0.720224,0.010944
+768,686.903,1.45581,2.22278,0.008032,0.22608,0.008256,0.008128,0.009888,0.014752,0.0144,1.9208,0.012448
+769,378.261,2.64368,1.03629,0.008288,0.231328,0.008192,0.009696,0.009952,0.0152,0.0144,0.728544,0.010688
+770,715.271,1.39807,1.06701,0.008064,0.226912,0.00832,0.008608,0.009728,0.014848,0.01536,0.76288,0.012288
+771,653.009,1.53137,1.04448,0.00928,0.23632,0.008288,0.010272,0.009824,0.014784,0.015712,0.728992,0.011008
+772,667.753,1.49756,2.08461,0.008192,0.446464,0.011264,0.008416,0.01104,0.016064,0.014656,1.55648,0.012032
+773,404.124,2.47449,1.03226,0.008256,0.234208,0.008256,0.008224,0.010048,0.014528,0.015872,0.721184,0.01168
+774,697.488,1.43372,1.03424,0.008064,0.22336,0.008192,0.008288,0.010176,0.015584,0.01488,0.73344,0.012256
+775,660.645,1.51367,1.0295,0.008192,0.22656,0.00832,0.008576,0.010496,0.015424,0.014464,0.725664,0.011808
+776,680.512,1.46948,2.10342,0.007936,0.457728,0.01024,0.008192,0.011904,0.01616,0.01488,1.56467,0.011712
+777,405.705,2.46484,1.0199,0.008192,0.22928,0.008288,0.009504,0.009024,0.016256,0.0144,0.714208,0.010752
+778,711.173,1.40613,1.0295,0.00816,0.224736,0.008256,0.00864,0.00992,0.01472,0.014336,0.729056,0.01168
+779,699.932,1.42871,1.04064,0.007872,0.232,0.008192,0.008192,0.010272,0.015744,0.014816,0.731264,0.012288
+780,639.75,1.56311,2.25098,0.007936,0.250496,0.008224,0.00816,0.01024,0.016384,0.014336,1.92246,0.012736
+781,376.574,2.65552,1.0281,0.008192,0.231424,0.008192,0.008384,0.010048,0.015552,0.014368,0.720768,0.011168
+782,711.605,1.40527,1.03149,0.008192,0.23056,0.008992,0.008256,0.00992,0.014656,0.015424,0.72384,0.011648
+783,685.122,1.45959,1.0281,0.008192,0.229376,0.01024,0.008224,0.010208,0.01568,0.014752,0.720192,0.011232
+784,706.877,1.41467,2.22931,0.008192,0.229376,0.008192,0.008192,0.01024,0.015808,0.014944,1.92099,0.013376
+785,367.47,2.72131,1.07315,0.008032,0.259488,0.00816,0.008448,0.0088,0.01632,0.014336,0.73728,0.012288
+786,671.971,1.48816,1.03424,0.008192,0.227168,0.00832,0.0096,0.008992,0.015904,0.014656,0.730528,0.01088
+787,699.513,1.42957,1.02966,0.00816,0.225216,0.008288,0.008096,0.010176,0.01488,0.014336,0.728864,0.011648
+788,624.438,1.60144,2.12736,0.008192,0.466944,0.011616,0.008352,0.010784,0.030592,0.015584,1.56259,0.012704
+789,413.675,2.41736,1.06096,0.00816,0.23744,0.008352,0.008416,0.010144,0.014304,0.015968,0.747104,0.011072
+790,682.553,1.46509,1.03213,0.008192,0.226432,0.008352,0.008608,0.00976,0.015008,0.014464,0.729088,0.012224
+791,701.55,1.42542,1.03606,0.00816,0.22544,0.010048,0.008384,0.01024,0.014336,0.015584,0.731936,0.011936
+792,660.379,1.51428,2.09101,0.008192,0.446464,0.010368,0.009152,0.011008,0.014528,0.01552,1.56483,0.010944
+793,403.388,2.479,1.02819,0.007936,0.231776,0.008192,0.008192,0.010272,0.015392,0.014944,0.720352,0.011136
+794,676.745,1.47766,1.03114,0.007136,0.226336,0.00832,0.00832,0.008992,0.016128,0.01456,0.729056,0.012288
+795,703.961,1.42053,1.03424,0.008192,0.227328,0.008192,0.008192,0.009728,0.014848,0.015392,0.73008,0.012288
+796,664.935,1.50391,2.08282,0.007936,0.44384,0.010304,0.008352,0.01088,0.0144,0.01568,1.56074,0.010688
+797,402.456,2.48474,1.05347,0.00704,0.235296,0.009536,0.0088,0.009888,0.014944,0.015392,0.740288,0.012288
+798,627.547,1.59351,1.05062,0.008064,0.237696,0.008352,0.009088,0.009184,0.015776,0.014848,0.735328,0.012288
+799,750.596,1.33228,1.03062,0.006944,0.226944,0.008288,0.008352,0.009824,0.014816,0.0144,0.729088,0.011968
+800,640.601,1.56104,2.22579,0.00816,0.233024,0.008288,0.00832,0.008992,0.015808,0.014752,1.91501,0.01344
+801,387.585,2.58008,1.03219,0.008192,0.230528,0.00832,0.010176,0.009024,0.016,0.015936,0.721728,0.012288
+802,710.556,1.40735,1.03219,0.008192,0.22528,0.008192,0.008192,0.011264,0.015168,0.014528,0.729088,0.012288
+803,699.991,1.42859,1.03014,0.008224,0.22672,0.00832,0.00768,0.009184,0.015936,0.014752,0.728288,0.01104
+804,672.799,1.48633,2.084,0.008192,0.446112,0.010304,0.008352,0.011456,0.015296,0.014496,1.55827,0.01152
+805,404.683,2.47107,1.03587,0.008224,0.227296,0.008192,0.008192,0.01024,0.016224,0.014496,0.731168,0.01184
+806,663.911,1.50623,1.04307,0.007936,0.242656,0.008224,0.00816,0.01024,0.014336,0.01584,0.723488,0.012192
+807,682.951,1.46423,1.02819,0.008224,0.227392,0.008192,0.01024,0.009888,0.014688,0.014336,0.722976,0.012256
+808,673.02,1.48584,2.24749,0.007008,0.237568,0.008192,0.009312,0.010144,0.01536,0.015392,1.93181,0.012704
+809,376.609,2.65527,1.04218,0.008032,0.234688,0.00832,0.008672,0.008768,0.015744,0.014784,0.731136,0.012032
+810,696.836,1.43506,1.03661,0.007872,0.230048,0.008384,0.009472,0.009824,0.015296,0.014336,0.729088,0.012288
+811,693.004,1.44299,1.02653,0.008192,0.225184,0.008352,0.008096,0.009792,0.015104,0.014528,0.726176,0.011104
+812,684.492,1.46094,2.0808,0.008192,0.446464,0.01168,0.008384,0.010688,0.015712,0.014976,1.55427,0.010432
+813,398.812,2.50745,1.04141,0.008416,0.229728,0.008352,0.009952,0.010528,0.014624,0.016288,0.732384,0.011136
+814,693.649,1.44165,1.03171,0.007968,0.224768,0.008288,0.00832,0.009888,0.015072,0.014496,0.730976,0.011936
+815,709.94,1.40857,1.02806,0.008192,0.231008,0.00816,0.008128,0.009824,0.015104,0.014496,0.720896,0.012256
+816,674.128,1.4834,2.24256,0.00816,0.229408,0.008352,0.009088,0.009184,0.016032,0.014688,1.93517,0.01248
+817,365.453,2.73633,1.0487,0.00832,0.241664,0.008192,0.008192,0.010272,0.015648,0.014944,0.729184,0.012288
+818,715.209,1.39819,1.05968,0.007104,0.249664,0.00832,0.008256,0.010208,0.016384,0.014336,0.733184,0.012224
+819,682.553,1.46509,1.03725,0.007072,0.23056,0.00832,0.010048,0.00912,0.015904,0.014816,0.73024,0.011168
+820,657.833,1.52014,2.09514,0.008192,0.446464,0.011296,0.00832,0.010944,0.014496,0.015808,1.56838,0.011232
+821,409.498,2.44202,1.0384,0.007904,0.23584,0.008224,0.00928,0.009152,0.01632,0.0144,0.724992,0.012288
+822,651.192,1.53564,1.03235,0.007104,0.22528,0.008192,0.008192,0.009888,0.014688,0.014496,0.7328,0.011712
+823,722.972,1.38318,1.02253,0.008064,0.224032,0.008224,0.00816,0.01024,0.015552,0.014592,0.721472,0.012192
+824,643.772,1.55334,2.09779,0.007936,0.453504,0.01024,0.009376,0.011072,0.01568,0.015008,1.56384,0.011136
+825,409.457,2.44226,1.04416,0.007904,0.235968,0.008192,0.01024,0.010208,0.0144,0.015744,0.729696,0.011808
+826,688.346,1.45276,1.03626,0.007968,0.236288,0.008192,0.008192,0.010272,0.015872,0.014816,0.722848,0.011808
+827,648.255,1.5426,1.07693,0.008,0.260288,0.008192,0.009408,0.009056,0.016256,0.014432,0.739328,0.011968
+828,687.999,1.45349,2.10378,0.007936,0.44512,0.010272,0.008192,0.011552,0.015104,0.014304,1.57901,0.012288
+829,394.852,2.53259,1.02614,0.00816,0.22736,0.008288,0.00832,0.010016,0.015712,0.014976,0.722496,0.010816
+830,705.599,1.41724,1.03328,0.008192,0.22656,0.00832,0.007008,0.010048,0.015808,0.014592,0.731136,0.011616
+831,699.095,1.43042,1.04038,0.008128,0.223296,0.008288,0.009184,0.009184,0.015648,0.014752,0.739616,0.012288
+832,652.593,1.53235,1.84675,0.007872,0.242016,0.008224,0.00816,0.010144,0.015776,0.014496,1.5263,0.01376
+833,410.853,2.43396,1.02982,0.008256,0.231616,0.00832,0.00992,0.008768,0.016032,0.014496,0.720704,0.011712
+834,687.652,1.45422,1.02605,0.008192,0.22528,0.008192,0.008192,0.01024,0.015456,0.014912,0.72464,0.010944
+835,717.526,1.39368,1.02022,0.007904,0.225728,0.008224,0.00816,0.01024,0.014432,0.015552,0.718912,0.011072
+836,674.294,1.48303,2.23232,0.008192,0.227328,0.009312,0.008384,0.00896,0.016096,0.014592,1.92698,0.01248
+837,374.783,2.66821,1.0711,0.008192,0.25344,0.00816,0.020544,0.009856,0.014944,0.014528,0.730496,0.010944
+838,696.125,1.43652,1.06099,0.00832,0.227328,0.008352,0.017952,0.009952,0.014944,0.026144,0.735712,0.012288
+839,674.794,1.48193,1.03139,0.008192,0.22528,0.008192,0.008192,0.009888,0.014688,0.02048,0.724832,0.011648
+840,684.664,1.46057,2.27328,0.008192,0.243712,0.008192,0.008288,0.010176,0.015616,0.015072,1.9512,0.012832
+841,376.956,2.65283,1.03786,0.008064,0.227456,0.008224,0.00816,0.009952,0.014624,0.026624,0.72288,0.011872
+842,641.906,1.55786,1.08544,0.008192,0.278528,0.008192,0.008192,0.010144,0.014528,0.015552,0.729824,0.012288
+843,698.797,1.43103,1.0385,0.00704,0.241504,0.008288,0.009472,0.01024,0.015008,0.014336,0.720896,0.011712
+844,588.675,1.69873,2.13405,0.007904,0.455072,0.011392,0.008352,0.010976,0.015744,0.014976,1.59744,0.012192
+845,436.046,2.29333,1.03946,0.007904,0.233824,0.008192,0.008192,0.01024,0.014368,0.015584,0.729248,0.011904
+846,674.183,1.48328,1.02867,0.007968,0.230176,0.008352,0.00928,0.008992,0.015712,0.014912,0.722208,0.011072
+847,702.212,1.42407,1.02816,0.007808,0.223808,0.00928,0.008192,0.009184,0.01616,0.01456,0.727008,0.01216
+848,678.033,1.47485,2.27094,0.008192,0.234528,0.008224,0.00832,0.010432,0.015008,0.015872,1.95763,0.012736
+849,305.946,3.26855,1.03834,0.008192,0.229376,0.008384,0.008,0.01024,0.015392,0.014848,0.731616,0.012288
+850,1099.6,0.909424,1.03482,0.008096,0.223904,0.008192,0.008352,0.011264,0.0152,0.015424,0.732096,0.012288
+851,724.059,1.3811,1.04976,0.008192,0.22688,0.008224,0.009984,0.008864,0.015488,0.01488,0.745632,0.011616
+852,637.311,1.56909,2.07462,0.008032,0.443936,0.010336,0.00832,0.010656,0.015488,0.014976,1.55213,0.010752
+853,406.188,2.46191,1.03046,0.00784,0.229664,0.00832,0.008576,0.009664,0.014912,0.014336,0.724992,0.01216
+854,695.652,1.4375,1.0313,0.008128,0.22944,0.008224,0.00816,0.01024,0.015776,0.014976,0.724576,0.011776
+855,681.758,1.4668,1.03014,0.008192,0.229376,0.008192,0.010112,0.009632,0.01504,0.014368,0.724384,0.010848
+856,690.143,1.44897,2.08368,0.007008,0.446016,0.010624,0.008256,0.010272,0.016064,0.014624,1.55971,0.011104
+857,396.899,2.51953,1.04154,0.008192,0.234592,0.008352,0.008576,0.008768,0.016192,0.01552,0.729664,0.01168
+858,696.717,1.4353,1.04858,0.008192,0.229376,0.008192,0.008192,0.010144,0.01568,0.01472,0.742816,0.011264
+859,688.403,1.45264,1.02938,0.008192,0.22448,0.008704,0.008256,0.009632,0.015168,0.014336,0.728992,0.011616
+860,443.77,2.25342,2.10435,0.008192,0.447872,0.010304,0.008384,0.010592,0.014368,0.015872,1.57725,0.01152
+861,576.009,1.73608,1.05037,0.008192,0.232864,0.008384,0.010176,0.009856,0.0152,0.014336,0.739328,0.012032
+862,690.958,1.44727,1.02915,0.008192,0.22528,0.008192,0.008192,0.01024,0.014336,0.015776,0.727008,0.011936
+863,711.235,1.40601,1.0289,0.007072,0.227072,0.008256,0.00832,0.009696,0.014752,0.014464,0.72704,0.012224
+864,653.895,1.5293,2.23235,0.00784,0.234976,0.008352,0.00832,0.009024,0.015936,0.014592,1.92102,0.012288
+865,376.194,2.6582,1.05024,0.008128,0.225376,0.009216,0.008672,0.008704,0.016288,0.030816,0.731136,0.011904
+866,710.988,1.40649,1.03424,0.008192,0.226848,0.008256,0.008608,0.010272,0.01584,0.014848,0.730336,0.01104
+867,666.558,1.50024,1.03283,0.00784,0.226112,0.008288,0.008256,0.01024,0.015584,0.014976,0.729248,0.012288
+868,658.839,1.51782,2.10534,0.008192,0.444288,0.010368,0.008192,0.01152,0.015104,0.014336,1.5823,0.01104
+869,374.235,2.67212,1.05898,0.006848,0.249856,0.008224,0.009472,0.010752,0.014592,0.015776,0.731712,0.011744
+870,779.3,1.2832,1.04221,0.008192,0.233472,0.008224,0.010112,0.009824,0.014848,0.015872,0.7296,0.012064
+871,689.795,1.44971,1.0288,0.006848,0.22736,0.00816,0.008448,0.009984,0.01568,0.014848,0.726464,0.011008
+872,661.178,1.51245,2.0984,0.008192,0.4456,0.010272,0.008384,0.01088,0.01584,0.01488,1.57286,0.011488
+873,404.064,2.47485,1.03398,0.008192,0.230592,0.008352,0.008128,0.008992,0.015904,0.014752,0.72704,0.012032
+874,712.844,1.40283,1.03037,0.007936,0.223712,0.008224,0.009792,0.009792,0.015232,0.015488,0.727904,0.012288
+875,697.548,1.43359,1.02822,0.007872,0.229376,0.008608,0.009792,0.009696,0.01536,0.014336,0.722304,0.01088
+876,677.473,1.47607,2.10915,0.008192,0.45056,0.01024,0.008192,0.010272,0.016352,0.014336,1.57901,0.012
+877,400,2.5,1.02579,0.007968,0.227552,0.008224,0.00816,0.009632,0.014976,0.014304,0.722944,0.012032
+878,687.594,1.45435,1.04448,0.008192,0.232992,0.00832,0.009568,0.009248,0.016288,0.0144,0.733184,0.012288
+879,689.098,1.45117,1.03802,0.007904,0.233728,0.00832,0.010208,0.009792,0.015264,0.015488,0.725664,0.011648
+880,691.541,1.44604,2.22653,0.00784,0.23008,0.008192,0.008192,0.01024,0.015808,0.014912,1.91898,0.012288
+881,372.94,2.6814,1.0295,0.008352,0.234592,0.00832,0.008224,0.008992,0.015712,0.015008,0.71856,0.011744
+882,695.652,1.4375,1.02202,0.008192,0.224832,0.008352,0.008288,0.009824,0.014944,0.01552,0.720928,0.011136
+883,708.528,1.41138,1.03462,0.008192,0.22528,0.00832,0.00816,0.009536,0.0152,0.014464,0.73472,0.010752
+884,679.721,1.47119,2.16653,0.008,0.500352,0.010464,0.008192,0.010368,0.016192,0.0144,1.5872,0.01136
+885,388.136,2.57642,1.03565,0.008192,0.231424,0.01024,0.008192,0.010112,0.014464,0.015808,0.725568,0.011648
+886,682.326,1.46558,1.02918,0.008192,0.226368,0.00832,0.008544,0.009696,0.014944,0.014464,0.726912,0.011744
+887,684.95,1.45996,1.024,0.008192,0.229216,0.008288,0.008256,0.01024,0.014336,0.015712,0.717472,0.012288
+888,548.694,1.82251,2.24723,0.008032,0.250592,0.008192,0.008192,0.010144,0.015552,0.014944,1.91882,0.012768
+889,424.412,2.3562,1.05347,0.007168,0.237536,0.008448,0.0112,0.009056,0.016352,0.014336,0.73728,0.012096
+890,681.191,1.46802,1.03411,0.00784,0.230112,0.008192,0.009312,0.00912,0.016,0.014752,0.727008,0.011776
+891,708.283,1.41187,1.0425,0.00784,0.235872,0.009344,0.008992,0.009568,0.015104,0.01552,0.729216,0.01104
+892,628.51,1.59106,2.08282,0.008192,0.442368,0.011296,0.008512,0.010912,0.015424,0.014656,1.56054,0.010912
+893,415.416,2.40723,1.04227,0.007008,0.239584,0.008224,0.010208,0.010048,0.014528,0.014336,0.726624,0.011712
+894,678.933,1.4729,1.04211,0.008192,0.233056,0.00832,0.008672,0.010048,0.015776,0.014848,0.731232,0.011968
+895,708.283,1.41187,1.02387,0.008064,0.227456,0.008192,0.008224,0.010208,0.01568,0.01472,0.719168,0.01216
+896,676.466,1.47827,2.23725,0.006976,0.239616,0.008192,0.008192,0.011392,0.015264,0.015904,1.91942,0.012288
+897,376.574,2.65552,1.03622,0.008,0.233696,0.00832,0.008672,0.009664,0.01504,0.014336,0.726752,0.011744
+898,703.417,1.42163,1.02989,0.007904,0.232288,0.008224,0.008192,0.01024,0.015488,0.014752,0.721088,0.011712
+899,681.417,1.46753,1.03402,0.008192,0.231264,0.00832,0.008128,0.00992,0.014752,0.015456,0.72592,0.012064
+900,580.828,1.72168,2.07597,0.008192,0.446464,0.01024,0.008192,0.011552,0.015072,0.014336,1.55024,0.01168
+901,447.357,2.23535,1.03645,0.008256,0.231264,0.0088,0.008192,0.009632,0.014976,0.015712,0.727712,0.011904
+902,703.901,1.42065,1.0337,0.00816,0.228672,0.00832,0.008672,0.009696,0.015072,0.015808,0.727552,0.011744
+903,676.131,1.479,1.03107,0.007072,0.227328,0.008192,0.008224,0.01024,0.015424,0.014976,0.728576,0.01104
+904,694.237,1.44043,2.08896,0.008192,0.444128,0.010336,0.008352,0.0104,0.016256,0.014336,1.56467,0.012288
+905,399.961,2.50024,1.03424,0.008192,0.231424,0.009632,0.008672,0.009728,0.015008,0.014336,0.72608,0.011168
+906,642.107,1.55737,1.03741,0.008192,0.231424,0.008384,0.009088,0.010496,0.01504,0.014336,0.72848,0.011968
+907,743.511,1.34497,1.02922,0.00816,0.226688,0.008192,0.008128,0.008928,0.015712,0.015008,0.726528,0.011872
+908,698.499,1.43164,2.09715,0.008192,0.493568,0.01024,0.008192,0.011616,0.016256,0.015104,1.52166,0.01232
+909,391.924,2.55151,1.02211,0.008064,0.227712,0.008384,0.008416,0.009696,0.014944,0.014368,0.71856,0.011968
+910,704.264,1.41992,1.02995,0.00784,0.225472,0.00832,0.008128,0.009824,0.01504,0.014304,0.729088,0.011936
+911,709.51,1.40942,1.01974,0.008128,0.224576,0.008288,0.008096,0.009024,0.016064,0.014656,0.718816,0.012096
+912,680.286,1.46997,1.7721,0.007904,0.228192,0.008192,0.009888,0.009856,0.015104,0.015456,1.46317,0.014336
+913,416.472,2.40112,1.02637,0.00816,0.227712,0.008192,0.008192,0.010144,0.014432,0.015904,0.721376,0.012256
+914,710.371,1.40771,1.02195,0.008192,0.227136,0.008288,0.008096,0.009792,0.014976,0.014368,0.718816,0.012288
+915,672.909,1.48608,1.0281,0.008224,0.227296,0.008224,0.00816,0.01008,0.014496,0.015456,0.723872,0.012288
+916,690.842,1.44751,1.78346,0.008192,0.229376,0.008416,0.009888,0.010144,0.01456,0.01568,1.47322,0.013984
+917,410.874,2.43384,1.03248,0.00816,0.235712,0.008288,0.008224,0.009696,0.014912,0.015456,0.719744,0.012288
+918,706.816,1.41479,1.02656,0.008,0.225376,0.00832,0.008576,0.009696,0.014976,0.014336,0.726176,0.011104
+919,696.599,1.43555,1.03197,0.008192,0.226336,0.007328,0.009344,0.008928,0.015808,0.014816,0.729152,0.012064
+920,704.749,1.41895,1.75923,0.008192,0.226528,0.00832,0.008896,0.009888,0.014656,0.015392,1.45302,0.014336
+921,412.82,2.42236,1.05062,0.008192,0.246816,0.008352,0.00864,0.016768,0.01568,0.01504,0.718848,0.012288
+922,700.051,1.42847,1.0399,0.007904,0.222912,0.00816,0.008576,0.009888,0.029472,0.015808,0.725248,0.011936
+923,713.34,1.40186,1.03981,0.008224,0.224416,0.00832,0.008096,0.008992,0.03072,0.016224,0.723104,0.011712
+924,656.095,1.52417,1.30499,0.007872,0.238304,0.008192,0.008192,0.009984,0.014592,0.01568,0.985792,0.016384
+925,442.476,2.26001,1.30877,0.008256,0.45264,0.024,0.008736,0.010304,0.026016,0.029248,0.738336,0.011232
+926,706.207,1.41602,1.04387,0.008192,0.22528,0.009216,0.009024,0.009856,0.014912,0.028608,0.727104,0.01168
+927,652.749,1.53198,1.05021,0.007936,0.225152,0.008608,0.008224,0.010208,0.024608,0.014304,0.739328,0.01184
+928,678.595,1.47363,1.02851,0.007872,0.225056,0.008288,0.008128,0.00912,0.015712,0.01488,0.728704,0.010752
+929,695.534,1.43774,2.06854,0.008192,0.444992,0.010272,0.008448,0.011328,0.015328,0.015616,1.54278,0.011584
+930,403.229,2.47998,1.03251,0.008032,0.2272,0.008384,0.008736,0.009824,0.016064,0.015008,0.727264,0.012
+931,695.18,1.43848,1.02506,0.00816,0.225344,0.008224,0.008192,0.00992,0.014624,0.014368,0.724576,0.011648
+932,718.219,1.39233,1.0281,0.008192,0.223232,0.00928,0.00832,0.009056,0.015872,0.01456,0.727328,0.012256
+933,594.485,1.68213,1.6647,0.01024,0.421888,0.008192,0.008192,0.011456,0.0152,0.015424,1.16214,0.011968
+934,488.9,2.04541,1.03501,0.008192,0.224,0.008224,0.00816,0.010144,0.016,0.01472,0.734496,0.011072
+935,564.966,1.77002,1.04038,0.008192,0.237568,0.008192,0.008352,0.011392,0.015072,0.014336,0.724992,0.012288
+936,762.472,1.31152,1.05882,0.007968,0.235744,0.008192,0.008192,0.009568,0.015008,0.015744,0.74736,0.01104
+937,688.056,1.45337,2.15635,0.007936,0.500032,0.010272,0.008704,0.010368,0.016384,0.015424,1.57562,0.011616
+938,400.274,2.49829,1.04448,0.008224,0.227296,0.008192,0.008224,0.010208,0.014336,0.015392,0.741408,0.0112
+939,698.738,1.43115,1.03501,0.007168,0.227328,0.008192,0.01024,0.010048,0.014528,0.01584,0.729632,0.012032
+940,676.019,1.47925,1.04525,0.006944,0.225152,0.008288,0.008192,0.009856,0.015968,0.01504,0.744672,0.011136
+941,624.581,1.60107,2.14272,0.008,0.50272,0.01024,0.008224,0.011584,0.015008,0.014528,1.56038,0.012032
+942,398.715,2.50806,1.04038,0.008192,0.237568,0.008224,0.00816,0.01024,0.014336,0.01584,0.725536,0.012288
+943,656.515,1.52319,1.05578,0.008192,0.243712,0.008192,0.009472,0.008992,0.01536,0.01488,0.73504,0.011936
+944,706.329,1.41577,1.06912,0.008064,0.266432,0.008192,0.008192,0.010272,0.01552,0.01488,0.726592,0.010976
+945,677.697,1.47559,1.35987,0.008192,0.23552,0.008192,0.008192,0.010016,0.01456,0.015456,1.04541,0.014336
+946,446.625,2.23901,1.04701,0.008224,0.239424,0.008352,0.00864,0.01024,0.014336,0.014336,0.732768,0.010688
+947,706.207,1.41602,1.02605,0.008192,0.22528,0.008192,0.008192,0.009824,0.014752,0.015904,0.724576,0.011136
+948,707.671,1.41309,1.02835,0.007936,0.22768,0.008288,0.008608,0.00976,0.014848,0.014304,0.724992,0.011936
+949,656.831,1.52246,1.8312,0.00784,0.248448,0.009408,0.008672,0.009664,0.015264,0.014368,1.5032,0.014336
+950,403.865,2.47607,1.07315,0.008192,0.239616,0.008288,0.009184,0.009152,0.015744,0.025216,0.73728,0.02048
+951,698.023,1.43262,1.03334,0.007808,0.223776,0.009312,0.008576,0.008704,0.016224,0.014496,0.73264,0.011808
+952,672.026,1.48804,1.06435,0.008192,0.244896,0.00832,0.00864,0.009632,0.02752,0.015584,0.729824,0.011744
+953,678.37,1.47412,2.33517,0.008096,0.225952,0.00832,0.008224,0.01008,0.01584,0.01488,2.03162,0.01216
+954,356.298,2.80664,1.03645,0.008,0.226816,0.00832,0.008128,0.009024,0.015872,0.024896,0.724512,0.01088
+955,695.534,1.43774,1.04029,0.00784,0.225024,0.008352,0.008288,0.0088,0.016352,0.022112,0.731584,0.011936
+956,691.775,1.44556,1.04912,0.00704,0.2232,0.008192,0.0096,0.008832,0.030752,0.015776,0.73376,0.011968
+957,685.294,1.45923,2.26918,0.008192,0.253792,0.008128,0.008416,0.009792,0.014784,0.01568,1.93811,0.012288
+958,367.387,2.72192,1.04112,0.007968,0.22624,0.008288,0.009344,0.008992,0.015552,0.02336,0.730176,0.0112
+959,679.834,1.47095,1.03869,0.008128,0.222784,0.008288,0.008512,0.022976,0.016288,0.024096,0.715328,0.012288
+960,711.111,1.40625,1.04243,0.008192,0.223264,0.00816,0.008288,0.010144,0.015488,0.023456,0.734272,0.011168
+961,610.979,1.63672,2.26154,0.007808,0.227264,0.008352,0.008256,0.00896,0.015776,0.014944,1.9575,0.012672
+962,384.024,2.604,1.024,0.008192,0.22528,0.008192,0.008192,0.01024,0.01536,0.014688,0.721568,0.012288
+963,714.336,1.3999,1.05075,0.008192,0.241248,0.008352,0.008416,0.009568,0.014816,0.018752,0.730592,0.010816
+964,690.842,1.44751,1.03898,0.008,0.226112,0.008192,0.008192,0.01024,0.014336,0.016096,0.736832,0.010976
+965,669.39,1.4939,2.08077,0.008256,0.444352,0.01024,0.008192,0.01168,0.014944,0.015872,1.55494,0.012288
+966,398.444,2.50977,1.05923,0.008192,0.246112,0.008192,0.008192,0.01008,0.015584,0.014624,0.737408,0.010848
+967,692.477,1.44409,1.03219,0.008288,0.226848,0.00832,0.008064,0.009664,0.015328,0.015616,0.728928,0.011136
+968,701.13,1.42627,1.02605,0.007968,0.224832,0.00816,0.00816,0.00896,0.016128,0.01456,0.72624,0.01104
+969,695.534,1.43774,2.13251,0.00784,0.487392,0.010336,0.008672,0.010592,0.01616,0.01456,1.5647,0.012256
+970,346.766,2.88379,1.13254,0.010048,0.301056,0.00816,0.008288,0.010048,0.014656,0.0144,0.7536,0.012288
+971,748.401,1.33618,1.05251,0.00816,0.239872,0.008192,0.008448,0.009984,0.015616,0.021056,0.72928,0.011904
+972,621.077,1.61011,1.04083,0.00784,0.238368,0.00928,0.008384,0.00896,0.016096,0.014336,0.7264,0.011168
+973,684.035,1.46191,2.08314,0.008192,0.444608,0.010304,0.00832,0.011584,0.01504,0.026624,1.54627,0.012192
+974,419.371,2.38452,1.04448,0.008192,0.22528,0.008192,0.008192,0.010016,0.01456,0.022528,0.736448,0.011072
+975,643.115,1.55493,1.07805,0.008128,0.267104,0.009248,0.008864,0.008544,0.017504,0.015008,0.732608,0.01104
+976,707.549,1.41333,1.04858,0.007872,0.227328,0.00832,0.008288,0.009632,0.01504,0.023616,0.736192,0.012288
+977,623.82,1.60303,2.09654,0.008,0.444608,0.01024,0.009472,0.010784,0.01456,0.015776,1.57142,0.01168
+978,421.183,2.37427,1.0351,0.00848,0.229952,0.008256,0.008352,0.010048,0.015776,0.014944,0.72704,0.012256
+979,468.061,2.13647,1.06944,0.007968,0.242496,0.009888,0.008544,0.009472,0.014784,0.014688,0.749536,0.012064
+980,1207.9,0.827881,1.04755,0.007168,0.231456,0.01024,0.00816,0.010048,0.028864,0.015776,0.723552,0.012288
+981,588.844,1.69824,2.12246,0.006912,0.464608,0.010304,0.008384,0.021856,0.01504,0.014304,1.5688,0.012256
+982,435.235,2.29761,1.03638,0.008032,0.22992,0.008192,0.00976,0.0088,0.01616,0.014464,0.729056,0.012
+983,704.506,1.41943,1.0281,0.007904,0.2256,0.00816,0.008256,0.010176,0.015936,0.014784,0.726048,0.011232
+984,670.157,1.49219,1.06285,0.007968,0.248672,0.008192,0.008192,0.01024,0.015744,0.014944,0.737088,0.011808
+985,666.775,1.49976,2.06586,0.008224,0.444448,0.01136,0.008672,0.010688,0.016224,0.014496,1.5401,0.011648
+986,407.724,2.45264,1.02694,0.008096,0.222176,0.008288,0.00944,0.008928,0.016256,0.014432,0.728192,0.011136
+987,694.944,1.43896,1.04186,0.008192,0.238944,0.008256,0.008672,0.009504,0.0152,0.014336,0.72672,0.012032
+988,688.635,1.45215,1.03142,0.007904,0.223552,0.008224,0.009472,0.01024,0.015072,0.016064,0.729216,0.01168
+989,667.753,1.49756,2.11366,0.007936,0.460576,0.010848,0.008192,0.011488,0.015136,0.015648,1.57296,0.01088
+990,386.415,2.58789,1.024,0.008192,0.227328,0.00928,0.007104,0.01024,0.014368,0.015456,0.719776,0.012256
+991,728.955,1.37183,1.0423,0.006912,0.224352,0.009152,0.008512,0.00992,0.026592,0.015936,0.729152,0.011776
+992,692.945,1.44312,1.04957,0.007136,0.223232,0.01024,0.008192,0.009888,0.029024,0.014336,0.736384,0.011136
+993,700.41,1.42773,2.344,0.008192,0.227328,0.008192,0.008192,0.010144,0.014432,0.015424,2.03872,0.013376
+994,356.174,2.80762,1.05027,0.007904,0.225632,0.00928,0.008544,0.009856,0.015168,0.02672,0.735136,0.012032
+995,673.795,1.48413,1.0407,0.007968,0.223776,0.008192,0.008192,0.009728,0.02832,0.0152,0.72704,0.012288
+996,671.035,1.49023,1.04422,0.008192,0.239616,0.008192,0.008352,0.011232,0.015232,0.015488,0.725888,0.012032
+997,502.392,1.99048,2.09978,0.007136,0.475104,0.01024,0.008224,0.024032,0.015872,0.014976,1.53229,0.011904
+998,509.833,1.96143,1.02758,0.008224,0.2304,0.00832,0.008512,0.009792,0.015008,0.014592,0.720896,0.01184
+999,674.461,1.48267,1.03574,0.008224,0.243744,0.008192,0.008224,0.010176,0.014368,0.015872,0.715264,0.01168
+1000,650.985,1.53613,1.02848,0.007168,0.226944,0.008352,0.008448,0.009408,0.015168,0.014304,0.726912,0.011776
+1001,701.971,1.42456,2.10627,0.008224,0.448416,0.010304,0.008704,0.010656,0.015648,0.014592,1.57846,0.011264
+1002,367.091,2.72412,1.1223,0.008192,0.294912,0.008192,0.008224,0.010208,0.041984,0.015296,0.72304,0.012256
+1003,721.889,1.38525,1.04531,0.006976,0.225216,0.008256,0.008192,0.009984,0.0224,0.027008,0.726112,0.011168
+1004,691.541,1.44604,1.03808,0.008032,0.223392,0.008192,0.008192,0.009888,0.029024,0.016384,0.722944,0.012032
+1005,580.252,1.72339,1.68346,0.01024,0.429152,0.008192,0.008672,0.010688,0.015776,0.014848,1.17478,0.011104
+1006,450.754,2.21851,1.09133,0.02256,0.267872,0.008608,0.00816,0.010048,0.015552,0.014464,0.732032,0.012032
+1007,705.234,1.41797,1.05702,0.008192,0.257632,0.00832,0.010208,0.008768,0.01584,0.014912,0.720864,0.012288
+1008,691.191,1.44678,1.02765,0.007904,0.23344,0.00832,0.008448,0.009824,0.014784,0.015392,0.717728,0.011808
+1009,681.644,1.46704,2.06643,0.008192,0.457952,0.010304,0.008704,0.010464,0.015968,0.014752,1.52944,0.010656
+1010,406.47,2.46021,1.02643,0.008128,0.226208,0.008192,0.008288,0.010144,0.015712,0.014592,0.72336,0.011808
+1011,699.215,1.43018,1.02451,0.00816,0.225856,0.00816,0.008192,0.009952,0.014624,0.015456,0.72304,0.011072
+1012,683.008,1.46411,1.02944,0.008192,0.229376,0.008192,0.008192,0.01024,0.015456,0.014752,0.723296,0.011744
+1013,696.954,1.43481,2.06438,0.008192,0.443776,0.010016,0.008736,0.01056,0.015584,0.014848,1.5416,0.011072
+1014,402.081,2.48706,1.03834,0.008192,0.23888,0.008352,0.00832,0.0088,0.015904,0.014688,0.722912,0.012288
+1015,611.161,1.63623,1.03882,0.007872,0.231552,0.008288,0.008704,0.009312,0.015232,0.014432,0.732256,0.011168
+1016,690.842,1.44751,1.03466,0.007904,0.230272,0.008192,0.010112,0.009632,0.015104,0.015456,0.725888,0.012096
+1017,677.473,1.47607,2.05824,0.008192,0.444416,0.01152,0.008704,0.010496,0.015904,0.014816,1.5319,0.012288
+1018,405.866,2.46387,1.04243,0.008192,0.236608,0.00832,0.008096,0.00912,0.016064,0.014688,0.730336,0.011008
+1019,692.477,1.44409,1.02634,0.007872,0.227936,0.008192,0.008192,0.009792,0.014784,0.014336,0.72304,0.012192
+1020,495.704,2.01733,1.0384,0.008224,0.235488,0.008192,0.008288,0.010176,0.014336,0.015712,0.727008,0.010976
+1021,479.008,2.08765,1.26192,0.045344,0.412704,0.008384,0.008704,0.010528,0.015584,0.01488,0.73472,0.011072
+1022,626.971,1.59497,1.03494,0.023232,0.22528,0.008192,0.008288,0.010144,0.015744,0.014592,0.717216,0.012256
+1023,646.567,1.54663,1.03664,0.008096,0.239424,0.00832,0.008672,0.009504,0.015136,0.016416,0.718816,0.012256
+1024,684.263,1.46143,1.05626,0.008192,0.25088,0.008384,0.00832,0.008928,0.016352,0.014336,0.728992,0.011872
+1025,681.531,1.46729,2.12387,0.007936,0.494464,0.010432,0.009536,0.01072,0.014368,0.015712,1.54896,0.011744
+1026,407.846,2.4519,1.03779,0.008192,0.233344,0.008288,0.008224,0.010016,0.01456,0.015648,0.727616,0.011904
+1027,672.137,1.48779,1.02637,0.00816,0.227616,0.008256,0.008192,0.0096,0.014976,0.015648,0.723072,0.010848
+1028,703.538,1.42139,1.04003,0.008192,0.22848,0.008736,0.008288,0.0096,0.015232,0.014336,0.735232,0.011936
+1029,664.719,1.50439,2.10205,0.008192,0.45648,0.010624,0.008256,0.010816,0.0144,0.015968,1.5663,0.011008
+1030,398.754,2.50781,1.02605,0.008192,0.226528,0.008288,0.008736,0.009888,0.014848,0.01552,0.72176,0.012288
+1031,696.48,1.43579,1.04829,0.008,0.221376,0.008384,0.008,0.01008,0.028832,0.016384,0.735232,0.012
+1032,699.095,1.43042,1.04787,0.008224,0.225248,0.022528,0.009248,0.009184,0.015616,0.014496,0.731456,0.011872
+1033,656.726,1.52271,2.08477,0.008192,0.444416,0.01024,0.008192,0.01152,0.015104,0.014336,1.56058,0.012192
+1034,408.782,2.44629,1.03565,0.008128,0.229728,0.008192,0.008224,0.010208,0.014336,0.02048,0.724544,0.011808
+1035,681.985,1.46631,1.05882,0.008224,0.24576,0.008384,0.009376,0.008832,0.016224,0.014496,0.736256,0.011264
+1036,674.683,1.48218,1.03216,0.00784,0.228,0.008192,0.01024,0.009728,0.014848,0.015648,0.725728,0.011936
+1037,699.215,1.43018,2.08282,0.008128,0.44448,0.01024,0.008352,0.012,0.015488,0.015072,1.5583,0.010752
+1038,396.938,2.51929,1.04179,0.008192,0.234912,0.008256,0.008224,0.008704,0.016384,0.014336,0.730944,0.01184
+1039,693.767,1.44141,1.02016,0.008128,0.224864,0.00832,0.008704,0.009504,0.0152,0.015488,0.719008,0.010944
+1040,707.793,1.41284,1.03866,0.007904,0.224128,0.00816,0.008192,0.010144,0.028768,0.016064,0.723264,0.012032
+1041,636.618,1.5708,2.32883,0.008192,0.265536,0.00832,0.008704,0.010176,0.014688,0.014336,1.98656,0.01232
+1042,319.775,3.1272,1.06653,0.007872,0.258688,0.00928,0.008352,0.009024,0.01632,0.014336,0.731008,0.011648
+1043,823.648,1.21411,1.07725,0.008128,0.257696,0.008256,0.008544,0.009568,0.019104,0.028384,0.72528,0.012288
+1044,678.708,1.47339,1.10678,0.007104,0.274432,0.008192,0.008256,0.019552,0.029536,0.015744,0.731776,0.012192
+1045,582.48,1.7168,1.68682,0.01152,0.436992,0.008192,0.009408,0.01088,0.016192,0.014752,1.16717,0.011712
+1046,501.285,1.99487,1.04627,0.008192,0.231424,0.009312,0.00912,0.008288,0.016256,0.0144,0.737248,0.012032
+1047,690.958,1.44727,1.04858,0.008224,0.2312,0.008256,0.010176,0.009568,0.014944,0.014592,0.739328,0.012288
+1048,659.263,1.51685,1.04182,0.008192,0.229376,0.008192,0.008192,0.009824,0.014752,0.02224,0.729184,0.011872
+1049,660.752,1.51343,2.0888,0.00816,0.454944,0.011872,0.008608,0.01024,0.016128,0.014592,1.55238,0.011872
+1050,389.354,2.56836,1.07315,0.008192,0.249856,0.008192,0.008192,0.016384,0.03072,0.015424,0.723904,0.012288
+1051,728.048,1.37354,1.03629,0.008192,0.226816,0.00816,0.008736,0.010016,0.01456,0.024576,0.722944,0.012288
+1052,584.892,1.70972,1.05414,0.008,0.235616,0.008288,0.0096,0.009952,0.015296,0.015776,0.739904,0.011712
+1053,635.334,1.57397,2.08659,0.008192,0.4456,0.010624,0.008192,0.01072,0.01584,0.014848,1.56042,0.01216
+1054,402.239,2.48608,1.0384,0.008064,0.235712,0.009344,0.008864,0.009856,0.014976,0.014304,0.724992,0.012288
+1055,687.71,1.4541,1.04653,0.008096,0.233504,0.008192,0.008224,0.009472,0.015136,0.014336,0.72704,0.022528
+1056,555.014,1.80176,1.41885,0.008192,0.615776,0.008352,0.008224,0.010272,0.014784,0.014336,0.726944,0.011968
+1057,485.941,2.05786,2.41664,0.008224,0.454624,0.02048,0.00976,0.01072,0.014432,0.015552,1.87021,0.01264
+1058,395.176,2.53052,1.03654,0.006816,0.23952,0.00784,0.008352,0.008512,0.015872,0.014848,0.722912,0.011872
+1059,718.723,1.39136,1.03418,0.008192,0.232992,0.008192,0.007872,0.010048,0.014752,0.014912,0.724992,0.012224
+1060,573.669,1.74316,2.26467,0.008128,0.271744,0.008352,0.00832,0.009664,0.015296,0.014304,1.91597,0.012896
+1061,393.581,2.54077,1.03251,0.008288,0.235904,0.008224,0.00816,0.010176,0.0144,0.014432,0.7208,0.012128
+1062,722.144,1.38477,1.03363,0.00784,0.234176,0.008192,0.008192,0.00992,0.014656,0.01552,0.723232,0.011904
+1063,732.737,1.36475,1.03629,0.008192,0.237568,0.008192,0.009216,0.009248,0.014304,0.01584,0.72288,0.010848
+1064,589.183,1.69727,2.27299,0.007936,0.27632,0.008352,0.008288,0.008736,0.016416,0.014304,1.91898,0.013664
+1065,394.453,2.53516,1.05251,0.008,0.249376,0.008352,0.008704,0.009632,0.015168,0.014336,0.72704,0.011904
+1066,663.857,1.50635,1.04061,0.007872,0.24352,0.00832,0.008352,0.009696,0.015104,0.01456,0.720896,0.012288
+1067,624.485,1.60132,1.03958,0.008224,0.23344,0.009312,0.010176,0.009184,0.015584,0.014976,0.727168,0.01152
+1068,681.758,1.4668,2.0729,0.008128,0.4448,0.01024,0.008224,0.011808,0.014784,0.015552,1.54816,0.0112
+1069,437.233,2.28711,1.04042,0.008192,0.2376,0.00816,0.008192,0.010176,0.0144,0.015456,0.727328,0.010912
+1070,679.608,1.47144,1.03008,0.008192,0.229376,0.008192,0.00928,0.009152,0.01632,0.0144,0.722944,0.012224
+1071,691.541,1.44604,1.03235,0.00784,0.22976,0.008352,0.00816,0.01024,0.015744,0.014976,0.724992,0.012288
+1072,645.751,1.54858,1.89507,0.007872,0.246752,0.008224,0.00816,0.01024,0.015744,0.014976,1.5705,0.012608
+1073,408.212,2.44971,1.03696,0.008416,0.237984,0.008192,0.008288,0.010144,0.016,0.014432,0.72224,0.011264
+1074,711.482,1.40552,1.03603,0.008192,0.232608,0.00832,0.008288,0.008832,0.016064,0.014656,0.72704,0.012032
+1075,686.097,1.45752,1.03795,0.008032,0.231424,0.008288,0.010016,0.00848,0.015968,0.014784,0.729056,0.011904
+1076,648.512,1.54199,2.2543,0.007968,0.255552,0.00816,0.008416,0.008704,0.016384,0.015392,1.91997,0.01376
+1077,384.384,2.60156,1.05267,0.00816,0.239648,0.008192,0.01024,0.00992,0.01616,0.014912,0.733152,0.012288
+1078,693.297,1.44238,1.03152,0.007872,0.227904,0.008192,0.009248,0.009184,0.016352,0.014368,0.7264,0.012
+1079,676.801,1.47754,1.03424,0.008192,0.226624,0.008192,0.009952,0.009184,0.015616,0.014688,0.729504,0.012288
+1080,683.692,1.46265,2.09994,0.007072,0.4456,0.010304,0.008384,0.010592,0.01584,0.014944,1.57606,0.011136
+1081,398.599,2.50879,1.03904,0.007168,0.233472,0.008224,0.008288,0.010112,0.015584,0.014752,0.729504,0.011936
+1082,680.625,1.46924,1.03786,0.008192,0.227328,0.008256,0.010176,0.01024,0.016032,0.014624,0.7312,0.011808
+1083,691.892,1.44531,1.04038,0.00816,0.22736,0.008192,0.008192,0.009792,0.014784,0.014368,0.737248,0.012288
+1084,640.901,1.5603,2.11827,0.007872,0.492128,0.010304,0.008384,0.010336,0.015776,0.014976,1.54739,0.011104
+1085,394.377,2.53564,1.04362,0.00816,0.232768,0.00832,0.0088,0.010208,0.015552,0.014752,0.73328,0.011776
+1086,702.935,1.42261,1.02915,0.008192,0.229376,0.008192,0.008192,0.009504,0.015104,0.015456,0.72336,0.011776
+1087,679.383,1.47192,1.02768,0.007808,0.229504,0.00832,0.008672,0.009376,0.015072,0.015616,0.721472,0.01184
+1088,678.933,1.4729,1.8577,0.008096,0.258304,0.008192,0.008224,0.01024,0.014304,0.015584,1.5223,0.012448
+1089,411.782,2.42847,1.04272,0.00848,0.236032,0.008192,0.01024,0.009984,0.014624,0.015776,0.727616,0.011776
+1090,696.599,1.43555,1.02528,0.007904,0.225792,0.008192,0.009248,0.009216,0.015712,0.014784,0.722624,0.011808
+1091,664.073,1.50586,1.02803,0.008096,0.229472,0.009344,0.008672,0.00864,0.016384,0.014304,0.720928,0.012192
+1092,681.078,1.46826,2.23818,0.007872,0.23792,0.008384,0.009184,0.009056,0.015776,0.01456,1.92269,0.012736
+1093,383.449,2.60791,1.03766,0.008192,0.233472,0.008192,0.01024,0.010016,0.01456,0.014336,0.726848,0.011808
+1094,691.425,1.44629,1.03462,0.00784,0.23216,0.008192,0.009888,0.00976,0.01504,0.014496,0.726016,0.011232
+1095,629.573,1.58838,1.03258,0.007872,0.234048,0.00816,0.008352,0.009696,0.01488,0.014336,0.722944,0.012288
+1096,695.652,1.4375,2.08899,0.008192,0.44768,0.010272,0.008384,0.01072,0.015584,0.015264,1.56195,0.010944
+1097,405.866,2.46387,1.04038,0.008192,0.239424,0.008256,0.009888,0.008672,0.015968,0.014784,0.722912,0.012288
+1098,692.477,1.44409,1.03587,0.008192,0.228832,0.00832,0.00832,0.009728,0.015136,0.015392,0.73008,0.011872
+1099,703.538,1.42139,1.03264,0.008128,0.227712,0.008192,0.008448,0.009792,0.015776,0.014944,0.727456,0.012192
+1100,657.147,1.52173,2.164,0.007872,0.497216,0.010272,0.00864,0.01072,0.015616,0.015136,1.58701,0.01152
+1101,392.6,2.54712,1.04368,0.008192,0.231424,0.008416,0.010016,0.010144,0.014432,0.015616,0.73392,0.01152
+1102,698.261,1.43213,1.03146,0.00784,0.231584,0.00832,0.00816,0.009664,0.014976,0.014496,0.72464,0.011776
+1103,683.806,1.4624,1.03712,0.00704,0.234848,0.008192,0.0088,0.01024,0.015488,0.0152,0.726432,0.01088
+1104,605.648,1.65112,1.89011,0.006848,0.284672,0.008192,0.008256,0.010176,0.015488,0.01504,1.528,0.01344
+1105,427.781,2.33765,1.03834,0.008192,0.233472,0.008192,0.009408,0.010336,0.015104,0.015744,0.727232,0.010656
+1106,687.133,1.45532,1.04758,0.008192,0.23264,0.008384,0.008288,0.00976,0.015232,0.014496,0.73856,0.012032
+1107,684.721,1.46045,1.036,0.008192,0.234784,0.008352,0.008096,0.008864,0.015744,0.014976,0.724992,0.012
+1108,704.143,1.42017,2.26275,0.007904,0.234304,0.00928,0.00832,0.009024,0.015808,0.014656,1.94995,0.013504
+1109,366.762,2.72656,1.03648,0.008032,0.235904,0.008192,0.00816,0.010208,0.014368,0.015616,0.724736,0.011264
+1110,691.775,1.44556,1.03421,0.006912,0.227328,0.008192,0.009664,0.008768,0.01616,0.01456,0.730848,0.011776
+1111,698.142,1.43237,1.03862,0.008032,0.225728,0.008256,0.00944,0.008928,0.015616,0.014752,0.735584,0.012288
+1112,686.442,1.45679,2.0992,0.008192,0.444416,0.01024,0.00832,0.011552,0.014944,0.01616,1.57309,0.012288
+1113,391.101,2.55688,1.03939,0.008032,0.243904,0.008256,0.00944,0.008896,0.014336,0.014336,0.720448,0.011744
+1114,700.41,1.42773,1.03386,0.007872,0.225728,0.009376,0.009056,0.010208,0.016224,0.014528,0.7288,0.012064
+1115,701.73,1.42505,1.03651,0.00784,0.229952,0.008192,0.00976,0.008672,0.016384,0.015424,0.729216,0.011072
+1116,677.809,1.47534,2.22003,0.008128,0.236896,0.00832,0.00832,0.008704,0.015776,0.01456,1.90624,0.013088
+1117,377.999,2.64551,1.03869,0.008096,0.23216,0.008192,0.008192,0.01024,0.014336,0.016128,0.729344,0.012
+1118,715.709,1.39722,1.03456,0.007968,0.23168,0.008384,0.00816,0.010112,0.015552,0.014816,0.726656,0.011232
+1119,669.719,1.49316,1.03786,0.00816,0.226656,0.00832,0.008096,0.008864,0.014464,0.015744,0.735744,0.011808
+1120,687.248,1.45508,1.82717,0.007872,0.225952,0.008192,0.008192,0.01024,0.015648,0.014816,1.52378,0.01248
+1121,404.463,2.47241,1.04026,0.008224,0.235392,0.008288,0.008128,0.0096,0.015072,0.014304,0.729088,0.01216
+1122,596.997,1.67505,1.05706,0.008096,0.24544,0.00832,0.008768,0.009984,0.014592,0.014336,0.736672,0.010848
+1123,826.14,1.21045,1.05677,0.008192,0.250912,0.008416,0.006912,0.009792,0.014784,0.016256,0.729216,0.012288
+1124,687.594,1.45435,2.21229,0.007872,0.238016,0.008384,0.008288,0.009664,0.014944,0.014304,1.89773,0.013088
+1125,381.947,2.61816,1.03834,0.008192,0.229376,0.008192,0.01024,0.010048,0.014624,0.015552,0.729824,0.012288
+1126,690.842,1.44751,1.03398,0.00816,0.225536,0.008224,0.00816,0.01024,0.015616,0.015104,0.731136,0.011808
+1127,718.849,1.39111,1.03389,0.008192,0.225312,0.00816,0.008224,0.010016,0.015584,0.014848,0.731296,0.012256
+1128,665.367,1.50293,2.05178,0.008192,0.49152,0.01024,0.008192,0.01024,0.016256,0.014464,1.47866,0.014016
+1129,409.846,2.43994,1.03219,0.008192,0.22528,0.009248,0.007136,0.01024,0.014336,0.015968,0.730528,0.011264
+1130,706.816,1.41479,1.03674,0.007968,0.22544,0.008416,0.008448,0.00976,0.014848,0.014432,0.736256,0.011168
+1131,647.691,1.54395,1.03475,0.008128,0.234048,0.009408,0.00864,0.009728,0.015264,0.014464,0.722784,0.012288
+1132,715.084,1.39844,2.23485,0.007872,0.228128,0.008256,0.009632,0.008736,0.016384,0.014336,1.92918,0.01232
+1133,371.014,2.69531,1.04202,0.008192,0.237568,0.008192,0.008192,0.010048,0.014528,0.01536,0.728064,0.011872
+1134,693.649,1.44165,1.03606,0.008224,0.225696,0.00832,0.008096,0.010176,0.015648,0.014912,0.733184,0.011808
+1135,698.976,1.43066,1.02653,0.00784,0.226112,0.008192,0.01024,0.010176,0.0144,0.015712,0.721568,0.012288
+1136,671.806,1.48853,1.30301,0.007968,0.233216,0.00832,0.008352,0.008832,0.015904,0.014848,0.988512,0.017056
+1137,440.335,2.271,1.04243,0.008192,0.233504,0.008192,0.009248,0.01024,0.01536,0.01536,0.73008,0.012256
+1138,698.857,1.43091,1.06074,0.007936,0.249408,0.00832,0.008992,0.010176,0.014368,0.015744,0.733792,0.012
+1139,696.362,1.43604,1.03834,0.008192,0.231424,0.008192,0.008192,0.010176,0.0144,0.015488,0.731168,0.011104
+1140,666.558,1.50024,1.83258,0.007936,0.262816,0.008224,0.00816,0.01024,0.016064,0.014656,1.49053,0.013952
+1141,403.15,2.48047,1.05731,0.008672,0.24992,0.008192,0.008384,0.010048,0.01552,0.014976,0.729312,0.012288
+1142,668.08,1.49683,1.03888,0.007904,0.233504,0.00832,0.008128,0.0088,0.016384,0.014336,0.73024,0.011264
+1143,694.59,1.4397,1.03606,0.008192,0.233472,0.008224,0.009728,0.008704,0.016256,0.014464,0.72496,0.012064
+1144,692.828,1.44336,1.80022,0.007904,0.228992,0.00832,0.009792,0.009216,0.015904,0.014688,1.48842,0.016992
+1145,408.864,2.4458,1.03562,0.008192,0.229376,0.008416,0.00944,0.0088,0.015968,0.014464,0.72928,0.01168
+1146,709.387,1.40967,1.03085,0.007072,0.225088,0.00816,0.008192,0.010048,0.014528,0.01552,0.729952,0.012288
+1147,704.022,1.42041,1.02803,0.008192,0.223648,0.008352,0.008544,0.009792,0.014784,0.015744,0.727232,0.011744
+1148,640.5,1.56128,1.34131,0.007008,0.227296,0.008192,0.008192,0.010144,0.014464,0.015968,1.03427,0.015776
+1149,438.826,2.27881,1.05242,0.008192,0.251488,0.00816,0.00864,0.00944,0.015136,0.015392,0.723936,0.012032
+1150,724.059,1.3811,1.03117,0.007904,0.226752,0.008288,0.00896,0.009856,0.01472,0.015744,0.726976,0.011968
+1151,694.59,1.4397,1.02605,0.008224,0.226784,0.008352,0.008096,0.00976,0.015232,0.014368,0.722944,0.012288
+1152,669.609,1.49341,1.03632,0.008192,0.22528,0.009504,0.00864,0.009792,0.015104,0.014464,0.7344,0.010944
+1153,694.355,1.44019,2.0825,0.008192,0.444416,0.01024,0.009376,0.011072,0.015776,0.014976,1.55648,0.011968
+1154,399.493,2.50317,1.03834,0.008192,0.23248,0.008352,0.008096,0.00912,0.015744,0.014912,0.729152,0.012288
+1155,686.787,1.45605,1.0256,0.008192,0.228736,0.008288,0.008192,0.008736,0.015936,0.014752,0.720928,0.01184
+1156,705.356,1.41772,1.02899,0.00704,0.226432,0.008288,0.008384,0.008832,0.015712,0.014976,0.727168,0.01216
+1157,413.905,2.41602,1.2521,0.010816,0.442496,0.008384,0.008256,0.01024,0.01616,0.01456,0.729088,0.012096
+1158,669.828,1.49292,1.03459,0.007904,0.227968,0.008192,0.008384,0.010048,0.015648,0.014688,0.729472,0.012288
+1159,704.022,1.42041,1.03011,0.008096,0.224672,0.00832,0.008256,0.008736,0.016352,0.014336,0.729088,0.012256
+1160,705.842,1.41675,1.03174,0.007872,0.225472,0.008288,0.008256,0.01008,0.014496,0.015488,0.72976,0.012032
+1161,677.025,1.47705,2.07437,0.008,0.446176,0.010304,0.008608,0.01024,0.016416,0.015328,1.54726,0.012032
+1162,404.104,2.47461,1.0303,0.007968,0.227712,0.008416,0.008064,0.010176,0.01536,0.014752,0.725568,0.012288
+1163,699.693,1.4292,1.03158,0.008192,0.227328,0.008192,0.008192,0.009824,0.014752,0.015808,0.727456,0.01184
+1164,673.795,1.48413,1.03917,0.00704,0.225216,0.00832,0.009088,0.009216,0.015616,0.015136,0.737248,0.012288
+1165,704.749,1.41895,2.08125,0.007872,0.44656,0.01024,0.008704,0.010464,0.015744,0.014752,1.55581,0.011104
+1166,395.329,2.52954,1.03834,0.008192,0.231392,0.009408,0.008384,0.008864,0.016224,0.014496,0.729088,0.012288
+1167,689.33,1.45068,1.03315,0.00816,0.22832,0.008224,0.009984,0.00976,0.01504,0.014336,0.728192,0.011136
+1168,685.982,1.45776,1.0264,0.007968,0.22544,0.008352,0.00832,0.009984,0.01456,0.015968,0.724544,0.011264
+1169,592.164,1.68872,1.9415,0.008224,0.261344,0.008256,0.017088,0.01024,0.022208,0.014656,1.5872,0.012288
+1170,393.998,2.53809,1.05379,0.008192,0.228896,0.008352,0.008512,0.01024,0.01536,0.014816,0.747712,0.011712
+1171,738.284,1.35449,1.02742,0.007968,0.22656,0.00832,0.00816,0.00912,0.015712,0.014976,0.724864,0.011744
+1172,719.354,1.39014,1.03219,0.008192,0.22528,0.008192,0.008192,0.009952,0.014624,0.014336,0.731136,0.012288
+1173,652.645,1.53223,2.0951,0.008192,0.445856,0.02064,0.00864,0.011584,0.01504,0.014464,1.55843,0.012256
+1174,400.822,2.49487,1.03366,0.008224,0.225248,0.00832,0.008064,0.01024,0.015648,0.015072,0.730912,0.011936
+1175,415.374,2.40747,1.0711,0.008192,0.226752,0.008544,0.008192,0.009632,0.026752,0.015008,0.755776,0.012256
+1176,976.866,1.02368,1.06458,0.007936,0.256448,0.009312,0.008416,0.01024,0.01504,0.015584,0.72944,0.01216
+1177,693.297,1.44238,2.06074,0.008224,0.445344,0.01024,0.008192,0.011872,0.015808,0.014848,1.53434,0.011872
+1178,417.789,2.39355,1.04186,0.008224,0.231392,0.008192,0.00976,0.009728,0.015328,0.014336,0.732928,0.011968
+1179,698.738,1.43115,1.03178,0.008192,0.22848,0.00832,0.008128,0.009024,0.016384,0.014336,0.72704,0.011872
+1180,700.65,1.42725,1.04096,0.007968,0.225056,0.008352,0.008128,0.00912,0.015712,0.015008,0.739328,0.012288
+1181,619.855,1.61328,2.07242,0.00816,0.460512,0.010624,0.008544,0.01024,0.016384,0.014336,1.53174,0.011872
+1182,422.922,2.3645,1.03389,0.008192,0.228992,0.008352,0.008096,0.009824,0.015072,0.014336,0.729088,0.011936
+1183,702.693,1.4231,1.03085,0.008128,0.226048,0.008192,0.008192,0.009888,0.014688,0.014464,0.728992,0.012256
+1184,559.105,1.78857,1.05981,0.007136,0.24576,0.008192,0.008192,0.01024,0.016064,0.014656,0.73728,0.012288
+1185,664.073,1.50586,2.32013,0.008192,0.262336,0.008192,0.008512,0.009856,0.014752,0.015712,1.98022,0.012352
+1186,389.539,2.56714,1.06496,0.008192,0.260096,0.008192,0.008192,0.010112,0.014464,0.015456,0.727968,0.012288
+1187,679.383,1.47192,1.04304,0.007872,0.240352,0.008288,0.009856,0.009696,0.01536,0.014336,0.726176,0.011104
+1188,663.642,1.50684,1.04518,0.007904,0.238048,0.008288,0.008352,0.009728,0.01488,0.01456,0.732448,0.010976
+1189,494.089,2.02393,1.24099,0.01024,0.43984,0.00832,0.008576,0.01024,0.016352,0.014336,0.720896,0.012192
+1190,451.25,2.21606,1.03014,0.008192,0.229408,0.008192,0.00816,0.01024,0.014336,0.014432,0.724896,0.012288
+1191,1204,0.830566,1.03446,0.007904,0.227808,0.008192,0.01024,0.009952,0.014624,0.015392,0.728032,0.01232
+1192,700.77,1.427,1.02598,0.008192,0.22528,0.008192,0.008416,0.010016,0.016384,0.014336,0.722944,0.012224
+1193,620.794,1.61084,2.34086,0.008192,0.273696,0.008672,0.008448,0.009824,0.015872,0.014752,1.98912,0.012288
+1194,373.11,2.68018,1.04243,0.007872,0.23504,0.008352,0.00832,0.009824,0.015264,0.014336,0.732448,0.010976
+1195,708.283,1.41187,1.0281,0.007968,0.22688,0.008288,0.008064,0.008896,0.015936,0.014816,0.72496,0.012288
+1196,704.506,1.41943,1.03014,0.008192,0.225216,0.008288,0.00816,0.009824,0.014752,0.01568,0.727744,0.012288
+1197,696.007,1.43677,2.0711,0.007904,0.444768,0.010304,0.00864,0.01024,0.015872,0.014624,1.54646,0.012288
+1198,392.713,2.54639,1.02902,0.007072,0.227328,0.008352,0.009696,0.009792,0.015168,0.01552,0.723968,0.012128
+1199,697.429,1.43384,1.02925,0.00816,0.224704,0.008256,0.010144,0.008832,0.016064,0.014688,0.726016,0.012384
+1200,712.844,1.40283,1.04861,0.007904,0.22368,0.008192,0.008224,0.010208,0.01536,0.01504,0.74784,0.01216
+1201,659.157,1.51709,1.82445,0.008192,0.261664,0.008384,0.008672,0.00976,0.015104,0.014336,1.48464,0.013696
+1202,414.869,2.4104,1.0392,0.00816,0.23584,0.00832,0.00832,0.009856,0.01504,0.015488,0.725888,0.012288
+1203,667.101,1.49902,1.03117,0.00816,0.229408,0.008192,0.008224,0.01024,0.015616,0.015008,0.724512,0.011808
+1204,708.038,1.41235,1.04358,0.008192,0.227328,0.008256,0.00832,0.009984,0.0144,0.015808,0.739072,0.012224
+1205,636.124,1.57202,2.07258,0.008128,0.445664,0.010336,0.008736,0.010464,0.016416,0.014304,1.54803,0.010496
+1206,415.838,2.40479,1.03619,0.008192,0.229376,0.008192,0.008192,0.009952,0.014624,0.014432,0.73104,0.012192
+1207,697.429,1.43384,1.03165,0.008192,0.22528,0.008192,0.008192,0.009632,0.014944,0.014336,0.731136,0.011744
+1208,708.283,1.41187,1.02874,0.007808,0.224256,0.00928,0.00848,0.008864,0.016416,0.014304,0.72704,0.012288
+1209,671.365,1.4895,2.27888,0.00832,0.229504,0.009248,0.008416,0.023296,0.016096,0.014656,1.95584,0.013504
+1210,360.754,2.77197,1.03472,0.007104,0.237344,0.00832,0.008256,0.009792,0.01472,0.0144,0.722944,0.01184
+1211,732.868,1.3645,1.03824,0.007872,0.227808,0.008192,0.008192,0.01024,0.015808,0.01488,0.733216,0.012032
+1212,680.738,1.46899,1.05846,0.008192,0.241056,0.008384,0.008416,0.009856,0.014944,0.015456,0.740128,0.012032
+1213,686.327,1.45703,2.07808,0.008192,0.444416,0.01024,0.009216,0.011104,0.014528,0.015488,1.55325,0.011648
+1214,399.649,2.5022,1.04634,0.008224,0.230816,0.008768,0.008224,0.01024,0.01552,0.015136,0.737312,0.012096
+1215,687.941,1.45361,1.04093,0.008224,0.225312,0.00832,0.008128,0.009856,0.015008,0.014464,0.739328,0.012288
+1216,686.212,1.45728,1.0295,0.00784,0.223744,0.00928,0.007136,0.01024,0.015552,0.014688,0.729088,0.011936
+1217,691.892,1.44531,1.84934,0.008224,0.230752,0.00832,0.008672,0.009504,0.015104,0.014336,1.54173,0.012704
+1218,405.906,2.46362,1.03968,0.008192,0.228608,0.00832,0.008832,0.01024,0.016224,0.014464,0.7328,0.012
+1219,689.562,1.4502,1.03462,0.00784,0.226016,0.008352,0.00944,0.008864,0.016128,0.014592,0.731104,0.012288
+1220,680.738,1.46899,1.0385,0.007904,0.229824,0.008192,0.008192,0.010016,0.01456,0.015584,0.733216,0.011008
+1221,715.709,1.39722,2.23408,0.007968,0.231904,0.008192,0.010208,0.00976,0.014816,0.01536,1.92205,0.013824
+1222,371.519,2.69165,1.03434,0.008064,0.229376,0.008352,0.009824,0.009792,0.015264,0.015424,0.725984,0.012256
+1223,686.327,1.45703,1.02634,0.00784,0.223744,0.008192,0.008192,0.009824,0.014752,0.015872,0.726848,0.011072
+1224,725.341,1.37866,1.04192,0.007904,0.224,0.00928,0.008704,0.009632,0.015392,0.015712,0.739456,0.01184
+1225,653.374,1.53052,2.23846,0.008192,0.230528,0.00832,0.008992,0.010208,0.015584,0.014848,1.9295,0.012288
+1226,377.651,2.64795,1.04326,0.007072,0.22912,0.008288,0.008352,0.009792,0.014816,0.015872,0.73776,0.012192
+1227,709.141,1.41016,1.0329,0.006912,0.228864,0.00832,0.008416,0.00976,0.014912,0.014496,0.730144,0.011072
+1228,676.801,1.47754,1.04442,0.008064,0.226048,0.008288,0.008192,0.01024,0.015552,0.014816,0.741376,0.01184
+1229,575.119,1.73877,2.16477,0.008096,0.524,0.010304,0.008544,0.01024,0.016416,0.014336,1.56224,0.010592
+1230,425.735,2.34888,1.03024,0.008192,0.232352,0.00832,0.008096,0.01024,0.015424,0.014976,0.720896,0.011744
+1231,674.683,1.48218,1.0415,0.008256,0.229344,0.008256,0.010208,0.00944,0.015168,0.014336,0.73456,0.011936
+1232,701.73,1.42505,1.03213,0.008192,0.22688,0.008256,0.00832,0.009792,0.015072,0.015872,0.72752,0.012224
+1233,694.355,1.44019,2.26714,0.008192,0.229376,0.009248,0.009184,0.009824,0.014752,0.0144,1.95958,0.012576
+1234,368.909,2.71069,1.05062,0.008192,0.231424,0.008192,0.009216,0.009216,0.015488,0.014944,0.741664,0.012288
+1235,694.944,1.43896,1.02925,0.008224,0.228416,0.008448,0.008224,0.00992,0.014912,0.01472,0.724544,0.01184
+1236,716.961,1.39478,1.03021,0.007808,0.225728,0.008192,0.008192,0.010144,0.014432,0.01568,0.7288,0.011232
+1237,630.736,1.58545,2.07043,0.008096,0.44464,0.01024,0.008352,0.011712,0.014752,0.015776,1.5448,0.012064
+1238,417.023,2.39795,1.03818,0.008,0.229472,0.008352,0.00928,0.009216,0.015648,0.014784,0.73136,0.012064
+1239,692.126,1.44482,1.03808,0.008192,0.229376,0.008192,0.01024,0.009728,0.014848,0.014336,0.731136,0.012032
+1240,686.097,1.45752,1.03331,0.008192,0.23136,0.008288,0.008192,0.01024,0.015392,0.014528,0.724992,0.012128
+1241,701.971,1.42456,2.09517,0.008192,0.459168,0.010304,0.009504,0.010944,0.014304,0.016,1.55482,0.011936
+1242,394.567,2.53442,1.04054,0.008128,0.231296,0.00976,0.008576,0.009792,0.015008,0.01456,0.732416,0.011008
+1243,678.595,1.47363,1.036,0.00816,0.227104,0.008288,0.008288,0.00896,0.016224,0.014496,0.7328,0.01168
+1244,694.355,1.44019,1.02838,0.007936,0.225312,0.00832,0.008256,0.009696,0.015008,0.014528,0.72704,0.012288
+1245,654.104,1.52881,2.08346,0.008256,0.446528,0.010336,0.008608,0.011328,0.015296,0.014368,1.55645,0.012288
+1246,408.375,2.44873,1.0329,0.00816,0.228064,0.008416,0.008096,0.010144,0.015392,0.014848,0.727488,0.012288
+1247,562.792,1.77686,1.04019,0.008192,0.233472,0.008224,0.00944,0.00896,0.015776,0.014944,0.729088,0.012096
+1248,917.152,1.09033,1.03002,0.007904,0.227648,0.008192,0.009632,0.008832,0.01584,0.014848,0.724992,0.012128
+1249,679.383,1.47192,1.84422,0.008192,0.231424,0.008192,0.008192,0.009728,0.014848,0.015712,1.53462,0.013312
+1250,408.375,2.44873,1.03347,0.008192,0.229376,0.008224,0.00816,0.010272,0.014304,0.014336,0.728576,0.012032
+1251,703.659,1.42114,1.05126,0.00816,0.23168,0.008608,0.008192,0.010048,0.014528,0.016032,0.743072,0.010944
+1252,655.885,1.52466,1.04448,0.008032,0.229536,0.008192,0.009472,0.010048,0.015168,0.014464,0.73728,0.012288
+1253,688.056,1.45337,2.21126,0.007936,0.227872,0.008224,0.00816,0.01024,0.014336,0.015552,1.90547,0.013472
+1254,378.348,2.64307,1.04362,0.008,0.233728,0.008192,0.008192,0.010176,0.0144,0.014336,0.734464,0.012128
+1255,699.215,1.43018,1.04611,0.008256,0.228416,0.008288,0.010144,0.009088,0.015808,0.014912,0.739328,0.011872
+1256,682.326,1.46558,1.03664,0.018816,0.227072,0.008352,0.008096,0.009824,0.014944,0.014304,0.724192,0.01104
+1257,688.866,1.45166,2.26179,0.008224,0.239904,0.00832,0.008576,0.009728,0.014848,0.015712,1.94374,0.012736
+1258,373.246,2.6792,1.04045,0.007072,0.229248,0.008224,0.008352,0.010112,0.015712,0.014688,0.735328,0.011712
+1259,698.618,1.4314,1.03446,0.007872,0.22992,0.008192,0.008192,0.010272,0.014368,0.015712,0.728864,0.011072
+1260,705.963,1.4165,1.0424,0.008192,0.225312,0.008224,0.008128,0.01024,0.014336,0.015744,0.739968,0.012256
+1261,671.475,1.48926,2.2417,0.008192,0.231424,0.008224,0.009216,0.009184,0.01568,0.014944,1.93136,0.013472
+1262,374.064,2.67334,1.04467,0.007968,0.228288,0.008192,0.008192,0.010016,0.01456,0.01552,0.739936,0.012
+1263,698.261,1.43213,1.02403,0.008192,0.225312,0.008352,0.008,0.01024,0.0144,0.015712,0.721504,0.01232
+1264,722.654,1.38379,1.02605,0.008192,0.224896,0.008288,0.008192,0.00976,0.014944,0.014528,0.726336,0.010912
+1265,621.925,1.60791,2.26054,0.008192,0.228992,0.00832,0.008448,0.009856,0.01472,0.015904,1.95347,0.01264
+1266,387.109,2.58325,1.03629,0.00816,0.22736,0.009312,0.00912,0.009856,0.01472,0.014336,0.731136,0.012288
+1267,710.125,1.4082,1.03219,0.008224,0.227232,0.008256,0.008192,0.009824,0.014752,0.014336,0.729088,0.012288
+1268,670.157,1.49219,1.03565,0.007936,0.22576,0.008224,0.00944,0.00896,0.016288,0.014432,0.732768,0.01184
+1269,694.002,1.44092,2.27123,0.008192,0.227328,0.008192,0.01024,0.009952,0.014624,0.015552,1.96445,0.012704
+1270,369.209,2.7085,1.0401,0.008032,0.231232,0.00832,0.007744,0.008864,0.01584,0.01456,0.733504,0.012
+1271,697.073,1.43457,1.03808,0.008192,0.22528,0.008192,0.008192,0.00992,0.014688,0.015584,0.736,0.012032
+1272,701.37,1.42578,1.04038,0.008192,0.223232,0.00832,0.008064,0.01024,0.015776,0.014848,0.739424,0.012288
+1273,636.222,1.57178,2.06029,0.008192,0.444416,0.011328,0.008672,0.010752,0.01584,0.014816,1.53501,0.011264
+1274,418.643,2.38867,1.03254,0.007008,0.22688,0.00832,0.009568,0.009184,0.015872,0.014848,0.729088,0.011776
+1275,706.085,1.41626,1.0281,0.007936,0.227264,0.008352,0.00832,0.009696,0.014912,0.014336,0.726432,0.010848
+1276,718.093,1.39258,1.0409,0.007904,0.225248,0.008288,0.008608,0.009696,0.0152,0.014336,0.740608,0.011008
+1277,604.933,1.65308,2.09725,0.007872,0.467328,0.01024,0.009728,0.010752,0.015936,0.014784,1.54832,0.012288
+1278,422.181,2.36865,1.04045,0.008192,0.22528,0.008224,0.008288,0.010112,0.01552,0.01488,0.738848,0.011104
+1279,706.207,1.41602,1.0327,0.008128,0.225856,0.008384,0.008,0.01024,0.014336,0.015584,0.729888,0.012288
+1280,664.18,1.50562,1.03216,0.008192,0.22528,0.008192,0.008192,0.00992,0.014656,0.016192,0.72928,0.012256
+1281,672.909,1.48608,1.83741,0.008192,0.227328,0.008192,0.008192,0.009664,0.014912,0.014336,1.53395,0.01264
+1282,415.5,2.40674,1.04243,0.008064,0.233504,0.008288,0.008224,0.009824,0.01472,0.014432,0.733088,0.012288
+1283,675.908,1.47949,1.03523,0.007232,0.22928,0.008192,0.008224,0.010208,0.015456,0.014784,0.730816,0.01104
+1284,703.417,1.42163,1.03178,0.00784,0.227456,0.008288,0.008512,0.009792,0.01504,0.014368,0.728608,0.011872
+1285,697.31,1.43408,1.84509,0.009728,0.23184,0.008288,0.008192,0.009888,0.014688,0.015552,1.53274,0.014176
+1286,389.317,2.5686,1.03296,0.007168,0.229056,0.008192,0.00832,0.009536,0.0152,0.014336,0.729024,0.012128
+1287,732.606,1.36499,1.03667,0.00784,0.227168,0.008352,0.008064,0.008896,0.016224,0.014496,0.73456,0.011072
+1288,709.879,1.40869,1.02669,0.007808,0.226336,0.009792,0.008384,0.009792,0.015008,0.014336,0.722944,0.012288
+1289,667.645,1.4978,2.24051,0.008032,0.226912,0.008352,0.00848,0.00832,0.015904,0.014496,1.93683,0.013184
+1290,373.654,2.67627,1.0281,0.008192,0.22656,0.008352,0.00864,0.009824,0.014912,0.014336,0.724992,0.012288
+1291,723.419,1.38232,1.0384,0.00784,0.226752,0.00832,0.008416,0.008832,0.015648,0.01472,0.735584,0.012288
+1292,454.102,2.20215,1.10762,0.00784,0.2688,0.008192,0.009408,0.009056,0.016256,0.021952,0.753984,0.012128
+1293,1111.23,0.899902,1.85958,0.008192,0.243744,0.00816,0.008352,0.010048,0.014368,0.01552,1.53792,0.01328
+1294,414.281,2.41382,1.0424,0.006912,0.233408,0.008256,0.008192,0.009728,0.014848,0.014464,0.734592,0.012
+1295,686.787,1.45605,1.03629,0.008192,0.22528,0.008256,0.009312,0.009088,0.015808,0.014752,0.733312,0.012288
+1296,684.149,1.46167,1.03648,0.008128,0.226112,0.009248,0.008192,0.009216,0.015968,0.01472,0.732864,0.012032
+1297,658.521,1.51855,1.7912,0.008192,0.234624,0.00816,0.008672,0.009696,0.015008,0.014624,1.47818,0.014048
+1298,422.747,2.36548,1.03424,0.008096,0.227424,0.008448,0.009056,0.00912,0.0144,0.01552,0.729984,0.012192
+1299,694.002,1.44092,1.04243,0.00832,0.229248,0.008192,0.008256,0.010208,0.014304,0.015776,0.73712,0.011008
+1300,717.212,1.39429,1.02755,0.008256,0.2264,0.008352,0.008128,0.008992,0.015936,0.014784,0.724512,0.012192
+1301,647.794,1.5437,1.8025,0.007808,0.247488,0.00848,0.008672,0.009664,0.014816,0.014656,1.47805,0.012864
+1302,397.246,2.51733,1.03786,0.007936,0.233088,0.008352,0.00832,0.008896,0.016288,0.014432,0.728544,0.012
+1303,757.116,1.3208,1.04166,0.008192,0.231136,0.008288,0.008096,0.009856,0.01504,0.014336,0.734976,0.011744
+1304,681.871,1.46655,1.04224,0.008192,0.229376,0.008192,0.008224,0.010176,0.014368,0.014464,0.737152,0.012096
+1305,668.08,1.49683,1.33619,0.008224,0.231424,0.008256,0.008672,0.009856,0.015072,0.014304,1.02605,0.014336
+1306,488.084,2.04883,1.03862,0.008256,0.23104,0.00832,0.00832,0.009664,0.015296,0.014304,0.731136,0.012288
+1307,690.26,1.44873,1.03264,0.00784,0.2256,0.008384,0.008224,0.009696,0.015136,0.015616,0.729824,0.01232
+1308,704.749,1.41895,1.03014,0.008192,0.22464,0.008096,0.008416,0.009856,0.015232,0.014496,0.728928,0.012288
+1309,718.219,1.39233,1.03027,0.007872,0.22368,0.008384,0.00944,0.008896,0.015712,0.014912,0.729088,0.012288
+1310,629.379,1.58887,2.06643,0.008192,0.446464,0.01024,0.008192,0.011808,0.014912,0.016064,1.53936,0.0112
+1311,411.121,2.43237,1.0416,0.008192,0.23696,0.008256,0.008288,0.00864,0.016288,0.014432,0.728768,0.011776
+1312,688.982,1.45142,1.05114,0.007968,0.228064,0.008192,0.009472,0.008992,0.01568,0.015008,0.746784,0.010976
+1313,682.553,1.46509,1.03453,0.008224,0.229504,0.008192,0.008192,0.009856,0.01472,0.014336,0.730816,0.010688
+1314,683.35,1.46338,2.10442,0.008192,0.446464,0.01024,0.008352,0.01168,0.014784,0.015616,1.5776,0.011488
+1315,396.784,2.52026,1.03427,0.008224,0.2328,0.008832,0.008224,0.010208,0.014464,0.015648,0.724992,0.01088
+1316,697.667,1.43335,1.03629,0.008224,0.225184,0.008256,0.008192,0.01024,0.01552,0.01472,0.733664,0.012288
+1317,697.785,1.43311,1.02291,0.008224,0.225344,0.008352,0.0088,0.009824,0.01488,0.015584,0.719616,0.012288
+1318,695.416,1.43799,2.07155,0.0072,0.446112,0.01056,0.008192,0.01024,0.015744,0.014976,1.54624,0.012288
+1319,397.863,2.51343,1.04138,0.007136,0.229376,0.008192,0.008192,0.009984,0.014592,0.014336,0.738464,0.011104
+1320,691.308,1.44653,1.03827,0.008032,0.227136,0.00832,0.008128,0.00896,0.016096,0.014464,0.734752,0.012384
+1321,677.585,1.47583,1.04653,0.008192,0.233472,0.008192,0.01024,0.010272,0.015552,0.014816,0.733504,0.012288
+1322,671.806,1.48853,2.36138,0.007008,0.279904,0.008352,0.008352,0.01024,0.014688,0.015584,2.0049,0.012352
+1323,363.959,2.74756,1.03245,0.008288,0.229536,0.008192,0.008192,0.010208,0.015936,0.014848,0.72496,0.012288
+1324,697.548,1.43359,1.02912,0.007168,0.227328,0.008192,0.008192,0.01024,0.014336,0.015872,0.725504,0.012288
+1325,717.589,1.39355,1.05453,0.008192,0.225952,0.009248,0.008224,0.009152,0.014336,0.016032,0.751584,0.011808
+1326,630.445,1.58618,2.09469,0.008064,0.446688,0.01024,0.008288,0.0104,0.016224,0.014336,1.56877,0.01168
+1327,408.701,2.44678,1.05136,0.008256,0.229568,0.008256,0.008032,0.008768,0.016256,0.014464,0.746592,0.011168
+1328,699.454,1.42969,1.04678,0.00784,0.227808,0.00832,0.008192,0.00992,0.014656,0.015648,0.743424,0.010976
+1329,668.735,1.49536,1.03104,0.00816,0.227488,0.00832,0.008576,0.009568,0.015168,0.014432,0.728064,0.011264
+1330,605.559,1.65137,2.12333,0.008192,0.503808,0.01024,0.008192,0.011712,0.014912,0.015488,1.53894,0.01184
+1331,420.707,2.37695,1.04192,0.008192,0.233472,0.008192,0.009984,0.009568,0.015072,0.014528,0.730912,0.012
+1332,683.008,1.46411,1.03834,0.008032,0.22752,0.00816,0.008384,0.010048,0.015808,0.014784,0.734368,0.011232
+1333,662.14,1.51025,1.03501,0.006976,0.228576,0.00832,0.00864,0.01008,0.015872,0.01488,0.730464,0.0112
+1334,707.06,1.41431,2.0976,0.007872,0.444736,0.010304,0.008352,0.010464,0.016224,0.014528,1.57434,0.010784
+1335,398.172,2.51147,1.03862,0.008192,0.227456,0.00816,0.008064,0.008768,0.015776,0.01472,0.736448,0.01104
+1336,695.652,1.4375,1.03446,0.007104,0.22528,0.008224,0.009728,0.009792,0.015264,0.014336,0.732992,0.011744
+1337,715.709,1.39722,1.0399,0.00784,0.225696,0.008192,0.00816,0.009952,0.014624,0.014336,0.739232,0.011872
+1338,664.827,1.50415,2.07837,0.008192,0.444416,0.011328,0.008384,0.011008,0.016128,0.014624,1.55235,0.011936
+1339,387.879,2.57812,1.04038,0.008192,0.231072,0.008352,0.008064,0.009664,0.014816,0.014752,0.73424,0.011232
+1340,669.828,1.49292,1.0384,0.007936,0.231584,0.00832,0.008224,0.010208,0.015712,0.014944,0.730592,0.01088
+1341,730.125,1.36963,1.03834,0.008096,0.225376,0.008192,0.008192,0.010112,0.014464,0.015488,0.737632,0.010784
+1342,673.241,1.48535,2.32662,0.00688,0.253952,0.008192,0.008192,0.010144,0.014432,0.015776,1.99693,0.012128
+1343,366.861,2.72583,1.04291,0.00784,0.23344,0.00832,0.008512,0.008704,0.016192,0.0144,0.733312,0.012192
+1344,700.77,1.427,1.03216,0.007904,0.223936,0.008288,0.00816,0.009792,0.014848,0.014304,0.732704,0.012224
+1345,692.711,1.4436,1.03219,0.008192,0.22528,0.009248,0.008768,0.009664,0.015136,0.014528,0.730176,0.0112
+1346,705.356,1.41772,2.2575,0.00704,0.22848,0.008192,0.007008,0.010144,0.014336,0.015904,1.95414,0.012256
+1347,367.058,2.72437,1.05677,0.008192,0.240864,0.00832,0.008768,0.009696,0.014976,0.015616,0.738048,0.012288
+1348,679.496,1.47168,1.03562,0.007936,0.227584,0.008224,0.00816,0.01024,0.015552,0.014432,0.73136,0.012128
+1349,642.006,1.55762,1.06314,0.007872,0.253568,0.008352,0.008928,0.009952,0.016672,0.015584,0.731456,0.010752
+1350,431.158,2.31934,1.22061,0.01024,0.407552,0.009312,0.008288,0.010912,0.015744,0.014464,0.731808,0.012288
+1351,632.489,1.58105,1.04038,0.008224,0.231392,0.00832,0.008096,0.01024,0.014304,0.015744,0.731776,0.012288
+1352,650.159,1.53809,1.05034,0.007872,0.24336,0.00832,0.00832,0.009824,0.01536,0.0144,0.73088,0.012
+1353,709.018,1.4104,1.03597,0.008192,0.231648,0.008224,0.010208,0.009952,0.014624,0.01552,0.725856,0.011744
+1354,675.016,1.48145,2.07667,0.008192,0.44352,0.010624,0.008448,0.010528,0.015552,0.014688,1.55286,0.012256
+1355,373.178,2.67969,1.06326,0.007168,0.262144,0.009312,0.008672,0.00864,0.016288,0.014464,0.724448,0.012128
+1356,736.161,1.3584,1.06525,0.007936,0.259008,0.008192,0.00928,0.010336,0.0152,0.015424,0.727968,0.011904
+1357,644.633,1.55127,1.14688,0.008192,0.310848,0.01888,0.01024,0.02048,0.015872,0.01488,0.72624,0.021248
+1358,588.844,1.69824,2.12378,0.008192,0.45056,0.01024,0.008224,0.012256,0.016256,0.014464,1.5913,0.012288
+1359,396.132,2.52441,1.06954,0.008256,0.244128,0.008224,0.00816,0.01024,0.018432,0.028576,0.731232,0.012288
+1360,506.116,1.97583,1.03424,0.008192,0.227328,0.008192,0.008192,0.01024,0.015648,0.014912,0.729248,0.012288
+1361,1112.74,0.898682,1.03786,0.008224,0.233472,0.008192,0.009696,0.008768,0.016256,0.014432,0.726688,0.012128
+1362,700.291,1.42798,2.08768,0.006912,0.446272,0.01024,0.008288,0.010368,0.016352,0.015712,1.56285,0.010688
+1363,404.184,2.47412,1.02778,0.008192,0.227328,0.008192,0.008192,0.010112,0.015488,0.015328,0.723008,0.011936
+1364,691.541,1.44604,1.03629,0.008192,0.230816,0.008288,0.008704,0.010272,0.014304,0.01568,0.727744,0.012288
+1365,709.633,1.40918,1.02944,0.007872,0.227968,0.008192,0.01008,0.009664,0.015104,0.014304,0.72448,0.011776
+1366,502.145,1.99146,1.26362,0.01024,0.434176,0.008256,0.008288,0.011392,0.015072,0.015616,0.748288,0.012288
+1367,611.343,1.63574,1.03162,0.008192,0.22448,0.008352,0.008096,0.008928,0.015744,0.014784,0.731072,0.011968
+1368,700.65,1.42725,1.03174,0.007936,0.227456,0.008352,0.008192,0.009824,0.014816,0.014336,0.7288,0.012032
+1369,677.921,1.4751,1.02394,0.008192,0.226816,0.008288,0.008096,0.008736,0.016064,0.014624,0.720896,0.012224
+1370,687.941,1.45361,2.06467,0.008032,0.444608,0.010336,0.008352,0.010624,0.015904,0.014816,1.5401,0.011904
+1371,403.626,2.47754,1.03734,0.008192,0.230784,0.008832,0.009504,0.008928,0.015776,0.014816,0.728672,0.01184
+1372,689.911,1.44946,1.05677,0.008192,0.237568,0.008224,0.00816,0.010272,0.01584,0.014848,0.742464,0.0112
+1373,418.728,2.38818,1.12166,0.009344,0.281248,0.018688,0.00816,0.019808,0.015008,0.014368,0.743104,0.011936
+1374,1386.59,0.721191,2.32262,0.007904,0.238048,0.008192,0.008224,0.010208,0.015712,0.01488,2.00717,0.012288
+1375,358.732,2.7876,1.04528,0.006944,0.227136,0.00832,0.010048,0.009536,0.014784,0.014848,0.74256,0.011104
+1376,696.954,1.43481,1.03888,0.007904,0.22816,0.008192,0.008192,0.00992,0.014656,0.015776,0.733792,0.012288
+1377,634.645,1.57568,1.05283,0.007936,0.223168,0.008544,0.00832,0.009888,0.026688,0.014624,0.741376,0.012288
+1378,691.541,1.44604,2.11363,0.008192,0.4464,0.010304,0.008224,0.011584,0.015008,0.01568,1.58768,0.01056
+1379,403.308,2.47949,1.03715,0.00704,0.227232,0.008256,0.00816,0.009536,0.01488,0.014528,0.736704,0.010816
+1380,674.905,1.48169,1.0361,0.008192,0.222784,0.00832,0.00832,0.009472,0.01488,0.014752,0.73728,0.012096
+1381,745.405,1.34155,1.03491,0.007872,0.222048,0.008288,0.008224,0.009696,0.01488,0.015392,0.736224,0.012288
+1382,606.455,1.64893,2.08531,0.008064,0.44432,0.010304,0.008384,0.01056,0.015904,0.014944,1.5617,0.011136
+1383,399.298,2.50439,1.03587,0.007936,0.227072,0.00832,0.008352,0.008992,0.016224,0.0144,0.73264,0.011936
+1384,710.864,1.40674,1.03722,0.007072,0.22528,0.008224,0.009184,0.009216,0.016384,0.014336,0.735232,0.012288
+1385,661.392,1.51196,1.02698,0.007072,0.22448,0.008544,0.008416,0.009632,0.015168,0.015488,0.725888,0.012288
+1386,498.661,2.00537,1.45706,0.010656,0.247872,0.00816,0.008352,0.009664,0.015264,0.015552,1.13034,0.0112
+1387,559.486,1.78735,1.03325,0.007264,0.225152,0.008224,0.008192,0.009536,0.015072,0.014304,0.733184,0.01232
+1388,675.908,1.47949,1.03632,0.008192,0.222752,0.00832,0.00816,0.009664,0.015296,0.014336,0.72704,0.02256
+1389,698.261,1.43213,1.03158,0.008192,0.222848,0.00816,0.008576,0.009696,0.014912,0.014336,0.733024,0.01184
+1390,353.317,2.83032,2.12202,0.007936,0.457248,0.020448,0.008224,0.011392,0.015232,0.014336,1.57622,0.010976
+1391,835.237,1.19727,1.04029,0.007872,0.226048,0.009344,0.007136,0.010144,0.015648,0.014688,0.737536,0.011872
+1392,696.362,1.43604,1.04038,0.008192,0.22528,0.008192,0.008192,0.009824,0.014752,0.01584,0.737824,0.012288
+1393,681.078,1.46826,1.04448,0.008192,0.24336,0.008352,0.008224,0.009632,0.014816,0.014624,0.726112,0.011168
+1394,664.18,1.50562,1.8032,0.008096,0.239616,0.008192,0.008192,0.01024,0.014432,0.015712,1.48496,0.01376
+1395,423.359,2.36206,1.03245,0.008096,0.223584,0.008192,0.00832,0.010112,0.01536,0.01504,0.732512,0.011232
+1396,697.785,1.43311,1.03536,0.008192,0.221184,0.00832,0.009504,0.008928,0.016032,0.020352,0.73104,0.011808
+1397,671.365,1.4895,1.03066,0.008256,0.223296,0.00832,0.008128,0.008736,0.01616,0.014496,0.731104,0.01216
+1398,650.675,1.53687,2.11568,0.007904,0.446272,0.010272,0.008352,0.019008,0.016416,0.014304,1.57082,0.022336
+1399,371.519,2.69165,1.0711,0.008192,0.24752,0.00848,0.008192,0.010272,0.014304,0.04016,0.72288,0.011104
+1400,713.589,1.40137,1.0543,0.008192,0.239552,0.008256,0.008192,0.01024,0.015936,0.014784,0.73728,0.011872
+1401,697.667,1.43335,1.02691,0.00816,0.22208,0.009408,0.008672,0.0096,0.01504,0.014624,0.728352,0.010976
+1402,607.085,1.64722,2.14426,0.008192,0.46256,0.010336,0.02272,0.01136,0.015264,0.02048,1.58106,0.012288
+1403,416.429,2.40137,1.03066,0.007936,0.224096,0.008192,0.008224,0.010208,0.01568,0.014624,0.729504,0.012192
+1404,687.018,1.45557,1.05584,0.007968,0.241888,0.016416,0.010208,0.009952,0.014624,0.014336,0.728512,0.011936
+1405,708.773,1.41089,1.03094,0.008128,0.222048,0.008384,0.008,0.010272,0.015392,0.015168,0.732448,0.011104
+1406,609.524,1.64062,2.13744,0.008032,0.474304,0.020608,0.008352,0.020672,0.014848,0.015872,1.56314,0.011616
+1407,411.121,2.43237,1.0545,0.008224,0.222784,0.008352,0.008448,0.009536,0.015008,0.014368,0.755712,0.012064
+1408,545.406,1.8335,1.11469,0.00784,0.284736,0.008384,0.00832,0.016032,0.02864,0.014912,0.733536,0.012288
+1409,731.429,1.36719,1.04874,0.00816,0.227104,0.00832,0.00848,0.02048,0.016,0.014688,0.733216,0.012288
+1410,687.364,1.45483,2.07859,0.008128,0.4448,0.01024,0.008192,0.010272,0.016096,0.014624,1.5544,0.01184
+1411,404.583,2.47168,1.02506,0.007872,0.223552,0.008192,0.009472,0.00896,0.015424,0.014912,0.724832,0.01184
+1412,723.292,1.38257,1.02218,0.00784,0.22144,0.008352,0.008352,0.009696,0.01488,0.01552,0.725056,0.01104
+1413,677.473,1.47607,1.01994,0.008192,0.220864,0.008352,0.008352,0.00976,0.014816,0.015712,0.722752,0.011136
+1414,620.324,1.61206,1.67059,0.01024,0.425344,0.008224,0.008288,0.010784,0.016352,0.014368,1.16528,0.011712
+1415,479.345,2.08618,1.0376,0.008192,0.227328,0.008192,0.008192,0.01024,0.014336,0.015712,0.7336,0.011808
+1416,680.399,1.46973,1.04448,0.007904,0.22352,0.008224,0.008192,0.010208,0.015936,0.014784,0.743424,0.012288
+1417,565.121,1.76953,1.07478,0.022784,0.24768,0.008352,0.008448,0.00992,0.014656,0.024,0.7272,0.011744
+1418,622.02,1.60767,1.84688,0.022048,0.258528,0.008224,0.00928,0.010688,0.014816,0.0144,1.49498,0.01392
+1419,427.245,2.34058,1.04448,0.008192,0.229376,0.00832,0.010112,0.01024,0.014336,0.015712,0.735904,0.012288
+1420,688.866,1.45166,1.02454,0.007904,0.224,0.008224,0.008192,0.0096,0.014976,0.014336,0.726144,0.011168
+1421,714.46,1.39966,1.02938,0.008192,0.22528,0.008192,0.008192,0.01024,0.014336,0.015424,0.72784,0.01168
+1422,593.365,1.6853,2.1791,0.008,0.546528,0.010272,0.016768,0.010336,0.016192,0.014496,1.54589,0.010624
+1423,399.104,2.50562,1.03629,0.008192,0.231008,0.008608,0.00816,0.00976,0.01488,0.014304,0.729088,0.012288
+1424,702.935,1.42261,1.04448,0.008224,0.2232,0.008192,0.008192,0.010272,0.015712,0.01488,0.74464,0.011168
+1425,651.814,1.53418,1.04365,0.008192,0.237184,0.00832,0.00992,0.008768,0.016064,0.014656,0.728448,0.012096
+1426,651.503,1.53491,2.26944,0.007904,0.246272,0.008192,0.008256,0.010208,0.014304,0.016064,1.94576,0.01248
+1427,384.709,2.59937,1.02966,0.008192,0.224256,0.00832,0.008352,0.00896,0.016,0.014432,0.729344,0.011808
+1428,710.002,1.40845,1.03072,0.007136,0.22528,0.008192,0.008192,0.010016,0.01456,0.014464,0.73088,0.012
+1429,568.81,1.75806,1.04323,0.008032,0.22224,0.00816,0.008192,0.010016,0.01456,0.015392,0.735776,0.020864
+1430,684.378,1.46118,2.13606,0.008192,0.446208,0.010528,0.00816,0.011424,0.0152,0.014336,1.60973,0.012288
+1431,410.668,2.43506,1.0367,0.007936,0.236192,0.009248,0.008672,0.008704,0.015872,0.014784,0.723008,0.012288
+1432,660.006,1.51514,1.04141,0.008192,0.229376,0.008192,0.008192,0.011296,0.015328,0.014336,0.734464,0.012032
+1433,693.884,1.44116,1.04669,0.008096,0.233664,0.008352,0.009952,0.009888,0.014784,0.014816,0.7352,0.011936
+1434,488.841,2.04565,1.23962,0.010656,0.430208,0.008224,0.008192,0.01024,0.016288,0.01552,0.729344,0.010944
+1435,603.418,1.65723,1.0264,0.007904,0.22592,0.008192,0.008192,0.010208,0.014368,0.014336,0.724992,0.012288
+1436,737.354,1.3562,1.02544,0.00784,0.223264,0.008352,0.008064,0.009856,0.01504,0.014336,0.726656,0.012032
+1437,706.451,1.41553,1.04893,0.007872,0.223904,0.009248,0.008704,0.008704,0.015904,0.014592,0.747712,0.012288
+1438,639.401,1.56396,2.07235,0.008192,0.443712,0.010848,0.008288,0.01024,0.016224,0.014496,1.54829,0.012064
+1439,415.247,2.4082,1.03424,0.008192,0.226976,0.008352,0.008256,0.009504,0.0152,0.01552,0.731168,0.011072
+1440,709.51,1.40942,1.03424,0.008192,0.224832,0.008352,0.008224,0.009728,0.015136,0.01568,0.73184,0.012256
+1441,672.247,1.48755,1.02496,0.007104,0.224544,0.008544,0.008576,0.009376,0.0152,0.015392,0.723936,0.012288
+1442,699.932,1.42871,2.2449,0.007872,0.23104,0.008288,0.008128,0.009184,0.01616,0.014528,1.93741,0.012288
+1443,356.67,2.80371,1.05603,0.008192,0.247392,0.00832,0.00848,0.009952,0.014624,0.014368,0.732992,0.011712
+1444,769.346,1.2998,1.0345,0.007904,0.229152,0.008352,0.0088,0.010016,0.01456,0.014336,0.729088,0.012288
+1445,691.775,1.44556,1.0367,0.008128,0.22784,0.008224,0.009248,0.009152,0.015584,0.014528,0.731744,0.012256
+1446,657.042,1.52197,2.09725,0.00704,0.447456,0.010336,0.008352,0.010976,0.015392,0.01504,1.57098,0.01168
+1447,398.056,2.51221,1.06086,0.008192,0.261312,0.00832,0.008896,0.01024,0.015648,0.014688,0.722688,0.01088
+1448,709.51,1.40942,1.02429,0.007872,0.22384,0.009312,0.007296,0.010016,0.015712,0.015008,0.722944,0.012288
+1449,717.967,1.39282,1.03014,0.008192,0.224704,0.00832,0.008256,0.009696,0.015072,0.014528,0.729088,0.012288
+1450,651.918,1.53394,2.14314,0.007136,0.495072,0.010624,0.008352,0.01024,0.016096,0.014624,1.56877,0.012224
+1451,399.844,2.50098,1.04634,0.007904,0.225568,0.008192,0.008192,0.010176,0.015584,0.014688,0.743936,0.012096
+1452,709.141,1.41016,1.03424,0.008192,0.22704,0.00848,0.008192,0.010048,0.014528,0.014336,0.731136,0.012288
+1453,662.14,1.51025,1.03626,0.008192,0.229376,0.008192,0.008192,0.009984,0.014592,0.014336,0.731136,0.012256
+1454,591.993,1.68921,2.11306,0.007968,0.4448,0.01024,0.008384,0.01184,0.015744,0.015232,1.58707,0.011776
+1455,435.235,2.29761,1.0503,0.008192,0.227328,0.009312,0.007232,0.01008,0.01568,0.014848,0.745664,0.011968
+1456,692.945,1.44312,1.04032,0.00816,0.225504,0.008288,0.00816,0.009696,0.014912,0.01568,0.73792,0.012
+1457,698.023,1.43262,1.02611,0.008256,0.224384,0.008352,0.008288,0.008864,0.015904,0.014784,0.724992,0.012288
+1458,581.901,1.71851,1.8655,0.008192,0.224896,0.008384,0.00832,0.009856,0.014784,0.014336,1.56403,0.012704
+1459,444.686,2.24878,1.05677,0.008192,0.249664,0.008288,0.008128,0.0096,0.015136,0.016064,0.729408,0.012288
+1460,696.007,1.43677,1.03651,0.007904,0.225792,0.00928,0.007104,0.010272,0.015776,0.014912,0.733216,0.012256
+1461,712.596,1.40332,1.03626,0.008224,0.227296,0.008352,0.008032,0.010272,0.015648,0.01504,0.731136,0.012256
+1462,357.23,2.79932,2.36486,0.007904,0.303296,0.00832,0.026208,0.019072,0.016064,0.014656,1.95686,0.01248
+1463,616.867,1.62109,1.02989,0.007904,0.229408,0.008128,0.008576,0.0096,0.014976,0.014304,0.724992,0.012
+1464,737.088,1.35669,1.02714,0.008192,0.227328,0.008192,0.009408,0.009056,0.015808,0.014528,0.722624,0.012
+1465,702.935,1.42261,1.03904,0.008096,0.229664,0.008288,0.008544,0.009696,0.015072,0.0144,0.73312,0.01216
+1466,642.812,1.55566,2.07923,0.007808,0.44464,0.010304,0.008384,0.010656,0.016,0.01472,1.55443,0.012288
+1467,387.072,2.5835,1.07878,0.007872,0.273152,0.008192,0.00944,0.008992,0.015872,0.014592,0.728768,0.011904
+1468,690.609,1.448,1.02973,0.008192,0.226368,0.00832,0.009024,0.010112,0.014464,0.0144,0.726848,0.012
+1469,698.618,1.4314,1.0409,0.008256,0.225568,0.00832,0.008256,0.009632,0.015296,0.014336,0.739328,0.011904
+1470,543.813,1.83887,2.11763,0.00784,0.465248,0.010368,0.00912,0.02064,0.031552,0.014336,1.54749,0.01104
+1471,396.669,2.521,1.10134,0.007904,0.28496,0.008192,0.019616,0.009088,0.015456,0.014752,0.72944,0.011936
+1472,734.445,1.36157,1.03603,0.007936,0.227904,0.008224,0.00816,0.01024,0.015552,0.01456,0.731584,0.011872
+1473,688.751,1.4519,1.07184,0.008224,0.248512,0.008192,0.009408,0.010048,0.015296,0.0144,0.745472,0.012288
+1474,638.305,1.56665,2.24832,0.008192,0.23728,0.008288,0.009536,0.00912,0.01552,0.015168,1.93242,0.0128
+1475,374.611,2.66943,1.0383,0.007936,0.231264,0.00832,0.008096,0.008768,0.016032,0.01472,0.731104,0.012064
+1476,704.628,1.41919,1.03818,0.007904,0.231008,0.008864,0.008256,0.009888,0.014816,0.015616,0.729728,0.012096
+1477,637.311,1.56909,1.0856,0.008224,0.262976,0.008192,0.009344,0.01728,0.015904,0.014752,0.737248,0.01168
+1478,463.453,2.15771,1.22966,0.010688,0.40704,0.008352,0.008384,0.01072,0.014432,0.015776,0.741984,0.012288
+1479,624.01,1.60254,1.02653,0.007872,0.229408,0.007936,0.007232,0.010208,0.015808,0.01472,0.721088,0.012256
+1480,588.675,1.69873,1.11616,0.018464,0.288736,0.008192,0.008192,0.010176,0.0144,0.016224,0.739488,0.012288
+1481,653.27,1.53076,1.05722,0.00784,0.248608,0.008192,0.009216,0.009216,0.015456,0.015264,0.731136,0.012288
+1482,500.55,1.9978,1.23942,0.009952,0.43104,0.008288,0.008352,0.011424,0.014944,0.014336,0.728992,0.012096
+1483,655.78,1.5249,1.04038,0.007904,0.229696,0.008192,0.008192,0.010048,0.014528,0.014336,0.735232,0.012256
+1484,695.298,1.43823,1.03677,0.008,0.22976,0.008352,0.008512,0.00976,0.014816,0.014336,0.731136,0.012096
+1485,707.549,1.41333,1.03568,0.007872,0.229088,0.00832,0.008384,0.00848,0.016064,0.014656,0.730848,0.011968
+1486,655.046,1.52661,2.06074,0.007904,0.445344,0.010368,0.00912,0.011008,0.01584,0.014688,1.5344,0.012064
+1487,409.273,2.44336,1.04858,0.008192,0.229376,0.00816,0.00848,0.010016,0.015776,0.014496,0.741792,0.012288
+1488,680.964,1.46851,1.03987,0.007936,0.229216,0.008352,0.008128,0.008992,0.015776,0.014432,0.735008,0.012032
+1489,665.908,1.50171,1.06666,0.006816,0.23264,0.008352,0.008064,0.017216,0.015488,0.014944,0.749824,0.013312
+1490,659.581,1.51611,1.83766,0.008192,0.236256,0.00816,0.009952,0.009824,0.01504,0.014336,1.52278,0.01312
+1491,398.987,2.50635,1.04522,0.007904,0.236544,0.008192,0.009472,0.008992,0.015648,0.015008,0.731168,0.012288
+1492,710.864,1.40674,1.03517,0.00704,0.232736,0.00832,0.00832,0.008672,0.015712,0.014656,0.727424,0.012288
+1493,695.534,1.43774,1.03174,0.008224,0.225056,0.008352,0.008096,0.009568,0.014912,0.01456,0.731008,0.011968
+1494,675.128,1.4812,2.0944,0.008192,0.44608,0.010304,0.008384,0.0104,0.01584,0.014656,1.56874,0.011808
+1495,392.902,2.54517,1.03379,0.007904,0.22992,0.008288,0.00976,0.008672,0.015776,0.014976,0.726848,0.011648
+1496,703.055,1.42236,1.0279,0.007936,0.228256,0.008192,0.008192,0.010208,0.014368,0.015712,0.723104,0.011936
+1497,710.002,1.40845,1.03267,0.008224,0.227776,0.009248,0.008928,0.009632,0.0152,0.014336,0.72704,0.012288
+1498,670.376,1.4917,2.21712,0.008192,0.231424,0.008192,0.008192,0.010272,0.015392,0.014848,1.90714,0.013472
+1499,382.732,2.61279,1.03242,0.008,0.2312,0.008352,0.008832,0.009632,0.014912,0.014368,0.72496,0.01216
+1500,683.35,1.46338,1.03414,0.007072,0.231296,0.00816,0.009408,0.009184,0.015648,0.014528,0.726816,0.012032
+1501,682.212,1.46582,1.02925,0.008192,0.231008,0.008384,0.008096,0.0096,0.015296,0.014336,0.722496,0.01184
+1502,676.689,1.47778,2.12787,0.008192,0.499712,0.011744,0.008352,0.010624,0.015808,0.014784,1.54758,0.011072
+1503,387.072,2.5835,1.03427,0.008224,0.231392,0.009312,0.008704,0.009664,0.014848,0.014752,0.725056,0.01232
+1504,698.023,1.43262,1.02902,0.007168,0.227264,0.00816,0.008192,0.009952,0.014656,0.015584,0.72576,0.012288
+1505,704.506,1.41943,1.03187,0.008192,0.229376,0.008192,0.008192,0.0096,0.014976,0.014336,0.72704,0.011968
+1506,628.125,1.59204,1.85555,0.008,0.233728,0.008192,0.008224,0.010208,0.015648,0.015072,1.54419,0.012288
+1507,416.007,2.40381,1.04448,0.008224,0.231392,0.008192,0.008256,0.010176,0.022528,0.014336,0.729088,0.012288
+1508,707.549,1.41333,1.04406,0.00816,0.235552,0.008224,0.009248,0.009152,0.015552,0.014656,0.731488,0.012032
+1509,662.783,1.50879,1.03782,0.008192,0.231424,0.008192,0.00832,0.010112,0.01536,0.014944,0.729472,0.011808
+1510,706.694,1.41504,2.23331,0.00704,0.23872,0.00832,0.008928,0.010272,0.015712,0.015008,1.91693,0.012384
+1511,375.298,2.66455,1.05734,0.007968,0.253952,0.008352,0.008672,0.009696,0.014848,0.01456,0.727072,0.012224
+1512,698.618,1.4314,1.05597,0.008192,0.249856,0.008192,0.010208,0.009632,0.014912,0.0144,0.72864,0.011936
+1513,663.105,1.50806,1.04755,0.008192,0.249792,0.008256,0.008224,0.009824,0.01472,0.015424,0.721408,0.011712
+1514,658.945,1.51758,2.07066,0.00784,0.44304,0.010368,0.008384,0.011424,0.0152,0.014336,1.54829,0.011776
+1515,407.279,2.45532,1.04653,0.00784,0.235008,0.00832,0.008736,0.010208,0.01456,0.014336,0.736448,0.011072
+1516,699.334,1.42993,1.0488,0.008192,0.232,0.008192,0.008192,0.010176,0.015968,0.014624,0.739456,0.012
+1517,669.938,1.49268,1.04685,0.008224,0.233792,0.008416,0.008,0.010208,0.014336,0.014336,0.73728,0.012256
+1518,677.585,1.47583,2.27088,0.007872,0.236224,0.008192,0.008192,0.010272,0.015616,0.014912,1.95718,0.012416
+1519,371.418,2.69238,1.03878,0.008224,0.234432,0.008224,0.010208,0.00976,0.014816,0.014336,0.72704,0.011744
+1520,711.482,1.40552,1.03293,0.007072,0.225088,0.009248,0.009184,0.009952,0.014624,0.016224,0.729248,0.012288
+1521,702.332,1.42383,1.0304,0.008224,0.22944,0.00832,0.008224,0.009824,0.014784,0.015616,0.7248,0.011168
+1522,683.464,1.46313,2.25123,0.00784,0.23792,0.008352,0.008128,0.009696,0.01488,0.014656,1.9375,0.012256
+1523,373.416,2.67798,1.03446,0.008,0.229056,0.008288,0.010144,0.01024,0.014944,0.015808,0.726944,0.01104
+1524,705.356,1.41772,1.03402,0.008192,0.22528,0.008192,0.008352,0.01008,0.015936,0.014688,0.731104,0.012192
+1525,622.871,1.60547,1.04726,0.00704,0.237408,0.00848,0.009952,0.01024,0.014336,0.015712,0.731808,0.012288
+1526,706.572,1.41528,2.08355,0.007936,0.444768,0.010624,0.008416,0.010272,0.016256,0.014432,1.56019,0.010656
+1527,406.188,2.46191,1.0351,0.00704,0.233024,0.00832,0.008064,0.008704,0.01632,0.014336,0.72704,0.012256
+1528,694.708,1.43945,1.03555,0.008032,0.231424,0.00832,0.008224,0.009728,0.014848,0.014496,0.728448,0.012032
+1529,695.652,1.4375,1.03069,0.008192,0.225824,0.008224,0.00816,0.010112,0.014464,0.0144,0.729024,0.012288
+1530,666.884,1.49951,2.07258,0.008192,0.444416,0.011392,0.00848,0.010848,0.015712,0.014912,1.54768,0.010944
+1531,333.035,3.00269,1.04102,0.007872,0.230336,0.008192,0.01024,0.009568,0.01504,0.014304,0.733184,0.012288
+1532,692.36,1.44434,1.02365,0.008128,0.225344,0.008192,0.008192,0.009792,0.014784,0.014336,0.722944,0.011936
+1533,693.063,1.44287,1.04653,0.008192,0.245056,0.008352,0.008224,0.008704,0.016096,0.014624,0.724992,0.012288
+1534,573.509,1.74365,1.67731,0.010432,0.423744,0.016384,0.038496,0.010688,0.01616,0.014528,1.13459,0.012288
+1535,482.677,2.07178,1.04026,0.008192,0.232896,0.00832,0.008672,0.010048,0.014496,0.014336,0.731136,0.01216
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..f9cbadf
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,600.166,1.73114,1.25641,0.00827238,0.255334,0.00705225,0.00662253,0.00825216,0.0144533,0.0152,0.929599,0.0116242
+max_1024,1286.84,4.896,2.03254,0.024576,0.62816,0.064672,0.049376,0.084288,0.06608,0.030432,1.6647,0.350144
+min_1024,204.249,0.7771,1.00163,0.006624,0.221312,0.00576,0.004768,0.006528,0.01264,0.013088,0.702464,0.008576
+512,780.116,1.28186,1.87542,0.008192,0.26624,0.006144,0.006144,0.008192,0.014336,0.014336,1.5401,0.011744
+513,445.605,2.24414,1.01123,0.008192,0.239296,0.006368,0.00624,0.007904,0.014272,0.014496,0.704192,0.010272
+514,691.95,1.44519,1.00163,0.007936,0.231904,0.007264,0.006336,0.008096,0.01328,0.014176,0.702464,0.010176
+515,725.277,1.37878,1.18374,0.008192,0.407552,0.006176,0.006112,0.008192,0.014336,0.015456,0.70864,0.009088
+516,622.776,1.60571,1.01898,0.008192,0.234944,0.006336,0.006304,0.008064,0.014336,0.014464,0.714976,0.01136
+517,635.729,1.573,1.65456,0.008256,0.473248,0.01024,0.006144,0.008192,0.014336,0.014368,1.10973,0.010048
+518,497.329,2.01074,1.00691,0.008192,0.23056,0.006336,0.006336,0.008192,0.014048,0.014464,0.708704,0.01008
+519,665.583,1.50244,1.41661,0.008192,0.235616,0.006176,0.007264,0.0072,0.014176,0.020416,1.10755,0.010016
+520,497.994,2.00806,1.31962,0.007072,0.235136,0.006336,0.006304,0.00816,0.014272,0.014432,1.01171,0.016192
+521,551.242,1.81409,1.03834,0.008192,0.26416,0.006176,0.006144,0.008192,0.014336,0.014336,0.70656,0.01024
+522,663.75,1.50659,1.07062,0.018464,0.258048,0.007168,0.006272,0.007168,0.014176,0.014208,0.734592,0.010528
+523,638.503,1.56616,1.4391,0.008192,0.249856,0.00624,0.007168,0.0072,0.014208,0.022528,1.11174,0.011968
+524,522.149,1.91516,1.06115,0.008352,0.267008,0.006144,0.006144,0.008224,0.015584,0.024864,0.71472,0.010112
+525,657.253,1.52148,1.71213,0.008192,0.456736,0.064672,0.008896,0.008032,0.014464,0.014496,1.1264,0.01024
+526,495.674,2.01746,1.0281,0.008096,0.254048,0.007232,0.006272,0.008064,0.013248,0.015552,0.705344,0.01024
+527,729.8,1.37024,1.40698,0.008192,0.24576,0.006144,0.006144,0.008192,0.014336,0.014336,1.09363,0.01024
+528,462.172,2.1637,1.3527,0.008192,0.23712,0.006592,0.006144,0.008192,0.014304,0.014368,0.707648,0.350144
+529,560.175,1.78516,1.06493,0.008352,0.268096,0.006368,0.00624,0.007968,0.014016,0.01488,0.728928,0.01008
+530,597.302,1.67419,1.0512,0.008256,0.25664,0.006112,0.006144,0.008192,0.014368,0.015872,0.725216,0.0104
+531,760.631,1.3147,1.41626,0.008192,0.262144,0.007968,0.006272,0.008064,0.01424,0.014624,1.08266,0.012096
+532,520.722,1.92041,1.03453,0.007008,0.253248,0.006368,0.006304,0.008128,0.014272,0.014592,0.712896,0.011712
+533,706.024,1.41638,1.77152,0.008192,0.505856,0.01024,0.006144,0.00944,0.06608,0.01456,1.14077,0.01024
+534,465.905,2.14636,1.008,0.007232,0.23312,0.006368,0.006208,0.008096,0.01424,0.01456,0.708096,0.01008
+535,691.775,1.44556,1.40544,0.007872,0.235328,0.0064,0.006272,0.007904,0.014272,0.014784,1.10166,0.010944
+536,453.876,2.20325,1.03616,0.007008,0.247776,0.0072,0.007008,0.008064,0.0144,0.014528,0.72016,0.010016
+537,552.99,1.80835,1.03562,0.01024,0.251104,0.006336,0.006304,0.008,0.014016,0.014688,0.71472,0.010208
+538,648.717,1.5415,1.02474,0.007776,0.243904,0.006336,0.006336,0.007904,0.013024,0.015392,0.714848,0.009216
+539,761.692,1.31287,1.40077,0.006912,0.233472,0.006144,0.007168,0.008352,0.01328,0.01568,1.09786,0.011904
+540,533.403,1.87476,1.00966,0.00928,0.236128,0.006336,0.006304,0.008192,0.014336,0.014336,0.704512,0.01024
+541,517.433,1.93262,1.01581,0.01024,0.23312,0.006336,0.006304,0.008192,0.014368,0.014304,0.713792,0.009152
+542,691.95,1.44519,1.02106,0.008224,0.226944,0.006496,0.006144,0.008192,0.014304,0.014368,0.726144,0.01024
+543,704.385,1.41968,1.24701,0.007904,0.225376,0.006336,0.006144,0.008096,0.014432,0.022528,0.94208,0.014112
+544,603.863,1.65601,1.03632,0.008192,0.223232,0.006144,0.006144,0.008192,0.014336,0.030144,0.719424,0.020512
+545,634.694,1.57556,1.91901,0.022528,0.270336,0.006144,0.006176,0.00816,0.015552,0.014624,1.55414,0.021344
+546,435.698,2.29517,1.03008,0.007808,0.229408,0.006336,0.006784,0.008,0.014016,0.028704,0.718496,0.010528
+547,704.385,1.41968,1.24314,0.008192,0.227296,0.006208,0.006112,0.008192,0.0144,0.021472,0.936928,0.014336
+548,607.355,1.64648,1.02614,0.008128,0.22336,0.006176,0.007136,0.007168,0.022528,0.028512,0.712864,0.010272
+549,652.281,1.53308,1.72454,0.024576,0.456832,0.053248,0.006144,0.008192,0.014368,0.015552,1.13539,0.01024
+550,482.592,2.07214,1.01267,0.007136,0.227296,0.006176,0.006112,0.009472,0.013184,0.015392,0.717664,0.01024
+551,732.344,1.36548,1.01043,0.007136,0.22528,0.00736,0.00688,0.008064,0.013856,0.014272,0.717408,0.010176
+552,634.596,1.57581,1.01443,0.00784,0.225984,0.006368,0.00624,0.008192,0.014336,0.014336,0.720896,0.01024
+553,678.989,1.47278,1.86451,0.007008,0.227296,0.006176,0.006112,0.008192,0.014336,0.014336,1.56877,0.012288
+554,451.101,2.2168,1.00374,0.00784,0.225024,0.006336,0.006336,0.00816,0.013824,0.015104,0.71088,0.01024
+555,711.235,1.40601,1.01315,0.008224,0.22656,0.006368,0.006272,0.008096,0.014048,0.014944,0.718688,0.009952
+556,671.2,1.48987,1.19808,0.008224,0.409568,0.006144,0.006176,0.00816,0.014336,0.014336,0.720896,0.01024
+557,628.173,1.59192,1.86102,0.008192,0.226464,0.0064,0.006272,0.008032,0.01424,0.021216,1.55853,0.01168
+558,397.824,2.51367,1.07728,0.008192,0.280576,0.006144,0.022272,0.00816,0.014336,0.014656,0.712672,0.010272
+559,750.94,1.33167,1.01744,0.008192,0.227328,0.006176,0.006112,0.008192,0.01424,0.014464,0.72256,0.010176
+560,675.406,1.48059,1.21229,0.008224,0.411616,0.006144,0.007264,0.00816,0.014944,0.014688,0.731104,0.010144
+561,647.845,1.54358,1.75219,0.00816,0.229248,0.006304,0.006144,0.008192,0.014336,0.014336,1.44998,0.015488
+562,454.833,2.19861,1.01005,0.006976,0.227296,0.006144,0.006144,0.008224,0.014304,0.014336,0.716416,0.010208
+563,701.851,1.4248,1.01904,0.008192,0.225312,0.006112,0.006144,0.008192,0.014336,0.014336,0.72624,0.010176
+564,672.468,1.48706,1.44605,0.008128,0.272,0.006272,0.00624,0.008672,0.014016,0.014656,1.10592,0.010144
+565,543.524,1.83984,1.7449,0.008192,0.226944,0.006336,0.006304,0.007904,0.014112,0.014528,1.44624,0.014336
+566,467.981,2.13684,1.01005,0.007936,0.225792,0.006336,0.006272,0.008064,0.014464,0.014528,0.716576,0.01008
+567,635.926,1.57251,1.04653,0.008192,0.247456,0.006368,0.00624,0.008224,0.01552,0.01488,0.72944,0.010208
+568,691.892,1.44531,1.41642,0.008192,0.227264,0.022592,0.006144,0.008192,0.013984,0.014688,1.10518,0.010176
+569,539.231,1.85449,1.74022,0.008192,0.229056,0.006304,0.006272,0.00816,0.014272,0.013952,1.43926,0.014752
+570,477.361,2.09485,1.01786,0.008192,0.2272,0.006272,0.006144,0.008192,0.014336,0.014336,0.722944,0.01024
+571,695.948,1.43689,1.00762,0.008064,0.226528,0.006368,0.006272,0.008032,0.014144,0.014496,0.713472,0.01024
+572,684.664,1.46057,1.4,0.008256,0.225056,0.006368,0.006144,0.008192,0.014336,0.014336,1.1073,0.010016
+573,563.373,1.77502,1.73965,0.0072,0.227168,0.007264,0.006144,0.007072,0.014336,0.015648,1.44048,0.014336
+574,465.085,2.15015,1.00582,0.00784,0.22592,0.006112,0.0072,0.0072,0.014272,0.014336,0.713856,0.009088
+575,703.055,1.42236,1.00954,0.00784,0.22528,0.006368,0.006528,0.008064,0.013984,0.014688,0.710624,0.01616
+576,670.102,1.49231,1.39338,0.008192,0.231776,0.006336,0.00624,0.008032,0.014016,0.014816,1.09475,0.009216
+577,556.673,1.79639,1.3056,0.008288,0.231648,0.006336,0.006304,0.007968,0.012864,0.015488,0.99008,0.026624
+578,486.114,2.05713,1.03424,0.008192,0.251552,0.006336,0.006304,0.007968,0.014144,0.01456,0.714944,0.01024
+579,729.995,1.36987,1.01174,0.008256,0.228928,0.006304,0.006304,0.008032,0.01408,0.014592,0.714976,0.010272
+580,684.092,1.46179,1.38954,0.008352,0.226144,0.006176,0.008128,0.008096,0.014272,0.014496,1.09158,0.012288
+581,522.949,1.91223,1.08358,0.007872,0.292704,0.006336,0.006304,0.008032,0.014048,0.025184,0.713824,0.00928
+582,671.861,1.4884,1.72598,0.007872,0.46944,0.048768,0.006368,0.007904,0.014368,0.014656,1.14666,0.009952
+583,476.806,2.09729,1.03197,0.00816,0.246048,0.006208,0.00608,0.008192,0.015648,0.01712,0.7144,0.010112
+584,585.687,1.7074,1.40454,0.00816,0.237056,0.006336,0.006304,0.008,0.014048,0.014624,1.09811,0.011904
+585,650.107,1.53821,1.02694,0.00816,0.229568,0.006304,0.006304,0.008608,0.01424,0.014432,0.730336,0.008992
+586,484.275,2.06494,1.03808,0.010432,0.240512,0.006368,0.006368,0.008704,0.013856,0.014784,0.726944,0.010112
+587,689.04,1.45129,1.01786,0.008192,0.236992,0.006336,0.006208,0.007712,0.014336,0.014368,0.713472,0.01024
+588,709.326,1.40979,1.31075,0.008192,0.233504,0.006144,0.006336,0.009088,0.01328,0.014304,1.00557,0.014336
+589,564.032,1.77295,1.0208,0.008384,0.229344,0.006368,0.006304,0.008512,0.014336,0.014336,0.723968,0.009248
+590,615.616,1.62439,1.23904,0.01056,0.425152,0.006944,0.006176,0.008192,0.014336,0.014336,0.743168,0.010176
+591,618.078,1.61792,1.02736,0.00816,0.227552,0.006144,0.006144,0.008192,0.014336,0.014336,0.732288,0.010208
+592,693.004,1.44299,1.0199,0.008192,0.2264,0.006368,0.006848,0.008192,0.014368,0.014336,0.72496,0.01024
+593,674.294,1.48303,1.19398,0.008128,0.407264,0.006368,0.006272,0.007936,0.014496,0.014432,0.718848,0.01024
+594,517.891,1.93091,1.89578,0.007776,0.260544,0.006144,0.006144,0.008192,0.014336,0.014368,1.56659,0.01168
+595,513.219,1.94849,1.03088,0.00688,0.233472,0.006144,0.006144,0.008192,0.014336,0.014368,0.731104,0.01024
+596,686.04,1.45764,1.02406,0.008192,0.227168,0.006304,0.006144,0.008192,0.014336,0.014336,0.729088,0.010304
+597,686.557,1.45654,1.20416,0.008192,0.408768,0.006368,0.006272,0.008,0.014528,0.014496,0.727136,0.0104
+598,638.653,1.5658,1.36685,0.007008,0.227328,0.006112,0.006144,0.008192,0.014176,0.014496,1.07082,0.012576
+599,497.661,2.0094,1.03418,0.00816,0.226912,0.006336,0.006592,0.008096,0.014272,0.014688,0.738752,0.010368
+600,697.014,1.43469,1.01085,0.008192,0.22464,0.006368,0.00656,0.008128,0.014176,0.01456,0.71808,0.010144
+601,727.466,1.37463,1.41206,0.007168,0.226368,0.006368,0.006112,0.008096,0.014304,0.014848,1.11645,0.012352
+602,530.124,1.88635,1.31891,0.008192,0.227328,0.006144,0.007584,0.008,0.013088,0.014336,1.01786,0.016384
+603,498.206,2.0072,1.03424,0.008256,0.232736,0.006368,0.006272,0.007968,0.014176,0.014784,0.73344,0.01024
+604,713.775,1.401,1.01517,0.008128,0.225568,0.007136,0.006528,0.008128,0.012992,0.015424,0.721248,0.010016
+605,679.89,1.47083,1.24864,0.008224,0.225248,0.006144,0.006144,0.008192,0.014336,0.014336,0.952288,0.013728
+606,614.001,1.62866,1.01142,0.008192,0.223232,0.006144,0.006176,0.00816,0.014336,0.014336,0.720704,0.010144
+607,582.439,1.71692,1.23645,0.010464,0.434176,0.007488,0.006304,0.008096,0.014464,0.014784,0.730656,0.010016
+608,632.001,1.58228,1.024,0.008192,0.224864,0.006336,0.006368,0.008192,0.014336,0.014336,0.731136,0.01024
+609,705.052,1.41833,1.01862,0.008192,0.224,0.006144,0.006144,0.008192,0.014336,0.015424,0.725952,0.01024
+610,626.971,1.59497,1.19549,0.008256,0.40976,0.006144,0.006272,0.008064,0.014368,0.014496,0.71792,0.010208
+611,669.226,1.49426,1.86566,0.008192,0.226528,0.006336,0.006144,0.00816,0.014176,0.014336,1.56957,0.012224
+612,396.419,2.52258,1.04672,0.008096,0.247424,0.0064,0.022624,0.008192,0.013856,0.014656,0.716224,0.009248
+613,774.584,1.29102,1.02474,0.008128,0.227744,0.006368,0.006304,0.008128,0.014176,0.014464,0.729184,0.01024
+614,682.667,1.46484,1.20627,0.008,0.407744,0.0072,0.006304,0.006976,0.015424,0.014624,0.72976,0.01024
+615,634.596,1.57581,1.76979,0.007104,0.229376,0.006144,0.006176,0.00816,0.014368,0.014304,1.47037,0.013792
+616,464.031,2.15503,1.01549,0.008,0.229056,0.006368,0.006528,0.007968,0.014496,0.014464,0.716896,0.011712
+617,684.893,1.46008,1.02557,0.007808,0.224128,0.0072,0.006208,0.007136,0.014272,0.015744,0.732992,0.01008
+618,684.092,1.46179,1.44006,0.00816,0.2384,0.00784,0.006208,0.008128,0.01408,0.014528,1.13261,0.010112
+619,557.848,1.7926,1.7536,0.00784,0.226144,0.006304,0.0072,0.008608,0.013824,0.014432,1.45491,0.014336
+620,458.012,2.18335,1.01376,0.008128,0.225344,0.0072,0.007136,0.008192,0.014176,0.014496,0.718848,0.01024
+621,700.89,1.42676,1.03037,0.008064,0.223584,0.006112,0.006144,0.008224,0.014304,0.014336,0.739072,0.010528
+622,686.155,1.4574,1.42746,0.008192,0.227328,0.006144,0.006144,0.007808,0.014272,0.024032,1.1233,0.01024
+623,549.836,1.81873,1.76464,0.007776,0.229792,0.006208,0.007104,0.007264,0.01424,0.014336,1.46227,0.015648
+624,453.198,2.20654,1.02608,0.007904,0.2256,0.006176,0.006112,0.008192,0.01424,0.014432,0.733184,0.01024
+625,696.184,1.4364,1.02816,0.009248,0.223648,0.006336,0.006272,0.007904,0.013984,0.014496,0.737024,0.009248
+626,716.021,1.39661,1.42131,0.008192,0.225184,0.00624,0.006144,0.008032,0.014432,0.0144,1.12845,0.01024
+627,527.767,1.89478,1.77347,0.007872,0.228,0.006272,0.006144,0.008032,0.014048,0.014624,1.47386,0.014624
+628,456.761,2.18933,1.03501,0.007168,0.223264,0.007232,0.006272,0.008032,0.013312,0.015616,0.744,0.010112
+629,717.652,1.39343,1.01677,0.0072,0.225184,0.006144,0.006144,0.008192,0.014336,0.014336,0.724992,0.01024
+630,576.212,1.73547,1.41437,0.008192,0.224288,0.006368,0.006272,0.008032,0.0144,0.014976,1.12176,0.01008
+631,618.031,1.61804,1.32099,0.008192,0.229376,0.006144,0.007264,0.007136,0.014272,0.015616,1.01814,0.014848
+632,506.085,1.97595,1.0272,0.008192,0.229376,0.006144,0.006144,0.008192,0.014336,0.014336,0.729088,0.011392
+633,711.482,1.40552,1.01568,0.008096,0.225536,0.006752,0.007296,0.007168,0.01536,0.014592,0.720832,0.010048
+634,706.268,1.41589,1.40902,0.008192,0.222976,0.006368,0.006208,0.00816,0.01424,0.014432,1.11616,0.012288
+635,559.639,1.78687,1.31885,0.00704,0.227328,0.006144,0.007264,0.007168,0.014272,0.014304,1.01984,0.015488
+636,485.567,2.05945,1.0265,0.008128,0.223744,0.006144,0.006336,0.008,0.014208,0.014464,0.735232,0.01024
+637,726.177,1.37708,1.01024,0.008096,0.223712,0.006336,0.006144,0.008192,0.014336,0.014336,0.718848,0.01024
+638,719.733,1.3894,1.31075,0.008096,0.22336,0.006144,0.007424,0.008,0.013248,0.014336,1.01696,0.013184
+639,540.726,1.84937,1.01616,0.008096,0.221664,0.006112,0.007296,0.008736,0.013984,0.014432,0.725568,0.010272
+640,762.259,1.31189,1.67322,0.008192,0.464896,0.009952,0.006144,0.007808,0.014624,0.01472,1.13664,0.01024
+641,481.656,2.07617,1.01888,0.007104,0.22528,0.007296,0.006496,0.007936,0.013088,0.015616,0.72688,0.009184
+642,684.721,1.46045,1.024,0.008192,0.224416,0.006368,0.006784,0.008192,0.014368,0.014304,0.731136,0.01024
+643,646.771,1.54614,1.0183,0.008128,0.223104,0.006368,0.006368,0.00816,0.014144,0.014688,0.728128,0.009216
+644,616.682,1.62158,1.86746,0.008128,0.227584,0.006144,0.006144,0.008192,0.014336,0.014336,1.57082,0.011776
+645,478.812,2.0885,1.0281,0.008192,0.228896,0.006336,0.008256,0.008064,0.014464,0.014464,0.729184,0.01024
+646,694.473,1.43994,1.04147,0.008192,0.224896,0.006368,0.006144,0.008032,0.01424,0.01472,0.748672,0.010208
+647,674.405,1.48279,1.20099,0.008224,0.410304,0.006368,0.006176,0.008064,0.014048,0.014368,0.723264,0.010176
+648,624.628,1.60095,1.76659,0.007872,0.226976,0.006336,0.006304,0.007776,0.013216,0.014336,1.46842,0.01536
+649,374.081,2.67322,1.08954,0.009376,0.286656,0.006336,0.006304,0.008352,0.013984,0.015072,0.733216,0.01024
+650,912.656,1.0957,1.07965,0.008128,0.262592,0.006112,0.007296,0.00704,0.015424,0.014272,0.748544,0.01024
+651,646.618,1.54651,1.23494,0.008192,0.407264,0.006336,0.00624,0.007968,0.014464,0.014432,0.759808,0.01024
+652,602.087,1.66089,1.8033,0.008192,0.253984,0.008,0.006304,0.007904,0.013696,0.014688,1.47664,0.013888
+653,460.38,2.17212,1.03462,0.008352,0.237952,0.006176,0.006144,0.008192,0.013984,0.01456,0.729216,0.010048
+654,706.572,1.41528,1.02973,0.008192,0.226496,0.006368,0.006304,0.007904,0.013024,0.015424,0.735904,0.010112
+655,652.541,1.53247,1.46432,0.008256,0.271712,0.00624,0.005856,0.006944,0.014336,0.014336,1.1264,0.01024
+656,528.448,1.89233,1.82294,0.007904,0.239488,0.006368,0.006368,0.008,0.014144,0.014176,1.51408,0.012416
+657,436.186,2.2926,1.05677,0.007904,0.251936,0.0064,0.006272,0.00832,0.014336,0.014336,0.73728,0.009984
+658,624.724,1.60071,1.03693,0.008288,0.243904,0.0064,0.006272,0.00784,0.01408,0.014528,0.725344,0.010272
+659,785.803,1.27258,1.21024,0.007552,0.409792,0.006592,0.006176,0.00816,0.014336,0.014336,0.733184,0.010112
+660,616.821,1.62122,1.764,0.00816,0.231616,0.0064,0.006368,0.008224,0.014336,0.014464,1.4601,0.014336
+661,449.049,2.22693,1.01878,0.007072,0.228416,0.006336,0.006912,0.008032,0.014048,0.014496,0.723232,0.01024
+662,710.494,1.40747,1.04054,0.007808,0.223744,0.006272,0.008064,0.007872,0.014176,0.014624,0.747712,0.010272
+663,701.13,1.42627,1.4032,0.00816,0.223936,0.006144,0.006144,0.009472,0.013056,0.014368,1.11187,0.010048
+664,534.377,1.87134,1.31875,0.008192,0.227328,0.007296,0.006272,0.008,0.013248,0.014336,1.01786,0.016224
+665,504.154,1.98352,1.02941,0.008192,0.225024,0.006336,0.006208,0.008192,0.014336,0.014368,0.736416,0.010336
+666,726.692,1.3761,1.01786,0.008192,0.224864,0.00656,0.006144,0.008192,0.014048,0.014432,0.725184,0.01024
+667,693.063,1.44287,1.40627,0.007872,0.223552,0.007168,0.00624,0.007072,0.014336,0.014336,1.11402,0.01168
+668,539.409,1.85388,1.03478,0.007968,0.233856,0.006368,0.006304,0.008064,0.013856,0.014912,0.733312,0.010144
+669,471.401,2.12134,1.04432,0.01024,0.23552,0.007296,0.006304,0.00688,0.014336,0.015872,0.737792,0.01008
+670,690.667,1.44788,1.03424,0.008224,0.224672,0.006272,0.006272,0.007872,0.012928,0.015456,0.742304,0.01024
+671,694.355,1.44019,1.41619,0.008192,0.224256,0.006144,0.006208,0.008128,0.014336,0.014336,1.1223,0.012288
+672,550.723,1.8158,1.31702,0.007872,0.225664,0.006208,0.006144,0.008224,0.014016,0.014208,1.02006,0.014624
+673,498.539,2.00586,1.00563,0.008192,0.22464,0.006336,0.00624,0.006624,0.014208,0.014336,0.71584,0.009216
+674,714.647,1.39929,1.01581,0.008192,0.223264,0.007136,0.00656,0.007904,0.013184,0.015456,0.724928,0.009184
+675,721.953,1.38513,1.24301,0.008128,0.22512,0.006304,0.006208,0.008064,0.013216,0.014368,0.948064,0.013536
+676,583.06,1.71509,1.03002,0.008224,0.2232,0.006368,0.007072,0.00704,0.014336,0.014336,0.739264,0.010176
+677,529.37,1.88904,1.69024,0.007168,0.475136,0.00976,0.006304,0.007616,0.013248,0.014272,1.14653,0.010208
+678,611.389,1.63562,1.02717,0.008032,0.227584,0.006144,0.00624,0.008096,0.014368,0.014304,0.731136,0.011264
+679,482.223,2.07373,1.01683,0.008192,0.224256,0.006144,0.006144,0.008192,0.014336,0.014368,0.72496,0.01024
+680,1094.46,0.913696,1.03853,0.008288,0.222944,0.0064,0.0064,0.008192,0.013952,0.01472,0.747008,0.010624
+681,695.77,1.43726,1.77411,0.006848,0.227232,0.00624,0.006144,0.008064,0.014112,0.014688,1.4761,0.014688
+682,450.928,2.21765,1.02867,0.00784,0.22416,0.006176,0.007488,0.008032,0.01312,0.014336,0.73728,0.01024
+683,700.051,1.42847,1.03245,0.008128,0.223584,0.006208,0.007136,0.007136,0.014304,0.014336,0.741376,0.01024
+684,693.063,1.44287,1.21936,0.00784,0.408096,0.006368,0.00608,0.008032,0.01424,0.014432,0.743872,0.0104
+685,597.825,1.67273,1.76486,0.008224,0.231392,0.006144,0.006144,0.008,0.01392,0.014976,1.4617,0.014368
+686,463.873,2.15576,1.03648,0.008,0.223616,0.00736,0.006304,0.008032,0.01312,0.015392,0.744416,0.01024
+687,628.269,1.59167,1.04723,0.008224,0.24848,0.006144,0.006144,0.008192,0.01424,0.014464,0.731104,0.01024
+688,723.483,1.3822,1.42282,0.007872,0.225952,0.006112,0.006144,0.007968,0.013952,0.021152,1.12358,0.01008
+689,536.266,1.86475,1.76557,0.007872,0.229184,0.006368,0.006272,0.007872,0.013984,0.0144,1.46528,0.014336
+690,472.08,2.11829,1.02925,0.008192,0.227328,0.006144,0.008192,0.008192,0.014368,0.014304,0.732224,0.010304
+691,676.801,1.47754,1.02877,0.00816,0.223616,0.006336,0.00624,0.00816,0.014144,0.0144,0.73744,0.010272
+692,673.906,1.48389,1.41622,0.008192,0.222944,0.006336,0.006208,0.007872,0.013952,0.014976,1.12573,0.010016
+693,560.06,1.78552,1.76122,0.008,0.228032,0.006208,0.006144,0.007904,0.014016,0.014496,1.46186,0.01456
+694,451.325,2.2157,1.028,0.00784,0.225152,0.006336,0.006528,0.008032,0.014016,0.014784,0.735296,0.010016
+695,697.31,1.43408,1.03427,0.008192,0.223072,0.006304,0.006144,0.007968,0.013952,0.014912,0.743456,0.010272
+696,627.211,1.59436,1.47661,0.008192,0.286304,0.006336,0.006208,0.008,0.01392,0.01456,1.12288,0.010208
+697,562.483,1.77783,1.3312,0.008192,0.23552,0.006304,0.007104,0.007072,0.0144,0.01568,1.02259,0.014336
+698,499.238,2.00305,1.03936,0.008192,0.227296,0.006176,0.006144,0.008192,0.01392,0.014656,0.744832,0.009952
+699,698.797,1.43103,1.02602,0.008128,0.223296,0.006272,0.006144,0.007968,0.014144,0.014432,0.735552,0.01008
+700,723.419,1.38232,1.42131,0.008192,0.22528,0.006144,0.005952,0.007968,0.013824,0.014816,1.12685,0.012288
+701,531.81,1.88037,1.31574,0.008224,0.226176,0.006176,0.007584,0.008064,0.014048,0.014624,1.016,0.014848
+702,512.737,1.95032,1.01789,0.008192,0.223264,0.007328,0.006304,0.007968,0.013248,0.014528,0.726784,0.010272
+703,692.887,1.44324,1.02605,0.008192,0.22512,0.006304,0.006144,0.00816,0.013568,0.01456,0.73392,0.01008
+704,699.394,1.42981,1.26438,0.008128,0.223104,0.006336,0.006272,0.007936,0.013216,0.015456,0.970944,0.012992
+705,604.219,1.65503,1.02371,0.008096,0.223808,0.006144,0.006144,0.008192,0.014336,0.014528,0.73248,0.009984
+706,610.023,1.63928,1.23878,0.022144,0.42432,0.007488,0.006272,0.008,0.014496,0.014912,0.731168,0.009984
+707,602.309,1.66028,1.024,0.008032,0.224832,0.006336,0.006272,0.007904,0.013024,0.015872,0.731488,0.01024
+708,707.182,1.41406,1.02877,0.008192,0.223136,0.006368,0.006592,0.007808,0.012992,0.014336,0.739296,0.010048
+709,654.365,1.5282,1.2105,0.00816,0.409664,0.00624,0.006144,0.008192,0.014336,0.014336,0.733184,0.01024
+710,616.079,1.62317,1.8831,0.007136,0.227104,0.006336,0.006176,0.008,0.014112,0.014528,1.58845,0.011264
+711,441.142,2.26685,1.03322,0.008224,0.224224,0.006144,0.006144,0.009664,0.014176,0.014848,0.739552,0.01024
+712,708.038,1.41235,1.024,0.008192,0.223232,0.006144,0.007264,0.007168,0.01424,0.014336,0.733184,0.01024
+713,626.587,1.59595,1.22266,0.008064,0.408416,0.007232,0.006272,0.006976,0.015488,0.014208,0.745856,0.010144
+714,536.406,1.86426,1.82477,0.008096,0.239712,0.006176,0.006112,0.008192,0.014336,0.014368,1.51507,0.012704
+715,536.266,1.86475,1.0512,0.008064,0.230368,0.006144,0.006144,0.008288,0.01424,0.01536,0.752448,0.010144
+716,678.09,1.47473,1.03014,0.007872,0.223552,0.0072,0.006816,0.007808,0.014112,0.014464,0.73808,0.01024
+717,692.594,1.44385,1.22672,0.008192,0.420864,0.0064,0.00624,0.00816,0.014688,0.01456,0.737408,0.010208
+718,610.796,1.63721,1.77754,0.008192,0.226944,0.0064,0.006304,0.00816,0.014368,0.014304,1.47827,0.014592
+719,451.25,2.21606,1.02518,0.007968,0.225088,0.006336,0.006272,0.007936,0.014144,0.014784,0.732384,0.010272
+720,697.904,1.43286,1.03014,0.008192,0.223232,0.007296,0.00624,0.008448,0.013952,0.014464,0.73808,0.01024
+721,708.957,1.41052,1.41501,0.008192,0.223488,0.006144,0.007264,0.007232,0.014208,0.01552,1.12285,0.010112
+722,522.149,1.91516,1.80208,0.008192,0.227328,0.006144,0.006144,0.008192,0.01408,0.014432,1.49462,0.022944
+723,453.901,2.20312,1.03398,0.008192,0.23072,0.006336,0.006304,0.008,0.014112,0.015008,0.7352,0.010112
+724,703.297,1.42188,1.03059,0.008128,0.225344,0.006592,0.006144,0.008224,0.01424,0.0144,0.73728,0.01024
+725,693.826,1.44128,1.4224,0.008192,0.223232,0.006176,0.006112,0.008192,0.014336,0.014336,1.13165,0.010176
+726,532.052,1.87952,1.77971,0.008192,0.227264,0.006208,0.006176,0.00816,0.014336,0.015424,1.47962,0.014336
+727,464.504,2.15283,1.04736,0.006944,0.229376,0.006144,0.006144,0.008192,0.014208,0.014464,0.751616,0.010272
+728,676.857,1.47742,1.03629,0.008192,0.224576,0.006336,0.006016,0.008,0.013248,0.015392,0.74544,0.009088
+729,701.79,1.42493,1.40902,0.008192,0.223232,0.008032,0.006304,0.007808,0.013952,0.014688,1.11661,0.010208
+730,541.906,1.84534,1.32419,0.008192,0.227328,0.006144,0.006144,0.008192,0.014336,0.014336,1.02352,0.016
+731,499.208,2.00317,1.03219,0.008224,0.225248,0.006144,0.006144,0.008192,0.014144,0.014528,0.739328,0.01024
+732,660.379,1.51428,1.03462,0.008192,0.229504,0.006368,0.006176,0.008192,0.014016,0.014656,0.73728,0.01024
+733,713.402,1.40173,1.43478,0.008192,0.22528,0.006144,0.007456,0.008032,0.014336,0.014816,1.13885,0.01168
+734,539.8,1.85254,1.38038,0.008032,0.226816,0.006336,0.006688,0.008192,0.01376,0.014304,1.08192,0.014336
+735,500.672,1.99731,1.03629,0.008192,0.224864,0.006336,0.006368,0.008192,0.014336,0.014336,0.743264,0.0104
+736,700.41,1.42773,1.02195,0.008192,0.224544,0.006304,0.00672,0.008192,0.014016,0.014688,0.729056,0.01024
+737,682.496,1.46521,1.30458,0.008192,0.223232,0.006144,0.006144,0.008192,0.014336,0.014336,1.01142,0.012576
+738,592.507,1.68774,1.03629,0.008064,0.222368,0.006368,0.006304,0.007968,0.013184,0.015488,0.746304,0.01024
+739,454.379,2.20081,1.04029,0.01104,0.233312,0.006304,0.006144,0.009632,0.012896,0.014336,0.736544,0.01008
+740,690.783,1.44763,1.04022,0.00816,0.223488,0.006176,0.007552,0.008032,0.014304,0.01472,0.747808,0.009984
+741,553.401,1.80701,1.3776,0.008192,0.270336,0.021952,0.00672,0.008128,0.013856,0.01856,1.01539,0.014464
+742,689.04,1.45129,1.02605,0.008192,0.227104,0.006368,0.006144,0.00816,0.014016,0.014624,0.7312,0.01024
+743,695.829,1.43713,1.67306,0.008192,0.473088,0.01024,0.006144,0.00816,0.014304,0.014432,1.12835,0.010144
+744,483.389,2.06873,1.03728,0.007104,0.226368,0.006336,0.00656,0.007808,0.014464,0.014336,0.744032,0.010272
+745,708.038,1.41235,1.03706,0.008064,0.225696,0.006336,0.005728,0.006848,0.014496,0.015232,0.744416,0.01024
+746,617.844,1.61853,1.02374,0.008192,0.222432,0.006336,0.006272,0.007904,0.013056,0.015392,0.734176,0.009984
+747,703.417,1.42163,1.89018,0.008096,0.226208,0.007456,0.006304,0.007968,0.014208,0.014688,1.59373,0.01152
+748,436.348,2.29175,1.02893,0.007008,0.227296,0.006144,0.007776,0.008256,0.01392,0.014464,0.733856,0.010208
+749,678.033,1.47485,1.02605,0.008192,0.223232,0.006144,0.006144,0.008192,0.014336,0.01536,0.734208,0.01024
+750,644.38,1.55188,1.03798,0.008192,0.22528,0.006144,0.0072,0.007168,0.014304,0.01584,0.743744,0.010112
+751,556.9,1.79565,1.81485,0.008096,0.243872,0.006336,0.006304,0.008,0.012672,0.015456,1.50003,0.01408
+752,503.349,1.98669,1.04173,0.008192,0.227328,0.00736,0.00624,0.00688,0.014336,0.014336,0.747008,0.010048
+753,677.641,1.47571,1.0383,0.008128,0.223776,0.006336,0.006208,0.008192,0.014144,0.014528,0.746816,0.010176
+754,704.931,1.41858,1.21264,0.006944,0.41104,0.006752,0.006144,0.008192,0.014336,0.014336,0.734592,0.010304
+755,591.822,1.6897,1.85718,0.007808,0.2272,0.006336,0.006304,0.00784,0.014272,0.0144,1.56131,0.011712
+756,442.739,2.25867,1.0281,0.008192,0.224736,0.006368,0.006464,0.008064,0.013952,0.014464,0.735616,0.01024
+757,707.61,1.41321,1.03824,0.008192,0.22464,0.006336,0.00624,0.007904,0.014016,0.014528,0.746208,0.010176
+758,644.481,1.55164,1.2337,0.00832,0.408288,0.006144,0.006336,0.008,0.014336,0.015616,0.75648,0.010176
+759,630.493,1.58606,1.79216,0.00784,0.227008,0.006336,0.006272,0.008,0.012992,0.015648,1.49373,0.014336
+760,399.688,2.50195,1.05354,0.00704,0.245728,0.006144,0.006176,0.00816,0.01424,0.014432,0.741376,0.01024
+761,768.697,1.3009,1.02298,0.007168,0.226592,0.006336,0.006304,0.007872,0.013056,0.015904,0.729504,0.01024
+762,690.842,1.44751,1.22019,0.007872,0.415616,0.006336,0.0064,0.007904,0.014432,0.014304,0.73728,0.010048
+763,621.218,1.60974,1.3945,0.008192,0.228416,0.006304,0.00688,0.007872,0.013984,0.01488,1.09382,0.014144
+764,487.445,2.05151,1.04365,0.008288,0.22704,0.006336,0.006144,0.008192,0.014336,0.014336,0.7488,0.010176
+765,685.064,1.45972,1.03776,0.008192,0.22528,0.006144,0.006144,0.008192,0.014336,0.014336,0.7448,0.010336
+766,706.329,1.41577,1.43507,0.008192,0.225312,0.006112,0.006144,0.008128,0.01424,0.014496,1.14074,0.011712
+767,525.196,1.90405,1.35549,0.00816,0.226912,0.006336,0.0064,0.008224,0.014208,0.014176,1.05702,0.014048
+768,509.168,1.96399,1.03597,0.008192,0.223392,0.007232,0.006624,0.008,0.014208,0.0144,0.743904,0.010016
+769,709.571,1.4093,1.06701,0.008192,0.224768,0.006336,0.006464,0.008192,0.014336,0.014336,0.774144,0.01024
+770,499.39,2.00244,1.44384,0.008192,0.249856,0.007328,0.006272,0.006912,0.014304,0.014336,1.1255,0.011136
+771,596.824,1.67554,1.35987,0.008192,0.24576,0.006144,0.006144,0.008192,0.014336,0.014336,1.04435,0.012416
+772,518.481,1.92871,1.04038,0.008192,0.231424,0.006144,0.0072,0.007136,0.014336,0.014336,0.741376,0.01024
+773,706.511,1.41541,1.05312,0.007104,0.229248,0.006272,0.006144,0.008096,0.014208,0.014464,0.757376,0.010208
+774,672.357,1.4873,1.43386,0.007808,0.223872,0.0072,0.007008,0.007936,0.013952,0.01488,1.13891,0.012288
+775,513.058,1.9491,1.36499,0.008192,0.239616,0.006208,0.00608,0.008192,0.014336,0.014336,0.99328,0.074752
+776,466.834,2.14209,1.07731,0.008128,0.264704,0.006304,0.006144,0.008192,0.014368,0.014304,0.744992,0.010176
+777,708.834,1.41077,1.08157,0.00816,0.25136,0.006336,0.006304,0.007968,0.014112,0.014336,0.762752,0.01024
+778,647.231,1.54504,1.44211,0.00688,0.237568,0.006144,0.006176,0.00816,0.014368,0.014304,1.13616,0.012352
+779,519.995,1.9231,1.05264,0.008128,0.233568,0.006144,0.006144,0.008192,0.014112,0.014016,0.751904,0.010432
+780,769.708,1.29919,1.68755,0.008192,0.4608,0.018208,0.0064,0.008,0.014176,0.01424,1.1473,0.01024
+781,461.521,2.16675,1.03885,0.00816,0.22816,0.007296,0.006304,0.007872,0.013312,0.014528,0.743072,0.010144
+782,721.444,1.38611,1.31248,0.008192,0.22528,0.006144,0.006144,0.007808,0.01408,0.014592,1.01619,0.014048
+783,583.6,1.7135,1.04195,0.008384,0.222432,0.006336,0.006368,0.00784,0.01312,0.01536,0.752128,0.009984
+784,453.876,2.20325,1.07731,0.01024,0.247808,0.006144,0.006176,0.00816,0.014336,0.024416,0.750816,0.009216
+785,693.532,1.44189,1.05677,0.008192,0.227328,0.006144,0.006176,0.00816,0.014336,0.015424,0.760768,0.01024
+786,683.236,1.46362,1.31072,0.008192,0.22528,0.006144,0.007168,0.007168,0.014336,0.014336,1.01552,0.012576
+787,584.35,1.7113,1.04685,0.008128,0.224032,0.006144,0.006176,0.008192,0.014304,0.014336,0.755392,0.010144
+788,638.106,1.56714,1.7489,0.008192,0.458752,0.05728,0.00624,0.022464,0.014368,0.015392,1.15606,0.010144
+789,496.726,2.01318,1.05274,0.00816,0.227232,0.006368,0.006176,0.00816,0.014336,0.014368,0.757568,0.010368
+790,686.787,1.45605,1.04451,0.008192,0.22528,0.006144,0.006144,0.008192,0.014016,0.014656,0.751616,0.010272
+791,589.607,1.69604,1.0199,0.008096,0.22464,0.006592,0.006272,0.007872,0.01408,0.014528,0.727584,0.01024
+792,660.06,1.51501,1.70189,0.008192,0.487104,0.008544,0.007136,0.007168,0.014432,0.01536,1.14371,0.01024
+793,501.715,1.99316,1.04448,0.008288,0.226464,0.006336,0.006112,0.008672,0.014304,0.014496,0.749568,0.01024
+794,676.969,1.47717,1.03821,0.008192,0.223264,0.007552,0.006464,0.008064,0.01408,0.014496,0.745952,0.010144
+795,635.827,1.57275,1.04656,0.008096,0.223136,0.006336,0.006144,0.008064,0.014208,0.014624,0.740928,0.025024
+796,624.152,1.60217,1.8024,0.008352,0.233504,0.006144,0.006112,0.008192,0.014336,0.014336,1.49811,0.013312
+797,474.129,2.10913,1.04211,0.008192,0.230656,0.006336,0.00672,0.008064,0.014464,0.014336,0.7432,0.010144
+798,664.45,1.505,1.04381,0.008192,0.226528,0.006368,0.006272,0.00768,0.013248,0.014336,0.751104,0.01008
+799,673.131,1.4856,1.24278,0.008416,0.409632,0.006336,0.006112,0.008192,0.014336,0.014336,0.765216,0.010208
+800,632.978,1.57983,1.78915,0.008224,0.227264,0.006176,0.006144,0.008192,0.014144,0.014528,1.49027,0.014208
+801,459.682,2.17542,1.03661,0.007936,0.225152,0.006368,0.00672,0.008192,0.014176,0.014496,0.742656,0.010912
+802,718.281,1.39221,1.05498,0.00784,0.22384,0.006176,0.006112,0.008192,0.014336,0.014336,0.763904,0.01024
+803,636.519,1.57104,1.44592,0.008192,0.235584,0.006112,0.006176,0.007776,0.012672,0.014336,1.14483,0.01024
+804,558.761,1.78967,1.79181,0.007872,0.2256,0.006144,0.007552,0.008032,0.01312,0.015904,1.49344,0.014144
+805,445.702,2.24365,1.03594,0.007872,0.227296,0.006368,0.006112,0.007968,0.014272,0.014944,0.741024,0.01008
+806,667.318,1.49854,1.04944,0.008192,0.224096,0.006304,0.006016,0.00816,0.014368,0.014304,0.75776,0.01024
+807,710.988,1.40649,1.44858,0.00816,0.223904,0.006144,0.006144,0.008032,0.014496,0.014336,1.15712,0.01024
+808,544.427,1.83679,1.78211,0.008,0.229408,0.006304,0.006304,0.008416,0.014144,0.014496,1.4807,0.014336
+809,448.14,2.23145,1.0377,0.00832,0.2272,0.006144,0.006304,0.008032,0.014336,0.014336,0.742976,0.010048
+810,696.243,1.43628,1.03578,0.007904,0.222848,0.006368,0.006304,0.007904,0.013216,0.014336,0.746592,0.010304
+811,709.633,1.40918,1.26147,0.008192,0.44544,0.006368,0.006304,0.007936,0.014816,0.014464,0.747808,0.010144
+812,570.831,1.75183,1.40864,0.007808,0.227232,0.006368,0.006272,0.00672,0.014368,0.014304,1.11206,0.013504
+813,492.16,2.03186,1.04582,0.008192,0.225184,0.00624,0.006144,0.008192,0.014272,0.0144,0.753152,0.010048
+814,712.1,1.4043,1.03834,0.007872,0.225184,0.00656,0.006144,0.008192,0.014336,0.014336,0.745472,0.01024
+815,465.693,2.14734,1.49021,0.008192,0.262176,0.007168,0.006272,0.007168,0.014176,0.015712,1.15926,0.01008
+816,787.238,1.27026,1.40435,0.008192,0.233024,0.006336,0.006304,0.00816,0.013984,0.014816,1.09978,0.01376
+817,495.075,2.0199,1.05869,0.008192,0.230464,0.006304,0.006272,0.008,0.01424,0.014752,0.760256,0.010208
+818,680.512,1.46948,1.03795,0.00832,0.226176,0.006336,0.006272,0.008032,0.013152,0.01568,0.743648,0.010336
+819,696.421,1.43591,1.44794,0.008192,0.224608,0.006336,0.006112,0.007968,0.01424,0.01424,1.15504,0.0112
+820,547.264,1.82727,1.39117,0.00816,0.227936,0.006144,0.008096,0.007904,0.013856,0.014656,1.09171,0.012704
+821,484.791,2.06274,1.04467,0.008064,0.225408,0.006336,0.006112,0.007872,0.01408,0.014592,0.751968,0.01024
+822,694.59,1.4397,1.05718,0.008128,0.223392,0.006368,0.006112,0.008064,0.013952,0.014912,0.766016,0.01024
+823,698.261,1.43213,1.42746,0.008,0.224608,0.0064,0.005728,0.007168,0.014336,0.014336,1.13459,0.012288
+824,520.921,1.91968,1.09011,0.00688,0.249184,0.006336,0.006368,0.006592,0.014144,0.014336,0.775808,0.010464
+825,454.455,2.20044,1.06906,0.01024,0.237568,0.006176,0.006112,0.008192,0.014272,0.0144,0.761856,0.01024
+826,653.27,1.53076,1.06278,0.008128,0.225792,0.006336,0.006304,0.007904,0.012672,0.015392,0.770048,0.010208
+827,703.538,1.42139,1.43011,0.008064,0.223424,0.006336,0.006304,0.007936,0.014336,0.014784,1.13664,0.012288
+828,547.997,1.82483,1.04653,0.008192,0.22528,0.0072,0.006144,0.008224,0.013248,0.015776,0.752224,0.01024
+829,469.267,2.13098,1.08138,0.01024,0.243712,0.007776,0.006304,0.007968,0.014176,0.014336,0.766624,0.01024
+830,690.201,1.44885,1.05616,0.007968,0.225088,0.006496,0.006208,0.008192,0.014368,0.014304,0.763424,0.010112
+831,686.04,1.45764,1.31773,0.00816,0.223744,0.006336,0.006144,0.008,0.014272,0.014816,1.02387,0.012384
+832,581.405,1.71997,1.05062,0.008192,0.22528,0.006144,0.007744,0.007968,0.014048,0.014688,0.75632,0.01024
+833,434.704,2.30042,1.15302,0.019552,0.305216,0.006336,0.006272,0.014912,0.02864,0.016032,0.745824,0.01024
+834,651.659,1.53455,1.04893,0.00784,0.231936,0.006336,0.007296,0.00704,0.014336,0.0144,0.749504,0.01024
+835,539.551,1.85339,1.35437,0.008128,0.258752,0.006176,0.006112,0.008192,0.014336,0.014336,1.02403,0.014304
+836,665.637,1.50232,1.0785,0.008224,0.239072,0.006336,0.006272,0.007904,0.01408,0.025248,0.759904,0.011456
+837,517.009,1.9342,1.06144,0.010496,0.239328,0.006336,0.006272,0.00768,0.014208,0.014368,0.752512,0.01024
+838,747.241,1.33826,1.05584,0.008192,0.228864,0.006656,0.006176,0.00816,0.014176,0.014496,0.758976,0.010144
+839,696.717,1.4353,1.31456,0.008192,0.22512,0.006304,0.006144,0.008224,0.014304,0.015584,1.01664,0.014048
+840,560.597,1.78381,1.04861,0.008192,0.22528,0.006144,0.006144,0.008192,0.014176,0.014496,0.756832,0.009152
+841,652.229,1.5332,1.71619,0.008192,0.478816,0.008608,0.006144,0.008192,0.014336,0.014336,1.16707,0.010496
+842,392.826,2.54565,1.11021,0.024,0.272352,0.006368,0.006336,0.007968,0.014208,0.01472,0.754016,0.01024
+843,856.814,1.16711,1.33786,0.008224,0.244352,0.007328,0.006144,0.007008,0.014336,0.014336,1.02195,0.014176
+844,564.421,1.77173,1.05174,0.008192,0.223232,0.007328,0.007008,0.008192,0.026624,0.014336,0.746784,0.010048
+845,707.243,1.41394,1.72806,0.008128,0.4488,0.0512,0.006176,0.00816,0.014336,0.015424,1.16426,0.011584
+846,460.328,2.17236,1.0512,0.00832,0.229504,0.006368,0.00624,0.008192,0.014336,0.014336,0.754688,0.009216
+847,678.989,1.47278,1.0671,0.00816,0.241536,0.006336,0.006176,0.008192,0.014336,0.014368,0.758976,0.009024
+848,607.265,1.64673,1.03888,0.008064,0.22336,0.006368,0.006688,0.008192,0.014336,0.014336,0.747488,0.010048
+849,430.682,2.3219,1.72016,0.007808,0.478016,0.009792,0.006304,0.007744,0.01472,0.0144,1.1713,0.01008
+850,723.931,1.38135,1.07898,0.007808,0.246272,0.006144,0.00784,0.007904,0.014304,0.025024,0.75344,0.01024
+851,403.348,2.47925,1.09677,0.008224,0.251456,0.006336,0.006304,0.007936,0.014208,0.014528,0.776512,0.011264
+852,1276.81,0.783203,1.04211,0.008192,0.231488,0.006304,0.006144,0.007872,0.013856,0.01472,0.743456,0.01008
+853,660.166,1.51477,1.69034,0.007072,0.474464,0.008864,0.006144,0.008192,0.014336,0.015456,1.1457,0.010112
+854,482.024,2.07458,1.06352,0.008064,0.227776,0.006336,0.006528,0.00816,0.014112,0.028896,0.7536,0.010048
+855,667.536,1.49805,1.05062,0.008192,0.22528,0.00624,0.007296,0.006944,0.014336,0.024576,0.74752,0.01024
+856,644.684,1.55115,1.04262,0.008096,0.223296,0.006336,0.007328,0.00704,0.014336,0.021728,0.744224,0.01024
+857,645.192,1.54993,1.91693,0.008192,0.227328,0.006176,0.006112,0.024512,0.014368,0.014368,1.60493,0.010944
+858,435.444,2.29651,1.0568,0.008192,0.2248,0.006336,0.006272,0.008032,0.014144,0.02304,0.756768,0.009216
+859,681.928,1.46643,1.06835,0.022528,0.223264,0.006112,0.006144,0.008192,0.028672,0.014336,0.749024,0.01008
+860,630.445,1.58618,1.04666,0.00816,0.221312,0.0072,0.007136,0.007456,0.013024,0.014336,0.758816,0.009216
+861,596.042,1.67773,1.81254,0.007808,0.233952,0.007296,0.006272,0.008,0.013216,0.015904,1.50781,0.012288
+862,459.09,2.17822,1.06346,0.008064,0.225952,0.006144,0.006144,0.008192,0.014336,0.022528,0.761856,0.01024
+863,696.895,1.43494,1.07133,0.008096,0.22528,0.006368,0.006304,0.007936,0.030592,0.014784,0.761728,0.01024
+864,605.917,1.65039,1.06496,0.008192,0.224544,0.0064,0.006624,0.008192,0.014336,0.021856,0.764256,0.01056
+865,666.233,1.50098,1.9039,0.00832,0.225248,0.006176,0.006112,0.008192,0.014336,0.022112,1.60122,0.012192
+866,422.638,2.36609,1.05952,0.007968,0.22576,0.006304,0.006464,0.008128,0.013824,0.023104,0.757728,0.01024
+867,683.236,1.46362,1.07078,0.007808,0.225888,0.006144,0.006144,0.008192,0.030528,0.014528,0.76128,0.010272
+868,624.962,1.6001,1.05267,0.008192,0.22912,0.006368,0.006176,0.00816,0.013696,0.021056,0.749664,0.01024
+869,686.672,1.4563,1.93126,0.008192,0.227328,0.007392,0.006272,0.007904,0.013248,0.02976,1.6201,0.011072
+870,223.404,4.4762,1.34349,0.008192,0.256,0.006144,0.006144,0.008192,0.013984,0.014368,1.01613,0.014336
+871,663.535,1.50708,1.05344,0.008512,0.229696,0.006272,0.006144,0.008192,0.014336,0.014368,0.75568,0.01024
+872,672.357,1.4873,1.68067,0.008192,0.468032,0.009152,0.006144,0.008192,0.014336,0.014336,1.14205,0.01024
+873,457.066,2.18787,1.05571,0.007168,0.243616,0.00624,0.006144,0.008192,0.014336,0.015616,0.744192,0.010208
+874,659.475,1.51636,1.0711,0.008192,0.239616,0.006144,0.006144,0.008192,0.014368,0.014304,0.763904,0.01024
+875,547.52,1.82642,1.05325,0.008032,0.234176,0.006144,0.006144,0.008192,0.014272,0.0144,0.751616,0.010272
+876,839.774,1.1908,1.82477,0.008192,0.249856,0.006144,0.007328,0.007008,0.014336,0.014336,1.50451,0.013056
+877,459.399,2.17676,1.06115,0.008064,0.237888,0.006336,0.006144,0.008224,0.013696,0.01456,0.756096,0.010144
+878,683.35,1.46338,1.0785,0.008192,0.238848,0.006912,0.006144,0.008192,0.014048,0.014624,0.771264,0.010272
+879,618.825,1.61597,1.06906,0.007968,0.235744,0.006144,0.006144,0.008192,0.014336,0.014336,0.767264,0.008928
+880,653.843,1.52942,1.83811,0.008192,0.239648,0.006112,0.006144,0.008192,0.014368,0.014304,1.52781,0.013344
+881,412.612,2.42358,1.06771,0.008128,0.236064,0.006336,0.006144,0.008128,0.0144,0.015552,0.762688,0.010272
+882,796.887,1.25488,1.05062,0.008192,0.229376,0.007328,0.006304,0.008,0.013216,0.015488,0.75248,0.01024
+883,658.098,1.51953,1.24083,0.008192,0.4096,0.006144,0.006144,0.008192,0.014336,0.015968,0.762144,0.010112
+884,605.201,1.65234,1.80262,0.008192,0.231296,0.006336,0.006304,0.008064,0.013696,0.014784,1.50102,0.012928
+885,447.748,2.2334,1.05088,0.008064,0.231808,0.00736,0.006304,0.008736,0.013856,0.014592,0.74992,0.01024
+886,683.464,1.46313,1.05571,0.008864,0.23584,0.0072,0.007136,0.007968,0.014048,0.014368,0.750048,0.01024
+887,691.075,1.44702,1.22691,0.006752,0.4096,0.006176,0.006112,0.008192,0.014336,0.014336,0.751392,0.010016
+888,599.707,1.66748,1.85869,0.007872,0.227456,0.006336,0.00624,0.008192,0.014336,0.014368,1.56054,0.013344
+889,444.686,2.24878,1.04755,0.0072,0.228832,0.006368,0.006432,0.008192,0.014304,0.014368,0.751616,0.01024
+890,680.625,1.46924,1.04858,0.008192,0.226816,0.006304,0.006528,0.00816,0.014336,0.014464,0.753536,0.01024
+891,662.998,1.5083,1.2239,0.008192,0.407552,0.006176,0.006112,0.008224,0.014304,0.015424,0.747744,0.010176
+892,628.896,1.59009,1.37277,0.007136,0.226976,0.006368,0.006272,0.007744,0.01392,0.014784,1.07562,0.013952
+893,494.149,2.02368,1.04464,0.008352,0.22736,0.006112,0.006144,0.008192,0.014112,0.0144,0.749728,0.01024
+894,688.288,1.45288,1.04954,0.00816,0.224192,0.006176,0.006144,0.008224,0.013856,0.014464,0.75808,0.01024
+895,636.618,1.5708,1.50733,0.018304,0.258208,0.007552,0.01504,0.008096,0.014336,0.014336,1.16122,0.01024
+896,482.791,2.07129,1.79795,0.008032,0.247968,0.006144,0.006144,0.008192,0.01408,0.014592,1.47866,0.014144
+897,486.981,2.05347,1.04774,0.007968,0.2288,0.006336,0.006848,0.008128,0.013856,0.01488,0.750624,0.010304
+898,667.862,1.49731,1.04611,0.008128,0.223712,0.006144,0.006144,0.008192,0.014336,0.014336,0.755072,0.010048
+899,687.479,1.45459,1.43501,0.008192,0.223232,0.006144,0.006144,0.008192,0.013696,0.020832,1.13853,0.010048
+900,512.641,1.95068,1.80019,0.008192,0.229056,0.006368,0.006208,0.007872,0.014688,0.014336,1.50074,0.012736
+901,481.656,2.07617,1.04653,0.008192,0.229376,0.006144,0.006144,0.008192,0.014336,0.014336,0.749568,0.01024
+902,690.027,1.44922,1.05626,0.007904,0.2272,0.006368,0.00624,0.007904,0.01392,0.014336,0.762368,0.010016
+903,489.425,2.04321,1.45203,0.008224,0.228576,0.00672,0.006144,0.007744,0.014048,0.014848,1.15549,0.01024
+904,655.465,1.52563,1.87187,0.016416,0.29472,0.006304,0.006144,0.008192,0.014144,0.01456,1.49821,0.013184
+905,445.363,2.24536,1.05984,0.008192,0.233472,0.006144,0.006144,0.008224,0.014208,0.014432,0.758976,0.010048
+906,698.261,1.43213,1.0441,0.007776,0.227232,0.006368,0.006272,0.007968,0.014592,0.01456,0.74928,0.010048
+907,651.399,1.53516,1.22755,0.008064,0.408256,0.006336,0.006176,0.008032,0.014496,0.014336,0.751616,0.01024
+908,652.125,1.53345,1.35997,0.007808,0.227232,0.0064,0.006368,0.007744,0.01424,0.014464,1.06144,0.014272
+909,490.187,2.04004,1.04387,0.007968,0.227616,0.007264,0.006304,0.008576,0.014048,0.014592,0.747296,0.010208
+910,698.976,1.43066,1.04278,0.008224,0.225312,0.006368,0.006144,0.00784,0.014176,0.014304,0.750176,0.01024
+911,708.038,1.41235,1.43616,0.007104,0.225312,0.007264,0.006336,0.007904,0.01328,0.015776,1.1431,0.01008
+912,459.553,2.17603,1.38493,0.007968,0.233888,0.006464,0.006112,0.009824,0.014272,0.014336,1.07926,0.0128
+913,567.392,1.76245,1.05542,0.008224,0.231712,0.006336,0.006336,0.007904,0.013888,0.014592,0.756288,0.010144
+914,686.442,1.45679,1.05507,0.008096,0.227296,0.006336,0.006272,0.00816,0.014208,0.014304,0.760192,0.010208
+915,679.383,1.47192,1.43891,0.008192,0.228448,0.006368,0.006272,0.008,0.014272,0.014656,1.14093,0.011776
+916,537.533,1.86035,1.38573,0.007872,0.22928,0.006336,0.007584,0.008224,0.013184,0.01552,1.08394,0.013792
+917,486.172,2.05688,1.05693,0.008192,0.229632,0.006176,0.006144,0.019552,0.014432,0.014528,0.748064,0.010208
+918,706.085,1.41626,1.04448,0.008192,0.226912,0.006368,0.006336,0.008064,0.014112,0.014688,0.749568,0.01024
+919,687.825,1.45386,1.4295,0.008192,0.227328,0.007168,0.006304,0.007008,0.014336,0.014336,1.13386,0.010976
+920,538.947,1.85547,1.36397,0.008192,0.228768,0.006368,0.0064,0.00752,0.013088,0.015424,1.06493,0.01328
+921,437.841,2.28394,1.10214,0.008192,0.255392,0.006336,0.006304,0.008416,0.022432,0.027072,0.75776,0.01024
+922,829.318,1.20581,1.04294,0.008064,0.22592,0.00624,0.00768,0.008,0.014112,0.014816,0.747872,0.01024
+923,691.658,1.4458,1.3353,0.008192,0.226912,0.00656,0.006144,0.008192,0.014336,0.014336,1.0377,0.012928
+924,567.942,1.76074,1.04659,0.008224,0.223648,0.006144,0.006176,0.00816,0.014336,0.014336,0.75568,0.009888
+925,680.851,1.46875,1.68499,0.008064,0.468576,0.009024,0.006144,0.008192,0.014336,0.014336,1.14602,0.010304
+926,466.196,2.14502,1.03859,0.00784,0.228064,0.006176,0.007168,0.007136,0.014336,0.014336,0.743424,0.010112
+927,703.901,1.42065,1.33517,0.008128,0.225024,0.00704,0.00624,0.008032,0.014336,0.014304,1.03853,0.013536
+928,582.978,1.71533,1.0303,0.008032,0.221504,0.007328,0.006592,0.00784,0.013056,0.014336,0.741376,0.01024
+929,621.831,1.60815,1.69933,0.008192,0.485376,0.010144,0.00624,0.007904,0.014624,0.014336,1.14246,0.010048
+930,457.705,2.18481,1.10186,0.008192,0.266368,0.00752,0.006336,0.023008,0.014336,0.014336,0.751488,0.010272
+931,784.524,1.27466,1.06701,0.008192,0.227328,0.006144,0.007168,0.007168,0.014336,0.014336,0.77376,0.008576
+932,622.02,1.60767,1.04285,0.007904,0.225536,0.006336,0.0064,0.008192,0.014336,0.014272,0.749632,0.01024
+933,657.147,1.52173,1.72378,0.00816,0.465984,0.0168,0.006304,0.007936,0.014176,0.014848,1.17939,0.010176
+934,473.252,2.11304,1.05059,0.007808,0.226016,0.006176,0.006144,0.008192,0.014176,0.014528,0.757248,0.010304
+935,694.002,1.44092,1.04442,0.008064,0.22544,0.006336,0.006304,0.008352,0.014368,0.014304,0.751168,0.01008
+936,609.524,1.64062,1.05974,0.00832,0.224032,0.006208,0.007168,0.007104,0.014336,0.014368,0.751584,0.026624
+937,678.595,1.47363,1.89971,0.008192,0.22528,0.006144,0.007616,0.007904,0.014272,0.014528,1.60413,0.011648
+938,436.395,2.2915,1.04576,0.009632,0.225888,0.007296,0.0064,0.006784,0.014336,0.014336,0.750848,0.01024
+939,657.042,1.52197,1.05683,0.008192,0.234688,0.006336,0.006944,0.008192,0.014336,0.014336,0.753696,0.010112
+940,656.41,1.52344,1.24077,0.008192,0.4096,0.006144,0.006176,0.00816,0.014336,0.014336,0.749376,0.024448
+941,631.514,1.5835,1.80838,0.008192,0.229408,0.006112,0.006176,0.00816,0.014336,0.014336,1.50861,0.013056
+942,446.674,2.23877,1.03994,0.008192,0.225312,0.006112,0.008032,0.008,0.013792,0.014528,0.745984,0.009984
+943,685.753,1.45825,1.03571,0.008128,0.223424,0.007264,0.006304,0.006912,0.014496,0.014176,0.74496,0.010048
+944,672.688,1.48657,1.2247,0.008192,0.41152,0.006272,0.006144,0.008128,0.0144,0.014336,0.745472,0.01024
+945,591.139,1.69165,1.80362,0.008128,0.2256,0.006176,0.006112,0.008192,0.014112,0.013696,1.50774,0.013856
+946,469.079,2.13184,1.05235,0.008192,0.224704,0.006368,0.006272,0.008192,0.013824,0.014688,0.75968,0.010432
+947,702.935,1.42261,1.05091,0.007808,0.226112,0.006176,0.006144,0.00816,0.014336,0.014336,0.757472,0.010368
+948,545.406,1.8335,1.27395,0.008192,0.462464,0.006368,0.006304,0.007936,0.014624,0.014304,0.743424,0.010336
+949,697.429,1.43384,1.8,0.008064,0.235072,0.006336,0.006304,0.008416,0.013984,0.014784,1.49306,0.013984
+950,462.146,2.16382,1.04477,0.00832,0.230528,0.006368,0.006304,0.007744,0.013248,0.015936,0.747136,0.009184
+951,663.642,1.50684,1.0504,0.008192,0.22528,0.007296,0.006528,0.007936,0.013056,0.015584,0.75632,0.010208
+952,667.101,1.49902,1.42954,0.008192,0.224608,0.006816,0.0072,0.007072,0.014208,0.014528,1.13664,0.010272
+953,564.732,1.77075,1.78829,0.008096,0.229472,0.006336,0.006272,0.007872,0.014208,0.014688,1.48701,0.014336
+954,435.698,2.29517,1.05763,0.008096,0.227488,0.006368,0.006336,0.00784,0.013024,0.014432,0.763808,0.01024
+955,714.709,1.39917,1.0344,0.008192,0.225184,0.006304,0.006176,0.00784,0.01392,0.01456,0.741984,0.01024
+956,687.364,1.45483,1.47046,0.008192,0.243712,0.006272,0.007264,0.006976,0.014304,0.015424,1.15808,0.01024
+957,522.916,1.91235,1.41782,0.008032,0.250848,0.006144,0.0072,0.007136,0.014336,0.014336,1.09568,0.014112
+958,494.567,2.02197,1.04266,0.008288,0.22656,0.006304,0.006304,0.007904,0.014272,0.014624,0.74816,0.01024
+959,692.945,1.44312,1.04448,0.008192,0.226688,0.006368,0.006208,0.007968,0.014272,0.014976,0.749568,0.01024
+960,652.541,1.53247,1.4352,0.007872,0.223776,0.006176,0.006112,0.008192,0.014336,0.014368,1.14435,0.010016
+961,553.963,1.80518,1.79667,0.008704,0.225632,0.006304,0.007136,0.00704,0.014336,0.014368,1.4991,0.014048
+962,458.73,2.17993,1.06118,0.008032,0.227552,0.006304,0.006176,0.00816,0.014368,0.015456,0.7648,0.010336
+963,669.828,1.49292,1.03984,0.00816,0.22528,0.006336,0.006368,0.008192,0.014336,0.014336,0.745472,0.01136
+964,665.367,1.50293,1.45126,0.008032,0.223392,0.006176,0.00752,0.00864,0.01264,0.014176,1.16061,0.01008
+965,565.98,1.76685,1.79482,0.008,0.22976,0.006368,0.006272,0.008032,0.013984,0.014688,1.49338,0.014336
+966,433.073,2.30908,1.05254,0.008192,0.2288,0.006336,0.006272,0.008032,0.014016,0.015008,0.755616,0.010272
+967,688.403,1.45264,1.04918,0.008064,0.224,0.006112,0.006208,0.008128,0.014368,0.014304,0.75776,0.01024
+968,688.866,1.45166,1.26237,0.006976,0.436192,0.006144,0.006144,0.008192,0.014336,0.014336,0.759808,0.01024
+969,575.604,1.7373,1.81626,0.00784,0.227904,0.007232,0.006144,0.007168,0.014272,0.014336,1.51757,0.013792
+970,454.001,2.20264,1.04509,0.008064,0.224,0.006144,0.006304,0.008032,0.014336,0.014336,0.753664,0.010208
+971,698.618,1.4314,1.05174,0.008192,0.22528,0.006144,0.006176,0.00816,0.014176,0.014496,0.759136,0.009984
+972,636.42,1.57129,1.42877,0.008192,0.224768,0.00656,0.00624,0.007424,0.013056,0.015648,1.13702,0.009856
+973,561.096,1.78223,1.33933,0.0096,0.22752,0.006368,0.006112,0.008448,0.014304,0.014304,1.03635,0.01632
+974,405.946,2.46338,1.10797,0.008192,0.266208,0.006176,0.006144,0.008192,0.013984,0.01472,0.7752,0.009152
+975,978.5,1.02197,1.0657,0.00816,0.229376,0.006368,0.006272,0.007872,0.013184,0.015424,0.768672,0.010368
+976,682.212,1.46582,1.42586,0.00704,0.2264,0.006336,0.006464,0.007872,0.014176,0.014784,1.13283,0.009952
+977,535.075,1.8689,1.37408,0.008192,0.227328,0.006176,0.006112,0.008192,0.014336,0.015584,1.07395,0.014208
+978,501.285,1.99487,1.05398,0.008192,0.226336,0.006368,0.006912,0.008192,0.014336,0.014336,0.759136,0.010176
+979,687.941,1.45361,1.06134,0.008064,0.22496,0.006432,0.00624,0.007872,0.013152,0.015872,0.768512,0.01024
+980,700.171,1.42822,1.45613,0.007936,0.223488,0.006144,0.006144,0.008192,0.01408,0.014592,1.1633,0.012256
+981,519.863,1.92358,1.40186,0.00864,0.22768,0.006336,0.006176,0.007808,0.014112,0.014208,1.10256,0.014336
+982,485.423,2.06006,1.05923,0.008128,0.223552,0.006336,0.006112,0.008096,0.013856,0.014368,0.768544,0.01024
+983,712.844,1.40283,1.06352,0.00816,0.225152,0.006912,0.006144,0.007904,0.014112,0.01472,0.769952,0.010464
+984,507.748,1.96948,1.4889,0.007872,0.243808,0.006368,0.006144,0.007968,0.022496,0.028928,1.15302,0.012288
+985,619.386,1.6145,1.37878,0.007808,0.227488,0.006368,0.006272,0.008096,0.014208,0.014496,1.07984,0.014208
+986,490.363,2.03931,1.06701,0.008192,0.227328,0.022112,0.006304,0.008384,0.0144,0.014336,0.755712,0.01024
+987,702.693,1.4231,1.04448,0.008192,0.22528,0.006144,0.008224,0.00816,0.014336,0.014336,0.749568,0.01024
+988,688.403,1.45264,1.45594,0.007808,0.223584,0.006336,0.006272,0.007968,0.014048,0.014624,1.16365,0.011648
+989,533.82,1.87329,1.08544,0.008192,0.241664,0.007648,0.006112,0.007968,0.013088,0.014336,0.776192,0.01024
+990,457.807,2.18433,1.05882,0.011616,0.229824,0.006368,0.006144,0.008224,0.014304,0.014336,0.75776,0.01024
+991,677.361,1.47632,1.05245,0.007808,0.224096,0.006144,0.006144,0.007712,0.014272,0.01488,0.761312,0.01008
+992,710.125,1.4082,1.46698,0.007168,0.2248,0.006368,0.00624,0.008,0.013984,0.014528,1.17402,0.011872
+993,517.76,1.9314,1.38819,0.008192,0.237568,0.006176,0.006112,0.008192,0.014304,0.0144,1.07926,0.013984
+994,502.577,1.98975,1.06893,0.008288,0.225824,0.006144,0.008192,0.007872,0.01392,0.014848,0.773568,0.010272
+995,698.738,1.43115,1.04653,0.008192,0.22464,0.006368,0.006144,0.00784,0.014368,0.01488,0.753856,0.01024
+996,659.051,1.51733,1.43462,0.007168,0.224544,0.006368,0.006272,0.007968,0.014048,0.014848,1.14112,0.012288
+997,541.012,1.84839,1.39254,0.008192,0.249888,0.006112,0.006144,0.007936,0.01408,0.014272,1.07168,0.01424
+998,503.875,1.98462,1.05149,0.008192,0.226144,0.006144,0.007936,0.00784,0.01408,0.014784,0.756096,0.010272
+999,668.298,1.49634,1.0487,0.007808,0.223712,0.006144,0.007712,0.007904,0.013056,0.015424,0.757696,0.009248
+1000,684.263,1.46143,1.32102,0.008192,0.224448,0.006368,0.006624,0.00832,0.014144,0.014528,1.02531,0.013088
+1001,429.215,2.32983,1.11645,0.008032,0.268544,0.006336,0.006144,0.007968,0.01392,0.016608,0.778656,0.01024
+1002,909.01,1.1001,1.27622,0.01008,0.4264,0.006208,0.00624,0.008096,0.014336,0.014336,0.780288,0.01024
+1003,586.904,1.70386,1.0585,0.007808,0.224288,0.006112,0.006144,0.008192,0.014368,0.014304,0.765952,0.011328
+1004,692.243,1.44458,1.05472,0.008096,0.225376,0.006144,0.006144,0.008192,0.014176,0.014528,0.761824,0.01024
+1005,623.44,1.604,1.0479,0.008192,0.223232,0.006176,0.007232,0.007072,0.014336,0.014336,0.757248,0.01008
+1006,703.417,1.42163,1.80838,0.007872,0.223552,0.0072,0.006272,0.007008,0.014336,0.014336,1.51347,0.014336
+1007,445.556,2.24438,1.06896,0.008064,0.237984,0.006144,0.006144,0.008224,0.014144,0.014496,0.763424,0.010336
+1008,675.685,1.47998,1.04672,0.008128,0.223328,0.006176,0.006112,0.008192,0.01424,0.014432,0.756896,0.009216
+1009,675.908,1.47949,1.23296,0.008096,0.407616,0.006208,0.006144,0.008032,0.014272,0.014528,0.75904,0.009024
+1010,538.806,1.85596,1.82922,0.007776,0.225856,0.006432,0.006144,0.008032,0.014176,0.014368,1.52147,0.02496
+1011,462.459,2.16235,1.0616,0.008128,0.236512,0.006144,0.006176,0.00816,0.014368,0.014304,0.75776,0.010048
+1012,693.297,1.44238,1.05894,0.00816,0.22304,0.006336,0.006304,0.007744,0.014048,0.014784,0.768384,0.010144
+1013,692.945,1.44312,1.2297,0.008288,0.406304,0.007232,0.00624,0.007008,0.014336,0.014464,0.755616,0.010208
+1014,588.083,1.70044,1.83296,0.008192,0.227328,0.006176,0.006112,0.008192,0.01408,0.014432,1.53584,0.012608
+1015,449.369,2.22534,1.0641,0.008128,0.227392,0.007232,0.006528,0.007808,0.014464,0.014272,0.766848,0.011424
+1016,676.913,1.47729,1.06474,0.008192,0.22528,0.006144,0.006176,0.00816,0.014208,0.014496,0.772,0.01008
+1017,647.794,1.5437,1.22944,0.006624,0.4096,0.006176,0.006112,0.008224,0.014304,0.01552,0.75248,0.0104
+1018,620.794,1.61084,1.82067,0.007936,0.223232,0.006368,0.00752,0.007936,0.013248,0.0144,1.5257,0.014336
+1019,325.26,3.07446,1.08806,0.008096,0.225952,0.006176,0.006304,0.008,0.02864,0.014368,0.763904,0.026624
+1020,539.8,1.85254,1.47248,0.008224,0.245056,0.006368,0.006272,0.007744,0.013056,0.015744,1.15981,0.010208
+1021,386.743,2.58569,1.14845,0.008192,0.3192,0.006464,0.006112,0.008192,0.014336,0.014336,0.76128,0.010336
+1022,960.375,1.04126,1.69718,0.008192,0.468032,0.009152,0.006144,0.008192,0.014336,0.014336,1.15866,0.010144
+1023,491.54,2.03442,1.10797,0.008192,0.278432,0.006272,0.006112,0.008192,0.014336,0.014336,0.761856,0.01024
+1024,670.267,1.49194,1.2735,0.008192,0.442144,0.006336,0.006176,0.00816,0.014368,0.014336,0.76368,0.010112
+1025,605.559,1.65137,1.39264,0.008192,0.236672,0.006368,0.006464,0.007776,0.01456,0.014848,1.08445,0.013312
+1026,468.757,2.1333,1.06909,0.008192,0.231264,0.006304,0.006144,0.008192,0.014208,0.014464,0.771136,0.009184
+1027,638.006,1.56738,1.06912,0.008224,0.241696,0.006144,0.006144,0.008192,0.014368,0.015584,0.758528,0.01024
+1028,760.914,1.31421,1.42618,0.008096,0.226144,0.006176,0.007296,0.007008,0.014336,0.014336,1.13254,0.01024
+1029,512.577,1.95093,1.3849,0.00832,0.230208,0.006272,0.007168,0.007136,0.014208,0.01552,1.08221,0.013856
+1030,520.259,1.92212,1.06723,0.008192,0.229664,0.006144,0.00768,0.008064,0.012928,0.015584,0.768768,0.010208
+1031,686.442,1.45679,1.05149,0.00816,0.226176,0.006176,0.007424,0.007968,0.01328,0.015392,0.756672,0.01024
+1032,685.294,1.45923,1.46406,0.008192,0.227104,0.006304,0.006208,0.008,0.014016,0.01456,1.16765,0.012032
+1033,352.132,2.83984,1.10211,0.008,0.22784,0.006112,0.006176,0.00816,0.028672,0.014336,0.792576,0.01024
+1034,726.37,1.37671,1.09258,0.010592,0.244224,0.006272,0.006144,0.007968,0.014048,0.01488,0.778208,0.01024
+1035,694.826,1.43921,1.05677,0.008224,0.230432,0.006336,0.006528,0.00784,0.014496,0.014944,0.757728,0.01024
+1036,628.993,1.58984,1.44371,0.007808,0.223808,0.006176,0.006144,0.00816,0.01408,0.014592,1.15299,0.009952
+1037,506.429,1.97461,1.13968,0.007136,0.290816,0.006272,0.007136,0.01936,0.014336,0.014336,0.770048,0.01024
+1038,475.947,2.10107,1.06912,0.010272,0.236672,0.006368,0.006304,0.007744,0.01328,0.014336,0.763904,0.01024
+1039,693.297,1.44238,1.06906,0.008192,0.226432,0.006336,0.006464,0.007808,0.013056,0.01552,0.775008,0.01024
+1040,658.733,1.51807,1.46067,0.008096,0.235936,0.006272,0.006144,0.008192,0.014336,0.016384,1.15507,0.01024
+1041,494.626,2.02173,1.85549,0.008224,0.247616,0.006304,0.006144,0.007968,0.013952,0.014784,1.53805,0.012448
+1042,472.815,2.11499,1.05062,0.008224,0.226656,0.006368,0.00656,0.008192,0.014336,0.014336,0.755712,0.01024
+1043,684.378,1.46118,1.07898,0.01696,0.225312,0.006112,0.006144,0.008192,0.014336,0.016032,0.775552,0.010336
+1044,670.925,1.49048,1.27005,0.00832,0.42,0.006144,0.006144,0.008192,0.021632,0.014592,0.774496,0.010528
+1045,566.215,1.76611,1.91898,0.008192,0.23552,0.006144,0.006176,0.00816,0.014368,0.014304,1.61318,0.012928
+1046,433.439,2.30713,1.07421,0.008192,0.22736,0.006112,0.00784,0.007904,0.012928,0.015392,0.778272,0.010208
+1047,651.607,1.53467,1.05677,0.008192,0.225312,0.006112,0.006144,0.00816,0.013376,0.014432,0.7648,0.01024
+1048,675.016,1.48145,1.24554,0.007936,0.407648,0.006432,0.006304,0.007904,0.01456,0.014304,0.770208,0.01024
+1049,596.65,1.67603,1.86141,0.007968,0.222784,0.006336,0.006272,0.007904,0.01328,0.015424,1.56768,0.01376
+1050,454.052,2.20239,1.06202,0.008096,0.228864,0.006112,0.006304,0.00816,0.014112,0.014944,0.765312,0.010112
+1051,664.288,1.50537,1.06701,0.008192,0.235552,0.007136,0.006144,0.0072,0.014304,0.014432,0.763776,0.010272
+1052,672.247,1.48755,1.23888,0.007808,0.408512,0.006176,0.006112,0.008192,0.015552,0.014784,0.761664,0.01008
+1053,590.542,1.69336,1.41606,0.007072,0.237536,0.007264,0.006272,0.017184,0.014336,0.014336,1.09773,0.014336
+1054,499.512,2.00195,1.07843,0.00832,0.22704,0.006304,0.006144,0.008192,0.014016,0.014656,0.774144,0.019616
+1055,610.614,1.6377,1.05379,0.008192,0.227328,0.006144,0.006176,0.00816,0.014336,0.014336,0.758944,0.010176
+1056,707.06,1.41431,1.24755,0.007808,0.406176,0.006208,0.007168,0.007104,0.014336,0.015488,0.772992,0.010272
+1057,550.686,1.81592,1.40694,0.008,0.227872,0.006208,0.006144,0.02048,0.014336,0.015456,1.09418,0.014272
+1058,511.361,1.95557,1.06998,0.007136,0.228864,0.006592,0.007744,0.007904,0.013024,0.015424,0.773056,0.01024
+1059,655.57,1.52539,1.06362,0.008128,0.227872,0.006368,0.006144,0.007936,0.014272,0.014656,0.768,0.01024
+1060,621.171,1.60986,1.4807,0.008192,0.25744,0.006752,0.006144,0.00736,0.01312,0.015552,1.1559,0.01024
+1061,536.969,1.8623,1.84934,0.008192,0.224672,0.006336,0.006304,0.00784,0.01408,0.014656,1.55446,0.0128
+1062,451.101,2.2168,1.07014,0.008288,0.229024,0.0064,0.006208,0.007872,0.013728,0.01456,0.773856,0.010208
+1063,476.945,2.09668,1.13302,0.00816,0.26624,0.006336,0.006272,0.006752,0.01952,0.014912,0.794336,0.010496
+1064,1009.36,0.990723,1.24854,0.00816,0.407584,0.006144,0.006144,0.008192,0.014336,0.014336,0.773536,0.010112
+1065,588.59,1.69897,1.88973,0.008192,0.288544,0.006368,0.006144,0.01408,0.014144,0.014816,1.52352,0.01392
+1066,442.237,2.26123,1.06864,0.008224,0.230656,0.00688,0.006144,0.008032,0.013888,0.014624,0.770144,0.010048
+1067,682.667,1.46484,1.0752,0.008128,0.223552,0.006144,0.006144,0.008192,0.014336,0.01552,0.783168,0.010016
+1068,616.867,1.62109,1.25338,0.008192,0.407552,0.006176,0.006112,0.008192,0.014336,0.01552,0.777056,0.01024
+1069,634.056,1.57715,1.41309,0.006944,0.227328,0.006144,0.006144,0.008192,0.014368,0.014304,1.11568,0.013984
+1070,491.304,2.0354,1.06291,0.008192,0.226688,0.006336,0.006592,0.008192,0.01392,0.014496,0.768256,0.01024
+1071,686.557,1.45654,1.05654,0.00784,0.22416,0.0072,0.006272,0.007008,0.014336,0.015552,0.764128,0.010048
+1072,489.367,2.04346,1.62125,0.008192,0.31744,0.007392,0.004896,0.007776,0.039328,0.023872,1.20221,0.010144
+1073,666.992,1.49927,1.8168,0.008416,0.225312,0.006112,0.007296,0.00704,0.014368,0.014304,1.5215,0.012448
+1074,452.197,2.21143,1.08906,0.008256,0.229312,0.006144,0.007616,0.007808,0.013248,0.016192,0.790432,0.010048
+1075,634.94,1.57495,1.09568,0.008192,0.251936,0.006112,0.006176,0.00816,0.015392,0.01328,0.776192,0.01024
+1076,691.075,1.44702,1.25725,0.008192,0.413696,0.006304,0.0072,0.006976,0.014336,0.014496,0.775968,0.01008
+1077,564.576,1.77124,1.87187,0.008192,0.239616,0.006144,0.006144,0.008192,0.014336,0.014336,1.56262,0.012288
+1078,434.958,2.29907,1.06704,0.008064,0.223296,0.006368,0.007392,0.007072,0.014336,0.014336,0.776128,0.010048
+1079,679.496,1.47168,1.06762,0.007776,0.224288,0.006112,0.006144,0.008192,0.014336,0.014336,0.776192,0.01024
+1080,639.6,1.56348,1.06701,0.008192,0.227328,0.007168,0.0064,0.006912,0.0144,0.014272,0.772096,0.01024
+1081,326.922,3.05884,1.83661,0.008,0.62816,0.006368,0.006272,0.00784,0.013056,0.020672,1.13235,0.013888
+1082,755.999,1.32275,1.12496,0.007936,0.266944,0.006304,0.006144,0.008,0.01392,0.014528,0.790944,0.01024
+1083,697.191,1.43433,1.3416,0.008224,0.22544,0.006112,0.007616,0.00784,0.013216,0.014336,1.04451,0.014304
+1084,401.333,2.4917,1.1201,0.007872,0.254944,0.006368,0.00704,0.007072,0.030016,0.014176,0.782304,0.010304
+1085,1048.11,0.954102,1.9848,0.008128,0.24816,0.007296,0.006304,0.00688,0.014336,0.026208,1.65648,0.011008
+1086,434.727,2.30029,1.06701,0.008224,0.229376,0.006112,0.006176,0.00816,0.014368,0.014304,0.770048,0.01024
+1087,662.462,1.50952,1.45859,0.007872,0.226144,0.007232,0.006528,0.007936,0.014176,0.014592,1.16195,0.01216
+1088,543.741,1.83911,1.4047,0.006944,0.226528,0.00624,0.0064,0.007616,0.013312,0.015552,1.10784,0.014272
+1089,446.236,2.24097,1.0711,0.008192,0.237568,0.007296,0.00624,0.006944,0.014336,0.014336,0.765952,0.01024
+1090,702.935,1.42261,1.07018,0.008128,0.227072,0.006336,0.006272,0.008192,0.014336,0.014336,0.775392,0.010112
+1091,683.122,1.46387,1.45872,0.00784,0.224256,0.007232,0.006144,0.007104,0.014368,0.015392,1.16426,0.012128
+1092,507.685,1.96973,1.08134,0.008192,0.227328,0.006144,0.006176,0.020448,0.014336,0.01536,0.77312,0.01024
+1093,448.042,2.23193,1.07494,0.01024,0.2288,0.006304,0.006304,0.007808,0.012928,0.014336,0.778112,0.010112
+1094,718.975,1.39087,1.06262,0.008128,0.227008,0.006336,0.006592,0.007872,0.01424,0.014272,0.767904,0.010272
+1095,690.26,1.44873,1.44531,0.008192,0.22528,0.006144,0.006144,0.008192,0.014336,0.014336,1.15098,0.011712
+1096,512.192,1.95239,1.44515,0.008192,0.226816,0.020992,0.006176,0.008192,0.014336,0.020352,1.12576,0.014336
+1097,501.224,1.99512,1.07235,0.008192,0.225024,0.006368,0.006176,0.008064,0.013856,0.014624,0.779776,0.010272
+1098,579.513,1.72559,1.12973,0.008192,0.252928,0.021504,0.006144,0.008192,0.01424,0.020576,0.787776,0.010176
+1099,750.183,1.33301,1.45248,0.00816,0.231776,0.006272,0.006144,0.007936,0.013824,0.014656,1.1535,0.010208
+1100,530.639,1.88452,1.07034,0.008192,0.227328,0.007296,0.006336,0.006976,0.014208,0.014336,0.775328,0.010336
+1101,476.889,2.09692,1.07117,0.011488,0.227584,0.006304,0.006272,0.008448,0.014208,0.014464,0.773184,0.009216
+1102,668.08,1.49683,1.07389,0.006976,0.227232,0.006144,0.006144,0.008192,0.014368,0.015456,0.779136,0.01024
+1103,685.523,1.45874,1.45821,0.008192,0.22528,0.006176,0.006112,0.008128,0.014048,0.01456,1.16496,0.010752
+1104,523.651,1.90967,1.92288,0.008192,0.23552,0.006144,0.00624,0.008096,0.014336,0.014336,1.61386,0.01616
+1105,437.934,2.28345,1.08749,0.008192,0.24304,0.006368,0.006592,0.00816,0.014144,0.01456,0.776192,0.01024
+1106,663.427,1.50732,1.07238,0.00784,0.223584,0.007296,0.0064,0.007872,0.013248,0.015424,0.780448,0.010272
+1107,604.486,1.6543,1.2481,0.007168,0.411488,0.006144,0.006176,0.00816,0.014368,0.014304,0.770048,0.01024
+1108,589.183,1.69727,1.42947,0.008064,0.243296,0.006688,0.006144,0.007968,0.014272,0.014624,1.11392,0.014496
+1109,484.447,2.06421,1.06979,0.008128,0.22608,0.007296,0.006304,0.006944,0.015648,0.014816,0.774336,0.01024
+1110,691.308,1.44653,1.06534,0.006944,0.2232,0.006304,0.007104,0.007072,0.014336,0.014336,0.776,0.010048
+1111,648.204,1.54272,1.50387,0.008096,0.254688,0.00768,0.006272,0.006528,0.014336,0.023584,1.17245,0.01024
+1112,522.916,1.91235,1.85462,0.008064,0.226464,0.006336,0.006304,0.006784,0.014336,0.01536,1.5575,0.013472
+1113,444.637,2.24902,1.11363,0.008192,0.247232,0.006368,0.006496,0.00784,0.013824,0.01456,0.798368,0.010752
+1114,682.098,1.46606,1.06397,0.007168,0.226528,0.006784,0.006304,0.007744,0.01408,0.014752,0.771424,0.009184
+1115,643.317,1.55444,1.24698,0.008416,0.408864,0.006336,0.006272,0.007936,0.0144,0.014752,0.769632,0.010368
+1116,557.431,1.79395,1.0984,0.0088,0.254016,0.006144,0.006144,0.008192,0.014144,0.01456,0.77616,0.01024
+1117,418.429,2.38989,1.07907,0.010336,0.23312,0.006368,0.006304,0.00752,0.014112,0.014496,0.776672,0.010144
+1118,687.941,1.45361,1.07254,0.00784,0.224,0.006176,0.006208,0.008096,0.014336,0.014336,0.780288,0.011264
+1119,627.836,1.59277,1.0776,0.007872,0.223168,0.0064,0.006368,0.007872,0.014144,0.01472,0.786816,0.01024
+1120,478.449,2.09009,1.90742,0.007072,0.245728,0.022304,0.006368,0.00816,0.013984,0.014752,1.57613,0.012928
+1121,566.685,1.76465,1.07622,0.008416,0.228096,0.006144,0.007552,0.00784,0.013344,0.015424,0.779136,0.010272
+1122,676.801,1.47754,1.0711,0.008224,0.225248,0.007488,0.006656,0.007776,0.014304,0.015008,0.77616,0.01024
+1123,614.646,1.62695,1.09773,0.008192,0.243712,0.007264,0.006304,0.006912,0.018112,0.014624,0.782368,0.01024
+1124,595.609,1.67896,1.98656,0.008192,0.241664,0.006144,0.006176,0.00816,0.014336,0.025984,1.6647,0.0112
+1125,410.092,2.43848,1.06906,0.008192,0.229248,0.006272,0.006144,0.007712,0.014528,0.014592,0.772096,0.010272
+1126,663.105,1.50806,1.09978,0.008192,0.228512,0.006336,0.006304,0.02304,0.014336,0.014336,0.78848,0.01024
+1127,618.171,1.61768,1.0919,0.008064,0.244544,0.006144,0.006144,0.008224,0.014304,0.018432,0.775712,0.010336
+1128,583.31,1.71436,1.92832,0.008224,0.241632,0.006144,0.007296,0.00704,0.014336,0.019488,1.61274,0.011424
+1129,437.28,2.28687,1.07926,0.008224,0.229344,0.006144,0.006144,0.008192,0.014336,0.014336,0.782336,0.010208
+1130,725.984,1.37744,1.36646,0.00816,0.22816,0.006176,0.006112,0.008224,0.014304,0.014368,1.06662,0.014336
+1131,567.392,1.76245,1.07971,0.008,0.225952,0.006144,0.006144,0.008192,0.01408,0.014272,0.786624,0.010304
+1132,643.62,1.55371,1.72442,0.008192,0.456704,0.02992,0.006304,0.006784,0.015392,0.014624,1.17626,0.01024
+1133,479.794,2.08423,1.08266,0.008192,0.229248,0.006272,0.006144,0.008192,0.014336,0.014336,0.785856,0.01008
+1134,644.43,1.55176,1.07322,0.008288,0.228096,0.006144,0.007296,0.00704,0.014336,0.014336,0.77744,0.01024
+1135,458.063,2.18311,1.14262,0.008416,0.283168,0.007392,0.00624,0.022976,0.014016,0.014752,0.77552,0.010144
+1136,889.275,1.12451,1.71622,0.008192,0.466944,0.0096,0.006304,0.007712,0.014496,0.014496,1.17824,0.01024
+1137,472.652,2.11572,1.07085,0.007968,0.228672,0.006368,0.006272,0.00672,0.014336,0.015584,0.774944,0.009984
+1138,698.976,1.43066,1.35376,0.008192,0.2288,0.006336,0.006528,0.008192,0.014112,0.014592,1.05264,0.014368
+1139,550.908,1.81519,1.08442,0.007968,0.225504,0.006144,0.006176,0.00816,0.014336,0.014336,0.790528,0.011264
+1140,608.166,1.64429,1.78186,0.007872,0.540992,0.008288,0.006144,0.008192,0.014336,0.0144,1.17139,0.01024
+1141,457.347,2.18652,1.08877,0.00816,0.235744,0.006112,0.006176,0.00816,0.014304,0.014368,0.785728,0.010016
+1142,662.033,1.5105,1.37827,0.008192,0.23904,0.006368,0.006272,0.00784,0.014144,0.015168,1.06701,0.01424
+1143,560.865,1.78296,1.09901,0.008192,0.229376,0.007328,0.006272,0.008928,0.014336,0.014368,0.800224,0.009984
+1144,661.499,1.51172,1.7095,0.007744,0.464704,0.009152,0.006144,0.008064,0.014464,0.014336,1.17482,0.01008
+1145,462.459,2.16235,1.06746,0.007808,0.227968,0.006336,0.006144,0.008,0.014112,0.01472,0.772128,0.01024
+1146,695.534,1.43774,1.35258,0.00704,0.22688,0.006368,0.006368,0.008192,0.014144,0.014528,1.05472,0.014336
+1147,584.141,1.71191,1.0753,0.007904,0.227808,0.006144,0.007712,0.007744,0.013216,0.014336,0.768,0.022432
+1148,581.488,1.71973,1.92598,0.00704,0.237536,0.006176,0.006112,0.008192,0.014336,0.014336,1.62118,0.011072
+1149,443.386,2.25537,1.08022,0.007072,0.229408,0.007456,0.0064,0.007776,0.013152,0.014528,0.784192,0.01024
+1150,664.719,1.50439,1.48566,0.007008,0.227264,0.006208,0.007456,0.006912,0.014304,0.015552,1.1897,0.011264
+1151,520.061,1.92285,1.4295,0.008032,0.252064,0.00736,0.006272,0.006848,0.014336,0.014368,1.10589,0.014336
+1152,492.959,2.02856,1.07322,0.008096,0.226304,0.006144,0.0072,0.007136,0.014336,0.014336,0.779424,0.01024
+1153,676.466,1.47827,1.08269,0.008128,0.2256,0.006176,0.007296,0.007008,0.014336,0.014336,0.789888,0.00992
+1154,652.957,1.53149,1.47072,0.008128,0.225088,0.006336,0.006304,0.00784,0.01424,0.014688,1.17581,0.012288
+1155,382.304,2.61572,1.48467,0.008192,0.251904,0.006144,0.007264,0.007168,0.01424,0.014336,1.16083,0.014592
+1156,694.708,1.43945,1.08026,0.008256,0.230016,0.006368,0.006176,0.00816,0.014176,0.014528,0.782336,0.01024
+1157,686.903,1.45581,1.0736,0.008192,0.225312,0.006336,0.006272,0.007776,0.013984,0.0144,0.781056,0.010272
+1158,675.685,1.47998,1.47162,0.00784,0.225568,0.00624,0.006176,0.00816,0.013952,0.01472,1.1776,0.01136
+1159,515.22,1.94092,1.09152,0.008192,0.256,0.007232,0.00624,0.007008,0.014336,0.015424,0.766464,0.010624
+1160,476.723,2.09766,1.07814,0.010656,0.231904,0.006144,0.006336,0.00944,0.014176,0.01456,0.77472,0.010208
+1161,657.569,1.52075,1.07395,0.008032,0.22624,0.006144,0.007328,0.007008,0.014336,0.014336,0.779968,0.01056
+1162,694.12,1.44067,1.45174,0.006848,0.226752,0.006368,0.006496,0.008,0.013984,0.014912,1.15834,0.010048
+1163,512.448,1.95142,1.08339,0.007936,0.227584,0.006176,0.006112,0.008192,0.014336,0.014336,0.78848,0.01024
+1164,520.391,1.92163,1.11002,0.01024,0.253952,0.007968,0.006304,0.007808,0.014112,0.014688,0.784384,0.01056
+1165,690.842,1.44751,1.0752,0.00816,0.225344,0.007264,0.006272,0.006912,0.014336,0.014336,0.782336,0.01024
+1166,632.196,1.58179,1.49363,0.00784,0.226272,0.006144,0.007296,0.007168,0.014208,0.014336,1.19946,0.010912
+1167,520.259,1.92212,1.41738,0.007904,0.23376,0.006144,0.006176,0.008032,0.014144,0.014656,1.11341,0.013152
+1168,495.344,2.0188,1.09731,0.008128,0.229504,0.006112,0.006176,0.00816,0.01424,0.014432,0.800224,0.010336
+1169,626.204,1.59692,1.09917,0.008192,0.239616,0.006144,0.006144,0.008192,0.013952,0.01472,0.791776,0.010432
+1170,692.828,1.44336,1.46787,0.00816,0.225792,0.00736,0.006784,0.008352,0.014176,0.014528,1.17136,0.01136
+1171,529.952,1.88696,1.41107,0.007968,0.229632,0.006112,0.006144,0.008192,0.014368,0.014304,1.11002,0.014336
+1172,483.361,2.06885,1.06915,0.008512,0.227552,0.00624,0.007584,0.007872,0.01328,0.015328,0.77264,0.010144
+1173,680.964,1.46851,1.06822,0.008192,0.229184,0.006368,0.006112,0.008192,0.014272,0.0144,0.771136,0.010368
+1174,690.376,1.44849,1.48397,0.008192,0.225312,0.006112,0.00784,0.00784,0.0144,0.014496,1.1881,0.01168
+1175,508,1.96851,1.40778,0.007168,0.229056,0.006336,0.006272,0.008128,0.014112,0.014368,1.10822,0.014112
+1176,498.297,2.00684,1.07734,0.008128,0.226304,0.006144,0.006144,0.008192,0.014336,0.014368,0.783424,0.010304
+1177,695.889,1.43701,1.07158,0.008192,0.229056,0.006304,0.006304,0.007776,0.01328,0.014336,0.776192,0.010144
+1178,610.069,1.63916,1.49619,0.008192,0.249312,0.006336,0.006368,0.007808,0.014592,0.018688,1.17309,0.011808
+1179,538.735,1.8562,1.06496,0.007904,0.229664,0.006144,0.006144,0.008192,0.014368,0.014304,0.768,0.01024
+1180,454.455,2.20044,1.08134,0.01024,0.237376,0.006336,0.006176,0.008,0.014336,0.014336,0.774336,0.010208
+1181,669.719,1.49316,1.0671,0.007808,0.225696,0.006208,0.006144,0.008032,0.013984,0.014624,0.774368,0.01024
+1182,642.208,1.55713,1.46227,0.008192,0.22528,0.006176,0.006112,0.008192,0.014336,0.014336,1.16944,0.010208
+1183,506.931,1.97266,1.42035,0.008192,0.23552,0.006144,0.006176,0.00816,0.014368,0.014304,1.1136,0.013888
+1184,526.005,1.90112,1.07082,0.008192,0.230528,0.006336,0.006336,0.006656,0.014336,0.015392,0.772864,0.010176
+1185,663.535,1.50708,1.07667,0.008192,0.22528,0.006176,0.006112,0.008192,0.013376,0.014944,0.78416,0.01024
+1186,496.906,2.01245,1.51526,0.008192,0.253248,0.006848,0.006144,0.008128,0.015904,0.027168,1.17763,0.012
+1187,730.906,1.36816,1.41139,0.008032,0.235392,0.006336,0.006336,0.007744,0.021056,0.014432,1.09773,0.014336
+1188,492.189,2.03174,1.06845,0.008192,0.226656,0.006336,0.006624,0.008192,0.014368,0.014304,0.773664,0.010112
+1189,675.462,1.48047,1.08957,0.008192,0.226656,0.006336,0.006528,0.007776,0.014208,0.014688,0.794912,0.010272
+1190,442.954,2.25757,1.50528,0.008192,0.256,0.006144,0.006144,0.008192,0.014368,0.014304,1.1817,0.01024
+1191,801.095,1.24829,1.44867,0.006976,0.22512,0.006304,0.021824,0.008288,0.014336,0.023168,1.1281,0.01456
+1192,485.366,2.0603,1.13242,0.008192,0.26624,0.006144,0.006144,0.008192,0.01424,0.014432,0.798624,0.010208
+1193,677.025,1.47705,1.07398,0.008096,0.223968,0.006336,0.006144,0.008192,0.014368,0.014304,0.782336,0.01024
+1194,618.544,1.6167,1.47866,0.008192,0.251904,0.006144,0.00736,0.006976,0.014336,0.014336,1.16019,0.009216
+1195,351.981,2.84106,1.20179,0.008352,0.326624,0.006336,0.006272,0.007776,0.01328,0.026112,0.796448,0.010592
+1196,577.552,1.73145,1.0752,0.01024,0.23904,0.006336,0.006336,0.007776,0.012896,0.015488,0.766848,0.01024
+1197,688.403,1.45264,1.07315,0.008192,0.226336,0.006912,0.006304,0.007968,0.014048,0.014848,0.778304,0.01024
+1198,575.685,1.73706,1.0752,0.007968,0.227552,0.006144,0.007168,0.007168,0.014368,0.014304,0.780288,0.01024
+1199,610.614,1.6377,1.75731,0.008096,0.493792,0.009888,0.016544,0.00816,0.0144,0.014432,1.18176,0.01024
+1200,481.939,2.07495,1.07114,0.008224,0.22448,0.006368,0.006304,0.007872,0.013024,0.01568,0.778944,0.01024
+1201,655.36,1.52588,1.0793,0.008192,0.225312,0.006112,0.006176,0.00816,0.014304,0.014368,0.781792,0.01488
+1202,638.305,1.56665,1.08422,0.007008,0.226912,0.006336,0.006272,0.007872,0.01376,0.014784,0.79104,0.01024
+1203,584.308,1.71143,1.79482,0.006944,0.456544,0.00944,0.049376,0.016832,0.014496,0.014432,1.2016,0.025152
+1204,481.146,2.07837,1.07478,0.008224,0.229344,0.006144,0.006144,0.008192,0.014336,0.014336,0.77776,0.010304
+1205,665.692,1.5022,1.0791,0.008192,0.22528,0.006176,0.006112,0.008224,0.014176,0.014496,0.7864,0.010048
+1206,549.135,1.82104,1.07261,0.008192,0.223104,0.006272,0.006144,0.008096,0.013952,0.014656,0.782112,0.01008
+1207,570.474,1.75293,1.8112,0.008704,0.471296,0.008192,0.00752,0.084288,0.014688,0.015488,1.19078,0.01024
+1208,515.544,1.9397,1.08192,0.00784,0.227584,0.0064,0.006592,0.00816,0.014336,0.014336,0.7864,0.010272
+1209,646.363,1.54712,1.08067,0.007936,0.239456,0.006496,0.006208,0.007872,0.014016,0.014688,0.773696,0.010304
+1210,600.059,1.6665,1.07075,0.008192,0.223168,0.006208,0.006144,0.008192,0.014336,0.014368,0.779936,0.010208
+1211,606.815,1.64795,2.03254,0.00816,0.283136,0.006336,0.006304,0.007648,0.017024,0.030432,1.66122,0.012288
+1212,393.695,2.54004,1.15507,0.007968,0.2928,0.014528,0.00624,0.008192,0.023936,0.014752,0.776416,0.01024
+1213,695.534,1.43774,1.46842,0.008192,0.22528,0.006144,0.00768,0.007872,0.013152,0.015648,1.17216,0.012288
+1214,478.505,2.08984,1.11066,0.00816,0.23824,0.016416,0.006208,0.024416,0.013856,0.01472,0.7784,0.01024
+1215,509.706,1.96191,1.07315,0.01024,0.229376,0.006144,0.006144,0.008224,0.014304,0.014336,0.774144,0.01024
+1216,671.916,1.48828,1.09754,0.008192,0.241696,0.006112,0.006144,0.008192,0.014336,0.014336,0.788352,0.010176
+1217,640.901,1.5603,1.4728,0.00784,0.225184,0.006368,0.00624,0.008032,0.012992,0.016384,1.1776,0.01216
+1218,534.377,1.87134,1.39971,0.007072,0.229024,0.006304,0.006304,0.00784,0.012672,0.01552,1.10064,0.014336
+1219,497.389,2.0105,1.07856,0.008192,0.22704,0.006336,0.00624,0.008192,0.014368,0.014304,0.783648,0.01024
+1220,675.685,1.47998,1.08675,0.008192,0.239808,0.0072,0.006336,0.007072,0.01792,0.01472,0.7752,0.010304
+1221,545.188,1.83423,1.46662,0.008192,0.236416,0.006144,0.006176,0.00816,0.014336,0.014336,1.16115,0.011712
+1222,592.85,1.68677,1.07341,0.008128,0.227456,0.006336,0.006144,0.007936,0.01408,0.014752,0.778336,0.01024
+1223,482.848,2.07104,1.06902,0.01024,0.229376,0.00624,0.006048,0.008224,0.015808,0.014432,0.768352,0.010304
+1224,689.795,1.44971,1.07686,0.007808,0.23088,0.006304,0.006944,0.008224,0.01424,0.0144,0.777952,0.010112
+1225,677.809,1.47534,1.46022,0.007904,0.224608,0.006368,0.006272,0.007904,0.013184,0.015552,1.16614,0.012288
+1226,504.185,1.9834,1.09978,0.008192,0.249792,0.006208,0.006144,0.008192,0.014336,0.015456,0.781216,0.01024
+1227,452.697,2.20898,1.09274,0.010368,0.229344,0.006144,0.006144,0.008224,0.014304,0.014336,0.793824,0.010048
+1228,668.08,1.49683,1.07197,0.007008,0.231072,0.006368,0.006272,0.008192,0.014176,0.014496,0.7752,0.009184
+1229,700.051,1.42847,1.45421,0.007936,0.227008,0.006336,0.006336,0.00768,0.012992,0.014336,1.1623,0.00928
+1230,443.674,2.25391,1.82285,0.008608,0.237568,0.006176,0.006112,0.008192,0.014208,0.014464,1.51347,0.014048
+1231,483.133,2.06982,1.07037,0.008128,0.228544,0.006368,0.00624,0.007872,0.013248,0.014496,0.775232,0.01024
+1232,686.327,1.45703,1.07168,0.008032,0.226112,0.006112,0.008,0.007904,0.014048,0.01456,0.776736,0.010176
+1233,650.365,1.5376,1.27414,0.008608,0.407264,0.0064,0.00624,0.007808,0.014464,0.015072,0.798112,0.010176
+1234,610.614,1.6377,1.87011,0.00784,0.223872,0.006144,0.006176,0.00816,0.014336,0.014432,1.57629,0.012864
+1235,441.237,2.26636,1.08688,0.008192,0.230464,0.006304,0.006208,0.007968,0.013248,0.015552,0.788768,0.010176
+1236,650.056,1.53833,1.07958,0.00784,0.22528,0.006336,0.006912,0.008192,0.014272,0.014368,0.786336,0.010048
+1237,647.589,1.54419,1.25955,0.008192,0.417792,0.006144,0.007488,0.006976,0.014208,0.014464,0.774016,0.010272
+1238,620.512,1.61157,1.88019,0.007872,0.242048,0.006176,0.006144,0.00816,0.01392,0.014752,1.56806,0.013056
+1239,410.421,2.43652,1.10182,0.008192,0.257664,0.006368,0.006272,0.007904,0.014304,0.014688,0.776192,0.01024
+1240,676.577,1.47803,1.08339,0.008032,0.22544,0.006144,0.006368,0.007968,0.014336,0.014336,0.790528,0.01024
+1241,680.625,1.46924,1.25651,0.008224,0.413632,0.006176,0.006144,0.008192,0.014336,0.014336,0.774176,0.011296
+1242,581.323,1.72021,1.85648,0.007136,0.22528,0.006144,0.006144,0.008192,0.014336,0.014368,1.56054,0.014336
+1243,440.004,2.27271,1.11411,0.008192,0.279712,0.006368,0.006176,0.006784,0.014304,0.015616,0.76688,0.01008
+1244,697.429,1.43384,1.07536,0.00784,0.225024,0.006304,0.00656,0.007968,0.014272,0.014752,0.7824,0.01024
+1245,646.159,1.54761,1.27466,0.006944,0.407488,0.006208,0.006144,0.008096,0.01392,0.014528,0.80112,0.010208
+1246,586.148,1.70605,1.93331,0.009344,0.22336,0.006592,0.006272,0.007936,0.014144,0.014336,1.64022,0.011104
+1247,438.873,2.27856,1.07734,0.008064,0.242304,0.006144,0.006144,0.008192,0.014016,0.014656,0.767712,0.010112
+1248,598.393,1.67114,1.10806,0.008192,0.25376,0.006336,0.006144,0.008,0.01456,0.014304,0.786464,0.010304
+1249,676.689,1.47778,1.08749,0.008192,0.223232,0.006176,0.006112,0.008192,0.014208,0.014368,0.790272,0.016736
+1250,632.294,1.58154,1.89075,0.007808,0.242624,0.006144,0.006144,0.008192,0.014336,0.01568,1.5767,0.01312
+1251,442.333,2.26074,1.11066,0.008416,0.246176,0.006176,0.014304,0.008192,0.014464,0.015488,0.7872,0.01024
+1252,676.019,1.47925,1.07318,0.008192,0.224512,0.006336,0.006528,0.007904,0.01408,0.01472,0.780672,0.01024
+1253,626.971,1.59497,1.11274,0.006912,0.251904,0.006144,0.006144,0.008192,0.014336,0.018336,0.790624,0.010144
+1254,591.566,1.69043,1.93114,0.007808,0.225792,0.006144,0.006144,0.008192,0.014336,0.014336,1.63635,0.012032
+1255,449.418,2.2251,1.10259,0.008128,0.248128,0.018208,0.006272,0.007808,0.01328,0.015872,0.77456,0.010336
+1256,675.239,1.48096,1.08573,0.008064,0.226144,0.006144,0.006144,0.008192,0.014336,0.014336,0.791552,0.010816
+1257,469.886,2.12817,1.13866,0.007872,0.285184,0.006144,0.006144,0.014368,0.014304,0.014336,0.780224,0.01008
+1258,652.749,1.53198,1.90662,0.008192,0.256032,0.0072,0.017344,0.008224,0.0184,0.014336,1.56394,0.01296
+1259,456.939,2.18848,1.0696,0.008064,0.232128,0.006112,0.006176,0.00816,0.014368,0.014304,0.770048,0.01024
+1260,668.298,1.49634,1.34989,0.008128,0.225824,0.006304,0.007296,0.00688,0.015488,0.014752,1.05066,0.01456
+1261,580.663,1.72217,1.07994,0.008,0.222016,0.006144,0.007552,0.007808,0.013312,0.015616,0.7808,0.018688
+1262,589.013,1.69775,1.78589,0.006816,0.538624,0.010272,0.006112,0.008192,0.014336,0.014336,1.1769,0.010304
+1263,473.964,2.10986,1.08954,0.008192,0.249856,0.007264,0.006272,0.006944,0.014368,0.01536,0.77104,0.01024
+1264,650.985,1.53613,1.38445,0.008192,0.253952,0.006144,0.007296,0.007136,0.01424,0.015552,1.0576,0.014336
+1265,540.298,1.85083,1.10893,0.00816,0.260352,0.006368,0.00624,0.007904,0.014336,0.014528,0.780832,0.010208
+1266,488.724,2.04614,1.27494,0.012288,0.423936,0.008192,0.006336,0.008,0.014432,0.015552,0.776096,0.010112
+1267,677.809,1.47534,1.10592,0.008224,0.2536,0.006336,0.006272,0.00768,0.014176,0.014912,0.78448,0.01024
+1268,679.834,1.47095,1.34739,0.007808,0.232288,0.007296,0.006304,0.00688,0.014336,0.014336,1.04349,0.014656
+1269,540.441,1.85034,1.1048,0.007104,0.256992,0.006624,0.00624,0.007904,0.013056,0.015584,0.781056,0.01024
+1270,618.078,1.61792,1.76253,0.008192,0.454752,0.033984,0.006304,0.006912,0.015296,0.014912,1.21197,0.010208
+1271,473.526,2.11182,1.07331,0.008096,0.239712,0.006144,0.006144,0.008032,0.014432,0.014432,0.767072,0.009248
+1272,662.462,1.50952,1.35597,0.007072,0.2352,0.006336,0.006304,0.007904,0.014016,0.014656,1.04992,0.01456
+1273,570.553,1.75269,1.07507,0.008,0.229568,0.00736,0.006272,0.006848,0.014336,0.014336,0.778144,0.010208
+1274,595.349,1.67969,1.78141,0.008192,0.478368,0.047968,0.006144,0.008192,0.014336,0.015552,1.19251,0.010144
+1275,485.193,2.06104,1.0952,0.008192,0.241664,0.006144,0.006144,0.008192,0.014336,0.01568,0.7848,0.010048
+1276,680.851,1.46875,1.4784,0.008192,0.229408,0.006208,0.007488,0.008096,0.013024,0.015392,1.17856,0.012032
+1277,445.556,2.24438,1.1345,0.008192,0.274432,0.007232,0.006272,0.008064,0.013344,0.015712,0.77472,0.026528
+1278,719.354,1.39014,1.75334,0.008096,0.48368,0.02592,0.006304,0.00784,0.01472,0.014656,1.18189,0.01024
+1279,483.418,2.0686,1.07197,0.007136,0.231424,0.006144,0.0072,0.007136,0.014336,0.014336,0.774144,0.010112
+1280,676.577,1.47803,1.45082,0.00704,0.227264,0.007328,0.006304,0.006848,0.014336,0.014336,1.15712,0.01024
+1281,442.189,2.26147,1.49299,0.008192,0.234912,0.006336,0.006272,0.007808,0.014112,0.01472,1.1863,0.014336
+1282,555.315,1.80078,1.09981,0.008192,0.247808,0.006144,0.006144,0.008224,0.014304,0.014336,0.784384,0.010272
+1283,674.239,1.48315,1.09114,0.008192,0.236096,0.00624,0.006048,0.00816,0.014336,0.014336,0.786432,0.011296
+1284,619.105,1.61523,1.44925,0.008192,0.22528,0.006144,0.006144,0.008192,0.014336,0.014336,1.15661,0.010016
+1285,477.167,2.0957,1.1297,0.008192,0.26816,0.006272,0.006144,0.007872,0.014112,0.02512,0.78336,0.010464
+1286,511.808,1.95386,1.0809,0.01024,0.243712,0.006176,0.006112,0.008192,0.014176,0.014496,0.767744,0.010048
+1287,687.825,1.45386,1.06755,0.00784,0.226176,0.007392,0.006848,0.00784,0.014528,0.014592,0.773184,0.009152
+1288,653.374,1.53052,1.25542,0.008192,0.409312,0.006368,0.006208,0.007904,0.01424,0.01456,0.7784,0.01024
+1289,544.247,1.8374,1.10576,0.007872,0.244224,0.006112,0.024576,0.008,0.014048,0.015904,0.774688,0.010336
+1290,506.555,1.97412,1.08774,0.010176,0.237664,0.006272,0.006144,0.008128,0.014016,0.014464,0.781664,0.009216
+1291,680.625,1.46924,1.09158,0.008192,0.235456,0.006208,0.007264,0.007072,0.014336,0.014368,0.789504,0.009184
+1292,646.057,1.54785,1.50118,0.008192,0.267584,0.006848,0.006144,0.008192,0.014336,0.014336,1.16531,0.01024
+1293,503.751,1.98511,1.43658,0.006976,0.24576,0.006208,0.007104,0.007168,0.014336,0.014336,1.12026,0.014432
+1294,504.993,1.98022,1.10224,0.008128,0.23808,0.006176,0.007456,0.00688,0.014336,0.014368,0.79664,0.010176
+1295,653.374,1.53052,1.09386,0.008128,0.229056,0.006368,0.00624,0.007744,0.014368,0.014976,0.796736,0.01024
+1296,671.035,1.49023,1.32029,0.007936,0.458336,0.00624,0.006336,0.007872,0.014528,0.014208,0.794688,0.010144
+1297,550.612,1.81616,1.42608,0.007968,0.234368,0.006144,0.006144,0.008192,0.014048,0.014368,1.12051,0.014336
+1298,471.401,2.12134,1.08954,0.008192,0.247136,0.006336,0.006304,0.007808,0.01504,0.015456,0.773024,0.01024
+1299,686.787,1.45605,1.08288,0.008064,0.241536,0.006336,0.006208,0.007808,0.014048,0.014592,0.774112,0.010176
+1300,515.285,1.94067,1.50534,0.00784,0.264992,0.007744,0.005888,0.006848,0.014336,0.014336,1.17315,0.010208
+1301,674.35,1.48291,1.85965,0.008,0.240096,0.006176,0.006144,0.00816,0.014112,0.014336,1.54851,0.014112
+1302,429.44,2.32861,1.09792,0.008128,0.230112,0.007296,0.006304,0.006816,0.014336,0.02048,0.7944,0.010048
+1303,694.002,1.44092,1.08736,0.008128,0.23024,0.006176,0.006112,0.008192,0.014336,0.015456,0.788576,0.010144
+1304,649.54,1.53955,1.24736,0.00832,0.406688,0.006368,0.006336,0.007904,0.014656,0.014592,0.772256,0.01024
+1305,617.146,1.62036,1.44755,0.008096,0.231552,0.006144,0.008,0.00784,0.01424,0.014464,1.14304,0.014176
+1306,463.348,2.1582,1.09366,0.008192,0.253952,0.006176,0.006112,0.008192,0.015712,0.014976,0.770112,0.01024
+1307,658.203,1.51929,1.0807,0.00816,0.23088,0.006336,0.00624,0.007648,0.01312,0.015488,0.782752,0.01008
+1308,655.36,1.52588,1.26157,0.00816,0.40752,0.006208,0.015904,0.007808,0.014368,0.0152,0.77616,0.01024
+1309,607.355,1.64648,1.44384,0.008192,0.233472,0.00736,0.006304,0.007872,0.013344,0.014272,1.13869,0.014336
+1310,478.84,2.08838,1.0752,0.008192,0.231424,0.006144,0.00736,0.006976,0.014336,0.014368,0.77616,0.01024
+1311,667.971,1.49707,1.07779,0.008128,0.22976,0.006432,0.006144,0.008096,0.013984,0.014496,0.780576,0.010176
+1312,623.915,1.60278,1.46691,0.00816,0.227904,0.006144,0.007584,0.007872,0.013216,0.014336,1.17146,0.01024
+1313,566.842,1.76416,1.43197,0.007072,0.234496,0.0064,0.006272,0.007776,0.013344,0.015872,1.12621,0.014528
+1314,470.696,2.12451,1.08749,0.008192,0.230464,0.006336,0.006272,0.007968,0.028704,0.015072,0.77424,0.01024
+1315,699.812,1.42896,1.06909,0.00816,0.229504,0.007328,0.006144,0.007008,0.014336,0.014368,0.772064,0.010176
+1316,623.725,1.60327,1.4711,0.007904,0.226176,0.006144,0.006144,0.008192,0.014304,0.014368,1.17866,0.009216
+1317,553.214,1.80762,1.90634,0.008192,0.231456,0.006112,0.006176,0.009344,0.014176,0.014944,1.60195,0.013984
+1318,385.506,2.59399,1.11002,0.008192,0.259488,0.006336,0.006368,0.007936,0.014464,0.014656,0.782336,0.01024
+1319,707.671,1.41309,1.08749,0.008128,0.23968,0.006144,0.007264,0.007072,0.014208,0.014464,0.780288,0.01024
+1320,710.741,1.40698,1.25837,0.008576,0.407712,0.0064,0.00624,0.007968,0.014336,0.01456,0.771328,0.021248
+1321,518.153,1.92993,1.13219,0.008128,0.275776,0.006368,0.01488,0.008192,0.02192,0.014752,0.772,0.010176
+1322,462.616,2.16162,1.1208,0.010208,0.260672,0.0072,0.006272,0.007008,0.014336,0.014336,0.790528,0.01024
+1323,670.267,1.49194,1.08749,0.008192,0.241664,0.006144,0.006144,0.009632,0.014496,0.014464,0.776512,0.01024
+1324,595.176,1.68018,1.11626,0.008064,0.265184,0.006176,0.006112,0.008128,0.0144,0.014336,0.78384,0.010016
+1325,668.735,1.49536,1.85754,0.00816,0.245792,0.006144,0.006144,0.008192,0.014176,0.014496,1.5401,0.014336
+1326,410.503,2.43604,1.14662,0.008192,0.29696,0.006144,0.006144,0.008192,0.014336,0.014336,0.782112,0.010208
+1327,708.528,1.41138,1.08499,0.008192,0.241088,0.006368,0.006272,0.007808,0.01424,0.014336,0.776288,0.0104
+1328,626.683,1.5957,1.0985,0.006912,0.241696,0.007168,0.006336,0.008064,0.013216,0.01584,0.789024,0.01024
+1329,613.174,1.63086,1.43347,0.008192,0.257344,0.006464,0.006272,0.00784,0.014016,0.014432,1.1047,0.014208
+1330,490.715,2.03784,1.07456,0.008192,0.239136,0.006336,0.006336,0.007808,0.01392,0.014432,0.768384,0.010016
+1331,675.685,1.47998,1.08954,0.008192,0.249856,0.006144,0.006144,0.008192,0.014336,0.014336,0.772096,0.01024
+1332,619.573,1.61401,1.25821,0.008128,0.40816,0.006336,0.006176,0.00816,0.014368,0.014336,0.782304,0.01024
+1333,611.617,1.63501,1.85974,0.008128,0.243936,0.006176,0.006112,0.008032,0.013888,0.014272,1.54634,0.012864
+1334,422.312,2.36792,1.09363,0.008192,0.24576,0.007328,0.006368,0.008,0.01312,0.015936,0.778688,0.01024
+1335,674.905,1.48169,1.08134,0.008192,0.241664,0.006144,0.007264,0.007072,0.014336,0.014336,0.77312,0.009216
+1336,599.444,1.66821,1.13242,0.008192,0.267584,0.006368,0.00624,0.007872,0.012992,0.014336,0.79872,0.010112
+1337,651.71,1.53442,1.44182,0.00816,0.263136,0.006176,0.006112,0.008192,0.014336,0.014336,1.10726,0.014112
+1338,477.612,2.09375,1.11613,0.008192,0.269536,0.006368,0.006272,0.007872,0.013184,0.015584,0.778912,0.010208
+1339,666.667,1.5,1.07795,0.008128,0.240416,0.006176,0.007168,0.007136,0.014336,0.015616,0.768544,0.010432
+1340,639.002,1.56494,1.27795,0.008192,0.407552,0.006208,0.007936,0.007904,0.014816,0.014336,0.800768,0.01024
+1341,569.601,1.75562,1.87379,0.008288,0.264192,0.006144,0.006144,0.008192,0.014336,0.016384,1.536,0.014112
+1342,447.406,2.23511,1.09984,0.008096,0.234208,0.007744,0.006368,0.007744,0.014528,0.026464,0.784512,0.010176
+1343,686.787,1.45605,1.08544,0.008192,0.229376,0.006176,0.006112,0.008192,0.014336,0.014336,0.78848,0.01024
+1344,590.372,1.69385,1.06662,0.008192,0.22864,0.006368,0.006368,0.007712,0.013056,0.014336,0.770048,0.011904
+1345,560.328,1.78467,1.4673,0.008864,0.270304,0.0064,0.006176,0.008192,0.014368,0.022432,1.11619,0.014368
+1346,491.953,2.03271,1.06986,0.008192,0.233536,0.006336,0.006304,0.008256,0.01424,0.014528,0.768224,0.01024
+1347,711.482,1.40552,1.08694,0.008192,0.235328,0.006336,0.006144,0.008192,0.014336,0.014336,0.783808,0.010272
+1348,583.143,1.71484,1.08122,0.007872,0.22912,0.00704,0.006208,0.007744,0.012736,0.015424,0.785024,0.010048
+1349,662.247,1.51001,1.88608,0.008128,0.256896,0.007392,0.006304,0.007808,0.013312,0.014336,1.55853,0.013376
+1350,448.582,2.22925,1.06723,0.008416,0.232544,0.006336,0.0064,0.007904,0.014112,0.014752,0.766528,0.01024
+1351,615.755,1.62402,1.10342,0.008192,0.241504,0.006336,0.006112,0.008064,0.014176,0.014624,0.7944,0.010016
+1352,641.504,1.55884,1.11002,0.008192,0.251904,0.006144,0.006144,0.00992,0.014368,0.01456,0.788544,0.01024
+1353,659.581,1.51611,1.41526,0.007872,0.233888,0.007264,0.006304,0.008384,0.014304,0.014944,1.10797,0.014336
+1354,484.848,2.0625,1.09366,0.008224,0.231456,0.006112,0.006176,0.00816,0.014368,0.014304,0.794624,0.01024
+1355,661.926,1.51074,1.08288,0.008192,0.227328,0.006144,0.006144,0.008192,0.014336,0.014368,0.787648,0.010528
+1356,687.71,1.4541,1.24931,0.008192,0.407552,0.006144,0.006176,0.00816,0.014368,0.01536,0.773088,0.010272
+1357,560.252,1.78491,1.88006,0.008064,0.226944,0.020992,0.006144,0.008192,0.014176,0.014464,1.56835,0.012736
+1358,439.815,2.27368,1.10234,0.008128,0.250112,0.006336,0.006272,0.008128,0.014016,0.01472,0.784384,0.01024
+1359,691.541,1.44604,1.09792,0.00784,0.227872,0.006144,0.006176,0.00816,0.014336,0.014336,0.802816,0.01024
+1360,449.221,2.22607,1.24928,0.008192,0.407552,0.006144,0.007232,0.007104,0.014496,0.01424,0.77408,0.01024
+1361,1013.11,0.987061,1.82662,0.008064,0.225024,0.006368,0.006304,0.007648,0.01392,0.014464,1.53075,0.01408
+1362,429.17,2.33008,1.0977,0.008128,0.251072,0.006336,0.006336,0.008,0.012992,0.016384,0.77824,0.010208
+1363,666.667,1.5,1.05834,0.008096,0.227552,0.006304,0.006304,0.008096,0.014048,0.014752,0.763136,0.010048
+1364,672.026,1.48804,1.23494,0.008192,0.407552,0.006144,0.006144,0.008192,0.01536,0.014528,0.758592,0.01024
+1365,614.646,1.62695,1.86915,0.00784,0.244352,0.006176,0.006112,0.008192,0.014336,0.014336,1.5543,0.013504
+1366,441.142,2.26685,1.07734,0.008128,0.224672,0.006336,0.006752,0.00816,0.014208,0.014464,0.784384,0.01024
+1367,644.735,1.55103,1.06307,0.00784,0.22608,0.006304,0.006144,0.007904,0.0136,0.013376,0.771744,0.01008
+1368,700.171,1.42822,1.26157,0.007776,0.407968,0.007232,0.006336,0.007008,0.01536,0.014528,0.78512,0.01024
+1369,580.993,1.72119,1.38797,0.008128,0.223712,0.006144,0.006144,0.008192,0.014336,0.014336,1.09309,0.013888
+1370,498.843,2.00464,1.09082,0.008224,0.224896,0.006368,0.006272,0.007872,0.013888,0.014592,0.783072,0.025632
+1371,545.697,1.83252,1.09773,0.008192,0.260096,0.006144,0.006144,0.008192,0.014208,0.014464,0.771296,0.008992
+1372,726.499,1.37646,1.24115,0.009216,0.405984,0.006368,0.006272,0.007872,0.014848,0.014368,0.76592,0.010304
+1373,598.48,1.6709,1.8351,0.007008,0.22736,0.007296,0.006144,0.007136,0.014176,0.014336,1.53805,0.0136
+1374,444.782,2.24829,1.08378,0.008096,0.225792,0.006144,0.007296,0.00704,0.0144,0.016,0.7888,0.010208
+1375,680.625,1.46924,1.07248,0.008192,0.22528,0.006176,0.007456,0.006912,0.014272,0.014336,0.77968,0.010176
+1376,661.606,1.51147,1.25974,0.008096,0.409408,0.006624,0.006144,0.008192,0.014336,0.014336,0.783424,0.009184
+1377,576.09,1.73584,1.83907,0.008192,0.227328,0.007392,0.006336,0.006784,0.014304,0.014336,1.5401,0.014304
+1378,453.649,2.20435,1.07795,0.008384,0.227552,0.006336,0.006144,0.007808,0.014176,0.014528,0.782784,0.01024
+1379,361.55,2.76587,1.11152,0.008128,0.247872,0.006144,0.006144,0.008224,0.014304,0.014368,0.794592,0.011744
+1380,1069.45,0.935059,1.11475,0.007872,0.275424,0.006144,0.007232,0.007104,0.014336,0.014336,0.772064,0.01024
+1381,604.665,1.65381,1.93469,0.008192,0.24528,0.006336,0.006304,0.007872,0.014048,0.014656,1.62038,0.011616
+1382,445.169,2.24634,1.0711,0.008192,0.231456,0.006112,0.006144,0.008192,0.014336,0.014336,0.772096,0.01024
+1383,679.158,1.47241,1.34349,0.008192,0.231008,0.00656,0.006144,0.008224,0.014208,0.014432,1.04038,0.014336
+1384,581.736,1.71899,1.07315,0.008192,0.226368,0.006368,0.006656,0.00784,0.01392,0.01456,0.779008,0.01024
+1385,602.264,1.6604,1.90822,0.00848,0.237632,0.006144,0.007232,0.009152,0.01424,0.014432,1.59875,0.01216
+1386,463.716,2.15649,1.07744,0.008192,0.229568,0.006144,0.006176,0.008032,0.014016,0.014368,0.780704,0.01024
+1387,671.806,1.48853,1.32096,0.007968,0.225056,0.006368,0.006368,0.008192,0.013824,0.014336,1.02605,0.0128
+1388,539.871,1.85229,1.0752,0.008224,0.247776,0.006144,0.006144,0.008192,0.014336,0.015488,0.758656,0.01024
+1389,660.432,1.51416,1.92358,0.00816,0.244416,0.006336,0.006176,0.007872,0.013824,0.014528,1.61037,0.011904
+1390,432.569,2.31177,1.07024,0.008192,0.231424,0.006144,0.006144,0.009472,0.013056,0.015776,0.769984,0.010048
+1391,689.098,1.45117,1.46022,0.008192,0.227328,0.006144,0.007648,0.006688,0.014336,0.01568,1.16192,0.012288
+1392,517.629,1.93188,1.0711,0.008192,0.231424,0.007296,0.006368,0.00816,0.014336,0.014656,0.770432,0.01024
+1393,491.186,2.03589,1.06883,0.01024,0.231584,0.006144,0.006176,0.008032,0.01392,0.014816,0.76768,0.01024
+1394,678.595,1.47363,1.08314,0.00784,0.22784,0.007264,0.007072,0.008,0.014112,0.014784,0.785984,0.01024
+1395,681.644,1.46704,1.44688,0.008192,0.225504,0.006336,0.006272,0.007936,0.013024,0.015648,1.15168,0.012288
+1396,315.708,3.16748,1.15952,0.008,0.258976,0.006144,0.021792,0.00688,0.014336,0.01552,0.8176,0.010272
+1397,710.494,1.40747,1.08304,0.01024,0.245152,0.006368,0.006272,0.007872,0.014144,0.015104,0.767936,0.009952
+1398,640.1,1.56226,1.07434,0.008192,0.234944,0.006336,0.006368,0.008352,0.014336,0.01552,0.770016,0.010272
+1399,696.362,1.43604,1.26733,0.008192,0.407552,0.00736,0.006272,0.006976,0.01536,0.01456,0.790624,0.010432
+1400,576.09,1.73584,1.41312,0.009344,0.233376,0.006336,0.006272,0.008416,0.014688,0.014432,1.10592,0.014336
+1401,509.96,1.96094,1.08554,0.00832,0.232288,0.006144,0.006176,0.00816,0.014336,0.014368,0.785568,0.010176
+1402,669.39,1.4939,1.0711,0.008192,0.228384,0.0064,0.006304,0.006752,0.014304,0.014336,0.776192,0.01024
+1403,694.59,1.4397,1.44547,0.008192,0.22528,0.007264,0.00688,0.007776,0.012896,0.015616,1.15149,0.01008
+1404,344.086,2.90625,1.08467,0.008192,0.241664,0.006176,0.007168,0.007136,0.014336,0.014336,0.775584,0.01008
+1405,862.861,1.15894,1.09613,0.010592,0.243072,0.006336,0.006304,0.007616,0.013248,0.014336,0.784384,0.01024
+1406,654.209,1.52856,1.06102,0.008192,0.227264,0.00624,0.006112,0.008192,0.014208,0.014496,0.76592,0.0104
+1407,683.122,1.46387,1.45008,0.007872,0.229504,0.006336,0.00624,0.007936,0.014016,0.014944,1.15299,0.01024
+1408,555.239,1.80103,1.82653,0.00784,0.232224,0.006208,0.0072,0.007072,0.014336,0.014336,1.52362,0.013696
+1409,443.866,2.25293,1.05549,0.008096,0.225952,0.006336,0.006144,0.008192,0.014272,0.0144,0.761856,0.01024
+1410,708.283,1.41187,1.06349,0.008128,0.224896,0.006368,0.006656,0.007808,0.014144,0.014656,0.770624,0.010208
+1411,652.957,1.53149,1.44371,0.00688,0.238624,0.006336,0.006528,0.00784,0.01312,0.015712,1.13859,0.01008
+1412,393.884,2.53882,1.50528,0.020288,0.302816,0.006368,0.00624,0.00784,0.022624,0.01456,1.11021,0.014336
+1413,604.933,1.65308,1.0727,0.008064,0.233728,0.006272,0.006176,0.00816,0.01408,0.014592,0.770048,0.011584
+1414,675.573,1.48022,1.09366,0.008192,0.235456,0.006208,0.007328,0.007008,0.014336,0.014336,0.790528,0.010272
+1415,677.137,1.47681,1.25213,0.006944,0.409184,0.006368,0.006304,0.00784,0.01472,0.014336,0.777472,0.00896
+1416,617.612,1.61914,1.44416,0.007168,0.234528,0.00688,0.006368,0.008192,0.014336,0.014336,1.13834,0.014016
+1417,475.119,2.10474,1.07539,0.00816,0.230784,0.006304,0.006304,0.007904,0.01328,0.015392,0.777024,0.01024
+1418,678.37,1.47412,1.06669,0.008192,0.225536,0.006144,0.006176,0.008192,0.014336,0.014304,0.773856,0.009952
+1419,677.361,1.47632,1.46842,0.008192,0.24576,0.00752,0.004768,0.008224,0.014304,0.014368,1.15504,0.01024
+1420,524.994,1.90479,1.82182,0.008192,0.22528,0.006144,0.006272,0.008064,0.014336,0.014336,1.52544,0.01376
+1421,424.368,2.35645,1.10182,0.008192,0.26336,0.006368,0.006144,0.008,0.014528,0.01456,0.770432,0.01024
+1422,697.073,1.43457,1.10269,0.00816,0.246656,0.006144,0.006144,0.008192,0.014048,0.014624,0.783904,0.014816
+1423,513.992,1.94556,1.25632,0.008736,0.407904,0.006144,0.006144,0.008192,0.014336,0.014336,0.780288,0.01024
+1424,670.157,1.49219,1.85718,0.00816,0.231872,0.006112,0.006176,0.008192,0.014272,0.014368,1.55437,0.013664
+1425,455.415,2.1958,1.07315,0.008192,0.229184,0.006336,0.006144,0.007776,0.014208,0.014656,0.77744,0.009216
+1426,668.189,1.49658,1.05789,0.008192,0.22528,0.006176,0.007552,0.007904,0.013184,0.01552,0.763744,0.010336
+1427,630.833,1.58521,1.06624,0.008032,0.22544,0.006144,0.007168,0.007168,0.014336,0.014336,0.773568,0.010048
+1428,598.655,1.67041,1.93126,0.008192,0.241344,0.006368,0.00624,0.007872,0.028992,0.014336,1.6056,0.01232
+1429,453.097,2.20703,1.05651,0.008032,0.225984,0.006144,0.007168,0.007168,0.014336,0.014336,0.763008,0.010336
+1430,695.889,1.43701,1.0601,0.009216,0.22224,0.006112,0.006176,0.00816,0.014176,0.014496,0.769472,0.010048
+1431,392.977,2.54468,1.32726,0.008096,0.448768,0.015744,0.006688,0.024672,0.014336,0.01568,0.768448,0.024832
+1432,1286.84,0.7771,1.4336,0.008192,0.239328,0.006336,0.00624,0.007936,0.014016,0.019008,1.11821,0.014336
+1433,500.978,1.99609,1.06477,0.008224,0.23056,0.006336,0.00672,0.007872,0.014016,0.014944,0.765984,0.010112
+1434,681.191,1.46802,1.07568,0.008064,0.225056,0.006368,0.00624,0.007808,0.013376,0.015392,0.783136,0.01024
+1435,641.303,1.55933,1.26486,0.008192,0.407552,0.007232,0.006304,0.008608,0.014528,0.02432,0.77824,0.009888
+1436,605.022,1.65283,1.85722,0.008192,0.225312,0.006112,0.006176,0.00816,0.014208,0.014464,1.56058,0.014016
+1437,432.204,2.31372,1.09994,0.008288,0.24224,0.006144,0.007328,0.007008,0.014336,0.015616,0.788704,0.010272
+1438,675.016,1.48145,1.05846,0.008192,0.22432,0.006368,0.00672,0.00784,0.0128,0.015776,0.766336,0.010112
+1439,671.475,1.48926,1.25846,0.007168,0.40752,0.006144,0.006176,0.00816,0.014368,0.014304,0.784384,0.01024
+1440,204.249,4.896,1.07974,0.008256,0.246144,0.006176,0.006112,0.008192,0.01408,0.014592,0.765984,0.010208
+1441,1118.82,0.893799,1.0872,0.010432,0.243648,0.006336,0.006304,0.008352,0.014336,0.014336,0.773248,0.010208
+1442,628.221,1.5918,1.0711,0.008192,0.229376,0.00576,0.006528,0.008192,0.014304,0.014368,0.774144,0.01024
+1443,655.255,1.52612,1.93411,0.008288,0.245792,0.006368,0.006304,0.00784,0.01424,0.014624,1.61958,0.011072
+1444,394.225,2.53662,1.07725,0.008128,0.23696,0.006368,0.006592,0.008192,0.013984,0.014624,0.77216,0.01024
+1445,775.758,1.28906,1.06992,0.006976,0.235488,0.006144,0.006144,0.008096,0.014144,0.01456,0.768064,0.010304
+1446,620.888,1.6106,1.09024,0.007904,0.254816,0.00624,0.006144,0.00816,0.014368,0.014336,0.768,0.010272
+1447,616.682,1.62158,1.89245,0.007968,0.24608,0.006144,0.006176,0.00816,0.014336,0.014336,1.57638,0.012864
+1448,426.045,2.34717,1.08806,0.007968,0.237792,0.006368,0.006336,0.007648,0.014112,0.014976,0.78272,0.010144
+1449,764.322,1.30835,1.06499,0.00784,0.231648,0.006368,0.006304,0.00784,0.013888,0.0144,0.7664,0.010304
+1450,593.537,1.68481,1.06022,0.008192,0.227328,0.006144,0.007232,0.009088,0.014272,0.014464,0.763456,0.010048
+1451,700.77,1.427,1.87171,0.007872,0.236032,0.006368,0.006304,0.008224,0.014336,0.014336,1.56467,0.013568
+1452,435.652,2.29541,1.07421,0.008192,0.231456,0.006112,0.006144,0.008192,0.014208,0.014464,0.774144,0.011296
+1453,656.305,1.52368,1.05171,0.008192,0.227328,0.006144,0.006144,0.008192,0.014336,0.01536,0.755872,0.010144
+1454,642.812,1.55566,1.06086,0.008064,0.225408,0.006144,0.006176,0.00816,0.014336,0.014368,0.767968,0.01024
+1455,685.523,1.45874,1.89235,0.008192,0.22528,0.006144,0.007424,0.008,0.01328,0.014304,1.59738,0.012352
+1456,433.347,2.30762,1.06291,0.008192,0.236864,0.006336,0.006304,0.008512,0.01408,0.014368,0.758016,0.01024
+1457,671.255,1.48975,1.07142,0.008128,0.2288,0.006432,0.006272,0.008672,0.014016,0.01472,0.774144,0.01024
+1458,617.425,1.61963,1.05795,0.008192,0.22528,0.006176,0.006112,0.008032,0.013888,0.01456,0.7656,0.010112
+1459,643.115,1.55493,1.8753,0.008192,0.242752,0.006336,0.006144,0.006912,0.014336,0.014432,1.56253,0.013664
+1460,454.001,2.20264,1.05062,0.008192,0.22528,0.007296,0.006816,0.007776,0.01424,0.014368,0.756448,0.010208
+1461,687.941,1.45361,1.06496,0.008192,0.22528,0.007264,0.007072,0.008192,0.014208,0.014464,0.770048,0.01024
+1462,682.78,1.4646,1.26592,0.007104,0.407552,0.006272,0.007168,0.007168,0.015552,0.01472,0.790112,0.010272
+1463,588.929,1.698,1.40518,0.007808,0.227104,0.006368,0.00624,0.007904,0.013184,0.015552,1.10675,0.014272
+1464,488.2,2.04834,1.06051,0.00816,0.225632,0.006112,0.007968,0.007936,0.013984,0.014304,0.766368,0.010048
+1465,645.955,1.5481,1.08582,0.008032,0.23392,0.006336,0.00624,0.007744,0.014144,0.014848,0.784416,0.010144
+1466,670.596,1.49121,1.24688,0.008192,0.407552,0.008032,0.006272,0.00768,0.014144,0.014816,0.770176,0.010016
+1467,565.199,1.76929,1.39293,0.00704,0.229216,0.006272,0.006144,0.008,0.013888,0.013088,1.09552,0.01376
+1468,503.751,1.98511,1.08106,0.008192,0.223232,0.007232,0.007136,0.008,0.013888,0.014592,0.788576,0.010208
+1469,645.955,1.5481,1.05638,0.00816,0.225568,0.006144,0.006144,0.008192,0.01408,0.014592,0.763136,0.010368
+1470,714.211,1.40015,1.45613,0.008192,0.22512,0.006304,0.006144,0.007488,0.014048,0.014816,1.16378,0.01024
+1471,482.45,2.07275,1.39866,0.007904,0.22592,0.006144,0.006176,0.00816,0.014304,0.014368,1.1017,0.013984
+1472,526.817,1.89819,1.07728,0.00816,0.22624,0.006144,0.008192,0.008192,0.014208,0.014464,0.781536,0.010144
+1473,685.523,1.45874,1.05517,0.008128,0.223744,0.006144,0.006144,0.008192,0.014336,0.014336,0.763904,0.01024
+1474,468.811,2.13306,1.51939,0.008192,0.296608,0.006496,0.006144,0.014368,0.014336,0.014304,1.14893,0.010016
+1475,698.261,1.43213,1.40202,0.008192,0.247808,0.006144,0.006144,0.008192,0.014336,0.014336,1.08259,0.014272
+1476,453.147,2.20679,1.10797,0.008192,0.271616,0.006368,0.006272,0.007872,0.013056,0.014304,0.770048,0.01024
+1477,713.216,1.4021,1.08179,0.008128,0.225664,0.006272,0.006144,0.022528,0.01552,0.014528,0.772768,0.01024
+1478,657.042,1.52197,1.46803,0.008192,0.237472,0.00624,0.006144,0.008192,0.014336,0.022528,1.15488,0.010048
+1479,525.196,1.90405,1.08144,0.00816,0.22624,0.006144,0.006144,0.017632,0.014336,0.01488,0.777664,0.01024
+1480,536.055,1.86548,1.08208,0.010176,0.22816,0.006144,0.006144,0.008192,0.014272,0.014208,0.784288,0.010496
+1481,683.806,1.4624,1.06432,0.008096,0.225376,0.006144,0.0072,0.007136,0.014336,0.014336,0.771712,0.009984
+1482,681.758,1.4668,1.43974,0.008192,0.224576,0.0064,0.00624,0.00768,0.013216,0.015424,1.14778,0.01024
+1483,313.533,3.18945,1.16758,0.006944,0.284672,0.006144,0.006144,0.008192,0.025984,0.020608,0.797184,0.011712
+1484,941.609,1.06201,1.0761,0.010784,0.244064,0.006112,0.006144,0.008192,0.013856,0.014752,0.762944,0.009248
+1485,662.462,1.50952,1.06874,0.008192,0.228992,0.006464,0.006208,0.008032,0.014176,0.014624,0.771808,0.01024
+1486,704.991,1.41846,1.236,0.007232,0.406752,0.006336,0.006304,0.007744,0.014528,0.01472,0.763168,0.009216
+1487,589.692,1.6958,1.37405,0.008224,0.225248,0.006176,0.007712,0.007808,0.01312,0.014336,1.07725,0.014176
+1488,504.434,1.98242,1.08246,0.008192,0.23744,0.006272,0.006144,0.008192,0.014176,0.014336,0.766112,0.0216
+1489,655.36,1.52588,1.06291,0.007936,0.226784,0.006368,0.006208,0.007936,0.014144,0.01488,0.768416,0.01024
+1490,668.516,1.49585,1.46432,0.00816,0.225312,0.006144,0.006144,0.008192,0.014336,0.014432,1.17136,0.01024
+1491,486.057,2.05737,1.49594,0.007008,0.243712,0.006144,0.022528,0.008192,0.014208,0.014496,1.16528,0.014368
+1492,430.659,2.32202,1.11302,0.00816,0.268864,0.0064,0.006272,0.007776,0.014368,0.014816,0.77616,0.010208
+1493,860.504,1.16211,1.06547,0.008096,0.227968,0.006112,0.00752,0.007872,0.01328,0.01552,0.7688,0.010304
+1494,662.569,1.50928,1.46934,0.007072,0.227328,0.008192,0.006144,0.00768,0.014624,0.026848,1.16122,0.01024
+1495,514.961,1.94189,1.40077,0.007872,0.229696,0.007392,0.006304,0.006784,0.014336,0.015424,1.09869,0.014272
+1496,502.207,1.99121,1.06592,0.00816,0.22832,0.006144,0.007936,0.007904,0.014208,0.01488,0.768128,0.01024
+1497,688.403,1.45264,1.06474,0.008192,0.238144,0.006112,0.007264,0.007136,0.014272,0.015456,0.757888,0.010272
+1498,685.982,1.45776,1.44758,0.008192,0.22528,0.007232,0.006272,0.007104,0.01424,0.015392,1.15389,0.009984
+1499,506.304,1.9751,1.46189,0.008192,0.22528,0.022528,0.007232,0.007296,0.014144,0.025856,1.1367,0.014656
+1500,493.732,2.02539,1.06589,0.008384,0.226016,0.0072,0.006752,0.007744,0.01312,0.016064,0.770368,0.01024
+1501,683.122,1.46387,1.06493,0.007808,0.226048,0.006144,0.006144,0.008192,0.014208,0.014464,0.77152,0.0104
+1502,556.673,1.79639,1.40442,0.016384,0.544064,0.0064,0.024544,0.007808,0.014752,0.024416,0.755712,0.010336
+1503,428.407,2.33423,1.17965,0.008192,0.329728,0.006176,0.006144,0.01632,0.014368,0.02576,0.76272,0.01024
+1504,623.25,1.60449,1.0783,0.01024,0.240736,0.006336,0.006304,0.007776,0.01328,0.015392,0.768192,0.010048
+1505,671.806,1.48853,1.0631,0.008192,0.229824,0.006112,0.007296,0.00704,0.014336,0.014336,0.765952,0.010016
+1506,653.374,1.53052,1.24723,0.008192,0.407552,0.006176,0.00624,0.008064,0.014336,0.014336,0.772096,0.01024
+1507,548.988,1.82153,1.42746,0.008192,0.231424,0.0072,0.006272,0.007008,0.014336,0.024576,1.11411,0.014336
+1508,540.013,1.85181,1.08112,0.008192,0.228064,0.006176,0.006112,0.008192,0.014336,0.014368,0.784352,0.011328
+1509,673.131,1.4856,1.06496,0.008192,0.226848,0.006368,0.006304,0.00832,0.014304,0.014336,0.770048,0.01024
+1510,687.133,1.45532,1.44125,0.007744,0.225056,0.006368,0.006464,0.007936,0.012864,0.015584,1.14912,0.010112
+1511,429.891,2.32617,1.10691,0.008448,0.275168,0.006144,0.006144,0.008192,0.014336,0.014336,0.763904,0.01024
+1512,810.127,1.23438,1.70762,0.008192,0.457792,0.025536,0.006144,0.008192,0.014336,0.014336,1.16272,0.010368
+1513,488.084,2.04883,1.07955,0.007808,0.236,0.006304,0.006144,0.008192,0.014336,0.014368,0.77616,0.01024
+1514,650.469,1.53735,1.43238,0.008096,0.223648,0.006624,0.006144,0.008064,0.01392,0.014656,1.14067,0.01056
+1515,539.231,1.85449,1.40099,0.007808,0.226944,0.006304,0.006304,0.007936,0.013152,0.014336,1.10493,0.01328
+1516,500.733,1.99707,1.06691,0.008192,0.229344,0.006304,0.006144,0.008032,0.014336,0.014496,0.769856,0.010208
+1517,668.298,1.49634,1.07722,0.008192,0.225312,0.007328,0.006496,0.007936,0.014144,0.014592,0.782752,0.010464
+1518,638.404,1.56641,1.43763,0.008192,0.225152,0.006176,0.005696,0.006688,0.013664,0.014848,1.14704,0.010176
+1519,502.145,1.99146,1.40099,0.007872,0.235296,0.006368,0.00624,0.007712,0.013216,0.01552,1.09443,0.014336
+1520,499.878,2.00049,1.08963,0.008288,0.2456,0.006304,0.006144,0.008032,0.013952,0.014848,0.776224,0.01024
+1521,732.737,1.36475,1.06688,0.008448,0.231616,0.00624,0.006048,0.008224,0.014304,0.014336,0.767328,0.010336
+1522,667.21,1.49878,1.45584,0.008064,0.22576,0.006144,0.00752,0.007904,0.013248,0.01536,1.16157,0.010272
+1523,521.651,1.91699,1.42205,0.007072,0.232672,0.006336,0.006304,0.007904,0.022816,0.014592,1.11021,0.014144
+1524,505.118,1.97974,1.06707,0.008192,0.228672,0.006336,0.006208,0.007872,0.013056,0.015488,0.770944,0.010304
+1525,689.33,1.45068,1.05206,0.008064,0.22336,0.007328,0.006272,0.006912,0.014304,0.014336,0.761312,0.010176
+1526,666.667,1.5,1.45408,0.008192,0.22528,0.00624,0.007136,0.007104,0.014304,0.014304,1.16128,0.01024
+1527,514.961,1.94189,1.0944,0.007008,0.224736,0.006336,0.006496,0.023648,0.0144,0.014528,0.786944,0.010304
+1528,481.316,2.07764,1.11002,0.01024,0.259392,0.006368,0.006464,0.00784,0.01424,0.014784,0.780448,0.01024
+1529,511.616,1.95459,1.15107,0.008256,0.297984,0.006368,0.006304,0.007904,0.021408,0.029728,0.762144,0.010976
+1530,991.527,1.00854,1.44093,0.008192,0.227328,0.00736,0.006304,0.007936,0.013376,0.015872,1.14454,0.010016
+1531,371.014,2.69531,1.94979,0.008192,0.234944,0.006336,0.006272,0.007776,0.013984,0.029696,1.63171,0.01088
+1532,435.189,2.29785,1.0665,0.008192,0.227328,0.006144,0.008128,0.008,0.014112,0.014432,0.7696,0.01056
+1533,677.921,1.4751,1.34931,0.008192,0.224832,0.0064,0.00608,0.007776,0.014304,0.014816,1.05286,0.014048
+1534,577.227,1.73242,1.06701,0.008192,0.227328,0.006144,0.007296,0.00704,0.014368,0.014304,0.772096,0.01024
+1535,596.563,1.67627,1.74694,0.008192,0.449728,0.047936,0.006176,0.00816,0.014336,0.014336,1.18784,0.01024
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..d5e1b88
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,876.461,1.20025,0.693973,0.00934378,0.251264,0.00612281,0.00618663,0.00748025,0.0143633,0.0150438,0.373601,0.010567
+max_1024,1587.6,2.7887,1.36816,0.038624,0.545984,0.028736,0.0896,0.046112,0.037792,0.029952,0.804896,0.26848
+min_1024,358.591,0.629883,0.611296,0.00816,0.219232,0.004288,0.004576,0.006144,0.012448,0.012864,0.321696,0.00864
+512,894.714,1.11768,0.626816,0.008608,0.233504,0.006144,0.005952,0.007456,0.013216,0.015392,0.326624,0.00992
+513,988.536,1.0116,0.621216,0.008672,0.22752,0.006144,0.006144,0.007424,0.013056,0.014336,0.328864,0.009056
+514,972.575,1.0282,0.614784,0.008576,0.224896,0.005664,0.005056,0.007872,0.01408,0.014304,0.324096,0.01024
+515,996.594,1.00342,0.612512,0.00896,0.220288,0.005088,0.006112,0.007296,0.013184,0.014464,0.327424,0.009696
+516,738.883,1.35339,1.31891,0.00944,0.516896,0.008096,0.00576,0.006624,0.014336,0.014336,0.731136,0.012288
+517,584.058,1.71216,0.6144,0.009952,0.22352,0.00608,0.005792,0.00656,0.014336,0.014336,0.324768,0.009056
+518,964.559,1.03674,0.628544,0.009216,0.234496,0.005792,0.00592,0.00672,0.014336,0.014368,0.327648,0.010048
+519,998.294,1.00171,0.616064,0.008288,0.22496,0.005664,0.005056,0.008,0.013632,0.014464,0.32624,0.00976
+520,982.019,1.01831,0.632608,0.009472,0.237504,0.004928,0.008192,0.007392,0.014176,0.0144,0.326528,0.010016
+521,677.137,1.47681,0.997632,0.008448,0.223232,0.006144,0.005856,0.006432,0.014368,0.014304,0.70656,0.012288
+522,951.231,1.05127,1.25722,0.008448,0.466944,0.007712,0.005824,0.006944,0.014336,0.014336,0.720544,0.012128
+523,611.617,1.63501,0.615712,0.009632,0.226944,0.005088,0.006176,0.007392,0.014528,0.01456,0.321696,0.009696
+524,909.414,1.09961,0.622592,0.009568,0.228,0.006144,0.006176,0.007328,0.01312,0.01536,0.326656,0.01024
+525,971.652,1.02917,0.616768,0.00848,0.226304,0.00512,0.006144,0.007488,0.012992,0.015392,0.326016,0.008832
+526,1038.41,0.963013,0.614944,0.008704,0.226912,0.005664,0.005024,0.007968,0.013952,0.014656,0.323296,0.008768
+527,917.871,1.08948,0.7952,0.008768,0.40544,0.005664,0.005792,0.00704,0.014144,0.014528,0.324992,0.008832
+528,785.728,1.27271,1.27757,0.009568,0.473504,0.008,0.005792,0.006944,0.014336,0.014336,0.7328,0.012288
+529,606.995,1.64746,0.622592,0.008192,0.229216,0.005664,0.00576,0.007168,0.013888,0.014592,0.327872,0.01024
+530,977.799,1.02271,0.622336,0.0096,0.227904,0.005632,0.005792,0.007072,0.013856,0.014496,0.328,0.009984
+531,1005.03,0.994995,0.6248,0.008352,0.231424,0.006048,0.005824,0.00656,0.014336,0.014336,0.32768,0.01024
+532,905.894,1.10388,0.618496,0.008192,0.227328,0.006144,0.005888,0.006432,0.014304,0.015392,0.324576,0.01024
+533,702.513,1.42346,0.797696,0.008192,0.40656,0.005088,0.006176,0.007488,0.014528,0.014336,0.3256,0.009728
+534,673.352,1.48511,0.663584,0.01168,0.267968,0.005024,0.006144,0.007584,0.013984,0.014656,0.326272,0.010272
+535,899.923,1.11121,0.622016,0.00976,0.23344,0.005696,0.005056,0.007776,0.013888,0.014688,0.322048,0.009664
+536,878.593,1.13818,0.632832,0.009408,0.237952,0.00592,0.00512,0.00784,0.01424,0.014432,0.32768,0.01024
+537,1079.17,0.926636,0.62352,0.00896,0.226816,0.004864,0.006048,0.008192,0.014144,0.014528,0.330784,0.009184
+538,1016.13,0.984131,0.62816,0.009888,0.229728,0.006144,0.006112,0.007776,0.0144,0.014752,0.329504,0.009856
+539,812.457,1.23083,0.627648,0.009056,0.235616,0.006144,0.005952,0.006336,0.014336,0.015808,0.32416,0.01024
+540,602.264,1.6604,0.628768,0.011904,0.231808,0.006144,0.006144,0.007264,0.013216,0.01536,0.327904,0.009024
+541,995.141,1.00488,0.619296,0.008992,0.227456,0.006144,0.006144,0.00736,0.013152,0.014304,0.325632,0.010112
+542,1003.92,0.996094,0.62272,0.00864,0.22784,0.006144,0.006048,0.00752,0.0144,0.01456,0.327968,0.0096
+543,953.445,1.04883,0.621312,0.008672,0.229664,0.005728,0.00656,0.007744,0.013952,0.014656,0.324096,0.01024
+544,909.414,1.09961,0.618752,0.00832,0.227328,0.005984,0.005792,0.006656,0.014336,0.014336,0.32672,0.00928
+545,742.096,1.34753,0.647648,0.00864,0.257376,0.0048,0.006112,0.007808,0.014208,0.014624,0.325056,0.009024
+546,637.311,1.56909,0.661312,0.011552,0.266976,0.006144,0.006016,0.006272,0.014368,0.0144,0.325536,0.010048
+547,974.774,1.02588,0.624928,0.008672,0.236064,0.006144,0.005792,0.006496,0.014336,0.014432,0.323328,0.009664
+548,969.467,1.03149,0.621024,0.008672,0.229472,0.005824,0.005792,0.006816,0.014336,0.014336,0.325632,0.010144
+549,990.209,1.00989,0.648096,0.008896,0.254176,0.006144,0.006144,0.007552,0.012928,0.015488,0.326528,0.01024
+550,947.819,1.05505,0.627744,0.008192,0.23504,0.005888,0.005024,0.008,0.014336,0.014336,0.32768,0.009248
+551,736.691,1.35742,1.07315,0.00944,0.242464,0.005632,0.005792,0.007008,0.014336,0.01552,0.760672,0.012288
+552,570.712,1.7522,0.618496,0.009632,0.225824,0.005632,0.005792,0.007072,0.014304,0.0144,0.3256,0.01024
+553,1068.06,0.936279,0.616896,0.00864,0.225216,0.005664,0.005824,0.007008,0.01424,0.014304,0.32576,0.01024
+554,978.032,1.02246,0.620544,0.009728,0.227168,0.004832,0.007808,0.006464,0.014336,0.014336,0.325632,0.01024
+555,936.229,1.06812,0.612576,0.008416,0.221184,0.005664,0.005792,0.006976,0.014048,0.014624,0.326944,0.008928
+556,983.315,1.01697,1.00115,0.008864,0.222976,0.005632,0.006464,0.006592,0.014496,0.015456,0.707328,0.013344
+557,707.182,1.41406,1.07862,0.00992,0.233824,0.006112,0.00608,0.0064,0.014176,0.014304,0.775232,0.012576
+558,548.878,1.8219,0.62416,0.00944,0.233408,0.004992,0.006112,0.00736,0.01312,0.01552,0.324448,0.00976
+559,1040.52,0.96106,0.616544,0.008992,0.22496,0.005632,0.005024,0.007936,0.014496,0.014368,0.32544,0.009696
+560,988.775,1.01135,0.616448,0.009696,0.2232,0.004672,0.007584,0.006752,0.014336,0.014368,0.326848,0.008992
+561,984.26,1.01599,0.61728,0.008992,0.223232,0.006144,0.006144,0.007296,0.013344,0.015232,0.327712,0.009184
+562,971.191,1.02966,0.800736,0.008352,0.405504,0.005888,0.0064,0.007264,0.013216,0.015456,0.328608,0.010048
+563,492.722,2.02954,0.622624,0.012064,0.228896,0.004832,0.006112,0.008192,0.014336,0.014336,0.325088,0.008768
+564,1046.37,0.955688,0.620096,0.008736,0.226464,0.00496,0.006144,0.00768,0.014368,0.014624,0.327424,0.009696
+565,959.813,1.04187,0.622656,0.00896,0.228512,0.005088,0.0072,0.007136,0.014336,0.014368,0.327584,0.009472
+566,914.694,1.09326,0.61648,0.008608,0.225056,0.005632,0.005056,0.007776,0.013888,0.014464,0.326144,0.009856
+567,983.079,1.01721,0.616448,0.00928,0.225632,0.004704,0.008192,0.007584,0.012896,0.015648,0.322272,0.01024
+568,936.871,1.06738,0.79664,0.008512,0.405504,0.005792,0.005696,0.006944,0.014336,0.014336,0.325632,0.009888
+569,540.405,1.85046,0.629376,0.010816,0.237472,0.005664,0.005824,0.00704,0.013984,0.014336,0.325504,0.008736
+570,929.43,1.07593,0.616192,0.009696,0.225408,0.005664,0.004992,0.007808,0.013952,0.01488,0.323808,0.009984
+571,989.253,1.01086,0.614432,0.008704,0.223232,0.006144,0.006048,0.00624,0.014336,0.016064,0.32384,0.009824
+572,1013.61,0.986572,0.616224,0.008736,0.22528,0.006112,0.005824,0.006464,0.014336,0.014336,0.325312,0.009824
+573,971.307,1.02954,0.622464,0.00864,0.226368,0.005056,0.007264,0.007072,0.014112,0.01456,0.32944,0.009952
+574,751.491,1.33069,0.633856,0.009696,0.237632,0.005728,0.005024,0.008096,0.013952,0.014816,0.32912,0.009792
+575,891.016,1.12231,0.82032,0.010336,0.42384,0.006144,0.006112,0.007328,0.014208,0.014368,0.32816,0.009824
+576,800.234,1.24963,0.625888,0.009664,0.225856,0.005728,0.005792,0.006912,0.014336,0.014368,0.33344,0.009792
+577,1018.27,0.982056,0.625984,0.009824,0.231584,0.005696,0.005824,0.007168,0.014208,0.014496,0.327488,0.009696
+578,908.305,1.10095,0.630784,0.008192,0.241664,0.006176,0.005888,0.006368,0.014336,0.0144,0.32352,0.01024
+579,951.783,1.05066,0.641024,0.008224,0.249824,0.006144,0.005824,0.006464,0.014336,0.014528,0.326784,0.008896
+580,977.566,1.02295,0.802016,0.009568,0.404128,0.006144,0.006112,0.0072,0.013312,0.0144,0.331392,0.00976
+581,541.727,1.84595,0.63664,0.010592,0.239616,0.006144,0.005824,0.006464,0.014336,0.014336,0.329664,0.009664
+582,998.051,1.00195,0.626688,0.008224,0.231392,0.005984,0.006144,0.006304,0.014336,0.014336,0.329728,0.01024
+583,715.896,1.39685,0.630816,0.009536,0.238272,0.006144,0.00608,0.006432,0.014112,0.014368,0.32688,0.008992
+584,1353.6,0.73877,0.632768,0.008544,0.238944,0.0048,0.006112,0.008192,0.014336,0.014496,0.32752,0.009824
+585,995.262,1.00476,0.628288,0.008224,0.231392,0.006176,0.005856,0.0064,0.014336,0.015424,0.330688,0.009792
+586,822.49,1.21582,0.628736,0.008192,0.237568,0.006144,0.006144,0.007584,0.014016,0.014528,0.325504,0.009056
+587,800,1.25,0.822336,0.014048,0.421696,0.005824,0.004928,0.00816,0.014112,0.01456,0.32928,0.009728
+588,809.886,1.23474,0.620416,0.008192,0.227328,0.006144,0.006144,0.007328,0.013152,0.014368,0.327648,0.010112
+589,933.03,1.07178,0.62032,0.009376,0.22592,0.005632,0.00496,0.007872,0.014048,0.014816,0.32768,0.010016
+590,959.251,1.04248,0.630048,0.008192,0.237376,0.005632,0.005024,0.007968,0.014336,0.014368,0.327264,0.009888
+591,1031.74,0.969238,0.62464,0.009664,0.229824,0.005664,0.006624,0.007296,0.013312,0.014336,0.328736,0.009184
+592,905.494,1.10437,0.800192,0.008192,0.407232,0.005728,0.004832,0.00816,0.014144,0.01456,0.327328,0.010016
+593,510.564,1.95862,0.670048,0.010688,0.274432,0.006144,0.006016,0.006304,0.014304,0.014336,0.32768,0.010144
+594,1072.81,0.932129,0.622688,0.008288,0.230656,0.004896,0.006112,0.008224,0.014304,0.014336,0.326656,0.009216
+595,977.916,1.02258,0.630752,0.009632,0.229536,0.005664,0.005024,0.00784,0.01408,0.014912,0.333856,0.010208
+596,981.666,1.01868,0.63808,0.008224,0.243136,0.004832,0.005984,0.009312,0.013216,0.01536,0.328192,0.009824
+597,983.551,1.01672,0.626688,0.009568,0.23008,0.006112,0.006144,0.008192,0.014368,0.014304,0.329056,0.008864
+598,766.826,1.30408,0.80176,0.009024,0.407424,0.005696,0.004832,0.008,0.0144,0.014432,0.327712,0.01024
+599,950.789,1.05176,1.272,0.008256,0.452128,0.024608,0.005824,0.006912,0.014336,0.014336,0.734912,0.010688
+600,605.738,1.65088,0.63488,0.008192,0.231424,0.006144,0.005952,0.008,0.014048,0.015008,0.33696,0.009152
+601,903.197,1.10718,0.626688,0.009248,0.231808,0.004832,0.006016,0.007872,0.014176,0.014848,0.327712,0.010176
+602,972.806,1.02795,0.62656,0.008416,0.233472,0.006144,0.005984,0.00736,0.01328,0.015552,0.326464,0.009888
+603,981.43,1.01892,0.616544,0.008288,0.227328,0.006144,0.005952,0.006464,0.014208,0.014336,0.323584,0.01024
+604,852.889,1.17249,0.64064,0.009632,0.242272,0.005696,0.005952,0.006784,0.014336,0.014336,0.331776,0.009856
+605,677.753,1.47546,0.628768,0.011552,0.234176,0.005696,0.005728,0.00704,0.014016,0.014464,0.327072,0.009024
+606,1002.45,0.997559,0.628736,0.008704,0.234688,0.005024,0.006176,0.007552,0.014336,0.014304,0.328256,0.009696
+607,933.03,1.07178,0.633824,0.00896,0.233696,0.006144,0.005984,0.006304,0.014368,0.014304,0.333824,0.01024
+608,903.297,1.10706,0.6208,0.008448,0.229216,0.005856,0.005792,0.006944,0.014336,0.014336,0.32704,0.008832
+609,997.929,1.00208,0.621568,0.008928,0.227584,0.005632,0.005792,0.00704,0.014144,0.01456,0.327648,0.01024
+610,753.287,1.32751,0.635552,0.008864,0.241664,0.005856,0.005824,0.006752,0.014368,0.01536,0.326624,0.01024
+611,638.056,1.56726,0.654816,0.012288,0.259616,0.005664,0.005056,0.008064,0.013856,0.01456,0.326016,0.009696
+612,938.373,1.06567,0.629056,0.008608,0.227392,0.006176,0.006112,0.015392,0.01328,0.015488,0.326528,0.01008
+613,985.682,1.01453,0.62464,0.008192,0.227328,0.006048,0.00576,0.008,0.01296,0.01552,0.330592,0.01024
+614,971.191,1.02966,0.622592,0.008192,0.229024,0.005664,0.00496,0.008032,0.013856,0.014528,0.328096,0.01024
+615,994.416,1.00562,0.620864,0.008512,0.229376,0.005696,0.006592,0.007584,0.014048,0.01472,0.325504,0.008832
+616,805.903,1.24084,0.628736,0.008192,0.23344,0.005664,0.005824,0.006976,0.014336,0.014336,0.32976,0.010208
+617,666.016,1.50146,0.649216,0.011808,0.250176,0.005664,0.005792,0.007136,0.014176,0.014528,0.329696,0.01024
+618,1011.36,0.98877,0.630944,0.00944,0.23632,0.006144,0.005888,0.0064,0.014336,0.014336,0.329088,0.008992
+619,901.309,1.1095,0.637088,0.008416,0.241376,0.005664,0.004992,0.008,0.0144,0.014336,0.329728,0.010176
+620,940.96,1.06274,0.640032,0.009248,0.242368,0.005664,0.005056,0.007968,0.01392,0.0144,0.331488,0.00992
+621,904.893,1.1051,0.626656,0.008448,0.231456,0.006016,0.005824,0.006592,0.014304,0.014336,0.329728,0.009952
+622,926.487,1.07935,0.62496,0.008352,0.232832,0.006368,0.005824,0.008448,0.013984,0.014592,0.325536,0.009024
+623,804.794,1.24255,0.833152,0.026208,0.422304,0.006144,0.00576,0.006528,0.014336,0.014336,0.32768,0.009856
+624,849.176,1.17761,0.627072,0.008576,0.230848,0.004832,0.005984,0.007936,0.014368,0.014464,0.329824,0.01024
+625,968.665,1.03235,0.629056,0.008896,0.231424,0.00592,0.006368,0.007744,0.014208,0.01488,0.32976,0.009856
+626,917.974,1.08936,0.619456,0.00912,0.227008,0.005696,0.005056,0.008,0.014176,0.014528,0.327008,0.008864
+627,1007.75,0.99231,0.618848,0.008512,0.22528,0.006144,0.006144,0.007392,0.013152,0.015424,0.327936,0.008864
+628,629.96,1.5874,0.800288,0.008736,0.405504,0.005984,0.005664,0.006784,0.014336,0.014336,0.329216,0.009728
+629,748.88,1.33533,0.6512,0.01056,0.251904,0.005728,0.005792,0.006912,0.014336,0.014336,0.331712,0.00992
+630,904.694,1.10535,0.652992,0.008288,0.249856,0.006144,0.006144,0.00736,0.014656,0.01456,0.336128,0.009856
+631,881.714,1.13416,0.6472,0.009664,0.246336,0.005792,0.005792,0.006848,0.01552,0.0144,0.332576,0.010272
+632,904.294,1.10583,0.666912,0.009792,0.270784,0.006112,0.005792,0.00656,0.014304,0.014432,0.329344,0.009792
+633,989.97,1.01013,0.62848,0.008256,0.236832,0.0048,0.006144,0.007712,0.01392,0.014688,0.326176,0.009952
+634,928.377,1.07715,0.63152,0.008864,0.239008,0.004896,0.006112,0.008192,0.014112,0.014368,0.325824,0.010144
+635,910.728,1.09802,1.25814,0.008576,0.469216,0.008192,0.006144,0.00768,0.014048,0.014528,0.717408,0.012352
+636,610.796,1.63721,0.620544,0.009536,0.225376,0.004736,0.006112,0.00784,0.014368,0.014624,0.328736,0.009216
+637,977.799,1.02271,0.616832,0.008576,0.22448,0.004896,0.006144,0.006272,0.015232,0.014688,0.326304,0.01024
+638,977.449,1.02307,0.616768,0.00848,0.224352,0.005024,0.006144,0.007648,0.014112,0.015104,0.326752,0.009152
+639,948.917,1.05383,0.619136,0.008992,0.225312,0.006112,0.00576,0.006528,0.014336,0.014336,0.32768,0.01008
+640,890.919,1.12244,0.640448,0.008224,0.247808,0.006112,0.005888,0.006432,0.014304,0.014336,0.327584,0.00976
+641,593.838,1.68396,0.63088,0.010368,0.23344,0.006176,0.006112,0.007424,0.013056,0.015456,0.329792,0.009056
+642,958.129,1.0437,0.620544,0.009504,0.22576,0.006336,0.00624,0.00784,0.01424,0.014208,0.327264,0.009152
+643,983.67,1.0166,0.618496,0.009568,0.223904,0.005664,0.006624,0.007328,0.013152,0.015648,0.327424,0.009184
+644,1017.13,0.983154,0.618528,0.008352,0.224512,0.004864,0.006144,0.00768,0.013952,0.014496,0.328416,0.010112
+645,931.227,1.07385,0.651296,0.008224,0.256,0.006144,0.006112,0.007264,0.013248,0.014336,0.329728,0.01024
+646,855.204,1.16931,0.626592,0.0096,0.231328,0.004864,0.006112,0.007712,0.014208,0.014624,0.328,0.010144
+647,952.337,1.05005,1.26346,0.008448,0.470656,0.008096,0.005792,0.006976,0.015616,0.014656,0.7208,0.012416
+648,578.981,1.72717,0.618528,0.009696,0.225824,0.005696,0.005792,0.006944,0.014336,0.014336,0.326816,0.009088
+649,1053.23,0.949463,0.620544,0.008192,0.22528,0.005984,0.007552,0.006944,0.014112,0.01456,0.32768,0.01024
+650,1001.71,0.998291,0.618592,0.00832,0.225248,0.00608,0.005792,0.00656,0.014432,0.015456,0.326496,0.010208
+651,955.558,1.04651,0.620352,0.008576,0.22528,0.006144,0.006176,0.007808,0.014368,0.014528,0.327808,0.009664
+652,754.953,1.32458,0.650208,0.00912,0.258144,0.006112,0.006144,0.007328,0.013152,0.014336,0.326944,0.008928
+653,573.308,1.74426,0.634912,0.010272,0.238752,0.00496,0.006144,0.00768,0.013824,0.014912,0.328128,0.01024
+654,1017.77,0.982544,0.620544,0.008192,0.229248,0.005696,0.005984,0.00688,0.014336,0.014336,0.326688,0.009184
+655,928.167,1.07739,0.6216,0.009632,0.2256,0.005632,0.005056,0.00784,0.01392,0.014496,0.329696,0.009728
+656,945.631,1.0575,0.620448,0.009856,0.225504,0.005664,0.005792,0.007136,0.014368,0.014304,0.32768,0.010144
+657,1018.15,0.982178,0.62688,0.008384,0.229376,0.005792,0.006496,0.007616,0.013984,0.014496,0.331584,0.009152
+658,721,1.38696,1.08618,0.008928,0.2272,0.005632,0.005824,0.007104,0.014208,0.015552,0.78944,0.012288
+659,607.58,1.64587,0.647168,0.00944,0.252704,0.006144,0.006176,0.007744,0.014144,0.014496,0.327168,0.009152
+660,964.786,1.0365,0.618816,0.008512,0.22736,0.006112,0.006016,0.006272,0.014336,0.014368,0.326912,0.008928
+661,975.587,1.02502,0.61728,0.00896,0.22528,0.005664,0.00576,0.007072,0.014336,0.014336,0.325632,0.01024
+662,1012.98,0.987183,0.618784,0.009024,0.225472,0.006112,0.005792,0.008064,0.013984,0.014464,0.326176,0.009696
+663,968.55,1.03247,1.00557,0.009408,0.224064,0.006144,0.006016,0.006272,0.014368,0.014304,0.712704,0.012288
+664,648.204,1.54272,1.2665,0.008768,0.469248,0.008192,0.006144,0.00752,0.014496,0.014432,0.725408,0.012288
+665,608.935,1.64221,0.620544,0.0096,0.223872,0.005952,0.005792,0.006688,0.014336,0.014336,0.329728,0.01024
+666,1002.57,0.997437,0.622592,0.008192,0.228448,0.006336,0.005856,0.007168,0.014304,0.014368,0.32768,0.01024
+667,973.268,1.02747,0.62416,0.008224,0.223232,0.006112,0.006336,0.008,0.013664,0.014496,0.334336,0.00976
+668,975.819,1.02478,0.619168,0.00864,0.223552,0.005856,0.005824,0.006752,0.014368,0.014304,0.329728,0.010144
+669,994.899,1.00513,0.80096,0.008736,0.40496,0.004896,0.006144,0.00752,0.014784,0.014432,0.329856,0.009632
+670,744.66,1.3429,1.26285,0.01024,0.466944,0.008192,0.006144,0.007488,0.0144,0.014816,0.722528,0.012096
+671,600.234,1.66602,0.632832,0.009696,0.24016,0.005792,0.0056,0.00704,0.013984,0.014624,0.325696,0.01024
+672,893.153,1.11963,0.771808,0.008576,0.378368,0.005664,0.005088,0.008032,0.014272,0.01456,0.327456,0.009792
+673,995.141,1.00488,0.618496,0.009216,0.224288,0.006112,0.006144,0.007424,0.013056,0.01568,0.327424,0.009152
+674,999.39,1.00061,0.62208,0.008384,0.2264,0.005024,0.006144,0.007552,0.013984,0.014368,0.330624,0.0096
+675,732.606,1.36499,0.639616,0.00864,0.245952,0.005792,0.005792,0.006848,0.014208,0.014464,0.32768,0.01024
+676,812.054,1.23145,0.817152,0.01168,0.420448,0.006144,0.006144,0.007328,0.014592,0.0144,0.326176,0.01024
+677,806.379,1.24011,0.62048,0.008704,0.224416,0.004992,0.007808,0.006496,0.014336,0.014336,0.329568,0.009824
+678,992.97,1.00708,0.620544,0.009856,0.2248,0.004992,0.006112,0.007616,0.014112,0.014624,0.328192,0.01024
+679,586.862,1.70398,0.620064,0.008192,0.224576,0.0048,0.006144,0.007968,0.014176,0.014432,0.330016,0.00976
+680,1204.17,0.830444,0.999456,0.008992,0.223136,0.005568,0.005056,0.008032,0.014208,0.0144,0.706624,0.01344
+681,581.57,1.71948,0.821248,0.011584,0.422592,0.006112,0.00576,0.00656,0.014336,0.014336,0.329728,0.01024
+682,862.952,1.15881,0.624768,0.008192,0.227328,0.00592,0.005632,0.00688,0.014336,0.014336,0.33312,0.009024
+683,981.078,1.01929,0.618496,0.008288,0.222272,0.004992,0.007296,0.007008,0.014336,0.014336,0.329728,0.01024
+684,942.259,1.06128,0.633408,0.008768,0.222944,0.005664,0.00592,0.007168,0.013824,0.01456,0.331232,0.023328
+685,908.909,1.10022,0.64176,0.008928,0.246816,0.005088,0.006144,0.007712,0.014208,0.014976,0.327648,0.01024
+686,771.23,1.29663,1.0295,0.009728,0.221696,0.006176,0.006112,0.007456,0.014464,0.028512,0.723424,0.011936
+687,464.794,2.15149,0.640032,0.011296,0.240608,0.006144,0.006144,0.007968,0.014016,0.014464,0.329664,0.009728
+688,1008.99,0.991089,0.619904,0.009952,0.225568,0.00608,0.005792,0.00656,0.014336,0.014336,0.327616,0.009664
+689,990.089,1.01001,0.618496,0.008192,0.223264,0.006112,0.005888,0.0064,0.014304,0.014368,0.3312,0.008768
+690,991.888,1.00818,0.614112,0.009824,0.221184,0.005632,0.005088,0.008,0.014016,0.014528,0.325888,0.009952
+691,1003.18,0.996826,0.626688,0.0096,0.221824,0.006144,0.006144,0.008192,0.01408,0.014592,0.335872,0.01024
+692,660.805,1.51331,0.718816,0.008416,0.302272,0.00496,0.017472,0.007072,0.026304,0.014528,0.327808,0.009984
+693,1066.39,0.937744,1.27184,0.009216,0.472064,0.008,0.005792,0.00672,0.014304,0.015424,0.728,0.01232
+694,590.329,1.69397,0.618496,0.008192,0.225312,0.005792,0.0056,0.007008,0.014336,0.014336,0.32768,0.01024
+695,977.449,1.02307,0.618336,0.009888,0.221536,0.006144,0.006144,0.008032,0.014336,0.014496,0.32768,0.01008
+696,968.436,1.03259,0.633728,0.00912,0.239616,0.005696,0.006592,0.007616,0.013984,0.015168,0.325728,0.010208
+697,967.978,1.03308,0.617856,0.009728,0.221536,0.005664,0.005792,0.006752,0.014144,0.014816,0.32944,0.009984
+698,740.152,1.35107,1.09619,0.008736,0.253952,0.006144,0.006176,0.007232,0.013248,0.014304,0.774144,0.012256
+699,587.493,1.70215,0.616608,0.00832,0.223232,0.006144,0.005984,0.006304,0.014336,0.014336,0.329024,0.008928
+700,970.961,1.02991,0.618432,0.008864,0.223392,0.005728,0.005792,0.006784,0.013952,0.01424,0.329952,0.009728
+701,1021.57,0.978882,0.621184,0.009024,0.222656,0.004832,0.00608,0.007648,0.014432,0.014816,0.331712,0.009984
+702,940.312,1.06348,0.618976,0.008672,0.222336,0.004992,0.006144,0.008192,0.014144,0.014464,0.329792,0.01024
+703,913.98,1.09412,1.01622,0.008928,0.219232,0.005664,0.005792,0.007008,0.01424,0.014432,0.728576,0.012352
+704,445.145,2.24646,0.62464,0.011424,0.227648,0.00464,0.006144,0.00784,0.014208,0.014592,0.329312,0.008832
+705,1001.34,0.998657,0.61488,0.008672,0.221184,0.006144,0.006144,0.008032,0.013824,0.01456,0.32608,0.01024
+706,967.407,1.03369,0.618496,0.009888,0.222848,0.004864,0.006112,0.007712,0.01392,0.013184,0.329728,0.01024
+707,1030.83,0.970093,0.619968,0.009312,0.222144,0.006048,0.005792,0.007584,0.013312,0.015392,0.330688,0.009696
+708,927.011,1.07874,0.620544,0.009568,0.221856,0.005792,0.006496,0.00736,0.01312,0.014336,0.331776,0.01024
+709,801.174,1.24817,0.650464,0.023808,0.222208,0.006112,0.006144,0.007328,0.013152,0.014336,0.335872,0.021504
+710,425.647,2.34937,0.639456,0.010976,0.225568,0.00608,0.005792,0.00656,0.014336,0.014336,0.345216,0.010592
+711,1553.87,0.643555,0.620992,0.008576,0.22848,0.004992,0.006144,0.007872,0.013856,0.014624,0.327712,0.008736
+712,959.138,1.0426,0.61856,0.00864,0.22544,0.006144,0.005824,0.006464,0.014336,0.014336,0.32768,0.009696
+713,958.465,1.04333,0.619872,0.009344,0.224128,0.006144,0.007648,0.006688,0.014336,0.014336,0.327648,0.0096
+714,938.481,1.06555,0.618976,0.008672,0.223168,0.005696,0.00576,0.00704,0.014336,0.014336,0.330816,0.009152
+715,829.066,1.20618,1.08758,0.008768,0.22864,0.00496,0.006144,0.00768,0.01392,0.014528,0.7904,0.012544
+716,581.075,1.72095,0.62064,0.00944,0.225216,0.00496,0.006144,0.007904,0.013856,0.014688,0.329664,0.008768
+717,981.783,1.01855,0.618304,0.008224,0.223232,0.005952,0.006336,0.00752,0.01296,0.014336,0.329728,0.010016
+718,970.156,1.03076,0.620544,0.009248,0.222176,0.006048,0.005824,0.00656,0.014336,0.014496,0.332704,0.009152
+719,990.568,1.00952,0.618528,0.009632,0.221824,0.006144,0.006112,0.00768,0.013888,0.014368,0.329952,0.008928
+720,920.139,1.08679,1.00352,0.009888,0.219488,0.006144,0.006208,0.008128,0.013952,0.0144,0.713024,0.012288
+721,501.715,1.99316,0.629152,0.010656,0.231456,0.006112,0.006112,0.008256,0.014208,0.014432,0.328864,0.009056
+722,982.254,1.01807,0.618016,0.008512,0.223232,0.005728,0.00656,0.00768,0.014016,0.014816,0.32768,0.009792
+723,979.436,1.021,0.613088,0.008928,0.220832,0.005632,0.006816,0.0064,0.014272,0.014336,0.326784,0.009088
+724,704.991,1.41846,0.709632,0.009024,0.297152,0.006144,0.00608,0.0064,0.01824,0.028672,0.32896,0.00896
+725,1220.86,0.819092,0.626848,0.008352,0.228576,0.004896,0.007936,0.006432,0.014304,0.015456,0.330656,0.01024
+726,866.603,1.15393,0.82944,0.00832,0.434048,0.00608,0.005696,0.006656,0.014336,0.01568,0.329568,0.009056
+727,504.185,1.9834,0.624448,0.011776,0.228864,0.00512,0.006144,0.007584,0.012896,0.014336,0.32768,0.010048
+728,839.516,1.19116,0.688512,0.008576,0.274432,0.006144,0.005952,0.00736,0.024928,0.022272,0.328608,0.01024
+729,1047.3,0.954834,0.619232,0.008608,0.2256,0.006144,0.007488,0.006848,0.014336,0.014336,0.327136,0.008736
+730,919.829,1.08716,0.616864,0.008608,0.222912,0.005696,0.004992,0.008,0.014208,0.014464,0.327744,0.01024
+731,1004.54,0.995483,0.616448,0.009792,0.221632,0.006144,0.005792,0.006496,0.014272,0.0144,0.327712,0.010208
+732,780.488,1.28125,1.29434,0.00832,0.49344,0.008064,0.005856,0.00656,0.0144,0.014272,0.732288,0.011136
+733,589.48,1.69641,0.620448,0.009312,0.22416,0.00608,0.00624,0.007296,0.013152,0.014368,0.329696,0.010144
+734,972.806,1.02795,0.6192,0.009056,0.22128,0.006112,0.006176,0.007584,0.014016,0.014528,0.330336,0.010112
+735,986.394,1.01379,0.62672,0.009344,0.22192,0.005664,0.005888,0.00704,0.014336,0.014368,0.337888,0.010272
+736,999.878,1.00012,0.614464,0.008832,0.221184,0.005824,0.005792,0.006816,0.014368,0.014304,0.327616,0.009728
+737,874.186,1.14392,1.01786,0.009568,0.23392,0.005632,0.00688,0.007456,0.01408,0.014624,0.713408,0.012288
+738,720.936,1.38708,1.3231,0.00848,0.49056,0.023488,0.0064,0.007936,0.014432,0.022432,0.73728,0.012096
+739,588.717,1.69861,0.616224,0.008608,0.223456,0.005696,0.004736,0.008032,0.014048,0.014368,0.32752,0.00976
+740,942.476,1.06104,0.616576,0.00832,0.222752,0.005696,0.005024,0.007712,0.014368,0.014048,0.32992,0.008736
+741,997.808,1.0022,0.622624,0.009664,0.22176,0.006144,0.006144,0.008192,0.014016,0.014496,0.331936,0.010272
+742,1000.49,0.999512,0.618496,0.00928,0.222144,0.006176,0.00592,0.006336,0.014336,0.014336,0.329728,0.01024
+743,899.528,1.11169,0.801888,0.009664,0.404032,0.006144,0.006144,0.007424,0.0144,0.01456,0.329856,0.009664
+744,528.994,1.89038,0.628064,0.012128,0.230976,0.00592,0.005024,0.007776,0.013888,0.014432,0.328256,0.009664
+745,928.798,1.07666,0.619072,0.008768,0.222208,0.00512,0.008128,0.007296,0.013248,0.015424,0.32864,0.01024
+746,980.843,1.01953,0.616448,0.009216,0.22144,0.006368,0.004768,0.008064,0.01408,0.014464,0.32896,0.009088
+747,958.577,1.04321,0.616928,0.008992,0.220544,0.004864,0.006112,0.007168,0.013312,0.015392,0.33072,0.009824
+748,997.565,1.00244,0.618464,0.008192,0.222304,0.005056,0.007584,0.00672,0.014336,0.014336,0.329728,0.010208
+749,776.567,1.28772,0.643424,0.022528,0.221536,0.005856,0.005824,0.006752,0.014336,0.028672,0.329184,0.008736
+750,517.76,1.9314,0.656288,0.011168,0.237568,0.005696,0.005792,0.006944,0.026624,0.023872,0.32944,0.009184
+751,1085.46,0.921265,0.639008,0.008224,0.243712,0.005824,0.005792,0.006816,0.014336,0.014336,0.331104,0.008864
+752,989.253,1.01086,0.61584,0.00944,0.221984,0.006144,0.006048,0.0064,0.014176,0.015456,0.32656,0.009632
+753,975.587,1.02502,0.617472,0.009728,0.221696,0.006016,0.006272,0.007584,0.01392,0.014656,0.328032,0.009568
+754,945.849,1.05725,0.618496,0.008192,0.223232,0.006016,0.005792,0.006624,0.014336,0.014336,0.329728,0.01024
+755,795.108,1.25769,1.07136,0.009088,0.223232,0.006144,0.00608,0.007296,0.013248,0.0144,0.779616,0.012256
+756,578.204,1.72949,0.618784,0.00848,0.221184,0.006144,0.006144,0.008128,0.0144,0.014368,0.329696,0.01024
+757,950.017,1.05261,0.636352,0.009568,0.23856,0.006144,0.005856,0.006464,0.015648,0.014688,0.329728,0.009696
+758,994.295,1.00574,0.618496,0.009376,0.221856,0.005632,0.006848,0.00752,0.014304,0.01488,0.329152,0.008928
+759,937.3,1.06689,0.620288,0.009888,0.220992,0.005664,0.00656,0.006752,0.014336,0.014336,0.331776,0.009984
+760,980.725,1.01965,0.618016,0.009536,0.221056,0.004928,0.006144,0.007584,0.014112,0.014688,0.330048,0.00992
+761,769.78,1.29907,1.36816,0.008704,0.50992,0.02784,0.005056,0.008032,0.018528,0.029952,0.74832,0.011808
+762,455.947,2.19324,0.715008,0.00864,0.311072,0.005664,0.006656,0.006496,0.022528,0.014336,0.329728,0.009888
+763,1439.47,0.694702,0.62448,0.009696,0.227872,0.006144,0.005824,0.007552,0.013344,0.01424,0.329728,0.01008
+764,887.541,1.12671,0.637632,0.008896,0.2376,0.006016,0.005792,0.006592,0.014336,0.018432,0.331008,0.00896
+765,985.444,1.01477,0.616448,0.008672,0.223456,0.006016,0.005792,0.006624,0.014336,0.014336,0.32768,0.009536
+766,960.263,1.04138,0.806912,0.009952,0.407648,0.005664,0.0064,0.00656,0.014368,0.01536,0.33072,0.01024
+767,509.421,1.96301,0.622592,0.012192,0.228672,0.004928,0.006112,0.008032,0.012448,0.015744,0.325664,0.0088
+768,949.027,1.05371,0.620576,0.008224,0.223264,0.006112,0.006144,0.00736,0.013216,0.01536,0.330656,0.01024
+769,972.691,1.02808,0.61776,0.009248,0.220128,0.006144,0.006144,0.008,0.014016,0.014592,0.329824,0.009664
+770,1004.54,0.995483,0.616896,0.008832,0.22112,0.005664,0.00576,0.007104,0.013984,0.0144,0.329984,0.010048
+771,974.542,1.02612,0.621024,0.008672,0.221184,0.006144,0.005952,0.007584,0.013216,0.01536,0.332672,0.01024
+772,795.108,1.25769,0.626688,0.008192,0.222784,0.005664,0.005056,0.008,0.013952,0.027168,0.325632,0.01024
+773,607.715,1.64551,0.618688,0.010432,0.22528,0.006144,0.006112,0.007264,0.013248,0.014336,0.325632,0.01024
+774,985.919,1.01428,0.620768,0.008416,0.224768,0.006592,0.005792,0.00656,0.015744,0.014496,0.328192,0.010208
+775,840.291,1.19006,0.636928,0.009792,0.225504,0.005632,0.00496,0.008064,0.014144,0.026528,0.333344,0.00896
+776,976.866,1.02368,0.623264,0.008608,0.223488,0.006144,0.005824,0.006464,0.014368,0.014304,0.335072,0.008992
+777,996.715,1.0033,0.618112,0.008192,0.221184,0.006144,0.00736,0.006976,0.01424,0.014432,0.329408,0.010176
+778,815.936,1.22559,0.633472,0.008736,0.223328,0.005696,0.005824,0.006912,0.014336,0.028192,0.330208,0.01024
+779,695.003,1.43884,0.623552,0.0112,0.223264,0.006112,0.006176,0.007232,0.013216,0.014336,0.331776,0.01024
+780,890.048,1.12354,0.611296,0.008608,0.22096,0.004896,0.006144,0.008192,0.013728,0.012896,0.325632,0.01024
+781,1037.09,0.964233,0.618816,0.008576,0.221184,0.006144,0.007328,0.007008,0.014336,0.014336,0.329728,0.010176
+782,1003.43,0.996582,0.61968,0.01024,0.221088,0.005664,0.00672,0.00768,0.013984,0.014336,0.330112,0.009856
+783,1001.1,0.998901,0.618016,0.008192,0.221184,0.005984,0.006304,0.007584,0.012896,0.015552,0.33056,0.00976
+784,797.197,1.25439,0.631456,0.008864,0.221184,0.006176,0.00592,0.006368,0.014304,0.028032,0.330368,0.01024
+785,515.22,1.94092,0.626688,0.010368,0.230464,0.004928,0.006144,0.007712,0.012768,0.01568,0.328384,0.01024
+786,951.12,1.05139,0.618528,0.00928,0.2216,0.005664,0.006656,0.006688,0.014304,0.015648,0.328416,0.010272
+787,978.851,1.02161,0.615072,0.008992,0.222816,0.004832,0.006016,0.00768,0.012928,0.015712,0.326176,0.00992
+788,1000.49,0.999512,0.622592,0.009312,0.222144,0.005952,0.007392,0.007104,0.014368,0.014304,0.331776,0.01024
+789,652.177,1.53333,1.08806,0.009024,0.260096,0.006176,0.021728,0.006912,0.014336,0.015456,0.740256,0.01408
+790,724.379,1.38049,1.28,0.009568,0.461216,0.0224,0.005824,0.006848,0.014336,0.014336,0.733184,0.012288
+791,675.183,1.48108,0.62672,0.009696,0.22992,0.006144,0.005792,0.007936,0.014112,0.015168,0.328992,0.00896
+792,975.703,1.0249,0.622912,0.008512,0.227264,0.005664,0.005824,0.007008,0.014336,0.014336,0.329728,0.01024
+793,938.588,1.06543,0.625664,0.009216,0.22704,0.005632,0.004992,0.008128,0.014144,0.014496,0.331776,0.01024
+794,974.89,1.02576,0.61584,0.008224,0.224736,0.005664,0.005184,0.008,0.01424,0.014528,0.3256,0.009664
+795,975.006,1.02563,0.811008,0.009024,0.40672,0.00496,0.006112,0.007648,0.01456,0.0144,0.337824,0.00976
+796,533.021,1.8761,0.624864,0.010624,0.229216,0.006176,0.006112,0.007392,0.013088,0.015648,0.327456,0.009152
+797,957.121,1.0448,0.624192,0.009632,0.2256,0.005632,0.004896,0.008192,0.014336,0.014336,0.331776,0.009792
+798,963.878,1.03748,0.618496,0.009792,0.221632,0.006144,0.006144,0.007744,0.014208,0.014688,0.329248,0.008896
+799,964.786,1.0365,0.622528,0.00832,0.224288,0.005088,0.006144,0.007712,0.014272,0.01456,0.332096,0.010048
+800,1030.05,0.970825,0.616192,0.008512,0.222432,0.004896,0.006144,0.006176,0.014304,0.014336,0.329504,0.009888
+801,873.161,1.14526,0.804608,0.008608,0.405472,0.006176,0.005856,0.006432,0.014304,0.014336,0.333664,0.00976
+802,520.987,1.91943,0.66864,0.0112,0.243744,0.006144,0.006144,0.007424,0.021248,0.028672,0.335168,0.008896
+803,1001.96,0.998047,0.620704,0.008608,0.223232,0.006144,0.007712,0.006624,0.014336,0.014336,0.329728,0.009984
+804,965.696,1.03552,0.61696,0.008704,0.221184,0.006144,0.007328,0.007008,0.014336,0.014336,0.32768,0.01024
+805,967.292,1.03381,0.6144,0.00944,0.223392,0.004736,0.007168,0.007168,0.014272,0.0144,0.324832,0.008992
+806,1051.2,0.951294,0.618496,0.008192,0.222912,0.005664,0.006944,0.007328,0.014176,0.01472,0.32832,0.01024
+807,689.272,1.45081,0.68576,0.009632,0.287328,0.006144,0.006144,0.007488,0.014176,0.013152,0.331776,0.00992
+808,797.43,1.25403,1.3479,0.008672,0.460672,0.0272,0.036896,0.033856,0.014368,0.014272,0.74032,0.011648
+809,612.12,1.63367,0.645696,0.008736,0.25376,0.005664,0.005792,0.0072,0.01408,0.014368,0.327264,0.008832
+810,1081.31,0.924805,0.629856,0.009536,0.234176,0.005728,0.005792,0.006912,0.014336,0.014368,0.329248,0.00976
+811,930.064,1.0752,0.62512,0.008736,0.229376,0.006144,0.006112,0.008224,0.01376,0.01488,0.327712,0.010176
+812,1010.48,0.989624,1.00147,0.009408,0.226112,0.005792,0.005792,0.006848,0.014336,0.014336,0.70656,0.012288
+813,693.121,1.44275,1.26509,0.008192,0.466944,0.012288,0.005792,0.006528,0.014336,0.014304,0.72464,0.012064
+814,420.404,2.37866,0.619456,0.00864,0.22784,0.005984,0.005824,0.006656,0.014304,0.014336,0.326912,0.00896
+815,1509.77,0.662354,0.621408,0.008992,0.22912,0.005632,0.005088,0.007968,0.013984,0.014912,0.325632,0.01008
+816,994.537,1.00549,0.618912,0.008608,0.227328,0.006144,0.00608,0.006208,0.014336,0.014336,0.327104,0.008768
+817,967.75,1.03333,0.622336,0.008864,0.230528,0.005024,0.006112,0.00752,0.01296,0.014336,0.327296,0.009696
+818,731.951,1.36621,0.636768,0.009408,0.2384,0.005664,0.00576,0.007008,0.013664,0.014528,0.332256,0.01008
+819,626.06,1.59729,0.626688,0.011808,0.23136,0.00464,0.006144,0.008064,0.013536,0.014752,0.327328,0.009056
+820,1052.42,0.950195,0.620768,0.008416,0.228512,0.004992,0.006112,0.007424,0.014272,0.014592,0.326208,0.01024
+821,988.656,1.01147,0.626688,0.008352,0.22896,0.005664,0.006464,0.00656,0.014336,0.015456,0.330688,0.010208
+822,920.656,1.08618,0.614208,0.0088,0.222592,0.004832,0.007072,0.0072,0.014112,0.01456,0.325312,0.009728
+823,988.656,1.01147,0.61584,0.009376,0.223424,0.004832,0.007872,0.006432,0.014304,0.014336,0.325408,0.009856
+824,855.293,1.16919,1.07894,0.008672,0.231008,0.005728,0.004992,0.008128,0.014368,0.014304,0.77952,0.012224
+825,579.349,1.72607,0.621472,0.00864,0.225408,0.005664,0.005056,0.009152,0.013248,0.015456,0.328608,0.01024
+826,986.631,1.01355,0.621792,0.00976,0.222784,0.005056,0.00768,0.006624,0.014336,0.014336,0.33152,0.009696
+827,971.307,1.02954,0.624832,0.008384,0.233344,0.005664,0.005792,0.007104,0.014048,0.014592,0.32688,0.009024
+828,956.339,1.04565,0.618624,0.008352,0.225248,0.006176,0.006112,0.008064,0.014304,0.014528,0.3256,0.01024
+829,984.497,1.01575,0.617312,0.008928,0.222784,0.004704,0.00784,0.006496,0.014304,0.014336,0.329152,0.008768
+830,845.757,1.18237,0.621664,0.00928,0.229472,0.00496,0.006144,0.007456,0.014816,0.014272,0.32544,0.009824
+831,539.515,1.85352,0.625664,0.011936,0.229728,0.006176,0.005984,0.006304,0.014304,0.015552,0.32592,0.00976
+832,1000.24,0.999756,0.61632,0.008416,0.2232,0.005792,0.006496,0.00752,0.014336,0.014464,0.326176,0.00992
+833,947.381,1.05554,0.615424,0.00896,0.222528,0.005056,0.006144,0.008128,0.013536,0.01472,0.326112,0.01024
+834,1073.38,0.931641,0.616352,0.008192,0.223264,0.005888,0.005792,0.00672,0.014336,0.014336,0.32768,0.010144
+835,957.681,1.04419,0.621856,0.00976,0.227136,0.004832,0.00608,0.007584,0.012896,0.01568,0.328192,0.009696
+836,646.057,1.54785,1.35619,0.009632,0.246784,0.006016,0.005824,0.006592,0.014336,0.01552,0.785248,0.26624
+837,559.525,1.78723,0.624288,0.008352,0.228768,0.004704,0.006144,0.007872,0.014048,0.014944,0.3296,0.009856
+838,931.862,1.07312,0.636672,0.008576,0.226464,0.006368,0.005792,0.022784,0.013024,0.015648,0.328224,0.009792
+839,985.207,1.01501,0.632832,0.008384,0.224448,0.019072,0.0072,0.007168,0.013824,0.01472,0.32928,0.008736
+840,1060.59,0.942871,0.636928,0.00944,0.246496,0.005632,0.005792,0.007072,0.013984,0.014528,0.325216,0.008768
+841,959.363,1.04236,0.999776,0.00896,0.22544,0.004288,0.006048,0.00816,0.013728,0.01456,0.706432,0.01216
+842,500.366,1.99854,0.625632,0.01088,0.229408,0.005632,0.005056,0.008,0.014048,0.014688,0.32768,0.01024
+843,968.894,1.0321,0.619264,0.00896,0.22688,0.005664,0.006912,0.0064,0.01424,0.014464,0.326592,0.009152
+844,992.488,1.00757,0.619552,0.009536,0.223392,0.005664,0.00512,0.007648,0.014336,0.01472,0.329344,0.009792
+845,962.745,1.0387,0.621248,0.009024,0.227328,0.005632,0.0048,0.008064,0.013984,0.014528,0.327872,0.010016
+846,921.796,1.08484,0.620576,0.0096,0.22176,0.005696,0.005792,0.007008,0.013664,0.014368,0.333664,0.009024
+847,967.178,1.03394,0.826752,0.00832,0.432128,0.006144,0.006144,0.008032,0.013984,0.014656,0.327616,0.009728
+848,542.05,1.84485,0.622592,0.01024,0.22736,0.005888,0.005792,0.008032,0.014368,0.014496,0.326176,0.01024
+849,592.207,1.6886,0.6144,0.009408,0.222016,0.006176,0.006112,0.00736,0.01312,0.01536,0.325728,0.00912
+850,1587.6,0.629883,0.616672,0.008416,0.223232,0.005952,0.005952,0.00656,0.014304,0.014336,0.328896,0.009024
+851,991.527,1.00854,0.618464,0.009248,0.222016,0.005664,0.006784,0.007616,0.012864,0.014336,0.329728,0.010208
+852,983.788,1.01648,0.618592,0.008288,0.22224,0.005088,0.006144,0.006144,0.014368,0.014304,0.331808,0.010208
+853,680.964,1.46851,0.627648,0.008992,0.233696,0.006112,0.00608,0.007264,0.01328,0.01584,0.326176,0.010208
+854,614.323,1.62781,0.62512,0.01072,0.230432,0.005088,0.006144,0.008096,0.014272,0.014528,0.326944,0.008896
+855,983.197,1.01709,0.618528,0.009888,0.222976,0.004736,0.006112,0.00768,0.013856,0.014944,0.32912,0.009216
+856,970.501,1.0304,0.616448,0.009376,0.221824,0.005632,0.00688,0.006144,0.014336,0.014336,0.32768,0.01024
+857,976.633,1.02393,0.616448,0.009216,0.22208,0.005632,0.005792,0.00704,0.013664,0.014816,0.328992,0.009216
+858,1018.02,0.9823,1.00333,0.010048,0.223264,0.005632,0.006816,0.007552,0.013984,0.014656,0.708896,0.01248
+859,578.776,1.72778,0.822048,0.01088,0.423808,0.005792,0.00592,0.006976,0.014336,0.014336,0.331072,0.008928
+860,837.285,1.19434,0.615072,0.008608,0.223488,0.006144,0.005856,0.006432,0.014336,0.014336,0.325632,0.01024
+861,1051.47,0.95105,0.614368,0.008224,0.22272,0.005664,0.007072,0.007264,0.01328,0.014432,0.325536,0.010176
+862,954.111,1.0481,0.620544,0.00944,0.223392,0.004736,0.008192,0.007392,0.01328,0.015168,0.328704,0.01024
+863,953.445,1.04883,0.611808,0.00864,0.221184,0.006144,0.005792,0.006496,0.014336,0.014336,0.325184,0.009696
+864,1028.37,0.972412,1.00426,0.008928,0.223232,0.006144,0.006176,0.008128,0.01392,0.0144,0.71104,0.012288
+865,358.591,2.7887,0.659488,0.012096,0.259712,0.004832,0.006016,0.007936,0.013664,0.0144,0.332128,0.008704
+866,1423.71,0.702393,0.620544,0.008192,0.227328,0.006144,0.006144,0.007296,0.013312,0.015968,0.32592,0.01024
+867,929.22,1.07617,0.618176,0.008544,0.226784,0.004832,0.007584,0.00656,0.014336,0.014336,0.325568,0.009632
+868,986.869,1.01331,0.614464,0.008224,0.224736,0.005664,0.00512,0.007872,0.014112,0.014432,0.324032,0.010272
+869,991.407,1.00867,0.618912,0.008608,0.2232,0.005664,0.006656,0.008032,0.01392,0.014592,0.328,0.01024
+870,838.829,1.19214,0.61648,0.008192,0.225024,0.005728,0.005792,0.007168,0.014112,0.014528,0.327008,0.008928
+871,590.032,1.69482,0.62464,0.012224,0.227392,0.005888,0.005792,0.006784,0.014304,0.014336,0.3288,0.00912
+872,936.55,1.06775,0.614464,0.008288,0.221152,0.006144,0.006048,0.007904,0.013728,0.01472,0.327488,0.008992
+873,1054.85,0.947998,0.62032,0.009952,0.221408,0.006144,0.006016,0.006464,0.014144,0.015488,0.330624,0.01008
+874,979.319,1.02112,0.621216,0.008864,0.22528,0.006144,0.005632,0.006656,0.014336,0.014368,0.330784,0.009152
+875,949.797,1.05286,0.618496,0.008192,0.223232,0.006144,0.005824,0.006464,0.014336,0.014368,0.329696,0.01024
+876,867.797,1.15234,0.622464,0.009216,0.226304,0.006144,0.006112,0.007424,0.013088,0.01552,0.328544,0.010112
+877,502.608,1.98962,0.6256,0.010976,0.231392,0.005632,0.005056,0.008,0.014336,0.014336,0.326656,0.009216
+878,618.544,1.6167,0.71872,0.008352,0.305056,0.005632,0.005792,0.007104,0.017888,0.027168,0.331776,0.009952
+879,1299.29,0.769653,0.629568,0.008704,0.229376,0.0056,0.005024,0.00784,0.022816,0.014336,0.326816,0.009056
+880,985.089,1.01514,0.624736,0.00832,0.227328,0.006144,0.00544,0.006848,0.014336,0.015392,0.33072,0.010208
+881,915.921,1.0918,0.810624,0.009952,0.415232,0.004896,0.006144,0.00768,0.014752,0.014432,0.327648,0.009888
+882,498.6,2.00562,0.62608,0.010592,0.226848,0.005664,0.005024,0.008192,0.014336,0.014336,0.331232,0.009856
+883,1032.13,0.968872,0.61808,0.009536,0.225408,0.0048,0.006016,0.00784,0.01408,0.014272,0.326304,0.009824
+884,958.017,1.04382,0.62048,0.009568,0.225824,0.005696,0.006752,0.00784,0.01408,0.014464,0.32608,0.010176
+885,885.048,1.12988,0.614464,0.008256,0.222464,0.004864,0.006144,0.00768,0.014368,0.014688,0.32576,0.01024
+886,1040.91,0.960693,0.621888,0.008192,0.223232,0.006176,0.007456,0.006848,0.014336,0.014336,0.331552,0.00976
+887,713.216,1.4021,0.643072,0.009568,0.23424,0.006048,0.005792,0.007872,0.013056,0.014336,0.342016,0.010144
+888,619.105,1.61523,0.62192,0.011456,0.226176,0.005696,0.005792,0.006944,0.014368,0.014304,0.327392,0.009792
+889,1003.68,0.996338,0.616544,0.008896,0.222496,0.004992,0.006144,0.007328,0.013152,0.015456,0.32832,0.00976
+890,677.081,1.47693,0.660992,0.009344,0.256288,0.005728,0.00512,0.00816,0.013728,0.023168,0.329728,0.009728
+891,967.864,1.0332,0.665504,0.009696,0.26064,0.00592,0.005792,0.00672,0.014336,0.022528,0.329728,0.010144
+892,1212.19,0.824951,0.616448,0.009376,0.224128,0.006112,0.00592,0.006368,0.014336,0.015776,0.325216,0.009216
+893,776.861,1.28723,1.0752,0.00848,0.227328,0.006144,0.005952,0.006368,0.014304,0.015584,0.778752,0.012288
+894,588.802,1.69836,0.616928,0.008672,0.225248,0.006176,0.005952,0.00784,0.013856,0.01488,0.324064,0.01024
+895,994.416,1.00562,0.616576,0.00832,0.222624,0.004832,0.007584,0.006624,0.014336,0.014336,0.32768,0.01024
+896,984.142,1.01611,0.614272,0.009376,0.223296,0.004896,0.006144,0.007392,0.013088,0.01568,0.324288,0.010112
+897,848.384,1.17871,0.641856,0.00896,0.247872,0.005952,0.005792,0.00672,0.014304,0.014336,0.328736,0.009184
+898,935.801,1.0686,1.01398,0.008416,0.223232,0.006144,0.007616,0.00672,0.015968,0.01376,0.71984,0.012288
+899,688.982,1.45142,1.27091,0.009728,0.465408,0.020352,0.005792,0.006624,0.014336,0.014336,0.722336,0.012
+900,634.793,1.57532,0.616608,0.008192,0.223232,0.005664,0.005792,0.006976,0.014272,0.014368,0.329088,0.009024
+901,989.133,1.01099,0.615392,0.008992,0.221344,0.006176,0.007328,0.006976,0.014368,0.014304,0.326784,0.00912
+902,962.519,1.03894,0.615552,0.009408,0.219968,0.006144,0.006144,0.007264,0.014272,0.01472,0.32784,0.009792
+903,865.87,1.15491,0.641344,0.008544,0.23344,0.005664,0.005856,0.006944,0.014336,0.028064,0.328288,0.010208
+904,834.386,1.19849,0.827232,0.00832,0.407552,0.024352,0.005632,0.00688,0.014336,0.014336,0.335872,0.009952
+905,563.799,1.77368,0.649024,0.01104,0.253024,0.005056,0.006144,0.007456,0.012992,0.014336,0.32944,0.009536
+906,961.615,1.03992,0.628736,0.00928,0.225216,0.00512,0.006176,0.007584,0.013984,0.014752,0.336384,0.01024
+907,976.4,1.02417,0.619872,0.00944,0.223776,0.005632,0.006592,0.006464,0.014336,0.014464,0.329312,0.009856
+908,955.558,1.04651,0.616544,0.008288,0.223232,0.006048,0.005728,0.006656,0.014336,0.014336,0.32768,0.01024
+909,1005.52,0.994507,0.612992,0.008832,0.221184,0.005984,0.006304,0.007968,0.014144,0.014784,0.323552,0.01024
+910,509.073,1.96436,0.731136,0.009216,0.312288,0.02224,0.005792,0.006816,0.025984,0.014976,0.323616,0.010208
+911,912.351,1.09607,0.632832,0.011648,0.230048,0.006112,0.006144,0.007264,0.013216,0.015456,0.334176,0.008768
+912,1043.43,0.958374,0.621376,0.009024,0.229376,0.006176,0.006112,0.007424,0.014208,0.014656,0.325568,0.008832
+913,938.266,1.0658,0.623456,0.008992,0.227552,0.006112,0.005888,0.006432,0.014304,0.015424,0.32864,0.010112
+914,987.94,1.01221,0.617792,0.00848,0.223232,0.006144,0.006144,0.007744,0.014464,0.014656,0.327264,0.009664
+915,911.843,1.09668,0.647776,0.008832,0.253152,0.004896,0.006144,0.007648,0.01392,0.015072,0.327904,0.010208
+916,838.829,1.19214,1.08314,0.009664,0.227904,0.006144,0.006144,0.008192,0.01424,0.014464,0.784192,0.012192
+917,567.195,1.76306,0.616448,0.009536,0.225984,0.005792,0.005792,0.006848,0.014016,0.014688,0.323552,0.01024
+918,999.39,1.00061,0.623776,0.009344,0.228096,0.005664,0.006752,0.006176,0.015456,0.014688,0.327904,0.009696
+919,978.383,1.02209,0.61712,0.00864,0.226528,0.005056,0.006112,0.007328,0.013152,0.015648,0.325696,0.00896
+920,923.25,1.08313,0.61648,0.009056,0.223328,0.006144,0.005952,0.006464,0.014304,0.01424,0.327264,0.009728
+921,980.373,1.02002,1.00502,0.008384,0.224448,0.004928,0.006144,0.007488,0.014048,0.014528,0.712544,0.012512
+922,660.805,1.51331,1.29434,0.008224,0.442112,0.008128,0.005664,0.026464,0.037792,0.014272,0.740448,0.011232
+923,597.477,1.67371,0.63488,0.009632,0.240096,0.005632,0.005792,0.007136,0.014144,0.014304,0.327904,0.01024
+924,892.18,1.12085,0.646112,0.008928,0.243968,0.006112,0.00608,0.0064,0.014272,0.02352,0.32656,0.010272
+925,952.669,1.04968,0.647168,0.0096,0.2504,0.005664,0.005792,0.007072,0.014336,0.014336,0.329728,0.01024
+926,934.946,1.06958,0.62032,0.008448,0.224864,0.005632,0.005024,0.00784,0.014464,0.014592,0.329696,0.00976
+927,889.758,1.1239,0.804736,0.008416,0.41088,0.004864,0.006144,0.00784,0.014016,0.015008,0.32768,0.009888
+928,438.732,2.2793,0.694432,0.010816,0.284096,0.004736,0.00608,0.008,0.016672,0.02816,0.325952,0.00992
+929,1216.69,0.821899,0.625376,0.008992,0.229376,0.006048,0.005792,0.006592,0.014336,0.014336,0.329728,0.010176
+930,927.536,1.07812,0.623136,0.008992,0.229568,0.005984,0.005728,0.00672,0.014304,0.015488,0.326528,0.009824
+931,1009.12,0.990967,0.619488,0.008896,0.224736,0.004928,0.006144,0.007456,0.013024,0.015872,0.328192,0.01024
+932,922.626,1.08386,0.625984,0.008256,0.226592,0.004864,0.007936,0.0064,0.014304,0.014336,0.333568,0.009728
+933,768.48,1.30127,1.26362,0.008192,0.470112,0.007168,0.006048,0.00784,0.01408,0.014464,0.723456,0.012256
+934,612.257,1.6333,0.620224,0.008192,0.22528,0.006144,0.006176,0.00816,0.014368,0.014304,0.32768,0.00992
+935,976.284,1.02429,0.621984,0.0096,0.227168,0.004896,0.006144,0.007392,0.013088,0.01536,0.328672,0.009664
+936,974.658,1.026,0.618272,0.0096,0.221824,0.00736,0.006656,0.006464,0.014336,0.015456,0.32656,0.010016
+937,967.292,1.03381,0.6144,0.009248,0.22384,0.005696,0.005024,0.007808,0.013824,0.014432,0.324288,0.01024
+938,979.436,1.021,1.00765,0.009728,0.223744,0.006144,0.006112,0.007936,0.014048,0.012864,0.714688,0.012384
+939,466.807,2.14221,0.62672,0.010272,0.22848,0.004992,0.006144,0.008192,0.014208,0.014464,0.329728,0.01024
+940,1005.65,0.994385,0.619936,0.008448,0.22304,0.005632,0.00592,0.007072,0.014336,0.014336,0.331392,0.00976
+941,803.137,1.24512,0.62464,0.008192,0.23072,0.0048,0.006144,0.007744,0.01376,0.014656,0.329536,0.009088
+942,1087.63,0.919434,0.621216,0.008672,0.226336,0.005088,0.006144,0.007456,0.014208,0.014624,0.329632,0.009056
+943,990.329,1.00977,0.618528,0.008192,0.223232,0.006144,0.006144,0.00736,0.01424,0.014528,0.329824,0.008864
+944,1011.36,0.98877,0.804352,0.008512,0.405504,0.006144,0.006144,0.007296,0.01472,0.014496,0.331904,0.009632
+945,679.383,1.47192,0.836096,0.025472,0.42112,0.004864,0.006144,0.007904,0.014624,0.015552,0.33056,0.009856
+946,796.732,1.25513,0.618816,0.008544,0.22512,0.005664,0.00576,0.007168,0.014144,0.0144,0.327808,0.010208
+947,1005.77,0.994263,0.616448,0.009568,0.224,0.00608,0.007552,0.006752,0.014336,0.014336,0.325024,0.0088
+948,985.682,1.01453,0.618496,0.008192,0.225184,0.005632,0.006368,0.006528,0.014336,0.014336,0.32768,0.01024
+949,924.292,1.08191,0.615232,0.009024,0.221184,0.006144,0.00736,0.006976,0.014336,0.014336,0.326848,0.009024
+950,947.49,1.05542,0.817152,0.009408,0.420064,0.004832,0.006016,0.00784,0.01424,0.014496,0.330016,0.01024
+951,471.754,2.11975,0.623488,0.011072,0.228896,0.005664,0.005056,0.007968,0.012512,0.014336,0.32896,0.009024
+952,1048.11,0.954102,0.619456,0.008864,0.2248,0.004864,0.008192,0.007232,0.013248,0.015552,0.326464,0.01024
+953,975.122,1.02551,0.618496,0.009952,0.223168,0.005664,0.005024,0.007968,0.01376,0.014528,0.329568,0.008864
+954,979.319,1.02112,0.633792,0.008928,0.223456,0.006144,0.005824,0.006464,0.014336,0.014432,0.330784,0.023424
+955,764.964,1.30725,0.645856,0.009152,0.249856,0.005696,0.005888,0.006848,0.014336,0.014336,0.329728,0.010016
+956,906.295,1.10339,0.624224,0.009248,0.224224,0.006048,0.005632,0.007936,0.013312,0.014176,0.333824,0.009824
+957,674.85,1.48181,0.624832,0.011008,0.224608,0.004896,0.006144,0.008192,0.014176,0.014528,0.331712,0.009568
+958,944.214,1.05908,0.612672,0.008544,0.22272,0.005632,0.005088,0.007744,0.014048,0.014656,0.324,0.01024
+959,965.355,1.03589,0.615008,0.008896,0.221184,0.005856,0.00576,0.006784,0.01424,0.014464,0.327648,0.010176
+960,1017.77,0.982544,0.619328,0.008672,0.221536,0.006176,0.007136,0.007168,0.014176,0.014496,0.329728,0.01024
+961,946.068,1.05701,0.622592,0.009312,0.220064,0.005824,0.006464,0.007584,0.014208,0.014624,0.334272,0.01024
+962,782.426,1.27808,0.636928,0.0264,0.223456,0.006144,0.006016,0.006272,0.015424,0.014432,0.328544,0.01024
+963,605.962,1.65027,0.622432,0.010592,0.225312,0.006112,0.006112,0.007872,0.013824,0.01488,0.328,0.009728
+964,970.731,1.03015,0.626496,0.009536,0.223712,0.005632,0.006144,0.00688,0.014336,0.014368,0.33584,0.010048
+965,959.925,1.04175,0.61648,0.008992,0.222656,0.004832,0.006112,0.007712,0.014048,0.014464,0.328,0.009664
+966,1045.7,0.956299,0.616448,0.009664,0.22176,0.005728,0.00656,0.006304,0.014176,0.014336,0.32768,0.01024
+967,938.588,1.06543,0.616448,0.008192,0.221184,0.006144,0.005696,0.006592,0.014336,0.0144,0.330976,0.008928
+968,587.535,1.70203,0.651392,0.00832,0.224416,0.00496,0.006144,0.007616,0.014336,0.028928,0.346432,0.01024
+969,687.191,1.4552,0.678176,0.0112,0.270336,0.005696,0.00576,0.006976,0.014336,0.024576,0.329632,0.009664
+970,941.717,1.06189,0.635296,0.008608,0.237248,0.005664,0.005056,0.007968,0.014208,0.01456,0.332768,0.009216
+971,1066.67,0.9375,0.622592,0.008192,0.228416,0.005056,0.006144,0.007936,0.014112,0.014752,0.329024,0.00896
+972,945.631,1.0575,0.620896,0.008544,0.22736,0.006112,0.005952,0.006464,0.01424,0.014304,0.32768,0.01024
+973,931.968,1.073,1.02058,0.008864,0.239616,0.006144,0.006048,0.00624,0.014336,0.014336,0.712704,0.012288
+974,690.9,1.44739,1.27786,0.009504,0.463584,0.018432,0.006144,0.00736,0.014944,0.01456,0.731136,0.012192
+975,583.227,1.7146,0.632832,0.008192,0.239104,0.005664,0.005088,0.008032,0.014112,0.014528,0.327904,0.010208
+976,938.481,1.06555,0.641024,0.010016,0.243936,0.006144,0.005952,0.006336,0.014336,0.014368,0.330848,0.009088
+977,997.929,1.00208,0.626912,0.009568,0.228224,0.005632,0.005792,0.00704,0.014336,0.014336,0.331776,0.010208
+978,956.562,1.04541,0.630976,0.008544,0.233056,0.006336,0.005792,0.00672,0.014368,0.015328,0.330784,0.010048
+979,886.196,1.12842,0.81248,0.008192,0.405504,0.00608,0.006208,0.007456,0.014368,0.014624,0.340352,0.009696
+980,517.172,1.93359,0.630848,0.011168,0.229376,0.00608,0.005792,0.00656,0.014336,0.014336,0.333504,0.009696
+981,952.447,1.04993,0.632832,0.0096,0.236128,0.005664,0.00576,0.007072,0.014304,0.014336,0.329728,0.01024
+982,1000.86,0.999146,0.623104,0.008704,0.227328,0.00608,0.006208,0.007808,0.014624,0.014432,0.3288,0.00912
+983,916.741,1.09082,0.617888,0.00848,0.223232,0.005824,0.005792,0.006816,0.013984,0.014688,0.32928,0.009792
+984,984.379,1.01587,0.616512,0.00848,0.222432,0.004896,0.006144,0.00752,0.01408,0.01472,0.328224,0.010016
+985,835.407,1.19702,0.636256,0.008416,0.238912,0.004832,0.006144,0.007616,0.013952,0.014336,0.332256,0.009792
+986,694.414,1.44006,0.623648,0.011392,0.228224,0.006144,0.006144,0.008,0.01248,0.014336,0.327168,0.00976
+987,957.681,1.04419,0.618528,0.008192,0.224512,0.004864,0.006144,0.00768,0.014144,0.014464,0.329728,0.0088
+988,973.963,1.02673,0.6168,0.008512,0.224704,0.004672,0.007648,0.00672,0.014304,0.014336,0.327136,0.008768
+989,968.093,1.03296,0.619552,0.009888,0.225408,0.005728,0.0064,0.006528,0.014336,0.014336,0.327296,0.009632
+990,965.355,1.03589,0.617856,0.009696,0.22176,0.006112,0.006144,0.007616,0.013984,0.014656,0.328192,0.009696
+991,597.172,1.67456,0.829536,0.008704,0.413856,0.01424,0.006048,0.006368,0.015616,0.014624,0.340448,0.009632
+992,771.375,1.29639,0.836064,0.025056,0.42368,0.005792,0.005792,0.007104,0.014304,0.014368,0.330944,0.009024
+993,982.726,1.01758,0.624128,0.009952,0.227264,0.005664,0.005024,0.00784,0.014144,0.014496,0.329856,0.009888
+994,950.017,1.05261,0.618496,0.009504,0.22192,0.006176,0.006112,0.008128,0.014112,0.014624,0.32768,0.01024
+995,917.768,1.0896,0.63712,0.008608,0.239648,0.006144,0.006144,0.008192,0.014208,0.014464,0.329728,0.009984
+996,974.774,1.02588,0.620064,0.008256,0.227296,0.005856,0.005632,0.006912,0.014368,0.014304,0.32768,0.00976
+997,854.669,1.17004,0.619616,0.008256,0.229312,0.00592,0.005792,0.006752,0.014304,0.014336,0.325312,0.009632
+998,687.421,1.45471,0.626528,0.011264,0.225312,0.005088,0.006144,0.007552,0.014112,0.014528,0.332448,0.01008
+999,998.172,1.00183,0.618688,0.008768,0.223008,0.005664,0.005056,0.007936,0.013984,0.014432,0.329984,0.009856
+1000,976.4,1.02417,0.622144,0.008192,0.22736,0.006112,0.006144,0.007328,0.013152,0.01536,0.32864,0.009856
+1001,935.908,1.06848,0.61856,0.008224,0.224288,0.005088,0.006144,0.006176,0.014304,0.014336,0.32976,0.01024
+1002,956.339,1.04565,0.62432,0.008448,0.223232,0.006144,0.006176,0.008128,0.01392,0.014592,0.33392,0.00976
+1003,687.364,1.45483,0.848448,0.008768,0.435936,0.006144,0.005664,0.022976,0.014592,0.014432,0.3312,0.008736
+1004,941.826,1.06177,0.825472,0.011392,0.422784,0.006144,0.005984,0.006432,0.014208,0.014464,0.335328,0.008736
+1005,783.024,1.2771,0.618272,0.008832,0.224896,0.005824,0.005024,0.008032,0.014144,0.014336,0.327648,0.009536
+1006,1022.85,0.977661,0.622592,0.009856,0.227712,0.006016,0.0056,0.006816,0.014336,0.014336,0.32768,0.01024
+1007,943.235,1.06018,0.6184,0.00992,0.223488,0.005984,0.005792,0.006624,0.014336,0.014336,0.328896,0.009024
+1008,1009.99,0.990112,0.622752,0.008352,0.22528,0.006176,0.006112,0.008192,0.01424,0.014432,0.329728,0.01024
+1009,926.173,1.07971,0.828512,0.01008,0.413664,0.005664,0.004832,0.008032,0.01408,0.026816,0.33568,0.009664
+1010,490.099,2.04041,0.632864,0.01024,0.227328,0.006176,0.005792,0.008224,0.014208,0.014432,0.336192,0.010272
+1011,1011.86,0.988281,0.618496,0.009312,0.223488,0.004768,0.007904,0.006432,0.014368,0.014304,0.328768,0.009152
+1012,979.319,1.02112,0.62224,0.0088,0.226336,0.005088,0.006144,0.007552,0.014144,0.014304,0.329888,0.009984
+1013,923.458,1.08289,0.620544,0.009632,0.221792,0.006144,0.007168,0.007168,0.014336,0.01584,0.329408,0.009056
+1014,975.703,1.0249,0.6208,0.008672,0.221568,0.006144,0.006048,0.00624,0.014336,0.014432,0.333632,0.009728
+1015,790.734,1.26465,0.616704,0.008448,0.223232,0.006144,0.006144,0.007264,0.013248,0.015328,0.326656,0.01024
+1016,525.061,1.90454,0.627936,0.01152,0.230144,0.005824,0.005792,0.007968,0.014752,0.014784,0.327296,0.009856
+1017,989.731,1.01038,0.618464,0.008192,0.223232,0.005888,0.005792,0.007904,0.014624,0.014784,0.32784,0.010208
+1018,986.988,1.01318,0.61648,0.009376,0.222048,0.005856,0.005792,0.006784,0.014336,0.014336,0.32896,0.008992
+1019,972.691,1.02808,0.619008,0.00896,0.225024,0.005632,0.006656,0.006464,0.014336,0.014336,0.32768,0.00992
+1020,612.944,1.63147,0.802816,0.008192,0.403424,0.005696,0.004576,0.008192,0.014336,0.014336,0.33488,0.009184
+1021,467.153,2.14062,0.661504,0.011616,0.252608,0.006112,0.006112,0.007264,0.013248,0.015424,0.33888,0.01024
+1022,1318.74,0.758301,0.630976,0.008384,0.229376,0.006144,0.00608,0.007296,0.013248,0.014336,0.336928,0.009184
+1023,930.803,1.07434,0.621664,0.00992,0.223552,0.006016,0.006272,0.007424,0.013056,0.015648,0.32992,0.009856
+1024,965.696,1.03552,0.617056,0.008672,0.22464,0.004864,0.006144,0.007456,0.014592,0.014752,0.326784,0.009152
+1025,988.775,1.01135,0.616352,0.008192,0.224288,0.005088,0.007616,0.00672,0.014336,0.014336,0.325664,0.010112
+1026,798.207,1.25281,0.630784,0.008192,0.224256,0.00512,0.006144,0.007424,0.014112,0.029408,0.327104,0.009024
+1027,615.662,1.62427,0.628864,0.01024,0.229312,0.006016,0.005792,0.00784,0.014208,0.014944,0.33152,0.008992
+1028,947.381,1.05554,0.61632,0.00832,0.226912,0.0056,0.005056,0.007712,0.014176,0.014464,0.324064,0.010016
+1029,990.449,1.00964,0.6184,0.009856,0.221568,0.006048,0.00624,0.008192,0.014112,0.014592,0.327648,0.010144
+1030,982.136,1.01819,0.621088,0.008736,0.22528,0.006144,0.005952,0.006368,0.014304,0.015424,0.329792,0.009088
+1031,1003.92,0.996094,0.616512,0.009536,0.223168,0.004864,0.006144,0.00752,0.01312,0.015296,0.327872,0.008992
+1032,760.843,1.31433,1.0752,0.008448,0.223232,0.006144,0.005952,0.006432,0.01424,0.014336,0.783904,0.012512
+1033,615.477,1.62476,0.621664,0.008192,0.227328,0.006048,0.005632,0.006752,0.014336,0.014368,0.32896,0.010048
+1034,723.867,1.38147,0.708672,0.008288,0.290784,0.006144,0.006144,0.007264,0.013216,0.024576,0.343424,0.008832
+1035,1176.67,0.849854,0.61952,0.008704,0.2272,0.004768,0.006112,0.008192,0.014208,0.014464,0.327008,0.008864
+1036,984.615,1.01562,0.620192,0.008608,0.224512,0.00496,0.006144,0.00752,0.01424,0.014624,0.329856,0.009728
+1037,971.422,1.02942,0.62096,0.008608,0.226304,0.00512,0.006144,0.007584,0.014016,0.014624,0.329632,0.008928
+1038,785.201,1.27356,0.636288,0.008192,0.223232,0.005664,0.005792,0.006976,0.014368,0.02864,0.331776,0.011648
+1039,605.962,1.65027,0.623104,0.010784,0.227296,0.006176,0.005824,0.007808,0.013984,0.014688,0.327328,0.009216
+1040,930.592,1.07458,0.618016,0.0096,0.223584,0.005664,0.006912,0.007328,0.014176,0.014528,0.326336,0.009888
+1041,999.512,1.00049,0.621312,0.008896,0.22336,0.006048,0.00624,0.008032,0.01392,0.014496,0.330144,0.010176
+1042,1007.63,0.992432,0.618432,0.00848,0.224576,0.0048,0.006176,0.00768,0.014176,0.014368,0.328288,0.009888
+1043,974.31,1.02637,1.00227,0.008992,0.223232,0.006144,0.006176,0.008096,0.013888,0.014304,0.709152,0.012288
+1044,439.981,2.27283,0.621728,0.01168,0.225888,0.00592,0.006112,0.0064,0.014336,0.014336,0.327232,0.009824
+1045,983.197,1.01709,0.618496,0.008192,0.22528,0.006144,0.005856,0.006464,0.014304,0.014528,0.32752,0.010208
+1046,624.676,1.60083,0.620704,0.00992,0.223232,0.005632,0.007008,0.007328,0.013312,0.015264,0.330016,0.008992
+1047,1467.31,0.681519,0.629312,0.00896,0.231424,0.006144,0.006144,0.008224,0.014208,0.014464,0.329696,0.010048
+1048,925.336,1.08069,0.646784,0.017728,0.242336,0.005664,0.005792,0.007008,0.015488,0.014592,0.32832,0.009856
+1049,728.566,1.37256,0.649248,0.008224,0.247264,0.004928,0.005856,0.00784,0.01456,0.014464,0.337024,0.009088
+1050,602.22,1.66052,0.628736,0.010912,0.232768,0.004832,0.006112,0.007744,0.014144,0.014848,0.32768,0.009696
+1051,1021.96,0.978516,0.624,0.008544,0.22528,0.006112,0.006176,0.007936,0.01408,0.0144,0.331776,0.009696
+1052,953.889,1.04834,0.62048,0.008608,0.22768,0.006048,0.005888,0.006496,0.014336,0.014336,0.32736,0.009728
+1053,923.771,1.08252,0.618496,0.009632,0.223712,0.005664,0.005792,0.008288,0.013152,0.015392,0.326624,0.01024
+1054,978.851,1.02161,0.616096,0.009472,0.223232,0.004864,0.006144,0.008192,0.014336,0.014336,0.325632,0.009888
+1055,772.247,1.29492,1.09264,0.009696,0.247712,0.004736,0.006176,0.007776,0.014016,0.014592,0.77568,0.012256
+1056,573.629,1.74329,0.627296,0.008672,0.231584,0.006144,0.006112,0.00736,0.01312,0.014336,0.331328,0.00864
+1057,1008.74,0.991333,0.618496,0.008832,0.226496,0.004928,0.006144,0.007552,0.014112,0.015008,0.325824,0.0096
+1058,911.539,1.09705,0.626688,0.0096,0.231072,0.00512,0.006112,0.007392,0.013088,0.014336,0.329728,0.01024
+1059,1044.9,0.957031,0.620352,0.009728,0.225792,0.006016,0.00576,0.006656,0.014336,0.014336,0.32768,0.010048
+1060,825.973,1.21069,1.0225,0.008704,0.23712,0.006368,0.006208,0.0064,0.014272,0.016384,0.71472,0.01232
+1061,741.357,1.34888,1.2657,0.00928,0.46176,0.01648,0.006048,0.007744,0.014048,0.014336,0.723712,0.012288
+1062,618.451,1.61694,0.618336,0.009344,0.223616,0.005664,0.005088,0.007712,0.014112,0.014528,0.328192,0.01008
+1063,1004.29,0.995728,0.620544,0.008192,0.225056,0.005728,0.004992,0.007936,0.014336,0.014336,0.329728,0.01024
+1064,967.75,1.03333,0.626368,0.008192,0.229376,0.006144,0.006144,0.008064,0.013856,0.014432,0.33024,0.00992
+1065,909.818,1.09912,0.621984,0.01008,0.225088,0.005632,0.004992,0.008064,0.013696,0.0144,0.330336,0.009696
+1066,949.907,1.05273,0.8,0.008192,0.405504,0.005792,0.005568,0.007072,0.014336,0.014336,0.329504,0.009696
+1067,804.636,1.2428,1.26742,0.008608,0.453856,0.019232,0.006144,0.007328,0.01328,0.015616,0.731424,0.011936
+1068,597.694,1.6731,0.630784,0.008192,0.233472,0.006144,0.005856,0.006432,0.014336,0.014528,0.331584,0.01024
+1069,981.901,1.01843,0.618528,0.009248,0.226176,0.005664,0.00576,0.006784,0.013824,0.014592,0.32752,0.00896
+1070,1005.77,0.994263,0.621888,0.008352,0.227168,0.005696,0.00576,0.007136,0.014336,0.014368,0.32944,0.009632
+1071,973.847,1.02686,0.620576,0.008288,0.229376,0.005792,0.005792,0.006848,0.014272,0.0144,0.325632,0.010176
+1072,923.458,1.08289,0.800992,0.008416,0.407552,0.006016,0.005632,0.006784,0.014336,0.014336,0.32768,0.01024
+1073,677.081,1.47693,0.816256,0.012256,0.42192,0.006144,0.005856,0.006432,0.014336,0.014336,0.325216,0.00976
+1074,867.705,1.15247,0.633504,0.008992,0.235136,0.005664,0.005056,0.00816,0.014336,0.014336,0.331776,0.010048
+1075,987.464,1.0127,0.622592,0.009984,0.227232,0.005664,0.004928,0.007936,0.014432,0.014496,0.32768,0.01024
+1076,916.434,1.09119,0.620544,0.008256,0.223168,0.006144,0.006144,0.008192,0.013952,0.01472,0.330912,0.009056
+1077,983.315,1.01697,0.616512,0.008256,0.224512,0.004864,0.006144,0.008128,0.01392,0.014816,0.325664,0.010208
+1078,936.978,1.06726,0.799008,0.00848,0.405472,0.005792,0.005728,0.006912,0.014272,0.0144,0.328832,0.00912
+1079,548.253,1.82397,0.639584,0.010848,0.241696,0.006112,0.00592,0.007904,0.01408,0.014528,0.328288,0.010208
+1080,972.113,1.02869,0.621056,0.009024,0.227424,0.006112,0.005824,0.006464,0.014368,0.014304,0.32768,0.009856
+1081,1001.59,0.998413,0.624256,0.009888,0.225632,0.006144,0.005792,0.006496,0.015616,0.014592,0.33024,0.009856
+1082,958.017,1.04382,0.62496,0.008512,0.229248,0.005632,0.005824,0.007136,0.014304,0.014336,0.329728,0.01024
+1083,941.285,1.06238,0.621088,0.008672,0.223552,0.006144,0.00608,0.00784,0.013952,0.014752,0.330112,0.009984
+1084,982.608,1.0177,0.802688,0.008224,0.407072,0.005792,0.004928,0.007968,0.01424,0.014624,0.32976,0.01008
+1085,661.926,1.51074,0.847936,0.038624,0.421664,0.005792,0.005024,0.007968,0.014336,0.014528,0.329728,0.010272
+1086,862.497,1.15942,0.626688,0.009856,0.227072,0.004736,0.006144,0.007584,0.014272,0.014944,0.33296,0.00912
+1087,817.239,1.22363,0.63488,0.01024,0.241568,0.005664,0.00576,0.007104,0.014368,0.014336,0.326688,0.009152
+1088,1125.12,0.888794,0.632832,0.009504,0.234208,0.006144,0.006144,0.007328,0.013152,0.014336,0.332832,0.009184
+1089,1027.98,0.972778,0.626688,0.008192,0.23136,0.005664,0.005792,0.006688,0.014048,0.014656,0.330048,0.01024
+1090,889.275,1.12451,0.800768,0.009888,0.405632,0.005696,0.004832,0.008,0.014176,0.014464,0.32784,0.01024
+1091,562.908,1.77649,0.624448,0.01056,0.228672,0.004832,0.005952,0.008192,0.014336,0.01552,0.326496,0.009888
+1092,1018.53,0.981812,0.616672,0.008416,0.22512,0.005664,0.005792,0.007136,0.01392,0.014304,0.32608,0.01024
+1093,977.216,1.02332,0.619232,0.008928,0.22528,0.005696,0.006592,0.007232,0.014304,0.014624,0.326336,0.01024
+1094,913.165,1.09509,0.625952,0.009344,0.226176,0.006144,0.006048,0.006464,0.014112,0.014336,0.3336,0.009728
+1095,977.682,1.02283,0.626688,0.009344,0.226208,0.005952,0.005792,0.006656,0.014304,0.014368,0.33488,0.009184
+1096,979.436,1.021,0.804224,0.008224,0.406944,0.004768,0.00608,0.007744,0.014144,0.014464,0.33216,0.009696
+1097,486.201,2.05676,0.637632,0.010944,0.239104,0.004832,0.006144,0.007744,0.014048,0.014624,0.330144,0.010048
+1098,970.846,1.03003,0.623232,0.008832,0.226656,0.004768,0.006144,0.007808,0.01408,0.014656,0.331552,0.008736
+1099,978.266,1.02222,0.622304,0.008736,0.227328,0.006048,0.005824,0.00656,0.014336,0.015392,0.328224,0.009856
+1100,909.414,1.09961,0.642208,0.009024,0.24592,0.006016,0.00576,0.006656,0.014336,0.014496,0.331296,0.008704
+1101,1024.38,0.976196,0.628736,0.00944,0.230176,0.006144,0.00608,0.006208,0.014336,0.015552,0.331744,0.009056
+1102,691.483,1.44617,0.65536,0.00976,0.248288,0.005888,0.00576,0.007936,0.014496,0.014816,0.338272,0.010144
+1103,633.32,1.57898,0.631968,0.01024,0.233472,0.006144,0.006048,0.006368,0.014208,0.014336,0.33152,0.009632
+1104,1036.57,0.964722,0.639424,0.00864,0.241344,0.005696,0.00496,0.008096,0.014368,0.015616,0.330464,0.01024
+1105,930.592,1.07458,0.639104,0.00832,0.241664,0.00592,0.005824,0.006688,0.014336,0.014336,0.331776,0.01024
+1106,983.079,1.01721,0.62592,0.009344,0.230272,0.005728,0.005792,0.006912,0.014208,0.0144,0.32944,0.009824
+1107,988.179,1.01196,0.630176,0.00928,0.23152,0.00496,0.007968,0.006368,0.014368,0.014304,0.331616,0.009792
+1108,819.692,1.21997,0.624672,0.009408,0.229888,0.006368,0.005824,0.00656,0.014336,0.014336,0.329024,0.008928
+1109,596.824,1.67554,0.635776,0.011136,0.237152,0.005664,0.005024,0.008032,0.013728,0.01456,0.330272,0.010208
+1110,961.615,1.03992,0.623136,0.008736,0.227328,0.005792,0.005792,0.006848,0.014336,0.014368,0.329696,0.01024
+1111,978.851,1.02161,0.622976,0.008576,0.22464,0.004768,0.00784,0.006464,0.015584,0.01472,0.33168,0.008704
+1112,682.326,1.46558,0.62704,0.008544,0.229248,0.005664,0.005824,0.007072,0.014112,0.01456,0.331776,0.01024
+1113,1381.45,0.723877,0.628736,0.00944,0.230176,0.006144,0.006144,0.007872,0.01408,0.014624,0.331104,0.009152
+1114,824.228,1.21326,0.628736,0.009376,0.228192,0.007168,0.005152,0.00816,0.014368,0.014304,0.332896,0.00912
+1115,579.39,1.72595,0.634432,0.01056,0.23744,0.006112,0.006144,0.007232,0.013248,0.015456,0.328608,0.009632
+1116,1008,0.992065,0.626432,0.009984,0.226624,0.005056,0.006176,0.00752,0.014144,0.014656,0.332288,0.009984
+1117,969.582,1.03137,0.61888,0.008928,0.22672,0.004992,0.006144,0.007488,0.012992,0.015424,0.326304,0.009888
+1118,994.054,1.00598,0.62464,0.009568,0.225504,0.006368,0.005792,0.00672,0.014336,0.014336,0.331776,0.01024
+1119,983.788,1.01648,1.00576,0.008384,0.227328,0.00608,0.005792,0.00656,0.014048,0.014624,0.710656,0.012288
+1120,684.721,1.46045,1.28083,0.008736,0.462816,0.018816,0.006144,0.00784,0.014272,0.01456,0.735456,0.012192
+1121,581.942,1.71838,0.622592,0.009856,0.227616,0.005664,0.005824,0.00704,0.014176,0.014496,0.32896,0.00896
+1122,960.826,1.04077,0.621632,0.008192,0.226656,0.004768,0.006144,0.00784,0.013856,0.014592,0.33008,0.009504
+1123,976.633,1.02393,0.618528,0.008224,0.22528,0.005792,0.005792,0.00688,0.014208,0.014432,0.327712,0.010208
+1124,960.037,1.04163,0.643072,0.009312,0.248736,0.005856,0.005696,0.00688,0.014272,0.0144,0.328704,0.009216
+1125,1009.74,0.990356,0.80048,0.008256,0.40576,0.005792,0.005664,0.007008,0.014272,0.014368,0.329728,0.009632
+1126,671.53,1.48914,1.27062,0.009088,0.4704,0.010528,0.005824,0.006784,0.014336,0.014368,0.727008,0.012288
+1127,660.592,1.51379,0.628896,0.009696,0.231968,0.006112,0.005792,0.006528,0.014336,0.015392,0.330048,0.009024
+1128,984.26,1.01599,0.620416,0.008384,0.227328,0.006176,0.005824,0.006528,0.01424,0.014368,0.327648,0.00992
+1129,970.731,1.03015,0.624992,0.008544,0.227264,0.005632,0.005792,0.007072,0.014016,0.014496,0.333312,0.008864
+1130,940.096,1.06372,0.62336,0.00896,0.2248,0.005664,0.005056,0.007776,0.014144,0.014944,0.331776,0.01024
+1131,969.697,1.03125,0.802816,0.009536,0.405952,0.005696,0.0048,0.008064,0.01408,0.014336,0.330112,0.01024
+1132,648.306,1.54248,0.829568,0.010368,0.427104,0.005024,0.006144,0.007712,0.014688,0.014464,0.334912,0.009152
+1133,811.25,1.23267,0.641152,0.00832,0.243296,0.005632,0.005056,0.007968,0.016576,0.014336,0.329728,0.01024
+1134,997.322,1.00269,0.62048,0.008192,0.22496,0.005632,0.005024,0.008,0.014112,0.014656,0.329728,0.010176
+1135,1004.17,0.99585,0.620576,0.00832,0.226368,0.00496,0.007744,0.00656,0.014336,0.014336,0.329024,0.008928
+1136,974.426,1.02625,0.626688,0.009728,0.227744,0.005728,0.004608,0.007936,0.014272,0.014656,0.332864,0.009152
+1137,920.036,1.08691,0.800864,0.00928,0.404416,0.005792,0.005728,0.006912,0.014336,0.014336,0.33104,0.009024
+1138,534.063,1.87244,0.636096,0.010336,0.235424,0.00608,0.005792,0.00656,0.014336,0.015552,0.332128,0.009888
+1139,827.809,1.20801,0.651296,0.008928,0.256032,0.005696,0.00592,0.006816,0.014336,0.014368,0.329184,0.010016
+1140,1117.9,0.894531,0.631808,0.009056,0.233696,0.006112,0.006112,0.008192,0.014336,0.014368,0.331072,0.008864
+1141,969.582,1.03137,0.633056,0.0088,0.235552,0.006112,0.005952,0.007936,0.01408,0.01472,0.330048,0.009856
+1142,905.694,1.10413,0.632864,0.0096,0.234112,0.006144,0.006144,0.007456,0.013056,0.015488,0.331776,0.009088
+1143,877.652,1.1394,0.6432,0.0088,0.24576,0.005632,0.005824,0.006976,0.01408,0.014176,0.332192,0.00976
+1144,624.867,1.60034,0.634816,0.011904,0.237088,0.00496,0.006144,0.007648,0.014336,0.014816,0.327744,0.010176
+1145,877.464,1.13965,0.687296,0.008224,0.262112,0.006016,0.005792,0.01248,0.02896,0.014336,0.339648,0.009728
+1146,904.793,1.10522,0.680096,0.008416,0.256,0.006144,0.006144,0.016384,0.02992,0.015072,0.33184,0.010176
+1147,878.216,1.13867,0.633152,0.008512,0.22528,0.005792,0.005792,0.006848,0.02416,0.014592,0.331936,0.01024
+1148,1002.94,0.99707,0.645024,0.008192,0.22528,0.006016,0.005792,0.006624,0.014336,0.024576,0.329728,0.02448
+1149,733.262,1.36377,0.66656,0.023488,0.253952,0.005952,0.005952,0.006528,0.014336,0.015648,0.330464,0.01024
+1150,514.056,1.94531,0.681984,0.011904,0.278752,0.005664,0.00576,0.007168,0.014336,0.014336,0.333824,0.01024
+1151,933.668,1.07104,0.682048,0.008928,0.288768,0.005632,0.005792,0.007008,0.014112,0.014528,0.327488,0.009792
+1152,874.653,1.14331,0.636928,0.009344,0.235744,0.004768,0.006144,0.007712,0.013792,0.014656,0.334528,0.01024
+1153,1012.36,0.987793,0.643968,0.008608,0.238048,0.006144,0.006112,0.007264,0.014528,0.014976,0.339168,0.00912
+1154,843.493,1.18555,0.811008,0.01024,0.405504,0.006144,0.006144,0.007424,0.014464,0.014752,0.336096,0.01024
+1155,741.357,1.34888,1.33738,0.008192,0.462848,0.008192,0.006144,0.046112,0.031744,0.014304,0.74752,0.01232
+1156,599.619,1.66772,0.67584,0.008192,0.249536,0.020768,0.006144,0.007296,0.013248,0.016224,0.335328,0.019104
+1157,983.197,1.01709,0.671936,0.00944,0.273184,0.00576,0.005856,0.006816,0.014336,0.015712,0.33184,0.008992
+1158,988.894,1.01123,0.62528,0.008832,0.227296,0.005632,0.006656,0.007296,0.014336,0.014656,0.330336,0.01024
+1159,891.598,1.12158,0.630368,0.00976,0.231904,0.00576,0.005792,0.00688,0.014336,0.014496,0.331616,0.009824
+1160,725.984,1.37744,0.641536,0.008672,0.24784,0.006112,0.005856,0.006432,0.014336,0.014336,0.32768,0.010272
+1161,618.171,1.61768,0.63488,0.011456,0.235744,0.004864,0.006016,0.007808,0.013696,0.014624,0.331456,0.009216
+1162,1037.75,0.963623,0.629248,0.008704,0.231424,0.006144,0.005792,0.008,0.01424,0.014592,0.330112,0.01024
+1163,924.814,1.0813,0.62272,0.00832,0.227328,0.006144,0.007392,0.006944,0.014336,0.014336,0.32768,0.01024
+1164,905.393,1.10449,0.63488,0.009248,0.233632,0.00496,0.006112,0.007648,0.014272,0.014944,0.333824,0.01024
+1165,1006.88,0.993164,1.01827,0.008608,0.231424,0.005952,0.005408,0.007072,0.014144,0.01456,0.718816,0.012288
+1166,668.626,1.49561,1.09363,0.008192,0.232896,0.00576,0.005056,0.008192,0.014336,0.014336,0.792576,0.012288
+1167,552.245,1.81079,0.63856,0.008224,0.241664,0.006144,0.006048,0.006272,0.014304,0.014336,0.331584,0.009984
+1168,1090.52,0.916992,0.632832,0.009664,0.234048,0.006144,0.005888,0.006432,0.014304,0.014336,0.331776,0.01024
+1169,928.588,1.0769,0.628512,0.009664,0.227936,0.00608,0.005856,0.006464,0.014368,0.014304,0.333824,0.010016
+1170,459.141,2.17798,1.32419,0.009344,0.459648,0.005728,0.0896,0.007104,0.013888,0.014752,0.710656,0.013472
+1171,727.273,1.375,0.840064,0.021408,0.423392,0.005824,0.00496,0.008,0.014016,0.014592,0.338176,0.009696
+1172,787.541,1.26978,0.626432,0.008192,0.229088,0.005632,0.004896,0.007744,0.012736,0.014336,0.333856,0.009952
+1173,958.353,1.04346,0.66032,0.009056,0.258112,0.006144,0.005888,0.0064,0.014336,0.01552,0.334688,0.010176
+1174,949.467,1.05322,0.644064,0.008576,0.235232,0.004992,0.006176,0.00816,0.014336,0.014336,0.343296,0.00896
+1175,787.389,1.27002,0.632896,0.008896,0.23072,0.004992,0.007776,0.00656,0.014336,0.014336,0.335552,0.009728
+1176,809.326,1.2356,0.806592,0.00816,0.404896,0.004736,0.006144,0.00768,0.014112,0.01472,0.336224,0.00992
+1177,904.793,1.10522,1.28051,0.008672,0.462336,0.014976,0.006144,0.007648,0.014336,0.014848,0.739392,0.01216
+1178,741.223,1.34912,0.630816,0.009632,0.235488,0.004832,0.006048,0.007808,0.013856,0.0144,0.329664,0.009088
+1179,938.588,1.06543,0.62112,0.008544,0.227136,0.005664,0.005056,0.007744,0.01392,0.014752,0.328128,0.010176
+1180,948.368,1.05444,0.627872,0.00944,0.227456,0.004768,0.006144,0.00784,0.014432,0.014592,0.333344,0.009856
+1181,772.247,1.29492,0.628736,0.009632,0.227936,0.006144,0.005792,0.006496,0.014336,0.015392,0.333888,0.00912
+1182,1065.56,0.938477,0.804864,0.009376,0.40432,0.006144,0.006048,0.006368,0.014208,0.014336,0.3352,0.008864
+1183,445.75,2.24341,0.666912,0.012192,0.264256,0.005664,0.005824,0.006976,0.014336,0.014336,0.333504,0.009824
+1184,1515.35,0.659912,0.630752,0.008192,0.234976,0.0048,0.00768,0.006496,0.01568,0.014432,0.328288,0.010208
+1185,955.224,1.04688,0.626688,0.008224,0.227296,0.006144,0.00592,0.0064,0.014304,0.014336,0.333824,0.01024
+1186,925.65,1.08032,0.630784,0.008352,0.227168,0.005792,0.005792,0.006848,0.014336,0.014336,0.33904,0.00912
+1187,963.765,1.0376,0.62512,0.008672,0.227328,0.006112,0.005792,0.00656,0.014304,0.014336,0.331776,0.01024
+1188,755.162,1.32422,1.08922,0.008192,0.232864,0.004864,0.005984,0.007744,0.013824,0.015104,0.788128,0.012512
+1189,579.349,1.72607,0.65728,0.008832,0.256,0.006144,0.00592,0.0064,0.014304,0.015648,0.334208,0.009824
+1190,576.577,1.73438,0.621088,0.008896,0.22528,0.005984,0.005792,0.006656,0.014336,0.014336,0.329728,0.01008
+1191,1176.34,0.850098,0.625248,0.0088,0.224544,0.004832,0.006144,0.007424,0.013056,0.01536,0.336032,0.009056
+1192,989.611,1.0105,0.62272,0.008352,0.227296,0.006048,0.005824,0.006592,0.014304,0.014432,0.329632,0.01024
+1193,805.665,1.24121,0.622592,0.009696,0.223776,0.006144,0.006144,0.007392,0.013088,0.015424,0.33184,0.009088
+1194,600.234,1.66602,0.62464,0.011904,0.223616,0.006176,0.006112,0.007936,0.014272,0.014688,0.330752,0.009184
+1195,974.078,1.02661,0.6192,0.008704,0.223488,0.006048,0.005824,0.006528,0.014336,0.014368,0.329728,0.010176
+1196,1007.38,0.992676,0.626368,0.009984,0.225536,0.006048,0.00624,0.008032,0.014048,0.014368,0.332192,0.00992
+1197,931.756,1.07324,0.6192,0.008928,0.222368,0.00496,0.007776,0.00656,0.014336,0.014336,0.329728,0.010208
+1198,1017.39,0.98291,0.624512,0.009024,0.22304,0.005664,0.006816,0.007424,0.014176,0.014624,0.333888,0.009856
+1199,863.588,1.15796,0.626688,0.009536,0.228064,0.006112,0.006144,0.006336,0.014144,0.014368,0.331744,0.01024
+1200,609.342,1.64111,0.62464,0.011296,0.22736,0.005056,0.006144,0.007296,0.013184,0.014464,0.330624,0.009216
+1201,995.383,1.00464,0.621024,0.008672,0.223232,0.005984,0.005824,0.006624,0.014336,0.014336,0.331776,0.01024
+1202,605.38,1.65186,0.641184,0.008512,0.235072,0.005696,0.006208,0.006976,0.013728,0.014528,0.340384,0.01008
+1203,1529.5,0.653809,0.620544,0.009312,0.225376,0.004928,0.006144,0.007392,0.013088,0.015488,0.329856,0.00896
+1204,910.02,1.09888,0.624928,0.00896,0.225408,0.00576,0.005792,0.007904,0.013312,0.015456,0.332672,0.009664
+1205,893.933,1.11865,1.06752,0.008704,0.22528,0.006144,0.006144,0.007392,0.013088,0.014336,0.774144,0.012288
+1206,585.812,1.70703,0.620544,0.009664,0.223072,0.004864,0.00784,0.006464,0.014336,0.014336,0.330816,0.009152
+1207,984.379,1.01587,0.620512,0.008672,0.221632,0.006144,0.006144,0.007872,0.013952,0.014496,0.331776,0.009824
+1208,980.373,1.02002,0.621824,0.008288,0.223136,0.006144,0.006176,0.00816,0.01408,0.014592,0.33152,0.009728
+1209,936.443,1.06787,0.61648,0.008192,0.221184,0.006144,0.00592,0.0064,0.014304,0.014464,0.330944,0.008928
+1210,946.833,1.05615,0.623264,0.008864,0.221184,0.006176,0.006112,0.007936,0.01408,0.0144,0.335456,0.009056
+1211,836.601,1.19531,1.07574,0.008672,0.226624,0.004896,0.006112,0.008192,0.01424,0.014464,0.780288,0.012256
+1212,578.94,1.72729,0.620928,0.008576,0.223232,0.00576,0.006528,0.007648,0.014464,0.01456,0.331392,0.008768
+1213,984.142,1.01611,0.622592,0.009536,0.223968,0.005824,0.005792,0.006784,0.014144,0.014464,0.33184,0.01024
+1214,1001.22,0.998779,0.62144,0.00864,0.221728,0.006144,0.006144,0.006144,0.014336,0.014336,0.333824,0.010144
+1215,947.709,1.05518,0.621792,0.00928,0.220096,0.006144,0.007424,0.006912,0.01408,0.014624,0.333504,0.009728
+1216,739.35,1.35254,1.02605,0.008192,0.243712,0.006112,0.005792,0.006528,0.014336,0.014336,0.714752,0.012288
+1217,666.45,1.50049,0.835328,0.02256,0.421472,0.005824,0.004896,0.00816,0.014016,0.014656,0.333856,0.009888
+1218,845.757,1.18237,0.619456,0.0088,0.222848,0.004832,0.007904,0.007392,0.013248,0.014336,0.33136,0.008736
+1219,971.076,1.02979,0.618496,0.009472,0.221536,0.005696,0.006624,0.006528,0.014336,0.014336,0.331072,0.008896
+1220,1018.91,0.981445,0.619552,0.008192,0.221184,0.006144,0.006144,0.007808,0.014016,0.015008,0.331168,0.009888
+1221,974.774,1.02588,0.619552,0.009728,0.221056,0.004832,0.007872,0.006368,0.014336,0.014336,0.33136,0.009664
+1222,815.449,1.22632,1.00198,0.008704,0.221184,0.005536,0.004704,0.007424,0.013056,0.014336,0.714848,0.012192
+1223,632.685,1.58057,1.33677,0.008224,0.483296,0.028736,0.006112,0.018432,0.02816,0.0144,0.737536,0.011872
+1224,693.297,1.44238,0.623904,0.0096,0.22528,0.004832,0.007232,0.007008,0.014336,0.014368,0.331456,0.009792
+1225,987.94,1.01221,0.618496,0.008192,0.221184,0.006176,0.006144,0.007936,0.014112,0.014368,0.331648,0.008736
+1226,992.488,1.00757,0.621984,0.009632,0.221792,0.006144,0.006144,0.006144,0.014336,0.014336,0.333728,0.009728
+1227,986.75,1.01343,0.617856,0.008224,0.221152,0.00608,0.005792,0.00656,0.014336,0.014336,0.331712,0.009664
+1228,873.534,1.14478,0.811104,0.00832,0.413184,0.005696,0.005056,0.007872,0.014208,0.014752,0.333024,0.008992
+1229,443.002,2.25732,0.717024,0.010464,0.303136,0.006112,0.00592,0.016608,0.02048,0.014336,0.3312,0.008768
+1230,1082.17,0.924072,0.630176,0.009504,0.231456,0.004832,0.006112,0.007776,0.013856,0.015136,0.33184,0.009664
+1231,1065.83,0.938232,0.628544,0.008608,0.231008,0.005664,0.005088,0.008096,0.014336,0.014336,0.331712,0.009696
+1232,976.866,1.02368,0.630688,0.009536,0.228032,0.006144,0.005792,0.008544,0.014336,0.014336,0.333824,0.010144
+1233,987.94,1.01221,0.629088,0.008544,0.230752,0.004832,0.007264,0.007008,0.014208,0.014368,0.333024,0.009088
+1234,832.69,1.20093,1.07725,0.008192,0.227328,0.006144,0.006144,0.007264,0.014336,0.014432,0.78112,0.012288
+1235,576.495,1.73462,0.623904,0.00848,0.22688,0.005632,0.005088,0.007872,0.013888,0.01488,0.331552,0.009632
+1236,961.051,1.04053,0.620544,0.009984,0.223488,0.006144,0.005984,0.0064,0.01424,0.014336,0.329728,0.01024
+1237,983.906,1.01636,0.62032,0.009312,0.224128,0.005664,0.006656,0.007232,0.01328,0.015424,0.328608,0.010016
+1238,966.038,1.03516,0.620992,0.008448,0.225088,0.005632,0.004992,0.008,0.014368,0.014304,0.331392,0.008768
+1239,1028.37,0.972412,0.619808,0.009984,0.22144,0.006144,0.00608,0.007296,0.013248,0.014496,0.331456,0.009664
+1240,736.691,1.35742,1.27354,0.009696,0.467488,0.007936,0.005792,0.006752,0.014336,0.014336,0.735136,0.012064
+1241,613.449,1.63013,0.620896,0.008672,0.224448,0.004928,0.006176,0.007424,0.014144,0.014432,0.33056,0.010112
+1242,710.618,1.40723,0.658368,0.009184,0.2512,0.004832,0.006144,0.007712,0.014176,0.014592,0.340352,0.010176
+1243,1316.2,0.759766,0.623872,0.008192,0.227072,0.005984,0.005792,0.006912,0.014272,0.0144,0.331552,0.009696
+1244,978.5,1.02197,0.625472,0.009024,0.229376,0.006144,0.006144,0.007232,0.013248,0.015424,0.33008,0.0088
+1245,1082.74,0.923584,0.630784,0.00928,0.22624,0.006144,0.00624,0.007968,0.013696,0.014816,0.337504,0.008896
+1246,761.48,1.31323,1.06438,0.00928,0.22624,0.006144,0.00592,0.0064,0.014336,0.015616,0.768192,0.012256
+1247,597.782,1.67285,0.619136,0.00864,0.223424,0.005728,0.005792,0.006752,0.014112,0.014432,0.330016,0.01024
+1248,994.175,1.00586,0.618784,0.008608,0.221792,0.006016,0.005792,0.006624,0.014336,0.014368,0.331648,0.0096
+1249,969.697,1.03125,0.623104,0.008832,0.222592,0.004736,0.007648,0.006688,0.014336,0.014336,0.333824,0.010112
+1250,964.9,1.03638,0.618496,0.009504,0.221216,0.004832,0.007424,0.00688,0.014336,0.014336,0.329728,0.01024
+1251,852.8,1.17261,1.03706,0.00864,0.221504,0.005632,0.005888,0.007104,0.015584,0.014688,0.745696,0.01232
+1252,460.742,2.17041,0.63392,0.01088,0.22912,0.004704,0.00608,0.008192,0.014496,0.01536,0.336352,0.008736
+1253,995.141,1.00488,0.62672,0.008224,0.223232,0.006144,0.006112,0.007936,0.013952,0.014592,0.337408,0.00912
+1254,964.673,1.03662,0.624448,0.008768,0.222752,0.005696,0.006432,0.007904,0.013216,0.01552,0.334528,0.009632
+1255,746.22,1.34009,0.65536,0.008192,0.256,0.006144,0.005984,0.006336,0.014272,0.014272,0.335264,0.008896
+1256,1038.8,0.962646,0.6312,0.008608,0.233472,0.006144,0.006112,0.007296,0.013248,0.01584,0.331552,0.008928
+1257,759.362,1.31689,1.07578,0.008608,0.227552,0.005856,0.00576,0.006784,0.014208,0.014464,0.780288,0.012256
+1258,584.225,1.71167,0.629984,0.009536,0.23008,0.006176,0.00608,0.007264,0.013344,0.015424,0.33232,0.00976
+1259,1008.87,0.991211,0.65776,0.008544,0.239616,0.00608,0.005792,0.00656,0.022528,0.02992,0.329824,0.008896
+1260,964.445,1.03687,0.647616,0.00864,0.24576,0.006144,0.006016,0.0064,0.014208,0.018432,0.331776,0.01024
+1261,1109.13,0.901611,0.626208,0.009696,0.227008,0.004992,0.00736,0.006944,0.014368,0.014304,0.331776,0.00976
+1262,975.47,1.02515,0.628448,0.008928,0.226912,0.005632,0.00704,0.007616,0.014336,0.014304,0.33392,0.00976
+1263,743.106,1.3457,1.33728,0.0088,0.51984,0.008064,0.005824,0.006944,0.014336,0.024576,0.736736,0.01216
+1264,582.48,1.7168,0.625152,0.008704,0.224576,0.0048,0.007904,0.006432,0.014368,0.014304,0.333824,0.01024
+1265,942.693,1.06079,0.618496,0.009408,0.222048,0.006112,0.005824,0.006464,0.014368,0.014304,0.329728,0.01024
+1266,965.582,1.03564,0.625664,0.008864,0.224704,0.005024,0.006176,0.007808,0.014112,0.014336,0.3344,0.01024
+1267,942.259,1.06128,0.634752,0.009696,0.233248,0.004896,0.006112,0.008224,0.013952,0.014688,0.333824,0.010112
+1268,813.99,1.22852,1.05069,0.00896,0.263392,0.005088,0.005824,0.006464,0.014432,0.015904,0.718912,0.011712
+1269,741.223,1.34912,1.28205,0.009248,0.457696,0.019776,0.005824,0.007168,0.014336,0.014368,0.742848,0.010784
+1270,608.618,1.64307,0.622048,0.008512,0.223232,0.005856,0.005792,0.007904,0.013216,0.015392,0.332256,0.009888
+1271,1046.77,0.955322,0.61648,0.009344,0.2216,0.005664,0.005056,0.007872,0.013888,0.014496,0.329504,0.009056
+1272,947.49,1.05542,0.623232,0.008832,0.223232,0.006144,0.005632,0.006688,0.014304,0.014336,0.333824,0.01024
+1273,951.673,1.05078,0.6192,0.008864,0.22096,0.005664,0.005888,0.007136,0.014112,0.014528,0.33328,0.008768
+1274,862.679,1.15918,0.8168,0.008672,0.41344,0.005632,0.004992,0.008,0.0144,0.014336,0.337664,0.009664
+1275,525.196,1.90405,0.629952,0.012096,0.228608,0.005088,0.006112,0.008,0.013984,0.014656,0.331584,0.009824
+1276,987.94,1.01221,0.624672,0.008192,0.223232,0.006144,0.006144,0.008096,0.014016,0.014656,0.33392,0.010272
+1277,971.307,1.02954,0.620544,0.008192,0.223232,0.00608,0.005824,0.006528,0.014336,0.014336,0.333184,0.008832
+1278,1001.47,0.998535,0.62048,0.008448,0.221216,0.005984,0.005792,0.006624,0.015424,0.014912,0.33216,0.00992
+1279,951.894,1.05054,0.620736,0.008768,0.221184,0.005888,0.0064,0.008,0.014144,0.014464,0.332032,0.009856
+1280,739.751,1.35181,0.630592,0.008192,0.22528,0.006048,0.005792,0.006624,0.014304,0.014336,0.339968,0.010048
+1281,597.956,1.67236,0.645088,0.01088,0.243264,0.005664,0.005056,0.007936,0.014272,0.014528,0.33376,0.009728
+1282,976.866,1.02368,0.62752,0.008608,0.227648,0.006144,0.006144,0.007968,0.014016,0.014688,0.333344,0.00896
+1283,972.691,1.02808,0.625696,0.008288,0.224416,0.004864,0.006144,0.008224,0.014304,0.014336,0.335456,0.009664
+1284,960.826,1.04077,0.623008,0.008608,0.224704,0.004832,0.005984,0.007904,0.014016,0.014784,0.331936,0.01024
+1285,939.881,1.06396,0.623136,0.008736,0.221184,0.005984,0.0056,0.006848,0.014304,0.014368,0.335872,0.01024
+1286,767.472,1.30298,1.08973,0.008384,0.227328,0.006144,0.006144,0.007584,0.013984,0.014528,0.793376,0.012256
+1287,582.232,1.71753,0.620544,0.009472,0.22384,0.005696,0.006752,0.00752,0.014112,0.014496,0.328416,0.01024
+1288,1002.69,0.997314,0.622592,0.009408,0.222016,0.006112,0.006176,0.008096,0.014432,0.014368,0.331744,0.01024
+1289,978.032,1.02246,0.629824,0.008224,0.223232,0.006176,0.0056,0.006656,0.014272,0.0144,0.3416,0.009664
+1290,987.702,1.01245,0.620288,0.009888,0.221536,0.006144,0.007808,0.006528,0.014368,0.014304,0.329728,0.009984
+1291,951.01,1.05151,1.01005,0.008576,0.221184,0.006176,0.00576,0.006528,0.014304,0.014368,0.720864,0.012288
+1292,698.142,1.43237,1.27418,0.008512,0.468992,0.008192,0.006048,0.007264,0.014848,0.014496,0.733536,0.012288
+1293,458.936,2.17896,0.6696,0.008192,0.25504,0.005056,0.006144,0.007488,0.014208,0.014656,0.348672,0.010144
+1294,1549.17,0.645508,0.623488,0.008992,0.223328,0.00608,0.005792,0.00656,0.014336,0.014336,0.333824,0.01024
+1295,1006.39,0.993652,0.618528,0.00928,0.222144,0.006144,0.006144,0.007392,0.014496,0.014368,0.329696,0.008864
+1296,941.826,1.06177,0.62224,0.008192,0.22528,0.005728,0.006592,0.007968,0.014176,0.014528,0.329888,0.009888
+1297,832.013,1.2019,0.810944,0.00992,0.407296,0.005728,0.005024,0.00784,0.0144,0.0144,0.3376,0.008736
+1298,577.471,1.73169,0.630432,0.010624,0.229216,0.005632,0.00496,0.009216,0.014272,0.014656,0.332224,0.009632
+1299,935.373,1.06909,0.622016,0.008288,0.223232,0.005792,0.006496,0.007456,0.01328,0.015552,0.332,0.00992
+1300,983.67,1.0166,0.616992,0.00864,0.22128,0.006016,0.006272,0.00768,0.0144,0.014688,0.327776,0.01024
+1301,993.934,1.0061,0.627744,0.008192,0.223232,0.005952,0.006368,0.00816,0.013888,0.014784,0.337312,0.009856
+1302,986.988,1.01318,0.626304,0.00928,0.222144,0.006144,0.006144,0.008,0.01408,0.01472,0.335936,0.009856
+1303,808.847,1.23633,1.07152,0.008608,0.223232,0.006144,0.005888,0.0064,0.014336,0.014368,0.780256,0.012288
+1304,594.14,1.68311,0.623968,0.009408,0.224064,0.006176,0.006112,0.006208,0.014272,0.014336,0.3336,0.009792
+1305,933.881,1.0708,0.622336,0.008672,0.223232,0.005632,0.006656,0.007232,0.013248,0.014336,0.333568,0.00976
+1306,971.768,1.02905,0.623392,0.008992,0.221184,0.006144,0.006144,0.00784,0.014464,0.014528,0.333856,0.01024
+1307,796.268,1.25586,0.7088,0.008384,0.286272,0.005664,0.005088,0.01632,0.030304,0.014752,0.331776,0.01024
+1308,889.661,1.12402,0.648576,0.009632,0.25024,0.006368,0.005792,0.006496,0.014336,0.014336,0.33168,0.009696
+1309,739.083,1.35303,1.1135,0.009664,0.248384,0.00576,0.005824,0.006848,0.014336,0.014336,0.796288,0.012064
+1310,630.833,1.58521,0.620224,0.008192,0.224768,0.005632,0.00512,0.00784,0.014016,0.014592,0.330144,0.00992
+1311,1020.94,0.979492,0.622976,0.008576,0.224832,0.005696,0.004992,0.008192,0.013952,0.01472,0.331776,0.01024
+1312,992.488,1.00757,0.63296,0.00832,0.22912,0.005792,0.006272,0.006624,0.014336,0.014336,0.33792,0.01024
+1313,911.032,1.09766,0.632416,0.009856,0.223296,0.005664,0.0064,0.006656,0.013792,0.01456,0.342304,0.009888
+1314,986.275,1.01392,1.00938,0.008192,0.222976,0.005664,0.00496,0.007872,0.013984,0.01472,0.718784,0.012224
+1315,614.369,1.62769,1.31274,0.008672,0.468992,0.02048,0.005952,0.018624,0.014368,0.014304,0.747744,0.0136
+1316,572.387,1.74707,0.671744,0.009216,0.258368,0.0048,0.006144,0.007744,0.01408,0.023232,0.33792,0.01024
+1317,833.876,1.19922,0.652992,0.009536,0.2544,0.005856,0.00576,0.007072,0.014336,0.014336,0.331776,0.00992
+1318,1011.11,0.989014,0.650816,0.008192,0.253792,0.005632,0.005824,0.007136,0.014208,0.014496,0.331584,0.009952
+1319,990.808,1.00928,0.641856,0.00864,0.242048,0.006144,0.005856,0.006432,0.014336,0.014336,0.33504,0.009024
+1320,555.842,1.79907,1.30397,0.008192,0.47104,0.018432,0.006144,0.015552,0.01472,0.014304,0.743616,0.011968
+1321,650.675,1.53687,0.62272,0.008576,0.22432,0.005024,0.006144,0.007328,0.013152,0.015648,0.332512,0.010016
+1322,970.156,1.03076,0.626112,0.009664,0.223808,0.006144,0.007936,0.0064,0.014336,0.01536,0.332704,0.00976
+1323,979.202,1.02124,0.622592,0.008192,0.223232,0.005856,0.005792,0.006784,0.014336,0.014336,0.333824,0.01024
+1324,1007.87,0.992188,0.620544,0.009248,0.221952,0.005664,0.005024,0.008,0.014048,0.014496,0.333024,0.009088
+1325,554.488,1.80347,1.0456,0.009792,0.238016,0.006144,0.006176,0.007296,0.014176,0.014784,0.737216,0.012
+1326,672.468,1.48706,0.636832,0.011552,0.23584,0.005664,0.005024,0.008032,0.014144,0.014368,0.332064,0.010144
+1327,1030.96,0.969971,0.620128,0.008608,0.224448,0.004928,0.006144,0.007616,0.014144,0.014432,0.330112,0.009696
+1328,921.485,1.08521,0.619648,0.009888,0.222784,0.004928,0.006112,0.007648,0.01424,0.01488,0.329152,0.010016
+1329,993.451,1.00659,0.624608,0.008224,0.223072,0.005696,0.005792,0.007104,0.014016,0.014688,0.33584,0.010176
+1330,1002.45,0.997559,0.620544,0.009376,0.22208,0.005824,0.005824,0.006752,0.014272,0.0144,0.331776,0.01024
+1331,809.646,1.23511,0.620896,0.008704,0.223712,0.006048,0.005888,0.006528,0.014304,0.014336,0.331584,0.009792
+1332,619.199,1.61499,0.670976,0.010304,0.274432,0.005632,0.005632,0.007168,0.014336,0.014272,0.32944,0.00976
+1333,1061.97,0.94165,0.624672,0.008384,0.227136,0.005824,0.005792,0.008,0.013152,0.01552,0.332064,0.0088
+1334,938.804,1.06519,0.620256,0.008416,0.223072,0.005632,0.005856,0.007072,0.014176,0.014528,0.331616,0.009888
+1335,977.566,1.02295,0.621248,0.0088,0.221536,0.006144,0.006144,0.00736,0.014176,0.014528,0.332576,0.009984
+1336,956.786,1.04517,0.62048,0.009696,0.223712,0.005632,0.005792,0.007072,0.013824,0.014176,0.3304,0.010176
+1337,925.859,1.08008,0.811648,0.008832,0.413696,0.006144,0.005984,0.00736,0.013408,0.015936,0.330048,0.01024
+1338,557.734,1.79297,0.972896,0.030752,0.545984,0.004992,0.006112,0.007776,0.022848,0.014432,0.331104,0.008896
+1339,794.877,1.25806,0.684768,0.008928,0.268288,0.006144,0.006144,0.007936,0.024384,0.014784,0.333824,0.014336
+1340,1186.9,0.842529,0.620448,0.009408,0.223808,0.005664,0.006272,0.006752,0.014368,0.014304,0.329728,0.010144
+1341,985.563,1.01465,0.62464,0.009728,0.223744,0.005888,0.0064,0.008192,0.01408,0.014592,0.332864,0.009152
+1342,1002.45,0.997559,0.621088,0.00864,0.2232,0.005664,0.006848,0.007264,0.014304,0.014816,0.33024,0.010112
+1343,824.975,1.21216,0.6264,0.008704,0.223456,0.006144,0.006144,0.007584,0.012896,0.014368,0.337568,0.009536
+1344,552.319,1.81055,0.682272,0.010688,0.253952,0.006176,0.006112,0.007296,0.02528,0.028864,0.333824,0.01008
+1345,1033.82,0.967285,0.620896,0.008928,0.223456,0.006048,0.005792,0.006592,0.014336,0.014336,0.331712,0.009696
+1346,1001.71,0.998291,0.624672,0.009472,0.22144,0.004704,0.007616,0.006624,0.014336,0.014336,0.335872,0.010272
+1347,986.275,1.01392,0.620288,0.00832,0.221184,0.006144,0.006048,0.00624,0.014336,0.014336,0.333824,0.009856
+1348,979.67,1.02075,0.62448,0.009536,0.221888,0.006112,0.006176,0.008096,0.013952,0.014528,0.334112,0.01008
+1349,830.832,1.20361,1.05523,0.00864,0.223296,0.00608,0.005824,0.006528,0.014336,0.014368,0.763872,0.012288
+1350,583.725,1.71313,0.649216,0.009312,0.240096,0.005664,0.005024,0.007904,0.014624,0.024096,0.332256,0.01024
+1351,951.231,1.05127,0.621824,0.009248,0.221536,0.0048,0.007872,0.0064,0.014368,0.014304,0.333632,0.009664
+1352,983.67,1.0166,0.62272,0.00832,0.223232,0.006176,0.006048,0.007328,0.014496,0.01456,0.333408,0.009152
+1353,965.355,1.03589,0.62304,0.008992,0.223296,0.006112,0.005856,0.007488,0.01328,0.014336,0.333824,0.009856
+1354,1014.11,0.986084,0.620384,0.008576,0.2232,0.005792,0.005824,0.006848,0.014208,0.01424,0.332,0.009696
+1355,821.5,1.21729,1.08115,0.009312,0.223424,0.004832,0.006176,0.007776,0.014208,0.014336,0.788896,0.012192
+1356,577.064,1.73291,0.645184,0.00864,0.23952,0.005632,0.005024,0.008064,0.013728,0.022592,0.332352,0.009632
+1357,702.935,1.42261,0.689824,0.009696,0.274976,0.006144,0.006112,0.007232,0.0168,0.0272,0.331776,0.009888
+1358,1224.51,0.81665,0.624704,0.008448,0.226432,0.004992,0.006144,0.00768,0.01408,0.014848,0.332032,0.010048
+1359,969.467,1.03149,0.620224,0.008864,0.223232,0.00608,0.005664,0.006688,0.014336,0.014336,0.331456,0.009568
+1360,540.797,1.84912,1.00944,0.00864,0.223232,0.005632,0.005792,0.00704,0.014176,0.014496,0.71808,0.012352
+1361,1366.24,0.731934,1.27338,0.008704,0.458496,0.014592,0.006144,0.00736,0.014592,0.01472,0.736864,0.011904
+1362,605.917,1.65039,0.639296,0.008512,0.223264,0.006112,0.007424,0.018976,0.01456,0.014336,0.335872,0.01024
+1363,970.616,1.03027,0.625024,0.008928,0.222944,0.005664,0.006912,0.007456,0.014048,0.01456,0.334624,0.009888
+1364,984.615,1.01562,0.627136,0.00896,0.22256,0.004864,0.006048,0.00784,0.014208,0.014624,0.338112,0.00992
+1365,1017.39,0.98291,0.622496,0.009312,0.222016,0.005632,0.006656,0.006368,0.014208,0.014336,0.333824,0.010144
+1366,962.406,1.03906,0.804608,0.008512,0.405504,0.006144,0.005856,0.006464,0.014304,0.015648,0.332512,0.009664
+1367,545.043,1.83472,0.626368,0.01136,0.22384,0.005664,0.005024,0.007968,0.014432,0.014368,0.333792,0.00992
+1368,994.175,1.00586,0.637024,0.008384,0.235456,0.005696,0.006656,0.007712,0.014176,0.014304,0.334496,0.010144
+1369,997.322,1.00269,0.622496,0.009664,0.223808,0.00592,0.0056,0.006944,0.014304,0.014336,0.331776,0.010144
+1370,760.49,1.31494,0.670432,0.008768,0.246976,0.004928,0.006144,0.008064,0.0224,0.02688,0.337536,0.008736
+1371,1080.74,0.925293,0.625056,0.008576,0.224736,0.00464,0.006144,0.00784,0.01408,0.01456,0.335744,0.008736
+1372,845.757,1.18237,0.807104,0.009472,0.409568,0.004896,0.006144,0.007584,0.014112,0.01472,0.33184,0.008768
+1373,533.056,1.87598,0.634176,0.011648,0.229536,0.005632,0.00512,0.008,0.014528,0.014304,0.335776,0.009632
+1374,984.379,1.01587,0.623936,0.009408,0.223488,0.004832,0.007488,0.006688,0.014336,0.015456,0.33248,0.00976
+1375,1003.43,0.996582,0.626976,0.008512,0.225248,0.006144,0.007488,0.006848,0.014336,0.014336,0.333824,0.01024
+1376,939.881,1.06396,0.63232,0.009728,0.224864,0.005056,0.006112,0.0072,0.01328,0.014336,0.341376,0.010368
+1377,973.615,1.0271,0.620704,0.008192,0.221184,0.006176,0.006112,0.007968,0.01392,0.014656,0.333728,0.008768
+1378,844.536,1.18408,1.10589,0.009728,0.23168,0.005664,0.005056,0.008,0.014304,0.014336,0.804896,0.012224
+1379,578.041,1.72998,0.62256,0.008192,0.224768,0.005632,0.006976,0.006464,0.01424,0.015616,0.330464,0.010208
+1380,989.133,1.01099,0.620928,0.008608,0.221536,0.006176,0.005824,0.006464,0.014336,0.01552,0.332576,0.009888
+1381,938.804,1.06519,0.623968,0.008256,0.223168,0.005664,0.005792,0.006976,0.014336,0.014336,0.335712,0.009728
+1382,1030.44,0.970459,0.619456,0.009024,0.221312,0.005984,0.006272,0.007264,0.013248,0.014336,0.331776,0.01024
+1383,703.297,1.42188,0.659232,0.008544,0.256,0.006144,0.00592,0.006368,0.014336,0.015488,0.336768,0.009664
+1384,1095.48,0.912842,0.656064,0.008896,0.256,0.006144,0.006048,0.0064,0.014176,0.014336,0.335008,0.009056
+1385,671.475,1.48926,0.63488,0.011968,0.229728,0.006112,0.007232,0.007104,0.014048,0.014368,0.33408,0.01024
+1386,954.556,1.04761,0.624192,0.00848,0.224704,0.004672,0.006144,0.008192,0.014336,0.014336,0.333536,0.009792
+1387,981.548,1.0188,0.617312,0.008928,0.221312,0.006144,0.006144,0.00784,0.01392,0.014432,0.328352,0.01024
+1388,976.168,1.02441,0.622592,0.008192,0.22288,0.005632,0.005024,0.007808,0.014176,0.014848,0.335296,0.008736
+1389,1016.88,0.983398,0.624704,0.008448,0.222624,0.004672,0.006144,0.00768,0.014624,0.014592,0.33584,0.01008
+1390,795.494,1.25708,1.07686,0.008256,0.225248,0.006112,0.005952,0.006432,0.015488,0.014336,0.782816,0.012224
+1391,588.083,1.70044,0.621024,0.00864,0.224384,0.005056,0.006112,0.007328,0.013152,0.015392,0.331968,0.008992
+1392,984.379,1.01587,0.643296,0.008448,0.243424,0.005664,0.004864,0.008,0.013888,0.014656,0.334144,0.010208
+1393,987.464,1.0127,0.6216,0.009888,0.221536,0.005888,0.0064,0.00784,0.014208,0.014528,0.331712,0.0096
+1394,941.393,1.06226,0.629024,0.00848,0.223232,0.006016,0.006272,0.006144,0.014336,0.014336,0.339968,0.01024
+1395,1032.26,0.96875,0.622592,0.00944,0.22128,0.006336,0.006656,0.007776,0.013856,0.014752,0.332256,0.01024
+1396,816.913,1.22412,1.09773,0.008768,0.225088,0.005664,0.005024,0.009152,0.014432,0.0144,0.79328,0.02192
+1397,566.215,1.76611,0.628768,0.008928,0.229376,0.006144,0.006144,0.007232,0.01328,0.01536,0.332608,0.009696
+1398,1015.87,0.984375,0.62112,0.008928,0.222496,0.004832,0.007872,0.006464,0.014336,0.014336,0.331776,0.01008
+1399,939.45,1.06445,0.61952,0.008704,0.221504,0.005664,0.006688,0.007328,0.01328,0.014496,0.331616,0.01024
+1400,969.697,1.03125,0.616448,0.008192,0.222848,0.0056,0.005024,0.007776,0.014016,0.014464,0.328288,0.01024
+1401,992.488,1.00757,0.623552,0.00896,0.224736,0.004864,0.007584,0.00672,0.014336,0.014368,0.332992,0.008992
+1402,732.475,1.36523,1.26976,0.009408,0.45456,0.01936,0.005984,0.0064,0.01424,0.014432,0.734112,0.011264
+1403,621.642,1.60864,0.618336,0.009248,0.220128,0.006144,0.006176,0.008064,0.013984,0.01472,0.329792,0.01008
+1404,964.445,1.03687,0.6192,0.008896,0.223232,0.005696,0.005792,0.006976,0.014176,0.014304,0.329888,0.01024
+1405,988.179,1.01196,0.617664,0.008192,0.222656,0.004672,0.006144,0.007968,0.014112,0.014464,0.329568,0.009888
+1406,947.271,1.05566,0.629664,0.00912,0.222528,0.0048,0.006144,0.007776,0.014016,0.014432,0.340608,0.01024
+1407,965.582,1.03564,1.01542,0.0096,0.221408,0.005696,0.007008,0.007488,0.014112,0.014432,0.723296,0.012384
+1408,683.008,1.46411,1.27056,0.00864,0.469344,0.008192,0.006112,0.00736,0.013152,0.015552,0.72992,0.012288
+1409,588.506,1.69922,0.655904,0.008672,0.239616,0.005824,0.005792,0.006848,0.018368,0.027872,0.334176,0.008736
+1410,794.414,1.25879,0.671744,0.009888,0.256352,0.022112,0.006208,0.006496,0.015456,0.014688,0.331328,0.009216
+1411,1163.97,0.859131,0.626688,0.009728,0.225792,0.006144,0.005856,0.006464,0.014304,0.014336,0.335008,0.009056
+1412,957.233,1.04468,0.620544,0.01024,0.223232,0.005888,0.005792,0.006752,0.014336,0.014336,0.330944,0.009024
+1413,959.925,1.04175,0.808928,0.009248,0.404448,0.006144,0.006144,0.007392,0.014208,0.0144,0.336736,0.010208
+1414,538.451,1.85718,0.626688,0.012064,0.227296,0.005664,0.004832,0.008,0.014176,0.014368,0.330048,0.01024
+1415,965.127,1.03613,0.621632,0.008224,0.224416,0.004928,0.006144,0.00768,0.01408,0.014688,0.331776,0.009696
+1416,983.433,1.01685,0.62096,0.008416,0.223232,0.005632,0.006304,0.006496,0.014336,0.014336,0.333152,0.009056
+1417,938.373,1.06567,0.620544,0.009344,0.221952,0.005728,0.006656,0.007232,0.014368,0.01456,0.331648,0.009056
+1418,963.765,1.0376,0.624416,0.008544,0.2232,0.005664,0.006656,0.007232,0.013376,0.01552,0.33456,0.009664
+1419,763.894,1.30908,0.65536,0.018432,0.24784,0.00608,0.005856,0.006464,0.014368,0.014304,0.331776,0.01024
+1420,642.51,1.5564,0.630816,0.011392,0.22416,0.006176,0.005824,0.006432,0.014336,0.014336,0.339168,0.008992
+1421,1001.22,0.998779,0.622368,0.009376,0.222048,0.005824,0.005888,0.00672,0.014336,0.014336,0.333824,0.010016
+1422,991.048,1.00903,0.622688,0.008192,0.223072,0.005696,0.005792,0.007072,0.014112,0.014592,0.335424,0.008736
+1423,893.933,1.11865,0.631648,0.00896,0.22688,0.0048,0.00752,0.006656,0.014336,0.014336,0.339136,0.009024
+1424,927.746,1.07788,0.622816,0.008544,0.224384,0.004992,0.006144,0.007584,0.014208,0.014752,0.332096,0.010112
+1425,886.58,1.12793,1.07315,0.009344,0.22608,0.005632,0.00592,0.007008,0.013824,0.014816,0.77824,0.012288
+1426,574.313,1.74121,0.622304,0.009472,0.224,0.006144,0.005824,0.006464,0.014336,0.014368,0.331712,0.009984
+1427,962.632,1.03882,0.62464,0.008192,0.224544,0.004832,0.006144,0.007776,0.014016,0.014496,0.335904,0.008736
+1428,973.153,1.02759,0.628768,0.008192,0.22528,0.00592,0.005632,0.00688,0.01424,0.014432,0.339328,0.008864
+1429,956.339,1.04565,0.624608,0.008448,0.221216,0.006112,0.006176,0.007392,0.014112,0.014528,0.336672,0.009952
+1430,928.588,1.0769,0.621216,0.008864,0.222656,0.004832,0.007552,0.006624,0.014336,0.014336,0.3328,0.009216
+1431,869.27,1.15039,0.638816,0.009504,0.22304,0.005024,0.006144,0.00752,0.014048,0.02944,0.334016,0.01008
+1432,566.764,1.7644,0.628256,0.011488,0.225408,0.004768,0.006144,0.007968,0.014272,0.014624,0.333824,0.00976
+1433,974.542,1.02612,0.623072,0.008672,0.225312,0.006112,0.006112,0.007328,0.013184,0.015616,0.331616,0.00912
+1434,998.537,1.00146,0.624832,0.008384,0.225248,0.006144,0.007744,0.006592,0.014336,0.014336,0.331808,0.01024
+1435,646.669,1.54639,0.628736,0.008192,0.221216,0.005888,0.0064,0.007424,0.013024,0.015392,0.34096,0.01024
+1436,930.064,1.0752,1.07258,0.019872,0.262752,0.006144,0.006144,0.02256,0.015392,0.014752,0.713248,0.011712
+1437,721.508,1.38599,0.82944,0.012192,0.424032,0.006016,0.005824,0.006592,0.014336,0.014528,0.336704,0.009216
+1438,825.307,1.21167,0.628832,0.008928,0.225536,0.006112,0.00576,0.007776,0.013184,0.015744,0.336064,0.009728
+1439,982.726,1.01758,0.62464,0.00976,0.221664,0.006176,0.00624,0.008,0.013952,0.0144,0.334208,0.01024
+1440,984.615,1.01562,0.62464,0.008192,0.223232,0.006144,0.007648,0.00672,0.014304,0.01552,0.33264,0.01024
+1441,952.558,1.0498,0.624448,0.009824,0.221632,0.006016,0.00576,0.006624,0.014368,0.014304,0.335872,0.010048
+1442,887.925,1.12622,1.03456,0.008512,0.247808,0.006144,0.005984,0.007872,0.014016,0.014368,0.717568,0.012288
+1443,476.39,2.09912,0.628736,0.011616,0.230016,0.005632,0.005792,0.00704,0.013696,0.014112,0.330592,0.01024
+1444,1004.41,0.995605,0.623744,0.008192,0.222272,0.005088,0.006112,0.00752,0.014208,0.014688,0.335872,0.009792
+1445,979.904,1.02051,0.618336,0.00864,0.221344,0.006048,0.006208,0.007488,0.013248,0.01536,0.330272,0.009728
+1446,1011.36,0.98877,0.6192,0.008896,0.220576,0.004864,0.007072,0.007104,0.014176,0.015616,0.33184,0.009056
+1447,961.051,1.04053,0.618272,0.009696,0.21968,0.006016,0.005824,0.006592,0.014336,0.014336,0.331776,0.010016
+1448,884.474,1.13062,0.810144,0.00976,0.40592,0.005728,0.005792,0.006976,0.014336,0.014368,0.337408,0.009856
+1449,471.726,2.11987,0.656992,0.012128,0.253536,0.004672,0.006144,0.00784,0.013728,0.014368,0.334752,0.009824
+1450,1067.22,0.937012,0.626656,0.008224,0.225312,0.006048,0.005888,0.006464,0.014336,0.014368,0.33584,0.010176
+1451,949.907,1.05273,0.622848,0.008224,0.223104,0.005664,0.006624,0.0064,0.014176,0.014336,0.335264,0.009056
+1452,934.52,1.07007,0.621952,0.009888,0.221568,0.006112,0.006176,0.00816,0.014304,0.014368,0.331488,0.009888
+1453,1008.62,0.991455,0.622624,0.00928,0.222176,0.006112,0.007424,0.006912,0.014336,0.014336,0.333312,0.008736
+1454,767.904,1.30225,1.34963,0.008192,0.224832,0.005664,0.005024,0.008032,0.01424,0.014368,0.8008,0.26848
+1455,551.427,1.81348,0.620544,0.008192,0.223232,0.005824,0.006464,0.007552,0.014304,0.01456,0.331456,0.00896
+1456,1007.13,0.99292,0.618912,0.008832,0.221184,0.006176,0.006112,0.007744,0.014368,0.014752,0.329728,0.010016
+1457,985.563,1.01465,0.624896,0.008416,0.221184,0.006112,0.006176,0.007904,0.013792,0.015168,0.337056,0.009088
+1458,1011.61,0.988525,0.620544,0.009504,0.22192,0.00576,0.006496,0.007232,0.013376,0.01552,0.332,0.008736
+1459,966.722,1.03442,1.00557,0.008192,0.2224,0.004928,0.006176,0.007616,0.01296,0.01552,0.715488,0.012288
+1460,438.685,2.27954,0.62384,0.011392,0.226144,0.00592,0.005792,0.006752,0.014336,0.014336,0.32928,0.009888
+1461,833.706,1.19946,0.687232,0.009888,0.266592,0.006144,0.020512,0.007712,0.01376,0.014528,0.338272,0.009824
+1462,1034.34,0.966797,0.622592,0.009472,0.223616,0.005664,0.005024,0.007968,0.014272,0.01456,0.333248,0.008768
+1463,1067.5,0.936768,0.62368,0.009824,0.2216,0.005696,0.005824,0.006912,0.014368,0.014304,0.33536,0.009792
+1464,939.019,1.06494,0.622592,0.008192,0.222528,0.004832,0.00752,0.006784,0.014336,0.014336,0.334944,0.00912
+1465,815.124,1.22681,0.629024,0.00848,0.228736,0.004768,0.007456,0.006848,0.014176,0.014528,0.333824,0.010208
+1466,583.892,1.71265,0.627296,0.010848,0.226688,0.004736,0.006144,0.007744,0.014016,0.014432,0.33376,0.008928
+1467,983.906,1.01636,0.618496,0.009632,0.219744,0.006144,0.0072,0.007168,0.014016,0.014272,0.33008,0.01024
+1468,948.587,1.0542,0.624608,0.008224,0.227008,0.005664,0.005024,0.008,0.014176,0.01456,0.331776,0.010176
+1469,965.81,1.0354,0.62144,0.008928,0.222784,0.005696,0.006016,0.007168,0.014016,0.014656,0.333152,0.009024
+1470,937.944,1.06616,0.619424,0.009024,0.221248,0.006144,0.006016,0.0064,0.014208,0.014304,0.331808,0.010272
+1471,787.995,1.26904,0.653312,0.008704,0.247328,0.005024,0.006144,0.00752,0.01408,0.022656,0.331968,0.009888
+1472,750.871,1.33179,0.628928,0.01056,0.228672,0.005696,0.005088,0.00784,0.014272,0.014624,0.333344,0.008832
+1473,964.673,1.03662,0.620768,0.008832,0.222496,0.004864,0.006112,0.007776,0.01392,0.014688,0.332256,0.009824
+1474,997.565,1.00244,0.62464,0.009952,0.224832,0.004832,0.006144,0.007424,0.014688,0.014752,0.332992,0.009024
+1475,581.736,1.71899,0.64256,0.008384,0.245728,0.006144,0.00592,0.006368,0.014336,0.014336,0.33152,0.009824
+1476,1000.98,0.999023,0.628672,0.008992,0.227328,0.006144,0.006112,0.007296,0.015264,0.014368,0.333472,0.009696
+1477,918.386,1.08887,0.630784,0.008192,0.233472,0.005952,0.005792,0.006688,0.014336,0.015648,0.330464,0.01024
+1478,584.308,1.71143,0.64304,0.01184,0.241888,0.005664,0.00496,0.008032,0.013664,0.014336,0.332448,0.010208
+1479,996.836,1.00317,0.622592,0.009312,0.22416,0.006144,0.00592,0.006368,0.014336,0.0144,0.331712,0.01024
+1480,980.373,1.02002,0.625696,0.008192,0.2272,0.005664,0.005792,0.007104,0.014336,0.014336,0.333312,0.00976
+1481,994.416,1.00562,0.630784,0.00992,0.227584,0.005632,0.00672,0.008032,0.014048,0.014816,0.333792,0.01024
+1482,908.405,1.10083,1.01171,0.00928,0.222144,0.00576,0.005792,0.00688,0.014016,0.014656,0.720896,0.012288
+1483,590.712,1.69287,0.83584,0.018624,0.422048,0.006176,0.005984,0.0064,0.014208,0.015392,0.336864,0.010144
+1484,877.84,1.13916,0.622144,0.008352,0.225024,0.005664,0.004992,0.008032,0.014272,0.0144,0.331648,0.00976
+1485,960.15,1.0415,0.626848,0.008352,0.223232,0.00592,0.006272,0.006432,0.014144,0.01536,0.336896,0.01024
+1486,972.46,1.02832,0.62592,0.009664,0.22176,0.006176,0.006112,0.006144,0.014336,0.014336,0.337696,0.009696
+1487,997.079,1.00293,0.622048,0.008256,0.2232,0.006112,0.00592,0.006368,0.014336,0.014336,0.333824,0.009696
+1488,700.89,1.42676,0.89904,0.00832,0.50128,0.005664,0.005056,0.007904,0.014048,0.014496,0.332192,0.01008
+1489,798.752,1.25195,1.28816,0.008192,0.476864,0.011968,0.005824,0.007104,0.014368,0.014304,0.73728,0.012256
+1490,650.675,1.53687,0.628768,0.00864,0.229696,0.00608,0.006144,0.007872,0.013984,0.014656,0.331904,0.009792
+1491,936.657,1.06763,0.621632,0.009632,0.223264,0.004864,0.005952,0.007712,0.014016,0.014272,0.332032,0.009888
+1492,963.085,1.03833,0.620576,0.009472,0.22384,0.005664,0.005792,0.007136,0.014336,0.014336,0.329728,0.010272
+1493,987.702,1.01245,0.621888,0.009792,0.225216,0.005664,0.005088,0.007968,0.014048,0.014432,0.33008,0.0096
+1494,545.333,1.83374,0.812032,0.010176,0.411712,0.005952,0.006336,0.007328,0.014528,0.014016,0.332224,0.00976
+1495,895.105,1.11719,0.651424,0.011072,0.24576,0.006144,0.006016,0.006304,0.015712,0.014272,0.33648,0.009664
+1496,914.286,1.09375,0.637408,0.0088,0.23552,0.006144,0.006144,0.00752,0.014688,0.014112,0.334368,0.010112
+1497,931.121,1.07397,0.628736,0.009632,0.229344,0.004832,0.006048,0.007616,0.012864,0.015712,0.332448,0.01024
+1498,1006.39,0.993652,0.627616,0.008928,0.231232,0.005696,0.00496,0.00816,0.013472,0.014496,0.331776,0.008896
+1499,1032.26,0.96875,0.624768,0.008448,0.229056,0.005632,0.005056,0.008032,0.013824,0.014336,0.33024,0.010144
+1500,801.095,1.24829,0.649152,0.008192,0.25152,0.005664,0.005024,0.007936,0.014112,0.014784,0.331744,0.010176
+1501,810.127,1.23438,1.28205,0.008192,0.47008,0.015296,0.006144,0.007328,0.014656,0.014496,0.733568,0.012288
+1502,684.835,1.46021,0.626816,0.00832,0.227264,0.005664,0.006112,0.006752,0.014304,0.014336,0.334944,0.00912
+1503,963.085,1.03833,0.62608,0.009344,0.224192,0.00608,0.006144,0.006368,0.014112,0.014368,0.335776,0.009696
+1504,998.294,1.00171,0.626496,0.00832,0.22528,0.006176,0.005856,0.006432,0.014304,0.015808,0.3344,0.00992
+1505,985.089,1.01514,0.622592,0.009792,0.223488,0.005696,0.005792,0.007008,0.013856,0.014912,0.331808,0.01024
+1506,811.893,1.23169,1.07725,0.009408,0.227936,0.005664,0.00592,0.007072,0.013792,0.014432,0.780736,0.012288
+1507,592.678,1.68726,0.630464,0.008192,0.227328,0.006144,0.006144,0.007648,0.013952,0.014816,0.33632,0.00992
+1508,925.441,1.08057,0.629792,0.009536,0.229824,0.00592,0.006656,0.007264,0.013184,0.014496,0.333216,0.009696
+1509,966.038,1.03516,0.62176,0.008192,0.223232,0.006176,0.006112,0.00736,0.013184,0.014368,0.333536,0.0096
+1510,927.326,1.07837,0.625568,0.008992,0.225408,0.005728,0.005792,0.006912,0.014368,0.014304,0.335104,0.00896
+1511,1021.96,0.978516,0.62432,0.008704,0.227328,0.006048,0.00576,0.006624,0.014336,0.014336,0.33152,0.009664
+1512,802.036,1.24683,1.08934,0.009376,0.236384,0.006048,0.005792,0.008512,0.014304,0.01424,0.782592,0.012096
+1513,604.041,1.65552,0.63312,0.00864,0.233728,0.00576,0.00576,0.006912,0.014144,0.014528,0.333824,0.009824
+1514,939.665,1.06421,0.624224,0.009632,0.225888,0.005792,0.005824,0.008032,0.014304,0.014368,0.33056,0.009824
+1515,961.051,1.04053,0.626496,0.009408,0.225408,0.006368,0.006528,0.0064,0.014336,0.015456,0.332544,0.010048
+1516,982.726,1.01758,0.622592,0.0096,0.223904,0.006048,0.005824,0.006528,0.014336,0.014336,0.331776,0.01024
+1517,965.81,1.0354,0.619264,0.00896,0.222432,0.004896,0.006176,0.007488,0.013984,0.014592,0.330496,0.01024
+1518,713.34,1.40186,1.31027,0.00944,0.504608,0.008192,0.006144,0.007648,0.014272,0.014624,0.733056,0.012288
+1519,644.938,1.55054,0.622656,0.00864,0.223552,0.005632,0.005792,0.007008,0.014112,0.014496,0.333664,0.00976
+1520,908.809,1.10034,0.61936,0.008608,0.221632,0.006144,0.005952,0.006336,0.014336,0.015488,0.33168,0.009184
+1521,989.611,1.0105,0.62112,0.0088,0.221472,0.006048,0.00624,0.00736,0.014368,0.014528,0.332384,0.00992
+1522,923.563,1.08276,0.624416,0.00896,0.225024,0.005664,0.005056,0.007936,0.014176,0.014528,0.333344,0.009728
+1523,553.813,1.80566,1.08483,0.008576,0.261344,0.018784,0.006592,0.008064,0.013824,0.014624,0.740992,0.012032
+1524,914.898,1.09302,1.29024,0.009536,0.477888,0.008192,0.006144,0.00736,0.014432,0.014688,0.739712,0.012288
+1525,622.682,1.60596,0.626432,0.008608,0.225536,0.006144,0.0072,0.007168,0.014304,0.015392,0.332352,0.009728
+1526,795.958,1.25635,0.679744,0.009728,0.274944,0.006144,0.00576,0.006528,0.014336,0.02048,0.331776,0.010048
+1527,1094.89,0.91333,0.63024,0.008288,0.2224,0.004928,0.006144,0.007456,0.014112,0.014496,0.342592,0.009824
+1528,922.938,1.0835,0.623008,0.008608,0.22528,0.006048,0.005792,0.006592,0.014368,0.014304,0.332864,0.009152
+1529,807.571,1.23828,1.09363,0.008192,0.240736,0.005056,0.006112,0.00752,0.014048,0.014656,0.785024,0.012288
+1530,582.812,1.71582,0.624576,0.009504,0.223136,0.00496,0.006112,0.007488,0.01424,0.014688,0.334272,0.010176
+1531,602.176,1.66064,0.64512,0.008352,0.247392,0.005632,0.005024,0.008032,0.014496,0.014336,0.331776,0.01008
+1532,996.594,1.00342,0.622592,0.008192,0.223232,0.007296,0.005024,0.007904,0.013824,0.0144,0.333536,0.009184
+1533,997.808,1.0022,0.62048,0.008224,0.221088,0.005664,0.006496,0.006432,0.014272,0.014304,0.333824,0.010176
+1534,835.237,1.19727,0.641088,0.008256,0.243712,0.006144,0.006144,0.007328,0.013152,0.015616,0.331936,0.0088
+1535,577.634,1.7312,0.628576,0.0104,0.225152,0.006112,0.005888,0.00848,0.013984,0.014656,0.333824,0.01008
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..cf48805
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,694.273,1.50248,1.00773,0.00858434,0.256004,0.00597947,0.00558541,0.00730513,0.0140511,0.0149988,0.684659,0.0105582
+max_1024,1447.35,3.94177,1.99066,0.060224,0.798688,0.063584,0.021344,0.024064,0.056928,0.05584,1.69053,0.065536
+min_1024,253.693,0.690918,0.827392,0.006816,0.217952,0.004352,0.004128,0.006112,0.01232,0.012864,0.540672,0.008288
+512,472.706,2.11548,1.04211,0.008192,0.419424,0.0064,0.004288,0.008064,0.013696,0.014784,0.557344,0.00992
+513,1192.6,0.838501,0.833856,0.007808,0.23008,0.005888,0.004352,0.00784,0.01264,0.014336,0.540672,0.01024
+514,738.018,1.35498,0.885088,0.008512,0.251712,0.005696,0.00496,0.014176,0.024544,0.016128,0.550816,0.008544
+515,765.822,1.30579,1.66576,0.007136,0.243104,0.005696,0.00512,0.006144,0.014336,0.01424,1.35715,0.012832
+516,491.245,2.03564,1.15427,0.009472,0.22608,0.005792,0.005696,0.006912,0.013568,0.014496,0.85856,0.013696
+517,634.007,1.57727,0.851968,0.00816,0.239552,0.005696,0.004672,0.007776,0.012672,0.014336,0.550272,0.008832
+518,799.844,1.25024,0.832224,0.008672,0.225184,0.00448,0.006112,0.00736,0.01312,0.014368,0.543808,0.00912
+519,802.272,1.24646,0.83968,0.007168,0.226848,0.005696,0.005024,0.007168,0.013312,0.014336,0.550496,0.009632
+520,516.162,1.93738,0.84992,0.011712,0.235136,0.005056,0.006144,0.007296,0.013184,0.014336,0.546816,0.01024
+521,884.283,1.13086,1.22163,0.008192,0.22288,0.005664,0.004928,0.006144,0.014144,0.014528,0.933792,0.01136
+522,612.715,1.63208,0.841696,0.008224,0.220768,0.005696,0.006944,0.006176,0.01424,0.014432,0.555008,0.010208
+523,660.326,1.5144,0.8704,0.008224,0.251872,0.005664,0.004576,0.00768,0.0128,0.0144,0.556032,0.009152
+524,739.283,1.35266,0.875104,0.00848,0.243872,0.005696,0.004928,0.007968,0.013888,0.014624,0.565408,0.01024
+525,654.261,1.52844,1.08832,0.029504,0.450112,0.004544,0.005824,0.006464,0.014336,0.014336,0.55296,0.01024
+526,727.919,1.37378,1.02634,0.00848,0.405184,0.005984,0.004576,0.00768,0.013856,0.014528,0.555808,0.01024
+527,685.753,1.45825,0.842272,0.00784,0.227712,0.005664,0.004992,0.007424,0.013088,0.014336,0.552352,0.008864
+528,823.896,1.21375,0.833376,0.008192,0.222624,0.005824,0.005024,0.007616,0.012864,0.014336,0.546816,0.01008
+529,835.918,1.19629,1.21802,0.008224,0.226976,0.005664,0.004896,0.008032,0.013536,0.014368,0.922528,0.013792
+530,537.392,1.86084,0.837792,0.008416,0.224928,0.005664,0.004928,0.007936,0.013696,0.014592,0.547456,0.010176
+531,798.674,1.25208,1.02016,0.007808,0.412,0.005728,0.0048,0.007456,0.014048,0.014688,0.543392,0.01024
+532,659.847,1.5155,0.839616,0.008192,0.220896,0.005696,0.004928,0.008096,0.014336,0.013824,0.553472,0.010176
+533,864.956,1.15613,0.84592,0.008192,0.221184,0.005728,0.004512,0.008192,0.013728,0.014816,0.559232,0.010336
+534,547.264,1.82727,0.897568,0.008576,0.25536,0.005056,0.006112,0.007296,0.021376,0.03072,0.55296,0.010112
+535,615.385,1.625,0.865088,0.010752,0.250176,0.006144,0.00544,0.006848,0.014272,0.0144,0.548096,0.00896
+536,739.684,1.35193,0.853792,0.008224,0.231136,0.005696,0.004928,0.008064,0.014048,0.014624,0.557056,0.010016
+537,776.861,1.28723,0.8336,0.007808,0.221344,0.005696,0.004832,0.007392,0.01312,0.014304,0.54992,0.009184
+538,816.831,1.22424,0.835584,0.00928,0.22144,0.004928,0.006016,0.008064,0.01392,0.014432,0.547264,0.01024
+539,805.031,1.24219,1.47866,0.008,0.455488,0.024704,0.00592,0.00624,0.014336,0.015456,0.937984,0.010528
+540,519.698,1.92419,1.1465,0.00848,0.2224,0.004928,0.006144,0.007296,0.013216,0.014304,0.855776,0.013952
+541,634.547,1.57593,0.837632,0.008128,0.221472,0.004928,0.006016,0.006176,0.014304,0.014336,0.552768,0.009504
+542,813.748,1.22888,0.835616,0.009248,0.221472,0.004928,0.006016,0.007648,0.014208,0.01472,0.547104,0.010272
+543,786.558,1.27136,0.827392,0.008192,0.222944,0.005728,0.0048,0.0072,0.013312,0.014304,0.541952,0.00896
+544,712.596,1.40332,1.5089,0.008256,0.489408,0.007712,0.004576,0.007584,0.014144,0.014368,0.9512,0.011648
+545,565.512,1.76831,1.22538,0.008096,0.236288,0.005184,0.005184,0.007776,0.012672,0.01536,0.924288,0.010528
+546,614.554,1.6272,0.832064,0.008544,0.221376,0.006144,0.006048,0.00768,0.012896,0.014464,0.545824,0.009088
+547,821.83,1.2168,0.82912,0.008192,0.219168,0.006144,0.00528,0.007008,0.013536,0.014272,0.545632,0.009888
+548,783.399,1.27649,1.20624,0.008256,0.223232,0.006144,0.005792,0.006496,0.014112,0.014304,0.913664,0.01424
+549,539.409,1.85388,0.838208,0.008032,0.22192,0.006144,0.005408,0.00688,0.014176,0.014528,0.552064,0.009056
+550,814.638,1.22754,1.02669,0.008128,0.410016,0.005696,0.004928,0.007904,0.01408,0.01408,0.553056,0.0088
+551,712.72,1.40308,0.827456,0.008192,0.220384,0.004896,0.006048,0.00624,0.01408,0.014144,0.544928,0.008544
+552,782.501,1.27795,0.833984,0.008608,0.22064,0.005696,0.005088,0.008192,0.013888,0.01456,0.548448,0.008864
+553,796.113,1.2561,1.20192,0.00784,0.223296,0.005696,0.004832,0.007392,0.013088,0.014336,0.91136,0.01408
+554,527.088,1.89722,0.837664,0.008192,0.225024,0.005696,0.004928,0.008064,0.01392,0.014336,0.548704,0.0088
+555,738.284,1.35449,1.02397,0.007808,0.411712,0.005696,0.004896,0.00736,0.014784,0.01456,0.546976,0.010176
+556,708.528,1.41138,0.83136,0.008544,0.21936,0.006144,0.00608,0.007488,0.013056,0.0144,0.546624,0.009664
+557,831.506,1.20264,0.851552,0.008064,0.219264,0.006048,0.005984,0.0064,0.014368,0.014304,0.567296,0.009824
+558,748.401,1.33618,1.66176,0.008544,0.2272,0.004928,0.00592,0.00768,0.0128,0.015552,1.36685,0.012288
+559,486.547,2.0553,0.830592,0.008192,0.221184,0.006144,0.005664,0.006624,0.013824,0.0144,0.544832,0.009728
+560,713.838,1.40088,0.84176,0.009408,0.219968,0.006176,0.00736,0.006944,0.013728,0.014592,0.55488,0.008704
+561,776.64,1.2876,0.831488,0.008032,0.219296,0.006144,0.005312,0.006944,0.013344,0.014368,0.548992,0.009056
+562,820.842,1.21826,0.8328,0.008224,0.219104,0.005696,0.006592,0.007488,0.012992,0.015392,0.547552,0.00976
+563,742.702,1.34644,1.55037,0.008192,0.466848,0.063584,0.00592,0.006368,0.01552,0.014624,0.960448,0.008864
+564,527.767,1.89478,1.15456,0.008416,0.22528,0.005728,0.00656,0.007584,0.012896,0.014336,0.859872,0.013888
+565,599.356,1.66846,0.839872,0.007872,0.229888,0.006144,0.005504,0.006784,0.013888,0.014784,0.546432,0.008576
+566,847.858,1.17944,0.842912,0.009408,0.222016,0.006144,0.006144,0.007968,0.0136,0.01456,0.553248,0.009824
+567,815.53,1.2262,0.84336,0.008192,0.226784,0.005664,0.00512,0.006176,0.013952,0.0144,0.553248,0.009824
+568,516.682,1.93542,0.846144,0.010816,0.226816,0.004928,0.006016,0.006176,0.014336,0.014336,0.552832,0.009888
+569,777.23,1.28662,1.28522,0.008192,0.270336,0.005728,0.004512,0.008192,0.013568,0.023328,0.94,0.01136
+570,610.296,1.63855,0.833536,0.008192,0.221184,0.005792,0.005696,0.00688,0.01344,0.014496,0.547616,0.01024
+571,819.036,1.22095,0.843392,0.007808,0.21968,0.006144,0.00544,0.006848,0.013536,0.014432,0.559712,0.009792
+572,789.971,1.26587,1.70323,0.008192,0.224352,0.005056,0.006272,0.007872,0.013728,0.014848,1.41094,0.011968
+573,463.322,2.15833,0.83792,0.008128,0.221056,0.004928,0.005888,0.0064,0.014272,0.014368,0.55296,0.00992
+574,704.022,1.42041,0.84384,0.008192,0.221184,0.006176,0.005792,0.006464,0.013984,0.014272,0.558944,0.008832
+575,583.102,1.71497,0.895072,0.008192,0.25808,0.006112,0.02048,0.007456,0.013024,0.014336,0.558592,0.0088
+576,952.558,1.0498,0.87216,0.008704,0.247808,0.005728,0.004928,0.009152,0.013152,0.014336,0.558592,0.00976
+577,519.204,1.92603,0.84192,0.010784,0.224544,0.005024,0.005984,0.006304,0.014336,0.014336,0.55088,0.009728
+578,782.725,1.27759,1.26381,0.008384,0.239264,0.005696,0.006208,0.00688,0.014336,0.014336,0.958464,0.01024
+579,610.023,1.63928,0.837632,0.008192,0.220928,0.005696,0.0048,0.007648,0.012832,0.014336,0.554272,0.008928
+580,818.055,1.22241,0.834976,0.009312,0.220064,0.006144,0.006144,0.006144,0.014336,0.014368,0.548832,0.009632
+581,792.263,1.26221,0.848416,0.00784,0.235456,0.005056,0.00528,0.007008,0.013728,0.014592,0.549216,0.01024
+582,524.087,1.90808,0.847296,0.011648,0.22592,0.006144,0.006144,0.006336,0.014144,0.014336,0.55296,0.009664
+583,821.006,1.21802,1.0313,0.008192,0.411648,0.006144,0.005152,0.007104,0.014304,0.014432,0.554688,0.009632
+584,707.182,1.41406,0.838144,0.008672,0.221024,0.005664,0.005952,0.007008,0.013664,0.014368,0.552704,0.009088
+585,757.677,1.31982,0.863584,0.007776,0.237472,0.006656,0.005376,0.006912,0.013728,0.027264,0.548832,0.009568
+586,732.475,1.36523,1.22128,0.008736,0.239584,0.005664,0.00496,0.007872,0.01408,0.014304,0.91296,0.01312
+587,577.227,1.73242,0.856384,0.007936,0.244288,0.005728,0.004512,0.00768,0.013856,0.014592,0.547552,0.01024
+588,769.708,1.29919,1.04448,0.009376,0.41456,0.006144,0.005152,0.007136,0.014272,0.0144,0.564448,0.008992
+589,702.633,1.42322,0.83568,0.00784,0.220672,0.005056,0.00576,0.006528,0.014016,0.014592,0.55248,0.008736
+590,832.351,1.20142,0.834368,0.00864,0.21952,0.006144,0.006144,0.007968,0.012512,0.015744,0.547456,0.01024
+591,768.985,1.30042,1.66909,0.008192,0.226912,0.005696,0.00496,0.007264,0.013216,0.014336,1.37622,0.012288
+592,485.193,2.06104,0.84784,0.00848,0.22112,0.005696,0.00704,0.007808,0.012672,0.014336,0.560736,0.009952
+593,712.038,1.40442,0.835232,0.008192,0.221184,0.006144,0.005408,0.00688,0.013536,0.01488,0.54912,0.009888
+594,779.152,1.28345,0.837632,0.008224,0.222336,0.00496,0.005952,0.006336,0.014272,0.0144,0.550912,0.01024
+595,799.453,1.25085,0.845824,0.008192,0.223264,0.006016,0.00528,0.007104,0.0136,0.014304,0.559328,0.008736
+596,755.023,1.32446,1.48573,0.00864,0.462976,0.02288,0.005312,0.006944,0.014336,0.014336,0.939968,0.010336
+597,529.473,1.88867,1.16262,0.008192,0.226848,0.005696,0.005056,0.006112,0.014336,0.014336,0.868352,0.013696
+598,645.243,1.5498,0.84,0.008512,0.219136,0.006144,0.007168,0.007104,0.013632,0.014656,0.553408,0.01024
+599,823.731,1.21399,0.856576,0.00816,0.219424,0.005696,0.0048,0.007232,0.013248,0.014336,0.574784,0.008896
+600,806.776,1.2395,0.852288,0.008608,0.235936,0.005696,0.005696,0.007072,0.013984,0.014592,0.551008,0.009696
+601,747.718,1.3374,1.4912,0.007776,0.47376,0.009344,0.004992,0.007264,0.014944,0.014688,0.948192,0.01024
+602,543.958,1.83838,1.23264,0.009632,0.219744,0.006144,0.0072,0.007104,0.013568,0.014624,0.942592,0.012032
+603,625.439,1.59888,0.83648,0.008192,0.22208,0.007584,0.004704,0.00752,0.01296,0.014336,0.548864,0.01024
+604,776.419,1.28796,0.83856,0.008512,0.219744,0.00576,0.005664,0.007008,0.013504,0.014336,0.555072,0.00896
+605,785.126,1.27368,1.19923,0.008096,0.22128,0.006144,0.0056,0.006688,0.013792,0.014816,0.909216,0.0136
+606,402.2,2.48633,0.860192,0.009248,0.225568,0.004928,0.007392,0.006816,0.013824,0.029152,0.554144,0.00912
+607,780.488,1.28125,1.04739,0.00704,0.430048,0.005856,0.005728,0.006848,0.014336,0.014368,0.553952,0.009216
+608,939.881,1.06396,0.831712,0.008352,0.220992,0.005696,0.004896,0.007712,0.013728,0.014656,0.54544,0.01024
+609,813.182,1.22974,0.846016,0.006912,0.223232,0.006112,0.005696,0.006592,0.013856,0.014656,0.559264,0.009696
+610,791.498,1.26343,1.67632,0.008192,0.227136,0.005696,0.004928,0.007872,0.012416,0.01536,1.38138,0.013344
+611,478.169,2.09131,0.8568,0.00688,0.222976,0.005632,0.004864,0.007264,0.013216,0.014368,0.57136,0.01024
+612,689.969,1.44934,0.84176,0.008192,0.223232,0.006144,0.006144,0.00768,0.01408,0.014368,0.551648,0.010272
+613,775.244,1.28992,0.841696,0.007808,0.220928,0.00496,0.005984,0.006304,0.014336,0.014336,0.557056,0.009984
+614,840.809,1.18933,0.851232,0.008192,0.221184,0.006112,0.006176,0.008,0.013504,0.014752,0.563456,0.009856
+615,679.214,1.47229,1.05248,0.018208,0.422816,0.005952,0.004288,0.007968,0.014464,0.014464,0.554944,0.009376
+616,669.281,1.49414,0.844896,0.009344,0.222016,0.005696,0.005664,0.007104,0.013664,0.014624,0.557056,0.009728
+617,641.855,1.55798,0.849664,0.008192,0.219136,0.006144,0.006144,0.007584,0.012896,0.015424,0.56416,0.009984
+618,814.8,1.22729,0.856832,0.008512,0.235968,0.006144,0.006144,0.006176,0.014304,0.014336,0.556096,0.009152
+619,719.796,1.38928,0.851968,0.008192,0.224768,0.00592,0.004864,0.007744,0.012704,0.022528,0.555008,0.01024
+620,829.15,1.20605,1.4896,0.008448,0.475296,0.006432,0.006176,0.00752,0.01424,0.014592,0.946592,0.010304
+621,547.703,1.82581,1.16736,0.008192,0.224448,0.00496,0.006016,0.00624,0.014368,0.014304,0.87568,0.013152
+622,622.587,1.6062,0.852064,0.008512,0.21936,0.005888,0.004576,0.007424,0.012832,0.015744,0.567936,0.009792
+623,798.052,1.25305,0.843584,0.008192,0.219136,0.006144,0.006144,0.007904,0.013696,0.01456,0.55776,0.010048
+624,821.089,1.2179,0.84928,0.009536,0.221888,0.006176,0.006112,0.008,0.013632,0.0144,0.559936,0.0096
+625,507.968,1.96863,0.849504,0.01024,0.22528,0.006144,0.005472,0.006816,0.013952,0.014656,0.55712,0.009824
+626,808.687,1.23657,1.07501,0.00928,0.454944,0.004768,0.005568,0.00672,0.014336,0.014368,0.555008,0.010016
+627,673.684,1.48438,0.861504,0.008224,0.220832,0.00576,0.006016,0.006976,0.01376,0.014816,0.575424,0.009696
+628,795.34,1.25732,0.835296,0.008416,0.219136,0.006144,0.005824,0.007584,0.013216,0.014336,0.550912,0.009728
+629,790.581,1.26489,1.2311,0.007872,0.231168,0.004928,0.005888,0.0064,0.014304,0.014336,0.93184,0.014368
+630,531.741,1.88062,0.851456,0.00928,0.22384,0.005952,0.006688,0.00736,0.01312,0.014336,0.561152,0.009728
+631,786.86,1.27087,1.02605,0.008192,0.4096,0.006144,0.005248,0.00704,0.014016,0.014656,0.552576,0.008576
+632,692.009,1.44507,0.840192,0.008704,0.219424,0.005696,0.004896,0.008,0.01376,0.014336,0.555584,0.009792
+633,824.062,1.2135,0.842496,0.006976,0.220672,0.005696,0.006016,0.007104,0.01232,0.014336,0.560128,0.009248
+634,752.319,1.32922,1.68531,0.008576,0.227776,0.005824,0.005664,0.006912,0.01376,0.014496,1.38899,0.013312
+635,484.218,2.06519,0.83424,0.008288,0.221056,0.00496,0.006016,0.0072,0.01328,0.014336,0.550208,0.008896
+636,701.49,1.42554,0.843488,0.008192,0.222848,0.005664,0.006976,0.006176,0.014336,0.014336,0.555008,0.009952
+637,784.524,1.27466,0.83504,0.008224,0.219104,0.006144,0.005344,0.006944,0.01392,0.014752,0.55088,0.009728
+638,800.391,1.24939,0.8472,0.00832,0.22032,0.00496,0.00768,0.006656,0.01408,0.01456,0.561184,0.00944
+639,794.183,1.25916,1.71917,0.00704,0.22528,0.006144,0.005312,0.006976,0.013664,0.01424,1.41699,0.02352
+640,413.926,2.41589,1.26013,0.008608,0.264832,0.005888,0.005696,0.006816,0.01424,0.014432,0.927776,0.01184
+641,620.089,1.61267,0.846752,0.00816,0.222144,0.005856,0.004384,0.00784,0.012832,0.01552,0.559776,0.01024
+642,811.652,1.23206,0.838944,0.0096,0.219776,0.006048,0.005696,0.006688,0.014208,0.014464,0.552864,0.0096
+643,765.822,1.30579,1.23315,0.007872,0.225888,0.005952,0.004256,0.007776,0.012704,0.030304,0.925408,0.012992
+644,538.628,1.85657,0.844064,0.008416,0.222464,0.00496,0.007872,0.006368,0.014336,0.014368,0.556448,0.008832
+645,813.425,1.22937,1.04016,0.008192,0.4096,0.00592,0.004352,0.007904,0.014368,0.01456,0.565248,0.010016
+646,681.361,1.46765,0.845696,0.009504,0.219904,0.006112,0.005664,0.006624,0.013984,0.014432,0.55936,0.010112
+647,811.812,1.23181,0.848576,0.00832,0.219808,0.006144,0.005248,0.00704,0.0136,0.014592,0.56368,0.010144
+648,788.526,1.26819,1.67789,0.008576,0.223424,0.005856,0.005696,0.00688,0.013952,0.014688,1.38643,0.012384
+649,474.129,2.10913,0.84944,0.008224,0.223104,0.005664,0.004672,0.007584,0.012896,0.014336,0.5632,0.00976
+650,658.256,1.51917,0.851776,0.00864,0.22704,0.005696,0.004928,0.008096,0.013952,0.014496,0.559296,0.009632
+651,807.173,1.23889,0.837824,0.007744,0.219776,0.005984,0.00528,0.007072,0.014432,0.014336,0.55296,0.01024
+652,826.223,1.21033,0.842912,0.008288,0.222848,0.005728,0.004928,0.007648,0.013888,0.014944,0.555008,0.009632
+653,786.18,1.27197,1.48285,0.008064,0.452832,0.025728,0.004992,0.00736,0.014528,0.01424,0.944864,0.01024
+654,514.411,1.94397,1.1585,0.00944,0.221984,0.005984,0.005504,0.006944,0.013504,0.01488,0.866592,0.013664
+655,642.611,1.55615,0.836832,0.008192,0.219136,0.006176,0.005248,0.007008,0.013504,0.01456,0.553248,0.00976
+656,804.241,1.24341,0.8448,0.009376,0.217952,0.006144,0.007456,0.00688,0.013856,0.014592,0.55904,0.009504
+657,811.25,1.23267,0.849984,0.008224,0.225088,0.005696,0.004736,0.006144,0.014336,0.014304,0.561184,0.010272
+658,464.715,2.15186,0.86016,0.011328,0.22624,0.005792,0.005696,0.00816,0.01312,0.014336,0.565248,0.01024
+659,818.055,1.22241,1.03024,0.00768,0.414368,0.00576,0.00448,0.007776,0.0144,0.014304,0.551296,0.010176
+660,704.385,1.41968,0.840864,0.009216,0.22016,0.0056,0.00464,0.007712,0.012768,0.014336,0.556896,0.009536
+661,253.693,3.94177,1.43411,0.006944,0.798688,0.006144,0.005696,0.006592,0.014208,0.014464,0.571392,0.009984
+662,1042.37,0.959351,1.97808,0.008544,0.260416,0.006016,0.005792,0.006624,0.014336,0.025952,1.63517,0.015232
+663,428.183,2.33545,0.866304,0.008192,0.247456,0.006144,0.004448,0.007776,0.013792,0.014464,0.555552,0.00848
+664,671.641,1.48889,0.847872,0.008192,0.223136,0.005696,0.005696,0.007104,0.01376,0.014752,0.561056,0.00848
+665,684.149,1.46167,1.66093,0.008192,0.23616,0.006144,0.005568,0.00672,0.013824,0.014336,1.35763,0.012352
+666,495.974,2.01624,1.28707,0.008544,0.268864,0.00576,0.005696,0.006976,0.013728,0.014784,0.950432,0.012288
+667,625.344,1.59912,0.856256,0.00784,0.231104,0.00496,0.005888,0.0064,0.014304,0.014336,0.561248,0.010176
+668,896.476,1.11548,0.854752,0.008544,0.229024,0.004896,0.006112,0.007296,0.013184,0.014496,0.560992,0.010208
+669,645.904,1.54822,0.8704,0.008,0.24976,0.005696,0.004832,0.007456,0.013024,0.014336,0.558368,0.008928
+670,464.083,2.15479,0.894144,0.011584,0.258752,0.005952,0.005696,0.006784,0.014112,0.01456,0.567008,0.009696
+671,766.037,1.30542,1.08787,0.007136,0.444416,0.006144,0.00528,0.007008,0.014336,0.014336,0.579584,0.009632
+672,753.773,1.32666,0.86896,0.008576,0.235744,0.006144,0.006144,0.007168,0.013312,0.015552,0.567616,0.008704
+673,1107.63,0.902832,0.851168,0.008192,0.235136,0.005696,0.00496,0.00752,0.012928,0.014368,0.552736,0.009632
+674,740.085,1.3512,0.873184,0.00864,0.247136,0.00512,0.006176,0.007232,0.013216,0.014304,0.561184,0.010176
+675,521.219,1.91858,0.882528,0.010496,0.256,0.006144,0.0056,0.006688,0.01376,0.01488,0.559136,0.009824
+676,721.444,1.38611,0.849664,0.008192,0.231424,0.006176,0.006112,0.007232,0.013248,0.014336,0.552992,0.009952
+677,803.61,1.24438,0.863392,0.00784,0.223584,0.006176,0.005472,0.006784,0.014016,0.014656,0.57536,0.009504
+678,795.803,1.25659,0.847328,0.008224,0.223232,0.006144,0.005888,0.0064,0.014016,0.014688,0.559072,0.009664
+679,409.211,2.44373,1.64461,0.007872,0.225664,0.00608,0.004288,0.007968,0.012576,0.015168,1.3527,0.012288
+680,560.328,1.78467,1.29446,0.00832,0.251904,0.005888,0.005728,0.006816,0.014368,0.015424,0.973728,0.012288
+681,1154.45,0.866211,0.88368,0.008288,0.258848,0.005952,0.004416,0.00816,0.014368,0.014304,0.559104,0.01024
+682,767.616,1.30273,0.850976,0.008256,0.227264,0.006144,0.005792,0.006496,0.014336,0.014336,0.558656,0.009696
+683,777.968,1.2854,0.881248,0.00688,0.23552,0.006144,0.005632,0.006656,0.013984,0.014592,0.581728,0.010112
+684,522.716,1.91309,0.858528,0.010656,0.229216,0.005696,0.004928,0.007968,0.014272,0.0144,0.562592,0.0088
+685,767.472,1.30298,1.06614,0.008192,0.44032,0.00576,0.00448,0.007616,0.014304,0.01488,0.561088,0.009504
+686,705.234,1.41797,0.853024,0.008192,0.22736,0.006112,0.005696,0.006592,0.013888,0.014336,0.561248,0.0096
+687,793.952,1.25952,0.859232,0.008192,0.223232,0.006016,0.004288,0.00736,0.013056,0.014336,0.573024,0.009728
+688,761.976,1.31238,1.20832,0.009376,0.226016,0.005696,0.005696,0.007072,0.014048,0.014496,0.911584,0.014336
+689,541.763,1.84583,0.85136,0.009248,0.224224,0.005888,0.004352,0.007872,0.012672,0.014432,0.56304,0.009632
+690,812.054,1.23145,1.06278,0.00848,0.438272,0.006176,0.006112,0.007168,0.013312,0.014336,0.559104,0.009824
+691,614.139,1.6283,0.84672,0.00704,0.229376,0.006016,0.004288,0.00784,0.012576,0.014336,0.555008,0.01024
+692,911.539,1.09705,0.86016,0.008192,0.22736,0.006112,0.007296,0.00704,0.014144,0.01424,0.566976,0.0088
+693,793.645,1.26001,1.20218,0.008192,0.22464,0.00496,0.00592,0.006144,0.014336,0.014368,0.911232,0.012384
+694,553.513,1.80664,0.868352,0.008192,0.22736,0.006112,0.006016,0.006272,0.014176,0.014528,0.575456,0.01024
+695,685.466,1.45886,0.858016,0.008192,0.221184,0.006144,0.005696,0.006592,0.014016,0.014656,0.571392,0.010144
+696,789.438,1.26672,0.851136,0.008192,0.223232,0.005664,0.004576,0.00784,0.01264,0.014464,0.564928,0.0096
+697,820.431,1.21887,0.843872,0.00784,0.221024,0.006752,0.005344,0.006944,0.013888,0.014432,0.557408,0.01024
+698,758.8,1.31787,1.67254,0.008224,0.228768,0.004928,0.005952,0.007552,0.012896,0.014336,1.37731,0.012576
+699,481.656,2.07617,0.890912,0.00784,0.219968,0.006016,0.004288,0.00784,0.013664,0.014624,0.60688,0.009792
+700,653.895,1.5293,0.850528,0.008576,0.222848,0.004928,0.007424,0.006816,0.013888,0.01456,0.561376,0.010112
+701,796.655,1.25525,0.86784,0.007968,0.221408,0.006144,0.005696,0.006592,0.01408,0.014464,0.56656,0.024928
+702,700.051,1.42847,0.880672,0.00864,0.258144,0.005824,0.005696,0.00688,0.013888,0.014464,0.557376,0.00976
+703,820.677,1.21851,1.45232,0.007072,0.44032,0.008192,0.00528,0.007008,0.014336,0.014336,0.944128,0.011648
+704,481.599,2.07642,1.28045,0.008544,0.225376,0.00592,0.005696,0.006816,0.013408,0.01472,0.989728,0.01024
+705,664.396,1.50513,0.846272,0.008192,0.221472,0.005664,0.004736,0.006144,0.014336,0.014336,0.56224,0.009152
+706,804.557,1.24292,0.845856,0.008544,0.219264,0.005664,0.006816,0.006208,0.014272,0.014336,0.56096,0.009792
+707,803.689,1.24426,1.19757,0.008192,0.227328,0.005696,0.004576,0.007808,0.013792,0.014496,0.901856,0.013824
+708,531.43,1.88171,0.841728,0.008192,0.223232,0.005728,0.005696,0.007008,0.013824,0.014112,0.553696,0.01024
+709,774.804,1.29065,1.1007,0.060224,0.413696,0.005824,0.004416,0.007808,0.01456,0.0144,0.571008,0.008768
+710,677.193,1.47668,0.85792,0.009408,0.222016,0.005664,0.004736,0.007712,0.012608,0.014432,0.571296,0.010048
+711,808.527,1.23682,0.845824,0.007872,0.219456,0.006176,0.005472,0.006784,0.014048,0.014464,0.561312,0.01024
+712,743.646,1.34473,1.22118,0.008768,0.235488,0.005696,0.005696,0.007072,0.013632,0.014592,0.916928,0.013312
+713,554.3,1.80408,0.858464,0.007936,0.22992,0.005856,0.004384,0.007904,0.013632,0.015328,0.564672,0.008832
+714,703.659,1.42114,0.8544,0.008224,0.22304,0.005664,0.00512,0.007872,0.013632,0.014752,0.567168,0.008928
+715,787.541,1.26978,0.847872,0.008224,0.221152,0.006144,0.00592,0.006368,0.014144,0.014432,0.562272,0.009216
+716,850.498,1.17578,0.8528,0.008544,0.221408,0.005728,0.0048,0.007584,0.014304,0.014464,0.56576,0.010208
+717,729.215,1.37134,1.64112,0.008224,0.221824,0.005856,0.004416,0.007936,0.012512,0.015424,1.35264,0.012288
+718,490.099,2.04041,0.90176,0.008448,0.225664,0.006112,0.006176,0.007328,0.013152,0.014368,0.610272,0.01024
+719,666.07,1.50134,0.845856,0.008192,0.223008,0.005664,0.0048,0.006144,0.014336,0.014336,0.56016,0.009216
+720,779.893,1.28223,0.851584,0.008608,0.219264,0.006144,0.005888,0.0064,0.014336,0.014336,0.566976,0.009632
+721,773.706,1.29248,0.868736,0.008192,0.243904,0.005664,0.004768,0.008064,0.0136,0.014528,0.559776,0.01024
+722,541.262,1.84753,0.862208,0.011744,0.22992,0.006144,0.006112,0.006368,0.014144,0.014336,0.564512,0.008928
+723,747.445,1.33789,1.27926,0.008192,0.226304,0.00512,0.005696,0.014816,0.014304,0.014336,0.976896,0.0136
+724,608.347,1.6438,0.851872,0.008224,0.221184,0.006144,0.007264,0.007072,0.014336,0.014368,0.563168,0.010112
+725,828.311,1.20728,0.84992,0.008192,0.221184,0.006144,0.005408,0.00688,0.013728,0.014496,0.565088,0.0088
+726,705.416,1.4176,1.20592,0.008448,0.227104,0.005696,0.00496,0.007872,0.012448,0.014336,0.91136,0.013696
+727,569.403,1.75623,0.865568,0.008192,0.22256,0.005952,0.00496,0.007968,0.012512,0.015616,0.577984,0.009824
+728,788.526,1.26819,1.0656,0.008576,0.432128,0.005664,0.004832,0.007424,0.013088,0.014368,0.570496,0.009024
+729,668.353,1.49622,0.850464,0.007808,0.219904,0.006144,0.00528,0.007008,0.013664,0.014496,0.567328,0.008832
+730,797.663,1.25366,0.856064,0.008192,0.221184,0.006144,0.006144,0.007904,0.012768,0.014176,0.570656,0.008896
+731,812.618,1.23059,1.22554,0.007008,0.2272,0.005696,0.00464,0.008032,0.013632,0.014784,0.932224,0.01232
+732,519.632,1.92444,0.858464,0.008576,0.2256,0.006112,0.005952,0.006336,0.014336,0.014336,0.567296,0.00992
+733,698.618,1.4314,0.862336,0.008,0.222912,0.004928,0.00592,0.006144,0.014272,0.0144,0.576608,0.009152
+734,652.645,1.53223,0.930144,0.017888,0.267232,0.006112,0.006112,0.006176,0.02384,0.029408,0.5632,0.010176
+735,813.99,1.22852,0.879232,0.00816,0.224992,0.005088,0.00576,0.02,0.01312,0.015424,0.577824,0.008864
+736,796.345,1.25574,1.47866,0.008192,0.452608,0.007424,0.004864,0.007424,0.014272,0.014496,0.959104,0.010272
+737,535.425,1.86768,0.905632,0.007808,0.22208,0.005792,0.005696,0.006944,0.013504,0.01456,0.619104,0.010144
+738,647.743,1.54382,0.855008,0.00864,0.221728,0.006112,0.006048,0.006336,0.014272,0.014304,0.567296,0.010272
+739,812.215,1.2312,0.857856,0.008192,0.22112,0.005696,0.004608,0.00784,0.01264,0.015648,0.572128,0.009984
+740,758.308,1.31873,0.888832,0.009344,0.245952,0.00496,0.005984,0.007456,0.013024,0.014336,0.577536,0.01024
+741,560.673,1.78357,0.87152,0.01024,0.22896,0.005728,0.004928,0.007328,0.013152,0.014336,0.57728,0.009568
+742,775.684,1.28918,1.23984,0.008608,0.221376,0.005696,0.006464,0.006464,0.014336,0.014336,0.950272,0.012288
+743,605.201,1.65234,0.843776,0.008224,0.220448,0.004928,0.006016,0.006144,0.01424,0.014464,0.559072,0.01024
+744,829.99,1.20483,0.852,0.008192,0.221184,0.006144,0.005376,0.006912,0.013888,0.01472,0.567296,0.008288
+745,713.713,1.40112,0.870336,0.008448,0.233632,0.005728,0.004736,0.00736,0.01312,0.014336,0.57344,0.009536
+746,597.651,1.67322,0.865728,0.0104,0.22496,0.004416,0.005984,0.007584,0.012896,0.014336,0.575488,0.009664
+747,766.969,1.30383,1.32189,0.008288,0.289472,0.006144,0.004288,0.007776,0.019712,0.014848,0.96208,0.00928
+748,591.437,1.6908,0.855776,0.009344,0.221312,0.00496,0.006048,0.007808,0.012672,0.015648,0.568032,0.009952
+749,798.674,1.25208,0.839936,0.007808,0.219776,0.006144,0.005184,0.006976,0.013472,0.0144,0.555936,0.01024
+750,811.089,1.23291,1.21798,0.008192,0.226592,0.004928,0.007936,0.006304,0.014368,0.014304,0.9216,0.01376
+751,522.316,1.91455,0.849984,0.008192,0.222496,0.004928,0.005856,0.006368,0.01424,0.0144,0.564448,0.009056
+752,723.419,1.38232,0.856512,0.008384,0.219584,0.006144,0.006048,0.00624,0.014336,0.014304,0.571424,0.010048
+753,805.269,1.24182,0.855872,0.006912,0.221152,0.005696,0.005696,0.007072,0.013632,0.014848,0.57136,0.009504
+754,773.998,1.29199,0.858176,0.008352,0.224128,0.005088,0.007328,0.007008,0.013536,0.0144,0.56928,0.009056
+755,774.73,1.29077,1.53258,0.006816,0.493248,0.022432,0.004512,0.007744,0.014432,0.014208,0.95872,0.010464
+756,473.499,2.11194,0.90992,0.008544,0.23168,0.005984,0.005664,0.006784,0.013504,0.015008,0.613696,0.009056
+757,669.336,1.49402,0.847072,0.008192,0.222368,0.00496,0.005856,0.006432,0.014304,0.01424,0.561088,0.009632
+758,801.722,1.24731,0.849888,0.008352,0.221152,0.005728,0.006368,0.006368,0.014048,0.014624,0.5632,0.010048
+759,744.389,1.34338,0.880096,0.008192,0.246176,0.006112,0.004256,0.008,0.014304,0.014368,0.569152,0.009536
+760,498.024,2.00793,0.865024,0.010944,0.226688,0.004928,0.005952,0.007456,0.013024,0.015424,0.571808,0.0088
+761,760.631,1.3147,1.31942,0.008192,0.301216,0.004928,0.005888,0.006304,0.01424,0.014432,0.953632,0.010592
+762,603.018,1.65833,0.856608,0.00864,0.2224,0.006208,0.00496,0.007872,0.012608,0.015392,0.569728,0.0088
+763,780.19,1.28174,0.848896,0.007168,0.223232,0.006144,0.0056,0.006688,0.013728,0.014688,0.561408,0.01024
+764,791.727,1.26306,1.69165,0.008192,0.224352,0.005024,0.006144,0.007296,0.013184,0.015456,1.39971,0.012288
+765,477.974,2.09216,0.876544,0.008192,0.22496,0.005664,0.004896,0.007968,0.012576,0.015424,0.572192,0.024672
+766,622.398,1.60669,0.87024,0.00848,0.231616,0.005696,0.004928,0.007872,0.01264,0.015328,0.573952,0.009728
+767,808.527,1.23682,0.844192,0.007808,0.219904,0.005888,0.004352,0.007968,0.012512,0.014336,0.561152,0.010272
+768,828.479,1.20703,0.848096,0.008416,0.221184,0.005824,0.005504,0.007104,0.013472,0.014464,0.563616,0.008512
+769,759.362,1.31689,1.48643,0.008192,0.456704,0.008096,0.004288,0.007968,0.014432,0.014368,0.960512,0.011872
+770,528.857,1.89087,1.24947,0.00848,0.223168,0.005664,0.006688,0.007488,0.012992,0.01536,0.956896,0.012736
+771,623.772,1.60315,0.8544,0.006912,0.225024,0.005664,0.004736,0.00624,0.01424,0.014432,0.567296,0.009856
+772,768.913,1.30054,0.857856,0.008384,0.221216,0.006112,0.006144,0.008128,0.013696,0.014624,0.56976,0.009792
+773,781.381,1.27979,1.20957,0.008192,0.223232,0.006144,0.005248,0.00704,0.0136,0.014432,0.918144,0.013536
+774,534.377,1.87134,0.864,0.008448,0.223232,0.006144,0.007712,0.006624,0.014016,0.014336,0.573632,0.009856
+775,779.448,1.28296,1.09357,0.008192,0.454656,0.006144,0.005344,0.006944,0.014368,0.015392,0.572352,0.010176
+776,685.925,1.45789,0.853888,0.008608,0.22048,0.004928,0.007552,0.006656,0.013824,0.01456,0.567488,0.009792
+777,721.762,1.3855,0.8704,0.009536,0.243968,0.005664,0.005024,0.007264,0.013216,0.014336,0.561152,0.01024
+778,780.711,1.28088,1.22221,0.008256,0.229376,0.006144,0.005856,0.006432,0.013888,0.014304,0.924128,0.013824
+779,544.391,1.83691,0.852704,0.007936,0.222144,0.006144,0.005504,0.006784,0.014304,0.014336,0.56528,0.010272
+780,671.31,1.48962,0.848192,0.00848,0.221184,0.005984,0.005696,0.006752,0.013856,0.012864,0.564576,0.0088
+781,839.602,1.19104,0.864256,0.008096,0.22032,0.005056,0.005952,0.007392,0.013312,0.014304,0.58064,0.009184
+782,768.048,1.302,0.858752,0.008512,0.223552,0.006144,0.006144,0.007808,0.013696,0.014336,0.569344,0.009216
+783,787.692,1.26953,1.67674,0.008192,0.222816,0.005696,0.004992,0.007232,0.013216,0.014336,1.38787,0.012384
+784,491.953,2.03271,0.896288,0.008192,0.223232,0.005696,0.0048,0.007872,0.013696,0.014592,0.608352,0.009856
+785,643.014,1.55518,0.854016,0.008192,0.221184,0.00592,0.00432,0.007808,0.012736,0.015584,0.569408,0.008864
+786,802.901,1.24548,0.859808,0.00832,0.221056,0.006144,0.006144,0.007328,0.013152,0.014336,0.57344,0.009888
+787,793.184,1.26074,0.870176,0.008192,0.222624,0.00608,0.004896,0.00736,0.022528,0.014752,0.573856,0.009888
+788,696.007,1.43677,1.47085,0.008512,0.442432,0.007872,0.005696,0.006912,0.014048,0.014592,0.960544,0.01024
+789,570.712,1.7522,1.24915,0.008224,0.223232,0.005696,0.00496,0.007936,0.012608,0.015488,0.958592,0.012416
+790,609.252,1.64136,0.859136,0.009216,0.221632,0.004928,0.00592,0.007456,0.012992,0.01552,0.571808,0.009664
+791,733.919,1.36255,0.853888,0.008,0.221376,0.006144,0.005248,0.00704,0.014368,0.014304,0.567296,0.010112
+792,818.136,1.22229,1.2208,0.008384,0.2232,0.006144,0.006048,0.00624,0.014336,0.014336,0.92896,0.013152
+793,550.501,1.81653,0.854016,0.00784,0.22736,0.005696,0.004864,0.007488,0.012992,0.014432,0.564576,0.008768
+794,739.818,1.35168,1.0752,0.009408,0.438496,0.004896,0.005888,0.006208,0.014336,0.014336,0.571392,0.01024
+795,707.854,1.41272,0.847168,0.008192,0.2208,0.005696,0.004928,0.006144,0.014144,0.014528,0.563104,0.009632
+796,814.071,1.22839,0.855872,0.009248,0.221856,0.006496,0.006112,0.006144,0.014336,0.014368,0.567264,0.010048
+797,727.531,1.37451,1.66544,0.008256,0.225632,0.006176,0.005472,0.006784,0.013984,0.014688,1.37216,0.012288
+798,468.891,2.13269,0.858176,0.008256,0.221184,0.006144,0.006144,0.00768,0.012832,0.016224,0.570752,0.00896
+799,524.657,1.90601,0.929024,0.008192,0.267328,0.005088,0.005792,0.006464,0.025856,0.029312,0.57136,0.009632
+800,840.464,1.18982,0.897024,0.008192,0.26608,0.005728,0.004928,0.007936,0.014048,0.014368,0.566752,0.008992
+801,671.53,1.48914,0.885536,0.008512,0.25648,0.005728,0.004512,0.008,0.013888,0.014624,0.563552,0.01024
+802,612.807,1.63184,0.886784,0.01232,0.238624,0.005056,0.006144,0.007264,0.013216,0.014336,0.579584,0.01024
+803,716.084,1.39648,1.2793,0.008192,0.223232,0.005792,0.004448,0.007232,0.013024,0.01456,0.992608,0.010208
+804,653.843,1.52942,0.85664,0.008544,0.221536,0.005696,0.00688,0.007328,0.013152,0.014336,0.569344,0.009824
+805,812.779,1.23035,0.849568,0.007808,0.221728,0.006144,0.005504,0.006784,0.013888,0.014624,0.56336,0.009728
+806,737.354,1.3562,0.870112,0.008192,0.225312,0.006112,0.006368,0.007872,0.013728,0.02528,0.567296,0.009952
+807,526.681,1.89868,0.85904,0.01056,0.223136,0.004896,0.005888,0.006336,0.014304,0.014368,0.569312,0.01024
+808,471.862,2.11926,0.915872,0.008352,0.2408,0.00512,0.006144,0.0184,0.028704,0.015584,0.583936,0.008832
+809,1023.62,0.976929,0.914176,0.024352,0.261088,0.006016,0.0056,0.006816,0.013856,0.01424,0.571968,0.01024
+810,627.691,1.59314,0.930624,0.008544,0.288704,0.005856,0.004928,0.007872,0.014048,0.014336,0.576096,0.01024
+811,900.418,1.1106,1.48858,0.008224,0.44256,0.007456,0.004864,0.007232,0.014688,0.014752,0.977056,0.011744
+812,480.328,2.08191,1.29434,0.008416,0.227776,0.006048,0.005664,0.007744,0.013312,0.015392,1,0.009984
+813,669.993,1.49255,0.864448,0.007968,0.223456,0.006112,0.004352,0.007744,0.01376,0.01472,0.577248,0.009088
+814,809.806,1.23486,0.858144,0.009216,0.224032,0.005696,0.0048,0.007552,0.012928,0.014304,0.571008,0.008608
+815,730.32,1.36926,1.22237,0.008192,0.227328,0.006016,0.004288,0.008,0.013856,0.014592,0.92608,0.014016
+816,543.02,1.84155,0.858208,0.00848,0.221472,0.006144,0.007328,0.007008,0.01392,0.01472,0.569376,0.00976
+817,660.912,1.51306,0.860288,0.00832,0.22256,0.004928,0.005888,0.006272,0.014336,0.014432,0.573312,0.01024
+818,493.137,2.02783,0.915456,0.008192,0.270336,0.005824,0.005696,0.00832,0.02112,0.014336,0.572704,0.008928
+819,1198.89,0.834106,0.884096,0.00816,0.237408,0.005696,0.004896,0.00736,0.01312,0.024288,0.573728,0.00944
+820,784.975,1.27393,1.5401,0.008192,0.501184,0.00672,0.006176,0.006112,0.014336,0.014336,0.972288,0.010752
+821,530.948,1.88342,1.26118,0.008192,0.232672,0.004928,0.00592,0.006336,0.014208,0.014464,0.961824,0.01264
+822,610.66,1.63757,0.869984,0.009344,0.226176,0.006144,0.005824,0.008,0.0128,0.015712,0.57616,0.009824
+823,733.787,1.36279,0.869088,0.008192,0.228032,0.005696,0.004544,0.00768,0.0128,0.014336,0.579008,0.0088
+824,824.809,1.2124,0.886624,0.008544,0.243872,0.005696,0.006016,0.006848,0.013888,0.014784,0.577312,0.009664
+825,674.239,1.48315,1.06051,0.01008,0.420224,0.00592,0.004352,0.007872,0.01456,0.0144,0.57344,0.009664
+826,681.587,1.46716,1.28685,0.008544,0.227264,0.005664,0.004992,0.007712,0.013984,0.014816,0.99472,0.009152
+827,592.164,1.68872,0.864544,0.008192,0.229792,0.006144,0.005344,0.006944,0.013824,0.01472,0.569472,0.010112
+828,675.685,1.47998,0.882848,0.009568,0.240288,0.006144,0.005824,0.006464,0.014368,0.014304,0.576832,0.009056
+829,937.514,1.06665,1.23085,0.00832,0.23696,0.005696,0.005024,0.006144,0.014336,0.014336,0.92752,0.012512
+830,520.557,1.92102,0.866816,0.008704,0.228448,0.005024,0.006048,0.00736,0.013216,0.014432,0.574592,0.008992
+831,774.73,1.29077,1.04547,0.008224,0.404416,0.006144,0.005472,0.006816,0.014336,0.014336,0.576704,0.009024
+832,679.158,1.47241,0.866336,0.009344,0.22208,0.006144,0.005824,0.006464,0.014336,0.014336,0.578944,0.008864
+833,785.276,1.27344,0.857632,0.008192,0.224288,0.005088,0.00576,0.00656,0.01424,0.0144,0.569376,0.009728
+834,772.175,1.29504,1.67971,0.008544,0.233056,0.005696,0.00496,0.00784,0.01264,0.015776,1.37802,0.013184
+835,477.584,2.09387,1.2841,0.00784,0.226912,0.004928,0.005888,0.006336,0.014336,0.014336,0.991232,0.012288
+836,575.16,1.73865,0.872544,0.008352,0.223552,0.006144,0.00608,0.006208,0.014368,0.014304,0.58368,0.009856
+837,796.113,1.2561,0.856064,0.008192,0.223232,0.006048,0.004288,0.008128,0.014304,0.01552,0.567584,0.008768
+838,525.027,1.90466,1.35168,0.008192,0.7168,0.006176,0.006112,0.007264,0.013216,0.015392,0.569536,0.008992
+839,762.401,1.31165,1.05456,0.010464,0.421792,0.004704,0.005664,0.006624,0.014336,0.015648,0.565632,0.009696
+840,631.952,1.5824,1.04342,0.008672,0.403968,0.006144,0.005312,0.006976,0.014208,0.014464,0.57488,0.0088
+841,696.954,1.43481,0.856064,0.008192,0.221184,0.00608,0.00528,0.007072,0.013952,0.014272,0.5712,0.008832
+842,798.986,1.25159,0.866208,0.008512,0.224768,0.005696,0.007104,0.006144,0.014336,0.014368,0.575456,0.009824
+843,755.371,1.32385,1.23338,0.008384,0.232032,0.006144,0.005408,0.00688,0.01424,0.014464,0.931808,0.014016
+844,518.776,1.92761,0.858912,0.00864,0.225664,0.006112,0.005824,0.006464,0.014336,0.016192,0.56544,0.01024
+845,719.164,1.3905,0.872832,0.007104,0.227328,0.006176,0.005568,0.00672,0.013792,0.014784,0.581696,0.009664
+846,742.836,1.34619,0.87344,0.009472,0.229504,0.005696,0.005152,0.007456,0.012992,0.014336,0.578976,0.009856
+847,788.678,1.26794,0.870816,0.007808,0.222208,0.006144,0.005696,0.006592,0.01392,0.014784,0.583648,0.010016
+848,739.818,1.35168,1.47664,0.009504,0.44288,0.006464,0.00608,0.007616,0.013888,0.014528,0.96544,0.01024
+849,337.494,2.96301,1.31629,0.00832,0.270336,0.006176,0.0056,0.006656,0.013632,0.014304,0.981024,0.01024
+850,1255.86,0.796265,0.880672,0.008192,0.236672,0.004992,0.006144,0.007648,0.012832,0.014336,0.580608,0.009248
+851,776.861,1.28723,0.864128,0.008192,0.229024,0.005696,0.004896,0.007328,0.013152,0.014336,0.571392,0.010112
+852,781.381,1.27979,1.22874,0.008192,0.232576,0.004992,0.006144,0.007296,0.013184,0.014336,0.929024,0.012992
+853,528.516,1.89209,0.856064,0.008096,0.224512,0.00496,0.005856,0.006464,0.014112,0.014528,0.567296,0.01024
+854,694.237,1.44043,0.857376,0.008192,0.22528,0.006048,0.005696,0.006688,0.013824,0.0144,0.56752,0.009728
+855,757.116,1.3208,0.86016,0.008192,0.227328,0.005984,0.004256,0.00784,0.013664,0.014528,0.569248,0.00912
+856,789.362,1.26685,0.855072,0.008192,0.223232,0.006144,0.006016,0.008032,0.013824,0.014656,0.565568,0.009408
+857,731.494,1.36707,1.67235,0.007872,0.2336,0.005664,0.004768,0.00752,0.01296,0.014336,1.37325,0.012384
+858,503.565,1.98584,0.89088,0.008192,0.227328,0.006144,0.00592,0.006368,0.014336,0.015424,0.596928,0.01024
+859,552.208,1.81091,0.878688,0.007136,0.24576,0.005856,0.004384,0.007712,0.012992,0.015328,0.56992,0.0096
+860,949.577,1.0531,0.872384,0.009408,0.232256,0.006112,0.005696,0.006656,0.014048,0.014592,0.57344,0.010176
+861,704.264,1.41992,0.8648,0.008064,0.235744,0.005024,0.005792,0.006144,0.014176,0.014464,0.56528,0.010112
+862,752.388,1.3291,1.4848,0.00832,0.444288,0.008192,0.005856,0.006432,0.014336,0.015584,0.971168,0.010624
+863,595.912,1.6781,1.27386,0.008192,0.226848,0.005728,0.004992,0.006176,0.014336,0.014304,0.98304,0.01024
+864,551.761,1.81238,0.862752,0.008512,0.227968,0.00608,0.005696,0.006656,0.014016,0.014656,0.569344,0.009824
+865,816.668,1.22449,0.866304,0.008192,0.227328,0.006176,0.005568,0.006688,0.014336,0.014336,0.573472,0.010208
+866,810.447,1.23389,0.884736,0.008192,0.239648,0.006016,0.005792,0.006592,0.014368,0.014336,0.579808,0.009984
+867,529.815,1.88745,0.892096,0.011392,0.252832,0.006112,0.005216,0.007072,0.014336,0.014336,0.570912,0.009888
+868,763.752,1.30933,1.0391,0.008576,0.40384,0.006144,0.005536,0.006752,0.01408,0.0144,0.569536,0.01024
+869,687.768,1.45398,0.866304,0.008192,0.231264,0.005696,0.004704,0.007424,0.013056,0.014336,0.57264,0.008992
+870,653.165,1.53101,0.87056,0.008352,0.23552,0.006176,0.005952,0.006336,0.014272,0.014368,0.569344,0.01024
+871,881.714,1.13416,1.22234,0.008192,0.237568,0.006144,0.005152,0.007136,0.013344,0.0144,0.916384,0.014016
+872,544.536,1.83643,0.937792,0.008192,0.248992,0.00496,0.006144,0.007328,0.013152,0.01536,0.57856,0.055104
+873,672.854,1.48621,0.86048,0.008192,0.228992,0.004928,0.005888,0.006272,0.01408,0.014592,0.568928,0.008608
+874,784.374,1.2749,0.862976,0.008576,0.227712,0.00592,0.005696,0.006816,0.013536,0.014432,0.571232,0.009056
+875,810.768,1.2334,0.872448,0.008224,0.2232,0.006112,0.005824,0.006496,0.014016,0.014656,0.567296,0.026624
+876,729.02,1.3717,1.47206,0.008192,0.444416,0.007904,0.004384,0.00784,0.013984,0.01504,0.959552,0.010752
+877,520.226,1.92224,1.24016,0.008032,0.22544,0.006144,0.005632,0.006656,0.014336,0.014336,0.946176,0.013408
+878,622.682,1.60596,0.866016,0.0096,0.223872,0.006048,0.006016,0.006368,0.014176,0.014336,0.575648,0.009952
+879,762.33,1.31177,0.853312,0.008192,0.223232,0.006176,0.005312,0.006944,0.013664,0.014592,0.565504,0.009696
+880,772.247,1.29492,0.86736,0.008192,0.230432,0.00512,0.006112,0.007232,0.013248,0.014336,0.573024,0.009664
+881,503.009,1.98804,0.9216,0.011552,0.287168,0.00576,0.0048,0.007424,0.013024,0.01568,0.565952,0.01024
+882,785.502,1.27307,1.06829,0.008192,0.434176,0.006112,0.004128,0.008064,0.013792,0.014304,0.570048,0.009472
+883,689.214,1.45093,0.858272,0.007616,0.22928,0.00496,0.006112,0.008192,0.013664,0.0144,0.565216,0.008832
+884,799.688,1.25049,0.86224,0.009472,0.226048,0.006176,0.00576,0.006592,0.01424,0.014368,0.570848,0.008736
+885,759.362,1.31689,1.22749,0.008224,0.233312,0.005024,0.006144,0.00768,0.013952,0.014912,0.923968,0.014272
+886,531.327,1.88208,0.866016,0.008512,0.237856,0.006144,0.00592,0.006368,0.01408,0.014272,0.5632,0.009664
+887,715.583,1.39746,0.872608,0.006912,0.234528,0.005024,0.006144,0.007488,0.012992,0.014336,0.57504,0.010144
+888,787.995,1.26904,0.866304,0.008192,0.228384,0.005088,0.006144,0.007648,0.012832,0.014336,0.574624,0.009056
+889,781.679,1.2793,0.855488,0.008032,0.227488,0.006144,0.005568,0.00672,0.013952,0.014624,0.563264,0.009696
+890,736.757,1.3573,1.24688,0.008544,0.245248,0.006464,0.005728,0.00704,0.013856,0.014592,0.932064,0.013344
+891,542.265,1.84412,0.909312,0.008192,0.23536,0.00576,0.00464,0.007584,0.012896,0.014336,0.611712,0.008832
+892,635.827,1.57275,0.890432,0.009344,0.254848,0.006144,0.006144,0.00624,0.01424,0.014336,0.569024,0.010112
+893,793.26,1.26062,0.8704,0.00784,0.23792,0.006144,0.005536,0.006752,0.013856,0.014848,0.56864,0.008864
+894,746.492,1.3396,0.903712,0.008576,0.266528,0.005984,0.005696,0.006912,0.014048,0.014624,0.571392,0.009952
+895,733.262,1.36377,1.50726,0.008192,0.444416,0.00816,0.004288,0.007968,0.01424,0.014496,0.994624,0.01088
+896,507.527,1.97034,1.28509,0.00864,0.236032,0.005632,0.0048,0.007776,0.013728,0.014752,0.983456,0.010272
+897,628.076,1.59216,0.859936,0.007776,0.232096,0.005824,0.004416,0.007808,0.014048,0.014368,0.56384,0.00976
+898,782.949,1.27722,0.868096,0.008736,0.227328,0.006144,0.006016,0.007808,0.0128,0.014336,0.574976,0.009952
+899,751.905,1.32996,0.871648,0.008192,0.233472,0.006176,0.005376,0.00688,0.013792,0.014368,0.573504,0.009888
+900,674.961,1.48157,1.48506,0.008672,0.444416,0.007392,0.004928,0.007904,0.013824,0.014304,0.9728,0.010816
+901,535.18,1.86853,0.875168,0.00784,0.23568,0.004928,0.005888,0.0064,0.013536,0.01504,0.575616,0.01024
+902,757.326,1.32043,0.862784,0.00864,0.229504,0.006144,0.006144,0.006144,0.014336,0.014336,0.568864,0.008672
+903,691.6,1.44592,0.91856,0.008128,0.284128,0.004928,0.00592,0.006176,0.014368,0.014304,0.571136,0.009472
+904,784.374,1.2749,1.27267,0.008544,0.246304,0.006112,0.006016,0.006272,0.014368,0.014304,0.957824,0.012928
+905,517.596,1.93201,1.27411,0.007936,0.243904,0.005728,0.004832,0.007424,0.013056,0.014336,0.964608,0.012288
+906,591.267,1.69128,0.894944,0.008192,0.249856,0.00608,0.005696,0.006656,0.014336,0.014336,0.579584,0.010208
+907,793.414,1.26038,0.878528,0.008192,0.227328,0.005792,0.005792,0.006848,0.014112,0.015616,0.584704,0.010144
+908,723.931,1.38135,0.878656,0.008256,0.237216,0.005728,0.004896,0.00816,0.014144,0.014528,0.575488,0.01024
+909,471.184,2.12231,0.878304,0.01024,0.24576,0.006144,0.005632,0.006656,0.013888,0.014784,0.565248,0.009952
+910,813.344,1.22949,1.04064,0.008448,0.40496,0.005984,0.0048,0.007456,0.014272,0.01472,0.56976,0.01024
+911,671.2,1.48987,0.858304,0.008096,0.229216,0.005728,0.00496,0.007392,0.013088,0.014336,0.565248,0.01024
+912,772.539,1.29443,0.872448,0.008192,0.232864,0.004928,0.00592,0.008192,0.013344,0.014592,0.574176,0.01024
+913,764.464,1.30811,1.23696,0.007872,0.244192,0.005696,0.004928,0.007328,0.01312,0.014336,0.925696,0.013792
+914,508.189,1.96777,0.915968,0.008544,0.238208,0.006144,0.005952,0.006336,0.014304,0.014368,0.561152,0.06096
+915,696.184,1.4364,0.874688,0.008192,0.231264,0.005952,0.00464,0.00768,0.0128,0.015584,0.579456,0.00912
+916,785.351,1.27332,0.874784,0.00848,0.227456,0.005728,0.00656,0.007328,0.013152,0.014368,0.5816,0.010112
+917,736.558,1.35767,0.847904,0.006944,0.226592,0.005696,0.005088,0.006176,0.014336,0.014336,0.559104,0.009632
+918,813.586,1.22913,1.22954,0.008576,0.236032,0.006144,0.00592,0.006368,0.014208,0.014368,0.924832,0.013088
+919,538.912,1.85559,1.24054,0.008192,0.230624,0.004928,0.005952,0.006304,0.014336,0.014336,0.94208,0.013792
+920,619.761,1.61353,0.854048,0.009312,0.228032,0.005696,0.004928,0.007744,0.01392,0.014688,0.559616,0.010112
+921,765.178,1.30688,0.863488,0.008096,0.233568,0.005664,0.004576,0.007488,0.012992,0.01552,0.565984,0.0096
+922,791.574,1.26331,0.8728,0.008544,0.229024,0.005696,0.00496,0.007904,0.013632,0.014496,0.578304,0.01024
+923,456.964,2.18835,0.898784,0.010528,0.272384,0.006176,0.00512,0.007136,0.013664,0.01472,0.559392,0.009664
+924,668.789,1.49524,0.876192,0.008288,0.249376,0.005728,0.004992,0.007808,0.013888,0.014528,0.561792,0.009792
+925,794.414,1.25879,0.86272,0.00816,0.233472,0.005696,0.00512,0.006112,0.014368,0.014304,0.565248,0.01024
+926,789.058,1.26733,0.858496,0.008576,0.227296,0.005696,0.00624,0.008,0.012864,0.014336,0.56528,0.010208
+927,775.17,1.29004,1.22563,0.007072,0.232704,0.00496,0.00592,0.006272,0.014368,0.014304,0.927104,0.012928
+928,542.804,1.84229,0.863168,0.008576,0.2296,0.004448,0.006144,0.007424,0.013056,0.01536,0.569472,0.009088
+929,675.573,1.48022,0.870208,0.007872,0.228192,0.006048,0.004288,0.007648,0.012736,0.014336,0.579552,0.009536
+930,788.071,1.26892,0.858496,0.00896,0.231072,0.005728,0.006784,0.006272,0.014336,0.014336,0.561152,0.009856
+931,799.922,1.25012,0.851936,0.00784,0.223872,0.005728,0.004512,0.007744,0.012736,0.014336,0.565248,0.00992
+932,713.589,1.40137,1.67712,0.008608,0.232608,0.004992,0.006144,0.00784,0.01264,0.015616,1.37626,0.012416
+933,456.226,2.19189,1.28477,0.007936,0.240544,0.00576,0.00448,0.007744,0.012736,0.014464,0.980864,0.01024
+934,658.415,1.5188,0.862208,0.009376,0.228192,0.006144,0.006112,0.006272,0.01424,0.014336,0.567296,0.01024
+935,765.035,1.30713,0.854112,0.008192,0.226976,0.005664,0.004928,0.007456,0.013024,0.014336,0.564736,0.0088
+936,810.207,1.23425,0.868352,0.008256,0.23136,0.006176,0.007232,0.007072,0.013824,0.014752,0.56944,0.01024
+937,771.012,1.297,1.47533,0.008128,0.44288,0.006464,0.006048,0.00624,0.014336,0.015488,0.964896,0.010848
+938,468.355,2.13513,0.872672,0.008416,0.236608,0.005056,0.006144,0.007872,0.013664,0.0144,0.570272,0.01024
+939,767.041,1.30371,0.862816,0.008256,0.225824,0.006144,0.005248,0.00704,0.013504,0.014816,0.571744,0.01024
+940,804.241,1.24341,0.86016,0.009536,0.223232,0.00496,0.007712,0.006496,0.014304,0.014336,0.569344,0.01024
+941,743.578,1.34485,1.22323,0.007968,0.232224,0.005792,0.004448,0.007776,0.012704,0.01552,0.923744,0.013056
+942,538.735,1.8562,0.864736,0.008544,0.235296,0.005696,0.006944,0.007264,0.013216,0.014336,0.564256,0.009184
+943,673.795,1.48413,0.847744,0.008192,0.224768,0.005728,0.005024,0.007168,0.013344,0.014304,0.559136,0.01008
+944,712.224,1.40405,0.88064,0.008192,0.247808,0.006144,0.00576,0.006528,0.014144,0.014208,0.567616,0.01024
+945,834.811,1.19788,0.879136,0.007808,0.248736,0.006112,0.004288,0.007968,0.013824,0.014848,0.565312,0.01024
+946,652.489,1.53259,1.69139,0.008352,0.258016,0.006176,0.006048,0.006208,0.014336,0.014336,1.36547,0.012448
+947,540.976,1.84851,1.2839,0.007936,0.233568,0.005728,0.00512,0.006304,0.014176,0.014368,0.986688,0.010016
+948,595.089,1.68042,0.855744,0.008256,0.229184,0.00576,0.00672,0.0072,0.013248,0.014336,0.561152,0.009888
+949,786.86,1.27087,0.861088,0.007072,0.231424,0.005856,0.004384,0.008192,0.013568,0.014944,0.56544,0.010208
+950,670.651,1.49109,0.899264,0.008352,0.256032,0.00592,0.005728,0.006752,0.013952,0.014592,0.57904,0.008896
+951,540.976,1.84851,0.876576,0.010496,0.247264,0.00496,0.005888,0.006304,0.014336,0.014336,0.5632,0.009792
+952,645.955,1.5481,0.86656,0.008448,0.23552,0.006144,0.005824,0.006464,0.014368,0.014304,0.56672,0.008768
+953,786.633,1.27124,0.864256,0.009312,0.22592,0.005952,0.004608,0.007488,0.01296,0.014336,0.57344,0.01024
+954,670.98,1.49036,0.874496,0.008192,0.24576,0.006144,0.005824,0.006464,0.014336,0.014368,0.56448,0.008928
+955,725.791,1.37781,0.884288,0.007744,0.252032,0.005696,0.005056,0.007168,0.013312,0.0144,0.569056,0.009824
+956,538.204,1.85803,1.3312,0.01024,0.30304,0.00576,0.005696,0.00704,0.013792,0.01488,0.958432,0.01232
+957,599.751,1.66736,0.87744,0.00704,0.243712,0.006176,0.005216,0.00704,0.014336,0.014336,0.570624,0.00896
+958,772.684,1.29419,0.878816,0.008416,0.233472,0.006176,0.006016,0.00624,0.014336,0.014336,0.579584,0.01024
+959,759.151,1.31726,0.869696,0.008032,0.235648,0.005728,0.004576,0.008128,0.0136,0.014656,0.569792,0.009536
+960,760.137,1.31555,1.53197,0.008544,0.502336,0.007904,0.005696,0.00688,0.014336,0.014336,0.956384,0.015552
+961,468.891,2.13269,0.867424,0.008192,0.238816,0.00592,0.00512,0.006176,0.014304,0.014336,0.56496,0.0096
+962,692.945,1.44312,0.880384,0.008544,0.245856,0.006112,0.006016,0.006272,0.014368,0.014304,0.569344,0.009568
+963,855.472,1.16895,0.861056,0.00704,0.225184,0.005664,0.004672,0.007648,0.01408,0.029088,0.55744,0.01024
+964,734.972,1.3606,1.26771,0.009472,0.268288,0.006048,0.00496,0.007968,0.012512,0.01536,0.930304,0.0128
+965,415.563,2.40637,0.968704,0.008224,0.266016,0.005824,0.004608,0.017504,0.029184,0.014752,0.606208,0.016384
+966,924.814,1.0813,0.893536,0.016288,0.250176,0.005696,0.005024,0.007808,0.013888,0.0144,0.570112,0.010144
+967,728.502,1.37268,0.886784,0.008192,0.251904,0.006144,0.005856,0.006432,0.014368,0.014304,0.569344,0.01024
+968,782.351,1.2782,0.8704,0.009504,0.240256,0.005728,0.005952,0.006848,0.013728,0.014368,0.563776,0.01024
+969,768.048,1.302,1.2329,0.007872,0.237984,0.006176,0.005344,0.006912,0.012352,0.015584,0.92752,0.013152
+970,495.884,2.0166,1.3367,0.009408,0.316224,0.005856,0.005728,0.006848,0.014016,0.014432,0.953664,0.010528
+971,616.45,1.62219,0.886912,0.00816,0.252064,0.006112,0.005664,0.006624,0.013824,0.01488,0.570464,0.00912
+972,783.623,1.27612,0.870784,0.008512,0.235584,0.005728,0.005696,0.007008,0.013824,0.01488,0.569312,0.01024
+973,697.726,1.43323,0.86416,0.008,0.233696,0.006112,0.005312,0.006976,0.0136,0.014912,0.565408,0.010144
+974,435.467,2.29639,1.99066,0.008192,0.231008,0.005696,0.00496,0.007904,0.013664,0.0144,1.69053,0.014304
+975,730.255,1.36938,0.865792,0.008032,0.242016,0.006144,0.005472,0.006816,0.013536,0.014912,0.559328,0.009536
+976,810.046,1.2345,0.863232,0.00944,0.230176,0.006144,0.006144,0.006144,0.014336,0.014336,0.566912,0.0096
+977,719.543,1.38977,0.894336,0.008192,0.251904,0.005856,0.004384,0.007744,0.012736,0.014336,0.579456,0.009728
+978,777.23,1.28662,1.47974,0.008224,0.443552,0.006976,0.005536,0.006752,0.014336,0.014336,0.968704,0.011328
+979,526.14,1.90063,1.26026,0.006912,0.258016,0.006144,0.005824,0.006464,0.014272,0.0144,0.937984,0.01024
+980,613.082,1.6311,0.86432,0.008416,0.227552,0.00576,0.006528,0.007296,0.013184,0.014336,0.571392,0.009856
+981,755.58,1.32349,0.86864,0.00784,0.237312,0.004992,0.006016,0.006272,0.014336,0.014336,0.568864,0.008672
+982,775.758,1.28906,1.23786,0.008512,0.242208,0.006144,0.00592,0.006368,0.014144,0.01456,0.927584,0.012416
+983,511.808,1.95386,0.870016,0.008192,0.23312,0.004448,0.006144,0.007392,0.013088,0.014336,0.57344,0.009856
+984,725.212,1.37891,0.877344,0.00864,0.225632,0.006144,0.006144,0.007488,0.012992,0.014368,0.587136,0.0088
+985,725.726,1.37793,0.892928,0.008192,0.265344,0.004992,0.005824,0.006464,0.014176,0.014496,0.564448,0.008992
+986,734.577,1.36133,0.886912,0.008576,0.254048,0.006144,0.005856,0.006464,0.014176,0.014208,0.567552,0.009888
+987,771.811,1.29565,1.68502,0.007968,0.246048,0.006144,0.00544,0.006848,0.013856,0.014784,1.37168,0.012256
+988,478.784,2.08862,1.28819,0.008192,0.231424,0.006144,0.00592,0.006368,0.014368,0.015328,0.990208,0.01024
+989,561.557,1.78076,0.864256,0.008192,0.240832,0.006016,0.005056,0.007296,0.013184,0.014336,0.559104,0.01024
+990,816.424,1.22485,0.866464,0.008544,0.23392,0.006112,0.006016,0.006304,0.014016,0.014528,0.567392,0.009632
+991,765.464,1.3064,0.858112,0.008192,0.231424,0.006144,0.005472,0.006816,0.013696,0.014592,0.562848,0.008928
+992,757.677,1.31982,1.25302,0.008192,0.261888,0.004576,0.005952,0.007776,0.012672,0.01536,0.922688,0.01392
+993,476.667,2.0979,0.878816,0.008096,0.242336,0.00608,0.004256,0.007968,0.012544,0.015616,0.572032,0.009888
+994,791.039,1.26416,0.8624,0.008384,0.23104,0.005664,0.00496,0.00784,0.01376,0.014336,0.566176,0.01024
+995,659.794,1.51562,0.8752,0.00816,0.24656,0.006112,0.005152,0.007136,0.01392,0.01456,0.563424,0.010176
+996,880.292,1.13599,0.872704,0.008416,0.239296,0.005824,0.00496,0.007872,0.013472,0.01456,0.568032,0.010272
+997,516.78,1.93506,0.960512,0.010272,0.286688,0.006144,0.005184,0.007008,0.013504,0.0144,0.608448,0.008864
+998,677.921,1.4751,0.862208,0.008192,0.233472,0.006048,0.005664,0.00672,0.013984,0.01472,0.564704,0.008704
+999,652.957,1.53149,0.937984,0.008064,0.282784,0.006112,0.005472,0.015008,0.028672,0.01552,0.567392,0.00896
+1000,746.22,1.34009,0.90112,0.009216,0.257024,0.006176,0.006112,0.006176,0.014304,0.014336,0.577536,0.01024
+1001,803.295,1.24487,1.22675,0.008192,0.234848,0.004928,0.005856,0.006304,0.014304,0.014336,0.924832,0.013152
+1002,464.715,2.15186,1.1264,0.009408,0.479968,0.005888,0.004448,0.00784,0.028576,0.014304,0.566848,0.00912
+1003,688.635,1.45215,0.911008,0.00832,0.264128,0.005696,0.004832,0.007392,0.013088,0.015552,0.58208,0.00992
+1004,679.721,1.47119,0.881344,0.00864,0.25216,0.006144,0.006144,0.007456,0.014336,0.015008,0.561216,0.01024
+1005,826.14,1.21045,0.915456,0.008192,0.262144,0.021952,0.004672,0.007552,0.02448,0.014816,0.562656,0.008992
+1006,630.445,1.58618,1.90518,0.008576,0.456864,0.007552,0.004736,0.007488,0.014208,0.014368,1.3791,0.012288
+1007,444.203,2.25122,0.85632,0.00816,0.231328,0.005696,0.004928,0.007264,0.013216,0.014336,0.56256,0.008832
+1008,802.036,1.24683,0.854016,0.009376,0.227488,0.004928,0.006016,0.00752,0.01296,0.014432,0.562496,0.0088
+1009,799.375,1.25098,0.851232,0.008192,0.23104,0.005696,0.004928,0.0072,0.01328,0.014336,0.55696,0.0096
+1010,695.18,1.43848,1.48,0.00832,0.447744,0.006784,0.006144,0.007232,0.013248,0.015392,0.963552,0.011584
+1011,554.038,1.80493,1.08339,0.007872,0.444736,0.006144,0.0056,0.006688,0.014336,0.014336,0.57344,0.01024
+1012,708.773,1.41089,0.864672,0.00848,0.222784,0.005728,0.007104,0.00624,0.014272,0.024288,0.566592,0.009184
+1013,748.538,1.33594,0.86448,0.007808,0.225984,0.005504,0.004992,0.007968,0.012512,0.026624,0.562624,0.010464
+1014,780.637,1.28101,1.22726,0.008512,0.231168,0.005024,0.006144,0.006176,0.014304,0.014528,0.927552,0.013856
+1015,515.026,1.94165,0.88752,0.008224,0.228032,0.00608,0.004288,0.024064,0.013856,0.014656,0.57808,0.01024
+1016,505.929,1.97656,0.880608,0.008192,0.24896,0.004992,0.006144,0.007456,0.01424,0.014528,0.565888,0.010208
+1017,1240.46,0.806152,0.866048,0.008032,0.227552,0.006144,0.005248,0.00704,0.014336,0.014336,0.57344,0.00992
+1018,807.571,1.23828,0.86016,0.008192,0.229376,0.005984,0.005696,0.006752,0.013664,0.014336,0.5672,0.00896
+1019,743.781,1.34448,1.68682,0.008192,0.235552,0.006112,0.005536,0.006752,0.014016,0.014656,1.38026,0.015744
+1020,336.068,2.97559,0.870976,0.008256,0.239808,0.005696,0.004928,0.00784,0.012576,0.015584,0.566048,0.01024
+1021,804.241,1.24341,0.854176,0.007904,0.227008,0.004928,0.005952,0.006272,0.01392,0.014528,0.564736,0.008928
+1022,793.952,1.25952,0.864256,0.009408,0.226144,0.006144,0.00736,0.006944,0.014208,0.014464,0.569344,0.01024
+1023,752.25,1.32935,1.21462,0.007872,0.231872,0.006016,0.004288,0.007936,0.012672,0.0152,0.916256,0.012512
+1024,510.596,1.9585,0.882976,0.008512,0.24928,0.005696,0.00512,0.007744,0.014208,0.014784,0.567424,0.010208
+1025,629.863,1.58765,0.880384,0.008192,0.249856,0.005856,0.004384,0.007872,0.012608,0.015424,0.566208,0.009984
+1026,613.082,1.6311,0.874496,0.008192,0.227328,0.006144,0.00544,0.006848,0.014336,0.014336,0.581632,0.01024
+1027,1060.87,0.942627,0.923648,0.008192,0.282656,0.006112,0.005984,0.006304,0.014336,0.014336,0.575488,0.01024
+1028,747.036,1.33862,1.68064,0.008192,0.238816,0.004928,0.006112,0.007488,0.014752,0.014336,1.37366,0.012352
+1029,471.292,2.12183,1.06563,0.007904,0.432832,0.005696,0.0048,0.007424,0.014656,0.01456,0.56896,0.0088
+1030,703.901,1.42065,0.862688,0.008704,0.229376,0.006144,0.006144,0.007968,0.013696,0.014272,0.566176,0.010208
+1031,711.111,1.40625,0.878624,0.00784,0.256928,0.006112,0.0056,0.006688,0.013856,0.014528,0.557344,0.009728
+1032,729.085,1.37158,0.87632,0.008192,0.24576,0.006176,0.00592,0.006368,0.014304,0.014336,0.565248,0.010016
+1033,764.75,1.30762,1.46672,0.00784,0.443168,0.007392,0.005056,0.006336,0.015648,0.01488,0.95552,0.01088
+1034,475.339,2.10376,0.870208,0.009536,0.238272,0.006144,0.006144,0.007264,0.013216,0.014336,0.565248,0.010048
+1035,800.939,1.24854,0.867616,0.008192,0.23056,0.00496,0.005888,0.0064,0.014336,0.014336,0.573376,0.009568
+1036,778.559,1.28442,0.848,0.008384,0.223232,0.006144,0.00576,0.006528,0.01408,0.014432,0.559264,0.010176
+1037,580.252,1.72339,1.69574,0.007968,0.256224,0.006144,0.00576,0.006528,0.014336,0.014336,1.37216,0.012288
+1038,602.974,1.65845,1.25133,0.008192,0.23552,0.006176,0.005792,0.006464,0.014336,0.014368,0.948192,0.012288
+1039,608.89,1.64233,0.866336,0.008192,0.22704,0.005664,0.004864,0.007392,0.01312,0.01552,0.574272,0.010272
+1040,749.497,1.33423,0.864224,0.008448,0.227008,0.005824,0.004992,0.008096,0.013568,0.014464,0.572128,0.009696
+1041,787.087,1.27051,0.8624,0.007072,0.234816,0.004928,0.00592,0.007744,0.01392,0.014624,0.563808,0.009568
+1042,561.25,1.78174,0.877856,0.01024,0.233472,0.005952,0.005696,0.006784,0.013952,0.014528,0.577632,0.0096
+1043,741.492,1.34863,1.06288,0.008352,0.430656,0.006144,0.005888,0.0064,0.015488,0.014464,0.565696,0.009792
+1044,694.59,1.4397,0.872448,0.008192,0.229408,0.005984,0.005824,0.006592,0.013792,0.030496,0.56336,0.0088
+1045,800.625,1.24902,0.864352,0.008192,0.222976,0.005728,0.004768,0.007584,0.012896,0.028032,0.565536,0.00864
+1046,755.72,1.32324,0.856064,0.009248,0.223424,0.004928,0.006112,0.00752,0.01296,0.014336,0.568832,0.008704
+1047,804.399,1.24316,1.24893,0.007936,0.227168,0.005696,0.00496,0.007584,0.012896,0.014336,0.954368,0.013984
+1048,455.415,2.1958,0.884864,0.00848,0.245088,0.00608,0.006144,0.007072,0.013696,0.014592,0.573856,0.009856
+1049,830.832,1.20361,0.874496,0.008192,0.22912,0.005728,0.004768,0.007552,0.012928,0.014336,0.582688,0.009184
+1050,746.084,1.34033,0.856064,0.008192,0.22528,0.006144,0.006144,0.008192,0.013952,0.01472,0.5632,0.01024
+1051,812.215,1.2312,1.6816,0.008,0.229472,0.005696,0.00464,0.007648,0.012832,0.014336,1.38557,0.013408
+1052,470.102,2.1272,1.27181,0.008192,0.237184,0.005728,0.006752,0.006336,0.014368,0.0144,0.96656,0.012288
+1053,588.252,1.69995,0.86,0.008064,0.225792,0.00576,0.004608,0.007616,0.012864,0.014336,0.571392,0.009568
+1054,804.241,1.24341,0.866304,0.008192,0.224896,0.005696,0.004928,0.00768,0.014272,0.014912,0.576832,0.008896
+1055,766.898,1.30396,0.864256,0.008192,0.231072,0.005696,0.004896,0.007328,0.013152,0.014336,0.57072,0.008864
+1056,486.23,2.05664,0.8752,0.010784,0.23568,0.00576,0.005728,0.006976,0.01392,0.014528,0.571616,0.010208
+1057,731.429,1.36719,1.04461,0.00832,0.40864,0.005056,0.005856,0.006432,0.014336,0.01536,0.571456,0.009152
+1058,475.229,2.10425,0.900032,0.008416,0.258208,0.005792,0.021344,0.006272,0.014208,0.01536,0.561664,0.008768
+1059,1321.29,0.756836,0.878784,0.006848,0.233504,0.006112,0.005664,0.006624,0.014368,0.014304,0.581632,0.009728
+1060,787.995,1.26904,1.68464,0.008192,0.235488,0.005728,0.005792,0.006944,0.014048,0.014656,1.38032,0.013472
+1061,481.656,2.07617,1.25574,0.008288,0.230848,0.005056,0.00576,0.006528,0.014336,0.014336,0.958208,0.012384
+1062,607.805,1.64526,0.858112,0.008192,0.225312,0.006112,0.007392,0.006944,0.01392,0.014752,0.565248,0.01024
+1063,756.557,1.32178,0.86016,0.008064,0.230656,0.004992,0.006112,0.00736,0.013152,0.014336,0.566656,0.008832
+1064,792.416,1.26196,0.854016,0.008192,0.22528,0.006112,0.005728,0.006592,0.014336,0.014336,0.5632,0.01024
+1065,685.867,1.45801,1.46797,0.00784,0.44096,0.007872,0.004416,0.008192,0.014336,0.014336,0.958464,0.011552
+1066,571.588,1.74951,1.06701,0.008192,0.429344,0.004928,0.006048,0.00752,0.01296,0.015488,0.573504,0.009024
+1067,661.606,1.51147,0.860256,0.008384,0.231712,0.006144,0.005536,0.006752,0.014336,0.014272,0.563264,0.009856
+1068,516.194,1.93726,0.93584,0.008256,0.280352,0.005952,0.005728,0.015168,0.030656,0.0144,0.565248,0.01008
+1069,1143.5,0.874512,1.268,0.00784,0.27616,0.005056,0.006016,0.006272,0.014336,0.014336,0.925696,0.012288
+1070,533.472,1.87451,0.8704,0.008192,0.237568,0.006048,0.005792,0.006592,0.014368,0.014304,0.567296,0.01024
+1071,683.464,1.46313,0.871904,0.008192,0.241664,0.00576,0.00448,0.007712,0.012768,0.01552,0.566112,0.009696
+1072,788.45,1.26831,0.86816,0.00848,0.23376,0.005696,0.005728,0.007136,0.013632,0.014784,0.569056,0.009888
+1073,759.644,1.31641,0.86736,0.008192,0.23552,0.00592,0.00432,0.007904,0.012704,0.015712,0.567584,0.009504
+1074,792.11,1.26245,0.866432,0.00832,0.229376,0.005728,0.005536,0.007104,0.013696,0.014496,0.573216,0.00896
+1075,520.524,1.92114,1.2839,0.010496,0.23968,0.006144,0.005536,0.006752,0.013888,0.014656,0.974208,0.012544
+1076,615.94,1.62354,0.8624,0.00848,0.230848,0.005856,0.00496,0.007968,0.013728,0.014624,0.565792,0.010144
+1077,807.73,1.23804,0.861632,0.007904,0.225568,0.006016,0.004288,0.008128,0.013824,0.014848,0.57136,0.009696
+1078,513.927,1.9458,0.909312,0.009504,0.256736,0.006144,0.006048,0.006272,0.014304,0.014336,0.585728,0.01024
+1079,985.563,1.01465,1.48266,0.007968,0.442592,0.008192,0.005472,0.006816,0.014368,0.015392,0.970848,0.011008
+1080,498.176,2.00732,1.0551,0.012576,0.417856,0.006144,0.006144,0.007264,0.013248,0.014304,0.568576,0.008992
+1081,828.479,1.20703,0.868096,0.008192,0.243008,0.004928,0.005888,0.006304,0.014144,0.014272,0.561376,0.009984
+1082,816.261,1.2251,0.876864,0.00864,0.227488,0.006144,0.006048,0.00624,0.014336,0.026176,0.57184,0.009952
+1083,749.634,1.33398,0.88064,0.008192,0.241504,0.005728,0.004672,0.007552,0.012928,0.015488,0.574336,0.01024
+1084,492.426,2.03076,0.916352,0.010912,0.239712,0.005696,0.00576,0.007104,0.013664,0.014592,0.608672,0.01024
+1085,664.396,1.50513,0.866816,0.007168,0.231392,0.005728,0.004512,0.00768,0.0128,0.015392,0.572384,0.00976
+1086,808.049,1.23755,0.864416,0.00864,0.226912,0.004928,0.006016,0.007456,0.013056,0.0144,0.573344,0.009664
+1087,690.26,1.44873,0.872192,0.008096,0.222752,0.006016,0.0048,0.007872,0.012608,0.026688,0.573408,0.009952
+1088,825.474,1.21143,1.69504,0.008448,0.245728,0.005728,0.005728,0.007008,0.014304,0.014368,1.38035,0.013376
+1089,448.975,2.22729,1.14688,0.008192,0.50176,0.006144,0.005664,0.006624,0.014336,0.014336,0.580608,0.009216
+1090,637.113,1.56958,0.881216,0.008512,0.238048,0.0056,0.005696,0.007072,0.013536,0.014336,0.5784,0.010016
+1091,807.73,1.23804,0.874752,0.006944,0.235264,0.00624,0.004288,0.007968,0.013472,0.013216,0.577088,0.010272
+1092,713.092,1.40234,0.907712,0.008704,0.268768,0.006176,0.005888,0.006368,0.014336,0.014336,0.57344,0.009696
+1093,699.573,1.42944,1.47456,0.00816,0.444448,0.007648,0.00464,0.007872,0.014432,0.014592,0.961824,0.010944
+1094,494.149,2.02368,0.889888,0.008192,0.235552,0.006112,0.006176,0.007136,0.024928,0.014528,0.577568,0.009696
+1095,814.8,1.22729,0.870432,0.008192,0.223232,0.006144,0.005792,0.006496,0.014048,0.02896,0.568384,0.009184
+1096,792.57,1.26172,0.858208,0.008192,0.226368,0.005056,0.007296,0.00704,0.013504,0.014688,0.567264,0.0088
+1097,726.499,1.37646,1.70963,0.008192,0.235008,0.005696,0.005056,0.006176,0.014336,0.014304,1.40493,0.015936
+1098,441.76,2.26367,1.31494,0.00832,0.243744,0.006112,0.006176,0.007296,0.021344,0.015808,0.995904,0.01024
+1099,523.852,1.90894,0.9,0.007104,0.267456,0.004928,0.00592,0.006336,0.014368,0.014144,0.569504,0.01024
+1100,870.378,1.14893,0.890304,0.008192,0.235328,0.005696,0.004928,0.008,0.014368,0.014336,0.589792,0.009664
+1101,761.197,1.31372,0.87248,0.008224,0.231392,0.006144,0.005568,0.007808,0.013248,0.015488,0.575904,0.008704
+1102,520.788,1.92017,0.886176,0.01024,0.234624,0.004992,0.006176,0.007424,0.013024,0.014336,0.576576,0.018784
+1103,652.229,1.5332,0.866944,0.008416,0.229568,0.005728,0.004736,0.007328,0.013152,0.014336,0.574848,0.008832
+1104,800.156,1.24976,0.876544,0.008224,0.22848,0.004992,0.007808,0.006528,0.014144,0.014336,0.583008,0.009024
+1105,790.581,1.26489,0.858112,0.00816,0.224736,0.005696,0.00512,0.008064,0.013888,0.014528,0.568864,0.009056
+1106,775.905,1.28882,1.71222,0.008608,0.235296,0.005696,0.00592,0.00704,0.01392,0.014304,1.40912,0.01232
+1107,428.586,2.33325,1.3472,0.00784,0.29056,0.00592,0.005056,0.006144,0.020064,0.05584,0.94544,0.010336
+1108,639.002,1.56494,0.863552,0.008192,0.22528,0.006144,0.006112,0.006176,0.014112,0.01456,0.573344,0.009632
+1109,483.361,2.06885,0.889024,0.00704,0.237504,0.00592,0.004384,0.007872,0.012608,0.016384,0.587392,0.00992
+1110,1439.72,0.69458,1.23885,0.008512,0.236896,0.005024,0.006112,0.008,0.013824,0.01472,0.932192,0.013568
+1111,519.401,1.92529,0.921248,0.00832,0.233408,0.005664,0.004832,0.007488,0.013024,0.014304,0.582656,0.051552
+1112,643.115,1.55493,0.87312,0.008832,0.225312,0.005984,0.006304,0.007328,0.021312,0.014112,0.574944,0.008992
+1113,807.253,1.23877,0.864256,0.008192,0.227168,0.005536,0.004864,0.00768,0.0128,0.014336,0.574656,0.009024
+1114,763.325,1.31006,0.868352,0.008288,0.22928,0.005984,0.006304,0.008064,0.014176,0.020224,0.565792,0.01024
+1115,767.041,1.30371,1.52707,0.008192,0.492928,0.006784,0.005664,0.006624,0.014336,0.0144,0.966624,0.01152
+1116,510.532,1.95874,1.32096,0.009408,0.229824,0.005728,0.00656,0.022304,0.013984,0.01456,1.0063,0.012288
+1117,581.488,1.71973,0.876256,0.008256,0.223456,0.006144,0.00528,0.007008,0.013792,0.014464,0.588192,0.009664
+1118,786.482,1.27148,0.868096,0.008224,0.223232,0.00592,0.0064,0.007392,0.013056,0.026144,0.567776,0.009952
+1119,731.429,1.36719,0.87088,0.007744,0.228256,0.006144,0.005184,0.007104,0.013408,0.014816,0.57952,0.008704
+1120,592.079,1.68896,1.08912,0.010464,0.432128,0.006144,0.005568,0.00672,0.014368,0.030688,0.57344,0.0096
+1121,838.829,1.19214,1.08458,0.008224,0.432256,0.006144,0.0056,0.006688,0.014336,0.015552,0.586112,0.009664
+1122,683.578,1.46289,0.868288,0.008512,0.227328,0.006144,0.006112,0.006272,0.01424,0.014336,0.575488,0.009856
+1123,774.584,1.29102,0.866656,0.00816,0.228992,0.00496,0.005888,0.007328,0.013312,0.014336,0.57344,0.01024
+1124,779.893,1.28223,0.88896,0.008352,0.227296,0.006144,0.006144,0.008,0.013952,0.014624,0.59552,0.008928
+1125,562.483,1.77783,0.876672,0.010368,0.233472,0.006176,0.00512,0.007136,0.014336,0.014336,0.575488,0.01024
+1126,774.145,1.29175,1.07446,0.009856,0.430048,0.004512,0.005856,0.00768,0.0144,0.014304,0.578016,0.009792
+1127,704.749,1.41895,0.857152,0.008192,0.22512,0.005696,0.004704,0.007328,0.013152,0.014336,0.568992,0.009632
+1128,764.322,1.30835,0.880672,0.008256,0.22528,0.006112,0.006176,0.007456,0.013024,0.014336,0.589824,0.010208
+1129,770.359,1.2981,1.23699,0.008192,0.233472,0.006112,0.005824,0.006496,0.014048,0.014624,0.935872,0.012352
+1130,521.983,1.91577,0.874624,0.00832,0.229376,0.006144,0.005856,0.006432,0.014336,0.014368,0.579552,0.01024
+1131,633.958,1.57739,0.892928,0.008224,0.251552,0.005856,0.004704,0.007584,0.012896,0.014336,0.578752,0.009024
+1132,867.062,1.15332,0.868352,0.008192,0.231424,0.006048,0.00624,0.008192,0.013568,0.014496,0.569952,0.01024
+1133,762.756,1.31104,0.858432,0.008448,0.223712,0.005792,0.004448,0.007648,0.012832,0.01552,0.570208,0.009824
+1134,724.571,1.38013,1.68883,0.008192,0.231424,0.006176,0.006048,0.00624,0.014304,0.014336,1.38826,0.013856
+1135,490.951,2.03687,1.27386,0.008192,0.229376,0.005824,0.004416,0.007744,0.014016,0.014624,0.979424,0.01024
+1136,599.532,1.66797,0.874656,0.008544,0.226976,0.005728,0.00688,0.00736,0.01312,0.014336,0.581632,0.01008
+1137,738.151,1.35474,0.862208,0.00816,0.223264,0.006144,0.00528,0.007008,0.013664,0.014848,0.574624,0.009216
+1138,833.367,1.19995,0.882656,0.008608,0.239392,0.004928,0.00608,0.007808,0.013824,0.014368,0.577792,0.009856
+1139,732.606,1.36499,1.49085,0.007968,0.44384,0.006944,0.005536,0.006752,0.014368,0.01536,0.979168,0.010912
+1140,477.612,2.09375,0.875424,0.008448,0.235936,0.005824,0.005728,0.007008,0.013632,0.014688,0.575296,0.008864
+1141,593.795,1.68408,0.920384,0.009024,0.272416,0.006048,0.004256,0.008096,0.013632,0.014496,0.5832,0.009216
+1142,927.326,1.07837,0.883584,0.008736,0.226784,0.005024,0.006144,0.007328,0.013152,0.014336,0.591904,0.010176
+1143,654,1.52905,1.71261,0.008096,0.237728,0.005728,0.004928,0.007232,0.013248,0.014336,1.40902,0.012288
+1144,514.314,1.94434,1.29165,0.008448,0.227104,0.005696,0.004928,0.007808,0.013888,0.015168,0.998528,0.01008
+1145,593.107,1.68604,0.866848,0.008064,0.223872,0.00608,0.004288,0.007936,0.01248,0.015552,0.578304,0.010272
+1146,735.896,1.35889,0.86368,0.008256,0.224672,0.005824,0.006624,0.006592,0.014304,0.0144,0.573408,0.0096
+1147,851.559,1.17432,0.865376,0.008192,0.229376,0.006176,0.005536,0.00672,0.014144,0.014528,0.570592,0.010112
+1148,494.03,2.02417,0.886816,0.01168,0.232032,0.006144,0.006112,0.006208,0.014304,0.015584,0.58576,0.008992
+1149,660.752,1.51343,0.876416,0.008192,0.23088,0.005728,0.005056,0.007392,0.013088,0.0144,0.581568,0.010112
+1150,812.537,1.23071,0.88048,0.008512,0.223456,0.006144,0.006144,0.00784,0.013792,0.023424,0.581408,0.00976
+1151,729.345,1.37109,0.876768,0.007872,0.226976,0.004992,0.005824,0.007872,0.012928,0.014336,0.58576,0.010208
+1152,736.161,1.3584,1.69184,0.008288,0.230912,0.005696,0.005056,0.007744,0.012736,0.015584,1.39139,0.014432
+1153,484.619,2.06348,1.29245,0.007808,0.225504,0.004928,0.005888,0.006304,0.014368,0.014304,1.00109,0.012256
+1154,607.445,1.64624,0.868352,0.008192,0.222464,0.004928,0.007648,0.006624,0.01408,0.014432,0.579744,0.01024
+1155,804.241,1.24341,0.865824,0.00784,0.22144,0.005696,0.005024,0.00736,0.01312,0.014336,0.581376,0.009632
+1156,727.919,1.37378,0.88272,0.009472,0.240384,0.006144,0.005888,0.0064,0.014368,0.014304,0.577184,0.008576
+1157,494.686,2.02148,0.876544,0.01024,0.225024,0.005696,0.0048,0.007328,0.013152,0.01568,0.5856,0.009024
+1158,678.37,1.47412,0.869664,0.009472,0.22176,0.005696,0.005856,0.007072,0.01376,0.014816,0.58144,0.009792
+1159,775.024,1.29028,0.85824,0.008256,0.2208,0.00496,0.005856,0.006368,0.01424,0.014464,0.573408,0.009888
+1160,804.241,1.24341,0.864256,0.008192,0.220992,0.005696,0.006784,0.007424,0.013056,0.014464,0.578752,0.008896
+1161,621.737,1.6084,1.68214,0.006944,0.238752,0.004928,0.00608,0.007328,0.013152,0.014336,1.3783,0.01232
+1162,530.364,1.8855,1.29843,0.008192,0.226592,0.004928,0.006048,0.007488,0.012992,0.014336,1.00557,0.012288
+1163,599.971,1.66675,0.895008,0.008192,0.237568,0.006144,0.005632,0.008256,0.012736,0.014368,0.593312,0.0088
+1164,745.405,1.34155,0.87536,0.00848,0.225216,0.004896,0.006144,0.007424,0.013056,0.0144,0.585664,0.01008
+1165,816.261,1.2251,0.87056,0.008192,0.227328,0.00576,0.00448,0.007776,0.012704,0.01552,0.579712,0.009088
+1166,503.627,1.9856,0.889536,0.010592,0.23792,0.005888,0.005664,0.00688,0.01376,0.014528,0.58528,0.009024
+1167,789.667,1.26636,1.07878,0.008192,0.428032,0.006144,0.005312,0.006976,0.014368,0.014336,0.585696,0.009728
+1168,659.157,1.51709,0.86496,0.008512,0.221536,0.005856,0.006016,0.00656,0.014176,0.0144,0.57872,0.009184
+1169,787.087,1.27051,0.877568,0.008192,0.222688,0.005696,0.00512,0.007136,0.013312,0.014336,0.591616,0.009472
+1170,771.665,1.2959,1.68522,0.008192,0.226592,0.004928,0.007744,0.006496,0.014368,0.014336,1.38851,0.014048
+1171,361.71,2.76465,0.91424,0.007072,0.222368,0.00496,0.005856,0.022048,0.013056,0.014336,0.6144,0.010144
+1172,1089.36,0.917969,0.894496,0.00848,0.24576,0.006144,0.005952,0.006336,0.01424,0.014432,0.583424,0.009728
+1173,804.873,1.24243,0.872896,0.007008,0.223232,0.005952,0.005728,0.006752,0.013664,0.014848,0.585888,0.009824
+1174,737.752,1.35547,0.882688,0.008544,0.2248,0.006048,0.004928,0.007968,0.02464,0.014336,0.581632,0.009792
+1175,754.189,1.32593,1.49107,0.00784,0.448992,0.00816,0.005344,0.006976,0.014336,0.014336,0.974688,0.0104
+1176,543.164,1.84106,1.29638,0.009536,0.225312,0.005824,0.005088,0.00768,0.0128,0.014336,1.00557,0.01024
+1177,577.96,1.73022,0.862208,0.008192,0.221184,0.006176,0.005408,0.006848,0.013408,0.01424,0.577696,0.009056
+1178,794.568,1.25854,0.866944,0.008512,0.220832,0.004928,0.005984,0.007776,0.012704,0.01568,0.581312,0.009216
+1179,775.317,1.28979,1.23888,0.008192,0.221184,0.006144,0.0056,0.006688,0.013856,0.0144,0.949984,0.012832
+1180,522.049,1.91553,0.88352,0.008512,0.222912,0.004928,0.006144,0.008192,0.013536,0.014912,0.594144,0.01024
+1181,668.08,1.49683,0.860576,0.008384,0.220992,0.005664,0.004992,0.007264,0.013216,0.014336,0.575488,0.01024
+1182,609.342,1.64111,0.906752,0.008192,0.24976,0.005696,0.005728,0.006976,0.013504,0.021088,0.585984,0.009824
+1183,1081.31,0.924805,0.86016,0.008128,0.225376,0.006112,0.005248,0.00704,0.013472,0.014592,0.569952,0.01024
+1184,742.163,1.34741,1.68762,0.008416,0.22576,0.006112,0.005664,0.007712,0.01328,0.014336,1.39264,0.013696
+1185,490.774,2.0376,1.27488,0.007168,0.225312,0.005856,0.004352,0.007904,0.012576,0.01552,0.983904,0.012288
+1186,586.483,1.70508,0.863584,0.009344,0.220032,0.006144,0.005888,0.0064,0.01408,0.014624,0.577504,0.009568
+1187,795.649,1.25684,0.881056,0.007872,0.221472,0.005664,0.005056,0.007264,0.013248,0.014336,0.595968,0.010176
+1188,793.798,1.25977,0.88016,0.008192,0.226368,0.006944,0.005952,0.006496,0.014016,0.014432,0.588,0.00976
+1189,509.01,1.9646,0.868352,0.01024,0.225152,0.005664,0.004704,0.007296,0.013184,0.014336,0.577536,0.01024
+1190,509.643,1.96216,1.09184,0.008448,0.436224,0.006112,0.005696,0.006624,0.014368,0.014304,0.591136,0.008928
+1191,1302.38,0.767822,0.867264,0.007136,0.221152,0.006144,0.005184,0.007104,0.01376,0.01456,0.581984,0.01024
+1192,512.577,1.95093,0.949856,0.008384,0.26624,0.014336,0.007296,0.00704,0.028672,0.014336,0.584736,0.018816
+1193,986.038,1.01416,0.913408,0.008192,0.264096,0.005696,0.00464,0.007712,0.012768,0.014368,0.587072,0.008864
+1194,525.128,1.9043,0.8704,0.010368,0.22928,0.005856,0.005696,0.006848,0.013824,0.014176,0.575136,0.009216
+1195,605.917,1.65039,0.88544,0.008384,0.22752,0.005696,0.004896,0.006112,0.014368,0.014336,0.593888,0.01024
+1196,895.888,1.11621,0.882688,0.008192,0.224544,0.004928,0.006048,0.00752,0.01296,0.014336,0.59392,0.01024
+1197,737.885,1.35522,0.879744,0.008192,0.22224,0.006432,0.0048,0.007968,0.014176,0.028064,0.57824,0.009632
+1198,710.618,1.40723,1.07315,0.011456,0.422272,0.004544,0.006176,0.00736,0.014176,0.013248,0.58368,0.01024
+1199,648.204,1.54272,1.28445,0.007168,0.221184,0.006144,0.005632,0.006656,0.01408,0.014464,0.996608,0.012512
+1200,599.444,1.66821,0.868576,0.008416,0.221184,0.00576,0.006176,0.006496,0.014368,0.014304,0.581664,0.010208
+1201,809.486,1.23535,0.876352,0.008032,0.220896,0.006016,0.004672,0.007616,0.012864,0.014496,0.591712,0.010048
+1202,617.798,1.61865,0.89088,0.008192,0.239616,0.006176,0.006016,0.006272,0.014304,0.014336,0.585728,0.01024
+1203,609.252,1.64136,0.8824,0.01024,0.231488,0.00608,0.005696,0.006592,0.014272,0.0144,0.58368,0.009952
+1204,758.238,1.31885,1.08662,0.008384,0.444,0.005696,0.004768,0.00752,0.01296,0.014336,0.5792,0.00976
+1205,679.721,1.47119,0.8704,0.008192,0.223232,0.006144,0.005152,0.007136,0.013568,0.014624,0.583296,0.009056
+1206,786.936,1.27075,0.872608,0.008352,0.2208,0.005696,0.006944,0.006208,0.014304,0.014336,0.5872,0.008768
+1207,752.526,1.32886,1.2873,0.008192,0.22448,0.004928,0.006112,0.007712,0.013952,0.029536,0.978944,0.01344
+1208,508.504,1.96655,0.866304,0.00848,0.225184,0.004896,0.00592,0.007456,0.013056,0.014336,0.577216,0.00976
+1209,715.959,1.39673,0.871136,0.006976,0.22112,0.006112,0.005472,0.006816,0.013472,0.014368,0.587872,0.008928
+1210,800.469,1.24927,0.863392,0.00944,0.219936,0.006144,0.006144,0.007168,0.013312,0.014368,0.57728,0.0096
+1211,752.941,1.32812,0.867136,0.008128,0.22,0.006144,0.005664,0.006624,0.01392,0.014784,0.582944,0.008928
+1212,789.362,1.26685,1.73056,0.009472,0.224,0.005952,0.005696,0.006784,0.01424,0.014464,1.42704,0.022912
+1213,460.691,2.17065,1.29626,0.008192,0.233472,0.006176,0.005472,0.006784,0.014336,0.014336,0.995296,0.012192
+1214,588.844,1.69824,0.88096,0.008512,0.225344,0.006144,0.007552,0.006784,0.01376,0.014496,0.588192,0.010176
+1215,760.067,1.31567,0.866176,0.007936,0.224928,0.004928,0.005888,0.006272,0.01424,0.014368,0.577536,0.01008
+1216,778.707,1.28418,1.25181,0.008608,0.22496,0.005728,0.004928,0.00784,0.013696,0.014368,0.959392,0.012288
+1217,517.368,1.93286,0.897184,0.008288,0.251008,0.005056,0.005984,0.006336,0.014336,0.016352,0.579584,0.01024
+1218,781.829,1.27905,1.06102,0.008352,0.411648,0.006144,0.005856,0.006432,0.014336,0.014336,0.5848,0.00912
+1219,678.258,1.47437,0.87536,0.008352,0.221888,0.006112,0.005216,0.007104,0.013632,0.014624,0.589888,0.008544
+1220,788.754,1.26782,0.87392,0.008224,0.221152,0.00592,0.006368,0.00784,0.01264,0.015552,0.586528,0.009696
+1221,715.834,1.39697,1.6768,0.008032,0.22544,0.005856,0.004416,0.00784,0.012768,0.01536,1.38454,0.012544
+1222,435.05,2.29858,0.968704,0.008192,0.272192,0.004384,0.006048,0.007744,0.012736,0.016192,0.632224,0.008992
+1223,671.916,1.48828,0.899008,0.008192,0.249856,0.006144,0.005504,0.006784,0.013824,0.014464,0.584064,0.010176
+1224,778.559,1.28442,0.8704,0.008192,0.227328,0.00576,0.005664,0.00704,0.01376,0.014272,0.578144,0.01024
+1225,787.995,1.26904,0.871168,0.00816,0.224064,0.006112,0.005824,0.006496,0.014336,0.014304,0.581632,0.01024
+1226,512.064,1.95288,0.911392,0.010848,0.231552,0.006016,0.005696,0.00672,0.014016,0.014592,0.612288,0.009664
+1227,782.875,1.27734,1.11466,0.00784,0.464832,0.005056,0.005728,0.00656,0.014336,0.014336,0.58688,0.009088
+1228,678.258,1.47437,0.87232,0.008608,0.220416,0.004992,0.007808,0.006528,0.014336,0.014336,0.585632,0.009664
+1229,799.844,1.25024,0.860576,0.007904,0.21984,0.006016,0.005824,0.006592,0.014112,0.014592,0.575456,0.01024
+1230,742.702,1.34644,0.884256,0.009408,0.226112,0.006144,0.005856,0.006464,0.01408,0.01424,0.592192,0.00976
+1231,591.053,1.69189,0.878592,0.01024,0.222752,0.005696,0.005024,0.0072,0.01328,0.014336,0.590976,0.009088
+1232,800.313,1.24951,1.07523,0.008224,0.421056,0.00496,0.005888,0.006368,0.014368,0.014304,0.585152,0.014912
+1233,510.851,1.95752,0.932096,0.00784,0.275072,0.006112,0.005728,0.00656,0.023904,0.020192,0.577632,0.009056
+1234,937.085,1.06714,0.874848,0.008576,0.23168,0.006144,0.006112,0.007392,0.01312,0.01456,0.577312,0.009952
+1235,750.733,1.33203,1.70138,0.007904,0.249504,0.005824,0.005088,0.00816,0.01376,0.01488,1.38038,0.015872
+1236,456.531,2.19043,1.30867,0.008192,0.235552,0.006112,0.005792,0.006496,0.014112,0.014336,1.00579,0.012288
+1237,626.3,1.59668,0.868704,0.006816,0.22528,0.006144,0.005184,0.007104,0.0136,0.014656,0.58,0.00992
+1238,775.611,1.28931,0.864288,0.009504,0.22192,0.006144,0.006144,0.007264,0.013216,0.014336,0.575488,0.010272
+1239,776.346,1.28809,0.876544,0.007904,0.229216,0.006592,0.005536,0.006784,0.013696,0.014656,0.582976,0.009184
+1240,532.017,1.87964,0.887712,0.010752,0.225696,0.006144,0.005728,0.00656,0.014176,0.014368,0.595328,0.00896
+1241,758.8,1.31787,1.07792,0.006816,0.44032,0.005248,0.004992,0.007264,0.0144,0.014496,0.574144,0.01024
+1242,686.787,1.45605,0.868064,0.008448,0.220832,0.005696,0.00496,0.00784,0.013728,0.014496,0.582304,0.00976
+1243,481.486,2.0769,0.873728,0.008192,0.220416,0.004928,0.006112,0.007168,0.013312,0.014304,0.589472,0.009824
+1244,1217.24,0.821533,1.75514,0.00992,0.264256,0.005696,0.004928,0.00784,0.014112,0.014784,1.42134,0.012256
+1245,479.794,2.08423,1.32256,0.008096,0.229472,0.006144,0.00512,0.006912,0.012544,0.014336,1.02746,0.01248
+1246,584.642,1.71045,0.881504,0.00848,0.225312,0.005696,0.00512,0.007552,0.012896,0.014336,0.584832,0.01728
+1247,794.877,1.25806,0.87728,0.007008,0.223232,0.006144,0.00528,0.006848,0.012448,0.015648,0.59056,0.010112
+1248,742.298,1.34717,0.89072,0.008192,0.247808,0.00592,0.005696,0.006816,0.013888,0.014368,0.577952,0.01008
+1249,779.745,1.28247,1.48832,0.007904,0.441984,0.007136,0.005344,0.006944,0.014336,0.014336,0.98016,0.010176
+1250,505.305,1.979,1.06698,0.008192,0.411648,0.006144,0.005888,0.0064,0.014336,0.014336,0.589824,0.010208
+1251,698.38,1.43188,0.868352,0.008192,0.22528,0.005952,0.006016,0.006464,0.014336,0.014336,0.578784,0.008992
+1252,759.221,1.31714,0.866336,0.008352,0.223104,0.006112,0.005824,0.006464,0.014336,0.014336,0.578752,0.009056
+1253,544.826,1.83545,0.950272,0.008192,0.270336,0.00592,0.004352,0.016352,0.030432,0.014624,0.591776,0.008288
+1254,584.642,1.71045,1.29923,0.010848,0.230688,0.005024,0.006144,0.007424,0.021248,0.014336,0.991232,0.012288
+1255,622.114,1.60742,0.88016,0.008192,0.22528,0.005696,0.004544,0.00768,0.0128,0.014464,0.591648,0.009856
+1256,794.723,1.2583,0.873504,0.008192,0.223232,0.005824,0.005664,0.006944,0.014336,0.014336,0.585472,0.009504
+1257,789.667,1.26636,0.892928,0.008192,0.231424,0.007456,0.004832,0.006144,0.014336,0.014336,0.59728,0.008928
+1258,495.524,2.01807,0.898208,0.011584,0.234176,0.006144,0.00592,0.006368,0.014016,0.014592,0.595808,0.0096
+1259,773.998,1.29199,1.08733,0.00784,0.434624,0.004448,0.006048,0.007552,0.014368,0.014336,0.588352,0.00976
+1260,709.879,1.40869,0.874048,0.009344,0.22208,0.006144,0.005824,0.006464,0.013888,0.014208,0.586304,0.009792
+1261,745.948,1.34058,0.869472,0.007872,0.223328,0.005696,0.004768,0.00752,0.01296,0.014336,0.583392,0.0096
+1262,737.354,1.3562,1.2679,0.008384,0.225056,0.005984,0.005888,0.006784,0.014336,0.014336,0.974848,0.012288
+1263,551.13,1.81445,0.873248,0.008448,0.227872,0.00576,0.00448,0.008192,0.014048,0.01456,0.579648,0.01024
+1264,533.264,1.87524,0.9216,0.008256,0.264128,0.005984,0.006304,0.00736,0.013152,0.022496,0.58368,0.01024
+1265,1040.39,0.961182,0.872352,0.008064,0.22512,0.005696,0.005056,0.008192,0.012512,0.014112,0.58368,0.00992
+1266,778.115,1.28516,0.882688,0.009344,0.22976,0.005696,0.005088,0.00816,0.013792,0.014496,0.586112,0.01024
+1267,785.276,1.27344,1.70931,0.008192,0.233024,0.005696,0.004992,0.007456,0.013024,0.014336,1.41034,0.012256
+1268,442.142,2.26172,1.31885,0.009632,0.241856,0.005664,0.004992,0.00784,0.013792,0.014432,1.00835,0.012288
+1269,622.776,1.60571,0.885216,0.007936,0.230112,0.005888,0.004352,0.008096,0.013472,0.014592,0.591552,0.009216
+1270,722.526,1.38403,0.873376,0.008576,0.225408,0.005696,0.00496,0.007776,0.012704,0.014336,0.58368,0.01024
+1271,790.734,1.26465,0.895008,0.008192,0.24128,0.005664,0.004992,0.00784,0.013728,0.01328,0.58976,0.010272
+1272,562.251,1.77856,0.887744,0.010784,0.229792,0.006144,0.005664,0.007936,0.013024,0.015424,0.58464,0.014336
+1273,736.426,1.35791,1.0793,0.007904,0.425344,0.005024,0.005824,0.006464,0.015392,0.01456,0.588544,0.01024
+1274,695.18,1.43848,0.878592,0.008192,0.223232,0.006144,0.005728,0.00656,0.013536,0.014336,0.590624,0.01024
+1275,727.919,1.37378,0.90112,0.008192,0.237152,0.005856,0.004832,0.008032,0.013792,0.01456,0.598464,0.01024
+1276,744.457,1.34326,1.26771,0.009376,0.24048,0.00608,0.005792,0.00656,0.014336,0.014336,0.958496,0.012256
+1277,523.317,1.91089,0.929152,0.008192,0.251616,0.005696,0.004832,0.007424,0.013056,0.0144,0.614336,0.0096
+1278,658.203,1.51929,0.886304,0.008288,0.225184,0.006144,0.00592,0.006368,0.014336,0.014336,0.595968,0.00976
+1279,747.309,1.33813,0.87744,0.00704,0.229344,0.005856,0.004384,0.007712,0.012768,0.014336,0.586976,0.009024
+1280,795.494,1.25708,0.878528,0.008576,0.22736,0.00592,0.006368,0.007392,0.013088,0.014336,0.585728,0.00976
+1281,795.031,1.25781,1.49046,0.008064,0.441952,0.006688,0.00576,0.006528,0.014336,0.01552,0.980832,0.010784
+1282,521.983,1.91577,1.29446,0.008288,0.229312,0.005888,0.006368,0.008,0.013824,0.01504,0.9984,0.009344
+1283,574.635,1.74023,0.875616,0.008192,0.22448,0.004928,0.00576,0.006496,0.013632,0.014688,0.587904,0.009536
+1284,784.825,1.27417,0.873952,0.008448,0.221216,0.006112,0.006144,0.007936,0.013568,0.015072,0.58592,0.009536
+1285,601.38,1.66284,0.920736,0.008192,0.256032,0.006144,0.005472,0.016672,0.024928,0.014336,0.579296,0.009664
+1286,614.185,1.62817,0.912352,0.010816,0.244128,0.006144,0.00608,0.00784,0.014048,0.0144,0.598656,0.01024
+1287,667.21,1.49878,0.870144,0.007968,0.223936,0.005312,0.004928,0.00784,0.01264,0.015648,0.582336,0.009536
+1288,798.752,1.25195,0.876544,0.008192,0.221184,0.006144,0.006144,0.008128,0.012352,0.014432,0.591104,0.008864
+1289,816.587,1.22461,0.864256,0.007968,0.221408,0.005856,0.005696,0.00688,0.013664,0.014752,0.579008,0.009024
+1290,674.128,1.4834,1.57264,0.008192,0.524288,0.007808,0.00448,0.007776,0.013728,0.014688,0.979616,0.012064
+1291,530.227,1.88599,1.2945,0.007744,0.22384,0.006048,0.006272,0.007584,0.012864,0.014464,1.00339,0.012288
+1292,574.877,1.7395,0.883552,0.008448,0.221792,0.005952,0.005728,0.006752,0.013856,0.014656,0.597632,0.008736
+1293,780.042,1.28198,0.868672,0.007904,0.221504,0.00496,0.005888,0.006176,0.014016,0.014656,0.58368,0.009888
+1294,767.329,1.30322,0.896448,0.009344,0.228,0.004352,0.006112,0.007168,0.013312,0.014336,0.60416,0.009664
+1295,471.075,2.1228,0.887104,0.01056,0.23888,0.004928,0.005888,0.006304,0.014208,0.014368,0.583072,0.008896
+1296,670.925,1.49048,0.87664,0.008608,0.225856,0.006144,0.006016,0.006304,0.014304,0.014336,0.58528,0.009792
+1297,777.377,1.28638,0.868736,0.00784,0.220096,0.006048,0.00432,0.007808,0.012544,0.015648,0.584416,0.010016
+1298,818.872,1.22119,0.89088,0.008192,0.222528,0.00496,0.005984,0.006144,0.014336,0.014336,0.60416,0.01024
+1299,682.439,1.46533,1.69731,0.008192,0.22528,0.006016,0.004288,0.008128,0.014048,0.014592,1.40435,0.012416
+1300,494.865,2.02075,1.26589,0.008416,0.222912,0.005696,0.00496,0.007936,0.013632,0.014368,0.97568,0.012288
+1301,602.796,1.65894,0.873984,0.00816,0.221248,0.006112,0.005152,0.007072,0.0136,0.01456,0.588352,0.009728
+1302,789.667,1.26636,0.869664,0.009696,0.22128,0.00576,0.006528,0.006592,0.014176,0.014304,0.581632,0.009696
+1303,712.224,1.40405,0.872448,0.008192,0.222752,0.005696,0.005024,0.007328,0.013152,0.014336,0.587008,0.00896
+1304,674.461,1.48267,1.09114,0.010432,0.437888,0.004448,0.00592,0.006368,0.014336,0.01536,0.586752,0.009632
+1305,317.84,3.14624,1.37587,0.007776,0.283424,0.006016,0.005632,0.006784,0.013408,0.013216,1.02992,0.009696
+1306,1264.2,0.791016,0.884544,0.00944,0.232256,0.006112,0.005728,0.00656,0.014336,0.01424,0.585824,0.010048
+1307,746.9,1.33887,0.882688,0.008192,0.232768,0.004896,0.00592,0.006304,0.013824,0.014528,0.586272,0.009984
+1308,538.027,1.85864,1.09658,0.010848,0.421184,0.005088,0.005248,0.00704,0.024544,0.014368,0.598016,0.01024
+1309,684.378,1.46118,1.11411,0.008192,0.460352,0.005696,0.004992,0.007232,0.014304,0.014816,0.589888,0.00864
+1310,671.696,1.48877,0.899072,0.01024,0.231424,0.00608,0.005696,0.008448,0.012544,0.014336,0.601376,0.008928
+1311,731.951,1.36621,0.88368,0.007136,0.233472,0.006144,0.005664,0.006624,0.013952,0.014528,0.58592,0.01024
+1312,744.321,1.34351,1.2575,0.008448,0.237248,0.005696,0.00512,0.007648,0.012832,0.014336,0.95232,0.013856
+1313,533.542,1.87427,0.880864,0.007936,0.232,0.006144,0.005504,0.006784,0.01376,0.0144,0.584192,0.010144
+1314,575.2,1.73853,0.919136,0.008416,0.268256,0.005696,0.004992,0.008064,0.013984,0.014304,0.585824,0.0096
+1315,1000.73,0.999268,0.893504,0.00784,0.230208,0.005888,0.004448,0.008192,0.014336,0.014336,0.599104,0.009152
+1316,692.594,1.44385,0.900352,0.008192,0.249856,0.006144,0.00608,0.006208,0.014336,0.01536,0.584544,0.009632
+1317,812.698,1.23047,1.26566,0.008192,0.243712,0.006016,0.004288,0.007968,0.013728,0.014464,0.95456,0.012736
+1318,519.336,1.92554,1.2968,0.008448,0.229536,0.006144,0.005728,0.007616,0.01328,0.015456,0.998304,0.012288
+1319,594.917,1.68091,0.880672,0.008192,0.229408,0.006016,0.004288,0.007904,0.012576,0.015584,0.587776,0.008928
+1320,755.162,1.32422,0.874496,0.008384,0.22512,0.006112,0.005888,0.007488,0.01328,0.014304,0.585056,0.008864
+1321,755.72,1.32324,0.901152,0.00688,0.232768,0.00496,0.005856,0.006272,0.014336,0.014336,0.606144,0.0096
+1322,722.654,1.38379,1.48355,0.008448,0.442624,0.007968,0.00448,0.007776,0.014048,0.014784,0.973056,0.010368
+1323,529.609,1.88818,1.07514,0.009184,0.426976,0.006144,0.004384,0.007904,0.014336,0.014336,0.583264,0.008608
+1324,557.81,1.79272,0.906688,0.008576,0.24576,0.005728,0.005728,0.006976,0.013536,0.01472,0.596032,0.009632
+1325,589.607,1.69604,0.94784,0.007968,0.29104,0.005536,0.004928,0.007904,0.01344,0.014784,0.592384,0.009856
+1326,779.745,1.28247,1.48275,0.009408,0.440448,0.006848,0.005664,0.006624,0.014304,0.014368,0.97472,0.010368
+1327,467.58,2.13867,1.2937,0.008224,0.231264,0.004416,0.007136,0.007008,0.013824,0.014624,0.997056,0.010144
+1328,695.534,1.43774,0.883456,0.008416,0.233984,0.005728,0.00576,0.006976,0.013984,0.0144,0.583968,0.01024
+1329,750.458,1.33252,0.882688,0.008192,0.228448,0.005056,0.00576,0.006496,0.014272,0.0144,0.589824,0.01024
+1330,739.751,1.35181,1.26566,0.009536,0.237536,0.004928,0.006048,0.007456,0.013024,0.015424,0.958976,0.012736
+1331,535.355,1.86792,0.881216,0.007904,0.233696,0.00496,0.005856,0.00624,0.01424,0.0144,0.584896,0.009024
+1332,664.073,1.50586,0.92128,0.009824,0.256416,0.006144,0.006144,0.007168,0.013312,0.014336,0.598016,0.00992
+1333,774.438,1.29126,0.883104,0.008352,0.23024,0.006176,0.005632,0.008128,0.012864,0.015776,0.586144,0.009792
+1334,645.141,1.55005,0.878176,0.00832,0.230688,0.004928,0.007264,0.006976,0.013696,0.014176,0.582432,0.009696
+1335,795.031,1.25781,1.55706,0.007872,0.515936,0.007168,0.005312,0.006976,0.014336,0.014336,0.974848,0.010272
+1336,495.284,2.01904,1.31302,0.00848,0.227648,0.006144,0.005664,0.006624,0.014208,0.014464,1.01549,0.014304
+1337,656.831,1.52246,0.878272,0.008192,0.228352,0.00512,0.005696,0.007712,0.013216,0.014336,0.585728,0.00992
+1338,763.182,1.3103,0.877632,0.009248,0.224224,0.005728,0.005664,0.00704,0.013792,0.014496,0.587968,0.009472
+1339,771.23,1.29663,0.893056,0.00848,0.2296,0.00576,0.00448,0.007808,0.012672,0.015456,0.598944,0.009856
+1340,446.187,2.24121,0.956416,0.01024,0.24896,0.004992,0.006144,0.00736,0.01312,0.014336,0.585728,0.065536
+1341,669.39,1.4939,0.881728,0.008192,0.22528,0.006144,0.005344,0.006944,0.014336,0.014336,0.591744,0.009408
+1342,721.381,1.38623,0.87776,0.00944,0.223168,0.00496,0.006144,0.006144,0.014112,0.014336,0.589856,0.0096
+1343,819.364,1.22046,0.883712,0.008192,0.22672,0.005952,0.004896,0.007456,0.013024,0.014336,0.593728,0.009408
+1344,729.345,1.37109,1.73261,0.00832,0.2552,0.004928,0.005984,0.007584,0.012896,0.014336,1.41107,0.012288
+1345,466.037,2.14575,1.30813,0.009376,0.267104,0.006144,0.005568,0.00672,0.01392,0.014464,0.974336,0.010496
+1346,592.85,1.68677,0.876544,0.008192,0.22528,0.006176,0.005792,0.006464,0.013984,0.01472,0.585696,0.01024
+1347,783.024,1.2771,0.873984,0.007968,0.223456,0.006144,0.005536,0.006752,0.013952,0.01472,0.585728,0.009728
+1348,769.057,1.30029,1.26266,0.009504,0.232064,0.005696,0.005664,0.006592,0.012864,0.014336,0.96256,0.013376
+1349,518.744,1.92773,0.877312,0.00832,0.227968,0.006144,0.00528,0.007008,0.014176,0.014496,0.58368,0.01024
+1350,708.038,1.41235,0.86944,0.008192,0.224544,0.004928,0.007744,0.006496,0.014176,0.014528,0.579264,0.009568
+1351,771.375,1.29639,0.874976,0.008288,0.223648,0.006048,0.004288,0.008,0.013984,0.0144,0.58608,0.01024
+1352,769.202,1.30005,0.888832,0.009472,0.236288,0.006144,0.007552,0.006784,0.014048,0.014656,0.585312,0.008576
+1353,764.464,1.30811,1.49504,0.008192,0.442368,0.007712,0.004576,0.007712,0.014496,0.014528,0.984896,0.01056
+1354,483.932,2.06641,1.29792,0.008192,0.23552,0.006144,0.006112,0.006176,0.014336,0.014336,0.994688,0.012416
+1355,636.519,1.57104,0.883776,0.007904,0.225024,0.005952,0.004832,0.007392,0.013088,0.014336,0.595776,0.009472
+1356,775.17,1.29004,0.880416,0.008192,0.22528,0.00608,0.006208,0.008192,0.013664,0.01488,0.587904,0.010016
+1357,794.26,1.25903,0.88224,0.007808,0.225856,0.005952,0.004288,0.00784,0.012608,0.015584,0.592608,0.009696
+1358,525.465,1.90308,0.890592,0.01136,0.228256,0.006144,0.006016,0.007936,0.013856,0.015008,0.592064,0.009952
+1359,759.644,1.31641,1.08358,0.007808,0.431808,0.004992,0.005376,0.006912,0.014336,0.014336,0.587776,0.01024
+1360,492.9,2.02881,0.874496,0.008192,0.221184,0.006048,0.00528,0.007104,0.013664,0.014464,0.58976,0.0088
+1361,1380.05,0.724609,0.869792,0.007968,0.221408,0.006144,0.005312,0.006912,0.01344,0.01472,0.584256,0.009632
+1362,677.473,1.47607,1.71418,0.008384,0.223072,0.006048,0.005728,0.00672,0.01424,0.015616,1.42211,0.012256
+1363,511.744,1.9541,0.922016,0.008192,0.225728,0.006144,0.0056,0.006656,0.01408,0.014528,0.632,0.009088
+1364,606.096,1.6499,0.873408,0.00864,0.221696,0.006176,0.005792,0.006464,0.014048,0.01424,0.587168,0.009184
+1365,574.232,1.74146,0.952992,0.006976,0.30496,0.006144,0.005312,0.006976,0.01408,0.014592,0.584864,0.009088
+1366,1041.71,0.959961,0.893312,0.008576,0.245728,0.006144,0.005728,0.00656,0.014368,0.014304,0.582848,0.009056
+1367,650.882,1.53638,1.06906,0.01024,0.41984,0.006144,0.005184,0.007104,0.014336,0.014368,0.58272,0.00912
+1368,697.548,1.43359,1.29843,0.008192,0.224896,0.005632,0.004992,0.007616,0.012864,0.01552,1.00643,0.012288
+1369,595.695,1.67871,0.876896,0.007808,0.223456,0.005696,0.005088,0.008,0.013536,0.014592,0.58848,0.01024
+1370,788.906,1.26758,0.86896,0.008672,0.22304,0.005984,0.005696,0.006656,0.013952,0.014528,0.580192,0.01024
+1371,691.075,1.44702,0.904672,0.008192,0.227328,0.006144,0.005536,0.006752,0.013696,0.014944,0.599488,0.022592
+1372,550.316,1.81714,0.886784,0.01184,0.224768,0.005056,0.006144,0.008,0.0136,0.014432,0.592704,0.01024
+1373,673.241,1.48535,0.871456,0.008192,0.22688,0.005696,0.005024,0.007392,0.013056,0.014368,0.581344,0.009504
+1374,760.067,1.31567,0.867808,0.008192,0.222368,0.00496,0.005952,0.007968,0.012704,0.014336,0.581632,0.009696
+1375,801.252,1.24805,0.864256,0.008192,0.221184,0.006016,0.004256,0.00784,0.012608,0.015488,0.578432,0.01024
+1376,534.796,1.86987,0.956,0.008608,0.280608,0.006112,0.005824,0.006464,0.02048,0.032768,0.585632,0.009504
+1377,616.032,1.62329,1.35373,0.01024,0.26624,0.006016,0.004288,0.008,0.012416,0.014336,1.0177,0.014496
+1378,534.796,1.86987,0.897024,0.009216,0.233728,0.004928,0.00608,0.00752,0.01296,0.014336,0.599488,0.008768
+1379,860.143,1.1626,0.88528,0.007136,0.235232,0.005696,0.004832,0.008096,0.013792,0.01472,0.585984,0.009792
+1380,605.648,1.65112,0.921664,0.00848,0.26624,0.006144,0.006144,0.0072,0.01328,0.014336,0.589824,0.010016
+1381,643.115,1.55493,0.89408,0.01024,0.243232,0.005696,0.005024,0.007232,0.013248,0.014336,0.585184,0.009888
+1382,766.324,1.30493,1.08278,0.009344,0.432544,0.004576,0.005792,0.006496,0.014336,0.014336,0.585568,0.009792
+1383,670.706,1.49097,0.87888,0.007776,0.227168,0.00512,0.005696,0.007744,0.012608,0.01424,0.588448,0.01008
+1384,789.514,1.2666,0.87664,0.008288,0.227328,0.006144,0.007456,0.006912,0.013792,0.01424,0.58224,0.01024
+1385,783.174,1.27686,1.26378,0.007776,0.231232,0.004928,0.005888,0.007744,0.012928,0.014336,0.966656,0.012288
+1386,524.657,1.90601,0.884736,0.008544,0.235328,0.0056,0.00496,0.007648,0.0128,0.014336,0.585728,0.009792
+1387,654.418,1.52808,0.876544,0.008192,0.226848,0.005664,0.005056,0.006176,0.014304,0.014336,0.585728,0.01024
+1388,792.11,1.26245,0.878496,0.009504,0.221568,0.005696,0.004928,0.007648,0.0128,0.014336,0.591872,0.010144
+1389,788.906,1.26758,0.872096,0.008192,0.22288,0.005696,0.004896,0.00736,0.01312,0.014336,0.58576,0.009856
+1390,709.387,1.40967,1.76083,0.008448,0.266272,0.005984,0.005728,0.006688,0.014144,0.014528,1.42669,0.012352
+1391,476.002,2.10083,1.33277,0.008192,0.249568,0.005856,0.005856,0.007008,0.013504,0.014816,1.01798,0.009984
+1392,565.902,1.76709,0.924192,0.008512,0.258272,0.006176,0.005952,0.006304,0.014336,0.022528,0.593312,0.0088
+1393,764.322,1.30835,0.868416,0.00784,0.221536,0.006144,0.005536,0.006752,0.013664,0.014528,0.58384,0.008576
+1394,719.354,1.39014,0.881056,0.008576,0.235552,0.006144,0.006144,0.006176,0.014304,0.014336,0.579584,0.01024
+1395,479.457,2.08569,0.903648,0.010528,0.233664,0.006144,0.005632,0.006656,0.013824,0.014816,0.602144,0.01024
+1396,677.249,1.47656,0.869984,0.00832,0.224512,0.004928,0.005952,0.007584,0.013952,0.014752,0.580128,0.009856
+1397,787.541,1.26978,0.878592,0.008192,0.221184,0.005984,0.004288,0.007392,0.013056,0.014336,0.59392,0.01024
+1398,820.513,1.21875,0.881248,0.008544,0.221248,0.005664,0.004768,0.007904,0.012672,0.015328,0.58608,0.01904
+1399,462.564,2.16187,1.79632,0.007776,0.293504,0.006144,0.005408,0.00688,0.016416,0.02864,1.41926,0.012288
+1400,647.896,1.54346,1.08141,0.008512,0.426688,0.00576,0.00448,0.007744,0.014208,0.014688,0.589664,0.009664
+1401,698.618,1.4314,0.879616,0.008224,0.224192,0.005824,0.004448,0.007968,0.013792,0.014464,0.591776,0.008928
+1402,740.553,1.35034,0.886848,0.008192,0.223232,0.00608,0.005696,0.018176,0.01424,0.014336,0.588128,0.008768
+1403,718.723,1.39136,1.26134,0.008512,0.223168,0.005664,0.004864,0.007392,0.013088,0.014336,0.970752,0.013568
+1404,565.199,1.76929,0.8728,0.008544,0.22528,0.006176,0.005824,0.006432,0.014016,0.014272,0.583104,0.009152
+1405,698.142,1.43237,0.875872,0.008032,0.223136,0.005696,0.0048,0.007392,0.013088,0.014336,0.589728,0.009664
+1406,777.377,1.28638,0.870624,0.008384,0.221184,0.006144,0.005952,0.00736,0.013312,0.014336,0.58368,0.010272
+1407,804.715,1.24268,0.868768,0.006944,0.219072,0.006176,0.006112,0.0072,0.01328,0.014336,0.585728,0.00992
+1408,699.095,1.43042,1.68403,0.008512,0.225472,0.005696,0.004928,0.007872,0.014464,0.014368,1.39034,0.012384
+1409,500.917,1.99634,1.26976,0.008192,0.221184,0.006144,0.005344,0.006976,0.0136,0.01504,0.980992,0.012288
+1410,607.535,1.646,0.888864,0.008192,0.223232,0.006144,0.006112,0.008032,0.013856,0.014592,0.599712,0.008992
+1411,754.745,1.32495,0.874496,0.008192,0.22112,0.005728,0.004576,0.00768,0.0128,0.014336,0.589824,0.01024
+1412,736.029,1.35864,0.875616,0.008192,0.221184,0.006176,0.006112,0.008064,0.0136,0.014592,0.588064,0.009632
+1413,493.911,2.02466,0.882688,0.01024,0.232832,0.004928,0.00592,0.006176,0.014336,0.014336,0.58368,0.01024
+1414,397.863,2.51343,1.01456,0.008416,0.328256,0.006112,0.005472,0.006848,0.022528,0.030304,0.597952,0.008672
+1415,1447.35,0.690918,0.868064,0.008224,0.222496,0.004928,0.005888,0.006272,0.014336,0.014368,0.5816,0.009952
+1416,805.031,1.24219,0.876544,0.009408,0.2216,0.005696,0.006496,0.006656,0.014336,0.014336,0.587776,0.01024
+1417,711.111,1.40625,1.51341,0.008192,0.443776,0.006784,0.02048,0.008192,0.014336,0.014368,0.987104,0.010176
+1418,537.674,1.85986,1.31386,0.009472,0.221536,0.005696,0.006944,0.006208,0.014336,0.014336,1.0217,0.013632
+1419,592.336,1.68823,0.869376,0.007136,0.225312,0.006112,0.006144,0.007552,0.012928,0.014336,0.580896,0.00896
+1420,758.238,1.31885,0.879104,0.008512,0.221344,0.006144,0.007232,0.007104,0.013792,0.01488,0.591232,0.008864
+1421,736.293,1.35815,1.28224,0.00784,0.223232,0.00496,0.005856,0.006304,0.014336,0.015616,0.990976,0.01312
+1422,545.116,1.83447,0.878592,0.009504,0.223968,0.006144,0.006144,0.00736,0.013152,0.014304,0.587776,0.01024
+1423,676.577,1.47803,0.874848,0.008192,0.221216,0.006112,0.005504,0.006784,0.013888,0.014592,0.5896,0.00896
+1424,776.346,1.28809,0.875616,0.009568,0.221376,0.005664,0.006208,0.00704,0.013632,0.014528,0.588,0.0096
+1425,696.48,1.43579,0.906016,0.00832,0.248448,0.005824,0.004416,0.007808,0.012672,0.015456,0.5928,0.010272
+1426,736.558,1.35767,1.56467,0.008192,0.51792,0.006368,0.006144,0.007648,0.012832,0.015392,0.979488,0.010688
+1427,514.379,1.94409,1.32502,0.00832,0.254144,0.006144,0.005216,0.007072,0.013696,0.01472,1.00173,0.013984
+1428,604.576,1.65405,0.8704,0.009312,0.22416,0.006144,0.006144,0.00768,0.0128,0.014336,0.58096,0.008864
+1429,753.773,1.32666,0.871136,0.008192,0.223552,0.005696,0.004928,0.007328,0.013152,0.015488,0.584032,0.008768
+1430,748.812,1.33545,0.87792,0.008352,0.22432,0.005056,0.007648,0.006688,0.014048,0.014624,0.587456,0.009728
+1431,665.151,1.50342,1.06922,0.010368,0.42176,0.00576,0.00448,0.007776,0.014336,0.014688,0.581248,0.0088
+1432,650.882,1.53638,1.33744,0.008288,0.319264,0.005696,0.004928,0.00784,0.01248,0.015552,0.953152,0.01024
+1433,605.648,1.65112,0.863008,0.008064,0.220064,0.006144,0.005792,0.006528,0.014016,0.014304,0.577856,0.01024
+1434,806.935,1.23926,0.877888,0.008192,0.221184,0.006144,0.00592,0.006368,0.014144,0.014432,0.591936,0.009568
+1435,709.141,1.41016,1.69421,0.008224,0.221664,0.006176,0.005216,0.00704,0.01376,0.014528,1.40432,0.01328
+1436,478.393,2.09033,0.91136,0.008192,0.22528,0.005856,0.006432,0.007904,0.012576,0.015584,0.619296,0.01024
+1437,650.262,1.53784,0.8912,0.00784,0.221888,0.006112,0.005504,0.006784,0.01424,0.0144,0.598048,0.016384
+1438,766.611,1.30444,0.864064,0.008192,0.223232,0.005696,0.005696,0.00704,0.013888,0.014144,0.57616,0.010016
+1439,782.426,1.27808,0.876736,0.00784,0.219584,0.005664,0.00464,0.007744,0.029024,0.014432,0.579136,0.008672
+1440,655.255,1.52612,1.53974,0.008256,0.464896,0.007936,0.004384,0.014208,0.013952,0.014816,1.00074,0.01056
+1441,534.935,1.86938,1.3273,0.008192,0.291136,0.006144,0.005184,0.007104,0.0136,0.014528,0.970848,0.01056
+1442,610.979,1.63672,0.872704,0.008448,0.22112,0.005952,0.005792,0.006784,0.013856,0.01456,0.585984,0.010208
+1443,807.253,1.23877,0.86576,0.008256,0.220608,0.004928,0.00592,0.00624,0.014304,0.014336,0.581408,0.00976
+1444,667.862,1.49731,1.68147,0.00928,0.222144,0.005856,0.005472,0.007104,0.013728,0.014336,1.3912,0.012352
+1445,422.966,2.36426,0.913728,0.008096,0.221728,0.005984,0.006016,0.006432,0.01408,0.014272,0.627008,0.010112
+1446,675.908,1.47949,0.950848,0.017344,0.284064,0.005696,0.00512,0.016384,0.014272,0.0144,0.58368,0.009888
+1447,789.971,1.26587,0.878688,0.008128,0.224032,0.005696,0.004704,0.008064,0.013632,0.014528,0.590112,0.009792
+1448,716.334,1.396,0.888832,0.008256,0.241056,0.00464,0.006144,0.007808,0.012672,0.014336,0.58368,0.01024
+1449,819.2,1.2207,1.49475,0.008192,0.442304,0.007328,0.005024,0.0072,0.0208,0.01456,0.978528,0.010816
+1450,536.266,1.86475,1.08544,0.008224,0.428,0.006176,0.006112,0.007488,0.012992,0.01552,0.590688,0.01024
+1451,660.965,1.51294,0.874176,0.008192,0.220992,0.005728,0.004704,0.007488,0.012992,0.014336,0.589824,0.00992
+1452,787.238,1.27026,0.871072,0.008608,0.221088,0.005696,0.006176,0.00688,0.013792,0.014592,0.585184,0.009056
+1453,783.923,1.27563,1.25747,0.008192,0.223008,0.005696,0.004768,0.007424,0.013056,0.014368,0.968416,0.012544
+1454,518.941,1.927,0.885856,0.009632,0.222848,0.005088,0.006144,0.006176,0.014304,0.014368,0.597728,0.009568
+1455,664.611,1.50464,0.874528,0.008064,0.221568,0.005664,0.004832,0.007296,0.013152,0.014496,0.589664,0.009792
+1456,816.587,1.22461,0.866048,0.008448,0.222528,0.004928,0.006048,0.008,0.013824,0.01456,0.577984,0.009728
+1457,765.321,1.30664,0.868736,0.00816,0.223552,0.005728,0.004608,0.008032,0.012448,0.015488,0.58048,0.01024
+1458,842.625,1.18677,1.69469,0.008576,0.221696,0.00608,0.006144,0.008,0.013696,0.014624,1.40342,0.012448
+1459,458.833,2.17944,1.27805,0.008352,0.223264,0.006624,0.00576,0.006528,0.01424,0.0144,0.986592,0.012288
+1460,588.675,1.69873,0.872096,0.008192,0.221088,0.005696,0.005664,0.006816,0.01264,0.01536,0.586752,0.009888
+1461,787.087,1.27051,0.863936,0.008224,0.221152,0.005792,0.004448,0.00768,0.0128,0.014496,0.579424,0.00992
+1462,797.974,1.25317,0.874496,0.008192,0.222912,0.005696,0.004928,0.007904,0.01376,0.01424,0.586624,0.01024
+1463,505.991,1.97632,0.875936,0.01024,0.225024,0.005696,0.0048,0.007456,0.013024,0.014336,0.585728,0.009632
+1464,762.33,1.31177,1.08634,0.009056,0.438272,0.005952,0.004288,0.008,0.013824,0.014464,0.583648,0.008832
+1465,690.725,1.44775,0.872032,0.008192,0.221184,0.005664,0.004576,0.007936,0.012544,0.014336,0.587776,0.009824
+1466,709.633,1.40918,0.8704,0.009536,0.225984,0.005984,0.006304,0.007584,0.012896,0.014336,0.578592,0.009184
+1467,735.236,1.36011,1.24742,0.008064,0.221312,0.006144,0.005184,0.006848,0.013856,0.015072,0.958464,0.01248
+1468,544.608,1.83618,0.872192,0.00832,0.2272,0.005536,0.006208,0.006688,0.014048,0.014528,0.57968,0.009984
+1469,657.253,1.52148,0.872128,0.008064,0.223392,0.005696,0.004672,0.007616,0.012864,0.014336,0.585728,0.00976
+1470,779.596,1.28271,0.867008,0.008384,0.2216,0.005696,0.005696,0.006688,0.0128,0.01568,0.581632,0.008832
+1471,803.925,1.2439,0.868448,0.008064,0.221568,0.005696,0.004736,0.007392,0.01312,0.014304,0.58368,0.009888
+1472,714.086,1.40039,1.50659,0.00944,0.453408,0.007776,0.005696,0.007008,0.014048,0.014528,0.983136,0.011552
+1473,537.956,1.85889,1.29235,0.00784,0.2216,0.006176,0.00528,0.006976,0.013792,0.014688,1.00362,0.012384
+1474,603.24,1.65771,0.8744,0.008544,0.220736,0.005696,0.005088,0.00768,0.0128,0.014464,0.589696,0.009696
+1475,757.116,1.3208,0.874496,0.008192,0.220832,0.005632,0.00496,0.007328,0.013152,0.014336,0.590848,0.009216
+1476,581.323,1.72021,0.939968,0.009568,0.287392,0.006144,0.005248,0.00704,0.013408,0.017312,0.58368,0.010176
+1477,622.492,1.60645,0.898432,0.01024,0.251904,0.005824,0.004416,0.007776,0.012704,0.014336,0.5816,0.009632
+1478,684.263,1.46143,1.04893,0.008544,0.404,0.005888,0.004352,0.007904,0.013984,0.014272,0.580192,0.009792
+1479,730.385,1.36914,0.871296,0.007232,0.223072,0.00592,0.004288,0.008032,0.012448,0.015648,0.585472,0.009184
+1480,816.261,1.2251,0.872032,0.00864,0.221216,0.006112,0.005312,0.007008,0.01376,0.014432,0.586048,0.009504
+1481,725.469,1.37842,1.5625,0.00816,0.520224,0.008192,0.00528,0.013152,0.015424,0.01504,0.966496,0.010528
+1482,514.573,1.94336,0.907808,0.008512,0.222912,0.004928,0.007328,0.006784,0.01408,0.014624,0.618464,0.010176
+1483,639.7,1.56323,0.870816,0.00784,0.221856,0.005888,0.00448,0.007616,0.012864,0.015776,0.584288,0.010208
+1484,778.707,1.28418,0.872864,0.008576,0.221568,0.006144,0.005728,0.00656,0.013536,0.014624,0.58624,0.009888
+1485,762.188,1.31201,0.868256,0.008128,0.220064,0.005792,0.004448,0.007648,0.012832,0.015424,0.584256,0.009664
+1486,526.005,1.90112,1.39546,0.008544,0.336032,0.00592,0.014816,0.008192,0.018112,0.014592,0.97696,0.012288
+1487,600.586,1.66504,1.08115,0.007968,0.430304,0.005728,0.004512,0.008192,0.014336,0.014336,0.585728,0.010048
+1488,706.816,1.41479,0.869696,0.00992,0.227232,0.005664,0.004992,0.008192,0.014336,0.014336,0.57536,0.009664
+1489,796.113,1.2561,0.864256,0.008192,0.221184,0.005952,0.004288,0.007968,0.013632,0.014816,0.57936,0.008864
+1490,813.505,1.22925,1.23917,0.008384,0.224736,0.004448,0.00768,0.006656,0.014336,0.014336,0.946176,0.012416
+1491,522.582,1.91357,0.874496,0.008192,0.229376,0.006144,0.005344,0.006944,0.013376,0.01472,0.58016,0.01024
+1492,690.027,1.44922,0.869504,0.008192,0.221024,0.005696,0.00496,0.007808,0.013504,0.014368,0.584096,0.009856
+1493,785.276,1.27344,0.859456,0.007808,0.223488,0.005664,0.004736,0.007552,0.012928,0.014336,0.573408,0.009536
+1494,777.82,1.28564,0.878336,0.00848,0.2248,0.005696,0.006624,0.006592,0.014176,0.014496,0.587776,0.009696
+1495,717.212,1.39429,1.22934,0.007808,0.223232,0.005024,0.006144,0.007648,0.012832,0.014336,0.940032,0.012288
+1496,522.249,1.91479,0.927968,0.008448,0.233344,0.005664,0.004928,0.007904,0.01392,0.014816,0.628736,0.010208
+1497,630.057,1.58716,0.871648,0.008096,0.223328,0.00592,0.00432,0.007808,0.012672,0.014336,0.585632,0.009536
+1498,801.879,1.24707,0.859808,0.008384,0.220416,0.004864,0.005984,0.006304,0.014144,0.014528,0.575488,0.009696
+1499,733.524,1.36328,0.87056,0.008224,0.221888,0.006144,0.005408,0.00688,0.014272,0.0144,0.58368,0.009664
+1500,790.886,1.2644,1.48778,0.008544,0.44208,0.007008,0.005504,0.006784,0.014368,0.014304,0.978912,0.010272
+1501,540.512,1.8501,1.29229,0.008192,0.221184,0.006144,0.005376,0.006912,0.013984,0.014688,1.00557,0.01024
+1502,603.774,1.65625,0.874656,0.008352,0.223232,0.006208,0.00608,0.007552,0.012928,0.014336,0.587008,0.00896
+1503,743.781,1.34448,0.867456,0.007872,0.219456,0.006144,0.005792,0.006496,0.013504,0.01472,0.583712,0.00976
+1504,756.417,1.32202,0.867552,0.008192,0.221184,0.006048,0.00624,0.008,0.013632,0.014464,0.580352,0.00944
+1505,527.088,1.89722,0.882688,0.01024,0.239616,0.005792,0.00448,0.007808,0.014144,0.014336,0.577312,0.00896
+1506,648.923,1.54102,0.8704,0.008224,0.223232,0.006048,0.005664,0.006688,0.013952,0.014624,0.581792,0.010176
+1507,736.558,1.35767,0.876896,0.007776,0.226048,0.006144,0.005568,0.00672,0.014336,0.014336,0.58704,0.008928
+1508,634.547,1.57593,0.91984,0.016704,0.26416,0.006144,0.00592,0.006368,0.014336,0.014336,0.581632,0.01024
+1509,840.205,1.19019,1.49584,0.00816,0.444992,0.0064,0.006112,0.006176,0.015488,0.014656,0.983456,0.0104
+1510,524.322,1.90723,1.2856,0.009504,0.225984,0.005664,0.005696,0.007104,0.01376,0.014272,0.99104,0.012576
+1511,563.721,1.77393,0.882688,0.008192,0.241152,0.005728,0.005024,0.007232,0.013248,0.014336,0.578912,0.008864
+1512,591.822,1.6897,0.917792,0.00848,0.278272,0.005696,0.004896,0.00784,0.012704,0.014176,0.575488,0.01024
+1513,937.514,1.06665,0.892928,0.008192,0.25136,0.005696,0.005088,0.007168,0.013312,0.014336,0.57888,0.008896
+1514,520.788,1.92017,0.87248,0.011264,0.228352,0.006048,0.005312,0.007072,0.0136,0.014368,0.577696,0.008768
+1515,688.403,1.45264,0.872032,0.008352,0.223328,0.006144,0.005344,0.006944,0.013664,0.014816,0.583872,0.009568
+1516,785.577,1.27295,0.876832,0.00848,0.235232,0.005696,0.005888,0.007104,0.013792,0.014432,0.577088,0.00912
+1517,796.577,1.25537,0.866944,0.008192,0.221824,0.005952,0.005728,0.006752,0.013888,0.014528,0.580896,0.009184
+1518,694.237,1.44043,1.25338,0.009376,0.244576,0.006144,0.006112,0.006176,0.01424,0.0144,0.939904,0.012448
+1519,575.443,1.73779,0.9024,0.008192,0.224608,0.004928,0.005888,0.00624,0.014336,0.014336,0.614304,0.009568
+1520,645.344,1.54956,0.868256,0.008192,0.224768,0.005728,0.005056,0.007744,0.014144,0.01488,0.5776,0.010144
+1521,794.568,1.25854,0.858176,0.007904,0.219488,0.006144,0.005568,0.007968,0.013088,0.014336,0.574592,0.009088
+1522,802.351,1.24634,0.8704,0.00928,0.22192,0.004416,0.00736,0.00688,0.013728,0.014368,0.583648,0.0088
+1523,650.365,1.5376,1.24672,0.009216,0.242432,0.005664,0.004832,0.007392,0.013088,0.014336,0.935936,0.013824
+1524,480.921,2.07935,1.32099,0.008192,0.262144,0.006144,0.006016,0.006272,0.056928,0.014464,0.951744,0.009088
+1525,607.085,1.64722,0.906656,0.008192,0.26112,0.00512,0.005696,0.006592,0.01408,0.014592,0.581632,0.009632
+1526,760.631,1.3147,0.879808,0.008192,0.243712,0.005696,0.005696,0.00704,0.013728,0.014368,0.571904,0.009472
+1527,759.926,1.31592,1.27558,0.009472,0.267008,0.006144,0.005248,0.00704,0.013568,0.014592,0.939552,0.01296
+1528,549.872,1.8186,0.886816,0.008224,0.251872,0.005792,0.005696,0.006944,0.0136,0.014304,0.571264,0.00912
+1529,708.773,1.41089,0.86464,0.007936,0.227296,0.005024,0.00576,0.006496,0.014176,0.014496,0.57344,0.010016
+1530,765.894,1.30566,0.864928,0.008832,0.225312,0.005856,0.005664,0.006912,0.013888,0.014816,0.573408,0.01024
+1531,476.279,2.09961,0.876352,0.008192,0.231424,0.006176,0.00528,0.006976,0.014368,0.014304,0.579584,0.010048
+1532,641.805,1.55811,0.884736,0.011744,0.233248,0.00496,0.006048,0.007456,0.013024,0.014336,0.583744,0.010176
+1533,744.727,1.34277,1.07322,0.00832,0.426848,0.006144,0.005344,0.006944,0.014336,0.014336,0.581504,0.00944
+1534,719.733,1.3894,0.872448,0.008192,0.227328,0.006144,0.006144,0.007776,0.014272,0.014784,0.57888,0.008928
+1535,752.803,1.32837,0.868512,0.007872,0.226112,0.006176,0.00528,0.006976,0.01376,0.014656,0.577792,0.009888
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..2847ae8
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,540.994,1.90354,1.38772,0.00895031,0.262703,0.00642206,0.00546653,0.00723641,0.0136414,0.0147787,1.05591,0.0126161
+max_1024,1009.86,3.20825,2.15648,0.033408,0.724992,0.045056,0.028928,0.047104,0.029152,0.053376,1.82931,0.271136
+min_1024,311.696,0.990234,1.13853,0.007104,0.220864,0.004224,0.00416,0.006144,0.012192,0.012832,0.84656,0.00848
+512,597.956,1.67236,1.14362,0.008736,0.229568,0.006144,0.005696,0.006592,0.013984,0.014272,0.8496,0.009024
+513,644.076,1.55261,1.56157,0.008128,0.240032,0.005728,0.00512,0.007296,0.013056,0.014464,1.25517,0.012576
+514,448.066,2.23181,1.15094,0.009376,0.238208,0.005728,0.004736,0.007872,0.01376,0.014496,0.84656,0.010208
+515,637.559,1.56848,1.13872,0.008192,0.227328,0.006144,0.005728,0.00656,0.013856,0.014528,0.847808,0.008576
+516,490.187,2.04004,1.18704,0.00832,0.266112,0.005984,0.005472,0.006976,0.013888,0.014272,0.856224,0.009792
+517,717.652,1.39343,2.02269,0.008288,0.241568,0.006144,0.005664,0.006624,0.013664,0.014944,1.7136,0.012192
+518,410.462,2.43628,1.15229,0.008192,0.229376,0.006176,0.00592,0.006336,0.014336,0.014336,0.858048,0.009568
+519,638.305,1.56665,1.5488,0.008416,0.223552,0.00576,0.004736,0.007648,0.0128,0.014336,1.25955,0.012
+520,513.058,1.9491,1.1633,0.008192,0.228736,0.005856,0.005024,0.0072,0.01328,0.014336,0.871776,0.008896
+521,607.31,1.64661,1.82682,0.008352,0.441056,0.032416,0.028928,0.008288,0.014176,0.014496,1.25853,0.020576
+522,443.146,2.25659,1.16531,0.008192,0.2352,0.005728,0.004832,0.007648,0.014144,0.014592,0.864736,0.01024
+523,648.255,1.5426,1.39158,0.008832,0.46112,0.006144,0.005632,0.006656,0.014336,0.014336,0.86576,0.008768
+524,504.434,1.98242,1.17424,0.008768,0.237824,0.006176,0.00592,0.007808,0.012864,0.015776,0.86896,0.010144
+525,418.707,2.38831,1.17846,0.010944,0.250016,0.006144,0.00544,0.006848,0.013408,0.014272,0.861152,0.01024
+526,650.159,1.53809,1.15712,0.00944,0.227712,0.00576,0.004896,0.007808,0.012672,0.015392,0.863232,0.010208
+527,593.365,1.6853,1.14474,0.008224,0.225248,0.006016,0.005312,0.007104,0.014176,0.014432,0.854112,0.010112
+528,648.204,1.54272,1.56461,0.009216,0.239936,0.004992,0.005952,0.007392,0.014496,0.014976,1.25347,0.014176
+529,444.927,2.24756,1.16755,0.00848,0.232704,0.00496,0.006048,0.007168,0.013312,0.014336,0.8704,0.010144
+530,651.451,1.53503,1.16531,0.008192,0.227136,0.005952,0.005984,0.006688,0.01408,0.0144,0.873824,0.009056
+531,570.712,1.7522,1.13853,0.008288,0.225376,0.006048,0.005792,0.006496,0.013472,0.01472,0.848352,0.009984
+532,461.391,2.16736,1.18528,0.009632,0.234112,0.006112,0.005472,0.006816,0.013696,0.0144,0.885312,0.009728
+533,610.979,1.63672,1.17904,0.010592,0.232832,0.00496,0.00592,0.00736,0.01312,0.014336,0.880128,0.009792
+534,629.041,1.58972,1.1817,0.008192,0.229376,0.006176,0.005824,0.006432,0.014368,0.014304,0.888192,0.008832
+535,555.315,1.80078,1.15347,0.008096,0.229952,0.00592,0.005312,0.007072,0.012384,0.014336,0.861472,0.008928
+536,647.384,1.54468,1.57206,0.009824,0.231104,0.004992,0.005984,0.007296,0.013184,0.014336,1.27181,0.013536
+537,434.566,2.30115,1.17002,0.008512,0.23536,0.005728,0.004992,0.007776,0.014016,0.014816,0.868576,0.01024
+538,666.07,1.50134,1.47402,0.00944,0.228128,0.00576,0.004704,0.007872,0.013728,0.014528,1.17606,0.013792
+539,541.119,1.84802,1.15629,0.008192,0.226496,0.00496,0.00592,0.006368,0.014016,0.014432,0.866432,0.009472
+540,587.24,1.70288,1.85984,0.008736,0.509952,0.024576,0.005248,0.00704,0.013984,0.014432,1.26592,0.009952
+541,448.729,2.22852,1.17312,0.008032,0.232928,0.005056,0.006016,0.006304,0.013952,0.014336,0.876896,0.0096
+542,660.645,1.51367,1.54915,0.008864,0.22704,0.005728,0.004992,0.008192,0.013696,0.014432,1.25712,0.009088
+543,476.251,2.09973,1.14765,0.00848,0.22576,0.006144,0.005312,0.006976,0.013632,0.014176,0.856928,0.01024
+544,581.034,1.72107,1.35587,0.010592,0.423296,0.004736,0.006048,0.007808,0.014336,0.014656,0.864416,0.009984
+545,584.6,1.71057,1.14688,0.008192,0.227328,0.006144,0.0056,0.006624,0.013408,0.013376,0.857312,0.008896
+546,632.538,1.58093,1.59702,0.00928,0.291776,0.006144,0.005824,0.006496,0.014144,0.014432,1.2391,0.009824
+547,493.672,2.02563,1.16557,0.008448,0.233184,0.004864,0.006176,0.007168,0.013216,0.014336,0.868416,0.00976
+548,445.193,2.24622,1.192,0.011488,0.260896,0.006176,0.006112,0.006144,0.014368,0.014304,0.863552,0.00896
+549,542.337,1.84387,1.16506,0.008352,0.237568,0.006144,0.005376,0.006912,0.01376,0.014752,0.862368,0.009824
+550,689.04,1.45129,1.17987,0.008416,0.236992,0.00576,0.005056,0.00736,0.01312,0.014336,0.878592,0.01024
+551,640.4,1.56152,1.18384,0.008192,0.230784,0.00496,0.00592,0.007264,0.013088,0.014272,0.8904,0.00896
+552,437.677,2.28479,1.16957,0.010912,0.239616,0.006144,0.005824,0.006464,0.014272,0.014432,0.862176,0.009728
+553,641.052,1.55994,1.14666,0.008192,0.229376,0.005856,0.004576,0.008,0.014048,0.014656,0.851936,0.010016
+554,547.777,1.82556,1.17555,0.008192,0.251584,0.00576,0.0048,0.007744,0.012768,0.014304,0.86016,0.01024
+555,605.872,1.65051,2.01251,0.008192,0.264192,0.005952,0.004608,0.007776,0.012384,0.014336,1.68266,0.012416
+556,407.42,2.45447,1.17299,0.008192,0.230464,0.005056,0.006176,0.006144,0.014304,0.014272,0.878656,0.009728
+557,609.342,1.64111,1.54694,0.00816,0.228096,0.005728,0.00464,0.007808,0.012608,0.014528,1.25318,0.012192
+558,462.877,2.1604,1.20573,0.009504,0.256128,0.00576,0.005088,0.007488,0.012992,0.014336,0.884736,0.009696
+559,700.231,1.4281,1.78179,0.008224,0.466784,0.007808,0.00464,0.007584,0.01424,0.014528,1.24774,0.01024
+560,456.684,2.1897,1.17718,0.008672,0.229056,0.005728,0.004896,0.00768,0.014176,0.014656,0.882784,0.009536
+561,594.701,1.68152,1.34144,0.009408,0.405792,0.005728,0.005056,0.007648,0.014208,0.014816,0.869984,0.0088
+562,587.746,1.70142,1.17539,0.008736,0.233536,0.006336,0.00576,0.006528,0.013984,0.014464,0.876384,0.009664
+563,467.447,2.13928,1.18186,0.0104,0.235392,0.005728,0.00464,0.007776,0.012704,0.014336,0.88064,0.01024
+564,623.25,1.60449,1.18243,0.0088,0.237696,0.006144,0.0056,0.006688,0.01392,0.014048,0.8808,0.008736
+565,624.962,1.6001,1.3519,0.008416,0.404832,0.004992,0.005952,0.007264,0.013184,0.015584,0.882656,0.009024
+566,537.639,1.85999,1.16531,0.009824,0.233888,0.00592,0.005504,0.007008,0.013824,0.014848,0.86544,0.009056
+567,582.439,1.71692,1.80944,0.00928,0.449472,0.03392,0.004992,0.00736,0.014368,0.014752,1.2655,0.009792
+568,468.596,2.13403,1.23702,0.009728,0.295424,0.006144,0.005696,0.006592,0.014176,0.014496,0.875872,0.008896
+569,550.094,1.81787,1.16352,0.008448,0.232032,0.006144,0.005472,0.006816,0.014336,0.014336,0.866304,0.009632
+570,632.196,1.58179,1.54634,0.008288,0.233504,0.006112,0.005952,0.006336,0.014336,0.014336,1.24467,0.0128
+571,450.704,2.21875,1.17712,0.008192,0.23552,0.00576,0.004576,0.007808,0.012576,0.014336,0.878592,0.00976
+572,637.212,1.56934,1.46842,0.00944,0.22608,0.006144,0.005856,0.006432,0.014336,0.014336,1.17254,0.013248
+573,537.11,1.86182,1.15171,0.008416,0.225824,0.006112,0.005824,0.006464,0.013952,0.014304,0.860576,0.01024
+574,625.248,1.59937,2.004,0.008192,0.236736,0.00496,0.006144,0.007232,0.013248,0.014336,1.69981,0.013344
+575,389.947,2.56445,1.19094,0.008192,0.252928,0.00512,0.006016,0.006304,0.013792,0.014752,0.87424,0.0096
+576,642.711,1.55591,1.58106,0.009376,0.245824,0.004992,0.006048,0.00736,0.01312,0.014336,1.27088,0.00912
+577,498.782,2.00488,1.18349,0.008384,0.24528,0.005888,0.0048,0.00768,0.0128,0.014336,0.874496,0.009824
+578,549.725,1.81909,1.66323,0.008448,0.724992,0.005728,0.004512,0.00752,0.014176,0.014368,0.874656,0.008832
+579,568.889,1.75781,1.17901,0.008192,0.224416,0.00496,0.006112,0.006176,0.014016,0.014432,0.891104,0.0096
+580,623.582,1.60364,1.35005,0.007936,0.404416,0.006144,0.005728,0.006592,0.014304,0.014176,0.8808,0.009952
+581,537.216,1.86145,1.1776,0.008192,0.233056,0.005728,0.004928,0.00752,0.01296,0.014336,0.88176,0.00912
+582,416.938,2.39844,1.1801,0.010688,0.239616,0.006144,0.00592,0.0064,0.01424,0.014336,0.873568,0.009184
+583,615.94,1.62354,1.17968,0.020032,0.222976,0.004992,0.005952,0.0072,0.012928,0.014048,0.882432,0.00912
+584,531.706,1.88074,1.18688,0.009536,0.249856,0.004992,0.005952,0.007552,0.012928,0.014336,0.872032,0.009696
+585,636.618,1.5708,1.56512,0.008064,0.241856,0.00496,0.006048,0.00736,0.01312,0.015424,1.25434,0.013952
+586,449.443,2.22498,1.18122,0.008192,0.23552,0.006144,0.006048,0.006304,0.014272,0.014368,0.880608,0.00976
+587,638.205,1.56689,1.46643,0.008,0.22208,0.006144,0.006144,0.008192,0.012288,0.01536,1.17453,0.013696
+588,535.53,1.86731,1.15274,0.00976,0.223456,0.00576,0.004736,0.007776,0.012704,0.014336,0.864256,0.009952
+589,618.731,1.61621,1.81046,0.008192,0.468992,0.008224,0.00528,0.006976,0.014208,0.014496,1.27382,0.010272
+590,457.066,2.18787,1.1633,0.008192,0.2304,0.00512,0.00608,0.00624,0.014144,0.014496,0.869952,0.008672
+591,625.248,1.59937,1.54397,0.008224,0.239552,0.005728,0.005856,0.00688,0.013728,0.014592,1.23939,0.010016
+592,505.929,1.97656,1.16618,0.008768,0.227616,0.005984,0.00544,0.007008,0.013376,0.0144,0.874432,0.009152
+593,580.375,1.72302,1.79974,0.008192,0.45248,0.019616,0.005088,0.007168,0.013312,0.01552,1.26851,0.009856
+594,474.568,2.10718,1.17715,0.008224,0.229376,0.006112,0.005984,0.007776,0.012928,0.015776,0.88112,0.009856
+595,617.332,1.61987,1.34976,0.00832,0.407552,0.006016,0.005376,0.007072,0.013984,0.014496,0.87776,0.009184
+596,557.355,1.79419,1.18624,0.00864,0.2376,0.006112,0.005952,0.006336,0.014336,0.014336,0.884096,0.008832
+597,553.738,1.80591,1.4169,0.033408,0.432128,0.005728,0.004544,0.007456,0.014368,0.014912,0.894464,0.009888
+598,548.731,1.82239,1.15734,0.008704,0.233472,0.006176,0.0056,0.006656,0.01376,0.014624,0.8584,0.009952
+599,628.558,1.59094,1.34349,0.008224,0.407168,0.00576,0.004832,0.00768,0.014368,0.014368,0.872128,0.00896
+600,581.034,1.72107,1.17667,0.009568,0.228,0.005824,0.00544,0.007008,0.013664,0.015168,0.882112,0.009888
+601,437.233,2.28711,1.17584,0.010464,0.243744,0.006112,0.005632,0.006656,0.014336,0.014336,0.865568,0.008992
+602,632.733,1.58044,1.20576,0.009216,0.25088,0.006176,0.005472,0.006816,0.01424,0.0144,0.888832,0.009728
+603,571.508,1.74976,1.1776,0.008192,0.229408,0.006112,0.005344,0.006944,0.013472,0.014688,0.884384,0.009056
+604,593.322,1.68542,1.58029,0.009312,0.242624,0.006112,0.005952,0.007456,0.013216,0.014336,1.26771,0.013568
+605,462.042,2.16431,1.16771,0.008384,0.239648,0.00592,0.005344,0.007136,0.013824,0.014624,0.863872,0.00896
+606,643.873,1.5531,1.18006,0.008864,0.227328,0.006176,0.00576,0.006528,0.013952,0.01456,0.886912,0.009984
+607,542.158,1.84448,1.17533,0.008192,0.227328,0.006176,0.005408,0.006848,0.013344,0.014656,0.88336,0.010016
+608,642.258,1.55701,1.98256,0.008768,0.235136,0.006048,0.004704,0.007936,0.012736,0.014144,1.68048,0.012608
+609,390.672,2.55969,1.17555,0.0096,0.256096,0.005728,0.005056,0.007552,0.012928,0.014336,0.85504,0.009216
+610,626.156,1.59705,1.55443,0.0096,0.227968,0.006144,0.005792,0.006496,0.014304,0.014336,1.25904,0.010752
+611,539.054,1.8551,1.15683,0.008192,0.231104,0.005824,0.006432,0.006496,0.013856,0.014304,0.860672,0.009952
+612,616.914,1.62097,1.84934,0.008192,0.448512,0.040832,0.012416,0.007328,0.013312,0.015392,1.29446,0.008896
+613,453.173,2.20667,1.15789,0.008416,0.233472,0.005728,0.005056,0.007232,0.013248,0.014336,0.86144,0.00896
+614,643.216,1.55469,1.3369,0.008768,0.405504,0.006144,0.005472,0.006816,0.014368,0.014304,0.865888,0.009632
+615,558.799,1.78955,1.1735,0.008192,0.22528,0.005856,0.006432,0.007296,0.013024,0.014336,0.884416,0.008672
+616,461.703,2.16589,1.17866,0.012032,0.241664,0.005728,0.0048,0.007776,0.014432,0.014336,0.868352,0.009536
+617,605.828,1.65063,1.17555,0.008192,0.227328,0.005728,0.005696,0.007008,0.013472,0.014496,0.883392,0.01024
+618,598,1.67224,1.34611,0.008896,0.405632,0.006144,0.005696,0.006592,0.014336,0.014336,0.874496,0.009984
+619,588.802,1.69836,1.55258,0.008384,0.228576,0.004992,0.006048,0.00752,0.012608,0.014688,1.25744,0.01232
+620,456.353,2.19128,1.20602,0.009216,0.252928,0.005984,0.00544,0.007008,0.013888,0.014496,0.887072,0.009984
+621,632.538,1.58093,1.15674,0.008192,0.227168,0.005728,0.004672,0.007648,0.012832,0.014368,0.866272,0.009856
+622,571.309,1.75037,1.17258,0.00944,0.22608,0.00592,0.00544,0.007104,0.013888,0.014336,0.880448,0.00992
+623,630.882,1.58508,1.54864,0.008448,0.229472,0.006176,0.005728,0.00656,0.013664,0.014848,1.25056,0.013184
+624,460.561,2.17126,1.17731,0.008192,0.227328,0.004256,0.005984,0.007328,0.013152,0.014336,0.886784,0.009952
+625,647.691,1.54395,1.17146,0.008192,0.223232,0.006176,0.005408,0.006848,0.013568,0.01472,0.883072,0.01024
+626,542.409,1.84363,1.17178,0.008864,0.224384,0.005056,0.006144,0.007328,0.013152,0.015456,0.881568,0.009824
+627,610.023,1.63928,1.17235,0.008416,0.23408,0.00576,0.004544,0.007904,0.012576,0.016064,0.874112,0.008896
+628,453.198,2.20654,1.17978,0.011008,0.237568,0.006144,0.00608,0.006304,0.014272,0.014304,0.874336,0.00976
+629,634.449,1.57617,1.50358,0.008576,0.225248,0.005728,0.004576,0.008192,0.0136,0.014368,1.21008,0.013216
+630,519.237,1.9259,1.17386,0.008512,0.22736,0.00592,0.005664,0.00784,0.013312,0.014336,0.88208,0.008832
+631,612.349,1.63306,1.85754,0.008192,0.531584,0.00704,0.005664,0.006624,0.014336,0.014336,1.25952,0.01024
+632,453.524,2.20496,1.16218,0.008768,0.229312,0.005984,0.004704,0.007712,0.012768,0.016,0.868064,0.008864
+633,633.418,1.57874,1.55827,0.008416,0.226976,0.005728,0.004864,0.008192,0.013312,0.014688,1.26624,0.009856
+634,511.968,1.95325,1.17248,0.009568,0.230048,0.006144,0.006176,0.007168,0.01328,0.014336,0.876032,0.009728
+635,479.064,2.0874,1.81482,0.008416,0.4744,0.007104,0.00608,0.006304,0.01424,0.014336,1.27386,0.01008
+636,570.951,1.75146,1.17581,0.009216,0.232448,0.005856,0.006336,0.00624,0.014368,0.014304,0.878016,0.009024
+637,604.843,1.65332,1.33939,0.008192,0.405504,0.006112,0.005376,0.006944,0.014272,0.014208,0.868576,0.010208
+638,560.098,1.7854,1.17968,0.008512,0.23552,0.006144,0.005728,0.006592,0.013984,0.014272,0.878976,0.009952
+639,434.843,2.29968,1.18394,0.011872,0.239648,0.005728,0.004896,0.00752,0.01408,0.014464,0.876768,0.00896
+640,634.399,1.57629,1.16758,0.00864,0.229408,0.006112,0.005536,0.006752,0.013952,0.01472,0.872448,0.010016
+641,588.886,1.69812,1.18662,0.008096,0.230272,0.006144,0.005376,0.008064,0.013216,0.014336,0.890848,0.010272
+642,636.865,1.57019,1.16288,0.008192,0.229376,0.006048,0.00544,0.006944,0.013856,0.014304,0.868864,0.009856
+643,385.107,2.59668,1.18784,0.011296,0.235488,0.00512,0.005952,0.006336,0.013984,0.014688,0.884736,0.01024
+644,919.726,1.08728,1.17642,0.0088,0.23344,0.005728,0.0048,0.007712,0.012768,0.014336,0.878592,0.01024
+645,603.462,1.6571,1.18,0.00848,0.225088,0.005824,0.004672,0.00768,0.0128,0.014336,0.891968,0.009152
+646,608.257,1.64404,1.83965,0.008768,0.238912,0.004992,0.00592,0.00752,0.01296,0.014336,1.27568,0.27056
+647,436.116,2.29297,1.20669,0.008416,0.2504,0.005984,0.005344,0.007104,0.012288,0.01536,0.891904,0.009888
+648,634.842,1.5752,1.20426,0.009376,0.226144,0.006144,0.005664,0.00784,0.01312,0.014464,0.912608,0.008896
+649,519.599,1.92456,1.17002,0.008416,0.237952,0.006144,0.005536,0.006784,0.013696,0.014848,0.868064,0.008576
+650,655.203,1.52625,2.03363,0.008192,0.231456,0.006048,0.005472,0.00688,0.013888,0.014464,1.736,0.011232
+651,403.348,2.47925,1.17411,0.008448,0.229728,0.006144,0.005632,0.006656,0.013536,0.014496,0.879232,0.01024
+652,627.355,1.59399,1.57674,0.009664,0.240192,0.005856,0.00544,0.007104,0.013952,0.014528,1.26998,0.010016
+653,438.52,2.2804,1.17555,0.008224,0.235488,0.006144,0.00576,0.006528,0.013504,0.014144,0.876864,0.008896
+654,501.162,1.99536,1.21242,0.012224,0.253888,0.00576,0.004704,0.00784,0.013728,0.014368,0.889664,0.01024
+655,622.398,1.60669,1.20208,0.008192,0.255136,0.004992,0.00608,0.007872,0.01264,0.01568,0.881376,0.010112
+656,568.573,1.75879,1.19402,0.008192,0.234976,0.005728,0.005056,0.007552,0.012928,0.014336,0.895008,0.01024
+657,595.912,1.6781,1.19296,0.008192,0.231456,0.006112,0.005408,0.006912,0.013888,0.014752,0.896768,0.009472
+658,403.905,2.47583,1.20448,0.010528,0.25392,0.006144,0.005888,0.0064,0.014336,0.014336,0.884288,0.00864
+659,633.467,1.57861,1.17789,0.008064,0.233888,0.006144,0.005728,0.006592,0.013472,0.014816,0.879968,0.009216
+660,559.716,1.78662,1.18173,0.009376,0.231808,0.006016,0.004704,0.00784,0.013792,0.01456,0.884448,0.009184
+661,568.06,1.76038,2.04803,0.009216,0.260992,0.005664,0.004704,0.007776,0.012704,0.014336,1.72237,0.010272
+662,401.47,2.49084,1.21846,0.008768,0.268,0.005728,0.005056,0.00752,0.014176,0.014752,0.884864,0.0096
+663,603.107,1.65808,1.41158,0.008416,0.463136,0.005984,0.005344,0.007104,0.014208,0.014464,0.882688,0.01024
+664,549.946,1.81836,1.20013,0.008192,0.227008,0.005792,0.004768,0.008192,0.014272,0.014336,0.907328,0.01024
+665,403.766,2.47668,1.19389,0.01024,0.245184,0.005728,0.005088,0.007392,0.01312,0.014304,0.882688,0.010144
+666,634.547,1.57593,1.22675,0.008192,0.274432,0.005984,0.005504,0.006976,0.013984,0.0144,0.880896,0.016384
+667,460.898,2.16968,1.21062,0.008064,0.267904,0.005056,0.006016,0.006304,0.014112,0.014432,0.878688,0.010048
+668,814.314,1.22803,1.2176,0.008736,0.247168,0.00496,0.006112,0.0072,0.013312,0.014304,0.906656,0.009152
+669,428.923,2.33142,1.20304,0.010944,0.263648,0.004992,0.005952,0.007264,0.013216,0.014368,0.872416,0.01024
+670,638.852,1.56531,1.21043,0.008768,0.235488,0.00576,0.0048,0.007616,0.012832,0.015424,0.909984,0.00976
+671,555.54,1.80005,1.2023,0.00832,0.239552,0.00592,0.004544,0.00784,0.01248,0.014336,0.899072,0.01024
+672,601.204,1.66333,1.20621,0.009504,0.243808,0.005952,0.00496,0.007648,0.01392,0.014304,0.895936,0.010176
+673,528.823,1.89099,1.19277,0.010976,0.241312,0.005728,0.00496,0.007456,0.01296,0.0144,0.884736,0.01024
+674,627.355,1.59399,1.51347,0.008192,0.233472,0.006144,0.005888,0.006432,0.014304,0.015872,1.21056,0.012608
+675,514.541,1.94348,1.2063,0.009376,0.256608,0.005728,0.004768,0.00768,0.0128,0.014336,0.885952,0.009056
+676,606.905,1.64771,2.05005,0.009792,0.260096,0.006112,0.004672,0.00784,0.013568,0.014464,1.72227,0.011232
+677,414.428,2.41296,1.21046,0.009376,0.236256,0.00576,0.004608,0.007776,0.012704,0.015424,0.909728,0.008832
+678,568.652,1.75854,1.4129,0.008416,0.456544,0.00576,0.004704,0.007872,0.01408,0.0144,0.891328,0.009792
+679,399.746,2.50159,1.1977,0.008192,0.235168,0.005728,0.004864,0.007616,0.012864,0.014336,0.899072,0.009856
+680,948.038,1.05481,1.36928,0.011552,0.422272,0.004576,0.005696,0.006464,0.014336,0.014336,0.880448,0.0096
+681,571.07,1.7511,1.18358,0.00928,0.23648,0.006144,0.005792,0.006496,0.013664,0.014432,0.881216,0.01008
+682,611.07,1.63647,1.35987,0.008192,0.405504,0.006144,0.006016,0.006304,0.014304,0.014336,0.890336,0.008736
+683,575.2,1.73853,1.18899,0.008192,0.233504,0.006112,0.006144,0.00768,0.0128,0.014336,0.890336,0.009888
+684,453.398,2.20557,1.21802,0.010464,0.239616,0.006176,0.00592,0.006368,0.014176,0.014368,0.911392,0.009536
+685,590.968,1.69214,1.23037,0.008192,0.255744,0.00576,0.004736,0.007744,0.012736,0.015904,0.90976,0.009792
+686,463.296,2.15845,1.19216,0.008416,0.248832,0.00512,0.006144,0.006176,0.014304,0.013728,0.880224,0.009216
+687,756.557,1.32178,1.21082,0.00848,0.270528,0.006112,0.005888,0.006432,0.01392,0.014432,0.874784,0.01024
+688,425.846,2.34827,1.21456,0.010848,0.264192,0.006144,0.005792,0.006496,0.014112,0.01456,0.88256,0.009856
+689,647.333,1.5448,1.18726,0.008224,0.231392,0.006144,0.005696,0.006592,0.013696,0.01456,0.891296,0.009664
+690,557.355,1.79419,1.17357,0.008256,0.227328,0.006144,0.005856,0.006432,0.014336,0.014336,0.88064,0.01024
+691,602.043,1.66101,2.04186,0.008192,0.247136,0.005952,0.00496,0.007456,0.013056,0.014304,1.72854,0.012256
+692,403.746,2.47681,1.2329,0.008192,0.264192,0.005984,0.00544,0.007008,0.013728,0.014688,0.9048,0.008864
+693,619.808,1.6134,1.56717,0.008416,0.233696,0.006144,0.005824,0.006464,0.01408,0.014592,1.26771,0.01024
+694,349.712,2.8595,1.2224,0.008192,0.255808,0.005728,0.004736,0.00816,0.013952,0.014688,0.901152,0.009984
+695,567.117,1.76331,1.26179,0.01088,0.309568,0.006112,0.005472,0.006816,0.013504,0.014784,0.885056,0.0096
+696,606.321,1.64929,1.21059,0.008768,0.237472,0.005728,0.004832,0.007712,0.012768,0.014336,0.909312,0.009664
+697,547.009,1.82812,1.20272,0.00816,0.246336,0.005856,0.004576,0.007904,0.012384,0.014336,0.892928,0.01024
+698,618.871,1.61584,2.07469,0.008256,0.26624,0.005888,0.005472,0.007072,0.01392,0.014752,1.74061,0.01248
+699,365.78,2.73389,1.20832,0.008352,0.243584,0.005984,0.005568,0.006848,0.013344,0.014688,0.901184,0.008768
+700,543.344,1.84045,1.57757,0.0088,0.241376,0.006144,0.004384,0.012288,0.014016,0.014432,1.26707,0.009056
+701,510.819,1.95764,1.21008,0.008064,0.241824,0.006176,0.005728,0.00656,0.013632,0.014432,0.903744,0.00992
+702,687.652,1.45422,1.82877,0.009568,0.465568,0.008192,0.005184,0.007104,0.014016,0.014656,1.29434,0.010144
+703,468.838,2.13293,1.1815,0.008192,0.229376,0.005856,0.004544,0.007872,0.012448,0.01536,0.887808,0.010048
+704,581.736,1.71899,1.21856,0.009248,0.231584,0.00496,0.006112,0.0072,0.01328,0.014368,0.923264,0.008544
+705,536.442,1.86414,1.57302,0.008384,0.2368,0.004992,0.005984,0.007168,0.012928,0.014592,1.26938,0.0128
+706,514.024,1.94543,1.18579,0.008192,0.228704,0.00496,0.005952,0.00736,0.01312,0.014336,0.892928,0.01024
+707,633.418,1.57874,1.17478,0.008192,0.223136,0.005728,0.004608,0.007808,0.012672,0.015392,0.88768,0.009568
+708,555.804,1.79919,1.19546,0.00832,0.222752,0.005728,0.004864,0.007328,0.013152,0.014336,0.909312,0.009664
+709,498.236,2.00708,2.13405,0.018432,0.262144,0.006144,0.005408,0.014624,0.02912,0.014336,1.77152,0.01232
+710,413.132,2.42053,1.19648,0.00864,0.229248,0.005728,0.004704,0.007936,0.012704,0.014112,0.904256,0.009152
+711,595.912,1.6781,1.61277,0.008448,0.256768,0.006112,0.005664,0.006624,0.013984,0.014464,1.29046,0.01024
+712,425.536,2.34998,1.18262,0.0088,0.227392,0.005728,0.004768,0.007808,0.012672,0.015552,0.890688,0.009216
+713,575.645,1.73718,1.19706,0.010272,0.229184,0.00576,0.00464,0.007808,0.012672,0.016192,0.9008,0.009728
+714,658.309,1.51904,1.19875,0.0088,0.22528,0.005824,0.004704,0.007968,0.01392,0.02704,0.894976,0.01024
+715,604.71,1.65369,1.3839,0.008416,0.421952,0.006144,0.005888,0.0064,0.014336,0.014336,0.896896,0.009536
+716,561.096,1.78223,1.20525,0.008928,0.239552,0.005728,0.004896,0.00816,0.014336,0.014336,0.899072,0.01024
+717,447.332,2.23547,1.19414,0.010624,0.241408,0.005728,0.004768,0.007456,0.013024,0.014336,0.886784,0.010016
+718,631.952,1.5824,1.18109,0.008192,0.2224,0.00496,0.007808,0.006496,0.014304,0.020512,0.886784,0.009632
+719,556.219,1.79785,1.2288,0.008224,0.234528,0.005056,0.006048,0.00624,0.022528,0.02848,0.90864,0.009056
+720,625.534,1.59863,2.04787,0.009408,0.223232,0.004992,0.00608,0.0072,0.01328,0.014336,1.75699,0.012352
+721,405.906,2.46362,1.1881,0.008416,0.224992,0.005728,0.004864,0.007136,0.013312,0.014336,0.900128,0.009184
+722,645.039,1.55029,1.50528,0.009696,0.225568,0.00576,0.006624,0.006336,0.014304,0.014336,1.21014,0.012512
+723,520.788,1.92017,1.1689,0.008192,0.220864,0.005728,0.004832,0.007712,0.0128,0.014304,0.884736,0.009728
+724,630.445,1.58618,1.8121,0.009216,0.470016,0.008128,0.00416,0.007808,0.014208,0.014656,1.27398,0.00992
+725,335.862,2.97742,1.20675,0.008544,0.225696,0.006144,0.006144,0.007328,0.013152,0.014368,0.91536,0.010016
+726,939.019,1.06494,1.42131,0.009632,0.451168,0.005888,0.005504,0.00704,0.014336,0.014368,0.90464,0.008736
+727,544.572,1.8363,1.20448,0.008448,0.223232,0.005792,0.004576,0.007936,0.012512,0.030208,0.902688,0.009088
+728,421.226,2.37402,1.21446,0.011616,0.232096,0.006144,0.005728,0.006592,0.014272,0.014368,0.913408,0.01024
+729,620.606,1.61133,1.17936,0.008128,0.226688,0.00512,0.005952,0.006368,0.013728,0.014368,0.889376,0.009632
+730,579.186,1.72656,1.18374,0.008192,0.224672,0.005728,0.00512,0.008192,0.012288,0.014336,0.894976,0.01024
+731,643.014,1.55518,1.17638,0.008416,0.223744,0.00576,0.005888,0.00688,0.013888,0.014656,0.886912,0.01024
+732,481.429,2.07715,1.18579,0.011936,0.228768,0.005056,0.005536,0.007808,0.01328,0.014336,0.890144,0.008928
+733,641.202,1.55957,1.19805,0.008192,0.2248,0.00576,0.004992,0.007968,0.01248,0.014432,0.909216,0.010208
+734,561.019,1.78247,1.1944,0.008512,0.22944,0.005952,0.005472,0.00704,0.014208,0.01424,0.900544,0.008992
+735,623.013,1.6051,1.60848,0.008032,0.227424,0.004992,0.007136,0.007168,0.014176,0.014496,1.31261,0.012448
+736,439.863,2.27344,1.20013,0.009696,0.22688,0.005088,0.006112,0.006208,0.014304,0.014336,0.908544,0.00896
+737,612.257,1.6333,1.52256,0.008448,0.223872,0.006144,0.005984,0.006304,0.013824,0.014496,1.23117,0.01232
+738,510.851,1.95752,1.19741,0.008224,0.224256,0.00512,0.006144,0.008096,0.013536,0.014496,0.907872,0.009664
+739,607.896,1.64502,1.8808,0.008448,0.52272,0.00816,0.005376,0.006944,0.014336,0.014336,1.29139,0.009088
+740,447.04,2.23694,1.18666,0.0088,0.225536,0.006176,0.005632,0.006624,0.013984,0.014368,0.896672,0.008864
+741,644.532,1.55151,1.55648,0.008192,0.22528,0.006016,0.005312,0.006752,0.01264,0.015392,1.26461,0.012288
+742,437.49,2.28577,1.20218,0.009536,0.23408,0.005728,0.004704,0.00768,0.014208,0.0144,0.902912,0.008928
+743,452.872,2.20813,1.19379,0.010272,0.233376,0.00576,0.004544,0.007872,0.012608,0.014336,0.894976,0.010048
+744,649.231,1.54028,1.18374,0.008192,0.227328,0.00592,0.005472,0.00704,0.01376,0.014432,0.892576,0.009024
+745,567.117,1.76331,1.18579,0.008224,0.22464,0.005792,0.005056,0.007328,0.013152,0.014336,0.897088,0.010176
+746,629.234,1.58923,1.20118,0.009312,0.232128,0.005728,0.00608,0.006848,0.01392,0.01456,0.902848,0.00976
+747,427.513,2.33911,1.1855,0.010432,0.232576,0.005024,0.006016,0.007328,0.013248,0.014336,0.886752,0.009792
+748,608.392,1.64368,1.21242,0.009312,0.238528,0.006112,0.006112,0.007232,0.01328,0.02592,0.89568,0.01024
+749,566.215,1.76611,1.16941,0.008192,0.22288,0.005728,0.004864,0.007648,0.012832,0.014336,0.882848,0.01008
+750,620.371,1.61194,1.87395,0.009632,0.232032,0.006144,0.0056,0.006688,0.013856,0.014304,1.56928,0.016416
+751,398.521,2.50928,1.21866,0.008288,0.235552,0.006112,0.005728,0.00656,0.014016,0.014592,0.9176,0.010208
+752,522.782,1.91284,1.57949,0.008672,0.241056,0.00576,0.005056,0.007424,0.013056,0.014464,1.27485,0.009152
+753,594.14,1.68311,1.18851,0.008448,0.225312,0.005728,0.004896,0.007488,0.012992,0.014368,0.89904,0.01024
+754,405.625,2.46533,1.19245,0.010752,0.233472,0.006016,0.00544,0.006976,0.0136,0.014464,0.892928,0.0088
+755,637.708,1.56812,1.21875,0.008416,0.224576,0.00576,0.00496,0.007424,0.013024,0.014368,0.931296,0.008928
+756,589.225,1.69714,1.19107,0.009792,0.22368,0.006048,0.005504,0.00688,0.01248,0.015232,0.901792,0.009664
+757,617.193,1.62024,1.85126,0.008192,0.229376,0.006016,0.005312,0.006656,0.012736,0.014336,1.2975,0.271136
+758,437.911,2.28357,1.19802,0.008352,0.227328,0.006144,0.005504,0.006784,0.01376,0.014496,0.905632,0.010016
+759,630.833,1.58521,1.19267,0.00816,0.234272,0.006112,0.005664,0.006624,0.01424,0.014432,0.8944,0.008768
+760,530.639,1.88452,1.23254,0.009504,0.22192,0.006144,0.005824,0.006464,0.014304,0.028704,0.929792,0.009888
+761,609.705,1.64014,2.04595,0.008192,0.222688,0.005792,0.004992,0.007424,0.013056,0.014336,1.75718,0.012288
+762,389.243,2.56909,1.2104,0.008544,0.22896,0.005728,0.00496,0.007264,0.013216,0.014304,0.917504,0.00992
+763,626.395,1.59644,1.59382,0.008672,0.234912,0.005024,0.007328,0.007008,0.012352,0.029952,1.27862,0.009952
+764,494.03,2.02417,1.20422,0.009632,0.221792,0.005696,0.004704,0.008032,0.01408,0.01392,0.916128,0.01024
+765,444.927,2.24756,1.18579,0.01024,0.23264,0.00496,0.006112,0.006144,0.014208,0.014496,0.887808,0.009184
+766,623.155,1.60474,1.18784,0.009536,0.221888,0.006144,0.006048,0.006272,0.014304,0.014336,0.900608,0.008704
+767,607.715,1.64551,1.37014,0.00832,0.404864,0.00576,0.004992,0.007552,0.014176,0.014592,0.901024,0.008864
+768,577.797,1.73071,1.1879,0.008288,0.229376,0.006176,0.005568,0.006688,0.014304,0.014368,0.892928,0.010208
+769,439.296,2.27637,1.20854,0.010496,0.229344,0.005888,0.004576,0.008,0.013952,0.014624,0.911424,0.01024
+770,634.252,1.57666,1.19398,0.009376,0.225344,0.00496,0.007104,0.007104,0.013856,0.0144,0.902656,0.009184
+771,575.685,1.73706,1.19485,0.008512,0.228864,0.00512,0.005952,0.006336,0.013856,0.014816,0.90112,0.010272
+772,598.393,1.67114,2.03414,0.008736,0.229376,0.006144,0.005696,0.006592,0.013824,0.014496,1.7369,0.012384
+773,410.092,2.43848,1.22253,0.008128,0.243648,0.00496,0.007168,0.007072,0.013824,0.014816,0.912864,0.010048
+774,582.729,1.71606,1.58874,0.008672,0.223264,0.006112,0.005568,0.00672,0.014304,0.0144,1.29798,0.011712
+775,454.858,2.19849,1.23427,0.018432,0.26608,0.005696,0.004704,0.008192,0.013696,0.014656,0.893152,0.009664
+776,596.129,1.67749,1.82598,0.00832,0.464416,0.00784,0.004928,0.006272,0.014208,0.014336,1.29568,0.009984
+777,473.252,2.11304,1.19366,0.008192,0.233472,0.005824,0.004576,0.007872,0.01376,0.01424,0.895808,0.00992
+778,588.929,1.698,1.36653,0.0088,0.405504,0.006144,0.006048,0.006272,0.014304,0.014336,0.894976,0.010144
+779,572.707,1.74609,1.57491,0.008352,0.230624,0.00496,0.00592,0.007264,0.013216,0.014336,1.27795,0.012288
+780,450.407,2.22021,1.2135,0.009632,0.232032,0.005728,0.004704,0.007808,0.013696,0.014624,0.915616,0.009664
+781,578.041,1.72998,1.18794,0.008288,0.231008,0.005728,0.004928,0.007552,0.012928,0.014336,0.892928,0.01024
+782,609.978,1.6394,1.19965,0.008192,0.224672,0.005728,0.00512,0.007232,0.013248,0.014336,0.91136,0.00976
+783,608.347,1.6438,1.85005,0.00848,0.239776,0.005824,0.004672,0.00784,0.01264,0.015456,1.2863,0.269056
+784,436.953,2.28857,1.21574,0.009696,0.237728,0.005728,0.004896,0.007968,0.013696,0.014496,0.911904,0.009632
+785,628.221,1.5918,1.53181,0.008192,0.239424,0.00576,0.004704,0.00752,0.012928,0.014336,1.22614,0.0128
+786,505.305,1.979,1.21242,0.009376,0.231328,0.005056,0.006112,0.007776,0.013792,0.01456,0.915296,0.00912
+787,613.909,1.62891,1.81885,0.008416,0.47088,0.007808,0.00464,0.007584,0.014048,0.014432,1.28211,0.008928
+788,455.922,2.19336,1.19184,0.008192,0.223232,0.006144,0.006144,0.007584,0.012896,0.014336,0.903168,0.010144
+789,566.293,1.76587,1.5769,0.00832,0.223232,0.006176,0.00592,0.006336,0.014048,0.014624,1.28819,0.010048
+790,542.301,1.84399,1.19312,0.008192,0.224928,0.005728,0.004864,0.00768,0.0128,0.014336,0.905056,0.009536
+791,417.278,2.39648,1.20522,0.010944,0.227552,0.006144,0.005344,0.006944,0.013568,0.014624,0.911424,0.008672
+792,607.445,1.64624,1.21318,0.008832,0.25008,0.005792,0.004768,0.007872,0.014368,0.014208,0.89712,0.010144
+793,587.156,1.70312,1.18579,0.008192,0.223232,0.006144,0.005792,0.008128,0.012704,0.014336,0.897024,0.01024
+794,630.057,1.58716,1.58666,0.008288,0.22528,0.00576,0.006528,0.007488,0.013024,0.014304,1.29229,0.013696
+795,445.702,2.24365,1.22976,0.008608,0.254464,0.00592,0.004544,0.00784,0.012416,0.014336,0.91296,0.008672
+796,589.183,1.69727,1.20784,0.008192,0.227264,0.00576,0.00576,0.006944,0.013472,0.014304,0.916384,0.00976
+797,540.227,1.85107,1.19222,0.00848,0.221632,0.006176,0.005408,0.008064,0.01312,0.014336,0.905216,0.009792
+798,548.841,1.82202,2.02925,0.008736,0.2336,0.005792,0.005472,0.007008,0.01376,0.014368,1.72717,0.013344
+799,422.355,2.36768,1.19379,0.008192,0.229376,0.006144,0.005504,0.006784,0.014336,0.014336,0.899072,0.010048
+800,499.451,2.0022,1.64246,0.009792,0.28512,0.00608,0.00544,0.006912,0.013824,0.014688,1.2904,0.010208
+801,323.564,3.09058,1.24112,0.009376,0.264672,0.005728,0.004896,0.007584,0.012928,0.014304,0.91264,0.008992
+802,752.941,1.32812,1.24525,0.0104,0.284544,0.005952,0.005472,0.007008,0.013696,0.014304,0.894848,0.009024
+803,675.35,1.48071,1.21651,0.00928,0.240576,0.005888,0.004576,0.007808,0.012576,0.014208,0.912672,0.008928
+804,551.13,1.81445,1.20566,0.00832,0.241632,0.00576,0.004704,0.00784,0.0136,0.014688,0.899456,0.009664
+805,620.794,1.61084,1.86605,0.008512,0.23952,0.00576,0.004576,0.008192,0.013856,0.014816,1.55648,0.014336
+806,426.622,2.34399,1.22214,0.008192,0.243136,0.005728,0.005088,0.007744,0.014016,0.014368,0.914144,0.009728
+807,626.875,1.59521,1.59485,0.008192,0.237568,0.006176,0.005376,0.00688,0.013472,0.014688,1.29066,0.01184
+808,463.453,2.15771,1.27136,0.009632,0.291424,0.00608,0.005472,0.006912,0.01344,0.01456,0.913984,0.009856
+809,437.233,2.28711,1.19811,0.010368,0.233376,0.006144,0.00576,0.006528,0.013792,0.014784,0.898304,0.009056
+810,631.514,1.5835,1.1969,0.0088,0.233024,0.00496,0.005952,0.007488,0.013024,0.015584,0.89904,0.009024
+811,571.19,1.75073,1.18022,0.008448,0.227648,0.005856,0.004608,0.00768,0.012576,0.014336,0.888832,0.01024
+812,515.091,1.94141,1.20662,0.008544,0.241664,0.006144,0.005472,0.006816,0.013984,0.014144,0.899616,0.01024
+813,549.504,1.81982,1.24746,0.010464,0.274464,0.006112,0.005728,0.00656,0.01376,0.014784,0.905344,0.01024
+814,612.898,1.63159,1.20803,0.008672,0.249728,0.005728,0.004704,0.007872,0.014016,0.014336,0.893376,0.0096
+815,565.59,1.76807,1.20256,0.008224,0.239104,0.00496,0.006112,0.006144,0.01424,0.014432,0.90048,0.008864
+816,609.705,1.64014,1.87024,0.0088,0.255392,0.004992,0.005984,0.007424,0.013056,0.014336,1.29146,0.2688
+817,432.432,2.3125,1.18579,0.008288,0.231328,0.006144,0.005568,0.00672,0.013504,0.01472,0.88928,0.01024
+818,653.061,1.53125,1.54038,0.008736,0.225184,0.005728,0.0048,0.007744,0.012736,0.015488,1.24403,0.015936
+819,508.946,1.96484,1.18608,0.008448,0.227904,0.005472,0.004928,0.007488,0.012992,0.014304,0.894816,0.009728
+820,617.518,1.61938,2.08077,0.009696,0.245568,0.00496,0.006016,0.007296,0.013184,0.015456,1.76634,0.012256
+821,394.605,2.53418,1.23088,0.008352,0.229504,0.0056,0.005024,0.00736,0.01312,0.014336,0.937568,0.010016
+822,571.03,1.75122,1.40051,0.008256,0.419776,0.006176,0.005952,0.006336,0.014304,0.015392,0.9144,0.00992
+823,523.718,1.90942,1.21987,0.008192,0.232896,0.00576,0.005056,0.007424,0.013056,0.014336,0.923392,0.00976
+824,624.867,1.60034,1.85734,0.00848,0.468128,0.007008,0.005408,0.00688,0.014208,0.014464,1.32294,0.009824
+825,460.483,2.17163,1.19587,0.00944,0.228128,0.006144,0.005664,0.007872,0.013088,0.014336,0.90112,0.01008
+826,584.308,1.71143,1.18989,0.009344,0.225504,0.004992,0.00592,0.007488,0.012992,0.014336,0.900288,0.009024
+827,493.732,2.02539,1.87805,0.008256,0.235456,0.006144,0.005536,0.006752,0.013824,0.014624,1.57421,0.013248
+828,527.427,1.896,1.22435,0.008192,0.236992,0.005728,0.00512,0.007456,0.012992,0.015424,0.92256,0.009888
+829,624.01,1.60254,1.18966,0.008384,0.229344,0.005504,0.004768,0.007712,0.012736,0.015424,0.895936,0.009856
+830,550.612,1.81616,1.20054,0.008512,0.224768,0.005792,0.00496,0.007616,0.01296,0.015296,0.911968,0.008672
+831,600.41,1.66553,2.09894,0.008416,0.257824,0.005888,0.004576,0.007872,0.012384,0.014336,1.77526,0.012384
+832,372.499,2.68457,1.21251,0.009216,0.238592,0.005792,0.005472,0.007104,0.0144,0.014368,0.90864,0.008928
+833,638.603,1.56592,1.61808,0.008352,0.249312,0.005792,0.005024,0.007456,0.012992,0.014368,1.30454,0.01024
+834,485.999,2.05762,1.22547,0.008768,0.262208,0.00576,0.004704,0.008128,0.01408,0.014368,0.897216,0.01024
+835,430.931,2.32056,1.24314,0.01024,0.253984,0.006112,0.00592,0.006432,0.01408,0.014272,0.921856,0.01024
+836,626.779,1.59546,1.2031,0.008736,0.229728,0.00592,0.00544,0.007072,0.01376,0.01424,0.909056,0.009152
+837,511.616,1.95459,1.21869,0.00832,0.231424,0.00608,0.005344,0.007008,0.012288,0.01536,0.922624,0.01024
+838,559.41,1.7876,2.08134,0.008768,0.246944,0.004992,0.006112,0.007232,0.013248,0.014336,1.76742,0.012288
+839,388.246,2.57568,1.25338,0.008192,0.294304,0.005728,0.00512,0.007296,0.014208,0.01472,0.894624,0.009184
+840,592.507,1.68774,1.45312,0.009408,0.47392,0.006144,0.005632,0.006656,0.014368,0.014304,0.912928,0.00976
+841,509.199,1.96387,1.2217,0.008192,0.237568,0.006144,0.005888,0.013984,0.012896,0.014336,0.912992,0.009696
+842,551.279,1.81396,1.39517,0.010752,0.419712,0.005408,0.004928,0.007616,0.014176,0.01424,0.908096,0.01024
+843,563.179,1.77563,1.19402,0.008192,0.233472,0.005824,0.004576,0.007872,0.012448,0.015936,0.896544,0.009152
+844,629.379,1.58887,1.39341,0.008896,0.405568,0.006144,0.00544,0.006848,0.014336,0.015488,0.921504,0.009184
+845,563.334,1.77515,1.20189,0.008192,0.237568,0.006112,0.005344,0.006976,0.013504,0.015008,0.899232,0.009952
+846,434.773,2.30005,1.24726,0.011904,0.274816,0.006144,0.005696,0.006592,0.014336,0.014368,0.903136,0.010272
+847,615.847,1.62378,1.20227,0.008448,0.233952,0.005728,0.004672,0.007712,0.012768,0.014336,0.905216,0.00944
+848,574.635,1.74023,1.19146,0.008192,0.232992,0.00576,0.00496,0.007584,0.012896,0.01536,0.893952,0.00976
+849,371.553,2.69141,1.33382,0.008448,0.31776,0.006144,0.00544,0.017088,0.014336,0.029728,0.92592,0.00896
+850,788.602,1.26807,1.85402,0.008768,0.48128,0.008192,0.005216,0.007072,0.014112,0.01456,1.30458,0.01024
+851,343.365,2.91235,1.65891,0.008416,0.280608,0.005984,0.005344,0.007104,0.013792,0.014528,1.31306,0.01008
+852,908.809,1.10034,1.18579,0.009792,0.229344,0.005728,0.005024,0.007328,0.01312,0.0144,0.892448,0.008608
+853,462.25,2.16333,1.20627,0.011552,0.229696,0.005728,0.004928,0.007552,0.012928,0.015616,0.909408,0.008864
+854,622.776,1.60571,1.20163,0.008192,0.233472,0.005728,0.004704,0.007808,0.013856,0.014368,0.903808,0.009696
+855,618.544,1.6167,1.37328,0.008192,0.40688,0.004992,0.00592,0.007392,0.014144,0.01456,0.901664,0.009536
+856,552.096,1.81128,1.21162,0.009376,0.229984,0.00576,0.004768,0.007776,0.01392,0.01424,0.914304,0.011488
+857,483.532,2.06812,1.22883,0.01136,0.241984,0.005728,0.00512,0.00736,0.013056,0.0144,0.92064,0.009184
+858,618.357,1.61719,1.19613,0.008288,0.22528,0.006144,0.005984,0.007968,0.01392,0.014464,0.904864,0.009216
+859,579.186,1.72656,1.20605,0.009536,0.227968,0.004384,0.00592,0.007712,0.012768,0.014368,0.913376,0.010016
+860,612.807,1.63184,1.86781,0.009376,0.24048,0.006144,0.005664,0.006624,0.014176,0.014528,1.55645,0.014368
+861,436.907,2.28882,1.18784,0.009312,0.232352,0.006144,0.005536,0.006752,0.013536,0.014912,0.890592,0.008704
+862,626.875,1.59521,1.18598,0.008704,0.231424,0.006176,0.005536,0.00672,0.013728,0.01424,0.889536,0.00992
+863,555.014,1.80176,1.20608,0.008224,0.233216,0.005728,0.005088,0.007584,0.012864,0.014336,0.909312,0.009728
+864,598.48,1.6709,1.63824,0.008352,0.261856,0.005728,0.0048,0.007776,0.012832,0.015296,1.30861,0.012992
+865,439.532,2.27515,1.19622,0.00816,0.240576,0.006144,0.005536,0.006752,0.013728,0.014464,0.891232,0.009632
+866,632.978,1.57983,1.54496,0.008896,0.234592,0.00512,0.006048,0.006208,0.014368,0.014304,1.24314,0.012288
+867,523.651,1.90967,1.20106,0.008448,0.23008,0.006112,0.006336,0.00784,0.012448,0.014336,0.905216,0.01024
+868,595.955,1.67798,1.84125,0.008192,0.456704,0.026528,0.004192,0.007808,0.013984,0.01472,1.30019,0.008928
+869,452.547,2.20972,1.20867,0.008352,0.235744,0.006112,0.005664,0.006624,0.013792,0.014528,0.908832,0.009024
+870,610.887,1.63696,1.59846,0.009248,0.23776,0.004896,0.006144,0.00816,0.013888,0.01456,1.29389,0.00992
+871,495.524,2.01807,1.21235,0.008192,0.23552,0.006176,0.005472,0.006816,0.0136,0.014784,0.911616,0.010176
+872,438.732,2.2793,1.21779,0.010432,0.237504,0.005952,0.00544,0.00704,0.014336,0.014336,0.913312,0.00944
+873,530.021,1.88672,1.22013,0.008192,0.241248,0.005728,0.004928,0.008192,0.012288,0.015488,0.914304,0.00976
+874,596.824,1.67554,1.23574,0.008448,0.23392,0.005728,0.004704,0.007616,0.013952,0.01456,0.938144,0.008672
+875,602.707,1.65918,2.09021,0.008224,0.237536,0.006144,0.005792,0.006496,0.013792,0.014848,1.78515,0.012224
+876,397.94,2.51294,1.19958,0.00944,0.230208,0.005888,0.00544,0.007072,0.013536,0.015136,0.903168,0.009696
+877,626.971,1.59497,1.58106,0.009248,0.224224,0.006144,0.005792,0.007744,0.013088,0.014336,1.28819,0.012288
+878,471.021,2.12305,1.19808,0.008192,0.229408,0.006112,0.006048,0.00624,0.014176,0.014336,0.903328,0.01024
+879,661.712,1.51123,2.04272,0.008448,0.235616,0.005728,0.00512,0.007296,0.013184,0.014336,1.7408,0.012192
+880,402.714,2.48315,1.20054,0.008608,0.231392,0.005728,0.004672,0.00784,0.013888,0.014464,0.903712,0.01024
+881,584.141,1.71191,1.23277,0.009248,0.232416,0.006144,0.005984,0.006304,0.013856,0.014784,0.93392,0.010112
+882,598.306,1.67139,1.60358,0.009344,0.250752,0.006144,0.005952,0.006336,0.014336,0.014368,1.28336,0.012992
+883,442.954,2.25757,1.22506,0.008448,0.252,0.006144,0.005376,0.006912,0.013696,0.014656,0.907616,0.010208
+884,560.482,1.78418,1.22352,0.008864,0.252096,0.006144,0.005568,0.00672,0.01392,0.014336,0.905632,0.01024
+885,601.38,1.66284,1.19194,0.009408,0.230208,0.006144,0.00608,0.006304,0.012192,0.015424,0.897184,0.008992
+886,624.962,1.6001,2.03094,0.00832,0.231424,0.006144,0.006048,0.006272,0.014304,0.014336,1.73158,0.012512
+887,400.508,2.49683,1.20298,0.008448,0.236064,0.006144,0.005792,0.006496,0.01424,0.014464,0.902272,0.009056
+888,622.209,1.60718,1.59683,0.009216,0.232064,0.005728,0.004896,0.00768,0.0128,0.014432,1.29994,0.01008
+889,494.03,2.02417,1.19779,0.009408,0.231776,0.00576,0.00496,0.008192,0.012288,0.016,0.899456,0.009952
+890,408.742,2.44653,1.23638,0.010336,0.263328,0.00496,0.006112,0.007264,0.013216,0.014336,0.907264,0.009568
+891,641.002,1.56006,1.1921,0.008448,0.231456,0.00592,0.005344,0.007168,0.01424,0.014432,0.894976,0.010112
+892,589.692,1.6958,1.20384,0.00928,0.232416,0.006112,0.006176,0.007648,0.0128,0.015392,0.90416,0.009856
+893,609.705,1.64014,1.20294,0.008448,0.243936,0.00576,0.004768,0.007712,0.0128,0.014304,0.896064,0.009152
+894,437.888,2.28369,1.20218,0.011456,0.242464,0.00576,0.004704,0.007808,0.014112,0.014784,0.891936,0.009152
+895,628.414,1.59131,1.21651,0.00832,0.255424,0.005728,0.00496,0.007424,0.013056,0.014464,0.896896,0.01024
+896,556.824,1.7959,1.20694,0.008736,0.229504,0.006176,0.00592,0.006336,0.014336,0.014368,0.911328,0.01024
+897,606.096,1.6499,2.02227,0.008448,0.234112,0.00592,0.004544,0.007968,0.01344,0.01488,1.72067,0.012288
+898,352.769,2.83472,1.20832,0.008192,0.249632,0.005728,0.005952,0.006976,0.014016,0.014432,0.893152,0.01024
+899,397.747,2.51416,1.22678,0.009248,0.271328,0.006144,0.005664,0.006624,0.013824,0.01488,0.889824,0.009248
+900,545.697,1.83252,1.6087,0.008768,0.274656,0.00576,0.004704,0.007872,0.012608,0.014336,1.26723,0.012768
+901,380.74,2.62646,1.24928,0.008224,0.282592,0.006144,0.005696,0.006624,0.01376,0.01488,0.90112,0.01024
+902,847.507,1.17993,1.63165,0.009472,0.262912,0.005376,0.004896,0.007712,0.012736,0.0144,1.30246,0.01168
+903,444.589,2.24927,1.23293,0.008192,0.256032,0.006112,0.006112,0.006304,0.01424,0.0144,0.911264,0.010272
+904,605.022,1.65283,1.8761,0.008192,0.448512,0.043008,0.005472,0.006816,0.014208,0.014304,1.32666,0.008928
+905,462.094,2.16406,1.2024,0.00816,0.235008,0.00496,0.005984,0.007232,0.013216,0.014336,0.904544,0.00896
+906,418.301,2.39062,1.24112,0.009504,0.271072,0.005856,0.005472,0.007072,0.01376,0.014496,0.903616,0.010272
+907,854.758,1.16992,1.22118,0.009024,0.255744,0.00576,0.004768,0.007744,0.012704,0.014336,0.90112,0.009984
+908,413.278,2.41968,1.88416,0.009728,0.45312,0.007904,0.004384,0.007712,0.016768,0.053376,1.32198,0.009184
+909,641.604,1.55859,1.58723,0.008224,0.256,0.005952,0.005312,0.007104,0.012352,0.015584,1.26438,0.01232
+910,509.643,1.96216,1.21011,0.009408,0.24864,0.006144,0.005952,0.006336,0.014336,0.014336,0.894976,0.009984
+911,622.587,1.6062,2.0991,0.008192,0.247104,0.005824,0.00512,0.00736,0.013152,0.014304,1.78704,0.011008
+912,403.945,2.47559,1.20563,0.008224,0.237536,0.006176,0.005568,0.008032,0.012992,0.0144,0.903104,0.0096
+913,648.101,1.54297,1.39469,0.008224,0.407264,0.005728,0.004768,0.007744,0.014176,0.014752,0.92288,0.009152
+914,512.192,1.95239,1.28826,0.008544,0.311712,0.005888,0.005472,0.007072,0.01344,0.014336,0.912128,0.009664
+915,453.147,2.20679,1.22115,0.010752,0.25728,0.004992,0.006016,0.006176,0.014176,0.014464,0.897024,0.010272
+916,632.782,1.58032,1.20461,0.008736,0.229472,0.006144,0.00592,0.00784,0.012864,0.015616,0.908032,0.009984
+917,579.267,1.72632,1.19971,0.008448,0.223552,0.006112,0.005536,0.006752,0.013568,0.014784,0.91136,0.0096
+918,471.944,2.1189,1.19763,0.00832,0.232512,0.005088,0.006112,0.006304,0.014176,0.014336,0.90096,0.009824
+919,595.349,1.67969,1.23482,0.010944,0.24928,0.005792,0.005088,0.00736,0.013152,0.014304,0.919296,0.0096
+920,601.822,1.66162,1.21427,0.009536,0.240096,0.005504,0.00496,0.007616,0.012864,0.01536,0.908288,0.010048
+921,644.836,1.55078,1.22621,0.008256,0.251424,0.005728,0.005152,0.007296,0.013184,0.014304,0.911232,0.009632
+922,588.929,1.698,1.2496,0.008512,0.261856,0.006016,0.004704,0.007872,0.013888,0.014272,0.92352,0.00896
+923,599.006,1.66943,1.25133,0.008192,0.259744,0.00576,0.004832,0.007552,0.012928,0.014336,0.9288,0.009184
+924,601.468,1.6626,1.19197,0.009856,0.22976,0.006176,0.005856,0.0064,0.014336,0.014336,0.894976,0.010272
+925,613.174,1.63086,1.38816,0.008096,0.405984,0.00576,0.004736,0.007744,0.013984,0.014208,0.918144,0.009504
+926,429.891,2.32617,1.21277,0.008544,0.239488,0.00576,0.004704,0.007968,0.012512,0.015584,0.907968,0.01024
+927,730.646,1.36865,1.84461,0.00928,0.46176,0.007904,0.004384,0.007968,0.014016,0.014688,1.31459,0.010016
+928,504.682,1.98145,1.21222,0.009312,0.231648,0.004992,0.007808,0.006336,0.014336,0.014176,0.913568,0.010048
+929,541.512,1.84668,1.20605,0.00928,0.228288,0.006112,0.005312,0.007008,0.014112,0.014496,0.911424,0.010016
+930,591.139,1.69165,1.90589,0.008192,0.260096,0.005824,0.005472,0.007136,0.013568,0.014496,1.32157,0.269536
+931,439.579,2.2749,1.2008,0.008576,0.231456,0.00576,0.004768,0.007648,0.0128,0.015776,0.904864,0.009152
+932,609.433,1.64087,1.59645,0.009344,0.226208,0.006112,0.005536,0.006752,0.014016,0.014688,1.30205,0.011744
+933,503.318,1.98682,1.20256,0.007904,0.231936,0.006048,0.005312,0.006752,0.012576,0.01456,0.908512,0.00896
+934,612.166,1.63354,1.83933,0.008768,0.465248,0.008192,0.00576,0.006528,0.014336,0.014336,1.30627,0.009888
+935,435.189,2.29785,1.20422,0.00928,0.234432,0.006144,0.005408,0.00688,0.012288,0.014336,0.906464,0.008992
+936,613.909,1.62891,1.4008,0.009088,0.405504,0.006176,0.006016,0.006304,0.014272,0.014336,0.929536,0.009568
+937,395.176,2.53052,1.25322,0.008224,0.274304,0.005696,0.004672,0.007776,0.012704,0.014336,0.915456,0.010048
+938,620.418,1.61182,1.21939,0.01104,0.249888,0.006112,0.005888,0.0064,0.014336,0.014336,0.90112,0.010272
+939,622.871,1.60547,1.2247,0.008192,0.249856,0.005952,0.005344,0.007072,0.012352,0.015616,0.91008,0.01024
+940,556.9,1.79565,1.2063,0.00944,0.230208,0.006112,0.005952,0.007392,0.01328,0.014336,0.909312,0.010272
+941,648.614,1.54175,1.19398,0.008192,0.232896,0.00576,0.005088,0.007616,0.012832,0.014336,0.898112,0.009152
+942,442.094,2.26196,1.22451,0.012192,0.245376,0.005728,0.004992,0.007648,0.012832,0.014336,0.91136,0.010048
+943,618.918,1.61572,1.52707,0.00832,0.227136,0.00576,0.004672,0.007744,0.012832,0.015968,1.23117,0.013472
+944,517.041,1.93408,1.20627,0.008224,0.224672,0.005728,0.00512,0.0072,0.013248,0.014336,0.917504,0.01024
+945,595.868,1.67822,2.05197,0.008224,0.22896,0.00576,0.004864,0.007584,0.012896,0.014336,1.75718,0.01216
+946,406.874,2.45776,1.22221,0.017984,0.256448,0.00592,0.005472,0.00704,0.013792,0.01488,0.89088,0.009792
+947,635.236,1.57422,1.57475,0.008416,0.225376,0.0072,0.005088,0.007968,0.012512,0.015424,1.28301,0.00976
+948,498.722,2.00513,1.2225,0.009408,0.23968,0.004992,0.006016,0.00736,0.01312,0.014336,0.917504,0.01008
+949,435.097,2.29834,1.2104,0.01072,0.245792,0.006048,0.005312,0.00704,0.012512,0.015168,0.898016,0.009792
+950,646.669,1.54639,1.22573,0.008224,0.229344,0.006048,0.005472,0.00688,0.013504,0.01472,0.932032,0.009504
+951,572.627,1.74634,1.19194,0.008224,0.22528,0.006112,0.005376,0.006912,0.012352,0.015392,0.902048,0.01024
+952,598.306,1.67139,1.86541,0.009248,0.22768,0.00496,0.00592,0.00752,0.01296,0.015616,1.56739,0.014112
+953,442.811,2.2583,1.21616,0.00832,0.232672,0.004992,0.00592,0.007264,0.013152,0.0144,0.919552,0.009888
+954,514.121,1.94507,1.55286,0.008672,0.24576,0.006144,0.005856,0.006432,0.014336,0.014368,1.23901,0.012288
+955,575.119,1.73877,1.21619,0.008192,0.239616,0.006144,0.005824,0.006464,0.01424,0.014432,0.91136,0.00992
+956,631.222,1.58423,2.03981,0.008288,0.227328,0.005312,0.004928,0.007648,0.012832,0.014336,1.74691,0.012224
+957,394.529,2.53467,1.23904,0.008096,0.256352,0.006176,0.005408,0.006848,0.013376,0.014336,0.918464,0.009984
+958,619.667,1.61377,1.37974,0.00848,0.404832,0.004992,0.00592,0.007424,0.014336,0.015072,0.909152,0.009536
+959,560.175,1.78516,1.1881,0.008448,0.223232,0.00608,0.005344,0.00704,0.012256,0.014464,0.902048,0.009184
+960,405.826,2.46411,1.26266,0.011264,0.24912,0.004992,0.005952,0.007296,0.013184,0.014336,0.947616,0.008896
+961,527.971,1.89404,1.21078,0.008,0.235616,0.005728,0.005024,0.007328,0.013184,0.014304,0.91136,0.01024
+962,655.675,1.52515,1.23494,0.00928,0.234432,0.006144,0.00576,0.00656,0.014048,0.0144,0.935232,0.009088
+963,608.618,1.64307,1.91824,0.00928,0.266976,0.00576,0.004704,0.007712,0.0128,0.014304,1.58106,0.015648
+964,433.531,2.30664,1.22061,0.008192,0.228448,0.005024,0.006144,0.006176,0.014304,0.014336,0.927744,0.01024
+965,603.329,1.65747,1.53395,0.008192,0.232512,0.005056,0.006016,0.006272,0.013952,0.01472,1.2345,0.012736
+966,508.63,1.96606,1.21341,0.008704,0.2256,0.005728,0.006656,0.006336,0.014208,0.014336,0.922752,0.009088
+967,584.058,1.71216,1.83501,0.008416,0.47552,0.008224,0.005344,0.006912,0.014208,0.014464,1.29206,0.009856
+968,460.691,2.17065,1.22304,0.008544,0.22736,0.006112,0.0056,0.006688,0.014048,0.014624,0.930816,0.009248
+969,594.657,1.68164,1.43565,0.00928,0.4488,0.00496,0.005952,0.007232,0.014432,0.014496,0.92192,0.008576
+970,541.942,1.84521,1.22269,0.009504,0.231552,0.00496,0.005888,0.007424,0.014176,0.014432,0.92592,0.008832
+971,599.707,1.66748,1.96829,0.008384,0.536832,0.045056,0.005472,0.006816,0.014336,0.014336,1.3271,0.009952
+972,416.599,2.40039,1.21978,0.00944,0.233728,0.005728,0.005056,0.007552,0.012928,0.014368,0.921376,0.0096
+973,596.302,1.677,1.1953,0.008384,0.228224,0.005056,0.006016,0.007936,0.012672,0.014336,0.903008,0.009664
+974,625.439,1.59888,1.85942,0.008448,0.228832,0.005792,0.004992,0.00752,0.01296,0.015552,1.56118,0.014144
+975,432.981,2.30957,1.19402,0.00864,0.231456,0.00576,0.004736,0.00768,0.0128,0.014336,0.898944,0.009664
+976,622.966,1.60522,1.52669,0.008928,0.22752,0.006176,0.005824,0.006432,0.014048,0.014368,1.2311,0.012288
+977,496.967,2.01221,1.19126,0.00928,0.22976,0.005728,0.005088,0.007328,0.013088,0.014432,0.89696,0.0096
+978,601.734,1.66187,2.1047,0.008192,0.27344,0.005088,0.006144,0.006144,0.014336,0.014336,1.76474,0.012288
+979,397.94,2.51294,1.23024,0.008192,0.257856,0.005824,0.00464,0.007776,0.012704,0.015584,0.907776,0.009888
+980,656.621,1.52295,1.41875,0.008224,0.419808,0.006144,0.005856,0.006432,0.014336,0.014368,0.933856,0.009728
+981,542.086,1.84473,1.21414,0.008448,0.229568,0.006176,0.005568,0.006688,0.013632,0.014272,0.920192,0.0096
+982,572.387,1.74707,1.86371,0.008224,0.473088,0.007968,0.00432,0.007744,0.014112,0.014304,1.32474,0.009216
+983,460.742,2.17041,1.21232,0.008192,0.231424,0.006176,0.005536,0.00672,0.013568,0.014816,0.915744,0.010144
+984,579.924,1.72437,1.23299,0.008448,0.231424,0.006144,0.00544,0.006848,0.01376,0.0144,0.936448,0.01008
+985,590.883,1.69238,1.21181,0.008384,0.245568,0.005824,0.004576,0.00784,0.01248,0.015744,0.90176,0.009632
+986,367.223,2.72314,1.2288,0.011552,0.25616,0.005728,0.005088,0.007488,0.013024,0.015584,0.903968,0.010208
+987,662.998,1.5083,1.60768,0.008224,0.233056,0.005728,0.004896,0.00752,0.01296,0.014336,1.30979,0.011168
+988,464.557,2.15259,1.20515,0.008864,0.227584,0.00608,0.005536,0.006816,0.014336,0.014336,0.91136,0.01024
+989,626.108,1.59717,1.85549,0.008192,0.494592,0.007168,0.00576,0.006528,0.014336,0.014336,1.29555,0.009024
+990,456.074,2.19263,1.20016,0.009472,0.231776,0.005728,0.004928,0.008192,0.01408,0.014496,0.902656,0.008832
+991,628.896,1.59009,1.38419,0.008128,0.405568,0.006144,0.005376,0.006912,0.014336,0.01552,0.912224,0.009984
+992,534.307,1.87158,1.19846,0.008832,0.235584,0.005984,0.004352,0.007936,0.013696,0.014432,0.897728,0.00992
+993,556.749,1.79614,1.41885,0.018432,0.421888,0.006144,0.005312,0.006976,0.014336,0.014336,0.9216,0.009824
+994,527.224,1.89673,1.27181,0.009536,0.260064,0.004992,0.005984,0.007296,0.013184,0.014336,0.9472,0.009216
+995,555.164,1.80127,1.22896,0.008416,0.237472,0.00576,0.00464,0.007872,0.012608,0.014336,0.927744,0.010112
+996,627.163,1.59448,1.87805,0.008224,0.255392,0.00576,0.005056,0.007488,0.012992,0.014336,1.55555,0.013248
+997,434.912,2.29932,1.24928,0.009504,0.260832,0.006144,0.005376,0.006912,0.01376,0.01472,0.922944,0.009088
+998,598.83,1.66992,1.23299,0.008288,0.258048,0.005824,0.00544,0.007104,0.013472,0.0144,0.911648,0.008768
+999,551.279,1.81396,1.23254,0.008416,0.234912,0.005088,0.006048,0.00624,0.014048,0.014624,0.9336,0.009568
+1000,603.952,1.65576,1.2104,0.009312,0.236448,0.006144,0.00576,0.006528,0.013984,0.014432,0.90864,0.009152
+1001,428.856,2.33179,1.23174,0.011136,0.245792,0.00592,0.004544,0.007808,0.013696,0.014656,0.917984,0.010208
+1002,615.015,1.62598,1.60938,0.008224,0.241664,0.006112,0.005824,0.006464,0.014336,0.014368,1.30045,0.011936
+1003,472.597,2.11597,1.20422,0.008192,0.23552,0.006144,0.005632,0.006656,0.013696,0.014368,0.905152,0.008864
+1004,618.357,1.61719,1.9047,0.008256,0.52224,0.008192,0.00576,0.006528,0.014336,0.014336,1.31482,0.01024
+1005,432.935,2.30981,1.21245,0.008224,0.234528,0.005056,0.006016,0.006272,0.01392,0.014624,0.913536,0.010272
+1006,563.411,1.7749,1.21651,0.009504,0.2312,0.005056,0.006144,0.006336,0.014144,0.014336,0.9208,0.008992
+1007,617.705,1.6189,1.61408,0.008256,0.243904,0.005792,0.004576,0.00784,0.012512,0.01568,1.30275,0.012768
+1008,433.485,2.30688,1.23699,0.008192,0.23552,0.006144,0.005504,0.006784,0.014336,0.014464,0.936832,0.009216
+1009,601.027,1.66382,1.21613,0.008192,0.23552,0.005184,0.005056,0.007488,0.012864,0.014432,0.917568,0.009824
+1010,556.068,1.79834,1.2247,0.00928,0.232384,0.005952,0.00544,0.007072,0.013824,0.014592,0.92592,0.01024
+1011,573.188,1.74463,2.09542,0.008448,0.264256,0.007552,0.004736,0.007808,0.012672,0.015584,1.76208,0.012288
+1012,393.657,2.54028,1.2288,0.008192,0.2552,0.005984,0.005088,0.007424,0.013056,0.014304,0.909312,0.01024
+1013,594.83,1.68115,1.61523,0.00832,0.26176,0.004352,0.005824,0.006496,0.013728,0.01472,1.29037,0.009664
+1014,507.307,1.97119,1.22224,0.00928,0.23152,0.00496,0.006144,0.007168,0.013344,0.014336,0.925664,0.009824
+1015,418.685,2.38843,1.23904,0.01024,0.247488,0.005728,0.004864,0.007552,0.012896,0.014336,0.927232,0.008704
+1016,634.645,1.57568,1.20435,0.008768,0.227424,0.00576,0.004704,0.007808,0.013824,0.014848,0.91136,0.009856
+1017,554.938,1.802,1.20422,0.008192,0.226624,0.004992,0.005984,0.007232,0.014656,0.01472,0.913152,0.008672
+1018,628.607,1.59082,1.86765,0.009696,0.234016,0.006112,0.005504,0.006816,0.014208,0.014464,1.56262,0.014208
+1019,439.202,2.27686,1.2288,0.008192,0.229376,0.005824,0.004576,0.00752,0.0128,0.014368,0.93712,0.009024
+1020,445.605,2.24414,1.63942,0.008864,0.257536,0.004448,0.004512,0.007808,0.012704,0.015712,1.31859,0.009248
+1021,495.284,2.01904,1.22061,0.008192,0.233472,0.006144,0.005632,0.006656,0.012288,0.01552,0.923808,0.008896
+1022,430.659,2.32202,1.2296,0.01104,0.23552,0.00576,0.004704,0.007936,0.014144,0.01456,0.92672,0.009216
+1023,627.163,1.59448,1.20416,0.008192,0.229152,0.00576,0.004704,0.007872,0.012608,0.014336,0.912672,0.008864
+1024,530.776,1.88403,1.204,0.008224,0.229376,0.006144,0.005792,0.006496,0.014304,0.014304,0.909376,0.009984
+1025,633.369,1.57886,1.87802,0.008352,0.23536,0.006144,0.005824,0.006464,0.014336,0.014336,1.32227,0.264928
+1026,447.748,2.2334,1.20941,0.008224,0.227072,0.005728,0.004736,0.008192,0.014336,0.014336,0.917312,0.009472
+1027,513.669,1.94678,1.64352,0.008224,0.251872,0.00608,0.005568,0.006784,0.015776,0.028864,1.3088,0.011552
+1028,382.304,2.61572,1.24314,0.009472,0.250656,0.006112,0.005728,0.00656,0.013856,0.014816,0.927136,0.0088
+1029,1009.86,0.990234,2.07667,0.008192,0.239616,0.006144,0.005504,0.006784,0.0136,0.014816,1.77152,0.010496
+1030,395.138,2.53076,1.21334,0.008928,0.233504,0.005728,0.004704,0.00784,0.014016,0.014656,0.914848,0.00912
+1031,603.952,1.65576,1.21018,0.00848,0.225792,0.005728,0.004576,0.007616,0.0128,0.014336,0.921344,0.009504
+1032,580.417,1.7229,1.23699,0.00976,0.26192,0.004992,0.005952,0.007232,0.013248,0.014336,0.909312,0.01024
+1033,436.86,2.28906,1.23507,0.010688,0.25552,0.005728,0.004992,0.007424,0.013088,0.014304,0.913408,0.00992
+1034,635.926,1.57251,1.21286,0.008608,0.230496,0.005024,0.006144,0.006176,0.014304,0.014336,0.919104,0.008672
+1035,488.2,2.04834,1.24077,0.00832,0.257952,0.006112,0.0056,0.006688,0.013792,0.014368,0.918048,0.009888
+1036,542.948,1.8418,1.92211,0.008192,0.284576,0.005728,0.004704,0.008,0.013696,0.0144,1.56739,0.015424
+1037,427.201,2.34082,1.24698,0.009536,0.262848,0.006016,0.005312,0.007072,0.013408,0.0144,0.9184,0.009984
+1038,662.033,1.5105,1.64838,0.010144,0.25728,0.00496,0.006144,0.006368,0.014112,0.014336,1.32506,0.009984
+1039,450.754,2.21851,1.22848,0.008192,0.229088,0.00576,0.004768,0.007648,0.012832,0.014368,0.935904,0.00992
+1040,488.258,2.0481,1.24288,0.011296,0.256992,0.006144,0.005856,0.006432,0.01408,0.014368,0.917728,0.009984
+1041,607.805,1.64526,1.21309,0.008448,0.230816,0.00512,0.00592,0.006368,0.013888,0.014528,0.91776,0.01024
+1042,443.338,2.25562,1.24723,0.009856,0.24928,0.005088,0.006112,0.007296,0.012928,0.014336,0.933216,0.00912
+1043,731.821,1.36646,1.29642,0.008448,0.280128,0.005696,0.004736,0.00768,0.012832,0.014304,0.953568,0.009024
+1044,404.743,2.4707,1.27085,0.012128,0.278208,0.005728,0.004992,0.007776,0.012768,0.016128,0.923552,0.009568
+1045,639.101,1.5647,1.62195,0.008064,0.238432,0.006144,0.005792,0.006496,0.013536,0.013088,1.3185,0.011904
+1046,510.596,1.9585,1.21216,0.008544,0.23552,0.006048,0.00544,0.006944,0.013824,0.014368,0.91184,0.009632
+1047,587.24,1.70288,1.84422,0.008288,0.467232,0.00784,0.005088,0.006144,0.01536,0.014848,1.30918,0.01024
+1048,455.465,2.19556,1.20989,0.008192,0.231424,0.005824,0.005472,0.006976,0.013824,0.014688,0.913728,0.00976
+1049,601.557,1.66235,1.41731,0.00816,0.405632,0.005824,0.004576,0.008032,0.014368,0.014304,0.946176,0.01024
+1050,403.269,2.47974,1.22765,0.008768,0.233792,0.005792,0.004704,0.007872,0.013536,0.014176,0.930112,0.008896
+1051,653.165,1.53101,1.22944,0.010752,0.241792,0.006144,0.005856,0.006464,0.014176,0.014464,0.92112,0.008672
+1052,603.952,1.65576,1.21702,0.008832,0.229728,0.005952,0.00544,0.00704,0.014304,0.014304,0.921664,0.00976
+1053,584.058,1.71216,1.21971,0.009248,0.230272,0.005728,0.00464,0.007808,0.01264,0.014336,0.92544,0.0096
+1054,598.131,1.67188,1.87597,0.008192,0.231168,0.005728,0.004768,0.007808,0.013728,0.014496,1.32179,0.268288
+1055,433.302,2.30786,1.25747,0.008224,0.257344,0.004992,0.005952,0.006176,0.014272,0.014336,0.935936,0.01024
+1056,598.568,1.67065,1.55338,0.008896,0.227008,0.00576,0.005088,0.007456,0.013024,0.014336,1.25859,0.013216
+1057,510.787,1.95776,1.20771,0.008192,0.227328,0.006144,0.005536,0.006784,0.013408,0.014496,0.916192,0.009632
+1058,608.709,1.64282,2.06477,0.00864,0.240736,0.005024,0.006144,0.006368,0.014112,0.0144,1.75827,0.011072
+1059,396.323,2.52319,1.21827,0.009312,0.232352,0.006112,0.005312,0.007008,0.012288,0.014432,0.921504,0.009952
+1060,619.105,1.61523,1.38896,0.008608,0.404928,0.005728,0.005088,0.007488,0.013056,0.01632,0.918912,0.008832
+1061,562.097,1.77905,1.22675,0.008224,0.239584,0.006176,0.005344,0.006912,0.013792,0.014432,0.923808,0.00848
+1062,392.45,2.5481,1.22006,0.010496,0.245728,0.00576,0.004672,0.007904,0.0144,0.014432,0.907104,0.009568
+1063,642.812,1.55566,1.20198,0.00832,0.228768,0.005728,0.00512,0.007328,0.013152,0.014336,0.909312,0.00992
+1064,556.371,1.79736,1.21709,0.0088,0.224896,0.00592,0.004704,0.00784,0.012768,0.014208,0.927744,0.010208
+1065,610.887,1.63696,2.04861,0.008416,0.228832,0.005024,0.006048,0.006272,0.01392,0.014624,1.75318,0.012288
+1066,397.593,2.51514,1.2167,0.008384,0.231424,0.006144,0.005664,0.006656,0.014112,0.01424,0.91984,0.01024
+1067,459.09,2.17822,1.6327,0.008448,0.227488,0.005728,0.006592,0.006144,0.014336,0.014368,1.33734,0.012256
+1068,653.061,1.53125,1.24698,0.009248,0.235872,0.004992,0.005888,0.007392,0.013088,0.014336,0.946176,0.009984
+1069,404.583,2.47168,1.23069,0.010528,0.24688,0.006112,0.005024,0.007392,0.01312,0.014304,0.917504,0.009824
+1070,596.824,1.67554,1.23629,0.00944,0.227328,0.004992,0.006048,0.0072,0.01328,0.015776,0.9424,0.009824
+1071,563.877,1.77344,1.21773,0.008192,0.229376,0.006144,0.005856,0.006528,0.013888,0.014656,0.923488,0.0096
+1072,608.618,1.64307,1.25248,0.009568,0.232096,0.00592,0.005536,0.006976,0.013408,0.014336,0.95504,0.0096
+1073,474.788,2.1062,1.23616,0.011424,0.232288,0.006176,0.005728,0.006528,0.014016,0.014528,0.935904,0.009568
+1074,600.586,1.66504,1.21037,0.009376,0.229632,0.005728,0.00512,0.0072,0.01328,0.014336,0.916576,0.00912
+1075,546.789,1.82886,1.20963,0.008224,0.229344,0.005952,0.005344,0.00704,0.012384,0.015456,0.916288,0.0096
+1076,604.308,1.65479,2.09222,0.008192,0.260096,0.006144,0.005728,0.006592,0.014208,0.014432,1.76474,0.012096
+1077,406.753,2.4585,1.21939,0.008448,0.23584,0.00576,0.004736,0.007648,0.012832,0.014336,0.919552,0.01024
+1078,560.789,1.7832,1.6055,0.00832,0.23344,0.005408,0.004832,0.006304,0.014176,0.014272,1.30874,0.010016
+1079,525.128,1.9043,1.21629,0.008256,0.227328,0.006144,0.005536,0.006752,0.013472,0.01488,0.923968,0.009952
+1080,436.255,2.29224,1.25584,0.010816,0.249856,0.006144,0.005632,0.006656,0.013664,0.01456,0.938432,0.01008
+1081,615.57,1.62451,1.20829,0.008192,0.224992,0.005728,0.0048,0.007616,0.012864,0.014336,0.919552,0.010208
+1082,576.009,1.73608,1.2288,0.008192,0.221216,0.006112,0.00576,0.006528,0.01408,0.014624,0.943104,0.009184
+1083,601.115,1.66357,1.87334,0.008192,0.227264,0.005792,0.005632,0.007072,0.012288,0.016064,1.57667,0.014368
+1084,437.56,2.2854,1.23904,0.00976,0.227808,0.006144,0.005856,0.006432,0.013856,0.014688,0.945792,0.008704
+1085,604.843,1.65332,1.57066,0.008192,0.226944,0.01664,0.005344,0.007072,0.014304,0.014368,1.26515,0.01264
+1086,516.129,1.9375,1.22355,0.008672,0.225632,0.016192,0.005472,0.007072,0.013696,0.014336,0.923712,0.008768
+1087,579.677,1.7251,2.05715,0.008448,0.225984,0.006144,0.005696,0.006592,0.014208,0.014464,1.76506,0.01056
+1088,413.654,2.41748,1.21936,0.008768,0.227584,0.006176,0.006112,0.007712,0.012768,0.015712,0.92432,0.010208
+1089,593.451,1.68506,1.39581,0.008192,0.406784,0.00496,0.006048,0.006304,0.014176,0.014336,0.925216,0.009792
+1090,545.479,1.83325,1.22256,0.00848,0.22848,0.005024,0.006112,0.006144,0.014304,0.014368,0.929664,0.009984
+1091,365.682,2.73462,1.26157,0.011328,0.256736,0.005728,0.004736,0.007648,0.012832,0.014336,0.939072,0.009152
+1092,854.936,1.16968,1.22861,0.009312,0.232352,0.005984,0.00544,0.007008,0.013856,0.014816,0.929792,0.010048
+1093,576.901,1.7334,1.21213,0.008192,0.22528,0.006144,0.0056,0.00672,0.013536,0.014496,0.922208,0.009952
+1094,594.312,1.68262,1.87187,0.00976,0.230976,0.005024,0.006144,0.007648,0.013952,0.014272,1.56976,0.014336
+1095,432.387,2.31274,1.21258,0.008352,0.231424,0.006144,0.005952,0.006336,0.013856,0.014368,0.915904,0.01024
+1096,603.507,1.65698,1.5584,0.008256,0.229376,0.006016,0.005472,0.006944,0.013696,0.01488,1.26099,0.012768
+1097,517.041,1.93408,1.21856,0.008224,0.229344,0.006144,0.005408,0.00688,0.01232,0.015584,0.925856,0.0088
+1098,611.252,1.63599,1.90074,0.008352,0.468992,0.022432,0.004192,0.00784,0.013888,0.014272,1.35053,0.01024
+1099,429.62,2.32764,1.23152,0.00848,0.233632,0.005728,0.004896,0.006368,0.014112,0.014336,0.933888,0.01008
+1100,582.314,1.71729,1.6449,0.008832,0.272576,0.00576,0.004704,0.00784,0.013664,0.01472,1.30694,0.009856
+1101,495.944,2.01636,1.20768,0.008256,0.231424,0.006144,0.005696,0.006624,0.01408,0.01456,0.911328,0.009568
+1102,433.073,2.30908,1.26157,0.011648,0.247872,0.005728,0.005088,0.007424,0.013056,0.014336,0.946176,0.01024
+1103,616.96,1.62085,1.21856,0.008192,0.227328,0.005824,0.004576,0.00784,0.012512,0.01536,0.926688,0.01024
+1104,529.952,1.88696,1.22426,0.008288,0.228448,0.00608,0.005088,0.008064,0.013792,0.014496,0.930176,0.009824
+1105,636.124,1.57202,2.05891,0.008416,0.239424,0.00496,0.00592,0.007232,0.013248,0.014336,1.75309,0.012288
+1106,400.274,2.49829,1.24989,0.008768,0.229568,0.00576,0.004704,0.00784,0.012832,0.015904,0.954656,0.009856
+1107,600.41,1.66553,1.64278,0.008416,0.227392,0.00576,0.004544,0.007776,0.01264,0.015488,1.34954,0.011232
+1108,499.269,2.00293,1.21718,0.008832,0.226944,0.00576,0.004992,0.007488,0.012992,0.014336,0.925696,0.010144
+1109,585.729,1.70728,1.87926,0.009408,0.471648,0.007808,0.004704,0.007488,0.014144,0.014688,1.33971,0.009664
+1110,444.107,2.25171,1.21792,0.009664,0.225856,0.006144,0.005536,0.006688,0.013792,0.0144,0.92624,0.0096
+1111,579.924,1.72437,1.22762,0.008448,0.227936,0.00576,0.004576,0.007808,0.012576,0.014336,0.937024,0.009152
+1112,590.032,1.69482,1.91968,0.008704,0.227328,0.00576,0.004704,0.008128,0.01408,0.014272,1.62362,0.013088
+1113,416.853,2.39893,1.26086,0.008192,0.255584,0.005728,0.00496,0.007296,0.013056,0.014464,0.94176,0.009824
+1114,620.324,1.61206,1.56672,0.008288,0.228896,0.005728,0.004928,0.007712,0.012736,0.014336,1.27181,0.012288
+1115,382.696,2.61304,1.24595,0.008384,0.226112,0.005888,0.004544,0.007872,0.012416,0.015584,0.955168,0.009984
+1116,907.399,1.10205,2.09709,0.008704,0.25344,0.005728,0.005024,0.007616,0.012928,0.015456,1.77603,0.01216
+1117,399.493,2.50317,1.21754,0.008448,0.231456,0.004992,0.005984,0.008192,0.013472,0.014624,0.920128,0.01024
+1118,602.885,1.65869,1.42893,0.008192,0.405088,0.005728,0.004928,0.006144,0.014336,0.014336,0.96032,0.009856
+1119,538.098,1.8584,1.23149,0.008032,0.22976,0.005952,0.004704,0.007488,0.01296,0.014336,0.939456,0.0088
+1120,398.405,2.51001,1.26771,0.011936,0.2584,0.006176,0.005952,0.006304,0.014336,0.014336,0.940032,0.01024
+1121,611.252,1.63599,1.23904,0.008288,0.22896,0.005728,0.004928,0.007424,0.013088,0.014304,0.946176,0.010144
+1122,534.516,1.87085,1.2288,0.009504,0.227296,0.004992,0.006016,0.008192,0.01392,0.014464,0.934176,0.01024
+1123,517.564,1.93213,1.92182,0.008096,0.291744,0.006144,0.005344,0.006944,0.012288,0.016064,1.5601,0.015104
+1124,464.873,2.15112,1.23459,0.00864,0.23552,0.005696,0.004704,0.008032,0.014304,0.0144,0.933728,0.009568
+1125,620.794,1.61084,1.6119,0.00832,0.227328,0.006144,0.00608,0.006272,0.01408,0.014528,1.31891,0.01024
+1126,479.401,2.08594,1.24813,0.0088,0.235744,0.005728,0.004704,0.007872,0.01376,0.025312,0.93728,0.008928
+1127,437.093,2.28784,1.26173,0.01184,0.257824,0.004992,0.005952,0.007232,0.013248,0.014304,0.937696,0.00864
+1128,624.581,1.60107,1.23338,0.00864,0.243584,0.005728,0.004704,0.00816,0.013792,0.014432,0.925472,0.008864
+1129,552.99,1.80835,1.26416,0.008192,0.235552,0.00496,0.005984,0.007392,0.013056,0.0144,0.964576,0.010048
+1130,600.851,1.66431,1.23702,0.008192,0.2376,0.006112,0.005152,0.007072,0.013696,0.01488,0.9352,0.00912
+1131,418.6,2.38892,1.27184,0.011616,0.256512,0.00576,0.00464,0.00784,0.01264,0.015968,0.948032,0.008832
+1132,595.868,1.67822,1.5872,0.008192,0.237376,0.00576,0.004704,0.007872,0.013728,0.014496,1.28278,0.012288
+1133,500.733,1.99707,1.23786,0.008448,0.23152,0.005728,0.005024,0.007776,0.012704,0.015392,0.941056,0.010208
+1134,595.782,1.67847,1.86573,0.008192,0.456704,0.016384,0.005856,0.006432,0.014336,0.014336,1.33325,0.01024
+1135,441.047,2.26733,1.22496,0.008032,0.229632,0.005728,0.004832,0.007456,0.013024,0.015488,0.930688,0.01008
+1136,601.204,1.66333,1.41325,0.00832,0.405504,0.00608,0.005472,0.00688,0.01392,0.014304,0.943872,0.008896
+1137,548.62,1.82275,1.21581,0.008256,0.2232,0.006144,0.0056,0.007872,0.013152,0.014304,0.927744,0.009536
+1138,435.42,2.29663,1.24928,0.011264,0.254784,0.005728,0.004704,0.00784,0.012832,0.015328,0.928128,0.008672
+1139,497.087,2.01172,1.25363,0.008448,0.243712,0.006144,0.0056,0.006688,0.013792,0.014592,0.944416,0.01024
+1140,626.683,1.5957,1.27405,0.00848,0.26016,0.006112,0.005984,0.006304,0.014208,0.014272,0.948416,0.010112
+1141,618.825,1.61597,2.07683,0.008352,0.237088,0.00496,0.005952,0.007264,0.013216,0.014304,1.7735,0.012192
+1142,412.363,2.42505,1.23661,0.008576,0.227328,0.006144,0.00576,0.006528,0.014176,0.014496,0.944,0.0096
+1143,601.38,1.66284,1.6287,0.008416,0.22928,0.005728,0.00496,0.00752,0.01296,0.014336,1.33325,0.012256
+1144,500.305,1.99878,1.2583,0.008768,0.229632,0.006176,0.005856,0.0064,0.014336,0.014336,0.96256,0.01024
+1145,540.013,1.85181,1.86675,0.009408,0.46368,0.008192,0.005248,0.00704,0.014272,0.0144,1.33478,0.009728
+1146,458.833,2.17944,1.2329,0.00944,0.230112,0.00576,0.004544,0.007808,0.012672,0.015552,0.93792,0.009088
+1147,451.201,2.21631,1.22646,0.008544,0.231392,0.00576,0.00464,0.00784,0.012672,0.014336,0.931712,0.009568
+1148,755.302,1.32397,1.2616,0.01024,0.269856,0.005728,0.004992,0.007584,0.012896,0.014368,0.92704,0.008896
+1149,473.088,2.11377,1.27405,0.010432,0.275808,0.00496,0.005952,0.007712,0.012832,0.01584,0.931776,0.008736
+1150,596.563,1.67627,1.23904,0.00944,0.242464,0.005792,0.005472,0.007104,0.014304,0.014464,0.92976,0.01024
+1151,551.724,1.8125,1.24522,0.009376,0.237984,0.005728,0.00496,0.007488,0.012992,0.014336,0.943424,0.008928
+1152,594.312,1.68262,1.89872,0.008416,0.259712,0.005728,0.004896,0.007744,0.013792,0.01328,1.32019,0.26496
+1153,430.117,2.32495,1.28237,0.008416,0.25408,0.006112,0.00576,0.007712,0.013184,0.014336,0.962528,0.01024
+1154,580.088,1.72388,1.62918,0.009568,0.234144,0.006144,0.005536,0.006752,0.014368,0.015328,1.32563,0.011712
+1155,507.748,1.96948,1.24314,0.008192,0.228768,0.005728,0.00512,0.007872,0.01264,0.014304,0.95136,0.009152
+1156,510.723,1.95801,1.88419,0.008256,0.454624,0.030176,0.00464,0.007424,0.013056,0.014464,1.34259,0.00896
+1157,461.938,2.16479,1.26806,0.007104,0.264192,0.006144,0.005696,0.006624,0.013536,0.014336,0.940608,0.009824
+1158,553.439,1.80688,1.23696,0.008352,0.23344,0.006144,0.0056,0.006688,0.014112,0.01456,0.937984,0.01008
+1159,597.607,1.67334,1.25338,0.008,0.26336,0.00512,0.006144,0.007392,0.013088,0.014336,0.926752,0.009184
+1160,479.962,2.0835,1.24458,0.011936,0.233152,0.00496,0.005952,0.007392,0.013088,0.014336,0.943968,0.009792
+1161,613.725,1.62939,1.23702,0.008192,0.229248,0.00576,0.004608,0.007776,0.012704,0.014336,0.945536,0.008864
+1162,544.102,1.83789,1.22675,0.009344,0.225824,0.005568,0.005024,0.007552,0.012928,0.014336,0.935936,0.01024
+1163,581.488,1.71973,2.12582,0.008192,0.263744,0.00576,0.004928,0.007584,0.012896,0.015456,1.79498,0.012288
+1164,372.94,2.6814,1.28208,0.00928,0.250592,0.005728,0.004736,0.00784,0.013888,0.014528,0.966624,0.008864
+1165,637.609,1.56836,1.60813,0.00848,0.233376,0.004448,0.006144,0.006336,0.013984,0.014496,1.31072,0.010144
+1166,490.069,2.04053,1.2607,0.008224,0.246816,0.005088,0.006112,0.006304,0.014112,0.014144,0.95024,0.009664
+1167,433.393,2.30737,1.29642,0.01024,0.270336,0.006176,0.005536,0.00672,0.013568,0.0144,0.960256,0.009184
+1168,620.606,1.61133,1.22947,0.008768,0.22544,0.005728,0.004704,0.007872,0.013824,0.014336,0.938656,0.010144
+1169,548.033,1.82471,1.23482,0.008192,0.22528,0.006176,0.005344,0.006912,0.013312,0.014784,0.944704,0.010112
+1170,595.003,1.68066,2.08608,0.009504,0.238016,0.005728,0.0048,0.00784,0.01376,0.014592,1.77946,0.012384
+1171,357.917,2.79395,1.26566,0.009216,0.267264,0.005856,0.005632,0.006944,0.01376,0.014656,0.93312,0.009216
+1172,706.451,1.41553,1.61478,0.008672,0.228864,0.005088,0.007456,0.00688,0.013632,0.014656,1.32035,0.009184
+1173,493.851,2.0249,1.23808,0.008192,0.223232,0.005824,0.004608,0.00768,0.012608,0.014336,0.952064,0.009536
+1174,601.822,1.66162,1.89392,0.008192,0.45056,0.026784,0.006016,0.007392,0.013088,0.014304,1.3577,0.009888
+1175,436.069,2.29321,1.24928,0.008192,0.231424,0.006144,0.00544,0.00688,0.013344,0.015296,0.95232,0.01024
+1176,568.1,1.76025,1.23418,0.008192,0.228352,0.00512,0.006112,0.006176,0.014336,0.014368,0.941888,0.009632
+1177,599.181,1.66895,1.93357,0.008,0.227776,0.006144,0.006176,0.007168,0.013248,0.014304,1.63642,0.014336
+1178,414.575,2.41211,1.26378,0.008352,0.262144,0.006048,0.005472,0.006912,0.013536,0.01456,0.938016,0.008736
+1179,581.24,1.72046,1.56973,0.008416,0.231136,0.00512,0.005952,0.00784,0.012832,0.014336,1.27181,0.012288
+1180,530.021,1.88672,1.22499,0.008704,0.227104,0.00576,0.004864,0.007648,0.012832,0.014336,0.933888,0.009856
+1181,512.577,1.95093,1.87181,0.008,0.467104,0.016192,0.004352,0.007904,0.014624,0.014336,1.32915,0.010144
+1182,486.345,2.05615,1.24141,0.008576,0.235488,0.006144,0.005568,0.006752,0.01392,0.01472,0.940032,0.010208
+1183,588.421,1.69946,1.48291,0.008032,0.464768,0.005728,0.004864,0.007552,0.014304,0.014336,0.954624,0.008704
+1184,549.062,1.82129,1.23738,0.008768,0.2296,0.006144,0.005888,0.0064,0.014304,0.014368,0.94208,0.009824
+1185,430.705,2.32178,1.24765,0.010592,0.243712,0.006176,0.00544,0.006848,0.013696,0.014816,0.937696,0.008672
+1186,620.042,1.61279,1.24688,0.008736,0.225344,0.00592,0.005472,0.00704,0.014304,0.0144,0.955968,0.009696
+1187,557.658,1.79321,1.2344,0.008192,0.2328,0.004768,0.005664,0.006624,0.013856,0.014528,0.938272,0.009696
+1188,573.75,1.74292,1.25206,0.008832,0.255456,0.004992,0.00608,0.007328,0.013152,0.014336,0.93184,0.010048
+1189,643.418,1.5542,1.91706,0.008448,0.458048,0.02736,0.005696,0.00656,0.014336,0.01552,1.37098,0.010112
+1190,331.606,3.01562,1.56842,0.00832,0.231296,0.006176,0.005984,0.006272,0.014368,0.014304,1.26906,0.01264
+1191,770.214,1.29834,1.22,0.008224,0.22912,0.005728,0.004736,0.007648,0.012832,0.014336,0.927744,0.009632
+1192,595.522,1.6792,1.86371,0.008192,0.475136,0.008192,0.005312,0.006976,0.014272,0.014432,1.32093,0.010272
+1193,437.747,2.28442,1.26566,0.008192,0.26,0.005728,0.00464,0.00816,0.013376,0.014528,0.941984,0.009056
+1194,605.112,1.65259,1.41722,0.009696,0.416288,0.005856,0.004384,0.007616,0.014336,0.0144,0.9344,0.01024
+1195,548.327,1.82373,1.20669,0.008448,0.223392,0.00592,0.005856,0.006656,0.013888,0.01472,0.919104,0.008704
+1196,368.677,2.7124,1.2968,0.010656,0.298976,0.006048,0.005472,0.006912,0.013632,0.01488,0.931136,0.009088
+1197,654.731,1.52734,1.26707,0.008128,0.260384,0.00576,0.004576,0.007936,0.013824,0.014752,0.942144,0.009568
+1198,526.614,1.89893,1.25869,0.009472,0.260288,0.005824,0.004992,0.007552,0.012928,0.015616,0.932384,0.009632
+1199,573.268,1.74438,2.10957,0.008,0.248064,0.006144,0.005472,0.006816,0.013536,0.014624,1.79562,0.011296
+1200,385.869,2.59155,1.2759,0.009728,0.264736,0.006112,0.005792,0.006496,0.014336,0.014336,0.944128,0.01024
+1201,638.503,1.56616,1.65069,0.008224,0.249824,0.006048,0.00624,0.00752,0.012416,0.01456,1.33562,0.01024
+1202,473.745,2.11084,1.28202,0.008192,0.27648,0.006144,0.005824,0.006464,0.014144,0.014112,0.940448,0.010208
+1203,614.738,1.62671,1.89072,0.008576,0.464192,0.007872,0.005088,0.006368,0.014112,0.01552,1.36003,0.00896
+1204,415.247,2.4082,1.52522,0.009696,0.261696,0.005088,0.006112,0.014112,0.028928,0.015488,0.945024,0.239072
+1205,542.014,1.84497,1.24723,0.008192,0.236576,0.00512,0.006112,0.006272,0.014048,0.014496,0.9472,0.009216
+1206,529.952,1.88696,2.01034,0.008352,0.276032,0.005632,0.004896,0.00768,0.0128,0.015904,1.6648,0.01424
+1207,374.611,2.66943,1.29229,0.009408,0.262976,0.006176,0.005632,0.006624,0.022528,0.028672,0.941344,0.008928
+1208,609.796,1.63989,1.40288,0.009376,0.40432,0.006144,0.00528,0.007008,0.014368,0.014304,0.93184,0.01024
+1209,523.049,1.91187,1.23712,0.008064,0.248544,0.006144,0.005376,0.006912,0.012384,0.01552,0.924416,0.00976
+1210,495.404,2.01855,1.22266,0.011744,0.236,0.005728,0.004704,0.008064,0.013888,0.014464,0.918848,0.009216
+1211,625.63,1.59839,1.24778,0.00832,0.233376,0.005728,0.004992,0.007456,0.013024,0.014336,0.951296,0.009248
+1212,548.988,1.82153,1.25136,0.009216,0.252928,0.006144,0.005472,0.006816,0.014016,0.014496,0.933536,0.008736
+1213,580.334,1.72314,1.8817,0.009344,0.230272,0.006144,0.00576,0.006528,0.01408,0.014624,1.58086,0.01408
+1214,444.879,2.2478,1.2329,0.008192,0.2352,0.005728,0.004832,0.007776,0.012864,0.015328,0.932736,0.01024
+1215,602.442,1.65991,1.59053,0.008192,0.229408,0.006112,0.005792,0.006496,0.01376,0.01488,1.29232,0.013568
+1216,508.378,1.96704,1.22182,0.009376,0.224096,0.005728,0.004704,0.007904,0.013856,0.01456,0.932,0.0096
+1217,589.183,1.69727,2.07462,0.008224,0.229344,0.005888,0.004576,0.00784,0.012416,0.014336,1.77971,0.012288
+1218,401.057,2.49341,1.24746,0.008416,0.228832,0.00464,0.00576,0.006528,0.014368,0.014336,0.955776,0.0088
+1219,608.89,1.64233,1.41187,0.008128,0.406016,0.005792,0.004768,0.007744,0.013888,0.014368,0.942176,0.008992
+1220,471.184,2.12231,1.24723,0.00944,0.242176,0.005728,0.0048,0.007808,0.014208,0.014816,0.938016,0.01024
+1221,471.401,2.12134,1.26362,0.01024,0.24784,0.006112,0.005728,0.00656,0.013824,0.014368,0.948704,0.01024
+1222,630.833,1.58521,1.24314,0.008192,0.233472,0.005824,0.00544,0.007104,0.0136,0.014528,0.945792,0.009184
+1223,539.089,1.85498,1.24125,0.008192,0.233472,0.006144,0.005344,0.006944,0.014336,0.014336,0.943488,0.008992
+1224,597.782,1.67285,2.07715,0.008512,0.239168,0.006016,0.004704,0.007904,0.013632,0.014368,1.7704,0.012448
+1225,397.284,2.51709,1.26547,0.008192,0.231424,0.006144,0.005728,0.008032,0.012864,0.0144,0.96848,0.010208
+1226,590.287,1.69409,1.60861,0.008832,0.230784,0.005056,0.0056,0.006656,0.012288,0.014336,1.31482,0.01024
+1227,500.978,1.99609,1.24723,0.008192,0.229376,0.006144,0.005504,0.006784,0.0136,0.014592,0.954016,0.009024
+1228,419.243,2.38525,1.30467,0.011552,0.260832,0.006176,0.005792,0.006464,0.01424,0.014112,0.976608,0.008896
+1229,605.29,1.6521,1.25338,0.008224,0.23344,0.005984,0.00432,0.007712,0.012704,0.015584,0.956448,0.00896
+1230,533.82,1.87329,1.23482,0.008192,0.230816,0.00496,0.005888,0.008096,0.013952,0.0144,0.9384,0.010112
+1231,603.329,1.65747,1.93539,0.008192,0.239616,0.005632,0.004608,0.008096,0.012384,0.014336,1.62816,0.014368
+1232,425.691,2.34912,1.25373,0.008544,0.235392,0.005856,0.004544,0.007904,0.012544,0.015584,0.95312,0.01024
+1233,607.805,1.64526,1.6433,0.008416,0.229952,0.006144,0.006144,0.008096,0.013504,0.01472,1.34403,0.012288
+1234,482.677,2.07178,1.23459,0.008512,0.22528,0.00608,0.005472,0.00832,0.012896,0.015552,0.94288,0.0096
+1235,513.605,1.94702,1.4216,0.010528,0.423936,0.005664,0.004576,0.007648,0.014656,0.01456,0.931136,0.008896
+1236,489.601,2.04248,1.25344,0.008256,0.233472,0.006144,0.005824,0.006464,0.014336,0.014336,0.954368,0.01024
+1237,732.475,1.36523,1.39741,0.008416,0.405728,0.005728,0.004736,0.00768,0.01408,0.014432,0.927456,0.009152
+1238,510.787,1.95776,1.24538,0.008736,0.23328,0.005728,0.004896,0.007648,0.013952,0.01424,0.9472,0.009696
+1239,613.449,1.63013,1.8673,0.009216,0.469408,0.00784,0.005056,0.006336,0.014144,0.01552,1.32954,0.01024
+1240,440.572,2.26978,1.23632,0.008192,0.226816,0.005952,0.0048,0.007776,0.013792,0.0144,0.944896,0.009696
+1241,545.188,1.83423,1.22886,0.008192,0.231424,0.006176,0.005664,0.006592,0.013664,0.014464,0.933952,0.008736
+1242,593.365,1.6853,2.11242,0.008768,0.239392,0.004992,0.00592,0.007424,0.014112,0.014496,1.80509,0.012224
+1243,394.757,2.5332,1.2561,0.008064,0.234272,0.005856,0.004576,0.00784,0.012512,0.01552,0.958624,0.008832
+1244,443.05,2.25708,1.64662,0.0088,0.245792,0.006112,0.005952,0.007744,0.012928,0.015392,1.33421,0.009696
+1245,636.42,1.57129,1.26416,0.008448,0.257376,0.004992,0.00608,0.007296,0.013152,0.014368,0.943456,0.008992
+1246,587.493,1.70215,1.91242,0.00976,0.46128,0.02048,0.006144,0.006336,0.014144,0.014336,1.37011,0.009824
+1247,437.467,2.28589,1.26579,0.008224,0.260064,0.006176,0.005888,0.0064,0.013792,0.01456,0.941792,0.008896
+1248,551.65,1.81274,1.2471,0.008768,0.250016,0.005952,0.00544,0.00704,0.013344,0.01456,0.93232,0.009664
+1249,572.627,1.74634,1.87802,0.008192,0.239616,0.006144,0.0056,0.00672,0.013472,0.014336,1.56934,0.014592
+1250,456.379,2.19116,1.23238,0.00832,0.237568,0.006144,0.005952,0.006336,0.014336,0.014336,0.929728,0.009664
+1251,604.933,1.65308,1.63786,0.008288,0.231456,0.006112,0.005536,0.006752,0.013696,0.01488,1.33747,0.013664
+1252,451.449,2.21509,1.31101,0.008704,0.274656,0.005728,0.004736,0.008,0.014368,0.014528,0.970688,0.0096
+1253,586.988,1.70361,1.92922,0.008192,0.516096,0.019712,0.004864,0.007424,0.014208,0.014368,1.33411,0.01024
+1254,424.896,2.35352,1.24557,0.008576,0.239616,0.006144,0.005664,0.006624,0.014272,0.014304,0.940128,0.01024
+1255,580.911,1.72144,1.23693,0.008192,0.232928,0.00576,0.005024,0.007296,0.01312,0.0144,0.940032,0.010176
+1256,577.552,1.73145,1.23085,0.008192,0.231424,0.006176,0.006048,0.006272,0.014272,0.014368,0.934912,0.009184
+1257,495.644,2.01758,1.2656,0.01024,0.241664,0.006144,0.005888,0.0064,0.014016,0.014688,0.956384,0.010176
+1258,607.715,1.64551,1.24339,0.008448,0.230752,0.004992,0.00592,0.007392,0.013088,0.014336,0.948256,0.010208
+1259,557.582,1.79346,1.23779,0.008448,0.236064,0.006176,0.005984,0.006272,0.013632,0.014784,0.936192,0.01024
+1260,581.653,1.71924,1.24723,0.009344,0.238464,0.006144,0.00592,0.006368,0.014336,0.014336,0.94208,0.01024
+1261,412.986,2.42139,1.31635,0.011648,0.311936,0.006176,0.005504,0.006752,0.013632,0.014496,0.93648,0.009728
+1262,586.735,1.70435,1.64522,0.008832,0.243552,0.005728,0.004704,0.007904,0.0136,0.014496,1.33542,0.010976
+1263,504.869,1.98071,1.24154,0.008064,0.231264,0.00496,0.006048,0.00784,0.01264,0.0144,0.946112,0.010208
+1264,581.736,1.71899,1.8688,0.008768,0.454144,0.027552,0.005312,0.006976,0.014176,0.014496,1.32848,0.008896
+1265,444.107,2.25171,1.24784,0.008416,0.23392,0.005792,0.004544,0.007808,0.012576,0.014336,0.950272,0.010176
+1266,590.542,1.69336,1.43427,0.008864,0.405504,0.006144,0.005472,0.006816,0.014208,0.014496,0.963616,0.009152
+1267,529.952,1.88696,1.2519,0.008128,0.251712,0.004992,0.00608,0.006176,0.014048,0.01456,0.935968,0.01024
+1268,432.752,2.31079,1.27693,0.011776,0.248352,0.005888,0.005472,0.00704,0.01392,0.014432,0.960064,0.009984
+1269,603.24,1.65771,1.59949,0.008192,0.234656,0.00496,0.006016,0.006304,0.01408,0.01456,1.29843,0.012288
+1270,497.51,2.01001,1.23949,0.008608,0.227328,0.00576,0.006528,0.006464,0.014016,0.014336,0.947488,0.00896
+1271,580.417,1.7229,2.10739,0.008192,0.228384,0.005088,0.005984,0.006304,0.014336,0.014336,1.81248,0.012288
+1272,402.2,2.48633,1.2329,0.008192,0.232864,0.005728,0.00512,0.00752,0.013056,0.015296,0.936096,0.009024
+1273,606.366,1.64917,1.46867,0.008,0.40592,0.005824,0.004608,0.007808,0.013856,0.014656,0.997728,0.010272
+1274,503.999,1.98413,1.27786,0.008224,0.243616,0.00576,0.004704,0.00784,0.013696,0.014592,0.96928,0.010144
+1275,454.152,2.2019,1.25133,0.011648,0.240256,0.006144,0.005408,0.00688,0.013408,0.014944,0.94368,0.00896
+1276,528.107,1.89355,1.24848,0.009632,0.237312,0.00496,0.006144,0.007168,0.013312,0.014336,0.945984,0.009632
+1277,627.836,1.59277,1.23699,0.009696,0.227872,0.006176,0.0056,0.006656,0.013824,0.014848,0.94368,0.00864
+1278,593.451,1.68506,2.08749,0.0088,0.239296,0.00496,0.005952,0.007392,0.013088,0.01552,1.78026,0.012224
+1279,383.234,2.60938,1.248,0.00832,0.229984,0.005824,0.004576,0.00784,0.01248,0.015392,0.954912,0.008672
+1280,572.307,1.74731,1.63021,0.008608,0.236768,0.004992,0.006048,0.007264,0.013216,0.014336,1.32915,0.009824
+1281,513.798,1.94629,1.25123,0.00928,0.232416,0.006112,0.00544,0.006848,0.01344,0.014496,0.953056,0.010144
+1282,523.517,1.91016,1.43533,0.013888,0.420736,0.006016,0.004224,0.007776,0.014208,0.014592,0.944032,0.009856
+1283,549.577,1.81958,1.23696,0.008192,0.229376,0.005952,0.005312,0.007104,0.012352,0.015424,0.94304,0.010208
+1284,548.18,1.82422,1.27309,0.009376,0.242528,0.006144,0.005696,0.006592,0.01392,0.014752,0.964512,0.009568
+1285,599.532,1.66797,1.24928,0.008192,0.231424,0.006176,0.005472,0.006784,0.013728,0.01472,0.95376,0.009024
+1286,447.748,2.2334,1.2759,0.011648,0.237408,0.00496,0.00608,0.007264,0.017312,0.014336,0.967968,0.008928
+1287,630.542,1.58594,1.24755,0.008032,0.229856,0.006144,0.005536,0.006752,0.012288,0.015648,0.9544,0.008896
+1288,525.87,1.90161,1.24109,0.008192,0.237568,0.00592,0.005472,0.007008,0.013536,0.01424,0.940096,0.009056
+1289,595.955,1.67798,1.25475,0.008192,0.260096,0.006144,0.005504,0.006784,0.01424,0.014464,0.92976,0.009568
+1290,446.674,2.23877,1.25546,0.01168,0.246368,0.006144,0.006144,0.006176,0.014304,0.014336,0.941504,0.0088
+1291,615.107,1.62573,1.63514,0.00848,0.227424,0.00576,0.004896,0.007552,0.012928,0.015456,1.34157,0.011072
+1292,490.951,2.03687,1.2256,0.008672,0.227744,0.006144,0.00576,0.006528,0.013568,0.01456,0.933952,0.008672
+1293,562.637,1.77734,1.88826,0.008288,0.456608,0.028288,0.004576,0.008096,0.014368,0.014304,1.34349,0.01024
+1294,440.667,2.26929,1.24656,0.018432,0.22528,0.005952,0.005472,0.007008,0.014336,0.014336,0.945856,0.009888
+1295,506.805,1.97314,1.27501,0.008192,0.243712,0.006144,0.005568,0.00672,0.014336,0.024544,0.956288,0.009504
+1296,433.898,2.30469,1.25133,0.008192,0.234848,0.004992,0.005952,0.007424,0.029152,0.014592,0.937056,0.00912
+1297,614.738,1.62671,1.24109,0.011872,0.23136,0.005728,0.004992,0.008224,0.014304,0.014336,0.940032,0.01024
+1298,583.476,1.71387,1.57078,0.00944,0.221984,0.006144,0.005728,0.00656,0.014336,0.014336,1.27955,0.012704
+1299,502.947,1.98828,1.25315,0.008224,0.225248,0.006144,0.005344,0.006944,0.012288,0.014336,0.96464,0.009984
+1300,424.808,2.354,1.86976,0.009728,0.442816,0.008192,0.005568,0.00672,0.014336,0.014336,1.35782,0.01024
+1301,636.816,1.57031,1.23306,0.008352,0.231424,0.006144,0.005312,0.006976,0.012352,0.015744,0.936512,0.01024
+1302,591.993,1.68921,1.42662,0.009824,0.40592,0.006144,0.006016,0.006304,0.014304,0.014336,0.954208,0.009568
+1303,528.107,1.89355,1.25741,0.008192,0.245056,0.006592,0.005696,0.006848,0.013472,0.014272,0.947136,0.010144
+1304,420.836,2.37622,1.24445,0.010464,0.241664,0.006144,0.005664,0.006624,0.013792,0.012832,0.93776,0.009504
+1305,624.2,1.60205,1.24483,0.00832,0.226816,0.00576,0.004992,0.007776,0.012704,0.014336,0.954368,0.00976
+1306,541.012,1.84839,1.24723,0.009632,0.223872,0.006112,0.00592,0.006368,0.014304,0.014368,0.957696,0.00896
+1307,598.131,1.67188,2.0951,0.008128,0.227392,0.006144,0.005504,0.006784,0.012288,0.015424,1.80115,0.012288
+1308,373.212,2.67944,1.25552,0.009984,0.246016,0.005888,0.005472,0.007072,0.013696,0.014784,0.943936,0.008672
+1309,645.853,1.54834,1.62202,0.008352,0.226944,0.005728,0.004736,0.007648,0.012832,0.01552,1.3312,0.009056
+1310,484.734,2.06299,1.25165,0.008608,0.227552,0.00576,0.004736,0.007648,0.012672,0.015456,0.959392,0.009824
+1311,580.334,1.72314,1.88019,0.008192,0.461952,0.016768,0.004608,0.007584,0.014144,0.014464,1.34355,0.008928
+1312,440.052,2.27246,1.22474,0.00944,0.22736,0.004992,0.006016,0.006144,0.014208,0.014464,0.93328,0.008832
+1313,541.441,1.84692,1.25683,0.008288,0.231328,0.006144,0.00592,0.006368,0.013888,0.014528,0.960608,0.00976
+1314,607.085,1.64722,1.91488,0.008192,0.227328,0.006144,0.006048,0.006304,0.014272,0.014336,1.61792,0.014336
+1315,428.542,2.3335,1.24922,0.009312,0.232352,0.006144,0.005376,0.006912,0.013344,0.01472,0.95088,0.010176
+1316,439.438,2.27563,1.70842,0.008768,0.299296,0.006144,0.00592,0.006368,0.014304,0.014368,1.34144,0.011808
+1317,532.64,1.87744,1.25686,0.008192,0.230944,0.00576,0.004992,0.007424,0.013024,0.014336,0.960512,0.01168
+1318,740.152,1.35107,2.1176,0.008384,0.243552,0.006016,0.005472,0.007072,0.014368,0.014336,1.80634,0.012064
+1319,394.871,2.53247,1.25338,0.008224,0.238592,0.005088,0.006144,0.006144,0.014112,0.022272,0.943808,0.008992
+1320,558.419,1.79077,1.23171,0.008672,0.225632,0.005888,0.00544,0.007104,0.014336,0.014336,0.940128,0.010176
+1321,580.252,1.72339,1.94586,0.008128,0.25952,0.004992,0.00608,0.006272,0.014272,0.014336,1.61792,0.014336
+1322,423.272,2.36255,1.24819,0.008768,0.235168,0.004992,0.006016,0.007328,0.01312,0.014336,0.948224,0.01024
+1323,617.612,1.61914,1.58518,0.008192,0.227104,0.005728,0.004768,0.007648,0.0128,0.014336,1.29229,0.01232
+1324,484.218,2.06519,1.2575,0.008192,0.244992,0.006048,0.00496,0.007616,0.012864,0.015776,0.948224,0.008832
+1325,537.533,1.86035,2.12029,0.00848,0.266144,0.00576,0.004896,0.00752,0.01296,0.014336,1.78925,0.010944
+1326,428.138,2.33569,1.24518,0.008224,0.23552,0.005888,0.005472,0.00704,0.013632,0.014592,0.945728,0.009088
+1327,554.038,1.80493,1.26976,0.009408,0.25888,0.006144,0.005344,0.006944,0.013696,0.0144,0.944736,0.010208
+1328,564.888,1.77026,1.25754,0.008832,0.241696,0.006112,0.006048,0.00736,0.013216,0.014336,0.950112,0.009824
+1329,482.62,2.07202,1.25299,0.01024,0.23744,0.006048,0.004576,0.007808,0.01376,0.01472,0.948544,0.009856
+1330,608.347,1.6438,1.23302,0.009824,0.232992,0.004992,0.006144,0.008,0.01248,0.015712,0.93392,0.00896
+1331,540.156,1.85132,1.26566,0.00928,0.238528,0.00608,0.005312,0.00704,0.013504,0.014624,0.962272,0.009024
+1332,553.214,1.80762,1.27795,0.0096,0.268928,0.00576,0.004672,0.007872,0.013696,0.014304,0.94288,0.01024
+1333,397.863,2.51343,1.31696,0.01104,0.300352,0.004992,0.006048,0.006176,0.014144,0.014528,0.949952,0.009728
+1334,588.421,1.69946,1.66915,0.008448,0.274304,0.006272,0.0056,0.006688,0.01408,0.014464,1.32928,0.010016
+1335,492.663,2.02979,1.24966,0.008448,0.231552,0.006144,0.00544,0.006848,0.013376,0.014368,0.954368,0.00912
+1336,606.276,1.64941,1.87715,0.009664,0.462816,0.016832,0.004256,0.00784,0.014208,0.014496,1.33738,0.009664
+1337,427.468,2.33936,1.2321,0.008192,0.233472,0.006112,0.005312,0.007008,0.013728,0.014304,0.93408,0.009888
+1338,566.059,1.7666,1.26003,0.008768,0.227392,0.006144,0.005856,0.00784,0.014112,0.014752,0.965056,0.010112
+1339,572.467,1.74683,1.89402,0.00848,0.243872,0.00576,0.004608,0.008128,0.012448,0.015744,1.58122,0.01376
+1340,432.159,2.31396,1.24902,0.008192,0.239616,0.006144,0.005664,0.006624,0.014112,0.01456,0.944128,0.009984
+1341,618.918,1.61572,1.63261,0.008032,0.236384,0.005984,0.005344,0.007104,0.013824,0.01456,1.32944,0.011936
+1342,488.375,2.04761,1.24666,0.008224,0.228672,0.00496,0.005984,0.00736,0.01312,0.014336,0.954208,0.009792
+1343,560.252,1.78491,1.8911,0.008128,0.451424,0.03456,0.004352,0.007808,0.01424,0.014624,1.34573,0.01024
+1344,431.567,2.31714,1.23494,0.009728,0.231936,0.006144,0.005472,0.006816,0.014336,0.014336,0.935936,0.01024
+1345,586.483,1.70508,1.24109,0.008192,0.22896,0.005856,0.0048,0.007616,0.012896,0.015456,0.948224,0.009088
+1346,595.435,1.67944,1.25546,0.008352,0.24896,0.004992,0.006144,0.006176,0.014304,0.014336,0.94208,0.010112
+1347,575.362,1.73804,1.86666,0.008448,0.455328,0.014336,0.005216,0.007072,0.014336,0.015584,1.3361,0.01024
+1348,416.514,2.40088,1.63053,0.008512,0.261152,0.005088,0.00608,0.006272,0.014304,0.014208,1.30262,0.012288
+1349,498.357,2.00659,1.25542,0.008192,0.239616,0.005984,0.005344,0.00704,0.012384,0.0144,0.952224,0.01024
+1350,560.405,1.78442,1.95418,0.008544,0.505056,0.040768,0.00512,0.007424,0.014336,0.01456,1.34915,0.009216
+1351,436.209,2.29248,1.26912,0.008192,0.241664,0.005856,0.004544,0.007776,0.012544,0.015584,0.96336,0.0096
+1352,571.429,1.75,1.45434,0.008096,0.42432,0.006144,0.006016,0.006272,0.014336,0.014336,0.964608,0.010208
+1353,536.477,1.86401,1.25747,0.008192,0.26128,0.004992,0.006112,0.00768,0.0128,0.014336,0.93184,0.01024
+1354,468.543,2.13428,1.2591,0.011392,0.256352,0.005792,0.004992,0.007552,0.012928,0.015584,0.934688,0.009824
+1355,591.395,1.69092,1.25718,0.008192,0.2376,0.006112,0.005824,0.006464,0.014368,0.014336,0.954368,0.00992
+1356,517.368,1.93286,1.30294,0.008608,0.294944,0.006112,0.005856,0.006432,0.014176,0.014528,0.942048,0.01024
+1357,584.725,1.71021,1.25165,0.008448,0.247136,0.004928,0.006048,0.007168,0.013184,0.014464,0.940064,0.010208
+1358,476.889,2.09692,1.264,0.010624,0.249824,0.00576,0.004704,0.007872,0.01392,0.014848,0.946208,0.01024
+1359,604.486,1.6543,1.60563,0.009248,0.242656,0.006144,0.005408,0.00688,0.01344,0.01488,1.29418,0.0128
+1360,363.992,2.74731,1.25066,0.008192,0.229376,0.00592,0.005472,0.007072,0.013696,0.01472,0.956576,0.009632
+1361,990.089,1.01001,2.11395,0.00848,0.260192,0.005856,0.004576,0.007808,0.012512,0.014304,1.7879,0.01232
+1362,383.449,2.60791,1.24093,0.01024,0.240864,0.004992,0.006048,0.007232,0.013248,0.014368,0.933856,0.01008
+1363,594.917,1.68091,1.27184,0.008192,0.249856,0.005888,0.004576,0.007904,0.012544,0.015296,0.957312,0.010272
+1364,587.156,1.70312,1.26432,0.0088,0.252,0.004224,0.006016,0.00736,0.01312,0.015552,0.948416,0.008832
+1365,465.085,2.15015,1.2687,0.010944,0.258336,0.006048,0.005312,0.007072,0.013696,0.014496,0.94256,0.01024
+1366,593.881,1.68384,1.2527,0.009216,0.237568,0.00512,0.00608,0.008256,0.014336,0.014368,0.948192,0.009568
+1367,541.226,1.84766,1.25514,0.008448,0.231616,0.006176,0.005824,0.00832,0.012448,0.015488,0.957248,0.009568
+1368,538.381,1.85742,1.99741,0.0088,0.260128,0.006112,0.005696,0.006592,0.014368,0.014304,1.66707,0.014336
+1369,419.887,2.38159,1.25222,0.008448,0.26688,0.006144,0.00576,0.00656,0.013472,0.014592,0.920192,0.010176
+1370,589.607,1.69604,1.69187,0.008832,0.293248,0.00608,0.00416,0.006144,0.014336,0.014336,1.33488,0.009856
+1371,443.194,2.25635,1.28285,0.008256,0.266784,0.005728,0.004608,0.007584,0.012864,0.014336,0.954016,0.008672
+1372,531.396,1.88184,1.43565,0.011616,0.424608,0.005504,0.004736,0.007264,0.013216,0.014336,0.944128,0.01024
+1373,553.813,1.80566,1.25078,0.008192,0.247808,0.006144,0.005376,0.006912,0.013472,0.01488,0.938176,0.009824
+1374,458.473,2.18115,1.2575,0.009344,0.242336,0.005728,0.004768,0.007712,0.012736,0.014368,0.95024,0.010272
+1375,457.603,2.1853,1.2841,0.009312,0.277408,0.006176,0.0056,0.006656,0.0136,0.014272,0.942112,0.00896
+1376,502.392,1.99048,1.24442,0.01184,0.239296,0.004992,0.006016,0.007328,0.014208,0.014432,0.93648,0.009824
+1377,594.226,1.68286,1.40278,0.009216,0.40448,0.006176,0.005472,0.006784,0.014336,0.014336,0.93184,0.010144
+1378,561.173,1.78198,1.23494,0.009728,0.225792,0.006112,0.00544,0.00688,0.01376,0.01488,0.943328,0.009024
+1379,434.128,2.30347,1.25242,0.011904,0.231808,0.005728,0.004544,0.007872,0.012576,0.015712,0.952672,0.0096
+1380,609.705,1.64014,1.23498,0.008224,0.225312,0.005888,0.006368,0.008192,0.0136,0.014272,0.944128,0.008992
+1381,502.453,1.99023,1.24317,0.008192,0.235136,0.005728,0.004896,0.007584,0.012928,0.014304,0.944128,0.010272
+1382,579.513,1.72559,2.0856,0.008768,0.233056,0.00576,0.005056,0.00768,0.012928,0.014208,1.78586,0.012288
+1383,409.313,2.44312,1.23162,0.00848,0.22576,0.006144,0.005888,0.0064,0.01392,0.01472,0.941152,0.009152
+1384,612.532,1.63257,1.60931,0.00944,0.22384,0.005728,0.006592,0.006304,0.014368,0.014304,1.31686,0.011872
+1385,497.389,2.0105,1.23299,0.008064,0.22288,0.005728,0.005056,0.006144,0.014368,0.014336,0.947264,0.009152
+1386,416.981,2.39819,1.252,0.010912,0.23552,0.006144,0.005472,0.006816,0.013824,0.014432,0.94864,0.01024
+1387,589.777,1.69556,1.2447,0.00928,0.228288,0.006144,0.005344,0.006944,0.012288,0.015712,0.950944,0.00976
+1388,563.799,1.77368,1.24701,0.009664,0.227904,0.006144,0.006144,0.006176,0.014304,0.014336,0.95232,0.010016
+1389,617.705,1.6189,1.24896,0.008192,0.229376,0.006144,0.006144,0.007456,0.013024,0.014336,0.954368,0.00992
+1390,465.984,2.146,1.24909,0.012032,0.229664,0.00608,0.005472,0.006848,0.0136,0.014784,0.95056,0.010048
+1391,612.715,1.63208,1.23075,0.008192,0.227328,0.006144,0.00544,0.006848,0.013664,0.014656,0.938336,0.010144
+1392,554.188,1.80444,1.23168,0.0088,0.223424,0.005888,0.00544,0.007104,0.013696,0.014496,0.943904,0.008928
+1393,590.287,1.69409,2.08125,0.00848,0.22752,0.00576,0.00464,0.008032,0.012448,0.01552,1.7863,0.012544
+1394,395.634,2.52759,1.26362,0.008256,0.255232,0.004992,0.005952,0.007296,0.013184,0.014336,0.945536,0.008832
+1395,527.495,1.89575,1.61978,0.008448,0.231872,0.006144,0.005312,0.006976,0.013728,0.01456,1.32253,0.010208
+1396,579.759,1.72485,1.22675,0.00944,0.221984,0.006144,0.005696,0.006592,0.013984,0.014336,0.939616,0.00896
+1397,436.534,2.29077,1.24202,0.010784,0.231808,0.006144,0.00544,0.006848,0.013728,0.014496,0.943584,0.009184
+1398,596.737,1.67578,1.23587,0.008864,0.229248,0.005728,0.004864,0.006336,0.014144,0.014336,0.943552,0.0088
+1399,562.56,1.77759,1.24259,0.008192,0.224736,0.005728,0.006464,0.006784,0.013408,0.015168,0.952128,0.009984
+1400,596.563,1.67627,1.96848,0.008736,0.231424,0.006144,0.00608,0.00624,0.014304,0.014336,1.66707,0.014144
+1401,412.072,2.42676,1.26979,0.009472,0.244224,0.00576,0.004768,0.00768,0.013888,0.014528,0.960608,0.008864
+1402,593.107,1.68604,1.63293,0.008864,0.221184,0.006144,0.005632,0.006656,0.014336,0.014336,1.34349,0.012288
+1403,468.918,2.13257,1.26762,0.008224,0.255968,0.005728,0.00512,0.007392,0.013056,0.014336,0.948064,0.009728
+1404,576.171,1.7356,1.90915,0.008832,0.450592,0.029888,0.0248,0.006752,0.01424,0.014432,1.34966,0.009952
+1405,450.06,2.22192,1.23098,0.008224,0.226464,0.004992,0.006048,0.00624,0.014016,0.014528,0.941472,0.008992
+1406,622.209,1.60718,1.43155,0.009568,0.414368,0.006144,0.006176,0.007264,0.013184,0.014336,0.951424,0.009088
+1407,539.729,1.85278,1.23738,0.008416,0.2248,0.005728,0.00512,0.007712,0.012768,0.014336,0.949312,0.009184
+1408,470.048,2.12744,1.25709,0.010464,0.24128,0.005728,0.004896,0.008192,0.014368,0.014304,0.94816,0.009696
+1409,614.461,1.62744,1.24109,0.008384,0.229056,0.005728,0.00464,0.008192,0.013856,0.014816,0.946176,0.01024
+1410,581.653,1.71924,1.2415,0.00864,0.226848,0.005728,0.00496,0.00736,0.01312,0.014336,0.950272,0.01024
+1411,515.155,1.94116,1.21901,0.008,0.224224,0.006144,0.005696,0.006592,0.013856,0.014432,0.930176,0.009888
+1412,543.02,1.84155,1.26566,0.010368,0.2472,0.005728,0.004992,0.00784,0.013696,0.014368,0.952288,0.009184
+1413,612.257,1.6333,1.23741,0.00848,0.226848,0.004704,0.005888,0.0064,0.01408,0.014624,0.947264,0.00912
+1414,526.41,1.89966,1.23494,0.009472,0.225664,0.005728,0.004928,0.007584,0.012864,0.014336,0.944128,0.01024
+1415,583.143,1.71484,2.08733,0.008416,0.231616,0.006144,0.005216,0.007072,0.012288,0.015456,1.78883,0.012288
+1416,403.467,2.47852,1.22675,0.009472,0.229312,0.004992,0.00608,0.007168,0.013312,0.014336,0.93184,0.01024
+1417,609.796,1.63989,1.63309,0.008352,0.232096,0.006144,0.005344,0.006944,0.013376,0.014528,1.33606,0.01024
+1418,492.189,2.03174,1.23923,0.008384,0.227328,0.005888,0.005472,0.00704,0.0136,0.014432,0.948128,0.00896
+1419,346.18,2.88867,1.94525,0.008256,0.53248,0.007936,0.005376,0.007104,0.014432,0.014304,1.34554,0.009824
+1420,626.108,1.59717,1.60662,0.008864,0.237408,0.00608,0.004736,0.007808,0.013824,0.014144,1.30147,0.012288
+1421,508.189,1.96777,1.24912,0.008416,0.235648,0.00528,0.00496,0.007392,0.013088,0.014336,0.950272,0.009728
+1422,311.696,3.20825,2.12131,0.008192,0.2744,0.00576,0.004672,0.007936,0.013664,0.014368,1.7801,0.012224
+1423,753.634,1.3269,1.28448,0.008096,0.279104,0.006144,0.005504,0.006784,0.013792,0.01472,0.940192,0.010144
+1424,582.646,1.71631,1.27344,0.008736,0.243712,0.005792,0.005472,0.007168,0.01408,0.014528,0.964448,0.009504
+1425,635.531,1.57349,1.26627,0.008544,0.25216,0.006144,0.005888,0.006432,0.013952,0.014656,0.949472,0.009024
+1426,595.695,1.67871,1.24522,0.00976,0.238048,0.006112,0.005472,0.00688,0.01392,0.014656,0.941472,0.008896
+1427,558.799,1.78955,1.27418,0.008128,0.252832,0.006144,0.005536,0.006752,0.01376,0.01456,0.956768,0.009696
+1428,657.358,1.52124,1.42029,0.009664,0.407296,0.005024,0.006048,0.007232,0.013248,0.014336,0.94736,0.01008
+1429,508,1.96851,1.24109,0.008416,0.237344,0.006048,0.005312,0.007072,0.013344,0.014528,0.938784,0.01024
+1430,436.86,2.28906,1.25542,0.011712,0.246336,0.00608,0.005472,0.00688,0.013792,0.014336,0.941856,0.00896
+1431,671.586,1.48901,1.25133,0.008192,0.2368,0.00496,0.006048,0.0072,0.013024,0.014624,0.951584,0.008896
+1432,526.208,1.90039,1.2497,0.0088,0.231008,0.00496,0.005984,0.007424,0.013056,0.014336,0.954272,0.009856
+1433,597.694,1.6731,1.99478,0.009408,0.242496,0.006144,0.005984,0.006336,0.013792,0.014624,1.68163,0.014368
+1434,405.625,2.46533,1.25107,0.008288,0.235392,0.00576,0.004704,0.00784,0.014144,0.014656,0.9504,0.009888
+1435,489.308,2.0437,1.67955,0.008448,0.291296,0.006176,0.00608,0.006336,0.014176,0.014336,1.32285,0.009856
+1436,555.767,1.79932,1.28224,0.008832,0.26656,0.006144,0.005504,0.006784,0.014016,0.014304,0.950528,0.009568
+1437,406.47,2.46021,1.28,0.011808,0.255456,0.00512,0.005856,0.006432,0.014112,0.014496,0.957632,0.009088
+1438,600.322,1.66577,1.25133,0.009536,0.233984,0.005728,0.004704,0.00784,0.012672,0.015328,0.952512,0.009024
+1439,525.33,1.90356,1.24618,0.008448,0.235616,0.005056,0.005824,0.007456,0.013024,0.014336,0.947488,0.008928
+1440,577.145,1.73267,2.10947,0.008224,0.2376,0.00608,0.005344,0.006976,0.013696,0.014464,1.80592,0.011168
+1441,402.555,2.48413,1.24774,0.008416,0.23376,0.006176,0.005376,0.00688,0.0136,0.015072,0.948224,0.01024
+1442,590.968,1.69214,1.41229,0.009504,0.405728,0.004608,0.005952,0.006336,0.014336,0.014336,0.941952,0.009536
+1443,513.155,1.94873,1.26429,0.008384,0.250336,0.005856,0.004544,0.007872,0.01392,0.014912,0.949952,0.008512
+1444,321.987,3.10571,1.28035,0.010592,0.24496,0.004992,0.006016,0.007328,0.014336,0.014592,0.968672,0.008864
+1445,572.707,1.74609,1.6335,0.00832,0.231392,0.005792,0.00464,0.007808,0.013632,0.013344,1.33872,0.009856
+1446,505.554,1.97803,1.23606,0.008192,0.229376,0.006176,0.005824,0.006464,0.014304,0.014336,0.941696,0.009696
+1447,580.746,1.72192,1.9039,0.008192,0.448416,0.030432,0.00448,0.007712,0.01424,0.014816,1.36592,0.009696
+1448,442.237,2.26123,1.24314,0.008192,0.233376,0.005728,0.004736,0.007872,0.01248,0.01536,0.946272,0.00912
+1449,531.189,1.88257,1.2504,0.008192,0.227328,0.006144,0.005888,0.0064,0.013824,0.014592,0.958304,0.009728
+1450,524.792,1.90552,2.11814,0.008704,0.258048,0.00592,0.00544,0.00704,0.014208,0.014496,1.792,0.012288
+1451,428.856,2.33179,1.28934,0.008192,0.264192,0.006144,0.006048,0.006272,0.014304,0.015872,0.95856,0.00976
+1452,557.506,1.7937,1.64294,0.008704,0.231424,0.006144,0.004288,0.00768,0.013728,0.014304,1.3465,0.010176
+1453,477.723,2.09326,1.23949,0.00848,0.229536,0.005824,0.004576,0.007904,0.012416,0.015584,0.94624,0.008928
+1454,425.161,2.35205,1.30243,0.011072,0.253792,0.005728,0.004704,0.00784,0.01264,0.014304,0.982656,0.009696
+1455,618.171,1.61768,1.53258,0.008448,0.260512,0.006144,0.005856,0.006432,0.014016,0.014656,1.20563,0.01088
+1456,524.926,1.90503,1.27187,0.008768,0.233696,0.006016,0.00544,0.006976,0.02048,0.014336,0.96592,0.01024
+1457,578.123,1.72974,2.11974,0.008224,0.233408,0.00576,0.004832,0.007616,0.012864,0.014336,1.82035,0.012352
+1458,373.008,2.68091,1.25376,0.008768,0.2352,0.005728,0.004832,0.007744,0.012736,0.014336,0.954368,0.010048
+1459,584.225,1.71167,1.46029,0.008608,0.444416,0.00592,0.005344,0.007104,0.01424,0.014304,0.950464,0.009888
+1460,529.199,1.88965,1.25344,0.008256,0.234752,0.004992,0.006016,0.008064,0.01376,0.014528,0.954208,0.008864
+1461,605.828,1.65063,2.15462,0.00816,0.261952,0.005728,0.004832,0.00768,0.0128,0.014336,1.82877,0.010368
+1462,407.968,2.45117,1.24982,0.008736,0.243008,0.00496,0.005984,0.007328,0.013152,0.014208,0.943232,0.009216
+1463,542.086,1.84473,1.24854,0.008192,0.227328,0.00576,0.004608,0.007872,0.012512,0.015392,0.95728,0.0096
+1464,569.68,1.75537,2.15648,0.0088,0.260192,0.005728,0.004704,0.007904,0.013792,0.014528,1.82931,0.01152
+1465,381.983,2.61792,1.26451,0.008416,0.248448,0.006144,0.005696,0.006592,0.01376,0.014528,0.951968,0.00896
+1466,599.707,1.66748,1.41469,0.008192,0.406752,0.004992,0.006048,0.007392,0.013088,0.014336,0.944064,0.009824
+1467,491.068,2.03638,1.24518,0.008192,0.239616,0.005312,0.006432,0.006688,0.013408,0.014624,0.940672,0.01024
+1468,487.039,2.05322,1.26554,0.010592,0.238592,0.00512,0.006048,0.00624,0.014336,0.014336,0.960512,0.00976
+1469,583.725,1.71313,1.24739,0.008,0.230656,0.005088,0.006144,0.0064,0.014016,0.0144,0.953664,0.009024
+1470,559.334,1.78784,1.2465,0.008192,0.226944,0.005728,0.004896,0.00768,0.0128,0.014496,0.956,0.00976
+1471,479.906,2.08374,1.99885,0.008192,0.251744,0.005728,0.004672,0.007776,0.012704,0.014336,1.67936,0.014336
+1472,471.618,2.12036,1.26621,0.008608,0.24736,0.005728,0.005088,0.00768,0.013824,0.014624,0.953152,0.010144
+1473,580.746,1.72192,1.65658,0.008192,0.249856,0.005952,0.005536,0.006944,0.013312,0.014464,1.34029,0.012032
+1474,481.882,2.0752,1.26035,0.008992,0.249888,0.00592,0.005472,0.007072,0.013824,0.014464,0.945504,0.009216
+1475,586.735,1.70435,2.00448,0.00928,0.527296,0.008,0.01248,0.047104,0.016096,0.01424,1.36026,0.009728
+1476,391.887,2.55176,1.27795,0.009344,0.264192,0.004992,0.006144,0.006336,0.014144,0.014336,0.948224,0.01024
+1477,570.077,1.75415,1.23955,0.008544,0.229536,0.006144,0.005696,0.006592,0.0136,0.014688,0.94576,0.008992
+1478,520.259,1.92212,2.00118,0.00848,0.27344,0.005088,0.006144,0.007616,0.012864,0.014368,1.65885,0.014336
+1479,444.927,2.24756,1.29094,0.008416,0.238048,0.006144,0.005472,0.006848,0.013888,0.014688,0.988704,0.008736
+1480,596.65,1.67603,1.64509,0.008864,0.231744,0.00576,0.004672,0.00768,0.014272,0.0144,1.34787,0.009824
+1481,462.042,2.16431,1.27555,0.008192,0.253056,0.004992,0.006048,0.006304,0.013856,0.014496,0.95872,0.009888
+1482,442.811,2.2583,1.26976,0.011872,0.248224,0.006144,0.005792,0.006496,0.013952,0.014752,0.953856,0.008672
+1483,590.798,1.69263,1.26528,0.008352,0.234432,0.005024,0.006016,0.006272,0.013952,0.014752,0.966624,0.009856
+1484,543.452,1.84009,1.25402,0.0088,0.231456,0.006144,0.005536,0.006752,0.014336,0.014336,0.956416,0.01024
+1485,526.614,1.89893,2.04016,0.008096,0.289216,0.006144,0.005792,0.006496,0.0136,0.014432,1.68205,0.014336
+1486,448.14,2.23145,1.25133,0.009664,0.231328,0.00608,0.004864,0.007712,0.012832,0.015296,0.953312,0.01024
+1487,598.393,1.67114,1.64054,0.008192,0.226912,0.005728,0.00496,0.007424,0.013056,0.014304,1.34899,0.010976
+1488,492.722,2.02954,1.25542,0.009568,0.237824,0.00576,0.004896,0.007712,0.0128,0.015584,0.951072,0.010208
+1489,575.928,1.73633,1.9048,0.008384,0.450528,0.034624,0.005312,0.007072,0.014336,0.014432,1.36144,0.008672
+1490,436.488,2.29102,1.26976,0.008192,0.247808,0.005824,0.004416,0.007712,0.012768,0.014368,0.959648,0.009024
+1491,534.307,1.87158,1.27392,0.008256,0.257088,0.005056,0.005984,0.006304,0.01424,0.014432,0.95232,0.01024
+1492,611.983,1.63403,1.26566,0.009376,0.26096,0.005984,0.00544,0.007008,0.013952,0.014688,0.939712,0.008544
+1493,443.53,2.25464,1.25939,0.010912,0.237088,0.004992,0.005888,0.007264,0.013248,0.014304,0.955968,0.009728
+1494,570.712,1.7522,1.62202,0.009504,0.236288,0.006016,0.00544,0.006944,0.01376,0.014176,1.3176,0.012288
+1495,513.669,1.94678,1.24928,0.008192,0.22912,0.00576,0.004736,0.007648,0.012864,0.014304,0.956416,0.01024
+1496,588.59,1.69897,2.09456,0.009472,0.239488,0.004992,0.006144,0.007232,0.01328,0.01536,1.78685,0.011744
+1497,390.989,2.55762,1.27965,0.008032,0.250336,0.006176,0.005408,0.006848,0.013376,0.014304,0.9656,0.009568
+1498,521.518,1.91748,1.28154,0.009664,0.257632,0.005088,0.006144,0.006176,0.014304,0.014336,0.958464,0.009728
+1499,619.199,1.61499,1.25917,0.008416,0.23136,0.005728,0.004576,0.007936,0.012544,0.014528,0.964256,0.009824
+1500,439.91,2.27319,1.2584,0.011168,0.237216,0.005728,0.004864,0.007712,0.012768,0.014528,0.954176,0.01024
+1501,594.312,1.68262,1.23888,0.008416,0.229152,0.004864,0.005952,0.006336,0.014016,0.014656,0.945824,0.009664
+1502,541.656,1.84619,1.24976,0.008768,0.224896,0.005728,0.004928,0.00752,0.01296,0.014336,0.959552,0.011072
+1503,552.99,1.80835,1.96403,0.008192,0.260096,0.006144,0.005344,0.006944,0.014336,0.014368,1.63427,0.014336
+1504,445.266,2.24585,1.25338,0.009536,0.233696,0.00576,0.00496,0.007552,0.012928,0.014336,0.954368,0.01024
+1505,510.978,1.95703,1.704,0.007904,0.292384,0.00496,0.006112,0.007552,0.014304,0.014784,1.34685,0.009152
+1506,530.57,1.88477,1.26502,0.008288,0.257248,0.004992,0.006048,0.0072,0.01328,0.014336,0.944064,0.009568
+1507,596.824,1.67554,1.8985,0.008224,0.47504,0.0144,0.005952,0.006336,0.015392,0.014368,1.34854,0.01024
+1508,439.344,2.27612,1.25059,0.008288,0.231328,0.005984,0.005472,0.006976,0.013888,0.014528,0.95456,0.009568
+1509,518.678,1.92798,1.24106,0.008256,0.230688,0.004992,0.005952,0.007232,0.013248,0.014336,0.946176,0.010176
+1510,589.862,1.69531,2.11165,0.008448,0.241632,0.005824,0.005472,0.007072,0.013504,0.014592,1.80288,0.012224
+1511,397.593,2.51514,1.26931,0.009472,0.236288,0.00576,0.004544,0.00784,0.012576,0.01536,0.96768,0.009792
+1512,592.85,1.68677,1.64816,0.00848,0.231168,0.00576,0.004736,0.007808,0.01376,0.013248,1.35334,0.009856
+1513,490.951,2.03687,1.26976,0.008224,0.228704,0.00496,0.00592,0.007328,0.013152,0.014336,0.977952,0.009184
+1514,421.399,2.37305,1.26192,0.010592,0.242912,0.004992,0.00608,0.007648,0.014176,0.014368,0.950912,0.01024
+1515,599.532,1.66797,1.51062,0.00816,0.249984,0.005728,0.004608,0.007808,0.012576,0.014336,0.964608,0.242816
+1516,531.051,1.88306,1.2759,0.009216,0.2304,0.006144,0.005792,0.007552,0.013312,0.014304,0.980384,0.0088
+1517,585.98,1.70654,1.99478,0.008224,0.233472,0.005792,0.004576,0.007968,0.012384,0.014336,1.69373,0.014304
+1518,401.687,2.4895,1.27091,0.009696,0.24224,0.006112,0.005568,0.00672,0.013728,0.01408,0.963104,0.009664
+1519,560.789,1.7832,1.65027,0.008192,0.235104,0.005728,0.004928,0.00752,0.01296,0.014336,1.35168,0.009824
+1520,510.469,1.95898,1.25219,0.008736,0.229696,0.006048,0.005472,0.006912,0.014336,0.015392,0.956672,0.008928
+1521,534.586,1.87061,1.90448,0.008192,0.4608,0.016384,0.005728,0.006592,0.014304,0.015616,1.36678,0.01008
+1522,461.209,2.16821,1.25542,0.008192,0.23552,0.006144,0.005664,0.006656,0.014304,0.014336,0.956064,0.008544
+1523,561.327,1.78149,1.27184,0.008096,0.255072,0.00512,0.005952,0.007392,0.01296,0.014656,0.95232,0.010272
+1524,552.916,1.80859,1.97949,0.00944,0.238368,0.006144,0.005632,0.006656,0.013952,0.014656,1.67043,0.014208
+1525,441.284,2.26611,1.27648,0.00848,0.255392,0.004992,0.00608,0.006208,0.013824,0.014752,0.956512,0.01024
+1526,610.159,1.63892,1.63693,0.008768,0.22528,0.005856,0.00544,0.007136,0.013536,0.014176,1.34445,0.012288
+1527,471.998,2.11865,1.25133,0.008192,0.231424,0.006144,0.00592,0.0064,0.014304,0.014336,0.955424,0.009184
+1528,617.612,1.61914,1.90934,0.0088,0.463904,0.007136,0.005184,0.007104,0.01424,0.014272,1.37958,0.00912
+1529,418.343,2.39038,1.27526,0.009376,0.24816,0.005728,0.005024,0.007392,0.013088,0.014368,0.9624,0.009728
+1530,539.231,1.85449,1.28714,0.008832,0.256352,0.006144,0.005664,0.006624,0.01424,0.014432,0.96592,0.008928
+1531,461.833,2.16528,2.11965,0.008192,0.248896,0.005088,0.005952,0.008352,0.012352,0.01632,1.80192,0.012576
+1532,387.622,2.57983,1.2551,0.008512,0.231584,0.006176,0.005632,0.006656,0.014112,0.014528,0.958144,0.00976
+1533,598.393,1.67114,1.51142,0.008384,0.450368,0.006144,0.005472,0.006816,0.014272,0.0144,0.99536,0.010208
+1534,526.072,1.90088,1.2657,0.008768,0.234912,0.00496,0.006016,0.007904,0.012576,0.014336,0.966432,0.009792
+1535,509.073,1.96436,1.44854,0.010848,0.421888,0.006144,0.00528,0.007008,0.014336,0.01552,0.958368,0.009152
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..534215f
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,33.5914,29.7883,28.6141,0.0697025,0.944534,0.00757328,0.00561109,0.0289188,0.0964729,0.0992089,27.2459,0.116129
+max_1024,36.4984,35.1523,31.4902,0.084288,3.12502,0.043264,0.021408,0.045056,0.11808,0.458144,29.1158,0.50384
+min_1024,28.4476,27.3984,27.8118,0.065824,0.833664,0.006112,0.004064,0.02672,0.093152,0.095904,26.5107,0.111392
+512,34.3451,29.1162,28.232,0.065824,1.024,0.007744,0.004544,0.028384,0.104736,0.098336,26.7853,0.113056
+513,33.2694,30.0576,29.6326,0.069696,1.19536,0.006816,0.005888,0.03712,0.108544,0.097536,27.9982,0.11344
+514,31.7057,31.54,29.6591,0.069632,1.20794,0.006432,0.004224,0.044416,0.100352,0.096896,28.0166,0.11264
+515,32.4616,30.8057,28.1938,0.069696,1.00755,0.007936,0.005536,0.027488,0.104448,0.1,26.7554,0.115744
+516,35.9576,27.8105,29.3135,0.06848,0.929728,0.006208,0.005696,0.027072,0.095872,0.09664,27.9695,0.114272
+517,33.1853,30.1338,28.1313,0.070368,0.878592,0.007904,0.005504,0.027552,0.095648,0.096576,26.8352,0.113888
+518,34.1129,29.3145,28.1416,0.0696,0.92752,0.0064,0.005568,0.02864,0.094816,0.096384,26.7996,0.113024
+519,34.2521,29.1953,30.1757,0.067296,0.88752,0.006176,0.006144,0.02832,0.094592,0.097952,28.8746,0.113152
+520,32,31.25,28.0719,0.068768,0.8856,0.008064,0.004224,0.028704,0.095232,0.097056,26.7696,0.114688
+521,33.9815,29.4277,28.1395,0.069344,0.9376,0.006816,0.005856,0.028832,0.094368,0.096224,26.7858,0.114688
+522,34.2922,29.1611,29.3553,0.069632,0.917504,0.007168,0.004864,0.028256,0.095968,0.097184,28.0208,0.113984
+523,32.8721,30.4209,28.0822,0.069568,0.8848,0.007328,0.004992,0.028512,0.09552,0.09712,26.781,0.113376
+524,34.3221,29.1357,28.0717,0.070848,0.869184,0.007488,0.0048,0.028032,0.093856,0.097248,26.785,0.115264
+525,34.5421,28.9502,29.2906,0.068192,0.849056,0.007008,0.005568,0.0272,0.09584,0.09664,28.0239,0.117216
+526,32.9908,30.3115,29.2734,0.071136,0.861952,0.006944,0.004096,0.028672,0.096256,0.096256,27.9941,0.114016
+527,33.0653,30.2432,28.0777,0.070176,0.853792,0.006368,0.006144,0.028128,0.094752,0.098304,26.8059,0.11408
+528,34.1766,29.2598,29.2721,0.069632,0.861184,0.00704,0.004224,0.028672,0.095392,0.097088,27.9962,0.11264
+529,32.9112,30.3848,28.1522,0.06976,0.913184,0.006528,0.006016,0.027968,0.094752,0.098464,26.8207,0.114816
+530,34.4526,29.0254,29.1717,0.069344,0.860448,0.007936,0.004384,0.02864,0.094304,0.098208,27.8914,0.117056
+531,33.1306,30.1836,29.3306,0.069664,0.847872,0.007936,0.005504,0.027488,0.094368,0.0976,28.0676,0.112608
+532,33.0365,30.2695,28.0273,0.068032,0.841728,0.007968,0.00432,0.028672,0.096256,0.09824,26.7592,0.12288
+533,34.3693,29.0957,28.0515,0.069568,0.845408,0.006624,0.005632,0.027136,0.096064,0.09648,26.7899,0.114688
+534,34.2406,29.2051,29.3546,0.070144,0.856128,0.007488,0.0048,0.028288,0.094592,0.10192,28.0781,0.113088
+535,32.9897,30.3125,28.0802,0.069632,0.854016,0.008064,0.005504,0.027392,0.096256,0.096256,26.8104,0.112672
+536,33.7153,29.6602,28.1904,0.069568,0.998528,0.007104,0.012288,0.03072,0.096256,0.098304,26.7566,0.121024
+537,33.2144,30.1074,29.4655,0.068512,0.980992,0.0072,0.005088,0.034848,0.100352,0.098176,28.0556,0.114688
+538,32.9939,30.3086,29.323,0.069152,0.870048,0.006976,0.004096,0.028672,0.094208,0.097888,28.0395,0.112512
+539,32.8079,30.4805,28.1762,0.06976,0.946784,0.006144,0.006144,0.02832,0.095968,0.096896,26.8104,0.11584
+540,34.2452,29.2012,29.296,0.069184,0.8784,0.006784,0.00512,0.027648,0.095552,0.09696,27.9916,0.1248
+541,32.0501,31.2012,28.3417,0.06784,1.10099,0.021312,0.006144,0.031808,0.096736,0.100352,26.8027,0.113888
+542,34.3601,29.1035,28.4497,0.068544,0.884736,0.006144,0.005312,0.027456,0.096256,0.098336,27.1483,0.114688
+543,33.4684,29.8789,29.8103,0.069632,1.36394,0.006176,0.006144,0.03072,0.096096,0.097632,28.0257,0.114272
+544,32.8331,30.457,28.1067,0.07008,0.89072,0.006336,0.005568,0.0272,0.095904,0.09664,26.8001,0.114176
+545,33.5342,29.8203,28.2292,0.069248,1.02877,0.006368,0.014336,0.030624,0.095968,0.09664,26.7735,0.113728
+546,34.8774,28.6719,29.3502,0.069984,0.870848,0.006336,0.005632,0.028128,0.095264,0.09824,28.0617,0.11408
+547,32.6927,30.5879,28.1637,0.069632,0.926752,0.007008,0.005536,0.02736,0.096,0.09776,26.8188,0.114848
+548,33.8043,29.582,28.121,0.068128,0.882688,0.007456,0.004832,0.028032,0.094848,0.096256,26.8247,0.114048
+549,33.6532,29.7148,29.5444,0.069632,1.13254,0.00752,0.01296,0.028416,0.09568,0.106912,27.9773,0.113472
+550,31.8428,31.4043,29.5282,0.075904,1.06,0.007008,0.004096,0.028672,0.095264,0.097248,28.0453,0.114688
+551,32.6551,30.623,28.5128,0.068448,1.23274,0.02064,0.006144,0.028672,0.09616,0.103552,26.8421,0.114336
+552,34.5386,28.9531,29.4906,0.069824,1.02182,0.006272,0.005664,0.027104,0.096256,0.098304,28.0515,0.113888
+553,33.0173,30.2871,28.0836,0.069568,0.878208,0.006592,0.005984,0.028032,0.096032,0.096832,26.7878,0.114624
+554,33.9658,29.4414,28.1996,0.068448,0.960512,0.006144,0.006112,0.028672,0.10432,0.096416,26.8145,0.114464
+555,34.2658,29.1836,29.3467,0.068448,0.892896,0.006176,0.006144,0.02832,0.096256,0.09824,28.0355,0.114688
+556,32.7219,30.5605,28.1223,0.070848,0.938816,0.008096,0.004192,0.028672,0.095552,0.09696,26.7652,0.113984
+557,34.1789,29.2578,28.1766,0.079488,0.98704,0.00672,0.006112,0.027968,0.094944,0.0976,26.7619,0.114784
+558,34.404,29.0664,29.3591,0.068512,0.888832,0.007936,0.00432,0.028576,0.094336,0.097984,28.0558,0.112736
+559,32.7136,30.5684,28.1464,0.069728,0.92016,0.007936,0.005536,0.027488,0.096224,0.098048,26.8076,0.1136
+560,33.9253,29.4766,28.1611,0.0696,0.95024,0.008032,0.004256,0.02864,0.09568,0.096864,26.7939,0.113856
+561,33.9748,29.4336,29.4257,0.069664,0.9616,0.007072,0.005504,0.027264,0.095744,0.096768,28.0494,0.11264
+562,32.9409,30.3574,29.3653,0.075776,0.87984,0.006944,0.004288,0.02848,0.096192,0.09824,28.0612,0.114336
+563,32.6781,30.6016,28.1149,0.069408,0.901344,0.006304,0.006144,0.028704,0.09552,0.096992,26.796,0.114464
+564,34.4086,29.0625,29.3813,0.068448,0.926624,0.007072,0.00416,0.028672,0.09424,0.098016,28.0414,0.112704
+565,32.5245,30.7461,28.0562,0.070272,0.874464,0.006144,0.006144,0.02864,0.096064,0.09648,26.7633,0.11472
+566,34.0448,29.373,29.3697,0.078048,0.916576,0.007072,0.005472,0.027296,0.096032,0.09648,28.0289,0.11376
+567,32.5949,30.6797,29.3624,0.069344,0.936448,0.007904,0.005504,0.027552,0.095456,0.097056,28.0105,0.11264
+568,32.3273,30.9336,28.3057,0.069824,0.984512,0.006816,0.005184,0.027584,0.096,0.097664,26.9034,0.114688
+569,33.9388,29.4648,28.2002,0.068864,0.983264,0.006688,0.005856,0.028256,0.094912,0.098208,26.7999,0.11424
+570,33.9545,29.4512,29.3405,0.069536,0.926624,0.008032,0.004256,0.028512,0.094368,0.097696,27.9988,0.11264
+571,33.1134,30.1992,28.181,0.069536,0.876096,0.007136,0.005504,0.027296,0.096256,0.098336,26.8791,0.121728
+572,33.8848,29.5117,28.2828,0.069632,1.00499,0.00672,0.005184,0.027584,0.095776,0.096736,26.8615,0.114688
+573,34.188,29.25,29.4219,0.072,0.9728,0.008064,0.004128,0.044544,0.103008,0.098304,28.0062,0.112864
+574,32.701,30.5801,29.4031,0.075104,0.966752,0.00672,0.005248,0.02752,0.09744,0.09712,28.014,0.113184
+575,32.9388,30.3594,28.1375,0.069664,0.903136,0.00752,0.004768,0.028672,0.100352,0.097792,26.8109,0.114688
+576,34.1698,29.2656,29.3507,0.069536,0.895904,0.008,0.004288,0.028704,0.095904,0.097888,28.0371,0.113376
+577,32.6468,30.6309,28.1785,0.069088,0.944416,0.0064,0.00528,0.027488,0.095616,0.09664,26.8207,0.112832
+578,34.4271,29.0469,29.3048,0.073728,0.900192,0.007104,0.004064,0.028672,0.096256,0.097408,27.9848,0.11264
+579,32.747,30.5371,29.3305,0.069056,0.893504,0.007552,0.004736,0.028704,0.095264,0.097216,28.0206,0.113856
+580,32.6323,30.6445,28.1527,0.06848,0.9312,0.006784,0.00416,0.028608,0.095488,0.09632,26.8089,0.1128
+581,34.1972,29.2422,28.0756,0.071584,0.901408,0.007648,0.00464,0.028672,0.096224,0.097472,26.7537,0.114304
+582,34.2658,29.1836,29.2944,0.075456,0.90512,0.00656,0.005408,0.02736,0.09616,0.098176,27.9668,0.11344
+583,32.4852,30.7832,28.289,0.069632,1.07229,0.007008,0.005632,0.027136,0.094272,0.098048,26.8002,0.114784
+584,34.0947,29.3301,28.1325,0.069664,0.935488,0.00656,0.005376,0.027392,0.096256,0.098304,26.7796,0.113824
+585,34.1607,29.2734,29.2964,0.071008,0.897696,0.007616,0.004672,0.028672,0.09568,0.096864,27.981,0.113184
+586,32.6656,30.6133,29.279,0.069888,0.872992,0.0072,0.004928,0.028256,0.094784,0.113792,27.9745,0.112672
+587,32.6011,30.6738,28.0575,0.068352,0.9032,0.0072,0.005056,0.028704,0.095968,0.098528,26.7367,0.113792
+588,34.1812,29.2559,29.3667,0.070016,0.966656,0.007552,0.012704,0.028096,0.094432,0.096928,27.9776,0.112672
+589,32.9451,30.3535,28.2202,0.069952,0.997824,0.006144,0.006144,0.028544,0.096128,0.096512,26.8042,0.114688
+590,33.7308,29.6465,29.2238,0.068512,0.884736,0.006144,0.005856,0.028096,0.095072,0.097408,27.9254,0.11264
+591,32.7324,30.5508,29.3772,0.0696,0.973632,0.007904,0.005504,0.027552,0.096256,0.097888,27.9843,0.114624
+592,33.1886,30.1309,28.0637,0.069632,0.86016,0.00752,0.004768,0.02832,0.095872,0.096992,26.7858,0.114656
+593,34.3624,29.1016,28.0098,0.069216,0.860576,0.00736,0.004928,0.02864,0.09424,0.0976,26.7332,0.114016
+594,34.1972,29.2422,29.2148,0.068928,0.879264,0.006176,0.005824,0.028192,0.095008,0.098304,27.9183,0.114752
+595,33.1434,30.1719,28.0342,0.069632,0.841504,0.006368,0.006144,0.028032,0.094912,0.098112,26.7754,0.114144
+596,33.8983,29.5,28.1158,0.068576,0.924544,0.007072,0.00416,0.028672,0.096256,0.097664,26.7756,0.113248
+597,33.152,30.1641,29.8584,0.06816,1.41514,0.006176,0.006144,0.028672,0.104,0.096704,28.02,0.113376
+598,32.4194,30.8457,29.5972,0.069632,1.24109,0.007968,0.00432,0.028672,0.095776,0.096768,27.9388,0.114208
+599,32.8479,30.4434,28.2481,0.069664,1.03421,0.006144,0.006144,0.028224,0.094656,0.097376,26.797,0.114624
+600,34.2727,29.1777,29.3663,0.06912,0.94832,0.00656,0.005472,0.027296,0.096192,0.097504,28.0011,0.11472
+601,32.9388,30.3594,28.1129,0.069408,0.888224,0.006976,0.005568,0.027232,0.096224,0.098144,26.8064,0.11472
+602,34.2704,29.1797,29.29,0.068992,0.877088,0.00624,0.005248,0.02752,0.096256,0.097792,27.9967,0.114144
+603,32.9515,30.3477,29.3165,0.069664,0.860128,0.008032,0.005536,0.027392,0.095552,0.104128,28.0317,0.114368
+604,32.8374,30.4531,28.1619,0.084288,0.892288,0.006848,0.004064,0.028672,0.095552,0.09696,26.839,0.114208
+605,34.2612,29.1875,28.0745,0.069472,0.854752,0.007392,0.004864,0.028704,0.09552,0.09696,26.8022,0.114688
+606,34.0584,29.3613,29.3145,0.069632,0.886752,0.006336,0.005632,0.027072,0.09616,0.096256,28.014,0.11264
+607,32.8479,30.4434,28.0805,0.069536,0.867008,0.007264,0.005024,0.028672,0.096256,0.097696,26.7925,0.11648
+608,34.2842,29.168,28.0617,0.069088,0.870976,0.008032,0.004224,0.028672,0.095808,0.096736,26.7748,0.113376
+609,33.6554,29.7129,29.3353,0.06928,0.960864,0.007808,0.005504,0.027648,0.096256,0.097344,27.9562,0.1144
+610,32.4935,30.7754,29.4133,0.068352,1.0097,0.007744,0.004544,0.02864,0.095904,0.09824,27.9856,0.114592
+611,32.5679,30.7051,28.1825,0.083232,1.00016,0.007264,0.005024,0.028288,0.094624,0.097536,26.7517,0.114688
+612,34.5037,28.9824,29.3372,0.069632,0.923648,0.00752,0.004768,0.02848,0.094432,0.097632,27.9979,0.113216
+613,32.8352,30.4551,28.123,0.068352,0.919424,0.007872,0.005536,0.027552,0.096288,0.098272,26.7858,0.113952
+614,34.029,29.3867,28.4979,0.069632,0.921056,0.006688,0.005312,0.027456,0.096064,0.096448,27.1626,0.11264
+615,33.3138,30.0176,29.2778,0.071392,0.897312,0.007744,0.004544,0.028672,0.09584,0.096672,27.9613,0.114304
+616,32.7701,30.5156,28.0397,0.068576,0.863904,0.006464,0.006144,0.028224,0.1008,0.097856,26.7535,0.11424
+617,33.7108,29.6641,28.1516,0.069824,0.98944,0.007232,0.005056,0.028544,0.10048,0.096256,26.7387,0.116128
+618,33.9658,29.4414,29.3126,0.069664,0.894944,0.007936,0.004352,0.028448,0.094432,0.098304,28.0003,0.114304
+619,33.0301,30.2754,28.0783,0.068448,0.891968,0.007104,0.005536,0.027232,0.096256,0.096256,26.7715,0.114016
+620,33.713,29.6621,28.1358,0.068352,0.976832,0.006208,0.005664,0.029152,0.095872,0.09808,26.7413,0.114368
+621,34.1447,29.2871,29.3581,0.069568,0.95648,0.00736,0.004928,0.028672,0.096256,0.098176,27.982,0.114688
+622,32.6676,30.6113,29.2525,0.069696,0.90192,0.007456,0.004832,0.028032,0.094368,0.104928,27.9282,0.113024
+623,33.0707,30.2383,28.1071,0.076128,0.912384,0.007072,0.005536,0.027328,0.096256,0.097888,26.771,0.113504
+624,34.4341,29.041,29.2455,0.069632,0.870432,0.008,0.004256,0.028672,0.09424,0.098144,27.9492,0.122912
+625,32.8901,30.4043,28.0105,0.069664,0.871424,0.007008,0.005504,0.027392,0.096256,0.097984,26.722,0.113312
+626,34.5223,28.9668,29.2186,0.069248,0.854272,0.006752,0.005248,0.02752,0.094208,0.096256,27.9521,0.112992
+627,32.8648,30.4277,29.3197,0.069696,0.946592,0.00624,0.006144,0.02816,0.09472,0.098304,27.9564,0.11344
+628,32.8605,30.4316,28.0751,0.069664,0.912576,0.006944,0.004192,0.028576,0.096288,0.09808,26.7447,0.114048
+629,33.977,29.4316,28.2022,0.069568,0.99888,0.006752,0.005792,0.028128,0.099104,0.096384,26.7837,0.11392
+630,34.2269,29.2168,29.3095,0.068352,0.902784,0.020896,0.005824,0.028096,0.096256,0.097152,27.9757,0.114496
+631,32.9007,30.3945,28.1231,0.069568,0.935008,0.00704,0.00544,0.027456,0.104416,0.098336,26.7625,0.113408
+632,34.2635,29.1855,28.0515,0.069632,0.856096,0.007488,0.004768,0.028352,0.106816,0.096256,26.7674,0.114688
+633,34.0765,29.3457,29.2413,0.069568,0.866368,0.00752,0.004768,0.028672,0.0944,0.097728,27.9597,0.11264
+634,32.0481,31.2031,29.3803,0.069728,1.01616,0.007456,0.0048,0.036224,0.094816,0.096384,27.9408,0.113952
+635,33.2079,30.1133,28.2348,0.069632,1.06906,0.007264,0.015008,0.030976,0.095456,0.09648,26.7352,0.115776
+636,32.9578,30.3418,29.3904,0.069312,1.00336,0.006624,0.005376,0.027392,0.095648,0.113248,27.945,0.124448
+637,33.7419,29.6367,28.0863,0.069632,0.93088,0.00704,0.005504,0.027328,0.096224,0.096288,26.7387,0.114688
+638,34.0788,29.3438,29.4236,0.069632,1.02157,0.006528,0.005408,0.041696,0.096064,0.097696,27.9716,0.113408
+639,32.5575,30.7148,29.4074,0.069344,1.05296,0.007168,0.00512,0.028512,0.1024,0.10256,27.926,0.113312
+640,33.137,30.1777,28.0849,0.069696,0.893216,0.006464,0.005632,0.027136,0.095872,0.09664,26.7756,0.114688
+641,34.3947,29.0742,28.029,0.069632,0.880512,0.006272,0.006144,0.028384,0.094656,0.098144,26.7317,0.113536
+642,34.3233,29.1348,29.2168,0.069632,0.892928,0.00816,0.004128,0.028448,0.094432,0.096256,27.9101,0.11264
+643,33.1241,30.1895,28.0655,0.06928,0.870752,0.00784,0.005536,0.027584,0.096256,0.098048,26.7772,0.112992
+644,33.9433,29.4609,28.1957,0.068448,1.0048,0.006912,0.004288,0.036448,0.09648,0.10032,26.7633,0.114688
+645,34.5176,28.9707,29.2527,0.06976,0.855808,0.0064,0.006016,0.02864,0.09424,0.098016,27.9801,0.113792
+646,32.7198,30.5625,29.3514,0.069632,0.906592,0.006816,0.00528,0.027488,0.104448,0.098048,28.0204,0.112672
+647,32.6052,30.6699,28.2153,0.069632,1.05043,0.006336,0.006144,0.028096,0.094816,0.097568,26.7476,0.114688
+648,34.5409,28.9512,29.1779,0.069632,0.86016,0.007936,0.004352,0.028512,0.096,0.096672,27.9012,0.113344
+649,33.0557,30.252,28.0656,0.06928,0.862848,0.006208,0.006144,0.02816,0.09472,0.096256,26.7878,0.114112
+650,34.3394,29.1211,28.0105,0.069632,0.886304,0.006624,0.00528,0.027488,0.096256,0.097792,26.7085,0.11264
+651,34.5666,28.9297,30.0339,0.067232,0.846176,0.006144,0.006144,0.028256,0.09664,0.09632,28.7735,0.113504
+652,32.004,31.2461,28.1703,0.069376,0.99568,0.015872,0.004608,0.028512,0.094368,0.097536,26.7514,0.11296
+653,34.2292,29.2148,28.1134,0.06816,0.95024,0.007744,0.004544,0.028672,0.095488,0.096864,26.7486,0.11312
+654,34.0335,29.3828,29.3225,0.071712,0.935936,0.006144,0.005856,0.028192,0.096288,0.096992,27.9675,0.113952
+655,32.8753,30.418,28.1786,0.069184,0.96096,0.006304,0.006144,0.028352,0.09584,0.096992,26.8012,0.113632
+656,34.1812,29.2559,28.0163,0.069472,0.84976,0.006656,0.005248,0.02752,0.095232,0.101408,26.7468,0.114144
+657,33.8378,29.5527,29.3992,0.06848,0.950304,0.007488,0.004768,0.028672,0.101664,0.096992,28.0249,0.116
+658,32.9282,30.3691,29.2804,0.069248,0.887616,0.007872,0.004384,0.028608,0.095488,0.09712,27.9774,0.112704
+659,32.6822,30.5977,28.0918,0.069664,0.886784,0.007552,0.004704,0.028672,0.095584,0.096928,26.7858,0.11616
+660,33.923,29.4785,29.3354,0.0696,0.938112,0.008096,0.004096,0.028672,0.095968,0.096576,27.9797,0.114496
+661,33.0003,30.3027,28.1314,0.077248,0.93856,0.007648,0.00464,0.028672,0.104256,0.098528,26.7584,0.113408
+662,34.2292,29.2148,29.3412,0.069664,0.92096,0.006752,0.005376,0.027392,0.096256,0.098208,28.0024,0.114176
+663,32.7995,30.4883,29.3235,0.069184,0.88544,0.007264,0.005056,0.028448,0.094432,0.096224,28.0228,0.114688
+664,33.1907,30.1289,28.0578,0.069248,0.88528,0.007328,0.004864,0.028096,0.094944,0.09808,26.7552,0.114688
+665,34.2452,29.2012,28.1037,0.069696,0.88272,0.007648,0.004608,0.028672,0.096128,0.097664,26.8026,0.114016
+666,34.3325,29.127,29.2475,0.069664,0.874464,0.007968,0.00432,0.02848,0.0944,0.09824,27.9573,0.112608
+667,32.6968,30.584,28.162,0.069472,0.92288,0.00704,0.005504,0.027456,0.096096,0.098304,26.8222,0.11312
+668,33.9815,29.4277,28.1178,0.068416,0.976576,0.006464,0.005536,0.028288,0.095168,0.096416,26.7278,0.113184
+669,33.9298,29.4727,29.289,0.068192,0.902816,0.006464,0.006112,0.028064,0.09488,0.098016,27.9716,0.112864
+670,32.2195,31.0371,28.2903,0.069632,1.21184,0.00672,0.02048,0.028672,0.095936,0.096608,26.6465,0.113888
+671,34.7543,28.7734,29.0058,0.067584,0.943168,0.00704,0.005536,0.02864,0.094912,0.098144,27.6473,0.113472
+672,33.44,29.9043,29.2507,0.06944,0.864384,0.006208,0.005792,0.028512,0.094592,0.096384,27.9716,0.113824
+673,32.7596,30.5254,28.1224,0.069664,0.933696,0.006304,0.006144,0.02816,0.09472,0.096288,26.7735,0.11392
+674,33.5892,29.7715,28.3958,0.068224,0.881824,0.007008,0.004096,0.028672,0.095936,0.09808,27.0976,0.1144
+675,34.4526,29.0254,29.4271,0.06912,1.02861,0.009824,0.004512,0.032,0.094976,0.098304,27.9757,0.114048
+676,32.7638,30.5215,28.06,0.069248,0.871296,0.006208,0.005696,0.027072,0.095808,0.096704,26.7734,0.114592
+677,33.9365,29.4668,28.1894,0.068384,1.00557,0.007744,0.004512,0.028672,0.096192,0.097568,26.7678,0.11296
+678,34.4549,29.0234,29.2413,0.071008,0.869024,0.00752,0.004768,0.028256,0.094624,0.09824,27.9532,0.114688
+679,32.7491,30.5352,28.1749,0.068,1.0152,0.006752,0.005504,0.027264,0.096128,0.106656,26.7358,0.113568
+680,33.941,29.4629,28.0804,0.069184,0.88736,0.006304,0.005664,0.02816,0.094656,0.0968,26.779,0.113344
+681,34.441,29.0352,29.2823,0.069376,0.928,0.007744,0.004544,0.028672,0.095872,0.09776,27.9355,0.114848
+682,33.0856,30.2246,28.0777,0.069632,0.909312,0.006144,0.005888,0.028224,0.096192,0.096928,26.7511,0.114304
+683,34.3072,29.1484,29.1855,0.069728,0.894976,0.007776,0.004512,0.028672,0.096256,0.097504,27.872,0.11408
+684,32.9366,30.3613,29.2455,0.067648,0.86016,0.007872,0.004416,0.028608,0.094272,0.09632,27.9736,0.11264
+685,33.1714,30.1465,28.1805,0.069632,0.925472,0.006368,0.006144,0.028128,0.094752,0.098304,26.837,0.114688
+686,32.1426,31.1113,28.1416,0.069664,0.995328,0.008096,0.004192,0.0344,0.094624,0.09808,26.7225,0.114688
+687,35.8619,27.8848,29.483,0.081088,1.12061,0.006624,0.005664,0.034528,0.095008,0.102368,27.9245,0.11264
+688,32.9706,30.3301,28.0678,0.073472,0.91888,0.007072,0.004096,0.028672,0.10448,0.098144,26.7197,0.113344
+689,34.2934,29.1602,28.0879,0.069632,0.9216,0.007968,0.005504,0.027488,0.096128,0.09792,26.7466,0.115104
+690,33.8781,29.5176,29.348,0.069216,0.961472,0.018112,0.004416,0.042944,0.096032,0.09776,27.9437,0.114336
+691,32.747,30.5371,29.3166,0.069632,0.960128,0.006528,0.006048,0.028064,0.094944,0.101536,27.9356,0.114176
+692,33.0216,30.2832,28.1545,0.068448,0.989184,0.007584,0.004704,0.028352,0.094528,0.097728,26.7495,0.114464
+693,34.2957,29.1582,29.2884,0.069632,0.884736,0.007616,0.004704,0.02864,0.09568,0.096832,27.987,0.113568
+694,32.7157,30.5664,28.33,0.069152,1.18013,0.006144,0.005856,0.02816,0.095008,0.119872,26.7121,0.113568
+695,34.0675,29.3535,29.3543,0.069952,0.966752,0.007232,0.005056,0.029856,0.1112,0.098304,27.9514,0.11456
+696,32.81,30.4785,29.311,0.069632,0.944064,0.006208,0.005824,0.026944,0.096064,0.096448,27.9532,0.112704
+697,32.9812,30.3203,28.158,0.06928,0.946528,0.0072,0.005088,0.02848,0.094432,0.097568,26.7823,0.127104
+698,33.682,29.6895,28.115,0.069664,0.94016,0.00736,0.004832,0.0288,0.095712,0.098112,26.7551,0.115232
+699,34.1721,29.2637,29.2686,0.069408,0.912064,0.006304,0.006144,0.02816,0.094752,0.09808,27.9401,0.1136
+700,33.0664,30.2422,28.0765,0.070048,0.940032,0.00752,0.004768,0.028096,0.094784,0.098144,26.7184,0.11472
+701,34.4179,29.0547,28.0269,0.068704,0.861088,0.007808,0.005536,0.027616,0.096096,0.10368,26.7429,0.11344
+702,34.5363,28.9551,29.1983,0.069632,0.847872,0.007872,0.004416,0.028416,0.094464,0.098112,27.934,0.113504
+703,32.7345,30.5488,28.0769,0.069568,0.928704,0.006144,0.006144,0.028352,0.096576,0.096256,26.7305,0.114688
+704,34.3486,29.1133,29.4401,0.068608,0.995328,0.007968,0.00432,0.028704,0.09536,0.09712,28.0289,0.113728
+705,33.011,30.293,29.2408,0.0696,0.847904,0.007744,0.004544,0.028672,0.106496,0.098336,27.9634,0.114112
+706,32.9897,30.3125,27.9929,0.069792,0.873152,0.0072,0.004864,0.028096,0.096288,0.097056,26.7018,0.114656
+707,34.2315,29.2129,28.1702,0.069632,0.999424,0.007968,0.005536,0.027456,0.096288,0.097856,26.7514,0.114688
+708,34.2452,29.2012,29.2001,0.069216,0.842144,0.006144,0.006144,0.028064,0.110656,0.0968,27.9281,0.112896
+709,32.8753,30.418,28.192,0.07072,1.02266,0.0064,0.006144,0.028256,0.094624,0.096384,26.752,0.114784
+710,34.0879,29.3359,28.0044,0.069632,0.88064,0.007424,0.004864,0.028128,0.095776,0.09728,26.7059,0.114688
+711,34.1265,29.3027,29.2748,0.06944,0.914272,0.007584,0.004704,0.028672,0.095552,0.09696,27.945,0.11264
+712,32.9876,30.3145,29.2937,0.068736,0.930688,0.0072,0.004864,0.028224,0.096288,0.098144,27.945,0.114624
+713,32.9451,30.3535,28.1303,0.068608,0.984064,0.00704,0.005504,0.027392,0.095648,0.10288,26.7245,0.114688
+714,34.2658,29.1836,29.2534,0.069664,0.917664,0.008032,0.004256,0.028672,0.094208,0.098304,27.9183,0.114272
+715,32.5286,30.7422,28.0333,0.068768,0.927552,0.00768,0.004608,0.028672,0.095904,0.097728,26.6896,0.112768
+716,34.0607,29.3594,29.2639,0.069632,0.954368,0.007456,0.004832,0.028096,0.094784,0.097824,27.8942,0.112704
+717,33.4466,29.8984,29.2237,0.069632,0.883584,0.00768,0.004608,0.028672,0.095968,0.096544,27.9224,0.114592
+718,33.0856,30.2246,28.0177,0.069664,0.870368,0.007232,0.004928,0.028128,0.09488,0.097824,26.731,0.113728
+719,34.2727,29.1777,28.0764,0.068576,0.913408,0.008032,0.005504,0.027424,0.096256,0.097472,26.7447,0.11504
+720,33.2662,30.0605,29.536,0.0696,1.09792,0.007584,0.004704,0.028384,0.094496,0.098272,28.0208,0.114272
+721,32.9366,30.3613,28.0924,0.069632,0.948128,0.00624,0.006144,0.028544,0.094336,0.097792,26.729,0.112672
+722,31.823,31.4238,28.3055,0.069152,1.09011,0.006144,0.005792,0.028128,0.09648,0.098304,26.7898,0.121568
+723,36.4984,27.3984,29.4093,0.06912,1.05936,0.007424,0.004832,0.028672,0.095776,0.096768,27.934,0.11328
+724,32.6968,30.584,29.373,0.069472,0.958784,0.006592,0.005888,0.04224,0.094688,0.0968,27.9858,0.1128
+725,32.6718,30.6074,28.0132,0.071808,0.913856,0.006208,0.006144,0.028544,0.096384,0.098304,26.6767,0.1152
+726,33.8759,29.5195,29.4335,0.069664,1.07312,0.006144,0.005792,0.028,0.095232,0.097888,27.9447,0.113024
+727,32.9897,30.3125,28.0981,0.069696,0.942112,0.007936,0.005504,0.027488,0.09424,0.097408,26.7389,0.114784
+728,34.397,29.0723,27.9511,0.069504,0.83984,0.007936,0.00432,0.02848,0.094304,0.096352,26.6977,0.11264
+729,34.4155,29.0566,30.1325,0.069696,0.8544,0.007904,0.005504,0.027552,0.110336,0.097888,28.8447,0.114496
+730,32.1184,31.1348,28.001,0.068288,0.847264,0.006752,0.00512,0.027648,0.09584,0.112864,26.7239,0.113312
+731,34.3578,29.1055,28.0713,0.069632,0.87968,0.00704,0.005504,0.02928,0.094528,0.0976,26.7735,0.11456
+732,34.3049,29.1504,29.227,0.069632,0.854016,0.007456,0.004832,0.028064,0.094848,0.09824,27.9552,0.114688
+733,33.0621,30.2461,27.99,0.069632,0.882688,0.007904,0.005504,0.027552,0.095776,0.09776,26.6885,0.114688
+734,34.2888,29.1641,28.1278,0.069312,0.954752,0.006688,0.005312,0.027456,0.095392,0.097152,26.7582,0.1136
+735,33.733,29.6445,29.3955,0.070048,1.02806,0.006336,0.006144,0.028,0.09488,0.096256,27.9532,0.11264
+736,32.7932,30.4941,28.1375,0.069664,0.987104,0.006144,0.005856,0.028096,0.095072,0.097856,26.733,0.114688
+737,34.4642,29.0156,29.2393,0.069632,0.892928,0.007488,0.0048,0.028672,0.096128,0.096384,27.9286,0.114688
+738,32.183,31.0723,29.3528,0.068416,1.03773,0.006752,0.005216,0.027552,0.096224,0.096256,27.9018,0.112864
+739,33.3529,29.9824,28.1827,0.069664,1.0057,0.006368,0.006144,0.028032,0.09488,0.098272,26.7571,0.116544
+740,34.0765,29.3457,28.1403,0.069408,1.00656,0.007552,0.004736,0.028096,0.094784,0.096288,26.7192,0.113632
+741,33.2209,30.1016,29.3296,0.068416,0.946208,0.01744,0.005056,0.028672,0.096288,0.097696,27.9572,0.11264
+742,33.8311,29.5586,27.985,0.069184,0.836032,0.007456,0.004832,0.028672,0.1024,0.1024,26.7203,0.11376
+743,34.2269,29.2168,28.2084,0.070656,1.01888,0.007424,0.004864,0.02864,0.102432,0.097376,26.7621,0.115968
+744,34.072,29.3496,29.2949,0.069056,0.958848,0.006656,0.005376,0.027392,0.096256,0.09744,27.9212,0.112704
+745,32.9007,30.3945,27.9943,0.069152,0.87728,0.007936,0.005536,0.027456,0.095616,0.096896,26.6998,0.114688
+746,33.5474,29.8086,29.2541,0.068064,1.21811,0.00656,0.005344,0.027424,0.096256,0.098016,27.6196,0.114752
+747,32.1547,31.0996,29.5961,0.06864,1.08448,0.007008,0.005536,0.027296,0.106016,0.100064,28.0825,0.11456
+748,32.0722,31.1797,28.1813,0.06864,1.04438,0.006208,0.006048,0.042624,0.096672,0.098368,26.7051,0.113344
+749,33.6068,29.7559,29.4687,0.076864,1.06736,0.006752,0.016096,0.028512,0.095744,0.097216,27.9672,0.112896
+750,32.4791,30.7891,29.3232,0.069632,0.970656,0.014432,0.005344,0.027424,0.096224,0.096288,27.9298,0.11344
+751,32.9451,30.3535,28.1334,0.07568,1.00566,0.00784,0.005472,0.027648,0.096256,0.097408,26.7027,0.11472
+752,33.8333,29.5566,28.2802,0.069664,1.12957,0.00704,0.004224,0.028576,0.095872,0.096608,26.7346,0.114016
+753,33.9253,29.4766,29.3833,0.069664,1.03232,0.006592,0.005952,0.028192,0.095008,0.098176,27.9347,0.11264
+754,32.572,30.7012,28.0817,0.069536,0.982368,0.006912,0.004224,0.028544,0.096256,0.096256,26.6789,0.118688
+755,33.8065,29.5801,28.2338,0.06912,1.06554,0.007776,0.004608,0.028576,0.095936,0.096576,26.751,0.11472
+756,33.1692,30.1484,29.4837,0.082592,1.11002,0.0176,0.004928,0.02816,0.095808,0.097248,27.9347,0.112672
+757,32.4564,30.8105,28.3525,0.069632,0.949856,0.016128,0.004768,0.028672,0.096256,0.098304,26.9637,0.125152
+758,34.2658,29.1836,28.8928,0.069664,0.876512,0.00752,0.004768,0.028256,0.102816,0.098112,27.5908,0.114304
+759,32.8458,30.4453,29.3613,0.069632,0.996544,0.016704,0.004608,0.028672,0.096064,0.09648,27.9401,0.11248
+760,33.1177,30.1953,28.1312,0.068864,0.98816,0.007904,0.004384,0.040544,0.094752,0.099552,26.7127,0.114304
+761,34.0245,29.3906,28.5069,0.069568,0.981888,0.007488,0.004768,0.028672,0.095936,0.096576,27.1093,0.112672
+762,33.2662,30.0605,29.2233,0.067968,0.905248,0.00752,0.004736,0.028192,0.094688,0.098208,27.9039,0.112832
+763,32.8542,30.4375,28.0904,0.069248,0.954752,0.00784,0.005504,0.027616,0.110592,0.098336,26.7038,0.11264
+764,34.2017,29.2383,28.0208,0.069664,0.866048,0.0064,0.005504,0.027296,0.096224,0.096288,26.7387,0.114688
+765,34.2292,29.2148,29.2742,0.06912,0.88128,0.008032,0.005536,0.039712,0.09568,0.0968,27.9646,0.11344
+766,32.4873,30.7812,28.0782,0.068448,0.972352,0.00656,0.005472,0.027296,0.096256,0.096256,26.6929,0.112704
+767,34.4711,29.0098,27.9878,0.067936,0.845824,0.008,0.005504,0.027456,0.096288,0.098176,26.7258,0.112832
+768,34.0335,29.3828,29.2582,0.070016,0.919648,0.007584,0.004704,0.028256,0.094624,0.096448,27.9222,0.114688
+769,32.313,30.9473,29.4046,0.069664,1.01328,0.014816,0.005632,0.041472,0.094208,0.098208,27.955,0.112384
+770,33.0878,30.2227,28.0766,0.068608,0.894976,0.007296,0.00496,0.028096,0.09632,0.104992,26.7584,0.113024
+771,32.8859,30.4082,29.7165,0.071072,1.39075,0.006592,0.005984,0.028192,0.102464,0.096832,27.9015,0.113088
+772,32.1568,31.0977,28.1271,0.069376,0.997856,0.007648,0.00464,0.040608,0.099936,0.097056,26.6955,0.114528
+773,35.7642,27.9609,28.1477,0.069632,1.00355,0.007776,0.005504,0.039744,0.0944,0.103552,26.7109,0.11264
+774,34.5363,28.9551,29.1774,0.069632,0.845824,0.007968,0.00432,0.028672,0.096032,0.09776,27.913,0.114272
+775,33.1929,30.127,28.019,0.06928,0.838336,0.007264,0.005024,0.028544,0.096384,0.098272,26.7629,0.113056
+776,34.0312,29.3848,28.1127,0.06944,1.00576,0.007616,0.004672,0.028032,0.094848,0.098016,26.6898,0.114528
+777,34.5013,28.9844,29.2148,0.069504,0.854144,0.007488,0.0048,0.028608,0.094272,0.103648,27.9397,0.112576
+778,32.5949,30.6797,28.052,0.069888,0.927072,0.007104,0.004128,0.028672,0.09424,0.097984,26.7099,0.113024
+779,34.0516,29.3672,29.2475,0.069632,0.878528,0.006208,0.006144,0.028672,0.095936,0.097824,27.9511,0.113472
+780,33.1392,30.1758,29.1637,0.068352,0.839712,0.00768,0.004576,0.028288,0.09664,0.097664,27.908,0.112768
+781,32.7429,30.541,27.9872,0.069632,0.868352,0.007424,0.004864,0.028672,0.095424,0.097088,26.6998,0.115936
+782,33.811,29.5762,28.1645,0.080096,1.11958,0.017184,0.004128,0.036864,0.096288,0.097568,26.5997,0.113056
+783,34.4758,29.0059,29.2846,0.068384,0.923392,0.0064,0.006144,0.02816,0.094752,0.096256,27.948,0.113088
+784,32.9536,30.3457,28.1579,0.071712,0.96672,0.006144,0.005856,0.028064,0.09616,0.097248,26.7726,0.113376
+785,33.6864,29.6855,28.1353,0.069632,0.995328,0.017792,0.00592,0.033664,0.096224,0.09744,26.7047,0.114528
+786,34.3947,29.0742,29.3232,0.06976,0.983008,0.007456,0.004832,0.028032,0.094848,0.097632,27.9241,0.113504
+787,32.9472,30.3516,27.9701,0.06816,0.882688,0.007584,0.004704,0.02832,0.094592,0.097312,26.6733,0.113472
+788,34.3279,29.1309,29.0857,0.069024,1.12877,0.006432,0.005504,0.027264,0.096288,0.098304,27.5394,0.114688
+789,33.2857,30.043,29.3578,0.069568,0.937888,0.016544,0.005728,0.028224,0.095104,0.097952,27.9881,0.11872
+790,32.599,30.6758,27.9356,0.068608,0.856032,0.007392,0.004896,0.02784,0.09504,0.097792,26.6634,0.114528
+791,33.959,29.4473,28.0093,0.06848,0.91888,0.006784,0.005856,0.028096,0.095072,0.098304,26.6748,0.113024
+792,33.5936,29.7676,29.6018,0.069632,1.16739,0.008032,0.004224,0.04288,0.095808,0.112704,27.9877,0.113376
+793,32.4729,30.7949,28.0782,0.06976,0.981632,0.007744,0.004544,0.028672,0.096256,0.108576,26.6649,0.116096
+794,34.4132,29.0586,28.1088,0.069312,0.975168,0.007808,0.00448,0.043008,0.098112,0.104512,26.6938,0.11264
+795,34.1721,29.2637,29.3146,0.06976,0.97616,0.006848,0.00576,0.028288,0.096288,0.097024,27.9202,0.11424
+796,32.5141,30.7559,29.2776,0.069632,0.982624,0.00656,0.005376,0.027392,0.096256,0.097472,27.8782,0.114112
+797,32.7701,30.5156,28.1047,0.069632,0.98704,0.006336,0.006048,0.028224,0.095808,0.097312,26.7017,0.11264
+798,34.6954,28.8223,29.1581,0.06992,0.862624,0.007296,0.004832,0.028192,0.094848,0.098304,27.8794,0.112672
+799,32.8184,30.4707,27.954,0.06864,0.842944,0.006944,0.005632,0.027136,0.096256,0.097696,26.6942,0.114464
+800,34.448,29.0293,28.0841,0.069632,0.9232,0.006592,0.005408,0.02736,0.09584,0.09872,26.7428,0.114528
+801,34.3256,29.1328,30.2771,0.06896,0.917216,0.00688,0.01456,0.033856,0.09504,0.324928,28.7009,0.114784
+802,31.5446,31.7012,28.1831,0.069664,1.06349,0.006144,0.005856,0.026912,0.096256,0.10448,26.6916,0.118784
+803,34.4526,29.0254,27.9655,0.069408,0.850368,0.0064,0.006144,0.028256,0.096128,0.096832,26.6977,0.11424
+804,34.5946,28.9062,29.2109,0.071968,0.873696,0.006944,0.004096,0.028672,0.095296,0.096992,27.9206,0.11264
+805,33.0216,30.2832,28.0576,0.071584,0.881888,0.00704,0.005504,0.027264,0.096288,0.097536,26.7555,0.115072
+806,34.344,29.1172,27.9918,0.069632,0.864256,0.007552,0.004736,0.028416,0.094464,0.0976,26.7107,0.114432
+807,34.3601,29.1035,29.2886,0.06976,0.919584,0.007232,0.005024,0.028704,0.095424,0.097056,27.9511,0.114688
+808,33.0195,30.2852,28.0356,0.068064,0.906848,0.00656,0.005408,0.02736,0.095328,0.104992,26.7084,0.11264
+809,34.3624,29.1016,28.8481,0.067264,0.863744,0.006976,0.0056,0.028256,0.095168,0.113984,27.5524,0.114688
+810,33.4335,29.9102,29.2578,0.069504,0.866496,0.006144,0.00576,0.028096,0.094816,0.10032,27.9731,0.113536
+811,33.011,30.293,28.0105,0.069184,0.852096,0.006496,0.006048,0.028,0.094976,0.096256,26.7428,0.114688
+812,34.499,28.9863,28.0044,0.069408,0.852192,0.007808,0.00448,0.028672,0.096224,0.09632,26.7346,0.114688
+813,33.968,29.4395,29.2701,0.069632,0.868352,0.006144,0.006144,0.028448,0.095488,0.097248,27.9853,0.113408
+814,32.6781,30.6016,28.0471,0.083552,0.967392,0.006368,0.005504,0.027264,0.096256,0.097856,26.6487,0.114144
+815,34.5037,28.9824,27.9743,0.068224,0.861824,0.006528,0.006016,0.028032,0.094912,0.096288,26.6988,0.113664
+816,34.0743,29.3477,29.2928,0.06928,0.93616,0.017888,0.004864,0.028256,0.094784,0.098112,27.9288,0.114688
+817,33.2403,30.084,28.0836,0.070656,0.971296,0.006624,0.005984,0.028064,0.094976,0.09776,26.6942,0.114048
+818,33.9635,29.4434,28.1901,0.069632,1.00147,0.007712,0.004576,0.04096,0.096256,0.098304,26.7571,0.114112
+819,34.4735,29.0078,29.215,0.069888,0.876544,0.007712,0.004576,0.028672,0.094368,0.09728,27.9233,0.112672
+820,33.011,30.293,28.2915,0.069408,0.853856,0.006944,0.004096,0.028672,0.096128,0.097728,27.02,0.114688
+821,34.0493,29.3691,28.6967,0.06944,1.21043,0.043264,0.006144,0.03072,0.096256,0.458144,26.6687,0.113568
+822,33.7464,29.6328,29.2111,0.069696,0.860576,0.007264,0.004864,0.027968,0.095072,0.098304,27.9347,0.11264
+823,32.9472,30.3516,27.9001,0.069312,0.841408,0.006944,0.005632,0.02832,0.095168,0.102304,26.6377,0.113312
+824,34.2338,29.2109,28.0273,0.070016,0.919136,0.00656,0.005344,0.027424,0.095584,0.098976,26.6895,0.114688
+825,34.374,29.0918,29.1756,0.069632,0.851968,0.007808,0.005536,0.027648,0.101472,0.103296,27.8938,0.114464
+826,33.0856,30.2246,27.9981,0.069472,0.899488,0.008032,0.0056,0.02736,0.095264,0.096672,26.6818,0.114464
+827,34.5176,28.9707,28.0247,0.06928,0.862016,0.007008,0.005504,0.027296,0.095712,0.098016,26.7457,0.114208
+828,34.4526,29.0254,29.1976,0.07376,0.856032,0.00736,0.004896,0.028096,0.096032,0.097088,27.9204,0.113984
+829,32.3334,30.9277,29.475,0.069856,1.10182,0.008,0.005504,0.027456,0.103872,0.096864,27.9482,0.11344
+830,32.8289,30.4609,28.1175,0.068128,1.00746,0.006272,0.005632,0.029216,0.095328,0.0992,26.6936,0.11264
+831,33.5848,29.7754,29.4275,0.069632,1.11411,0.008032,0.016448,0.03008,0.09632,0.096928,27.8815,0.114432
+832,32.7743,30.5117,28.0724,0.069536,0.944256,0.006624,0.005376,0.027392,0.096256,0.097856,26.7105,0.114624
+833,33.7442,29.6348,29.2903,0.068352,0.92688,0.007008,0.005568,0.027328,0.095744,0.096544,27.9492,0.11376
+834,33.5452,29.8105,29.1556,0.069696,0.853152,0.006848,0.004448,0.028608,0.10416,0.096576,27.8794,0.11264
+835,32.7722,30.5137,28.1308,0.069632,1.01539,0.00656,0.005824,0.028096,0.095136,0.097824,26.6979,0.114464
+836,34.1766,29.2598,28.0732,0.069824,0.988608,0.006752,0.005216,0.041312,0.094784,0.097376,26.6536,0.115744
+837,34.2521,29.1953,29.2884,0.069632,0.948256,0.00768,0.004576,0.028672,0.09536,0.097184,27.9224,0.114656
+838,33.1113,30.2012,27.9306,0.069472,0.854176,0.007776,0.004512,0.028448,0.094432,0.098304,26.6588,0.114688
+839,34.5363,28.9551,28.0033,0.068608,0.915072,0.006528,0.005984,0.028,0.09504,0.097504,26.6719,0.114688
+840,33.3008,30.0293,29.23,0.076704,0.933088,0.006944,0.004096,0.028672,0.09424,0.108512,27.8651,0.11264
+841,30.8806,32.3828,31.4902,0.069824,3.12502,0.016224,0.00592,0.0272,0.096288,0.097344,27.9393,0.113088
+842,33.0088,30.2949,28.0082,0.06784,0.907072,0.007712,0.004576,0.028192,0.094496,0.10592,26.6796,0.112736
+843,32.8184,30.4707,29.4418,0.069632,1.14461,0.006368,0.006144,0.028256,0.094656,0.098304,27.8794,0.114464
+844,33.3181,30.0137,28.1319,0.069632,1.04714,0.006432,0.005664,0.027104,0.095552,0.09696,26.6691,0.1144
+845,34.9488,28.6133,29.2784,0.069248,0.966688,0.006656,0.00592,0.028064,0.09504,0.096256,27.8979,0.11264
+846,32.4359,30.8301,29.2842,0.068256,0.980896,0.01632,0.005344,0.027488,0.096256,0.098304,27.8774,0.11392
+847,33.0259,30.2793,28.1139,0.068608,0.9728,0.006144,0.006144,0.039936,0.095232,0.11168,26.6987,0.114688
+848,34.5502,28.9434,27.9205,0.068896,0.865088,0.007168,0.004928,0.02816,0.094912,0.096256,26.6404,0.11472
+849,34.0335,29.3828,29.3033,0.06816,0.966496,0.006272,0.00608,0.027968,0.103168,0.11264,27.8997,0.112832
+850,33.1049,30.207,27.9774,0.069632,0.918816,0.00688,0.004256,0.028512,0.095392,0.09712,26.6404,0.116384
+851,34.6602,28.8516,27.9688,0.06928,0.864768,0.007456,0.004832,0.028608,0.108608,0.097664,26.6733,0.114272
+852,34.3901,29.0781,29.2331,0.069664,0.88368,0.00704,0.004224,0.028544,0.095552,0.097088,27.9327,0.114656
+853,33.1284,30.1855,27.994,0.067968,0.888832,0.007712,0.004576,0.028672,0.095616,0.119392,26.6684,0.112896
+854,34.5946,28.9062,28.752,0.0688,0.850912,0.007616,0.004672,0.02848,0.09568,0.097024,27.4842,0.114656
+855,33.4816,29.8672,29.2905,0.069632,0.93792,0.006208,0.006144,0.028192,0.09472,0.09936,27.9336,0.114688
+856,31.9043,31.3438,28.1124,0.074048,0.988288,0.0144,0.004896,0.028096,0.094272,0.096768,26.6977,0.11392
+857,34.0177,29.3965,28.259,0.068416,1.12435,0.007968,0.005504,0.037536,0.096224,0.101856,26.7037,0.113504
+858,33.8423,29.5488,29.2188,0.069664,0.925344,0.006464,0.005472,0.036896,0.094848,0.100352,27.8667,0.11312
+859,34.0561,29.3633,28.0172,0.068128,0.90112,0.007968,0.005504,0.027488,0.096256,0.098304,26.6989,0.113472
+860,34.2406,29.2051,28.091,0.068224,0.964,0.006496,0.00432,0.029824,0.095104,0.110592,26.6994,0.112992
+861,34.1038,29.3223,29.2552,0.069056,0.917824,0.006784,0.005792,0.028192,0.10304,0.10016,27.9085,0.115904
+862,32.8732,30.4199,28.0591,0.0696,0.97488,0.007232,0.004832,0.028096,0.095008,0.097504,26.6678,0.114112
+863,34.4688,29.0117,28.043,0.069216,0.868768,0.006336,0.006144,0.028672,0.104448,0.098304,26.7469,0.114272
+864,34.0879,29.3359,29.3357,0.06928,1.06934,0.006304,0.005568,0.029248,0.09424,0.098112,27.8509,0.11264
+865,32.9557,30.3438,28.1006,0.069632,0.954368,0.0072,0.005088,0.042016,0.095232,0.098272,26.7141,0.114688
+866,34.0879,29.3359,29.278,0.069664,0.925696,0.007168,0.004928,0.028064,0.094976,0.098336,27.9347,0.114432
+867,32.9409,30.3574,29.2475,0.069632,0.869632,0.006912,0.005664,0.027136,0.095552,0.096928,27.9634,0.11264
+868,32.9854,30.3164,28.0003,0.069664,0.902752,0.006528,0.014336,0.030752,0.09552,0.09696,26.6687,0.11504
+869,33.7508,29.6289,29.3041,0.069408,0.992672,0.006976,0.005632,0.037056,0.09616,0.097696,27.8845,0.113952
+870,33.1864,30.1328,29.2012,0.06976,0.877184,0.007488,0.0048,0.028512,0.094368,0.097856,27.9085,0.112672
+871,33.1306,30.1836,28.0204,0.069088,0.88352,0.007264,0.005024,0.028416,0.096288,0.097568,26.7171,0.116128
+872,34.029,29.3867,28.0863,0.069152,0.946656,0.007232,0.004896,0.027968,0.095072,0.0976,26.7243,0.11344
+873,34.1652,29.2695,29.2083,0.069632,0.863936,0.006464,0.006048,0.02784,0.095168,0.098272,27.9265,0.114368
+874,33.1263,30.1875,27.9388,0.069664,0.855776,0.006432,0.00544,0.027328,0.094208,0.10448,26.6629,0.11264
+875,34.2796,29.1719,28.1473,0.071584,0.988928,0.006944,0.0056,0.02832,0.095104,0.097664,26.7385,0.114656
+876,34.4387,29.0371,29.1246,0.069536,0.858496,0.006592,0.004096,0.028672,0.095776,0.096736,27.8508,0.11392
+877,32.9324,30.3652,28.0211,0.068992,0.924608,0.006176,0.014336,0.032288,0.094688,0.097952,26.6674,0.114688
+878,33.7219,29.6543,29.0487,0.069344,1.1424,0.006816,0.004192,0.032416,0.101952,0.09856,27.4782,0.114848
+879,33.2424,30.082,29.2531,0.069504,0.940608,0.006144,0.006144,0.028256,0.094656,0.098112,27.896,0.113696
+880,33.0046,30.2988,28.0166,0.069632,0.918752,0.006944,0.004096,0.028672,0.096096,0.096416,26.6813,0.114688
+881,33.1735,30.1445,29.1983,0.069632,0.93184,0.007648,0.00464,0.028672,0.094368,0.098144,27.8505,0.112928
+882,33.8244,29.5645,29.2239,0.069632,0.96256,0.007488,0.0048,0.028448,0.094464,0.098272,27.8446,0.113664
+883,32.3437,30.918,28.1907,0.06944,1.12864,0.006144,0.006144,0.028544,0.10048,0.096256,26.6404,0.114688
+884,34.8703,28.6777,27.976,0.069408,0.906784,0.007168,0.004096,0.028672,0.09584,0.09664,26.6544,0.11296
+885,34.1698,29.2656,29.3511,0.068992,0.967328,0.007488,0.004768,0.028672,0.096256,0.098336,27.9634,0.115936
+886,32.8437,30.4473,28.051,0.069152,0.991712,0.007584,0.004704,0.028224,0.094656,0.097696,26.643,0.11424
+887,34.3601,29.1035,27.9595,0.069792,0.892128,0.006944,0.0056,0.027232,0.096192,0.097632,26.6492,0.114688
+888,34.2498,29.1973,29.2659,0.069664,0.987104,0.006144,0.005824,0.027072,0.09408,0.103776,27.8596,0.11264
+889,32.7219,30.5605,28.471,0.070016,0.978688,0.006496,0.006048,0.027872,0.095264,0.098112,27.0746,0.113888
+890,33.6798,29.6914,28.4415,0.068512,1.35571,0.006208,0.005696,0.030944,0.09456,0.098176,26.6681,0.1136
+891,34.3371,29.123,29.2757,0.069216,0.898752,0.007072,0.005504,0.027296,0.095776,0.096704,27.9613,0.11408
+892,32.8774,30.416,28.0765,0.068064,0.882016,0.006816,0.004128,0.02864,0.096256,0.098272,26.7608,0.13152
+893,33.9906,29.4199,29.1795,0.06976,0.872448,0.007296,0.004992,0.029952,0.095008,0.09808,27.8878,0.114176
+894,32.9133,30.3828,29.3455,0.069664,0.996576,0.006912,0.004224,0.030272,0.094528,0.097408,27.9332,0.112736
+895,32.1325,31.1211,28.3368,0.068352,1.23686,0.014464,0.006016,0.028064,0.094944,0.106496,26.667,0.114624
+896,34.0811,29.3418,28.2808,0.069504,1.19686,0.008064,0.004256,0.02864,0.095616,0.096896,26.6665,0.114464
+897,34.5479,28.9453,29.3192,0.06928,0.9928,0.006976,0.005568,0.038624,0.095072,0.098272,27.8993,0.113344
+898,32.8838,30.4102,28.1074,0.068192,0.96768,0.007136,0.004128,0.028672,0.09424,0.114176,26.7101,0.113088
+899,33.9838,29.4258,28.0437,0.069856,0.9032,0.006176,0.006144,0.042176,0.102624,0.107104,26.691,0.11536
+900,34.1174,29.3105,29.2618,0.069376,0.940192,0.006368,0.005632,0.0272,0.095168,0.096992,27.9074,0.11344
+901,32.724,30.5586,28.0625,0.069984,0.938432,0.007936,0.005504,0.02752,0.095872,0.110944,26.6933,0.113024
+902,33.713,29.6621,29.2023,0.06832,1.23021,0.01696,0.004128,0.038912,0.095392,0.09712,27.5373,0.113984
+903,32.943,30.3555,29.2896,0.068608,0.94416,0.007232,0.005056,0.028512,0.094368,0.098272,27.9304,0.112992
+904,32.9918,30.3105,28.0113,0.0696,0.872832,0.006624,0.005568,0.027328,0.096128,0.096256,26.7182,0.118784
+905,34.1789,29.2578,29.1904,0.068384,0.878464,0.007488,0.0048,0.028672,0.096256,0.098336,27.893,0.115008
+906,33.0003,30.3027,29.1901,0.069664,0.878272,0.006432,0.005568,0.0272,0.095296,0.097088,27.898,0.11264
+907,33.1006,30.2109,27.9736,0.069632,0.83968,0.006144,0.006144,0.028192,0.094688,0.097472,26.717,0.114688
+908,31.9321,31.3164,29.4216,0.068864,2.31277,0.006336,0.0056,0.027168,0.095744,0.09792,26.6924,0.114784
+909,33.9635,29.4434,29.3376,0.06928,1.0223,0.007904,0.013952,0.041632,0.096096,0.097536,27.8763,0.112672
+910,31.5038,31.7422,28.2473,0.069568,1.1439,0.00704,0.0056,0.027264,0.096256,0.102208,26.6815,0.113888
+911,36.1429,27.668,27.9613,0.068992,0.858752,0.007264,0.01936,0.028672,0.096288,0.098272,26.671,0.112704
+912,34.0584,29.3613,29.2435,0.070688,0.936096,0.006976,0.00416,0.030368,0.094496,0.096384,27.8915,0.1128
+913,33.0985,30.2129,29.2114,0.06848,0.889888,0.006976,0.005696,0.02816,0.095168,0.097664,27.9067,0.11264
+914,33.0878,30.2227,27.922,0.069632,0.83968,0.006144,0.005888,0.02816,0.10464,0.098848,26.6548,0.11424
+915,34.3256,29.1328,29.329,0.069632,0.935712,0.01456,0.006016,0.028064,0.096384,0.096864,27.9686,0.113152
+916,32.9091,30.3867,27.9835,0.069632,0.867328,0.007072,0.004192,0.028704,0.09808,0.097856,26.6892,0.121408
+917,34.1675,29.2676,29.2499,0.069824,0.888832,0.007296,0.015232,0.028032,0.094848,0.107744,27.9266,0.111488
+918,32.9303,30.3672,29.143,0.069664,0.853984,0.007488,0.0048,0.028128,0.094752,0.098208,27.8725,0.113504
+919,32.8121,30.4766,28.0577,0.069376,0.93008,0.007296,0.004992,0.028576,0.09568,0.096896,26.7114,0.113408
+920,34.1038,29.3223,28.116,0.068608,1.00355,0.00752,0.004768,0.028064,0.094816,0.096224,26.6977,0.11472
+921,34.397,29.0723,29.1826,0.068192,0.866304,0.007616,0.004672,0.028672,0.096096,0.099648,27.8984,0.11296
+922,33.0131,30.291,27.9612,0.069632,0.87968,0.007104,0.004096,0.028672,0.094208,0.098208,26.6651,0.114496
+923,34.4874,28.9961,28.0388,0.069632,0.888832,0.00752,0.004768,0.028672,0.096256,0.098048,26.7305,0.114624
+924,34.4179,29.0547,29.1825,0.068224,0.87648,0.007712,0.004544,0.028352,0.09568,0.097184,27.8917,0.11264
+925,33.1757,30.1426,29.0833,0.069056,0.854688,0.007392,0.004896,0.028672,0.095808,0.09792,27.8105,0.1144
+926,33.0942,30.2168,27.9699,0.069312,0.907424,0.006912,0.004224,0.028544,0.095968,0.096544,26.6465,0.114432
+927,34.1698,29.2656,29.1851,0.070944,0.884896,0.00672,0.005856,0.028,0.095168,0.097984,27.8813,0.114176
+928,32.9239,30.373,28.0821,0.073152,0.952704,0.006336,0.0056,0.029216,0.095328,0.096768,26.7084,0.114592
+929,34.6391,28.8691,29.2068,0.075872,0.851616,0.006624,0.005952,0.028064,0.096192,0.097152,27.9306,0.114688
+930,33.1284,30.1855,29.1553,0.069664,0.866272,0.007808,0.00448,0.028512,0.094368,0.09808,27.8729,0.113248
+931,33.1456,30.1699,27.9247,0.069952,0.866176,0.006272,0.006144,0.028032,0.094848,0.096256,26.6424,0.114592
+932,34.5153,28.9727,27.9122,0.069504,0.865696,0.00688,0.005184,0.027584,0.100352,0.097952,26.626,0.113088
+933,33.6909,29.6816,29.202,0.071072,0.851808,0.006912,0.0056,0.041504,0.096224,0.096288,27.9183,0.114304
+934,32.9876,30.3145,28.0125,0.069664,0.855552,0.006624,0.005728,0.02704,0.096,0.097824,26.7394,0.114656
+935,34.5409,28.9512,27.959,0.070016,0.847552,0.006592,0.005664,0.027104,0.106048,0.098368,26.6817,0.115936
+936,34.344,29.1172,29.2542,0.068128,0.87856,0.007808,0.00448,0.028672,0.098304,0.096256,27.9573,0.114688
+937,32.2195,31.0371,29.2225,0.069376,0.953984,0.007008,0.005504,0.03104,0.094592,0.106144,27.8405,0.114368
+938,32.5617,30.7109,28.1508,0.076768,1.03379,0.006592,0.005312,0.027456,0.094208,0.096256,26.6969,0.113504
+939,33.0749,30.2344,29.4236,0.069632,1.09507,0.006752,0.005792,0.031104,0.096256,0.104384,27.8999,0.114688
+940,33.9253,29.4766,28.0219,0.069408,1.00115,0.006752,0.005152,0.027616,0.095456,0.101152,26.6012,0.113984
+941,33.9208,29.4805,29.4259,0.068672,1.01568,0.00624,0.006048,0.028512,0.09568,0.097024,27.9957,0.112352
+942,33.5188,29.834,29.1716,0.069344,0.865824,0.006912,0.004096,0.028672,0.095936,0.096576,27.889,0.115264
+943,33.0088,30.2949,28.0048,0.069536,0.885312,0.007296,0.004992,0.028576,0.094304,0.09808,26.7037,0.112992
+944,34.5153,28.9727,27.9388,0.069632,0.882688,0.007648,0.00464,0.02848,0.094432,0.098272,26.6383,0.114688
+945,34.5246,28.9648,29.2353,0.069664,0.884512,0.006336,0.006144,0.028096,0.094784,0.096256,27.9368,0.112736
+946,32.6343,30.6426,28.2577,0.069472,1.15914,0.006336,0.005504,0.028288,0.096512,0.097024,26.681,0.114368
+947,34.4967,28.9883,27.9622,0.068448,0.874208,0.006432,0.00608,0.028192,0.094784,0.098272,26.6711,0.114688
+948,34.1584,29.2754,29.234,0.068352,0.938016,0.007712,0.004544,0.028192,0.094688,0.097312,27.8825,0.112672
+949,33.0387,30.2676,29.3014,0.068192,0.966656,0.00784,0.005504,0.027616,0.094208,0.09792,27.9207,0.112768
+950,32.8352,30.4551,27.998,0.070816,0.893792,0.00768,0.004608,0.028288,0.094592,0.097984,26.6855,0.114784
+951,33.6179,29.7461,29.4569,0.069184,1.1663,0.007808,0.005504,0.027648,0.096256,0.097696,27.8734,0.11312
+952,33.06,30.248,28.0555,0.06832,0.966624,0.006176,0.005824,0.028096,0.105184,0.096416,26.665,0.113856
+953,34.7095,28.8105,29.2352,0.069664,0.90112,0.007776,0.005504,0.027648,0.096256,0.098304,27.9142,0.114688
+954,32.768,30.5176,29.1455,0.069088,0.889792,0.008,0.004288,0.029696,0.095232,0.097984,27.838,0.113376
+955,33.0835,30.2266,27.9777,0.069664,0.862176,0.007904,0.005504,0.027552,0.095936,0.096576,26.6988,0.113568
+956,34.4665,29.0137,27.9716,0.069184,0.870848,0.006144,0.005728,0.028672,0.09872,0.097472,26.6822,0.11264
+957,34.3924,29.0762,29.2296,0.068064,0.88064,0.007488,0.0048,0.034368,0.094688,0.112256,27.9142,0.113024
+958,32.8964,30.3984,27.9302,0.069632,0.876064,0.006624,0.00544,0.027328,0.096064,0.097856,26.6369,0.11424
+959,34.5642,28.9316,27.9463,0.069664,0.843264,0.006624,0.005984,0.028,0.09504,0.101408,26.6816,0.114688
+960,33.9613,29.4453,29.3374,0.069632,1.0359,0.006528,0.005184,0.027584,0.108544,0.098304,27.869,0.116736
+961,32.7722,30.5137,29.2024,0.069504,0.897152,0.007744,0.004544,0.028672,0.095456,0.098272,27.8864,0.114688
+962,32.9282,30.3691,28.0767,0.080576,0.98304,0.007584,0.004704,0.028096,0.094784,0.096256,26.6688,0.112928
+963,34.0312,29.3848,29.26,0.067968,0.927008,0.016224,0.005888,0.030752,0.094912,0.097728,27.8966,0.12288
+964,33.1349,30.1797,28.0169,0.069696,0.888576,0.006752,0.005152,0.027616,0.096256,0.098304,26.71,0.114528
+965,34.0675,29.3535,28.0321,0.069632,0.940032,0.007392,0.004896,0.038912,0.095936,0.106848,26.6545,0.113984
+966,34.4341,29.041,29.1865,0.069408,0.883424,0.007552,0.004768,0.02816,0.094656,0.096288,27.8896,0.112704
+967,32.9112,30.3848,27.9364,0.069408,0.888896,0.006304,0.006144,0.028192,0.09648,0.097632,26.6302,0.113184
+968,34.5993,28.9023,27.9206,0.069856,0.851968,0.007328,0.004864,0.028096,0.09424,0.096928,26.6524,0.114912
+969,34.22,29.2227,29.2579,0.068256,0.88064,0.008064,0.005504,0.027392,0.095968,0.09664,27.9608,0.114592
+970,32.3212,30.9395,29.3861,0.069504,1.02208,0.007584,0.004704,0.045056,0.105952,0.111008,27.9062,0.114016
+971,32.8205,30.4688,28.0166,0.069632,0.96256,0.006144,0.006144,0.034816,0.096256,0.097824,26.6299,0.113408
+972,33.9433,29.4609,29.4989,0.069632,1.136,0.018976,0.005312,0.038912,0.095136,0.106144,27.9146,0.11424
+973,32.7198,30.5625,28.0153,0.06832,0.974848,0.007712,0.004576,0.028672,0.094208,0.097376,26.6267,0.11296
+974,34.0358,29.3809,28.3873,0.069632,0.980992,0.006144,0.005856,0.028064,0.095104,0.097664,26.9892,0.11472
+975,33.7954,29.5898,30.1242,0.069824,1.00966,0.008,0.005504,0.027456,0.09552,0.096768,28.6986,0.112864
+976,32.3907,30.873,27.9808,0.068576,0.874432,0.006336,0.005664,0.028128,0.095104,0.096224,26.6932,0.113152
+977,34.4781,29.0039,27.9487,0.069568,0.870464,0.007456,0.004832,0.028672,0.095744,0.098016,26.6609,0.113056
+978,34.5712,28.9258,29.1448,0.069792,0.856032,0.007328,0.004896,0.028032,0.096032,0.096704,27.8717,0.114304
+979,33.0878,30.2227,27.9567,0.068992,0.885376,0.007424,0.004864,0.028704,0.095808,0.096672,26.6544,0.114464
+980,34.5502,28.9434,28.0105,0.06912,0.868608,0.0064,0.005504,0.027264,0.094208,0.097504,26.7272,0.114688
+981,34.4433,29.0332,29.2127,0.069504,0.851616,0.006624,0.005984,0.028,0.09488,0.096416,27.936,0.12368
+982,32.8331,30.457,28.0248,0.069216,0.95888,0.007872,0.004416,0.028672,0.095584,0.096928,26.6496,0.113632
+983,33.4051,29.9355,29.2697,0.069632,0.962432,0.006336,0.00608,0.02816,0.09472,0.098176,27.8898,0.1144
+984,33.6289,29.7363,29.211,0.067936,0.889952,0.007072,0.004096,0.028672,0.094208,0.096256,27.9101,0.11264
+985,31.3226,31.9258,28.0576,0.069632,0.968192,0.006656,0.015808,0.031296,0.095456,0.097056,26.6601,0.113376
+986,36.069,27.7246,27.9733,0.069056,0.901696,0.008192,0.00528,0.027488,0.096256,0.096256,26.6547,0.1144
+987,34.3532,29.1094,29.2468,0.069344,0.9136,0.00624,0.006144,0.028256,0.094656,0.098272,27.9163,0.113952
+988,33.1972,30.123,27.901,0.069568,0.864288,0.006176,0.005792,0.028,0.096352,0.097184,26.6199,0.113728
+989,34.5223,28.9668,28.0004,0.069632,0.878176,0.00672,0.005824,0.026944,0.096064,0.096448,26.7059,0.114688
+990,34.3994,29.0703,29.1899,0.069376,0.882464,0.006624,0.005344,0.027424,0.096096,0.097856,27.8915,0.113216
+991,32.3151,30.9453,29.2741,0.069536,1.01325,0.006752,0.013632,0.029376,0.096256,0.102112,27.8306,0.112672
+992,33.0365,30.2695,27.9142,0.069632,0.897024,0.00768,0.004608,0.028512,0.095776,0.096928,26.5994,0.114688
+993,33.3225,30.0098,29.2882,0.069632,0.96848,0.006368,0.006144,0.027904,0.095008,0.102368,27.899,0.113216
+994,34.1995,29.2402,28.0253,0.069248,1.01264,0.008064,0.004192,0.028704,0.103552,0.09712,26.5871,0.114688
+995,33.0493,30.2578,29.3278,0.068224,1.04566,0.007008,0.005632,0.037152,0.094432,0.100352,27.8548,0.114464
+996,34.3693,29.0957,29.0771,0.069056,0.846624,0.006336,0.005696,0.026912,0.096256,0.096288,27.8159,0.114016
+997,32.789,30.498,28.0896,0.069536,0.9584,0.006304,0.006144,0.028256,0.094624,0.096256,26.7162,0.113888
+998,34.2109,29.2305,27.9331,0.068256,0.958464,0.00752,0.004768,0.028,0.094368,0.096768,26.5605,0.1144
+999,34.2292,29.2148,29.2251,0.079616,0.975104,0.00784,0.005504,0.027616,0.096256,0.098304,27.82,0.114784
+1000,33.011,30.293,28.0207,0.069632,0.937984,0.008032,0.004256,0.028576,0.094336,0.098272,26.6668,0.112832
+1001,34.3832,29.084,28.0064,0.069664,0.8888,0.007968,0.005504,0.027488,0.096256,0.098304,26.6977,0.114688
+1002,34.5526,28.9414,29.0632,0.069664,0.862176,0.007776,0.004512,0.028672,0.09552,0.096992,27.7852,0.11264
+1003,32.9494,30.3496,29.2664,0.068704,1.03005,0.007776,0.004512,0.030304,0.094656,0.09776,27.8198,0.112832
+1004,33.0749,30.2344,28.0556,0.069632,0.96848,0.007808,0.004704,0.028224,0.094688,0.097952,26.6705,0.1136
+1005,34.1698,29.2656,29.313,0.069632,1.01376,0.016384,0.006144,0.02832,0.094592,0.11056,27.861,0.11264
+1006,32.7554,30.5293,28.1007,0.075904,0.99648,0.00704,0.004096,0.028672,0.096256,0.096256,26.6815,0.11456
+1007,34.2063,29.2344,28.0146,0.069664,0.927616,0.00624,0.006144,0.028256,0.094624,0.098304,26.6704,0.113344
+1008,34.4086,29.0625,29.1676,0.069664,0.894944,0.00752,0.004768,0.028064,0.094816,0.09776,27.8566,0.11344
+1009,33.1821,30.1367,27.9678,0.06912,0.867072,0.00752,0.004768,0.028672,0.09536,0.096736,26.6857,0.1128
+1010,34.4595,29.0195,28.0105,0.069376,0.884,0.007072,0.004192,0.02864,0.095648,0.098112,26.7108,0.112672
+1011,34.448,29.0293,29.123,0.069856,0.880864,0.00736,0.004928,0.028672,0.095744,0.096768,27.8256,0.113248
+1012,33.0173,30.2871,27.9806,0.068512,0.90512,0.007264,0.004928,0.02672,0.095456,0.0968,26.6622,0.113568
+1013,34.6766,28.8379,29.1269,0.069696,0.857696,0.00672,0.006144,0.028224,0.094656,0.097504,27.8536,0.11264
+1014,33.1692,30.1484,29.1511,0.069664,0.856032,0.007328,0.00496,0.028096,0.096096,0.097024,27.8773,0.114528
+1015,32.0681,31.1836,27.9789,0.069632,0.878592,0.007648,0.00464,0.028672,0.095424,0.097088,26.6834,0.113824
+1016,31.2595,31.9902,28.3936,0.069664,0.926944,0.006912,0.004256,0.028512,0.096,0.096512,27.0515,0.11328
+1017,33.9635,29.4434,30.238,0.069344,1.03158,0.007136,0.005504,0.027296,0.110592,0.096256,28.7761,0.114144
+1018,31.1625,32.0898,28.1711,0.06864,1.12227,0.014336,0.005312,0.027456,0.09776,0.098624,26.6222,0.114528
+1019,34.618,28.8867,27.9462,0.069632,0.882272,0.00656,0.00608,0.028192,0.094752,0.097472,26.6453,0.115904
+1020,33.8893,29.5078,29.3907,0.069152,1.04291,0.006144,0.005792,0.038816,0.094592,0.097728,27.9221,0.11344
+1021,32.8374,30.4531,28.1396,0.069408,1.04483,0.007872,0.014656,0.03072,0.096256,0.104448,26.6579,0.113472
+1022,34.3233,29.1348,27.9496,0.068128,0.884512,0.0064,0.005664,0.027072,0.096256,0.098304,26.6498,0.113504
+1023,34.5526,28.9414,29.1581,0.070016,0.876768,0.006496,0.006016,0.028064,0.10112,0.096288,27.8599,0.113376
+1024,32.789,30.498,29.3794,0.068448,1.0711,0.01792,0.004608,0.02816,0.094816,0.098208,27.8825,0.113664
+1025,33.1649,30.1523,28.0685,0.068288,0.905216,0.007392,0.004896,0.028512,0.095648,0.099072,26.7466,0.112928
+1026,34.3786,29.0879,29.2188,0.069632,0.864256,0.00752,0.004768,0.02816,0.094912,0.098144,27.9384,0.112992
+1027,33.107,30.2051,27.9468,0.069216,0.869824,0.007104,0.005504,0.027296,0.096288,0.098208,26.6589,0.114528
+1028,34.4503,29.0273,27.9403,0.069632,0.888832,0.007552,0.004736,0.028288,0.09456,0.096288,26.6357,0.114688
+1029,34.3555,29.1074,30.4419,0.069184,0.909696,0.006656,0.005536,0.027232,0.096096,0.096416,29.1158,0.115328
+1030,31.6792,31.5664,27.9143,0.069312,0.897856,0.007392,0.004896,0.028384,0.094304,0.096448,26.6015,0.114272
+1031,34.4572,29.0215,28.0301,0.069216,0.948096,0.00672,0.00592,0.02816,0.094944,0.096352,26.6668,0.113824
+1032,34.3118,29.1445,29.1854,0.069632,0.907264,0.007488,0.0048,0.028256,0.095776,0.097152,27.8626,0.112448
+1033,33.1156,30.1973,27.9626,0.07168,0.890048,0.006976,0.0056,0.028256,0.095168,0.097632,26.653,0.114304
+1034,33.7397,29.6387,28.0843,0.069024,1.0079,0.006496,0.013504,0.031136,0.09584,0.097056,26.6497,0.1136
+1035,34.7944,28.7402,29.2842,0.069632,0.947936,0.006432,0.006112,0.02816,0.094784,0.09792,27.9187,0.114496
+1036,32.7974,30.4902,29.1492,0.0696,0.896096,0.007104,0.004096,0.028672,0.094208,0.096256,27.8405,0.112672
+1037,32.7638,30.5215,28.0255,0.06944,0.983584,0.006496,0.006048,0.028288,0.094688,0.097888,26.6244,0.114688
+1038,34.6813,28.834,29.1136,0.069536,0.872544,0.00736,0.004896,0.028064,0.096096,0.097056,27.8241,0.113888
+1039,32.8605,30.4316,27.8835,0.068928,0.866656,0.006496,0.006112,0.028032,0.09472,0.096096,26.6037,0.1128
+1040,34.1743,29.2617,28.1159,0.068576,1.01933,0.00672,0.014336,0.03184,0.096576,0.09856,26.6565,0.123488
+1041,34.0154,29.3984,29.1737,0.069664,0.884704,0.007584,0.004704,0.028672,0.096256,0.097376,27.8701,0.114592
+1042,33.0493,30.2578,27.9143,0.0696,0.876032,0.006752,0.005152,0.027616,0.095872,0.09664,26.622,0.114688
+1043,34.4456,29.0312,27.951,0.069664,0.884704,0.007968,0.005536,0.027456,0.095872,0.096384,26.6499,0.113536
+1044,34.6531,28.8574,29.1329,0.068416,0.8784,0.006304,0.0056,0.028416,0.095008,0.098176,27.8382,0.114432
+1045,33.1735,30.1445,27.9066,0.06976,0.867072,0.0072,0.005088,0.028672,0.094208,0.097504,26.6221,0.114976
+1046,34.5782,28.9199,27.9273,0.069728,0.866176,0.006976,0.004128,0.02864,0.095744,0.096768,26.6445,0.114656
+1047,34.3601,29.1035,29.1579,0.069824,0.882752,0.0064,0.006144,0.02816,0.09472,0.096256,27.861,0.11264
+1048,32.9176,30.3789,28.2355,0.069632,0.922912,0.00688,0.004096,0.028672,0.096128,0.097632,26.657,0.352576
+1049,33.9298,29.4727,28.8032,0.068192,0.861248,0.007104,0.005504,0.02736,0.09616,0.097952,27.5255,0.11424
+1050,33.1757,30.1426,29.1965,0.06944,0.862592,0.007264,0.00496,0.028224,0.09472,0.0976,27.919,0.11264
+1051,32.9748,30.3262,27.9255,0.068544,0.884224,0.006656,0.005888,0.028096,0.095104,0.09824,26.6257,0.113024
+1052,34.3855,29.082,29.202,0.07072,0.91232,0.007552,0.004736,0.028224,0.094656,0.096256,27.8733,0.114208
+1053,33.1606,30.1562,29.164,0.06928,0.885632,0.007296,0.00496,0.028672,0.095424,0.097056,27.8631,0.11264
+1054,32.2927,30.9668,28.0187,0.0696,0.931872,0.007392,0.004864,0.028192,0.094368,0.096608,26.6729,0.112864
+1055,34.7755,28.7559,28.0291,0.069216,0.983616,0.00784,0.005504,0.027616,0.09616,0.0976,26.6261,0.115456
+1056,34.2429,29.2031,29.2957,0.069184,0.995616,0.0064,0.005536,0.027232,0.095488,0.096672,27.8859,0.113664
+1057,32.9621,30.3379,28.0408,0.069664,0.961504,0.00704,0.005504,0.027392,0.095296,0.09664,26.6632,0.11456
+1058,34.3647,29.0996,28.0381,0.068544,0.938016,0.007648,0.00464,0.028192,0.094432,0.096512,26.6873,0.1128
+1059,34.0267,29.3887,29.2391,0.069632,0.944128,0.007552,0.004768,0.02864,0.095968,0.096544,27.8774,0.114528
+1060,32.7031,30.5781,28.029,0.069568,0.931936,0.007584,0.004672,0.028576,0.094336,0.098048,26.6811,0.113152
+1061,34.0019,29.4102,29.2403,0.06976,0.989056,0.007904,0.005504,0.028608,0.095232,0.096224,27.8344,0.113664
+1062,33.1434,30.1719,29.1978,0.069664,0.902848,0.006432,0.005472,0.027296,0.09616,0.096384,27.8794,0.114112
+1063,33.0536,30.2539,28.0212,0.069216,0.906176,0.007168,0.005088,0.028704,0.095968,0.097856,26.6976,0.113504
+1064,34.4897,28.9941,28.9801,0.06848,0.858048,0.006176,0.005728,0.028096,0.095232,0.097408,27.7062,0.114688
+1065,33.0856,30.2246,29.1874,0.06912,0.872288,0.007072,0.005504,0.027296,0.095936,0.096576,27.8979,0.115776
+1066,32.5121,30.7578,27.9285,0.06944,0.850752,0.007488,0.0048,0.028064,0.094944,0.098176,26.6606,0.114272
+1067,34.8798,28.6699,28.031,0.069632,0.888064,0.006912,0.0056,0.027168,0.096256,0.097696,26.7261,0.113536
+1068,34.5993,28.9023,29.148,0.068448,0.886784,0.007552,0.004736,0.028288,0.094464,0.096384,27.8487,0.112608
+1069,32.6614,30.6172,27.9719,0.073504,0.94816,0.006784,0.00576,0.02816,0.103328,0.097792,26.5876,0.120832
+1070,34.8513,28.6934,27.9449,0.069632,0.864288,0.007392,0.004864,0.028,0.09488,0.098208,26.663,0.114592
+1071,34.4804,29.002,29.1797,0.069152,0.875392,0.007776,0.004608,0.028576,0.096256,0.097568,27.8863,0.114112
+1072,33.0621,30.2461,29.2004,0.069632,0.88816,0.006816,0.00416,0.028512,0.094304,0.097952,27.8982,0.112672
+1073,32.7157,30.5664,28.188,0.069632,1.10182,0.008,0.005504,0.027456,0.095872,0.096608,26.667,0.116096
+1074,34.1652,29.2695,29.2321,0.068608,0.984864,0.006304,0.005664,0.027104,0.095648,0.096864,27.8339,0.113152
+1075,33.0003,30.3027,27.9696,0.0696,0.882528,0.006816,0.005728,0.028192,0.095104,0.096288,26.671,0.114304
+1076,34.2109,29.2305,29.2277,0.068256,0.921632,0.007712,0.004544,0.029888,0.09504,0.097952,27.8895,0.113216
+1077,33.0323,30.2734,29.2,0.0696,0.880672,0.007264,0.005024,0.028288,0.095776,0.097152,27.9019,0.114304
+1078,33.0451,30.2617,27.9702,0.070304,0.876544,0.00736,0.004864,0.028032,0.094912,0.097824,26.6777,0.112672
+1079,34.5759,28.9219,27.9148,0.068128,0.854016,0.00768,0.004608,0.028672,0.094208,0.096256,26.6483,0.11296
+1080,34.5759,28.9219,29.1641,0.068192,0.86016,0.006144,0.005856,0.028192,0.096096,0.098464,27.8863,0.114624
+1081,33.1306,30.1836,27.9552,0.069632,0.876544,0.007488,0.0048,0.028672,0.096192,0.09632,26.6623,0.113248
+1082,33.2943,30.0352,28.1725,0.069152,1.0472,0.007328,0.0152,0.03072,0.104448,0.106496,26.6787,0.113248
+1083,34.0697,29.3516,29.3823,0.069664,1.04166,0.00688,0.005664,0.027264,0.095872,0.096576,27.9244,0.114336
+1084,33.6665,29.7031,29.0901,0.07024,0.849056,0.00704,0.004128,0.02864,0.096256,0.096288,27.8241,0.114336
+1085,32.9854,30.3164,27.9472,0.069664,0.877536,0.00704,0.005536,0.02736,0.096256,0.097664,26.6529,0.113184
+1086,33.9838,29.4258,29.234,0.068448,0.918784,0.006912,0.004096,0.028672,0.094208,0.097728,27.9025,0.11264
+1087,32.5783,30.6953,28.184,0.069664,1.11616,0.007424,0.019104,0.028,0.105184,0.097536,26.6248,0.116128
+1088,34.4364,29.0391,28.3647,0.069408,0.893152,0.017856,0.004864,0.028064,0.094816,0.098112,27.044,0.114432
+1089,33.521,29.832,29.4462,0.071264,1.19651,0.007904,0.004384,0.028576,0.095552,0.096128,27.8332,0.11264
+1090,33.2424,30.082,27.9137,0.067712,0.920928,0.006784,0.00512,0.027648,0.096,0.098112,26.5786,0.112832
+1091,34.4132,29.0586,28.0951,0.070304,0.99536,0.007456,0.0048,0.028672,0.095776,0.096768,26.6812,0.114752
+1092,34.3394,29.1211,29.225,0.069632,0.89088,0.007776,0.004512,0.028608,0.095456,0.09712,27.9183,0.112672
+1093,32.8838,30.4102,27.904,0.069408,0.862432,0.00736,0.004928,0.028672,0.09424,0.09808,26.6253,0.113568
+1094,33.4204,29.9219,28.0879,0.06864,1.04051,0.007008,0.014336,0.028672,0.096,0.098144,26.6162,0.1184
+1095,34.1424,29.2891,29.2454,0.069152,0.91536,0.00672,0.005984,0.028032,0.095008,0.097728,27.9145,0.11296
+1096,32.1689,31.0859,29.2965,0.06976,1.03898,0.008,0.01424,0.03104,0.11008,0.109024,27.8029,0.112416
+1097,33.1006,30.2109,28.1006,0.069632,0.950272,0.007584,0.014944,0.033856,0.103168,0.09648,26.7079,0.116736
+1098,32.7366,30.5469,29.6694,0.069216,1.28246,0.016384,0.00528,0.027488,0.110336,0.110304,27.9345,0.11344
+1099,33.5035,29.8477,28.0554,0.069088,0.979904,0.007424,0.004896,0.028512,0.095552,0.097024,26.6589,0.114144
+1100,34.2063,29.2344,28.025,0.068352,0.945728,0.006592,0.005408,0.02736,0.096288,0.098272,26.6642,0.1128
+1101,34.5666,28.9297,30.4087,0.069632,0.903168,0.0072,0.005088,0.02848,0.095968,0.096736,29.0892,0.113184
+1102,31.7303,31.5156,27.9532,0.069664,0.915424,0.007904,0.004384,0.028608,0.094272,0.09776,26.6204,0.114688
+1103,34.2292,29.2148,27.9554,0.069184,0.916128,0.007264,0.005024,0.028672,0.096256,0.097664,26.6226,0.11264
+1104,34.2475,29.1992,29.2662,0.06976,1.0057,0.006144,0.005824,0.027968,0.093216,0.098272,27.8467,0.112704
+1105,32.8416,30.4492,28.7929,0.069632,0.933888,0.007648,0.00464,0.028704,0.095936,0.096544,27.052,0.50384
+1106,33.0024,30.3008,27.9552,0.068992,0.912,0.007264,0.004864,0.027968,0.094784,0.096544,26.6299,0.112896
+1107,34.9107,28.6445,29.319,0.069632,1.01366,0.00624,0.006144,0.028032,0.096064,0.097088,27.8875,0.114656
+1108,32.8163,30.4727,28.1577,0.069664,1.03626,0.007584,0.004704,0.02848,0.095424,0.09696,26.7042,0.114432
+1109,34.0788,29.3438,29.2838,0.069664,0.974816,0.006144,0.006144,0.028672,0.095968,0.096416,27.8929,0.113088
+1110,33.1092,30.2031,29.1052,0.069632,0.880384,0.0064,0.005568,0.0272,0.096256,0.098304,27.8057,0.115808
+1111,32.3437,30.918,28.0655,0.069632,0.991232,0.007456,0.004832,0.02864,0.09424,0.097952,26.6571,0.114432
+1112,34.9822,28.5859,28.0179,0.069632,0.987136,0.006304,0.00576,0.028064,0.096192,0.097184,26.6134,0.114272
+1113,34.2017,29.2383,29.2741,0.07072,0.988128,0.007488,0.004768,0.02864,0.095296,0.097056,27.8694,0.112608
+1114,33.1606,30.1562,27.9035,0.069312,0.858176,0.00688,0.004256,0.028512,0.09616,0.096352,26.6282,0.11568
+1115,34.4225,29.0508,27.9471,0.069568,0.900704,0.00672,0.005888,0.028096,0.09504,0.097696,26.6287,0.114688
+1116,34.3855,29.082,29.2291,0.069632,0.997376,0.007168,0.004864,0.028032,0.095104,0.098304,27.8154,0.113216
+1117,32.7743,30.5117,29.1402,0.069632,0.907008,0.0064,0.006144,0.036864,0.095296,0.105408,27.7975,0.115904
+1118,32.9854,30.3164,27.9316,0.068512,0.871744,0.006848,0.005408,0.02736,0.1024,0.097696,26.6385,0.113056
+1119,32.7408,30.543,29.44,0.069632,1.11725,0.007104,0.01536,0.027648,0.095776,0.096736,27.8969,0.113632
+1120,34.038,29.3789,27.98,0.067904,0.900992,0.006176,0.005792,0.028032,0.093152,0.096288,26.6682,0.113472
+1121,34.2842,29.168,29.3599,0.06944,1.0465,0.015008,0.005952,0.0272,0.096256,0.09776,27.8881,0.113664
+1122,32.9982,30.3047,29.199,0.068352,0.9584,0.007296,0.004864,0.038528,0.09472,0.097536,27.8164,0.112992
+1123,33.2511,30.0742,27.9638,0.06832,0.847872,0.007232,0.005024,0.02864,0.099616,0.097024,26.6956,0.114528
+1124,33.9343,29.4688,28.0945,0.068992,0.97296,0.006688,0.00528,0.027456,0.096256,0.098272,26.7056,0.112992
+1125,33.9973,29.4141,29.2557,0.069632,0.969792,0.00704,0.005504,0.027328,0.096256,0.097376,27.8697,0.113024
+1126,32.7701,30.5156,27.99,0.0696,0.9544,0.00768,0.004608,0.028448,0.094432,0.1024,26.6149,0.113504
+1127,34.2109,29.2305,28.0504,0.069504,0.9584,0.006336,0.006144,0.028288,0.094592,0.096448,26.6771,0.113664
+1128,34.3809,29.0859,29.1019,0.069024,0.856416,0.006464,0.005504,0.027264,0.096256,0.098304,27.8276,0.11504
+1129,32.943,30.3555,28.1208,0.070656,1.02093,0.00768,0.004608,0.028704,0.095584,0.096896,26.6813,0.1144
+1130,34.2934,29.1602,29.1185,0.069216,0.864704,0.007328,0.004864,0.027936,0.09504,0.097248,27.8395,0.112672
+1131,32.7157,30.5664,29.2755,0.069632,0.951904,0.00656,0.005984,0.042336,0.096224,0.098304,27.8885,0.116064
+1132,32.8795,30.4141,27.9833,0.069632,0.894976,0.007456,0.004832,0.02816,0.095968,0.097056,26.6622,0.123008
+1133,34.1106,29.3164,27.9267,0.069504,0.85024,0.00768,0.004576,0.028672,0.096256,0.096256,26.6604,0.11312
+1134,32.8669,30.4258,29.322,0.068416,1.02813,0.007488,0.004768,0.028096,0.0944,0.09664,27.8794,0.114688
+1135,33.0749,30.2344,28.1866,0.069632,1.08544,0.007424,0.004864,0.028608,0.09632,0.097472,26.6822,0.114688
+1136,35.1842,28.4219,27.9327,0.069568,0.888192,0.006848,0.00512,0.039936,0.096256,0.104416,26.6097,0.112672
+1137,34.1288,29.3008,29.2385,0.069632,0.9432,0.007072,0.005568,0.0272,0.096224,0.09632,27.8809,0.112416
+1138,33.2381,30.0859,27.9777,0.06912,0.846304,0.006176,0.005728,0.02816,0.096352,0.10528,26.707,0.113632
+1139,34.367,29.0977,27.9566,0.069664,0.841696,0.00816,0.005344,0.027456,0.09616,0.096352,26.6957,0.116128
+1140,34.0561,29.3633,29.4358,0.069536,1.09834,0.008,0.004288,0.028576,0.095872,0.104928,27.9122,0.11408
+1141,32.4256,30.8398,28.0333,0.069568,0.9888,0.00656,0.005504,0.027296,0.096,0.096512,26.6299,0.113152
+1142,34.0697,29.3516,28.7509,0.075808,0.92352,0.00624,0.00576,0.028224,0.095072,0.098304,27.4037,0.114208
+1143,33.7375,29.6406,29.1442,0.070752,0.833664,0.006944,0.005632,0.028224,0.109376,0.097536,27.8782,0.113856
+1144,32.9515,30.3477,27.9654,0.069632,0.843808,0.007296,0.00496,0.028256,0.094464,0.096448,26.7059,0.114688
+1145,34.4828,29,29.1363,0.069184,0.846592,0.007328,0.004992,0.028448,0.0944,0.102432,27.8692,0.11376
+1146,33.1263,30.1875,29.1177,0.069632,0.882688,0.007424,0.004864,0.028256,0.102816,0.096256,27.8118,0.113984
+1147,32.5907,30.6836,27.8866,0.069152,0.860256,0.006528,0.006016,0.028032,0.095008,0.104416,26.6015,0.115744
+1148,33.8311,29.5586,28.1281,0.082816,1.02989,0.0064,0.005504,0.027264,0.104448,0.0984,26.6601,0.11328
+1149,34.5946,28.9062,29.0986,0.06816,0.858112,0.007584,0.004704,0.028672,0.095232,0.09728,27.8241,0.114688
+1150,33.0237,30.2812,27.9577,0.069472,0.886816,0.00672,0.005344,0.027424,0.096096,0.096416,26.656,0.113408
+1151,34.5526,28.9414,27.8814,0.069472,0.848,0.006688,0.005952,0.028224,0.09488,0.097408,26.6166,0.114144
+1152,34.1698,29.2656,29.1349,0.069632,0.845824,0.007456,0.004832,0.028096,0.094784,0.096288,27.8753,0.112736
+1153,32.8416,30.4492,28.5655,0.070176,1.00765,0.007968,0.005504,0.027456,0.100256,0.096352,27.1372,0.112992
+1154,33.3333,30,28.3265,0.069568,1.18016,0.008384,0.005664,0.030816,0.09664,0.098304,26.7223,0.114688
+1155,34.1652,29.2695,29.1503,0.069632,0.841728,0.007488,0.0048,0.028672,0.09536,0.096768,27.8921,0.113792
+1156,32.7533,30.5312,28.0946,0.06976,0.958464,0.007776,0.004512,0.04096,0.09424,0.112096,26.6917,0.115104
+1157,34.5993,28.9023,29.1411,0.069312,0.836,0.006144,0.006144,0.028672,0.095456,0.097088,27.8893,0.112928
+1158,32.96,30.3398,29.1954,0.069536,0.837728,0.006144,0.00576,0.027008,0.098304,0.098176,27.9391,0.113664
+1159,32.724,30.5586,27.9757,0.072928,0.90192,0.007424,0.004864,0.028704,0.096224,0.097568,26.6472,0.118816
+1160,34.1333,29.2969,27.9958,0.079424,0.97312,0.006272,0.005632,0.03712,0.095584,0.098848,26.5855,0.114304
+1161,34.2842,29.168,29.1977,0.069216,0.957216,0.007264,0.005024,0.02864,0.096192,0.097728,27.8227,0.113728
+1162,32.7785,30.5078,28.153,0.069504,1.03181,0.006656,0.005376,0.04096,0.094432,0.10704,26.6834,0.113856
+1163,34.2612,29.1875,28.0815,0.06976,0.992544,0.006752,0.006144,0.028224,0.108992,0.098144,26.6564,0.114592
+1164,34.1926,29.2461,29.2191,0.069184,0.965536,0.006144,0.006144,0.028576,0.094336,0.098208,27.8365,0.114496
+1165,32.6156,30.6602,28.1164,0.070848,0.987968,0.006144,0.006144,0.028416,0.104576,0.098144,26.698,0.116128
+1166,34.6367,28.8711,28.966,0.069536,0.842176,0.01712,0.005056,0.034816,0.094208,0.335872,27.4548,0.11248
+1167,33.2813,30.0469,29.1353,0.070112,0.84992,0.006144,0.006144,0.028288,0.094592,0.1024,27.863,0.114688
+1168,32.8795,30.4141,27.967,0.069664,0.93984,0.006304,0.005568,0.02736,0.095712,0.09664,26.6116,0.114368
+1169,34.2612,29.1875,27.9783,0.069376,0.980928,0.007008,0.005632,0.027136,0.108544,0.096288,26.5703,0.113024
+1170,34.3348,29.125,30.2387,0.068736,1.12934,0.007616,0.004672,0.028544,0.096,0.098208,28.6924,0.113216
+1171,31.964,31.2852,27.9584,0.069632,0.874496,0.00736,0.004928,0.028544,0.09552,0.097024,26.663,0.11792
+1172,34.1652,29.2695,28.0324,0.069664,0.94,0.007968,0.00432,0.02848,0.0944,0.097888,26.6748,0.11488
+1173,32.9684,30.332,29.318,0.068512,1.09162,0.00736,0.004928,0.02864,0.095296,0.097184,27.8098,0.114688
+1174,34.1151,29.3125,27.97,0.069888,0.938144,0.006144,0.005792,0.027136,0.095872,0.097728,26.6156,0.113664
+1175,34.344,29.1172,27.9675,0.069632,0.91328,0.006272,0.006144,0.028192,0.095712,0.105024,26.6296,0.113632
+1176,33.7998,29.5859,29.2577,0.069632,0.925376,0.006464,0.005728,0.02704,0.095296,0.09712,27.9184,0.11264
+1177,32.8669,30.4258,29.1999,0.069312,0.955104,0.007904,0.005504,0.02752,0.09584,0.096672,27.8281,0.113952
+1178,32.8079,30.4805,27.971,0.069408,0.954048,0.00672,0.005248,0.027488,0.096096,0.096448,26.6014,0.114144
+1179,34.3947,29.0742,29.2499,0.069952,0.959552,0.00704,0.005536,0.039584,0.095232,0.096608,27.8637,0.11264
+1180,32.8711,30.4219,27.9476,0.069248,0.88976,0.00624,0.005792,0.028288,0.105088,0.1024,26.6273,0.11344
+1181,34.5946,28.9062,27.931,0.069024,0.842688,0.008032,0.005536,0.027392,0.106528,0.097536,26.6596,0.11472
+1182,34.4317,29.043,30.3658,0.069216,0.930304,0.007264,0.00496,0.028032,0.094688,0.103744,29.0144,0.113152
+1183,31.8765,31.3711,27.9572,0.068288,0.83968,0.006144,0.006144,0.028128,0.10096,0.09824,26.6957,0.113888
+1184,34.22,29.2227,27.9132,0.074752,0.854016,0.00752,0.004768,0.028256,0.094624,0.097984,26.6364,0.114848
+1185,32.8416,30.4492,29.4433,0.069376,1.18726,0.017216,0.005952,0.028832,0.09568,0.096896,27.828,0.114112
+1186,33.011,30.293,28.2207,0.069504,1.13398,0.00688,0.004096,0.032768,0.094208,0.096288,26.669,0.113952
+1187,34.9536,28.6094,27.8874,0.069184,0.864096,0.006752,0.005952,0.028864,0.096256,0.10224,26.6008,0.113248
+1188,34.6414,28.8672,29.0918,0.069792,0.8544,0.006336,0.005664,0.027104,0.106496,0.097536,27.8106,0.113888
+1189,32.8838,30.4102,29.0877,0.06944,0.93408,0.006144,0.006048,0.028096,0.09488,0.098304,27.3956,0.455104
+1190,32.9812,30.3203,27.983,0.06928,0.90352,0.007328,0.004864,0.028096,0.102144,0.097184,26.6568,0.113824
+1191,34.321,29.1367,29.2415,0.070784,0.973696,0.00736,0.004928,0.028576,0.09552,0.09648,27.8512,0.11296
+1192,32.3437,30.918,28.1323,0.069856,1.02886,0.01632,0.005312,0.038976,0.09504,0.09808,26.6652,0.114688
+1193,33.1735,30.1445,28.1602,0.068448,1.00486,0.006848,0.005536,0.027232,0.095616,0.105088,26.7223,0.124256
+1194,34.9345,28.625,30.3255,0.068352,1.21443,0.007776,0.004512,0.028416,0.096512,0.1144,28.6783,0.112736
+1195,32.1003,31.1523,28.0764,0.069408,1.00154,0.006624,0.005984,0.028192,0.094848,0.11264,26.6339,0.1232
+1196,33.8714,29.5234,28.2828,0.069632,1.21242,0.007872,0.004416,0.028384,0.094528,0.09776,26.6544,0.11344
+1197,32.6739,30.6055,29.3252,0.068384,0.997344,0.007424,0.004864,0.032768,0.106496,0.098304,27.8948,0.114848
+1198,32.8626,30.4297,28.126,0.069632,1.08422,0.016384,0.005472,0.027296,0.095712,0.09888,26.6137,0.114624
+1199,35.6894,28.0195,28.0226,0.069632,0.950272,0.007488,0.0048,0.028672,0.096,0.096512,26.6547,0.114528
+1200,34.2521,29.1953,29.1123,0.069312,0.928064,0.006144,0.00576,0.028544,0.094592,0.096416,27.7708,0.11264
+1201,33.29,30.0391,29.0883,0.07008,0.858208,0.006624,0.005984,0.028032,0.108736,0.098208,27.7982,0.114176
+1202,33.0451,30.2617,27.9163,0.069632,0.888832,0.007904,0.004384,0.02848,0.095584,0.097024,26.6098,0.114624
+1203,34.0245,29.3906,29.2313,0.069792,0.934528,0.007264,0.021408,0.028224,0.09456,0.096384,27.8669,0.112256
+1204,32.8753,30.418,27.9791,0.069632,0.8704,0.007616,0.004672,0.028384,0.09552,0.100896,26.6875,0.114464
+1205,34.2934,29.1602,28.0207,0.069632,0.933248,0.006784,0.005792,0.028192,0.09504,0.097888,26.6695,0.114688
+1206,34.0471,29.3711,29.1094,0.069408,0.917792,0.008128,0.004096,0.028672,0.095328,0.097184,27.775,0.113824
+1207,33.1821,30.1367,28.0145,0.0696,0.912992,0.006592,0.004096,0.028672,0.095584,0.096928,26.6752,0.124832
+1208,33.6179,29.7461,28.0806,0.069664,0.986592,0.00704,0.004224,0.028672,0.095648,0.096864,26.6768,0.115104
+1209,34.7072,28.8125,29.0956,0.0696,0.868384,0.008064,0.005504,0.027392,0.09568,0.096832,27.8109,0.113248
+1210,33.0365,30.2695,27.9002,0.07808,0.8784,0.006336,0.005568,0.0272,0.095712,0.102368,26.5929,0.113568
+1211,34.5946,28.9062,27.9245,0.069472,0.85968,0.006784,0.005728,0.028224,0.106912,0.095904,26.6386,0.113216
+1212,34.5339,28.957,29.111,0.068288,0.845696,0.006272,0.005696,0.028288,0.096064,0.09728,27.8487,0.114688
+1213,32.926,30.3711,28.2777,0.068576,0.90112,0.006112,0.00608,0.028256,0.094688,0.098272,26.962,0.11264
+1214,33.0323,30.2734,28.5635,0.073696,1.56269,0.007648,0.00464,0.028256,0.095712,0.096288,26.5812,0.11328
+1215,34.1242,29.3047,29.1961,0.068128,0.990784,0.00656,0.006144,0.028672,0.096256,0.09744,27.7881,0.113952
+1216,33.1778,30.1406,27.9685,0.070816,0.958432,0.007008,0.0056,0.0272,0.105696,0.098656,26.5814,0.113664
+1217,34.3164,29.1406,28.3809,0.069664,0.911328,0.007424,0.004864,0.028672,0.095904,0.10208,27.0466,0.1144
+1218,33.7553,29.625,29.0894,0.067904,0.869728,0.006528,0.005408,0.02736,0.09568,0.096832,27.807,0.113024
+1219,33.1177,30.1953,27.8874,0.069152,0.87696,0.006528,0.00608,0.028032,0.094944,0.098176,26.5932,0.114368
+1220,34.6836,28.832,27.8935,0.0696,0.853536,0.006656,0.005248,0.02752,0.095328,0.10128,26.6199,0.114464
+1221,34.0607,29.3594,29.34,0.069696,1.05501,0.016384,0.006144,0.032768,0.096256,0.106176,27.8446,0.112992
+1222,32.3232,30.9375,28.259,0.06816,1.2224,0.0064,0.005568,0.027264,0.09536,0.1048,26.6162,0.112864
+1223,33.9208,29.4805,28.184,0.06992,1.09158,0.006144,0.006144,0.02832,0.110944,0.097728,26.6585,0.11472
+1224,34.2017,29.2383,29.2291,0.069632,0.97424,0.006752,0.00512,0.027648,0.095776,0.108384,27.8284,0.11312
+1225,32.7743,30.5117,29.2844,0.069632,0.917536,0.007296,0.00496,0.028384,0.094496,0.096288,27.9529,0.112896
+1226,33.1477,30.168,27.8758,0.069984,0.851616,0.006912,0.004096,0.028672,0.095488,0.096992,26.607,0.115008
+1227,34.4967,28.9883,29.2126,0.069632,0.90112,0.007584,0.004704,0.028672,0.095584,0.096928,27.8948,0.113632
+1228,32.7324,30.5508,28.127,0.069568,1.0937,0.008192,0.014336,0.028704,0.094176,0.098144,26.6057,0.114432
+1229,34.6461,28.8633,29.0815,0.069664,0.851936,0.006144,0.006144,0.028032,0.094848,0.096256,27.8159,0.112576
+1230,33.1735,30.1445,29.1062,0.071264,0.891232,0.006208,0.005792,0.028256,0.094976,0.096416,27.7994,0.112672
+1231,33.1177,30.1953,27.8999,0.069664,0.867392,0.007072,0.006112,0.031968,0.09504,0.097472,26.6105,0.114688
+1232,34.5153,28.9727,27.883,0.069632,0.85552,0.006688,0.00528,0.027488,0.095552,0.103136,26.6053,0.1144
+1233,34.4688,29.0117,29.1018,0.069536,0.850016,0.007904,0.005504,0.027552,0.095232,0.101376,27.82,0.12464
+1234,33.0878,30.2227,28.0179,0.069632,0.964608,0.006144,0.00576,0.028096,0.09504,0.098016,26.6362,0.114432
+1235,34.106,29.3203,28.0727,0.069696,1.03072,0.022368,0.005952,0.026976,0.096256,0.098016,26.6079,0.114848
+1236,34.1106,29.3164,29.1471,0.069376,0.915712,0.00752,0.004768,0.028128,0.094752,0.098304,27.8159,0.11264
+1237,33.2295,30.0938,28.2325,0.068544,0.849856,0.007936,0.005536,0.027456,0.096256,0.098304,26.963,0.115648
+1238,34.106,29.3203,28.8052,0.069632,0.868352,0.007552,0.004736,0.028672,0.094208,0.098304,27.521,0.112736
+1239,33.1907,30.1289,29.1755,0.069088,0.913888,0.00656,0.006016,0.028192,0.094816,0.098336,27.8446,0.114048
+1240,33.0493,30.2578,27.8939,0.068544,0.883904,0.006912,0.004224,0.028544,0.09584,0.096672,26.5953,0.11392
+1241,34.4967,28.9883,29.1138,0.069952,0.890944,0.0072,0.005088,0.02832,0.09456,0.097888,27.806,0.113792
+1242,32.9515,30.3477,29.1319,0.068832,0.89168,0.007616,0.004672,0.028192,0.09472,0.104384,27.818,0.113792
+1243,31.9043,31.3438,28.2196,0.068128,1.16122,0.007584,0.004704,0.028672,0.105856,0.096928,26.6334,0.113056
+1244,33.0195,30.2852,28.1068,0.070816,1.07606,0.018432,0.006144,0.036864,0.104,0.098016,26.5817,0.114688
+1245,35.9652,27.8047,29.2332,0.0696,0.990496,0.006912,0.0056,0.027168,0.095936,0.096608,27.8274,0.11344
+1246,32.9472,30.3516,27.8159,0.070816,0.856736,0.006336,0.005728,0.028864,0.094528,0.097664,26.5406,0.114688
+1247,34.298,29.1562,27.9899,0.069664,0.933856,0.007424,0.004864,0.028672,0.095584,0.09696,26.6383,0.114528
+1248,34.3809,29.0859,29.1125,0.069696,0.86832,0.006176,0.005824,0.02816,0.095072,0.097824,27.8287,0.112736
+1249,32.8247,30.4648,29.2722,0.069696,0.940128,0.007456,0.004832,0.028576,0.096,0.096608,27.9142,0.114688
+1250,32.8458,30.4453,28.031,0.069632,0.969984,0.006912,0.004224,0.044192,0.096992,0.110592,26.6158,0.112672
+1251,34.344,29.1172,29.2084,0.069664,0.901664,0.00624,0.006144,0.028416,0.102656,0.097408,27.866,0.130208
+1252,32.926,30.3711,27.8924,0.069312,0.856384,0.006752,0.005952,0.028192,0.096128,0.097056,26.6191,0.113472
+1253,33.849,29.543,29.6141,0.06944,1.30886,0.00736,0.004928,0.028512,0.094368,0.096256,27.8928,0.111552
+1254,32.9515,30.3477,29.3093,0.075744,1.00813,0.006592,0.014336,0.028672,0.095424,0.097088,27.8692,0.114176
+1255,33.0707,30.2383,28.0126,0.07488,0.983744,0.006336,0.006144,0.027968,0.104416,0.096992,26.5994,0.112736
+1256,34.6696,28.8438,27.9127,0.069568,0.854624,0.006144,0.00592,0.028,0.094528,0.105056,26.6342,0.114688
+1257,33.8222,29.5664,29.3253,0.069632,1.05379,0.007008,0.0144,0.032096,0.101024,0.109728,27.825,0.11264
+1258,32.943,30.3555,28.1419,0.069952,1.08918,0.006752,0.005216,0.027552,0.095456,0.096544,26.636,0.115168
+1259,34.726,28.7969,27.8876,0.069728,0.868224,0.006176,0.00608,0.027904,0.09504,0.098144,26.603,0.113344
+1260,34.3486,29.1133,29.1258,0.069376,0.903232,0.006336,0.006144,0.028384,0.095904,0.097952,27.8047,0.113824
+1261,33.1263,30.1875,27.9676,0.06848,0.899072,0.007456,0.004832,0.028672,0.097664,0.096896,26.6506,0.11392
+1262,34.3716,29.0938,28.738,0.067168,0.852384,0.006592,0.005312,0.027456,0.096128,0.096416,27.4737,0.112864
+1263,33.4947,29.8555,29.1357,0.06848,0.917472,0.006176,0.006144,0.02816,0.104032,0.098816,27.7918,0.114688
+1264,32.8838,30.4102,27.8591,0.069696,0.860256,0.007296,0.004672,0.028608,0.094592,0.096256,26.5851,0.112672
+1265,34.6789,28.8359,29.0864,0.068512,0.85728,0.006496,0.004576,0.028672,0.096256,0.097888,27.8113,0.115392
+1266,33.29,30.0391,29.0876,0.069024,0.846624,0.007424,0.004864,0.028128,0.106848,0.09648,27.8151,0.11312
+1267,32.8331,30.457,27.8504,0.069664,0.864,0.006368,0.006144,0.028096,0.094816,0.096224,26.5706,0.11456
+1268,33.0792,30.2305,27.9167,0.068256,0.859616,0.006656,0.005248,0.02752,0.095232,0.097152,26.6437,0.113312
+1269,35.7592,27.9648,29.2778,0.069568,0.988608,0.006784,0.00576,0.02864,0.096416,0.097792,27.87,0.114304
+1270,33.2122,30.1094,27.8821,0.068224,0.837664,0.007264,0.004928,0.028224,0.110976,0.097472,26.6127,0.114688
+1271,33.9388,29.4648,28.0901,0.069696,1.07984,0.007744,0.004512,0.028672,0.095616,0.09664,26.5934,0.114016
+1272,34.1607,29.2734,29.1779,0.06864,0.948384,0.007008,0.004128,0.02864,0.095776,0.09616,27.816,0.113184
+1273,33.3811,29.957,27.9396,0.070656,0.853856,0.006304,0.006144,0.028032,0.094848,0.098304,26.6665,0.114944
+1274,34.0879,29.3359,29.1276,0.068544,0.864256,0.007392,0.004896,0.028064,0.094816,0.096224,27.836,0.127424
+1275,32.8542,30.4375,29.0447,0.069632,0.864224,0.006176,0.00576,0.028032,0.095232,0.096256,27.7668,0.11264
+1276,33.0878,30.2227,27.9174,0.069632,0.888832,0.007744,0.004544,0.028448,0.095488,0.103392,26.6035,0.115808
+1277,34.5246,28.9648,27.9186,0.069632,0.84608,0.00768,0.004608,0.028704,0.096096,0.097856,26.6532,0.114688
+1278,34.4317,29.043,29.174,0.068256,0.974656,0.006144,0.00576,0.028192,0.109408,0.0976,27.7707,0.113344
+1279,33.1649,30.1523,27.9286,0.069664,0.876064,0.006592,0.005952,0.027872,0.109568,0.0976,26.6224,0.112864
+1280,34.4503,29.0273,27.9492,0.068928,0.911936,0.006432,0.005792,0.028096,0.095168,0.098272,26.621,0.113568
+1281,34.5293,28.9609,29.1961,0.070784,0.895872,0.00768,0.004608,0.028672,0.095808,0.096704,27.8815,0.114528
+1282,32.7743,30.5117,28.0146,0.069248,0.954624,0.006304,0.013856,0.0312,0.096064,0.096448,26.6316,0.115296
+1283,34.5293,28.9609,29.136,0.070656,0.84224,0.006656,0.00592,0.028096,0.095008,0.096256,27.8788,0.112352
+1284,33.0024,30.3008,29.0317,0.069632,0.866336,0.00752,0.004736,0.028096,0.094784,0.098144,27.7485,0.113984
+1285,32.6239,30.6523,27.9665,0.068576,0.990496,0.014112,0.005056,0.040544,0.094656,0.098112,26.5421,0.112832
+1286,34.3855,29.082,27.9139,0.069216,0.887616,0.007648,0.00464,0.028256,0.094624,0.096256,26.6097,0.115968
+1287,33.5386,29.8164,30.3148,0.069152,1.15741,0.006624,0.020096,0.031104,0.096256,0.108096,28.7114,0.114688
+1288,32.0441,31.207,27.863,0.069504,0.857504,0.00688,0.004224,0.028544,0.096192,0.097664,26.5878,0.114656
+1289,34.5013,28.9844,27.8734,0.068384,0.868352,0.007552,0.004736,0.028672,0.09424,0.097856,26.5894,0.114208
+1290,32.8711,30.4219,29.7772,0.069184,1.59382,0.007872,0.004416,0.028352,0.09632,0.09648,27.7668,0.113952
+1291,33.5826,29.7773,28.0412,0.068512,0.970656,0.007264,0.005024,0.04,0.095168,0.09744,26.6433,0.113856
+1292,34.2383,29.207,28.0044,0.069664,0.954336,0.00784,0.004448,0.04096,0.095424,0.097088,26.6209,0.113664
+1293,34.0743,29.3477,29.1433,0.069792,0.929504,0.006528,0.006112,0.028096,0.09472,0.096352,27.7996,0.11264
+1294,33.29,30.0391,29.1418,0.074752,0.89472,0.0064,0.005536,0.027232,0.096256,0.098304,27.8241,0.114432
+1295,33.0578,30.25,28.0039,0.069632,0.965952,0.006848,0.005728,0.02832,0.094976,0.09776,26.6184,0.116256
+1296,34.3578,29.1055,29.2005,0.06912,0.954784,0.0064,0.005504,0.027264,0.095456,0.097056,27.8323,0.11264
+1297,32.7995,30.4883,28.0439,0.06816,1.00554,0.016032,0.00592,0.037472,0.09728,0.097312,26.6035,0.112672
+1298,32.8542,30.4375,29.2844,0.069632,1.10387,0.00784,0.013664,0.027648,0.095584,0.096928,27.7563,0.11296
+1299,34.2796,29.1719,29.1389,0.069536,0.899168,0.007712,0.004608,0.02864,0.096256,0.097792,27.8225,0.112768
+1300,33.2166,30.1055,27.9346,0.069504,0.854176,0.007936,0.00432,0.028672,0.095392,0.09712,26.6643,0.113152
+1301,34.2612,29.1875,27.9842,0.06992,0.875616,0.007072,0.005504,0.027296,0.096256,0.11264,26.6732,0.116736
+1302,34.147,29.2852,29.1742,0.069568,0.899552,0.007968,0.004352,0.02864,0.094208,0.098016,27.8587,0.113216
+1303,32.7659,30.5195,27.9439,0.069632,0.919552,0.007872,0.005504,0.027584,0.106496,0.1096,26.583,0.114656
+1304,34.5852,28.9141,27.8743,0.069184,0.852416,0.006144,0.005952,0.028064,0.0984,0.102976,26.5974,0.113824
+1305,34.4595,29.0195,29.1253,0.069504,0.917952,0.00656,0.006016,0.028192,0.096192,0.096928,27.7811,0.12288
+1306,33.0237,30.2812,29.1389,0.069632,0.884096,0.006784,0.00512,0.031744,0.09536,0.105344,27.8275,0.113376
+1307,32.4256,30.8398,28.166,0.076896,1.06326,0.00672,0.005824,0.026944,0.095328,0.09712,26.6794,0.11456
+1308,34.4132,29.0586,29.2742,0.074496,0.978272,0.006784,0.015936,0.031104,0.096064,0.110048,27.8475,0.114048
+1309,33.152,30.1641,27.8246,0.06992,0.854176,0.007456,0.004832,0.028672,0.100096,0.098368,26.5464,0.114688
+1310,34.5806,28.918,28.6743,0.069184,0.942784,0.007776,0.004512,0.028416,0.094464,0.098336,27.009,0.41984
+1311,33.3203,30.0117,29.2349,0.071616,0.95648,0.007552,0.004768,0.02864,0.094208,0.110624,27.8357,0.125312
+1312,32.8795,30.4141,27.8628,0.069312,0.87232,0.00688,0.004224,0.028544,0.095296,0.097152,26.5749,0.114208
+1313,34.5432,28.9492,27.9285,0.069376,0.88704,0.006144,0.006144,0.028288,0.094592,0.097984,26.6243,0.114592
+1314,34.5246,28.9648,29.0304,0.069632,0.870144,0.0064,0.005504,0.027264,0.096256,0.096256,27.7463,0.11264
+1315,33.1349,30.1797,27.9433,0.068384,0.890848,0.007648,0.00464,0.028672,0.096256,0.098048,26.6345,0.114304
+1316,34.3348,29.125,27.969,0.071136,1.00611,0.00736,0.004928,0.028672,0.09536,0.096928,26.5423,0.116192
+1317,34.4179,29.0547,29.1867,0.068192,0.915136,0.014656,0.005856,0.02816,0.095008,0.098304,27.8467,0.114688
+1318,32.7743,30.5117,29.1104,0.069632,0.962144,0.017888,0.004896,0.028224,0.094432,0.09664,27.7252,0.111392
+1319,32.943,30.3555,27.9517,0.069856,0.956832,0.007456,0.004832,0.028672,0.095488,0.10112,26.5723,0.115232
+1320,34.3256,29.1328,29.1856,0.0696,0.950496,0.008064,0.004224,0.02864,0.095424,0.09712,27.818,0.114048
+1321,32.9769,30.3242,27.9526,0.069632,0.948224,0.007712,0.004576,0.028672,0.094368,0.097856,26.5874,0.114176
+1322,34.3809,29.0859,29.0963,0.068064,0.88256,0.00752,0.0048,0.028448,0.094432,0.097312,27.7964,0.116704
+1323,33.2684,30.0586,29.1683,0.069856,0.849504,0.006976,0.005568,0.027232,0.108352,0.096448,27.8914,0.11296
+1324,33.0024,30.3008,27.9117,0.069632,0.904352,0.007008,0.004128,0.02864,0.096032,0.096544,26.5912,0.114176
+1325,34.4595,29.0195,27.8118,0.069632,0.878112,0.006624,0.006016,0.028064,0.094944,0.096256,26.5173,0.11488
+1326,34.4874,28.9961,29.118,0.069184,0.88224,0.00704,0.004096,0.028672,0.102432,0.097792,27.8136,0.11296
+1327,32.7827,30.5039,27.9532,0.069408,0.970976,0.007584,0.004704,0.028672,0.094208,0.09744,26.5667,0.113472
+1328,34.441,29.0352,27.9512,0.06912,0.937632,0.007072,0.00416,0.028672,0.095872,0.09664,26.5987,0.113344
+1329,34.2934,29.1602,29.1951,0.068416,0.935936,0.008032,0.005536,0.028864,0.095808,0.096896,27.844,0.111584
+1330,32.9345,30.3633,29.1688,0.069632,0.960512,0.007456,0.004832,0.028256,0.096,0.097056,27.7912,0.113856
+1331,33.342,29.9922,27.8377,0.069344,0.858624,0.007616,0.004672,0.028672,0.09552,0.096928,26.5623,0.11408
+1332,34.5666,28.9297,29.1269,0.06816,0.907168,0.00736,0.004864,0.028736,0.09536,0.096864,27.8039,0.114464
+1333,32.4667,30.8008,28.1828,0.069248,1.19254,0.00768,0.004608,0.028704,0.095616,0.096864,26.5743,0.113152
+1334,34.6649,28.8477,29.1615,0.069664,0.937952,0.007456,0.004832,0.028416,0.094464,0.09808,27.8075,0.113152
+1335,33.122,30.1914,29.0549,0.069312,0.848224,0.00768,0.004608,0.028672,0.095872,0.096672,27.7893,0.114624
+1336,32.8542,30.4375,28.0538,0.069248,1.06954,0.006304,0.005632,0.0272,0.096192,0.104448,26.5623,0.11296
+1337,34.4086,29.0625,27.9365,0.069632,0.912768,0.006784,0.014336,0.028672,0.111936,0.09696,26.582,0.113408
+1338,34.5666,28.9297,29.0644,0.069664,0.869408,0.007072,0.0056,0.027392,0.096064,0.097696,27.7776,0.11392
+1339,32.9218,30.375,27.9409,0.069632,0.924928,0.016768,0.005952,0.028256,0.103392,0.098048,26.5792,0.11472
+1340,34.4967,28.9883,27.879,0.069216,0.876608,0.006496,0.0056,0.0272,0.096224,0.09776,26.5856,0.11424
+1341,34.759,28.7695,29.0771,0.069536,0.847744,0.006368,0.006144,0.028576,0.1016,0.097184,27.8053,0.114656
+1342,32.724,30.5586,29.0556,0.06816,0.882176,0.006656,0.005344,0.027424,0.096256,0.097376,27.7595,0.112672
+1343,32.8458,30.4453,28.0124,0.06816,0.998464,0.00704,0.005504,0.027328,0.11808,0.096352,26.5767,0.114752
+1344,34.2063,29.2344,29.1075,0.069056,0.869216,0.008064,0.004224,0.028672,0.099808,0.100928,27.8139,0.113664
+1345,30.7434,32.5273,29.8841,0.075616,2.77571,0.006208,0.00608,0.028352,0.09616,0.098144,26.677,0.120864
+1346,34.2109,29.2305,29.1025,0.068032,0.872192,0.0064,0.005728,0.02704,0.096128,0.096192,27.8182,0.11264
+1347,32.8331,30.457,29.2881,0.0712,1.0593,0.0072,0.005088,0.028416,0.1088,0.09792,27.7958,0.114336
+1348,33.355,29.9805,27.8852,0.069632,0.897024,0.007328,0.004864,0.028096,0.094976,0.099744,26.5692,0.114304
+1349,34.52,28.9688,27.9023,0.070144,0.890912,0.007904,0.005504,0.02752,0.095648,0.096768,26.5933,0.114624
+1350,34.5759,28.9219,29.0963,0.069024,0.875488,0.007744,0.004544,0.02848,0.0944,0.096288,27.8074,0.112928
+1351,33.1692,30.1484,27.8989,0.06976,0.870272,0.007456,0.004832,0.028672,0.094208,0.098112,26.6099,0.115744
+1352,34.3763,29.0898,27.8876,0.069664,0.849888,0.0072,0.004928,0.02816,0.09488,0.098304,26.6199,0.114688
+1353,34.5386,28.9531,29.1999,0.069568,0.8992,0.006144,0.006144,0.02832,0.096192,0.09824,27.8818,0.11424
+1354,32.8163,30.4727,27.9159,0.068832,0.893856,0.008128,0.00416,0.028672,0.097984,0.097984,26.6021,0.114208
+1355,30.9478,32.3125,29.4627,0.069824,1.17741,0.006336,0.006144,0.028192,0.11056,0.104832,27.8466,0.1128
+1356,35.526,28.1484,29.225,0.069632,0.99328,0.018432,0.005984,0.02816,0.107168,0.098176,27.7915,0.11264
+1357,32.9854,30.3164,27.9918,0.068352,0.970144,0.006752,0.00576,0.02816,0.0968,0.096608,26.6056,0.113696
+1358,34.3947,29.0742,28.3177,0.071104,0.945792,0.007104,0.004128,0.02864,0.096256,0.097632,26.9534,0.113632
+1359,33.9478,29.457,30.0681,0.0696,0.931872,0.007936,0.005504,0.028832,0.094976,0.097696,28.7171,0.114592
+1360,32.1124,31.1406,27.8756,0.06896,0.856352,0.006848,0.004288,0.02848,0.1024,0.10352,26.592,0.112832
+1361,34.3486,29.1133,27.8671,0.069632,0.874496,0.007392,0.004896,0.028512,0.095456,0.09696,26.5751,0.114688
+1362,34.1288,29.3008,29.1768,0.068544,0.924864,0.022848,0.004608,0.028704,0.09584,0.09664,27.8218,0.11296
+1363,33.1306,30.1836,27.8835,0.069632,0.90112,0.007456,0.004864,0.028512,0.094368,0.096416,26.5662,0.114912
+1364,34.4132,29.0586,27.9393,0.069056,0.936928,0.007776,0.004512,0.02832,0.095776,0.09664,26.5875,0.1128
+1365,34.5572,28.9375,29.1991,0.068384,0.884384,0.006464,0.006048,0.028,0.094976,0.098304,27.8979,0.114688
+1366,32.7743,30.5117,29.0858,0.069504,0.897472,0.007488,0.0048,0.028128,0.094592,0.096416,27.7741,0.11328
+1367,33.3333,30,27.9828,0.068512,0.925056,0.006784,0.00576,0.027008,0.095584,0.096768,26.6426,0.114688
+1368,34.4735,29.0078,29.1464,0.06944,0.866496,0.008032,0.004256,0.028672,0.097472,0.097088,27.861,0.113984
+1369,32.8374,30.4531,27.9344,0.07376,0.895008,0.0072,0.005088,0.028672,0.095808,0.096288,26.6183,0.114336
+1370,34.2475,29.1992,28.2826,0.069376,0.911616,0.007488,0.0048,0.028128,0.095904,0.097152,26.9537,0.1144
+1371,34.22,29.2227,29.1236,0.069632,0.864288,0.007936,0.005504,0.027488,0.095808,0.096704,27.8426,0.113664
+1372,33.0067,30.2969,27.9668,0.069888,0.921056,0.006656,0.005312,0.027456,0.096256,0.098048,26.6284,0.113728
+1373,34.0516,29.3672,27.8914,0.069792,0.927968,0.006464,0.00608,0.02816,0.095872,0.108608,26.5343,0.114144
+1374,33.4684,29.8789,30.6365,0.068032,1.20627,0.00816,0.014368,0.03072,0.096064,0.09648,29.0037,0.11264
+1375,32.177,31.0781,28.0025,0.075968,0.955968,0.00656,0.005952,0.028352,0.09584,0.112608,26.6077,0.113504
+1376,33.4247,29.918,28.0469,0.069376,0.995488,0.006592,0.005472,0.027296,0.104448,0.098336,26.6256,0.114336
+1377,35.0445,28.5352,29.1875,0.069664,0.948544,0.007872,0.005536,0.027552,0.096256,0.098144,27.82,0.11392
+1378,33.011,30.293,27.9397,0.06848,0.91264,0.00688,0.005984,0.028128,0.094464,0.096736,26.6138,0.112608
+1379,33.8983,29.5,28.0575,0.068256,0.9704,0.006496,0.006016,0.028032,0.094976,0.097568,26.6698,0.115968
+1380,34.4921,28.9922,29.226,0.069632,0.954208,0.006336,0.0056,0.028288,0.09488,0.097888,27.8555,0.113664
+1381,32.8374,30.4531,29.3231,0.069664,1.00758,0.006144,0.006144,0.028544,0.094368,0.097792,27.9004,0.11248
+1382,32.7659,30.5195,28.0056,0.069632,1.01162,0.006272,0.005664,0.028352,0.094976,0.100352,26.5638,0.124864
+1383,34.4921,28.9922,29.1287,0.06928,0.878944,0.007424,0.004864,0.028672,0.096032,0.09648,27.8336,0.113376
+1384,32.8247,30.4648,27.9228,0.068448,0.922976,0.006816,0.00544,0.027328,0.096192,0.09632,26.5851,0.11424
+1385,34.22,29.2227,29.2004,0.067616,0.937536,0.016832,0.005952,0.027968,0.095104,0.098176,27.8386,0.112672
+1386,32.6948,30.5859,29.1448,0.069792,0.94448,0.008064,0.004128,0.028672,0.094208,0.098304,27.7831,0.114016
+1387,32.1608,31.0938,27.9245,0.069664,0.878592,0.007968,0.005536,0.027424,0.096256,0.097696,26.6267,0.114688
+1388,35.7043,28.0078,27.965,0.069664,0.9912,0.007424,0.004832,0.028192,0.09472,0.096256,26.5585,0.114272
+1389,34.4549,29.0234,29.147,0.067712,0.935072,0.007008,0.005504,0.028288,0.095232,0.096384,27.7974,0.114432
+1390,33.2079,30.1133,27.901,0.069632,0.874496,0.007584,0.004704,0.028352,0.094528,0.097888,26.6096,0.114272
+1391,34.4132,29.0586,27.9392,0.069568,0.881664,0.007776,0.004512,0.028672,0.096256,0.096256,26.6399,0.114592
+1392,34.344,29.1172,29.1043,0.0696,0.908096,0.006208,0.005536,0.028864,0.094528,0.096352,27.7811,0.113952
+1393,32.8121,30.4766,29.2352,0.069152,0.936416,0.00752,0.004768,0.028704,0.096,0.097824,27.8801,0.114688
+1394,33.2166,30.1055,27.826,0.06944,0.893216,0.00672,0.005536,0.027232,0.095392,0.096992,26.5176,0.113888
+1395,34.4179,29.0547,29.1978,0.069664,0.9728,0.007488,0.004768,0.028704,0.096224,0.097824,27.8056,0.11472
+1396,32.9345,30.3633,27.9839,0.069632,0.917504,0.007168,0.004864,0.028672,0.098592,0.098304,26.6464,0.1128
+1397,34.147,29.2852,28.457,0.069664,0.937568,0.00656,0.00608,0.028064,0.096352,0.0968,27.1012,0.114688
+1398,33.8714,29.5234,29.9096,0.069536,0.913216,0.007072,0.00416,0.028608,0.095872,0.09664,28.5811,0.11344
+1399,32.4502,30.8164,27.902,0.069632,0.86144,0.006912,0.005696,0.028224,0.09488,0.096512,26.6252,0.11344
+1400,34.1561,29.2773,27.927,0.076384,0.890592,0.006432,0.005472,0.027296,0.096256,0.098336,26.6034,0.122816
+1401,34.2292,29.2148,29.184,0.069504,0.946304,0.007552,0.012672,0.042496,0.099072,0.097312,27.7944,0.114688
+1402,33.0365,30.2695,27.8986,0.06944,0.91424,0.006208,0.005696,0.028192,0.095136,0.096256,26.5687,0.11472
+1403,34.2934,29.1602,27.9429,0.069664,0.873792,0.006816,0.005728,0.028096,0.095072,0.096256,26.6548,0.11264
+1404,32.8964,30.3984,29.2249,0.069632,0.96432,0.006432,0.005472,0.027296,0.096256,0.098016,27.842,0.115424
+1405,34.4688,29.0117,28.3303,0.068128,0.854016,0.007808,0.005536,0.027584,0.09568,0.096832,27.0602,0.114528
+1406,33.4641,29.8828,28.3999,0.0696,1.40957,0.016384,0.005824,0.03104,0.095264,0.09712,26.5606,0.114464
+1407,34.3716,29.0938,29.213,0.06864,0.890848,0.007712,0.004576,0.028672,0.095328,0.096576,27.902,0.118592
+1408,32.6447,30.6328,28.0658,0.069664,1.00758,0.006144,0.005792,0.028288,0.103136,0.104448,26.626,0.114688
+1409,34.4781,29.0039,29.0937,0.0696,0.847232,0.006816,0.005792,0.028032,0.0952,0.098304,27.8282,0.114496
+1410,33.2381,30.0859,29.0924,0.069792,0.866592,0.007328,0.004832,0.028256,0.094784,0.096224,27.8118,0.112704
+1411,32.8458,30.4453,27.9491,0.0712,0.919008,0.007104,0.005504,0.027328,0.096256,0.097664,26.6096,0.115392
+1412,34.5386,28.9531,27.9554,0.069472,0.932384,0.0064,0.0056,0.027168,0.096192,0.09632,26.6076,0.114272
+1413,34.5899,28.9102,29.0842,0.068128,0.878592,0.006144,0.006144,0.02832,0.09456,0.098048,27.7907,0.113632
+1414,32.8922,30.4023,27.9552,0.069056,0.913216,0.006784,0.011968,0.031168,0.094208,0.096288,26.6192,0.11328
+1415,34.8015,28.7344,27.8899,0.069376,0.872864,0.008032,0.005504,0.027424,0.096256,0.098304,26.5994,0.112704
+1416,34.5899,28.9102,29.0937,0.069856,0.8744,0.00624,0.005696,0.0272,0.096128,0.098304,27.8016,0.114272
+1417,33.0578,30.25,29.1445,0.069632,0.88272,0.007232,0.005024,0.028512,0.095872,0.0968,27.8446,0.114144
+1418,32.9133,30.3828,27.8928,0.069568,0.901216,0.008064,0.004192,0.028672,0.100384,0.098208,26.5688,0.113728
+1419,34.7213,28.8008,29.1118,0.069632,0.8704,0.006144,0.006144,0.02832,0.096544,0.09632,27.8241,0.114208
+1420,33.2295,30.0938,27.8997,0.069376,0.854272,0.007968,0.00432,0.028544,0.094368,0.097408,26.6289,0.114592
+1421,34.5899,28.9102,28.2932,0.069664,0.880224,0.006528,0.006048,0.028096,0.096,0.097184,26.9965,0.112928
+1422,33.9928,29.418,29.0671,0.070016,0.858112,0.0072,0.004864,0.028064,0.09472,0.096576,27.7934,0.114176
+1423,33.028,30.2773,27.9738,0.069984,0.93184,0.00736,0.004928,0.028416,0.095744,0.098176,26.6208,0.116512
+1424,34.5107,28.9766,27.8911,0.069152,0.868928,0.006144,0.005856,0.028096,0.094528,0.096832,26.6055,0.116032
+1425,33.609,29.7539,29.3724,0.069472,0.990464,0.00704,0.005536,0.027264,0.096288,0.09792,27.9652,0.113184
+1426,32.6323,30.6445,29.1009,0.068416,0.87584,0.006848,0.004096,0.028672,0.096256,0.098304,27.8077,0.114688
+1427,33.3507,29.9844,27.8873,0.069632,0.873536,0.00704,0.005504,0.027328,0.096256,0.097472,26.5961,0.1144
+1428,34.6039,28.8984,29.1418,0.068384,0.892928,0.008096,0.004192,0.028672,0.095488,0.097024,27.8323,0.114688
+1429,33.1477,30.168,29.0996,0.069408,0.8616,0.006976,0.0056,0.027168,0.095872,0.09664,27.8235,0.112832
+1430,33.2727,30.0547,27.8817,0.069792,0.852064,0.008,0.004288,0.028672,0.095808,0.096704,26.6114,0.115008
+1431,33.565,29.793,29.2514,0.06944,0.97936,0.0064,0.006144,0.028096,0.094848,0.108064,27.845,0.114048
+1432,32.888,30.4062,28.0141,0.069632,0.952192,0.006272,0.005728,0.02704,0.095904,0.096608,26.6465,0.114176
+1433,34.7213,28.8008,29.1505,0.069312,0.885056,0.006272,0.006016,0.028544,0.096384,0.098304,27.8457,0.114912
+1434,32.9091,30.3867,29.2086,0.069664,0.966112,0.006656,0.005344,0.027424,0.094208,0.098304,27.8275,0.113408
+1435,33.3464,29.9883,27.8828,0.069376,0.860576,0.006144,0.006144,0.028352,0.094528,0.096256,26.6056,0.115904
+1436,34.3901,29.0781,27.9225,0.068864,0.850752,0.007424,0.004832,0.028,0.09488,0.108576,26.6459,0.11328
+1437,34.4642,29.0156,29.1369,0.069632,0.871648,0.006944,0.005632,0.028256,0.104928,0.096704,27.84,0.113152
+1438,32.7785,30.5078,27.8392,0.069568,0.854784,0.007712,0.004608,0.028256,0.096,0.096896,26.5687,0.11264
+1439,34.097,29.3281,28.0105,0.069184,0.982528,0.007072,0.005504,0.027296,0.095808,0.096608,26.6118,0.114688
+1440,34.4456,29.0312,29.1363,0.068928,0.850656,0.007232,0.004864,0.027936,0.094848,0.0976,27.8553,0.128928
+1441,32.1124,31.1406,29.4379,0.069632,1.1833,0.007936,0.012992,0.031936,0.096096,0.097248,27.8241,0.114624
+1442,32.5327,30.7383,27.9958,0.069056,0.966464,0.006976,0.004224,0.028544,0.094208,0.09792,26.6141,0.114272
+1443,33.355,29.9805,29.486,0.068544,1.21226,0.006304,0.006144,0.032768,0.096256,0.098336,27.8522,0.113184
+1444,32.9091,30.3867,27.9184,0.069664,0.991168,0.006176,0.005728,0.028096,0.095136,0.09632,26.5126,0.113472
+1445,33.9208,29.4805,29.2967,0.069632,1.1463,0.01648,0.004576,0.03072,0.095808,0.096384,27.3792,0.457568
+1446,33.0152,30.2891,29.1245,0.069504,0.887008,0.007968,0.00432,0.028672,0.096096,0.097504,27.8189,0.114464
+1447,32.8416,30.4492,27.945,0.068352,0.952192,0.00752,0.004768,0.028672,0.09616,0.097824,26.5753,0.114208
+1448,34.0109,29.4023,28.0637,0.069632,1.00899,0.006816,0.00528,0.027488,0.094208,0.111776,26.6249,0.114688
+1449,34.3072,29.1484,29.1785,0.076288,0.884896,0.007296,0.004992,0.03072,0.095648,0.096864,27.8671,0.114688
+1450,33.0451,30.2617,27.9345,0.0696,0.919584,0.007776,0.004512,0.028576,0.095552,0.097088,26.5973,0.114496
+1451,34.4503,29.0273,27.8515,0.069408,0.902112,0.007648,0.004608,0.028672,0.096256,0.097536,26.5306,0.114688
+1452,34.5666,28.9297,29.0836,0.069632,0.888864,0.007456,0.0048,0.028256,0.094624,0.09776,27.7776,0.114624
+1453,33.1649,30.1523,29.1123,0.069024,0.877184,0.007776,0.005504,0.027648,0.096256,0.09792,27.8163,0.114688
+1454,33.0963,30.2148,27.934,0.069408,0.868736,0.006144,0.005728,0.02816,0.09472,0.096672,26.6506,0.113856
+1455,34.0743,29.3477,29.1574,0.069664,0.972192,0.00672,0.005824,0.027968,0.095232,0.098048,27.767,0.114688
+1456,32.9176,30.3789,27.8835,0.068864,0.88512,0.006528,0.006144,0.028032,0.094848,0.097728,26.5829,0.113376
+1457,34.9059,28.6484,29.1156,0.069504,0.884928,0.007296,0.004992,0.028672,0.095872,0.098272,27.8102,0.115904
+1458,33.1864,30.1328,29.0955,0.069152,0.868768,0.006592,0.005312,0.027456,0.095648,0.096864,27.8118,0.113856
+1459,33.2166,30.1055,27.8957,0.068416,0.885888,0.007008,0.005536,0.027232,0.095584,0.096896,26.5946,0.114592
+1460,34.4921,28.9922,27.878,0.069344,0.85632,0.006784,0.00512,0.027616,0.096128,0.108672,26.5949,0.113056
+1461,34.6696,28.8438,29.081,0.069504,0.856192,0.007872,0.005504,0.027584,0.096256,0.098336,27.8048,0.11488
+1462,31.3918,31.8555,28.2436,0.06928,1.21258,0.006336,0.005632,0.027136,0.111744,0.104352,26.5917,0.11488
+1463,34.8869,28.6641,28.0131,0.069472,1.02051,0.006304,0.006144,0.027968,0.094752,0.096416,26.5766,0.114848
+1464,34.5479,28.9453,29.0509,0.069632,0.896992,0.006176,0.005792,0.028064,0.097216,0.103616,27.7287,0.114688
+1465,33.1349,30.1797,28.375,0.069632,0.910752,0.006752,0.005792,0.028096,0.095136,0.098304,27.0459,0.114688
+1466,33.8804,29.5156,28.7242,0.068576,0.903136,0.006176,0.005728,0.028768,0.094528,0.09744,27.407,0.112832
+1467,33.5079,29.8438,29.2291,0.070848,0.992064,0.007168,0.00512,0.028384,0.094496,0.096256,27.8221,0.11264
+1468,32.8964,30.3984,28.0084,0.069664,1.02429,0.006368,0.005568,0.0272,0.10784,0.09696,26.5556,0.114912
+1469,34.2842,29.168,29.2661,0.068608,0.995296,0.007584,0.004704,0.028672,0.096256,0.096256,27.8548,0.113952
+1470,33.2857,30.043,29.1533,0.069664,0.868064,0.0064,0.005504,0.027264,0.095776,0.096736,27.8609,0.123008
+1471,32.7324,30.5508,27.9613,0.069664,0.9088,0.006624,0.005888,0.02816,0.096032,0.097216,26.6333,0.115648
+1472,34.5107,28.9766,27.8591,0.06928,0.866272,0.006656,0.005312,0.027456,0.095968,0.102688,26.5708,0.114688
+1473,34.2063,29.2344,29.1205,0.069728,0.888288,0.006592,0.005984,0.028288,0.094752,0.110592,27.8016,0.114688
+1474,33.2166,30.1055,27.8317,0.069632,0.888704,0.006272,0.005696,0.027072,0.095936,0.096608,26.5277,0.114112
+1475,34.4549,29.0234,27.863,0.069056,0.91392,0.006208,0.006144,0.028448,0.096064,0.098144,26.5324,0.11264
+1476,34.3118,29.1445,29.2113,0.06976,0.9672,0.007296,0.004832,0.028128,0.094912,0.096256,27.83,0.112864
+1477,32.9642,30.3359,29.1223,0.069824,0.930752,0.00704,0.005504,0.027264,0.095968,0.0976,27.7739,0.1144
+1478,33.1177,30.1953,27.9745,0.06848,0.948064,0.006304,0.005728,0.028448,0.10032,0.101056,26.6031,0.113024
+1479,33.9523,29.4531,29.1799,0.070784,0.93888,0.00784,0.019808,0.027648,0.095904,0.102208,27.8042,0.11264
+1480,33.1993,30.1211,27.8696,0.069504,0.88144,0.007776,0.004512,0.02848,0.095968,0.096736,26.5707,0.114496
+1481,33.1392,30.1758,28.6114,0.068384,0.955584,0.006976,0.005536,0.027232,0.09536,0.096992,26.9416,0.413696
+1482,34.4364,29.0391,29.27,0.07168,0.94928,0.007136,0.00416,0.028608,0.095392,0.098272,27.9008,0.114688
+1483,33.264,30.0625,27.9409,0.069664,0.890624,0.006368,0.006144,0.028192,0.09472,0.097568,26.634,0.1136
+1484,34.5339,28.957,27.8958,0.069664,0.917472,0.007264,0.00496,0.027936,0.09504,0.097792,26.5627,0.113056
+1485,34.1789,29.2578,29.1485,0.069664,0.917472,0.007584,0.004704,0.028704,0.09568,0.096768,27.8155,0.112448
+1486,33.0749,30.2344,27.9529,0.06816,0.948224,0.006144,0.00576,0.028224,0.0952,0.098144,26.589,0.11408
+1487,34.4225,29.0508,27.9286,0.070688,0.908256,0.007904,0.005472,0.027584,0.096256,0.09744,26.6013,0.113664
+1488,33.7064,29.668,29.2106,0.069664,0.974816,0.006144,0.014336,0.028192,0.094464,0.0976,27.8122,0.113248
+1489,33.3811,29.957,29.0706,0.069152,0.855616,0.006912,0.005536,0.027392,0.095552,0.09696,27.7975,0.116
+1490,32.9345,30.3633,27.9702,0.070368,0.957856,0.006848,0.004096,0.028672,0.095584,0.096928,26.5948,0.11504
+1491,34.4688,29.0117,29.2034,0.068544,0.890048,0.006976,0.005568,0.028224,0.095232,0.097984,27.8961,0.11472
+1492,33.2122,30.1094,27.836,0.069568,0.899136,0.007712,0.004576,0.028224,0.10432,0.097056,26.5107,0.114656
+1493,34.7213,28.8008,27.8663,0.068736,0.862816,0.006432,0.006144,0.028192,0.096224,0.10496,26.5789,0.113952
+1494,34.52,28.9688,29.8893,0.066144,0.882816,0.006176,0.005696,0.028608,0.09616,0.096864,28.594,0.112768
+1495,32.3151,30.9453,27.9286,0.069248,0.91584,0.007744,0.004544,0.028672,0.096256,0.09728,26.5955,0.113536
+1496,28.4476,35.1523,27.8813,0.069632,0.886784,0.007808,0.00448,0.028544,0.095744,0.096928,26.5769,0.114496
+1497,34.3624,29.1016,29.1246,0.068992,0.918144,0.00768,0.004608,0.028672,0.095872,0.09664,27.7914,0.112672
+1498,33.011,30.293,27.8861,0.070208,0.917504,0.007712,0.004576,0.02832,0.094592,0.097472,26.5508,0.114944
+1499,34.2338,29.2109,27.9204,0.069632,0.888608,0.006368,0.006144,0.028,0.09488,0.098208,26.6152,0.113408
+1500,34.367,29.0977,29.1524,0.07072,0.93888,0.006208,0.005824,0.028128,0.095072,0.098304,27.7945,0.114752
+1501,32.8753,30.418,29.3465,0.068256,1.00352,0.007168,0.005088,0.028672,0.101632,0.110944,27.9065,0.114688
+1502,32.5949,30.6797,28.0331,0.069632,0.976896,0.007872,0.004416,0.028544,0.095552,0.097088,26.6383,0.11472
+1503,34.2521,29.1953,29.2541,0.06992,0.995424,0.006208,0.006144,0.028352,0.095744,0.097088,27.8405,0.114688
+1504,32.8584,30.4336,27.8733,0.069632,0.863232,0.00704,0.004224,0.028672,0.100352,0.100352,26.5869,0.112896
+1505,34.5572,28.9375,29.1358,0.068576,0.882656,0.007168,0.00512,0.028384,0.095712,0.097088,27.8376,0.113472
+1506,33.0878,30.2227,29.144,0.069568,0.966688,0.007104,0.004096,0.028672,0.095616,0.096896,27.7607,0.114656
+1507,33.29,30.0391,27.8818,0.068384,0.85808,0.007552,0.004736,0.028672,0.09552,0.096992,26.6076,0.114272
+1508,34.618,28.8867,27.8842,0.070208,0.856224,0.007552,0.004736,0.028064,0.095872,0.09696,26.6112,0.113376
+1509,34.4688,29.0117,29.1033,0.069632,0.898656,0.00656,0.005792,0.026976,0.095968,0.096576,27.7887,0.1144
+1510,32.254,31.0039,27.9184,0.069536,0.933984,0.008064,0.004224,0.04448,0.095968,0.09712,26.5522,0.112768
+1511,35.526,28.1484,27.8711,0.069216,0.85264,0.00784,0.005504,0.027584,0.096096,0.096416,26.6007,0.11504
+1512,33.9928,29.418,29.1695,0.068608,0.98144,0.00672,0.005216,0.027584,0.094176,0.09808,27.7748,0.112864
+1513,32.9303,30.3672,28.3831,0.069632,0.974432,0.006592,0.006048,0.028256,0.094688,0.09792,26.991,0.114528
+1514,34.2292,29.2148,28.6479,0.06848,0.840864,0.007008,0.004096,0.028672,0.11264,0.098016,27.3739,0.11424
+1515,33.2986,30.0312,29.2471,0.069632,1.01581,0.007584,0.004704,0.028672,0.095904,0.09664,27.8139,0.114304
+1516,32.8289,30.4609,28.0311,0.069728,1.01552,0.006816,0.004096,0.028672,0.096192,0.096352,26.5975,0.116288
+1517,34.2567,29.1914,27.9982,0.069568,1.00358,0.007584,0.004704,0.028672,0.095456,0.0968,26.5788,0.113024
+1518,34.2292,29.2148,29.241,0.069152,1.03229,0.006528,0.005376,0.027392,0.096256,0.0976,27.7921,0.114304
+1519,32.888,30.4062,28.0107,0.06896,1.01674,0.007584,0.004704,0.028672,0.09568,0.098016,26.5768,0.113504
+1520,34.2567,29.1914,27.968,0.069728,0.979392,0.007296,0.004928,0.028064,0.094976,0.098208,26.5708,0.114688
+1521,34.6508,28.8594,29.07,0.068288,0.887872,0.007008,0.005536,0.027328,0.096256,0.097632,27.7671,0.113024
+1522,33.0408,30.2656,29.1412,0.069632,0.938208,0.006336,0.005664,0.028032,0.094656,0.096768,27.7893,0.11264
+1523,33.0237,30.2812,27.8367,0.067872,0.897024,0.00752,0.004768,0.028672,0.096256,0.098304,26.5216,0.114688
+1524,34.5526,28.9414,29.0645,0.069664,0.90704,0.006368,0.005536,0.028256,0.095232,0.097696,27.7408,0.11392
+1525,32.1245,31.1289,28.1313,0.071616,1.12234,0.006176,0.006144,0.028192,0.09584,0.097088,26.5892,0.114688
+1526,32.3764,30.8867,29.2168,0.069088,0.99904,0.02752,0.005376,0.027424,0.095584,0.104576,27.7748,0.113312
+1527,34.7448,28.7812,29.1328,0.069312,0.989504,0.008032,0.005504,0.027424,0.096096,0.096416,27.7273,0.113216
+1528,32.5741,30.6992,27.9545,0.069632,0.999136,0.006432,0.005472,0.027296,0.095808,0.096704,26.5394,0.114624
+1529,34.4967,28.9883,27.8961,0.06912,0.926368,0.006272,0.006144,0.028192,0.094688,0.09776,26.5544,0.113152
+1530,34.1424,29.2891,29.1349,0.075776,0.935392,0.006688,0.005152,0.027616,0.096256,0.097696,27.777,0.113312
+1531,32.888,30.4062,27.882,0.069696,0.934016,0.006496,0.006048,0.028192,0.094784,0.097824,26.5303,0.114688
+1532,32.8331,30.457,28.1523,0.06928,1.18253,0.01952,0.005024,0.032672,0.094304,0.096256,26.538,0.114688
+1533,35.526,28.1484,29.182,0.069504,0.947904,0.006592,0.005952,0.028224,0.094848,0.099424,27.8107,0.118784
+1534,32.7408,30.543,29.2594,0.069632,1.00538,0.006336,0.005568,0.0272,0.096128,0.096384,27.8397,0.113056
+1535,32.8247,30.4648,27.8911,0.06944,0.956672,0.007968,0.005504,0.027488,0.095936,0.096672,26.5174,0.113984
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..cc7d34e
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,70.0247,14.3194,13.1678,0.0697873,1.0111,0.0133351,0.0125841,0.0385692,0.106795,0.106894,11.6915,0.117192
+max_1024,82.8278,28.5488,15.1831,0.104448,2.89773,0.059712,0.030656,0.087936,0.12928,0.453824,13.6933,0.458144
+min_1024,35.0277,12.0732,12.6107,0.065536,0.882816,0.011872,0.010208,0.036832,0.104448,0.10032,11.2105,0.111232
+512,65.3124,15.311,13.484,0.066656,1.25846,0.013344,0.011168,0.038176,0.112544,0.103232,11.7675,0.11296
+513,78.2635,12.7773,12.9495,0.069536,1.11626,0.015648,0.01216,0.037728,0.10576,0.10224,11.3755,0.114688
+514,71.1432,14.0562,12.8533,0.069632,0.997408,0.013312,0.012448,0.037696,0.106528,0.118304,11.3847,0.113248
+515,72.166,13.8569,13.2094,0.078304,0.989216,0.012288,0.012288,0.038304,0.105088,0.102368,11.7576,0.113952
+516,67.3773,14.8418,13.1349,0.075808,1.30454,0.012288,0.010304,0.038848,0.107936,0.105056,11.3662,0.113952
+517,72.0974,13.8701,12.8124,0.068544,0.97072,0.012288,0.012288,0.038464,0.106304,0.102528,11.3872,0.114048
+518,71.4161,14.0024,13.1492,0.068608,0.944096,0.01344,0.011136,0.038784,0.106656,0.10352,11.7503,0.112672
+519,69.2313,14.4443,12.7857,0.07168,0.927744,0.012416,0.012192,0.03888,0.120064,0.103168,11.3848,0.114688
+520,71.5583,13.9746,14.041,0.069664,0.937952,0.01232,0.011392,0.038752,0.105472,0.104448,12.6399,0.121056
+521,64.5629,15.4888,14.078,0.06896,0.981664,0.012288,0.012288,0.038912,0.1064,0.102336,12.626,0.129184
+522,64.2853,15.5557,12.8942,0.06896,1.07181,0.01232,0.012256,0.044992,0.105632,0.101344,11.3622,0.114688
+523,69.9573,14.2944,12.8648,0.07696,1.0001,0.022496,0.011712,0.03776,0.106176,0.11072,11.385,0.113888
+524,75.6753,13.2144,13.2055,0.069568,0.990592,0.012608,0.012096,0.03744,0.116736,0.103616,11.7482,0.114688
+525,69.7857,14.3296,13.7209,0.069152,0.97328,0.012288,0.012288,0.049152,0.106496,0.10224,12.2697,0.126272
+526,66.7601,14.979,12.8604,0.069664,1.04042,0.012864,0.012096,0.03744,0.10576,0.103136,11.3644,0.11472
+527,72.4571,13.8013,13.2222,0.067904,1.01299,0.012576,0.012032,0.0376,0.105664,0.102944,11.7576,0.112928
+528,70.1082,14.2637,13.0028,0.067968,1.15846,0.01504,0.01376,0.038816,0.111296,0.105728,11.3774,0.114336
+529,71.5234,13.9814,12.8287,0.069632,0.978496,0.01264,0.020448,0.043136,0.112352,0.102144,11.3772,0.11264
+530,72.2195,13.8467,13.1811,0.068832,0.962784,0.012672,0.010784,0.038688,0.113888,0.10672,11.7532,0.11344
+531,69.8809,14.3101,13.054,0.069664,1.21229,0.014784,0.01136,0.037824,0.106464,0.10352,11.3837,0.114432
+532,69.3673,14.416,12.8287,0.068864,1.01226,0.012576,0.012192,0.037056,0.106496,0.104448,11.3603,0.114592
+533,69.7809,14.3306,13.2636,0.068352,1.05062,0.012288,0.012288,0.036992,0.1064,0.103456,11.7596,0.113632
+534,72.0011,13.8887,12.7877,0.068928,0.9712,0.012608,0.011584,0.037728,0.107968,0.102816,11.3602,0.114624
+535,71.9051,13.9072,13.674,0.067488,0.98656,0.012544,0.012032,0.037568,0.107872,0.10304,12.2267,0.12016
+536,66.5432,15.0278,14.1032,0.069792,1.04467,0.012352,0.012,0.037152,0.106496,0.102432,12.6034,0.114944
+537,65.9921,15.1533,12.8113,0.069632,0.98304,0.012288,0.012288,0.038112,0.105248,0.1024,11.372,0.116224
+538,71.3539,14.0146,12.8196,0.069632,1.00762,0.012288,0.011648,0.037504,0.105952,0.102656,11.3558,0.11648
+539,73.0698,13.6855,13.152,0.079808,0.928416,0.013376,0.012928,0.037184,0.106048,0.102016,11.7559,0.116256
+540,70.4943,14.1855,13.6194,0.068832,0.951072,0.01248,0.01024,0.038784,0.106144,0.10288,12.2159,0.113088
+541,68.5271,14.5928,12.7816,0.06944,0.935232,0.012576,0.012032,0.037728,0.10448,0.103456,11.3932,0.11344
+542,70.7329,14.1377,13.2209,0.067584,1.02173,0.012544,0.01184,0.03728,0.105952,0.102944,11.7473,0.113664
+543,70.2621,14.2324,13.605,0.06832,0.937024,0.01264,0.01264,0.03712,0.10624,0.102048,12.2149,0.114112
+544,67.3862,14.8398,12.8532,0.069024,1.03654,0.012576,0.012096,0.03712,0.106048,0.102848,11.3623,0.114688
+545,71.3688,14.0117,13.2202,0.067968,1.00675,0.022368,0.01248,0.037664,0.107808,0.101088,11.7514,0.11264
+546,70.4216,14.2002,13.4824,0.068224,1.28173,0.059712,0.012032,0.038208,0.111008,0.438784,11.3593,0.113472
+547,68.688,14.5586,12.876,0.06784,1.03421,0.01232,0.01376,0.037408,0.10608,0.102048,11.3733,0.129024
+548,70.2477,14.2354,13.1772,0.068256,0.974272,0.01248,0.010624,0.038368,0.104992,0.104096,11.7497,0.114336
+549,67.3596,14.8457,12.7747,0.069152,0.94256,0.012288,0.012288,0.038944,0.106048,0.102112,11.3773,0.113984
+550,66.4331,15.0527,14.3562,0.069632,1.33325,0.013408,0.011168,0.038688,0.10672,0.103584,12.5649,0.114848
+551,69.4096,14.4072,13.3487,0.069728,1.12643,0.012288,0.012256,0.038912,0.105632,0.101216,11.7658,0.11648
+552,71.1259,14.0596,13.6243,0.068544,0.929472,0.012608,0.012128,0.037024,0.10608,0.102848,12.2406,0.114976
+553,67.622,14.7881,12.8434,0.069088,1.00966,0.012544,0.012032,0.037792,0.104448,0.102272,11.3799,0.115712
+554,70.5186,14.1807,13.1778,0.06848,0.967776,0.012608,0.010848,0.036928,0.118048,0.103072,11.7472,0.1128
+555,67.3862,14.8398,13.7402,0.069152,1.04029,0.026624,0.01248,0.047616,0.11264,0.1024,12.2163,0.112704
+556,68.0851,14.6875,12.8389,0.069632,1.01069,0.01248,0.01216,0.037824,0.10624,0.102656,11.3725,0.114752
+557,70.504,14.1836,13.2567,0.069632,1.0281,0.012288,0.012288,0.039008,0.114592,0.10384,11.7643,0.11264
+558,68.8357,14.5273,13.4739,0.074112,1.28614,0.03072,0.012288,0.036864,0.106528,0.453824,11.3602,0.113216
+559,68.933,14.5068,12.7549,0.069312,0.926016,0.013504,0.011296,0.038688,0.107808,0.103136,11.3705,0.114688
+560,71.7589,13.9355,13.1871,0.069632,0.982112,0.012608,0.011104,0.038688,0.106464,0.104416,11.7488,0.113312
+561,69.4049,14.4082,12.8285,0.068064,0.991232,0.01344,0.011296,0.038752,0.104544,0.102368,11.3848,0.11408
+562,71.7238,13.9424,12.7816,0.069632,0.972832,0.012288,0.012256,0.038912,0.10592,0.102976,11.3521,0.114688
+563,70.8847,14.1074,14.073,0.07168,1.20534,0.01264,0.010976,0.038752,0.108064,0.102912,12.1549,0.367776
+564,67.3551,14.8467,12.8345,0.06944,1.02259,0.012288,0.012288,0.038912,0.106176,0.102752,11.3541,0.115968
+565,71.4385,13.998,13.2204,0.074528,0.994912,0.0232,0.012096,0.038784,0.104576,0.102208,11.7537,0.116384
+566,69.7453,14.3379,14.8398,0.069664,0.99264,0.012704,0.01248,0.03824,0.10624,0.102624,13.392,0.113216
+567,63.1592,15.833,12.7672,0.069664,0.939072,0.012704,0.012224,0.03744,0.105888,0.10096,11.3758,0.11344
+568,72.5572,13.7822,12.7677,0.069152,0.945088,0.013536,0.012128,0.037696,0.105824,0.103136,11.3665,0.11472
+569,71.6936,13.9482,13.1912,0.068928,0.975168,0.012672,0.012096,0.037056,0.106496,0.101728,11.7644,0.11264
+570,63.9281,15.6426,15.002,0.069472,2.33062,0.012544,0.011616,0.037824,0.106496,0.103648,12.2167,0.11312
+571,68.2121,14.6602,12.8159,0.069632,0.976512,0.012576,0.012192,0.039008,0.106208,0.1024,11.3832,0.114208
+572,72.0569,13.8779,13.1725,0.069632,0.972768,0.01232,0.012288,0.038464,0.1064,0.102944,11.7443,0.113408
+573,70.87,14.1104,13.1504,0.067872,0.923104,0.012544,0.012128,0.038752,0.10704,0.102272,11.7735,0.113184
+574,68.4629,14.6064,12.7343,0.071328,0.919776,0.012576,0.01184,0.03776,0.106496,0.103776,11.3565,0.11424
+575,72.2501,13.8408,13.7646,0.068768,0.914272,0.01232,0.024576,0.038112,0.106368,0.101248,12.1485,0.3504
+576,67.6309,14.7861,12.7346,0.069376,0.925696,0.012512,0.012096,0.037184,0.106528,0.103872,11.3526,0.114656
+577,72.4443,13.8037,12.7553,0.06976,0.923904,0.01232,0.012256,0.038336,0.105056,0.102368,11.3766,0.114688
+578,72.4392,13.8047,14.0279,0.069632,0.976896,0.012288,0.01152,0.037632,0.108576,0.102368,12.5932,0.115808
+579,66.8102,14.9678,12.7572,0.067904,0.92112,0.012608,0.011456,0.037728,0.105888,0.10096,11.3828,0.116704
+580,72.5315,13.7871,12.7858,0.069472,0.96272,0.01232,0.012256,0.038784,0.10576,0.10256,11.3664,0.115552
+581,72.1178,13.8662,14.0173,0.068352,0.954368,0.013568,0.01248,0.03744,0.106464,0.101984,12.6079,0.114688
+582,65.8479,15.1865,12.7529,0.067648,0.93792,0.012288,0.012288,0.038496,0.106528,0.10384,11.3592,0.114688
+583,67.364,14.8447,12.8184,0.069536,0.98928,0.01232,0.012256,0.038368,0.105024,0.104384,11.3746,0.11264
+584,78.5216,12.7354,13.1603,0.069632,0.960128,0.012512,0.0104,0.038528,0.105888,0.103424,11.7452,0.11456
+585,70.6743,14.1494,13.6151,0.069248,0.924064,0.013312,0.011232,0.038528,0.105952,0.10128,12.2381,0.113344
+586,67.9496,14.7168,12.7529,0.0696,0.919584,0.01232,0.011584,0.037536,0.105632,0.113184,11.3688,0.11472
+587,71.5483,13.9766,13.1535,0.069376,0.944384,0.013568,0.011008,0.036864,0.106496,0.103584,11.7543,0.11392
+588,69.4897,14.3906,13.7215,0.069632,1.05882,0.01232,0.01232,0.038816,0.10576,0.102304,12.2069,0.114624
+589,66.5756,15.0205,13.9534,0.069504,1.28202,0.01264,0.012032,0.03728,0.106496,0.100352,12.22,0.113056
+590,68.1259,14.6787,13.1307,0.068576,0.933888,0.01232,0.012256,0.038432,0.106944,0.103904,11.7413,0.113056
+591,70.1899,14.2471,12.7243,0.071616,0.902944,0.012576,0.011808,0.037344,0.106496,0.1024,11.3659,0.113152
+592,71.9202,13.9043,12.7389,0.068928,0.93488,0.012288,0.012192,0.038528,0.104896,0.104224,11.35,0.112992
+593,71.0519,14.0742,14.0348,0.069056,1.06394,0.012288,0.012032,0.038272,0.107072,0.103776,12.1702,0.458144
+594,65.8394,15.1885,12.8408,0.069632,1.04013,0.012416,0.011936,0.037344,0.106496,0.104256,11.3438,0.114816
+595,69.1798,14.4551,12.8135,0.071296,0.981504,0.013376,0.012224,0.037888,0.105568,0.10128,11.3763,0.11408
+596,76.5264,13.0674,13.2654,0.069984,1.06096,0.012608,0.012096,0.037184,0.106272,0.102624,11.7473,0.116384
+597,70.538,14.1768,13.5987,0.071392,0.911072,0.01264,0.012288,0.03712,0.1064,0.101472,12.2296,0.116736
+598,67.7697,14.7559,12.8127,0.067968,1.00352,0.01232,0.011648,0.037472,0.105952,0.102976,11.3541,0.116768
+599,72.0822,13.873,13.1606,0.069024,0.932832,0.012288,0.012288,0.03872,0.10464,0.1024,11.7719,0.11648
+600,70.5526,14.1738,13.5933,0.068384,0.93184,0.01232,0.012288,0.038208,0.105152,0.11056,12.201,0.113568
+601,68.7018,14.5557,12.7959,0.069152,0.967136,0.012352,0.012224,0.038176,0.105216,0.102368,11.3758,0.113472
+602,70.4991,14.1846,13.3468,0.06896,1.12912,0.021696,0.012768,0.057696,0.106464,0.110624,11.7267,0.112768
+603,69.5652,14.375,13.6157,0.068192,0.935776,0.012448,0.012192,0.03696,0.106048,0.10224,12.2292,0.11264
+604,68.0806,14.6885,13.2524,0.069632,1.06496,0.013344,0.011232,0.038688,0.106144,0.102976,11.7322,0.113184
+605,70.5817,14.168,13.3728,0.068832,1.1657,0.014752,0.013696,0.039104,0.104896,0.101632,11.744,0.120192
+606,67.8236,14.7441,13.3092,0.0688,1.49997,0.0136,0.012,0.037888,0.11264,0.10432,11.346,0.113984
+607,71.5583,13.9746,12.7574,0.074464,0.917472,0.013472,0.012384,0.037632,0.106496,0.104,11.3771,0.114432
+608,71.3042,14.0244,13.1674,0.074784,0.977952,0.01264,0.012096,0.0376,0.106496,0.104448,11.7279,0.113472
+609,69.2641,14.4375,12.7701,0.068448,0.929824,0.012256,0.012288,0.038464,0.10656,0.102336,11.3872,0.112736
+610,70.5672,14.1709,12.8607,0.069632,1.0281,0.024608,0.020448,0.038176,0.106976,0.10384,11.3529,0.116
+611,72.5315,13.7871,13.4943,0.079872,0.950272,0.012288,0.028672,0.038176,0.106688,0.104992,11.7468,0.426528
+612,69.3203,14.4258,12.7324,0.07168,0.931648,0.01248,0.012288,0.038208,0.105216,0.10416,11.3339,0.12288
+613,72.7738,13.7412,12.7478,0.070784,0.920448,0.012288,0.012288,0.038272,0.106784,0.102016,11.3589,0.126016
+614,70.1322,14.2588,14.1888,0.07024,1.15085,0.012672,0.010304,0.038048,0.105248,0.103584,12.5817,0.116096
+615,66.12,15.124,12.8631,0.069632,1.03219,0.012288,0.012288,0.046656,0.104896,0.1016,11.3672,0.116384
+616,73.3629,13.6309,12.7306,0.069856,0.92592,0.01232,0.012256,0.036864,0.106496,0.103776,11.3466,0.11648
+617,72.4545,13.8018,13.9653,0.069632,0.915296,0.012448,0.012224,0.03696,0.106464,0.1024,12.5952,0.114688
+618,66.459,15.0469,12.7333,0.068544,0.927616,0.012384,0.012288,0.038048,0.105312,0.103552,11.3488,0.116832
+619,72.4392,13.8047,13.1236,0.069312,0.925408,0.012608,0.012,0.03744,0.106496,0.101408,11.7453,0.113568
+620,70.7818,14.1279,13.9469,0.068832,0.938784,0.01344,0.012384,0.0376,0.10608,0.101984,12.5546,0.113184
+621,66.5497,15.0264,13.5844,0.068704,0.922528,0.012288,0.012288,0.036896,0.106272,0.100544,12.2116,0.113216
+622,66.6016,15.0146,12.9249,0.06928,1.09789,0.01248,0.012288,0.038944,0.113984,0.1064,11.359,0.114688
+623,71.3838,14.0088,13.2551,0.068288,1.05267,0.012288,0.012288,0.038208,0.10512,0.101792,11.7513,0.113184
+624,68.2485,14.6523,13.3345,0.06896,1.51824,0.01232,0.012256,0.038912,0.108096,0.102848,11.3582,0.114688
+625,71.7288,13.9414,12.7615,0.077568,0.933952,0.01264,0.010592,0.03872,0.106688,0.102432,11.3658,0.11312
+626,71.9859,13.8916,13.1734,0.07456,0.98304,0.013568,0.012128,0.039008,0.106848,0.102912,11.7281,0.11328
+627,70.1562,14.2539,12.7879,0.06896,0.987008,0.012576,0.012064,0.037728,0.106496,0.102432,11.3476,0.112992
+628,72.5367,13.7861,13.5742,0.067488,0.922752,0.012608,0.012448,0.037376,0.106496,0.104448,12.1897,0.120864
+629,67.9857,14.709,13.9348,0.069728,0.89488,0.013376,0.012704,0.038784,0.1072,0.102368,12.5809,0.11488
+630,65.9836,15.1553,12.7099,0.069664,0.90928,0.012288,0.012288,0.038144,0.105248,0.103456,11.3442,0.11536
+631,71.6184,13.9629,12.8734,0.069856,1.04637,0.012448,0.011424,0.0376,0.104544,0.11216,11.3641,0.114912
+632,72.7686,13.7422,13.2895,0.069696,1.08131,0.01232,0.012256,0.060704,0.106464,0.10272,11.7289,0.115168
+633,70.772,14.1299,13.5598,0.069664,0.90928,0.012288,0.01232,0.038048,0.10528,0.101568,12.1958,0.115584
+634,68.2257,14.6572,12.714,0.069504,0.929056,0.012544,0.010848,0.037952,0.105408,0.10352,11.3284,0.116768
+635,73.2789,13.6465,13.9387,0.069632,0.910432,0.012608,0.012128,0.037632,0.106208,0.102272,12.5744,0.113376
+636,66.6927,14.9941,12.7293,0.068608,0.91712,0.012544,0.012,0.037248,0.106432,0.102464,11.3603,0.11264
+637,73.1324,13.6738,12.7488,0.069504,0.929248,0.012576,0.01216,0.037376,0.106336,0.102272,11.3662,0.113152
+638,68.7895,14.5371,13.4045,0.069216,1.21526,0.012288,0.012288,0.03856,0.114528,0.102912,11.7265,0.113024
+639,68.9841,14.4961,13.6418,0.068384,0.976448,0.01248,0.01184,0.037536,0.105568,0.10128,12.2142,0.114016
+640,70.9829,14.0879,12.7615,0.068032,0.972736,0.012352,0.012384,0.038816,0.105696,0.103072,11.3353,0.113152
+641,69.603,14.3672,13.4126,0.067872,1.20352,0.012544,0.012032,0.0376,0.10576,0.102336,11.7579,0.11312
+642,71.2249,14.04,13.2646,0.067648,1.11312,0.037856,0.012128,0.037088,0.106432,0.431392,11.3446,0.114304
+643,70.291,14.2266,12.7939,0.069536,0.964352,0.012544,0.011744,0.037568,0.106208,0.101664,11.3756,0.11472
+644,70.4894,14.1865,14.2629,0.068224,1.24723,0.012288,0.012288,0.0384,0.106176,0.103232,12.5624,0.11264
+645,65.8352,15.1895,12.7956,0.07184,0.968704,0.012288,0.012288,0.038016,0.1072,0.102624,11.3643,0.118368
+646,71.9101,13.9062,12.816,0.069632,0.987136,0.01232,0.012064,0.038208,0.106496,0.103296,11.3664,0.12048
+647,71.4186,14.002,13.996,0.069664,0.95232,0.012288,0.012256,0.038656,0.106784,0.102336,12.5869,0.114784
+648,66.3987,15.0605,12.7348,0.06896,0.918496,0.013536,0.011008,0.038912,0.104448,0.103904,11.3588,0.116736
+649,72.2144,13.8477,12.7734,0.069664,0.953696,0.01296,0.012128,0.038112,0.105376,0.101824,11.3643,0.115296
+650,73.3262,13.6377,14.0027,0.070144,0.95232,0.012288,0.012288,0.037952,0.105408,0.10352,12.5921,0.116704
+651,66.8102,14.9678,13.95,0.06912,0.915616,0.012576,0.012256,0.03696,0.106336,0.101632,12.5818,0.11376
+652,66.5713,15.0215,12.7348,0.06848,0.931456,0.012608,0.011904,0.03744,0.106496,0.10368,11.3479,0.114752
+653,71.9859,13.8916,13.2294,0.069632,1.00678,0.012544,0.012032,0.04384,0.106496,0.108544,11.7555,0.113984
+654,70.0458,14.2764,13.5864,0.0696,0.933376,0.012576,0.012128,0.03728,0.106496,0.103872,12.1984,0.112672
+655,68.845,14.5254,12.7283,0.069312,0.92128,0.012576,0.012064,0.03744,0.106176,0.100704,11.3555,0.113248
+656,72.5521,13.7832,13.1168,0.069088,0.940448,0.012448,0.012256,0.036864,0.106496,0.103456,11.7217,0.114048
+657,70.5672,14.1709,13.5776,0.069536,0.905408,0.012416,0.013408,0.037568,0.105856,0.102496,12.2169,0.11408
+658,67.6935,14.7725,12.7631,0.069632,0.958464,0.01232,0.012256,0.038944,0.106144,0.10272,11.348,0.114688
+659,70.6792,14.1484,14.2726,0.069152,1.25395,0.013472,0.011072,0.038016,0.105088,0.10256,12.5667,0.11264
+660,65.8775,15.1797,12.7324,0.07168,0.91104,0.01216,0.012736,0.038592,0.106176,0.10464,11.3607,0.114688
+661,71.0125,14.082,12.7263,0.071328,0.905216,0.012544,0.011456,0.037792,0.106528,0.102368,11.3562,0.12288
+662,68.4721,14.6045,14.0517,0.069984,1.03395,0.012544,0.01856,0.038816,0.106528,0.104192,12.5516,0.115488
+663,63.7966,15.6748,12.8339,0.069632,1.00765,0.021984,0.012288,0.041472,0.106496,0.1024,11.356,0.115904
+664,80.7062,12.3906,12.798,0.070848,0.989024,0.012576,0.010944,0.036864,0.106496,0.103424,11.3531,0.114688
+665,71.4934,13.9873,14.0098,0.069632,0.9664,0.012576,0.011968,0.037152,0.106528,0.101984,12.5874,0.11616
+666,66.0858,15.1318,13.0964,0.069024,0.946016,0.012608,0.012064,0.037536,0.105888,0.10304,11.6961,0.114048
+667,71.1803,14.0488,13.5967,0.068928,0.92544,0.012576,0.012384,0.03744,0.106496,0.102272,12.2178,0.113376
+668,68.1985,14.6631,13.0918,0.068544,0.933472,0.012608,0.012192,0.037056,0.106496,0.1024,11.7059,0.113184
+669,71.339,14.0176,13.5516,0.069536,0.902688,0.012608,0.012096,0.037344,0.106368,0.102144,12.1956,0.113184
+670,68.5317,14.5918,12.7283,0.06912,0.940544,0.01344,0.01216,0.037472,0.106528,0.104832,11.3308,0.113408
+671,72.2144,13.8477,13.1092,0.069664,0.921504,0.012384,0.012192,0.036928,0.1064,0.102112,11.7353,0.1128
+672,70.3007,14.2246,13.5639,0.069152,0.924128,0.012288,0.012288,0.036864,0.10624,0.104,12.1863,0.112672
+673,67.4305,14.8301,12.7431,0.068352,0.95024,0.012288,0.012192,0.03696,0.106496,0.1024,11.3398,0.114432
+674,64.5446,15.4932,13.806,0.068064,1.62157,0.012544,0.012096,0.047232,0.106784,0.111904,11.7132,0.11264
+675,72.779,13.7402,12.8072,0.07152,0.992576,0.012544,0.010848,0.03888,0.10656,0.102368,11.3578,0.114112
+676,71.9809,13.8926,12.7713,0.068288,0.978944,0.012288,0.012288,0.038368,0.106912,0.103584,11.3364,0.114304
+677,72.8411,13.7285,13.7585,0.069664,0.907232,0.013408,0.011168,0.038528,0.106112,0.102592,12.137,0.372768
+678,67.0596,14.9121,12.7119,0.070784,0.920288,0.012448,0.012,0.037152,0.106496,0.1024,11.3372,0.113152
+679,72.81,13.7344,12.712,0.069728,0.905216,0.01232,0.012288,0.038304,0.105152,0.103456,11.3519,0.113664
+680,72.3931,13.8135,13.9143,0.069568,0.946624,0.012576,0.012416,0.038912,0.105472,0.102848,12.5098,0.11616
+681,66.347,15.0723,12.7692,0.069632,0.94208,0.013568,0.013056,0.0384,0.10496,0.10352,11.3685,0.115456
+682,70.9338,14.0977,14.0484,0.069088,0.979104,0.012608,0.010336,0.03856,0.1048,0.10448,12.6156,0.113824
+683,65.4104,15.2881,13.1216,0.068864,0.926464,0.012288,0.014048,0.038816,0.106464,0.102336,11.7396,0.112672
+684,66.3255,15.0771,13.8761,0.068448,1.16531,0.012288,0.018176,0.041056,0.10464,0.11408,12.2385,0.113568
+685,66.0304,15.1445,12.9416,0.067904,1.11408,0.01232,0.022144,0.047136,0.106784,0.103712,11.3543,0.11328
+686,69.2828,14.4336,13.3466,0.070176,1.15254,0.012704,0.016352,0.038304,0.107168,0.104224,11.7312,0.11392
+687,64.7978,15.4326,13.0205,0.06944,1.17312,0.01696,0.02768,0.037888,0.105664,0.123584,11.3517,0.1144
+688,71.2199,14.041,12.8819,0.0712,1.0593,0.022528,0.02048,0.038912,0.106496,0.103424,11.3449,0.114688
+689,70.378,14.209,13.3018,0.069632,1.06906,0.012288,0.018432,0.047008,0.10592,0.115328,11.7474,0.116736
+690,70.8307,14.1182,13.5676,0.069632,0.935936,0.013568,0.01104,0.038016,0.105312,0.102432,12.1772,0.114432
+691,65.3687,15.2979,12.8921,0.068864,1.06083,0.017184,0.027904,0.044,0.106272,0.102304,11.3515,0.113312
+692,69.8642,14.3135,13.2364,0.083968,1.01965,0.024832,0.024224,0.038336,0.105376,0.107552,11.7196,0.1128
+693,71.4286,14,13.6451,0.069632,0.963968,0.012608,0.012032,0.03744,0.106464,0.101536,12.2287,0.112672
+694,66.3341,15.0752,12.8801,0.069184,1.07386,0.013504,0.011104,0.03888,0.11408,0.103008,11.3428,0.113664
+695,70.3104,14.2227,13.2896,0.069184,1.07888,0.012512,0.012096,0.047872,0.105984,0.101056,11.7486,0.113376
+696,61.4683,16.2686,13.8774,0.068768,1.70086,0.01232,0.012256,0.038368,0.10608,0.104832,11.7208,0.11312
+697,74.69,13.3887,12.8143,0.07168,0.951456,0.012576,0.012,0.037792,0.107648,0.110784,11.3847,0.125664
+698,71.769,13.9336,12.8226,0.06992,0.978944,0.01232,0.012256,0.03808,0.107264,0.104384,11.3727,0.126752
+699,70.6694,14.1504,14.0138,0.06992,0.949248,0.012608,0.01104,0.038112,0.10512,0.102336,12.6096,0.115776
+700,61.7016,16.207,12.8144,0.069536,1.01139,0.012608,0.012384,0.03792,0.105472,0.103872,11.3464,0.114816
+701,74.6846,13.3896,13.1533,0.069376,0.95456,0.012384,0.012224,0.037952,0.10544,0.101984,11.7456,0.11376
+702,67.5239,14.8096,13.7708,0.081536,1.09606,0.02048,0.011872,0.03888,0.104896,0.10432,12.2001,0.112672
+703,67.0333,14.918,12.8903,0.067744,1.0824,0.012576,0.012672,0.037184,0.1064,0.10192,11.3547,0.114688
+704,70.8307,14.1182,13.2257,0.068672,1.05568,0.012288,0.012288,0.038624,0.106208,0.102656,11.7149,0.114368
+705,53.5145,18.6865,14.7044,0.070368,2.89773,0.01248,0.012224,0.036928,0.106496,0.101952,11.3515,0.114784
+706,71.6886,13.9492,13.2089,0.069184,1.41181,0.012288,0.012224,0.041024,0.106144,0.102752,11.3372,0.116256
+707,71.6585,13.9551,12.805,0.068416,0.994432,0.01264,0.011968,0.037728,0.106112,0.101952,11.3561,0.115648
+708,72.867,13.7236,12.7671,0.069632,0.96256,0.012288,0.012288,0.043008,0.106496,0.103552,11.3407,0.116576
+709,61.4793,16.2656,14.504,0.069152,2.70784,0.012416,0.012224,0.038176,0.105248,0.102176,11.3433,0.113472
+710,73.3892,13.626,12.8512,0.06912,1.07062,0.012608,0.010912,0.038112,0.10528,0.103392,11.3282,0.112928
+711,71.2348,14.0381,12.7506,0.068832,0.949024,0.01232,0.01168,0.03744,0.106496,0.101792,11.3486,0.114464
+712,72.81,13.7344,13.8426,0.06784,0.999328,0.012288,0.012096,0.038272,0.105088,0.335232,12.1589,0.113504
+713,67.2666,14.8662,12.752,0.068576,0.937504,0.012608,0.011872,0.038496,0.105472,0.102368,11.3623,0.1128
+714,70.3248,14.2197,13.1704,0.069632,0.999424,0.01232,0.013536,0.037632,0.10608,0.102816,11.7146,0.114336
+715,66.8975,14.9482,13.4698,0.075904,1.64368,0.012416,0.012064,0.037856,0.108512,0.103872,11.3608,0.114688
+716,63.1319,15.8398,12.9632,0.069664,1.17296,0.012576,0.011808,0.038752,0.106624,0.104512,11.3317,0.114528
+717,82.8278,12.0732,13.8211,0.069632,1.02189,0.012352,0.012288,0.038208,0.107104,0.102528,12.1015,0.355648
+718,66.3084,15.0811,12.7958,0.071104,0.995904,0.01232,0.012256,0.038432,0.106368,0.103008,11.3418,0.114592
+719,71.8193,13.9238,13.1671,0.069664,0.991776,0.013312,0.011264,0.038464,0.104864,0.1024,11.7204,0.11504
+720,71.0322,14.0781,14.6995,0.0696,0.90176,0.012608,0.011904,0.037248,0.106112,0.10256,13.3449,0.112736
+721,63.4527,15.7598,12.7006,0.068512,0.910432,0.012576,0.011872,0.037888,0.106112,0.102336,11.3378,0.113024
+722,72.9969,13.6992,12.7229,0.068544,0.917472,0.013408,0.011328,0.0384,0.106272,0.103008,11.35,0.114496
+723,72.9553,13.707,13.0724,0.069504,0.890656,0.012544,0.012,0.037312,0.106432,0.101632,11.7296,0.112768
+724,69.2875,14.4326,13.6428,0.081472,0.956864,0.01232,0.012256,0.038688,0.104704,0.103616,12.2129,0.120032
+725,64.8142,15.4287,12.9435,0.06816,1.08477,0.039296,0.01056,0.040224,0.123584,0.102432,11.3613,0.11312
+726,68.408,14.6182,13.4219,0.069632,1.20013,0.02048,0.030656,0.041024,0.118176,0.107008,11.7208,0.113952
+727,67.2755,14.8643,13.5544,0.068256,1.74285,0.012288,0.01232,0.03792,0.106464,0.114656,11.3469,0.112768
+728,66.3771,15.0654,13.1359,0.069376,1.33968,0.016384,0.012256,0.036864,0.106496,0.104448,11.3357,0.114688
+729,76.2075,13.1221,13.9756,0.069504,1.00931,0.012672,0.011776,0.037568,0.108192,0.101888,12.51,0.114688
+730,66.4892,15.04,12.7333,0.070368,0.95248,0.01232,0.012256,0.038592,0.10656,0.104,11.3215,0.115264
+731,69.6409,14.3594,12.7767,0.07072,0.981952,0.012288,0.012288,0.038848,0.10656,0.102112,11.337,0.114944
+732,73.4155,13.6211,13.965,0.069792,0.944128,0.013376,0.011328,0.038528,0.106112,0.10256,12.5629,0.116256
+733,66.0262,15.1455,12.7466,0.069504,0.939424,0.012096,0.011264,0.038592,0.105984,0.101088,11.3516,0.117056
+734,73.9083,13.5303,12.7752,0.069632,0.982816,0.012544,0.012288,0.036992,0.106368,0.1024,11.3356,0.116608
+735,72.3573,13.8203,13.9428,0.068928,0.922304,0.012288,0.012288,0.03824,0.10512,0.1024,12.568,0.113184
+736,65.7379,15.2119,12.7447,0.069056,0.952896,0.012288,0.012288,0.038784,0.104576,0.103808,11.3375,0.113536
+737,72.5264,13.7881,12.7406,0.0696,0.927232,0.012576,0.012544,0.038528,0.105952,0.101312,11.3596,0.11328
+738,64.3418,15.542,13.3509,0.069408,1.17907,0.019264,0.019936,0.037376,0.106272,0.102624,11.7036,0.113344
+739,71.3042,14.0244,13.6414,0.067776,0.9928,0.012608,0.012064,0.037216,0.106496,0.107712,12.1905,0.114176
+740,72.7428,13.7471,12.7939,0.069312,0.99296,0.012736,0.011808,0.039584,0.112672,0.104256,11.3377,0.112896
+741,73.0229,13.6943,13.1195,0.069216,0.939424,0.012608,0.01104,0.04032,0.106976,0.102176,11.7244,0.113344
+742,71.1309,14.0586,13.226,0.069408,1.05274,0.014496,0.012288,0.038304,0.106464,0.103072,11.7166,0.11264
+743,66.7275,14.9863,13.4525,0.069056,1.65059,0.01264,0.011936,0.037536,0.106496,0.10352,11.3466,0.114144
+744,70.238,14.2373,13.1332,0.06928,0.981344,0.01232,0.012256,0.038112,0.106432,0.103264,11.6961,0.114016
+745,70.8945,14.1055,12.6916,0.07184,0.896672,0.012544,0.012096,0.038208,0.1072,0.102688,11.3357,0.114624
+746,72.388,13.8145,12.7052,0.069632,0.9216,0.013728,0.011936,0.037824,0.108544,0.10448,11.323,0.114464
+747,73.0959,13.6807,13.0925,0.068192,0.907264,0.012512,0.011936,0.036992,0.106496,0.103936,11.7315,0.11376
+748,67.707,14.7695,12.748,0.072992,0.9592,0.012288,0.011584,0.037568,0.10624,0.102656,11.3287,0.1168
+749,72.1482,13.8604,12.7142,0.069888,0.921216,0.012576,0.012032,0.037184,0.107552,0.101376,11.3377,0.114688
+750,72.5212,13.7891,14.7924,0.070944,1.00221,0.012288,0.012288,0.038496,0.106048,0.115552,13.3199,0.114624
+751,61.025,16.3867,13.5797,0.069408,0.941536,0.012544,0.012064,0.0376,0.106304,0.10176,12.1844,0.114144
+752,70.1178,14.2617,12.7506,0.068096,0.983008,0.012288,0.01232,0.03856,0.10608,0.103136,11.3132,0.113984
+753,71.1952,14.0459,12.7696,0.068224,0.970752,0.01232,0.012288,0.038048,0.10528,0.102432,11.3458,0.114432
+754,72.434,13.8057,12.6753,0.068832,0.909376,0.012576,0.011936,0.037888,0.105856,0.102848,11.3113,0.114688
+755,72.9293,13.7119,12.6794,0.06832,0.8888,0.013472,0.010976,0.036992,0.106304,0.100608,11.3396,0.114304
+756,72.1991,13.8506,12.7147,0.06832,0.937984,0.012288,0.012288,0.036864,0.107616,0.103328,11.3214,0.114624
+757,72.4802,13.7969,12.7153,0.06944,0.907456,0.012288,0.01232,0.036832,0.106496,0.1024,11.3541,0.114016
+758,72.6447,13.7656,12.6998,0.068768,0.928736,0.01232,0.012288,0.037952,0.106528,0.103296,11.315,0.11488
+759,67.7114,14.7686,14.0514,0.068096,0.99328,0.01232,0.012288,0.038016,0.105312,0.102208,12.6036,0.11632
+760,64.8389,15.4229,12.7548,0.069056,0.958624,0.012608,0.012096,0.038432,0.111072,0.104096,11.3344,0.1144
+761,72.1788,13.8545,13.156,0.069056,0.96928,0.012288,0.012192,0.038496,0.106016,0.10144,11.7346,0.11264
+762,66.4331,15.0527,13.2382,0.06832,1.45408,0.012288,0.012288,0.038912,0.108224,0.104128,11.3257,0.11424
+763,75.0238,13.3291,12.716,0.075776,0.917504,0.01232,0.012256,0.038912,0.106496,0.102432,11.3356,0.114688
+764,72.5572,13.7822,13.1195,0.067936,0.958464,0.012288,0.012288,0.038496,0.104864,0.104448,11.7074,0.113312
+765,68.6833,14.5596,13.0314,0.071456,1.22042,0.01264,0.012352,0.038912,0.106016,0.100832,11.3558,0.112992
+766,71.2695,14.0312,12.6984,0.068224,0.937792,0.01248,0.01184,0.037312,0.106496,0.103744,11.3075,0.113024
+767,72.3675,13.8184,13.9363,0.065536,0.919552,0.013472,0.012192,0.037824,0.106528,0.102176,12.5606,0.118464
+768,64.7282,15.4492,12.7386,0.07168,0.962496,0.01232,0.0104,0.038784,0.10624,0.102656,11.3193,0.114688
+769,73.3892,13.626,12.7017,0.069792,0.907104,0.013536,0.01104,0.038816,0.105728,0.10128,11.3397,0.114688
+770,73.0281,13.6934,13.9457,0.068576,0.924864,0.012608,0.011904,0.03776,0.105824,0.103072,12.5665,0.11456
+771,66.6103,15.0127,12.6889,0.069024,0.905248,0.012576,0.012128,0.037312,0.106112,0.102432,11.3278,0.116224
+772,69.5369,14.3809,12.749,0.069312,0.981472,0.01328,0.01136,0.038496,0.104864,0.104,11.3112,0.114976
+773,76.7099,13.0361,13.1526,0.067936,0.981024,0.012256,0.012288,0.038464,0.104928,0.102336,11.7183,0.115008
+774,69.6172,14.3643,13.9617,0.068064,0.93712,0.01264,0.012,0.037664,0.106336,0.10256,12.5722,0.11312
+775,66.1841,15.1094,13.5583,0.068128,0.929792,0.013472,0.011264,0.038528,0.104672,0.102272,12.1775,0.112672
+776,68.4904,14.6006,13.1337,0.069664,0.980064,0.012544,0.011904,0.037888,0.1056,0.103104,11.6984,0.11456
+777,71.0568,14.0732,13.5455,0.069152,0.895168,0.012576,0.012288,0.037984,0.105376,0.101952,12.1983,0.112704
+778,68.3761,14.625,12.7045,0.06816,0.91136,0.012288,0.012288,0.038912,0.114144,0.102944,11.3315,0.112928
+779,67.5239,14.8096,13.1131,0.069312,0.942432,0.012448,0.012256,0.038048,0.105312,0.10448,11.7145,0.114304
+780,66.7797,14.9746,13.0745,0.087776,1.27341,0.012672,0.01264,0.038144,0.106592,0.104096,11.3258,0.113312
+781,73.5897,13.5889,13.0724,0.069376,0.91072,0.012512,0.011072,0.038816,0.106144,0.102048,11.7091,0.11264
+782,69.6078,14.3662,12.6781,0.06976,0.922016,0.01248,0.011808,0.0376,0.10816,0.102784,11.2988,0.114688
+783,70.291,14.2266,12.7386,0.069632,0.954368,0.01232,0.012256,0.038464,0.106208,0.101088,11.3295,0.114688
+784,71.3738,14.0107,14.1311,0.07104,1.1209,0.012288,0.012288,0.038304,0.10624,0.103264,12.5515,0.115232
+785,66.2097,15.1035,12.8842,0.06912,1.09744,0.012608,0.010944,0.038016,0.105344,0.1024,11.3326,0.11568
+786,66.3041,15.082,12.8708,0.069632,1.07315,0.022528,0.012288,0.038912,0.105536,0.10336,11.3295,0.115968
+787,78.1322,12.7988,14.0402,0.069664,1.03626,0.013504,0.01264,0.037344,0.106048,0.1008,12.5502,0.113728
+788,66.5021,15.0371,12.6833,0.069632,0.925696,0.012288,0.012288,0.038496,0.106176,0.103168,11.3008,0.114752
+789,73.1742,13.666,13.0602,0.06832,0.898848,0.012512,0.012064,0.037056,0.106496,0.101856,11.709,0.114112
+790,71.0766,14.0693,13.8975,0.069184,0.905152,0.012576,0.012,0.037408,0.106176,0.10272,12.5378,0.114432
+791,65.8479,15.1865,13.6335,0.069632,0.987136,0.01232,0.012288,0.038496,0.104832,0.102432,12.1931,0.113312
+792,68.0625,14.6924,12.7551,0.068896,0.990048,0.012352,0.012256,0.038432,0.106368,0.103008,11.3104,0.113312
+793,72.2807,13.835,13.0677,0.069632,0.900448,0.012576,0.010816,0.03984,0.107072,0.102016,11.7112,0.114112
+794,68.0761,14.6895,13.0089,0.068128,1.23437,0.01472,0.012288,0.038944,0.108416,0.102528,11.3152,0.114304
+795,63.7569,15.6846,13.0676,0.069312,1.25478,0.01264,0.018496,0.037408,0.114688,0.11264,11.3336,0.114048
+796,81.7304,12.2354,13.0867,0.075776,0.93392,0.012256,0.012288,0.036896,0.106464,0.103744,11.6923,0.11312
+797,68.5821,14.5811,13.5047,0.075776,1.31901,0.012608,0.010336,0.038912,0.108544,0.1024,11.7187,0.118496
+798,70.6012,14.1641,12.6773,0.07216,0.892672,0.012928,0.011936,0.038464,0.107168,0.102496,11.3254,0.11408
+799,72.779,13.7402,13.0724,0.069632,0.88864,0.012512,0.011872,0.038816,0.106976,0.103456,11.7156,0.124896
+800,70.4022,14.2041,12.6908,0.07168,0.913408,0.012288,0.012288,0.036864,0.107936,0.103008,11.3106,0.122784
+801,72.3675,13.8184,12.7276,0.069632,0.913248,0.012448,0.01184,0.037344,0.107936,0.103008,11.3541,0.118048
+802,70.9338,14.0977,13.7873,0.069792,0.995328,0.013312,0.023552,0.040576,0.10688,0.106176,12.0753,0.356352
+803,66.4719,15.0439,12.8308,0.069696,1.02771,0.01264,0.021728,0.039744,0.105952,0.102912,11.335,0.115392
+804,72.6087,13.7725,12.673,0.069824,0.900928,0.01232,0.012256,0.03792,0.10544,0.103648,11.3155,0.115168
+805,70.4313,14.1982,13.9836,0.068288,0.961952,0.012576,0.012128,0.037344,0.106496,0.101504,12.5695,0.113824
+806,67.1872,14.8838,12.7283,0.069504,0.958592,0.01232,0.012256,0.038272,0.105088,0.104416,11.3127,0.115136
+807,72.3368,13.8242,12.7234,0.067776,0.915232,0.01248,0.012224,0.036928,0.106112,0.102304,11.3527,0.117632
+808,71.047,14.0752,13.132,0.067872,0.984704,0.01264,0.01216,0.037024,0.106368,0.102528,11.6953,0.113408
+809,69.8881,14.3086,13.6356,0.069632,0.9992,0.012512,0.012128,0.037024,0.106496,0.101504,12.1845,0.112608
+810,61.9705,16.1367,13.3331,0.068256,1.544,0.012448,0.012288,0.036864,0.1056,0.102976,11.3371,0.1136
+811,70.504,14.1836,13.2412,0.068416,1.07258,0.012544,0.012288,0.05152,0.106656,0.10224,11.7023,0.11264
+812,75.0733,13.3203,13.0177,0.06848,1.24518,0.015648,0.012128,0.037792,0.106464,0.103808,11.3138,0.114368
+813,71.0174,14.0811,13.1564,0.069632,0.990464,0.012544,0.010976,0.038624,0.1064,0.10224,11.7121,0.113408
+814,69.0399,14.4844,13.5969,0.069088,1.44205,0.0128,0.012032,0.038848,0.10688,0.104416,11.6982,0.11264
+815,69.8547,14.3154,12.7006,0.068576,0.90112,0.012288,0.011744,0.037408,0.106496,0.103616,11.3449,0.114528
+816,72.6447,13.7656,12.6996,0.069632,0.924736,0.012544,0.011104,0.038752,0.106496,0.104448,11.3172,0.114688
+817,72.0619,13.877,13.1314,0.069376,0.939744,0.012608,0.012064,0.037632,0.106496,0.104,11.7367,0.1128
+818,69.2875,14.4326,12.7577,0.068576,0.970272,0.012608,0.011808,0.038944,0.107104,0.10448,11.3305,0.113408
+819,70.6109,14.1621,12.801,0.069664,0.999424,0.013536,0.011008,0.038912,0.106432,0.102464,11.3395,0.120064
+820,67.0376,14.917,14.7988,0.071072,1.35622,0.020416,0.028,0.038784,0.10544,0.102464,12.9611,0.115328
+821,64.016,15.6211,13.7198,0.068992,1.06995,0.025792,0.021312,0.038912,0.105664,0.101184,12.1745,0.113536
+822,64.1684,15.584,13.1096,0.068448,1.31389,0.025344,0.026752,0.0384,0.112608,0.102944,11.307,0.11424
+823,78.8056,12.6895,13.1093,0.069184,0.939552,0.012544,0.012032,0.037824,0.105888,0.100992,11.7179,0.113344
+824,70.5428,14.1758,13.5617,0.069632,0.955968,0.012512,0.012096,0.037312,0.106464,0.1024,12.1508,0.114528
+825,67.9721,14.7119,12.6792,0.069312,0.894976,0.012608,0.01216,0.037184,0.106336,0.102368,11.3234,0.120864
+826,70.6353,14.1572,13.1071,0.069248,0.921984,0.01232,0.013344,0.037824,0.106336,0.112704,11.7204,0.112992
+827,72.5829,13.7773,13.643,0.068992,1.00842,0.013472,0.011264,0.038688,0.106496,0.107872,12.174,0.113792
+828,65.3436,15.3037,13.099,0.069504,0.938112,0.012288,0.01376,0.038592,0.107392,0.104448,11.7019,0.113088
+829,69.518,14.3848,13.2223,0.068384,1.04246,0.02048,0.012288,0.038176,0.106528,0.102592,11.7171,0.114272
+830,64.9787,15.3896,12.8164,0.072992,1.04026,0.012576,0.01184,0.03744,0.104896,0.103424,11.318,0.115008
+831,76.6754,13.042,12.7242,0.069824,0.917312,0.0136,0.010976,0.03872,0.106688,0.1024,11.3388,0.125952
+832,72.0924,13.8711,13.9123,0.069888,0.998464,0.012736,0.01216,0.037472,0.106528,0.103552,12.4548,0.116736
+833,66.832,14.9629,12.6688,0.069664,0.888288,0.012576,0.012064,0.037312,0.105728,0.102432,11.3241,0.116576
+834,72.6396,13.7666,12.6815,0.070464,0.917472,0.01344,0.011264,0.038464,0.10608,0.102976,11.3066,0.114752
+835,72.3982,13.8125,13.9284,0.069632,0.923648,0.013504,0.011104,0.038752,0.104576,0.10208,12.5501,0.11504
+836,66.632,15.0078,12.7044,0.06816,0.927744,0.012288,0.012288,0.038656,0.106208,0.102976,11.3205,0.115552
+837,71.7238,13.9424,12.7112,0.069216,0.93152,0.012544,0.012032,0.0376,0.106528,0.102176,11.3236,0.116032
+838,72.6602,13.7627,13.9347,0.068992,0.949024,0.012288,0.011456,0.037696,0.106016,0.10288,12.5235,0.122816
+839,65.4857,15.2705,12.7355,0.069824,0.942528,0.012608,0.012032,0.037152,0.106176,0.101952,11.3399,0.113312
+840,69.8309,14.3203,12.7683,0.069632,0.995072,0.012576,0.012256,0.038432,0.106528,0.102848,11.3172,0.113696
+841,65.3603,15.2998,13.3739,0.068,1.19523,0.01264,0.018688,0.037056,0.109632,0.110688,11.7093,0.11264
+842,76.8019,13.0205,13.6894,0.068352,1.00467,0.021376,0.012192,0.03696,0.105984,0.102912,12.2243,0.112672
+843,67.4661,14.8223,13.1816,0.06848,1.01798,0.012288,0.013664,0.037536,0.106528,0.102112,11.7087,0.114336
+844,64.7037,15.4551,13.7748,0.069408,1.62432,0.012288,0.012192,0.038784,0.106688,0.1024,11.6941,0.114688
+845,71.5934,13.9678,12.7547,0.069632,0.947808,0.01264,0.011872,0.04352,0.11264,0.103456,11.3385,0.114656
+846,73.2737,13.6475,12.6792,0.069632,0.907296,0.012288,0.012256,0.038816,0.106624,0.102368,11.3152,0.114688
+847,73.0281,13.6934,13.0765,0.067584,0.90112,0.01232,0.012256,0.03808,0.106592,0.102624,11.7151,0.120832
+848,70.1274,14.2598,12.6932,0.07168,0.9216,0.01232,0.012256,0.038336,0.107104,0.103456,11.3093,0.117152
+849,71.4086,14.0039,12.9292,0.06976,1.09568,0.012288,0.020224,0.0392,0.106464,0.102432,11.3471,0.135968
+850,71.3788,14.0098,13.3869,0.069728,0.894976,0.01232,0.011904,0.037216,0.106528,0.104416,12.0333,0.116544
+851,67.8011,14.749,12.672,0.0704,0.898336,0.01264,0.01216,0.037632,0.106496,0.101632,11.3191,0.1136
+852,71.3539,14.0146,13.0464,0.078432,1.26976,0.013344,0.015328,0.038656,0.104704,0.102464,11.3102,0.113504
+853,66.4073,15.0586,13.185,0.070848,1.01837,0.012608,0.013504,0.037696,0.105856,0.102784,11.7085,0.114848
+854,78.1978,12.7881,13.5196,0.06992,0.915936,0.012288,0.012288,0.038272,0.106176,0.102976,12.1464,0.11536
+855,68.2485,14.6523,12.7263,0.069632,0.950272,0.012288,0.011456,0.037696,0.104448,0.102304,11.3214,0.1168
+856,71.4136,14.0029,13.9346,0.069632,0.959616,0.012672,0.012096,0.037568,0.106528,0.102304,12.5214,0.112736
+857,66.8058,14.9688,12.6853,0.069216,0.909728,0.013408,0.011168,0.03792,0.10544,0.10192,11.3234,0.11312
+858,73.2632,13.6494,12.6777,0.068448,0.905024,0.01248,0.011392,0.03776,0.106496,0.1024,11.3193,0.114368
+859,72.7531,13.7451,13.1701,0.069504,1.0095,0.012544,0.01232,0.038816,0.10576,0.101184,11.7064,0.114144
+860,70.8749,14.1094,13.5366,0.069024,0.921792,0.012544,0.011936,0.037376,0.106496,0.104096,12.1593,0.113984
+861,68.7941,14.5361,12.6703,0.069184,0.900576,0.01264,0.012032,0.037632,0.106016,0.10112,11.3167,0.114336
+862,72.0214,13.8848,13.1015,0.068512,0.940032,0.01232,0.012256,0.038176,0.105216,0.104448,11.7063,0.114208
+863,65.1897,15.3398,13.6971,0.068224,1.07466,0.012704,0.012064,0.038784,0.104928,0.102432,12.1692,0.11408
+864,67.6131,14.79,12.994,0.069632,1.2288,0.01232,0.0184,0.03824,0.10512,0.103424,11.3039,0.114144
+865,78.0072,12.8193,13.0973,0.067936,0.935808,0.012416,0.012128,0.03824,0.106656,0.102496,11.709,0.112672
+866,70.816,14.1211,12.841,0.069632,1.07875,0.01488,0.012288,0.03856,0.105952,0.103328,11.3044,0.113184
+867,72.7273,13.75,12.6805,0.06896,0.897696,0.01232,0.012256,0.038624,0.105824,0.101344,11.3293,0.114144
+868,70.4458,14.1953,14.334,0.069632,1.33734,0.012288,0.01024,0.038912,0.105888,0.103008,12.5432,0.113408
+869,66.4719,15.0439,12.6931,0.069632,0.907264,0.0136,0.012352,0.037536,0.107808,0.103136,11.3188,0.122976
+870,73.2527,13.6514,12.6504,0.069632,0.899072,0.013376,0.0112,0.038944,0.106336,0.10256,11.2947,0.114624
+871,71.0963,14.0654,13.0872,0.068096,0.91296,0.012608,0.011616,0.037664,0.106336,0.10256,11.7064,0.129024
+872,67.0816,14.9072,12.7401,0.069216,0.968288,0.012544,0.01184,0.037696,0.106496,0.102592,11.3172,0.11424
+873,68.3669,14.627,12.9476,0.070816,1.16794,0.01248,0.011936,0.037312,0.105632,0.101248,11.3266,0.113632
+874,70.7036,14.1436,14.03,0.069792,1.01987,0.01232,0.013472,0.037696,0.106272,0.102624,12.5522,0.115776
+875,70.1658,14.252,13.9971,0.069536,0.976992,0.01232,0.012256,0.036864,0.106144,0.102592,12.5667,0.113728
+876,65.7802,15.2021,12.6955,0.069632,0.927232,0.0128,0.012288,0.037952,0.105408,0.1024,11.3132,0.114624
+877,72.0113,13.8867,13.1236,0.067616,0.962208,0.01264,0.012,0.037152,0.106496,0.100416,11.7124,0.11264
+878,70.1562,14.2539,13.5535,0.06832,0.94208,0.012288,0.012288,0.038528,0.104864,0.102368,12.159,0.113792
+879,68.2303,14.6562,12.6939,0.067968,0.91888,0.012576,0.012,0.038656,0.105088,0.102688,11.3228,0.113184
+880,74.0259,13.5088,13.064,0.06832,0.897024,0.012288,0.012288,0.038304,0.105056,0.10432,11.7127,0.11376
+881,68.2257,14.6572,13.628,0.06944,0.983808,0.012288,0.012288,0.038016,0.107392,0.108544,12.1836,0.11264
+882,69.4049,14.4082,12.6802,0.069152,0.925376,0.012672,0.012096,0.037472,0.106496,0.1024,11.3004,0.114176
+883,70.4603,14.1924,14.2268,0.078144,1.22474,0.01344,0.011136,0.038848,0.105856,0.102656,12.5383,0.113696
+884,65.3436,15.3037,12.7052,0.07168,0.923648,0.01232,0.012288,0.038464,0.106144,0.103232,11.3108,0.126528
+885,70.5866,14.167,12.7016,0.069664,0.919552,0.012288,0.012256,0.03872,0.106528,0.10192,11.324,0.116608
+886,70.0554,14.2744,14,0.070944,0.993568,0.01264,0.02672,0.038464,0.106464,0.10288,12.5317,0.116576
+887,63.1086,15.8457,13.1846,0.069504,1.39686,0.01232,0.012288,0.047072,0.104448,0.103776,11.3233,0.11504
+888,77.3706,12.9248,12.7358,0.068992,0.975488,0.012288,0.012288,0.038176,0.105184,0.102496,11.3049,0.116032
+889,71.764,13.9346,14.0657,0.069536,1.01795,0.012288,0.01232,0.038304,0.106304,0.10256,12.5929,0.113536
+890,65.5486,15.2559,13.1387,0.068352,0.978496,0.012736,0.012256,0.03696,0.106336,0.104032,11.7067,0.112832
+891,71.3937,14.0068,13.5426,0.069184,0.885184,0.01232,0.012256,0.03808,0.105312,0.102368,12.2055,0.112416
+892,68.7848,14.5381,13.0315,0.06832,0.89088,0.012288,0.011744,0.037408,0.10624,0.102656,11.689,0.112992
+893,71.1111,14.0625,13.5066,0.069504,0.885952,0.013248,0.01232,0.036832,0.106496,0.102112,12.1672,0.112896
+894,66.214,15.1025,12.833,0.068256,1.06058,0.012576,0.012128,0.045248,0.106464,0.103584,11.3099,0.11424
+895,71.4734,13.9912,13.2198,0.069632,1.05267,0.01232,0.012256,0.036992,0.106368,0.102016,11.7149,0.11264
+896,70.0698,14.2715,13.0872,0.069472,1.32285,0.015008,0.012064,0.037248,0.11264,0.104448,11.3005,0.113024
+897,70.0746,14.2705,13.0449,0.069088,1.2304,0.012576,0.011968,0.054272,0.108192,0.106848,11.3377,0.113856
+898,74.2944,13.46,13.0711,0.076544,0.9216,0.013408,0.0112,0.03856,0.106816,0.103808,11.6859,0.11328
+899,68.9006,14.5137,12.9996,0.07056,1.21037,0.01344,0.011136,0.038784,0.106336,0.102496,11.333,0.113504
+900,72.1482,13.8604,12.6495,0.068608,0.894016,0.01264,0.011936,0.037824,0.106528,0.103488,11.3013,0.113184
+901,72.4392,13.8047,13.0524,0.068544,0.892928,0.012288,0.012288,0.036864,0.108416,0.102304,11.7057,0.11312
+902,70.1514,14.2549,12.7037,0.069216,0.942496,0.013536,0.0112,0.03888,0.1064,0.104416,11.3045,0.113056
+903,72.4084,13.8105,12.6814,0.068448,0.90112,0.013344,0.011264,0.038208,0.10704,0.10256,11.3254,0.114016
+904,71.0568,14.0732,13.0842,0.069632,0.925312,0.012544,0.0104,0.038592,0.106048,0.103136,11.6931,0.125504
+905,68.5087,14.5967,12.6916,0.070432,0.911264,0.012288,0.012288,0.038528,0.105888,0.101376,11.3246,0.114944
+906,69.9215,14.3018,13.9285,0.069792,0.94736,0.012576,0.01088,0.038592,0.105696,0.103328,12.5194,0.120832
+907,64.6996,15.4561,13.0827,0.0688,0.928672,0.012288,0.01232,0.038528,0.106048,0.101184,11.7021,0.1128
+908,69.1939,14.4521,13.7009,0.08256,1.09098,0.012576,0.012096,0.037376,0.106208,0.102624,12.1427,0.113792
+909,64.0641,15.6094,13.045,0.069664,1.26358,0.012384,0.012128,0.03824,0.105184,0.102368,11.3275,0.113888
+910,77.3414,12.9297,13.0367,0.069632,0.899072,0.01232,0.012288,0.038368,0.106112,0.103296,11.6818,0.113856
+911,71.0273,14.0791,13.4946,0.067904,0.894432,0.012576,0.011936,0.03744,0.105984,0.102176,12.1509,0.111232
+912,68.5959,14.5781,12.6737,0.06832,0.91952,0.013472,0.011104,0.04016,0.11344,0.103616,11.2894,0.114624
+913,73.0802,13.6836,13.0892,0.068288,0.940032,0.012288,0.012288,0.037952,0.105408,0.10848,11.6911,0.113344
+914,70.6061,14.1631,13.5393,0.069216,0.932256,0.012288,0.012288,0.038944,0.114752,0.10432,12.1421,0.11312
+915,67.7249,14.7656,12.7914,0.06912,1.02186,0.012896,0.013376,0.037824,0.10624,0.102656,11.3132,0.114304
+916,70.1562,14.2539,13.1524,0.07168,1.01312,0.012608,0.011808,0.037824,0.107936,0.10304,11.6818,0.11264
+917,65.4773,15.2725,13.2485,0.104448,1.43155,0.01344,0.011296,0.038528,0.104672,0.102432,11.3288,0.113344
+918,72.7324,13.749,12.7611,0.070784,0.999744,0.012672,0.011648,0.037696,0.106528,0.102368,11.305,0.114688
+919,70.0075,14.2842,13.9868,0.069632,0.940032,0.01232,0.012288,0.038624,0.118496,0.110336,12.5694,0.115744
+920,65.9836,15.1553,13.1246,0.069664,0.954368,0.012288,0.011936,0.037184,0.10576,0.103008,11.7147,0.115712
+921,71.2546,14.0342,13.4964,0.068896,0.891552,0.01248,0.012288,0.038304,0.105056,0.102368,12.1529,0.112608
+922,69.0912,14.4736,13.0355,0.069248,0.89264,0.012576,0.011968,0.037568,0.106528,0.105888,11.6861,0.112992
+923,70.8111,14.1221,13.5272,0.06816,0.892544,0.012704,0.012256,0.038592,0.10624,0.100928,12.1815,0.11424
+924,68.1032,14.6836,12.6467,0.06784,0.892288,0.012608,0.012096,0.037376,0.104448,0.104448,11.2968,0.118784
+925,70.9387,14.0967,13.1175,0.06912,0.934048,0.012544,0.012032,0.037216,0.106592,0.10224,11.731,0.112672
+926,69.0958,14.4727,13.6541,0.08048,0.981248,0.012288,0.020352,0.051328,0.116736,0.104,12.1738,0.11392
+927,67.4394,14.8281,12.6954,0.069056,0.92016,0.012256,0.012096,0.038112,0.105472,0.102368,11.3213,0.11456
+928,69.8976,14.3066,13.1435,0.067584,1.01376,0.01232,0.012256,0.036864,0.106528,0.104,11.6761,0.114112
+929,73.6744,13.5732,12.8205,0.0688,1.04941,0.014336,0.012032,0.03712,0.106528,0.102272,11.3153,0.11472
+930,71.8344,13.9209,12.6768,0.068672,0.918368,0.012448,0.012096,0.038048,0.105472,0.104448,11.3028,0.114464
+931,72.2195,13.8467,13.0621,0.069408,0.909536,0.013504,0.011328,0.038656,0.105728,0.10112,11.6993,0.113536
+932,66.1328,15.1211,13.441,0.069664,1.67114,0.01232,0.01168,0.03744,0.116768,0.103712,11.3047,0.113632
+933,72.6035,13.7734,12.685,0.068096,0.927552,0.012288,0.012288,0.03824,0.107168,0.1024,11.3029,0.11408
+934,73.3157,13.6396,13.0424,0.068352,0.917184,0.01264,0.011904,0.037216,0.10624,0.10464,11.6707,0.113536
+935,68.4996,14.5986,12.742,0.069536,0.970848,0.012288,0.01408,0.038208,0.106496,0.101344,11.3101,0.119072
+936,69.4755,14.3936,12.9882,0.070976,1.20493,0.022112,0.012256,0.055744,0.106496,0.102432,11.2988,0.114496
+937,72.1838,13.8535,14.0468,0.069632,1.00928,0.020896,0.027744,0.041888,0.106464,0.102016,12.5546,0.114304
+938,66.5713,15.0215,12.6911,0.069376,0.945952,0.012768,0.012256,0.036896,0.106496,0.10352,11.289,0.11488
+939,68.0037,14.7051,13.0683,0.069216,1.26813,0.022528,0.012288,0.054304,0.10544,0.102432,11.3192,0.114752
+940,73.9938,13.5146,13.0707,0.068992,0.925984,0.012608,0.012064,0.037344,0.106496,0.104,11.6903,0.112928
+941,71.2051,14.0439,13.5273,0.067808,0.913408,0.01232,0.012288,0.03696,0.1064,0.102112,12.1629,0.113024
+942,67.5952,14.7939,12.6703,0.069632,0.916768,0.012576,0.011744,0.037856,0.106496,0.1024,11.2988,0.114016
+943,73.1167,13.6768,13.0581,0.069056,0.909792,0.012416,0.012032,0.038592,0.106272,0.10112,11.6961,0.112672
+944,69.6078,14.3662,13.5516,0.067584,0.94208,0.01232,0.012256,0.03808,0.105312,0.10368,12.1556,0.114656
+945,66.6753,14.998,13.8486,0.069504,1.17939,0.012672,0.013312,0.049856,0.11296,0.102016,12.1942,0.114656
+946,67.1167,14.8994,13.0995,0.076224,0.927744,0.012288,0.012288,0.0384,0.106624,0.104192,11.7083,0.113376
+947,66.7754,14.9756,13.4754,0.071936,1.69142,0.012416,0.011712,0.03776,0.106464,0.102432,11.3273,0.11392
+948,68.4584,14.6074,12.8789,0.069536,1.10605,0.020448,0.012288,0.038848,0.106592,0.104032,11.3073,0.11376
+949,77.248,12.9453,13.1445,0.069184,0.986016,0.01232,0.012256,0.038432,0.106976,0.1024,11.692,0.124928
+950,68.9795,14.4971,12.6717,0.071808,0.924,0.012608,0.010208,0.038848,0.104576,0.103424,11.2888,0.117504
+951,73.0959,13.6807,12.6982,0.069312,0.91152,0.012608,0.010816,0.038848,0.107616,0.10256,11.3215,0.123424
+952,73.2213,13.6572,13.0647,0.068128,0.914624,0.012544,0.012,0.037728,0.106528,0.104416,11.689,0.119776
+953,68.6005,14.5771,12.6775,0.072064,0.908448,0.01264,0.011776,0.037888,0.106496,0.10192,11.3044,0.121824
+954,71.7589,13.9355,12.6505,0.06976,0.917504,0.012576,0.011616,0.0376,0.106496,0.103712,11.2763,0.114912
+955,68.6741,14.5615,14.1906,0.076864,1.16189,0.016096,0.021056,0.038784,0.104576,0.102304,12.5543,0.114688
+956,64.8471,15.4209,12.8387,0.069024,1.07786,0.01344,0.0144,0.037728,0.105536,0.107168,11.2987,0.114848
+957,71.7841,13.9307,13.0324,0.068512,1.2568,0.021056,0.011936,0.037312,0.105888,0.10096,11.3153,0.114592
+958,73.5474,13.5967,13.0264,0.068736,0.903456,0.012576,0.012,0.037472,0.10592,0.10272,11.6698,0.11376
+959,71.215,14.042,13.5532,0.06928,0.901344,0.012416,0.01216,0.037056,0.106432,0.1024,12.1979,0.114208
+960,67.5506,14.8037,13.12,0.068128,1.00342,0.013408,0.011328,0.03872,0.10448,0.104224,11.6631,0.11312
+961,70.919,14.1006,13.9203,0.069568,0.921664,0.013728,0.01232,0.03744,0.106432,0.101568,12.5443,0.11328
+962,65.5402,15.2578,13.2841,0.06832,1.15302,0.015392,0.011424,0.087936,0.106336,0.437728,11.2913,0.112672
+963,69.1845,14.4541,12.7418,0.069408,0.973024,0.01232,0.012256,0.03872,0.105728,0.103296,11.3126,0.114432
+964,72.0721,13.875,13.093,0.073408,0.95872,0.012768,0.012096,0.03856,0.105184,0.104256,11.6755,0.112576
+965,66.8276,14.9639,13.4385,0.068992,1.6657,0.013664,0.012032,0.03776,0.107968,0.102528,11.3156,0.11424
+966,72.434,13.8057,12.7001,0.069984,0.94368,0.012544,0.012256,0.03856,0.1072,0.10416,11.2884,0.123296
+967,70.6743,14.1494,13.1379,0.069632,0.999424,0.013504,0.011072,0.038752,0.106656,0.102432,11.6836,0.112864
+968,65.1856,15.3408,12.9752,0.07184,1.20202,0.012288,0.020032,0.037312,0.105824,0.103008,11.3084,0.114528
+969,76.6869,13.04,12.7448,0.069536,0.978208,0.012704,0.01216,0.037408,0.106464,0.10192,11.3127,0.113632
+970,70.5137,14.1816,14.0329,0.085312,1.02413,0.012608,0.010528,0.038304,0.105024,0.104128,12.5373,0.115616
+971,66.541,15.0283,12.7171,0.069664,0.963904,0.012576,0.011968,0.037568,0.106496,0.101824,11.297,0.116064
+972,72.8204,13.7324,12.7877,0.069536,1.03229,0.01232,0.012288,0.038656,0.104672,0.104096,11.2988,0.115072
+973,69.5133,14.3857,13.1379,0.0688,0.997728,0.012576,0.012032,0.037312,0.106048,0.101952,11.6868,0.114688
+974,73.2947,13.6436,13.5332,0.069088,0.935872,0.012608,0.012256,0.037568,0.105696,0.103168,12.1426,0.114368
+975,67.6309,14.7861,12.6689,0.0696,0.911008,0.012384,0.012192,0.037248,0.105728,0.10112,11.3063,0.113312
+976,68.2667,14.6484,14.4702,0.069632,1.11821,0.012288,0.015904,0.049632,0.112064,0.102976,12.8758,0.113728
+977,65.599,15.2441,13.7503,0.069632,1.1223,0.012288,0.012288,0.037984,0.113568,0.106496,12.1631,0.11264
+978,69.5463,14.3789,12.7314,0.06864,0.993248,0.013664,0.011072,0.038752,0.106496,0.10432,11.2805,0.114688
+979,73.3892,13.626,13.0542,0.06784,0.920672,0.01264,0.010848,0.038368,0.106336,0.101024,11.6838,0.11264
+980,67.7876,14.752,13.259,0.076512,1.50832,0.013088,0.011808,0.03888,0.106976,0.102656,11.2865,0.114208
+981,71.1358,14.0576,12.7492,0.069088,0.960512,0.01264,0.02304,0.038848,0.114752,0.104256,11.3133,0.112672
+982,71.2447,14.0361,13.0661,0.06928,0.923872,0.012448,0.012256,0.038912,0.106496,0.105824,11.6837,0.113312
+983,70.1082,14.2637,12.9393,0.069632,0.947552,0.012512,0.010688,0.038944,0.106464,0.103968,11.528,0.121504
+984,70.4409,14.1963,13.5596,0.069696,0.94816,0.013312,0.011392,0.038784,0.114176,0.104256,12.1448,0.115008
+985,68.2485,14.6523,13.9572,0.069824,0.9208,0.012576,0.012096,0.037568,0.10608,0.102016,12.5812,0.114976
+986,66.2783,15.0879,12.6965,0.068544,0.948256,0.012288,0.012288,0.038496,0.105888,0.103424,11.2919,0.115488
+987,73.1847,13.6641,12.6735,0.068032,0.907264,0.013408,0.011168,0.038496,0.105024,0.102304,11.3121,0.115744
+988,72.4751,13.7979,13.9089,0.072064,0.940608,0.013568,0.012224,0.037728,0.106368,0.102496,12.5111,0.112736
+989,59.249,16.8779,12.9147,0.068896,1.15581,0.012288,0.012288,0.038176,0.105184,0.102176,11.3072,0.11264
+990,78.4855,12.7412,12.7611,0.069568,0.99744,0.01232,0.012256,0.038208,0.105184,0.106464,11.305,0.114688
+991,70.7818,14.1279,13.2917,0.06784,1.0895,0.0136,0.01216,0.037728,0.106176,0.115008,11.735,0.114688
+992,71.7087,13.9453,13.546,0.06816,0.948224,0.01232,0.012256,0.038656,0.10592,0.103232,12.1426,0.114592
+993,67.174,14.8867,12.8268,0.067936,1.05155,0.01264,0.010816,0.038016,0.105408,0.11264,11.3132,0.114688
+994,73.3314,13.6367,13.063,0.06848,0.940032,0.013376,0.0112,0.0384,0.106464,0.102976,11.6695,0.11264
+995,70.3442,14.2158,13.3021,0.068032,1.1817,0.038112,0.018272,0.037824,0.10624,0.434432,11.3029,0.114624
+996,68.44,14.6113,12.8594,0.075776,1.10314,0.012576,0.011776,0.037824,0.106496,0.104448,11.2927,0.114688
+997,64.1725,15.583,13.2494,0.07648,1.07747,0.012288,0.012288,0.038528,0.120608,0.103008,11.6961,0.11264
+998,76.0208,13.1543,13.4331,0.068512,1.66502,0.01232,0.012352,0.038848,0.106592,0.10432,11.311,0.114144
+999,72.8929,13.7188,13.0684,0.069376,0.90704,0.012672,0.011552,0.037792,0.107712,0.101152,11.6975,0.123552
+1000,70.0938,14.2666,13.3713,0.071808,0.945248,0.01264,0.012768,0.038144,0.106912,0.102848,11.9624,0.118528
+1001,69.4803,14.3926,12.6501,0.07136,0.907616,0.012288,0.01216,0.03696,0.106528,0.103424,11.2855,0.114272
+1002,73.1272,13.6748,12.6598,0.069664,0.90656,0.012576,0.011968,0.037536,0.105824,0.10256,11.2973,0.115776
+1003,72.9293,13.7119,13.4001,0.069632,0.919584,0.01376,0.012192,0.037504,0.106496,0.1024,12.0228,0.115648
+1004,69.4049,14.4082,12.6714,0.07024,0.927744,0.01232,0.012288,0.038208,0.106208,0.102656,11.2872,0.114464
+1005,72.4751,13.7979,12.714,0.069632,0.931872,0.013472,0.01312,0.038208,0.105152,0.102336,11.3266,0.113632
+1006,71.7238,13.9424,13.9201,0.069696,0.929472,0.012608,0.011552,0.037568,0.105984,0.102944,12.5352,0.115072
+1007,65.7295,15.2139,12.982,0.084544,1.21446,0.012288,0.012288,0.036896,0.106304,0.10256,11.2959,0.1168
+1008,70.924,14.0996,12.8328,0.069632,1.0793,0.012288,0.012288,0.038944,0.106464,0.10352,11.2936,0.116736
+1009,69.769,14.333,13.1789,0.069344,1.01814,0.022528,0.012288,0.037888,0.105472,0.11264,11.6879,0.11264
+1010,70.504,14.1836,13.5689,0.06832,0.983072,0.012256,0.012288,0.036864,0.1064,0.103776,12.1331,0.112768
+1011,65.2188,15.333,12.7291,0.068544,0.982624,0.012256,0.010752,0.038112,0.105184,0.102048,11.2951,0.114528
+1012,77.1259,12.9658,13.1246,0.06768,1.00138,0.013376,0.01136,0.038432,0.104768,0.104,11.67,0.113664
+1013,70.6938,14.1455,13.5292,0.069632,0.926944,0.013088,0.012224,0.038496,0.104928,0.1024,12.1487,0.112768
+1014,67.837,14.7412,12.6939,0.069536,0.9568,0.012512,0.01216,0.038016,0.105152,0.108832,11.2763,0.114592
+1015,70.8258,14.1191,13.0558,0.069632,0.927744,0.012288,0.012288,0.0384,0.10672,0.102176,11.6734,0.11312
+1016,70.2621,14.2324,13.1954,0.06768,1.09507,0.037472,0.012288,0.038176,0.106304,0.43712,11.2883,0.112992
+1017,70.8601,14.1123,12.6525,0.069344,0.900768,0.012576,0.010592,0.038368,0.1064,0.102528,11.2987,0.113248
+1018,72.4699,13.7988,13.0253,0.069632,0.91328,0.012416,0.011936,0.037408,0.106304,0.1024,11.6593,0.11264
+1019,69.0027,14.4922,13.2196,0.069152,1.45046,0.013376,0.011296,0.038688,0.106656,0.102368,11.3132,0.114432
+1020,71.5534,13.9756,12.6562,0.069632,0.897024,0.012288,0.011552,0.037632,0.10784,0.104096,11.3015,0.114624
+1021,70.4022,14.2041,13.2321,0.069568,1.06707,0.012288,0.011968,0.03824,0.10656,0.114688,11.6989,0.1128
+1022,67.2578,14.8682,12.691,0.067744,0.946176,0.012288,0.012288,0.038816,0.10576,0.109376,11.2845,0.114048
+1023,76.7214,13.0342,13.0376,0.069632,0.897056,0.013568,0.011136,0.038752,0.106528,0.10352,11.6838,0.1136
+1024,70.0746,14.2705,13.3439,0.071744,0.89088,0.012288,0.01184,0.038432,0.107264,0.104448,11.9923,0.114688
+1025,69.8309,14.3203,12.6594,0.070208,0.887168,0.012288,0.012128,0.037024,0.105856,0.102304,11.3176,0.114784
+1026,73.3104,13.6406,12.632,0.069792,0.882816,0.01344,0.012224,0.037824,0.106496,0.103808,11.279,0.126624
+1027,73.0802,13.6836,13.0458,0.07072,0.895936,0.01344,0.010944,0.038816,0.106784,0.1024,11.6859,0.120832
+1028,68.8126,14.5322,12.6588,0.071616,0.917728,0.012544,0.010752,0.038528,0.105952,0.102848,11.2829,0.115968
+1029,73.3157,13.6396,12.6403,0.07072,0.889792,0.012288,0.012288,0.038528,0.104864,0.102144,11.2946,0.11504
+1030,72.0569,13.8779,13.865,0.069632,0.912832,0.012608,0.01216,0.037248,0.106496,0.116768,12.4805,0.116736
+1031,65.9709,15.1582,12.7575,0.06816,1.00547,0.012288,0.01232,0.038368,0.10496,0.104096,11.2951,0.116736
+1032,67.0947,14.9043,12.7782,0.068288,1.0281,0.011872,0.020448,0.038368,0.106656,0.103232,11.2841,0.117152
+1033,78.7511,12.6982,13.0557,0.067904,0.925376,0.012608,0.012288,0.036864,0.10608,0.100768,11.6789,0.114944
+1034,70.9436,14.0957,13.5393,0.069632,0.929792,0.012288,0.012288,0.03856,0.1048,0.10368,12.1536,0.114688
+1035,68.6787,14.5605,12.6464,0.069152,0.896896,0.01264,0.011904,0.037504,0.1064,0.102496,11.2941,0.115264
+1036,72.0619,13.877,13.0541,0.068864,0.932576,0.01248,0.012288,0.038496,0.104864,0.104,11.6669,0.113632
+1037,71.3688,14.0117,13.5513,0.068288,0.901088,0.013472,0.011328,0.038688,0.118528,0.102272,12.1839,0.113728
+1038,68.3532,14.6299,12.6718,0.068384,0.935072,0.012608,0.011904,0.037792,0.10592,0.103008,11.2838,0.11328
+1039,72.5521,13.7832,14.3171,0.068608,0.930816,0.0136,0.012064,0.03776,0.10576,0.101184,12.9343,0.113024
+1040,64.0841,15.6045,13.5892,0.068256,0.9744,0.012768,0.012128,0.038176,0.113504,0.122848,12.134,0.113024
+1041,67.882,14.7314,12.7609,0.069312,1.00794,0.013504,0.011008,0.0384,0.105024,0.1024,11.2988,0.114496
+1042,68.8218,14.5303,13.383,0.07504,1.24208,0.013472,0.011104,0.038912,0.106496,0.104448,11.6777,0.113792
+1043,67.2225,14.876,13.4615,0.069248,1.7023,0.012288,0.012288,0.038208,0.105152,0.101792,11.3027,0.117536
+1044,64.9211,15.4033,12.8676,0.069632,1.10592,0.026496,0.012352,0.048928,0.104736,0.102496,11.2819,0.115136
+1045,80.2822,12.4561,13.4062,0.071296,0.928128,0.012288,0.012224,0.038144,0.1064,0.10128,12.0209,0.115584
+1046,65.423,15.2852,12.8205,0.071168,1.06138,0.013376,0.012864,0.037248,0.106496,0.104256,11.298,0.11568
+1047,72.5932,13.7754,12.7857,0.069632,1.024,0.012288,0.01232,0.038784,0.104544,0.102304,11.3063,0.115488
+1048,74.2729,13.4639,13.9598,0.070368,0.958752,0.01232,0.012256,0.038336,0.105056,0.109632,12.5367,0.116352
+1049,66.0092,15.1494,12.7796,0.069088,0.97952,0.022496,0.014336,0.060512,0.111168,0.100704,11.3064,0.115296
+1050,72.7118,13.7529,12.7017,0.069376,0.952576,0.01232,0.011904,0.037216,0.105952,0.102432,11.2945,0.115392
+1051,72.8826,13.7207,13.1227,0.069504,0.941312,0.012608,0.012032,0.037696,0.106432,0.102336,11.7267,0.114144
+1052,69.9932,14.2871,13.5721,0.069632,0.974464,0.012576,0.012384,0.038912,0.108576,0.103968,12.1381,0.113472
+1053,67.2137,14.8779,13.91,0.067584,0.96464,0.012256,0.012288,0.037952,0.105408,0.102048,12.4949,0.112896
+1054,66.0177,15.1475,13.2257,0.068992,1.07587,0.013728,0.027232,0.038944,0.114656,0.1024,11.6706,0.113248
+1055,71.6184,13.9629,13.5717,0.069664,0.929376,0.012608,0.011808,0.037408,0.106624,0.10368,12.174,0.12656
+1056,68.0534,14.6943,12.7482,0.067904,0.966656,0.012288,0.020544,0.042944,0.108544,0.106496,11.3088,0.113952
+1057,70.7133,14.1416,13.1177,0.069888,0.985088,0.01232,0.012256,0.0384,0.107008,0.103712,11.6764,0.112672
+1058,65.7422,15.2109,13.4407,0.06816,1.70803,0.013504,0.011072,0.038496,0.104896,0.10384,11.2748,0.11792
+1059,72.4136,13.8096,12.6991,0.069632,0.917664,0.012288,0.012288,0.038912,0.106528,0.106464,11.311,0.124288
+1060,71.8596,13.916,13.1355,0.069632,1.00352,0.012288,0.012288,0.038752,0.10656,0.102496,11.6756,0.114304
+1061,71.339,14.0176,12.6502,0.073376,0.91072,0.012576,0.012992,0.036864,0.106496,0.1024,11.2804,0.114368
+1062,72.4136,13.8096,12.6585,0.069856,0.925696,0.012288,0.012288,0.038624,0.104704,0.102464,11.2778,0.114784
+1063,73.2161,13.6582,13.7728,0.069568,0.909376,0.01232,0.012256,0.038816,0.106496,0.102208,12.1366,0.385152
+1064,65.9666,15.1592,12.6611,0.06896,0.930784,0.01232,0.012288,0.038176,0.105152,0.103936,11.2727,0.116736
+1065,71.1012,14.0645,12.9162,0.069728,1.16531,0.012288,0.012288,0.038144,0.105152,0.100416,11.2961,0.116768
+1066,65.6831,15.2246,13.1884,0.069632,1.04362,0.027488,0.012288,0.03808,0.107328,0.104128,11.6616,0.124192
+1067,75.9306,13.1699,13.6058,0.068512,1.00147,0.01232,0.012256,0.036864,0.106496,0.103584,12.1512,0.11312
+1068,66.3384,15.0742,13.1523,0.06912,1.00141,0.0272,0.02048,0.038912,0.106176,0.108096,11.6681,0.112832
+1069,71.7589,13.9355,13.8721,0.069536,0.905312,0.012288,0.01232,0.038528,0.1048,0.1024,12.5133,0.113664
+1070,65.5025,15.2666,13.5083,0.069504,0.921728,0.013472,0.011072,0.036896,0.1064,0.116224,12.1197,0.113344
+1071,70.6889,14.1465,12.6661,0.07168,0.917024,0.012608,0.011936,0.037408,0.106464,0.103424,11.2916,0.11392
+1072,71.2397,14.0371,13.1921,0.06848,1.07222,0.012576,0.012128,0.037664,0.106432,0.102496,11.6665,0.113632
+1073,70.6646,14.1514,13.2215,0.069376,1.13674,0.037024,0.013312,0.037888,0.106304,0.4344,11.2722,0.114304
+1074,70.3152,14.2217,12.7323,0.075776,0.9984,0.0128,0.011808,0.037888,0.106464,0.10416,11.2704,0.114592
+1075,73.0907,13.6816,13.0713,0.068576,0.927744,0.012256,0.012288,0.038336,0.105056,0.103744,11.6903,0.112992
+1076,66.4331,15.0527,13.3172,0.077824,1.58518,0.013472,0.012128,0.037856,0.107904,0.10304,11.2659,0.113888
+1077,67.9721,14.7119,12.9516,0.069472,1.18909,0.02144,0.013408,0.044,0.106432,0.103648,11.2894,0.114688
+1078,71.5684,13.9727,13.1381,0.06976,0.974816,0.01232,0.012288,0.038912,0.116736,0.10448,11.6956,0.11312
+1079,73.754,13.5586,12.6669,0.07216,0.919584,0.012576,0.01216,0.038016,0.10544,0.1024,11.2904,0.114208
+1080,72.8826,13.7207,12.6545,0.070816,0.905152,0.012544,0.010912,0.038336,0.107072,0.104288,11.2785,0.12688
+1081,72.5469,13.7842,13.1176,0.069632,0.995328,0.012288,0.012192,0.038816,0.106432,0.102656,11.6687,0.111488
+1082,69.7358,14.3398,12.7221,0.071776,0.979168,0.027232,0.012224,0.037952,0.105472,0.10448,11.2681,0.115744
+1083,72.4289,13.8066,13.1215,0.069632,0.972832,0.013536,0.011264,0.038656,0.106336,0.116288,11.6804,0.112608
+1084,70.9436,14.0957,14.7533,0.07104,0.950784,0.012416,0.026176,0.037312,0.106176,0.10272,13.3337,0.112928
+1085,63.4881,15.751,12.6755,0.068288,0.92368,0.012256,0.012256,0.03792,0.105472,0.101952,11.2984,0.115328
+1086,72.0518,13.8789,12.6766,0.069632,0.946016,0.01248,0.012224,0.037952,0.10544,0.104064,11.2741,0.114688
+1087,71.7841,13.9307,13.1268,0.069088,0.999968,0.01232,0.012288,0.036992,0.106336,0.101696,11.6743,0.113856
+1088,71.6585,13.9551,13.5164,0.068832,0.951072,0.012288,0.012288,0.03824,0.106336,0.102912,12.1101,0.114272
+1089,68.8265,14.5293,12.6382,0.069248,0.899456,0.012288,0.011904,0.037248,0.105888,0.102304,11.2883,0.111616
+1090,73.3314,13.6367,13.0166,0.069632,0.900576,0.012576,0.011872,0.037536,0.1064,0.102496,11.6613,0.11424
+1091,70.2621,14.2324,13.5127,0.069248,0.905024,0.01264,0.012064,0.037312,0.106304,0.101792,12.1557,0.11264
+1092,68.2121,14.6602,13.7744,0.06928,0.962816,0.012416,0.012256,0.036864,0.106496,0.321536,12.1385,0.114208
+1093,67.1035,14.9023,13.0888,0.08128,0.950624,0.012576,0.010272,0.0384,0.104992,0.102336,11.6756,0.11264
+1094,66.167,15.1133,12.8943,0.06832,1.16326,0.015744,0.012096,0.043008,0.106432,0.103296,11.2681,0.113984
+1095,75.1174,13.3125,12.8699,0.084992,1.08752,0.012288,0.022528,0.03888,0.1184,0.102784,11.2883,0.114176
+1096,70.4409,14.1963,13.1675,0.069952,1.02362,0.019136,0.02688,0.038912,0.112672,0.104416,11.659,0.11296
+1097,69.9167,14.3027,12.6505,0.069536,0.898816,0.012576,0.012192,0.037024,0.108096,0.102304,11.2963,0.113632
+1098,72.2501,13.8408,12.6646,0.069152,0.944096,0.012608,0.012128,0.037216,0.108448,0.103648,11.2623,0.115008
+1099,71.9303,13.9023,13.0706,0.069376,0.942592,0.012288,0.012288,0.036864,0.107712,0.102912,11.6738,0.112768
+1100,69.7738,14.332,12.712,0.06864,0.96016,0.012608,0.012064,0.038144,0.107264,0.103712,11.2907,0.118752
+1101,72.7169,13.752,12.6662,0.071616,0.9128,0.01248,0.010816,0.038816,0.108032,0.102944,11.2944,0.114304
+1102,72.4187,13.8086,13.0524,0.068096,0.917472,0.01232,0.013536,0.047904,0.107744,0.1032,11.6592,0.122912
+1103,69.0912,14.4736,12.7515,0.072288,1.00774,0.013472,0.011264,0.038336,0.104864,0.1024,11.2877,0.113376
+1104,73.685,13.5713,12.7533,0.0696,0.995808,0.01232,0.012256,0.038752,0.105696,0.10336,11.2886,0.126976
+1105,71.7841,13.9307,13.1988,0.070688,1.03318,0.022272,0.011776,0.037632,0.106496,0.102048,11.7005,0.11424
+1106,68.9887,14.4951,12.7527,0.072768,0.998336,0.012288,0.012288,0.038912,0.106272,0.110368,11.287,0.114464
+1107,70.6646,14.1514,13.2076,0.071456,1.03651,0.028672,0.012352,0.038272,0.113248,0.105568,11.6865,0.115008
+1108,71.6485,13.957,14.6985,0.070912,0.912128,0.012288,0.012288,0.03824,0.10512,0.102432,13.3323,0.112864
+1109,63.567,15.7314,12.6708,0.068224,0.921664,0.013536,0.012096,0.037792,0.106496,0.102112,11.2945,0.1144
+1110,72.3317,13.8252,12.6812,0.069504,0.956544,0.012288,0.012288,0.038048,0.105312,0.104128,11.2684,0.114688
+1111,73.405,13.623,13.0806,0.069664,0.946144,0.012288,0.012288,0.037984,0.105376,0.1024,11.6818,0.112672
+1112,70.8356,14.1172,13.5544,0.068256,0.99328,0.012288,0.01232,0.03888,0.106496,0.1024,12.1078,0.112672
+1113,66.5973,15.0156,12.7999,0.069632,1.05475,0.012288,0.012256,0.038944,0.106464,0.102016,11.289,0.114592
+1114,70.9141,14.1016,13.2336,0.069216,1.12624,0.01264,0.012128,0.037248,0.106496,0.103712,11.6518,0.114112
+1115,71.9708,13.8945,13.9033,0.0688,0.934528,0.01248,0.012032,0.038176,0.10544,0.102016,12.5157,0.114144
+1116,66.1413,15.1191,13.2276,0.068128,1.16522,0.014432,0.012288,0.03808,0.10528,0.429152,11.2813,0.11376
+1117,70.1178,14.2617,13.1318,0.0696,0.999456,0.012288,0.012224,0.03824,0.105184,0.10368,11.6764,0.114688
+1118,68.55,14.5879,13.2452,0.068448,1.51347,0.013632,0.011968,0.037888,0.106528,0.10352,11.2751,0.11456
+1119,70.0698,14.2715,12.8379,0.069632,1.08131,0.012352,0.012256,0.038688,0.106368,0.102752,11.3003,0.114208
+1120,72.7997,13.7363,13.1179,0.06976,0.985408,0.012288,0.012288,0.038496,0.106944,0.103808,11.666,0.12288
+1121,70.8847,14.1074,12.6949,0.069632,0.94336,0.0128,0.010496,0.038944,0.106464,0.103584,11.2956,0.114016
+1122,71.4585,13.9941,12.7197,0.079872,0.97248,0.012608,0.011744,0.037472,0.10656,0.10416,11.2764,0.1184
+1123,72.5521,13.7832,13.1081,0.070272,0.97856,0.012576,0.011968,0.037504,0.106496,0.1024,11.6748,0.113536
+1124,70.2332,14.2383,12.7198,0.07168,0.989184,0.012288,0.012064,0.037088,0.1064,0.102176,11.2746,0.1144
+1125,71.6786,13.9512,12.7222,0.069632,0.986944,0.01248,0.01184,0.037312,0.105856,0.102496,11.2809,0.114688
+1126,72.194,13.8516,13.1072,0.070016,0.995008,0.012576,0.01184,0.03776,0.105632,0.10336,11.6572,0.113824
+1127,70.4458,14.1953,12.705,0.07168,0.94592,0.012544,0.02224,0.038176,0.105472,0.101824,11.2912,0.115904
+1128,71.6385,13.959,12.7304,0.069632,0.999424,0.012288,0.012288,0.036864,0.106176,0.10272,11.2763,0.114688
+1129,71.121,14.0605,13.9141,0.071296,1.0039,0.013344,0.011232,0.037984,0.105376,0.1024,12.4518,0.116736
+1130,67.1652,14.8887,12.6848,0.069088,0.969056,0.01248,0.012256,0.036896,0.106496,0.1024,11.2599,0.116224
+1131,72.7583,13.7441,13.9218,0.069408,0.94672,0.01232,0.012256,0.038368,0.121376,0.102112,12.505,0.114208
+1132,67.8775,14.7324,13.063,0.068448,0.954368,0.012288,0.013536,0.037536,0.104608,0.10384,11.6551,0.113312
+1133,71.2893,14.0273,13.5291,0.068864,0.943936,0.012576,0.010944,0.038432,0.104896,0.1024,12.1344,0.11264
+1134,67.5908,14.7949,12.675,0.0696,0.948256,0.012288,0.01392,0.037312,0.106016,0.102272,11.2707,0.114656
+1135,73.237,13.6543,13.058,0.069344,0.936224,0.013536,0.011104,0.038848,0.104448,0.102304,11.6696,0.112608
+1136,71.2496,14.0352,13.5112,0.06816,0.938016,0.012256,0.012288,0.038112,0.11344,0.1024,12.1135,0.113056
+1137,66.9544,14.9355,12.847,0.06944,1.09962,0.012576,0.012064,0.037152,0.108544,0.108512,11.2845,0.114592
+1138,73.4155,13.6211,13.0519,0.068864,0.93056,0.012128,0.012448,0.038176,0.11952,0.104224,11.6533,0.11264
+1139,70.8651,14.1113,13.5457,0.06944,0.936128,0.012352,0.012224,0.036864,0.116736,0.108544,12.1405,0.112832
+1140,68.5592,14.5859,12.6894,0.06864,0.96064,0.012608,0.011808,0.03792,0.106464,0.1024,11.2742,0.114688
+1141,70.8063,14.123,13.3673,0.069664,1.20211,0.01232,0.019776,0.04976,0.106304,0.10064,11.6941,0.11264
+1142,71.7288,13.9414,12.9765,0.069472,1.23338,0.01584,0.02512,0.038272,0.106208,0.10336,11.2701,0.114688
+1143,71.9404,13.9004,12.6763,0.069216,0.933568,0.012608,0.011776,0.037792,0.10592,0.1064,11.285,0.114048
+1144,72.5829,13.7773,13.1058,0.068256,0.987136,0.012288,0.012288,0.038784,0.104704,0.10432,11.6649,0.11312
+1145,70.5137,14.1816,12.8818,0.07168,1.12822,0.01456,0.012288,0.038944,0.106496,0.102304,11.2927,0.11456
+1146,72.4904,13.7949,12.6473,0.072224,0.923968,0.0136,0.010848,0.036992,0.106496,0.104448,11.264,0.114688
+1147,70.1082,14.2637,13.5741,0.069024,1.45622,0.012832,0.012224,0.038336,0.106784,0.102368,11.6637,0.112576
+1148,67.2004,14.8809,12.994,0.071712,1.25328,0.012352,0.012064,0.037088,0.10656,0.104032,11.2705,0.126368
+1149,71.0914,14.0664,12.8475,0.069984,1.08742,0.012352,0.015936,0.037312,0.106496,0.102432,11.2906,0.124928
+1150,73.1638,13.668,13.0766,0.070016,0.937952,0.012352,0.011872,0.037248,0.107648,0.103296,11.6812,0.114976
+1151,70.7085,14.1426,12.6628,0.06848,0.923648,0.012288,0.012288,0.038176,0.105184,0.1024,11.2845,0.11584
+1152,72.5624,13.7812,12.6545,0.069696,0.911296,0.012576,0.012288,0.038144,0.106464,0.1032,11.2783,0.122528
+1153,72.7997,13.7363,13.0432,0.069696,0.910688,0.012608,0.01184,0.037632,0.106464,0.102464,11.6777,0.114144
+1154,69.7928,14.3281,13.0297,0.070592,0.923584,0.012288,0.012288,0.03808,0.10528,0.104032,11.6494,0.114144
+1155,70.7769,14.1289,13.5352,0.069632,0.945504,0.012608,0.012128,0.037376,0.106368,0.101728,12.1349,0.115008
+1156,68.8357,14.5273,13.8837,0.069248,0.926048,0.012576,0.011872,0.037376,0.104448,0.104256,12.5032,0.114688
+1157,67.4128,14.834,12.6525,0.069472,0.91152,0.012288,0.012288,0.038208,0.105184,0.10352,11.2851,0.114944
+1158,73.0802,13.6836,12.6525,0.069664,0.925664,0.012384,0.012192,0.038464,0.104896,0.104224,11.2694,0.115616
+1159,72.1127,13.8672,13.1052,0.069504,0.944192,0.012416,0.012192,0.037984,0.107488,0.114176,11.6917,0.11552
+1160,70.9731,14.0898,13.5296,0.068608,0.944128,0.012288,0.012288,0.037952,0.105408,0.103872,12.132,0.113088
+1161,69.1331,14.4648,12.654,0.069632,0.91136,0.012288,0.012288,0.037984,0.105376,0.10176,11.2892,0.114048
+1162,73.1324,13.6738,13.0274,0.068736,0.913824,0.01264,0.011456,0.037824,0.106144,0.102752,11.6606,0.113408
+1163,69.3485,14.4199,13.507,0.068416,0.913376,0.01232,0.011744,0.037376,0.106304,0.102048,12.1425,0.112928
+1164,66.2955,15.084,12.6976,0.06928,0.964992,0.013728,0.010816,0.0488,0.106496,0.102752,11.2671,0.1136
+1165,71.2397,14.0371,13.2014,0.0696,1.04246,0.024,0.022528,0.03744,0.106048,0.1008,11.6859,0.11264
+1166,72.7479,13.7461,13.5784,0.068384,0.961856,0.012608,0.012128,0.037376,0.1064,0.104448,12.1611,0.11408
+1167,66.2955,15.084,12.7386,0.069536,0.997472,0.012288,0.012288,0.036896,0.10752,0.101344,11.2865,0.114688
+1168,72.4084,13.8105,13.0482,0.069504,0.936832,0.012288,0.012256,0.038208,0.105216,0.104384,11.6552,0.114304
+1169,68.3213,14.6367,13.0533,0.069664,1.31478,0.016032,0.012128,0.038752,0.1064,0.102592,11.2789,0.11408
+1170,72.0619,13.877,12.6894,0.069632,0.962208,0.01264,0.012,0.037152,0.108192,0.102752,11.2714,0.11344
+1171,69.603,14.3672,13.609,0.071488,1.47475,0.012288,0.012288,0.038912,0.107712,0.102848,11.6719,0.116736
+1172,69.4803,14.3926,12.7105,0.068352,0.980128,0.012576,0.011872,0.037696,0.106304,0.102752,11.2742,0.116608
+1173,71.2794,14.0293,12.9063,0.071104,1.17565,0.012576,0.012064,0.03728,0.106432,0.102016,11.2747,0.114496
+1174,72.245,13.8418,13.8873,0.069664,0.924704,0.012576,0.012128,0.037472,0.106016,0.119008,12.4891,0.116704
+1175,67.3773,14.8418,12.6895,0.069664,0.947552,0.012608,0.012,0.037472,0.104448,0.1024,11.2878,0.115552
+1176,72.5726,13.7793,12.7167,0.068608,0.99328,0.012288,0.012288,0.037024,0.10624,0.10352,11.267,0.11648
+1177,72.2348,13.8438,13.9414,0.070016,0.953888,0.01264,0.012064,0.037504,0.106016,0.102304,12.5319,0.115072
+1178,66.2612,15.0918,13.95,0.068608,1.0015,0.012288,0.012256,0.038048,0.105312,0.103424,12.4959,0.11264
+1179,67.4394,14.8281,12.6403,0.069376,0.903456,0.013472,0.011296,0.038496,0.10576,0.10128,11.2835,0.113632
+1180,71.5784,13.9707,13.058,0.0696,0.9112,0.01248,0.01184,0.037312,0.106496,0.1024,11.6939,0.1128
+1181,71.6685,13.9531,13.4627,0.068736,0.899808,0.01248,0.012096,0.038208,0.105312,0.1024,12.1098,0.113856
+1182,66.2783,15.0879,12.7713,0.069632,1.0199,0.0184,0.026656,0.038528,0.112192,0.108512,11.2644,0.113152
+1183,69.9645,14.293,13.2178,0.069472,1.08339,0.01248,0.012,0.03712,0.104448,0.1024,11.6836,0.112928
+1184,68.8357,14.5273,13.7451,0.068896,1.14122,0.012448,0.011936,0.037248,0.106464,0.104448,12.1487,0.113728
+1185,64.8676,15.416,13.1346,0.068352,1.01949,0.012576,0.011712,0.0376,0.106464,0.103968,11.6618,0.11264
+1186,74.1706,13.4824,13.1133,0.069472,1.00352,0.012448,0.011936,0.03856,0.106656,0.110656,11.6465,0.113568
+1187,69.2172,14.4473,12.7309,0.068384,0.978944,0.012096,0.019648,0.041984,0.112128,0.10096,11.2823,0.114464
+1188,71.2794,14.0293,12.6571,0.069536,0.93856,0.01232,0.012256,0.038592,0.105984,0.1024,11.2628,0.114656
+1189,72.6241,13.7695,13.9346,0.069472,0.9832,0.01232,0.012288,0.038176,0.105184,0.102368,12.4969,0.11472
+1190,66.2269,15.0996,12.7019,0.069024,0.991168,0.012352,0.011072,0.03808,0.105248,0.10432,11.2538,0.116832
+1191,71.3489,14.0156,12.682,0.068256,0.950272,0.01232,0.012288,0.038144,0.105216,0.102368,11.2783,0.114816
+1192,72.4392,13.8047,13.8916,0.069632,0.945312,0.01264,0.012096,0.037568,0.106496,0.103712,12.4915,0.112672
+1193,65.7169,15.2168,12.927,0.07568,1.17523,0.012608,0.017888,0.037504,0.105824,0.117408,11.2715,0.113376
+1194,73.258,13.6504,12.7693,0.068992,1.03114,0.012288,0.012288,0.038304,0.105024,0.10416,11.2826,0.11456
+1195,73.4577,13.6133,13.054,0.0696,0.931872,0.013472,0.011296,0.03872,0.10624,0.10192,11.6661,0.114688
+1196,70.9436,14.0957,13.5278,0.06832,0.957728,0.012544,0.01184,0.03744,0.106496,0.102752,12.118,0.112704
+1197,67.8415,14.7402,12.7427,0.069632,1.00314,0.012544,0.012096,0.037184,0.106048,0.102208,11.2866,0.113184
+1198,72.6447,13.7656,13.9083,0.06912,0.942624,0.012544,0.012096,0.03712,0.106496,0.114688,12.5008,0.1128
+1199,65.8352,15.1895,12.7406,0.069568,0.974912,0.012288,0.01232,0.046592,0.12928,0.103808,11.2783,0.113536
+1200,67.8505,14.7383,12.6968,0.067584,0.9728,0.01232,0.012256,0.038912,0.113824,0.103264,11.2614,0.114496
+1201,77.6463,12.8789,14.0716,0.06928,1.11613,0.012672,0.012288,0.03872,0.112832,0.104224,12.4923,0.113248
+1202,64.8183,15.4277,13.0376,0.07168,1.31686,0.015424,0.011296,0.038816,0.106496,0.103936,11.2596,0.113472
+1203,72.0619,13.877,12.6732,0.069504,0.936,0.012576,0.012736,0.038112,0.106528,0.102976,11.2806,0.11424
+1204,72.296,13.832,13.054,0.069248,0.950112,0.01264,0.011872,0.037536,0.107712,0.103232,11.6488,0.112896
+1205,66.5454,15.0273,13.4546,0.069632,1.70595,0.01232,0.01216,0.03872,0.106144,0.101024,11.2821,0.126496
+1206,74.0848,13.498,12.6577,0.069632,0.925696,0.01232,0.013344,0.037824,0.106496,0.104256,11.2724,0.115744
+1207,69.7073,14.3457,13.1298,0.069632,1.02195,0.013408,0.011168,0.038848,0.106464,0.102144,11.6529,0.113216
+1208,69.8309,14.3203,13.9798,0.069472,1.05686,0.012512,0.012096,0.03712,0.105952,0.102976,12.466,0.116768
+1209,67.2004,14.8809,13.5639,0.069664,0.917472,0.01232,0.012288,0.03888,0.105984,0.102208,12.1915,0.113632
+1210,68.4858,14.6016,13.0273,0.069632,0.931776,0.012384,0.012256,0.038208,0.105152,0.1024,11.6408,0.114688
+1211,71.0716,14.0703,13.4881,0.068704,0.916384,0.013408,0.011168,0.036864,0.106496,0.102432,12.12,0.11264
+1212,68.8727,14.5195,12.6386,0.06912,0.919712,0.012576,0.012064,0.037504,0.106496,0.103744,11.2637,0.113632
+1213,72.9449,13.709,13.9203,0.069664,0.931552,0.012576,0.012,0.037248,0.106368,0.1024,12.5356,0.112896
+1214,66.7797,14.9746,12.6587,0.069408,0.93648,0.012352,0.012288,0.038432,0.106272,0.10288,11.2662,0.114368
+1215,71.1309,14.0586,12.7957,0.069056,1.04496,0.012384,0.012256,0.036896,0.106496,0.101632,11.2975,0.114496
+1216,70.1754,14.25,14.0413,0.06912,1.08838,0.026624,0.012288,0.03856,0.106208,0.106592,12.4803,0.11328
+1217,67.5284,14.8086,12.7342,0.0688,1.00026,0.012288,0.012288,0.03824,0.105152,0.102368,11.2815,0.113344
+1218,73.2999,13.6426,12.7163,0.067712,0.994944,0.01264,0.01184,0.037664,0.10624,0.102656,11.2681,0.114496
+1219,73.0073,13.6973,13.9038,0.068128,0.94192,0.012288,0.011808,0.037344,0.106432,0.102464,12.501,0.122464
+1220,65.9964,15.1523,12.7019,0.068192,0.980992,0.012288,0.012192,0.03696,0.108224,0.10416,11.2646,0.114272
+1221,72.388,13.8145,12.6936,0.068224,0.95184,0.01264,0.01168,0.0376,0.106496,0.1024,11.2886,0.114176
+1222,69.1705,14.457,13.0955,0.06992,0.999744,0.01232,0.012288,0.03888,0.107552,0.10272,11.6393,0.112832
+1223,70.8552,14.1133,13.3791,0.071712,0.921568,0.01232,0.012224,0.036896,0.106528,0.10224,11.9994,0.116256
+1224,68.4767,14.6035,12.7141,0.069856,0.999424,0.012512,0.011968,0.038624,0.10624,0.103232,11.2579,0.114432
+1225,72.7583,13.7441,13.9169,0.070304,0.948224,0.012544,0.012064,0.037088,0.106304,0.10192,12.512,0.116448
+1226,66.3041,15.082,12.7326,0.067808,1.00909,0.012608,0.012096,0.03728,0.105856,0.10304,11.2697,0.115168
+1227,72.9657,13.7051,12.6812,0.068896,0.935808,0.012672,0.012192,0.03744,0.106208,0.102432,11.2909,0.114688
+1228,69.6978,14.3477,13.1588,0.068,1.04653,0.012288,0.012288,0.038624,0.104736,0.1024,11.6572,0.116736
+1229,73.5632,13.5938,13.5393,0.069344,0.948512,0.012288,0.012288,0.037888,0.106592,0.101312,12.138,0.113056
+1230,65.7506,15.209,12.9411,0.06928,1.20285,0.018432,0.028064,0.037472,0.106304,0.102592,11.262,0.114144
+1231,73.0489,13.6895,13.1615,0.069344,1.02432,0.012256,0.012288,0.046432,0.10512,0.1024,11.6756,0.113728
+1232,70.5137,14.1816,13.5346,0.06944,0.95584,0.01264,0.01184,0.03776,0.105536,0.11152,12.116,0.114048
+1233,68.7156,14.5527,12.6569,0.067904,0.91696,0.01264,0.012128,0.037152,0.105568,0.104384,11.2875,0.112672
+1234,72.1228,13.8652,13.9734,0.069088,0.98768,0.013536,0.012096,0.041952,0.106496,0.1024,12.527,0.113152
+1235,66.6406,15.0059,12.7254,0.069632,0.976672,0.012544,0.012128,0.038048,0.106848,0.10208,11.2936,0.113824
+1236,71.9,13.9082,12.7083,0.068,0.99328,0.013472,0.011104,0.038912,0.105984,0.102912,11.2601,0.114528
+1237,73.0073,13.6973,13.9366,0.069248,0.971136,0.012288,0.012288,0.038912,0.1064,0.102496,12.5107,0.113152
+1238,66.5886,15.0176,12.6937,0.069408,0.973568,0.01232,0.012288,0.038176,0.10672,0.10288,11.264,0.114336
+1239,72.2246,13.8457,13.9141,0.069664,0.963776,0.012736,0.011808,0.037696,0.108,0.10224,12.4935,0.114656
+1240,66.632,15.0078,13.14,0.069632,1.04448,0.01232,0.012256,0.038912,0.10624,0.102816,11.6384,0.11488
+1241,71.042,14.0762,12.6603,0.07168,0.920992,0.012544,0.01264,0.03824,0.10512,0.1024,11.2804,0.11632
+1242,72.6757,13.7598,12.6773,0.069888,0.964576,0.013376,0.0112,0.0384,0.104992,0.103936,11.2563,0.114688
+1243,71.5583,13.9746,13.967,0.06992,0.942272,0.01232,0.012256,0.038464,0.104992,0.102304,12.5686,0.115936
+1244,66.8058,14.9688,12.671,0.069152,0.950464,0.012608,0.012256,0.036864,0.106496,0.103552,11.2628,0.116736
+1245,72.8204,13.7324,12.6956,0.068896,0.956736,0.012416,0.012,0.03744,0.106496,0.102432,11.2835,0.115616
+1246,72.7376,13.748,13.9018,0.069632,0.94208,0.01232,0.012288,0.038816,0.106176,0.102464,12.5034,0.114688
+1247,66.8582,14.957,12.6607,0.068992,0.938272,0.012544,0.010368,0.0384,0.104928,0.10192,11.2686,0.116736
+1248,71.6485,13.957,12.6614,0.068288,0.945568,0.012576,0.011808,0.037664,0.106496,0.10256,11.2597,0.116736
+1249,73.871,13.5371,13.9006,0.06848,0.947744,0.012544,0.010656,0.038592,0.10576,0.101216,12.5021,0.113536
+1250,66.1841,15.1094,12.795,0.069632,1.09363,0.01344,0.0112,0.038688,0.105824,0.103264,11.2448,0.114496
+1251,73.0177,13.6953,12.7258,0.069056,0.993408,0.012608,0.012608,0.038304,0.105056,0.1024,11.2781,0.11424
+1252,71.2496,14.0352,13.1174,0.068928,0.993984,0.026176,0.012256,0.04736,0.108192,0.113216,11.6341,0.113184
+1253,71.7891,13.9297,13.4936,0.069664,0.915424,0.012288,0.011648,0.037504,0.10608,0.10192,12.1251,0.113984
+1254,68.8357,14.5273,13.0253,0.069152,0.924096,0.012352,0.012256,0.036864,0.106496,0.102432,11.6487,0.112928
+1255,71.2001,14.0449,14.6897,0.068864,0.90192,0.012448,0.012288,0.038496,0.10624,0.103072,13.3325,0.11392
+1256,63.1319,15.8398,12.67,0.068704,0.952768,0.012736,0.01232,0.038112,0.106528,0.103168,11.2615,0.114112
+1257,71.4186,14.002,12.8175,0.069664,1.064,0.012576,0.021024,0.038784,0.106752,0.102368,11.2886,0.113728
+1258,71.9708,13.8945,13.9655,0.068928,1.0207,0.012352,0.011296,0.037856,0.107968,0.104224,12.4895,0.112608
+1259,66.1328,15.1211,12.7513,0.069664,1.00931,0.012608,0.012032,0.0376,0.108032,0.102592,11.2848,0.11472
+1260,72.2654,13.8379,12.7111,0.069664,0.999232,0.012448,0.012224,0.036928,0.106528,0.104192,11.2559,0.114048
+1261,71.1309,14.0586,13.1855,0.070336,1.06086,0.012288,0.012288,0.03856,0.104896,0.102304,11.6695,0.114464
+1262,69.622,14.3633,12.7466,0.073728,1.01376,0.01232,0.012288,0.036832,0.106496,0.10432,11.2723,0.114496
+1263,74.6029,13.4043,12.6601,0.069664,0.915424,0.012288,0.012288,0.038464,0.105024,0.101792,11.2907,0.114432
+1264,72.7997,13.7363,13.8772,0.069664,0.921216,0.012576,0.011968,0.037248,0.106496,0.104256,12.4991,0.114752
+1265,66.9894,14.9277,12.6718,0.068416,0.92368,0.012288,0.012256,0.038496,0.104896,0.101824,11.2951,0.11488
+1266,72.1737,13.8555,12.7925,0.070144,1.06874,0.012576,0.01216,0.038656,0.105088,0.103968,11.2656,0.115584
+1267,73.0177,13.6953,13.9249,0.069888,0.967392,0.012288,0.012288,0.036864,0.106496,0.1024,12.5029,0.114368
+1268,66.6406,15.0059,12.712,0.068864,0.993632,0.012576,0.011936,0.037472,0.106144,0.102592,11.2621,0.116704
+1269,72.5212,13.7891,12.6411,0.068416,0.90112,0.012288,0.012288,0.038656,0.106048,0.101056,11.2681,0.13312
+1270,67.4483,14.8262,14.2643,0.069632,0.948256,0.012256,0.012288,0.0384,0.10496,0.1024,12.8631,0.113024
+1271,64.257,15.5625,13.6684,0.068832,1.06074,0.01264,0.012064,0.039744,0.112672,0.104416,12.1446,0.11264
+1272,67.0157,14.9219,12.7126,0.068384,0.993312,0.013568,0.012128,0.03776,0.106272,0.104544,11.2621,0.114528
+1273,73.871,13.5371,13.0753,0.068448,0.976896,0.012288,0.012224,0.037952,0.107136,0.100736,11.647,0.11264
+1274,70.5526,14.1738,12.9393,0.069632,1.22189,0.015104,0.011616,0.037536,0.10816,0.104128,11.2565,0.114688
+1275,69.8309,14.3203,12.7705,0.069344,1.0305,0.012288,0.012288,0.038656,0.106784,0.102368,11.2845,0.11376
+1276,72.388,13.8145,13.9571,0.06944,0.987232,0.012736,0.01184,0.037792,0.107584,0.10336,12.5132,0.11392
+1277,66.3556,15.0703,13.0483,0.070304,0.948224,0.012448,0.01216,0.036992,0.106528,0.102144,11.6464,0.11312
+1278,71.2199,14.041,13.5409,0.069632,0.952352,0.013376,0.011392,0.038656,0.106048,0.10272,12.13,0.1168
+1279,66.9019,14.9473,13.9043,0.06912,0.948608,0.012576,0.012064,0.03728,0.106496,0.101568,12.5037,0.112896
+1280,65.198,15.3379,12.6825,0.06944,0.973024,0.01232,0.012224,0.038624,0.104736,0.104416,11.2533,0.1144
+1281,73.0073,13.6973,12.6716,0.068224,0.950272,0.01232,0.012256,0.03856,0.104832,0.102336,11.2696,0.113184
+1282,73.2789,13.6465,13.8425,0.069664,0.925664,0.013472,0.011328,0.03872,0.106464,0.102432,12.462,0.112672
+1283,67.2887,14.8613,12.6427,0.068384,0.920704,0.012544,0.011104,0.038432,0.106016,0.102272,11.2691,0.114144
+1284,71.0618,14.0723,12.6488,0.068832,0.938304,0.012544,0.01184,0.037632,0.105632,0.102368,11.2582,0.113376
+1285,67.395,14.8379,13.1492,0.06944,1.04672,0.013536,0.011296,0.038592,0.105824,0.10112,11.649,0.113728
+1286,75.9757,13.1621,13.5475,0.069632,0.968704,0.012288,0.012352,0.03824,0.105056,0.104288,12.1243,0.11264
+1287,67.1211,14.8984,12.7227,0.068256,0.98016,0.012608,0.02096,0.03888,0.106016,0.100896,11.2804,0.114496
+1288,71.9404,13.9004,13.9857,0.069568,1.0425,0.024576,0.012288,0.038336,0.10656,0.102912,12.4744,0.11456
+1289,67.4661,14.8223,12.7508,0.073728,1.03014,0.012288,0.012288,0.038464,0.106944,0.1024,11.2601,0.114464
+1290,72.779,13.7402,12.6915,0.075776,0.972832,0.012352,0.012224,0.038912,0.106464,0.104288,11.2549,0.113696
+1291,72.8307,13.7305,13.9531,0.067584,0.994752,0.012608,0.011744,0.037472,0.106208,0.102528,12.5075,0.112672
+1292,65.4146,15.2871,12.8755,0.069152,1.13507,0.012288,0.011392,0.03904,0.106912,0.1048,11.2818,0.115104
+1293,73.2685,13.6484,12.6711,0.069632,0.948352,0.013536,0.01072,0.037184,0.106496,0.103584,11.2669,0.114688
+1294,71.4784,13.9902,13.9656,0.069344,1.0383,0.01264,0.013696,0.037824,0.106464,0.10448,12.4682,0.114688
+1295,66.7884,14.9727,12.6957,0.069888,0.957632,0.012576,0.012032,0.037664,0.10592,0.100928,11.2845,0.114592
+1296,72.4802,13.7969,12.6894,0.069728,0.968416,0.01248,0.011968,0.037184,0.106496,0.103584,11.266,0.1136
+1297,72.7893,13.7383,13.908,0.070784,0.930688,0.012288,0.02048,0.03696,0.118688,0.102144,12.4992,0.116768
+1298,66.8146,14.9668,12.6499,0.069248,0.936352,0.013472,0.012288,0.037696,0.106496,0.102592,11.2569,0.114848
+1299,73.0489,13.6895,12.7342,0.068832,0.997728,0.012576,0.011776,0.037536,0.10624,0.102656,11.2804,0.11648
+1300,72.6344,13.7676,13.8491,0.06816,0.927712,0.012288,0.011616,0.037536,0.106144,0.102752,12.4697,0.113248
+1301,66.167,15.1133,12.677,0.068096,0.958112,0.012544,0.012128,0.03712,0.106144,0.102048,11.2662,0.11456
+1302,71.1902,14.0469,12.6919,0.068448,0.984544,0.012704,0.011808,0.03744,0.106528,0.104288,11.2514,0.114784
+1303,72.8411,13.7285,13.9604,0.06944,1.00704,0.012544,0.010976,0.0384,0.106368,0.101792,12.501,0.112896
+1304,66.8844,14.9512,12.6546,0.069664,0.944096,0.01232,0.012256,0.038464,0.104896,0.10432,11.2539,0.114656
+1305,35.0277,28.5488,12.6425,0.068672,0.934848,0.01232,0.010336,0.03808,0.104928,0.100576,11.2599,0.112832
+1306,80.6172,12.4043,13.0856,0.068544,0.97808,0.012512,0.010848,0.038176,0.115104,0.10272,11.6449,0.114688
+1307,71.1012,14.0645,14.7149,0.0688,0.932672,0.012288,0.012288,0.036864,0.106208,0.1024,13.3287,0.114688
+1308,63.1319,15.8398,12.6947,0.069632,0.985088,0.013472,0.011232,0.03872,0.10656,0.102464,11.253,0.11456
+1309,72.0924,13.8711,13.9052,0.067584,0.954368,0.01232,0.012256,0.038784,0.105888,0.102688,12.4985,0.112896
+1310,65.886,15.1777,12.7898,0.06928,1.0735,0.013568,0.012032,0.037888,0.107584,0.10336,11.2579,0.114688
+1311,71.6385,13.959,12.7157,0.068256,0.993248,0.012352,0.012256,0.038784,0.106624,0.1024,11.2679,0.113856
+1312,73.1011,13.6797,13.8907,0.069632,0.950272,0.01232,0.012288,0.038912,0.106464,0.103808,12.4827,0.114368
+1313,67.2976,14.8594,12.6507,0.069792,0.93536,0.012576,0.012,0.037504,0.106432,0.10176,11.2616,0.113632
+1314,72.4187,13.8086,12.6954,0.069792,0.975776,0.012544,0.012128,0.037376,0.104896,0.104192,11.2633,0.11536
+1315,71.6585,13.9551,13.0605,0.06992,0.940704,0.012288,0.01232,0.038688,0.106688,0.102528,11.6627,0.114656
+1316,71.7187,13.9434,12.7178,0.069632,1.0231,0.012608,0.010816,0.038432,0.10608,0.103296,11.2394,0.1144
+1317,72.9449,13.709,12.6602,0.069728,0.939456,0.01264,0.012032,0.037248,0.106496,0.1024,11.2655,0.114656
+1318,72.8618,13.7246,13.9045,0.070112,0.94752,0.012608,0.010784,0.03888,0.106496,0.104032,12.4991,0.114976
+1319,65.4313,15.2832,12.7001,0.068032,0.963712,0.012576,0.012064,0.04512,0.105248,0.104448,11.2741,0.114752
+1320,73.4155,13.6211,12.6161,0.069248,0.909888,0.012544,0.012,0.038272,0.105376,0.102368,11.2497,0.116736
+1321,73.7327,13.5625,13.8563,0.069888,0.901216,0.012288,0.012288,0.038464,0.104896,0.1024,12.4987,0.11616
+1322,66.8495,14.959,12.6548,0.067808,0.944,0.012416,0.012288,0.036864,0.106496,0.10416,11.254,0.116736
+1323,72.5007,13.793,13.8465,0.068416,0.90224,0.012608,0.01248,0.03728,0.105536,0.101312,12.4928,0.113824
+1324,66.7884,14.9727,13.8874,0.069536,0.945632,0.012192,0.012128,0.03776,0.106464,0.103712,12.4868,0.113184
+1325,66.8931,14.9492,12.6833,0.068992,0.97344,0.01232,0.012288,0.037984,0.105376,0.102016,11.2573,0.113536
+1326,68.4126,14.6172,12.7002,0.068096,1.00269,0.012576,0.010784,0.038848,0.104512,0.104448,11.2436,0.114624
+1327,76.8769,13.0078,13.9299,0.06928,0.986496,0.012576,0.012544,0.037344,0.106496,0.102176,12.49,0.112992
+1328,66.9106,14.9453,12.6415,0.068896,0.938592,0.012416,0.01232,0.036832,0.106496,0.1024,11.2495,0.114112
+1329,71.3489,14.0156,12.6665,0.06896,0.918048,0.012448,0.012128,0.03808,0.107456,0.1024,11.2927,0.114336
+1330,74.3538,13.4492,13.8693,0.06976,0.917536,0.013568,0.012096,0.037824,0.114688,0.104448,12.4867,0.112704
+1331,66.6753,14.998,12.7204,0.07536,0.991904,0.012256,0.013536,0.037792,0.108288,0.102528,11.2653,0.113344
+1332,72.3777,13.8164,12.6789,0.072288,0.968704,0.01232,0.011296,0.037856,0.106528,0.108512,11.2472,0.114144
+1333,70.3877,14.207,13.9405,0.075808,0.974784,0.01232,0.012288,0.038528,0.10688,0.102432,12.4962,0.121312
+1334,65.1565,15.3477,12.791,0.069664,1.08662,0.012544,0.012128,0.0376,0.1064,0.102496,11.2476,0.115904
+1335,73.1115,13.6777,12.696,0.070112,0.984832,0.012576,0.01184,0.03776,0.104448,0.102432,11.2575,0.114496
+1336,71.8193,13.9238,13.9343,0.07024,0.988608,0.012576,0.011712,0.039776,0.105664,0.103264,12.4862,0.116224
+1337,66.7275,14.9863,12.6464,0.069632,0.925696,0.013888,0.012,0.0376,0.104448,0.102432,11.264,0.116736
+1338,72.2551,13.8398,13.9024,0.068,0.960512,0.0136,0.012096,0.037824,0.105696,0.102912,12.4869,0.114816
+1339,63.4213,15.7676,14.0534,0.068992,1.12307,0.012288,0.012288,0.03808,0.113472,0.102432,12.4697,0.11312
+1340,66.2526,15.0938,12.87,0.068256,1.17146,0.01232,0.012256,0.036864,0.106304,0.104096,11.244,0.114464
+1341,71.3887,14.0078,12.6649,0.069632,0.94208,0.012288,0.01184,0.039136,0.10672,0.102208,11.2676,0.113376
+1342,74.9524,13.3418,13.8792,0.069632,0.950112,0.012448,0.012416,0.038656,0.10576,0.10256,12.4742,0.113376
+1343,66.7971,14.9707,12.6684,0.069504,0.957696,0.012736,0.012,0.0376,0.106496,0.101984,11.2562,0.114208
+1344,72.0721,13.875,12.6784,0.06784,0.9728,0.013568,0.011104,0.038528,0.10576,0.102496,11.2523,0.114048
+1345,70.1274,14.2598,15.1232,0.074528,1.3271,0.013344,0.011264,0.03888,0.1064,0.102528,13.3257,0.123456
+1346,62.676,15.9551,12.6442,0.0696,0.94416,0.012288,0.01232,0.038016,0.105312,0.103552,11.2441,0.11488
+1347,73.871,13.5371,12.6279,0.07072,0.899968,0.01232,0.012256,0.037984,0.107296,0.10192,11.2708,0.114688
+1348,72.9137,13.7148,13.8691,0.071264,0.92944,0.012576,0.012128,0.038976,0.1064,0.103072,12.4805,0.114688
+1349,64.7282,15.4492,12.6458,0.069408,0.921824,0.01232,0.013632,0.037536,0.10624,0.101888,11.2668,0.116096
+1350,72.4699,13.7988,12.7365,0.069088,1.02864,0.01392,0.012704,0.036864,0.106496,0.10416,11.2479,0.116736
+1351,72.0924,13.8711,13.8935,0.069792,0.946496,0.013408,0.011264,0.038752,0.104576,0.101696,12.4949,0.112608
+1352,67.4039,14.8359,13.8631,0.06832,0.942048,0.013536,0.011136,0.038144,0.10512,0.10352,12.4684,0.112928
+1353,66.1584,15.1152,12.628,0.068992,0.907392,0.012608,0.012032,0.043456,0.106176,0.102144,11.2619,0.113344
+1354,72.9345,13.7109,13.8711,0.069216,0.94864,0.013408,0.012288,0.037792,0.104448,0.10448,12.4681,0.112704
+1355,63.944,15.6387,12.6565,0.068896,0.916192,0.013344,0.01328,0.037984,0.113568,0.106496,11.2722,0.114592
+1356,74.2675,13.4648,12.6774,0.069408,0.974752,0.012672,0.011552,0.03984,0.106464,0.103808,11.2442,0.114688
+1357,72.8826,13.7207,13.975,0.067872,0.974848,0.013344,0.011232,0.038816,0.10976,0.107424,12.5379,0.113888
+1358,66.1072,15.127,12.7349,0.075616,1.03238,0.012576,0.01184,0.03872,0.107296,0.104448,11.2385,0.1136
+1359,72.0113,13.8867,12.6849,0.069504,0.966656,0.012416,0.011968,0.037184,0.107904,0.102848,11.2619,0.114496
+1360,71.21,14.043,13.8956,0.068224,0.954176,0.012288,0.012288,0.038592,0.117056,0.105728,12.4731,0.114176
+1361,66.5713,15.0215,12.7222,0.071008,1.00154,0.012576,0.010656,0.038656,0.106656,0.101856,11.2584,0.120832
+1362,72.6241,13.7695,12.7119,0.069632,0.999424,0.01232,0.012256,0.038624,0.106784,0.104064,11.2419,0.126976
+1363,72.2654,13.8379,13.9284,0.070656,1.00454,0.0136,0.012608,0.03728,0.106528,0.101824,12.4659,0.115488
+1364,66.3642,15.0684,12.6759,0.070272,0.978272,0.012704,0.012096,0.037536,0.10592,0.102784,11.2396,0.116704
+1365,73.1742,13.666,12.6647,0.069632,0.94208,0.013664,0.011104,0.03872,0.105792,0.101088,11.266,0.116576
+1366,72.5521,13.7832,13.8574,0.07024,0.925696,0.01232,0.012256,0.038912,0.105664,0.103232,12.4723,0.116736
+1367,66.2526,15.0938,13.9718,0.067968,0.984768,0.012576,0.012032,0.038272,0.105376,0.103648,12.5342,0.112992
+1368,67.5818,14.7969,12.6814,0.068832,0.971744,0.012288,0.012288,0.038208,0.105152,0.103648,11.2556,0.113568
+1369,72.5315,13.7871,14.0104,0.069216,0.975264,0.013344,0.011264,0.038464,0.106208,0.106432,12.5773,0.112864
+1370,65.8521,15.1855,12.7085,0.068256,0.986208,0.012608,0.011072,0.038688,0.116736,0.104448,11.2571,0.11344
+1371,71.2794,14.0293,12.7668,0.069664,1.02787,0.02256,0.021728,0.037824,0.106368,0.10192,11.2646,0.114208
+1372,69.8309,14.3203,14.0474,0.069088,1.09747,0.012576,0.010752,0.047328,0.114432,0.102656,12.4784,0.114688
+1373,64.5731,15.4863,12.866,0.068736,1.13024,0.019872,0.025184,0.03888,0.114752,0.10176,11.2523,0.11424
+1374,72.3266,13.8262,12.6928,0.077184,0.969344,0.013728,0.01216,0.0376,0.107712,0.117344,11.2437,0.114048
+1375,73.4682,13.6113,13.8875,0.0696,0.942176,0.012288,0.012288,0.038656,0.106784,0.1024,12.4887,0.114592
+1376,66.2612,15.0918,12.6651,0.070944,0.96544,0.01248,0.012256,0.038912,0.106496,0.104128,11.2411,0.113408
+1377,72.9345,13.7109,12.735,0.069376,1.00019,0.013312,0.011264,0.038656,0.11904,0.102144,11.2595,0.121472
+1378,71.5384,13.9785,13.8772,0.069664,0.941856,0.01248,0.022144,0.037248,0.107552,0.103392,12.4674,0.11552
+1379,66.6667,15,12.6894,0.07776,0.947264,0.013184,0.011872,0.037408,0.106112,0.100736,11.2796,0.115424
+1380,73.0385,13.6914,12.6266,0.06992,0.932192,0.0136,0.012864,0.037024,0.1064,0.103808,11.2352,0.115552
+1381,72.3675,13.8184,13.9311,0.069728,0.989728,0.012288,0.012256,0.03808,0.10528,0.102432,12.4846,0.116704
+1382,67.1211,14.8984,12.6325,0.069504,0.944672,0.012288,0.012288,0.03792,0.10544,0.103872,11.2297,0.1168
+1383,73.384,13.627,12.6551,0.068096,0.944128,0.012288,0.01344,0.03776,0.105536,0.101024,11.2581,0.114688
+1384,72.0822,13.873,13.9922,0.069504,1.07766,0.013504,0.011328,0.038656,0.105792,0.103104,12.458,0.114656
+1385,65.8775,15.1797,12.7836,0.069632,1.07043,0.012992,0.012064,0.03824,0.108416,0.115008,11.2432,0.113632
+1386,75.0513,13.3242,12.6628,0.068416,0.96256,0.01232,0.012256,0.038752,0.105792,0.10288,11.2439,0.115968
+1387,72.9761,13.7031,13.8751,0.068224,0.93776,0.012544,0.013408,0.03776,0.106336,0.101792,12.4833,0.113952
+1388,66.8669,14.9551,12.6494,0.068256,0.954016,0.012576,0.01184,0.037664,0.106208,0.102784,11.2428,0.113312
+1389,72.7066,13.7539,12.6233,0.067904,0.925664,0.01232,0.012288,0.038144,0.10528,0.101344,11.2464,0.113952
+1390,73.0594,13.6875,13.8772,0.069216,0.944544,0.012288,0.012288,0.03824,0.10512,0.1024,12.4805,0.112672
+1391,66.6406,15.0059,12.6476,0.068608,0.943104,0.012288,0.012288,0.03824,0.10512,0.102112,11.252,0.113888
+1392,73.0281,13.6934,13.7847,0.069568,0.995744,0.01232,0.012256,0.038208,0.105152,0.322912,12.1146,0.113984
+1393,66.8233,14.9648,13.8895,0.069312,0.954464,0.012512,0.012064,0.037184,0.1064,0.102432,12.4822,0.11296
+1394,64.8676,15.416,12.7021,0.069472,0.993824,0.012352,0.012032,0.03712,0.107776,0.10304,11.2519,0.114656
+1395,73.8071,13.5488,13.9974,0.069696,1.04848,0.012416,0.012256,0.038912,0.106496,0.1024,12.4926,0.114144
+1396,64.5161,15.5,12.7262,0.07088,1.0143,0.012544,0.011776,0.0384,0.106912,0.10304,11.2537,0.114656
+1397,76.6008,13.0547,12.6671,0.069824,0.939328,0.012576,0.011776,0.037824,0.106464,0.101888,11.2604,0.126976
+1398,72.4187,13.8086,13.8506,0.07072,0.932256,0.012672,0.012448,0.038912,0.106496,0.104096,12.4578,0.1152
+1399,66.3728,15.0664,13.9359,0.069664,0.980576,0.012416,0.012,0.037408,0.10624,0.10224,12.4932,0.122112
+1400,66.632,15.0078,12.6961,0.068128,1.0056,0.012256,0.01344,0.037536,0.106176,0.102944,11.2349,0.115168
+1401,73.6691,13.5742,13.9026,0.068192,0.919552,0.01344,0.011328,0.038752,0.105472,0.101344,12.5313,0.113152
+1402,65.4397,15.2812,12.6675,0.068224,0.958336,0.012416,0.012096,0.038112,0.106496,0.103296,11.254,0.114528
+1403,73.7965,13.5508,12.622,0.068768,0.914272,0.012448,0.012128,0.037024,0.106464,0.1024,11.2554,0.113056
+1404,73.2475,13.6523,13.865,0.069152,0.912864,0.012576,0.010976,0.042624,0.106912,0.10416,12.4928,0.112896
+1405,65.0903,15.3633,12.8882,0.069632,1.14483,0.012416,0.019616,0.053184,0.106272,0.101376,11.2675,0.113376
+1406,73.871,13.5371,12.6689,0.068992,0.964928,0.01264,0.012288,0.037184,0.106368,0.102528,11.2497,0.114304
+1407,72.0822,13.873,15.1831,0.06944,1.03648,0.012288,0.012288,0.036864,0.10624,0.1024,13.6932,0.11392
+1408,55.2319,18.1055,13.011,0.07072,1.27482,0.022528,0.01232,0.053216,0.112192,0.10288,11.2467,0.115584
+1409,70.5428,14.1758,12.7916,0.069984,1.07056,0.01264,0.012064,0.037248,0.106368,0.104032,11.2625,0.116192
+1410,71.4485,13.9961,14.019,0.0696,1.04282,0.012416,0.012288,0.037984,0.105376,0.10416,12.5212,0.113152
+1411,67.3507,14.8477,12.7099,0.069056,1.00608,0.012352,0.012288,0.038144,0.105216,0.101792,11.2503,0.114688
+1412,71.121,14.0605,12.8371,0.069632,1.14893,0.013568,0.012128,0.037472,0.104832,0.104288,11.2314,0.114848
+1413,72.4289,13.8066,13.9565,0.067968,0.995328,0.01232,0.012032,0.037088,0.106528,0.102368,12.5091,0.113824
+1414,66.2955,15.084,13.9523,0.069248,1.02586,0.01264,0.01216,0.037216,0.105792,0.103104,12.4715,0.114784
+1415,66.3814,15.0645,12.7073,0.069504,0.997408,0.012576,0.012096,0.038592,0.106272,0.102368,11.2545,0.114016
+1416,71.21,14.043,13.9577,0.06816,1.03219,0.012288,0.012288,0.038912,0.106432,0.102432,12.4724,0.112608
+1417,65.082,15.3652,12.7895,0.069472,1.08765,0.012352,0.012224,0.038912,0.106496,0.10384,11.2456,0.11296
+1418,71.9708,13.8945,12.7549,0.069632,1.06291,0.01232,0.012256,0.038912,0.108224,0.102752,11.2343,0.1136
+1419,71.1704,14.0508,14.0759,0.069152,1.13469,0.012672,0.011872,0.03728,0.108064,0.102464,12.4869,0.112832
+1420,65.3645,15.2988,12.7468,0.075776,1.04243,0.013376,0.0112,0.038592,0.104768,0.104032,11.2398,0.116736
+1421,72.6035,13.7734,12.7004,0.069984,0.984864,0.01264,0.012128,0.037344,0.106496,0.1024,11.2595,0.115104
+1422,72.7686,13.7422,13.9513,0.069984,1.01168,0.01232,0.012288,0.038272,0.105056,0.1024,12.4826,0.116768
+1423,66.4935,15.0391,12.7217,0.069632,1.00717,0.01264,0.012192,0.037056,0.106496,0.102016,11.2582,0.116288
+1424,72.1838,13.8535,12.691,0.069472,1.00496,0.012608,0.012544,0.037088,0.106592,0.104096,11.2268,0.116864
+1425,73.0177,13.6953,13.9162,0.069504,0.972928,0.01232,0.012288,0.038432,0.104928,0.102336,12.4908,0.11264
+1426,65.9199,15.1699,12.6814,0.067872,1.00557,0.012288,0.012288,0.036864,0.106496,0.1024,11.223,0.11456
+1427,72.3266,13.8262,12.7687,0.067712,1.06198,0.012672,0.012192,0.037504,0.106496,0.102432,11.2535,0.114208
+1428,70.8454,14.1152,13.9392,0.068128,0.995136,0.012512,0.012256,0.038016,0.104864,0.103936,12.4909,0.11344
+1429,67.1123,14.9004,12.7099,0.068832,0.996352,0.013408,0.012096,0.03776,0.105728,0.102624,11.2597,0.113376
+1430,73.0489,13.6895,12.6917,0.067872,1.00966,0.012288,0.012288,0.038176,0.105216,0.103904,11.2288,0.113568
+1431,71.9809,13.8926,15.0167,0.068384,1.04042,0.013536,0.011168,0.038752,0.105888,0.321248,13.3045,0.112864
+1432,61.5903,16.2363,12.7324,0.069632,1.04234,0.012384,0.012288,0.038752,0.106656,0.104288,11.2325,0.113632
+1433,72.194,13.8516,12.731,0.068448,1.00534,0.012288,0.012288,0.038944,0.106464,0.103488,11.2705,0.113248
+1434,73.6903,13.5703,13.8428,0.068608,0.935936,0.01232,0.012128,0.038912,0.106208,0.101952,12.4527,0.113984
+1435,66.9194,14.9434,12.6376,0.069664,0.917312,0.01248,0.012128,0.036992,0.105952,0.100896,11.2681,0.11408
+1436,73.4577,13.6133,12.6278,0.070336,0.931936,0.012288,0.011872,0.038816,0.106464,0.102912,11.2271,0.126048
+1437,72.4289,13.8066,14.0148,0.069824,1.02733,0.021248,0.012416,0.054848,0.106624,0.102592,12.5045,0.115392
+1438,66.1499,15.1172,13.8327,0.077408,0.973088,0.012544,0.012096,0.039264,0.105984,0.105152,12.3925,0.114688
+1439,66.167,15.1133,12.7448,0.06832,1.02384,0.012384,0.022592,0.038016,0.105344,0.1024,11.2558,0.116096
+1440,74.1921,13.4785,13.8786,0.069056,0.946176,0.012576,0.012128,0.037568,0.106496,0.103744,12.4769,0.114016
+1441,66.7101,14.9902,12.6708,0.068832,0.957216,0.012288,0.012288,0.03888,0.105664,0.101216,11.2599,0.114496
+1442,72.6035,13.7734,12.716,0.069664,1.02602,0.013344,0.011104,0.037088,0.1064,0.1024,11.2353,0.114752
+1443,71.5884,13.9688,14.0879,0.069664,1.0895,0.0224,0.020384,0.037088,0.106464,0.102432,12.5268,0.113216
+1444,66.056,15.1387,12.7243,0.06864,1.01635,0.012512,0.01184,0.047328,0.110176,0.103232,11.2412,0.11296
+1445,73.0281,13.6934,12.6935,0.069632,0.978944,0.012288,0.012288,0.038624,0.105984,0.104544,11.2576,0.113664
+1446,73.4366,13.6172,13.927,0.068032,1.00758,0.013472,0.01216,0.037856,0.106304,0.104416,12.4644,0.1128
+1447,60.6851,16.4785,12.7135,0.069568,1.02816,0.012288,0.012288,0.037088,0.106272,0.102432,11.2312,0.114208
+1448,78.1202,12.8008,12.7474,0.068192,1.05882,0.013536,0.012128,0.037824,0.105792,0.103104,11.2333,0.114688
+1449,73.2475,13.6523,13.9145,0.068352,0.995072,0.012512,0.012064,0.037088,0.106528,0.102368,12.4662,0.114368
+1450,66.1157,15.125,12.6798,0.068544,0.982656,0.01264,0.011936,0.038912,0.106848,0.10448,11.2394,0.1144
+1451,71.1704,14.0508,12.7468,0.069632,1.05472,0.012288,0.012288,0.038496,0.106912,0.1024,11.2353,0.114688
+1452,72.7893,13.7383,13.9633,0.069632,1.03629,0.01232,0.012192,0.038304,0.10512,0.104448,12.4703,0.11472
+1453,66.2269,15.0996,12.6206,0.070208,0.928,0.01232,0.012256,0.038528,0.104864,0.102368,11.2374,0.114688
+1454,71.4385,13.998,13.3992,0.069664,1.01558,0.01248,0.011584,0.037568,0.106304,0.102592,11.9233,0.120128
+1455,70.041,14.2773,13.9387,0.070944,0.96944,0.012288,0.012288,0.036864,0.106496,0.1024,12.5132,0.114784
+1456,65.1068,15.3594,12.7311,0.068288,1.01574,0.020512,0.012288,0.04912,0.117792,0.102784,11.2295,0.115104
+1457,71.5084,13.9844,12.8179,0.077824,1.10797,0.01232,0.012256,0.038912,0.106048,0.1008,11.2472,0.114528
+1458,66.4504,15.0488,14.23,0.068032,1.28557,0.012576,0.012128,0.037312,0.116224,0.102304,12.4827,0.11312
+1459,71.9101,13.9062,12.6341,0.069536,0.925792,0.012288,0.012288,0.036864,0.106496,0.1024,11.2554,0.113056
+1460,72.81,13.7344,12.628,0.069504,0.946208,0.012384,0.012256,0.03824,0.105216,0.104416,11.2264,0.113408
+1461,71.9708,13.8945,13.988,0.068928,0.938944,0.012352,0.012256,0.036864,0.106304,0.101664,12.5961,0.11456
+1462,65.0159,15.3809,12.663,0.069152,0.981536,0.01248,0.012288,0.038912,0.105824,0.103104,11.2268,0.11296
+1463,73.9671,13.5195,13.6766,0.068896,1.08362,0.025088,0.01376,0.03856,0.10672,0.101056,12.1262,0.112736
+1464,67.7518,14.7598,13.8506,0.074976,0.9224,0.012288,0.012288,0.03824,0.107168,0.10384,12.4586,0.120832
+1465,66.056,15.1387,12.6526,0.069632,0.935136,0.012544,0.010976,0.038752,0.106464,0.1024,11.2558,0.120864
+1466,72.9449,13.709,12.6505,0.07328,0.956544,0.012608,0.012128,0.038304,0.10656,0.1048,11.2317,0.114528
+1467,71.8193,13.9238,14.0551,0.069664,1.10179,0.01232,0.012256,0.038624,0.106752,0.10176,12.4951,0.1168
+1468,66.4762,15.043,12.8139,0.069952,1.12253,0.013536,0.012128,0.037824,0.105472,0.103392,11.2345,0.114496
+1469,72.9761,13.7031,12.7159,0.069632,0.972416,0.012704,0.021952,0.037408,0.111808,0.115328,11.2599,0.11472
+1470,72.133,13.8633,13.3484,0.069632,0.972832,0.012288,0.012256,0.038272,0.1048,0.102688,11.9153,0.120416
+1471,69.5463,14.3789,12.7531,0.069952,1.0441,0.012576,0.012128,0.038272,0.105344,0.102272,11.2515,0.116928
+1472,72.5829,13.7773,12.7124,0.070144,1.00912,0.01264,0.010432,0.038912,0.106496,0.1024,11.2456,0.116736
+1473,73.7965,13.5508,13.8813,0.070816,0.951136,0.012288,0.012192,0.03696,0.105856,0.100992,12.4764,0.114688
+1474,66.7971,14.9707,12.6499,0.067968,0.944128,0.014144,0.011552,0.037536,0.10624,0.103072,11.2476,0.117728
+1475,73.6373,13.5801,12.6545,0.068064,0.94,0.012288,0.012288,0.0384,0.106016,0.1024,11.2588,0.11616
+1476,72.9761,13.7031,13.8467,0.06944,0.931424,0.012672,0.012064,0.037504,0.106304,0.104416,12.4596,0.113312
+1477,67.3241,14.8535,12.643,0.068288,0.929792,0.012288,0.012288,0.036864,0.106496,0.102144,11.2594,0.115456
+1478,69.622,14.3633,13.4494,0.068256,1.75456,0.012608,0.012,0.037408,0.10592,0.10208,11.2419,0.114688
+1479,70.6304,14.1582,15.1476,0.068224,1.01712,0.012544,0.012064,0.037568,0.105536,0.101312,13.6806,0.11264
+1480,61.978,16.1348,12.7037,0.069472,0.997536,0.013344,0.011232,0.038944,0.105984,0.10288,11.2497,0.114688
+1481,73.1115,13.6777,12.8377,0.068544,1.12397,0.012512,0.012,0.038368,0.10544,0.102144,11.2613,0.113472
+1482,72.7997,13.7363,13.9141,0.069536,0.98928,0.01232,0.012288,0.038656,0.104768,0.104384,12.4696,0.113248
+1483,66.4762,15.043,12.6812,0.06928,0.977248,0.013664,0.010976,0.038848,0.106496,0.10208,11.2498,0.112832
+1484,71.7087,13.9453,12.7694,0.069696,1.08758,0.012288,0.011648,0.037504,0.106496,0.103936,11.2256,0.114656
+1485,72.655,13.7637,13.9044,0.06944,0.979648,0.012256,0.013984,0.038848,0.106848,0.10224,12.4684,0.1128
+1486,67.0333,14.918,13.0623,0.070208,0.974272,0.012608,0.012,0.03744,0.106496,0.103616,11.6314,0.114272
+1487,69.1145,14.4688,12.6792,0.07168,0.958528,0.013696,0.010816,0.036864,0.106496,0.102336,11.2558,0.122976
+1488,73.9243,13.5273,13.9044,0.068608,0.986336,0.012544,0.012832,0.038624,0.10656,0.102624,12.4618,0.114432
+1489,67.0596,14.9121,12.662,0.069632,0.95232,0.012288,0.012288,0.036864,0.106496,0.10208,11.2538,0.116192
+1490,72.9657,13.7051,12.6628,0.068416,0.956416,0.013344,0.011232,0.037984,0.105376,0.104128,11.2377,0.12816
+1491,72.7686,13.7422,13.8836,0.068512,0.929792,0.012288,0.0136,0.0376,0.118144,0.102304,12.4865,0.114944
+1492,66.6667,15,12.6116,0.068864,0.933888,0.012544,0.011968,0.037696,0.106496,0.103936,11.2195,0.116736
+1493,70.1658,14.252,12.7621,0.068576,1.05882,0.013344,0.011232,0.038784,0.106016,0.10096,11.2477,0.116672
+1494,69.518,14.3848,15.1532,0.069632,1.00541,0.01248,0.012256,0.037184,0.106176,0.104032,13.6933,0.11264
+1495,65.423,15.2852,12.7653,0.067776,1.06029,0.012544,0.011872,0.037504,0.114048,0.105024,11.2435,0.112736
+1496,66.0901,15.1309,12.8592,0.067872,1.15466,0.012704,0.010304,0.039968,0.111552,0.103392,11.2445,0.114208
+1497,77.7761,12.8574,14.0042,0.06784,1.05206,0.0128,0.011776,0.039392,0.11072,0.102368,12.4928,0.114432
+1498,65.3895,15.293,12.8184,0.069632,1.08899,0.012576,0.011552,0.037856,0.12288,0.104448,11.2574,0.113088
+1499,73.4682,13.6113,12.7178,0.076416,1.00352,0.012288,0.011808,0.037216,0.106624,0.107904,11.2483,0.113792
+1500,73.0073,13.6973,13.8882,0.068384,0.968352,0.012576,0.012192,0.0384,0.106592,0.104544,12.4641,0.113056
+1501,66.7014,14.9922,12.9138,0.069632,0.978944,0.012288,0.012288,0.046176,0.11152,0.102432,11.2476,0.332928
+1502,68.6051,14.5762,12.9872,0.072544,1.29846,0.012256,0.01232,0.038368,0.10496,0.104448,11.2304,0.113504
+1503,71.4086,14.0039,13.9574,0.069248,0.995936,0.012288,0.01232,0.040864,0.10592,0.109024,12.4989,0.112896
+1504,65.515,15.2637,12.7041,0.06816,1.01971,0.01232,0.012256,0.038304,0.105056,0.104,11.2276,0.116736
+1505,73.5844,13.5898,12.6198,0.068704,0.930752,0.013472,0.011072,0.036864,0.106176,0.10176,11.2363,0.11472
+1506,73.3419,13.6348,13.9259,0.068832,0.919712,0.012608,0.01056,0.038752,0.1064,0.10256,12.5523,0.114176
+1507,64.4025,15.5273,12.7919,0.068384,1.0752,0.01232,0.012256,0.038912,0.106144,0.102368,11.2618,0.11456
+1508,74.5812,13.4082,12.6281,0.069408,0.932416,0.013408,0.011136,0.03792,0.105472,0.102368,11.2415,0.114464
+1509,72.347,13.8223,13.8893,0.069632,0.941376,0.012608,0.012032,0.037504,0.105888,0.10096,12.496,0.113312
+1510,65.6326,15.2363,12.7694,0.068512,1.0793,0.012288,0.012288,0.03792,0.10544,0.104,11.2351,0.11456
+1511,72.2042,13.8496,12.7754,0.069472,1.05693,0.01232,0.011648,0.037472,0.106432,0.102208,11.2654,0.113568
+1512,72.4494,13.8027,13.9795,0.069408,1.04496,0.013408,0.012608,0.037472,0.106144,0.102752,12.4785,0.114304
+1513,66.1499,15.1172,12.6526,0.067648,0.948224,0.012288,0.012288,0.038272,0.105088,0.102432,11.2517,0.114688
+1514,71.9505,13.8984,12.7079,0.067712,1.0416,0.012576,0.010656,0.038592,0.1048,0.104032,11.2148,0.113152
+1515,73.9778,13.5176,13.8998,0.069184,0.964224,0.012672,0.011744,0.0376,0.104704,0.1064,12.4801,0.113184
+1516,64.1202,15.5957,12.6464,0.069632,0.954368,0.013536,0.011072,0.03888,0.10752,0.103424,11.2333,0.114688
+1517,74.2137,13.4746,12.63,0.069216,0.9384,0.012288,0.01216,0.03824,0.106912,0.10176,11.2364,0.114688
+1518,72.3573,13.8203,14.0382,0.06976,1.1448,0.024576,0.01184,0.037312,0.107904,0.102656,12.4254,0.113984
+1519,65.6663,15.2285,12.6107,0.069632,0.91136,0.013536,0.01104,0.038752,0.104608,0.1024,11.2448,0.11456
+1520,70.0986,14.2656,12.8206,0.069632,1.13043,0.012352,0.012288,0.036864,0.106048,0.111008,11.2272,0.114784
+1521,70.4167,14.2012,14.0092,0.069824,1.08573,0.020832,0.012256,0.038528,0.104864,0.101984,12.4604,0.11472
+1522,67.0157,14.9219,12.7104,0.068096,1.0199,0.012288,0.01152,0.037632,0.106496,0.1024,11.2353,0.116736
+1523,71.9809,13.8926,12.7932,0.069152,1.08592,0.012288,0.012288,0.038208,0.105152,0.1024,11.2517,0.116064
+1524,72.3164,13.8281,13.9909,0.069472,1.07741,0.01232,0.012288,0.038496,0.104832,0.104256,12.4582,0.113696
+1525,66.3041,15.082,12.6282,0.068192,0.927744,0.01344,0.011136,0.038528,0.104864,0.10032,11.2497,0.114304
+1526,68.7064,14.5547,13.9981,0.069152,1.09395,0.012448,0.011712,0.03744,0.106496,0.102432,12.451,0.113408
+1527,67.2357,14.873,13.8819,0.06816,0.939712,0.012576,0.01184,0.038336,0.105472,0.116736,12.4764,0.11264
+1528,67.3507,14.8477,12.6382,0.075584,0.957664,0.012576,0.011168,0.038688,0.107904,0.103072,11.2183,0.11328
+1529,73.5738,13.5918,12.63,0.067616,0.956416,0.012288,0.012288,0.038176,0.105184,0.1024,11.2229,0.112736
+1530,72.7066,13.7539,13.8752,0.069632,0.957984,0.012608,0.011808,0.037504,0.10624,0.102688,12.4636,0.11312
+1531,66.4504,15.0488,12.6838,0.069312,0.998336,0.012288,0.012288,0.038496,0.105952,0.102624,11.2316,0.112864
+1532,73.9778,13.5176,12.6341,0.069632,0.967968,0.012704,0.01184,0.037632,0.107712,0.103168,11.2105,0.11296
+1533,72.8722,13.7227,13.8673,0.069984,0.94352,0.012352,0.010976,0.038688,0.107776,0.102944,12.4684,0.11264
+1534,64.3055,15.5508,13.8957,0.06976,0.973024,0.013312,0.011264,0.036864,0.106496,0.103744,12.4662,0.11504
+1535,65.557,15.2539,12.7852,0.071616,1.06269,0.012576,0.011808,0.05168,0.106496,0.11264,11.2391,0.116608
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..064bc51
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,50.2442,19.9376,18.7803,0.0701488,0.877415,0.0109799,0.00865663,0.0346423,0.104585,0.102464,17.4558,0.115609
+max_1024,59.061,27.1211,25.9604,0.09712,1.59494,0.029664,0.024096,0.059328,0.12224,0.34512,24.6478,0.397664
+min_1024,36.8717,16.9316,18.0755,0.065888,0.792224,0.00896,0.007104,0.032736,0.100512,0.09872,16.8284,0.11264
+512,53.3111,18.7578,19.5931,0.06816,0.917696,0.01024,0.008192,0.034816,0.104448,0.101696,18.2334,0.114464
+513,48.8363,20.4766,18.2703,0.07088,0.81312,0.0104,0.008384,0.034336,0.103296,0.100416,17.0148,0.114688
+514,51.4987,19.418,18.2228,0.069696,0.802368,0.010432,0.00816,0.033536,0.104448,0.102208,16.9761,0.115904
+515,51.6129,19.375,19.5428,0.068384,0.840992,0.0104,0.00832,0.034336,0.103328,0.107936,18.2564,0.112704
+516,48.2905,20.708,18.3132,0.069632,0.868352,0.01024,0.008192,0.034816,0.104288,0.100512,17.0025,0.11472
+517,51.2205,19.5234,18.2805,0.071168,0.85248,0.011392,0.008352,0.033536,0.102368,0.1016,16.9829,0.116672
+518,51.1208,19.5615,19.6027,0.069664,0.892864,0.020512,0.008192,0.03456,0.102688,0.10032,18.2578,0.116096
+519,48.4023,20.6602,18.3172,0.069504,0.891008,0.01024,0.008224,0.034336,0.102848,0.102208,16.9822,0.11664
+520,50.4757,19.8115,18.3884,0.069632,0.943616,0.010464,0.008192,0.033216,0.105344,0.101024,17.0008,0.116096
+521,52.1199,19.1865,19.5469,0.070464,0.88048,0.010336,0.008256,0.0344,0.104864,0.102176,18.2233,0.11264
+522,48.2951,20.7061,18.3261,0.074368,0.886528,0.0104,0.008128,0.034016,0.10336,0.101888,16.9928,0.114688
+523,51.6598,19.3574,18.3255,0.069344,0.891456,0.010304,0.008224,0.034592,0.110816,0.102144,16.9843,0.114336
+524,50.7509,19.7041,20.7989,0.06928,0.889184,0.01024,0.008192,0.034016,0.103232,0.101408,19.4687,0.114624
+525,46.0266,21.7266,18.3194,0.069632,0.87968,0.0104,0.00832,0.03344,0.105536,0.101056,16.9966,0.114688
+526,51.2589,19.5088,18.2764,0.069536,0.85152,0.010336,0.00816,0.033248,0.104192,0.102112,16.9805,0.116736
+527,51.7668,19.3174,19.509,0.0696,0.845856,0.01024,0.008192,0.034144,0.103072,0.100352,18.2211,0.116512
+528,48.7619,20.5078,18.2702,0.070688,0.842048,0.0104,0.00816,0.034464,0.103296,0.101504,16.985,0.114688
+529,51.9586,19.2461,18.2446,0.069632,0.826784,0.0104,0.008192,0.033216,0.104256,0.100544,16.977,0.114624
+530,51.9691,19.2422,19.4841,0.069088,0.823968,0.010048,0.008128,0.03424,0.10672,0.100832,18.2171,0.113984
+531,47.893,20.8799,18.3562,0.069632,0.929792,0.02048,0.009344,0.033664,0.106336,0.100512,16.973,0.113472
+532,51.7276,19.332,18.2886,0.069632,0.857344,0.010368,0.00816,0.033472,0.105728,0.100864,16.9843,0.118752
+533,51.6077,19.377,19.483,0.068608,0.84544,0.010368,0.008224,0.03392,0.103168,0.101632,18.1967,0.114976
+534,48.7248,20.5234,18.2953,0.070176,0.8704,0.010368,0.008064,0.034816,0.104192,0.100608,16.982,0.114688
+535,51.6103,19.376,18.3398,0.07024,0.909312,0.010432,0.00912,0.033696,0.104448,0.1024,16.9861,0.11408
+536,51.3953,19.457,19.5279,0.07792,0.864736,0.010208,0.008192,0.034816,0.103872,0.10096,18.2128,0.114368
+537,47.7412,20.9463,18.3754,0.069728,0.948352,0.01056,0.008416,0.034272,0.10304,0.1024,16.9841,0.11456
+538,51.8061,19.3027,18.3031,0.069632,0.884736,0.010272,0.00816,0.034784,0.102464,0.10032,16.9779,0.114816
+539,51.9243,19.2588,19.5125,0.0696,0.837056,0.010368,0.008352,0.033056,0.10416,0.10064,18.2354,0.113856
+540,48.5953,20.5781,18.3073,0.068256,0.866112,0.010368,0.00816,0.0344,0.104512,0.100224,16.9982,0.117056
+541,51.4754,19.4268,18.2464,0.070304,0.827488,0.01024,0.008192,0.034432,0.103968,0.101248,16.9758,0.114688
+542,51.6415,19.3643,19.5177,0.070432,0.854016,0.01024,0.008192,0.034816,0.1056,0.101248,18.2186,0.114496
+543,48.7619,20.5078,18.2661,0.069632,0.82944,0.01024,0.008192,0.034816,0.104448,0.101856,16.9948,0.112768
+544,51.8928,19.2705,18.2852,0.069376,0.811872,0.01024,0.008192,0.034272,0.109088,0.106336,17.0211,0.114688
+545,50.7811,19.6924,18.2899,0.069632,0.866016,0.010368,0.00832,0.034368,0.10288,0.102208,16.9781,0.117984
+546,51.0392,19.5928,18.2543,0.0696,0.846368,0.01024,0.008192,0.034848,0.104416,0.100352,16.9649,0.115392
+547,51.9349,19.2549,18.246,0.070144,0.817152,0.010272,0.00816,0.034848,0.1024,0.102368,16.9861,0.114592
+548,51.2538,19.5107,19.5433,0.06912,0.889312,0.010336,0.008096,0.034848,0.104416,0.10176,18.2115,0.113952
+549,48.118,20.7822,18.3046,0.070016,0.894976,0.010432,0.00912,0.033696,0.10448,0.102112,16.9653,0.114432
+550,47.7145,20.958,18.3828,0.069632,0.956416,0.01024,0.008192,0.0344,0.104864,0.100352,16.9835,0.115296
+551,55.5315,18.0078,19.514,0.069568,0.830208,0.010272,0.008192,0.03424,0.102208,0.1008,18.2452,0.113344
+552,48.0932,20.793,18.3343,0.069728,0.911904,0.011296,0.007136,0.034816,0.104448,0.099936,16.9783,0.116736
+553,51.5661,19.3926,18.2406,0.069632,0.821408,0.010464,0.008832,0.034368,0.102848,0.100448,16.9778,0.114816
+554,51.9691,19.2422,19.4708,0.07008,0.808992,0.011552,0.008672,0.034496,0.104576,0.101984,18.2137,0.116736
+555,48.6438,20.5576,18.2328,0.069888,0.831328,0.010368,0.008192,0.034688,0.103712,0.101216,16.9591,0.11424
+556,49.1339,20.3525,18.4192,0.069632,0.99488,0.0104,0.008192,0.034528,0.10448,0.107072,16.9755,0.11456
+557,52.3651,19.0967,19.5486,0.06928,0.865088,0.010336,0.008192,0.04464,0.102752,0.101984,18.2317,0.114688
+558,46.3118,21.5928,18.303,0.069216,0.844192,0.010432,0.008,0.047104,0.109632,0.10112,16.9985,0.114784
+559,53.6997,18.6221,18.2883,0.069728,0.819104,0.011296,0.008352,0.033632,0.116704,0.11216,16.9989,0.118432
+560,51.4082,19.4521,19.5012,0.069792,0.846656,0.010304,0.008096,0.034752,0.10416,0.100736,18.2087,0.117952
+561,48.5745,20.5869,18.282,0.072032,0.858112,0.01168,0.008352,0.03424,0.102528,0.100928,16.9782,0.115872
+562,51.0113,19.6035,18.2994,0.070144,0.886656,0.010304,0.00816,0.034432,0.102816,0.100448,16.9718,0.114656
+563,51.814,19.2998,19.488,0.071008,0.840352,0.01024,0.008192,0.034688,0.102528,0.1024,18.2047,0.11392
+564,47.8684,20.8906,18.2866,0.069632,0.881728,0.0104,0.00816,0.0336,0.109984,0.10096,16.9574,0.114688
+565,52.112,19.1895,18.2784,0.0696,0.857216,0.010432,0.00832,0.033344,0.103712,0.102272,16.9788,0.114688
+566,51.5661,19.3926,19.4995,0.068448,0.85104,0.0104,0.008736,0.034144,0.10336,0.101376,18.2077,0.114272
+567,48.6808,20.542,18.2559,0.069632,0.82944,0.01024,0.008192,0.034816,0.104064,0.100736,16.9833,0.115456
+568,51.8271,19.2949,18.2456,0.069664,0.816256,0.010368,0.008192,0.033504,0.103552,0.101248,16.9882,0.114688
+569,51.8061,19.3027,19.492,0.069792,0.819072,0.011808,0.008352,0.034272,0.105152,0.10208,18.2277,0.113824
+570,48.6161,20.5693,18.2497,0.069632,0.818624,0.010336,0.008192,0.033248,0.104448,0.101568,16.9887,0.115008
+571,51.8114,19.3008,18.2293,0.069632,0.805984,0.010496,0.00816,0.033472,0.1024,0.1024,16.9834,0.113344
+572,51.7721,19.3154,19.4379,0.06992,0.810848,0.010368,0.00816,0.03392,0.103392,0.10032,18.1862,0.114688
+573,48.3726,20.6729,18.2654,0.0696,0.849472,0.0104,0.00832,0.033088,0.104288,0.101856,16.9737,0.114752
+574,52.0908,19.1973,18.264,0.0696,0.820288,0.010336,0.008192,0.03344,0.104384,0.100576,16.9984,0.118784
+575,51.8114,19.3008,19.4386,0.07168,0.80896,0.010272,0.009248,0.03376,0.104416,0.102112,18.1845,0.113696
+576,48.4894,20.623,18.3002,0.069696,0.874496,0.011392,0.00816,0.033696,0.10576,0.101088,16.98,0.115904
+577,52.2156,19.1514,18.2743,0.0696,0.817152,0.01024,0.008192,0.034592,0.103648,0.101216,17.0163,0.113344
+578,51.5091,19.4141,19.525,0.06928,0.887104,0.01024,0.008192,0.034304,0.10416,0.100832,18.1968,0.11408
+579,47.7991,20.9209,18.3259,0.069856,0.893696,0.01024,0.008224,0.034784,0.103552,0.100992,16.9877,0.116864
+580,50.8012,19.6846,18.3521,0.0696,0.919552,0.010464,0.009056,0.0336,0.102528,0.101792,16.9888,0.116736
+581,50.5929,19.7656,19.585,0.069632,0.915456,0.02048,0.02256,0.034208,0.102592,0.100384,18.2042,0.11552
+582,48.8456,20.4727,18.2727,0.069856,0.851712,0.0104,0.008544,0.034784,0.102176,0.100576,16.98,0.114688
+583,51.2795,19.501,18.3276,0.069632,0.89088,0.01024,0.02,0.034432,0.10288,0.110976,16.9751,0.113472
+584,50.3838,19.8477,19.5113,0.069632,0.847488,0.022912,0.008192,0.034816,0.104352,0.100448,18.21,0.113504
+585,48.9531,20.4277,18.2502,0.06944,0.830112,0.010496,0.00912,0.033664,0.10416,0.100608,16.9718,0.120768
+586,52.0405,19.2158,18.2192,0.068992,0.809824,0.01024,0.008192,0.03392,0.111264,0.101664,16.9584,0.116736
+587,51.2384,19.5166,19.5449,0.068448,0.919328,0.010432,0.008224,0.0344,0.102368,0.1008,18.1858,0.115168
+588,49.1198,20.3584,18.2404,0.069632,0.82416,0.01024,0.008192,0.034048,0.103168,0.101728,16.9741,0.115104
+589,51.7067,19.3398,19.5132,0.070912,0.845824,0.0104,0.008352,0.034304,0.102656,0.10112,18.2252,0.114464
+590,48.741,20.5166,19.5117,0.07008,0.838688,0.010368,0.008736,0.034368,0.117504,0.100352,18.2047,0.126944
+591,48.8759,20.46,18.2148,0.069728,0.804672,0.010368,0.00816,0.034688,0.104576,0.102336,16.9657,0.114528
+592,51.7355,19.3291,18.217,0.069312,0.807232,0.010336,0.008096,0.034816,0.104448,0.100384,16.9676,0.11472
+593,51.3077,19.4902,19.5789,0.069664,0.92976,0.010272,0.00816,0.034816,0.104,0.1008,18.2067,0.114688
+594,44.8729,22.2852,18.3132,0.0696,0.88272,0.011392,0.008128,0.033728,0.104448,0.100224,16.986,0.116992
+595,56.5121,17.6953,19.5072,0.0696,0.81872,0.010368,0.008544,0.034816,0.104352,0.10176,18.2436,0.115392
+596,47.9289,20.8643,19.6361,0.069248,0.985472,0.01024,0.008192,0.034816,0.102432,0.1016,18.2072,0.116896
+597,48.1475,20.7695,18.3585,0.069632,0.944128,0.01024,0.009504,0.033536,0.103936,0.100832,16.9718,0.11488
+598,51.7067,19.3398,18.305,0.07008,0.87216,0.010432,0.00816,0.03408,0.103264,0.1016,16.991,0.114208
+599,50.8972,19.6475,19.5933,0.06944,0.94848,0.011328,0.008288,0.033632,0.10416,0.102272,18.2026,0.11312
+600,47.7991,20.9209,18.3784,0.069632,0.960288,0.010368,0.00816,0.034368,0.105024,0.101792,16.9744,0.114368
+601,51.4832,19.4238,19.4541,0.06944,0.841504,0.010432,0.008352,0.03456,0.102624,0.100608,18.1719,0.114688
+602,48.3863,20.667,19.5893,0.069632,0.921856,0.0104,0.00816,0.034368,0.10304,0.101696,18.226,0.114112
+603,48.1271,20.7783,18.35,0.069952,0.954464,0.01024,0.008192,0.034752,0.102464,0.101888,16.9538,0.11424
+604,51.2179,19.5244,18.3153,0.069216,0.889248,0.011552,0.00816,0.033568,0.103968,0.1008,16.983,0.115712
+605,51.7721,19.3154,19.5338,0.0696,0.880576,0.010144,0.008384,0.033888,0.102816,0.102496,18.2092,0.116736
+606,48.2359,20.7314,18.2272,0.07104,0.823968,0.010208,0.009664,0.033344,0.104448,0.1016,16.958,0.114944
+607,51.6155,19.374,19.5676,0.069728,0.940576,0.010368,0.008352,0.034752,0.102496,0.100352,18.1876,0.11328
+608,48.7782,20.501,19.4807,0.069792,0.837632,0.010272,0.00816,0.034816,0.104448,0.099392,18.1924,0.123872
+609,46.4273,21.5391,18.3632,0.07056,0.956256,0.010368,0.008224,0.03424,0.102976,0.1024,16.9636,0.114592
+610,50.8592,19.6621,18.3502,0.069824,0.925728,0.010272,0.00816,0.033888,0.104608,0.101152,16.9816,0.114912
+611,50.5604,19.7783,19.5343,0.069248,0.889664,0.010272,0.00816,0.036352,0.102912,0.106528,18.1976,0.113504
+612,48.2632,20.7197,18.3227,0.069632,0.905216,0.010272,0.00816,0.034688,0.10256,0.102368,16.9749,0.114816
+613,50.8138,19.6797,18.3337,0.069664,0.92976,0.01024,0.008192,0.035904,0.102624,0.100768,16.9619,0.11472
+614,46.6366,21.4424,19.6547,0.069632,0.996864,0.018592,0.008128,0.033184,0.104448,0.101504,18.2076,0.114688
+615,53.09,18.8359,18.2028,0.068544,0.80672,0.010368,0.008224,0.034112,0.103072,0.10192,16.9518,0.11808
+616,49.1977,20.3262,18.3543,0.069568,0.938176,0.01024,0.008192,0.034272,0.102912,0.100416,16.9752,0.115296
+617,52.9172,18.8975,19.5745,0.070176,0.9216,0.01024,0.008224,0.034208,0.104544,0.100832,18.2108,0.113888
+618,48.1497,20.7686,18.2275,0.070272,0.816512,0.0104,0.00816,0.03344,0.10432,0.10192,16.9679,0.11456
+619,51.5869,19.3848,19.5155,0.070944,0.863136,0.01024,0.008192,0.034848,0.104224,0.102528,18.2068,0.114592
+620,48.5838,20.583,19.5704,0.078208,0.907008,0.01024,0.00816,0.033248,0.106048,0.102112,18.2113,0.114048
+621,48.7805,20.5,18.2421,0.068256,0.839648,0.011328,0.00832,0.0336,0.104352,0.101696,16.9603,0.114592
+622,51.8954,19.2695,18.2605,0.069664,0.839744,0.0104,0.008128,0.033184,0.103648,0.100704,16.9797,0.115296
+623,50.9808,19.6152,19.5703,0.069664,0.894976,0.011328,0.008352,0.033536,0.104416,0.100384,18.2313,0.116352
+624,47.8348,20.9053,18.3933,0.0696,0.932704,0.020512,0.008192,0.0344,0.1192,0.101792,16.9887,0.118144
+625,51.108,19.5664,18.6283,0.0696,0.84528,0.010496,0.008384,0.032896,0.103872,0.100672,17.3427,0.114368
+626,50.5879,19.7676,20.2749,0.071136,0.81136,0.0104,0.008128,0.034368,0.104,0.116992,19.0031,0.115456
+627,43.0216,23.2441,18.5245,0.070464,1.07725,0.01024,0.02048,0.034208,0.103008,0.100352,16.9861,0.122368
+628,56.1096,17.8223,18.2395,0.07072,0.80352,0.010176,0.008512,0.034784,0.10448,0.100352,16.9921,0.114816
+629,50.0195,19.9922,19.6133,0.069632,0.989184,0.01024,0.008224,0.034368,0.111008,0.101472,18.1749,0.114304
+630,49.9415,20.0234,18.1944,0.0696,0.804832,0.010272,0.008192,0.034144,0.103104,0.101696,16.9479,0.114688
+631,48.3863,20.667,18.366,0.070688,0.940032,0.029664,0.008224,0.034112,0.103072,0.100352,16.9636,0.116288
+632,53.3083,18.7588,20.8957,0.068928,0.952992,0.01024,0.008192,0.0344,0.10272,0.114784,19.4904,0.113088
+633,44.9182,22.2627,18.3129,0.069888,0.898944,0.01024,0.008192,0.034848,0.10368,0.107232,16.9652,0.114592
+634,49.1363,20.3516,18.2656,0.069632,0.85504,0.0104,0.00816,0.033664,0.104192,0.100608,16.9667,0.117216
+635,54.6804,18.2881,19.4754,0.069856,0.83408,0.010336,0.008288,0.034368,0.102816,0.1024,18.1978,0.115392
+636,48.5999,20.5762,18.2948,0.069888,0.898784,0.010272,0.008192,0.03424,0.102976,0.100384,16.9565,0.113536
+637,51.6389,19.3652,19.5409,0.069856,0.895712,0.01024,0.00816,0.034848,0.103904,0.102496,18.2027,0.112992
+638,47.7924,20.9238,19.542,0.0712,0.872896,0.010336,0.009152,0.03376,0.105728,0.100512,18.2251,0.113344
+639,49.1788,20.334,18.2153,0.069632,0.801216,0.01024,0.008192,0.034816,0.103648,0.101152,16.9718,0.114592
+640,51.0392,19.5928,18.2164,0.069824,0.813056,0.01024,0.008192,0.034048,0.105152,0.100448,16.9595,0.115936
+641,51.1846,19.5371,19.5716,0.069792,0.91968,0.01024,0.008352,0.034592,0.10304,0.100352,18.2128,0.112736
+642,48.4803,20.627,18.2189,0.069344,0.799072,0.01024,0.008192,0.034816,0.104448,0.100384,16.9753,0.117184
+643,51.1437,19.5527,18.7836,0.070688,0.975616,0.010368,0.008288,0.04016,0.111264,0.101792,17.3493,0.116064
+644,50.5031,19.8008,20.3596,0.070176,0.88224,0.010304,0.00816,0.033408,0.104448,0.103616,19.0319,0.115264
+645,46.1865,21.6514,18.2906,0.0744,0.871872,0.0104,0.00864,0.03424,0.10288,0.100448,16.973,0.11472
+646,51.2026,19.5303,18.2661,0.071712,0.866272,0.01024,0.008192,0.034784,0.104192,0.100288,16.9557,0.114688
+647,50.6655,19.7373,19.5157,0.06976,0.881984,0.010464,0.00832,0.034464,0.1032,0.10224,18.1923,0.113024
+648,44.4194,22.5127,18.3644,0.069792,0.927616,0.010304,0.008128,0.034816,0.104032,0.115104,16.9656,0.129024
+649,55.8403,17.9082,19.5113,0.068448,0.86224,0.010208,0.008192,0.034432,0.10384,0.101344,18.2088,0.113856
+650,45.4223,22.0156,19.5949,0.069824,0.943552,0.010368,0.008128,0.047424,0.104416,0.101632,18.1952,0.1144
+651,51.4392,19.4404,18.207,0.069184,0.803552,0.01024,0.008288,0.03472,0.104416,0.1024,16.9492,0.124928
+652,50.4458,19.8232,18.2785,0.0712,0.862784,0.01136,0.007104,0.040512,0.11904,0.100544,16.9492,0.116736
+653,51.6155,19.374,19.4985,0.069632,0.815136,0.011232,0.008352,0.033632,0.103584,0.102432,18.2377,0.116768
+654,48.7387,20.5176,18.2807,0.0696,0.854336,0.010208,0.009248,0.033728,0.103584,0.100896,16.9841,0.114976
+655,51.8402,19.29,18.2077,0.07056,0.802816,0.01024,0.008192,0.034112,0.10416,0.101344,16.9633,0.11296
+656,51.7433,19.3262,20.2625,0.065888,0.796416,0.010368,0.00832,0.034848,0.103424,0.11568,19.0136,0.113952
+657,46.966,21.292,18.2876,0.06992,0.889568,0.01024,0.018272,0.034144,0.104352,0.103232,16.9449,0.11296
+658,48.9835,20.415,18.4776,0.070208,1.03578,0.010368,0.016256,0.034944,0.116992,0.10048,16.9779,0.114624
+659,53.0405,18.8535,19.5017,0.069696,0.829824,0.01024,0.008192,0.034752,0.10416,0.10208,18.2298,0.112896
+660,48.5976,20.5771,18.2103,0.069632,0.812096,0.0104,0.008128,0.033632,0.102432,0.101408,16.956,0.116544
+661,50.1666,19.9336,19.5988,0.069248,0.9592,0.01136,0.00832,0.033568,0.106336,0.100512,18.1944,0.115872
+662,49.7425,20.1035,19.4484,0.068384,0.810976,0.010304,0.008128,0.034816,0.1024,0.102304,18.194,0.11712
+663,47.9423,20.8584,18.4034,0.069632,0.995328,0.010272,0.00816,0.034816,0.104448,0.10192,16.9641,0.11472
+664,51.7407,19.3271,18.1909,0.070208,0.794624,0.010272,0.00816,0.034816,0.105888,0.100832,16.9514,0.114688
+665,48.494,20.6211,19.6447,0.070624,0.965952,0.019136,0.008192,0.04464,0.104736,0.106464,18.211,0.113952
+666,50.7987,19.6855,18.2374,0.07136,0.827104,0.010432,0.008128,0.034272,0.103552,0.101536,16.9664,0.114688
+667,52.1597,19.1719,19.1915,0.07376,0.942752,0.010272,0.009312,0.03344,0.107936,0.10112,17.7985,0.114464
+668,48.7248,20.5234,19.5197,0.069856,0.896288,0.0104,0.00816,0.033376,0.104416,0.100256,18.1833,0.113664
+669,47.4998,21.0527,18.3407,0.069568,0.914304,0.020512,0.017984,0.03472,0.102912,0.100352,16.9656,0.114688
+670,51.5505,19.3984,18.358,0.070912,0.944224,0.010272,0.00816,0.03344,0.104448,0.101632,16.9685,0.116416
+671,51.8219,19.2969,19.4909,0.068992,0.833568,0.010368,0.008352,0.033344,0.104,0.1008,18.2149,0.116576
+672,48.3178,20.6963,18.221,0.070784,0.807776,0.01024,0.008192,0.034816,0.104192,0.101952,16.9602,0.12288
+673,51.5324,19.4053,18.2188,0.070976,0.792352,0.010688,0.008224,0.033184,0.1056,0.101376,16.9818,0.114656
+674,50.2651,19.8945,19.5381,0.069312,0.88128,0.010272,0.00816,0.034752,0.103552,0.100992,18.2152,0.114528
+675,46.9208,21.3125,18.5416,0.07168,1.12128,0.0256,0.008224,0.034816,0.102368,0.107872,16.9556,0.114144
+676,53.1286,18.8223,18.3562,0.069344,0.922304,0.011264,0.007136,0.034368,0.12128,0.110592,16.965,0.114848
+677,51.2821,19.5,19.555,0.070336,0.921632,0.011328,0.008352,0.035616,0.10352,0.10032,18.1892,0.114688
+678,47.6856,20.9707,18.2602,0.068864,0.864576,0.010368,0.00816,0.033376,0.104448,0.101824,16.9519,0.116736
+679,51.7616,19.3193,18.3071,0.069632,0.909184,0.0104,0.00816,0.034816,0.102432,0.102368,16.9551,0.114944
+680,52.3973,19.085,19.4495,0.0712,0.803808,0.010336,0.008096,0.034816,0.103808,0.100992,18.1962,0.120256
+681,48.6345,20.5615,18.2644,0.071296,0.844448,0.01024,0.008192,0.034848,0.104416,0.1024,16.9738,0.114688
+682,50.6479,19.7441,18.236,0.069152,0.830336,0.010272,0.00816,0.034336,0.104416,0.106368,16.9581,0.11488
+683,50.528,19.791,19.4781,0.069632,0.835584,0.01024,0.008192,0.034816,0.120832,0.110592,18.174,0.114272
+684,48.4207,20.6523,19.5666,0.069568,0.931968,0.011328,0.00816,0.033632,0.103584,0.099392,18.1943,0.114688
+685,48.69,20.5381,18.3217,0.069952,0.926976,0.010368,0.008352,0.033408,0.104256,0.101504,16.952,0.114944
+686,51.9007,19.2676,19.4176,0.069504,0.803424,0.010368,0.00816,0.03472,0.108544,0.100384,18.1668,0.115648
+687,48.6138,20.5703,18.3439,0.0696,0.950176,0.010336,0.008192,0.034208,0.103008,0.10144,16.952,0.114976
+688,46.6366,21.4424,18.4439,0.07168,1.03834,0.010304,0.008128,0.046976,0.104064,0.100576,16.9491,0.114752
+689,56.2947,17.7637,19.4375,0.070656,0.809664,0.01024,0.008352,0.032896,0.104448,0.101728,18.1849,0.114656
+690,48.3178,20.6963,19.4929,0.069632,0.865792,0.0104,0.008128,0.033184,0.105984,0.100864,18.1859,0.113024
+691,48.4711,20.6309,18.3161,0.070176,0.918944,0.0104,0.008352,0.038464,0.103392,0.106496,16.9452,0.114688
+692,51.2769,19.502,19.5572,0.068576,0.913408,0.01024,0.00816,0.036864,0.10448,0.100352,18.2005,0.11456
+693,48.2791,20.7129,18.3885,0.069856,0.960192,0.020128,0.00832,0.033632,0.102144,0.100416,16.979,0.114784
+694,50.658,19.7402,18.2743,0.069632,0.872448,0.010336,0.008096,0.034752,0.102368,0.100448,16.9595,0.116736
+695,48.1452,20.7705,19.7079,0.0696,1.09238,0.0184,0.008192,0.034656,0.103936,0.101024,18.1658,0.113952
+696,50.5904,19.7666,18.6348,0.069216,0.844192,0.0104,0.008032,0.034656,0.10256,0.10192,17.3491,0.114688
+697,50.8063,19.6826,19.2026,0.06944,0.893696,0.021728,0.00832,0.03344,0.11264,0.10176,17.8464,0.115168
+698,48.6484,20.5557,19.6263,0.072544,0.978944,0.01024,0.008192,0.03456,0.106112,0.100544,18.1985,0.116608
+699,48.2859,20.71,18.3259,0.071488,0.91808,0.010368,0.009088,0.039936,0.104288,0.10176,16.9562,0.114688
+700,51.6467,19.3623,18.3931,0.069632,0.976896,0.020512,0.00816,0.034848,0.104416,0.101792,16.9621,0.114688
+701,50.5654,19.7764,19.6481,0.069248,1.04486,0.010432,0.00832,0.034304,0.10288,0.102272,18.1618,0.113952
+702,47.8863,20.8828,19.6102,0.07024,0.905248,0.01152,0.008192,0.043008,0.102848,0.100672,18.2552,0.113312
+703,48.4436,20.6426,18.2149,0.069632,0.808992,0.010208,0.008192,0.034816,0.104448,0.110368,16.9536,0.114688
+704,50.7634,19.6992,19.5113,0.069632,0.864256,0.01024,0.008192,0.034272,0.102944,0.100352,18.2067,0.114656
+705,48.4321,20.6475,18.2754,0.069504,0.876704,0.0104,0.009696,0.034304,0.104544,0.10112,16.9544,0.114688
+706,50.776,19.6943,18.2636,0.069024,0.870976,0.010272,0.008192,0.034176,0.104384,0.105152,16.9431,0.118336
+707,52.8462,18.9229,19.5435,0.069792,0.919136,0.010432,0.008288,0.034016,0.102432,0.101088,18.1841,0.114144
+708,46.0991,21.6924,18.4402,0.070976,1.02995,0.010432,0.008448,0.041408,0.103936,0.1008,16.9575,0.116736
+709,54.2373,18.4375,19.0545,0.068384,0.808832,0.010336,0.008224,0.034784,0.104448,0.1024,17.8033,0.113792
+710,49.7474,20.1016,19.4498,0.069472,0.809088,0.01024,0.008192,0.034848,0.116672,0.100384,18.1862,0.114624
+711,46.9854,21.2832,18.4116,0.074944,1.00032,0.01024,0.017984,0.034912,0.104288,0.101984,16.9533,0.113632
+712,52.1571,19.1729,18.3359,0.068864,0.925664,0.010528,0.00816,0.033536,0.106496,0.106496,16.9612,0.115008
+713,52.0167,19.2246,19.4988,0.070112,0.86816,0.010368,0.008416,0.034816,0.102368,0.100352,18.1903,0.11392
+714,47.7256,20.9531,18.3268,0.069632,0.915456,0.01024,0.008192,0.034592,0.111968,0.100928,16.9578,0.117984
+715,47.759,20.9385,18.3519,0.069664,0.965792,0.010176,0.00832,0.033536,0.10384,0.109152,16.937,0.114464
+716,57.0219,17.5371,19.4095,0.070272,0.796672,0.01024,0.008192,0.034848,0.105568,0.101248,18.1692,0.113248
+717,48.623,20.5664,18.2022,0.070016,0.798016,0.010432,0.008352,0.03312,0.106432,0.101856,16.9597,0.11424
+718,50.9427,19.6299,18.4472,0.068512,1.05382,0.0104,0.00816,0.033504,0.105472,0.09936,16.9533,0.114656
+719,48.3178,20.6963,19.6168,0.069792,0.947936,0.020608,0.008192,0.034624,0.116896,0.10176,18.2025,0.114464
+720,50.9377,19.6318,18.2128,0.0696,0.831488,0.010272,0.00816,0.034368,0.102976,0.10128,16.94,0.114688
+721,51.1642,19.5449,18.339,0.069632,0.955392,0.0104,0.008352,0.033472,0.1024,0.108544,16.9341,0.116736
+722,50.8946,19.6484,19.5292,0.069312,0.893312,0.010304,0.008128,0.034816,0.103872,0.100288,18.1923,0.116864
+723,48.3863,20.667,18.3255,0.069792,0.915296,0.01024,0.008192,0.040352,0.10272,0.100608,16.9524,0.125856
+724,51.5713,19.3906,18.2023,0.071264,0.80224,0.010432,0.008128,0.033632,0.10448,0.101568,16.9557,0.114912
+725,51.0265,19.5977,19.583,0.075776,0.919584,0.011264,0.00832,0.033632,0.1024,0.102048,18.2173,0.112672
+726,47.5042,21.0508,18.3133,0.07616,0.919328,0.01024,0.008192,0.03616,0.103104,0.101824,16.9434,0.114912
+727,51.4573,19.4336,18.3071,0.069056,0.881216,0.01024,0.008192,0.0344,0.115104,0.106496,16.9688,0.113536
+728,52.0193,19.2236,19.438,0.070112,0.79872,0.01136,0.008192,0.033728,0.104416,0.102048,18.1948,0.114688
+729,47.7234,20.9541,18.2818,0.069632,0.870432,0.01136,0.008352,0.033504,0.104224,0.10672,16.9613,0.116288
+730,52.1067,19.1914,18.2474,0.069504,0.837088,0.010528,0.008512,0.033856,0.103392,0.100352,16.9585,0.125664
+731,51.5921,19.3828,19.5318,0.069824,0.848704,0.019424,0.008192,0.034816,0.1024,0.1024,18.2333,0.112672
+732,47.5969,21.0098,18.2516,0.07072,0.867264,0.0104,0.008032,0.034816,0.104448,0.101824,16.9392,0.114944
+733,48.3886,20.666,18.5324,0.069632,1.14483,0.01024,0.008192,0.034848,0.104416,0.103424,16.9434,0.113408
+734,55.3095,18.0801,19.4496,0.069696,0.816864,0.010496,0.007968,0.03328,0.104416,0.1016,18.1909,0.114336
+735,47.9715,20.8457,18.3327,0.068704,0.925568,0.01024,0.008224,0.042304,0.102432,0.100992,16.9595,0.114688
+736,51.2,19.5312,18.2953,0.069216,0.907424,0.010368,0.008,0.033312,0.102688,0.102368,16.9449,0.117024
+737,51.6077,19.377,19.4237,0.0696,0.809344,0.0104,0.008192,0.034592,0.102624,0.101632,18.1706,0.116672
+738,48.6276,20.5645,18.198,0.06896,0.796992,0.010336,0.008704,0.034336,0.103904,0.100704,16.9602,0.113952
+739,51.3489,19.4746,18.3445,0.069728,0.960096,0.010368,0.008352,0.037504,0.104448,0.102208,16.9391,0.112768
+740,48.2404,20.7295,19.8633,0.06912,1.20698,0.0104,0.00816,0.050944,0.1048,0.102272,18.1957,0.11488
+741,50.7609,19.7002,18.1719,0.0696,0.80608,0.0104,0.008224,0.033408,0.10448,0.100352,16.926,0.11328
+742,51.4444,19.4385,18.3764,0.069856,0.952064,0.010368,0.00816,0.034304,0.1168,0.113248,16.9554,0.116256
+743,50.7735,19.6953,19.5609,0.069312,0.935616,0.010368,0.00832,0.033408,0.102432,0.100352,18.1876,0.113472
+744,47.5328,21.0381,18.2149,0.06912,0.821728,0.01024,0.008192,0.034688,0.104448,0.10048,16.9492,0.116736
+745,52.0643,19.207,18.196,0.069664,0.805408,0.01024,0.008192,0.034816,0.10352,0.10096,16.9494,0.113856
+746,51.8586,19.2832,19.4243,0.070656,0.80016,0.010208,0.008448,0.034368,0.106528,0.101152,18.178,0.114688
+747,46.6834,21.4209,18.5038,0.069856,1.0689,0.022272,0.008384,0.047232,0.104384,0.112032,16.9575,0.113248
+748,53.6322,18.6455,18.2111,0.069984,0.8064,0.010272,0.008128,0.03328,0.104032,0.09872,16.9657,0.114656
+749,51.1131,19.5645,19.5039,0.06976,0.891584,0.011296,0.008384,0.037664,0.102432,0.100352,18.169,0.113472
+750,48.4848,20.625,18.2354,0.070816,0.828224,0.010496,0.00944,0.033312,0.116768,0.100352,16.9508,0.115168
+751,51.1335,19.5566,18.2397,0.069664,0.851968,0.01024,0.008192,0.034816,0.1024,0.10048,16.945,0.116896
+752,51.1616,19.5459,19.6691,0.069824,0.964608,0.010464,0.007968,0.034848,0.103936,0.10064,18.26,0.1168
+753,48.1384,20.7734,18.3173,0.069632,0.929792,0.01024,0.008192,0.034528,0.102688,0.101504,16.9454,0.115296
+754,44.7318,22.3555,18.5221,0.070976,1.12509,0.010208,0.008192,0.034496,0.104576,0.100544,16.9533,0.114688
+755,59.061,16.9316,19.4331,0.075776,0.827392,0.010464,0.009088,0.033728,0.104608,0.102208,18.1555,0.114336
+756,47.9985,20.834,18.2471,0.069632,0.86016,0.011456,0.008128,0.033664,0.10432,0.101888,16.9434,0.114528
+757,52.9363,18.8906,18.1982,0.069568,0.827424,0.011296,0.008352,0.0336,0.104096,0.100704,16.9288,0.1144
+758,51.522,19.4092,19.4873,0.069408,0.865088,0.01024,0.008192,0.034816,0.10352,0.100736,18.1786,0.116736
+759,48.8643,20.4648,18.2293,0.068992,0.84448,0.010272,0.00816,0.034752,0.102464,0.102272,16.9433,0.114656
+760,52.1252,19.1846,18.2137,0.0696,0.820064,0.01024,0.008192,0.034784,0.103712,0.100512,16.9519,0.114688
+761,50.9427,19.6299,19.4698,0.069472,0.854624,0.010208,0.008224,0.034432,0.102816,0.101536,18.1746,0.113888
+762,46.1407,21.6729,18.3071,0.071072,0.90992,0.011424,0.008128,0.033696,0.104448,0.10208,16.9516,0.11472
+763,54.6017,18.3145,18.2243,0.069632,0.835584,0.010368,0.00912,0.033792,0.103712,0.101056,16.9468,0.11424
+764,51.4547,19.4346,19.5585,0.069728,0.94384,0.010528,0.008192,0.033952,0.103264,0.10144,18.1729,0.114688
+765,48.5492,20.5977,18.238,0.06992,0.842048,0.01024,0.009568,0.033408,0.103584,0.100672,16.9518,0.116736
+766,50.2552,19.8984,18.4987,0.0696,1.09158,0.010272,0.022496,0.034816,0.1024,0.101728,16.95,0.11584
+767,52.3491,19.1025,19.4928,0.070368,0.820992,0.010336,0.00832,0.043168,0.1024,0.100384,18.2108,0.126016
+768,47.8147,20.9141,18.2901,0.07168,0.892928,0.011296,0.007136,0.034848,0.103744,0.100288,16.9532,0.114976
+769,52.2422,19.1416,18.3234,0.069312,0.911424,0.0104,0.00832,0.033152,0.102432,0.10208,16.9718,0.114464
+770,51.9665,19.2432,19.4704,0.069152,0.830048,0.010272,0.008128,0.034848,0.104128,0.100608,18.2004,0.1128
+771,47.846,20.9004,18.2368,0.069728,0.849952,0.01024,0.00816,0.034208,0.102176,0.1008,16.9468,0.114752
+772,51.241,19.5156,18.3542,0.069632,0.937984,0.010272,0.00816,0.040096,0.103264,0.101472,16.9645,0.118752
+773,52.2929,19.123,19.4611,0.070496,0.845824,0.0104,0.008192,0.034368,0.102848,0.1024,18.1734,0.113184
+774,49.0609,20.3828,18.1991,0.070208,0.802816,0.01024,0.008224,0.034208,0.104032,0.101344,16.9544,0.113696
+775,51.4263,19.4453,18.2129,0.069632,0.814432,0.010368,0.00832,0.04304,0.10416,0.101056,16.9482,0.113632
+776,52.1624,19.1709,19.4318,0.069216,0.79536,0.010304,0.008224,0.034528,0.104352,0.104544,18.1916,0.113664
+777,47.0005,21.2764,18.4565,0.069632,1.04566,0.010528,0.018816,0.038816,0.108288,0.102944,16.9472,0.11456
+778,51.7276,19.332,18.2769,0.069216,0.864608,0.0104,0.00816,0.04144,0.10448,0.114656,16.9472,0.116736
+779,48.3064,20.7012,20.8746,0.069664,1.05402,0.010432,0.00832,0.033152,0.104416,0.101632,19.379,0.113952
+780,48.0075,20.8301,18.2825,0.069632,0.884736,0.01024,0.018432,0.034176,0.104096,0.100864,16.9434,0.11696
+781,50.508,19.7988,18.3405,0.069504,0.96288,0.0104,0.00832,0.03424,0.102496,0.101056,16.9368,0.114816
+782,51.2384,19.5166,19.5277,0.070688,0.893952,0.010368,0.008064,0.034784,0.104384,0.100448,18.1903,0.114688
+783,49.2734,20.2949,18.174,0.069632,0.804736,0.010304,0.008256,0.034368,0.102848,0.100352,16.9288,0.114688
+784,52.2903,19.124,18.5907,0.076384,0.807168,0.010336,0.008224,0.034112,0.103072,0.1024,17.3356,0.113344
+785,50.658,19.7402,19.4722,0.071776,0.840992,0.010368,0.0088,0.034848,0.10368,0.107232,18.1813,0.113184
+786,48.5377,20.6025,18.2012,0.068544,0.808192,0.00896,0.009408,0.033632,0.104416,0.10144,16.9515,0.115104
+787,51.4806,19.4248,18.3449,0.069568,0.932832,0.01024,0.008192,0.034816,0.104384,0.100416,16.9677,0.116736
+788,52.1916,19.1602,19.4417,0.069632,0.806944,0.011264,0.007136,0.034816,0.104096,0.100704,18.1903,0.116768
+789,48.6253,20.5654,18.2164,0.070688,0.807392,0.010368,0.008352,0.034048,0.103424,0.10032,16.9677,0.11408
+790,52.0616,19.208,19.3468,0.069664,0.8064,0.010528,0.00816,0.034048,0.105184,0.100608,18.0961,0.116128
+791,49.2284,20.3135,19.4365,0.068576,0.802816,0.010176,0.008256,0.03408,0.103168,0.11056,18.1853,0.1136
+792,48.3521,20.6816,18.241,0.069632,0.843744,0.011552,0.008192,0.034848,0.103136,0.101888,16.9534,0.11456
+793,52.2449,19.1406,18.2022,0.069632,0.811008,0.011392,0.00816,0.033696,0.102016,0.100736,16.9513,0.114304
+794,51.2461,19.5137,19.5215,0.069632,0.892928,0.01024,0.008192,0.034336,0.104,0.1008,18.1847,0.116736
+795,48.2882,20.709,18.2784,0.069696,0.882624,0.01024,0.008192,0.034592,0.102656,0.100352,16.9531,0.116928
+796,51.4005,19.4551,18.2908,0.080256,0.882592,0.016736,0.008192,0.034816,0.103616,0.101184,16.9484,0.11504
+797,52.2769,19.1289,20.2625,0.0696,0.813408,0.011552,0.00848,0.033216,0.103808,0.102368,19,0.120128
+798,46.9682,21.291,18.1963,0.071456,0.800352,0.0104,0.008672,0.0344,0.105984,0.100992,16.9491,0.114944
+799,51.6806,19.3496,18.2132,0.069408,0.834016,0.010176,0.00832,0.035072,0.10384,0.10096,16.937,0.114464
+800,51.4573,19.4336,19.4348,0.069632,0.802528,0.010368,0.008352,0.034816,0.104448,0.100352,18.1903,0.113952
+801,48.911,20.4453,18.1757,0.07104,0.805504,0.01024,0.008192,0.033952,0.102784,0.100096,16.9273,0.116576
+802,52.2396,19.1426,19.4153,0.069088,0.807008,0.009088,0.008,0.034816,0.10384,0.100192,18.1684,0.114816
+803,48.8736,20.4609,19.4141,0.069696,0.802752,0.01024,0.008192,0.034816,0.1024,0.101376,18.1685,0.116128
+804,48.6553,20.5527,18.2374,0.069408,0.843968,0.01024,0.008192,0.034848,0.104032,0.10048,16.9516,0.114688
+805,51.5194,19.4102,18.2764,0.070816,0.895488,0.010464,0.016256,0.034368,0.103104,0.1024,16.9288,0.114688
+806,51.8428,19.2891,19.4048,0.069632,0.810208,0.010496,0.008352,0.034784,0.10416,0.10064,18.1518,0.114688
+807,49.5117,20.1973,18.2195,0.069312,0.811072,0.010368,0.00848,0.033312,0.108352,0.106688,16.9574,0.114464
+808,51.7433,19.3262,19.5686,0.069536,0.941728,0.0104,0.008192,0.03424,0.103264,0.100352,18.1862,0.114688
+809,45.0585,22.1934,19.5891,0.070784,0.965504,0.01024,0.008192,0.03424,0.102976,0.100352,18.1835,0.113312
+810,51.8114,19.3008,18.2531,0.069632,0.867936,0.0248,0.008224,0.034368,0.104096,0.099296,16.9267,0.118016
+811,51.7485,19.3242,18.2111,0.069216,0.83632,0.010272,0.00816,0.034816,0.1024,0.101728,16.9294,0.118784
+812,50.8441,19.668,19.4849,0.06992,0.85536,0.0104,0.008128,0.033344,0.10448,0.102112,18.1844,0.116736
+813,45.3057,22.0723,18.4647,0.070816,1.09037,0.010272,0.00816,0.034656,0.100512,0.103584,16.9317,0.114688
+814,54.9946,18.1836,18.6143,0.075424,0.823136,0.010368,0.00816,0.034368,0.101216,0.1024,17.3445,0.114688
+815,50.8592,19.6621,19.4276,0.071648,0.801024,0.010272,0.00816,0.034848,0.108224,0.106784,18.1731,0.113504
+816,47.7612,20.9375,18.2702,0.069184,0.882208,0.0104,0.008128,0.033632,0.104576,0.107488,16.9391,0.115424
+817,51.3592,19.4707,18.2792,0.069696,0.893056,0.010368,0.008384,0.033056,0.104096,0.100704,16.9444,0.115456
+818,51.4366,19.4414,19.456,0.069632,0.815104,0.01024,0.009344,0.033664,0.104128,0.102016,18.1951,0.116736
+819,48.7062,20.5312,18.2602,0.069536,0.870944,0.01024,0.008192,0.034624,0.104448,0.101696,16.945,0.115456
+820,51.8324,19.293,19.5379,0.07168,0.917504,0.011328,0.008128,0.033792,0.104448,0.108544,18.1637,0.118784
+821,48.8596,20.4668,19.4089,0.069632,0.83968,0.01024,0.008192,0.034816,0.103456,0.101344,18.1285,0.113024
+822,48.66,20.5508,18.2766,0.069856,0.877664,0.01728,0.008192,0.034784,0.103648,0.101216,16.9488,0.115104
+823,51.5142,19.4121,18.2363,0.069856,0.843648,0.010368,0.008352,0.033312,0.114208,0.110496,16.9312,0.11488
+824,51.9375,19.2539,19.4314,0.069632,0.804864,0.01024,0.008192,0.03472,0.104448,0.100224,18.1844,0.114688
+825,48.4848,20.625,18.217,0.069632,0.84112,0.01072,0.008352,0.034304,0.10416,0.100704,16.933,0.114976
+826,51.6911,19.3457,19.5682,0.069792,0.9624,0.010304,0.008128,0.034816,0.104288,0.100512,18.1612,0.116736
+827,48.939,20.4336,19.4202,0.069888,0.805632,0.010304,0.008128,0.034816,0.10448,0.101376,18.1688,0.116736
+828,48.5078,20.6152,18.2812,0.070464,0.886976,0.010272,0.00816,0.034464,0.104192,0.10096,16.9512,0.11456
+829,51.0978,19.5703,18.3029,0.069632,0.94416,0.011232,0.008352,0.033664,0.104224,0.102272,16.9145,0.114912
+830,48.6368,20.5605,19.5017,0.069952,0.92304,0.010368,0.00816,0.03472,0.103328,0.102432,18.135,0.114688
+831,51.6025,19.3789,18.2422,0.069728,0.875072,0.010304,0.008128,0.034816,0.104,0.1008,16.9247,0.114656
+832,50.688,19.7285,18.6864,0.0696,0.92608,0.010304,0.00816,0.034336,0.103136,0.101856,17.3178,0.115168
+833,49.8588,20.0566,19.8839,0.069632,1.04653,0.012288,0.008192,0.034816,0.104448,0.34512,18.1483,0.11456
+834,48.9765,20.418,18.2047,0.070816,0.832352,0.010272,0.00816,0.0344,0.102816,0.100384,16.9287,0.116736
+835,51.8061,19.3027,18.2804,0.069632,0.9032,0.010304,0.008096,0.034656,0.102592,0.102368,16.9349,0.114688
+836,51.4832,19.4238,19.5994,0.069632,0.941248,0.0104,0.00816,0.033472,0.104448,0.111872,18.2054,0.114688
+837,48.2336,20.7324,18.3547,0.069216,0.959328,0.011328,0.008384,0.033536,0.104448,0.1024,16.9513,0.11472
+838,52.0961,19.1953,18.6126,0.069376,0.862816,0.01024,0.008192,0.034624,0.103776,0.100672,17.3098,0.113056
+839,50.2305,19.9082,19.3827,0.068096,0.815104,0.010368,0.008096,0.034432,0.102752,0.101632,18.129,0.113248
+840,47.994,20.8359,18.3214,0.069632,0.94208,0.01136,0.008192,0.033696,0.104448,0.101952,16.9354,0.11472
+841,51.1744,19.541,18.2253,0.069248,0.834112,0.01024,0.008192,0.03408,0.103264,0.102272,16.9472,0.116736
+842,51.4728,19.4277,19.5427,0.069312,0.936096,0.010368,0.008128,0.033504,0.104448,0.100384,18.1637,0.116736
+843,48.1203,20.7812,18.2968,0.069632,0.888608,0.010368,0.009568,0.033536,0.103456,0.101344,16.9422,0.13808
+844,50.0782,19.9688,18.2156,0.070304,0.831488,0.010272,0.00816,0.034816,0.104448,0.1024,16.939,0.114688
+845,52.8162,18.9336,20.4779,0.06976,1.08912,0.010368,0.008352,0.034016,0.102976,0.1016,18.9484,0.113376
+846,46.1137,21.6855,18.2989,0.069792,0.915072,0.010368,0.008128,0.034432,0.104448,0.101152,16.9406,0.114848
+847,52.0325,19.2188,18.1718,0.069344,0.80992,0.01136,0.008352,0.03344,0.104,0.1008,16.9206,0.114016
+848,51.5869,19.3848,19.4852,0.06976,0.885536,0.01024,0.008192,0.034464,0.102752,0.101408,18.1581,0.11472
+849,48.3338,20.6895,18.3128,0.069664,0.933856,0.01024,0.008192,0.034528,0.103872,0.10704,16.9291,0.116288
+850,47.619,21,18.3955,0.069632,1.03242,0.010016,0.00816,0.033664,0.1024,0.100384,16.9236,0.115232
+851,55.8769,17.8965,19.4149,0.070624,0.80288,0.010368,0.008416,0.033536,0.104288,0.102304,18.1692,0.113376
+852,49.1316,20.3535,18.1944,0.070944,0.799424,0.010464,0.009984,0.034112,0.10416,0.100928,16.9347,0.129696
+853,51.4211,19.4473,18.174,0.074816,0.801728,0.011264,0.008352,0.034656,0.103424,0.102144,16.9242,0.113376
+854,49.459,20.2188,19.7001,0.07232,1.0793,0.01024,0.008192,0.034816,0.109696,0.105152,18.166,0.114464
+855,47.9042,20.875,18.398,0.068576,1.024,0.011424,0.008352,0.033472,0.103584,0.101216,16.9329,0.114528
+856,52.3143,19.1152,19.4212,0.069248,0.819616,0.010208,0.009472,0.033536,0.104448,0.100384,18.161,0.113312
+857,47.3548,21.1172,19.5343,0.069344,0.877344,0.011296,0.008352,0.0336,0.104448,0.101472,18.2154,0.113088
+858,49.174,20.3359,18.2482,0.069728,0.866688,0.01024,0.009216,0.033792,0.10432,0.100384,16.9371,0.116736
+859,52.0061,19.2285,18.1783,0.06928,0.807424,0.01024,0.009856,0.033152,0.104448,0.10176,16.9163,0.125856
+860,51.2718,19.5039,19.4642,0.070784,0.829952,0.010496,0.008128,0.034752,0.114688,0.102176,18.1784,0.114816
+861,48.1429,20.7715,18.2621,0.070944,0.864992,0.010336,0.009152,0.03376,0.103424,0.111328,16.9448,0.11344
+862,50.7987,19.6855,19.5996,0.075264,0.920288,0.011392,0.008128,0.033728,0.112672,0.101824,18.2216,0.114656
+863,47.9266,20.8652,19.4972,0.078048,0.864224,0.01024,0.008192,0.034816,0.103744,0.101056,18.1837,0.113152
+864,48.5584,20.5938,18.3106,0.069504,0.939584,0.0104,0.00816,0.034304,0.10336,0.101728,16.929,0.11456
+865,50.9149,19.6406,18.2871,0.069856,0.913728,0.010208,0.008192,0.033952,0.107008,0.100704,16.9299,0.113568
+866,51.3489,19.4746,19.5132,0.069664,0.846944,0.010496,0.00816,0.034688,0.104704,0.100896,18.2231,0.114528
+867,46.2511,21.6211,18.337,0.077824,0.944128,0.011552,0.00832,0.034528,0.103296,0.101792,16.9376,0.118016
+868,50.8592,19.6621,18.788,0.068736,1.0025,0.017952,0.008192,0.04128,0.10384,0.100704,17.328,0.1168
+869,50.3293,19.8691,20.3879,0.069632,0.891968,0.010528,0.008416,0.035168,0.102592,0.102144,19.0525,0.114976
+870,46.0639,21.709,18.2642,0.06944,0.883104,0.010368,0.008064,0.033216,0.104448,0.101504,16.9358,0.118272
+871,51.3901,19.459,18.2084,0.06992,0.82976,0.01136,0.008352,0.034656,0.108832,0.100992,16.9304,0.114176
+872,51.1437,19.5527,19.5341,0.071488,0.86016,0.0104,0.008128,0.033568,0.105792,0.100832,18.2295,0.114304
+873,46.9165,21.3145,18.4223,0.070208,1.03942,0.019392,0.008192,0.034784,0.10368,0.10096,16.9325,0.113184
+874,50.3392,19.8652,19.2737,0.067488,0.943264,0.025536,0.018432,0.034816,0.104448,0.10048,17.8645,0.11472
+875,48.9016,20.4492,19.5608,0.06944,0.918048,0.010272,0.00816,0.03472,0.110272,0.102336,18.1947,0.112896
+876,47.5174,21.0449,18.326,0.069728,0.939968,0.010432,0.00816,0.033024,0.10448,0.1016,16.9439,0.114688
+877,50.6029,19.7617,18.3788,0.07072,0.981952,0.010464,0.017696,0.033472,0.104256,0.101632,16.9457,0.112832
+878,51.0672,19.582,19.5645,0.0696,0.935936,0.01024,0.01792,0.03328,0.104448,0.1016,18.1769,0.114624
+879,48.1882,20.752,18.284,0.069216,0.895008,0.010432,0.00832,0.034176,0.103168,0.102176,16.945,0.116512
+880,52.5452,19.0312,19.3901,0.069248,0.798528,0.0104,0.008192,0.034272,0.10272,0.100992,18.1487,0.117056
+881,48.5308,20.6055,19.4026,0.068352,0.81504,0.01024,0.008224,0.034784,0.10192,0.100832,18.1468,0.11632
+882,49.2213,20.3164,18.3109,0.069696,0.917696,0.010368,0.00816,0.033024,0.1024,0.102144,16.9407,0.126752
+883,51.9007,19.2676,18.1917,0.07152,0.805024,0.01024,0.008192,0.034496,0.10384,0.10128,16.943,0.114144
+884,51.9744,19.2402,19.4132,0.069344,0.840096,0.01024,0.008192,0.03408,0.104352,0.099136,18.133,0.114688
+885,48.9203,20.4414,18.2066,0.069472,0.823232,0.0104,0.008256,0.034112,0.10928,0.100384,16.9365,0.114912
+886,51.3026,19.4922,19.6591,0.069216,1.01462,0.0104,0.008032,0.034816,0.104448,0.101536,18.2014,0.114592
+887,48.897,20.4512,19.4323,0.0696,0.817312,0.010432,0.008224,0.03328,0.104416,0.100352,18.176,0.112704
+888,46.8693,21.3359,18.446,0.069504,1.06438,0.010368,0.017024,0.034496,0.104032,0.101088,16.9288,0.11632
+889,52.4859,19.0527,18.2334,0.069728,0.841216,0.010432,0.00832,0.03392,0.10288,0.100864,16.9513,0.11472
+890,51.7433,19.3262,19.4601,0.070816,0.84464,0.011392,0.00816,0.033696,0.105536,0.100544,18.1601,0.125248
+891,48.3292,20.6914,19.454,0.070816,0.856928,0.01024,0.008192,0.034848,0.104416,0.100352,18.1555,0.11264
+892,48.9812,20.416,18.1693,0.07072,0.817632,0.0104,0.00816,0.03424,0.10336,0.10224,16.9077,0.114784
+893,52.1863,19.1621,19.4601,0.069664,0.82736,0.010272,0.00816,0.034816,0.1024,0.110592,18.1842,0.11264
+894,48.4436,20.6426,18.2656,0.069984,0.88064,0.026624,0.008192,0.034368,0.109024,0.103776,16.9181,0.114848
+895,51.6911,19.3457,18.2431,0.069312,0.869056,0.010304,0.008128,0.034816,0.102528,0.10208,16.9305,0.116416
+896,52.0537,19.2109,19.4703,0.069664,0.82912,0.0104,0.00816,0.033952,0.103424,0.101376,18.1975,0.116736
+897,48.7805,20.5,18.5245,0.069344,0.828,0.01024,0.008192,0.034816,0.1024,0.102304,17.2565,0.11264
+898,51.3798,19.4629,19.0227,0.069952,0.803328,0.010272,0.008224,0.034656,0.104576,0.101984,17.7764,0.113312
+899,49.3256,20.2734,19.5476,0.070752,0.955328,0.010208,0.008192,0.034752,0.102496,0.1024,18.1493,0.11408
+900,48.6184,20.5684,18.1911,0.069824,0.817376,0.010368,0.00816,0.034848,0.104608,0.100416,16.9308,0.114688
+901,51.4263,19.4453,18.1717,0.07008,0.815232,0.011296,0.008608,0.033344,0.10448,0.106464,16.9083,0.113952
+902,51.9639,19.2441,19.4593,0.069664,0.888832,0.010208,0.008192,0.03456,0.10416,0.1008,18.1284,0.114432
+903,44.2447,22.6016,18.2682,0.07088,0.903968,0.010272,0.00816,0.040288,0.103072,0.101568,16.9132,0.116736
+904,57.9186,17.2656,19.4198,0.069632,0.8072,0.010368,0.008192,0.034496,0.103328,0.100352,18.1699,0.116416
+905,47.9625,20.8496,19.4498,0.070176,0.838656,0.010432,0.008352,0.03344,0.104448,0.101376,18.1688,0.11408
+906,48.5078,20.6152,18.2433,0.071616,0.858176,0.010304,0.008128,0.034816,0.1024,0.101888,16.941,0.114944
+907,52.4,19.084,18.1958,0.0696,0.819104,0.010336,0.008192,0.034592,0.102656,0.102368,16.9349,0.114048
+908,51.9586,19.2461,19.5198,0.069856,0.917888,0.01024,0.008192,0.0344,0.106912,0.10176,18.1561,0.1144
+909,48.161,20.7637,19.5093,0.06944,0.907456,0.010272,0.00816,0.032928,0.108384,0.106528,18.1534,0.112672
+910,48.6415,20.5586,18.1862,0.069472,0.8296,0.01024,0.007808,0.034304,0.103296,0.100352,16.9165,0.114688
+911,52.4268,19.0742,19.4048,0.0696,0.822528,0.010272,0.008384,0.033312,0.1024,0.1024,18.1406,0.115232
+912,48.697,20.5352,18.2108,0.0696,0.8536,0.010368,0.008192,0.033056,0.10368,0.100576,16.917,0.114784
+913,51.7957,19.3066,18.2681,0.07088,0.918272,0.01024,0.008192,0.034816,0.112672,0.101376,16.897,0.114688
+914,51.9217,19.2598,19.4929,0.069632,0.874464,0.010272,0.008192,0.0344,0.104,0.101216,18.176,0.114688
+915,48.5262,20.6074,18.5927,0.0696,0.835584,0.010464,0.009088,0.033696,0.103968,0.101952,17.3147,0.113664
+916,50.5579,19.7793,18.2414,0.071648,0.865056,0.01024,0.008192,0.034592,0.102624,0.10144,16.933,0.11456
+917,50.3541,19.8594,19.4678,0.069632,0.859904,0.0104,0.00832,0.034656,0.102528,0.1024,18.1658,0.11424
+918,49.2924,20.2871,18.2339,0.06928,0.86928,0.011296,0.007136,0.034816,0.1024,0.100384,16.9205,0.11872
+919,51.8586,19.2832,18.1924,0.069536,0.843424,0.010464,0.008352,0.034176,0.101056,0.102336,16.9084,0.114752
+920,51.7328,19.3301,19.4351,0.0712,0.835712,0.010464,0.00816,0.034176,0.1032,0.101984,18.1498,0.120448
+921,48.5262,20.6074,18.1903,0.07104,0.838176,0.010304,0.008192,0.034816,0.102432,0.102112,16.9085,0.114688
+922,51.5454,19.4004,19.0853,0.071424,0.861536,0.010368,0.00816,0.0336,0.104448,0.101856,17.7792,0.11472
+923,48.9812,20.416,19.5075,0.069184,0.926464,0.01024,0.019616,0.033632,0.104256,0.101792,18.1295,0.1128
+924,48.7155,20.5273,18.208,0.0696,0.86016,0.01024,0.008192,0.034464,0.10464,0.100512,16.9043,0.115904
+925,51.2307,19.5195,18.2577,0.0696,0.896768,0.010336,0.008352,0.033952,0.104352,0.101344,16.9164,0.116512
+926,50.6931,19.7266,19.4929,0.070944,0.908,0.01024,0.008224,0.032736,0.104448,0.10032,18.1428,0.115136
+927,48.9484,20.4297,19.4765,0.069632,0.897056,0.010208,0.008192,0.034816,0.103616,0.101216,18.1371,0.114688
+928,48.7712,20.5039,18.1967,0.069856,0.855328,0.010368,0.00816,0.03344,0.104128,0.10064,16.9001,0.114688
+929,52.4161,19.0781,19.3702,0.069824,0.804832,0.01136,0.008128,0.033792,0.10576,0.101056,18.1224,0.113056
+930,49.108,20.3633,18.1719,0.069728,0.802432,0.009888,0.00816,0.033568,0.104416,0.1024,16.9267,0.114624
+931,52.1863,19.1621,18.1554,0.069824,0.808704,0.010304,0.008192,0.034624,0.10464,0.101408,16.9031,0.114528
+932,52.1916,19.1602,19.4323,0.0696,0.83968,0.010368,0.00816,0.033568,0.10448,0.10176,18.15,0.114688
+933,49.0421,20.3906,18.5446,0.069568,0.8152,0.010208,0.008192,0.03456,0.102688,0.101632,17.2869,0.115648
+934,51.2513,19.5117,19.0425,0.069632,0.821888,0.010464,0.008352,0.034848,0.104384,0.100384,17.7778,0.114784
+935,48.7619,20.5078,19.4562,0.070432,0.867584,0.017152,0.008192,0.0344,0.10432,0.100896,18.1391,0.11408
+936,49.1835,20.332,18.2106,0.069632,0.834656,0.010368,0.008128,0.033632,0.113824,0.109408,16.9162,0.114688
+937,52.0114,19.2266,18.2292,0.069312,0.846144,0.010272,0.00816,0.034816,0.1024,0.1024,16.9411,0.114688
+938,51.2461,19.5137,19.499,0.0696,0.888832,0.01024,0.008224,0.034304,0.104224,0.104224,18.1646,0.114688
+939,47.5439,21.0332,18.364,0.0696,0.99248,0.0104,0.00832,0.042976,0.103136,0.108544,16.9143,0.114208
+940,52.4053,19.082,18.2149,0.069632,0.854016,0.011296,0.00816,0.033792,0.104448,0.100352,16.9163,0.116896
+941,52.6045,19.0098,19.4294,0.069664,0.802112,0.0104,0.008352,0.03424,0.10272,0.10096,18.1859,0.115072
+942,48.8596,20.4668,18.1812,0.069632,0.813056,0.01024,0.008192,0.034016,0.102656,0.100896,16.9267,0.11584
+943,50.7735,19.6953,18.1903,0.069632,0.820288,0.010432,0.008352,0.033376,0.104448,0.103712,16.9266,0.113536
+944,52.4322,19.0723,19.3966,0.069632,0.811008,0.01024,0.008192,0.034688,0.102528,0.10192,18.1448,0.113632
+945,48.9437,20.4316,18.2373,0.069408,0.883168,0.010208,0.008704,0.034304,0.10288,0.10432,16.9098,0.114528
+946,51.2461,19.5137,18.2352,0.068224,0.843264,0.010368,0.008192,0.034368,0.104608,0.1008,16.9474,0.117984
+947,51.9797,19.2383,19.4188,0.069632,0.827424,0.010208,0.008192,0.033984,0.103232,0.100384,18.1493,0.116384
+948,49.2071,20.3223,18.174,0.070816,0.818112,0.01024,0.008192,0.034464,0.104128,0.100768,16.9124,0.11488
+949,51.5609,19.3945,18.278,0.06944,0.907584,0.01024,0.008192,0.034688,0.108672,0.1024,16.9224,0.114304
+950,50.688,19.7285,20.5121,0.0696,1.11002,0.011392,0.00816,0.033696,0.104448,0.100352,18.9603,0.114176
+951,46.9208,21.3125,18.1617,0.069664,0.80688,0.011296,0.008352,0.033632,0.104416,0.102432,16.9103,0.114688
+952,51.4573,19.4336,18.2067,0.070848,0.847968,0.0104,0.00816,0.033408,0.104448,0.101792,16.9161,0.1136
+953,52.1067,19.1914,19.3993,0.069824,0.820896,0.010368,0.008352,0.033312,0.103776,0.100448,18.1376,0.114688
+954,48.8876,20.4551,18.1998,0.069632,0.833376,0.0104,0.008192,0.032768,0.104448,0.101664,16.9213,0.117984
+955,47.3067,21.1387,19.4956,0.084288,0.874464,0.0104,0.008384,0.034592,0.109152,0.1016,18.1563,0.116448
+956,47.8952,20.8789,19.4585,0.0696,0.870272,0.010432,0.008128,0.033472,0.104448,0.100384,18.1451,0.116672
+957,50.3343,19.8672,18.2003,0.069664,0.843424,0.010496,0.008288,0.034144,0.10304,0.100352,16.9164,0.114496
+958,51.6025,19.3789,18.2932,0.070112,0.919552,0.01024,0.008192,0.049152,0.104192,0.100416,16.9164,0.114976
+959,51.9375,19.2539,19.423,0.070816,0.828256,0.01024,0.008192,0.034816,0.104448,0.102336,18.1494,0.114464
+960,48.7062,20.5312,18.1876,0.06944,0.829152,0.0104,0.00816,0.039264,0.104448,0.10144,16.9093,0.116064
+961,52.1385,19.1797,18.5387,0.069632,0.800352,0.0104,0.008352,0.0344,0.103072,0.101888,17.2971,0.113504
+962,51.2564,19.5098,20.2342,0.070176,0.808576,0.010432,0.008224,0.034048,0.103392,0.101344,18.9836,0.114336
+963,46.626,21.4473,18.2807,0.069248,0.924288,0.011328,0.008352,0.033504,0.1024,0.101536,16.915,0.115008
+964,51.3026,19.4922,18.2002,0.069632,0.835584,0.011296,0.008192,0.03376,0.103808,0.100288,16.9213,0.116384
+965,51.7119,19.3379,19.5099,0.071424,0.904064,0.011296,0.008416,0.033536,0.1024,0.1024,18.1556,0.1208
+966,48.1113,20.7852,18.2619,0.070368,0.898208,0.010368,0.008128,0.034688,0.103328,0.101536,16.9195,0.115712
+967,51.7015,19.3418,19.4315,0.075488,0.816608,0.010144,0.008352,0.033504,0.104,0.102496,18.1579,0.123008
+968,47.4866,21.0586,19.565,0.06976,0.960128,0.010432,0.01312,0.034816,0.103744,0.101056,18.1576,0.114368
+969,48.8643,20.4648,18.2188,0.069568,0.863808,0.010496,0.00832,0.033408,0.104128,0.101792,16.9125,0.114784
+970,51.1182,19.5625,18.2006,0.069664,0.818272,0.010368,0.00816,0.033568,0.104416,0.102432,16.9387,0.11504
+971,51.4366,19.4414,19.7259,0.079616,1.06723,0.0104,0.00832,0.033984,0.102624,0.1008,18.2089,0.114016
+972,48.2245,20.7363,18.2403,0.069472,0.885056,0.010432,0.008128,0.033312,0.104448,0.106496,16.9062,0.116736
+973,51.8009,19.3047,19.4048,0.069536,0.821312,0.010272,0.00816,0.034848,0.104192,0.100608,18.141,0.11488
+974,49.014,20.4023,19.4685,0.071168,0.8752,0.010368,0.008064,0.034848,0.104384,0.100576,18.1505,0.113344
+975,48.5584,20.5938,18.1777,0.069728,0.832864,0.010368,0.008352,0.033152,0.1024,0.10144,16.9052,0.114176
+976,50.8592,19.6621,18.291,0.069696,0.925952,0.020448,0.008192,0.034816,0.105536,0.10096,16.9107,0.114688
+977,51.6806,19.3496,19.5011,0.069408,0.897984,0.010432,0.009088,0.03376,0.103424,0.101344,18.1617,0.113984
+978,47.8371,20.9043,18.38,0.069632,1.00762,0.026624,0.008192,0.034368,0.102848,0.111712,16.9044,0.114624
+979,50.7031,19.7227,18.7759,0.069376,1.02861,0.010272,0.00816,0.042592,0.102816,0.10192,17.2975,0.11472
+980,50.5929,19.7656,20.2598,0.068576,0.835552,0.01024,0.008192,0.033856,0.104608,0.101024,18.983,0.11472
+981,46.3055,21.5957,18.2678,0.069184,0.909536,0.01072,0.008288,0.034208,0.102912,0.101824,16.9143,0.116864
+982,51.9586,19.2461,18.1925,0.069792,0.837248,0.010368,0.008224,0.033408,0.104448,0.100352,16.9124,0.116288
+983,51.9112,19.2637,19.4474,0.069888,0.839968,0.01024,0.008192,0.034464,0.103776,0.100928,18.1662,0.11376
+984,48.1656,20.7617,18.2041,0.070048,0.849312,0.010432,0.00816,0.033216,0.106112,0.100736,16.9103,0.115744
+985,52.3143,19.1152,18.2286,0.073696,0.85968,0.0104,0.008096,0.033184,0.104096,0.102272,16.9231,0.114048
+986,51.478,19.4258,20.4829,0.06848,0.86016,0.01024,0.008224,0.034592,0.103936,0.33248,18.9516,0.113248
+987,46.7409,21.3945,18.1741,0.069632,0.816576,0.0104,0.00864,0.034176,0.10704,0.100448,16.9139,0.113312
+988,51.7015,19.3418,18.198,0.069632,0.845536,0.010304,0.00816,0.034368,0.10448,0.10064,16.9086,0.116352
+989,51.9007,19.2676,19.4644,0.06976,0.837664,0.011296,0.008352,0.033568,0.1024,0.100352,18.1853,0.115648
+990,47.9715,20.8457,18.2764,0.069632,0.905216,0.010272,0.00816,0.034816,0.104192,0.100608,16.9185,0.124928
+991,52.2342,19.1445,19.4549,0.07056,0.847872,0.011328,0.00896,0.034528,0.104192,0.10224,18.1626,0.11264
+992,48.748,20.5137,19.4376,0.069632,0.857536,0.010368,0.008192,0.034624,0.10464,0.1008,18.1371,0.114656
+993,48.7201,20.5254,18.2968,0.069632,0.919552,0.01024,0.008192,0.034816,0.104352,0.101888,16.9346,0.1136
+994,51.6493,19.3613,18.2668,0.070112,0.91264,0.010368,0.008096,0.033664,0.104352,0.101504,16.9111,0.114976
+995,51.4935,19.4199,19.3993,0.06976,0.825888,0.010336,0.00912,0.033824,0.102368,0.101824,18.133,0.113248
+996,48.9297,20.4375,18.1895,0.070656,0.83664,0.01136,0.008128,0.03376,0.102368,0.100384,16.9084,0.117824
+997,51.4832,19.4238,18.2286,0.069632,0.890848,0.01024,0.008192,0.034816,0.1024,0.100352,16.8978,0.114304
+998,51.6963,19.3438,19.4769,0.070048,0.835552,0.010272,0.00816,0.034272,0.104864,0.10048,18.1862,0.126976
+999,44.2907,22.5781,18.4717,0.070432,1.12627,0.010368,0.008224,0.034048,0.10272,0.100768,16.9042,0.114688
+1000,56.2947,17.7637,19.4007,0.069664,0.821216,0.01024,0.008192,0.034144,0.104928,0.10176,18.1359,0.114688
+1001,48.1973,20.748,18.2252,0.073984,0.85376,0.011328,0.008352,0.043808,0.1024,0.102016,16.9148,0.114688
+1002,48.2064,20.7441,18.4349,0.069632,1.04938,0.0184,0.008192,0.045056,0.109824,0.106816,16.914,0.113632
+1003,53.8947,18.5547,19.5514,0.069664,0.966656,0.010208,0.008192,0.034816,0.104448,0.107808,18.1358,0.113824
+1004,48.7201,20.5254,18.1976,0.0696,0.845824,0.011296,0.00816,0.043648,0.104064,0.100864,16.8963,0.11792
+1005,51.8428,19.2891,19.4703,0.0696,0.87568,0.02096,0.008608,0.034208,0.102432,0.100928,18.1422,0.11568
+1006,48.3384,20.6875,19.4978,0.068544,0.919552,0.01024,0.008224,0.034304,0.104576,0.100704,18.1349,0.116736
+1007,48.748,20.5137,18.184,0.07008,0.831488,0.01024,0.008192,0.034848,0.102368,0.101888,16.9102,0.114656
+1008,52.4429,19.0684,18.1643,0.068192,0.81424,0.010368,0.00816,0.033536,0.106208,0.102016,16.9067,0.11488
+1009,52.197,19.1582,19.4119,0.06864,0.815072,0.011296,0.008352,0.033568,0.104448,0.108448,18.1491,0.113056
+1010,48.4757,20.6289,18.1726,0.068288,0.8192,0.01024,0.008192,0.034112,0.1032,0.101344,16.9129,0.115104
+1011,50.4235,19.832,19.4406,0.070304,0.857696,0.0104,0.00832,0.035264,0.1024,0.101824,18.1395,0.114944
+1012,49.3161,20.2773,19.456,0.069632,0.847744,0.010368,0.00816,0.033792,0.103424,0.100352,18.1669,0.115616
+1013,49.7764,20.0898,18.1628,0.069632,0.81456,0.0104,0.008352,0.034272,0.103168,0.102432,16.9052,0.114784
+1014,51.4056,19.4531,18.2174,0.071584,0.856384,0.010176,0.00816,0.033088,0.104192,0.100192,16.9189,0.114688
+1015,50.3442,19.8633,19.4813,0.070048,0.889152,0.01024,0.008192,0.034816,0.103744,0.101056,18.1511,0.11296
+1016,48.7712,20.5039,18.8614,0.070688,0.815232,0.010304,0.00816,0.033568,0.104256,0.100544,17.5795,0.1392
+1017,49.82,20.0723,18.1737,0.069536,0.851488,0.010368,0.008352,0.034112,0.103424,0.102208,16.8798,0.1144
+1018,51.9481,19.25,19.418,0.069792,0.858304,0.010624,0.008192,0.034048,0.103328,0.100384,18.1187,0.114656
+1019,48.8783,20.459,18.1924,0.068448,0.8328,0.010432,0.008352,0.033152,0.102432,0.102208,16.9166,0.117888
+1020,51.5661,19.3926,18.1999,0.069216,0.856672,0.010272,0.00816,0.034752,0.103712,0.099104,16.9021,0.11584
+1021,51.3953,19.457,19.5051,0.071488,0.940192,0.01024,0.008192,0.034816,0.103456,0.101088,18.121,0.114688
+1022,48.6415,20.5586,18.216,0.069664,0.874464,0.01024,0.008192,0.0344,0.10464,0.099968,16.8987,0.115776
+1023,52.1863,19.1621,19.0054,0.067584,0.831232,0.0104,0.00832,0.034496,0.104352,0.10176,17.7344,0.112864
+1024,50.0098,19.9961,19.3903,0.069984,0.815488,0.011328,0.00816,0.03376,0.104064,0.100544,18.1328,0.114176
+1025,48.6877,20.5391,18.2149,0.0696,0.868352,0.010272,0.00816,0.034848,0.108544,0.107872,16.8938,0.11344
+1026,52.0802,19.2012,18.1863,0.069952,0.831296,0.010368,0.008224,0.034816,0.104448,0.100384,16.9083,0.11856
+1027,52.0855,19.1992,19.4066,0.070688,0.813472,0.0104,0.00832,0.034304,0.104384,0.100768,18.1489,0.115392
+1028,48.4115,20.6562,19.456,0.071328,0.864608,0.010272,0.008192,0.03424,0.10432,0.10064,18.1476,0.114848
+1029,47.0199,21.2676,18.1961,0.069696,0.859744,0.0104,0.00832,0.03392,0.103328,0.10192,16.8944,0.114304
+1030,54.2201,18.4434,19.387,0.070208,0.810336,0.010368,0.00848,0.03408,0.10544,0.100352,18.1344,0.113344
+1031,48.6461,20.5566,18.2485,0.068416,0.896736,0.010432,0.008288,0.034368,0.104704,0.101824,16.9107,0.113088
+1032,51.0621,19.584,18.2866,0.069632,0.929792,0.010272,0.00816,0.034656,0.110336,0.106912,16.9019,0.114976
+1033,51.4728,19.4277,19.4478,0.069504,0.860256,0.011296,0.008352,0.0336,0.103776,0.101024,18.1468,0.11312
+1034,48.3566,20.6797,18.6348,0.069632,0.888864,0.01024,0.00816,0.034336,0.102912,0.10224,17.3016,0.116736
+1035,51.0519,19.5879,19.0874,0.07168,0.837216,0.010432,0.00832,0.034272,0.104224,0.101216,17.8044,0.115616
+1036,49.014,20.4023,19.5664,0.069504,0.95088,0.011328,0.008192,0.03376,0.104,0.100768,18.1718,0.11616
+1037,48.9671,20.4219,18.1936,0.07168,0.847264,0.0104,0.008352,0.034176,0.103168,0.100544,16.9042,0.113888
+1038,51.9691,19.2422,18.1849,0.068288,0.830688,0.010432,0.008416,0.033152,0.104448,0.100352,16.9144,0.114688
+1039,50.925,19.6367,19.5892,0.06848,0.972096,0.010368,0.00832,0.033216,0.103968,0.100864,18.178,0.113824
+1040,46.8607,21.3398,18.7597,0.070464,0.9872,0.01024,0.01616,0.034112,0.119456,0.09968,17.3081,0.114336
+1041,49.9756,20.0098,18.95,0.073728,1.59494,0.010432,0.008384,0.032864,0.104416,0.103552,16.9071,0.114624
+1042,51.9007,19.2676,19.4171,0.06976,0.845728,0.010208,0.008192,0.03424,0.103008,0.10048,18.1318,0.113664
+1043,48.3978,20.6621,18.2921,0.069664,0.956384,0.01024,0.008192,0.034816,0.106496,0.102432,16.8857,0.118112
+1044,51.3953,19.457,18.198,0.071168,0.847712,0.0104,0.008192,0.033344,0.104352,0.11264,16.8953,0.114848
+1045,51.3747,19.4648,19.4446,0.070496,0.86576,0.010528,0.008352,0.042816,0.109952,0.102688,18.1147,0.119296
+1046,48.9437,20.4316,18.1666,0.070464,0.829472,0.01024,0.008224,0.034688,0.104544,0.100352,16.8939,0.114784
+1047,51.2718,19.5039,19.2942,0.069056,1.1167,0.010272,0.008224,0.03408,0.10272,0.102048,17.738,0.113088
+1048,49.574,20.1719,19.4544,0.069248,0.865056,0.010272,0.00816,0.034528,0.10384,0.101184,18.1489,0.113152
+1049,48.9063,20.4473,18.1659,0.06832,0.825312,0.01024,0.008192,0.034816,0.104544,0.107584,16.8926,0.114208
+1050,51.8324,19.293,18.1782,0.069376,0.83008,0.01024,0.008192,0.034624,0.10368,0.099264,16.9062,0.116512
+1051,51.8849,19.2734,19.4371,0.069568,0.858304,0.01024,0.008192,0.034656,0.10256,0.102016,18.1354,0.11616
+1052,48.517,20.6113,18.1965,0.069408,0.862208,0.010496,0.00816,0.034528,0.103776,0.100448,16.8924,0.115104
+1053,51.2666,19.5059,19.5215,0.071008,0.93856,0.010304,0.008256,0.034496,0.104416,0.102304,18.1389,0.113248
+1054,48.7758,20.502,19.4301,0.069376,0.854624,0.0104,0.00816,0.034432,0.10512,0.101536,18.1329,0.113568
+1055,47.8281,20.9082,18.2756,0.069696,0.914912,0.010368,0.008352,0.034112,0.103392,0.104064,16.9165,0.114144
+1056,51.5039,19.416,18.201,0.069856,0.87696,0.01024,0.008224,0.034656,0.104128,0.100192,16.8823,0.114464
+1057,50.658,19.7402,19.4621,0.0696,0.899072,0.01024,0.008192,0.034848,0.103904,0.100864,18.1228,0.11264
+1058,49.6846,20.127,18.1575,0.0696,0.83152,0.010208,0.008192,0.0344,0.102816,0.100352,16.8837,0.116768
+1059,51.8691,19.2793,18.1979,0.069504,0.852096,0.01024,0.008192,0.034816,0.1024,0.101952,16.9026,0.116064
+1060,50.8845,19.6523,19.5155,0.06976,0.935936,0.010304,0.00816,0.034624,0.104256,0.100736,18.1365,0.115232
+1061,48.8596,20.4668,19.8295,0.071456,0.841856,0.010368,0.008352,0.034304,0.101376,0.101376,18.5453,0.11504
+1062,47.0199,21.2676,20.4491,0.067584,0.87648,0.010304,0.008224,0.036832,0.10352,0.111424,19.1161,0.118624
+1063,46.7495,21.3906,25.9604,0.0696,0.868384,0.01024,0.00816,0.034656,0.104224,0.100608,24.6478,0.116736
+1064,36.8717,27.1211,18.2477,0.072992,0.905344,0.010176,0.00816,0.033472,0.104448,0.101408,16.8982,0.113472
+1065,51.7172,19.3359,18.2065,0.069664,0.827392,0.0184,0.008192,0.036032,0.103232,0.102432,16.9267,0.114464
+1066,51.5454,19.4004,19.5748,0.069632,0.897024,0.010336,0.008096,0.034624,0.108736,0.107776,18.2239,0.114752
+1067,48.5907,20.5801,18.1684,0.06816,0.858112,0.010336,0.008096,0.034816,0.1024,0.100352,16.8726,0.113536
+1068,52.1279,19.1836,18.2028,0.069824,0.848352,0.0104,0.00816,0.034304,0.104608,0.100352,16.9083,0.118496
+1069,51.7642,19.3184,19.5247,0.069632,0.855424,0.010432,0.00832,0.034208,0.103328,0.101568,18.2239,0.117856
+1070,48.9671,20.4219,18.154,0.070112,0.819232,0.01024,0.00816,0.03472,0.103968,0.100384,16.8924,0.11472
+1071,52.197,19.1582,18.1689,0.069632,0.816576,0.0104,0.008608,0.034784,0.105472,0.10256,16.9062,0.114656
+1072,51.6025,19.3789,19.5908,0.069664,0.95504,0.0104,0.008032,0.034432,0.10896,0.100352,18.1893,0.114656
+1073,46.3432,21.5781,18.4074,0.07376,1.07926,0.010272,0.016352,0.034816,0.10352,0.101184,16.8748,0.11344
+1074,53.3889,18.7305,18.1816,0.069632,0.824416,0.010464,0.00816,0.033504,0.104448,0.100352,16.9124,0.118272
+1075,51.1182,19.5625,19.5432,0.0696,0.970368,0.010368,0.014592,0.034816,0.102432,0.101952,18.1242,0.114912
+1076,48.6831,20.541,18.177,0.06992,0.816832,0.0104,0.00816,0.033632,0.118784,0.101504,16.9021,0.115648
+1077,51.4056,19.4531,18.2395,0.07168,0.86016,0.010496,0.00912,0.059328,0.103328,0.100352,16.9117,0.113312
+1078,51.6963,19.3438,19.4317,0.069536,0.840096,0.011296,0.00816,0.033792,0.104448,0.1024,18.1487,0.11328
+1079,49.0093,20.4043,19.3714,0.0712,0.80944,0.0104,0.009088,0.03376,0.104448,0.1024,18.1166,0.114016
+1080,46.9337,21.3066,18.2179,0.068512,0.88064,0.011392,0.008128,0.033728,0.110592,0.102208,16.888,0.114688
+1081,51.9112,19.2637,19.4358,0.06944,0.877152,0.01024,0.008192,0.034496,0.100672,0.102112,18.1189,0.11456
+1082,48.9765,20.418,18.1969,0.069536,0.83552,0.010368,0.00832,0.033376,0.104224,0.100544,16.9185,0.116448
+1083,52.1279,19.1836,18.1514,0.069664,0.825312,0.011328,0.008352,0.0336,0.1024,0.102368,16.8837,0.114656
+1084,51.8061,19.3027,19.4166,0.07168,0.838944,0.010368,0.00816,0.033408,0.120512,0.101728,18.1176,0.114208
+1085,49.0328,20.3945,19.3544,0.070464,0.81008,0.010496,0.00832,0.0344,0.10336,0.101888,18.0897,0.125664
+1086,49.0187,20.4004,18.1641,0.070048,0.825376,0.010208,0.008192,0.034528,0.103936,0.101184,16.896,0.114624
+1087,51.8796,19.2754,19.4247,0.069632,0.878624,0.010208,0.008192,0.034816,0.104384,0.100416,18.1055,0.11296
+1088,48.5861,20.582,18.2107,0.069408,0.862464,0.010336,0.008064,0.034816,0.102464,0.101376,16.9071,0.114656
+1089,51.9691,19.2422,18.1896,0.069696,0.867936,0.0104,0.00832,0.033088,0.103616,0.099136,16.8796,0.117792
+1090,51.6493,19.3613,19.4044,0.069312,0.83856,0.01024,0.008224,0.034752,0.102432,0.101632,18.1229,0.116288
+1091,48.897,20.4512,18.4715,0.069824,0.841952,0.010368,0.008288,0.032736,0.10352,0.101312,17.1888,0.114688
+1092,51.0265,19.5977,19.034,0.07024,0.858112,0.0104,0.008032,0.034816,0.104224,0.100224,17.7339,0.114112
+1093,49.8103,20.0762,19.3931,0.069888,0.8456,0.010336,0.008352,0.033376,0.104448,0.1024,18.1043,0.114336
+1094,48.697,20.5352,18.1611,0.069632,0.836768,0.010432,0.008128,0.033536,0.105696,0.10112,16.8813,0.114432
+1095,51.9639,19.2441,18.1591,0.0696,0.830848,0.010336,0.008352,0.033216,0.109632,0.107008,16.8759,0.114208
+1096,50.528,19.791,19.3893,0.068512,0.819008,0.010368,0.008256,0.033952,0.103264,0.100352,18.1309,0.114688
+1097,49.8539,20.0586,18.1268,0.069536,0.804288,0.010336,0.00864,0.03424,0.102304,0.10112,16.8796,0.116736
+1098,51.0367,19.5938,19.3939,0.069792,0.840992,0.010368,0.00816,0.035072,0.103712,0.100544,18.1107,0.11456
+1099,49.8977,20.041,19.3985,0.07168,0.845824,0.01024,0.008192,0.034816,0.1024,0.101472,18.1092,0.114688
+1100,47.9311,20.8633,18.2852,0.069664,0.95056,0.0104,0.008192,0.032896,0.104064,0.100128,16.8945,0.114752
+1101,51.8219,19.2969,18.1731,0.068608,0.85808,0.010464,0.009152,0.033632,0.104224,0.101792,16.8743,0.1128
+1102,51.6181,19.373,19.4013,0.069632,0.842368,0.01024,0.008192,0.033088,0.108224,0.102048,18.114,0.113504
+1103,48.8783,20.459,19.415,0.069472,0.856224,0.010208,0.008224,0.034688,0.102528,0.102368,18.1178,0.113536
+1104,47.9625,20.8496,18.2317,0.0696,0.879104,0.01024,0.008192,0.034176,0.10304,0.101952,16.9108,0.114656
+1105,52.6262,19.002,19.3944,0.069632,0.839072,0.010368,0.008288,0.03456,0.102656,0.100736,18.1125,0.116544
+1106,48.9297,20.4375,18.1574,0.069504,0.825504,0.010272,0.008128,0.034816,0.104416,0.100384,16.8897,0.114656
+1107,51.0469,19.5898,18.1998,0.069632,0.869888,0.010368,0.008352,0.038336,0.102432,0.100448,16.8864,0.113952
+1108,53.2446,18.7812,19.3904,0.0696,0.843072,0.010368,0.008192,0.033344,0.1056,0.101088,18.1045,0.114688
+1109,48.8503,20.4707,18.5632,0.069024,0.837824,0.010464,0.008352,0.03424,0.102912,0.100352,17.2874,0.112672
+1110,49.8491,20.0605,18.4975,0.071616,1.15923,0.01024,0.008224,0.034272,0.110528,0.099904,16.8888,0.114688
+1111,52.0802,19.2012,19.4126,0.069376,0.856192,0.010368,0.008192,0.034176,0.103008,0.100416,18.1166,0.114304
+1112,48.3201,20.6953,18.227,0.08,0.87984,0.010368,0.00816,0.03472,0.111392,0.10832,16.8757,0.118432
+1113,52.325,19.1113,18.178,0.069632,0.823296,0.011392,0.008352,0.034528,0.117152,0.100864,16.8981,0.114688
+1114,52.2289,19.1465,19.3908,0.069632,0.819424,0.010368,0.00816,0.0344,0.104928,0.102016,18.1284,0.113504
+1115,48.8783,20.459,18.1228,0.069632,0.80688,0.01136,0.008768,0.034592,0.102976,0.10192,16.8731,0.113504
+1116,52.0855,19.1992,19.1341,0.069536,0.929888,0.01024,0.008192,0.034688,0.107936,0.1072,17.7517,0.114656
+1117,49.622,20.1523,19.3864,0.069632,0.827328,0.010304,0.008192,0.03424,0.10448,0.100896,18.1184,0.112928
+1118,48.1113,20.7852,18.2258,0.068448,0.888832,0.01024,0.008224,0.034688,0.104032,0.100704,16.8935,0.117056
+1119,52.2449,19.1406,18.1449,0.069696,0.819584,0.01024,0.008192,0.034816,0.103904,0.100896,16.8828,0.114784
+1120,51.8061,19.3027,19.3759,0.0696,0.818816,0.0104,0.00816,0.034624,0.102784,0.100448,18.1166,0.114528
+1121,48.9812,20.416,19.2628,0.070976,0.83952,0.010336,0.008352,0.034688,0.103136,0.1024,17.977,0.116352
+1122,49.0374,20.3926,18.1495,0.070016,0.843776,0.011808,0.00816,0.034848,0.104704,0.100608,16.8612,0.114432
+1123,52.0325,19.2188,19.3953,0.069536,0.832384,0.010368,0.008224,0.034528,0.102656,0.102112,18.1221,0.113344
+1124,48.813,20.4863,18.1801,0.069344,0.837536,0.0104,0.008192,0.033024,0.109888,0.10624,16.8908,0.114688
+1125,51.5505,19.3984,18.2269,0.069696,0.89952,0.01024,0.008192,0.034336,0.10288,0.102272,16.8831,0.116704
+1126,52.6478,18.9941,19.3722,0.069056,0.803488,0.0104,0.008384,0.03456,0.104672,0.101792,18.1231,0.116704
+1127,48.5354,20.6035,19.4845,0.070016,0.93152,0.01024,0.008192,0.034176,0.100992,0.100352,18.1146,0.114464
+1128,48.1656,20.7617,18.1897,0.07168,0.866304,0.01024,0.008192,0.034848,0.1024,0.102368,16.8776,0.116064
+1129,51.9217,19.2598,19.4112,0.069408,0.864928,0.010496,0.009056,0.033728,0.103904,0.10192,18.1045,0.11328
+1130,48.855,20.4688,18.1371,0.069664,0.817024,0.010336,0.00816,0.034304,0.10496,0.101536,16.8764,0.114656
+1131,51.1131,19.5645,18.2657,0.071232,0.942368,0.0104,0.008192,0.033952,0.103296,0.102336,16.8796,0.114272
+1132,52.0431,19.2148,19.3985,0.069632,0.865792,0.010272,0.008192,0.033248,0.104448,0.100192,18.0918,0.114912
+1133,48.6322,20.5625,18.5819,0.069536,0.866752,0.01024,0.008192,0.03408,0.102656,0.100832,17.2748,0.11472
+1134,50.9909,19.6113,19.028,0.069632,0.832704,0.011072,0.008192,0.034304,0.102208,0.10096,17.7533,0.115616
+1135,49.5692,20.1738,19.413,0.06976,0.847744,0.01024,0.008192,0.034816,0.103872,0.10096,18.1239,0.113536
+1136,48.8689,20.4629,18.1724,0.070112,0.842976,0.010368,0.00816,0.033504,0.104448,0.100384,16.8878,0.114656
+1137,51.535,19.4043,18.1612,0.069632,0.835584,0.01136,0.008352,0.033568,0.104608,0.10224,16.8816,0.11424
+1138,51.6806,19.3496,19.4397,0.069504,0.87472,0.010208,0.008192,0.03456,0.1088,0.100352,18.1187,0.114688
+1139,48.748,20.5137,19.4084,0.069632,0.837632,0.010272,0.00816,0.034816,0.1024,0.1016,18.1297,0.114208
+1140,48.5584,20.5938,18.2007,0.069312,0.874912,0.010272,0.00816,0.034432,0.104832,0.102176,16.8812,0.115392
+1141,51.3798,19.4629,19.4478,0.069472,0.901248,0.020256,0.008416,0.034176,0.104256,0.101184,18.0956,0.113152
+1142,49.1835,20.332,18.1545,0.068576,0.83312,0.010368,0.008128,0.034208,0.104384,0.100864,16.8801,0.114752
+1143,51.8481,19.2871,18.2286,0.069888,0.9128,0.010432,0.00832,0.034368,0.102912,0.102144,16.8731,0.114688
+1144,51.8428,19.2891,19.4481,0.0696,0.900832,0.010368,0.008672,0.034784,0.104448,0.102112,18.1036,0.1136
+1145,49.0515,20.3867,18.1293,0.076224,0.814208,0.0104,0.008928,0.03408,0.104832,0.100736,16.8654,0.11456
+1146,51.8586,19.2832,19.3885,0.069984,0.833696,0.010304,0.008192,0.03392,0.103104,0.100544,18.1144,0.114336
+1147,48.7109,20.5293,19.396,0.069632,0.83968,0.01024,0.008192,0.034816,0.104448,0.100352,18.1146,0.114048
+1148,48.1701,20.7598,18.2091,0.069216,0.862336,0.010336,0.008128,0.033408,0.104224,0.100544,16.9042,0.116736
+1149,51.6702,19.3535,18.1821,0.069536,0.859232,0.00944,0.009088,0.033664,0.104448,0.1024,16.8796,0.114688
+1150,51.5505,19.3984,19.6403,0.071552,1.05894,0.010432,0.008,0.034624,0.10464,0.101408,18.136,0.114688
+1151,48.5538,20.5957,18.2306,0.071616,0.893024,0.010432,0.00912,0.033568,0.102496,0.100384,16.8958,0.114144
+1152,51.4005,19.4551,18.1964,0.0696,0.866336,0.01024,0.00816,0.034304,0.104704,0.102112,16.8863,0.114688
+1153,51.8324,19.293,19.4304,0.068576,0.861696,0.010464,0.008352,0.034048,0.107392,0.106528,18.1207,0.11264
+1154,48.517,20.6113,18.3065,0.068928,0.967456,0.01024,0.008192,0.03456,0.102656,0.1024,16.896,0.116064
+1155,52.0325,19.2188,18.1657,0.0696,0.835584,0.010368,0.009152,0.033728,0.10368,0.10112,16.8858,0.116672
+1156,51.6025,19.3789,19.4724,0.069792,0.906336,0.010368,0.00816,0.03344,0.10432,0.10048,18.1225,0.116992
+1157,47.9356,20.8613,18.1658,0.07152,0.853376,0.010368,0.008352,0.03328,0.104128,0.100704,16.8694,0.114656
+1158,53.2889,18.7656,18.1366,0.069984,0.807072,0.010272,0.00816,0.034816,0.104448,0.100352,16.8858,0.115776
+1159,51.0367,19.5938,19.4251,0.069632,0.880032,0.010368,0.008352,0.033056,0.104128,0.100704,18.1043,0.114496
+1160,48.2064,20.7441,19.5086,0.069632,0.957472,0.010368,0.00816,0.033664,0.104064,0.100384,18.1105,0.114368
+1161,48.6553,20.5527,18.2143,0.069632,0.89232,0.0104,0.008352,0.033056,0.109632,0.106592,16.8699,0.114432
+1162,52.1067,19.1914,19.4394,0.068256,0.87184,0.010464,0.00816,0.03312,0.104192,0.100576,18.1282,0.114624
+1163,48.5354,20.6035,18.1842,0.0696,0.866304,0.01024,0.008192,0.034816,0.104288,0.10192,16.8718,0.116992
+1164,51.985,19.2363,18.1953,0.070528,0.878688,0.010304,0.008128,0.034432,0.102688,0.100416,16.875,0.115104
+1165,52.0378,19.2168,19.4032,0.069248,0.879456,0.011392,0.008384,0.033472,0.104384,0.101792,18.0822,0.112864
+1166,48.8736,20.4609,18.5336,0.069056,0.819808,0.010208,0.008192,0.03472,0.104544,0.100384,17.2725,0.11424
+1167,51.0519,19.5879,18.1504,0.069472,0.826816,0.010624,0.008352,0.03424,0.102592,0.100928,16.8828,0.11456
+1168,49.6461,20.1426,19.5806,0.070912,1.02192,0.010688,0.00816,0.034272,0.105152,0.110208,18.1045,0.11472
+1169,49.3875,20.248,18.217,0.069504,0.90976,0.01024,0.008192,0.034848,0.102368,0.101856,16.8633,0.11696
+1170,52.112,19.1895,18.1818,0.080896,0.83664,0.010208,0.008192,0.0344,0.104448,0.100768,16.8899,0.116352
+1171,51.6233,19.3711,19.4906,0.06976,0.918816,0.010368,0.0088,0.034848,0.104064,0.101824,18.1277,0.114336
+1172,48.2291,20.7344,19.5011,0.069984,0.945664,0.010368,0.01408,0.034496,0.103296,0.100448,18.1082,0.114592
+1173,48.9765,20.418,18.1582,0.070208,0.816608,0.010336,0.008384,0.034976,0.10256,0.1024,16.898,0.114688
+1174,52.1704,19.168,19.3775,0.069632,0.833536,0.01024,0.008192,0.034816,0.10432,0.10048,18.1023,0.114048
+1175,49.141,20.3496,18.1431,0.069632,0.815136,0.010208,0.009408,0.0336,0.10416,0.100672,16.8855,0.114752
+1176,51.7328,19.3301,18.2026,0.069632,0.872448,0.01024,0.008192,0.034816,0.104064,0.10016,16.8863,0.116736
+1177,52.3303,19.1094,19.3737,0.0696,0.81632,0.010464,0.008256,0.033312,0.104448,0.100384,18.1144,0.116512
+1178,48.1792,20.7559,18.2353,0.069472,0.899424,0.01136,0.00816,0.033728,0.103808,0.100832,16.8814,0.127072
+1179,51.9744,19.2402,18.89,0.071584,0.849216,0.0104,0.00832,0.033312,0.104416,0.101792,17.5929,0.117984
+1180,49.3494,20.2637,19.41,0.069664,0.8704,0.010208,0.008192,0.034816,0.10576,0.101152,18.0957,0.114144
+1181,48.8456,20.4727,18.2148,0.069856,0.869824,0.010304,0.008416,0.0344,0.104928,0.103424,16.8991,0.114528
+1182,52.1704,19.168,18.1944,0.069632,0.863904,0.010368,0.008,0.0344,0.103232,0.1016,16.8886,0.114688
+1183,51.4366,19.4414,19.3904,0.0696,0.827392,0.01024,0.008192,0.034688,0.102528,0.1024,18.1207,0.114688
+1184,49.5021,20.2012,18.1369,0.070944,0.819936,0.01024,0.008224,0.034816,0.102368,0.100352,16.875,0.11504
+1185,50.3541,19.8594,18.1413,0.06976,0.815072,0.01136,0.008352,0.033536,0.10352,0.10128,16.8837,0.114688
+1186,53.5117,18.6875,19.3864,0.069696,0.830688,0.010432,0.00816,0.03472,0.104512,0.101056,18.1125,0.114688
+1187,48.9437,20.4316,18.1474,0.077504,0.827104,0.010368,0.008352,0.034464,0.103104,0.1024,16.8708,0.113376
+1188,51.9217,19.2598,18.2102,0.069792,0.854016,0.011328,0.008192,0.033696,0.10448,0.10176,16.9109,0.115968
+1189,52.2023,19.1562,19.365,0.0696,0.811008,0.011424,0.008384,0.033472,0.104416,0.10176,18.1091,0.11584
+1190,48.9624,20.4238,18.1497,0.069376,0.82592,0.01024,0.008192,0.034816,0.104448,0.100352,16.8796,0.116736
+1191,52.1544,19.1738,18.1599,0.068832,0.837408,0.01024,0.008192,0.034816,0.1024,0.10208,16.8813,0.114592
+1192,52.112,19.1895,19.3802,0.076352,0.821408,0.01024,0.008192,0.034368,0.102848,0.102368,18.1103,0.114048
+1193,48.5538,20.5957,18.2088,0.069632,0.88064,0.01024,0.008192,0.034816,0.101632,0.10112,16.8878,0.114688
+1194,52.1651,19.1699,18.1519,0.070112,0.824736,0.010336,0.008128,0.03472,0.104896,0.100544,16.8817,0.116736
+1195,51.6806,19.3496,19.3638,0.0696,0.802848,0.01024,0.008224,0.034816,0.11584,0.102272,18.1033,0.116704
+1196,48.9671,20.4219,18.1302,0.069312,0.807232,0.01024,0.008224,0.0344,0.110656,0.100672,16.8729,0.116512
+1197,52.0167,19.2246,18.1005,0.069952,0.800704,0.01024,0.008192,0.034208,0.103008,0.100384,16.8606,0.113216
+1198,51.2769,19.502,19.4708,0.069248,0.891744,0.010464,0.007968,0.034848,0.104416,0.101792,18.1357,0.114656
+1199,49.1646,20.3398,18.123,0.06992,0.809344,0.01024,0.008192,0.034368,0.104032,0.101216,16.8714,0.114304
+1200,51.8009,19.3047,18.1528,0.06976,0.814976,0.01024,0.023872,0.035296,0.11904,0.116704,16.8461,0.116832
+1201,51.8061,19.3027,19.5323,0.069408,0.973536,0.01024,0.008192,0.034592,0.102656,0.104416,18.1125,0.116736
+1202,48.7805,20.5,18.1945,0.069632,0.865888,0.0104,0.008128,0.034976,0.103968,0.100896,16.8859,0.11472
+1203,52.3624,19.0977,18.1242,0.071392,0.810976,0.010464,0.008128,0.032896,0.103456,0.101344,16.8714,0.114144
+1204,51.2205,19.5234,20.2401,0.086048,0.837632,0.010208,0.008192,0.034816,0.104352,0.100448,18.9436,0.114816
+1205,47.2194,21.1777,18.1303,0.069664,0.797728,0.010368,0.008352,0.034528,0.103296,0.101536,16.8887,0.116128
+1206,51.2718,19.5039,18.2001,0.069632,0.874496,0.010272,0.00816,0.034816,0.104448,0.101472,16.8821,0.114752
+1207,51.0113,19.6035,19.4989,0.068288,0.950208,0.01024,0.008192,0.034528,0.104096,0.102208,18.1071,0.114016
+1208,49.2497,20.3047,18.1482,0.068416,0.82688,0.010368,0.00816,0.033184,0.102432,0.10192,16.8814,0.115424
+1209,52.2342,19.1445,18.4494,0.071168,0.803328,0.01024,0.009536,0.033472,0.1024,0.100352,17.2032,0.115744
+1210,51.478,19.4258,20.1554,0.07136,0.803136,0.010304,0.009824,0.03328,0.105376,0.100512,18.9073,0.114336
+1211,46.2888,21.6035,18.2069,0.069888,0.913344,0.010272,0.00816,0.034848,0.102272,0.100448,16.8541,0.1136
+1212,51.985,19.2363,18.15,0.069888,0.837984,0.010336,0.008096,0.034848,0.105472,0.101344,16.8668,0.115232
+1213,51.5091,19.4141,19.4241,0.06848,0.894944,0.01024,0.008192,0.034816,0.108576,0.10032,18.0859,0.112672
+1214,48.6646,20.5488,18.1945,0.069824,0.86128,0.0104,0.008192,0.034592,0.104864,0.104544,16.886,0.11472
+1215,48.4894,20.623,19.4596,0.0696,0.879648,0.0104,0.008352,0.03344,0.104448,0.101472,18.138,0.114208
+1216,51.985,19.2363,19.3556,0.070752,0.81808,0.010368,0.008064,0.034816,0.104448,0.101984,18.0924,0.114688
+1217,48.152,20.7676,18.2737,0.069632,0.944288,0.010368,0.008224,0.034048,0.102848,0.10064,16.8872,0.11648
+1218,50.3392,19.8652,18.1969,0.070144,0.883744,0.010368,0.008128,0.033728,0.104416,0.10048,16.8711,0.114816
+1219,53.1617,18.8105,19.4124,0.0696,0.839712,0.010272,0.00816,0.034816,0.104224,0.102656,18.1289,0.114048
+1220,49.4208,20.2344,18.5115,0.069632,0.80064,0.010336,0.00816,0.033888,0.109536,0.101792,17.2632,0.114272
+1221,49.8297,20.0684,18.2474,0.069632,0.935904,0.010272,0.008192,0.034016,0.102784,0.1008,16.8706,0.1152
+1222,52.702,18.9746,19.3789,0.068512,0.81488,0.01024,0.008192,0.034304,0.102912,0.100352,18.1248,0.114656
+1223,48.384,20.668,18.26,0.069664,0.937728,0.01024,0.008416,0.034528,0.103872,0.100608,16.88,0.114912
+1224,51.1131,19.5645,18.1874,0.069632,0.88064,0.010272,0.00816,0.034816,0.104384,0.100256,16.8634,0.115808
+1225,51.2256,19.5215,19.48,0.06976,0.927584,0.01024,0.008192,0.034528,0.102432,0.1024,18.1107,0.114176
+1226,49.3589,20.2598,18.1334,0.070048,0.80032,0.0104,0.008416,0.034624,0.104128,0.100896,16.8899,0.114688
+1227,51.5869,19.3848,18.158,0.069376,0.824,0.01024,0.008192,0.034528,0.102688,0.101728,16.8926,0.114656
+1228,51.7642,19.3184,19.5124,0.069632,0.937984,0.01024,0.008224,0.034016,0.102752,0.100384,18.1352,0.114016
+1229,45.8084,21.8301,18.2152,0.071936,0.888,0.010368,0.008352,0.033312,0.102432,0.102112,16.884,0.114688
+1230,54.1169,18.4785,18.2343,0.07056,0.9216,0.01024,0.008192,0.040256,0.102688,0.106016,16.8579,0.116832
+1231,52.3839,19.0898,19.3712,0.071168,0.804608,0.0104,0.008352,0.033216,0.104064,0.100736,18.1242,0.114528
+1232,47.7969,20.9219,18.2582,0.069888,0.929792,0.01024,0.008192,0.034176,0.104384,0.099008,16.8893,0.113184
+1233,48.8363,20.4766,18.3204,0.069664,0.995296,0.010336,0.008096,0.034848,0.103936,0.100864,16.8828,0.114592
+1234,54.9474,18.1992,19.3939,0.069568,0.800064,0.010368,0.008288,0.033376,0.105408,0.100608,18.1518,0.1144
+1235,48.4069,20.6582,18.1146,0.069632,0.820448,0.010368,0.008224,0.033408,0.1024,0.101984,16.8534,0.114688
+1236,50.7785,19.6934,18.2561,0.070016,0.96016,0.010336,0.00816,0.034752,0.104032,0.102112,16.8499,0.116576
+1237,51.4883,19.4219,20.5897,0.06928,0.819552,0.011296,0.008384,0.033568,0.104256,0.101792,19.3278,0.113792
+1238,45.911,21.7812,18.2374,0.069664,0.917472,0.02048,0.008224,0.034752,0.10448,0.100352,16.8673,0.114688
+1239,51.8639,19.2812,18.2545,0.069632,0.912096,0.017568,0.008448,0.033376,0.102496,0.10208,16.8941,0.114688
+1240,48.4803,20.627,19.6127,0.070432,1.03446,0.010272,0.00816,0.034816,0.12224,0.102624,18.115,0.11472
+1241,50.9859,19.6133,18.1068,0.071392,0.815104,0.010368,0.008768,0.034304,0.104128,0.101216,16.8484,0.113152
+1242,51.7799,19.3125,18.6512,0.07472,0.937984,0.020512,0.00816,0.034848,0.103488,0.10128,17.2556,0.114592
+1243,49.8442,20.0625,19.3535,0.06976,0.844064,0.010304,0.00816,0.034336,0.102848,0.100416,18.0694,0.114176
+1244,48.4252,20.6504,18.2972,0.069824,0.952448,0.021504,0.007168,0.034496,0.104768,0.100352,16.8932,0.11344
+1245,51.3283,19.4824,18.2517,0.069472,0.911904,0.01024,0.01024,0.034496,0.108864,0.101472,16.8901,0.114944
+1246,52.6154,19.0059,19.4167,0.069664,0.800736,0.011264,0.008224,0.033696,0.103616,0.1008,18.1724,0.116352
+1247,47.7656,20.9355,18.1929,0.069504,0.871008,0.01024,0.008192,0.034432,0.10288,0.102304,16.8694,0.124928
+1248,51.5505,19.3984,18.3808,0.071584,1.03757,0.019328,0.0096,0.035008,0.10288,0.101472,16.8886,0.114688
+1249,52.2716,19.1309,20.1912,0.067616,0.806432,0.0104,0.00832,0.034304,0.103072,0.1024,18.9456,0.11312
+1250,43.6413,22.9141,18.3625,0.069728,1.03014,0.010272,0.00816,0.036864,0.102496,0.100256,16.8898,0.114784
+1251,53.6969,18.623,18.2354,0.073248,0.928032,0.0104,0.008192,0.0344,0.1008,0.101568,16.8641,0.114656
+1252,50.8946,19.6484,19.5134,0.068448,0.929344,0.010336,0.008288,0.03504,0.103552,0.100416,18.1435,0.114464
+1253,48.5907,20.5801,18.211,0.069824,0.902304,0.010336,0.00832,0.033408,0.103648,0.100736,16.8677,0.114688
+1254,51.3901,19.459,18.6242,0.069632,0.92944,0.010592,0.008224,0.034112,0.1048,0.100672,17.2496,0.11712
+1255,51.1182,19.5625,20.224,0.069792,0.874336,0.011328,0.008416,0.033504,0.116736,0.1016,18.8916,0.116704
+1256,47.0761,21.2422,18.1644,0.070208,0.849984,0.01024,0.008224,0.032736,0.10464,0.101504,16.8721,0.114784
+1257,49.9269,20.0293,19.2069,0.0704,0.868352,0.011424,0.008352,0.037568,0.101792,0.107008,17.8873,0.114752
+1258,51.2205,19.5234,18.1233,0.069792,0.799232,0.011264,0.007168,0.034816,0.104448,0.1024,16.8796,0.114528
+1259,52.2769,19.1289,18.0755,0.069536,0.792224,0.010368,0.00832,0.034272,0.103104,0.101888,16.8408,0.115008
+1260,51.4263,19.4453,19.3978,0.069312,0.863936,0.010176,0.00816,0.033504,0.10576,0.100448,18.0823,0.124128
+1261,47.7211,20.9551,18.1678,0.07168,0.854016,0.01024,0.008224,0.03472,0.102464,0.100352,16.8571,0.129024
+1262,51.1386,19.5547,18.1719,0.069664,0.859456,0.010464,0.00816,0.03328,0.11056,0.100384,16.8652,0.114688
+1263,52.1385,19.1797,19.3467,0.071488,0.793984,0.010336,0.008384,0.033312,0.1024,0.101696,18.1102,0.114816
+1264,48.8783,20.459,18.1494,0.07152,0.849344,0.010368,0.008192,0.033376,0.103616,0.100384,16.8579,0.114688
+1265,52.1014,19.1934,18.1745,0.070208,0.835616,0.010368,0.00912,0.033728,0.102432,0.101952,16.8976,0.113472
+1266,51.1898,19.5352,19.4765,0.069376,0.913664,0.010304,0.008128,0.034816,0.103456,0.10048,18.1216,0.114688
+1267,47.9625,20.8496,18.2645,0.069312,0.955104,0.01024,0.008192,0.034816,0.103616,0.10224,16.8663,0.114688
+1268,52.4429,19.0684,18.2021,0.069312,0.866592,0.025888,0.00864,0.035104,0.104288,0.100096,16.8756,0.116544
+1269,51.9691,19.2422,19.3679,0.071264,0.850336,0.010336,0.00992,0.034016,0.103424,0.1024,18.0731,0.113152
+1270,48.3338,20.6895,18.1883,0.07168,0.872448,0.011392,0.008224,0.037728,0.103968,0.100832,16.8673,0.114688
+1271,51.0062,19.6055,18.2248,0.06976,0.92336,0.010208,0.008352,0.034528,0.10208,0.10096,16.8612,0.1144
+1272,50.688,19.7285,19.4537,0.069632,0.922752,0.009184,0.016128,0.034656,0.104384,0.100736,18.0816,0.114656
+1273,48.8923,20.4531,18.176,0.069824,0.853856,0.010272,0.008128,0.038912,0.103936,0.106272,16.8701,0.114688
+1274,51.057,19.5859,18.2085,0.069472,0.912256,0.010272,0.00816,0.034496,0.10272,0.101472,16.8519,0.11776
+1275,51.2154,19.5254,19.4457,0.0696,0.913184,0.010336,0.008352,0.034048,0.103136,0.101728,18.0886,0.116736
+1276,49.3875,20.248,18.0938,0.069408,0.7944,0.010368,0.008512,0.034688,0.10768,0.100576,16.8517,0.116416
+1277,51.3541,19.4727,18.098,0.069696,0.804544,0.0104,0.008352,0.03424,0.111136,0.108576,16.8366,0.114464
+1278,52.4967,19.0488,19.3799,0.075776,0.81872,0.0104,0.008128,0.034144,0.103424,0.101536,18.1134,0.1144
+1279,48.2245,20.7363,18.1808,0.069792,0.87104,0.01024,0.008192,0.034816,0.112064,0.104544,16.8555,0.114592
+1280,50.9351,19.6328,18.2408,0.069632,0.923648,0.01024,0.008224,0.034496,0.102688,0.101536,16.8763,0.11408
+1281,51.6963,19.3438,19.374,0.069536,0.833728,0.010336,0.008384,0.033248,0.114688,0.102336,18.088,0.113792
+1282,48.2382,20.7305,18.2524,0.068288,0.910912,0.010368,0.00816,0.048512,0.117696,0.118528,16.8532,0.116736
+1283,49.9171,20.0332,18.2395,0.070752,0.931776,0.0104,0.008352,0.0376,0.104384,0.101632,16.8514,0.123232
+1284,52.459,19.0625,19.5297,0.071648,0.909312,0.010304,0.008128,0.034848,0.10448,0.100288,18.1677,0.122976
+1285,48.3521,20.6816,18.1924,0.071392,0.904672,0.010368,0.008352,0.03328,0.103904,0.10224,16.8435,0.114688
+1286,51.7957,19.3066,18.2507,0.068544,0.927712,0.01024,0.008192,0.03472,0.102496,0.10176,16.8732,0.123744
+1287,49.8588,20.0566,19.6518,0.096288,0.941824,0.010368,0.008288,0.04096,0.102464,0.114624,18.2231,0.113856
+1288,48.939,20.4336,18.1351,0.069056,0.828128,0.009984,0.00816,0.034112,0.103424,0.10032,16.8666,0.115296
+1289,52.4268,19.0742,18.129,0.0696,0.808928,0.010368,0.008224,0.034592,0.102592,0.100384,16.8775,0.116736
+1290,47.4866,21.0586,19.6004,0.071488,0.999008,0.016992,0.008192,0.040096,0.104576,0.100384,18.1415,0.118208
+1291,52.7889,18.9434,18.1475,0.069856,0.833504,0.010272,0.00816,0.034368,0.102624,0.100608,16.8734,0.114624
+1292,51.0927,19.5723,18.1964,0.069728,0.9016,0.01024,0.008192,0.034208,0.105088,0.10192,16.8507,0.114752
+1293,50.8997,19.6465,19.4888,0.069504,0.935424,0.010368,0.008352,0.03312,0.103808,0.100992,18.1139,0.113344
+1294,47.73,20.9512,18.3276,0.069632,1.02515,0.015232,0.008192,0.034848,0.110368,0.100544,16.8489,0.114688
+1295,50.7584,19.7012,18.2538,0.069728,0.950368,0.010368,0.00816,0.033216,0.104448,0.101504,16.8617,0.114304
+1296,49.7909,20.084,19.5075,0.069536,0.94864,0.011392,0.008128,0.033728,0.104448,0.10432,18.114,0.113312
+1297,49.2971,20.2852,19.5013,0.068544,0.954272,0.011392,0.017152,0.034304,0.115328,0.102112,18.0842,0.114048
+1298,48.841,20.4746,18.174,0.069504,0.849472,0.010368,0.00816,0.033248,0.110624,0.101632,16.8738,0.11712
+1299,50.9149,19.6406,19.4858,0.0696,0.925696,0.0104,0.00912,0.033728,0.103776,0.102208,18.1154,0.11584
+1300,47.9266,20.8652,18.2605,0.070592,0.864256,0.022528,0.008192,0.043008,0.112288,0.106304,16.8904,0.142976
+1301,50.4235,19.832,18.348,0.085472,1.01379,0.020416,0.008384,0.033184,0.104352,0.100448,16.869,0.11296
+1302,52.3785,19.0918,19.3847,0.069344,0.8464,0.01024,0.008192,0.034336,0.104544,0.100736,18.0976,0.113312
+1303,47.8908,20.8809,18.0963,0.06976,0.809632,0.010272,0.00816,0.03472,0.10448,0.102016,16.8432,0.114016
+1304,50.3343,19.8672,19.6255,0.072832,1.02694,0.02592,0.008256,0.033408,0.10432,0.114336,18.1253,0.114208
+1305,49.0845,20.373,19.3905,0.069632,0.868352,0.01024,0.008192,0.034816,0.104448,0.10208,18.078,0.114656
+1306,49.5356,20.1875,18.1494,0.070784,0.819104,0.0104,0.008448,0.033376,0.118016,0.10032,16.8722,0.116736
+1307,50.996,19.6094,18.2518,0.070688,0.936128,0.010368,0.008352,0.03328,0.104448,0.101664,16.8722,0.11472
+1308,50.7383,19.709,19.4833,0.070304,0.888832,0.010304,0.008128,0.034816,0.11472,0.10144,18.1401,0.114688
+1309,48.8363,20.4766,19.4209,0.069632,0.872224,0.010368,0.008288,0.038944,0.103968,0.1008,18.1023,0.114432
+1310,49.3019,20.2832,18.1177,0.070848,0.802976,0.009984,0.00912,0.034528,0.10272,0.10192,16.8698,0.115808
+1311,48.9905,20.4121,19.4601,0.069632,0.915456,0.01024,0.008192,0.034848,0.103616,0.102368,18.1011,0.114688
+1312,51.9955,19.2324,18.1432,0.0696,0.831488,0.010272,0.008192,0.034272,0.10432,0.10096,16.8694,0.114688
+1313,51.9428,19.252,18.2109,0.068672,0.88256,0.010464,0.009152,0.033664,0.10352,0.101248,16.8869,0.11472
+1314,51.3644,19.4688,19.3924,0.069632,0.835584,0.01024,0.008192,0.034304,0.10304,0.10192,18.1123,0.11712
+1315,49.1268,20.3555,18.5324,0.069632,0.847872,0.01136,0.008128,0.03376,0.1024,0.10048,17.2453,0.113376
+1316,51.2769,19.502,18.987,0.070912,0.79744,0.01024,0.008192,0.034688,0.110752,0.10032,17.7398,0.114688
+1317,49.2213,20.3164,19.4672,0.070336,0.906464,0.0104,0.008448,0.034752,0.103072,0.1024,18.1056,0.125696
+1318,47.4866,21.0586,18.2231,0.082944,0.887104,0.0104,0.014016,0.033632,0.11264,0.101568,16.8661,0.11472
+1319,51.1437,19.5527,18.1271,0.069824,0.827968,0.010464,0.008192,0.034656,0.104608,0.1024,16.8547,0.114304
+1320,51.6025,19.3789,19.4572,0.069632,0.865568,0.010368,0.008192,0.033376,0.110592,0.108544,18.1371,0.113888
+1321,46.8779,21.332,18.3565,0.068576,1.03629,0.016384,0.009216,0.033568,0.112864,0.101984,16.8636,0.114016
+1322,53.4503,18.709,19.3532,0.069856,0.802816,0.011424,0.008512,0.0344,0.103328,0.100384,18.1084,0.114112
+1323,48.6045,20.5742,19.5154,0.0696,0.935936,0.01024,0.019616,0.033664,0.103808,0.114656,18.1152,0.112672
+1324,44.869,22.2871,18.1675,0.069632,0.833536,0.01024,0.008192,0.034848,0.104064,0.112992,16.8755,0.118496
+1325,55.5254,18.0098,18.1225,0.0696,0.813024,0.01024,0.008224,0.034784,0.104448,0.101408,16.8592,0.121632
+1326,51.665,19.3555,19.4026,0.069952,0.859584,0.010048,0.00816,0.034944,0.105088,0.102208,18.0984,0.114272
+1327,48.3612,20.6777,19.4478,0.071712,0.9336,0.010176,0.008352,0.034144,0.104512,0.102752,18.069,0.113632
+1328,49.0656,20.3809,18.1143,0.069696,0.817152,0.01024,0.008192,0.034368,0.10448,0.100768,16.8545,0.114912
+1329,52.4859,19.0527,19.3505,0.068544,0.811008,0.01024,0.008192,0.034432,0.102784,0.106496,18.0958,0.11296
+1330,48.3703,20.6738,18.251,0.069568,0.921664,0.010112,0.01632,0.035008,0.11264,0.108544,16.8612,0.116
+1331,47.1368,21.2148,18.3332,0.070656,1.02298,0.01024,0.008192,0.034464,0.101952,0.100928,16.8672,0.116512
+1332,55.7249,17.9453,19.3659,0.069056,0.82592,0.010272,0.008192,0.032768,0.104448,0.100384,18.0992,0.115712
+1333,48.4207,20.6523,19.4384,0.07008,0.89536,0.020384,0.00832,0.034112,0.101056,0.10032,18.0932,0.115552
+1334,47.5527,21.0293,18.2153,0.069536,0.909408,0.0104,0.008128,0.03312,0.104416,0.101792,16.8631,0.115392
+1335,50.4433,19.8242,19.3741,0.07168,0.841728,0.010496,0.009088,0.033664,0.1024,0.100352,18.0912,0.11344
+1336,46.8478,21.3457,18.2263,0.07152,0.923808,0.010336,0.01616,0.033952,0.103392,0.100352,16.8509,0.115872
+1337,53.1948,18.7988,18.1643,0.070176,0.8664,0.01136,0.008352,0.033568,0.103776,0.105088,16.8509,0.114624
+1338,51.7067,19.3398,19.496,0.069024,0.9448,0.011328,0.008736,0.034624,0.10704,0.100448,18.1058,0.11424
+1339,49.0046,20.4062,18.1358,0.069472,0.826272,0.010336,0.010144,0.034336,0.10288,0.101696,16.866,0.114688
+1340,52.4107,19.0801,19.337,0.068192,0.802656,0.01136,0.00816,0.033728,0.104288,0.100512,18.092,0.116128
+1341,49.1363,20.3516,19.3625,0.068288,0.804704,0.010368,0.008192,0.032768,0.104128,0.10048,18.1179,0.115648
+1342,48.2837,20.7109,18.2473,0.069376,0.940096,0.010304,0.00816,0.033216,0.104448,0.100384,16.8652,0.116032
+1343,52.3357,19.1074,18.1239,0.070912,0.800896,0.010432,0.00816,0.033248,0.103744,0.100992,16.8811,0.114464
+1344,51.2256,19.5215,19.5324,0.074016,0.990976,0.010752,0.008192,0.036192,0.102976,0.101856,18.094,0.113504
+1345,47.8773,20.8867,19.4335,0.0696,0.918752,0.0104,0.008352,0.034592,0.10288,0.100608,18.0754,0.112896
+1346,48.897,20.4512,18.1801,0.069728,0.836672,0.010368,0.00816,0.038912,0.1048,0.113056,16.885,0.113408
+1347,50.673,19.7344,19.5911,0.0696,0.978944,0.015968,0.008448,0.034208,0.103072,0.10048,18.1671,0.113312
+1348,47.7879,20.9258,18.2333,0.069152,0.91584,0.010048,0.008128,0.03312,0.104448,0.1024,16.8653,0.124928
+1349,50.673,19.7344,18.2745,0.088224,0.926368,0.01024,0.019488,0.043936,0.102464,0.101504,16.8657,0.116608
+1350,51.6181,19.373,19.4995,0.06912,0.914368,0.02048,0.008192,0.034816,0.104448,0.100384,18.1308,0.116864
+1351,48.494,20.6211,19.413,0.069632,0.871968,0.010368,0.008352,0.035008,0.106528,0.102368,18.092,0.116736
+1352,47.1542,21.207,18.3946,0.069632,1.05882,0.026624,0.018112,0.03488,0.104512,0.100096,16.8652,0.116704
+1353,53.3222,18.7539,19.3495,0.07168,0.811008,0.01024,0.009536,0.033472,0.10448,0.102112,18.0936,0.113376
+1354,47.8952,20.8789,18.2013,0.070304,0.901248,0.010208,0.008192,0.034048,0.104608,0.102336,16.8557,0.114624
+1355,47.4866,21.0586,18.2242,0.070848,0.918208,0.010336,0.008192,0.034688,0.104352,0.102624,16.8612,0.113792
+1356,55.226,18.1074,19.3656,0.069216,0.82512,0.010752,0.00816,0.033216,0.111776,0.105312,18.0877,0.114368
+1357,47.7167,20.957,18.1708,0.07168,0.852064,0.01024,0.008544,0.033312,0.102368,0.101792,16.8761,0.11472
+1358,49.0609,20.3828,19.5006,0.069408,0.944704,0.011296,0.008192,0.03376,0.10448,0.10032,18.1125,0.115904
+1359,52.5505,19.0293,19.3554,0.069408,0.807072,0.010144,0.008352,0.034656,0.103648,0.101152,18.1045,0.116512
+1360,48.5861,20.582,18.3539,0.069696,1.01328,0.010368,0.014624,0.034144,0.117408,0.100352,16.8776,0.116448
+1361,51.4832,19.4238,18.2291,0.071136,0.90896,0.0104,0.008352,0.037472,0.105632,0.101184,16.8713,0.114656
+1362,52.1332,19.1816,19.3916,0.069664,0.833536,0.01024,0.0096,0.033376,0.10448,0.106464,18.1002,0.124032
+1363,48.1746,20.7578,18.1903,0.0696,0.88576,0.01024,0.008192,0.034816,0.104448,0.102432,16.8608,0.114048
+1364,51.9322,19.2559,18.5977,0.069024,0.88352,0.01024,0.008128,0.04688,0.102688,0.100384,17.2626,0.114272
+1365,51.0621,19.584,20.2465,0.069632,0.853632,0.010368,0.008352,0.048672,0.10912,0.10208,18.93,0.114688
+1366,47.425,21.0859,18.133,0.070016,0.819456,0.010208,0.008224,0.034816,0.104352,0.09984,16.8691,0.116992
+1367,52.341,19.1055,18.0941,0.068096,0.805984,0.0104,0.008256,0.033312,0.104448,0.100352,16.8485,0.114752
+1368,52.5021,19.0469,19.3077,0.070912,0.80096,0.0104,0.008608,0.034496,0.1048,0.10032,18.0624,0.114848
+1369,48.8177,20.4844,18.1807,0.070208,0.88272,0.010304,0.008096,0.03472,0.104384,0.1024,16.8532,0.114656
+1370,47.9132,20.8711,19.5036,0.069344,0.957184,0.024576,0.009344,0.033664,0.10384,0.100864,18.0899,0.114912
+1371,52.5128,19.043,19.3299,0.068544,0.795808,0.010368,0.008384,0.033312,0.104128,0.100672,18.0955,0.113184
+1372,47.9042,20.875,18.219,0.070752,0.901984,0.019776,0.008576,0.033088,0.104448,0.100352,16.8666,0.113408
+1373,48.7944,20.4941,18.2355,0.069632,0.917504,0.010304,0.01632,0.049152,0.1024,0.1024,16.8509,0.116832
+1374,52.7726,18.9492,19.392,0.069632,0.827104,0.010368,0.008128,0.034336,0.103104,0.100352,18.1228,0.116256
+1375,48.3612,20.6777,18.5406,0.069632,0.856064,0.011328,0.008352,0.033568,0.104288,0.102208,17.2404,0.114752
+1376,51.0163,19.6016,19.0662,0.069632,0.888832,0.010336,0.008096,0.034816,0.104192,0.100608,17.7337,0.116064
+1377,47.4689,21.0664,19.6597,0.072256,1.07712,0.0104,0.024096,0.034688,0.104928,0.100864,18.1224,0.11296
+1378,49.8977,20.041,18.1347,0.069632,0.833568,0.010464,0.007936,0.034816,0.10608,0.10048,16.8566,0.115136
+1379,51.0011,19.6074,18.2768,0.069728,0.960672,0.010464,0.00832,0.034144,0.103168,0.103456,16.8723,0.114624
+1380,51.0062,19.6055,19.5149,0.069952,0.958464,0.01024,0.008192,0.034784,0.10448,0.100512,18.1141,0.114112
+1381,49.3019,20.2832,18.1104,0.0696,0.794656,0.010208,0.008192,0.034816,0.108352,0.10464,16.8653,0.114688
+1382,51.5194,19.4102,18.1104,0.069216,0.809024,0.010784,0.008384,0.034656,0.103616,0.099328,16.8586,0.1168
+1383,49.922,20.0312,19.5345,0.069632,0.98304,0.01088,0.008352,0.034272,0.102976,0.101984,18.1079,0.115424
+1384,47.3679,21.1113,18.1494,0.069504,0.865888,0.010624,0.008128,0.032992,0.105568,0.099232,16.8407,0.116704
+1385,50.834,19.6719,18.2006,0.069632,0.9048,0.010464,0.018496,0.034048,0.10256,0.100384,16.8414,0.118784
+1386,51.3747,19.4648,19.4863,0.071648,0.906752,0.010592,0.008096,0.034496,0.112992,0.1016,18.1238,0.116384
+1387,47.6811,20.9727,18.2641,0.069792,0.949984,0.010368,0.01824,0.034336,0.103072,0.1024,16.8627,0.113216
+1388,50.9048,19.6445,18.2101,0.069664,0.904736,0.010464,0.008128,0.034496,0.104896,0.100512,16.8612,0.116064
+1389,50.6931,19.7266,19.5055,0.06992,0.93184,0.010368,0.00912,0.033344,0.106464,0.1008,18.1307,0.11296
+1390,47.2804,21.1504,18.2536,0.069632,0.9376,0.010368,0.008128,0.034432,0.103072,0.108288,16.8676,0.114496
+1391,51.7328,19.3301,18.1696,0.069632,0.841728,0.011424,0.008352,0.033472,0.102496,0.1016,16.8839,0.117024
+1392,51.6546,19.3594,19.3843,0.0696,0.831232,0.010496,0.00816,0.034016,0.104672,0.100608,18.1088,0.116736
+1393,48.2427,20.7285,19.4447,0.069632,0.882688,0.010272,0.00816,0.034176,0.102976,0.100416,18.1204,0.116032
+1394,47.6545,20.9844,18.3457,0.069632,1.04176,0.010528,0.00816,0.034208,0.109568,0.110528,16.846,0.115328
+1395,50.3293,19.8691,18.5975,0.07008,0.88624,0.010432,0.00832,0.03456,0.104288,0.1048,17.2649,0.11392
+1396,49.8831,20.0469,18.26,0.069632,0.956096,0.010464,0.00816,0.034176,0.103168,0.101664,16.8619,0.114688
+1397,49.4734,20.2129,18.4402,0.069664,1.1223,0.022016,0.008704,0.03456,0.108768,0.102176,16.8586,0.113408
+1398,52.0961,19.1953,19.413,0.069632,0.878496,0.010336,0.008192,0.03424,0.104832,0.100512,18.092,0.114784
+1399,48.3978,20.6621,18.1685,0.068448,0.85184,0.01136,0.00832,0.0336,0.10416,0.10032,16.8771,0.113408
+1400,50.6429,19.7461,19.413,0.069632,0.86752,0.010656,0.008192,0.034432,0.104768,0.100832,18.1023,0.114656
+1401,49.5452,20.1836,19.4227,0.069376,0.880928,0.011424,0.00832,0.034528,0.102656,0.100448,18.1009,0.114112
+1402,49.3399,20.2676,18.103,0.070304,0.80288,0.010272,0.008224,0.0344,0.104128,0.10016,16.8559,0.116768
+1403,52.2342,19.1445,18.1084,0.069632,0.82272,0.010176,0.00832,0.03328,0.104448,0.101728,16.8434,0.114688
+1404,51.2718,19.5039,19.4297,0.0696,0.876224,0.0104,0.008128,0.034656,0.104896,0.10064,18.1105,0.114688
+1405,48.841,20.4746,18.1268,0.069632,0.821248,0.010432,0.009088,0.033728,0.104416,0.10144,16.8635,0.113344
+1406,51.8219,19.2969,18.4931,0.069472,0.811328,0.010464,0.008128,0.034112,0.103392,0.1016,17.2404,0.114208
+1407,49.6172,20.1543,20.4449,0.069728,1.02758,0.0104,0.015072,0.04496,0.104448,0.101632,18.9571,0.114016
+1408,45.4384,22.0078,18.301,0.079936,0.955872,0.026432,0.00816,0.035232,0.108896,0.12,16.8518,0.114688
+1409,54.1455,18.4688,18.1139,0.0696,0.800768,0.01024,0.008288,0.034752,0.103584,0.10064,16.8692,0.1168
+1410,52.3785,19.0918,19.3306,0.0696,0.806464,0.010368,0.008544,0.034464,0.103776,0.100512,18.0806,0.116224
+1411,48.4481,20.6406,18.2237,0.07024,0.918592,0.010496,0.008384,0.03328,0.116,0.107232,16.8462,0.113248
+1412,51.5194,19.4102,18.1818,0.069408,0.891104,0.01024,0.008224,0.032768,0.104416,0.1024,16.8479,0.115328
+1413,50.658,19.7402,21.0265,0.069056,1.248,0.0104,0.008288,0.042272,0.103264,0.10224,19.329,0.11392
+1414,46.4104,21.5469,18.1005,0.069664,0.80336,0.01024,0.009344,0.033664,0.104448,0.100352,16.8548,0.11456
+1415,52.0802,19.2012,18.1836,0.07136,0.853952,0.0104,0.00832,0.032864,0.106208,0.106496,16.8799,0.114112
+1416,51.8954,19.2695,19.4248,0.070848,0.875328,0.01024,0.009504,0.033504,0.10448,0.100352,18.1061,0.114432
+1417,47.9805,20.8418,18.1452,0.070688,0.836416,0.010368,0.008224,0.034272,0.102304,0.100512,16.8656,0.116896
+1418,51.4676,19.4297,18.2556,0.069472,0.950528,0.010368,0.008128,0.034496,0.103072,0.101664,16.855,0.12288
+1419,51.6441,19.3633,19.37,0.07104,0.815776,0.010208,0.008192,0.034848,0.106464,0.11264,18.0961,0.114688
+1420,49.1929,20.3281,18.1299,0.068544,0.8104,0.0104,0.008512,0.0344,0.10416,0.101184,16.8775,0.114752
+1421,50.8138,19.6797,18.1937,0.06928,0.887136,0.011232,0.008416,0.033568,0.105888,0.102176,16.862,0.114016
+1422,51.5246,19.4082,19.4597,0.069024,0.942688,0.010304,0.008096,0.034464,0.104192,0.100672,18.0759,0.114368
+1423,49.3589,20.2598,18.1432,0.069664,0.830528,0.010208,0.008352,0.0336,0.104416,0.102176,16.8689,0.115424
+1424,51.7747,19.3145,19.4897,0.08288,0.925696,0.011552,0.008192,0.033504,0.104448,0.100352,18.1084,0.114688
+1425,48.813,20.4863,19.3756,0.069632,0.841728,0.010496,0.007968,0.034112,0.103008,0.112704,18.0793,0.116736
+1426,49.1504,20.3457,18.133,0.070688,0.819936,0.0104,0.008128,0.03424,0.10432,0.101216,16.8689,0.1152
+1427,52.2716,19.1309,18.1226,0.069632,0.814464,0.010336,0.008736,0.034336,0.10288,0.101824,16.8659,0.114496
+1428,51.9533,19.248,19.3901,0.069536,0.832064,0.01024,0.008192,0.034784,0.108576,0.101696,18.1112,0.113888
+1429,49.0421,20.3906,18.1099,0.069696,0.815488,0.010464,0.009152,0.033632,0.10432,0.102048,16.851,0.11408
+1430,52.4967,19.0488,18.5055,0.069632,0.80896,0.01024,0.008192,0.034816,0.104448,0.100352,17.2524,0.116512
+1431,51.2564,19.5098,20.1617,0.070976,0.803328,0.010432,0.008224,0.034816,0.102368,0.100352,18.9171,0.114112
+1432,46.7922,21.3711,18.185,0.068416,0.898496,0.010432,0.00816,0.033184,0.104256,0.100576,16.8448,0.116736
+1433,51.5765,19.3887,18.1228,0.07168,0.841728,0.010432,0.009152,0.033696,0.102368,0.100352,16.8402,0.113152
+1434,51.6493,19.3613,19.3798,0.077152,0.848576,0.010528,0.007904,0.034816,0.104416,0.102016,18.08,0.1144
+1435,48.2473,20.7266,18.1872,0.068544,0.899072,0.011328,0.008384,0.033536,0.104448,0.101408,16.8458,0.11472
+1436,51.5973,19.3809,18.1919,0.069632,0.904736,0.010368,0.00816,0.034432,0.103168,0.100384,16.8448,0.116224
+1437,52.7237,18.9668,20.5567,0.068512,0.8192,0.01024,0.008192,0.034816,0.103744,0.101056,19.298,0.11296
+1438,44.5954,22.4238,18.3071,0.069632,0.978208,0.010336,0.00816,0.034624,0.103264,0.102112,16.8833,0.117472
+1439,52.9308,18.8926,18.2355,0.069344,0.944672,0.01024,0.008192,0.03472,0.104096,0.102112,16.8476,0.114496
+1440,51.7067,19.3398,19.4091,0.07056,0.85696,0.0104,0.00816,0.034912,0.103072,0.101856,18.1044,0.118752
+1441,49.0234,20.3984,18.2069,0.069856,0.916832,0.010432,0.00832,0.03424,0.103328,0.101856,16.8472,0.114912
+1442,51.6963,19.3438,18.6045,0.069536,0.927584,0.010432,0.008128,0.033376,0.104448,0.101664,17.2347,0.114688
+1443,49.5644,20.1758,19.868,0.069216,1.37296,0.010208,0.008256,0.034752,0.102528,0.101376,18.0553,0.113408
+1444,49.0986,20.3672,18.1581,0.069472,0.848608,0.011328,0.008128,0.033696,0.104192,0.102272,16.8651,0.115264
+1445,51.5869,19.3848,18.1432,0.069632,0.853408,0.0104,0.008416,0.032992,0.104448,0.100384,16.8468,0.116736
+1446,52.2662,19.1328,19.4177,0.070048,0.886816,0.010432,0.008224,0.033952,0.104512,0.100288,18.0868,0.11664
+1447,49.0187,20.4004,18.1145,0.070752,0.819648,0.010208,0.008352,0.03328,0.104256,0.101696,16.8536,0.112704
+1448,51.1846,19.5371,18.1983,0.070112,0.889056,0.010304,0.008128,0.034784,0.102176,0.102368,16.8666,0.114784
+1449,52.5883,19.0156,20.2847,0.069632,0.914784,0.010368,0.008352,0.033184,0.103584,0.101184,18.9297,0.113952
+1450,46.4652,21.5215,18.1583,0.068352,0.86016,0.011296,0.007136,0.034752,0.104096,0.100032,16.8578,0.114688
+1451,47.8863,20.8828,18.3152,0.070656,1.00042,0.010432,0.02032,0.03424,0.102944,0.100352,16.8622,0.113664
+1452,55.5616,17.998,19.3475,0.069472,0.830816,0.0104,0.008128,0.033504,0.104256,0.10048,18.0735,0.116896
+1453,48.925,20.4395,18.1929,0.069088,0.91648,0.01024,0.008224,0.034272,0.102304,0.100256,16.8373,0.11472
+1454,51.0316,19.5957,18.206,0.071072,0.911968,0.010496,0.007936,0.034848,0.103552,0.101216,16.85,0.114944
+1455,52.0537,19.2109,19.3828,0.069504,0.819232,0.010432,0.00832,0.0344,0.1032,0.102144,18.121,0.114624
+1456,47.8281,20.9082,18.1037,0.069632,0.802848,0.01024,0.00816,0.034336,0.104032,0.101248,16.8585,0.114784
+1457,52.1491,19.1758,18.1207,0.069632,0.821248,0.011584,0.00832,0.0344,0.108544,0.103392,16.8501,0.113472
+1458,52.0061,19.2285,19.3677,0.069632,0.812832,0.010368,0.00816,0.034112,0.104608,0.100672,18.1125,0.114816
+1459,49.1835,20.332,18.174,0.069248,0.881056,0.01024,0.008192,0.034368,0.102144,0.100736,16.8513,0.116736
+1460,52.2662,19.1328,19.3331,0.071456,0.805088,0.01024,0.009248,0.033216,0.102976,0.100352,18.0859,0.114688
+1461,49.0421,20.3906,19.3874,0.0696,0.843776,0.010272,0.00816,0.034656,0.102592,0.101824,18.1028,0.113792
+1462,48.6831,20.541,18.2289,0.069952,0.9256,0.010336,0.008224,0.034112,0.103072,0.101568,16.86,0.116096
+1463,51.8954,19.2695,18.1378,0.070112,0.841312,0.0104,0.008704,0.034816,0.102336,0.102464,16.8545,0.113152
+1464,51.8849,19.2734,19.454,0.069664,0.902592,0.010624,0.008384,0.034528,0.103904,0.100832,18.1087,0.114688
+1465,48.6831,20.541,18.1493,0.073888,0.856064,0.010496,0.009088,0.033664,0.104096,0.100704,16.844,0.117312
+1466,52.3517,19.1016,18.4782,0.069632,0.815008,0.010336,0.008128,0.034208,0.103072,0.100352,17.2237,0.113824
+1467,51.4108,19.4512,20.5055,0.070432,0.802112,0.0104,0.008352,0.033312,0.103584,0.100672,19.2614,0.115296
+1468,46.5412,21.4863,18.0838,0.069792,0.802688,0.010208,0.008192,0.034368,0.104416,0.111072,16.8284,0.114688
+1469,51.4935,19.4199,18.1193,0.069984,0.823776,0.0104,0.008192,0.034528,0.10416,0.102624,16.8513,0.114368
+1470,51.5765,19.3887,19.3704,0.069952,0.841056,0.010368,0.008096,0.033504,0.103744,0.099136,18.0918,0.1128
+1471,48.5216,20.6094,18.2176,0.068224,0.91952,0.010432,0.009152,0.033664,0.103936,0.100896,16.8587,0.113056
+1472,51.8534,19.2852,19.3927,0.069824,0.87248,0.01024,0.00816,0.043008,0.1024,0.102112,18.0698,0.114688
+1473,49.4495,20.2227,19.3769,0.069792,0.8464,0.011392,0.008352,0.033536,0.103968,0.111072,18.0792,0.11312
+1474,48.9765,20.418,18.1248,0.069664,0.812576,0.010368,0.007936,0.033344,0.105504,0.1008,16.867,0.117664
+1475,51.8324,19.293,18.1391,0.070912,0.849728,0.0104,0.00832,0.03344,0.104448,0.10208,16.8452,0.114656
+1476,51.6389,19.3652,19.4407,0.069376,0.91776,0.01024,0.008192,0.034816,0.103712,0.102144,18.0806,0.11392
+1477,47.7122,20.959,18.2641,0.069632,0.972832,0.01024,0.00816,0.03472,0.104544,0.110144,16.8409,0.112928
+1478,52.4859,19.0527,19.3297,0.068224,0.808736,0.010464,0.00816,0.032896,0.103744,0.100768,18.082,0.114688
+1479,47.0545,21.252,19.3987,0.069632,0.87184,0.010432,0.008384,0.033024,0.1024,0.108032,18.0812,0.113664
+1480,49.4018,20.2422,18.1139,0.069696,0.826912,0.010464,0.00816,0.033152,0.108576,0.102112,16.8402,0.114624
+1481,51.9691,19.2422,18.1232,0.068352,0.837664,0.01024,0.00816,0.034528,0.10176,0.10128,16.8448,0.116384
+1482,51.5713,19.3906,19.368,0.069696,0.819072,0.010368,0.00816,0.03392,0.103296,0.100128,18.1066,0.116736
+1483,48.5769,20.5859,18.1295,0.069568,0.83728,0.010528,0.00832,0.033408,0.102368,0.10048,16.8488,0.118784
+1484,51.9059,19.2656,18.5516,0.070016,0.872864,0.010496,0.007968,0.034784,0.106432,0.101728,17.2337,0.1136
+1485,50.4831,19.8086,19.3902,0.070112,0.88496,0.01024,0.008192,0.03472,0.102496,0.1024,18.0634,0.113696
+1486,49.0609,20.3828,18.1601,0.068224,0.859648,0.010368,0.008128,0.034336,0.103104,0.100352,16.8612,0.11472
+1487,51.4418,19.4395,18.1903,0.068608,0.899072,0.0104,0.00912,0.033728,0.1024,0.101856,16.8487,0.116416
+1488,51.8954,19.2695,19.4425,0.068384,0.910368,0.010272,0.008128,0.033792,0.104448,0.10032,18.09,0.116704
+1489,49.1882,20.3301,18.0805,0.068384,0.80896,0.010336,0.00816,0.034752,0.104224,0.100608,16.8299,0.115232
+1490,51.5817,19.3867,18.8942,0.0712,0.933472,0.010368,0.008128,0.0336,0.10448,0.101888,17.2334,0.397664
+1491,48.697,20.5352,19.631,0.09712,1.01792,0.01024,0.008352,0.0408,0.104448,0.106528,18.1329,0.112768
+1492,48.9437,20.4316,18.1248,0.069664,0.84784,0.01024,0.008192,0.034816,0.104448,0.1016,16.8332,0.114848
+1493,51.5142,19.4121,18.234,0.068512,0.948224,0.01024,0.008192,0.034176,0.10304,0.102048,16.8452,0.114368
+1494,50.4235,19.832,19.5539,0.069632,0.96448,0.010336,0.015744,0.03344,0.104448,0.100352,18.1412,0.114304
+1495,48.9016,20.4492,18.1555,0.069632,0.851936,0.010272,0.008224,0.034016,0.1024,0.10112,16.8607,0.117248
+1496,52.1279,19.1836,19.3655,0.069184,0.813024,0.010432,0.00816,0.033568,0.104448,0.110176,18.0986,0.117856
+1497,48.4481,20.6406,19.4172,0.069664,0.874176,0.010464,0.00832,0.0344,0.102912,0.102208,18.1016,0.113536
+1498,48.9718,20.4199,18.1084,0.0696,0.812224,0.010368,0.00816,0.033536,0.104416,0.1016,16.8476,0.120864
+1499,51.9112,19.2637,18.1842,0.071456,0.872672,0.025792,0.00832,0.034848,0.10432,0.102592,16.851,0.113216
+1500,52.0431,19.2148,19.4045,0.069344,0.874496,0.010368,0.008128,0.033472,0.103584,0.100352,18.0901,0.114624
+1501,48.0165,20.8262,18.133,0.069632,0.841728,0.010304,0.00816,0.034784,0.104448,0.100352,16.8489,0.114688
+1502,51.985,19.2363,19.5351,0.069344,0.985056,0.0104,0.008128,0.03424,0.103328,0.1016,18.1088,0.114176
+1503,48.5354,20.6035,18.1514,0.0696,0.861824,0.010464,0.008352,0.034176,0.103072,0.102368,16.8428,0.11872
+1504,52.3089,19.1172,18.2231,0.069472,0.927392,0.0104,0.00816,0.033152,0.104448,0.100352,16.855,0.114688
+1505,51.0418,19.5918,19.4841,0.06976,0.946176,0.011392,0.00832,0.033536,0.104448,0.102336,18.0941,0.113984
+1506,47.6856,20.9707,18.2054,0.070336,0.900768,0.010464,0.008192,0.03408,0.103264,0.108032,16.8556,0.114688
+1507,51.3901,19.459,18.1678,0.0696,0.861984,0.010208,0.008352,0.043104,0.105728,0.10112,16.8545,0.113184
+1508,51.6546,19.3594,19.4703,0.069536,0.93984,0.010496,0.008096,0.032896,0.106112,0.100736,18.089,0.1136
+1509,47.491,21.0566,18.1206,0.069632,0.837184,0.0104,0.00832,0.0344,0.107104,0.107712,16.8313,0.114528
+1510,53.3389,18.748,18.09,0.0696,0.815104,0.011296,0.007136,0.034816,0.104448,0.100416,16.8302,0.116896
+1511,52.2396,19.1426,19.3293,0.068416,0.8128,0.010272,0.00816,0.034816,0.103456,0.1008,18.0755,0.115072
+1512,46.5328,21.4902,18.2087,0.071424,0.91968,0.00992,0.016832,0.034816,0.104448,0.100352,16.8366,0.114592
+1513,53.8494,18.5703,18.1331,0.069632,0.829568,0.011616,0.008352,0.033376,0.1024,0.102048,16.8614,0.114688
+1514,51.927,19.2578,19.412,0.068672,0.88832,0.010336,0.008128,0.033184,0.104416,0.101888,18.0823,0.114688
+1515,45.4424,22.0059,18.2063,0.069632,0.918784,0.0104,0.00832,0.033216,0.108576,0.101696,16.8414,0.11424
+1516,56.042,17.8438,18.1324,0.069312,0.839904,0.010368,0.008192,0.034816,0.10448,0.101632,16.8455,0.118208
+1517,51.8744,19.2773,19.4785,0.0696,0.972576,0.010368,0.008288,0.03408,0.103136,0.100352,18.0652,0.114912
+1518,48.0932,20.793,18.2474,0.06848,0.931552,0.0104,0.008128,0.034496,0.103872,0.100544,16.863,0.126944
+1519,51.9691,19.2422,18.123,0.070112,0.827168,0.01024,0.008192,0.034816,0.104224,0.100576,16.8543,0.113408
+1520,52.0114,19.2266,19.37,0.069248,0.833824,0.010336,0.00816,0.0328,0.104384,0.1,18.0966,0.114688
+1521,48.8317,20.4785,19.3744,0.069568,0.843456,0.010368,0.008352,0.034432,0.103232,0.101376,18.0889,0.114688
+1522,48.5815,20.584,18.1646,0.069664,0.866592,0.0104,0.00816,0.033248,0.108512,0.100352,16.853,0.114688
+1523,51.6963,19.3438,19.387,0.068704,0.868128,0.011392,0.008352,0.033504,0.104448,0.101472,18.0766,0.114432
+1524,48.841,20.4746,18.1516,0.069536,0.858784,0.01024,0.008192,0.034176,0.10304,0.100352,16.85,0.117344
+1525,51.6963,19.3438,18.1721,0.070656,0.86608,0.0104,0.008288,0.034048,0.104992,0.1016,16.856,0.12
+1526,50.4732,19.8125,19.3762,0.070016,0.840768,0.010464,0.008224,0.034592,0.10336,0.101344,18.0845,0.122944
+1527,48.8689,20.4629,18.5057,0.070048,0.837664,0.0104,0.008192,0.034816,0.1024,0.101856,17.2263,0.114048
+1528,50.6379,19.748,18.1199,0.069632,0.831296,0.010432,0.008224,0.034784,0.1024,0.102112,16.8465,0.114528
+1529,52.4967,19.0488,19.3499,0.069504,0.829984,0.010464,0.00912,0.033664,0.103488,0.099264,18.0808,0.113632
+1530,48.7248,20.5234,18.1292,0.069184,0.826048,0.010336,0.008128,0.0344,0.10288,0.100352,16.8612,0.116736
+1531,52.3785,19.0918,18.1,0.069632,0.817184,0.010336,0.00912,0.03376,0.103712,0.101088,16.8407,0.114464
+1532,52.2983,19.1211,19.3475,0.069632,0.818592,0.010496,0.008064,0.033248,0.104448,0.1024,18.0814,0.119136
+1533,49.174,20.3359,18.4987,0.070752,0.811872,0.010304,0.00992,0.03424,0.103296,0.102432,17.2421,0.113728
+1534,51.0265,19.5977,18.1308,0.074112,0.825344,0.01024,0.008224,0.034688,0.104384,0.100512,16.8592,0.114112
+1535,51.8481,19.2871,19.3606,0.068608,0.819072,0.01024,0.008192,0.034752,0.103488,0.101216,18.1024,0.11264
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..b3c4d72
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,50.1481,19.9723,18.8099,0.0699937,0.88795,0.00898281,0.00671222,0.0309523,0.0998673,0.100916,17.4901,0.114458
+max_1024,56.5059,23.0488,21.023,0.092704,2.43859,0.038816,0.022592,0.05024,0.120768,0.433792,19.4384,0.134144
+min_1024,43.3862,17.6973,18.1729,0.065888,0.790528,0.007008,0.00592,0.0288,0.096608,0.096832,16.9293,0.111392
+512,52.7781,18.9473,19.6076,0.066624,0.946112,0.008384,0.00624,0.029408,0.100192,0.098464,18.2394,0.112768
+513,47.7545,20.9404,19.5751,0.069472,0.935968,0.008352,0.00624,0.030304,0.096832,0.100352,18.2149,0.11264
+514,44.8552,22.2939,18.3726,0.06912,0.934816,0.008192,0.006144,0.030336,0.098688,0.099392,17.0052,0.120704
+515,54.5668,18.3262,18.4097,0.069376,0.971232,0.008288,0.01488,0.030496,0.097856,0.09872,17.0041,0.114688
+516,51.3155,19.4873,19.5707,0.069152,0.9016,0.008192,0.006144,0.038912,0.099648,0.099008,18.2333,0.114688
+517,47.9333,20.8623,19.6341,0.069632,0.968704,0.008192,0.006176,0.030688,0.098304,0.09936,18.2381,0.114944
+518,48.2837,20.7109,18.2988,0.06976,0.875872,0.0088,0.006208,0.030368,0.098656,0.100096,16.9944,0.114656
+519,51.4702,19.4287,19.5262,0.070112,0.843968,0.008256,0.00608,0.03072,0.098336,0.09984,18.2499,0.118976
+520,48.8853,20.4561,18.2927,0.069888,0.845408,0.008352,0.006272,0.030848,0.100352,0.100352,17.0181,0.113152
+521,50.508,19.7988,18.3852,0.071456,0.946784,0.00816,0.006176,0.030688,0.098304,0.100352,17.0102,0.113152
+522,51.9718,19.2412,19.5446,0.068256,0.88256,0.007872,0.006272,0.030432,0.098784,0.098496,18.2393,0.11264
+523,48.7875,20.4971,19.4621,0.069632,0.826688,0.008288,0.006272,0.029152,0.099584,0.099072,18.2102,0.113216
+524,48.8923,20.4531,18.2307,0.06912,0.824096,0.008192,0.006144,0.030688,0.099808,0.100032,16.9767,0.11584
+525,50.925,19.6367,19.4958,0.068512,0.84336,0.008352,0.006272,0.029984,0.09712,0.098336,18.2305,0.113376
+526,47.7746,20.9316,18.3072,0.069184,0.837344,0.008384,0.006272,0.029184,0.099904,0.098752,17.0425,0.115616
+527,51.793,19.3076,18.2451,0.069664,0.804416,0.008288,0.00624,0.030304,0.098144,0.099104,17.0163,0.11264
+528,51.7538,19.3223,19.4911,0.069888,0.85536,0.00832,0.006272,0.0304,0.099072,0.099552,18.2092,0.11296
+529,47.5549,21.0283,18.3706,0.071008,0.916128,0.008224,0.006112,0.03072,0.098304,0.099456,17.0279,0.112704
+530,51.5973,19.3809,19.4894,0.068192,0.841472,0.008288,0.006272,0.029856,0.0992,0.099904,18.2233,0.112928
+531,48.7062,20.5312,19.4788,0.069504,0.808928,0.008416,0.006304,0.030656,0.102656,0.098304,18.2409,0.113184
+532,47.0048,21.2744,18.3522,0.069632,0.9272,0.008352,0.006496,0.03024,0.098816,0.100384,16.998,0.112992
+533,51.6858,19.3477,18.3154,0.069376,0.899424,0.008192,0.006144,0.03072,0.097696,0.098112,16.9907,0.11504
+534,51.9507,19.249,19.546,0.069632,0.905216,0.008192,0.007168,0.029696,0.098304,0.100352,18.2124,0.115008
+535,48.039,20.8164,18.3814,0.069568,0.952256,0.008384,0.00624,0.03056,0.09712,0.100352,17.0025,0.114464
+536,51.1719,19.542,19.6287,0.069728,0.958624,0.008416,0.006272,0.03024,0.098848,0.098304,18.2436,0.114688
+537,48.3178,20.6963,19.5031,0.070752,0.85872,0.008288,0.00624,0.030368,0.09808,0.0984,18.2196,0.11264
+538,48.2427,20.7285,18.3938,0.069504,0.95424,0.008352,0.006304,0.029248,0.099648,0.099008,17.0127,0.11472
+539,51.0392,19.5928,18.364,0.069664,0.92304,0.008384,0.00624,0.030592,0.09872,0.099872,17.0144,0.113056
+540,51.3747,19.4648,19.4775,0.068576,0.849792,0.008256,0.006208,0.030624,0.0984,0.100224,18.2028,0.11264
+541,47.7323,20.9502,18.4054,0.069472,0.966048,0.008256,0.006272,0.02928,0.099776,0.098848,17.0148,0.112672
+542,50.9174,19.6396,19.5435,0.069632,0.895008,0.00816,0.007744,0.02912,0.099552,0.098656,18.2226,0.113056
+543,49.1835,20.332,19.4623,0.069728,0.80304,0.00816,0.006144,0.030496,0.098208,0.0984,18.2356,0.112544
+544,48.3703,20.6738,18.3795,0.076448,0.933152,0.00832,0.00624,0.029184,0.09968,0.098976,17.0107,0.116768
+545,51.1795,19.5391,18.3842,0.069728,0.952352,0.008256,0.006208,0.030592,0.098336,0.100032,17.0048,0.113824
+546,51.3798,19.4629,19.473,0.069728,0.822912,0.008384,0.006272,0.030272,0.09856,0.098976,18.221,0.116864
+547,48.6715,20.5459,18.2901,0.069792,0.824544,0.008352,0.00624,0.029216,0.104448,0.099392,17.0341,0.114016
+548,51.5583,19.3955,19.5815,0.076384,0.888288,0.008192,0.006336,0.030368,0.10928,0.099776,18.25,0.112864
+549,48.5262,20.6074,19.5052,0.071712,0.81712,0.00928,0.006272,0.029536,0.098208,0.100416,18.2593,0.113344
+550,48.1882,20.752,18.3762,0.069632,0.9216,0.008224,0.006112,0.03072,0.099776,0.098816,17.0271,0.11424
+551,51.4418,19.4395,18.3767,0.069632,0.92064,0.00848,0.00624,0.030368,0.097184,0.100352,17.0306,0.113248
+552,50.8795,19.6543,19.6155,0.069152,0.934368,0.008192,0.006144,0.030752,0.098304,0.100032,18.254,0.114528
+553,49.0892,20.3711,18.2206,0.069696,0.79984,0.008352,0.00624,0.02928,0.099456,0.0992,16.9919,0.116672
+554,51.9955,19.2324,18.2488,0.069696,0.796672,0.008192,0.006144,0.03072,0.098304,0.10448,17.0207,0.113888
+555,50.6404,19.7471,20.0505,0.070112,1.34355,0.008192,0.006144,0.032448,0.098656,0.100352,18.2784,0.11264
+556,46.556,21.4795,18.4402,0.069664,0.960256,0.022752,0.006176,0.045024,0.100352,0.098304,17.023,0.114688
+557,51.4444,19.4385,18.346,0.069024,0.887456,0.017408,0.006272,0.029568,0.110592,0.101888,17.011,0.112832
+558,51.7747,19.3145,19.5432,0.069632,0.835584,0.008224,0.006112,0.03072,0.098304,0.100352,18.2804,0.11392
+559,47.5439,21.0332,18.36,0.069632,0.925664,0.008224,0.006144,0.030304,0.104256,0.105056,16.9974,0.113312
+560,51.1029,19.5684,19.5926,0.068928,0.922304,0.008192,0.006144,0.03072,0.098336,0.102368,18.243,0.112608
+561,48.1837,20.7539,19.5916,0.069664,0.909536,0.008288,0.00624,0.03056,0.098464,0.1,18.2542,0.114656
+562,45.8905,21.791,18.5941,0.068544,1.13251,0.023584,0.006368,0.02944,0.099488,0.098752,17.0193,0.116128
+563,53.1231,18.8242,18.2932,0.069376,0.84256,0.008192,0.006176,0.036832,0.106496,0.098272,17.0101,0.1152
+564,51.5142,19.4121,19.6219,0.069632,0.915456,0.018432,0.0072,0.029664,0.099872,0.098784,18.2695,0.113344
+565,47.9963,20.835,18.3464,0.070208,0.894912,0.016448,0.006144,0.030592,0.098208,0.098528,17.0187,0.112672
+566,49.5692,20.1738,18.3851,0.071136,0.918272,0.017568,0.006304,0.043712,0.100352,0.0984,17.0167,0.112704
+567,50.8088,19.6816,20.1974,0.07168,1.15098,0.038816,0.00624,0.032096,0.098944,0.433792,18.2522,0.112672
+568,46.3621,21.5693,18.3051,0.069664,0.876,0.008352,0.006304,0.0304,0.100224,0.098944,17.0016,0.113568
+569,50.8517,19.665,18.2842,0.070752,0.835744,0.00816,0.00624,0.029376,0.100096,0.09856,17.0209,0.114336
+570,52.5586,19.0264,19.5256,0.069632,0.866304,0.009248,0.006304,0.029504,0.099552,0.099104,18.2329,0.113056
+571,48.2223,20.7373,18.2723,0.069632,0.836864,0.00832,0.00624,0.030912,0.097632,0.099328,17.0082,0.115168
+572,51.7799,19.3125,18.262,0.069216,0.801184,0.008288,0.00608,0.030688,0.099936,0.09872,17.0332,0.11472
+573,50.7861,19.6904,19.5247,0.071264,0.860576,0.009312,0.006272,0.029472,0.098272,0.098336,18.2374,0.11376
+574,48.3932,20.6641,18.254,0.069792,0.82128,0.00816,0.006208,0.030432,0.099648,0.09904,17.006,0.113376
+575,51.4082,19.4521,18.3543,0.069376,0.899392,0.00832,0.006272,0.030496,0.098656,0.099616,17.028,0.11424
+576,47.4843,21.0596,19.9967,0.069312,1.28502,0.009472,0.0064,0.039424,0.099616,0.098624,18.2757,0.11312
+577,50.421,19.833,18.4283,0.068576,0.974848,0.008224,0.006112,0.03072,0.112,0.109056,17.0047,0.11408
+578,50.538,19.7871,19.624,0.069664,0.92976,0.008224,0.006208,0.030624,0.098304,0.100352,18.2682,0.112672
+579,48.1792,20.7559,19.5994,0.069632,0.933888,0.023968,0.006272,0.030496,0.098304,0.098464,18.2257,0.11264
+580,48.9484,20.4297,18.2652,0.069568,0.840768,0.008384,0.00624,0.0296,0.09984,0.100448,16.9963,0.114144
+581,51.2513,19.5117,18.3713,0.068384,0.939232,0.008384,0.00624,0.029152,0.098304,0.098336,17.0066,0.116704
+582,51.3773,19.4639,19.5932,0.069632,0.9584,0.008256,0.006144,0.030688,0.098368,0.099552,18.2073,0.114912
+583,48.4481,20.6406,18.2797,0.070848,0.828,0.008288,0.006272,0.030592,0.097856,0.10064,17.0245,0.112736
+584,51.5246,19.4082,19.5239,0.069312,0.87312,0.008416,0.007008,0.037824,0.100384,0.100352,18.2141,0.11344
+585,48.6161,20.5693,19.567,0.069568,0.874336,0.008192,0.006816,0.030176,0.099136,0.108544,18.2579,0.112352
+586,47.6589,20.9824,18.3308,0.069632,0.863456,0.008288,0.006304,0.039456,0.100352,0.100352,17.0284,0.114496
+587,49.7087,20.1172,18.4074,0.069664,0.939968,0.008224,0.006144,0.030688,0.098336,0.100192,17.0416,0.11264
+588,52.529,19.0371,19.5727,0.069472,0.919712,0.008192,0.006144,0.030656,0.098368,0.099648,18.2269,0.113632
+589,46.499,21.5059,18.4661,0.069664,1.01786,0.026592,0.007552,0.029312,0.098304,0.09952,17.0046,0.112768
+590,53.0515,18.8496,19.3659,0.069664,0.806176,0.008288,0.006304,0.030176,0.098944,0.10048,18.1312,0.114688
+591,49.1198,20.3584,19.4716,0.069664,0.802816,0.009248,0.006304,0.029472,0.098336,0.11056,18.2292,0.115904
+592,47.5373,21.0361,18.4807,0.069632,1.02397,0.008224,0.006144,0.03056,0.098496,0.10032,17.0266,0.116768
+593,52.1491,19.1758,18.2443,0.070336,0.79872,0.008192,0.006144,0.03072,0.098304,0.098304,17.0202,0.113376
+594,51.0189,19.6006,19.6207,0.07456,0.92272,0.008288,0.006272,0.037568,0.100352,0.100352,18.2579,0.11264
+595,47.5483,21.0312,18.434,0.069632,0.958464,0.01648,0.006176,0.030592,0.098336,0.100256,17.0405,0.1136
+596,50.1297,19.9482,18.4443,0.069632,0.972192,0.00832,0.006304,0.045088,0.106784,0.100352,17.0225,0.11312
+597,53.4893,18.6953,20.6308,0.069632,0.800768,0.008192,0.006144,0.03072,0.097632,0.096928,19.4079,0.112896
+598,45.3479,22.0518,18.3999,0.06848,0.91136,0.016384,0.006144,0.03072,0.099552,0.099136,17.0549,0.113184
+599,47.3877,21.1025,18.7629,0.069632,1.29638,0.008192,0.016064,0.04256,0.100192,0.098656,17.0172,0.114112
+600,54.8327,18.2373,19.5996,0.069088,0.930336,0.016256,0.006272,0.029984,0.098976,0.098624,18.2373,0.112768
+601,48.8433,20.4736,18.2726,0.069856,0.8008,0.008288,0.006144,0.03072,0.098336,0.099936,17.0351,0.123456
+602,50.2873,19.8857,19.491,0.068288,0.845824,0.009376,0.006304,0.02944,0.100256,0.098368,18.2169,0.116224
+603,48.3338,20.6895,19.45,0.069664,0.797376,0.008192,0.006144,0.03072,0.098304,0.09968,18.2238,0.11616
+604,48.0729,20.8018,18.3748,0.069728,0.917536,0.00832,0.006112,0.030272,0.098752,0.108064,17.0214,0.11456
+605,51.3052,19.4912,18.3563,0.071104,0.912128,0.008288,0.006144,0.030688,0.099456,0.0992,17.0148,0.114464
+606,51.0418,19.5918,19.6649,0.069632,0.980864,0.008256,0.00624,0.030688,0.098304,0.109568,18.2485,0.112832
+607,48.0548,20.8096,19.592,0.068416,0.92976,0.008192,0.016256,0.030496,0.1048,0.100384,18.221,0.112672
+608,49.1669,20.3389,18.284,0.0696,0.808064,0.008384,0.00688,0.030528,0.1144,0.098784,17.0331,0.114304
+609,46.4189,21.543,19.6202,0.069056,0.956832,0.00832,0.014752,0.030688,0.099424,0.099008,18.2289,0.113216
+610,54.0141,18.5137,18.2501,0.069248,0.795264,0.008288,0.006144,0.030368,0.098688,0.10032,17.0263,0.115456
+611,51.4469,19.4375,18.3868,0.06912,0.927872,0.008288,0.006272,0.030208,0.09712,0.100352,17.0332,0.114272
+612,50.5804,19.7705,19.5566,0.0744,0.853248,0.008288,0.006336,0.030528,0.109088,0.098432,18.2616,0.114688
+613,48.0909,20.7939,18.2251,0.070752,0.80784,0.009216,0.006272,0.029568,0.098336,0.098272,16.9902,0.11456
+614,50.513,19.7969,18.8206,0.069536,1.35632,0.008192,0.01552,0.033216,0.100192,0.09888,17.0248,0.114016
+615,51.5609,19.3945,19.5438,0.0696,0.825376,0.008192,0.006144,0.03072,0.098336,0.100096,18.292,0.113408
+616,48.3658,20.6758,18.2562,0.06944,0.805376,0.008192,0.006176,0.030688,0.100064,0.100224,17.023,0.113056
+617,52.1571,19.1729,18.2527,0.068704,0.812,0.008224,0.006336,0.02928,0.098304,0.09824,17.0164,0.115168
+618,52.0087,19.2275,19.4724,0.069632,0.804896,0.00832,0.007104,0.0296,0.099904,0.098784,18.2388,0.115328
+619,48.3406,20.6865,19.5361,0.069408,0.896544,0.008384,0.01504,0.03072,0.09952,0.104672,18.1965,0.115264
+620,48.8736,20.4609,18.2641,0.070816,0.805728,0.008224,0.006112,0.030176,0.102048,0.0992,17.0267,0.11504
+621,50.7132,19.7188,19.6801,0.070496,0.970752,0.008192,0.014336,0.03072,0.098048,0.09856,18.2764,0.112672
+622,47.414,21.0908,18.389,0.069728,0.941248,0.008288,0.006272,0.03952,0.098496,0.104256,17.0066,0.11456
+623,47.6612,20.9814,18.518,0.069632,1.05882,0.008192,0.015392,0.029664,0.104448,0.099712,17.0186,0.1136
+624,54.1369,18.4717,19.4949,0.069664,0.84352,0.008192,0.006304,0.030048,0.09904,0.099712,18.2257,0.112704
+625,48.2359,20.7314,19.5686,0.069632,0.89008,0.018272,0.006304,0.031104,0.102816,0.106496,18.2313,0.11264
+626,45.2117,22.1182,19.6076,0.069632,0.929824,0.024064,0.0064,0.038432,0.105152,0.10032,18.2211,0.112672
+627,52.3598,19.0986,18.2351,0.06912,0.799648,0.008384,0.00704,0.0296,0.099616,0.098976,17.0087,0.114016
+628,51.3463,19.4756,18.2759,0.069312,0.822656,0.008288,0.006656,0.030272,0.099104,0.108544,17.0147,0.11632
+629,51.434,19.4424,19.5888,0.069376,0.89536,0.008192,0.006176,0.030688,0.098304,0.10016,18.2655,0.11504
+630,48.66,20.5508,18.2522,0.069152,0.803328,0.00832,0.006272,0.030336,0.098848,0.099712,17.0154,0.120832
+631,51.3283,19.4824,18.3981,0.070496,0.950272,0.017824,0.006304,0.030368,0.09888,0.098528,17.0122,0.113184
+632,50.8618,19.6611,20.38,0.065888,0.94,0.008192,0.006144,0.040928,0.099456,0.406144,18.7006,0.112672
+633,45.9131,21.7803,18.551,0.070176,1.0705,0.008352,0.006272,0.030752,0.098592,0.098304,17.0537,0.114336
+634,51.2282,19.5205,18.274,0.068768,0.83152,0.008384,0.006368,0.03072,0.100288,0.100288,17.0133,0.114272
+635,49.5332,20.1885,19.6896,0.068864,0.963488,0.022528,0.007456,0.030496,0.101312,0.09936,18.2835,0.11264
+636,43.8732,22.793,18.4326,0.068192,0.985088,0.00832,0.007104,0.029632,0.100352,0.106528,17.0139,0.113536
+637,55.9655,17.8682,19.54,0.071136,0.880704,0.00832,0.006272,0.030208,0.098528,0.098816,18.2333,0.11264
+638,45.8166,21.8262,19.763,0.069216,1.06797,0.018432,0.006144,0.038592,0.098624,0.102496,18.2476,0.11392
+639,46.9682,21.291,18.3828,0.069632,0.917504,0.008192,0.006144,0.03072,0.10832,0.112224,17.0167,0.113376
+640,53.5341,18.6797,18.2395,0.069248,0.81952,0.008288,0.006112,0.030624,0.098464,0.10032,16.9902,0.116736
+641,51.0062,19.6055,19.6168,0.069632,0.929632,0.00832,0.006176,0.034816,0.097888,0.098528,18.2561,0.115776
+642,47.4557,21.0723,19.6035,0.069568,0.918688,0.008224,0.006272,0.02944,0.099616,0.09904,18.2574,0.1152
+643,47.0286,21.2637,18.4884,0.069632,1.04182,0.025184,0.006144,0.03072,0.098272,0.11024,16.9906,0.115776
+644,52.0749,19.2031,19.4674,0.069632,0.813056,0.008192,0.006144,0.030656,0.0984,0.100032,18.2254,0.115808
+645,47.6834,20.9717,18.341,0.068864,0.9088,0.008352,0.006208,0.03072,0.097984,0.098624,17,0.121408
+646,50.6354,19.749,18.3562,0.071008,0.934304,0.008288,0.006272,0.030048,0.099008,0.098304,16.9943,0.114688
+647,50.9884,19.6123,19.5523,0.070816,0.885408,0.008288,0.00624,0.030528,0.108512,0.09984,18.23,0.11264
+648,48.4092,20.6572,19.4826,0.069632,0.841664,0.008288,0.006112,0.03056,0.10032,0.099872,18.2115,0.114688
+649,47.4954,21.0547,18.4156,0.076896,0.979264,0.008384,0.006336,0.03024,0.099008,0.100032,17.0008,0.114688
+650,51.223,19.5225,19.5523,0.076864,0.85088,0.008192,0.006144,0.03072,0.104064,0.098528,18.2641,0.112736
+651,48.4917,20.6221,18.2858,0.069664,0.812992,0.008224,0.006144,0.030624,0.102496,0.1064,17.0333,0.115936
+652,50.8189,19.6777,18.3666,0.068576,0.882336,0.00832,0.006272,0.030048,0.09904,0.100192,17.0553,0.116544
+653,50.9098,19.6426,19.5656,0.069664,0.903136,0.009216,0.006272,0.029568,0.098304,0.098304,18.217,0.134144
+654,48.384,20.668,18.6921,0.069664,0.843008,0.008352,0.006272,0.030432,0.09904,0.099904,17.4204,0.114976
+655,50.6404,19.7471,18.2555,0.069632,0.84128,0.008288,0.006272,0.030016,0.097184,0.09936,16.9908,0.112608
+656,51.2359,19.5176,19.5872,0.069664,0.961888,0.008256,0.006336,0.030336,0.099072,0.100352,18.1985,0.112768
+657,48.1135,20.7842,18.3337,0.069376,0.909568,0.008192,0.006144,0.031776,0.099328,0.100064,16.9966,0.112672
+658,51.6728,19.3525,18.3107,0.068992,0.898784,0.00832,0.006272,0.029344,0.100352,0.09984,16.9846,0.114176
+659,50.9326,19.6338,19.4803,0.069632,0.867616,0.008352,0.006272,0.029248,0.098176,0.099872,18.1881,0.112992
+660,48.2609,20.7207,19.59,0.06848,0.950272,0.008288,0.00624,0.030528,0.100256,0.0984,18.2142,0.113376
+661,48.8829,20.457,18.2236,0.06928,0.799648,0.009248,0.006432,0.029376,0.098304,0.098304,16.9964,0.116704
+662,51.5999,19.3799,19.5947,0.069632,0.917504,0.018432,0.006144,0.030624,0.099424,0.098528,18.238,0.116416
+663,47.9873,20.8389,18.3923,0.069376,0.93824,0.008192,0.006176,0.03888,0.098336,0.107712,17.011,0.114368
+664,50.1543,19.9385,18.4412,0.07264,1.01376,0.008192,0.006208,0.030656,0.098304,0.100352,16.9975,0.113568
+665,51.4418,19.4395,19.4984,0.069632,0.808576,0.00832,0.006272,0.030304,0.098848,0.100256,18.2622,0.114016
+666,47.9176,20.8691,19.6055,0.069024,0.948864,0.009312,0.006304,0.0376,0.101408,0.109568,18.2102,0.113216
+667,48.2473,20.7266,18.2433,0.069632,0.808608,0.00832,0.006304,0.030592,0.102592,0.100352,17.0023,0.114592
+668,50.8921,19.6494,19.54,0.069632,0.868352,0.008192,0.00624,0.030624,0.106496,0.099456,18.238,0.112992
+669,47.9603,20.8506,18.5004,0.06832,1.04573,0.008256,0.015072,0.046112,0.09728,0.099424,17.0055,0.114688
+670,52.2849,19.126,18.2391,0.0696,0.801216,0.008192,0.006176,0.030688,0.099744,0.098912,17.0086,0.115968
+671,51.8114,19.3008,19.4581,0.073728,0.806464,0.008384,0.006272,0.030496,0.09808,0.098208,18.2217,0.114784
+672,48.4115,20.6562,18.686,0.069632,0.861184,0.00832,0.006272,0.036896,0.09904,0.098304,17.3933,0.113056
+673,50.201,19.9199,18.2518,0.073344,0.805216,0.008256,0.006112,0.030752,0.09808,0.098496,17.0189,0.112672
+674,50.4657,19.8154,19.4889,0.069184,0.798912,0.008256,0.006304,0.03008,0.098336,0.100256,18.2646,0.112992
+675,45.138,22.1543,18.3753,0.069344,0.891328,0.008288,0.014688,0.036224,0.098464,0.098304,17.0337,0.124928
+676,51.4676,19.4297,18.2951,0.070272,0.854304,0.008192,0.006144,0.030656,0.100224,0.099616,17.0116,0.114112
+677,51.2743,19.5029,19.6238,0.069632,0.986208,0.021408,0.006144,0.030624,0.09824,0.100512,18.1982,0.112768
+678,48.7689,20.5049,18.2555,0.069664,0.804832,0.008224,0.006304,0.030528,0.100384,0.099424,17.0218,0.114336
+679,52.0934,19.1963,18.2322,0.068448,0.796672,0.008192,0.007328,0.029536,0.098304,0.098304,17.0099,0.115456
+680,50.7333,19.7109,19.6061,0.069312,0.932704,0.008224,0.006112,0.03072,0.09952,0.099136,18.2436,0.116768
+681,48.2404,20.7295,18.2899,0.069632,0.865728,0.008288,0.006272,0.030304,0.098752,0.100192,16.9961,0.114688
+682,51.6259,19.3701,18.3657,0.069664,0.919328,0.008352,0.006176,0.0304,0.09968,0.098624,17.0195,0.113984
+683,50.7785,19.6934,19.6026,0.069632,0.909312,0.008192,0.006144,0.03056,0.098464,0.100352,18.2682,0.111744
+684,47.8572,20.8955,18.3439,0.069664,0.894944,0.008192,0.006208,0.030656,0.100192,0.100032,17.0194,0.114688
+685,49.6148,20.1553,18.2678,0.069696,0.850176,0.008192,0.006144,0.03072,0.098304,0.100352,16.9902,0.114048
+686,52.2342,19.1445,19.5453,0.069056,0.800832,0.008544,0.006272,0.0304,0.098816,0.104416,18.3132,0.113728
+687,47.6989,20.9648,18.4771,0.069632,1.0377,0.008768,0.006208,0.0304,0.098624,0.106496,17.0045,0.114688
+688,50.2478,19.9014,18.3952,0.06912,0.9344,0.025888,0.006272,0.030464,0.098784,0.098688,17.0168,0.11472
+689,52.2023,19.1562,19.4622,0.068928,0.7968,0.008352,0.00624,0.029152,0.09824,0.099552,18.2401,0.11488
+690,48.1814,20.7549,18.4054,0.069632,0.956416,0.008192,0.006144,0.03072,0.098304,0.100256,17.0224,0.11328
+691,51.5687,19.3916,18.2747,0.069952,0.825376,0.008256,0.006144,0.030528,0.098432,0.099424,17.024,0.11264
+692,51.6806,19.3496,19.5625,0.069344,0.8928,0.008288,0.006304,0.030368,0.100512,0.100448,18.2418,0.11264
+693,48.2723,20.7158,18.3968,0.077376,0.956384,0.008352,0.006272,0.030432,0.098816,0.100256,17.006,0.112992
+694,51.4857,19.4229,18.4276,0.069664,0.974272,0.008352,0.00624,0.030304,0.102432,0.102432,17.0195,0.114432
+695,50.9859,19.6133,20.7629,0.069408,0.885216,0.008192,0.006176,0.030688,0.098048,0.114112,19.4384,0.11264
+696,46.0307,21.7246,18.2462,0.069376,0.813888,0.008192,0.006144,0.03072,0.099456,0.0992,17.006,0.11328
+697,51.4495,19.4365,18.348,0.069632,0.878592,0.008192,0.016384,0.030528,0.097728,0.098368,17.0334,0.115232
+698,47.7278,20.9521,19.6997,0.06944,1.04467,0.008192,0.006144,0.030208,0.104288,0.098976,18.223,0.114784
+699,51.7511,19.3232,18.2679,0.0696,0.833664,0.008224,0.006144,0.030464,0.09792,0.098208,17.0073,0.116384
+700,51.9296,19.2568,18.3299,0.069536,0.917856,0.008384,0.00704,0.029632,0.100096,0.099712,16.9847,0.112896
+701,51.5505,19.3984,19.5646,0.069472,0.950112,0.008288,0.006272,0.03024,0.09808,0.098656,18.1909,0.11264
+702,48.9063,20.4473,18.2641,0.069184,0.79664,0.008352,0.00624,0.029312,0.099584,0.100576,17.0398,0.114464
+703,52.0087,19.2275,18.2519,0.069472,0.796992,0.00832,0.007488,0.029248,0.098464,0.100192,17.0266,0.1152
+704,51.3541,19.4727,19.6043,0.0696,0.934176,0.008352,0.006272,0.037216,0.100064,0.09856,18.2354,0.114656
+705,44.9991,22.2227,18.4892,0.069664,1.03984,0.00832,0.006272,0.030144,0.098496,0.100576,17.0206,0.115296
+706,55.1071,18.1465,18.2456,0.07072,0.801728,0.008192,0.006144,0.030656,0.098464,0.100256,17.0165,0.11296
+707,47.4601,21.0703,19.7907,0.06864,1.13446,0.008288,0.006176,0.030528,0.10256,0.100352,18.2272,0.112512
+708,50.2675,19.8936,18.4259,0.083968,0.96368,0.015296,0.006112,0.03072,0.100352,0.099776,17.0113,0.114688
+709,48.1158,20.7832,18.4525,0.069632,1.00518,0.00832,0.006272,0.030144,0.098848,0.108704,17.0123,0.113088
+710,54.243,18.4355,19.5481,0.069344,0.904544,0.008384,0.006272,0.0304,0.098592,0.098944,18.2182,0.113376
+711,48.3726,20.6729,18.3932,0.0696,0.92896,0.016896,0.006336,0.030848,0.106528,0.099552,17.0212,0.11328
+712,51.4728,19.4277,19.5944,0.069088,0.921824,0.008352,0.006272,0.036896,0.098336,0.10032,18.2395,0.113824
+713,47.8058,20.918,19.5809,0.069632,0.92368,0.009344,0.006272,0.029408,0.098336,0.10032,18.2292,0.114624
+714,48.1407,20.7725,18.3726,0.069632,0.894208,0.008608,0.00624,0.030336,0.098944,0.114432,17.0335,0.116736
+715,51.3566,19.4717,18.3538,0.069632,0.933856,0.008224,0.006144,0.038208,0.098592,0.102816,16.9812,0.115072
+716,48.4161,20.6543,19.7279,0.092704,1.06701,0.02016,0.006304,0.030496,0.098688,0.09952,18.1989,0.114176
+717,49.9512,20.0195,18.3111,0.069536,0.882784,0.008256,0.006144,0.030656,0.098336,0.098304,17.0025,0.114592
+718,51.2589,19.5088,18.3624,0.069088,0.932416,0.008192,0.006144,0.036704,0.099936,0.100352,16.9959,0.113696
+719,51.2538,19.5107,19.4972,0.06928,0.878784,0.008288,0.006304,0.030528,0.1024,0.09872,18.1897,0.113216
+720,48.8876,20.4551,18.2461,0.069472,0.815712,0.008192,0.00624,0.030624,0.101504,0.113024,16.9866,0.11472
+721,51.8455,19.2881,18.2969,0.069632,0.874496,0.0096,0.006272,0.029184,0.098304,0.098304,16.9957,0.115392
+722,52.0272,19.2207,19.4601,0.069504,0.804512,0.008256,0.006336,0.030432,0.098464,0.100192,18.227,0.115424
+723,46.2052,21.6426,18.416,0.069984,0.958016,0.024928,0.00624,0.030752,0.097952,0.098656,17.0168,0.112672
+724,54.5959,18.3164,18.3107,0.086016,0.853536,0.00832,0.00624,0.030304,0.100544,0.098784,17.0127,0.114208
+725,51.7146,19.3369,19.4679,0.068032,0.835584,0.008192,0.006144,0.030496,0.098304,0.098528,18.2103,0.112384
+726,48.4298,20.6484,18.2833,0.068384,0.847872,0.009472,0.006272,0.030496,0.109408,0.10144,16.9953,0.11472
+727,51.8324,19.293,18.2492,0.069632,0.823328,0.00928,0.006432,0.030432,0.097184,0.099328,16.9992,0.114464
+728,52.4832,19.0537,19.4305,0.069664,0.802784,0.009312,0.007072,0.030016,0.098592,0.09872,18.1985,0.11584
+729,48.911,20.4453,18.2083,0.069632,0.800768,0.008192,0.006144,0.03072,0.09824,0.098368,16.9835,0.1128
+730,51.8192,19.2979,18.2589,0.069728,0.844544,0.008224,0.006112,0.03072,0.099968,0.100736,16.9858,0.113056
+731,51.4469,19.4375,19.435,0.069632,0.797952,0.008256,0.006304,0.030528,0.098784,0.100192,18.2108,0.112576
+732,48.5078,20.6152,18.2284,0.069056,0.811776,0.00816,0.007744,0.030976,0.099776,0.102752,16.9845,0.113728
+733,52.1624,19.1709,18.2312,0.06928,0.80112,0.009344,0.006272,0.02944,0.098464,0.100192,17.0018,0.115296
+734,51.2821,19.5,19.4595,0.069664,0.829536,0.00928,0.006272,0.029504,0.10016,0.098432,18.2026,0.114112
+735,49.0821,20.374,18.2198,0.069728,0.805536,0.00928,0.006112,0.029664,0.098304,0.100032,16.9864,0.114688
+736,49.8855,20.0459,18.4469,0.07024,0.974848,0.020512,0.007232,0.040928,0.09904,0.098528,17.0209,0.114688
+737,49.3161,20.2773,19.8405,0.081728,1.16141,0.008224,0.006112,0.030432,0.09872,0.11664,18.2244,0.112896
+738,49.905,20.0381,18.3168,0.069632,0.875616,0.00832,0.006272,0.029344,0.101728,0.098976,17.0127,0.114144
+739,52.0405,19.2158,18.2222,0.069632,0.806528,0.008288,0.006144,0.030656,0.104576,0.100448,16.9821,0.11376
+740,51.898,19.2686,19.4744,0.069152,0.82992,0.008416,0.007392,0.029248,0.099424,0.097184,18.2208,0.112928
+741,48.939,20.4336,18.2367,0.069632,0.801792,0.008352,0.006272,0.029504,0.098176,0.098368,17.0066,0.118048
+742,50.9757,19.6172,18.3874,0.069696,0.923104,0.008288,0.006368,0.041568,0.09984,0.09888,17.0126,0.127008
+743,50.5979,19.7637,19.581,0.070176,0.897024,0.00832,0.00704,0.029696,0.099392,0.099296,18.2538,0.116256
+744,48.9788,20.417,18.2866,0.069632,0.82864,0.008256,0.006304,0.02928,0.10032,0.100032,17.0307,0.113408
+745,51.5921,19.3828,18.3316,0.069632,0.903008,0.008352,0.006144,0.03056,0.098464,0.100352,17.0016,0.113568
+746,50.9073,19.6436,19.6467,0.06896,0.979264,0.00832,0.006272,0.030208,0.099168,0.098368,18.2435,0.11264
+747,48.1882,20.752,18.3828,0.069632,0.940032,0.008416,0.007072,0.030784,0.09712,0.100288,17.0128,0.116736
+748,51.5065,19.415,18.2723,0.06864,0.802848,0.008256,0.006272,0.02944,0.099872,0.09872,17.0426,0.115648
+749,50.1126,19.9551,19.6055,0.069664,0.919104,0.014752,0.006144,0.03072,0.110624,0.099424,18.2414,0.113632
+750,47.7812,20.9287,18.3551,0.06848,0.917504,0.009312,0.006272,0.029472,0.09968,0.098976,17.0107,0.11472
+751,51.3489,19.4746,18.2703,0.070176,0.832608,0.008384,0.006304,0.030272,0.097248,0.100352,17.0107,0.114272
+752,52.0457,19.2139,19.456,0.069632,0.82112,0.008256,0.006208,0.030368,0.100288,0.099744,18.2075,0.112928
+753,47.3482,21.1201,18.4218,0.069664,1.0256,0.00832,0.006336,0.030464,0.098688,0.10032,16.9695,0.112864
+754,52.7129,18.9707,18.286,0.069248,0.815104,0.008352,0.00624,0.030368,0.09872,0.100512,17.0434,0.113984
+755,51.434,19.4424,19.489,0.068512,0.821216,0.008192,0.006176,0.030688,0.098112,0.098368,18.2437,0.114016
+756,48.2518,20.7246,18.3359,0.069248,0.930336,0.008192,0.006176,0.030592,0.0984,0.09936,16.9769,0.116736
+757,51.1591,19.5469,18.2597,0.069632,0.841472,0.008352,0.00624,0.030208,0.0968,0.098272,16.9942,0.114464
+758,51.7538,19.3223,19.529,0.070912,0.854784,0.008192,0.007232,0.029632,0.100352,0.098304,18.2333,0.126208
+759,47.7234,20.9541,18.3562,0.07136,0.913728,0.008192,0.006176,0.030688,0.098304,0.098304,17.0159,0.113536
+760,51.2821,19.5,18.3214,0.07696,0.87536,0.008192,0.00624,0.030624,0.100352,0.100352,17.0106,0.112736
+761,52.189,19.1611,19.4949,0.069536,0.813152,0.008192,0.006144,0.0304,0.098528,0.098464,18.2572,0.113248
+762,48.7596,20.5088,18.2171,0.068992,0.811328,0.00832,0.006304,0.029952,0.098688,0.098784,16.98,0.11472
+763,51.4392,19.4404,18.3641,0.069632,0.9216,0.008192,0.006144,0.030656,0.097856,0.100704,17.0129,0.116352
+764,51.3876,19.46,19.5048,0.069632,0.868352,0.008192,0.006144,0.03072,0.098304,0.099872,18.2092,0.114336
+765,48.8573,20.4678,18.2133,0.070208,0.79872,0.008192,0.006144,0.03072,0.09808,0.098528,16.9898,0.112992
+766,51.154,19.5488,18.3006,0.069728,0.8744,0.008192,0.006176,0.030688,0.100096,0.09856,16.9984,0.114336
+767,51.7799,19.3125,19.5757,0.06848,0.931584,0.008288,0.006176,0.030432,0.09872,0.099392,18.22,0.11264
+768,48.9671,20.4219,18.2106,0.068992,0.800416,0.008352,0.006304,0.030496,0.0992,0.106016,16.9775,0.113344
+769,52.0325,19.2188,18.219,0.069632,0.802752,0.008256,0.006144,0.030592,0.098432,0.098304,16.99,0.114912
+770,51.5376,19.4033,19.509,0.06832,0.82304,0.008384,0.006176,0.030016,0.09904,0.099392,18.2588,0.115744
+771,48.455,20.6377,18.2311,0.069344,0.81664,0.008352,0.006304,0.029248,0.099488,0.098976,16.9884,0.114432
+772,52.0193,19.2236,18.2215,0.069952,0.811104,0.008416,0.006176,0.030336,0.10048,0.099936,16.9806,0.114432
+773,51.5947,19.3818,19.6219,0.070912,0.926464,0.009344,0.006272,0.02944,0.099424,0.099232,18.2672,0.113632
+774,48.2586,20.7217,18.2348,0.069632,0.821216,0.008256,0.006112,0.030336,0.098688,0.099968,16.9865,0.114112
+775,51.9454,19.251,18.225,0.069664,0.802816,0.008192,0.006112,0.030624,0.113888,0.098784,16.9783,0.116608
+776,50.9326,19.6338,19.4827,0.068512,0.83872,0.00832,0.006304,0.030368,0.09872,0.09888,18.2181,0.114752
+777,48.9086,20.4463,18.2516,0.076064,0.815104,0.009248,0.006272,0.029536,0.0984,0.109472,16.9933,0.114176
+778,52.1544,19.1738,18.2509,0.070592,0.808352,0.00832,0.00624,0.030528,0.098912,0.099936,17.015,0.112992
+779,51.1488,19.5508,19.612,0.069568,0.9896,0.008192,0.006144,0.030688,0.099456,0.098976,18.1966,0.1128
+780,48.1271,20.7783,18.4445,0.075936,0.997376,0.008192,0.01568,0.029376,0.100096,0.099648,17.0046,0.1136
+781,51.7957,19.3066,18.2061,0.069664,0.80256,0.00752,0.006112,0.0296,0.098464,0.099168,16.9789,0.114144
+782,51.4521,19.4355,19.6301,0.069504,0.979072,0.008192,0.006144,0.03072,0.099328,0.09744,18.227,0.11264
+783,47.619,21,18.3565,0.069312,0.940064,0.008608,0.006208,0.030432,0.09776,0.099136,16.9902,0.114816
+784,51.4392,19.4404,18.2631,0.069152,0.823168,0.00832,0.006272,0.030176,0.098752,0.100224,17.0113,0.115776
+785,51.3927,19.458,19.6115,0.070144,0.942144,0.008224,0.006144,0.030624,0.09824,0.098432,18.2436,0.11392
+786,48.0075,20.8301,18.3951,0.069632,0.960512,0.008192,0.006144,0.038048,0.098336,0.098784,17.0008,0.114688
+787,47.8125,20.915,18.3457,0.069632,0.908992,0.00832,0.006304,0.030432,0.098656,0.10016,17.0088,0.114432
+788,53.9657,18.5303,19.5952,0.069632,0.913408,0.024128,0.006592,0.04608,0.099328,0.110304,18.2123,0.11344
+789,48.4481,20.6406,18.3521,0.069408,0.9256,0.008512,0.006144,0.030752,0.098304,0.098304,17.002,0.113152
+790,51.2282,19.5205,18.3194,0.069632,0.884544,0.008288,0.00624,0.03024,0.098784,0.100096,16.9999,0.1216
+791,50.022,19.9912,19.5359,0.069472,0.876704,0.008192,0.006176,0.030688,0.098336,0.099328,18.2323,0.114688
+792,47.9715,20.8457,18.3649,0.084448,0.922912,0.018176,0.006304,0.029504,0.099584,0.09888,16.9895,0.115552
+793,51.2102,19.5273,18.2958,0.068608,0.887904,0.008288,0.006272,0.029344,0.098304,0.099712,16.9827,0.114688
+794,52.3196,19.1133,19.501,0.0712,0.846304,0.009344,0.006368,0.030432,0.099232,0.1024,18.2231,0.11264
+795,48.5953,20.5781,18.231,0.069504,0.815648,0.008224,0.006112,0.03072,0.098304,0.100352,16.9882,0.113952
+796,50.7433,19.707,18.4405,0.069152,1.02586,0.007168,0.006272,0.030592,0.099648,0.099008,16.9893,0.113568
+797,50.8289,19.6738,19.5405,0.068128,0.878016,0.022272,0.006304,0.030528,0.097088,0.101888,18.2232,0.113024
+798,48.5676,20.5898,18.3029,0.069024,0.856992,0.00928,0.006336,0.02944,0.100352,0.102176,17.013,0.11632
+799,52.0908,19.1973,18.2785,0.069568,0.843904,0.008416,0.00768,0.030176,0.097088,0.098304,17.0086,0.114688
+800,51.1591,19.5469,19.4742,0.070368,0.833504,0.008256,0.007168,0.029632,0.09968,0.098912,18.2129,0.11376
+801,48.1429,20.7715,18.2997,0.07168,0.877408,0.008192,0.006144,0.03072,0.098304,0.100096,16.994,0.113216
+802,49.6846,20.127,18.4852,0.069632,1.04451,0.008192,0.006112,0.031904,0.10736,0.100448,16.9983,0.118784
+803,52.0272,19.2207,19.5321,0.069312,0.89968,0.008192,0.006144,0.030656,0.098176,0.09792,18.2093,0.11264
+804,47.8281,20.9082,19.6321,0.068384,0.961856,0.008352,0.006272,0.038848,0.114208,0.099232,18.2211,0.113856
+805,49.5212,20.1934,18.2334,0.069056,0.8096,0.008192,0.006144,0.030752,0.101888,0.098784,16.9943,0.114688
+806,52.1279,19.1836,19.4854,0.06832,0.82944,0.008192,0.006144,0.030432,0.098592,0.1,18.2316,0.11264
+807,48.5584,20.5938,18.2624,0.069568,0.844224,0.00832,0.00768,0.029088,0.09824,0.100352,16.9902,0.114688
+808,51.0011,19.6074,18.3051,0.069088,0.849536,0.008288,0.006304,0.030496,0.098592,0.098496,17.0306,0.113632
+809,50.1126,19.9551,19.5277,0.070816,0.882976,0.008352,0.00624,0.030144,0.097216,0.099616,18.2176,0.114688
+810,49.9561,20.0176,18.2351,0.07104,0.816928,0.00832,0.00624,0.030496,0.0992,0.099808,16.9898,0.113312
+811,52.1173,19.1875,19.4174,0.06976,0.799584,0.008192,0.006144,0.030752,0.098304,0.098272,18.1935,0.11296
+812,47.5704,21.0215,19.497,0.069536,0.84352,0.008288,0.006304,0.030592,0.112032,0.099136,18.2147,0.112864
+813,48.925,20.4395,18.2701,0.069856,0.83968,0.008192,0.006144,0.031776,0.098656,0.098944,17.0025,0.114336
+814,51.8061,19.3027,18.26,0.069344,0.83792,0.008224,0.006112,0.030624,0.0984,0.100096,16.9936,0.115712
+815,51.4625,19.4316,19.5195,0.069376,0.884224,0.00832,0.00624,0.030368,0.098624,0.098912,18.2087,0.114688
+816,48.7805,20.5,18.3071,0.069056,0.86656,0.008192,0.0064,0.030368,0.09872,0.1,17.0142,0.1136
+817,51.2666,19.5059,19.6018,0.069376,0.970592,0.008384,0.006208,0.029216,0.099872,0.099968,18.2055,0.11264
+818,48.5124,20.6133,19.5092,0.071136,0.866752,0.00832,0.006112,0.030112,0.09856,0.098592,18.217,0.11264
+819,48.6831,20.541,18.259,0.071712,0.833344,0.008288,0.00624,0.0304,0.098592,0.099744,16.9967,0.114016
+820,52.1332,19.1816,18.256,0.068576,0.824384,0.008352,0.006272,0.030528,0.099136,0.098336,17.0066,0.113856
+821,51.8428,19.2891,19.4765,0.069632,0.814784,0.00832,0.006272,0.02992,0.09712,0.100352,18.237,0.11312
+822,48.5815,20.584,18.2733,0.0696,0.849952,0.008192,0.006144,0.03072,0.098304,0.098304,16.9953,0.116736
+823,52.1651,19.1699,19.4643,0.069408,0.815968,0.008192,0.006144,0.030496,0.098496,0.100032,18.2188,0.116736
+824,48.563,20.5918,19.4765,0.069408,0.848096,0.008416,0.00704,0.0296,0.099392,0.099264,18.2005,0.114784
+825,46.5412,21.4863,18.2845,0.0696,0.866336,0.008192,0.006176,0.030656,0.10832,0.09856,16.9838,0.112928
+826,49.8734,20.0508,18.28,0.073888,0.851168,0.008352,0.006336,0.035264,0.099712,0.09872,16.992,0.114528
+827,51.8534,19.2852,19.4786,0.082016,0.823296,0.008192,0.006144,0.03072,0.110528,0.100256,18.1966,0.120832
+828,48.5907,20.5801,18.2509,0.079616,0.813312,0.008192,0.006176,0.03072,0.099968,0.099712,16.9993,0.113984
+829,51.9586,19.2461,18.2799,0.069664,0.826528,0.00848,0.006688,0.03072,0.104256,0.098496,17.022,0.113056
+830,51.8114,19.3008,20.6625,0.069248,0.836384,0.008256,0.006112,0.030688,0.099328,0.09888,19.4006,0.113024
+831,46.2595,21.6172,18.2079,0.069632,0.812672,0.008352,0.006272,0.030272,0.0968,0.099552,16.9705,0.113856
+832,52.2129,19.1523,18.2165,0.069184,0.799328,0.008224,0.006112,0.030496,0.09856,0.10032,16.9873,0.116992
+833,51.5817,19.3867,19.5038,0.069536,0.83648,0.009344,0.006144,0.029568,0.098336,0.10032,18.239,0.115104
+834,48.6138,20.5703,18.2451,0.07136,0.84,0.008192,0.006144,0.03072,0.09936,0.099296,16.9759,0.114144
+835,51.318,19.4863,19.5936,0.069664,0.9672,0.008256,0.006144,0.030432,0.100384,0.099744,18.1986,0.113216
+836,47.1542,21.207,19.5724,0.069504,0.895104,0.008192,0.006176,0.03024,0.098752,0.100352,18.2497,0.114336
+837,50.1567,19.9375,18.2211,0.071008,0.812704,0.00832,0.006304,0.029408,0.099904,0.100192,16.9806,0.11264
+838,51.4883,19.4219,18.389,0.06912,0.926336,0.008192,0.006208,0.030656,0.106048,0.098752,17.0291,0.11456
+839,51.5194,19.4102,19.5902,0.069376,0.934176,0.00832,0.00704,0.029664,0.098304,0.098304,18.2325,0.11248
+840,47.9985,20.834,18.3132,0.06816,0.864032,0.00832,0.006208,0.030176,0.098848,0.099968,17.021,0.116544
+841,51.4883,19.4219,18.7311,0.069216,0.92992,0.008288,0.006272,0.030304,0.096736,0.101984,17.3756,0.112832
+842,49.7812,20.0879,19.5909,0.069408,0.948352,0.008288,0.006144,0.030624,0.0984,0.100352,18.2149,0.1144
+843,46.9854,21.2832,18.3177,0.070048,0.923872,0.009312,0.00624,0.029504,0.09824,0.098336,16.9677,0.114496
+844,51.8009,19.3047,18.2866,0.069632,0.833536,0.008192,0.006176,0.030688,0.098304,0.100352,17.0251,0.114656
+845,53.7082,18.6191,19.4294,0.068992,0.811584,0.008288,0.006176,0.030048,0.098304,0.100768,18.1924,0.112928
+846,48.3566,20.6797,18.3652,0.068352,0.944128,0.008288,0.00624,0.030528,0.10608,0.104864,16.9836,0.113152
+847,47.8415,20.9023,18.3813,0.069216,0.967584,0.00816,0.006144,0.03072,0.098208,0.100064,16.9865,0.114688
+848,55.9624,17.8691,20.5936,0.068576,0.800768,0.008192,0.006144,0.03072,0.098336,0.100352,19.3676,0.112992
+849,46.0307,21.7246,18.2639,0.069632,0.855616,0.008256,0.006272,0.030368,0.096896,0.098272,16.9831,0.11552
+850,51.2615,19.5078,18.344,0.069792,0.917376,0.008352,0.00704,0.029632,0.099904,0.098752,17.0001,0.113024
+851,50.8441,19.668,19.6321,0.07168,0.9216,0.008192,0.006144,0.03072,0.098336,0.11056,18.26,0.124928
+852,48.5861,20.582,18.3043,0.069632,0.86176,0.008288,0.006272,0.030048,0.100736,0.098816,17.0148,0.11392
+853,51.5973,19.3809,19.4785,0.068992,0.821472,0.008352,0.006272,0.030528,0.0984,0.098528,18.2329,0.113088
+854,46.66,21.4316,19.5424,0.069056,0.924064,0.008512,0.006272,0.030048,0.099008,0.098336,18.1944,0.112672
+855,49.4543,20.2207,18.2573,0.069632,0.837632,0.008192,0.006144,0.030752,0.097504,0.098432,16.9964,0.112672
+856,51.5142,19.4121,18.2559,0.069216,0.832992,0.00832,0.006272,0.029376,0.100224,0.098464,16.998,0.112992
+857,50.9453,19.6289,19.4909,0.069408,0.886848,0.00832,0.006304,0.030528,0.097952,0.098912,18.1793,0.113312
+858,48.6415,20.5586,18.2759,0.069632,0.849696,0.008352,0.006208,0.030336,0.098688,0.098432,16.9983,0.116288
+859,51.535,19.4043,19.4756,0.069632,0.841728,0.008192,0.006144,0.030528,0.09808,0.098528,18.209,0.113824
+860,48.2746,20.7148,19.4744,0.069632,0.862112,0.008288,0.006144,0.0304,0.098592,0.100032,18.1863,0.11296
+861,48.4344,20.6465,18.2479,0.069824,0.864192,0.008256,0.006144,0.03072,0.09808,0.098368,16.9592,0.11312
+862,51.7485,19.3242,18.2314,0.069664,0.825312,0.009248,0.006368,0.02944,0.100384,0.100256,16.9776,0.11312
+863,52.1332,19.1816,19.439,0.069632,0.804064,0.00832,0.00624,0.030368,0.100448,0.106336,18.2011,0.112576
+864,48.8876,20.4551,18.2374,0.069088,0.817472,0.00832,0.00624,0.030272,0.098752,0.0984,16.9954,0.113472
+865,52.1014,19.1934,19.4417,0.069632,0.804864,0.009248,0.00624,0.029568,0.098304,0.098304,18.2108,0.114688
+866,48.3521,20.6816,19.5031,0.069632,0.841728,0.008352,0.007072,0.029632,0.10224,0.112704,18.2162,0.115552
+867,49.0515,20.3867,18.2255,0.06848,0.808448,0.008608,0.00624,0.030368,0.098432,0.10016,16.9906,0.114112
+868,51.2872,19.498,18.2456,0.070304,0.839488,0.008352,0.006176,0.030208,0.098816,0.099584,16.9787,0.113952
+869,52.0325,19.2188,19.426,0.069504,0.806752,0.008384,0.006272,0.029312,0.100352,0.10032,18.1924,0.11264
+870,47.994,20.8359,18.3735,0.06848,0.962432,0.008288,0.006144,0.030336,0.100256,0.100768,16.9821,0.114688
+871,52.0749,19.2031,18.222,0.06848,0.821248,0.008192,0.006144,0.03072,0.09808,0.098432,16.9774,0.11328
+872,51.5609,19.3945,20.7401,0.069632,0.89664,0.008352,0.006304,0.04512,0.100352,0.098304,19.4028,0.11264
+873,46.339,21.5801,18.2196,0.069312,0.813984,0.008192,0.006144,0.03072,0.097664,0.10064,16.9762,0.116672
+874,51.318,19.4863,18.3501,0.069536,0.938112,0.008192,0.006112,0.03072,0.10624,0.09856,16.9775,0.115136
+875,52.1438,19.1777,19.4624,0.069888,0.828896,0.008288,0.006432,0.0304,0.09872,0.098368,18.208,0.113376
+876,48.54,20.6016,18.3112,0.069632,0.884736,0.008192,0.006144,0.030496,0.09856,0.100128,16.9986,0.114688
+877,50.2898,19.8848,19.5802,0.069632,0.956448,0.00816,0.006144,0.03072,0.1024,0.099712,18.1945,0.112544
+878,50.0195,19.9922,19.4823,0.073696,0.841344,0.00832,0.006272,0.030528,0.0992,0.11056,18.1985,0.113824
+879,48.8317,20.4785,18.2279,0.069664,0.805248,0.008352,0.006208,0.030304,0.098144,0.099936,16.9972,0.112768
+880,52.0167,19.2246,18.2497,0.06912,0.807424,0.008224,0.00624,0.030592,0.099744,0.098912,17.0145,0.114944
+881,51.6389,19.3652,19.4651,0.0696,0.807872,0.008192,0.006144,0.03072,0.098304,0.100352,18.2291,0.114816
+882,48.0571,20.8086,19.5895,0.069152,0.950304,0.00832,0.006272,0.02928,0.099488,0.099168,18.2119,0.115616
+883,47.958,20.8516,18.2912,0.068416,0.888416,0.008288,0.006304,0.03008,0.098528,0.09824,16.9785,0.1144
+884,51.3129,19.4883,19.5251,0.069632,0.865728,0.00832,0.006272,0.030208,0.099136,0.100032,18.2316,0.114208
+885,48.7758,20.502,18.2252,0.069632,0.820768,0.008384,0.006272,0.030272,0.098912,0.098432,16.9792,0.11328
+886,50.6329,19.75,18.2871,0.068064,0.89088,0.008192,0.006144,0.03072,0.100352,0.100352,16.9677,0.114688
+887,51.4935,19.4199,19.5651,0.06816,0.915264,0.008352,0.006176,0.030688,0.100032,0.098464,18.2253,0.11264
+888,48.8736,20.4609,18.2354,0.0688,0.80944,0.008256,0.006432,0.032768,0.09936,0.10544,16.9921,0.112832
+889,52.0802,19.2012,18.2187,0.069632,0.808288,0.00832,0.006272,0.029152,0.09824,0.10176,16.9818,0.115232
+890,51.3798,19.4629,19.4826,0.069632,0.845824,0.008192,0.006144,0.030752,0.099456,0.099168,18.2081,0.115328
+891,48.6738,20.5449,18.2429,0.069632,0.843776,0.009472,0.006272,0.029376,0.09824,0.100352,16.9718,0.114048
+892,52.0167,19.2246,18.2481,0.070016,0.829088,0.008352,0.006304,0.030432,0.10048,0.099584,16.9808,0.12304
+893,51.6911,19.3457,19.4792,0.068288,0.82944,0.008352,0.022112,0.038752,0.09872,0.098304,18.2022,0.113024
+894,48.3658,20.6758,18.3343,0.068224,0.898912,0.00832,0.006176,0.039008,0.102336,0.099872,16.9968,0.114656
+895,50.683,19.7305,18.303,0.069536,0.905024,0.008288,0.006304,0.03024,0.097888,0.098816,16.9718,0.11504
+896,51.7538,19.3223,19.5031,0.069664,0.896128,0.008288,0.006304,0.02928,0.099552,0.098976,18.1799,0.114976
+897,48.748,20.5137,18.2682,0.069632,0.839488,0.00832,0.006208,0.03024,0.098112,0.098752,17.0027,0.114688
+898,51.1949,19.5332,18.305,0.071488,0.874528,0.008288,0.00624,0.0304,0.098528,0.100096,17.0028,0.11264
+899,51.4108,19.4512,19.4867,0.069632,0.834944,0.00832,0.006272,0.030144,0.099072,0.099648,18.2261,0.112608
+900,47.5748,21.0195,18.3601,0.068992,0.915296,0.008384,0.00624,0.030624,0.100448,0.098944,17.0168,0.114336
+901,51.4625,19.4316,18.261,0.068608,0.847872,0.009376,0.006272,0.029408,0.098304,0.099584,16.9884,0.113152
+902,50.7735,19.6953,19.5134,0.0696,0.874528,0.008192,0.016384,0.030496,0.099936,0.098848,18.2027,0.112672
+903,48.6877,20.5391,18.3044,0.0712,0.860384,0.00832,0.006272,0.030144,0.09888,0.100128,17.0143,0.114784
+904,51.2205,19.5234,18.2886,0.069632,0.85936,0.015136,0.006144,0.03056,0.098464,0.09936,16.9963,0.113664
+905,50.4682,19.8145,19.6014,0.069632,0.939104,0.00832,0.006272,0.030464,0.09856,0.098752,18.2356,0.114688
+906,48.494,20.6211,18.2886,0.069664,0.87856,0.008192,0.006176,0.030688,0.09952,0.107168,16.974,0.114688
+907,51.7433,19.3262,18.2525,0.069792,0.836192,0.008192,0.006176,0.032736,0.099584,0.099072,16.9879,0.112896
+908,51.8114,19.3008,19.5468,0.069344,0.876608,0.008256,0.006272,0.02944,0.099744,0.098912,18.2456,0.11264
+909,48.7805,20.5,18.25,0.069408,0.827904,0.008224,0.006112,0.030752,0.104416,0.1024,16.9877,0.113056
+910,51.9428,19.252,19.4537,0.069632,0.831008,0.008288,0.006272,0.030432,0.098848,0.098336,18.1964,0.114432
+911,48.8736,20.4609,19.4708,0.069344,0.828288,0.008256,0.006144,0.0304,0.097888,0.098848,18.2185,0.113088
+912,48.9531,20.4277,18.2393,0.069632,0.814848,0.008352,0.00624,0.030432,0.098368,0.098432,16.9984,0.114592
+913,51.6963,19.3438,18.228,0.070464,0.812736,0.008384,0.006272,0.03024,0.098272,0.100544,16.9875,0.113568
+914,50.8289,19.6738,19.4867,0.068992,0.879232,0.008192,0.006144,0.03072,0.099872,0.100768,18.1796,0.113216
+915,48.6507,20.5547,18.2743,0.069664,0.851936,0.008224,0.006144,0.030688,0.099968,0.098688,16.9943,0.11472
+916,51.7852,19.3105,19.4785,0.069632,0.852,0.00816,0.00624,0.030656,0.101376,0.09888,18.198,0.113632
+917,48.6738,20.5449,19.4806,0.069632,0.87248,0.009344,0.006304,0.029376,0.098336,0.1024,18.1801,0.11264
+918,48.5907,20.5801,18.262,0.069632,0.86016,0.009984,0.006272,0.0288,0.099936,0.098752,16.9748,0.113696
+919,51.7015,19.3418,18.2229,0.06896,0.81808,0.009216,0.00624,0.029632,0.098272,0.100384,16.9749,0.117152
+920,51.985,19.2363,19.4314,0.069632,0.81456,0.008352,0.006336,0.030336,0.09888,0.0984,18.1898,0.115168
+921,48.6507,20.5547,18.2653,0.070208,0.855424,0.008352,0.006272,0.029376,0.098336,0.098272,16.9859,0.113216
+922,51.4832,19.4238,18.2511,0.069504,0.82528,0.008384,0.006144,0.030528,0.098496,0.099584,16.9992,0.113984
+923,50.7433,19.707,19.6427,0.069312,0.99184,0.008192,0.015456,0.0296,0.098336,0.1,18.217,0.11296
+924,48.5354,20.6035,18.3482,0.068896,0.924,0.008352,0.006304,0.030176,0.099072,0.098336,16.9996,0.113472
+925,51.4108,19.4512,18.2589,0.068576,0.84176,0.00816,0.006144,0.030752,0.097664,0.098368,16.9918,0.115648
+926,51.2769,19.502,19.5396,0.069216,0.89328,0.008288,0.006336,0.03008,0.099008,0.0984,18.219,0.116032
+927,48.6461,20.5566,18.2722,0.068288,0.855552,0.008352,0.00624,0.03024,0.09824,0.098528,16.9922,0.11456
+928,50.668,19.7363,18.3163,0.070656,0.887488,0.008352,0.006272,0.030496,0.098592,0.099328,17.0005,0.11456
+929,51.4159,19.4492,19.4867,0.071008,0.858784,0.008192,0.006144,0.03072,0.098304,0.100256,18.2007,0.11264
+930,49.0703,20.3789,18.2571,0.069632,0.8192,0.008192,0.006144,0.03072,0.100352,0.098304,17.0103,0.114208
+931,51.7799,19.3125,18.2455,0.069632,0.823296,0.009312,0.006272,0.029472,0.10448,0.106368,16.9821,0.114592
+932,51.9217,19.2598,19.4854,0.068448,0.83728,0.00832,0.006176,0.03024,0.09872,0.100128,18.2193,0.116768
+933,48.0435,20.8145,18.3664,0.069632,0.941376,0.008288,0.006144,0.02928,0.106496,0.099424,16.9911,0.114624
+934,52.0696,19.2051,18.218,0.06944,0.81536,0.008256,0.00608,0.03072,0.099392,0.098304,16.9643,0.126176
+935,50.2552,19.8984,19.6499,0.069888,0.97072,0.008192,0.006144,0.03072,0.098304,0.098304,18.2538,0.113856
+936,47.8952,20.8789,18.3112,0.069568,0.909376,0.008192,0.006144,0.03056,0.098624,0.099808,16.9757,0.113248
+937,51.4005,19.4551,18.2847,0.069664,0.845376,0.00832,0.006272,0.030464,0.09872,0.100256,17.0122,0.113408
+938,52.0484,19.2129,19.4469,0.069536,0.821152,0.008384,0.006144,0.030496,0.09856,0.100064,18.1988,0.113824
+939,48.3292,20.6914,18.2942,0.069664,0.872416,0.008,0.006176,0.029952,0.097184,0.099648,16.9962,0.114944
+940,51.9217,19.2598,18.2682,0.069664,0.847168,0.008384,0.006272,0.03008,0.09888,0.098528,16.9924,0.116736
+941,51.9322,19.2559,19.4673,0.069632,0.831264,0.008352,0.006208,0.030272,0.097856,0.097152,18.2108,0.115712
+942,48.7665,20.5059,18.2431,0.070816,0.840544,0.008384,0.007136,0.029536,0.099488,0.098816,16.9739,0.114464
+943,51.5661,19.3926,18.3424,0.06976,0.909696,0.008192,0.006176,0.030688,0.11232,0.098624,16.9924,0.11456
+944,51.6598,19.3574,19.5177,0.068064,0.88064,0.009312,0.006272,0.029472,0.099712,0.098944,18.2108,0.114464
+945,47.7523,20.9414,18.311,0.069056,0.832064,0.008192,0.006144,0.03072,0.098304,0.105792,17.0473,0.113472
+946,52.3892,19.0879,18.2895,0.068448,0.876576,0.00816,0.006144,0.03072,0.098336,0.100352,16.9854,0.115392
+947,52.0219,19.2227,19.4888,0.069664,0.805984,0.008448,0.006272,0.030304,0.097184,0.099904,18.2563,0.114688
+948,45.1858,22.1309,18.4072,0.069472,0.954912,0.008192,0.006144,0.03072,0.099328,0.09872,17.0248,0.11488
+949,55.634,17.9746,18.2354,0.07072,0.805824,0.008192,0.006144,0.030496,0.09856,0.100032,17.0021,0.11328
+950,51.7642,19.3184,19.4658,0.069696,0.820896,0.008288,0.006304,0.030336,0.098784,0.09984,18.2175,0.114144
+951,47.9625,20.8496,18.2702,0.069376,0.841984,0.008192,0.006144,0.03072,0.097632,0.098976,17.0045,0.112672
+952,51.9112,19.2637,18.2047,0.069664,0.814272,0.008288,0.006272,0.029248,0.100064,0.100032,16.9621,0.114688
+953,51.9007,19.2676,19.5004,0.069536,0.843232,0.008352,0.006272,0.030432,0.107136,0.098304,18.2211,0.116096
+954,48.0661,20.8047,18.3604,0.069536,0.946112,0.00832,0.006176,0.030496,0.098528,0.099648,16.9867,0.114816
+955,51.5142,19.4121,18.2477,0.070912,0.840448,0.00944,0.006272,0.030688,0.09808,0.099232,16.9796,0.113056
+956,51.7433,19.3262,19.4806,0.0696,0.864288,0.008192,0.006176,0.030688,0.100352,0.099904,18.1884,0.113024
+957,48.4344,20.6465,18.2462,0.06928,0.846784,0.008192,0.006112,0.03072,0.098336,0.10032,16.9736,0.112896
+958,51.6806,19.3496,18.2787,0.067808,0.855424,0.008544,0.006464,0.030688,0.106112,0.101952,16.9888,0.112896
+959,51.9375,19.2539,19.4497,0.069632,0.823296,0.008192,0.006144,0.030112,0.098304,0.098496,18.203,0.112512
+960,48.8783,20.459,19.4228,0.069664,0.81712,0.008192,0.006144,0.03072,0.098464,0.099168,18.1791,0.11424
+961,48.0255,20.8223,18.3028,0.069632,0.878592,0.00832,0.006144,0.030592,0.098304,0.098304,16.9979,0.115072
+962,50.3491,19.8613,19.561,0.069152,0.893184,0.00832,0.006272,0.030464,0.09904,0.100192,18.2389,0.115488
+963,48.0571,20.8086,18.3088,0.070016,0.884736,0.008192,0.006144,0.030624,0.0984,0.099424,16.9967,0.114592
+964,53.0955,18.834,18.2539,0.0704,0.829408,0.008192,0.006144,0.03072,0.100384,0.10032,16.9943,0.114048
+965,51.4159,19.4492,19.5353,0.069056,0.90528,0.008352,0.006304,0.02912,0.099808,0.098848,18.2047,0.113856
+966,47.9715,20.8457,18.3418,0.07008,0.925024,0.008288,0.006336,0.030336,0.099072,0.099424,16.9891,0.114144
+967,50.9554,19.625,19.3344,0.069632,0.813056,0.008224,0.006112,0.03072,0.105824,0.352896,17.834,0.113888
+968,47.3504,21.1191,19.6412,0.068448,0.990656,0.00832,0.018848,0.03056,0.098464,0.100352,18.2129,0.112736
+969,47.5836,21.0156,18.2804,0.069664,0.881856,0.008384,0.006272,0.029184,0.098272,0.104448,16.969,0.113344
+970,51.2205,19.5234,18.2699,0.069184,0.828224,0.009248,0.006272,0.029536,0.114688,0.099392,16.9965,0.116864
+971,50.8189,19.6777,19.601,0.069632,0.927168,0.008576,0.016128,0.030752,0.112288,0.098208,18.2219,0.11632
+972,47.7523,20.9414,19.6384,0.068,0.973984,0.016736,0.006336,0.030208,0.098944,0.0984,18.2139,0.131936
+973,48.0571,20.8086,18.4303,0.070016,0.985088,0.022528,0.006144,0.03072,0.098304,0.099744,17.0029,0.114848
+974,52.0167,19.2246,19.4782,0.070048,0.857632,0.008416,0.006336,0.030176,0.098912,0.099968,18.1927,0.11408
+975,48.9437,20.4316,18.2497,0.07168,0.823296,0.008288,0.007104,0.029664,0.100096,0.09856,16.9974,0.113632
+976,48.4711,20.6309,19.4573,0.075808,2.04387,0.008192,0.007776,0.030336,0.100512,0.100384,16.9762,0.114208
+977,52.0114,19.2266,19.4764,0.069312,0.856416,0.008192,0.006176,0.030688,0.098304,0.106496,18.1883,0.112544
+978,48.5769,20.5859,19.4373,0.069632,0.82944,0.008192,0.006144,0.030624,0.099584,0.099168,18.1817,0.112864
+979,49.0234,20.3984,18.2765,0.069344,0.858688,0.008416,0.006144,0.030656,0.104512,0.10032,16.9841,0.114336
+980,51.2461,19.5137,19.5463,0.06848,0.929184,0.00832,0.006368,0.03056,0.098688,0.098304,18.1937,0.112736
+981,49.0046,20.4062,18.2457,0.069696,0.825728,0.008448,0.006176,0.030656,0.098208,0.100256,16.9904,0.116128
+982,51.478,19.4258,18.2859,0.069632,0.866304,0.008192,0.006176,0.030592,0.0984,0.099968,16.9865,0.120128
+983,51.2821,19.5,19.6052,0.06976,0.954784,0.008192,0.016416,0.038944,0.100288,0.098304,18.1936,0.124832
+984,48.827,20.4805,19.4607,0.07024,0.84544,0.008256,0.006464,0.030368,0.099936,0.099072,18.1876,0.11328
+985,48.517,20.6113,18.2497,0.0696,0.870432,0.008192,0.006176,0.030688,0.098336,0.10016,16.9531,0.113088
+986,51.4935,19.4199,19.542,0.069632,0.96192,0.00832,0.006368,0.030496,0.098816,0.098304,18.1551,0.113088
+987,49.0656,20.3809,18.2303,0.069632,0.813024,0.008224,0.006144,0.03072,0.104448,0.098304,16.9856,0.11424
+988,51.6129,19.375,18.3508,0.068288,0.908288,0.008448,0.006272,0.030368,0.10528,0.098464,17.0083,0.117152
+989,51.7276,19.332,19.4744,0.069472,0.858272,0.009344,0.006912,0.030048,0.097088,0.098432,18.1899,0.114976
+990,48.2018,20.7461,18.2561,0.067776,0.851552,0.008384,0.00624,0.030016,0.09904,0.0984,16.9759,0.118784
+991,50.2503,19.9004,18.2846,0.071168,0.888352,0.00832,0.006272,0.029408,0.100352,0.098304,16.9692,0.113248
+992,52.838,18.9258,19.4467,0.072544,0.827424,0.00816,0.006144,0.03072,0.100384,0.10032,18.1883,0.112672
+993,48.7248,20.5234,18.2272,0.069664,0.833056,0.008288,0.00624,0.030112,0.097184,0.099776,16.9693,0.1136
+994,51.665,19.3555,18.3151,0.069216,0.885248,0.008192,0.006176,0.030624,0.098368,0.100352,17.0025,0.114432
+995,51.9533,19.248,19.4939,0.069824,0.87328,0.00928,0.00624,0.029536,0.098304,0.0984,18.1943,0.114688
+996,48.6322,20.5625,18.2456,0.069632,0.834656,0.008288,0.006208,0.03072,0.098912,0.098464,16.9841,0.114688
+997,51.0825,19.5762,19.4403,0.069984,0.821504,0.008288,0.006144,0.030336,0.09808,0.098912,18.1937,0.113344
+998,49.3209,20.2754,18.2601,0.070208,0.827392,0.008192,0.006144,0.03072,0.098336,0.099872,17.005,0.114272
+999,51.108,19.5664,18.3839,0.068896,0.944896,0.008384,0.007008,0.029664,0.099904,0.099872,17.0116,0.113664
+1000,51.3077,19.4902,19.5836,0.068192,0.91136,0.008192,0.006144,0.03072,0.105984,0.100256,18.2396,0.11312
+1001,46.7965,21.3691,18.219,0.06976,0.82112,0.00992,0.006272,0.030368,0.0968,0.100352,16.9712,0.11328
+1002,53.068,18.8438,18.3501,0.069632,0.917504,0.008448,0.007008,0.0296,0.098496,0.099552,17.0031,0.116768
+1003,51.8166,19.2988,19.4595,0.069632,0.860192,0.008352,0.007008,0.029664,0.098496,0.10016,18.1699,0.116128
+1004,47.6235,20.998,18.3834,0.06848,0.93776,0.0184,0.006176,0.043008,0.098304,0.098304,16.9901,0.122784
+1005,51.0062,19.6055,18.2743,0.069632,0.854016,0.008192,0.006176,0.030688,0.097728,0.096832,16.9983,0.112736
+1006,51.2307,19.5195,19.5911,0.0696,0.931872,0.008192,0.014336,0.03072,0.114688,0.100352,18.2083,0.113024
+1007,49.141,20.3496,18.2352,0.070752,0.83856,0.008192,0.006144,0.03072,0.1,0.099904,16.9676,0.113248
+1008,48.0887,20.7949,18.43,0.069472,0.991424,0.008256,0.016288,0.030336,0.10432,0.10496,16.9919,0.112992
+1009,54.8239,18.2402,19.5261,0.068576,0.824352,0.00832,0.006304,0.029472,0.098208,0.114688,18.2635,0.112736
+1010,48.2746,20.7148,18.2363,0.068544,0.810976,0.008192,0.006176,0.030688,0.098304,0.10016,16.9977,0.115616
+1011,52.3946,19.0859,18.2375,0.069632,0.812992,0.008256,0.006144,0.030752,0.111712,0.0992,16.9779,0.120864
+1012,51.2821,19.5,19.4993,0.071232,0.85184,0.008256,0.006336,0.030368,0.0992,0.100096,18.2193,0.112672
+1013,48.22,20.7383,18.3928,0.06992,0.962176,0.017088,0.007232,0.039744,0.098368,0.1,16.9842,0.114048
+1014,51.5973,19.3809,18.2869,0.06816,0.882336,0.008352,0.006208,0.030432,0.108864,0.099616,16.9685,0.1144
+1015,50.0782,19.9688,19.4396,0.069664,0.841696,0.018432,0.007616,0.029312,0.098336,0.100128,18.1615,0.112896
+1016,49.0845,20.373,18.2299,0.068256,0.820448,0.008352,0.006272,0.030432,0.09904,0.098368,16.9841,0.114688
+1017,51.9691,19.2422,18.2175,0.069856,0.8072,0.008352,0.00704,0.029664,0.098304,0.100352,16.9819,0.114784
+1018,51.5194,19.4102,19.5353,0.07152,0.923808,0.008192,0.006144,0.03072,0.099616,0.098944,18.1822,0.114144
+1019,47.2194,21.1777,18.244,0.070176,0.866304,0.008224,0.006112,0.030624,0.098432,0.09936,16.9502,0.11456
+1020,51.2154,19.5254,18.3213,0.068384,0.890848,0.009312,0.006272,0.029472,0.100352,0.100352,17.0025,0.113792
+1021,53.057,18.8477,19.4703,0.06928,0.82288,0.008384,0.006272,0.02912,0.110016,0.098912,18.212,0.11344
+1022,48.384,20.668,18.2619,0.0696,0.862592,0.00832,0.007072,0.029664,0.100352,0.098336,16.9717,0.114208
+1023,51.5454,19.4004,18.2384,0.069856,0.830176,0.008192,0.006144,0.03072,0.098304,0.099968,16.9783,0.116736
+1024,51.6598,19.3574,19.4565,0.068064,0.833536,0.00832,0.00704,0.029696,0.099936,0.09872,18.1978,0.113472
+1025,48.7248,20.5234,18.258,0.069184,0.852,0.00816,0.00624,0.029088,0.098304,0.099712,16.9819,0.11344
+1026,51.3283,19.4824,18.4566,0.08192,1.03632,0.009344,0.006336,0.030432,0.0992,0.099712,16.9801,0.113184
+1027,51.1898,19.5352,19.4804,0.06992,0.8872,0.008192,0.006144,0.03184,0.09904,0.09952,18.1659,0.11264
+1028,46.7537,21.3887,18.348,0.077024,0.934528,0.008288,0.006208,0.030464,0.09968,0.0992,16.98,0.11264
+1029,52.9911,18.8711,18.3515,0.069664,0.947776,0.008352,0.006272,0.030464,0.098144,0.098304,16.9785,0.11408
+1030,52.1863,19.1621,19.4378,0.06944,0.809984,0.008192,0.022528,0.030592,0.10048,0.098304,18.1842,0.114048
+1031,48.6553,20.5527,18.2603,0.069568,0.84992,0.00832,0.00624,0.030336,0.098464,0.099008,16.9817,0.116736
+1032,51.8954,19.2695,18.2128,0.069696,0.818784,0.008352,0.006304,0.03024,0.098432,0.100512,16.966,0.11456
+1033,51.6233,19.3711,19.5442,0.069856,0.89088,0.008352,0.007008,0.029696,0.099904,0.100384,18.2246,0.113472
+1034,47.215,21.1797,18.3194,0.069632,0.91136,0.008192,0.006144,0.03072,0.10016,0.098496,16.982,0.112672
+1035,53.4057,18.7246,18.2865,0.069632,0.871968,0.00832,0.006304,0.030752,0.104608,0.098304,16.982,0.11456
+1036,50.6981,19.7246,19.5359,0.06912,0.920064,0.009344,0.006304,0.029408,0.100352,0.098304,18.1901,0.112832
+1037,47.6146,21.002,18.3276,0.069632,0.915456,0.008192,0.006176,0.030688,0.097856,0.09872,16.982,0.118784
+1038,50.7132,19.7188,18.3153,0.06912,0.903424,0.008288,0.00624,0.030368,0.09872,0.098304,16.9852,0.115616
+1039,51.7433,19.3262,19.542,0.071552,0.843904,0.008224,0.006112,0.030656,0.097952,0.098496,18.2684,0.116672
+1040,48.2064,20.7441,18.2074,0.070304,0.800768,0.009312,0.00624,0.029536,0.100064,0.09856,16.98,0.11264
+1041,49.5069,20.1992,18.3868,0.075584,0.952256,0.008352,0.00624,0.030528,0.110816,0.09872,16.9897,0.114656
+1042,50.1518,19.9395,19.5584,0.069344,0.95056,0.008192,0.006144,0.03072,0.099808,0.09888,18.1818,0.112928
+1043,48.9531,20.4277,18.262,0.0696,0.841792,0.00832,0.007008,0.029696,0.100096,0.100608,16.9923,0.112672
+1044,51.8744,19.2773,18.2592,0.068864,0.850688,0.008192,0.007296,0.029568,0.099936,0.100768,16.98,0.11392
+1045,52.2769,19.1289,19.4393,0.069632,0.819264,0.008288,0.006272,0.030272,0.097024,0.100384,18.1944,0.11376
+1046,48.3064,20.7012,18.2847,0.088288,0.85248,0.008192,0.006144,0.03072,0.10352,0.105408,16.9738,0.116192
+1047,52.059,19.209,18.2252,0.069696,0.817152,0.008288,0.006048,0.03072,0.098336,0.100128,16.9817,0.113152
+1048,51.9481,19.25,19.4499,0.069472,0.851936,0.008448,0.006176,0.030688,0.098432,0.100224,18.1714,0.11312
+1049,48.9297,20.4375,18.2006,0.069632,0.806336,0.008416,0.00624,0.030208,0.09888,0.100192,16.9661,0.114592
+1050,51.6598,19.3574,18.381,0.067776,0.943136,0.008352,0.006336,0.030432,0.120768,0.103392,16.9861,0.114688
+1051,51.4108,19.4512,19.49,0.069664,0.87408,0.008224,0.006272,0.030464,0.097824,0.099264,18.1903,0.113856
+1052,43.7719,22.8457,18.5528,0.068384,1.13245,0.009312,0.006464,0.02928,0.099648,0.100832,16.9899,0.116576
+1053,56.3318,17.752,18.2409,0.069632,0.833088,0.008352,0.006304,0.030112,0.098816,0.100064,16.9805,0.114048
+1054,51.665,19.3555,19.6029,0.071328,0.962816,0.008256,0.006176,0.030464,0.098432,0.100064,18.2112,0.114112
+1055,46.9423,21.3027,18.4686,0.070688,1.05888,0.00848,0.016096,0.032736,0.099264,0.098304,16.9697,0.114432
+1056,50.834,19.6719,18.3854,0.068096,0.966656,0.008192,0.00624,0.030624,0.099904,0.098784,16.9922,0.114688
+1057,51.108,19.5664,19.6444,0.069216,0.975264,0.01792,0.006272,0.030432,0.09872,0.102656,18.2313,0.11264
+1058,48.3886,20.666,18.2166,0.07168,0.833536,0.008416,0.0072,0.02944,0.09936,0.099168,16.9535,0.114304
+1059,51.9059,19.2656,18.2355,0.06928,0.832192,0.00816,0.006176,0.030688,0.112384,0.09856,16.9636,0.114432
+1060,51.1437,19.5527,19.5195,0.069632,0.910368,0.008288,0.006304,0.029408,0.099712,0.098944,18.1822,0.114656
+1061,48.7898,20.4961,18.2469,0.069632,0.817184,0.00816,0.006176,0.030688,0.100384,0.114528,16.9861,0.11408
+1062,50.4931,19.8047,18.2408,0.071424,0.852256,0.00928,0.006272,0.029472,0.099744,0.098496,16.9599,0.113984
+1063,51.8481,19.2871,19.456,0.069632,0.845344,0.00832,0.006304,0.03024,0.100384,0.098944,18.1854,0.111456
+1064,48.3703,20.6738,18.3152,0.069344,0.915968,0.008192,0.006336,0.034624,0.100352,0.100384,16.9667,0.113376
+1065,51.7695,19.3164,18.2126,0.07376,0.80816,0.008416,0.00624,0.030144,0.098464,0.106496,16.9665,0.114432
+1066,51.4211,19.4473,19.6185,0.074464,0.966624,0.008192,0.006176,0.030688,0.099648,0.098912,18.2207,0.11312
+1067,48.911,20.4453,18.2287,0.069728,0.82912,0.00832,0.006304,0.030304,0.098368,0.098784,16.9716,0.116192
+1068,51.7695,19.3164,18.2866,0.069632,0.868256,0.008288,0.006144,0.03024,0.098624,0.100128,16.9916,0.113632
+1069,51.4418,19.4395,19.4703,0.069632,0.871584,0.008384,0.006272,0.03024,0.098592,0.099008,18.1733,0.113344
+1070,48.7758,20.502,18.2144,0.06992,0.823296,0.008192,0.006144,0.030688,0.100384,0.09952,16.9624,0.113888
+1071,51.8691,19.2793,18.2395,0.069664,0.839648,0.009248,0.006272,0.03056,0.098432,0.0992,16.9737,0.112768
+1072,52.0378,19.2168,19.4232,0.069664,0.819168,0.009248,0.006272,0.029536,0.100352,0.100128,18.176,0.112832
+1073,48.003,20.832,19.4891,0.068416,0.884704,0.008352,0.00704,0.029664,0.097632,0.09856,18.1805,0.114176
+1074,48.8456,20.4727,18.2024,0.0696,0.813248,0.009248,0.006272,0.029536,0.098336,0.098464,16.9613,0.116384
+1075,51.6441,19.3633,19.431,0.069664,0.825024,0.008352,0.00624,0.035104,0.097728,0.098336,18.1765,0.114048
+1076,48.3292,20.6914,18.2677,0.069632,0.862208,0.008192,0.006144,0.03072,0.09984,0.098592,16.9781,0.114336
+1077,48.8037,20.4902,18.3185,0.069632,0.894976,0.008192,0.006176,0.030688,0.097952,0.100288,16.9859,0.124736
+1078,51.7328,19.3301,19.4494,0.06992,0.849536,0.008352,0.006272,0.030336,0.100512,0.099936,18.1707,0.113888
+1079,48.4757,20.6289,18.2517,0.069664,0.85152,0.008352,0.006272,0.030176,0.099008,0.10032,16.9734,0.113024
+1080,52.1916,19.1602,19.4194,0.069184,0.826016,0.008192,0.007616,0.03104,0.09856,0.099584,18.1661,0.113024
+1081,48.7619,20.5078,19.4096,0.069472,0.81312,0.008256,0.006272,0.030368,0.104672,0.099104,18.1658,0.112608
+1082,48.1203,20.7812,18.2715,0.069216,0.877984,0.008352,0.006336,0.029344,0.100352,0.106496,16.9595,0.11392
+1083,51.0214,19.5996,18.3517,0.069632,0.929248,0.008352,0.00624,0.029472,0.099392,0.099072,16.9936,0.116704
+1084,51.6233,19.3711,19.5074,0.069632,0.908544,0.008288,0.006304,0.030656,0.100448,0.098784,18.171,0.113664
+1085,48.841,20.4746,18.2194,0.068,0.835104,0.008384,0.006208,0.030624,0.096608,0.09952,16.9613,0.113664
+1086,50.996,19.6094,18.3235,0.071232,0.915904,0.008192,0.006144,0.03072,0.09984,0.098752,16.9793,0.113344
+1087,52.0272,19.2207,20.2809,0.070016,0.872448,0.008256,0.00608,0.03072,0.099648,0.100064,18.9798,0.113888
+1088,46.2094,21.6406,18.2824,0.068224,0.8888,0.008192,0.00752,0.029376,0.10032,0.099712,16.9663,0.114016
+1089,49.8151,20.0742,18.4341,0.069632,1.02608,0.020416,0.006176,0.038912,0.098304,0.098272,16.9635,0.1128
+1090,52.6586,18.9902,19.472,0.068896,0.836224,0.00832,0.006176,0.03056,0.098368,0.100096,18.2102,0.113088
+1091,48.813,20.4863,18.2131,0.06912,0.81504,0.00832,0.006272,0.031264,0.098304,0.099328,16.9701,0.115296
+1092,51.3901,19.459,18.8125,0.069152,0.977664,0.008256,0.006144,0.030496,0.110816,0.098464,17.3956,0.116
+1093,48.9624,20.4238,19.8292,0.085792,1.19872,0.008192,0.006176,0.030688,0.097824,0.098752,18.1879,0.115168
+1094,47.7969,20.9219,18.3891,0.068928,1.02416,0.00832,0.00624,0.030464,0.098976,0.099456,16.9379,0.114688
+1095,52.1385,19.1797,18.2539,0.069664,0.8192,0.008192,0.006144,0.03072,0.098304,0.1,17.0083,0.113376
+1096,51.6233,19.3711,19.4775,0.077344,0.858592,0.008288,0.006208,0.03056,0.100352,0.100384,18.1817,0.114112
+1097,48.7898,20.4961,18.2006,0.069632,0.821248,0.008224,0.006112,0.03072,0.098048,0.09856,16.9553,0.112768
+1098,52.0961,19.1953,19.4417,0.069632,0.823296,0.008192,0.006144,0.030752,0.099552,0.098336,18.1931,0.11264
+1099,49.0281,20.3965,19.4162,0.069632,0.821248,0.008224,0.006144,0.030688,0.098144,0.100064,18.17,0.112096
+1100,48.911,20.4453,18.2038,0.069536,0.820736,0.008352,0.006592,0.03072,0.099744,0.098208,16.954,0.115904
+1101,51.4056,19.4531,18.2868,0.068352,0.878496,0.008288,0.006144,0.030304,0.09872,0.099712,16.9825,0.114272
+1102,51.9639,19.2441,19.4627,0.070304,0.824608,0.00832,0.006304,0.030272,0.099296,0.100192,18.21,0.113408
+1103,48.1701,20.7598,18.362,0.071648,0.929824,0.009344,0.006272,0.030624,0.098848,0.09968,17.0014,0.114368
+1104,51.9639,19.2441,18.2745,0.068992,0.841824,0.008288,0.00672,0.03072,0.100352,0.099392,17.0049,0.11328
+1105,51.5298,19.4062,20.6572,0.069664,0.870336,0.008224,0.006144,0.030496,0.09856,0.099328,19.362,0.112448
+1106,45.9605,21.7578,18.2322,0.069536,0.854912,0.008224,0.006112,0.03072,0.099712,0.098752,16.951,0.113248
+1107,51.9903,19.2344,18.2382,0.069536,0.827712,0.008352,0.006528,0.03072,0.098208,0.099552,16.9821,0.115456
+1108,51.5765,19.3887,19.4846,0.069632,0.85536,0.008416,0.006304,0.03104,0.099712,0.098944,18.1997,0.115456
+1109,48.3566,20.6797,18.3172,0.069632,0.925728,0.00816,0.006144,0.030752,0.098272,0.099392,16.966,0.11312
+1110,51.6181,19.373,19.5506,0.070048,0.910848,0.00832,0.006304,0.030304,0.098944,0.098112,18.2025,0.125216
+1111,46.7794,21.377,19.5061,0.070464,0.902688,0.008832,0.006176,0.030688,0.098304,0.09968,18.1763,0.113024
+1112,50.4533,19.8203,18.2634,0.069472,0.826816,0.008352,0.006272,0.0304,0.100416,0.099168,17.0085,0.113984
+1113,51.8639,19.2812,18.2353,0.069632,0.839392,0.008384,0.006208,0.030048,0.09696,0.100352,16.9697,0.114592
+1114,50.9909,19.6113,19.5981,0.068352,0.95344,0.008384,0.00688,0.030304,0.09872,0.100192,18.2192,0.11264
+1115,47.6501,20.9863,18.3464,0.069696,0.927552,0.008224,0.00624,0.029344,0.098304,0.098304,16.9936,0.115168
+1116,52.6966,18.9766,18.6396,0.068256,0.854016,0.0096,0.006304,0.0304,0.099104,0.098304,17.3579,0.115744
+1117,50.4284,19.8301,19.4417,0.069632,0.835584,0.009248,0.00624,0.029568,0.098304,0.098304,18.1801,0.114688
+1118,48.039,20.8164,18.2993,0.070304,0.90048,0.008352,0.006496,0.030464,0.098848,0.098272,16.9715,0.114624
+1119,51.4211,19.4473,18.2701,0.069696,0.844544,0.00832,0.006144,0.030368,0.098656,0.100352,16.9984,0.113664
+1120,51.3077,19.4902,19.6177,0.069664,0.982272,0.008256,0.006272,0.030272,0.099008,0.098624,18.2103,0.113056
+1121,48.5953,20.5781,18.2702,0.0696,0.864288,0.008192,0.006144,0.03072,0.098304,0.100352,16.98,0.11264
+1122,51.8428,19.2891,19.4478,0.069632,0.825344,0.008192,0.006176,0.030656,0.098304,0.098272,18.1984,0.1128
+1123,48.8224,20.4824,19.4499,0.069632,0.861568,0.00832,0.006656,0.030368,0.097952,0.098944,18.1638,0.11264
+1124,48.9671,20.4219,18.2358,0.069216,0.81536,0.00832,0.006272,0.030336,0.098976,0.098304,16.9936,0.115392
+1125,51.9639,19.2441,18.1985,0.068896,0.809632,0.008256,0.006144,0.032704,0.09808,0.098592,16.9636,0.11264
+1126,51.5765,19.3887,19.5465,0.069856,0.91104,0.008384,0.006336,0.03072,0.106624,0.106464,18.1938,0.113312
+1127,48.4619,20.6348,18.2088,0.069632,0.8192,0.008192,0.006144,0.03056,0.098496,0.10032,16.9636,0.11264
+1128,52.0061,19.2285,19.3987,0.069632,0.80896,0.008192,0.006176,0.03072,0.100256,0.099456,18.1625,0.112768
+1129,46.4568,21.5254,19.4796,0.069664,0.878592,0.008256,0.006144,0.030624,0.104448,0.104448,18.1637,0.113696
+1130,50.7987,19.6855,18.2495,0.069184,0.86672,0.008224,0.006144,0.030592,0.098464,0.100096,16.9556,0.114496
+1131,51.9691,19.2422,18.3153,0.069664,0.919264,0.00832,0.006304,0.030368,0.097792,0.098592,16.9703,0.114688
+1132,50.7483,19.7051,19.4799,0.069632,0.890144,0.008352,0.006272,0.030368,0.098656,0.10016,18.1603,0.116096
+1133,48.7016,20.5332,18.3378,0.07376,0.944032,0.007776,0.006272,0.030176,0.098624,0.098336,16.96,0.118784
+1134,51.8639,19.2812,18.2492,0.06976,0.830976,0.008288,0.006272,0.030464,0.100864,0.099616,16.9889,0.114048
+1135,51.4159,19.4492,20.482,0.069568,1.09165,0.008192,0.006144,0.03072,0.097888,0.09872,18.9666,0.112608
+1136,45.9688,21.7539,18.3337,0.069568,0.929856,0.008224,0.006112,0.030624,0.099808,0.098944,16.9774,0.11312
+1137,48.8596,20.4668,18.3644,0.069664,0.964576,0.008192,0.006144,0.03072,0.098304,0.1,16.9721,0.114624
+1138,54.3755,18.3906,19.4799,0.06976,0.829184,0.00832,0.006272,0.030272,0.098784,0.100064,18.2234,0.113856
+1139,47.8863,20.8828,18.3206,0.069632,0.897024,0.008224,0.006144,0.030688,0.098304,0.100352,16.9942,0.116096
+1140,51.8166,19.2988,19.5608,0.068608,0.940032,0.00832,0.007072,0.029664,0.099776,0.098784,18.1938,0.114752
+1141,48.8317,20.4785,19.4709,0.069952,0.821728,0.00832,0.00704,0.029696,0.098304,0.09984,18.2195,0.116512
+1142,47.7523,20.9414,18.3332,0.069408,0.933824,0.008288,0.006272,0.030496,0.098624,0.100128,16.9712,0.114912
+1143,51.3489,19.4746,18.3235,0.069632,0.917504,0.008192,0.006144,0.03072,0.098304,0.100352,16.9795,0.11312
+1144,51.7067,19.3398,19.454,0.069632,0.83968,0.008224,0.006112,0.030624,0.099808,0.098944,18.188,0.112896
+1145,47.7345,20.9492,18.2968,0.075776,0.89088,0.00832,0.00704,0.029696,0.099424,0.099232,16.9736,0.112896
+1146,51.8061,19.3027,19.4847,0.068896,0.85072,0.008416,0.007104,0.029536,0.099392,0.099296,18.2086,0.112768
+1147,45.5922,21.9336,19.5485,0.06944,0.976512,0.007072,0.006144,0.03024,0.098048,0.098432,18.1497,0.112896
+1148,51.6441,19.3633,18.2482,0.068128,0.835584,0.008352,0.007072,0.031328,0.098592,0.098368,16.9861,0.114688
+1149,52.0643,19.207,18.2147,0.069664,0.798688,0.009344,0.006272,0.02944,0.0984,0.09984,16.9878,0.115264
+1150,50.7634,19.6992,19.4348,0.069632,0.821248,0.008192,0.006144,0.030368,0.09856,0.097984,18.1867,0.115968
+1151,48.6045,20.5742,18.197,0.069888,0.823584,0.00816,0.006144,0.03072,0.098304,0.099616,16.9475,0.113088
+1152,51.0418,19.5918,19.6382,0.069824,1.0192,0.008384,0.006496,0.030336,0.100576,0.098944,18.1916,0.112832
+1153,47.5615,21.0254,19.6157,0.069664,0.987104,0.008192,0.006176,0.030688,0.099584,0.099168,18.2038,0.111392
+1154,47.7434,20.9453,18.2301,0.070464,0.841728,0.008192,0.006144,0.03024,0.100128,0.099008,16.9595,0.114688
+1155,50.1715,19.9316,18.35,0.070912,0.940736,0.008224,0.006112,0.03072,0.100352,0.100288,16.98,0.11264
+1156,50.3145,19.875,19.5891,0.069632,0.968704,0.008192,0.006144,0.030688,0.098336,0.099328,18.1955,0.11264
+1157,47.7122,20.959,18.3355,0.069088,0.930368,0.00816,0.006144,0.030592,0.098432,0.099744,16.9724,0.120576
+1158,50.0636,19.9746,18.4279,0.069632,1.03629,0.008224,0.006112,0.030432,0.098624,0.104416,16.961,0.113184
+1159,51.2975,19.4941,20.7094,0.069632,0.847872,0.008192,0.006144,0.030592,0.098368,0.100192,19.4357,0.112672
+1160,45.1221,22.1621,18.3017,0.069568,0.8936,0.008288,0.00624,0.030368,0.1048,0.10032,16.9739,0.114688
+1161,50.9605,19.623,18.2272,0.069632,0.853856,0.008352,0.006144,0.030304,0.096672,0.099552,16.9457,0.116992
+1162,51.3026,19.4922,19.5636,0.069248,0.915104,0.008448,0.006304,0.030368,0.09856,0.09872,18.2211,0.115744
+1163,48.1656,20.7617,18.3557,0.069408,0.957696,0.008224,0.00624,0.038976,0.098112,0.113632,16.9491,0.114368
+1164,49.2782,20.293,19.6225,0.069952,0.968416,0.017024,0.006112,0.03072,0.099808,0.098752,18.2171,0.114688
+1165,48.2155,20.7402,19.6093,0.069664,0.976096,0.008416,0.006304,0.030272,0.11344,0.098336,18.1935,0.113312
+1166,48.6831,20.541,18.3705,0.07024,0.9696,0.00832,0.006272,0.02944,0.10016,0.098496,16.9739,0.11408
+1167,49.2971,20.2852,18.4667,0.069696,1.03827,0.008192,0.006176,0.030688,0.11616,0.098912,16.9855,0.113024
+1168,51.7172,19.3359,19.6383,0.075776,0.95744,0.008512,0.006272,0.030368,0.099232,0.100352,18.247,0.11328
+1169,48.0751,20.8008,19.5767,0.07648,0.958688,0.00816,0.006176,0.030688,0.100256,0.114528,18.1681,0.113696
+1170,47.0372,21.2598,18.4305,0.072224,1.03414,0.008288,0.006144,0.0304,0.099872,0.099104,16.9669,0.113472
+1171,52.1863,19.1621,19.4683,0.069504,0.804544,0.00832,0.006304,0.03024,0.105088,0.104448,18.2271,0.112768
+1172,48.4115,20.6562,18.3296,0.069632,0.886784,0.008224,0.006144,0.030688,0.099616,0.103168,17.0125,0.1128
+1173,48.5216,20.6094,18.2917,0.068544,0.870048,0.008384,0.006272,0.03024,0.098656,0.099904,16.9785,0.131136
+1174,54.8885,18.2188,19.4222,0.068608,0.796704,0.00816,0.006144,0.03072,0.099424,0.099264,18.1982,0.114976
+1175,48.5492,20.5977,19.558,0.069504,0.913984,0.018208,0.006272,0.03024,0.098368,0.096864,18.2087,0.11584
+1176,47.9625,20.8496,18.3578,0.069632,0.943296,0.008224,0.014848,0.03008,0.099104,0.098432,16.9677,0.126464
+1177,47.4998,21.0527,19.7967,0.070368,1.18502,0.008352,0.014944,0.03072,0.098304,0.103488,18.1728,0.112736
+1178,52.0908,19.1973,18.2127,0.069888,0.800512,0.008256,0.006304,0.03056,0.114112,0.099072,16.9697,0.114272
+1179,51.6233,19.3711,18.3396,0.069408,0.903072,0.008256,0.006208,0.029408,0.098336,0.10032,17.0107,0.113856
+1180,51.8639,19.2812,19.4173,0.069088,0.811776,0.008288,0.00624,0.030528,0.10016,0.098496,18.1799,0.112864
+1181,48.66,20.5508,19.2707,0.069632,0.812192,0.00832,0.006304,0.030592,0.100672,0.0984,18.0302,0.114368
+1182,49.014,20.4023,18.2254,0.069184,0.852736,0.008192,0.006272,0.03056,0.098432,0.100224,16.9453,0.114496
+1183,51.5661,19.3926,19.569,0.069568,0.962496,0.008288,0.006272,0.02912,0.098496,0.10016,18.1796,0.11504
+1184,48.3429,20.6855,18.2746,0.069696,0.862528,0.008352,0.006272,0.030336,0.107008,0.099904,16.9763,0.114208
+1185,50.3392,19.8652,18.3077,0.070272,0.927744,0.008192,0.006144,0.03072,0.099776,0.09872,16.9535,0.11264
+1186,52.4322,19.0723,19.6589,0.075872,0.99856,0.008288,0.006272,0.043648,0.100192,0.100512,18.2129,0.112672
+1187,47.6811,20.9727,19.5584,0.071008,0.94608,0.00848,0.00624,0.030816,0.102304,0.098688,18.1822,0.112608
+1188,49.4686,20.2148,18.1907,0.068992,0.79968,0.008224,0.006112,0.030752,0.098336,0.099744,16.9641,0.114688
+1189,51.2666,19.5059,19.5281,0.0696,0.92352,0.008288,0.00624,0.03728,0.098304,0.098336,18.1739,0.11264
+1190,47.0891,21.2363,18.262,0.069632,0.878592,0.008224,0.006112,0.0304,0.098624,0.099744,16.956,0.11472
+1191,51.3541,19.4727,18.3452,0.069472,0.896384,0.008352,0.014976,0.03072,0.097952,0.108896,17.0025,0.115936
+1192,52.2502,19.1387,19.4417,0.068896,0.797472,0.008256,0.006208,0.030592,0.09936,0.099296,18.2149,0.116736
+1193,47.9491,20.8555,19.4867,0.07072,0.91232,0.00992,0.006272,0.030272,0.098048,0.101248,18.1422,0.115616
+1194,47.6323,20.9941,18.3071,0.069632,0.889664,0.008224,0.006144,0.030688,0.099712,0.098784,16.9818,0.122464
+1195,50.9808,19.6152,19.5359,0.069632,0.90112,0.008192,0.006144,0.030496,0.098208,0.100384,18.207,0.114688
+1196,47.846,20.9004,18.3212,0.069632,0.90656,0.016736,0.006304,0.030304,0.099104,0.10016,16.9779,0.114528
+1197,51.4108,19.4512,18.3603,0.069664,0.956384,0.008192,0.006144,0.030464,0.100608,0.100352,16.9756,0.112896
+1198,48.494,20.6211,19.584,0.068608,0.966656,0.022496,0.006144,0.03072,0.099456,0.0992,18.1777,0.11296
+1199,51.385,19.4609,19.4364,0.06848,0.801888,0.008352,0.00624,0.029344,0.09936,0.099296,18.212,0.111424
+1200,49.0798,20.375,18.2233,0.06912,0.799296,0.008288,0.006176,0.03072,0.098336,0.099456,16.9972,0.114688
+1201,51.0011,19.6074,19.5299,0.069536,0.936224,0.008192,0.006144,0.030208,0.10464,0.098624,18.1576,0.118784
+1202,48.1113,20.7852,18.2415,0.069632,0.837664,0.009312,0.00624,0.029536,0.100096,0.098496,16.9739,0.11664
+1203,52.3571,19.0996,18.1845,0.069984,0.790528,0.008192,0.006176,0.030688,0.097792,0.09824,16.9696,0.113344
+1204,50.7685,19.6973,19.5133,0.069472,0.92176,0.008192,0.006144,0.03072,0.100352,0.100096,18.1638,0.1128
+1205,47.3899,21.1016,18.4115,0.069792,1.03613,0.008192,0.006144,0.030656,0.099456,0.099264,16.9487,0.113216
+1206,52.2822,19.127,18.2174,0.069248,0.803648,0.00816,0.006176,0.030688,0.10016,0.099712,16.9849,0.11472
+1207,50.1273,19.9492,19.6173,0.0696,0.97024,0.018368,0.006272,0.030208,0.097248,0.098304,18.2149,0.112192
+1208,47.8371,20.9043,18.3707,0.069632,0.954368,0.008192,0.006144,0.03056,0.098464,0.099968,16.99,0.113312
+1209,50.3442,19.8633,18.2787,0.069248,0.882432,0.00832,0.006272,0.039232,0.098624,0.098304,16.9613,0.114944
+1210,51.5246,19.4082,19.5833,0.067904,0.904224,0.017376,0.007168,0.029696,0.099552,0.09904,18.243,0.115328
+1211,47.8147,20.9141,18.3242,0.069344,0.920544,0.017824,0.006336,0.03024,0.097152,0.099744,16.9683,0.114688
+1212,49.2924,20.2871,18.4356,0.070944,1.04317,0.008192,0.006144,0.03072,0.106496,0.103712,16.952,0.114208
+1213,52.2556,19.1367,19.5321,0.070368,0.90704,0.00832,0.00624,0.036256,0.099936,0.099392,18.1903,0.11424
+1214,48.7944,20.4941,18.2427,0.069376,0.81472,0.008832,0.006144,0.034816,0.099456,0.115072,16.9804,0.113888
+1215,50.9199,19.6387,18.3439,0.083968,0.920672,0.008448,0.00624,0.030432,0.0984,0.099072,16.982,0.114688
+1216,51.3798,19.4629,20.658,0.0696,0.825728,0.008192,0.006144,0.03072,0.098336,0.099552,19.4056,0.114112
+1217,45.9399,21.7676,18.2952,0.069632,0.876928,0.008224,0.006112,0.03072,0.110624,0.099968,16.9796,0.113408
+1218,51.1642,19.5449,18.3788,0.069088,0.961056,0.008224,0.006208,0.038848,0.098272,0.1024,16.9796,0.115072
+1219,48.2609,20.7207,19.5253,0.069568,0.944352,0.008192,0.006144,0.0304,0.098592,0.098304,18.1546,0.1152
+1220,51.5402,19.4023,18.2186,0.069216,0.827776,0.008224,0.006144,0.03072,0.09936,0.098688,16.9642,0.114272
+1221,50.6279,19.752,19.5613,0.070496,0.931104,0.008256,0.006304,0.029376,0.099616,0.098336,18.2046,0.113248
+1222,47.3417,21.123,19.5973,0.070432,0.981024,0.008192,0.016384,0.03072,0.099424,0.09904,18.1782,0.113888
+1223,49.5356,20.1875,18.2227,0.070752,0.820128,0.008224,0.006112,0.03024,0.098016,0.100704,16.9742,0.11424
+1224,50.6279,19.752,18.3292,0.069632,0.914688,0.008288,0.006304,0.03024,0.100384,0.10112,16.9843,0.11424
+1225,51.0367,19.5938,19.5389,0.068544,0.913408,0.00928,0.006368,0.029408,0.099584,0.099072,18.1999,0.113344
+1226,44.1989,22.625,19.841,0.069632,2.43859,0.008352,0.006272,0.030144,0.099008,0.098496,16.9758,0.114688
+1227,51.5091,19.4141,19.4832,0.077504,0.864544,0.008288,0.00624,0.02912,0.099424,0.107264,18.1782,0.11264
+1228,48.517,20.6113,19.5008,0.069152,0.887776,0.008192,0.006144,0.03072,0.098336,0.11056,18.176,0.113888
+1229,49.1221,20.3574,18.2129,0.069312,0.815424,0.008192,0.006144,0.030528,0.098496,0.099552,16.9718,0.113408
+1230,52.0484,19.2129,18.1936,0.069248,0.795008,0.008192,0.00624,0.030624,0.09984,0.098816,16.9677,0.117952
+1231,51.057,19.5859,19.6002,0.068576,0.970816,0.009248,0.01456,0.030752,0.10512,0.099424,18.1866,0.115136
+1232,45.134,22.1562,18.4721,0.069344,1.05914,0.00816,0.006144,0.05024,0.105408,0.098336,16.9595,0.115904
+1233,55.0893,18.1523,19.5192,0.07776,0.911424,0.008384,0.00704,0.029632,0.098336,0.10032,18.1715,0.114784
+1234,48.03,20.8203,19.5318,0.0712,0.900608,0.008352,0.006272,0.033472,0.105536,0.099264,18.1934,0.113664
+1235,48.22,20.7383,18.2868,0.069856,0.913408,0.007904,0.006272,0.030016,0.098304,0.099168,16.9486,0.113312
+1236,52.3517,19.1016,18.1993,0.069728,0.799328,0.008224,0.006144,0.030688,0.100352,0.098304,16.9738,0.112672
+1237,51.4366,19.4414,19.5449,0.070112,0.895328,0.008192,0.006112,0.03072,0.09792,0.104864,18.219,0.11264
+1238,48.7387,20.5176,19.4125,0.069632,0.800384,0.008288,0.006304,0.030176,0.098976,0.100352,18.1859,0.112544
+1239,48.8317,20.4785,18.2538,0.069664,0.827392,0.00816,0.006144,0.03072,0.098304,0.09968,16.9991,0.114688
+1240,52.1704,19.168,19.4133,0.06944,0.80976,0.009344,0.00624,0.029472,0.1,0.098656,18.174,0.11648
+1241,49.0421,20.3906,18.1759,0.069888,0.798688,0.009216,0.006208,0.029632,0.098304,0.100352,16.9492,0.114368
+1242,50.9199,19.6387,18.4011,0.070848,1.00435,0.009248,0.006368,0.02944,0.100192,0.098464,16.9677,0.114528
+1243,50.9656,19.6211,19.5848,0.069664,0.968512,0.008352,0.016416,0.03072,0.099328,0.098752,18.1786,0.1144
+1244,48.3019,20.7031,18.2661,0.069376,0.882944,0.01968,0.006688,0.03008,0.0992,0.100352,16.9447,0.11312
+1245,51.0062,19.6055,19.5733,0.069504,0.991168,0.00832,0.006272,0.029216,0.098304,0.100384,18.1575,0.11264
+1246,48.4115,20.6562,19.4375,0.068832,0.844576,0.009344,0.006272,0.02944,0.106336,0.09952,18.1604,0.112768
+1247,48.3429,20.6855,18.3702,0.069664,0.962112,0.008384,0.006272,0.029216,0.10432,0.105504,16.9707,0.114016
+1248,51.4159,19.4492,18.3493,0.069344,0.949696,0.007008,0.00624,0.030624,0.09968,0.098976,16.971,0.116672
+1249,51.7276,19.332,19.4213,0.06944,0.835904,0.008192,0.006144,0.03072,0.098336,0.098304,18.1596,0.114688
+1250,48.2564,20.7227,18.3705,0.06848,0.935936,0.008192,0.006144,0.045056,0.106496,0.098304,16.9861,0.115744
+1251,51.2513,19.5117,18.3719,0.071232,0.958912,0.008192,0.006176,0.030688,0.100352,0.099648,16.9826,0.114112
+1252,51.0265,19.5977,19.5606,0.069376,0.954784,0.008224,0.006112,0.030368,0.100544,0.099936,18.1786,0.112672
+1253,44.7123,22.3652,18.5548,0.071104,1.13926,0.008192,0.007264,0.0296,0.099776,0.098752,16.9862,0.114592
+1254,54.0883,18.4883,18.2149,0.068192,0.815104,0.008192,0.00624,0.030624,0.099328,0.099328,16.9749,0.113056
+1255,51.0163,19.6016,19.4436,0.069632,0.817184,0.00816,0.006144,0.030496,0.107808,0.099072,18.1919,0.113152
+1256,47.9625,20.8496,18.4013,0.069632,0.953664,0.008352,0.006272,0.039136,0.098496,0.099424,17.0034,0.12288
+1257,51.1182,19.5625,18.2118,0.068704,0.82656,0.00832,0.00624,0.029152,0.098304,0.098304,16.961,0.115264
+1258,51.2769,19.502,19.5912,0.069024,0.96112,0.008192,0.006144,0.038624,0.098592,0.098304,18.1963,0.114912
+1259,47.4557,21.0723,18.2737,0.06944,0.910976,0.008288,0.006272,0.030336,0.097184,0.107936,16.9293,0.113888
+1260,46.626,21.4473,18.368,0.071008,0.96112,0.016448,0.006144,0.03072,0.098304,0.098336,16.9717,0.114144
+1261,53.4838,18.6973,19.6116,0.069632,0.980992,0.008192,0.016384,0.0304,0.098624,0.099808,18.195,0.11264
+1262,48.012,20.8281,18.3909,0.069632,0.985088,0.008192,0.006144,0.030464,0.100608,0.099712,16.9783,0.112832
+1263,50.7232,19.7148,18.3093,0.069024,0.916288,0.008192,0.006144,0.03072,0.098304,0.100352,16.9677,0.11264
+1264,49.1788,20.334,19.7222,0.076064,1.07741,0.008288,0.020704,0.030208,0.102912,0.110784,18.1832,0.112704
+1265,51.0723,19.5801,18.225,0.069632,0.81472,0.008288,0.006272,0.030208,0.098208,0.10064,16.9825,0.11456
+1266,50.5879,19.7676,18.2862,0.06784,0.90112,0.00832,0.007072,0.029664,0.099552,0.10496,16.9527,0.114944
+1267,47.9132,20.8711,19.6526,0.069664,1.02512,0.008288,0.006304,0.029408,0.099456,0.098176,18.2025,0.113696
+1268,50.1469,19.9414,18.3234,0.06832,0.912768,0.008384,0.006368,0.030048,0.0992,0.099616,16.9841,0.114592
+1269,52.6803,18.9824,18.2907,0.0712,0.864544,0.00832,0.006208,0.030304,0.106912,0.100032,16.9905,0.11264
+1270,51.3026,19.4922,19.5891,0.069632,0.980992,0.008192,0.006208,0.036128,0.098976,0.100352,18.176,0.11264
+1271,49.0328,20.3945,18.2484,0.074048,0.848352,0.008192,0.006176,0.030656,0.105984,0.098848,16.9628,0.113376
+1272,50.1175,19.9531,18.4054,0.069472,0.951776,0.008544,0.006304,0.029984,0.099264,0.09824,17.0271,0.114688
+1273,52.4644,19.0605,19.4843,0.069312,0.899648,0.008288,0.006208,0.030304,0.098208,0.098816,18.1607,0.1128
+1274,46.66,21.4316,18.3826,0.068224,0.937248,0.00832,0.006304,0.038816,0.09984,0.106784,16.9888,0.128288
+1275,51.8114,19.3008,19.5416,0.07376,0.943936,0.008288,0.016416,0.030112,0.106368,0.098944,18.1495,0.114304
+1276,43.3862,23.0488,21.023,0.069152,2.43139,0.008352,0.006272,0.040992,0.099648,0.098976,18.1554,0.1128
+1277,50.7886,19.6895,18.2231,0.069696,0.800704,0.008192,0.006144,0.03072,0.098272,0.098368,16.9963,0.114688
+1278,51.3592,19.4707,18.2047,0.069632,0.800064,0.00832,0.00624,0.029152,0.1,0.098656,16.9779,0.114688
+1279,52.0219,19.2227,19.469,0.070016,0.85984,0.008288,0.006272,0.030464,0.098656,0.098656,18.1795,0.117344
+1280,48.2655,20.7188,18.3555,0.07088,0.9736,0.008192,0.00624,0.030624,0.100352,0.099712,16.9519,0.11392
+1281,51.8796,19.2754,19.4089,0.069632,0.810848,0.008288,0.006208,0.030304,0.097888,0.099136,18.1719,0.114688
+1282,49.0656,20.3809,19.4226,0.069632,0.80464,0.008416,0.006144,0.030144,0.098496,0.100448,18.1906,0.114016
+1283,48.2746,20.7148,18.394,0.068544,0.956128,0.00848,0.006144,0.030496,0.098528,0.106496,17.0066,0.11264
+1284,48.4986,20.6191,18.3235,0.06928,0.898848,0.00832,0.014784,0.043008,0.099808,0.099904,16.9728,0.116736
+1285,54.1914,18.4531,19.5256,0.069312,0.872576,0.008352,0.015776,0.030496,0.098464,0.098944,18.217,0.114688
+1286,48.1792,20.7559,18.2707,0.06928,0.872928,0.00848,0.006272,0.030144,0.098944,0.10208,16.968,0.114528
+1287,51.7904,19.3086,18.2965,0.070368,0.904256,0.00832,0.00688,0.030304,0.098592,0.098496,16.9652,0.114144
+1288,50.7886,19.6895,19.5092,0.069632,0.86016,0.008224,0.006112,0.038912,0.100352,0.10576,18.2073,0.112768
+1289,46.4863,21.5117,18.3256,0.069824,0.923456,0.008192,0.006144,0.03072,0.099392,0.099264,16.9759,0.112736
+1290,52.1279,19.1836,18.2936,0.068544,0.903136,0.008224,0.006112,0.03072,0.09968,0.099008,16.9636,0.114656
+1291,51.1642,19.5449,19.4843,0.070752,0.89952,0.008416,0.00624,0.036288,0.096992,0.098336,18.155,0.112768
+1292,48.1837,20.7539,18.2804,0.069632,0.90704,0.00832,0.00624,0.03008,0.098944,0.098432,16.9471,0.114688
+1293,51.3283,19.4824,18.3144,0.06912,0.942592,0.008256,0.00608,0.038912,0.097792,0.099968,16.9358,0.115904
+1294,47.0631,21.248,19.6671,0.068288,1.03018,0.00928,0.02144,0.030688,0.104448,0.098336,18.1883,0.11616
+1295,52.5667,19.0234,18.2062,0.069664,0.800608,0.00832,0.006176,0.03072,0.097856,0.100384,16.966,0.126464
+1296,51.2461,19.5137,18.3376,0.069664,0.933856,0.008192,0.006176,0.030688,0.100096,0.09856,16.9759,0.114528
+1297,50.673,19.7344,19.5135,0.068544,0.870048,0.008352,0.00624,0.030464,0.098656,0.100352,18.217,0.113856
+1298,47.425,21.0859,18.3485,0.069632,0.930752,0.009312,0.006272,0.032672,0.099168,0.100352,16.9861,0.114272
+1299,52.325,19.1113,18.2504,0.068256,0.83968,0.008416,0.007296,0.029344,0.099712,0.098912,16.986,0.1128
+1300,51.7747,19.3145,19.4888,0.069472,0.866464,0.008192,0.006176,0.030368,0.098624,0.100352,18.1944,0.114688
+1301,48.2427,20.7285,18.2571,0.069632,0.84176,0.00816,0.006144,0.03072,0.098336,0.098272,16.9882,0.115904
+1302,51.5661,19.3926,18.2116,0.068384,0.831488,0.008192,0.006176,0.030688,0.098304,0.100288,16.9547,0.113472
+1303,51.8481,19.2871,19.5169,0.06976,0.911296,0.008256,0.006144,0.03072,0.100128,0.098624,18.178,0.114048
+1304,48.4069,20.6582,18.3024,0.069664,0.889984,0.008352,0.006304,0.034432,0.099328,0.100256,16.9759,0.118208
+1305,51.4625,19.4316,18.2207,0.069184,0.812512,0.008288,0.006272,0.031264,0.098528,0.10208,16.9783,0.114272
+1306,51.9059,19.2656,19.5344,0.068192,0.922816,0.018336,0.006336,0.029408,0.099648,0.09904,18.178,0.11264
+1307,47.8505,20.8984,18.3383,0.068576,0.917056,0.0168,0.006144,0.03072,0.097888,0.0984,16.9864,0.116288
+1308,50.0587,19.9766,18.4798,0.079904,1.0576,0.008192,0.014368,0.030688,0.108544,0.099744,16.9642,0.116544
+1309,51.3077,19.4902,19.4799,0.069824,0.872352,0.008288,0.006112,0.038912,0.09952,0.098496,18.1705,0.115936
+1310,47.9491,20.8555,18.3171,0.068352,0.924704,0.008288,0.00624,0.030432,0.098848,0.098496,16.9556,0.12608
+1311,46.6898,21.418,18.346,0.070688,0.953312,0.008192,0.006144,0.030592,0.098304,0.09952,16.9645,0.114688
+1312,56.3194,17.7559,19.4682,0.069536,0.85152,0.008352,0.006304,0.038976,0.100032,0.100352,18.1788,0.114336
+1313,48.1928,20.75,18.2467,0.070688,0.824288,0.008192,0.006144,0.03072,0.098304,0.110176,16.9841,0.114016
+1314,51.2872,19.498,18.4177,0.069664,0.992928,0.00848,0.006176,0.030304,0.104864,0.106496,16.9841,0.114688
+1315,51.3489,19.4746,19.4294,0.069632,0.811008,0.009216,0.006304,0.029536,0.098112,0.098528,18.1944,0.112672
+1316,48.4619,20.6348,18.2942,0.067904,0.905216,0.008192,0.006144,0.03072,0.09968,0.098976,16.9605,0.1168
+1317,51.1693,19.543,18.3119,0.069312,0.891904,0.008192,0.006176,0.030688,0.098304,0.106528,16.9861,0.114656
+1318,49.2213,20.3164,19.9329,0.070784,1.21126,0.008192,0.006144,0.03072,0.108256,0.098624,18.284,0.11488
+1319,48.0751,20.8008,18.3152,0.08624,0.897632,0.009344,0.015232,0.03072,0.098304,0.098304,16.9656,0.113792
+1320,50.8795,19.6543,18.3497,0.069632,0.954368,0.008224,0.006112,0.03072,0.101504,0.099392,16.9654,0.114336
+1321,51.0978,19.5703,19.5543,0.069632,0.950272,0.008288,0.006048,0.03072,0.098304,0.098304,18.1801,0.11264
+1322,49.2213,20.3164,18.1981,0.069024,0.797472,0.008224,0.006112,0.030464,0.106752,0.100032,16.9659,0.114144
+1323,51.478,19.4258,18.2825,0.069536,0.89856,0.00832,0.006272,0.029024,0.098304,0.098304,16.9606,0.113632
+1324,52.0008,19.2305,19.4468,0.069408,0.831264,0.00832,0.006304,0.028832,0.114688,0.100352,18.1719,0.115776
+1325,48.7991,20.4922,18.2463,0.069344,0.85904,0.00832,0.006016,0.03072,0.098368,0.100288,16.9595,0.114688
+1326,52.3732,19.0938,18.2214,0.069888,0.804576,0.00848,0.00624,0.030464,0.1,0.098944,16.9897,0.113152
+1327,51.2564,19.5098,19.4951,0.069824,0.864256,0.008192,0.006144,0.030752,0.098272,0.099968,18.2051,0.11264
+1328,49.108,20.3633,18.219,0.069632,0.800192,0.008288,0.00624,0.030208,0.0992,0.098368,16.9938,0.113056
+1329,51.9955,19.2324,18.2289,0.069536,0.826848,0.022752,0.00656,0.030432,0.09792,0.099008,16.9525,0.123328
+1330,51.9059,19.2656,19.4028,0.068928,0.80992,0.008192,0.006144,0.03072,0.098432,0.09936,18.1625,0.118528
+1331,48.7062,20.5312,18.2211,0.069536,0.8152,0.008192,0.006176,0.030688,0.110592,0.099488,16.9675,0.113664
+1332,51.0418,19.5918,18.2631,0.069664,0.870368,0.008192,0.006144,0.03072,0.099744,0.098912,16.9655,0.113792
+1333,51.6181,19.373,19.5154,0.069632,0.894976,0.009408,0.00624,0.029408,0.099776,0.098912,18.1944,0.112672
+1334,48.855,20.4688,18.2297,0.075968,0.82112,0.008416,0.00624,0.029952,0.113536,0.107968,16.9529,0.1136
+1335,50.5829,19.7695,18.2074,0.069376,0.809888,0.008288,0.006144,0.030528,0.097824,0.104192,16.9666,0.114624
+1336,51.8586,19.2832,19.458,0.068672,0.844256,0.00832,0.006304,0.030464,0.098784,0.100096,18.1884,0.1128
+1337,49.0562,20.3848,18.2252,0.069184,0.82912,0.008288,0.00624,0.029248,0.098336,0.101728,16.9664,0.11664
+1338,51.7852,19.3105,18.2594,0.070976,0.835968,0.008288,0.006304,0.030016,0.099008,0.100224,16.9945,0.11408
+1339,51.0825,19.5762,19.4662,0.069664,0.864224,0.008288,0.006048,0.03072,0.099328,0.099328,18.1757,0.112896
+1340,48.6646,20.5488,18.2559,0.069568,0.827456,0.008416,0.015968,0.030528,0.1,0.099072,16.9913,0.113568
+1341,52.2716,19.1309,18.2,0.069248,0.809344,0.008224,0.006112,0.03072,0.108544,0.098336,16.9554,0.11408
+1342,52.0378,19.2168,19.4471,0.069408,0.80304,0.008224,0.006112,0.03072,0.109792,0.098624,18.2072,0.113984
+1343,48.9531,20.4277,18.2215,0.069472,0.818016,0.008224,0.006112,0.03072,0.099328,0.099136,16.9754,0.115072
+1344,52.0325,19.2188,18.2271,0.069856,0.80592,0.008352,0.006272,0.030496,0.099264,0.104416,16.9882,0.114336
+1345,51.1131,19.5645,19.6393,0.068608,1.02134,0.008416,0.00624,0.030368,0.098944,0.099968,18.1927,0.112736
+1346,48.1792,20.7559,18.2866,0.069632,0.86016,0.009312,0.006272,0.029472,0.100352,0.100352,16.9974,0.1136
+1347,50.3541,19.8594,18.3583,0.069632,0.941984,0.022624,0.006176,0.045024,0.098336,0.099744,16.9619,0.112864
+1348,51.4987,19.418,19.5645,0.069536,0.931968,0.016352,0.006144,0.03072,0.100384,0.098272,18.1984,0.1128
+1349,45.6084,21.9258,18.3008,0.079872,0.909312,0.008288,0.006048,0.03072,0.098304,0.100352,16.9533,0.114592
+1350,55.6461,17.9707,18.1729,0.068576,0.80688,0.00832,0.007104,0.029632,0.098304,0.100352,16.937,0.116736
+1351,51.3747,19.4648,19.481,0.069408,0.854624,0.008256,0.00608,0.03072,0.097984,0.098624,18.2005,0.114752
+1352,47.9491,20.8555,18.3453,0.069792,0.928928,0.008256,0.006272,0.029344,0.099744,0.105056,16.9841,0.113856
+1353,50.518,19.7949,18.3939,0.070112,0.973088,0.008256,0.006112,0.030528,0.098496,0.099616,16.9948,0.112896
+1354,51.1898,19.5352,19.5501,0.07568,0.909568,0.008224,0.006176,0.040896,0.101984,0.099936,18.1944,0.113248
+1355,47.1498,21.209,18.204,0.073728,0.800064,0.008352,0.006272,0.03024,0.098784,0.100352,16.9722,0.114016
+1356,48.9577,20.4258,18.4464,0.068992,1.03702,0.026624,0.006144,0.029984,0.09904,0.108544,16.9564,0.113632
+1357,56.5059,17.6973,19.497,0.069632,0.825152,0.00832,0.006208,0.03024,0.097856,0.09872,18.2482,0.11264
+1358,48.7805,20.5,18.1964,0.069536,0.813952,0.008192,0.006144,0.03072,0.09936,0.098816,16.9555,0.114144
+1359,51.7328,19.3301,18.2129,0.069664,0.81712,0.008192,0.006144,0.03056,0.098272,0.09872,16.9708,0.113408
+1360,52.2183,19.1504,19.4355,0.070656,0.809984,0.008192,0.007392,0.030592,0.100576,0.099008,18.1957,0.113408
+1361,48.7805,20.5,18.2559,0.069632,0.831392,0.008256,0.006176,0.030656,0.0984,0.10032,16.9964,0.114688
+1362,51.5609,19.3945,18.2381,0.068448,0.816736,0.00864,0.007872,0.037184,0.10032,0.098304,16.9861,0.114464
+1363,52.2023,19.1562,19.4067,0.069152,0.802496,0.008352,0.006368,0.030304,0.098752,0.100512,18.1762,0.11456
+1364,48.623,20.5664,18.2133,0.069248,0.809792,0.00928,0.006272,0.029536,0.098272,0.100352,16.9755,0.11504
+1365,51.3283,19.4824,18.2985,0.071424,0.925408,0.00832,0.006304,0.037152,0.098304,0.098272,16.939,0.114336
+1366,52.059,19.209,19.5023,0.069632,0.912704,0.008448,0.006272,0.030432,0.098912,0.098304,18.1652,0.112384
+1367,46.9639,21.293,18.3194,0.069632,0.931872,0.00816,0.006144,0.032064,0.099008,0.09936,16.9584,0.114688
+1368,53.0955,18.834,18.2872,0.06928,0.887552,0.008288,0.006176,0.03072,0.100352,0.098336,16.9732,0.11328
+1369,51.5765,19.3887,19.5985,0.069664,0.95024,0.008192,0.006144,0.030496,0.098496,0.098432,18.223,0.113824
+1370,48.2564,20.7227,18.3601,0.069472,0.9584,0.008416,0.006144,0.030432,0.098592,0.10016,16.9714,0.117088
+1371,51.4935,19.4199,18.2462,0.068544,0.841568,0.008192,0.006336,0.030528,0.098304,0.098304,16.9797,0.11472
+1372,51.478,19.4258,19.5527,0.07024,0.88512,0.008192,0.006144,0.030432,0.098592,0.099648,18.2401,0.114176
+1373,48.494,20.6211,18.3073,0.069984,0.90944,0.00816,0.006144,0.030528,0.098496,0.098304,16.9718,0.114496
+1374,51.7172,19.3359,18.3265,0.074688,0.920992,0.008384,0.006304,0.030464,0.099872,0.100512,16.9706,0.114688
+1375,51.2051,19.5293,19.5134,0.069664,0.8888,0.008192,0.006144,0.03072,0.097856,0.100192,18.1991,0.112672
+1376,48.7758,20.502,18.3058,0.068384,0.914624,0.008288,0.006272,0.0304,0.098848,0.098688,16.9656,0.114688
+1377,51.927,19.2578,18.1945,0.069632,0.812832,0.00832,0.00624,0.030432,0.098592,0.099872,16.9492,0.119296
+1378,51.5609,19.3945,19.4253,0.07088,0.8464,0.00832,0.00624,0.030336,0.098624,0.098368,18.1532,0.11296
+1379,49.1457,20.3477,18.2497,0.071232,0.842048,0.00832,0.006144,0.03072,0.098048,0.100256,16.9794,0.1136
+1380,51.1029,19.5684,18.2441,0.068096,0.860128,0.008192,0.006144,0.030656,0.099744,0.098976,16.9595,0.11264
+1381,51.6546,19.3594,19.5477,0.069632,0.914464,0.008256,0.006304,0.030528,0.101312,0.098336,18.2046,0.11424
+1382,48.8037,20.4902,18.219,0.06896,0.844256,0.00832,0.006304,0.028896,0.099616,0.099072,16.9506,0.112992
+1383,52.059,19.209,18.2055,0.06976,0.804896,0.00832,0.006272,0.029088,0.099456,0.098784,16.9741,0.114784
+1384,52.0537,19.2109,19.4273,0.069664,0.798304,0.008224,0.006528,0.030688,0.114272,0.098752,18.1873,0.113568
+1385,47.8237,20.9102,18.2953,0.070144,0.913408,0.00816,0.006144,0.03072,0.098144,0.098464,16.9574,0.112704
+1386,47.8103,20.916,18.3129,0.069728,0.927904,0.008288,0.006144,0.030752,0.10032,0.100352,16.9554,0.113984
+1387,55.7856,17.9258,19.4621,0.069664,0.862176,0.008224,0.006112,0.03072,0.099424,0.099232,18.174,0.11264
+1388,48.7665,20.5059,18.2416,0.069632,0.841728,0.008192,0.006144,0.030752,0.098272,0.099488,16.9743,0.113088
+1389,50.1126,19.9551,18.3217,0.067904,0.905184,0.008192,0.006144,0.030528,0.098048,0.09824,16.9928,0.114688
+1390,51.7852,19.3105,19.5784,0.068896,0.963296,0.008192,0.006176,0.030688,0.098304,0.098304,18.1903,0.11424
+1391,47.9356,20.8613,18.2869,0.069504,0.878176,0.008288,0.006176,0.029344,0.098304,0.100352,16.982,0.114784
+1392,51.6181,19.373,18.3296,0.071552,0.921568,0.00832,0.006176,0.042208,0.098304,0.099136,16.9695,0.112832
+1393,51.241,19.5156,19.4401,0.07008,0.811136,0.008224,0.006144,0.03072,0.108544,0.102176,18.19,0.112992
+1394,49.4256,20.2324,18.2335,0.069664,0.817632,0.008288,0.0064,0.030464,0.099872,0.09904,16.9879,0.11424
+1395,52.0961,19.1953,18.2149,0.069664,0.808608,0.008384,0.006272,0.030272,0.104672,0.104704,16.9677,0.114656
+1396,52.0802,19.2012,19.426,0.068256,0.815008,0.008288,0.006144,0.030272,0.098752,0.098304,18.1862,0.114688
+1397,47.263,21.1582,18.3711,0.068608,0.94,0.009248,0.020928,0.030464,0.097056,0.108448,16.9801,0.116288
+1398,53.0295,18.8574,18.2317,0.070016,0.817152,0.008224,0.00624,0.030592,0.114304,0.098464,16.9611,0.125568
+1399,52.0961,19.1953,19.4525,0.07024,0.804256,0.00832,0.006304,0.030496,0.098848,0.100352,18.2211,0.11264
+1400,48.5032,20.6172,18.3047,0.069408,0.90304,0.008256,0.006336,0.030656,0.098848,0.100128,16.974,0.114016
+1401,50.201,19.9199,18.2252,0.069632,0.803936,0.008384,0.006464,0.030272,0.104768,0.111136,16.9779,0.11264
+1402,52.838,18.9258,19.4652,0.068544,0.804608,0.00832,0.00624,0.029888,0.099072,0.098336,18.2355,0.114688
+1403,48.7573,20.5098,18.2333,0.069632,0.839424,0.008384,0.006208,0.030368,0.098656,0.100096,16.9659,0.114688
+1404,50.6329,19.75,18.2456,0.069664,0.85808,0.008192,0.006144,0.030528,0.098528,0.099648,16.9602,0.114688
+1405,51.9903,19.2344,19.4102,0.070912,0.80768,0.008288,0.007168,0.03072,0.098208,0.099328,18.174,0.11392
+1406,48.5953,20.5781,18.2344,0.07088,0.839936,0.00832,0.006272,0.030528,0.1,0.098592,16.966,0.113888
+1407,51.8639,19.2812,18.2497,0.07424,0.833792,0.008448,0.00592,0.030688,0.09952,0.099136,16.9693,0.128704
+1408,51.2666,19.5059,19.4228,0.069632,0.815104,0.008352,0.00704,0.029664,0.099808,0.100768,18.1782,0.114304
+1409,48.8923,20.4531,18.1997,0.069312,0.815424,0.009248,0.006272,0.029664,0.098176,0.100352,16.9568,0.114432
+1410,51.2154,19.5254,18.3007,0.069632,0.925728,0.00816,0.006144,0.03072,0.099424,0.098784,16.9456,0.116512
+1411,47.0588,21.25,20.8181,0.06912,0.999328,0.008416,0.020672,0.030528,0.098368,0.104992,19.3721,0.114656
+1412,48.7341,20.5195,18.2234,0.068256,0.835104,0.008288,0.006304,0.030016,0.09872,0.100448,16.9599,0.116352
+1413,51.9903,19.2344,18.2579,0.069664,0.849888,0.008384,0.007104,0.029696,0.099456,0.099072,16.982,0.11264
+1414,51.3695,19.4668,19.5167,0.069632,0.913408,0.018432,0.007424,0.029472,0.10032,0.100352,18.1657,0.111968
+1415,49.3494,20.2637,18.1739,0.069888,0.806432,0.008384,0.006272,0.030112,0.099168,0.0984,16.9408,0.114368
+1416,50.8138,19.6797,18.3848,0.069504,0.996864,0.008288,0.012832,0.03072,0.100352,0.099456,16.9522,0.114592
+1417,51.6129,19.375,19.5737,0.069664,0.943008,0.009248,0.00624,0.030656,0.097216,0.100384,18.2046,0.11264
+1418,47.9715,20.8457,18.2244,0.069312,0.835232,0.008256,0.006272,0.029248,0.099776,0.0984,16.962,0.116
+1419,52.2129,19.1523,18.2372,0.06928,0.839584,0.008288,0.006272,0.02928,0.098272,0.09936,16.9728,0.114048
+1420,51.8166,19.2988,19.4307,0.069664,0.810976,0.009216,0.00656,0.030304,0.098656,0.098976,18.1922,0.114112
+1421,47.9895,20.8379,18.2989,0.07168,0.890336,0.00832,0.006304,0.03024,0.09904,0.098304,16.9811,0.113536
+1422,51.1693,19.543,18.3071,0.069632,0.915232,0.008384,0.006176,0.030528,0.10016,0.09872,16.9649,0.113312
+1423,51.4625,19.4316,19.5331,0.069632,0.884736,0.008192,0.006144,0.030496,0.104672,0.106496,18.2088,0.11392
+1424,48.8923,20.4531,18.2311,0.069568,0.84592,0.008,0.00624,0.030208,0.098656,0.09856,16.9595,0.114496
+1425,52.1014,19.1934,18.188,0.069248,0.8032,0.008192,0.007232,0.029632,0.098304,0.098304,16.9574,0.116416
+1426,50.2305,19.9082,19.5192,0.069504,0.90128,0.00816,0.006144,0.03072,0.106496,0.098304,18.1822,0.116448
+1427,48.6785,20.543,18.3378,0.069632,0.884736,0.008192,0.006144,0.030592,0.097632,0.100832,17.0212,0.118784
+1428,50.8138,19.6797,18.2931,0.070624,0.881888,0.02496,0.0064,0.030336,0.1,0.097152,16.9676,0.114144
+1429,50.4483,19.8223,19.4648,0.071392,0.826112,0.008288,0.006176,0.045056,0.099712,0.098816,18.1966,0.11264
+1430,49.8297,20.0684,18.3644,0.06944,0.95616,0.008352,0.006272,0.030144,0.099264,0.108512,16.9718,0.114432
+1431,51.8954,19.2695,18.2151,0.069504,0.821472,0.008384,0.006272,0.0304,0.098304,0.099136,16.9676,0.113984
+1432,51.478,19.4258,19.4872,0.067968,0.878464,0.008192,0.006144,0.030432,0.098592,0.098304,18.1853,0.11376
+1433,48.9063,20.4473,18.1944,0.069632,0.800768,0.008192,0.006144,0.03072,0.107584,0.098688,16.9582,0.114496
+1434,51.6441,19.3633,18.217,0.07168,0.837408,0.00832,0.00624,0.03008,0.098944,0.098464,16.9524,0.113408
+1435,51.241,19.5156,19.4865,0.069632,0.888832,0.008224,0.006112,0.03072,0.098304,0.100352,18.1711,0.113248
+1436,48.3795,20.6699,18.2474,0.069632,0.847872,0.008416,0.007008,0.029632,0.100352,0.1,16.9701,0.114368
+1437,51.1233,19.5605,18.305,0.069568,0.92096,0.008672,0.006304,0.030304,0.100864,0.098304,16.9554,0.114688
+1438,51.2718,19.5039,19.5383,0.06912,0.920384,0.00832,0.006112,0.030304,0.099872,0.0992,18.1917,0.11328
+1439,47.9491,20.8555,18.3631,0.06832,0.935968,0.00816,0.006144,0.03072,0.098304,0.09984,17.0002,0.115488
+1440,51.8166,19.2988,18.1829,0.068416,0.812928,0.008288,0.006144,0.030752,0.09968,0.098944,16.9431,0.114688
+1441,51.1335,19.5566,19.5639,0.069888,0.955584,0.008288,0.006272,0.02928,0.098304,0.098304,18.1853,0.112672
+1442,47.958,20.8516,18.3276,0.070848,0.908096,0.008224,0.006112,0.030592,0.099808,0.09824,16.9921,0.113536
+1443,49.2213,20.3164,18.2673,0.07088,0.865056,0.008192,0.006144,0.03072,0.098336,0.100096,16.9755,0.112448
+1444,53.6238,18.6484,19.5178,0.068512,0.888864,0.00816,0.006144,0.030464,0.09856,0.098528,18.2044,0.114112
+1445,48.7851,20.498,18.2743,0.069344,0.843616,0.008448,0.006304,0.030272,0.104896,0.098336,16.9984,0.114688
+1446,52.0431,19.2148,18.218,0.068576,0.806048,0.008352,0.00624,0.030496,0.099136,0.098368,16.9875,0.11328
+1447,51.5194,19.4102,19.4374,0.068416,0.831456,0.009312,0.00624,0.029504,0.098432,0.100224,18.178,0.115744
+1448,49.0656,20.3809,18.2088,0.069632,0.823296,0.008256,0.00608,0.03072,0.099488,0.098944,16.959,0.113376
+1449,51.8271,19.2949,18.237,0.069984,0.8416,0.008288,0.006176,0.03056,0.098464,0.100352,16.9675,0.11408
+1450,51.6806,19.3496,19.4399,0.069504,0.823808,0.008352,0.006304,0.030528,0.098752,0.099936,18.1885,0.114208
+1451,48.3019,20.7031,18.3501,0.069632,0.952192,0.00832,0.006144,0.030112,0.098368,0.10048,16.9713,0.113568
+1452,51.4159,19.4492,18.3333,0.069696,0.92736,0.008352,0.006272,0.029344,0.100352,0.098304,16.9759,0.11776
+1453,50.4533,19.8203,19.4829,0.069536,0.849376,0.008288,0.006272,0.029408,0.098304,0.098304,18.2081,0.115328
+1454,49.5452,20.1836,18.2124,0.069632,0.831488,0.008192,0.006144,0.030688,0.099456,0.098368,16.9542,0.114208
+1455,51.7015,19.3418,18.2471,0.069792,0.860448,0.008224,0.006112,0.03072,0.099744,0.098752,16.9592,0.114112
+1456,51.7695,19.3164,19.4332,0.06928,0.840416,0.008576,0.0072,0.031232,0.098624,0.100384,18.1637,0.113728
+1457,47.967,20.8477,18.303,0.069632,0.899072,0.008192,0.006144,0.030496,0.09856,0.10032,16.9759,0.114688
+1458,51.4987,19.418,18.2989,0.069632,0.892928,0.008192,0.006144,0.03072,0.098304,0.10256,16.9774,0.11296
+1459,51.4263,19.4453,19.4546,0.068192,0.856064,0.009248,0.006272,0.029536,0.098304,0.098336,18.176,0.112608
+1460,48.3978,20.6621,18.2964,0.068928,0.860768,0.00832,0.00624,0.030144,0.098944,0.099392,17.0072,0.116416
+1461,51.4056,19.4531,18.2825,0.069568,0.899072,0.008288,0.006144,0.0304,0.098592,0.100384,16.9546,0.11552
+1462,51.7119,19.3379,19.4812,0.070176,0.89088,0.008192,0.006144,0.0304,0.099872,0.099264,18.1636,0.11264
+1463,48.3429,20.6855,18.3518,0.071136,0.935712,0.00832,0.006304,0.0312,0.098304,0.099968,16.9877,0.11312
+1464,52.3196,19.1133,18.2381,0.068256,0.826688,0.008576,0.006304,0.029952,0.099232,0.098304,16.9877,0.11312
+1465,50.683,19.7305,19.5562,0.068224,0.932992,0.008352,0.006272,0.030336,0.098816,0.106944,18.1903,0.113888
+1466,48.3156,20.6973,18.2669,0.068512,0.867712,0.008352,0.0064,0.030208,0.109152,0.099456,16.9624,0.114752
+1467,51.8114,19.3008,18.2502,0.069472,0.848544,0.008288,0.006176,0.030592,0.098304,0.100352,16.9732,0.11536
+1468,51.8324,19.293,19.5727,0.07152,0.894944,0.008288,0.00624,0.030464,0.09856,0.100224,18.2489,0.113568
+1469,48.517,20.6113,18.2293,0.070112,0.849248,0.008256,0.006304,0.029152,0.098368,0.100256,16.9533,0.114304
+1470,51.3747,19.4648,18.2636,0.069472,0.85024,0.008288,0.007104,0.029664,0.100384,0.100352,16.9837,0.1144
+1471,51.9481,19.25,20.3933,0.069632,0.95584,0.00848,0.006304,0.030848,0.104384,0.098368,19.0054,0.114016
+1472,46.8907,21.3262,18.219,0.069312,0.820928,0.008352,0.006208,0.029088,0.099776,0.09888,16.9733,0.113184
+1473,51.9691,19.2422,18.1793,0.069632,0.811008,0.008192,0.006144,0.03072,0.098304,0.098304,16.9411,0.115904
+1474,51.5765,19.3887,19.4315,0.068832,0.834432,0.008192,0.007712,0.0312,0.09936,0.098816,18.168,0.114976
+1475,48.2382,20.7305,18.2211,0.069088,0.838176,0.008192,0.006176,0.030688,0.098304,0.100128,16.9572,0.11312
+1476,51.6389,19.3652,19.5161,0.068576,0.903168,0.008192,0.006144,0.030624,0.098432,0.0984,18.1881,0.114432
+1477,48.7619,20.5078,19.5362,0.069952,0.88048,0.00832,0.006144,0.030624,0.106592,0.09824,18.2063,0.129504
+1478,47.8908,20.8809,18.2711,0.070176,0.895296,0.009312,0.006848,0.03008,0.099168,0.099392,16.9478,0.113056
+1479,51.7172,19.3359,18.2439,0.069856,0.81296,0.00832,0.022592,0.038944,0.098272,0.098304,16.9812,0.113504
+1480,52.4698,19.0586,19.4069,0.067584,0.808544,0.008448,0.006272,0.030368,0.09872,0.099392,18.1749,0.112672
+1481,48.6461,20.5566,18.2295,0.068384,0.843328,0.00832,0.006272,0.03008,0.09712,0.098272,16.9533,0.124384
+1482,50.7282,19.7129,19.4642,0.068128,0.82432,0.008288,0.006336,0.029376,0.098304,0.100352,18.2141,0.115008
+1483,48.2382,20.7305,19.4874,0.069344,0.897952,0.008224,0.006144,0.03072,0.09728,0.099328,18.1637,0.11472
+1484,48.5953,20.5781,18.3653,0.068448,0.90928,0.008192,0.006144,0.03056,0.098464,0.108544,17.0229,0.112704
+1485,51.8114,19.3008,18.2397,0.069696,0.818944,0.008416,0.006176,0.030336,0.097824,0.0992,16.9963,0.112768
+1486,52.0696,19.2051,19.4253,0.069216,0.806976,0.00832,0.006272,0.030688,0.099584,0.100288,18.1908,0.11312
+1487,47.8594,20.8945,19.4827,0.069344,0.862592,0.008224,0.006112,0.03072,0.108544,0.100352,18.184,0.112864
+1488,48.9343,20.4355,18.2641,0.077824,0.833536,0.008416,0.00704,0.0296,0.100224,0.099456,16.9947,0.11328
+1489,50.8845,19.6523,19.5297,0.069632,0.919552,0.007808,0.006272,0.03024,0.098528,0.098528,18.1859,0.113248
+1490,49.2544,20.3027,18.2108,0.069504,0.815104,0.00832,0.006144,0.03072,0.098336,0.099712,16.9701,0.112864
+1491,49.7522,20.0996,18.9325,0.068384,1.54,0.008288,0.006144,0.030688,0.098336,0.099968,16.966,0.114688
+1492,52.1757,19.166,19.4549,0.068512,0.83152,0.00816,0.006144,0.03072,0.099456,0.098976,18.1961,0.115264
+1493,48.2245,20.7363,19.4355,0.08384,0.82752,0.008096,0.00624,0.030496,0.09808,0.098272,18.168,0.114976
+1494,48.5907,20.5801,18.2313,0.069664,0.831456,0.008192,0.006144,0.03072,0.098336,0.098272,16.9759,0.11264
+1495,52.4536,19.0645,19.3945,0.06976,0.794592,0.008192,0.006144,0.03072,0.098304,0.100352,18.1738,0.112608
+1496,48.3156,20.6973,18.2208,0.069632,0.841248,0.008384,0.006272,0.030336,0.100896,0.099584,16.9498,0.114688
+1497,50.9503,19.627,18.3092,0.069248,0.921088,0.00832,0.006304,0.029376,0.099936,0.09872,16.9636,0.11264
+1498,46.4273,21.5391,19.5685,0.069664,0.958432,0.008192,0.006144,0.03072,0.099552,0.098784,18.1825,0.114528
+1499,53.0076,18.8652,18.3223,0.069536,0.924608,0.00928,0.01472,0.030464,0.099104,0.098336,16.9607,0.11552
+1500,51.7957,19.3066,18.2712,0.068544,0.858112,0.008224,0.006112,0.030592,0.098432,0.099488,16.987,0.114688
+1501,51.3901,19.459,19.4703,0.071072,0.84992,0.00832,0.006304,0.030464,0.098496,0.098688,18.1942,0.112832
+1502,47.2979,21.1426,18.3605,0.084416,0.944288,0.008544,0.006112,0.030752,0.098368,0.099392,16.9747,0.113984
+1503,52.4859,19.0527,18.2374,0.070944,0.842464,0.008192,0.006144,0.03072,0.10976,0.099136,16.9574,0.11264
+1504,51.318,19.4863,19.4419,0.069056,0.82336,0.00832,0.006272,0.030784,0.098592,0.099968,18.1928,0.1128
+1505,49.1127,20.3613,18.262,0.069504,0.851744,0.00832,0.006112,0.0304,0.098272,0.101024,16.9834,0.113248
+1506,50.9453,19.6289,18.2416,0.069312,0.836512,0.008192,0.006144,0.03072,0.099392,0.099232,16.9752,0.116896
+1507,51.2513,19.5117,19.472,0.0696,0.870432,0.008192,0.006144,0.03072,0.098304,0.09824,18.1761,0.114336
+1508,48.3064,20.7012,18.3421,0.069472,0.905568,0.008192,0.006176,0.04464,0.09856,0.098432,16.9975,0.113504
+1509,51.0214,19.5996,19.4697,0.077952,0.876608,0.008192,0.006144,0.03072,0.098112,0.098496,18.1596,0.113888
+1510,48.3201,20.6953,19.4565,0.070496,0.868352,0.008192,0.006144,0.03072,0.099552,0.098976,18.1511,0.122944
+1511,49.0609,20.3828,18.2659,0.0712,0.864128,0.008384,0.006304,0.030336,0.098944,0.100352,16.9716,0.11456
+1512,51.1437,19.5527,18.2676,0.06992,0.87024,0.00832,0.006176,0.030208,0.098816,0.100352,16.9697,0.113792
+1513,52.4967,19.0488,19.3961,0.069248,0.811392,0.008192,0.006144,0.03072,0.098144,0.098464,18.1608,0.113024
+1514,48.3156,20.6973,18.2252,0.069632,0.847872,0.008192,0.006144,0.030688,0.098368,0.10032,16.9484,0.11552
+1515,52.3785,19.0918,18.2399,0.069568,0.852288,0.008352,0.00624,0.030304,0.098176,0.098592,16.9632,0.113216
+1516,50.6429,19.7461,19.4515,0.0712,0.851456,0.00832,0.00624,0.02944,0.099968,0.098688,18.1718,0.114336
+1517,49.4113,20.2383,18.2439,0.069408,0.848768,0.008192,0.006144,0.03072,0.110592,0.100352,16.9569,0.112896
+1518,51.2307,19.5195,18.3133,0.068448,0.870336,0.008256,0.006176,0.030368,0.098816,0.100192,17.0168,0.11392
+1519,51.5921,19.3828,19.4862,0.069632,0.88064,0.008192,0.006176,0.030688,0.098112,0.105728,18.1729,0.114208
+1520,48.3292,20.6914,18.326,0.069728,0.89744,0.008192,0.006176,0.030432,0.098592,0.099392,16.9973,0.118784
+1521,51.8796,19.2754,18.6061,0.069632,0.818528,0.008352,0.006272,0.030144,0.097216,0.101792,17.3592,0.114912
+1522,49.8491,20.0605,19.7266,0.067808,1.13846,0.008288,0.00624,0.030112,0.09872,0.099552,18.1619,0.115488
+1523,47.8818,20.8848,18.2626,0.069312,0.861056,0.008192,0.006144,0.03072,0.098336,0.0984,16.9776,0.112832
+1524,52.3732,19.0938,18.2652,0.069664,0.868352,0.008192,0.006112,0.03072,0.098304,0.099392,16.9707,0.113728
+1525,52.197,19.1582,19.4658,0.076896,0.816032,0.008352,0.007008,0.029696,0.099392,0.099296,18.2149,0.11424
+1526,46.5751,21.4707,18.346,0.069664,0.944096,0.008192,0.006144,0.03072,0.100288,0.098432,16.9758,0.11264
+1527,49.6653,20.1348,19.4926,0.068256,0.903168,0.008192,0.006144,0.03072,0.099456,0.0992,18.1653,0.112128
+1528,47.0978,21.2324,19.5566,0.068416,0.9376,0.008288,0.006272,0.030112,0.099072,0.09936,18.1934,0.114112
+1529,49.4782,20.2109,18.258,0.069632,0.885856,0.008288,0.00624,0.030976,0.098112,0.09888,16.9473,0.112672
+1530,50.7685,19.6973,18.2463,0.069312,0.869344,0.008192,0.006144,0.0304,0.098624,0.098336,16.9492,0.116736
+1531,52.3143,19.1152,19.5461,0.069632,0.910528,0.008288,0.00624,0.030336,0.098784,0.098176,18.2094,0.11472
+1532,48.012,20.8281,19.5769,0.068,0.960512,0.008192,0.006304,0.03056,0.098304,0.100352,18.1893,0.115392
+1533,48.2973,20.7051,18.275,0.069312,0.89104,0.008288,0.006272,0.029312,0.098336,0.098272,16.9608,0.113376
+1534,50.518,19.7949,19.4916,0.070368,0.878208,0.00832,0.006304,0.030144,0.098976,0.098304,18.1862,0.114688
+1535,49.3209,20.2754,18.219,0.071584,0.804256,0.00864,0.006272,0.030112,0.0984,0.098912,16.9892,0.111648
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..ae3dea6
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,103.064,9.74495,8.6879,0.0699586,0.857607,0.00906256,0.00595553,0.0297373,0.0985658,0.10195,7.3924,0.122669
+max_1024,134.418,13.5801,10.9811,0.124256,2.12406,0.075552,0.022144,0.066016,0.1136,0.446848,9.13968,0.477184
+min_1024,73.6373,7.43945,8.21981,0.065536,0.738944,0.006624,0.004448,0.027648,0.096224,0.096416,7.05523,0.11216
+512,99.3259,10.0679,8.40813,0.067584,0.899072,0.009248,0.005088,0.0288,0.1136,0.097216,7.07312,0.1144
+513,99.4706,10.0532,8.33949,0.069312,0.84208,0.009472,0.004864,0.030048,0.096928,0.098336,7.07376,0.114688
+514,111.675,8.95459,9.09078,0.065952,0.761856,0.008224,0.006112,0.0288,0.099712,0.0984,7.9057,0.116032
+515,97.9998,10.2041,8.30221,0.069216,0.806336,0.008928,0.005536,0.029216,0.096576,0.098176,7.07504,0.113184
+516,108.613,9.20703,8.25958,0.069472,0.76816,0.008224,0.006112,0.028704,0.099712,0.098016,7.0665,0.114688
+517,107.046,9.3418,10.3364,0.068928,0.81536,0.008672,0.005568,0.029344,0.097792,0.098816,9.09926,0.11264
+518,88.2606,11.3301,8.33978,0.068448,0.831456,0.008352,0.005984,0.028672,0.09936,0.097248,7.08403,0.116224
+519,103.45,9.6665,8.69776,0.069632,0.819232,0.00832,0.005984,0.028992,0.098016,0.099584,7.45286,0.115136
+520,100.599,9.94043,8.28656,0.071552,0.7936,0.009472,0.004864,0.030016,0.09696,0.098336,7.06694,0.114816
+521,100.245,9.97559,8.62058,0.06944,1.12112,0.0096,0.004736,0.030048,0.098976,0.099872,7.07018,0.116608
+522,108.849,9.18701,9.4745,0.070208,0.771872,0.008416,0.005792,0.029024,0.09792,0.097984,8.27987,0.113408
+523,94.1999,10.6157,8.26778,0.069664,0.763872,0.009632,0.005728,0.028992,0.09696,0.101376,7.07667,0.11488
+524,109.145,9.16211,8.26768,0.07008,0.755712,0.008224,0.006016,0.0448,0.108064,0.098912,7.05955,0.11632
+525,104.988,9.5249,8.35562,0.068288,0.853824,0.008256,0.005568,0.028928,0.096704,0.098304,7.0816,0.114144
+526,111.614,8.95947,9.29261,0.069632,0.931648,0.008608,0.004704,0.032768,0.100384,0.107616,7.9216,0.115648
+527,98.4663,10.1558,8.26371,0.076992,0.758624,0.008256,0.00608,0.028672,0.097888,0.098048,7.07446,0.114688
+528,108.371,9.22754,8.29203,0.069248,0.799584,0.008192,0.007296,0.029248,0.096576,0.09808,7.06947,0.114336
+529,107.422,9.30908,9.0927,0.071456,0.760064,0.009344,0.007008,0.028672,0.098336,0.098176,7.90333,0.11632
+530,92.219,10.8438,9.65834,0.068416,0.935936,0.009408,0.016224,0.029376,0.096544,0.098336,8.28998,0.114112
+531,94.8148,10.5469,8.71424,0.070784,0.828288,0.00832,0.006016,0.029728,0.097248,0.099872,7.45869,0.115296
+532,100.738,9.92676,8.25168,0.068992,0.768,0.00864,0.0056,0.029184,0.09792,0.09872,7.06134,0.11328
+533,108.154,9.24609,8.29373,0.069568,0.784448,0.008192,0.005824,0.028992,0.097568,0.1024,7.07021,0.126528
+534,109.087,9.16699,8.98653,0.069664,0.799936,0.008608,0.005632,0.029216,0.098656,0.099712,7.43898,0.436128
+535,100.683,9.93213,8.25069,0.07168,0.751616,0.008192,0.00608,0.028736,0.096288,0.098272,7.07584,0.113984
+536,109.536,9.12939,8.26394,0.069472,0.765408,0.008736,0.00656,0.030272,0.098656,0.0984,7.07155,0.11488
+537,106.822,9.36133,9.5377,0.070528,0.811008,0.008192,0.006144,0.030272,0.096704,0.098304,8.30438,0.11216
+538,90.7962,11.0137,8.30874,0.069632,0.802464,0.008544,0.005632,0.03328,0.100352,0.098304,7.07754,0.112992
+539,113.904,8.7793,8.30221,0.069664,0.794592,0.009408,0.006624,0.029056,0.098272,0.100352,7.07584,0.1184
+540,108.057,9.25439,9.45824,0.069504,0.744032,0.008288,0.006144,0.030208,0.098112,0.09696,8.29181,0.113184
+541,84.7472,11.7998,8.46237,0.069632,0.946208,0.008288,0.006016,0.028704,0.098304,0.098304,7.09226,0.114656
+542,122.671,8.15186,8.28621,0.08512,0.768896,0.009248,0.006528,0.02928,0.09776,0.0968,7.07894,0.113632
+543,107.552,9.29785,8.26474,0.069408,0.763328,0.008608,0.0056,0.029632,0.096224,0.098304,7.07958,0.114048
+544,102.791,9.72852,9.22522,0.075808,0.876096,0.008608,0.005664,0.029152,0.097792,0.09888,7.9175,0.115712
+545,87.6525,11.4087,8.47661,0.069344,0.963328,0.022752,0.006144,0.029952,0.097024,0.106592,7.06742,0.114048
+546,124.008,8.06396,8.58522,0.072832,0.758656,0.008416,0.00592,0.028672,0.099648,0.0984,7.39747,0.1152
+547,103.132,9.69629,9.17088,0.071232,0.825792,0.009504,0.004832,0.029792,0.098368,0.098624,7.91811,0.114624
+548,97.4078,10.2661,8.32682,0.069216,0.8208,0.008736,0.005632,0.029312,0.098432,0.108512,7.06979,0.116384
+549,97.2506,10.2827,8.88218,0.069664,0.982304,0.008608,0.0056,0.031552,0.104448,0.099808,7.4647,0.115488
+550,110.452,9.05371,8.31926,0.068896,0.826176,0.008384,0.006016,0.028832,0.098272,0.098304,7.07178,0.112608
+551,104.176,9.59912,8.74624,0.069632,0.82128,0.009632,0.004704,0.030112,0.0984,0.10496,7.49357,0.113952
+552,103.743,9.63916,10.2995,0.069568,0.846656,0.009632,0.004704,0.030304,0.098304,0.446848,8.67942,0.114016
+553,87.8141,11.3877,8.32595,0.069344,0.823456,0.008288,0.004832,0.030016,0.09696,0.098336,7.08093,0.113792
+554,107.343,9.31592,8.30678,0.07024,0.81104,0.008576,0.005632,0.029152,0.097984,0.09856,7.07104,0.11456
+555,105.84,9.44824,8.30742,0.06832,0.8192,0.008224,0.006112,0.028672,0.097504,0.097056,7.0696,0.112736
+556,104.966,9.52686,9.49222,0.069088,1.12723,0.009408,0.004928,0.030112,0.098368,0.098848,7.93754,0.116704
+557,95.278,10.4956,8.31184,0.069632,0.814464,0.00864,0.005568,0.02928,0.097856,0.098048,7.07466,0.113696
+558,107.236,9.3252,8.6528,0.069632,0.83968,0.00944,0.004896,0.029952,0.098048,0.097376,7.38909,0.114688
+559,100.55,9.94531,9.15299,0.069632,0.792768,0.008448,0.005824,0.028992,0.09808,0.098176,7.9384,0.112672
+560,98.5279,10.1494,8.25133,0.06912,0.768224,0.00848,0.005728,0.029088,0.09744,0.097152,7.06147,0.114624
+561,102.873,9.7207,8.73226,0.069312,0.841408,0.008672,0.005568,0.029216,0.098336,0.104608,7.46,0.115136
+562,103.476,9.66406,8.28938,0.06896,0.800768,0.006848,0.006112,0.028672,0.098272,0.098336,7.06746,0.113952
+563,97.9202,10.2124,8.77933,0.069568,0.894496,0.00864,0.005568,0.029344,0.097408,0.105344,7.45472,0.11424
+564,114.689,8.71924,10.2994,0.071232,0.799168,0.009632,0.004736,0.030112,0.0984,0.098336,9.07514,0.11264
+565,87.1378,11.4761,8.30938,0.068224,0.79056,0.023808,0.004832,0.0304,0.103968,0.097056,7.07536,0.115168
+566,102.667,9.74023,8.37667,0.070016,0.89024,0.00864,0.005632,0.029248,0.0984,0.098304,7.0615,0.114688
+567,108.217,9.24072,8.29392,0.069248,0.801152,0.009568,0.004768,0.03024,0.098112,0.098688,7.06794,0.114208
+568,106.6,9.38086,9.08698,0.069632,0.7528,0.008608,0.005632,0.029472,0.098432,0.098272,7.90896,0.115168
+569,97.5192,10.2544,8.26701,0.069664,0.7656,0.007552,0.005056,0.028672,0.098208,0.097536,7.08038,0.114336
+570,108.011,9.2583,8.29853,0.069536,0.795808,0.00864,0.004608,0.029984,0.098912,0.098336,7.07994,0.112768
+571,106.158,9.41992,9.13859,0.069536,0.776704,0.008192,0.006144,0.028672,0.099552,0.100864,7.93565,0.11328
+572,98.6798,10.1338,8.32531,0.068832,0.837824,0.00864,0.0056,0.02912,0.096704,0.098304,7.06717,0.11312
+573,108.205,9.2417,8.6511,0.068352,0.768,0.008192,0.006144,0.028672,0.098304,0.098336,7.45878,0.11632
+574,95.0128,10.5249,8.85414,0.068576,1.36598,0.008192,0.006144,0.03072,0.099936,0.09872,7.0615,0.114368
+575,107.478,9.3042,8.32624,0.069088,0.83408,0.008192,0.006112,0.028704,0.09808,0.098528,7.06906,0.1144
+576,108.595,9.2085,8.63654,0.069504,0.762112,0.009568,0.004768,0.030176,0.0984,0.098752,7.44858,0.114688
+577,95.3578,10.4868,8.37837,0.070336,0.884384,0.008544,0.005728,0.029088,0.097568,0.096992,7.07174,0.113984
+578,115.302,8.67285,8.30778,0.069376,0.81248,0.00864,0.005568,0.029632,0.104192,0.098272,7.06506,0.11456
+579,106.979,9.34766,9.45104,0.070848,0.80688,0.008832,0.006368,0.028704,0.098176,0.098176,7.87888,0.454176
+580,96.1909,10.396,8.25757,0.06912,0.766496,0.009344,0.004992,0.028672,0.098304,0.097632,7.06832,0.114688
+581,106.962,9.34912,8.25936,0.069792,0.756224,0.009376,0.006624,0.029056,0.098304,0.099904,7.07424,0.11584
+582,106.114,9.42383,9.4841,0.069152,0.786912,0.008192,0.006144,0.028672,0.098272,0.098336,8.27395,0.114464
+583,95.8443,10.4336,8.27568,0.068288,0.779744,0.008736,0.0056,0.029216,0.098016,0.098624,7.07277,0.114688
+584,108.763,9.19434,8.272,0.069568,0.758464,0.008256,0.00608,0.028672,0.098304,0.098304,7.09018,0.114176
+585,108.085,9.25195,8.28378,0.069664,0.790496,0.008224,0.006112,0.028672,0.098048,0.099808,7.06845,0.114304
+586,101.256,9.87598,9.44822,0.068544,1.09757,0.008224,0.006048,0.028736,0.098336,0.10032,7.92544,0.115008
+587,97.4635,10.2603,8.26867,0.06848,0.776064,0.00832,0.006016,0.0288,0.097632,0.098912,7.06976,0.114688
+588,108.057,9.25439,8.57306,0.06912,0.773696,0.008576,0.004672,0.029952,0.097056,0.098304,7.37891,0.112768
+589,104.918,9.53125,9.13085,0.0704,0.796736,0.009568,0.0048,0.030464,0.097792,0.09904,7.90931,0.112736
+590,100.659,9.93457,8.24918,0.068352,0.759776,0.00832,0.006016,0.028672,0.098336,0.098304,7.0673,0.114112
+591,108.159,9.24561,8.70416,0.06864,0.813024,0.008352,0.005984,0.028672,0.098176,0.098464,7.46698,0.115872
+592,99.8781,10.0122,8.7672,0.070976,1.26464,0.008224,0.006112,0.03072,0.09824,0.098272,7.07597,0.114048
+593,107.411,9.31006,8.24323,0.069664,0.751264,0.008512,0.005728,0.02896,0.096416,0.098304,7.06966,0.11472
+594,109.936,9.09619,8.66416,0.084032,0.755648,0.008256,0.006176,0.030592,0.0984,0.10032,7.46477,0.115968
+595,101.106,9.89062,8.29722,0.068384,0.810976,0.009376,0.00496,0.029696,0.096992,0.098144,7.06403,0.114656
+596,108.82,9.18945,8.5945,0.069088,0.770592,0.008224,0.006112,0.028672,0.098304,0.098304,7.39517,0.120032
+597,104.341,9.58398,10.2951,0.069632,0.7536,0.008256,0.006144,0.029824,0.098304,0.100864,9.11398,0.114464
+598,89.1986,11.2109,8.27597,0.069664,0.786432,0.009568,0.004768,0.030176,0.098528,0.097952,7.06541,0.113472
+599,106.973,9.34814,8.26314,0.069536,0.767712,0.008608,0.005632,0.029184,0.096256,0.0984,7.07165,0.11616
+600,109.384,9.14209,9.45968,0.06912,0.772288,0.008512,0.005696,0.02912,0.097792,0.09792,8.26467,0.11456
+601,96.0645,10.4097,8.25325,0.068032,0.754976,0.006912,0.006112,0.028672,0.098208,0.0984,7.07786,0.11408
+602,109.759,9.11084,8.26218,0.070144,0.769248,0.00864,0.005568,0.029152,0.096704,0.099584,7.07002,0.11312
+603,106.312,9.40625,8.32557,0.069184,0.81728,0.00864,0.005568,0.029312,0.097824,0.096992,7.08611,0.114656
+604,95.4067,10.4814,9.1113,0.06672,0.790496,0.00704,0.006144,0.028672,0.098304,0.098304,7.90221,0.113408
+605,99.6691,10.0332,8.27712,0.069184,0.778688,0.008192,0.006144,0.028672,0.097856,0.098272,7.07603,0.11408
+606,106.761,9.3667,8.69638,0.06816,0.804864,0.008384,0.005952,0.0288,0.098176,0.099712,7.46682,0.11552
+607,100.205,9.97949,8.92122,0.078016,1.0713,0.02048,0.006144,0.031872,0.096928,0.42624,7.07581,0.114432
+608,101.779,9.8252,8.32365,0.069184,0.821856,0.008608,0.007392,0.02928,0.098528,0.100096,7.07594,0.112768
+609,108.045,9.25537,10.2373,0.069536,0.74256,0.008704,0.0056,0.029536,0.097856,0.098368,9.07056,0.114592
+610,86.8275,11.5171,8.27792,0.069632,0.77792,0.008512,0.006048,0.028768,0.098304,0.106528,7.06762,0.114592
+611,110.119,9.08105,8.26528,0.069664,0.763584,0.007872,0.004704,0.03008,0.09824,0.099008,7.07584,0.116288
+612,106.021,9.43213,8.30045,0.069056,0.801344,0.008192,0.005824,0.028992,0.098144,0.09792,7.07638,0.114592
+613,109.408,9.14014,9.48634,0.0696,0.772128,0.0096,0.006656,0.028832,0.097824,0.098016,8.28899,0.114688
+614,96.1638,10.3989,8.27414,0.069408,0.781024,0.009344,0.004992,0.028672,0.09936,0.09888,7.06806,0.1144
+615,104.49,9.57031,8.29866,0.069472,0.805856,0.008192,0.006144,0.028704,0.097728,0.098272,7.0697,0.114592
+616,102.538,9.75244,9.52227,0.069568,1.17357,0.009312,0.005024,0.03008,0.096896,0.10192,7.92016,0.115744
+617,92.72,10.7852,8.36234,0.069408,0.8608,0.008224,0.014336,0.029824,0.096448,0.09696,7.07174,0.114592
+618,107.467,9.30518,8.65078,0.06848,0.77616,0.008192,0.006144,0.028672,0.0984,0.098208,7.45062,0.115904
+619,101.236,9.87793,8.52874,0.070336,1.01782,0.01024,0.00608,0.038944,0.096288,0.098336,7.07581,0.11488
+620,108.297,9.23389,8.30877,0.069632,0.811008,0.008256,0.00608,0.028672,0.098336,0.098304,7.07514,0.113344
+621,107.88,9.26953,8.66918,0.075776,0.75776,0.024,0.004672,0.0304,0.098272,0.098656,7.46499,0.114656
+622,97.6913,10.2363,8.60496,0.07168,1.11373,0.008576,0.005664,0.029184,0.097984,0.09776,7.06614,0.11424
+623,106.856,9.3584,8.30755,0.068544,0.808096,0.008032,0.00512,0.030176,0.096672,0.097856,7.07194,0.12112
+624,73.895,13.5327,8.30262,0.071168,0.776096,0.00864,0.005568,0.029184,0.098528,0.100352,7.09802,0.115072
+625,102.832,9.72461,9.56416,0.069632,0.836672,0.00864,0.00464,0.030176,0.096768,0.097728,8.3065,0.113408
+626,129.711,7.70947,8.71629,0.070656,0.848192,0.00864,0.0056,0.029472,0.09968,0.098432,7.44093,0.114688
+627,111.626,8.9585,9.51277,0.068864,0.785152,0.00944,0.004896,0.02992,0.09696,0.0984,8.30579,0.113344
+628,98.0702,10.1968,9.53328,0.067584,0.789696,0.00864,0.005568,0.029632,0.09968,0.098976,8.31898,0.114528
+629,94.2823,10.6064,8.25338,0.0704,0.759808,0.009632,0.004704,0.030016,0.09696,0.09824,7.06976,0.113856
+630,109.343,9.14551,8.64666,0.069664,0.770048,0.008256,0.006048,0.030176,0.098208,0.098944,7.45258,0.112736
+631,103.765,9.63721,9.83904,0.070272,0.89808,0.010688,0.004608,0.032672,0.096416,0.100224,8.51325,0.112832
+632,88.2378,11.333,9.8623,0.0696,0.775712,0.008352,0.005664,0.02928,0.097952,0.098368,8.66131,0.116064
+633,91.954,10.875,8.9311,0.069216,1.4361,0.009472,0.004832,0.02992,0.097056,0.098304,7.07174,0.114464
+634,110.238,9.07129,8.54934,0.068576,0.74752,0.0096,0.006336,0.02912,0.098304,0.098304,7.3687,0.12288
+635,104.762,9.54541,10.2891,0.071424,0.759104,0.008608,0.004672,0.030368,0.098272,0.098656,9.10541,0.112608
+636,87.8254,11.3862,9.47411,0.067872,0.759584,0.00928,0.005056,0.028672,0.098336,0.098272,8.29238,0.114656
+637,87.7313,11.3984,8.28966,0.071584,0.786432,0.008256,0.00608,0.028768,0.098048,0.10256,7.07379,0.114144
+638,122.298,8.17676,9.52086,0.069536,0.789088,0.008288,0.005952,0.028864,0.098304,0.097344,8.30973,0.11376
+639,95.7233,10.4468,8.25306,0.069408,0.747168,0.008608,0.0056,0.02928,0.098208,0.100544,7.07789,0.116352
+640,108.803,9.19092,9.46048,0.069504,0.75776,0.00864,0.0056,0.028992,0.098304,0.098528,8.28022,0.112928
+641,96.1954,10.3955,8.25818,0.069696,0.765888,0.008608,0.005632,0.029248,0.097632,0.098784,7.06992,0.112768
+642,109.099,9.16602,8.25504,0.071328,0.76,0.008352,0.005856,0.02896,0.098144,0.098464,7.0697,0.11424
+643,109.017,9.17285,8.25859,0.069632,0.7592,0.00864,0.006336,0.02864,0.0976,0.098496,7.07635,0.113696
+644,105.616,9.46826,9.39213,0.068992,1.0567,0.00864,0.005696,0.029184,0.098144,0.098624,7.91123,0.114912
+645,98.5326,10.1489,8.27133,0.06928,0.768384,0.008192,0.006112,0.028672,0.09808,0.098528,7.07981,0.114272
+646,109.759,9.11084,8.26336,0.068896,0.768768,0.009472,0.004864,0.029728,0.097248,0.098336,7.07152,0.114528
+647,107.186,9.32959,9.09722,0.069632,0.757472,0.008512,0.005664,0.02912,0.098336,0.099776,7.91584,0.112864
+648,98.9563,10.1055,8.2783,0.068448,0.77824,0.009248,0.005088,0.028672,0.098304,0.098048,7.07814,0.114112
+649,108.388,9.22607,8.67338,0.069504,0.759904,0.008352,0.005728,0.028928,0.096384,0.10448,7.48646,0.113632
+650,103.707,9.64258,8.98675,0.070368,0.776192,0.008192,0.005792,0.029024,0.098304,0.098304,7.7865,0.11408
+651,92.7368,10.7832,8.26368,0.069472,0.764064,0.008224,0.00608,0.028736,0.096256,0.098336,7.07786,0.114656
+652,120.527,8.29688,8.6528,0.069632,0.77824,0.00944,0.004896,0.029856,0.09712,0.098304,7.44858,0.116736
+653,96.3855,10.375,8.94093,0.069632,1.44998,0.008192,0.006144,0.028672,0.096416,0.098144,7.0697,0.114048
+654,109.163,9.16064,8.24781,0.068128,0.759104,0.008704,0.005568,0.02912,0.098368,0.097824,7.06634,0.114656
+655,109.419,9.13916,8.62768,0.069472,0.760384,0.009344,0.004992,0.029728,0.09728,0.098272,7.44355,0.114656
+656,102.252,9.77979,8.26163,0.07168,0.773408,0.00864,0.0056,0.02944,0.098144,0.098336,7.06278,0.1136
+657,110.196,9.07471,8.29786,0.069632,0.792608,0.008,0.005472,0.029216,0.096544,0.098304,7.07507,0.123008
+658,108.82,9.18945,8.61821,0.070112,0.74752,0.00816,0.005632,0.029216,0.099552,0.099136,7.44378,0.115104
+659,90.4833,11.0518,8.49949,0.08496,0.980992,0.009568,0.017056,0.028672,0.097536,0.098432,7.06826,0.114016
+660,108.486,9.21777,8.25354,0.069632,0.758336,0.009376,0.00496,0.029952,0.099072,0.100384,7.06557,0.116256
+661,106.136,9.42188,9.59866,0.069664,0.873024,0.008288,0.005952,0.028864,0.097696,0.097888,8.30362,0.113664
+662,93.7171,10.6704,8.35923,0.07168,0.863616,0.008672,0.0056,0.029344,0.097664,0.098624,7.07005,0.113984
+663,108.965,9.17725,8.35174,0.069632,0.845824,0.009888,0.0056,0.028576,0.097248,0.110624,7.07126,0.113088
+664,108.492,9.21729,8.26243,0.068416,0.751584,0.008192,0.006144,0.036864,0.097824,0.098368,7.08035,0.114688
+665,105.752,9.45605,9.3983,0.069632,1.04448,0.00784,0.004448,0.028672,0.098208,0.0984,7.92986,0.116768
+666,99.1432,10.0864,8.2776,0.069632,0.780128,0.008352,0.005888,0.028928,0.098208,0.098176,7.07402,0.114272
+667,104.442,9.57471,8.61594,0.069472,0.812512,0.008896,0.0056,0.029216,0.096256,0.098336,7.37248,0.123168
+668,107.096,9.3374,9.10726,0.071488,0.771584,0.008672,0.005632,0.028704,0.098816,0.098496,7.90938,0.114496
+669,97.5052,10.2559,8.29907,0.068512,0.800768,0.009184,0.00512,0.02976,0.096768,0.098752,7.07584,0.114368
+670,107.614,9.29248,8.28349,0.069632,0.773216,0.00864,0.004576,0.030112,0.098784,0.098336,7.08413,0.116064
+671,107.191,9.3291,8.30125,0.070464,0.802816,0.009216,0.00512,0.02976,0.09712,0.09776,7.07443,0.11456
+672,107.909,9.26709,8.28621,0.069408,0.79232,0.00864,0.0056,0.029184,0.097536,0.098176,7.07213,0.113216
+673,105.671,9.46338,8.37517,0.071904,0.868288,0.008672,0.005568,0.029216,0.096544,0.099584,7.07866,0.116736
+674,100.792,9.92139,8.30054,0.070112,0.810176,0.008416,0.004704,0.029984,0.09872,0.098176,7.06605,0.114208
+675,112.06,8.92383,8.34384,0.069312,0.851648,0.008608,0.004576,0.030016,0.09696,0.098144,7.06986,0.11472
+676,106.125,9.42285,8.35786,0.069024,0.864992,0.009408,0.004928,0.029856,0.09888,0.098592,7.06691,0.115264
+677,105.469,9.48145,8.36835,0.069376,0.878752,0.007648,0.00496,0.030016,0.096608,0.097728,7.0697,0.113568
+678,106.567,9.38379,8.30995,0.069632,0.810656,0.008544,0.005696,0.02912,0.097728,0.096832,7.07792,0.113824
+679,106.401,9.39844,8.69379,0.069632,0.806464,0.00864,0.0056,0.029216,0.098336,0.100352,7.46083,0.11472
+680,99.9854,10.0015,8.34765,0.06896,0.851872,0.008608,0.0056,0.029216,0.09792,0.09888,7.07302,0.113568
+681,103.398,9.67139,8.37254,0.069024,0.885664,0.008256,0.00608,0.028672,0.097984,0.098176,7.064,0.114688
+682,102.043,9.7998,8.41421,0.069632,0.9216,0.0096,0.004736,0.029952,0.098208,0.098432,7.06803,0.114016
+683,106.639,9.37744,9.58454,0.069664,0.843456,0.00848,0.005728,0.029088,0.096288,0.098272,8.31898,0.114592
+684,93.6914,10.6733,8.3456,0.069664,0.843648,0.008288,0.005952,0.028864,0.097856,0.098624,7.07926,0.11344
+685,106.39,9.39941,8.30906,0.069952,0.813056,0.008352,0.005984,0.028672,0.098272,0.098336,7.07306,0.113376
+686,105.927,9.44043,9.14678,0.070048,0.796512,0.008352,0.00592,0.028896,0.09824,0.098368,7.92371,0.116736
+687,94.8631,10.5415,8.34912,0.069632,0.845568,0.008448,0.005792,0.02896,0.096352,0.099648,7.08166,0.113056
+688,107.478,9.3042,8.67738,0.06928,0.794976,0.00928,0.005056,0.028672,0.098336,0.10224,7.4561,0.11344
+689,101.527,9.84961,9.04099,0.069664,0.813056,0.008192,0.006048,0.028768,0.098048,0.09856,7.8048,0.113856
+690,98.7464,10.127,8.36608,0.07968,0.864032,0.008608,0.0056,0.029216,0.097472,0.097088,7.07162,0.112768
+691,105.714,9.45947,8.69238,0.068288,0.810784,0.008416,0.005792,0.029024,0.098304,0.09968,7.45539,0.116704
+692,102.298,9.77539,8.30054,0.068832,0.807712,0.008416,0.00592,0.028672,0.098304,0.098304,7.0697,0.114688
+693,104.511,9.56836,8.30682,0.06848,0.804864,0.008192,0.006144,0.028672,0.096256,0.098304,7.06928,0.126624
+694,95.3312,10.4897,8.64534,0.070048,0.775712,0.00864,0.0056,0.029472,0.098432,0.099776,7.44298,0.114688
+695,117.438,8.51514,8.2904,0.069312,0.794944,0.009536,0.004832,0.029824,0.09712,0.09984,7.07216,0.112832
+696,108.567,9.21094,9.39533,0.069632,1.05062,0.008224,0.006112,0.028672,0.099488,0.09712,7.91962,0.11584
+697,98.4615,10.1562,8.28826,0.069184,0.788544,0.008608,0.0056,0.029184,0.096256,0.098304,7.07946,0.11312
+698,109.203,9.15723,8.2489,0.069408,0.759424,0.008736,0.005568,0.029312,0.098304,0.097952,7.06595,0.11424
+699,107.795,9.27686,9.10054,0.069056,0.747904,0.008384,0.005632,0.029024,0.09808,0.098688,7.92986,0.11392
+700,98.694,10.1323,8.27782,0.069568,0.75968,0.008384,0.005824,0.028672,0.106816,0.098304,7.08547,0.115104
+701,107.478,9.3042,8.73808,0.069632,0.83552,0.008256,0.006016,0.0288,0.097664,0.105088,7.4727,0.1144
+702,103.518,9.66016,9.07674,0.070688,0.834528,0.009248,0.019424,0.029824,0.098272,0.388,7.51398,0.112768
+703,94.2302,10.6123,10.0434,0.069472,0.922944,0.008672,0.005568,0.02928,0.096608,0.098336,8.69914,0.113376
+704,93.0909,10.7422,10.4264,0.070656,0.863008,0.008416,0.005792,0.029024,0.098304,0.098304,9.13968,0.113184
+705,89.6319,11.1567,8.26122,0.068928,0.77856,0.00864,0.0056,0.029216,0.09648,0.098304,7.0615,0.113984
+706,103.143,9.69531,9.50874,0.069664,0.82944,0.008192,0.006112,0.0288,0.099232,0.098848,8.25597,0.11248
+707,74.7473,13.3784,9.53258,0.0696,0.806944,0.008224,0.006112,0.028672,0.098112,0.098496,8.30368,0.112736
+708,95.8846,10.4292,9.45971,0.069632,0.761888,0.009568,0.004736,0.03024,0.098816,0.098272,8.27296,0.1136
+709,93.8847,10.6514,8.35994,0.070976,0.860544,0.008512,0.005728,0.02896,0.096384,0.110592,7.0656,0.11264
+710,108.297,9.23389,9.83306,0.068224,0.842976,0.008704,0.005568,0.029056,0.098112,0.098656,8.55603,0.125728
+711,92.5273,10.8076,10.3215,0.069632,0.790016,0.008704,0.0056,0.029216,0.098304,0.098304,9.10848,0.113216
+712,89.09,11.2246,8.60653,0.068416,0.802816,0.008192,0.006016,0.0288,0.098304,0.098304,7.37456,0.12112
+713,104.843,9.53809,10.3417,0.071328,0.79088,0.009216,0.00512,0.0288,0.098304,0.108448,9.11722,0.112384
+714,88.566,11.291,9.49706,0.069088,0.768992,0.009248,0.005088,0.029696,0.097312,0.098272,8.30464,0.11472
+715,92.0574,10.8628,8.40979,0.07872,0.896608,0.008608,0.00576,0.028992,0.096352,0.098272,7.08198,0.114496
+716,111.882,8.93799,8.32922,0.069632,0.831488,0.008384,0.008,0.028672,0.098304,0.098336,7.07171,0.114688
+717,107.259,9.32324,9.10758,0.069184,0.76384,0.008608,0.005664,0.029152,0.100576,0.098336,7.9168,0.115424
+718,92.2772,10.8369,8.29194,0.069152,0.786912,0.009568,0.004768,0.028672,0.107584,0.107456,7.06355,0.114272
+719,115.231,8.67822,8.6056,0.069568,0.810976,0.008288,0.00576,0.029056,0.09808,0.097728,7.36746,0.118688
+720,105.518,9.47705,9.11907,0.071456,0.757536,0.008672,0.00576,0.029024,0.10144,0.111104,7.92006,0.114016
+721,98.775,10.124,8.28074,0.069664,0.784832,0.008544,0.005888,0.028928,0.0976,0.099008,7.07187,0.1144
+722,108.93,9.18018,8.66832,0.068896,0.793152,0.008352,0.006048,0.028608,0.097792,0.096992,7.45261,0.115872
+723,95.1629,10.5083,8.90666,0.0696,1.4049,0.008256,0.006016,0.03104,0.097728,0.098688,7.07584,0.114592
+724,103.828,9.63135,8.7481,0.069632,0.930944,0.00704,0.006144,0.028672,0.100096,0.09856,7.3928,0.114208
+725,103.065,9.70264,9.89341,0.070048,0.759456,0.008512,0.005472,0.029344,0.098336,0.098304,8.71011,0.113824
+726,88.2682,11.3291,8.48899,0.069056,0.973056,0.00864,0.0056,0.029344,0.11072,0.104448,7.07174,0.116384
+727,106.384,9.3999,8.38893,0.070272,0.858112,0.008512,0.01504,0.03584,0.098112,0.098496,7.08963,0.114912
+728,108.67,9.20215,8.34438,0.068384,0.843424,0.008544,0.006144,0.029792,0.097184,0.101632,7.07456,0.11472
+729,104.431,9.57568,9.38403,0.069472,1.05078,0.00944,0.004896,0.030176,0.0968,0.099744,7.90762,0.115104
+730,99.5383,10.0464,8.2648,0.069184,0.77584,0.008672,0.005536,0.02912,0.096832,0.098336,7.06682,0.114464
+731,108.682,9.20117,8.25949,0.069088,0.758304,0.0096,0.004736,0.029888,0.097088,0.098304,7.07789,0.114592
+732,101.658,9.83691,9.26845,0.077824,0.909312,0.00944,0.004896,0.030112,0.098912,0.098336,7.92573,0.113888
+733,100.912,9.90967,8.30054,0.06944,0.792704,0.008256,0.005952,0.028864,0.096256,0.098304,7.08608,0.114688
+734,109.122,9.16406,8.6496,0.06848,0.75776,0.009312,0.005024,0.029824,0.104672,0.10512,7.45613,0.11328
+735,97.2783,10.2798,9.30202,0.069632,0.952064,0.008448,0.006048,0.0288,0.096224,0.108416,7.9192,0.113184
+736,101.066,9.89453,8.35421,0.069056,0.846528,0.00848,0.00576,0.029056,0.098304,0.098304,7.08358,0.115136
+737,99.2344,10.0771,8.67158,0.069056,0.764448,0.008576,0.005664,0.029152,0.098304,0.100032,7.47962,0.116736
+738,111.736,8.94971,8.33126,0.069088,0.832064,0.009216,0.005088,0.028704,0.098272,0.098176,7.0775,0.113152
+739,107.236,9.3252,8.40202,0.069056,0.898976,0.00864,0.005504,0.028992,0.096896,0.106496,7.07325,0.114208
+740,106.252,9.41162,8.96566,0.069632,0.7712,0.008608,0.004704,0.030144,0.098752,0.100352,7.45267,0.4296
+741,100.068,9.99316,8.31296,0.07168,0.81712,0.008224,0.006016,0.0288,0.097472,0.098464,7.07168,0.113504
+742,107.806,9.27588,8.32307,0.069376,0.831488,0.008448,0.005728,0.029088,0.098304,0.09824,7.06566,0.116736
+743,107.394,9.31152,9.53344,0.07088,0.795424,0.009536,0.0048,0.029952,0.097024,0.106496,8.30573,0.1136
+744,95.4734,10.4741,8.33005,0.068416,0.827328,0.008256,0.005952,0.028864,0.097952,0.097984,7.06832,0.126976
+745,106.545,9.38574,8.35382,0.069632,0.853824,0.008384,0.005856,0.02896,0.098304,0.099808,7.0743,0.114752
+746,108.028,9.25684,8.25754,0.069344,0.768288,0.008192,0.006048,0.028768,0.09792,0.098336,7.0673,0.113344
+747,105.955,9.43799,9.32141,0.068512,0.95968,0.02336,0.005792,0.031072,0.104448,0.099904,7.91392,0.11472
+748,95.3578,10.4868,8.28621,0.069632,0.781376,0.00864,0.0128,0.038944,0.098272,0.099392,7.06246,0.114688
+749,107.858,9.27148,8.31078,0.06928,0.813408,0.008416,0.00592,0.02992,0.097088,0.098272,7.07379,0.114688
+750,107.04,9.34229,9.14592,0.065536,0.806912,0.00832,0.006016,0.028672,0.099712,0.100704,7.91581,0.11424
+751,97.8874,10.2158,8.30026,0.069664,0.790528,0.00816,0.005856,0.02896,0.1024,0.108544,7.07174,0.1144
+752,106.318,9.40576,8.70925,0.069632,0.817056,0.008256,0.0056,0.029184,0.104416,0.104544,7.45677,0.113792
+753,101.789,9.82422,9.25814,0.07168,0.91456,0.007136,0.006048,0.028672,0.096256,0.098304,7.92166,0.113824
+754,99.4561,10.0547,8.30352,0.068512,0.806912,0.008224,0.006112,0.028672,0.099552,0.098752,7.0721,0.114688
+755,107.147,9.33301,8.72291,0.068192,0.837632,0.008224,0.006112,0.028672,0.098336,0.10032,7.45882,0.116608
+756,102.078,9.79639,8.35235,0.068224,0.87056,0.009696,0.004672,0.030048,0.097952,0.097248,7.05946,0.114496
+757,105.475,9.48096,8.44486,0.068544,0.918912,0.00864,0.01584,0.030496,0.103232,0.106656,7.07728,0.115264
+758,106.351,9.40283,9.46218,0.070112,0.86768,0.00864,0.004672,0.030272,0.09872,0.098048,8.16934,0.114688
+759,96.7818,10.3325,8.28003,0.069632,0.773888,0.008448,0.005792,0.029024,0.096256,0.098304,7.08403,0.114656
+760,108.613,9.20703,8.25139,0.069344,0.760096,0.008192,0.005664,0.029152,0.09952,0.09936,7.06333,0.116736
+761,109.46,9.13574,9.47814,0.069664,0.756992,0.008608,0.006048,0.029088,0.096256,0.099456,8.29875,0.11328
+762,95.2957,10.4937,8.34534,0.068352,0.819136,0.008224,0.014336,0.030432,0.104736,0.102176,7.06922,0.128736
+763,103.838,9.63037,8.32467,0.069664,0.829408,0.008192,0.006112,0.028704,0.097728,0.09872,7.07149,0.114656
+764,110.553,9.04541,8.25382,0.068096,0.757632,0.008416,0.00592,0.02992,0.097056,0.097888,7.07421,0.114688
+765,103.034,9.70557,9.40352,0.069152,1.06544,0.008192,0.006144,0.029856,0.09712,0.097824,7.91565,0.114144
+766,97.2922,10.2783,8.38614,0.069184,0.887232,0.015872,0.004608,0.030208,0.096768,0.098304,7.0696,0.114368
+767,109.818,9.10596,8.25949,0.068224,0.768,0.00944,0.004896,0.030144,0.096672,0.097728,7.06979,0.114592
+768,108.988,9.17529,9.09792,0.069504,0.753536,0.00864,0.006688,0.028672,0.099392,0.100864,7.91597,0.114656
+769,87.6562,11.4082,9.54896,0.069632,0.82944,0.008192,0.006144,0.028672,0.097888,0.098752,8.29642,0.113824
+770,107.852,9.27197,8.66435,0.069504,0.764064,0.00816,0.0056,0.029216,0.098304,0.099872,7.47363,0.116
+771,98.9611,10.105,8.26765,0.06816,0.768,0.00832,0.006016,0.028672,0.098304,0.098304,7.07741,0.114464
+772,96.1367,10.4019,8.43571,0.075168,0.92576,0.008512,0.01456,0.032352,0.098752,0.09936,7.06656,0.114688
+773,112.713,8.87207,9.61056,0.069664,0.89088,0.00928,0.005024,0.02976,0.097248,0.098272,8.29766,0.112768
+774,96.3629,10.3774,8.26179,0.06928,0.772192,0.008448,0.005952,0.028864,0.098016,0.097792,7.06794,0.113312
+775,107.71,9.28418,8.32845,0.069632,0.835072,0.008608,0.0056,0.02928,0.097792,0.098848,7.06723,0.116384
+776,103.759,9.6377,8.34765,0.069312,0.862528,0.00832,0.006016,0.028704,0.098272,0.098336,7.06147,0.114688
+777,104.086,9.60742,9.36339,0.069632,1.0199,0.02048,0.006144,0.03072,0.1024,0.09936,7.89808,0.116672
+778,97.496,10.2568,8.40477,0.07008,0.915456,0.00928,0.005056,0.029824,0.097312,0.099296,7.06448,0.113984
+779,106.817,9.36182,8.30205,0.069088,0.811328,0.008416,0.005824,0.028992,0.097376,0.098528,7.06806,0.114432
+780,103.754,9.63818,9.17104,0.066592,0.833376,0.008352,0.00592,0.028864,0.100384,0.099936,7.91386,0.11376
+781,92.9051,10.7637,8.39898,0.069376,0.900576,0.006976,0.006144,0.040128,0.097088,0.098304,7.06755,0.112832
+782,109.718,9.11426,9.8199,0.069632,1.10797,0.009216,0.00512,0.029952,0.098176,0.097152,8.28621,0.11648
+783,89.0628,11.228,8.43046,0.068288,0.913376,0.008416,0.013856,0.02912,0.10624,0.102688,7.07491,0.113568
+784,105.442,9.48389,8.43018,0.068192,0.915392,0.008256,0.005984,0.028832,0.108512,0.112192,7.06813,0.114688
+785,106.622,9.37891,9.3897,0.069664,0.814912,0.008384,0.006112,0.028672,0.09792,0.1144,8.13514,0.114496
+786,96.4536,10.3677,8.36486,0.068544,0.862176,0.009376,0.00496,0.029824,0.097152,0.098304,7.07994,0.114592
+787,105.399,9.48779,8.32883,0.069344,0.8344,0.00816,0.006144,0.028704,0.098304,0.10032,7.0656,0.117856
+788,105.851,9.44727,8.36128,0.069568,0.868416,0.009632,0.004704,0.02992,0.09824,0.09712,7.06973,0.113952
+789,107.892,9.26855,9.28512,0.069632,0.912768,0.008608,0.005632,0.031456,0.104064,0.105888,7.93085,0.116224
+790,95.961,10.4209,8.4128,0.070784,0.904064,0.008224,0.006112,0.0288,0.098176,0.098048,7.08429,0.114304
+791,108.521,9.21484,8.28006,0.069088,0.78816,0.00864,0.005632,0.029088,0.0968,0.098304,7.06966,0.114688
+792,107.102,9.33691,9.25712,0.072512,0.9216,0.008192,0.006144,0.028672,0.098368,0.099936,7.90557,0.116128
+793,95.692,10.4502,8.34902,0.069408,0.838016,0.008192,0.006144,0.036896,0.103488,0.097184,7.07501,0.114688
+794,106.257,9.41113,9.79347,0.073664,1.04154,0.008704,0.018816,0.043008,0.108,0.098528,8.28595,0.115264
+795,87.9045,11.376,9.01085,0.069056,1.51405,0.008416,0.00592,0.029792,0.097184,0.098112,7.07392,0.1144
+796,108.624,9.20605,8.31078,0.069088,0.807456,0.008224,0.006112,0.028704,0.098272,0.100064,7.07408,0.118784
+797,108.131,9.24805,8.65469,0.069792,0.771616,0.00864,0.005568,0.02928,0.098304,0.1,7.45715,0.114336
+798,101.166,9.88477,8.29238,0.071232,0.798464,0.00864,0.0056,0.029024,0.098272,0.096736,7.0713,0.11312
+799,108.959,9.17773,8.31693,0.069632,0.814176,0.00864,0.005632,0.029312,0.096608,0.098336,7.0799,0.114688
+800,105.069,9.51758,9.57178,0.069632,0.82912,0.022848,0.006144,0.028672,0.098336,0.108064,8.29626,0.112704
+801,92.519,10.8086,8.28634,0.067712,0.786464,0.00816,0.006144,0.02976,0.097248,0.098016,7.0799,0.112928
+802,111.498,8.96875,8.42413,0.069376,0.928704,0.008192,0.00608,0.028736,0.100224,0.100288,7.06579,0.116736
+803,103.153,9.69434,8.33962,0.069664,0.841696,0.008192,0.006112,0.028704,0.096448,0.09936,7.0761,0.113344
+804,108.716,9.19824,9.60915,0.067584,0.894976,0.009216,0.00512,0.032224,0.104992,0.100416,8.27795,0.116672
+805,87.784,11.3916,9.05274,0.069664,1.55702,0.008192,0.006048,0.028768,0.098208,0.0984,7.07341,0.113024
+806,108.257,9.2373,8.74086,0.06864,0.82176,0.008672,0.005568,0.028864,0.106912,0.099776,7.48803,0.11264
+807,102.033,9.80078,9.21491,0.070592,0.866304,0.0096,0.004768,0.029856,0.097088,0.098304,7.92576,0.11264
+808,99.2248,10.0781,8.28448,0.069056,0.79344,0.00944,0.004896,0.030048,0.098176,0.09824,7.06851,0.112672
+809,106.901,9.35449,8.67226,0.069728,0.793504,0.008192,0.006144,0.028672,0.099392,0.100896,7.4489,0.116832
+810,96.4309,10.3701,8.64208,0.0712,1.14547,0.00832,0.00592,0.028896,0.097856,0.098496,7.072,0.11392
+811,107.71,9.28418,8.34701,0.069472,0.826816,0.008992,0.0056,0.029248,0.104416,0.105696,7.08202,0.114752
+812,99.2344,10.0771,8.99866,0.069632,0.8168,0.008544,0.005728,0.029088,0.099744,0.098912,7.46269,0.40752
+813,106.656,9.37598,8.31283,0.071712,0.819168,0.008256,0.00608,0.028672,0.098304,0.09792,7.06803,0.114688
+814,109.122,9.16406,8.27955,0.073376,0.772448,0.009664,0.004704,0.029952,0.098688,0.097952,7.07552,0.117248
+815,105.177,9.50781,9.56893,0.070208,0.845088,0.008672,0.005504,0.029184,0.096704,0.09824,8.30259,0.112736
+816,96.9881,10.3105,8.28755,0.069632,0.788032,0.00864,0.005632,0.029056,0.09792,0.100544,7.06755,0.120544
+817,105.632,9.4668,8.30208,0.070688,0.783328,0.009312,0.005024,0.032768,0.112544,0.099776,7.07446,0.114176
+818,104.821,9.54004,8.43987,0.068768,0.9512,0.00944,0.004896,0.030112,0.096864,0.098304,7.0656,0.114688
+819,105.927,9.44043,9.46586,0.069632,1.10102,0.00864,0.0056,0.029152,0.110368,0.098496,7.92621,0.116736
+820,97.654,10.2402,8.31283,0.069408,0.815264,0.008256,0.005984,0.028832,0.098304,0.098048,7.07405,0.114688
+821,108.188,9.24316,8.28154,0.069568,0.775712,0.008736,0.0056,0.029184,0.097312,0.097376,7.08394,0.114112
+822,108.085,9.25195,9.1081,0.068256,0.783744,0.0088,0.005696,0.02912,0.10032,0.099552,7.89901,0.1136
+823,98.8799,10.1133,8.2903,0.069536,0.787712,0.00864,0.0056,0.029216,0.096672,0.099584,7.08003,0.113312
+824,109.824,9.10547,8.64611,0.06912,0.754176,0.008192,0.007232,0.029216,0.096672,0.106496,7.46086,0.114144
+825,102.369,9.76855,9.0071,0.069632,0.791648,0.008608,0.004608,0.030016,0.096992,0.098272,7.79424,0.113088
+826,101.366,9.86523,8.2473,0.069344,0.756,0.009408,0.004928,0.029984,0.098112,0.098208,7.06662,0.114688
+827,106.856,9.3584,8.71174,0.075776,0.823296,0.008192,0.00608,0.028736,0.09824,0.099488,7.45738,0.11456
+828,97.4032,10.2666,8.9585,0.069248,1.45658,0.00864,0.0056,0.029216,0.098176,0.098528,7.07789,0.114624
+829,99.2152,10.0791,8.45571,0.069696,0.931744,0.00864,0.0056,0.039456,0.098304,0.098304,7.08925,0.11472
+830,108.177,9.24414,9.56502,0.070304,0.808672,0.008672,0.005664,0.029152,0.098304,0.098176,8.33302,0.113056
+831,94.3518,10.5986,8.29645,0.069632,0.783776,0.00864,0.005568,0.029248,0.096448,0.098272,7.08762,0.117248
+832,107.846,9.27246,8.27098,0.069664,0.772064,0.009312,0.005056,0.02992,0.099072,0.100288,7.06771,0.117888
+833,106.778,9.36523,9.49427,0.069088,0.78112,0.008192,0.005952,0.028864,0.09792,0.098688,8.29034,0.114112
+834,93.4818,10.6973,8.41098,0.075776,0.896288,0.023264,0.005792,0.029024,0.1024,0.099776,7.06131,0.117344
+835,105.873,9.44531,8.30234,0.068224,0.8008,0.008288,0.006016,0.028672,0.098112,0.097792,7.0801,0.114336
+836,108.67,9.20215,8.28624,0.069216,0.797088,0.009344,0.005024,0.02992,0.097024,0.098304,7.06698,0.113344
+837,107.665,9.28809,9.11533,0.069632,0.759584,0.008416,0.00576,0.029056,0.098304,0.099936,7.93152,0.11312
+838,91.6331,10.9131,9.59078,0.069344,0.820992,0.008736,0.018112,0.028992,0.107584,0.098656,8.32368,0.114688
+839,100.137,9.98633,8.7183,0.070656,0.835904,0.008608,0.0056,0.029152,0.097984,0.101024,7.45267,0.116704
+840,100.807,9.91992,8.28653,0.067904,0.794592,0.008224,0.006016,0.0288,0.098112,0.098272,7.07107,0.113536
+841,99.1864,10.082,8.40458,0.069408,0.898912,0.008576,0.005728,0.029088,0.096256,0.09936,7.07683,0.120416
+842,117.176,8.53418,8.68573,0.071104,0.803552,0.008448,0.005888,0.029728,0.099296,0.099808,7.45491,0.112992
+843,101.306,9.87109,8.27542,0.071136,0.78096,0.008256,0.0056,0.029312,0.097472,0.098144,7.0703,0.11424
+844,101.186,9.88281,8.40858,0.069248,0.906976,0.00864,0.005632,0.02912,0.098592,0.098336,7.07754,0.114496
+845,113.866,8.78223,9.53744,0.069792,0.794624,0.008384,0.005952,0.028704,0.098272,0.098304,8.32102,0.112384
+846,95.7367,10.4453,8.26778,0.069664,0.772064,0.009248,0.005088,0.029824,0.097184,0.098272,7.0729,0.113536
+847,103.896,9.625,8.37501,0.06832,0.863872,0.008576,0.005728,0.029088,0.098336,0.099872,7.08566,0.115552
+848,106.856,9.3584,8.32566,0.068128,0.829312,0.00832,0.005888,0.028928,0.098304,0.098304,7.07379,0.114688
+849,101.88,9.81543,9.45654,0.0808,1.12435,0.008224,0.006144,0.02864,0.098272,0.098336,7.8968,0.114976
+850,99.6109,10.0391,8.28406,0.069664,0.79696,0.008608,0.005632,0.02896,0.098624,0.098336,7.06336,0.11392
+851,107.71,9.28418,9.89181,0.06928,0.805568,0.008384,0.005792,0.029024,0.09744,0.098336,8.66374,0.11424
+852,91.3715,10.9443,9.04915,0.07072,0.828352,0.009472,0.004864,0.030016,0.097152,0.098144,7.79638,0.114048
+853,99.6497,10.0352,8.32512,0.069632,0.8192,0.008192,0.006144,0.028672,0.09792,0.098592,7.08342,0.113344
+854,107.45,9.30664,8.67328,0.06944,0.799232,0.008384,0.005728,0.029088,0.099392,0.099232,7.44653,0.116256
+855,101.416,9.86035,8.28138,0.069632,0.785472,0.00864,0.005632,0.028896,0.097088,0.09952,7.07219,0.114304
+856,107.869,9.27051,8.36966,0.069376,0.868608,0.008192,0.006144,0.028672,0.098304,0.098304,7.06963,0.122432
+857,107.653,9.28906,8.66922,0.070208,0.778656,0.008192,0.006112,0.028704,0.09936,0.099296,7.46464,0.114048
+858,101.82,9.82129,8.32512,0.071296,0.831776,0.008288,0.00592,0.028896,0.098016,0.098048,7.06938,0.113504
+859,107.338,9.31641,8.30355,0.069568,0.805888,0.009408,0.004928,0.02992,0.097024,0.098144,7.07398,0.114688
+860,108.417,9.22363,9.42454,0.069536,0.794816,0.008352,0.005824,0.028992,0.098304,0.098304,7.8696,0.450816
+861,95.38,10.4844,8.3232,0.069504,0.816768,0.00864,0.0056,0.02928,0.098016,0.098272,7.08253,0.114592
+862,105.437,9.48438,8.33165,0.069632,0.8352,0.00864,0.0056,0.029248,0.098624,0.100352,7.06752,0.116832
+863,105.317,9.49512,9.57411,0.069184,0.864864,0.008448,0.005824,0.028992,0.096448,0.1,8.28637,0.113984
+864,94.3431,10.5996,9.13408,0.066912,0.801312,0.007648,0.004768,0.030144,0.098912,0.09936,7.90944,0.115584
+865,98.6893,10.1328,8.30134,0.068544,0.80672,0.008224,0.006112,0.028672,0.097504,0.097056,7.07584,0.112672
+866,107.687,9.28613,8.5873,0.069632,0.786432,0.008064,0.006208,0.028736,0.098304,0.098048,7.37715,0.11472
+867,105.133,9.51172,9.12541,0.071392,0.79904,0.00832,0.005984,0.029984,0.098912,0.100064,7.89754,0.114176
+868,98.8894,10.1123,8.2839,0.06928,0.787424,0.009312,0.005024,0.02976,0.098368,0.097152,7.0735,0.11408
+869,106.689,9.37305,8.66294,0.075776,0.775296,0.008704,0.005632,0.029216,0.097888,0.0984,7.45664,0.115392
+870,97.2275,10.2852,8.97366,0.069248,1.47882,0.00848,0.00592,0.034304,0.097056,0.09824,7.06762,0.113984
+871,107.371,9.31348,8.34765,0.069568,0.824768,0.00784,0.005088,0.028672,0.09824,0.098016,7.08848,0.126976
+872,107.36,9.31445,8.70042,0.069856,0.819488,0.008192,0.006144,0.028672,0.099744,0.100736,7.45494,0.11264
+873,101.769,9.82617,8.30874,0.07168,0.812256,0.00864,0.005568,0.029248,0.098496,0.096416,7.07174,0.114688
+874,103.434,9.66797,9.41827,0.069632,1.09366,0.008192,0.006112,0.028672,0.09936,0.097312,7.89907,0.116256
+875,95.2913,10.4941,8.32317,0.06896,0.836352,0.008192,0.005984,0.028832,0.096352,0.098208,7.0656,0.114688
+876,110.703,9.0332,9.53344,0.069056,0.813664,0.00928,0.005024,0.029824,0.098592,0.096928,8.29837,0.112704
+877,94.317,10.6025,8.31392,0.069696,0.814688,0.008608,0.0056,0.029216,0.096288,0.10032,7.07533,0.114176
+878,105.036,9.52051,8.3927,0.069056,0.903744,0.009248,0.005088,0.028832,0.097856,0.0984,7.06579,0.114688
+879,109.052,9.16992,9.15987,0.07168,0.808992,0.00816,0.006144,0.028736,0.097792,0.099904,7.92211,0.116352
+880,98.49,10.1533,8.27187,0.069152,0.780768,0.008224,0.006112,0.028704,0.098304,0.097824,7.06922,0.113568
+881,108.085,9.25195,8.60982,0.069344,0.800224,0.008608,0.004512,0.02992,0.097056,0.098336,7.38848,0.113344
+882,103.372,9.67383,9.19552,0.069632,0.851968,0.008192,0.00576,0.029056,0.099712,0.098848,7.91965,0.112704
+883,97.8406,10.2207,8.27885,0.069632,0.791392,0.009472,0.004864,0.028704,0.09744,0.097056,7.06566,0.114624
+884,106.257,9.41113,8.76829,0.076,0.880928,0.008672,0.005824,0.028992,0.098304,0.101888,7.45235,0.115328
+885,96.2677,10.3877,9.03949,0.069632,1.50886,0.00864,0.0056,0.028928,0.09664,0.098272,7.10861,0.114304
+886,106.534,9.38672,9.29254,0.069504,0.94432,0.00864,0.005632,0.031456,0.104448,0.098304,7.91514,0.115104
+887,96.024,10.4141,9.54778,0.069632,0.828704,0.00864,0.005632,0.02928,0.098016,0.09872,8.29651,0.11264
+888,96.0781,10.4082,8.3056,0.068544,0.79872,0.009216,0.00512,0.028672,0.104448,0.106016,7.07018,0.114688
+889,108.786,9.19238,8.25139,0.069664,0.757728,0.009472,0.004864,0.030144,0.09824,0.098944,7.06899,0.113344
+890,107.597,9.29395,8.31066,0.068224,0.822528,0.008608,0.0056,0.029216,0.09792,0.098176,7.06592,0.114464
+891,107.88,9.26953,9.23808,0.069216,0.886848,0.008544,0.005888,0.030976,0.104448,0.09984,7.91606,0.116256
+892,97.7006,10.2354,8.28797,0.069664,0.7864,0.00832,0.006048,0.028736,0.098208,0.098304,7.07776,0.114528
+893,108.074,9.25293,8.28608,0.068448,0.79184,0.008608,0.0056,0.029152,0.096608,0.099584,7.07251,0.113728
+894,108.521,9.21484,9.09312,0.07168,0.769536,0.008704,0.005632,0.029184,0.098144,0.098464,7.89677,0.115008
+895,95.8891,10.4287,8.35386,0.069504,0.854048,0.008352,0.00592,0.028896,0.09792,0.098336,7.07725,0.113632
+896,107.473,9.30469,8.76134,0.069632,0.88064,0.009504,0.004864,0.029664,0.098624,0.098304,7.45712,0.112992
+897,100.353,9.96484,9.17094,0.069632,0.813056,0.008192,0.006144,0.028672,0.098112,0.09808,7.93616,0.112896
+898,97.1445,10.2939,9.53766,0.069056,0.830144,0.008224,0.006048,0.028736,0.098336,0.098272,8.28573,0.11312
+899,95.943,10.4229,9.43782,0.07008,0.790368,0.008512,0.006144,0.029952,0.097056,0.098176,7.89126,0.446272
+900,94.7885,10.5498,8.32102,0.069472,0.81936,0.008224,0.006048,0.028736,0.098144,0.10256,7.07379,0.114688
+901,90.2123,11.085,8.30093,0.0696,0.792992,0.009344,0.004992,0.030176,0.0984,0.100288,7.0784,0.116736
+902,134.418,7.43945,9.53139,0.069344,0.827008,0.008608,0.005568,0.029504,0.098272,0.10016,8.28029,0.11264
+903,95.1319,10.5117,8.28006,0.069632,0.773792,0.008576,0.005664,0.02912,0.097536,0.098848,7.08221,0.114688
+904,105.069,9.51758,8.34563,0.071104,0.842304,0.008128,0.005568,0.030528,0.098336,0.097056,7.07971,0.112896
+905,111.656,8.95605,8.26566,0.06896,0.767872,0.008832,0.005632,0.02928,0.096416,0.0976,7.07654,0.114528
+906,105.22,9.50391,9.38806,0.069632,1.04448,0.008224,0.006112,0.028672,0.09952,0.098304,7.91635,0.116768
+907,89.6516,11.1543,8.3408,0.06928,0.84208,0.008352,0.005984,0.030336,0.102784,0.098272,7.06973,0.113984
+908,120.612,8.29102,8.30106,0.069152,0.809696,0.008448,0.00576,0.029056,0.098304,0.098304,7.06765,0.114688
+909,107.642,9.29004,9.14842,0.069664,0.776192,0.008192,0.006112,0.030112,0.096864,0.10208,7.93005,0.129152
+910,98.8512,10.1162,8.31299,0.069504,0.802784,0.008544,0.006112,0.029728,0.098592,0.098336,7.08442,0.114976
+911,107.733,9.28223,8.67424,0.068544,0.794624,0.008192,0.006112,0.028704,0.098304,0.098304,7.45619,0.115264
+912,99.5625,10.0439,8.8223,0.069696,0.909024,0.075552,0.004608,0.040448,0.098144,0.428704,7.08198,0.114144
+913,105.09,9.51562,8.3448,0.069664,0.829408,0.00944,0.004896,0.03024,0.096768,0.098272,7.09168,0.114432
+914,106.434,9.39551,8.70403,0.069632,0.815104,0.008416,0.00592,0.030176,0.098848,0.100352,7.45418,0.121408
+915,94.7885,10.5498,8.72397,0.069312,1.22093,0.009408,0.004928,0.029984,0.097024,0.098272,7.07994,0.114176
+916,106.401,9.39844,8.36714,0.069376,0.874496,0.007584,0.00496,0.030624,0.0984,0.098336,7.06762,0.115744
+917,103.163,9.69336,9.6527,0.070112,0.937312,0.008608,0.005632,0.042976,0.096864,0.098176,8.28038,0.11264
+918,94.8148,10.5469,8.39638,0.0696,0.884064,0.00864,0.0056,0.029472,0.10448,0.098016,7.08144,0.115072
+919,99.2825,10.0723,8.52883,0.069888,1.02669,0.008256,0.006016,0.0288,0.09776,0.098496,7.0721,0.120832
+920,110.703,9.0332,9.76166,0.06848,0.78848,0.008192,0.006144,0.028672,0.098304,0.098304,8.54547,0.119616
+921,92.5524,10.8047,9.17098,0.07104,0.82384,0.00832,0.00576,0.029024,0.098304,0.099744,7.92176,0.113184
+922,99.5722,10.043,8.28125,0.069632,0.772096,0.008192,0.006016,0.0288,0.097888,0.100448,7.08394,0.11424
+923,105.166,9.50879,8.66918,0.074912,0.766816,0.008352,0.022144,0.036928,0.096512,0.09824,7.45059,0.114688
+924,98.8799,10.1133,8.85712,0.069664,1.368,0.008224,0.006016,0.032512,0.09664,0.099776,7.06157,0.11472
+925,106.756,9.36719,8.30259,0.069632,0.795936,0.00864,0.0056,0.029376,0.097728,0.098176,7.08282,0.114688
+926,108.544,9.21289,8.64845,0.069664,0.773536,0.008608,0.0056,0.02912,0.098304,0.09872,7.45046,0.114432
+927,102.657,9.74121,8.32909,0.069088,0.817344,0.008608,0.005632,0.029056,0.096512,0.098336,7.09027,0.11424
+928,107.88,9.26953,8.32102,0.069536,0.81696,0.008608,0.0056,0.029056,0.104544,0.104832,7.06733,0.11456
+929,107.71,9.28418,9.00186,0.070336,0.800352,0.008704,0.0056,0.029152,0.0984,0.098368,7.47254,0.4184
+930,100.768,9.92383,8.29203,0.07136,0.795424,0.00832,0.005888,0.028896,0.09744,0.098944,7.07126,0.114496
+931,107.631,9.29102,8.29853,0.069632,0.798592,0.00832,0.005952,0.028864,0.098304,0.098304,7.07584,0.11472
+932,95.558,10.4648,9.51078,0.06912,0.81152,0.008192,0.006144,0.028672,0.098304,0.097856,8.27645,0.114528
+933,95.1584,10.5088,9.14666,0.065856,0.82736,0.009696,0.004672,0.030112,0.097984,0.098624,7.89562,0.116736
+934,98.5753,10.1445,8.29648,0.069664,0.801792,0.00864,0.004672,0.030144,0.098432,0.100288,7.06982,0.113024
+935,108.383,9.22656,8.25757,0.069664,0.763872,0.009568,0.004768,0.030048,0.096928,0.098336,7.07171,0.112672
+936,108.578,9.20996,9.12797,0.06912,0.784896,0.008352,0.005984,0.029856,0.099104,0.100032,7.91731,0.113312
+937,97.2367,10.2842,8.37517,0.06848,0.8704,0.008192,0.006144,0.028672,0.097536,0.097088,7.08397,0.114688
+938,104.054,9.61035,8.75056,0.06864,0.875456,0.008224,0.00592,0.03504,0.098304,0.098304,7.44448,0.116192
+939,97.7006,10.2354,8.89734,0.069856,1.39885,0.008608,0.0056,0.031392,0.097344,0.097216,7.07379,0.114688
+940,106.678,9.37402,8.32752,0.068192,0.835552,0.008224,0.005984,0.028832,0.098304,0.098304,7.06976,0.114368
+941,106.125,9.42285,8.6944,0.068224,0.819072,0.00832,0.00592,0.028896,0.098272,0.100032,7.45098,0.114688
+942,99.6109,10.0391,8.38173,0.07168,0.889888,0.00864,0.00464,0.03024,0.096736,0.098304,7.06765,0.113952
+943,104.618,9.55859,9.43507,0.069664,1.08746,0.008224,0.006112,0.028672,0.09776,0.098528,7.92198,0.116672
+944,99.3596,10.0645,9.52179,0.068384,0.808192,0.00864,0.0056,0.029088,0.096704,0.098336,8.29232,0.114528
+945,94.4127,10.5918,8.31082,0.06864,0.813984,0.008288,0.00592,0.028864,0.098176,0.098464,7.07491,0.113568
+946,107.744,9.28125,8.30707,0.070016,0.821216,0.008224,0.005984,0.028832,0.098304,0.098304,7.06288,0.113312
+947,103.612,9.65137,8.34272,0.069632,0.849664,0.008448,0.00576,0.029088,0.096224,0.098304,7.07165,0.113952
+948,109.425,9.13867,9.18733,0.069568,0.849376,0.00864,0.0056,0.029184,0.098432,0.0984,7.91299,0.115136
+949,92.0698,10.8613,8.35168,0.06928,0.858944,0.008224,0.006112,0.028672,0.097408,0.0984,7.0705,0.114144
+950,112.788,8.86621,8.73885,0.069536,0.859424,0.008608,0.005632,0.029184,0.098176,0.098464,7.45645,0.113376
+951,103.528,9.65918,9.12144,0.07024,0.788128,0.008544,0.005664,0.029152,0.09808,0.098496,7.90938,0.11376
+952,97.2552,10.2822,8.3184,0.069216,0.825664,0.00784,0.004704,0.030048,0.098304,0.098016,7.0697,0.114912
+953,99.9024,10.0098,8.73798,0.069632,0.858112,0.008192,0.006144,0.028672,0.098336,0.100032,7.45296,0.115904
+954,103.424,9.66895,8.62003,0.071648,1.11824,0.009632,0.004736,0.030144,0.0968,0.098144,7.076,0.114688
+955,107.949,9.26367,8.27776,0.069408,0.770272,0.008192,0.006144,0.028704,0.104032,0.09872,7.07754,0.114752
+956,108.005,9.25879,9.04042,0.07024,0.831488,0.008192,0.007456,0.029408,0.098304,0.100352,7.45882,0.43616
+957,99.8245,10.0176,8.30704,0.071168,0.788416,0.008672,0.005984,0.029088,0.096448,0.099904,7.09373,0.113632
+958,109.145,9.16211,8.26301,0.068832,0.758208,0.008544,0.005856,0.02896,0.098336,0.099456,7.07853,0.116288
+959,107.846,9.27246,9.3655,0.070816,0.768256,0.008608,0.005536,0.028864,0.09792,0.098528,8.17229,0.114688
+960,94.0226,10.6357,8.34125,0.069632,0.82736,0.008224,0.005984,0.028832,0.098016,0.098592,7.07584,0.128768
+961,105.971,9.43652,8.31517,0.070304,0.811008,0.009408,0.004928,0.03008,0.09808,0.099168,7.0776,0.114592
+962,105.916,9.44141,8.37021,0.070784,0.8672,0.008288,0.006048,0.028672,0.098304,0.098304,7.07789,0.11472
+963,102.461,9.75977,9.47571,0.069664,1.09974,0.017792,0.004768,0.030048,0.096928,0.098304,7.94419,0.114272
+964,90.5954,11.0381,8.29626,0.068992,0.79968,0.009536,0.0048,0.029792,0.098528,0.10848,7.06227,0.114176
+965,107.88,9.26953,8.83875,0.069632,0.943328,0.020448,0.004928,0.029824,0.102592,0.1048,7.44893,0.114272
+966,103.143,9.69531,9.14189,0.070752,0.789184,0.008448,0.005728,0.029088,0.097984,0.097632,7.92266,0.120416
+967,97.1168,10.2969,8.28067,0.068192,0.790528,0.008256,0.006112,0.02864,0.096256,0.098304,7.07165,0.112736
+968,106.644,9.37695,8.78637,0.06992,0.917568,0.008288,0.005952,0.028864,0.098304,0.099392,7.44339,0.114688
+969,100.629,9.9375,8.31325,0.068,0.815104,0.008192,0.006144,0.028672,0.098016,0.098016,7.07642,0.114688
+970,102.801,9.72754,8.39392,0.069024,0.903776,0.008288,0.006048,0.028672,0.09968,0.098496,7.06403,0.115904
+971,110.143,9.0791,9.03578,0.069632,0.829184,0.008448,0.005856,0.02896,0.106496,0.098304,7.4711,0.417792
+972,101.276,9.87402,8.24214,0.070624,0.755296,0.008608,0.0056,0.029024,0.0976,0.097152,7.0647,0.113536
+973,107.858,9.27148,8.35856,0.076608,0.844832,0.008672,0.004608,0.030272,0.096736,0.100032,7.0799,0.116896
+974,103.497,9.66211,9.55402,0.070016,0.837696,0.008384,0.005856,0.02896,0.098272,0.098336,8.29235,0.114144
+975,98.7654,10.125,8.25706,0.069344,0.753344,0.008192,0.005024,0.02864,0.10432,0.106464,7.06749,0.11424
+976,104.5,9.56934,8.36403,0.07104,0.875136,0.009728,0.00464,0.03024,0.098592,0.098336,7.06163,0.114688
+977,108.578,9.20996,8.276,0.069632,0.779808,0.008608,0.0056,0.029216,0.097376,0.099072,7.07338,0.113312
+978,97.394,10.2676,9.54563,0.069632,1.20966,0.008672,0.005632,0.029024,0.098688,0.100352,7.90838,0.115584
+979,106.015,9.43262,8.26573,0.069632,0.775584,0.00864,0.0056,0.029248,0.096384,0.098304,7.06938,0.11296
+980,108.763,9.19434,8.26899,0.069632,0.779424,0.008672,0.005632,0.029152,0.100768,0.098304,7.06294,0.114464
+981,106.323,9.40527,9.2017,0.069632,0.837024,0.008672,0.0056,0.029344,0.097536,0.099072,7.94138,0.11344
+982,95.952,10.4219,8.35811,0.068544,0.857088,0.00864,0.004672,0.030176,0.098016,0.098656,7.06608,0.12624
+983,99.6206,10.0381,8.82278,0.0696,0.935968,0.008288,0.016288,0.028672,0.098112,0.098208,7.45206,0.115584
+984,89.5653,11.165,9.19962,0.069664,1.67021,0.023456,0.005664,0.029024,0.108256,0.09856,7.08122,0.113568
+985,112.937,8.85449,8.32106,0.069632,0.828832,0.00864,0.005568,0.02928,0.09776,0.098976,7.06765,0.11472
+986,105.752,9.45605,9.43888,0.069664,0.788032,0.008608,0.00592,0.028896,0.098304,0.098304,7.89091,0.45024
+987,92.5273,10.8076,8.35382,0.069632,0.859712,0.00864,0.0056,0.029216,0.096256,0.099392,7.0727,0.112672
+988,109.542,9.12891,8.40298,0.0696,0.89296,0.00832,0.006016,0.029728,0.099296,0.100352,7.08147,0.115232
+989,99.3018,10.0703,9.55392,0.069632,0.817152,0.008416,0.00592,0.028672,0.09776,0.098304,8.31542,0.11264
+990,93.8933,10.6504,9.33456,0.071104,0.895552,0.009696,0.004704,0.03024,0.098592,0.097824,8.01238,0.114464
+991,96.823,10.3281,8.40909,0.06896,0.901824,0.008384,0.00592,0.028704,0.106368,0.09792,7.07789,0.11312
+992,105.982,9.43555,8.73677,0.069664,0.851936,0.008192,0.006144,0.028672,0.112064,0.097984,7.44643,0.11568
+993,96.1773,10.3975,8.82883,0.069632,1.33318,0.008256,0.005952,0.030912,0.098016,0.099648,7.06986,0.113376
+994,105.862,9.44629,8.35133,0.069632,0.843776,0.007808,0.00448,0.029792,0.104544,0.09872,7.06602,0.12656
+995,103.508,9.66113,9.0289,0.071424,0.822688,0.018848,0.006016,0.029248,0.098176,0.098208,7.46835,0.415936
+996,94.8851,10.5391,8.51616,0.08048,1.00346,0.008256,0.016352,0.030208,0.098176,0.098976,7.06682,0.11344
+997,108.67,9.20215,8.31898,0.069632,0.812384,0.00864,0.0056,0.029248,0.098144,0.098656,7.08198,0.114688
+998,107.124,9.33496,9.51709,0.068576,0.827392,0.009504,0.004832,0.029952,0.097056,0.098304,8.26774,0.113728
+999,95.2292,10.501,8.30672,0.0696,0.810464,0.00864,0.005632,0.029184,0.096384,0.099392,7.0727,0.11472
+1000,106.356,9.40234,8.29206,0.071392,0.800416,0.00864,0.0056,0.029312,0.097824,0.098592,7.06541,0.11488
+1001,103.455,9.66602,9.80992,0.069632,0.825344,0.009536,0.0048,0.030016,0.096928,0.0976,8.54912,0.126944
+1002,95.997,10.417,9.13203,0.071168,0.809472,0.00944,0.004896,0.030048,0.099008,0.10032,7.89443,0.113248
+1003,98.4331,10.1592,8.30464,0.069632,0.812064,0.008608,0.004704,0.03024,0.096704,0.098336,7.06746,0.116896
+1004,107.507,9.30176,8.6569,0.069472,0.792032,0.008864,0.005472,0.029376,0.09792,0.098336,7.43869,0.116736
+1005,101.597,9.84277,8.59344,0.068288,1.09158,0.01024,0.006144,0.032224,0.0968,0.09824,7.07581,0.114112
+1006,106.711,9.37109,8.28006,0.069248,0.795008,0.008064,0.0056,0.028768,0.098144,0.09856,7.06336,0.113312
+1007,107.518,9.30078,8.68387,0.069984,0.813056,0.00928,0.005056,0.02976,0.098528,0.09904,7.44406,0.115104
+1008,99.2633,10.0742,8.59322,0.071392,1.09773,0.00848,0.00576,0.029056,0.097888,0.096672,7.07162,0.114624
+1009,107.518,9.30078,8.31571,0.069728,0.801504,0.008352,0.005984,0.028672,0.104448,0.105984,7.07635,0.114688
+1010,108.498,9.2168,8.68086,0.069632,0.810112,0.008608,0.004704,0.030272,0.09872,0.100256,7.44406,0.114496
+1011,102.206,9.78418,8.27984,0.071328,0.788544,0.007648,0.004928,0.02976,0.097088,0.097792,7.06829,0.114464
+1012,108.521,9.21484,8.27507,0.068576,0.77824,0.009536,0.0048,0.033888,0.098752,0.098688,7.06886,0.113728
+1013,106.744,9.36816,9.49037,0.070656,0.852992,0.008288,0.006048,0.028672,0.097984,0.098624,7.87418,0.452928
+1014,96.7589,10.335,8.30218,0.0696,0.817184,0.009344,0.004992,0.029824,0.097152,0.098304,7.06134,0.114432
+1015,101.426,9.85938,8.25549,0.069632,0.767456,0.008608,0.0056,0.029248,0.098432,0.099584,7.06358,0.113344
+1016,107.54,9.29883,8.38515,0.069568,0.881088,0.008032,0.0056,0.02928,0.108608,0.102528,7.06576,0.114688
+1017,101.166,9.88477,9.46218,0.069152,1.13904,0.008608,0.005568,0.02928,0.097504,0.098304,7.90003,0.114688
+1018,99.6594,10.0342,8.35379,0.069408,0.866528,0.008256,0.00608,0.028672,0.098304,0.098304,7.06461,0.113632
+1019,107.035,9.34277,8.28579,0.069632,0.786432,0.009632,0.004704,0.029952,0.097024,0.098336,7.07581,0.114272
+1020,105.731,9.45801,9.13978,0.069216,0.808544,0.008832,0.005568,0.02944,0.098432,0.100224,7.90525,0.114272
+1021,99.4851,10.0518,8.28211,0.069632,0.792416,0.008352,0.005856,0.02896,0.096256,0.098304,7.06966,0.112672
+1022,108.234,9.23926,8.67715,0.06816,0.799936,0.008608,0.005632,0.029536,0.104512,0.098144,7.44838,0.11424
+1023,102.677,9.73926,9.12982,0.070368,0.792576,0.009632,0.004736,0.029888,0.096992,0.098048,7.91376,0.113824
+1024,99.9805,10.002,8.27827,0.069216,0.790624,0.008608,0.0056,0.028992,0.097728,0.097184,7.06691,0.113408
+1025,105.339,9.49316,8.66947,0.06944,0.791008,0.008192,0.006144,0.02992,0.099104,0.10016,7.44877,0.116736
+1026,92.5859,10.8008,8.72653,0.075776,1.23069,0.008352,0.005888,0.028928,0.098304,0.099392,7.06557,0.113632
+1027,112.158,8.91602,8.65347,0.068224,0.780288,0.009312,0.005024,0.029888,0.098208,0.098912,7.4489,0.11472
+1028,102.873,9.7207,8.90432,0.07008,1.15418,0.010656,0.005696,0.032832,0.098176,0.353248,7.06534,0.114112
+1029,101.708,9.83203,8.29469,0.069824,0.791264,0.009216,0.00512,0.02976,0.09712,0.09824,7.0801,0.114048
+1030,104.875,9.53516,8.73392,0.069632,0.853472,0.00864,0.005568,0.029248,0.107808,0.098432,7.44518,0.115936
+1031,98.9181,10.1094,8.63171,0.071648,1.13258,0.008192,0.006144,0.029984,0.096992,0.098208,7.07389,0.11408
+1032,107.225,9.32617,8.37222,0.069632,0.882688,0.008192,0.006144,0.028672,0.098304,0.09952,7.06438,0.114688
+1033,107.518,9.30078,9.39277,0.069952,0.75808,0.008192,0.006144,0.028672,0.09824,0.097856,7.88035,0.44528
+1034,96.7407,10.3369,8.33741,0.069664,0.849888,0.009632,0.004704,0.029984,0.097024,0.098272,7.0648,0.11344
+1035,100.669,9.93359,8.72653,0.069632,0.843776,0.008192,0.006144,0.028704,0.098272,0.099424,7.4577,0.114688
+1036,96.9973,10.3096,9.05488,0.068448,1.5647,0.009536,0.004768,0.030016,0.09696,0.098048,7.0679,0.114496
+1037,108.268,9.23633,8.69971,0.069632,0.81888,0.008512,0.005728,0.029088,0.09808,0.098528,7.4559,0.11536
+1038,97.7006,10.2354,8.80323,0.068512,1.30858,0.008288,0.005952,0.030912,0.098304,0.098336,7.06966,0.114688
+1039,103.434,9.66797,9.36618,0.068256,1.00688,0.00864,0.005408,0.031744,0.104448,0.1024,7.92285,0.115552
+1040,94.0831,10.6289,8.4392,0.069504,0.934016,0.00832,0.006016,0.028672,0.099392,0.097216,7.08198,0.11408
+1041,106.412,9.39746,8.28826,0.069664,0.787712,0.008608,0.0056,0.029376,0.096448,0.09824,7.07795,0.114656
+1042,96.7498,10.3359,9.23862,0.068416,0.894976,0.008448,0.005888,0.029856,0.098528,0.098592,7.91997,0.113952
+1043,103.393,9.67188,8.40909,0.069632,0.917536,0.00816,0.005824,0.028992,0.096256,0.099744,7.07014,0.1128
+1044,104.362,9.58203,8.6897,0.075776,0.801824,0.008704,0.0056,0.029088,0.098784,0.11072,7.44403,0.115168
+1045,94.6571,10.5645,8.876,0.067872,1.37827,0.008224,0.006016,0.031872,0.09728,0.098176,7.07392,0.114368
+1046,106.778,9.36523,8.32224,0.069632,0.813056,0.009632,0.004704,0.0304,0.10464,0.104128,7.07014,0.115904
+1047,102.033,9.80078,8.75491,0.071168,0.87488,0.008352,0.00592,0.028864,0.097856,0.0984,7.45507,0.1144
+1048,99.4368,10.0566,8.44899,0.070592,0.955872,0.008672,0.005632,0.029024,0.097888,0.098976,7.0696,0.112736
+1049,106.368,9.40137,8.74912,0.069184,0.87488,0.008608,0.005632,0.029152,0.098368,0.099712,7.44826,0.115328
+1050,99.2633,10.0742,8.32557,0.068032,0.83968,0.008224,0.006112,0.028672,0.098304,0.098304,7.06502,0.113216
+1051,101.88,9.81543,9.45971,0.069632,1.10797,0.008256,0.00608,0.029728,0.097248,0.098272,7.92784,0.114688
+1052,97.4032,10.2666,8.29814,0.069632,0.800192,0.008672,0.005568,0.02928,0.097824,0.098112,7.07453,0.114336
+1053,104.33,9.58496,8.70269,0.068352,0.910816,0.008704,0.005568,0.029248,0.096256,0.098304,7.36998,0.115456
+1054,102.822,9.72559,9.20525,0.069696,0.849376,0.008672,0.0056,0.028896,0.098688,0.100352,7.93005,0.11392
+1055,97.7939,10.2256,8.27613,0.069792,0.784384,0.008224,0.006112,0.028672,0.098016,0.098624,7.06762,0.114688
+1056,105.35,9.49219,8.74253,0.069664,0.864224,0.009216,0.00512,0.030048,0.098976,0.099424,7.44746,0.1184
+1057,93.1163,10.7393,9.00093,0.072288,1.49853,0.008544,0.005568,0.029152,0.096576,0.098304,7.07757,0.1144
+1058,102.513,9.75488,8.35792,0.069248,0.852352,0.018208,0.006048,0.03088,0.098464,0.099456,7.06832,0.114944
+1059,105.09,9.51562,9.55248,0.069248,0.822208,0.008192,0.006144,0.028672,0.098112,0.098496,8.30877,0.11264
+1060,94.9555,10.5312,8.3225,0.069632,0.81888,0.008544,0.006048,0.028736,0.1024,0.098336,7.07526,0.114656
+1061,105.08,9.5166,8.7,0.069408,0.824736,0.0088,0.0056,0.029344,0.09648,0.099776,7.45318,0.112672
+1062,102.461,9.75977,8.29242,0.070944,0.801568,0.008192,0.006144,0.028672,0.098336,0.09824,7.06563,0.114688
+1063,106.026,9.43164,9.15194,0.071424,0.809216,0.00992,0.0056,0.029568,0.098016,0.098592,7.91318,0.116416
+1064,97.034,10.3057,8.30314,0.068128,0.810976,0.008192,0.00608,0.028736,0.098016,0.097952,7.07158,0.113472
+1065,105.069,9.51758,8.75728,0.069632,0.858112,0.008192,0.006112,0.028704,0.104448,0.102432,7.46698,0.112672
+1066,102.257,9.7793,9.1576,0.07008,0.839872,0.008192,0.005568,0.029312,0.097984,0.098496,7.89462,0.113472
+1067,97.2644,10.2812,8.38525,0.0696,0.881408,0.008192,0.006144,0.028672,0.097952,0.098464,7.08013,0.114688
+1068,107.248,9.32422,8.73066,0.069632,0.851424,0.008736,0.0056,0.029216,0.099392,0.0992,7.45274,0.11472
+1069,94.109,10.626,9.01325,0.06912,1.51526,0.00864,0.005664,0.02912,0.096608,0.098336,7.07581,0.114688
+1070,104.832,9.53906,8.39443,0.068032,0.882176,0.008672,0.020512,0.028672,0.098304,0.09984,7.0721,0.116128
+1071,103.518,9.66016,9.69117,0.069696,0.923616,0.009376,0.00496,0.028704,0.0976,0.097088,8.34749,0.11264
+1072,91.6495,10.9111,8.32061,0.06928,0.834144,0.008288,0.00608,0.028736,0.099616,0.098144,7.06211,0.114208
+1073,106.689,9.37305,8.31421,0.069664,0.8128,0.008416,0.005792,0.029024,0.09808,0.098528,7.0775,0.1144
+1074,106.213,9.41504,8.32515,0.069632,0.825344,0.009376,0.00496,0.03024,0.098784,0.100128,7.07325,0.11344
+1075,107.079,9.33887,9.10541,0.067136,0.777728,0.00864,0.00464,0.030432,0.09776,0.099104,7.90323,0.116736
+1076,98.4237,10.1602,8.27418,0.06864,0.790176,0.008512,0.005728,0.029088,0.098208,0.098048,7.06186,0.11392
+1077,108.028,9.25684,8.58042,0.069344,0.780576,0.008192,0.005568,0.02912,0.096384,0.098144,7.37613,0.11696
+1078,100.382,9.96191,9.14067,0.070048,0.825344,0.008768,0.00576,0.029056,0.099648,0.09696,7.89094,0.114144
+1079,102.78,9.72949,8.30259,0.069408,0.808416,0.008608,0.0056,0.02912,0.098656,0.098208,7.06989,0.114688
+1080,106.912,9.35352,8.68166,0.076,0.796928,0.008352,0.005888,0.028928,0.098304,0.099424,7.45155,0.116288
+1081,98.6227,10.1396,8.7711,0.069664,1.28384,0.008416,0.005824,0.032224,0.09712,0.097792,7.06202,0.114208
+1082,107.281,9.32129,8.26262,0.068576,0.781952,0.008576,0.005664,0.029152,0.097504,0.09856,7.05795,0.114688
+1083,104.961,9.52734,8.66861,0.069664,0.78224,0.008256,0.005984,0.028832,0.098304,0.102016,7.4592,0.114112
+1084,106.789,9.36426,8.28275,0.06848,0.796704,0.0096,0.004736,0.029888,0.098784,0.09856,7.06157,0.114432
+1085,107.012,9.34473,8.3049,0.06928,0.801088,0.008448,0.00576,0.029056,0.104448,0.1024,7.0697,0.11472
+1086,109.064,9.16895,8.64531,0.07008,0.772352,0.00944,0.004896,0.030048,0.098976,0.100288,7.44598,0.113248
+1087,101.246,9.87695,8.27069,0.070496,0.786016,0.008608,0.0056,0.02896,0.096512,0.098336,7.06147,0.114688
+1088,105.133,9.51172,8.28464,0.068096,0.784352,0.009312,0.005056,0.029888,0.098624,0.097952,7.07667,0.114688
+1089,110.037,9.08789,9.3655,0.0712,0.803296,0.008192,0.005696,0.02912,0.097504,0.098304,8.1375,0.114688
+1090,94.7534,10.5537,8.29683,0.068992,0.800864,0.00864,0.0056,0.029024,0.096896,0.098304,7.07174,0.116768
+1091,107.937,9.26465,8.28826,0.069632,0.788288,0.008384,0.005824,0.028992,0.098304,0.100352,7.07174,0.116736
+1092,105.231,9.50293,8.2831,0.068576,0.792576,0.008448,0.005888,0.028672,0.099936,0.096672,7.06765,0.114688
+1093,106.968,9.34863,9.26787,0.068256,0.923648,0.009472,0.004896,0.032128,0.10304,0.101536,7.91024,0.114656
+1094,97.5703,10.249,8.2832,0.071168,0.792512,0.006816,0.006048,0.028832,0.098144,0.09952,7.06438,0.115776
+1095,106.678,9.37402,9.86458,0.069248,0.776,0.008672,0.005568,0.029184,0.09632,0.098464,8.66707,0.114048
+1096,92.5524,10.8047,9.12669,0.068384,0.786464,0.00944,0.004864,0.029984,0.096992,0.099968,7.91693,0.113664
+1097,98.9659,10.1045,8.26634,0.069376,0.776896,0.008192,0.006144,0.028672,0.097408,0.098336,7.06835,0.11296
+1098,109.46,9.13574,8.62618,0.069632,0.759488,0.008096,0.005568,0.029152,0.098816,0.099872,7.44086,0.114688
+1099,96.4763,10.3652,9.0072,0.06976,1.49046,0.008608,0.0056,0.029024,0.096608,0.098272,7.09427,0.114592
+1100,108.429,9.22266,8.27891,0.06848,0.788416,0.008256,0.006016,0.0288,0.098304,0.101472,7.06243,0.116736
+1101,108.429,9.22266,8.6487,0.071232,0.771744,0.008768,0.005632,0.029408,0.098208,0.100448,7.45037,0.112896
+1102,100.887,9.91211,8.27395,0.07168,0.780288,0.008192,0.00608,0.028736,0.098336,0.098272,7.06931,0.113056
+1103,108.371,9.22754,8.2752,0.070688,0.7608,0.009472,0.004864,0.030112,0.096864,0.099488,7.08874,0.114176
+1104,105.534,9.47559,8.97405,0.069632,0.79184,0.008608,0.005632,0.029216,0.09856,0.098112,7.44797,0.42448
+1105,103.205,9.68945,8.27898,0.070624,0.77616,0.009504,0.004832,0.030048,0.096928,0.098304,7.07949,0.113088
+1106,108.211,9.24121,9.12589,0.071712,0.780256,0.009504,0.004832,0.030048,0.098784,0.100544,7.91523,0.114976
+1107,99.2056,10.0801,8.28477,0.069984,0.788064,0.008224,0.005024,0.029792,0.097184,0.098304,7.07379,0.1144
+1108,108.567,9.21094,9.47853,0.068992,0.764928,0.009472,0.004864,0.029792,0.09824,0.096928,8.29062,0.114688
+1109,93.6015,10.6836,8.35011,0.069888,0.84992,0.009472,0.004864,0.030144,0.096864,0.099648,7.07635,0.11296
+1110,107.755,9.28027,8.3785,0.06896,0.878752,0.00864,0.0056,0.029216,0.09776,0.098208,7.07677,0.114592
+1111,106.213,9.41504,9.14637,0.07168,0.804864,0.008192,0.006112,0.028704,0.098304,0.104448,7.90733,0.116736
+1112,96.9238,10.3174,8.31082,0.069632,0.812832,0.018656,0.005888,0.028928,0.09824,0.098368,7.06515,0.11312
+1113,108.475,9.21875,8.76749,0.069632,0.878592,0.009248,0.005088,0.028704,0.097824,0.1024,7.46336,0.11264
+1114,100.176,9.98242,9.16893,0.070944,0.829824,0.008576,0.005696,0.02912,0.098272,0.099648,7.91418,0.112672
+1115,100.156,9.98438,8.28931,0.068576,0.792352,0.008448,0.005792,0.028992,0.097856,0.098752,7.07568,0.112864
+1116,104.405,9.57812,8.67533,0.069408,0.809184,0.008352,0.006016,0.029696,0.099296,0.1,7.43792,0.115456
+1117,98.8036,10.1211,8.58774,0.070624,1.08749,0.008448,0.005888,0.028672,0.097984,0.098016,7.07645,0.114176
+1118,106.114,9.42383,8.28803,0.069568,0.78176,0.008704,0.005632,0.029312,0.104448,0.101568,7.072,0.11504
+1119,107.394,9.31152,8.78,0.069856,0.902528,0.00864,0.005568,0.029408,0.09632,0.099872,7.44493,0.12288
+1120,101.83,9.82031,8.26883,0.07168,0.774144,0.009472,0.004864,0.030048,0.096928,0.098304,7.06883,0.11456
+1121,107.653,9.28906,8.33757,0.075936,0.813056,0.008192,0.006144,0.028672,0.098304,0.098304,7.09222,0.116736
+1122,105.48,9.48047,9.50678,0.069632,0.760992,0.00864,0.005632,0.043936,0.10432,0.09776,8.30326,0.112608
+1123,88.2302,11.334,8.55082,0.069312,1.01859,0.009632,0.004704,0.04096,0.098336,0.108512,7.08608,0.114688
+1124,112.023,8.92676,8.33181,0.069568,0.829824,0.00864,0.005568,0.029248,0.098336,0.098304,7.07741,0.114912
+1125,106.29,9.4082,8.24541,0.06832,0.75776,0.008224,0.006112,0.028672,0.098304,0.098048,7.06557,0.1144
+1126,103.445,9.66699,9.50035,0.069664,1.08746,0.008192,0.006144,0.028704,0.108512,0.110464,7.9648,0.116416
+1127,98.2537,10.1777,8.29014,0.06944,0.792576,0.008384,0.005792,0.029024,0.097504,0.098752,7.07414,0.114528
+1128,100.205,9.97949,9.77718,0.069632,1.0752,0.008224,0.005984,0.0288,0.098304,0.098336,8.27773,0.114976
+1129,89.3777,11.1885,8.99299,0.068576,1.49834,0.00864,0.005536,0.02912,0.096768,0.098304,7.07379,0.11392
+1130,108.394,9.22559,8.29741,0.068544,0.791584,0.00864,0.004672,0.030624,0.104224,0.102336,7.0721,0.114688
+1131,107.642,9.29004,8.66934,0.069824,0.788448,0.008192,0.006144,0.028672,0.098304,0.100288,7.45683,0.11264
+1132,102.308,9.77441,8.28787,0.071584,0.798848,0.008192,0.006112,0.028672,0.098304,0.099776,7.06208,0.114304
+1133,108.498,9.2168,8.26896,0.069312,0.774144,0.008608,0.005792,0.029024,0.098016,0.098592,7.07094,0.114528
+1134,106.489,9.39062,9.45734,0.07168,0.886272,0.008736,0.005824,0.02896,0.098304,0.098304,8.14454,0.11472
+1135,97.4217,10.2646,8.30909,0.069632,0.784192,0.00864,0.005568,0.029216,0.096384,0.098304,7.10378,0.113376
+1136,108.28,9.23535,8.26502,0.069664,0.773536,0.008608,0.005632,0.029344,0.098304,0.09968,7.06333,0.116928
+1137,104.907,9.53223,8.3112,0.069056,0.809952,0.008288,0.006048,0.028736,0.09824,0.098272,7.07792,0.114688
+1138,104.607,9.55957,9.47619,0.069344,0.89536,0.008192,0.017664,0.02944,0.099456,0.332704,7.9073,0.116736
+1139,98.028,10.2012,8.31885,0.069696,0.822592,0.00864,0.0056,0.029056,0.09664,0.098368,7.07373,0.114528
+1140,108.509,9.21582,8.27782,0.0696,0.788032,0.00864,0.0056,0.029248,0.098304,0.098304,7.0656,0.114496
+1141,106.103,9.4248,9.16669,0.07184,0.810592,0.008672,0.0056,0.029088,0.09856,0.100192,7.92602,0.116128
+1142,97.0064,10.3086,8.29075,0.06928,0.80688,0.00864,0.0056,0.029216,0.098112,0.097952,7.06189,0.113184
+1143,107.892,9.26855,8.58938,0.069216,0.79216,0.00864,0.004544,0.030304,0.096704,0.098272,7.3728,0.116736
+1144,103.539,9.6582,9.11517,0.069664,0.779552,0.00848,0.005632,0.029472,0.098464,0.10032,7.90938,0.114208
+1145,98.367,10.166,8.30659,0.069664,0.813024,0.00928,0.005056,0.029952,0.097056,0.098272,7.06973,0.11456
+1146,108.636,9.20508,8.65174,0.076,0.783104,0.008192,0.005984,0.028832,0.098304,0.100352,7.43587,0.115104
+1147,97.6447,10.2412,8.79763,0.069632,1.30048,0.009376,0.00496,0.042144,0.097024,0.09808,7.06182,0.114112
+1148,109.554,9.12793,8.2624,0.069472,0.776544,0.00864,0.0056,0.029312,0.097888,0.098144,7.06349,0.113312
+1149,108.28,9.23535,8.65309,0.069024,0.779104,0.008192,0.00576,0.029056,0.097376,0.099264,7.45194,0.113376
+1150,102.257,9.7793,8.25949,0.069664,0.771552,0.008608,0.0056,0.02912,0.097888,0.098112,7.06435,0.114592
+1151,103.928,9.62207,8.44195,0.06832,0.919552,0.024576,0.005856,0.02896,0.100352,0.105824,7.07386,0.114656
+1152,108.613,9.20703,8.97434,0.069632,0.792576,0.009632,0.004704,0.029824,0.098368,0.098944,7.44467,0.425984
+1153,100.451,9.95508,8.28272,0.070368,0.790432,0.00816,0.006144,0.028672,0.097952,0.096608,7.06976,0.114624
+1154,108.062,9.25391,9.12458,0.07232,0.796768,0.008224,0.006112,0.028672,0.098304,0.102176,7.89526,0.116736
+1155,98.5563,10.1465,9.50358,0.068288,0.794272,0.008576,0.005632,0.029152,0.096256,0.098304,8.2903,0.1128
+1156,94.6133,10.5693,8.32864,0.069248,0.838016,0.008224,0.006112,0.0288,0.098176,0.099648,7.06426,0.11616
+1157,99.5431,10.0459,8.3664,0.069888,0.862656,0.009344,0.01712,0.028832,0.098176,0.09776,7.06832,0.114304
+1158,116.021,8.61914,8.32163,0.068288,0.837312,0.008448,0.005888,0.028896,0.0984,0.09824,7.06147,0.114688
+1159,107.191,9.3291,9.16314,0.067488,0.824256,0.018432,0.005984,0.028832,0.098304,0.099808,7.90378,0.116256
+1160,96.7407,10.3369,8.33382,0.069216,0.83856,0.009408,0.014496,0.029152,0.098016,0.098496,7.06291,0.113568
+1161,99.8829,10.0117,9.10586,0.068192,1.23027,0.00864,0.0056,0.029248,0.097504,0.10736,7.44243,0.116608
+1162,105.829,9.44922,9.08099,0.06992,0.8696,0.00864,0.005568,0.029184,0.097632,0.09856,7.78848,0.113408
+1163,100.461,9.9541,8.2681,0.069696,0.766528,0.008224,0.006112,0.028672,0.097696,0.096864,7.07994,0.114368
+1164,109.765,9.11035,8.6848,0.069696,0.828416,0.00864,0.00464,0.030432,0.098592,0.100352,7.4281,0.115936
+1165,92.136,10.8535,8.74256,0.1024,1.20944,0.008608,0.00576,0.02928,0.096544,0.098304,7.07789,0.114336
+1166,110.428,9.05566,9.38598,0.069632,1.05062,0.009312,0.005024,0.029888,0.107328,0.098304,7.90042,0.115456
+1167,90.6435,11.0322,8.36259,0.069248,0.86704,0.008448,0.00576,0.029056,0.097728,0.098624,7.07216,0.114528
+1168,116.735,8.56641,9.52518,0.069472,0.800928,0.008192,0.006144,0.0288,0.098176,0.098304,8.30192,0.113248
+1169,93.3115,10.7168,8.32566,0.070144,0.8272,0.008416,0.005824,0.028992,0.098048,0.098528,7.07382,0.114688
+1170,107.721,9.2832,8.2983,0.06816,0.816448,0.008608,0.0056,0.028864,0.096896,0.098304,7.06147,0.113952
+1171,106.445,9.39453,9.13014,0.069184,0.784736,0.008448,0.005792,0.029024,0.097504,0.097056,7.92336,0.11504
+1172,97.9623,10.208,8.31283,0.069632,0.823008,0.00848,0.005728,0.029088,0.098112,0.0984,7.06678,0.1136
+1173,108.291,9.23438,8.3143,0.069664,0.815072,0.008224,0.005888,0.028896,0.097728,0.098304,7.07642,0.114112
+1174,107.326,9.31738,9.14371,0.06912,0.80288,0.00864,0.005568,0.029312,0.098304,0.10192,7.91395,0.114016
+1175,97.8313,10.2217,8.26749,0.069632,0.773728,0.008608,0.0056,0.029216,0.096416,0.099488,7.0704,0.1144
+1176,109.192,9.1582,8.67558,0.069344,0.795168,0.008192,0.00608,0.028736,0.098304,0.099712,7.45334,0.116704
+1177,100.333,9.9668,8.89325,0.070112,1.12864,0.0104,0.006144,0.032768,0.09776,0.35632,7.07763,0.113472
+1178,98.4426,10.1582,8.32486,0.06944,0.836,0.008544,0.005696,0.02912,0.09776,0.098176,7.06605,0.11408
+1179,111.389,8.97754,8.71037,0.06928,0.820928,0.00864,0.0056,0.029088,0.098752,0.098432,7.46496,0.114688
+1180,94.2563,10.6094,8.8576,0.124256,1.30886,0.008608,0.0056,0.02912,0.097952,0.098272,7.07133,0.1136
+1181,103.822,9.63184,8.49034,0.071488,0.978528,0.00864,0.005568,0.043232,0.098048,0.100192,7.06854,0.116096
+1182,102.708,9.73633,9.78915,0.079872,1.03968,0.008192,0.0048,0.02992,0.09808,0.09728,8.30851,0.122816
+1183,90.4993,11.0498,8.29293,0.07264,0.794592,0.009344,0.004992,0.030016,0.098528,0.100832,7.0656,0.116384
+1184,107.778,9.27832,8.30259,0.0696,0.815136,0.008224,0.006112,0.028672,0.098304,0.098304,7.06355,0.114688
+1185,100.728,9.92773,8.26163,0.069632,0.770048,0.008032,0.005568,0.029152,0.096512,0.09952,7.06848,0.114688
+1186,113.199,8.83398,9.15456,0.067168,0.813472,0.008192,0.00592,0.028896,0.100352,0.100352,7.91536,0.114848
+1187,90.9414,10.9961,8.42752,0.069184,0.913984,0.008224,0.006048,0.028736,0.108544,0.099488,7.0783,0.115008
+1188,105.72,9.45898,9.88384,0.068512,1.17965,0.008224,0.006112,0.028704,0.098272,0.098304,8.28006,0.116
+1189,89.4401,11.1807,8.61309,0.071712,1.11408,0.008192,0.00592,0.028928,0.09728,0.097248,7.07578,0.113952
+1190,112.158,8.91602,8.31693,0.06944,0.83168,0.008192,0.00608,0.028736,0.098112,0.098528,7.06147,0.114688
+1191,106.622,9.37891,8.68147,0.069664,0.798688,0.008288,0.006048,0.028672,0.098304,0.09824,7.46038,0.113184
+1192,102.441,9.76172,8.34323,0.07168,0.863808,0.008608,0.0056,0.029184,0.09776,0.096992,7.05523,0.114368
+1193,105.851,9.44727,8.28944,0.07744,0.784384,0.008576,0.00592,0.028896,0.097408,0.0992,7.07098,0.11664
+1194,106.015,9.43262,9.66042,0.069632,0.905248,0.007936,0.0056,0.029088,0.108896,0.098304,8.32307,0.11264
+1195,95.2381,10.5,8.29213,0.06944,0.794816,0.009344,0.004992,0.030432,0.10064,0.098304,7.0697,0.114464
+1196,108.693,9.2002,8.28384,0.069952,0.78848,0.009728,0.00464,0.030368,0.098624,0.100352,7.06669,0.115008
+1197,107.225,9.32617,8.28406,0.069248,0.788864,0.008192,0.006144,0.028672,0.098144,0.098464,7.07174,0.114592
+1198,104.661,9.55469,9.41104,0.068064,1.07034,0.00864,0.0056,0.029088,0.097984,0.098752,7.91562,0.11696
+1199,94.7096,10.5586,9.62115,0.069632,0.886784,0.009472,0.004864,0.02992,0.097056,0.098304,8.2985,0.126624
+1200,95.6652,10.4531,8.67328,0.069504,0.80768,0.008192,0.00608,0.028736,0.098304,0.098304,7.43971,0.116768
+1201,102.626,9.74414,9.1321,0.069728,0.794528,0.008256,0.005984,0.028832,0.096288,0.098272,7.91654,0.113664
+1202,98.5279,10.1494,8.31488,0.069568,0.810752,0.00832,0.006368,0.030496,0.097472,0.0984,7.07181,0.121696
+1203,108.383,9.22656,8.67546,0.06976,0.795008,0.008288,0.00592,0.028896,0.098304,0.101984,7.45309,0.114208
+1204,102.257,9.7793,8.27773,0.068896,0.78512,0.008192,0.006048,0.028768,0.098304,0.099392,7.06861,0.1144
+1205,107.461,9.30566,8.28624,0.069184,0.796928,0.008672,0.0056,0.029184,0.097984,0.098784,7.0656,0.114304
+1206,108.085,9.25195,8.64739,0.069952,0.7848,0.009312,0.005024,0.03024,0.098176,0.09872,7.43821,0.11296
+1207,100.639,9.93652,8.30685,0.071264,0.811616,0.00816,0.006144,0.028672,0.097472,0.09872,7.07011,0.114688
+1208,109.227,9.15527,8.29859,0.069536,0.793984,0.008224,0.0048,0.029824,0.098752,0.098752,7.07776,0.11696
+1209,106.956,9.34961,9.51987,0.070368,0.806496,0.008608,0.005632,0.029088,0.096384,0.099296,8.29133,0.112672
+1210,95.3534,10.4873,8.70598,0.069376,0.829696,0.009536,0.0048,0.029984,0.098176,0.09728,7.45251,0.114624
+1211,101.82,9.82129,9.17462,0.069824,0.804896,0.008192,0.006048,0.028768,0.097728,0.098816,7.9463,0.114048
+1212,96.9789,10.3115,8.27187,0.069632,0.784384,0.008224,0.006112,0.03072,0.096256,0.098304,7.06355,0.114688
+1213,106.235,9.41309,9.16381,0.066912,0.826016,0.00928,0.005056,0.02992,0.097312,0.101568,7.91322,0.114528
+1214,98.6703,10.1348,8.2759,0.069216,0.78176,0.008672,0.004704,0.030272,0.09776,0.097184,7.07171,0.114624
+1215,94.4649,10.5859,8.69795,0.069248,0.80944,0.009632,0.004736,0.030208,0.096736,0.098304,7.4664,0.113248
+1216,117.149,8.53613,9.11498,0.069632,0.794624,0.008224,0.006112,0.028672,0.098304,0.098304,7.89834,0.112768
+1217,99.5238,10.0479,8.26346,0.069632,0.761472,0.008576,0.0056,0.029056,0.097472,0.098304,7.07888,0.114464
+1218,106.522,9.3877,8.7759,0.069024,0.891008,0.008704,0.006368,0.029856,0.102816,0.098752,7.45462,0.114752
+1219,96.9881,10.3105,8.64627,0.07168,1.15507,0.008224,0.006112,0.028704,0.098176,0.098368,7.06563,0.114304
+1220,106.744,9.36816,8.35155,0.068864,0.850688,0.00944,0.004896,0.030016,0.098592,0.09872,7.07571,0.114624
+1221,97.246,10.2832,9.00822,0.070976,0.84176,0.008608,0.005632,0.02928,0.09648,0.099552,7.45878,0.397152
+1222,110.919,9.01562,9.51904,0.071392,0.825536,0.008288,0.00608,0.028736,0.098304,0.09824,8.26784,0.114624
+1223,88.0254,11.3604,8.27597,0.069664,0.770016,0.008192,0.006048,0.028768,0.097888,0.09872,7.08198,0.114688
+1224,109.448,9.13672,8.30016,0.068096,0.816864,0.008448,0.00576,0.029056,0.098304,0.09824,7.06086,0.114528
+1225,106.268,9.41016,9.08858,0.066656,0.770976,0.009312,0.005024,0.029888,0.098912,0.100576,7.89094,0.116288
+1226,98.794,10.1221,8.33264,0.069632,0.835584,0.008192,0.006144,0.028672,0.099488,0.098848,7.07206,0.114016
+1227,105.242,9.50195,8.80032,0.069184,0.91392,0.009408,0.004928,0.029696,0.09728,0.104448,7.45834,0.11312
+1228,103.696,9.64355,9.12998,0.071328,0.79056,0.008544,0.005792,0.028992,0.09776,0.098688,7.91363,0.114688
+1229,97.2275,10.2852,8.36608,0.069664,0.86816,0.008352,0.005856,0.02896,0.097472,0.098528,7.07619,0.112896
+1230,108.268,9.23633,8.67123,0.069632,0.79872,0.008224,0.006112,0.028768,0.100288,0.10032,7.4441,0.115072
+1231,89.1598,11.2158,9.21398,0.069632,1.69165,0.022528,0.005664,0.029152,0.097408,0.097152,7.0872,0.1136
+1232,110.309,9.06543,8.31478,0.069664,0.815072,0.008192,0.006144,0.028704,0.10752,0.098336,7.06656,0.114592
+1233,109.227,9.15527,9.32042,0.070784,0.764832,0.00816,0.006144,0.028672,0.09824,0.097888,8.13104,0.114656
+1234,96.3311,10.3809,8.3313,0.069632,0.835584,0.00768,0.004608,0.030016,0.09696,0.099328,7.07277,0.11472
+1235,102.749,9.73242,8.39341,0.070176,0.88864,0.008544,0.005696,0.02912,0.104448,0.09856,7.0727,0.11552
+1236,103.351,9.67578,8.37811,0.069632,0.885856,0.008672,0.005568,0.029344,0.097984,0.098432,7.06774,0.11488
+1237,105.752,9.45605,9.45344,0.069632,1.10285,0.008704,0.00464,0.029952,0.096992,0.098304,7.92576,0.116608
+1238,94.7183,10.5576,8.36867,0.068192,0.86784,0.00864,0.005632,0.029152,0.098208,0.098304,7.07798,0.11472
+1239,98.1501,10.1885,8.6815,0.069632,0.804864,0.009472,0.004896,0.029888,0.098464,0.098944,7.44992,0.115424
+1240,101.086,9.89258,9.23766,0.070912,0.89888,0.008704,0.005568,0.029152,0.098176,0.098944,7.9135,0.113824
+1241,97.0064,10.3086,8.34563,0.069376,0.83584,0.007968,0.005408,0.029152,0.096736,0.098336,7.07782,0.124992
+1242,108.601,9.20801,8.64845,0.070912,0.774912,0.008192,0.005952,0.028864,0.099808,0.098848,7.44653,0.114432
+1243,102.175,9.78711,8.30246,0.067936,0.804864,0.008192,0.00608,0.028736,0.097952,0.098464,7.07603,0.114208
+1244,104.703,9.55078,9.40646,0.069632,1.07114,0.009568,0.004768,0.030016,0.098848,0.098432,7.91043,0.113632
+1245,98.1972,10.1836,9.49638,0.069664,0.7864,0.008352,0.005984,0.028672,0.09824,0.098368,8.28736,0.113344
+1246,94.6396,10.5664,8.34765,0.06896,0.85984,0.00864,0.00464,0.030016,0.098528,0.098112,7.06422,0.114688
+1247,107.383,9.3125,8.30813,0.069984,0.802816,0.009472,0.004864,0.029792,0.097184,0.098336,7.08163,0.114048
+1248,106.767,9.36621,8.33827,0.06848,0.835552,0.008192,0.006112,0.028704,0.098304,0.098304,7.08102,0.1136
+1249,105.578,9.47168,9.15046,0.069632,0.800768,0.00832,0.006016,0.028672,0.098304,0.099744,7.92416,0.114848
+1250,98.899,10.1113,8.29818,0.069664,0.810976,0.008256,0.00608,0.028864,0.098112,0.098304,7.06339,0.114528
+1251,106.368,9.40137,8.3025,0.06928,0.819008,0.008608,0.005632,0.029088,0.096608,0.097728,7.0623,0.11424
+1252,110.037,9.08789,9.12387,0.069632,0.800416,0.007936,0.004704,0.030304,0.09872,0.098304,7.90058,0.11328
+1253,98.6038,10.1416,8.27773,0.069024,0.785088,0.009376,0.00496,0.029856,0.09712,0.098304,7.0697,0.114304
+1254,108.463,9.21973,8.68214,0.068256,0.806912,0.009632,0.004736,0.030176,0.098176,0.098592,7.45238,0.11328
+1255,103.236,9.68652,9.14784,0.070944,0.817184,0.008672,0.005536,0.029184,0.096576,0.098304,7.90733,0.114112
+1256,99.4561,10.0547,8.26592,0.068224,0.780256,0.008192,0.006112,0.028704,0.098336,0.098272,7.06282,0.115008
+1257,108.509,9.21582,8.64666,0.070784,0.772832,0.008352,0.005856,0.02896,0.097952,0.098656,7.44858,0.114688
+1258,97.2552,10.2822,8.95238,0.068544,1.46637,0.008224,0.006112,0.029696,0.097472,0.09968,7.06198,0.114304
+1259,108.429,9.22266,8.28054,0.06912,0.781248,0.009408,0.00496,0.03056,0.103968,0.098592,7.06797,0.11472
+1260,108.797,9.19141,8.64256,0.071328,0.772448,0.00928,0.005056,0.029728,0.099296,0.098336,7.4424,0.114688
+1261,102.873,9.7207,8.24915,0.071296,0.752576,0.008192,0.006144,0.028672,0.09744,0.09712,7.07296,0.114752
+1262,109.718,9.11426,8.28829,0.06912,0.786432,0.008608,0.00576,0.0288,0.098656,0.098336,7.0777,0.11488
+1263,104.983,9.52539,9.47254,0.070144,0.814464,0.006816,0.006112,0.028672,0.098048,0.097888,7.89773,0.452672
+1264,95.2824,10.4951,8.30237,0.069152,0.8136,0.008384,0.006144,0.028704,0.098272,0.098304,7.06506,0.114752
+1265,107.079,9.33887,8.33274,0.069536,0.829536,0.009216,0.00512,0.029696,0.09728,0.100384,7.07581,0.11616
+1266,109.624,9.12207,9.48246,0.0696,0.776448,0.008256,0.006048,0.029728,0.098496,0.0984,8.28282,0.112672
+1267,94.2997,10.6045,8.29235,0.069632,0.797984,0.008608,0.005664,0.029472,0.096256,0.099392,7.06861,0.116736
+1268,106.368,9.40137,8.29235,0.070688,0.80176,0.009568,0.004768,0.029856,0.09712,0.099424,7.06448,0.114688
+1269,98.3103,10.1719,8.36048,0.068128,0.853984,0.008352,0.005984,0.028672,0.098112,0.10464,7.0792,0.113408
+1270,120.513,8.29785,9.10464,0.07168,0.774144,0.00832,0.006016,0.028672,0.099424,0.098496,7.90192,0.115968
+1271,88.2682,11.3291,8.42566,0.069824,0.909312,0.024576,0.006144,0.028672,0.098304,0.098304,7.07696,0.113568
+1272,113.879,8.78125,8.72208,0.069472,0.841696,0.00864,0.0056,0.029472,0.1024,0.098208,7.44614,0.120448
+1273,100.461,9.9541,9.19757,0.071392,0.87376,0.00864,0.004704,0.029824,0.096416,0.098016,7.90195,0.112864
+1274,100.422,9.95801,8.26534,0.069664,0.775264,0.00864,0.005568,0.029248,0.0984,0.098656,7.0656,0.114304
+1275,106.268,9.41016,8.68378,0.069856,0.804672,0.008384,0.005856,0.02896,0.098304,0.100352,7.45203,0.11536
+1276,99.8537,10.0146,8.62013,0.071456,1.12502,0.008192,0.006144,0.028672,0.09824,0.098368,7.0697,0.114336
+1277,104.213,9.5957,8.64723,0.069216,0.768096,0.00864,0.005696,0.029312,0.097888,0.098272,7.45542,0.114688
+1278,105.796,9.45215,10.3478,0.070848,0.823712,0.008608,0.0056,0.029216,0.098304,0.098208,9.09936,0.113952
+1279,88.1846,11.3398,8.32925,0.069664,0.80688,0.008256,0.00608,0.029728,0.097248,0.098336,7.09834,0.11472
+1280,94.1782,10.6182,8.45414,0.069664,0.954336,0.022528,0.005856,0.02896,0.098336,0.098304,7.06147,0.114688
+1281,121.847,8.20703,8.3025,0.069472,0.80352,0.008416,0.00592,0.029696,0.096928,0.097984,7.07651,0.114048
+1282,107.733,9.28223,9.11325,0.068096,0.774144,0.009568,0.0048,0.03024,0.098176,0.097952,7.9144,0.115872
+1283,99.0329,10.0977,8.28918,0.068512,0.788352,0.008352,0.005888,0.028896,0.09776,0.097856,7.07888,0.114688
+1284,108.36,9.22852,8.27341,0.069568,0.786144,0.008544,0.005664,0.029152,0.098304,0.098304,7.06355,0.114176
+1285,101.096,9.8916,9.19757,0.07104,0.862848,0.008192,0.00608,0.028736,0.098304,0.099488,7.9096,0.11328
+1286,97.6261,10.2432,8.3689,0.068384,0.881824,0.00864,0.005664,0.029184,0.096704,0.099392,7.06442,0.114688
+1287,107.597,9.29395,8.66515,0.074432,0.79456,0.008256,0.00592,0.028896,0.098016,0.098592,7.44026,0.116224
+1288,98.6893,10.1328,8.85482,0.069664,1.3496,0.009312,0.005024,0.03264,0.097888,0.098848,7.07789,0.113952
+1289,104.693,9.55176,8.7719,0.069248,0.880736,0.00864,0.0056,0.029216,0.096448,0.098304,7.46902,0.114688
+1290,102.544,9.75195,10.2843,0.069632,0.780288,0.009248,0.005088,0.029888,0.098432,0.099008,9.07981,0.112928
+1291,86.2316,11.5967,8.28016,0.069216,0.786464,0.00864,0.00464,0.03008,0.096896,0.099584,7.07008,0.11456
+1292,107.767,9.2793,8.35693,0.071552,0.852096,0.008224,0.006112,0.028672,0.098304,0.1024,7.07379,0.115776
+1293,108.245,9.23828,8.2473,0.069632,0.765344,0.008608,0.0056,0.02928,0.096416,0.098304,7.06131,0.1128
+1294,102.966,9.71191,9.45226,0.069472,1.13274,0.008672,0.0056,0.029312,0.09824,0.097568,7.89597,0.114688
+1295,98.2631,10.1768,8.28666,0.069952,0.794592,0.008352,0.005856,0.02896,0.097312,0.09728,7.06966,0.114688
+1296,109.683,9.11719,8.26883,0.06928,0.780416,0.008416,0.005824,0.028992,0.098304,0.098304,7.06486,0.114432
+1297,105.296,9.49707,9.18266,0.069696,0.837664,0.009536,0.004832,0.030144,0.097856,0.098688,7.92022,0.114016
+1298,98.9946,10.1016,8.3783,0.068128,0.884736,0.008192,0.006176,0.02864,0.098304,0.098048,7.07184,0.11424
+1299,99.2248,10.0781,8.76541,0.06912,0.886688,0.00864,0.005568,0.029376,0.097376,0.098496,7.45469,0.115456
+1300,108.809,9.19043,8.98099,0.070112,1.11574,0.04112,0.018112,0.03248,0.098304,0.418688,7.07376,0.112672
+1301,101.84,9.81934,8.27277,0.069856,0.772704,0.017856,0.004768,0.029888,0.097056,0.098304,7.0697,0.11264
+1302,107.642,9.29004,8.68531,0.069376,0.809216,0.009344,0.004992,0.029984,0.098752,0.098592,7.44861,0.116448
+1303,102.043,9.7998,8.27008,0.06848,0.774048,0.008288,0.005856,0.02896,0.097568,0.09904,7.07363,0.114208
+1304,107.473,9.30469,8.26982,0.069376,0.760096,0.009536,0.004768,0.029824,0.097152,0.106208,7.07971,0.113152
+1305,100.412,9.95898,8.74589,0.069728,0.86496,0.008288,0.00592,0.028896,0.096256,0.1,7.45917,0.112672
+1306,105.741,9.45703,8.2639,0.071424,0.763968,0.008416,0.005824,0.02896,0.098208,0.098112,7.07526,0.113728
+1307,108.429,9.22266,8.27942,0.069664,0.782304,0.009408,0.004928,0.029728,0.097248,0.098336,7.07165,0.11616
+1308,97.6447,10.2412,8.30899,0.070368,0.804544,0.008512,0.005728,0.029088,0.09776,0.10704,7.07174,0.114208
+1309,119.501,8.36816,9.46998,0.069568,0.746944,0.008608,0.005632,0.029408,0.096256,0.098304,8.29811,0.117152
+1310,93.9708,10.6416,8.31725,0.069952,0.82032,0.008608,0.00464,0.030368,0.09968,0.100864,7.06813,0.114688
+1311,106.158,9.41992,8.25312,0.068032,0.75776,0.008192,0.006144,0.028672,0.097984,0.098592,7.07382,0.11392
+1312,96.1773,10.3975,9.54163,0.069632,1.20336,0.00864,0.0064,0.034976,0.098304,0.098304,7.9064,0.115616
+1313,106.059,9.42871,8.29277,0.080704,0.786464,0.008256,0.006048,0.028672,0.097664,0.096896,7.07379,0.114272
+1314,108.36,9.22852,8.23837,0.069536,0.744672,0.008928,0.0056,0.029088,0.097984,0.097952,7.07021,0.1144
+1315,104.854,9.53711,9.87264,0.070656,0.807264,0.008768,0.0056,0.029184,0.098336,0.100448,8.36198,0.3904
+1316,94.1176,10.625,8.29174,0.070656,0.789504,0.009472,0.004896,0.02864,0.1024,0.098304,7.07379,0.11408
+1317,107.281,9.32129,8.66925,0.069248,0.78464,0.008384,0.006176,0.03008,0.096864,0.098304,7.46013,0.115424
+1318,102.925,9.71582,8.47053,0.069312,0.974624,0.010688,0.0056,0.03136,0.098272,0.097504,7.06998,0.113184
+1319,106.923,9.35254,8.27526,0.069152,0.77408,0.00864,0.0056,0.029184,0.102784,0.106208,7.06586,0.11376
+1320,105.807,9.45117,8.72067,0.069664,0.850176,0.00928,0.005056,0.030432,0.098592,0.100352,7.44195,0.115168
+1321,96.9513,10.3145,8.65722,0.071424,1.16621,0.008192,0.006144,0.028672,0.09808,0.098272,7.06586,0.114368
+1322,109.32,9.14746,8.27648,0.069248,0.776512,0.00864,0.005632,0.029312,0.098336,0.098272,7.07584,0.114688
+1323,105.829,9.44922,8.9959,0.069664,0.810976,0.008544,0.005792,0.029728,0.096864,0.097728,7.4512,0.425408
+1324,99.3596,10.0645,8.28214,0.07168,0.780288,0.008192,0.006048,0.028768,0.098304,0.098336,7.07699,0.113536
+1325,105.263,9.5,8.40221,0.069632,0.90544,0.007968,0.007168,0.029728,0.098304,0.099904,7.06806,0.116
+1326,95.5759,10.4629,8.30515,0.068192,0.79872,0.00976,0.0056,0.029248,0.098624,0.097728,7.08173,0.115552
+1327,104.394,9.5791,9.38608,0.069376,1.04829,0.008608,0.005344,0.02944,0.096512,0.098304,7.91552,0.114688
+1328,99.3885,10.0615,8.27853,0.069312,0.776928,0.0096,0.004768,0.029728,0.097216,0.098304,7.07939,0.11328
+1329,100.196,9.98047,8.62413,0.069632,0.8704,0.008192,0.006048,0.028768,0.098304,0.11264,7.07789,0.352256
+1330,110.476,9.05176,9.16483,0.069632,0.784064,0.007872,0.004768,0.03024,0.099872,0.098848,7.94662,0.122912
+1331,96.1232,10.4033,8.30896,0.069792,0.815168,0.008288,0.006016,0.028672,0.098208,0.0984,7.0697,0.11472
+1332,108.097,9.25098,8.66294,0.068416,0.792352,0.008416,0.00576,0.029056,0.098304,0.098304,7.44627,0.116064
+1333,98.5658,10.1455,8.73328,0.069664,1.23587,0.008192,0.006144,0.032768,0.097344,0.098944,7.07002,0.114336
+1334,104.929,9.53027,8.28349,0.069344,0.792864,0.009504,0.004864,0.029856,0.098368,0.098176,7.06586,0.114656
+1335,108.659,9.20312,8.63027,0.070752,0.752544,0.00944,0.004896,0.03008,0.098976,0.100352,7.44989,0.113344
+1336,99.0233,10.0986,8.49536,0.068192,0.99968,0.008192,0.006016,0.0288,0.099552,0.09888,7.07187,0.114176
+1337,106.756,9.36719,8.32141,0.069088,0.817408,0.008608,0.005728,0.029152,0.098176,0.098656,7.07981,0.114784
+1338,107.158,9.33203,9.38771,0.07168,0.8312,0.00848,0.005728,0.029088,0.098304,0.098304,8.12963,0.115296
+1339,96.2135,10.3936,8.28416,0.069632,0.786464,0.008128,0.0056,0.029248,0.098272,0.098176,7.0753,0.113344
+1340,109.378,9.14258,9.1569,0.069152,0.805632,0.008192,0.006144,0.028672,0.103616,0.10304,7.91776,0.114688
+1341,97.9717,10.207,8.2432,0.069472,0.749696,0.008224,0.006144,0.028672,0.097664,0.098944,7.0697,0.114688
+1342,103.917,9.62305,9.556,0.069056,1.12685,0.008352,0.005888,0.028928,0.098304,0.098304,8.0056,0.11472
+1343,82.9016,12.0625,8.42957,0.069632,0.933888,0.008288,0.006048,0.028672,0.098304,0.098304,7.07309,0.113344
+1344,116.152,8.60938,8.65075,0.068992,0.75744,0.00864,0.00464,0.030208,0.098528,0.098496,7.46912,0.114688
+1345,101.156,9.88574,9.26314,0.069664,0.875936,0.008704,0.005568,0.029152,0.10416,0.106656,7.95062,0.112672
+1346,101.82,9.82129,8.26979,0.068928,0.767808,0.00864,0.006624,0.028672,0.098336,0.098208,7.07795,0.114624
+1347,103.654,9.64746,8.66662,0.069632,0.78848,0.008192,0.006144,0.02976,0.098368,0.100896,7.45098,0.114176
+1348,102.966,9.71191,8.29238,0.067584,0.795872,0.008416,0.004704,0.03024,0.096704,0.098336,7.07706,0.113472
+1349,105.611,9.46875,8.26992,0.069504,0.780224,0.008416,0.005856,0.028928,0.097632,0.09888,7.0657,0.114784
+1350,101.456,9.85645,8.89651,0.069632,0.996736,0.02304,0.005632,0.038752,0.097056,0.09984,7.45238,0.11344
+1351,101.82,9.82129,8.30528,0.068224,0.802816,0.00928,0.005056,0.029728,0.097152,0.112608,7.06576,0.114656
+1352,108.901,9.18262,8.25418,0.06864,0.75568,0.00928,0.005184,0.030304,0.098592,0.100352,7.0713,0.114848
+1353,105.22,9.50391,9.58874,0.069664,0.831456,0.009536,0.0048,0.03024,0.096736,0.09936,8.33418,0.112768
+1354,95.8353,10.4346,8.29318,0.069472,0.793568,0.009568,0.004768,0.029824,0.098624,0.09888,7.07488,0.1136
+1355,97.6913,10.2363,8.2961,0.070848,0.783168,0.009472,0.004864,0.02992,0.097056,0.098432,7.08806,0.114272
+1356,113.375,8.82031,8.37222,0.06928,0.878944,0.008192,0.005824,0.028992,0.098304,0.098208,7.06979,0.114688
+1357,105.938,9.43945,9.1687,0.066048,0.828928,0.00864,0.0056,0.02928,0.098304,0.10208,7.91482,0.115008
+1358,87.1193,11.4785,8.40502,0.068992,0.907968,0.00848,0.015456,0.02928,0.099424,0.09856,7.06218,0.114688
+1359,125.938,7.94043,8.66624,0.06896,0.758464,0.008416,0.00592,0.029792,0.097184,0.11264,7.47098,0.113888
+1360,103.812,9.63281,9.08486,0.070336,0.751744,0.008192,0.006144,0.028672,0.098368,0.099456,7.90774,0.114208
+1361,99.1384,10.0869,8.30813,0.069376,0.813312,0.008192,0.006112,0.028704,0.098304,0.098304,7.07174,0.11408
+1362,105.306,9.49609,8.64646,0.069664,0.778208,0.008192,0.006112,0.028704,0.099424,0.099232,7.44038,0.116544
+1363,92.8967,10.7646,9.01389,0.068224,1.5232,0.008288,0.0056,0.029344,0.096416,0.097472,7.07206,0.11328
+1364,103.854,9.62891,8.32918,0.069312,0.822816,0.00864,0.0056,0.031712,0.098272,0.098304,7.07965,0.11488
+1365,115.471,8.66016,8.92339,0.069888,0.743424,0.008192,0.005856,0.02896,0.097472,0.099136,7.46291,0.407552
+1366,101.972,9.80664,8.27277,0.070528,0.761856,0.008192,0.007488,0.029152,0.105856,0.098592,7.07754,0.113568
+1367,107.012,9.34473,8.28662,0.071488,0.782912,0.008224,0.006112,0.028672,0.097856,0.102848,7.07174,0.116768
+1368,107.248,9.32422,9.53229,0.07008,0.842144,0.008224,0.006144,0.030144,0.098176,0.096992,8.26774,0.11264
+1369,93.269,10.7217,8.40365,0.068288,0.887808,0.008608,0.004704,0.034816,0.104096,0.104128,7.07648,0.11472
+1370,106.878,9.35645,8.28701,0.070048,0.792896,0.008224,0.006144,0.028672,0.099744,0.098144,7.06976,0.113376
+1371,104.426,9.57617,8.25683,0.069568,0.761184,0.00864,0.0056,0.02928,0.09648,0.098304,7.07331,0.114464
+1372,105.101,9.51465,9.53043,0.068768,1.0984,0.008384,0.005664,0.02912,0.098176,0.098464,8.00768,0.115776
+1373,95.3445,10.4883,8.2944,0.069632,0.784384,0.009248,0.005088,0.029696,0.097056,0.09856,7.08746,0.11328
+1374,100.392,9.96094,8.90144,0.068384,0.986208,0.00864,0.006624,0.047104,0.102432,0.105984,7.46256,0.113504
+1375,109.659,9.11914,9.08915,0.069664,0.750048,0.008256,0.00608,0.030016,0.096896,0.098368,7.91555,0.114272
+1376,97.8032,10.2246,8.26982,0.069184,0.751168,0.008672,0.0056,0.028928,0.09696,0.098304,7.09805,0.11296
+1377,94.8148,10.5469,8.85555,0.069664,0.964576,0.018432,0.006016,0.0288,0.104448,0.098304,7.45062,0.114688
+1378,100.225,9.97754,9.15046,0.069632,1.64838,0.018688,0.006112,0.028704,0.098336,0.099808,7.06614,0.114656
+1379,113.387,8.81934,8.26205,0.0696,0.75616,0.008224,0.006112,0.028672,0.09808,0.098528,7.08198,0.114688
+1380,104.918,9.53125,8.36646,0.069984,0.858112,0.008224,0.006112,0.045088,0.098272,0.098304,7.0697,0.112672
+1381,107.428,9.30859,9.5361,0.069472,0.821216,0.008736,0.0056,0.029216,0.096512,0.098304,8.28211,0.124928
+1382,95.8622,10.4316,8.27187,0.071488,0.768192,0.009568,0.0048,0.029984,0.099008,0.099872,7.07222,0.116736
+1383,98.0937,10.1943,8.46643,0.069664,0.960352,0.023936,0.004896,0.029824,0.09712,0.098304,7.06877,0.113568
+1384,111.341,8.98145,9.36659,0.069632,1.03014,0.009248,0.006368,0.029472,0.098272,0.099872,7.90781,0.115776
+1385,96.4128,10.3721,9.59229,0.096256,0.845824,0.018464,0.006112,0.029792,0.097184,0.098144,8.28637,0.114144
+1386,95.8353,10.4346,8.68627,0.068288,0.80896,0.00928,0.005056,0.0288,0.098176,0.098304,7.45472,0.114688
+1387,103.288,9.68164,9.09517,0.069632,0.757728,0.008224,0.005888,0.028928,0.096288,0.098272,7.9167,0.113504
+1388,86.6842,11.5361,8.36525,0.06928,0.872032,0.00864,0.0056,0.035264,0.09824,0.096928,7.06522,0.114048
+1389,121.012,8.26367,8.8345,0.069856,0.931104,0.008672,0.014336,0.030304,0.098208,0.107136,7.46061,0.114272
+1390,94.3953,10.5938,9.04365,0.069632,1.54419,0.008288,0.006048,0.042976,0.098336,0.098304,7.0615,0.114368
+1391,105.654,9.46484,8.36182,0.069376,0.84768,0.00864,0.0056,0.037408,0.098336,0.09968,7.07846,0.11664
+1392,103.812,9.63281,9.71562,0.069632,0.91072,0.018368,0.004832,0.030176,0.098816,0.097952,8.37242,0.112704
+1393,94.5958,10.5713,8.31123,0.068032,0.806944,0.00816,0.006144,0.028704,0.106464,0.09936,7.07274,0.114688
+1394,108.051,9.25488,8.37818,0.069664,0.870368,0.008256,0.007456,0.029312,0.098304,0.101792,7.07853,0.114496
+1395,107.091,9.33789,8.25341,0.06944,0.754208,0.008192,0.006144,0.028672,0.098016,0.098592,7.07584,0.114304
+1396,105.993,9.43457,9.53517,0.069344,0.809248,0.009312,0.005024,0.028704,0.099968,0.098144,8.30022,0.1152
+1397,93.516,10.6934,8.29949,0.068608,0.7864,0.009472,0.004864,0.029984,0.096992,0.098304,7.09222,0.11264
+1398,107.642,9.29004,8.67984,0.069056,0.780736,0.00864,0.005504,0.029184,0.104672,0.104448,7.46477,0.112832
+1399,98.3575,10.167,9.20669,0.07056,0.824864,0.006624,0.006144,0.028672,0.098144,0.10464,7.95357,0.113472
+1400,99.0904,10.0918,8.30259,0.069376,0.812448,0.008512,0.004864,0.029856,0.096896,0.098304,7.06765,0.114688
+1401,107.473,9.30469,8.65658,0.069632,0.775168,0.00864,0.004704,0.030464,0.097536,0.098784,7.45523,0.116416
+1402,92.4939,10.8115,8.9855,0.068512,1.48278,0.0096,0.00576,0.02944,0.098112,0.09872,7.07789,0.114688
+1403,113.538,8.80762,8.32109,0.06928,0.827776,0.008192,0.005856,0.02896,0.096256,0.099808,7.07194,0.113024
+1404,108.302,9.2334,8.94806,0.070048,0.755488,0.008416,0.005952,0.028864,0.097888,0.09824,7.47712,0.406048
+1405,99.8829,10.0117,8.32512,0.070816,0.822112,0.008192,0.006144,0.028672,0.09792,0.098592,7.07949,0.113184
+1406,108.062,9.25391,8.3025,0.06848,0.784064,0.007712,0.004864,0.02992,0.098688,0.1,7.09245,0.11632
+1407,106.556,9.38477,9.55098,0.069632,0.817152,0.008192,0.006144,0.028704,0.0976,0.098784,8.31101,0.11376
+1408,96.7133,10.3398,8.27331,0.069664,0.76592,0.00944,0.006784,0.028832,0.098336,0.098272,7.08106,0.115008
+1409,107.96,9.2627,8.62666,0.070112,0.749568,0.008192,0.006144,0.028672,0.098176,0.099488,7.45309,0.113216
+1410,102.451,9.76074,8.30506,0.072032,0.804224,0.00864,0.005376,0.029056,0.098496,0.098752,7.07379,0.114688
+1411,106.39,9.39941,9.14701,0.06832,0.818784,0.008512,0.005696,0.02912,0.097344,0.098464,7.9057,0.115072
+1412,95.6562,10.4541,8.29549,0.077312,0.799232,0.00944,0.004896,0.029792,0.097216,0.09824,7.06563,0.113728
+1413,108.971,9.17676,8.56851,0.0688,0.7504,0.008032,0.006304,0.028608,0.097536,0.097088,7.39638,0.11536
+1414,101.931,9.81055,9.16691,0.071392,0.81456,0.008672,0.0056,0.029312,0.098592,0.108512,7.91347,0.1168
+1415,92.611,10.7979,8.4927,0.069216,0.971488,0.008416,0.00592,0.036896,0.1016,0.097056,7.08787,0.11424
+1416,108.074,9.25293,8.80643,0.069344,0.923936,0.009248,0.014432,0.029344,0.09856,0.098272,7.44858,0.11472
+1417,95.997,10.417,8.96822,0.06896,1.47693,0.008544,0.005696,0.02912,0.09728,0.098944,7.06803,0.11472
+1418,99.6497,10.0352,8.38246,0.069088,0.882848,0.00768,0.016576,0.02912,0.098144,0.09872,7.06518,0.115104
+1419,115.916,8.62695,8.95757,0.069632,0.792256,0.008512,0.005536,0.02928,0.097952,0.09824,7.47357,0.382592
+1420,94.9027,10.5371,8.2993,0.07024,0.798048,0.008,0.00496,0.03008,0.096896,0.098336,7.07389,0.118848
+1421,110.226,9.07227,8.24986,0.069312,0.7504,0.00944,0.004896,0.030496,0.097664,0.101216,7.0697,0.116736
+1422,107.158,9.33203,9.50051,0.069024,0.772672,0.008256,0.005952,0.028864,0.099328,0.09744,8.30595,0.113024
+1423,90.4194,11.0596,8.45722,0.069664,0.937344,0.008608,0.0056,0.033504,0.098048,0.09856,7.08931,0.116576
+1424,114.337,8.74609,8.31283,0.070432,0.819296,0.008288,0.006048,0.028704,0.098304,0.09808,7.06966,0.114016
+1425,107.169,9.33105,8.24451,0.06928,0.739712,0.008384,0.006176,0.029984,0.09696,0.098304,7.08144,0.114272
+1426,108.131,9.24805,9.16851,0.071904,0.790528,0.009216,0.00512,0.029824,0.098464,0.09904,7.94826,0.11616
+1427,98.0373,10.2002,8.29296,0.069312,0.78128,0.009216,0.005152,0.029728,0.097216,0.098304,7.08813,0.114624
+1428,95.5848,10.4619,8.78,0.069088,0.9408,0.008416,0.00592,0.044352,0.098048,0.10336,7.39645,0.113568
+1429,117.553,8.50684,9.10896,0.069856,0.756896,0.008832,0.0056,0.029408,0.098336,0.098304,7.92899,0.112736
+1430,95.7099,10.4482,8.32966,0.068064,0.823264,0.008352,0.016064,0.032832,0.097376,0.09728,7.07299,0.11344
+1431,109.942,9.0957,8.66317,0.069216,0.761888,0.008608,0.005568,0.029024,0.098624,0.116288,7.46048,0.113472
+1432,100.807,9.91992,8.56531,0.069248,1.06592,0.01024,0.006176,0.031744,0.097248,0.098304,7.07296,0.113472
+1433,106.6,9.38086,8.27395,0.069504,0.7784,0.008224,0.006112,0.028672,0.098176,0.098272,7.07328,0.113312
+1434,108.59,9.20898,8.69581,0.069632,0.802656,0.008352,0.005856,0.02896,0.098336,0.1,7.46733,0.114688
+1435,94.7534,10.5537,8.94563,0.069632,1.44384,0.008224,0.005984,0.0288,0.097888,0.098144,7.07805,0.115072
+1436,107.326,9.31738,8.28813,0.069632,0.794144,0.008608,0.005568,0.029248,0.098368,0.098336,7.06726,0.11696
+1437,103.153,9.69434,9.60512,0.07072,0.889056,0.00864,0.005568,0.029088,0.096704,0.098304,7.92986,0.477184
+1438,95.7994,10.4385,8.26899,0.069408,0.759584,0.00864,0.005568,0.029312,0.103488,0.098592,7.07242,0.121984
+1439,104.139,9.60254,8.25872,0.069632,0.757024,0.00864,0.0056,0.029152,0.09664,0.098272,7.07994,0.113824
+1440,105.296,9.49707,8.26976,0.069568,0.770112,0.008192,0.00608,0.028736,0.098304,0.099488,7.07466,0.114624
+1441,97.5424,10.252,9.59939,0.069056,1.23798,0.008384,0.015488,0.029248,0.097696,0.100224,7.92566,0.115648
+1442,106.878,9.35645,8.25939,0.069632,0.765856,0.008288,0.005728,0.029088,0.098176,0.098048,7.07008,0.114496
+1443,89.9192,11.1211,10.9811,0.069632,2.02656,0.00848,0.004768,0.029952,0.097024,0.100192,8.52966,0.114816
+1444,73.6373,13.5801,9.63542,0.083776,2.12406,0.009536,0.0048,0.029984,0.098016,0.097472,7.0736,0.114176
+1445,120.541,8.2959,8.52294,0.069664,0.993248,0.00832,0.006016,0.029824,0.107424,0.10032,7.09222,0.115904
+1446,113.35,8.82227,8.25638,0.06848,0.765952,0.008416,0.00592,0.028672,0.098304,0.098304,7.06909,0.113248
+1447,110.775,9.02734,9.46995,0.069632,0.763936,0.008224,0.00608,0.028672,0.098048,0.09856,8.28211,0.114688
+1448,96.8596,10.3242,8.25155,0.071328,0.751872,0.00864,0.005568,0.028992,0.098528,0.104384,7.0679,0.114336
+1449,104.394,9.5791,8.2841,0.06944,0.794688,0.008544,0.005664,0.029056,0.096352,0.099456,7.06646,0.114432
+1450,105.166,9.50879,9.07469,0.072736,0.75392,0.008672,0.005472,0.029184,0.097856,0.098624,7.89264,0.115584
+1451,101.628,9.83984,8.25363,0.068512,0.759776,0.008224,0.00608,0.028736,0.097376,0.098272,7.07274,0.11392
+1452,107.563,9.29688,8.2977,0.069632,0.8128,0.008448,0.005632,0.02896,0.098336,0.097824,7.06166,0.1144
+1453,108.12,9.24902,9.08486,0.069632,0.759168,0.00864,0.0056,0.029248,0.098464,0.099584,7.8999,0.114624
+1454,99.6012,10.04,9.45155,0.069632,0.751168,0.008608,0.005632,0.029024,0.098208,0.098336,8.27792,0.113024
+1455,95.7546,10.4434,8.63843,0.069664,0.751584,0.008192,0.00608,0.028736,0.098304,0.099712,7.45946,0.116704
+1456,99.1096,10.0898,8.81024,0.069376,1.31549,0.009536,0.0048,0.032736,0.098272,0.098368,7.06765,0.114016
+1457,105.437,9.48438,8.27792,0.069536,0.77824,0.008256,0.00608,0.028672,0.100224,0.104576,7.06874,0.1136
+1458,108.809,9.19043,8.64166,0.069632,0.765952,0.009376,0.00496,0.029728,0.098368,0.099232,7.45021,0.114208
+1459,104.843,9.53809,8.24979,0.068032,0.75776,0.0096,0.004736,0.030112,0.096864,0.098336,7.0711,0.113248
+1460,107.259,9.32324,8.25546,0.069152,0.76448,0.008224,0.006112,0.029728,0.09728,0.098304,7.06762,0.11456
+1461,108.613,9.20703,8.69171,0.069664,0.792448,0.008288,0.005984,0.028832,0.098304,0.098304,7.4641,0.125792
+1462,99.4271,10.0576,8.26544,0.071008,0.768128,0.008608,0.0056,0.02912,0.097952,0.097248,7.07363,0.114144
+1463,108.257,9.2373,8.30704,0.07616,0.7984,0.00848,0.006144,0.028672,0.098304,0.100096,7.07405,0.116736
+1464,105.982,9.43555,9.52902,0.069632,0.79872,0.008256,0.00608,0.028672,0.099808,0.098848,8.30666,0.112352
+1465,87.9801,11.3662,8.38867,0.068896,0.86288,0.008288,0.006048,0.030816,0.11264,0.101856,7.08374,0.113504
+1466,121.934,8.20117,8.2473,0.071456,0.748768,0.008608,0.0064,0.029024,0.099456,0.098496,7.07178,0.113312
+1467,108.12,9.24902,9.44371,0.069216,0.748384,0.008288,0.00592,0.028864,0.09776,0.097824,8.27421,0.113248
+1468,95.026,10.5234,8.30442,0.069728,0.811104,0.008416,0.006144,0.029984,0.09904,0.099808,7.06205,0.118144
+1469,106.656,9.37598,8.2984,0.069536,0.807008,0.009632,0.004704,0.030112,0.096864,0.099392,7.06656,0.114592
+1470,110.084,9.08398,8.2719,0.070688,0.773088,0.008192,0.007296,0.029216,0.097696,0.097248,7.07379,0.114688
+1471,108.211,9.24121,9.11926,0.072928,0.79952,0.009248,0.005088,0.030016,0.096992,0.10032,7.88893,0.116224
+1472,99.8732,10.0127,8.23107,0.068384,0.747424,0.008288,0.005984,0.028832,0.098176,0.098304,7.06099,0.114688
+1473,110.428,9.05566,8.21981,0.069632,0.738944,0.008576,0.005568,0.029248,0.096288,0.099584,7.05814,0.113824
+1474,108.659,9.20312,9.06656,0.069664,0.74544,0.009664,0.004736,0.030336,0.099872,0.099104,7.89504,0.112704
+1475,99.2537,10.0752,8.25149,0.06816,0.755584,0.008256,0.00608,0.028672,0.098304,0.097632,7.07437,0.114432
+1476,108.936,9.17969,8.6304,0.069088,0.74608,0.008224,0.006112,0.029952,0.10464,0.100928,7.45238,0.112992
+1477,105.058,9.51855,9.07677,0.069344,0.740928,0.00848,0.004768,0.030208,0.096608,0.099584,7.9137,0.113152
+1478,96.2316,10.3916,8.51414,0.073792,1.00042,0.009664,0.004704,0.030048,0.098336,0.107072,7.07526,0.114848
+1479,109.11,9.16504,8.6393,0.0696,0.75456,0.009792,0.00656,0.028672,0.09984,0.098848,7.45571,0.115712
+1480,99.2152,10.0791,8.73373,0.069024,1.2417,0.008192,0.006144,0.031776,0.097248,0.099968,7.0657,0.113984
+1481,108.165,9.24512,8.29072,0.069152,0.78704,0.008448,0.00576,0.029056,0.096256,0.102112,7.07814,0.114752
+1482,109.402,9.14062,8.616,0.070176,0.742592,0.008608,0.006528,0.028704,0.099616,0.100896,7.44467,0.114208
+1483,97.1906,10.2891,8.34294,0.069024,0.842656,0.008416,0.00592,0.029792,0.096768,0.100736,7.07587,0.11376
+1484,108.165,9.24512,8.34486,0.069312,0.827712,0.008192,0.006176,0.044768,0.108096,0.098112,7.06758,0.114912
+1485,108.532,9.21387,8.95635,0.07008,0.775392,0.00864,0.005632,0.029184,0.098176,0.098784,7.45843,0.412032
+1486,97.5331,10.2529,8.2777,0.071136,0.791072,0.009216,0.00512,0.028704,0.098272,0.098304,7.0615,0.114368
+1487,110.44,9.05469,8.63165,0.069024,0.761792,0.00864,0.004672,0.030304,0.09808,0.098912,7.44448,0.115744
+1488,97.5796,10.248,8.94771,0.069344,1.456,0.008608,0.006144,0.028672,0.098304,0.098272,7.06912,0.113248
+1489,99.8148,10.0186,9.4249,0.06928,1.04688,0.017728,0.004832,0.032544,0.112704,0.104096,7.92147,0.11536
+1490,102.636,9.74316,8.28442,0.069344,0.798304,0.00864,0.005632,0.027648,0.099488,0.098208,7.06346,0.113696
+1491,109.273,9.15137,8.25344,0.0696,0.751648,0.009344,0.004992,0.028672,0.097696,0.097024,7.07978,0.114688
+1492,108.005,9.25879,9.1377,0.066016,0.782048,0.00848,0.005792,0.028992,0.100352,0.099968,7.93149,0.11456
+1493,100.088,9.99121,8.24525,0.069632,0.749344,0.008416,0.006144,0.03008,0.096928,0.098336,7.07168,0.114688
+1494,107.068,9.33984,8.61594,0.06944,0.79856,0.008544,0.005696,0.02912,0.098304,0.098304,7.39482,0.113152
+1495,105.058,9.51855,9.12173,0.069664,0.786432,0.009408,0.004928,0.029952,0.096992,0.098304,7.91293,0.11312
+1496,100.372,9.96289,8.23059,0.069632,0.74752,0.008224,0.006144,0.02864,0.098304,0.098272,7.05949,0.114368
+1497,97.8406,10.2207,8.80998,0.069184,0.927264,0.017088,0.005632,0.029248,0.096416,0.098304,7.45062,0.116224
+1498,110.274,9.06836,8.92566,0.06928,1.04685,0.01072,0.022016,0.066016,0.097696,0.4328,7.06739,0.112896
+1499,95.97,10.4199,8.3536,0.069664,0.847872,0.009568,0.004736,0.029984,0.096704,0.10272,7.07907,0.11328
+1500,109.484,9.13379,8.71226,0.071008,0.840096,0.008448,0.00576,0.029056,0.09936,0.098432,7.44736,0.112736
+1501,101.688,9.83398,8.28829,0.071104,0.798336,0.00864,0.00464,0.029984,0.096864,0.097984,7.06739,0.113344
+1502,96.7407,10.3369,8.47776,0.075776,0.9728,0.009696,0.004672,0.030112,0.098912,0.102112,7.06714,0.116544
+1503,116.815,8.56055,9.5191,0.069632,0.831488,0.009568,0.004768,0.030208,0.0968,0.109856,8.23981,0.126976
+1504,92.6445,10.7939,8.30496,0.069024,0.770976,0.007904,0.005664,0.043776,0.11264,0.099584,7.0807,0.114688
+1505,95.979,10.4189,8.32515,0.07168,0.815008,0.008288,0.005952,0.029984,0.097184,0.098304,7.07994,0.118816
+1506,122.196,8.18359,8.26755,0.069632,0.757792,0.009568,0.006624,0.028832,0.098304,0.09776,7.08458,0.114464
+1507,104.875,9.53516,9.44538,0.06912,1.11242,0.008352,0.005792,0.029024,0.09632,0.099456,7.90816,0.116736
+1508,94.6833,10.5615,8.34182,0.07504,0.8296,0.00864,0.005568,0.029664,0.097504,0.098112,7.08461,0.113088
+1509,108.188,9.24316,8.56963,0.068384,0.757632,0.00832,0.00592,0.028896,0.096256,0.098304,7.39066,0.115264
+1510,106.789,9.36426,9.10714,0.070752,0.754592,0.008192,0.006144,0.02976,0.099264,0.100352,7.92374,0.114336
+1511,98.2066,10.1826,8.25856,0.068608,0.759808,0.009408,0.004928,0.029728,0.097088,0.098464,7.07584,0.114688
+1512,108.348,9.22949,8.68493,0.06944,0.79072,0.009472,0.004864,0.028672,0.099424,0.100672,7.46538,0.116288
+1513,98.5089,10.1514,8.5857,0.069568,1.06973,0.01024,0.006144,0.032576,0.108736,0.098304,7.07584,0.11456
+1514,105.08,9.5166,8.25152,0.069056,0.76256,0.008224,0.005856,0.028928,0.098304,0.098304,7.06701,0.11328
+1515,107.046,9.3418,8.72653,0.069792,0.835776,0.008192,0.006048,0.028768,0.098304,0.102016,7.46333,0.114304
+1516,98.794,10.1221,8.36282,0.068384,0.845856,0.008224,0.022144,0.037216,0.106176,0.098272,7.06333,0.113216
+1517,108.12,9.24902,8.29648,0.069568,0.804224,0.008064,0.004928,0.02976,0.096864,0.098656,7.0697,0.11472
+1518,108.936,9.17969,8.94627,0.070368,0.74752,0.008192,0.006144,0.028672,0.098304,0.108544,7.46096,0.417568
+1519,101.931,9.81055,8.26173,0.071264,0.7704,0.008352,0.005696,0.02912,0.0976,0.09696,7.06906,0.11328
+1520,109.157,9.16113,8.25782,0.075712,0.741728,0.008192,0.006336,0.029952,0.098464,0.100448,7.08022,0.116768
+1521,108.074,9.25293,9.38189,0.071104,0.805088,0.008544,0.021664,0.029504,0.09632,0.098272,8.13638,0.115008
+1522,96.8871,10.3213,8.2689,0.069408,0.77232,0.009568,0.004768,0.029824,0.097152,0.099904,7.06605,0.119904
+1523,110.345,9.0625,8.2432,0.069056,0.739904,0.00832,0.007392,0.029152,0.096448,0.101408,7.07478,0.116736
+1524,106.956,9.34961,8.40096,0.06896,0.914336,0.008256,0.005696,0.02912,0.098336,0.098112,7.06346,0.114688
+1525,103.351,9.67578,9.40646,0.069632,1.05165,0.008704,0.005632,0.031744,0.104448,0.108224,7.91104,0.115392
+1526,92.3188,10.832,8.31283,0.06944,0.824704,0.008672,0.0056,0.029344,0.097664,0.098624,7.06403,0.114752
+1527,110.488,9.05078,8.24541,0.069344,0.747936,0.008256,0.00608,0.028672,0.0976,0.09696,7.07706,0.113504
+1528,107.789,9.27734,9.08851,0.07104,0.746112,0.009344,0.004992,0.029984,0.098816,0.09856,7.91549,0.114176
+1529,97.5238,10.2539,8.41728,0.069632,0.913408,0.008352,0.005984,0.029728,0.09728,0.098304,7.0799,0.114688
+1530,110.167,9.07715,8.67942,0.070816,0.776352,0.008608,0.006464,0.02864,0.098304,0.1208,7.45667,0.112768
+1531,104.171,9.59961,9.06259,0.069856,0.745056,0.008576,0.005664,0.029152,0.097728,0.098816,7.8951,0.11264
+1532,100.147,9.98535,8.23872,0.068128,0.748608,0.00864,0.006624,0.028672,0.098208,0.0984,7.06717,0.114272
+1533,109.32,9.14746,8.63091,0.072288,0.745472,0.00928,0.005056,0.030048,0.09696,0.098304,7.45837,0.115136
+1534,92.5441,10.8057,8.74352,0.06944,1.23574,0.009632,0.004704,0.032512,0.108736,0.09824,7.06982,0.114688
+1535,109.157,9.16113,8.27222,0.068224,0.771488,0.00864,0.006304,0.028672,0.104448,0.104448,7.06547,0.114528
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..a0feed0
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,59.8882,16.7292,15.6001,0.0701553,0.951355,0.00752688,0.00580347,0.0291874,0.0976586,0.0990625,14.2218,0.117513
+max_1024,74.5161,20.5195,17.6596,0.090528,2.8329,0.023328,0.022528,0.047104,0.113152,0.39904,16.3267,0.494112
+min_1024,48.7341,13.4199,14.981,0.066496,0.839936,0.006176,0.004096,0.027296,0.094624,0.096192,13.6779,0.111136
+512,67.6533,14.7812,15.4255,0.067456,1.21078,0.006688,0.006144,0.02848,0.096448,0.09808,13.7972,0.11424
+513,59.5973,16.7793,15.5688,0.069632,0.972608,0.006336,0.006176,0.028608,0.09632,0.097856,14.1784,0.112864
+514,58.3044,17.1514,15.3248,0.069888,1.0895,0.007872,0.014272,0.039296,0.096256,0.098336,13.7944,0.11504
+515,61.1891,16.3428,15.2084,0.069344,0.990944,0.006752,0.005856,0.030976,0.096288,0.098304,13.7967,0.11328
+516,59.4105,16.832,17.6596,0.069632,1.30253,0.007904,0.005632,0.028608,0.097152,0.098272,15.9355,0.114368
+517,53.2612,18.7754,15.288,0.06928,1.05651,0.006752,0.005856,0.041248,0.097408,0.097184,13.799,0.114752
+518,59.9707,16.6748,15.2719,0.069632,1.06042,0.006592,0.006176,0.030208,0.096736,0.098304,13.7884,0.115424
+519,57.076,17.5205,15.659,0.069632,1.05258,0.007296,0.005088,0.028672,0.096256,0.098304,14.1885,0.112672
+520,58.7257,17.0283,15.7547,0.072064,1.52371,0.009408,0.004928,0.03408,0.096992,0.098336,13.7994,0.115776
+521,61.3946,16.2881,15.1217,0.069632,0.909408,0.00816,0.005312,0.027488,0.098304,0.098304,13.7912,0.113888
+522,61.6682,16.2158,17.6354,0.06992,0.887392,0.007488,0.004896,0.028576,0.097952,0.096608,16.3267,0.115904
+523,51.9007,19.2676,15.2306,0.069568,1.0223,0.007328,0.005024,0.028672,0.096256,0.098304,13.7892,0.113984
+524,60.8401,16.4365,15.2902,0.0696,1.0527,0.007968,0.005696,0.028832,0.106112,0.097152,13.8076,0.114496
+525,60.1539,16.624,16.3881,0.070784,0.940928,0.007424,0.004864,0.028672,0.096288,0.110592,15.0155,0.113088
+526,54.3467,18.4004,15.3498,0.069504,1.15216,0.007136,0.005824,0.0288,0.096448,0.097664,13.7775,0.114688
+527,60.1963,16.6123,15.227,0.073632,1.02186,0.006336,0.006144,0.028672,0.095776,0.096896,13.7849,0.112832
+528,61.3394,16.3027,15.5341,0.069216,0.931488,0.006912,0.005984,0.028576,0.096544,0.098272,14.1845,0.112608
+529,57.3573,17.4346,15.8601,0.069568,1.64029,0.006976,0.005664,0.028672,0.096896,0.09984,13.7969,0.115232
+530,61.6496,16.2207,15.1259,0.069504,0.917984,0.007872,0.004416,0.0288,0.097216,0.097216,13.7892,0.113664
+531,61.4572,16.2715,15.2146,0.069056,0.952896,0.007392,0.004928,0.029664,0.09664,0.098112,13.8425,0.113472
+532,61.127,16.3594,15.1254,0.07056,0.92352,0.006272,0.006144,0.028672,0.096256,0.098304,13.781,0.114688
+533,61.7128,16.2041,15.1306,0.069504,0.9184,0.007616,0.004672,0.028672,0.097824,0.096832,13.7932,0.113888
+534,61.7835,16.1855,15.1288,0.069568,0.904896,0.006752,0.006144,0.02848,0.096448,0.098336,13.8035,0.114688
+535,60.6204,16.4961,15.1844,0.070016,0.97088,0.008,0.005472,0.028576,0.096512,0.09696,13.7953,0.11264
+536,63.0464,15.8613,16.3269,0.06928,0.893952,0.008096,0.005632,0.028608,0.096896,0.097728,15.0124,0.114272
+537,57.3734,17.4297,15.0995,0.069664,0.878592,0.007872,0.004576,0.028512,0.098304,0.098304,13.7974,0.116288
+538,60.9814,16.3984,16.4375,0.069824,0.995328,0.007872,0.005632,0.0288,0.096064,0.097184,15.0239,0.112864
+539,57.6285,17.3525,15.2101,0.069632,1.00966,0.00784,0.004544,0.029696,0.096768,0.09792,13.7797,0.114272
+540,61.4461,16.2744,15.2064,0.07088,0.9976,0.006752,0.006144,0.02864,0.096288,0.098304,13.7871,0.114688
+541,59.1908,16.8945,15.724,0.069632,1.12435,0.007872,0.004576,0.033632,0.109568,0.097312,14.1632,0.11392
+542,59.1634,16.9023,16.4387,0.067712,1.01139,0.006464,0.006176,0.02864,0.098272,0.098336,15.0077,0.113984
+543,53.0323,18.8564,15.1981,0.069248,0.98752,0.007968,0.004544,0.029632,0.096512,0.096864,13.7912,0.11456
+544,67.0816,14.9072,16.4618,0.069632,1.02531,0.00688,0.006048,0.028736,0.096288,0.098304,15.0159,0.114688
+545,57.0951,17.5146,15.2084,0.069664,0.993248,0.007776,0.004544,0.029728,0.095168,0.098304,13.7967,0.11328
+546,60.9959,16.3945,15.233,0.069664,1.02758,0.006624,0.006112,0.028096,0.096864,0.096256,13.7871,0.114688
+547,60.8437,16.4355,16.4271,0.07136,0.99104,0.006816,0.005792,0.0288,0.096032,0.097856,15.0163,0.113184
+548,57.2675,17.4619,15.1284,0.06832,0.921376,0.007424,0.004896,0.02864,0.097888,0.096672,13.7887,0.114528
+549,61.3762,16.293,15.1243,0.069632,0.909344,0.007744,0.004544,0.029856,0.096672,0.09792,13.7941,0.114464
+550,61.8582,16.166,15.5675,0.06976,0.983776,0.007936,0.005664,0.028768,0.096896,0.098176,14.1636,0.112832
+551,59.9918,16.6689,16.1334,0.069696,1.05696,0.007872,0.004544,0.028576,0.101824,0.104992,14.6451,0.11392
+552,57.3959,17.4229,15.1839,0.070848,0.985216,0.006848,0.005664,0.028704,0.096704,0.097568,13.7776,0.114688
+553,61.4461,16.2744,15.5151,0.069088,0.944576,0.00656,0.006016,0.028672,0.096352,0.09632,14.1537,0.113888
+554,58.3476,17.1387,15.219,0.067968,1.00957,0.00752,0.004896,0.030592,0.105984,0.10464,13.7711,0.116736
+555,62.0982,16.1035,15.1327,0.06944,0.901312,0.007808,0.004576,0.028576,0.09776,0.0968,13.8137,0.112768
+556,61.8208,16.1758,15.5895,0.069632,1.00774,0.007328,0.00496,0.03056,0.096448,0.098272,14.1619,0.11264
+557,58.7257,17.0283,15.6035,0.07168,1.0281,0.007328,0.004992,0.02864,0.096256,0.097696,14.1561,0.112704
+558,61.0578,16.3779,15.9705,0.068736,0.90848,0.006848,0.006016,0.028736,0.09632,0.09808,14.6434,0.113888
+559,57.9087,17.2686,16.4524,0.068416,0.956416,0.007328,0.0152,0.028704,0.096224,0.099968,15.0675,0.11264
+560,56.0052,17.8555,15.3351,0.069408,1.14483,0.006528,0.006112,0.028672,0.096256,0.098304,13.7708,0.114208
+561,60.2176,16.6064,15.2306,0.069472,1.00595,0.007296,0.0152,0.031968,0.097088,0.099488,13.788,0.116128
+562,61.2513,16.3262,15.4545,0.06944,0.887168,0.006272,0.006176,0.02864,0.097376,0.09824,14.1486,0.11264
+563,59.848,16.709,16.3558,0.069376,0.901888,0.007712,0.004576,0.028672,0.097632,0.101024,15.0295,0.115456
+564,57.7943,17.3027,15.9339,0.070304,0.856064,0.007392,0.004896,0.028672,0.096384,0.097984,14.6577,0.114432
+565,57.7389,17.3193,15.5415,0.069568,0.947776,0.00656,0.006016,0.028352,0.096576,0.096384,14.1656,0.124736
+566,60.6923,16.4766,15.0793,0.073504,0.870752,0.00672,0.006144,0.028672,0.097888,0.09824,13.7808,0.116576
+567,61.7388,16.1973,15.1491,0.069696,0.944096,0.00736,0.004928,0.028672,0.096288,0.097728,13.7856,0.114688
+568,60.5165,16.5244,16.5134,0.069632,1.05712,0.007744,0.005664,0.028672,0.097056,0.097792,15.0365,0.113216
+569,51.7015,19.3418,15.1695,0.069632,0.953472,0.00704,0.005728,0.028736,0.098656,0.098016,13.7953,0.112992
+570,65.9709,15.1582,15.5411,0.068512,1.28189,0.007264,0.005152,0.02864,0.102432,0.106112,13.801,0.140128
+571,60.0692,16.6475,16.4581,0.090528,0.960512,0.008128,0.005312,0.037664,0.096352,0.098208,15.0485,0.112896
+572,57.8074,17.2988,15.0962,0.067968,0.886176,0.00672,0.006176,0.02864,0.096256,0.098304,13.7924,0.113472
+573,60.7211,16.4688,15.1439,0.068576,0.907264,0.00784,0.004576,0.029632,0.109504,0.098304,13.8028,0.11536
+574,60.4772,16.5352,15.4993,0.069632,0.907264,0.00768,0.00496,0.029344,0.102624,0.097056,14.1681,0.112672
+575,60.3774,16.5625,16.0303,0.06944,0.954208,0.007008,0.0056,0.029024,0.101824,0.109312,14.6391,0.114752
+576,59.0304,16.9404,15.1284,0.071104,0.922176,0.007456,0.004896,0.028608,0.09808,0.0976,13.784,0.11456
+577,61.5829,16.2383,15.6157,0.068096,1.00762,0.007552,0.004736,0.028672,0.097632,0.096928,14.1906,0.113888
+578,56.6905,17.6396,17.1498,0.08192,1.71555,0.006816,0.006112,0.028704,0.096256,0.098304,15.0016,0.114464
+579,56.1096,17.8223,15.5126,0.069632,1.30048,0.007552,0.004736,0.028672,0.097696,0.107104,13.783,0.113664
+580,61.963,16.1387,16.3366,0.070944,0.878752,0.00672,0.006144,0.044768,0.096704,0.105696,15.0125,0.1144
+581,57.8793,17.2773,15.0774,0.069472,0.8696,0.007104,0.005696,0.028576,0.104992,0.097632,13.7817,0.11264
+582,62.0456,16.1172,15.084,0.069888,0.874112,0.006688,0.006144,0.028672,0.109984,0.098112,13.777,0.113376
+583,62.2606,16.0615,16.3219,0.070912,0.895392,0.006496,0.006112,0.028704,0.096256,0.097504,15.0081,0.112416
+584,57.2995,17.4521,15.1636,0.069088,0.951072,0.008192,0.005728,0.028992,0.096128,0.097632,13.7921,0.114688
+585,62.023,16.123,15.4598,0.069568,0.878976,0.007968,0.005376,0.028928,0.098048,0.09856,14.1563,0.116032
+586,61.0032,16.3926,16.2885,0.068384,0.884352,0.006528,0.006112,0.028672,0.096256,0.098304,14.9867,0.113184
+587,57.1971,17.4834,16.018,0.068448,0.946208,0.00816,0.005376,0.028736,0.09696,0.097632,14.6515,0.11504
+588,59.4485,16.8213,15.0879,0.068992,0.8832,0.006496,0.006176,0.02864,0.096256,0.098304,13.7851,0.11472
+589,62.3858,16.0293,15.4522,0.069056,0.862784,0.007904,0.004544,0.028512,0.09728,0.09728,14.1732,0.111584
+590,57.8498,17.2861,15.8548,0.07104,1.64029,0.006944,0.005984,0.028832,0.097952,0.098656,13.7885,0.116672
+591,61.5052,16.2588,15.0898,0.06912,0.891296,0.006592,0.006016,0.028672,0.096384,0.098336,13.7789,0.114432
+592,61.4867,16.2637,15.8347,0.069312,0.946432,0.006624,0.006176,0.02864,0.100256,0.104576,14.1578,0.414912
+593,58.5444,17.0811,16.3387,0.07296,0.923648,0.006976,0.0056,0.028672,0.095936,0.09712,14.9934,0.114336
+594,52.7808,18.9463,15.49,0.069248,0.899488,0.007808,0.005536,0.02928,0.096608,0.098336,14.1595,0.124256
+595,64.8224,15.4268,15.1651,0.0736,0.94016,0.008192,0.005344,0.02864,0.103232,0.098304,13.7933,0.114336
+596,62.5917,15.9766,15.0815,0.069728,0.868256,0.007712,0.005632,0.028672,0.111424,0.097888,13.7775,0.114688
+597,61.1818,16.3447,16.3,0.070752,0.965536,0.007936,0.004544,0.029504,0.097216,0.098112,14.5677,0.458656
+598,57.2643,17.4629,15.0712,0.069632,0.886784,0.007296,0.004992,0.028672,0.096256,0.098304,13.766,0.11328
+599,60.9234,16.4141,15.6546,0.069632,1.04822,0.006496,0.016384,0.028576,0.096384,0.097728,14.1706,0.120608
+600,59.4761,16.8135,15.463,0.068544,0.88448,0.0064,0.006144,0.028672,0.09824,0.097952,14.1593,0.113312
+601,60.7031,16.4736,15.9062,0.068896,0.852544,0.006464,0.006112,0.02864,0.095776,0.097984,14.6359,0.113888
+602,58.9794,16.9551,16.2652,0.069504,0.853472,0.006816,0.006144,0.028672,0.097952,0.09824,14.9897,0.114688
+603,57.3477,17.4375,15.076,0.068288,0.89904,0.00736,0.00496,0.02864,0.097568,0.096992,13.7598,0.113312
+604,61.5829,16.2383,15.1429,0.069632,0.943136,0.007136,0.005888,0.028928,0.104416,0.09952,13.7646,0.119616
+605,61.7984,16.1816,16.3019,0.07168,0.886784,0.00816,0.005312,0.028704,0.097024,0.098368,14.9927,0.11312
+606,53.8352,18.5752,15.2023,0.069632,0.991072,0.016576,0.005984,0.028608,0.096448,0.097376,13.7836,0.113024
+607,63.8364,15.665,15.0835,0.069632,0.8904,0.006656,0.00592,0.028768,0.096352,0.099328,13.7696,0.116896
+608,62.653,15.9609,16.6544,0.069632,0.880352,0.00656,0.006112,0.028672,0.096256,0.098112,15.356,0.112736
+609,54.2402,18.4365,15.7409,0.071072,1.53866,0.007296,0.004992,0.028672,0.098304,0.098304,13.7789,0.114688
+610,61.978,16.1348,15.1057,0.06976,0.91328,0.007616,0.004896,0.028448,0.097632,0.096928,13.7728,0.114304
+611,61.6273,16.2266,15.5054,0.069536,0.91792,0.007264,0.00512,0.028672,0.096256,0.097728,14.1699,0.113088
+612,57.9481,17.2568,15.8156,0.06848,1.62518,0.007072,0.005888,0.028512,0.096672,0.098208,13.7708,0.114688
+613,60.581,16.5068,15.1692,0.069376,0.969504,0.007296,0.005056,0.028672,0.097472,0.096992,13.7811,0.113728
+614,60.7896,16.4502,16.3953,0.069696,0.962496,0.007424,0.004864,0.028672,0.096256,0.098336,15.0118,0.115776
+615,57.7552,17.3145,15.0979,0.069632,0.905216,0.007808,0.004544,0.028608,0.096288,0.097696,13.7734,0.114688
+616,61.5644,16.2432,15.1178,0.069632,0.917504,0.007936,0.005632,0.028832,0.096864,0.107872,13.7692,0.11424
+617,56.0696,17.835,15.5645,0.069632,0.978688,0.02032,0.004544,0.03008,0.096864,0.1,14.152,0.112416
+618,66.3341,15.0752,15.915,0.069568,0.873632,0.007072,0.005888,0.028704,0.096512,0.097728,14.6229,0.113024
+619,58.5645,17.0752,15.1391,0.07632,0.931168,0.006816,0.00576,0.029024,0.09776,0.098784,13.7782,0.115296
+620,62.1736,16.084,16.3565,0.069632,0.868352,0.007424,0.004896,0.02864,0.096256,0.098304,15.0692,0.113824
+621,55.8282,17.9121,15.7036,0.069632,1.09677,0.007104,0.005472,0.028896,0.096608,0.097472,14.1884,0.113184
+622,59.5765,16.7852,16.0103,0.071296,0.954752,0.022016,0.005664,0.035808,0.100352,0.109568,14.5971,0.113696
+623,59.5072,16.8047,15.4279,0.069152,0.863008,0.008064,0.005312,0.028768,0.096192,0.09696,14.1478,0.112672
+624,59.1463,16.9072,15.1614,0.083072,0.924384,0.007392,0.005056,0.028672,0.104448,0.10784,13.7837,0.116768
+625,62.0193,16.124,15.052,0.069632,0.856064,0.008,0.004544,0.029696,0.099072,0.097472,13.7736,0.113856
+626,61.8245,16.1748,15.7617,0.068768,0.869216,0.007104,0.005824,0.028896,0.096384,0.098272,14.1795,0.40768
+627,59.4865,16.8105,15.0964,0.072352,0.865504,0.006912,0.005696,0.02864,0.09648,0.098048,13.8092,0.113568
+628,61.4904,16.2627,15.4651,0.069728,0.89056,0.00704,0.005888,0.028672,0.0976,0.097184,14.1552,0.11328
+629,59.4312,16.8262,16.5842,0.06944,1.188,0.009408,0.00496,0.03072,0.098336,0.097984,14.9705,0.114912
+630,57.7259,17.3232,15.0888,0.06912,0.901632,0.008192,0.005728,0.028832,0.096512,0.09792,13.7668,0.114112
+631,59.2696,16.8721,15.3544,0.069696,1.11459,0.007872,0.004544,0.02992,0.10512,0.106496,13.8015,0.114688
+632,61.483,16.2646,16.4165,0.069632,1.00934,0.006464,0.006176,0.02864,0.096256,0.098048,14.9875,0.114464
+633,57.6414,17.3486,15.1122,0.069632,0.909216,0.007264,0.00512,0.028672,0.095968,0.096576,13.7866,0.113184
+634,61.2257,16.333,15.0819,0.06912,0.891008,0.006848,0.006016,0.028672,0.098368,0.098368,13.7687,0.114784
+635,62.0982,16.1035,15.4553,0.069632,0.894976,0.007648,0.00464,0.028672,0.096256,0.097376,14.1424,0.113728
+636,59.201,16.8916,15.9252,0.069664,0.894528,0.006592,0.006112,0.028704,0.096224,0.097792,14.6124,0.11328
+637,60.4344,16.5469,15.0884,0.070496,0.897024,0.007584,0.004704,0.028672,0.096256,0.098304,13.7708,0.114624
+638,61.138,16.3564,15.5014,0.079104,0.922368,0.007456,0.004864,0.032736,0.097568,0.096992,14.1472,0.113152
+639,59.7782,16.7285,15.5528,0.0688,1.34122,0.007424,0.004864,0.031936,0.097088,0.099616,13.7858,0.116064
+640,60.9524,16.4062,15.1001,0.069856,0.913408,0.007904,0.005632,0.028672,0.096256,0.097056,13.7681,0.11328
+641,62.1963,16.0781,15.5021,0.069536,0.931936,0.006912,0.005632,0.028544,0.096256,0.096928,14.1536,0.112736
+642,55.6159,17.9805,15.8745,0.071808,1.31248,0.006784,0.006144,0.028672,0.097664,0.096896,14.1414,0.11264
+643,63.6935,15.7002,15.9233,0.06912,0.887296,0.007776,0.004544,0.02864,0.097664,0.096896,14.6186,0.112704
+644,58.7459,17.0225,16.3105,0.074528,0.858112,0.007424,0.004896,0.030688,0.098304,0.098304,15.0234,0.114912
+645,57.6252,17.3535,15.0925,0.068416,0.908576,0.006784,0.005408,0.028576,0.095136,0.098144,13.7689,0.11264
+646,58.5712,17.0732,15.2059,0.069664,1.02806,0.008,0.005632,0.02896,0.104032,0.09712,13.7461,0.118304
+647,64.4187,15.5234,16.4245,0.06976,1.00902,0.006656,0.005792,0.028832,0.098144,0.096608,14.9972,0.112576
+648,57.2707,17.4609,15.1751,0.069632,0.96432,0.00656,0.006016,0.028672,0.09744,0.09712,13.7911,0.114176
+649,60.6743,16.4814,15.2617,0.069632,1.06653,0.006624,0.00608,0.028736,0.096256,0.098304,13.7746,0.114976
+650,61.8171,16.1768,16.6894,0.069728,0.911072,0.006592,0.006144,0.028672,0.096256,0.098304,15.36,0.112608
+651,56.0359,17.8457,15.2604,0.068384,1.05414,0.008736,0.005952,0.030912,0.09808,0.098528,13.7789,0.116736
+652,61.3247,16.3066,15.1038,0.069952,0.903616,0.007328,0.00496,0.028672,0.09808,0.09648,13.7808,0.113984
+653,61.8432,16.1699,15.4829,0.069632,0.906848,0.00656,0.006016,0.02864,0.096416,0.098112,14.158,0.11264
+654,57.441,17.4092,15.754,0.07856,1.51686,0.006816,0.006144,0.031968,0.09712,0.100288,13.8009,0.115328
+655,60.6455,16.4893,15.221,0.068384,1.01789,0.00816,0.00544,0.028544,0.096672,0.096672,13.7851,0.114112
+656,61.4609,16.2705,15.5292,0.069632,0.970752,0.00736,0.004928,0.028672,0.097792,0.098144,14.1392,0.112672
+657,58.976,16.9561,15.2448,0.072992,1.02678,0.007776,0.005568,0.029664,0.096256,0.096256,13.7953,0.114208
+658,61.8134,16.1777,15.1183,0.069632,0.915456,0.007456,0.004896,0.028608,0.097568,0.096992,13.7844,0.113344
+659,61.2074,16.3379,16.3673,0.075648,0.914976,0.006752,0.005888,0.028896,0.097568,0.099072,15.0241,0.114336
+660,56.5028,17.6982,15.1761,0.069504,0.979072,0.006592,0.006144,0.02864,0.096288,0.097888,13.7773,0.114688
+661,60.6923,16.4766,15.1663,0.069504,0.959424,0.00736,0.004928,0.028672,0.096256,0.098304,13.7869,0.114912
+662,62.0681,16.1113,16.3364,0.069824,0.9216,0.006336,0.016384,0.028672,0.097536,0.097024,14.9848,0.11424
+663,56.8952,17.5762,15.2076,0.069312,1.01117,0.007136,0.005568,0.028544,0.09696,0.097792,13.7785,0.11264
+664,62.2152,16.0732,16.2939,0.069312,0.882592,0.00656,0.006176,0.02864,0.097472,0.098624,14.9919,0.112672
+665,57.7162,17.3262,15.4496,0.069696,0.898656,0.006752,0.005408,0.029024,0.096224,0.096192,14.1338,0.11392
+666,60.2956,16.585,15.9636,0.069664,0.927712,0.008032,0.005696,0.028992,0.096576,0.097376,14.6144,0.115104
+667,58.9488,16.9639,15.075,0.06912,0.878784,0.006496,0.006112,0.028672,0.096192,0.09632,13.7802,0.113184
+668,60.9596,16.4043,15.6256,0.071008,1.00938,0.007104,0.005792,0.046464,0.096768,0.096736,14.166,0.126304
+669,59.89,16.6973,15.0715,0.071904,0.876448,0.007264,0.00512,0.028672,0.097312,0.097248,13.7728,0.114688
+670,62.4466,16.0137,15.4378,0.069344,0.870688,0.008096,0.005632,0.028704,0.096512,0.097824,14.1478,0.113248
+671,60.7031,16.4736,17.1257,0.069664,0.893376,0.007328,0.004992,0.02864,0.097792,0.096768,15.8106,0.116576
+672,55.1665,18.127,15.0752,0.069536,0.888768,0.006304,0.006144,0.028672,0.097792,0.096768,13.7667,0.11456
+673,61.9855,16.1328,15.0997,0.069536,0.8992,0.007232,0.005088,0.028672,0.096288,0.097696,13.7816,0.114464
+674,58.7257,17.0283,16.3218,0.070688,0.92464,0.007872,0.005696,0.027392,0.098336,0.098304,14.9749,0.113952
+675,60.1468,16.626,15.0711,0.069632,0.879968,0.006816,0.005792,0.028736,0.096448,0.096352,13.7745,0.112832
+676,62.2152,16.0732,15.0593,0.069312,0.875264,0.008192,0.00576,0.028768,0.096544,0.097984,13.7629,0.114592
+677,62.3136,16.0479,16.2755,0.069664,0.872,0.00656,0.00608,0.028672,0.096352,0.097856,14.9856,0.112672
+678,57.9874,17.2451,15.0589,0.068864,0.86528,0.007616,0.004896,0.0296,0.113152,0.098656,13.7564,0.114464
+679,62.1246,16.0967,15.0717,0.07024,0.888384,0.006784,0.005632,0.02864,0.0968,0.098304,13.7623,0.114624
+680,62.1359,16.0938,16.3346,0.069472,0.902944,0.006528,0.006144,0.028672,0.097312,0.097216,15.0132,0.113088
+681,57.6317,17.3516,15.0445,0.069536,0.870528,0.008064,0.005312,0.02864,0.096736,0.098272,13.7528,0.11456
+682,62.5611,15.9844,15.0569,0.070464,0.878592,0.00784,0.005856,0.028672,0.096896,0.098176,13.756,0.1144
+683,62.5038,15.999,15.4437,0.070816,0.863072,0.00784,0.004544,0.028576,0.096256,0.098304,14.1613,0.113024
+684,60.3027,16.583,15.9516,0.06816,0.913408,0.008128,0.005408,0.028672,0.097056,0.09792,14.6169,0.115904
+685,58.6349,17.0547,16.3742,0.070112,0.953856,0.006784,0.016384,0.03232,0.096288,0.096704,14.9883,0.113472
+686,56.8415,17.5928,15.9321,0.078336,1.04662,0.006272,0.006144,0.029952,0.097024,0.09744,14.1582,0.412128
+687,58.6819,17.041,15.2018,0.071744,0.9992,0.00672,0.014336,0.032768,0.096256,0.097536,13.7694,0.113856
+688,61.832,16.1729,15.1778,0.069536,0.972544,0.006496,0.006144,0.02864,0.110624,0.098304,13.7719,0.113632
+689,62.3858,16.0293,16.3637,0.069376,0.9016,0.007904,0.013792,0.028704,0.112896,0.098016,15.0168,0.114688
+690,57.6901,17.334,15.0675,0.069568,0.872416,0.006848,0.00608,0.028736,0.110464,0.097472,13.7614,0.114496
+691,61.832,16.1729,15.086,0.068064,0.896832,0.006304,0.006144,0.028672,0.096288,0.111808,13.7593,0.112672
+692,61.9855,16.1328,16.2849,0.069216,0.870816,0.008192,0.005696,0.02864,0.098176,0.098944,14.9913,0.113952
+693,57.9546,17.2549,15.0631,0.069664,0.873984,0.006624,0.005984,0.028608,0.096288,0.096448,13.7728,0.112672
+694,61.0505,16.3799,15.1732,0.06912,0.973344,0.008192,0.005696,0.028832,0.096576,0.097472,13.7794,0.11456
+695,62.6645,15.958,16.3113,0.071168,0.884576,0.006816,0.00576,0.028832,0.09648,0.097632,14.9957,0.124384
+696,57.4249,17.4141,15.0582,0.069312,0.883008,0.007488,0.004896,0.0296,0.097056,0.09648,13.756,0.1144
+697,60.6527,16.4873,15.3011,0.069376,1.12304,0.008192,0.00544,0.029152,0.098144,0.0984,13.7537,0.115648
+698,61.7053,16.2061,15.5443,0.067776,0.954368,0.007424,0.004896,0.03888,0.096256,0.098304,14.1619,0.114432
+699,59.0576,16.9326,16.6134,0.069248,1.19421,0.007648,0.0048,0.033888,0.1048,0.096832,14.9873,0.114688
+700,58.129,17.2031,15.9024,0.0696,0.888896,0.00768,0.005632,0.027616,0.097856,0.096704,14.594,0.1144
+701,58.0301,17.2324,15.4706,0.069632,0.882688,0.007968,0.004544,0.028448,0.098048,0.104736,14.1578,0.116768
+702,59.5349,16.7969,15.1505,0.073472,0.974592,0.006656,0.006144,0.028672,0.096288,0.097472,13.7531,0.114048
+703,61.4351,16.2773,15.1532,0.068576,0.974112,0.006848,0.005696,0.028512,0.096864,0.098016,13.7608,0.11376
+704,61.6051,16.2324,16.4291,0.069856,1.00227,0.007168,0.005728,0.028704,0.096672,0.098176,15.0058,0.114688
+705,57.7357,17.3203,15.0677,0.068224,0.886336,0.006592,0.006144,0.02864,0.096288,0.096256,13.7658,0.113408
+706,61.3504,16.2998,15.4829,0.069632,0.99056,0.006816,0.006112,0.028704,0.096224,0.104736,14.0675,0.11264
+707,60.9705,16.4014,16.2724,0.07024,0.864608,0.007936,0.004544,0.02848,0.098304,0.098304,14.9873,0.112672
+708,57.3766,17.4287,15.1282,0.069376,0.951936,0.006784,0.006144,0.028672,0.096256,0.097696,13.757,0.114304
+709,60.8329,16.4385,15.1776,0.069568,0.966368,0.006624,0.016192,0.030272,0.096896,0.098304,13.7769,0.11648
+710,57.2355,17.4717,15.6432,0.069792,1.06333,0.007712,0.01456,0.02896,0.096288,0.09824,14.1509,0.113472
+711,62.8452,15.9121,15.9709,0.069824,0.91616,0.007264,0.005024,0.028672,0.11264,0.102464,14.6157,0.113184
+712,58.0894,17.2148,15.246,0.070432,1.048,0.00672,0.006112,0.028704,0.096256,0.098304,13.7687,0.12272
+713,62.0681,16.1113,15.5648,0.069664,0.968672,0.007648,0.00464,0.028672,0.096256,0.098336,14.1783,0.11264
+714,55.1992,18.1162,15.9015,0.069664,1.71658,0.006624,0.016544,0.028512,0.098304,0.097952,13.7506,0.116672
+715,63.7688,15.6816,15.1168,0.069216,0.93664,0.006368,0.005984,0.028768,0.09632,0.098048,13.7625,0.112928
+716,60.4808,16.5342,16.2785,0.069632,1.01786,0.008192,0.005728,0.043424,0.097696,0.09808,14.8195,0.118432
+717,57.1365,17.502,15.233,0.06912,1.04432,0.006816,0.00576,0.028736,0.096576,0.097472,13.7695,0.114688
+718,63.1125,15.8447,15.0929,0.069536,0.912736,0.006912,0.006144,0.028672,0.096256,0.097824,13.761,0.113856
+719,62.1586,16.0879,16.341,0.069632,0.903168,0.007392,0.004896,0.028672,0.098304,0.098304,15.0175,0.113152
+720,57.4667,17.4014,15.4569,0.070304,0.908352,0.007104,0.005888,0.028608,0.096576,0.097952,14.1295,0.11264
+721,60.7751,16.4541,15.9162,0.069152,0.879072,0.007424,0.004864,0.028672,0.096256,0.098304,14.6166,0.11584
+722,58.5779,17.0713,16.3784,0.068096,0.933888,0.007744,0.005632,0.027584,0.09968,0.09696,15.0258,0.113024
+723,57.6479,17.3467,15.0671,0.068832,0.89376,0.007552,0.004704,0.0304,0.100672,0.100096,13.7464,0.114688
+724,62.4466,16.0137,15.0754,0.071136,0.889408,0.00816,0.005696,0.0288,0.098304,0.098624,13.7596,0.115584
+725,59.9286,16.6865,16.3676,0.069472,0.96272,0.00736,0.004928,0.028672,0.096256,0.098112,14.9875,0.11264
+726,56.7816,17.6113,15.1675,0.069632,0.96256,0.007424,0.004896,0.029728,0.097248,0.098304,13.7824,0.115264
+727,60.8582,16.4316,15.0911,0.069632,0.907264,0.00752,0.004768,0.028672,0.096256,0.097984,13.7649,0.114112
+728,62.4581,16.0107,17.4697,0.06992,0.89696,0.007328,0.005056,0.02864,0.097728,0.096864,16.1519,0.11536
+729,53.2778,18.7695,15.1175,0.069664,0.935904,0.007616,0.004672,0.028672,0.106048,0.096704,13.7544,0.113888
+730,61.1745,16.3467,15.186,0.069248,0.995232,0.006752,0.006144,0.028608,0.096352,0.106464,13.7637,0.113568
+731,62.3023,16.0508,16.3599,0.069536,0.93248,0.007456,0.004832,0.0408,0.09824,0.0984,14.9952,0.112896
+732,57.2867,17.4561,15.1198,0.068928,0.924416,0.007296,0.004992,0.028672,0.097344,0.097216,13.7769,0.114048
+733,62.253,16.0635,15.1113,0.071168,0.905088,0.006784,0.005856,0.0288,0.096416,0.09808,13.7853,0.11376
+734,61.5274,16.2529,16.2839,0.069856,0.903168,0.007232,0.005056,0.028672,0.097632,0.096928,14.9627,0.112672
+735,58.0828,17.2168,15.0501,0.0696,0.867872,0.00672,0.004448,0.028608,0.09536,0.096896,13.7627,0.117952
+736,60.5094,16.5264,15.0692,0.069632,0.890176,0.006848,0.00608,0.028736,0.098304,0.098336,13.7556,0.115488
+737,61.6756,16.2139,15.4911,0.069696,0.923648,0.007808,0.004576,0.02864,0.097568,0.096896,14.1496,0.112672
+738,60.3489,16.5703,15.9347,0.0696,0.909344,0.007968,0.005632,0.028928,0.096736,0.098144,14.6024,0.115936
+739,58.5544,17.0781,15.0876,0.069632,0.906624,0.006784,0.005824,0.028768,0.09648,0.097376,13.7614,0.114688
+740,62.0794,16.1084,16.2631,0.069056,0.87888,0.006528,0.006144,0.028672,0.096256,0.098272,14.9559,0.123456
+741,57.6122,17.3574,15.108,0.070112,0.923648,0.007904,0.004544,0.029664,0.097184,0.098272,13.7605,0.116192
+742,61.8918,16.1572,16.3308,0.069632,0.966656,0.008032,0.005664,0.028704,0.096288,0.096832,14.9461,0.112864
+743,57.5798,17.3672,16.3591,0.075584,0.96208,0.006816,0.005504,0.028768,0.0968,0.09936,14.9694,0.114752
+744,57.7454,17.3174,15.0695,0.068192,0.884736,0.007456,0.004896,0.028704,0.097792,0.096704,13.7666,0.114368
+745,61.1307,16.3584,15.0795,0.068864,0.866432,0.006816,0.006048,0.028544,0.1088,0.106464,13.7626,0.124992
+746,62.0907,16.1055,16.2427,0.071136,0.850464,0.007936,0.005664,0.028512,0.097152,0.098304,14.9709,0.11264
+747,56.911,17.5713,15.1553,0.069152,0.97504,0.006528,0.006144,0.028672,0.096288,0.09824,13.7616,0.113664
+748,61.6125,16.2305,15.4788,0.077824,0.8864,0.006528,0.006144,0.028672,0.098336,0.108512,14.1508,0.115552
+749,60.0023,16.666,16.3278,0.069664,0.902272,0.007008,0.005536,0.028768,0.096768,0.096256,15.0077,0.113824
+750,54.3467,18.4004,16.1729,0.073376,1.06941,0.007488,0.004896,0.029696,0.097184,0.098304,14.676,0.116576
+751,58.7527,17.0205,15.11,0.06944,0.942272,0.008192,0.005376,0.028576,0.096608,0.102048,13.7441,0.113408
+752,63.5196,15.7432,16.3272,0.069728,0.911776,0.007296,0.005024,0.028672,0.096256,0.098304,14.9853,0.124864
+753,57.2003,17.4824,15.142,0.069632,0.950304,0.007488,0.004768,0.028672,0.096288,0.098112,13.7709,0.115808
+754,60.7607,16.458,15.1525,0.069632,0.989184,0.008192,0.00576,0.028704,0.09648,0.097632,13.7429,0.114016
+755,61.4978,16.2607,16.4591,0.076928,1.04038,0.00704,0.02048,0.028672,0.0976,0.098112,14.9759,0.114016
+756,57.8662,17.2812,15.0671,0.069248,0.8888,0.00656,0.006144,0.028672,0.096224,0.097664,13.7607,0.113152
+757,62.1322,16.0947,15.0911,0.069632,0.887808,0.007168,0.005408,0.028928,0.10288,0.10448,13.7605,0.124352
+758,62.1736,16.084,16.2813,0.069984,0.887168,0.00816,0.005696,0.028992,0.09776,0.098272,14.9716,0.113728
+759,57.7324,17.3213,15.0462,0.069632,0.88064,0.00736,0.004928,0.028672,0.096256,0.098048,13.7464,0.11424
+760,62.3516,16.0381,15.0427,0.06928,0.880576,0.00672,0.006144,0.028672,0.0976,0.09696,13.7421,0.114688
+761,62.5764,15.9805,16.2755,0.07152,0.87168,0.00672,0.004544,0.028576,0.097408,0.097152,14.9848,0.113088
+762,57.47,17.4004,16.3149,0.070112,0.919552,0.008192,0.00592,0.028672,0.09648,0.098176,14.9748,0.112992
+763,56.534,17.6885,15.1716,0.071552,0.969856,0.007168,0.015584,0.029472,0.096256,0.106176,13.7626,0.112928
+764,62.4924,16.002,16.2941,0.06848,0.915456,0.007584,0.004896,0.02848,0.097984,0.098144,14.9591,0.114048
+765,56.5902,17.6709,15.2012,0.06976,1.02621,0.006816,0.00576,0.028608,0.096768,0.099808,13.7508,0.116736
+766,59.9076,16.6924,15.1191,0.069888,0.94672,0.008,0.005632,0.028544,0.096928,0.097568,13.7525,0.113344
+767,60.4736,16.5361,16.3328,0.069632,0.92128,0.006464,0.006112,0.028736,0.096384,0.098144,14.9928,0.11328
+768,58.9014,16.9775,15.046,0.069824,0.888832,0.008192,0.005632,0.028544,0.095968,0.097216,13.738,0.113888
+769,62.1284,16.0957,15.0426,0.070688,0.864416,0.006976,0.0056,0.028544,0.096384,0.0968,13.7602,0.112928
+770,59.1497,16.9062,16.9788,0.066496,1.5929,0.006592,0.006176,0.02864,0.098304,0.098304,14.9681,0.11328
+771,57.765,17.3115,15.0898,0.067872,0.910528,0.006848,0.005792,0.0288,0.095872,0.096832,13.7626,0.114688
+772,61.8432,16.1699,15.0671,0.069632,0.888832,0.007552,0.004896,0.028512,0.097888,0.097952,13.7572,0.114688
+773,60.7391,16.4639,16.4127,0.06976,1.00544,0.007648,0.00464,0.028672,0.096256,0.09808,14.9893,0.112864
+774,57.3412,17.4395,15.1593,0.069504,0.985216,0.007392,0.004896,0.030336,0.097696,0.097088,13.7537,0.113504
+775,60.9705,16.4014,15.0999,0.071008,0.92432,0.007392,0.004896,0.028672,0.096064,0.096448,13.7564,0.114688
+776,62.038,16.1191,15.4668,0.069568,0.925216,0.006976,0.00592,0.028672,0.096192,0.097888,14.1237,0.112672
+777,59.6007,16.7783,16.0523,0.069152,1.00947,0.006816,0.005824,0.028992,0.095904,0.096768,14.6246,0.11472
+778,58.0104,17.2383,15.146,0.068576,0.97024,0.006656,0.006144,0.028672,0.096288,0.098112,13.7566,0.114688
+779,61.6162,16.2295,16.3308,0.08144,0.899552,0.007904,0.004576,0.028512,0.096256,0.098144,15.0017,0.11264
+780,57.2387,17.4707,15.102,0.071168,0.928288,0.00816,0.005632,0.0288,0.096416,0.097824,13.751,0.114688
+781,62.1472,16.0908,15.0626,0.069504,0.889024,0.007616,0.004672,0.028672,0.096288,0.09776,13.7561,0.112928
+782,61.6756,16.2139,16.3062,0.069568,0.908768,0.006752,0.006144,0.028576,0.0976,0.097088,14.9749,0.116736
+783,57.4249,17.4141,15.1246,0.069728,0.945248,0.007104,0.006048,0.028544,0.09584,0.097984,13.7594,0.114688
+784,61.52,16.2549,16.3928,0.069472,0.948928,0.00768,0.014752,0.030816,0.096256,0.097792,15.0056,0.121472
+785,56.8668,17.585,16.3287,0.069632,0.937984,0.00752,0.0048,0.02864,0.096256,0.09744,14.9748,0.111616
+786,56.8889,17.5781,15.1242,0.069728,0.951328,0.00704,0.005856,0.028544,0.096032,0.096896,13.7544,0.114368
+787,63.7014,15.6982,15.079,0.069632,0.897024,0.007424,0.004864,0.028672,0.098304,0.099328,13.7574,0.11632
+788,61.9892,16.1318,15.4681,0.070816,0.905216,0.007008,0.006016,0.02864,0.096416,0.098304,14.143,0.112672
+789,56.4654,17.71,16.1766,0.069248,1.14307,0.006336,0.016384,0.031872,0.102464,0.098368,14.5928,0.116064
+790,59.7747,16.7295,16.477,0.069568,1.05107,0.006624,0.015712,0.03344,0.09776,0.096832,14.9934,0.11264
+791,57.4797,17.3975,16.3765,0.068288,0.9728,0.00736,0.004928,0.028672,0.096256,0.097824,14.9873,0.113088
+792,57.322,17.4453,15.278,0.069664,1.09565,0.008192,0.005728,0.028544,0.096544,0.09776,13.7613,0.114624
+793,62.1397,16.0928,15.0524,0.069792,0.878048,0.006528,0.00608,0.028512,0.095936,0.096832,13.7564,0.11424
+794,61.7761,16.1875,16.3797,0.069632,0.948224,0.007776,0.005632,0.028736,0.097152,0.098272,15.0098,0.114528
+795,57.778,17.3076,15.0673,0.068576,0.872032,0.00656,0.006048,0.028416,0.096352,0.096512,13.7789,0.113888
+796,61.5533,16.2461,15.8802,0.069536,0.899104,0.007296,0.005056,0.028672,0.098304,0.098304,14.1798,0.494112
+797,58.6719,17.0439,16.3329,0.07056,0.958464,0.008192,0.005312,0.028512,0.0952,0.097344,14.9555,0.113856
+798,57.912,17.2676,15.0749,0.069632,0.886784,0.00736,0.004928,0.028672,0.104448,0.104448,13.7421,0.12656
+799,62.0193,16.124,15.0494,0.069792,0.87728,0.008192,0.005504,0.02896,0.097664,0.098432,13.747,0.116512
+800,62.2492,16.0645,16.2714,0.070656,0.889664,0.006336,0.006144,0.028672,0.096256,0.09808,14.9627,0.112896
+801,57.1524,17.4971,15.1929,0.068416,1.0297,0.006592,0.005952,0.0288,0.09632,0.09952,13.7409,0.116736
+802,62.151,16.0898,15.11,0.069664,0.935904,0.007552,0.004896,0.028704,0.097728,0.09664,13.7544,0.114496
+803,60.7499,16.4609,17.5179,0.069568,0.944032,0.007808,0.00464,0.029824,0.096608,0.0968,16.1539,0.11472
+804,53.9686,18.5293,15.074,0.0704,0.905376,0.008096,0.005856,0.028608,0.095904,0.096992,13.7359,0.12688
+805,61.2807,16.3184,15.0914,0.068032,0.888064,0.00784,0.005056,0.028672,0.096288,0.097888,13.7851,0.114528
+806,61.3798,16.292,16.341,0.069664,0.92976,0.008192,0.006016,0.028768,0.098208,0.098464,14.9872,0.114688
+807,57.4055,17.4199,15.1093,0.069792,0.937696,0.007296,0.00512,0.028672,0.096256,0.098304,13.7523,0.113888
+808,61.3909,16.2891,15.0789,0.069632,0.917536,0.007776,0.005664,0.02944,0.096416,0.098112,13.7398,0.11456
+809,61.0869,16.3701,16.3828,0.070112,0.99152,0.007232,0.005088,0.028672,0.096288,0.09792,14.973,0.112896
+810,57.7357,17.3203,15.0446,0.069632,0.888288,0.006688,0.006144,0.028672,0.097472,0.097088,13.737,0.113632
+811,61.5052,16.2588,15.0959,0.06976,0.923648,0.00768,0.004608,0.029696,0.09664,0.096896,13.7533,0.113664
+812,61.5237,16.2539,16.3455,0.070016,0.954048,0.007104,0.006144,0.028704,0.096224,0.098304,14.9709,0.114016
+813,56.7093,17.6338,15.117,0.06832,0.948224,0.007904,0.004576,0.02848,0.097312,0.098304,13.7509,0.11296
+814,61.5903,16.2363,15.0973,0.073152,0.942016,0.006784,0.006144,0.028672,0.096256,0.098304,13.7318,0.114176
+815,61.0687,16.375,16.3447,0.069504,0.951968,0.006976,0.0056,0.028608,0.09648,0.09664,14.9647,0.124224
+816,57.5313,17.3818,15.1021,0.070016,0.931808,0.007296,0.004992,0.028672,0.098048,0.098592,13.7457,0.116992
+817,61.8918,16.1572,15.0938,0.069504,0.939488,0.006816,0.005792,0.02864,0.09664,0.097952,13.736,0.11296
+818,60.1151,16.6348,16.384,0.069664,0.996736,0.006752,0.006144,0.028672,0.097824,0.09776,14.9637,0.116736
+819,58.1554,17.1953,15.1137,0.069632,0.95168,0.006784,0.005792,0.028448,0.096832,0.097888,13.7425,0.114144
+820,61.4388,16.2764,15.1196,0.069152,0.948384,0.006464,0.006176,0.02864,0.096256,0.098304,13.7519,0.114304
+821,62.0343,16.1201,16.3316,0.069536,0.910144,0.007296,0.004992,0.028672,0.098304,0.099456,15,0.113248
+822,57.2707,17.4609,15.0637,0.068288,0.905024,0.006304,0.006144,0.028672,0.096256,0.097888,13.7423,0.112832
+823,59.855,16.707,16.2059,0.069632,1.31664,0.00672,0.006144,0.047104,0.110528,0.39904,14.1337,0.116448
+824,59.4934,16.8086,16.2847,0.069664,0.8904,0.006592,0.006144,0.028672,0.096288,0.098112,14.9751,0.11376
+825,57.1652,17.4932,15.1001,0.068384,0.91104,0.006464,0.006112,0.028704,0.096256,0.098336,13.7706,0.114144
+826,61.9105,16.1523,15.0861,0.070144,0.91136,0.008064,0.005632,0.029312,0.097536,0.097024,13.7514,0.115584
+827,61.3284,16.3057,16.3148,0.069472,0.92656,0.008192,0.005376,0.02864,0.096288,0.097024,14.97,0.113248
+828,57.3027,17.4512,15.0638,0.069536,0.897312,0.006688,0.006144,0.028672,0.098304,0.097792,13.7427,0.116672
+829,61.5163,16.2559,16.3483,0.069728,0.927712,0.008192,0.005344,0.028544,0.096512,0.096928,15.0016,0.113728
+830,56.634,17.6572,16.3799,0.069376,0.97712,0.007296,0.005024,0.028672,0.097408,0.09728,14.9823,0.115424
+831,57.6804,17.3369,15.1192,0.068448,0.944032,0.007264,0.00512,0.02864,0.096256,0.097344,13.7594,0.112672
+832,61.1015,16.3662,15.0776,0.069536,0.907552,0.007552,0.004896,0.029536,0.098304,0.105152,13.7301,0.124928
+833,61.7761,16.1875,16.3351,0.069888,0.9544,0.007392,0.004864,0.028672,0.09824,0.098368,14.9606,0.11264
+834,57.3092,17.4492,15.0696,0.069632,0.889728,0.00784,0.005696,0.028768,0.096512,0.1064,13.7508,0.114176
+835,62.0869,16.1064,15.0655,0.075232,0.881056,0.006656,0.005888,0.028608,0.096288,0.098624,13.7579,0.115264
+836,62.4695,16.0078,16.2489,0.06976,0.868224,0.008064,0.005856,0.028736,0.09664,0.098272,14.9599,0.113376
+837,57.5346,17.3809,15.0474,0.069504,0.897376,0.006624,0.004096,0.030048,0.096064,0.09712,13.7339,0.11264
+838,62.7259,15.9424,15.0671,0.069632,0.878624,0.007808,0.005632,0.02896,0.096832,0.098304,13.7663,0.115072
+839,62.1359,16.0938,16.2908,0.068576,0.864224,0.007296,0.005024,0.028672,0.096256,0.096256,15.0109,0.1136
+840,56.4997,17.6992,15.19,0.068992,1.02669,0.007776,0.005664,0.028832,0.096768,0.097568,13.743,0.114688
+841,61.52,16.2549,15.1829,0.06976,0.989056,0.007904,0.004544,0.0296,0.096608,0.106784,13.7649,0.11376
+842,62.3706,16.0332,16.2676,0.067904,0.87024,0.00736,0.005088,0.028672,0.096288,0.098272,14.9811,0.11264
+843,56.7093,17.6338,16.3365,0.07168,0.908736,0.006976,0.005824,0.028736,0.097856,0.09696,15.0057,0.11408
+844,48.7341,20.5195,15.064,0.068544,0.896,0.007168,0.00576,0.028768,0.096544,0.098304,13.7493,0.113664
+845,74.5161,13.4199,16.3994,0.076864,0.988096,0.007232,0.005056,0.028672,0.098016,0.098592,14.9828,0.114048
+846,57.4249,17.4141,15.0999,0.069664,0.931552,0.0064,0.006144,0.028672,0.096256,0.097568,13.7502,0.113472
+847,62.0155,16.125,15.106,0.068384,0.915456,0.008192,0.005632,0.029184,0.104,0.097824,13.7614,0.115936
+848,62.3744,16.0322,16.2833,0.071488,0.889024,0.008064,0.005632,0.028608,0.09696,0.098336,14.9708,0.114336
+849,57.8106,17.2979,15.0521,0.069632,0.878592,0.008192,0.005344,0.02864,0.096352,0.096992,13.7544,0.114016
+850,61.2697,16.3213,16.2406,0.075552,0.942304,0.008192,0.005696,0.02912,0.098336,0.104416,14.5203,0.456704
+851,58.3742,17.1309,16.3261,0.069408,0.913632,0.007744,0.004576,0.02864,0.098304,0.097888,14.9918,0.114144
+852,56.8478,17.5908,15.1078,0.075776,0.921792,0.00736,0.004928,0.028672,0.098304,0.098304,13.7559,0.1168
+853,61.4461,16.2744,15.1192,0.068512,0.95232,0.007392,0.004896,0.028672,0.097536,0.097024,13.7498,0.112992
+854,60.3027,16.583,16.3472,0.069632,0.969952,0.006944,0.00608,0.028544,0.096224,0.0976,14.9575,0.11472
+855,58.8743,16.9854,15.0979,0.069664,0.931808,0.007712,0.004576,0.028672,0.097888,0.096672,13.7462,0.114688
+856,61.557,16.2451,15.146,0.069632,0.976896,0.00784,0.005632,0.028576,0.097024,0.096448,13.7502,0.11376
+857,62.4466,16.0137,15.4624,0.06928,0.904608,0.007104,0.00544,0.028512,0.103296,0.10576,14.1258,0.11264
+858,59.3348,16.8535,15.0958,0.07296,0.923904,0.006656,0.006144,0.028672,0.096256,0.098016,13.7485,0.11472
+859,60.9197,16.415,15.1252,0.068544,0.974848,0.008192,0.005344,0.028576,0.097152,0.096256,13.7317,0.114528
+860,62.4086,16.0234,16.3953,0.069632,0.985088,0.007808,0.005632,0.028704,0.09712,0.098048,14.9871,0.116128
+861,57.0029,17.543,15.095,0.069632,0.919552,0.00784,0.004544,0.028704,0.096128,0.09792,13.7568,0.113888
+862,62.42,16.0205,15.0806,0.068704,0.924128,0.006592,0.006144,0.028672,0.096256,0.097888,13.7378,0.114432
+863,61.948,16.1426,16.3176,0.069216,0.90768,0.007744,0.004544,0.0288,0.097632,0.098848,14.9904,0.112704
+864,57.2259,17.4746,15.1355,0.069632,0.964864,0.006624,0.006144,0.028672,0.097408,0.097152,13.7503,0.114688
+865,60.7211,16.4688,15.7575,0.06848,1.31629,0.008768,0.006016,0.032416,0.098016,0.355072,13.7575,0.114944
+866,60.9814,16.3984,16.259,0.069632,0.872448,0.007328,0.00496,0.028672,0.096256,0.0976,14.9691,0.112992
+867,55.9288,17.8799,15.2202,0.069632,1.04992,0.006848,0.00576,0.0344,0.097024,0.096288,13.7462,0.114144
+868,61.6756,16.2139,15.1234,0.069952,0.957088,0.007616,0.004896,0.029568,0.097056,0.097856,13.7447,0.114656
+869,59.6945,16.752,16.3963,0.069632,0.9728,0.007296,0.004992,0.028672,0.096256,0.097376,15.0066,0.112672
+870,59.0032,16.9482,15.0876,0.069632,0.923648,0.007744,0.005632,0.027648,0.09824,0.099808,13.7385,0.116768
+871,61.3064,16.3115,16.3635,0.070848,0.987968,0.007552,0.004736,0.028672,0.097568,0.096576,14.957,0.11264
+872,57.1269,17.5049,16.3471,0.069408,0.968928,0.008096,0.005632,0.028832,0.096704,0.097952,14.9569,0.114688
+873,57.9874,17.2451,15.059,0.069632,0.907296,0.007776,0.004544,0.029632,0.096416,0.097152,13.7335,0.113024
+874,62.4924,16.002,15.0746,0.069632,0.913024,0.006528,0.006144,0.028672,0.096256,0.09632,13.744,0.114016
+875,61.5459,16.248,16.3294,0.069472,0.944992,0.007808,0.004544,0.028608,0.098176,0.098432,14.9641,0.113248
+876,57.6058,17.3594,15.0632,0.068352,0.902432,0.006752,0.005952,0.028576,0.096192,0.09664,13.7441,0.11424
+877,61.4609,16.2705,15.108,0.069632,0.935936,0.007456,0.004832,0.028704,0.096224,0.098304,13.7523,0.114624
+878,60.7391,16.4639,16.3871,0.07024,0.972832,0.006528,0.006144,0.028672,0.1024,0.09792,14.9876,0.114688
+879,57.178,17.4893,16.3906,0.070112,0.976736,0.006304,0.006144,0.028672,0.103488,0.104864,14.9786,0.11568
+880,57.7845,17.3057,15.0303,0.071392,0.880288,0.006784,0.006112,0.028704,0.09616,0.096416,13.7297,0.114688
+881,62.1246,16.0967,16.3579,0.069536,0.963168,0.007904,0.004544,0.028512,0.097696,0.096864,14.9688,0.120832
+882,56.9553,17.5576,15.0875,0.069664,0.911328,0.008192,0.00576,0.02896,0.098208,0.098272,13.7504,0.116736
+883,62.0945,16.1045,15.0505,0.069472,0.89024,0.006944,0.005728,0.028608,0.09648,0.096544,13.742,0.1144
+884,62.3858,16.0293,16.2408,0.06848,0.866304,0.008192,0.006144,0.028672,0.096256,0.098208,14.9537,0.114912
+885,57.7162,17.3262,15.0668,0.071232,0.900544,0.007168,0.005504,0.028608,0.096224,0.1048,13.7384,0.114304
+886,62.1699,16.085,15.0326,0.069376,0.881216,0.008096,0.005632,0.028864,0.09648,0.097632,13.7318,0.113536
+887,60.5487,16.5156,16.7561,0.069504,1.38662,0.01024,0.00544,0.031424,0.097696,0.098304,14.9408,0.116032
+888,56.2421,17.7803,15.1427,0.06816,0.994464,0.007008,0.00592,0.028512,0.096384,0.096544,13.7316,0.114048
+889,62.4048,16.0244,15.0774,0.069632,0.909024,0.006432,0.006144,0.028672,0.099488,0.09712,13.748,0.112864
+890,61.2147,16.3359,16.3328,0.071456,0.94192,0.006528,0.017952,0.028992,0.096224,0.098496,14.9583,0.112928
+891,57.5216,17.3848,15.0844,0.068672,0.930976,0.006848,0.005696,0.028832,0.09648,0.096352,13.7359,0.114592
+892,61.3321,16.3047,15.1003,0.069376,0.94032,0.006528,0.006144,0.028672,0.09808,0.098464,13.7371,0.115616
+893,61.3357,16.3037,16.2921,0.06944,0.926112,0.006624,0.005952,0.02864,0.096224,0.096512,14.9496,0.113024
+894,57.2611,17.4639,16.3551,0.069664,0.98096,0.007552,0.004896,0.029728,0.096768,0.098048,14.9526,0.114944
+895,57.5087,17.3887,15.0651,0.069312,0.921184,0.006912,0.005824,0.02848,0.095872,0.09712,13.7277,0.112672
+896,62.0493,16.1162,16.25,0.069632,0.875808,0.00688,0.006048,0.028768,0.096256,0.098304,14.9545,0.11376
+897,57.9022,17.2705,15.0503,0.069664,0.888192,0.007008,0.005632,0.028544,0.096864,0.098144,13.7422,0.113984
+898,62.4086,16.0234,15.0262,0.069664,0.863968,0.0064,0.006144,0.028672,0.097472,0.097088,13.7421,0.114688
+899,61.7165,16.2031,16.257,0.069504,0.869856,0.006816,0.005984,0.028832,0.096352,0.105952,14.9583,0.115424
+900,58.3343,17.1426,15.0345,0.069408,0.87488,0.007712,0.005632,0.028672,0.096384,0.09712,13.7413,0.113376
+901,62.3136,16.0479,16.2533,0.068416,0.86528,0.007136,0.00544,0.028736,0.096672,0.096512,14.9596,0.125504
+902,56.5715,17.6768,16.2808,0.071072,0.883136,0.007424,0.005024,0.028672,0.097696,0.096896,14.977,0.113856
+903,57.9415,17.2588,15.039,0.068128,0.878624,0.007584,0.004672,0.028672,0.096288,0.098272,13.7438,0.11296
+904,61.557,16.2451,15.0677,0.069312,0.90608,0.007904,0.005952,0.028896,0.097536,0.09888,13.7364,0.116736
+905,61.0942,16.3682,16.339,0.069536,0.897632,0.006272,0.006112,0.036,0.096576,0.09856,15.0142,0.114176
+906,55.9471,17.874,15.0692,0.069344,0.905376,0.007296,0.005152,0.02864,0.097888,0.098016,13.7428,0.11472
+907,63.96,15.6348,15.0697,0.070304,0.8888,0.00736,0.004992,0.02864,0.11264,0.098304,13.7452,0.113472
+908,61.1672,16.3486,16.2898,0.069632,0.906368,0.00704,0.005856,0.028608,0.096608,0.097888,14.9647,0.11312
+909,55.9991,17.8574,15.1392,0.069856,0.952928,0.008064,0.005312,0.028864,0.096992,0.098304,13.7636,0.115264
+910,60.9161,16.416,15.0386,0.068608,0.874464,0.008192,0.005696,0.028544,0.096832,0.097408,13.743,0.11584
+911,62.4276,16.0186,16.266,0.06976,0.873152,0.007712,0.004576,0.028672,0.096224,0.100352,14.9705,0.115136
+912,58.0071,17.2393,15.0411,0.069984,0.873824,0.007008,0.005984,0.028576,0.096544,0.097984,13.7476,0.113568
+913,62.3326,16.043,15.0585,0.069696,0.874848,0.007392,0.004928,0.02864,0.097312,0.09728,13.7646,0.113792
+914,61.2843,16.3174,16.3147,0.069312,0.917472,0.006816,0.006112,0.028704,0.096256,0.098048,14.9732,0.118784
+915,57.4571,17.4043,16.2859,0.06912,0.912064,0.007552,0.004736,0.028672,0.096256,0.097312,14.9576,0.112608
+916,57.7617,17.3125,15.0875,0.069344,0.93184,0.006976,0.005952,0.028672,0.096448,0.098176,13.734,0.116096
+917,61.6348,16.2246,16.3021,0.069664,0.894944,0.008192,0.005344,0.028704,0.096768,0.097696,14.9881,0.112704
+918,57.6155,17.3564,15.0486,0.06928,0.881216,0.00736,0.00496,0.030112,0.10912,0.097888,13.7343,0.114368
+919,61.6719,16.2148,15.0627,0.069632,0.90112,0.007872,0.004576,0.02976,0.098272,0.108896,13.7274,0.115168
+920,61.5977,16.2344,16.2456,0.068448,0.864256,0.008192,0.005632,0.0288,0.09664,0.097792,14.9606,0.115296
+921,56.7565,17.6191,15.0426,0.073888,0.88384,0.00688,0.005664,0.028672,0.09632,0.100768,13.7319,0.114656
+922,62.8645,15.9072,15.0303,0.070688,0.871424,0.00752,0.004896,0.028544,0.098176,0.096544,13.7391,0.113408
+923,61.4056,16.2852,16.3574,0.069568,0.949856,0.006624,0.005952,0.028768,0.096,0.09664,14.9903,0.113632
+924,56.1034,17.8242,15.2043,0.069632,1.04858,0.007904,0.005664,0.028672,0.097056,0.098336,13.7328,0.115616
+925,62.1208,16.0977,15.0837,0.069632,0.90656,0.006848,0.005696,0.028512,0.096192,0.096928,13.7605,0.1128
+926,61.5977,16.2344,16.2939,0.069664,0.890688,0.007328,0.00512,0.029824,0.097152,0.09632,14.9824,0.115424
+927,57.2451,17.4688,15.0628,0.06928,0.888896,0.006496,0.00608,0.028672,0.095968,0.096608,13.7579,0.11296
+928,59.3658,16.8447,15.1448,0.067872,0.992544,0.006784,0.006144,0.028672,0.097824,0.096736,13.7339,0.114336
+929,63.335,15.7891,16.4236,0.070336,1.01082,0.00704,0.005632,0.028928,0.097664,0.097152,14.9914,0.114688
+930,57.8041,17.2998,16.3103,0.069664,0.907104,0.006304,0.006144,0.02864,0.096256,0.098144,14.9854,0.11264
+931,56.5808,17.6738,15.0871,0.069984,0.909376,0.008128,0.004352,0.029568,0.096928,0.110336,13.7426,0.11584
+932,60.538,16.5186,16.3467,0.069248,0.970688,0.006592,0.006144,0.028672,0.096256,0.097952,14.9569,0.11424
+933,56.9648,17.5547,15.206,0.075328,1.0328,0.006432,0.006144,0.028672,0.097312,0.098848,13.7445,0.115968
+934,61.2001,16.3398,15.0917,0.070816,0.92656,0.007712,0.005664,0.028704,0.09664,0.096832,13.7455,0.113312
+935,60.3027,16.583,16.2918,0.079776,0.903264,0.008192,0.005344,0.029472,0.095776,0.096736,14.9604,0.112928
+936,56.9268,17.5664,15.0385,0.071328,0.885088,0.007328,0.00496,0.028896,0.097984,0.096352,13.733,0.113536
+937,62.7144,15.9453,15.0221,0.069664,0.86832,0.007456,0.004832,0.028672,0.096256,0.09792,13.7363,0.11264
+938,60.7535,16.46,17.4338,0.069248,1.18822,0.007616,0.005728,0.027616,0.098176,0.096544,15.8267,0.113952
+939,55.1457,18.1338,15.0235,0.069632,0.876512,0.007232,0.005088,0.028672,0.096256,0.097792,13.7283,0.114048
+940,61.4019,16.2861,15.0733,0.069632,0.894976,0.007552,0.004896,0.028512,0.097344,0.097216,13.7585,0.114688
+941,62.9766,15.8789,16.2443,0.070752,0.875232,0.006336,0.006144,0.028672,0.098144,0.096416,14.9495,0.113056
+942,57.9186,17.2656,15.0431,0.069472,0.891136,0.006624,0.006176,0.02864,0.096288,0.09808,13.7334,0.113344
+943,62.3782,16.0312,15.061,0.07696,0.883456,0.007296,0.005088,0.028672,0.09792,0.098592,13.7483,0.11472
+944,62.1623,16.0869,16.2632,0.069824,0.903168,0.00736,0.00496,0.02864,0.098304,0.097568,14.9388,0.114496
+945,58.0565,17.2246,15.0498,0.069632,0.884736,0.007328,0.006176,0.027456,0.098208,0.096384,13.7461,0.113728
+946,62.185,16.0811,15.0528,0.069632,0.89648,0.006688,0.006144,0.028672,0.09792,0.0984,13.7321,0.116768
+947,61.9367,16.1455,16.2983,0.069312,0.89696,0.006976,0.005664,0.0288,0.096,0.09856,14.9827,0.113312
+948,57.6187,17.3555,15.1006,0.068352,0.937952,0.008192,0.00576,0.028608,0.096704,0.097632,13.7428,0.114688
+949,61.8582,16.166,15.0729,0.069856,0.903136,0.00816,0.005312,0.028736,0.096896,0.096416,13.7503,0.114144
+950,62.2039,16.0762,16.2997,0.069216,0.925792,0.006688,0.006144,0.028672,0.09744,0.09712,14.9545,0.114112
+951,56.9902,17.5469,15.155,0.06896,1.01853,0.007712,0.004608,0.029728,0.096928,0.098592,13.7153,0.11472
+952,61.4277,16.2793,16.3098,0.069312,0.949632,0.007104,0.005792,0.028768,0.096544,0.097696,14.9407,0.114208
+953,57.4764,17.3984,16.3268,0.069056,0.942656,0.00752,0.004768,0.028672,0.096256,0.09824,14.9648,0.114752
+954,57.5216,17.3848,15.0498,0.069664,0.896992,0.00816,0.005632,0.028576,0.096896,0.097888,13.7312,0.114752
+955,62.2871,16.0547,15.0415,0.069632,0.888832,0.007328,0.00496,0.028672,0.096288,0.097792,13.7339,0.114144
+956,60.7139,16.4707,16.288,0.069536,0.924,0.00736,0.004928,0.028672,0.098304,0.098304,14.9439,0.113056
+957,57.0728,17.5215,15.0957,0.069088,0.949216,0.007872,0.004576,0.028512,0.09632,0.09824,13.7277,0.114144
+958,62.0155,16.125,16.3493,0.0696,0.98528,0.007392,0.004896,0.02976,0.096864,0.098368,14.9421,0.115104
+959,58.1422,17.1992,16.2089,0.069888,0.864416,0.00672,0.005856,0.028736,0.09584,0.096896,14.9271,0.113376
+960,57.3412,17.4395,15.1368,0.068992,0.973184,0.0064,0.006144,0.028672,0.097376,0.097184,13.7457,0.113184
+961,60.1716,16.6191,15.104,0.0712,0.95024,0.006656,0.00592,0.028736,0.096288,0.096384,13.735,0.113568
+962,63.96,15.6348,16.3675,0.069024,0.983648,0.007584,0.004896,0.02848,0.097856,0.097728,14.9649,0.113408
+963,56.5496,17.6836,15.2453,0.083968,1.06291,0.007328,0.015168,0.030784,0.098016,0.09856,13.7335,0.11504
+964,57.5281,17.3828,16.2883,0.069728,2.13594,0.006688,0.006144,0.028672,0.096256,0.097984,13.7322,0.114688
+965,61.6125,16.2305,16.3226,0.075808,0.922848,0.006912,0.005664,0.0288,0.096608,0.099424,14.9718,0.114688
+966,57.0092,17.541,15.0619,0.068512,0.923456,0.006336,0.006144,0.028672,0.096256,0.09792,13.7199,0.114688
+967,62.653,15.9609,15.0695,0.06912,0.8928,0.007072,0.005632,0.02848,0.09904,0.10576,13.7346,0.126976
+968,61.7761,16.1875,16.304,0.071584,0.90736,0.008192,0.00576,0.029056,0.097952,0.098336,14.9725,0.113248
+969,56.7942,17.6074,15.0974,0.069632,0.93184,0.008096,0.005312,0.028608,0.096576,0.096928,13.7462,0.114208
+970,62.1736,16.084,15.055,0.069376,0.907648,0.008,0.005632,0.028832,0.09792,0.098816,13.722,0.116768
+971,62.2795,16.0566,16.3123,0.071168,0.91392,0.007648,0.00464,0.028672,0.096352,0.097472,14.9809,0.111552
+972,57.6187,17.3555,16.2877,0.069696,0.91552,0.007744,0.005632,0.028704,0.097184,0.105632,14.941,0.116608
+973,57.6836,17.3359,15.0443,0.070656,0.891904,0.007776,0.004544,0.02864,0.096256,0.098304,13.7318,0.114368
+974,62.1812,16.082,16.2861,0.069344,0.934592,0.007488,0.0048,0.028672,0.097568,0.096992,14.934,0.11264
+975,57.6706,17.3398,15.0517,0.069984,0.911968,0.007808,0.004544,0.030656,0.098304,0.099488,13.7122,0.116768
+976,62.1133,16.0996,15.0628,0.069376,0.93424,0.008192,0.005728,0.028544,0.096416,0.09664,13.7093,0.114304
+977,62.4771,16.0059,16.3021,0.069728,0.903008,0.007296,0.005056,0.028704,0.096224,0.09792,14.9813,0.112864
+978,57.2387,17.4707,15.0563,0.070752,0.922432,0.007264,0.005152,0.02864,0.097632,0.097984,13.7123,0.114112
+979,61.7388,16.1973,15.0968,0.069632,0.949728,0.006688,0.005888,0.028832,0.095648,0.09696,13.7292,0.114304
+980,61.2953,16.3145,16.3636,0.069184,0.985056,0.006656,0.006144,0.028544,0.096416,0.09792,14.9589,0.11472
+981,57.8727,17.2793,15.0316,0.069152,0.882816,0.006592,0.006048,0.028608,0.096288,0.096288,13.7318,0.114016
+982,61.8806,16.1602,15.0897,0.068608,0.932864,0.007456,0.004864,0.030176,0.096256,0.097824,13.738,0.113568
+983,61.657,16.2188,16.2898,0.070656,0.891904,0.00768,0.004608,0.028672,0.098304,0.09936,14.9756,0.11296
+984,57.6252,17.3535,15.0647,0.069632,0.903072,0.00624,0.006176,0.028672,0.09808,0.096448,13.7419,0.114496
+985,61.7537,16.1934,15.1314,0.068384,0.967904,0.006944,0.005728,0.028768,0.096352,0.09776,13.7451,0.114528
+986,61.6348,16.2246,16.2692,0.071296,0.883104,0.007424,0.004864,0.02864,0.097632,0.096928,14.9647,0.114592
+987,57.541,17.3789,15.0712,0.069632,0.910912,0.006592,0.006016,0.028704,0.096192,0.096448,13.744,0.112704
+988,62.2492,16.0645,15.0581,0.071232,0.900768,0.00704,0.00592,0.028736,0.096416,0.098304,13.7339,0.11584
+989,62.0606,16.1133,16.2913,0.069632,0.902272,0.00704,0.005664,0.028736,0.096256,0.097792,14.9698,0.114144
+990,56.9458,17.5605,15.2595,0.069632,1.11747,0.00688,0.006016,0.02864,0.096416,0.097728,13.7222,0.114528
+991,61.5015,16.2598,15.0829,0.07152,0.936096,0.007712,0.004608,0.02864,0.096256,0.098304,13.7267,0.113024
+992,62.3706,16.0332,16.2418,0.06896,0.871168,0.008032,0.005632,0.028576,0.09632,0.09696,14.9524,0.113728
+993,57.9776,17.248,15.0065,0.070176,0.868832,0.008032,0.005312,0.028864,0.097088,0.097856,13.7158,0.11456
+994,62.5611,15.9844,16.2052,0.069632,0.853632,0.006528,0.006176,0.02864,0.096256,0.097664,14.9326,0.114112
+995,57.3734,17.4297,16.3167,0.069344,0.913664,0.00672,0.00592,0.028576,0.096576,0.097728,14.9817,0.116512
+996,57.6447,17.3477,15.0405,0.068992,0.911616,0.006528,0.005856,0.0288,0.096224,0.096448,13.7126,0.113472
+997,61.8656,16.1641,15.0564,0.069024,0.897568,0.006592,0.005984,0.0288,0.09632,0.09792,13.7404,0.113824
+998,61.6051,16.2324,16.3546,0.069888,0.984448,0.006528,0.006144,0.028672,0.098304,0.098304,14.9484,0.113952
+999,56.8068,17.6035,15.1554,0.069216,0.991008,0.006944,0.005664,0.028576,0.096512,0.096384,13.7484,0.11264
+1000,60.8654,16.4297,16.3062,0.068448,0.923456,0.006336,0.006144,0.028672,0.096256,0.097728,14.9633,0.115904
+1001,57.1875,17.4863,16.4986,0.069376,1.11286,0.008192,0.022528,0.038944,0.096256,0.097504,14.9406,0.11232
+1002,56.3939,17.7324,15.1356,0.075872,0.977728,0.007424,0.014976,0.028896,0.097536,0.098496,13.7181,0.116544
+1003,61.8731,16.1621,15.0707,0.069568,0.91936,0.006432,0.006112,0.028608,0.09632,0.097824,13.7262,0.12032
+1004,60.7211,16.4688,16.2775,0.069632,0.917344,0.006304,0.006144,0.028672,0.096256,0.098304,14.9402,0.114656
+1005,57.2515,17.4668,15.0795,0.078016,0.907264,0.007232,0.005056,0.028672,0.097824,0.11312,13.7277,0.114592
+1006,61.5607,16.2441,15.0641,0.073536,0.921792,0.008032,0.005664,0.028448,0.096576,0.0968,13.7188,0.114464
+1007,61.7239,16.2012,16.2365,0.069568,0.863616,0.006848,0.00576,0.028608,0.096704,0.097632,14.9546,0.113248
+1008,58.2348,17.1719,15.0057,0.069664,0.853984,0.008128,0.005664,0.028672,0.09648,0.096576,13.7339,0.112672
+1009,61.6942,16.209,15.0649,0.069632,0.91888,0.006816,0.005888,0.02864,0.096544,0.097632,13.7276,0.113312
+1010,61.2807,16.3184,16.4613,0.06976,1.03011,0.007392,0.004896,0.028672,0.098304,0.098336,15.0098,0.11408
+1011,57.0919,17.5156,15.0456,0.06864,0.86544,0.006976,0.0056,0.0288,0.096064,0.096864,13.7626,0.114688
+1012,60.7787,16.4531,15.2208,0.06944,1.06246,0.007008,0.005984,0.028672,0.096416,0.098304,13.738,0.11456
+1013,61.4425,16.2754,16.3471,0.0712,0.97056,0.006816,0.005728,0.028704,0.09664,0.097536,14.957,0.112928
+1014,50.4881,19.8066,15.2842,0.069376,1.14448,0.006752,0.013984,0.029024,0.10224,0.097856,13.7012,0.11936
+1015,63.437,15.7637,15.3642,0.06992,1.2048,0.007744,0.004576,0.03888,0.097536,0.097024,13.7298,0.113888
+1016,61.3688,16.2949,16.2562,0.071008,0.905888,0.007808,0.005664,0.028608,0.096928,0.096512,14.9299,0.113856
+1017,57.0982,17.5137,15.1595,0.071264,1.00205,0.008,0.005312,0.027648,0.09792,0.096704,13.7372,0.11344
+1018,62.1736,16.084,15.002,0.068288,0.8704,0.007744,0.005664,0.027712,0.09744,0.097088,13.7133,0.114368
+1019,61.31,16.3105,16.5028,0.069632,1.04448,0.007712,0.004576,0.029984,0.09632,0.098016,15.0372,0.114912
+1020,54.8004,18.248,15.1818,0.07072,0.981952,0.021536,0.005312,0.02992,0.112544,0.10272,13.7436,0.113536
+1021,60.9016,16.4199,16.3889,0.068416,1.09363,0.02048,0.006144,0.038848,0.09616,0.096416,14.5244,0.444416
+1022,58.0499,17.2266,16.2977,0.06944,0.936256,0.007392,0.004896,0.028672,0.0976,0.096896,14.9434,0.113152
+1023,56.9395,17.5625,15.147,0.069632,1.00099,0.006624,0.005984,0.028576,0.096512,0.097472,13.7276,0.1136
+1024,62.3782,16.0312,15.0437,0.071456,0.860064,0.006464,0.006144,0.028672,0.097504,0.107328,13.7523,0.113824
+1025,59.9602,16.6777,16.2857,0.06944,0.93136,0.006816,0.005824,0.028736,0.096032,0.096736,14.9381,0.11264
+1026,58.2083,17.1797,15.0351,0.074272,0.874688,0.007776,0.005632,0.028992,0.097952,0.098528,13.7303,0.116928
+1027,60.5272,16.5215,15.0856,0.069632,0.940032,0.007712,0.004576,0.028672,0.096288,0.107776,13.718,0.112896
+1028,61.2294,16.332,16.3827,0.068256,0.98848,0.006848,0.005888,0.028736,0.096448,0.10208,14.9707,0.115264
+1029,57.84,17.2891,15.0107,0.069792,0.862592,0.006624,0.005952,0.028672,0.096448,0.096256,13.7298,0.11456
+1030,61.5755,16.2402,15.1102,0.069632,0.949472,0.006944,0.005952,0.028608,0.096224,0.096544,13.7432,0.113632
+1031,61.413,16.2832,16.3681,0.069376,0.967392,0.008192,0.005344,0.02864,0.097088,0.11616,14.9633,0.112672
+1032,56.4685,17.709,15.1265,0.069632,0.985088,0.007488,0.004864,0.028608,0.096256,0.098304,13.7227,0.113632
+1033,61.3468,16.3008,15.1282,0.069024,0.98112,0.007008,0.005632,0.02848,0.096288,0.098336,13.7263,0.116
+1034,61.3027,16.3125,16.343,0.071456,0.960704,0.007296,0.005024,0.028672,0.096416,0.097984,14.9619,0.113632
+1035,57.0474,17.5293,15.0852,0.069888,0.9152,0.007648,0.00464,0.028672,0.096256,0.09968,13.75,0.113248
+1036,62.2265,16.0703,16.4122,0.07072,0.973376,0.006528,0.006144,0.028672,0.098304,0.098336,15.0158,0.114304
+1037,56.3132,17.7578,16.2969,0.068512,0.939104,0.007072,0.005568,0.028288,0.096512,0.096864,14.9403,0.114688
+1038,57.4313,17.4121,15.0508,0.071168,0.872032,0.007072,0.0072,0.028896,0.096896,0.096384,13.7564,0.114688
+1039,61.3615,16.2969,15.1125,0.069312,0.963104,0.00736,0.004992,0.028672,0.096256,0.098304,13.7308,0.113632
+1040,61.5755,16.2402,16.2468,0.069632,0.851968,0.008096,0.0056,0.028864,0.096704,0.097888,14.9733,0.11472
+1041,57.4635,17.4023,15.0293,0.069632,0.882112,0.00672,0.005792,0.028672,0.096256,0.096672,13.7294,0.114016
+1042,61.7761,16.1875,15.0747,0.069632,0.911296,0.00736,0.004992,0.028672,0.097792,0.096768,13.7439,0.114272
+1043,61.7165,16.2031,16.3533,0.069664,0.97184,0.007104,0.0056,0.028896,0.096608,0.098304,14.9627,0.11264
+1044,57.5152,17.3867,15.0201,0.069728,0.874432,0.007744,0.005696,0.02864,0.096992,0.096416,13.7274,0.11312
+1045,60.5416,16.5176,15.1163,0.069664,0.972384,0.00672,0.00592,0.028704,0.096448,0.098336,13.725,0.113184
+1046,62.1888,16.0801,16.3501,0.069824,0.946304,0.006688,0.006144,0.028672,0.096256,0.097792,14.9856,0.112832
+1047,55.2379,18.1035,15.1421,0.069504,0.996864,0.006784,0.005888,0.028928,0.097504,0.097056,13.725,0.11456
+1048,61.2587,16.3242,15.1139,0.069632,0.946176,0.00768,0.005632,0.028704,0.105472,0.099584,13.7346,0.116384
+1049,63.1319,15.8398,16.2195,0.069472,0.841792,0.007392,0.00512,0.028672,0.096256,0.098176,14.9601,0.11248
+1050,56.9965,17.5449,15.0244,0.06912,0.885408,0.006304,0.006144,0.028672,0.098304,0.09824,13.7155,0.116736
+1051,62.6913,15.9512,16.2505,0.069632,0.854016,0.007712,0.004576,0.028704,0.096288,0.09824,14.979,0.11232
+1052,57.8727,17.2793,16.2536,0.069728,0.86208,0.006912,0.005984,0.028608,0.096512,0.09968,14.967,0.117056
+1053,56.9775,17.5508,15.029,0.070432,0.884736,0.007552,0.004736,0.028672,0.096256,0.09776,13.7253,0.113536
+1054,61.1051,16.3652,15.0446,0.069248,0.911776,0.007488,0.004896,0.028576,0.097536,0.097056,13.7146,0.113504
+1055,61.2074,16.3379,16.2986,0.068544,0.91136,0.007872,0.004576,0.028512,0.098304,0.100032,14.9651,0.114368
+1056,58.4675,17.1035,15.0526,0.068768,0.903424,0.006912,0.006016,0.02848,0.096576,0.09792,13.7302,0.114368
+1057,61.3688,16.2949,16.2898,0.069632,0.91136,0.007616,0.004672,0.029792,0.103328,0.099616,14.9491,0.114688
+1058,54.3467,18.4004,16.4188,0.069568,1.05478,0.008,0.005504,0.028768,0.096416,0.096832,14.9457,0.11328
+1059,60.2282,16.6035,14.9996,0.069472,0.856352,0.00656,0.006048,0.028768,0.096032,0.09792,13.7243,0.11424
+1060,62.4543,16.0117,15.0069,0.069632,0.845536,0.006432,0.007712,0.028704,0.096416,0.098048,13.7402,0.114208
+1061,61.3468,16.3008,16.3512,0.071136,0.961056,0.007328,0.00496,0.028672,0.096288,0.097888,14.9713,0.11264
+1062,57.4377,17.4102,15.0651,0.069632,0.894016,0.007104,0.005824,0.02848,0.096928,0.098144,13.7478,0.11712
+1063,61.4941,16.2617,15.1368,0.068544,0.98256,0.006592,0.006016,0.0288,0.096256,0.097632,13.7366,0.113792
+1064,61.1197,16.3613,16.332,0.069664,0.952064,0.006368,0.006176,0.02864,0.096256,0.09808,14.9609,0.113824
+1065,56.3628,17.7422,15.042,0.071392,0.898752,0.006752,0.00592,0.028704,0.09632,0.098336,13.7217,0.114144
+1066,61.3835,16.291,15.0505,0.069504,0.905312,0.006592,0.006144,0.028672,0.09808,0.097824,13.7242,0.114208
+1067,62.0907,16.1055,16.3492,0.069536,0.949632,0.00688,0.005504,0.029312,0.096288,0.098016,14.9793,0.114688
+1068,58.1158,17.207,15.0435,0.068448,0.894976,0.007936,0.004608,0.028448,0.097376,0.097152,13.7315,0.113056
+1069,62.5382,15.9902,15.0199,0.069344,0.841888,0.006752,0.005664,0.028544,0.096064,0.097056,13.7462,0.128384
+1070,61.4572,16.2715,16.212,0.069568,0.84368,0.006304,0.006144,0.028672,0.098304,0.099584,14.9466,0.11312
+1071,57.0855,17.5176,15.0697,0.069376,0.918272,0.007392,0.004896,0.028672,0.096256,0.098336,13.7334,0.11312
+1072,61.6422,16.2227,16.1729,0.067648,1.19603,0.008128,0.005632,0.02896,0.096544,0.098336,14.5568,0.114784
+1073,59.5626,16.7891,16.2468,0.070688,0.877344,0.006368,0.006112,0.028576,0.096352,0.09728,14.9514,0.112672
+1074,57.322,17.4453,15.1338,0.069664,0.978912,0.008,0.0056,0.029376,0.107936,0.104352,13.7141,0.115808
+1075,62.0456,16.1172,14.9914,0.070816,0.848576,0.006304,0.006144,0.028672,0.097728,0.096832,13.7233,0.112992
+1076,61.7612,16.1914,16.308,0.067712,0.945824,0.006496,0.006144,0.04048,0.096608,0.096384,14.9353,0.113056
+1077,57.6252,17.3535,15.1238,0.06976,0.961856,0.014752,0.004544,0.028672,0.097888,0.09856,13.7318,0.115968
+1078,61.7612,16.1914,16.3427,0.069216,0.94512,0.007488,0.004864,0.028608,0.096256,0.09808,14.9793,0.113792
+1079,55.9746,17.8652,16.3448,0.069376,0.929088,0.007104,0.006048,0.0288,0.105728,0.096992,14.9873,0.1144
+1080,54.1341,18.4727,15.1491,0.071104,0.987392,0.006464,0.006144,0.028672,0.1024,0.105824,13.7279,0.113184
+1081,59.7433,16.7383,15.2001,0.06928,1.04893,0.016704,0.005728,0.028352,0.096544,0.096992,13.7235,0.11408
+1082,64.9252,15.4023,16.3925,0.069248,1.04307,0.007552,0.004896,0.029536,0.098656,0.098976,14.9279,0.112736
+1083,56.2452,17.7793,15.8754,0.069664,1.74195,0.007008,0.005568,0.028608,0.096032,0.09712,13.7155,0.114016
+1084,62.7144,15.9453,15.0079,0.069664,0.868224,0.006368,0.006176,0.02864,0.0976,0.098496,13.718,0.11472
+1085,61.5607,16.2441,17.4126,0.06928,0.871264,0.007776,0.005504,0.027648,0.097536,0.097024,16.1238,0.112768
+1086,54.6483,18.2988,15.0033,0.068928,0.873312,0.007456,0.004992,0.028672,0.098272,0.098048,13.7073,0.116256
+1087,62.4847,16.0039,14.9939,0.069216,0.8528,0.007264,0.005056,0.028672,0.096256,0.096416,13.7255,0.11264
+1088,62.3402,16.041,16.2172,0.069664,0.842944,0.006944,0.00624,0.028576,0.096256,0.098336,14.9545,0.11376
+1089,56.8005,17.6055,15.0324,0.069664,0.87616,0.006528,0.006048,0.028768,0.096256,0.098304,13.7371,0.113536
+1090,61.6273,16.2266,15.1266,0.069216,0.969184,0.007712,0.005632,0.027776,0.097632,0.096736,13.74,0.112704
+1091,59.6945,16.752,16.3092,0.069632,0.923072,0.00672,0.005888,0.028384,0.104992,0.098048,14.9562,0.116288
+1092,58.8573,16.9902,14.9846,0.069504,0.857792,0.006592,0.006144,0.028672,0.096128,0.09744,13.7082,0.114144
+1093,62.0005,16.1289,15.0682,0.070752,0.908192,0.007264,0.005024,0.028672,0.096256,0.097728,13.7406,0.113728
+1094,58.9522,16.9629,16.3249,0.069952,0.937984,0.007456,0.004896,0.028608,0.098304,0.099616,14.9655,0.11264
+1095,59.3761,16.8418,15.0251,0.068512,0.88064,0.007296,0.004992,0.028672,0.096288,0.097312,13.728,0.113376
+1096,61.1562,16.3516,15.1859,0.069184,1.02243,0.016352,0.006144,0.028672,0.112608,0.098144,13.7177,0.114688
+1097,58.4875,17.0977,16.3905,0.070016,1.03219,0.00752,0.0048,0.02864,0.096256,0.098048,14.9404,0.11264
+1098,60.292,16.5859,15.0697,0.069216,0.907584,0.006848,0.006048,0.03856,0.096704,0.0976,13.7338,0.113376
+1099,61.9555,16.1406,15.0282,0.07136,0.866656,0.00768,0.004576,0.028672,0.097792,0.098432,13.7363,0.116736
+1100,61.7463,16.1953,16.1909,0.06944,0.839936,0.007424,0.004864,0.028672,0.096256,0.098304,14.932,0.114016
+1101,57.4506,17.4062,15.0923,0.069664,0.946688,0.007328,0.00496,0.028672,0.098144,0.098368,13.7237,0.11472
+1102,62.2644,16.0605,15.0688,0.071264,0.907648,0.006496,0.007424,0.028736,0.096896,0.097376,13.7387,0.114304
+1103,61.2001,16.3398,16.2448,0.069664,0.884704,0.008032,0.005344,0.027616,0.096224,0.097472,14.943,0.112672
+1104,57.5734,17.3691,16.318,0.069248,0.94656,0.007744,0.005664,0.028928,0.104416,0.098272,14.9443,0.112832
+1105,57.6577,17.3438,15.1183,0.069664,0.958464,0.007584,0.004672,0.038912,0.096256,0.098208,13.7319,0.11264
+1106,61.3321,16.3047,16.3865,0.069088,1.03226,0.00704,0.005856,0.02864,0.096576,0.09824,14.932,0.116736
+1107,57.3348,17.4414,15.0958,0.069632,0.945696,0.006624,0.006048,0.028768,0.106304,0.096448,13.7216,0.114688
+1108,62.2265,16.0703,15.0883,0.068288,0.954368,0.00816,0.005728,0.028576,0.096512,0.102656,13.7104,0.113568
+1109,61.1855,16.3438,16.3962,0.069632,0.974336,0.006656,0.005888,0.028224,0.111296,0.09952,14.9871,0.1136
+1110,56.0298,17.8477,15.2883,0.06976,1.13446,0.008064,0.005664,0.02848,0.09696,0.097504,13.7342,0.113216
+1111,62.5153,15.9961,15.1252,0.069728,0.963136,0.007648,0.00464,0.028672,0.097824,0.108704,13.7292,0.115552
+1112,60.3276,16.5762,16.2947,0.072448,0.923648,0.008192,0.005696,0.028704,0.096608,0.097408,14.9485,0.113408
+1113,57.0728,17.5215,15.1224,0.067584,0.958016,0.006592,0.005984,0.028704,0.096384,0.098336,13.738,0.12288
+1114,63.0853,15.8516,15.0078,0.069632,0.843776,0.007616,0.004864,0.02848,0.097504,0.09824,13.7429,0.11472
+1115,61.127,16.3594,16.5067,0.069312,1.03421,0.00656,0.005984,0.028832,0.096288,0.106464,15.0385,0.120544
+1116,56.1896,17.7969,15.2275,0.069344,1.05075,0.006944,0.016032,0.028832,0.098368,0.099712,13.7408,0.116736
+1117,61.1197,16.3613,15.0581,0.069632,0.92064,0.007104,0.005472,0.028832,0.095936,0.097088,13.719,0.114368
+1118,60.6635,16.4844,16.3965,0.069856,1.01373,0.008096,0.01424,0.028736,0.108128,0.109088,14.9299,0.114688
+1119,57.8466,17.2871,16.3034,0.07072,0.895136,0.006944,0.005664,0.028896,0.095968,0.102688,14.9834,0.113984
+1120,57.1684,17.4922,15.0388,0.068416,0.88784,0.007136,0.00576,0.028736,0.096544,0.09824,13.7313,0.114784
+1121,56.5433,17.6855,16.732,0.070208,1.36365,0.006496,0.006112,0.044384,0.096672,0.096544,14.9351,0.1128
+1122,59.4036,16.834,15.1596,0.06944,0.977376,0.007968,0.005632,0.0376,0.10448,0.098272,13.7418,0.117024
+1123,61.3027,16.3125,14.9923,0.070368,0.854208,0.007616,0.004672,0.028672,0.096256,0.098304,13.7196,0.11264
+1124,62.272,16.0586,16.3213,0.068608,0.946176,0.008032,0.005792,0.028736,0.09648,0.09648,14.958,0.113088
+1125,57.5669,17.3711,15.0326,0.06992,0.8704,0.008032,0.005312,0.029024,0.096896,0.099904,13.7364,0.116736
+1126,61.3983,16.2871,15.1093,0.069664,0.951872,0.006624,0.016096,0.028928,0.096288,0.098048,13.7274,0.1144
+1127,63.1631,15.832,17.45,0.068608,0.86368,0.006688,0.00592,0.028832,0.096,0.096608,16.1689,0.11472
+1128,54.1055,18.4824,14.995,0.069632,0.853696,0.006464,0.006144,0.028672,0.098048,0.096544,13.7216,0.114272
+1129,62.7067,15.9473,15.0057,0.069632,0.854016,0.007392,0.004896,0.028672,0.096288,0.097632,13.7338,0.113344
+1130,61.0032,16.3926,16.4065,0.069632,1.00886,0.006976,0.005952,0.028832,0.10768,0.09712,14.9647,0.116736
+1131,58.0433,17.2285,15.0564,0.070848,0.887616,0.008192,0.0056,0.041504,0.096256,0.096256,13.7359,0.114144
+1132,61.1124,16.3633,15.1921,0.069696,1.04246,0.00816,0.006144,0.028672,0.096256,0.097632,13.7297,0.113408
+1133,61.9555,16.1406,16.3699,0.069824,0.935168,0.006912,0.005664,0.039392,0.09824,0.098368,15.0036,0.11264
+1134,55.8099,17.918,15.0999,0.075776,0.943616,0.006656,0.006176,0.02864,0.096288,0.098112,13.73,0.114688
+1135,60.4558,16.541,15.0932,0.069728,0.954688,0.00784,0.004544,0.02976,0.096768,0.09856,13.7156,0.115712
+1136,59.6111,16.7754,16.2671,0.069632,0.898528,0.00672,0.006112,0.028704,0.096224,0.098304,14.9484,0.114528
+1137,56.5558,17.6816,15.1409,0.069632,1.00147,0.008192,0.005504,0.029312,0.0976,0.096992,13.7175,0.114688
+1138,63.9041,15.6484,15.1099,0.071232,0.954624,0.006624,0.006144,0.028672,0.0976,0.101088,13.7277,0.116192
+1139,58.959,16.9609,16.2837,0.069728,0.8984,0.00672,0.00592,0.028608,0.096544,0.097536,14.9553,0.12496
+1140,59.3761,16.8418,16.3922,0.08112,0.992064,0.007872,0.005632,0.028896,0.096832,0.098304,14.9686,0.112832
+1141,53.8721,18.5625,15.3619,0.069248,1.20461,0.007968,0.005344,0.028768,0.101152,0.105728,13.7245,0.114528
+1142,61.7165,16.2031,16.5932,0.086592,1.18813,0.008064,0.005664,0.028576,0.102304,0.099072,14.9606,0.114176
+1143,55.4233,18.043,15.188,0.069632,1.03014,0.021888,0.006304,0.028896,0.095616,0.097184,13.7249,0.113376
+1144,61.3468,16.3008,15.1105,0.069568,0.968736,0.00656,0.006144,0.029728,0.097248,0.099744,13.7161,0.116736
+1145,61.0323,16.3848,16.3288,0.069536,0.94624,0.007296,0.005088,0.028672,0.095648,0.096864,14.9666,0.1128
+1146,57.3156,17.4473,15.0717,0.076032,0.919232,0.006688,0.006176,0.02864,0.106496,0.104448,13.7073,0.116736
+1147,60.6923,16.4766,16.343,0.06976,0.966528,0.007584,0.004704,0.028672,0.096288,0.097504,14.9594,0.11264
+1148,52.8107,18.9355,16.4418,0.069536,1.02362,0.007104,0.005856,0.034176,0.09712,0.0976,14.9819,0.124928
+1149,61.8283,16.1738,15.0509,0.069728,0.901024,0.00736,0.004928,0.028672,0.096256,0.098176,13.7319,0.112832
+1150,61.1928,16.3418,15.1566,0.069632,1.00352,0.0072,0.005152,0.028608,0.096256,0.098304,13.7337,0.114176
+1151,61.5089,16.2578,16.2544,0.069536,0.887072,0.008096,0.005312,0.0288,0.097056,0.098304,14.9473,0.112864
+1152,56.5121,17.6953,15.1577,0.069184,1.02278,0.007264,0.005024,0.028672,0.096256,0.098176,13.7156,0.11472
+1153,60.1292,16.6309,15.1647,0.07088,1.00637,0.007904,0.004544,0.029664,0.097184,0.107936,13.7242,0.116
+1154,61.6199,16.2285,16.2898,0.069408,0.883424,0.00736,0.004928,0.028672,0.096288,0.098144,14.9872,0.114304
+1155,56.7439,17.623,15.1041,0.069792,0.966816,0.008128,0.005344,0.033536,0.096352,0.09728,13.7124,0.114464
+1156,56.5621,17.6797,15.1532,0.069632,1.00346,0.007296,0.005056,0.028672,0.106432,0.09632,13.7228,0.113472
+1157,65.9369,15.166,16.4451,0.073216,1.03885,0.00752,0.004768,0.030144,0.096768,0.112288,14.9682,0.113312
+1158,59.0066,16.9473,15.0318,0.069632,0.895008,0.007904,0.005664,0.028928,0.098016,0.097024,13.713,0.11664
+1159,62.0907,16.1055,15.0012,0.069664,0.861824,0.006592,0.006048,0.028576,0.096384,0.096224,13.7216,0.114272
+1160,61.7835,16.1855,16.273,0.069632,0.927264,0.006624,0.006144,0.028672,0.096288,0.09808,14.926,0.11424
+1161,57.8793,17.2773,15.0751,0.069632,0.92336,0.006432,0.006144,0.02864,0.096288,0.097856,13.7323,0.114464
+1162,61.3394,16.3027,16.2485,0.069632,0.888288,0.007808,0.005024,0.028672,0.096352,0.09824,14.9415,0.113024
+1163,57.322,17.4453,16.3896,0.069632,0.994976,0.006528,0.005888,0.028608,0.098016,0.098464,14.9733,0.114144
+1164,57.1429,17.5,15.1215,0.069632,0.972224,0.006752,0.006112,0.028672,0.096288,0.097472,13.7303,0.113984
+1165,61.4941,16.2617,15.1022,0.068032,0.954368,0.007936,0.004544,0.02848,0.096256,0.098304,13.7298,0.114496
+1166,61.7761,16.1875,16.304,0.071008,0.942368,0.00656,0.006112,0.028672,0.096256,0.09808,14.9404,0.114496
+1167,55.7856,17.9258,15.366,0.069376,1.21405,0.006816,0.005792,0.028608,0.096672,0.097888,13.7323,0.11456
+1168,59.6945,16.752,15.1168,0.080416,0.966624,0.007584,0.004864,0.028512,0.097472,0.09712,13.7208,0.113408
+1169,60.851,16.4336,17.4127,0.069728,0.889312,0.007872,0.004544,0.029632,0.095168,0.097856,16.1035,0.11504
+1170,51.9797,19.2383,15.0275,0.069184,0.88928,0.00768,0.005632,0.028768,0.09616,0.097152,13.7189,0.114688
+1171,64.8019,15.4316,14.9996,0.0696,0.864288,0.008128,0.005344,0.028768,0.096256,0.097056,13.7154,0.114688
+1172,62.1133,16.0996,16.3574,0.077248,0.953152,0.007872,0.005632,0.028608,0.097184,0.099552,14.9716,0.116512
+1173,56.8952,17.5762,15.1303,0.07376,0.983008,0.007584,0.004704,0.029728,0.09648,0.097024,13.7236,0.114368
+1174,61.3027,16.3125,15.1429,0.06928,0.988064,0.00784,0.014688,0.0304,0.104224,0.0968,13.7073,0.12432
+1175,62.4771,16.0059,16.2202,0.071072,0.856672,0.008192,0.005344,0.029088,0.09664,0.098336,14.9422,0.11264
+1176,55.5676,17.9961,15.1122,0.069664,0.976768,0.007296,0.005088,0.028704,0.096224,0.098304,13.7155,0.114656
+1177,62.2114,16.0742,15.0121,0.06928,0.86896,0.007808,0.004576,0.029792,0.097056,0.098304,13.7211,0.1152
+1178,62.3174,16.0469,16.2406,0.069472,0.892544,0.006688,0.006144,0.028672,0.09744,0.09712,14.9289,0.113632
+1179,57.3605,17.4336,15.1258,0.069664,0.972064,0.006848,0.00576,0.028704,0.096608,0.098336,13.7333,0.114528
+1180,59.4312,16.8262,15.2474,0.069664,1.11818,0.008064,0.005696,0.02864,0.09648,0.097888,13.7083,0.114464
+1181,62.7759,15.9297,16.2489,0.070688,0.868928,0.006592,0.006048,0.028512,0.096352,0.096384,14.9627,0.112672
+1182,57.7878,17.3047,15.0604,0.069696,0.911296,0.008032,0.005632,0.028832,0.096768,0.100096,13.7236,0.116384
+1183,62.4924,16.002,16.2357,0.069696,0.854944,0.008192,0.005312,0.028608,0.096928,0.098112,14.9611,0.112832
+1184,57.9973,17.2422,16.3021,0.069664,0.920608,0.007104,0.005792,0.028672,0.09664,0.097376,14.9606,0.115648
+1185,55.3753,18.0586,15.1914,0.07088,1.03856,0.00672,0.005856,0.028608,0.09632,0.096576,13.7338,0.114048
+1186,62.8221,15.918,15.147,0.069344,0.976512,0.006816,0.006144,0.028672,0.106336,0.098016,13.742,0.113248
+1187,63.6025,15.7227,16.2158,0.0712,0.860416,0.006368,0.006144,0.028672,0.097856,0.09856,14.9322,0.1144
+1188,58.3077,17.1504,15.0769,0.069344,0.907072,0.006944,0.005984,0.03088,0.096256,0.11264,13.7337,0.114112
+1189,62.5076,15.998,15.0306,0.069504,0.868768,0.008192,0.005344,0.028704,0.09696,0.10576,13.7264,0.120928
+1190,62.4924,16.002,16.2159,0.069536,0.87216,0.00656,0.006144,0.028672,0.098304,0.098304,14.9229,0.113344
+1191,54.9769,18.1895,15.0221,0.069664,0.88224,0.00656,0.006016,0.028672,0.096384,0.107648,13.7119,0.113024
+1192,65.9454,15.1641,16.2345,0.069632,0.874528,0.007808,0.005664,0.028736,0.097024,0.097664,14.9341,0.119296
+1193,57.9776,17.248,15.0047,0.0696,0.86144,0.006944,0.005664,0.028608,0.096032,0.0984,13.7243,0.11376
+1194,62.4619,16.0098,15.0254,0.069248,0.897312,0.007296,0.00512,0.02864,0.096352,0.09824,13.7093,0.11392
+1195,61.9555,16.1406,16.2471,0.06928,0.874944,0.006368,0.006144,0.028672,0.097472,0.099136,14.9524,0.11264
+1196,57.6382,17.3496,15.034,0.069632,0.90112,0.007264,0.005024,0.028672,0.096256,0.098272,13.7134,0.114272
+1197,59.3899,16.8379,15.1808,0.069664,0.989152,0.022528,0.006144,0.028672,0.1024,0.112448,13.7341,0.115744
+1198,64.1684,15.584,16.2265,0.069856,0.86144,0.00688,0.006048,0.028672,0.096352,0.098304,14.9462,0.112768
+1199,57.2131,17.4785,15.1432,0.069344,0.993824,0.006176,0.006112,0.028576,0.096352,0.098304,13.7312,0.113312
+1200,60.8799,16.4258,15.0059,0.069312,0.864768,0.00816,0.005632,0.028512,0.09696,0.09936,13.7124,0.120832
+1201,61.5533,16.2461,16.2921,0.069728,0.894496,0.007008,0.0056,0.028576,0.096416,0.096736,14.9811,0.11248
+1202,56.8826,17.5801,15.0938,0.068384,0.960512,0.008192,0.005888,0.028896,0.09744,0.09696,13.7128,0.114752
+1203,55.4113,18.0469,15.2699,0.08592,1.09731,0.016704,0.005728,0.028672,0.096224,0.096896,13.7296,0.112832
+1204,61.5015,16.2598,16.2853,0.069664,0.892896,0.007424,0.004896,0.030112,0.098016,0.09712,14.9688,0.116384
+1205,58.8235,17,16.2636,0.069984,0.904608,0.006848,0.005728,0.028672,0.096192,0.096736,14.9422,0.11264
+1206,57.2707,17.4609,15.1599,0.068576,1.01171,0.008192,0.005728,0.029088,0.104352,0.09776,13.712,0.122496
+1207,62.1133,16.0996,16.2731,0.070144,0.899072,0.008192,0.0056,0.028672,0.0968,0.096256,14.9545,0.113856
+1208,57.9448,17.2578,14.9912,0.069504,0.872608,0.007744,0.005632,0.028768,0.096544,0.096832,13.699,0.114528
+1209,61.9105,16.1523,15.0628,0.075776,0.903168,0.008192,0.00544,0.028512,0.096864,0.09856,13.7308,0.115424
+1210,62.9379,15.8887,16.2205,0.070144,0.865312,0.006944,0.005952,0.028864,0.096256,0.097952,14.9364,0.112672
+1211,57.4958,17.3926,15.0323,0.069632,0.88816,0.006816,0.005376,0.028544,0.096192,0.102624,13.7216,0.113344
+1212,62.6913,15.9512,15.0198,0.068192,0.870208,0.0072,0.005088,0.028672,0.097504,0.098208,13.73,0.114816
+1213,62.1058,16.1016,16.2437,0.06976,0.897888,0.008032,0.005312,0.027616,0.09744,0.09712,14.9269,0.1136
+1214,57.1684,17.4922,15.0635,0.068384,0.942048,0.007808,0.005664,0.028832,0.09696,0.097984,13.7012,0.114624
+1215,56.7062,17.6348,15.1338,0.070912,0.98592,0.007616,0.004704,0.02864,0.096288,0.096224,13.7292,0.114336
+1216,67.2622,14.8672,16.3041,0.082944,0.951296,0.00736,0.004928,0.028672,0.096256,0.098176,14.9216,0.112896
+1217,56.4747,17.707,15.1368,0.069632,0.974848,0.007744,0.004576,0.02864,0.098304,0.098304,13.74,0.114784
+1218,62.0757,16.1094,15.0407,0.06912,0.890944,0.006816,0.006144,0.028256,0.096,0.09696,13.7318,0.114688
+1219,61.1197,16.3613,16.3083,0.069184,0.924352,0.008096,0.005312,0.028672,0.096832,0.100064,14.9605,0.115232
+1220,57.7943,17.3027,16.2922,0.069952,0.902816,0.006496,0.006176,0.02864,0.096256,0.097856,14.9711,0.112864
+1221,57.8204,17.2949,15.0699,0.069696,0.926336,0.00816,0.004256,0.028576,0.096256,0.10032,13.7229,0.11344
+1222,59.6181,16.7734,16.3533,0.0712,1.0081,0.008096,0.005632,0.028864,0.096704,0.098304,14.9237,0.112672
+1223,56.4187,17.7246,15.187,0.071008,1.03082,0.018336,0.005504,0.028672,0.096736,0.096512,13.7257,0.11376
+1224,62.799,15.9238,15.1775,0.069792,1.01581,0.007968,0.005632,0.0376,0.098304,0.098496,13.7276,0.116352
+1225,62.2417,16.0664,16.2611,0.068416,0.870368,0.008032,0.005312,0.027776,0.096096,0.097984,14.973,0.11408
+1226,57.1365,17.502,15.0644,0.069632,0.9216,0.008192,0.005696,0.0288,0.095936,0.096896,13.7236,0.11408
+1227,60.9524,16.4062,16.2678,0.070144,0.907296,0.00816,0.005344,0.02864,0.096224,0.097152,14.9422,0.11264
+1228,57.8074,17.2988,16.2283,0.069568,0.888832,0.007808,0.005696,0.027488,0.09824,0.096288,14.9208,0.113632
+1229,57.8989,17.2715,15.0159,0.071584,0.872544,0.00816,0.005312,0.028832,0.096416,0.096928,13.7216,0.114528
+1230,60.3987,16.5566,15.1716,0.069632,1.01581,0.008,0.005792,0.0288,0.096704,0.10032,13.7319,0.114656
+1231,61.3762,16.293,16.2939,0.069632,0.931872,0.00816,0.005312,0.0288,0.09696,0.098304,14.9394,0.115456
+1232,57.8531,17.2852,15.0441,0.069184,0.91936,0.006976,0.00592,0.028512,0.09664,0.096256,13.7072,0.113984
+1233,61.3321,16.3047,15.2474,0.069632,1.06906,0.008192,0.005344,0.0288,0.09488,0.106496,13.7437,0.12128
+1234,61.7761,16.1875,16.2273,0.070624,0.881952,0.00688,0.006144,0.028672,0.098304,0.098304,14.9238,0.11264
+1235,57.9186,17.2656,15.0199,0.07088,0.887104,0.006528,0.006048,0.0288,0.096224,0.097728,13.714,0.11264
+1236,61.9405,16.1445,15.0364,0.069024,0.899712,0.00816,0.005856,0.0288,0.096416,0.096256,13.7175,0.11472
+1237,62.3402,16.041,16.2877,0.071104,0.899648,0.021664,0.004992,0.028672,0.09728,0.0968,14.9543,0.11328
+1238,57.8531,17.2852,15.0446,0.069824,0.903584,0.00656,0.006144,0.028672,0.098304,0.096256,13.721,0.11424
+1239,62.023,16.123,15.0667,0.069632,0.91504,0.00656,0.006016,0.0288,0.106528,0.09968,13.7199,0.114528
+1240,61.7537,16.1934,16.2521,0.069568,0.8928,0.006368,0.006112,0.028672,0.0976,0.09696,14.9402,0.113824
+1241,55.7613,17.9336,15.1777,0.069312,0.997728,0.008096,0.015456,0.028672,0.096608,0.09696,13.7193,0.145632
+1242,61.4867,16.2637,16.3893,0.071072,1.02563,0.007168,0.005856,0.028352,0.113024,0.097824,14.9263,0.114144
+1243,57.2643,17.4629,16.416,0.069152,1.0511,0.007392,0.004928,0.02864,0.100352,0.11264,14.9258,0.115936
+1244,57.5863,17.3652,14.9983,0.06864,0.886336,0.006592,0.006112,0.028672,0.096288,0.097792,13.6934,0.114432
+1245,62.2492,16.0645,15.0419,0.069632,0.873824,0.006816,0.005792,0.028544,0.11312,0.09792,13.7322,0.11408
+1246,62.3174,16.0469,16.2284,0.074944,0.86304,0.007552,0.004896,0.028512,0.0976,0.09824,14.9382,0.11536
+1247,57.9907,17.2441,15.007,0.069408,0.868544,0.008032,0.005344,0.028768,0.096288,0.106592,13.7099,0.114144
+1248,62.4238,16.0195,16.2366,0.069568,0.870464,0.007936,0.005632,0.02864,0.0968,0.09856,14.9462,0.112768
+1249,57.3477,17.4375,16.2345,0.070944,0.871136,0.007328,0.00496,0.028672,0.096288,0.09824,14.9443,0.11264
+1250,57.8924,17.2734,15.017,0.069728,0.879872,0.006816,0.006144,0.028352,0.096576,0.098304,13.7168,0.114336
+1251,62.272,16.0586,15.0017,0.069472,0.876128,0.007104,0.005472,0.029024,0.096576,0.106496,13.697,0.1144
+1252,62.2947,16.0527,16.2898,0.069696,0.948096,0.007264,0.00512,0.02864,0.098048,0.097952,14.9223,0.112672
+1253,56.656,17.6504,15.2395,0.078496,1.08544,0.007424,0.004864,0.028672,0.104448,0.099616,13.7162,0.114368
+1254,61.4351,16.2773,15.107,0.070624,0.999264,0.006336,0.006112,0.028672,0.097376,0.097184,13.688,0.113504
+1255,62.4162,16.0215,16.2612,0.069376,0.908576,0.007136,0.005472,0.028544,0.09504,0.097888,14.9364,0.112672
+1256,57.322,17.4453,15.0743,0.069632,0.935328,0.006752,0.006176,0.02864,0.097888,0.09776,13.7164,0.115744
+1257,61.5681,16.2422,15.0422,0.069632,0.91136,0.007776,0.004544,0.02864,0.096256,0.097984,13.7116,0.114368
+1258,62.0681,16.1113,16.2469,0.069728,0.88688,0.00736,0.004928,0.028672,0.096256,0.097504,14.941,0.114624
+1259,56.8636,17.5859,15.1461,0.070912,1.01043,0.00736,0.004928,0.028672,0.096256,0.097856,13.7159,0.113824
+1260,61.5607,16.2441,15.1323,0.069632,1.00339,0.006272,0.006144,0.028672,0.096256,0.096256,13.7114,0.114272
+1261,61.1708,16.3477,16.3616,0.069312,1.01747,0.007008,0.005568,0.028704,0.0968,0.099424,14.9219,0.115488
+1262,56.7376,17.625,15.1552,0.069632,1.02605,0.007264,0.005024,0.03008,0.094848,0.098144,13.7107,0.11344
+1263,62.1736,16.084,15.9949,0.06928,0.991584,0.00816,0.005344,0.031584,0.103616,0.097056,14.5749,0.113376
+1264,57.5863,17.3652,16.3737,0.071136,0.996928,0.007136,0.00576,0.029056,0.096288,0.098048,14.9547,0.114656
+1265,57.6901,17.334,15.0885,0.06848,0.929568,0.006368,0.006144,0.028672,0.098336,0.104448,13.7229,0.123552
+1266,57.827,17.293,15.2037,0.07168,1.06461,0.006496,0.006176,0.02864,0.098304,0.098304,13.7134,0.116096
+1267,60.822,16.4414,16.386,0.069632,1.0151,0.006848,0.005952,0.0288,0.09616,0.0976,14.9527,0.11328
+1268,61.3321,16.3047,15.1005,0.070208,0.972928,0.007264,0.005088,0.028672,0.098176,0.098432,13.7032,0.116544
+1269,62.1736,16.084,15.04,0.069664,0.890272,0.00672,0.006016,0.028608,0.096256,0.097472,13.7308,0.114176
+1270,61.5977,16.2344,17.449,0.069632,0.896608,0.00656,0.006176,0.02864,0.097472,0.097088,16.1315,0.115296
+1271,53.9061,18.5508,14.9843,0.069632,0.8704,0.008192,0.005344,0.028544,0.095136,0.098336,13.6949,0.113728
+1272,62.1661,16.0859,15.0133,0.0696,0.884096,0.006816,0.006048,0.028704,0.096352,0.098304,13.7093,0.11408
+1273,61.3615,16.2969,16.2304,0.070816,0.88768,0.00816,0.005344,0.028896,0.096832,0.098336,14.9146,0.119712
+1274,58.3011,17.1523,15.0182,0.069696,0.880448,0.006528,0.006112,0.028672,0.096256,0.097888,13.7193,0.113344
+1275,62.0606,16.1133,15.0487,0.069152,0.90368,0.006432,0.006112,0.028672,0.097344,0.104832,13.7154,0.117056
+1276,61.2733,16.3203,16.3252,0.069856,0.966976,0.00752,0.004864,0.028672,0.099488,0.098496,14.9364,0.112928
+1277,57.1492,17.498,15.0938,0.070656,0.973824,0.007712,0.004576,0.028672,0.0976,0.09696,13.7011,0.112704
+1278,61.6348,16.2246,15.2002,0.069632,1.05005,0.00672,0.005664,0.039264,0.097792,0.106496,13.7078,0.116768
+1279,57.4184,17.416,16.384,0.06976,1.03242,0.007616,0.014912,0.030176,0.096096,0.096992,14.9186,0.117408
+1280,60.2282,16.6035,15.0796,0.080768,0.953856,0.006656,0.006144,0.028672,0.096256,0.097504,13.6948,0.114912
+1281,61.413,16.2832,15.0496,0.070496,0.909312,0.008032,0.005312,0.027616,0.096448,0.098144,13.7215,0.112736
+1282,62.7605,15.9336,16.2109,0.069536,0.852064,0.007648,0.004896,0.028448,0.097344,0.09824,14.9391,0.113664
+1283,57.7748,17.3086,16.2142,0.069376,0.897504,0.007296,0.004992,0.028672,0.097536,0.098816,14.8974,0.11264
+1284,58.0367,17.2305,14.9978,0.069248,0.856352,0.006496,0.006144,0.028672,0.096288,0.098144,13.7217,0.114688
+1285,62.1586,16.0879,16.2281,0.069632,0.876288,0.0064,0.006176,0.02864,0.097568,0.096992,14.9299,0.116448
+1286,56.725,17.6289,15.0477,0.069632,0.884768,0.007552,0.004864,0.028512,0.098048,0.097728,13.7423,0.114368
+1287,60.4843,16.5332,15.1491,0.068544,1.0199,0.008128,0.005312,0.027648,0.097184,0.097248,13.7104,0.11472
+1288,61.2807,16.3184,16.4803,0.069632,1.1161,0.007232,0.00512,0.028672,0.1024,0.10592,14.9316,0.1136
+1289,58.1224,17.2051,15.0338,0.0688,0.904064,0.007488,0.004832,0.02864,0.110592,0.098272,13.6971,0.114016
+1290,62.2417,16.0664,15.4077,0.069632,0.867072,0.006304,0.006144,0.028672,0.101856,0.0968,14.1169,0.1144
+1291,60.0516,16.6523,16.1976,0.082944,0.867328,0.007424,0.004864,0.028672,0.096256,0.097792,14.8997,0.11264
+1292,58.1158,17.207,14.9951,0.069504,0.87904,0.007488,0.0048,0.028672,0.09616,0.097696,13.6967,0.11504
+1293,59.2936,16.8652,15.1791,0.069632,1.03763,0.006848,0.005632,0.028736,0.0968,0.098368,13.7194,0.116064
+1294,65.448,15.2793,16.2264,0.069376,0.872832,0.008096,0.005632,0.028608,0.111264,0.098336,14.919,0.113312
+1295,57.9513,17.2559,15.0075,0.068384,0.869856,0.006528,0.00608,0.02864,0.096352,0.098144,13.7197,0.11376
+1296,60.7283,16.4668,15.1053,0.071104,0.956928,0.015648,0.006944,0.028672,0.096256,0.098304,13.717,0.114464
+1297,59.9391,16.6836,16.3308,0.069664,0.955936,0.006592,0.005984,0.029856,0.095232,0.097984,14.9569,0.112672
+1298,59.5141,16.8027,15.0425,0.069632,0.900192,0.007072,0.005856,0.02864,0.096736,0.099552,13.7172,0.117664
+1299,62.401,16.0254,15.0077,0.069312,0.861888,0.006784,0.005856,0.02896,0.096288,0.097312,13.7267,0.114688
+1300,62.2568,16.0625,16.2856,0.079872,0.882688,0.02048,0.006112,0.034592,0.096512,0.097472,14.9533,0.114624
+1301,57.6512,17.3457,15.033,0.070464,0.886528,0.007328,0.00496,0.028672,0.097728,0.096832,13.7274,0.113088
+1302,62.5305,15.9922,15.0135,0.067744,0.863296,0.007104,0.006112,0.028704,0.09728,0.09728,13.7319,0.114144
+1303,62.3934,16.0273,16.2629,0.069152,0.858624,0.006368,0.006144,0.028672,0.104192,0.104704,14.9688,0.11632
+1304,57.1301,17.5039,16.2161,0.069632,0.860192,0.008096,0.005632,0.028768,0.096064,0.09824,14.9364,0.11312
+1305,57.9186,17.2656,15.0722,0.069984,0.897248,0.006528,0.005696,0.02912,0.103584,0.1176,13.7175,0.124928
+1306,60.2211,16.6055,16.3716,0.07024,1.00352,0.007296,0.004992,0.028672,0.098272,0.097376,14.9488,0.112512
+1307,58.7156,17.0312,15.0151,0.069632,0.88064,0.008096,0.005312,0.028864,0.096096,0.098208,13.7144,0.113856
+1308,60.822,16.4414,15.0938,0.069632,0.9704,0.006496,0.006144,0.028672,0.09824,0.0984,13.7006,0.115136
+1309,61.5977,16.2344,16.2945,0.069248,0.926464,0.006368,0.006176,0.02864,0.096256,0.097728,14.95,0.113568
+1310,58.0894,17.2148,15.0459,0.069632,0.909312,0.007936,0.005664,0.028512,0.0968,0.098656,13.7147,0.114752
+1311,62.2417,16.0664,15.063,0.069856,0.904992,0.008096,0.005312,0.02896,0.096672,0.09648,13.7371,0.115552
+1312,62.3858,16.0293,16.2635,0.069728,0.899776,0.007264,0.005056,0.028704,0.097696,0.096832,14.9422,0.116192
+1313,57.2451,17.4688,15.0874,0.075104,0.925664,0.006848,0.016416,0.02864,0.097952,0.108864,13.7114,0.116512
+1314,62.2265,16.0703,15.1081,0.088064,0.9216,0.007392,0.004896,0.028672,0.097664,0.096896,13.7496,0.113312
+1315,57.541,17.3789,16.4595,0.069376,1.08944,0.016992,0.0056,0.029216,0.097856,0.096704,14.9402,0.114144
+1316,59.8201,16.7168,15.0094,0.071104,0.873024,0.007936,0.0056,0.028672,0.096576,0.097856,13.7141,0.114592
+1317,62.6223,15.9688,15.0165,0.069408,0.871296,0.008192,0.005408,0.028768,0.096,0.097184,13.7257,0.114592
+1318,62.0305,16.1211,16.2178,0.069312,0.868192,0.006656,0.006112,0.028672,0.099936,0.096672,14.9258,0.116384
+1319,57.7682,17.3105,16.2313,0.06848,0.864256,0.007488,0.004832,0.02864,0.096256,0.097728,14.9506,0.112992
+1320,57.1365,17.502,15.0984,0.068128,0.964576,0.007392,0.004896,0.030016,0.102464,0.097056,13.703,0.120832
+1321,62.0456,16.1172,16.3707,0.071264,0.99984,0.008192,0.005408,0.028736,0.098016,0.097216,14.9484,0.113696
+1322,56.3815,17.7363,15.2235,0.068576,1.05882,0.008192,0.006144,0.040704,0.096512,0.105728,13.7244,0.1144
+1323,58.9862,16.9531,15.8042,0.071136,0.965152,0.008192,0.005312,0.0288,0.105184,0.098272,14.0923,0.429888
+1324,61.8582,16.166,15.0237,0.071808,0.870528,0.006496,0.006144,0.028672,0.096256,0.097888,13.7318,0.11408
+1325,62.1133,16.0996,15.0895,0.083968,0.917504,0.007936,0.004544,0.02848,0.104,0.104736,13.7116,0.126784
+1326,61.9105,16.1523,16.252,0.070944,0.868416,0.006816,0.006112,0.028704,0.098208,0.0984,14.9484,0.126048
+1327,57.8531,17.2852,14.985,0.06976,0.868928,0.007552,0.004736,0.028672,0.096256,0.098016,13.6973,0.113728
+1328,61.3027,16.3125,15.084,0.076256,0.935936,0.007584,0.004896,0.02848,0.098272,0.098336,13.7187,0.115616
+1329,61.4793,16.2656,16.4208,0.069824,0.990624,0.00656,0.006144,0.028672,0.096256,0.097856,15.0122,0.112672
+1330,57.6706,17.3398,15.0338,0.069664,0.885792,0.007104,0.005792,0.028864,0.10256,0.105472,13.7013,0.127168
+1331,62.3934,16.0273,15.0577,0.0704,0.909312,0.007776,0.004576,0.029696,0.105408,0.098304,13.7168,0.115456
+1332,61.5311,16.252,16.2365,0.069568,0.89504,0.007392,0.004928,0.02864,0.097568,0.09904,14.9208,0.1136
+1333,58.1092,17.209,15.039,0.06816,0.890176,0.006848,0.005888,0.02848,0.095904,0.097056,13.7318,0.114688
+1334,61.7239,16.2012,16.2284,0.070752,0.871328,0.008064,0.005632,0.0288,0.0968,0.09824,14.9353,0.113472
+1335,57.6252,17.3535,16.2842,0.069888,0.926144,0.008064,0.005408,0.028832,0.096512,0.096608,14.9395,0.113312
+1336,58.1752,17.1895,14.9914,0.069824,0.862112,0.008128,0.005792,0.028672,0.096608,0.097344,13.7082,0.114656
+1337,62.8452,15.9121,14.9987,0.069632,0.856064,0.008192,0.005472,0.028736,0.096544,0.096576,13.7249,0.11264
+1338,62.0155,16.125,16.3116,0.069504,0.958816,0.007616,0.004864,0.02848,0.098272,0.0976,14.9307,0.115808
+1339,57.6187,17.3555,15.0801,0.068544,0.933888,0.00752,0.004768,0.028672,0.096256,0.096256,13.729,0.115264
+1340,61.3909,16.2891,16.4106,0.069376,1.00173,0.007616,0.004896,0.02848,0.097984,0.096544,14.9904,0.113504
+1341,55.9808,17.8633,16.382,0.08096,1.00662,0.008096,0.014336,0.028672,0.096256,0.098336,14.936,0.112672
+1342,58.3409,17.1406,15.0329,0.06944,0.89968,0.007456,0.005024,0.028672,0.098304,0.098272,13.7126,0.113504
+1343,62.2947,16.0527,15.0401,0.069536,0.88176,0.007168,0.005248,0.029152,0.096704,0.097696,13.7365,0.11632
+1344,61.5607,16.2441,16.4146,0.076576,1.04637,0.006304,0.006144,0.028672,0.096256,0.098304,14.9422,0.113728
+1345,52.5883,19.0156,15.1716,0.069632,1.03341,0.006976,0.005728,0.028832,0.096512,0.097632,13.7195,0.113376
+1346,64.5894,15.4824,15.5544,0.069792,1.4281,0.00736,0.004992,0.030048,0.09648,0.09664,13.7073,0.113696
+1347,54.2545,18.4316,16.3748,0.069568,1.0113,0.006624,0.005952,0.044832,0.096672,0.097408,14.9288,0.113696
+1348,64.362,15.5371,15.3272,0.069632,1.20422,0.008064,0.005632,0.028384,0.097056,0.09744,13.7021,0.114688
+1349,62.9147,15.8945,15.0549,0.069504,0.943904,0.006528,0.006112,0.028672,0.096256,0.097664,13.6934,0.112864
+1350,62.2341,16.0684,16.2404,0.069184,0.8816,0.008096,0.005632,0.02848,0.097056,0.097792,14.9366,0.115936
+1351,58.0762,17.2188,15.0305,0.069248,0.888544,0.007136,0.005472,0.0288,0.096032,0.097056,13.7234,0.114752
+1352,62.7528,15.9355,15.0324,0.069248,0.892864,0.006592,0.006144,0.028672,0.096288,0.098304,13.7206,0.113664
+1353,61.3027,16.3125,16.3021,0.075744,0.91344,0.00816,0.005312,0.028736,0.09824,0.099168,14.9586,0.114688
+1354,58.162,17.1934,15.0301,0.06944,0.895712,0.007488,0.004864,0.028608,0.097728,0.098176,13.7141,0.113952
+1355,59.9461,16.6816,16.0768,0.069536,1.07734,0.008032,0.005312,0.031712,0.100352,0.106528,14.5633,0.114688
+1356,60.1362,16.6289,16.2268,0.070144,0.89904,0.007552,0.004896,0.028512,0.097568,0.096992,14.9094,0.11264
+1357,55.0597,18.1621,15.1588,0.069024,1.01859,0.00784,0.004544,0.037824,0.0952,0.098112,13.7136,0.114016
+1358,61.4203,16.2812,15.1577,0.070016,1.02813,0.007904,0.005632,0.028672,0.098112,0.098784,13.7036,0.116768
+1359,63.2489,15.8105,16.3613,0.06912,0.997856,0.007296,0.005088,0.028672,0.096256,0.09776,14.9463,0.112992
+1360,57.3477,17.4375,15.0598,0.06848,0.927712,0.007296,0.004992,0.028672,0.09952,0.099168,13.7072,0.116768
+1361,61.6422,16.2227,16.2243,0.069632,0.898976,0.00624,0.005856,0.028672,0.096576,0.097664,14.9076,0.113024
+1362,57.1875,17.4863,16.2751,0.068064,0.917504,0.007424,0.004896,0.029824,0.096448,0.098176,14.9365,0.116288
+1363,56.9015,17.5742,15.1061,0.069696,0.988352,0.00672,0.004544,0.028544,0.096288,0.098016,13.6993,0.114656
+1364,61.5755,16.2402,15.0399,0.069664,0.909536,0.00816,0.005696,0.028672,0.096128,0.098144,13.7099,0.113952
+1365,62.038,16.1191,16.3142,0.069504,0.946848,0.006368,0.006144,0.030624,0.097696,0.09696,14.9463,0.113824
+1366,56.3504,17.7461,15.1605,0.069408,1.0017,0.007904,0.005664,0.029088,0.096608,0.097536,13.7387,0.113888
+1367,61.1197,16.3613,15.1286,0.069632,0.997376,0.007456,0.004832,0.028672,0.096256,0.098304,13.7128,0.113216
+1368,61.6125,16.2305,17.6046,0.069632,1.0527,0.007616,0.005664,0.028672,0.09728,0.096256,16.1341,0.112672
+1369,53.2945,18.7637,15.1476,0.072352,0.999424,0.00752,0.0048,0.02864,0.098144,0.097984,13.7221,0.116704
+1370,61.076,16.373,15.1342,0.069312,1.00189,0.008192,0.005728,0.02912,0.096352,0.097984,13.7116,0.11408
+1371,61.903,16.1543,16.2558,0.068384,0.919232,0.006464,0.006144,0.028672,0.096256,0.098208,14.919,0.113376
+1372,57.0092,17.541,15.1123,0.070592,0.965856,0.006944,0.005984,0.028576,0.096224,0.097824,13.7261,0.114144
+1373,61.9705,16.1367,15.0791,0.069472,0.929472,0.006944,0.0056,0.028768,0.096064,0.096896,13.7315,0.114464
+1374,62.6836,15.9531,16.2236,0.069664,0.868,0.006464,0.006176,0.029728,0.097216,0.09728,14.933,0.116096
+1375,58.129,17.2031,15.0094,0.069792,0.862208,0.007904,0.004576,0.02848,0.097504,0.097088,13.7277,0.114176
+1376,62.5,16,14.9847,0.068096,0.871776,0.006816,0.00608,0.028736,0.096096,0.097472,13.6957,0.113952
+1377,62.8221,15.918,16.2181,0.069632,0.86224,0.007776,0.004544,0.028608,0.097472,0.09712,14.934,0.116736
+1378,57.8662,17.2812,14.9996,0.069216,0.889248,0.007904,0.005632,0.028704,0.096992,0.097312,13.6916,0.112928
+1379,62.0305,16.1211,14.9941,0.069376,0.84672,0.007808,0.004576,0.028608,0.09792,0.098656,13.7277,0.112672
+1380,61.9255,16.1484,16.2644,0.069856,0.917504,0.008192,0.005312,0.028736,0.097024,0.098304,14.9258,0.113696
+1381,55.7673,17.9316,15.3702,0.069664,1.1999,0.016576,0.005536,0.027296,0.096192,0.118016,13.7235,0.113504
+1382,54.1971,18.4512,17.0041,0.07536,2.8329,0.01584,0.00608,0.039712,0.097728,0.096832,13.7255,0.114144
+1383,62.607,15.9727,16.2571,0.069632,0.890752,0.006304,0.006112,0.028672,0.096256,0.0976,14.9491,0.112672
+1384,57.5928,17.3633,15.0262,0.069376,0.898912,0.006912,0.00608,0.028736,0.098048,0.096512,13.7052,0.116416
+1385,63.1475,15.8359,14.9811,0.069664,0.856032,0.007296,0.004992,0.028672,0.096288,0.09808,13.7075,0.11264
+1386,62.3858,16.0293,16.2195,0.069632,0.874496,0.007648,0.004896,0.029536,0.096288,0.097184,14.9258,0.11408
+1387,58.0499,17.2266,16.2325,0.07088,0.880928,0.006656,0.005888,0.028928,0.098016,0.097792,14.9307,0.112736
+1388,58.1224,17.2051,14.9935,0.069376,0.866624,0.007584,0.004864,0.028512,0.097568,0.096992,13.7084,0.1136
+1389,61.3909,16.2891,16.3383,0.075936,0.95168,0.006624,0.005952,0.041152,0.097824,0.104928,14.9381,0.116064
+1390,56.1835,17.7988,15.0671,0.069344,0.936224,0.007552,0.004864,0.030144,0.100352,0.096832,13.7085,0.113344
+1391,63.5946,15.7246,15.0939,0.068928,0.966944,0.00672,0.006144,0.028448,0.09632,0.104544,13.7012,0.114656
+1392,61.903,16.1543,16.3237,0.069632,0.976864,0.007264,0.014656,0.028864,0.096704,0.099712,14.9162,0.113792
+1393,58.2348,17.1719,14.9914,0.068288,0.867456,0.00704,0.005536,0.0288,0.096064,0.096928,13.7073,0.114048
+1394,62.4771,16.0059,15.3717,0.069632,0.89088,0.007648,0.004896,0.029472,0.096672,0.09824,14.0595,0.11472
+1395,60.0305,16.6582,16.2623,0.070912,0.910112,0.00784,0.005504,0.028672,0.097216,0.0976,14.9306,0.113792
+1396,57.7422,17.3184,15.0964,0.069184,0.944928,0.00752,0.00496,0.028672,0.099712,0.104864,13.7197,0.116832
+1397,61.413,16.2832,15.1921,0.069632,1.04448,0.007584,0.004704,0.028672,0.098208,0.0984,13.7257,0.11472
+1398,60.8293,16.4395,16.3086,0.06912,0.963072,0.006496,0.006144,0.028672,0.096288,0.097856,14.9283,0.112672
+1399,56.2143,17.7891,15.2638,0.069632,1.06906,0.02048,0.00608,0.028736,0.106496,0.098304,13.7498,0.115232
+1400,62.9689,15.8809,15.0837,0.069728,0.937152,0.007072,0.005792,0.029024,0.097408,0.09824,13.7134,0.125888
+1401,60.7571,16.459,17.4632,0.069344,0.93008,0.007808,0.004544,0.02864,0.096224,0.110592,16.0994,0.116608
+1402,54.1226,18.4766,15.0478,0.069632,0.925696,0.008192,0.005728,0.028672,0.096672,0.098304,13.7011,0.11376
+1403,61.4793,16.2656,15.045,0.067968,0.920928,0.006816,0.005792,0.028544,0.096544,0.097632,13.7077,0.113088
+1404,60.9234,16.4141,16.3332,0.070016,0.98528,0.006592,0.006144,0.028672,0.097536,0.098752,14.926,0.114272
+1405,57.7292,17.3223,15.0246,0.079712,0.893568,0.007712,0.004608,0.02864,0.098112,0.105952,13.6928,0.113536
+1406,61.31,16.3105,15.041,0.06992,0.909504,0.007264,0.005088,0.02864,0.102432,0.09792,13.7068,0.113472
+1407,61.8208,16.1758,16.2632,0.071616,0.909376,0.007872,0.004576,0.029568,0.0952,0.098176,14.9335,0.113312
+1408,57.1748,17.4902,15.1089,0.078304,0.97872,0.006752,0.006144,0.028544,0.096416,0.10048,13.6989,0.114656
+1409,62.2265,16.0703,15.0484,0.069824,0.912608,0.006912,0.005632,0.028736,0.096704,0.099776,13.7119,0.116288
+1410,61.8806,16.1602,16.2463,0.069632,0.906272,0.007136,0.005824,0.028544,0.096704,0.098304,14.9207,0.113216
+1411,58.0565,17.2246,14.9993,0.069632,0.8704,0.007712,0.00464,0.028608,0.097376,0.097184,13.7108,0.11296
+1412,61.5385,16.25,15.0057,0.07168,0.886464,0.006464,0.006144,0.028672,0.096448,0.097824,13.6985,0.113504
+1413,62.8529,15.9102,16.2263,0.069632,0.872448,0.007552,0.004736,0.028672,0.09632,0.098112,14.9356,0.11328
+1414,57.1429,17.5,16.3554,0.069632,1.01501,0.007008,0.005984,0.028704,0.097408,0.099328,14.9208,0.111552
+1415,57.5734,17.3691,15.0524,0.077152,0.917888,0.006432,0.006176,0.02864,0.096288,0.097728,13.7078,0.114304
+1416,60.9524,16.4062,16.3786,0.070336,1.02211,0.00784,0.005952,0.028576,0.096768,0.096352,14.934,0.116672
+1417,57.0156,17.5391,15.1589,0.069632,1.04243,0.007776,0.004576,0.028608,0.09744,0.096512,13.6976,0.114336
+1418,58.4275,17.1152,15.2023,0.069632,1.0281,0.00736,0.005984,0.029504,0.110784,0.102368,13.7236,0.124928
+1419,63.1008,15.8477,16.3639,0.069984,0.998592,0.006976,0.00576,0.029056,0.0976,0.09696,14.9463,0.11264
+1420,54.4391,18.3691,15.0847,0.069632,0.958464,0.007328,0.004992,0.02976,0.096288,0.097152,13.7073,0.113792
+1421,63.8245,15.668,16.5334,0.069632,1.18074,0.007104,0.005568,0.028448,0.096096,0.098592,14.9341,0.11312
+1422,57.7943,17.3027,16.5054,0.068128,1.13869,0.018432,0.006144,0.028672,0.09632,0.09824,14.9381,0.11264
+1423,56.7627,17.6172,15.0844,0.070528,0.956448,0.00816,0.005312,0.028672,0.097088,0.098304,13.7032,0.116736
+1424,60.9234,16.4141,15.1081,0.068192,0.972416,0.006528,0.006144,0.028672,0.096256,0.110592,13.7052,0.114112
+1425,61.6422,16.2227,16.3083,0.069632,0.93344,0.006592,0.00608,0.028736,0.102368,0.097824,14.9485,0.115104
+1426,57.4313,17.4121,15.027,0.069472,0.903136,0.007136,0.005824,0.028608,0.096352,0.102688,13.7004,0.113376
+1427,61.4351,16.2773,15.0774,0.069632,0.927136,0.006752,0.00592,0.039136,0.097824,0.097824,13.7205,0.112672
+1428,61.1562,16.3516,17.2237,0.066944,1.05699,0.00656,0.006144,0.028672,0.098336,0.098272,15.7484,0.113376
+1429,55.5254,18.0098,15.0185,0.06848,0.885888,0.006944,0.0056,0.028544,0.096672,0.097568,13.7143,0.114432
+1430,60.5487,16.5156,15.2228,0.069632,1.09152,0.007296,0.005056,0.028672,0.098336,0.09936,13.7056,0.11728
+1431,62.7605,15.9336,16.2601,0.069664,0.896224,0.006912,0.005504,0.028512,0.096544,0.096768,14.9462,0.113728
+1432,57.0219,17.5371,15.0891,0.070912,0.939808,0.007136,0.006016,0.0288,0.104416,0.098336,13.7093,0.124384
+1433,61.5533,16.2461,15.0058,0.071008,0.87936,0.008192,0.00544,0.028832,0.0968,0.097888,13.7036,0.114688
+1434,62.2341,16.0684,16.2181,0.069632,0.857664,0.006592,0.006144,0.02864,0.097632,0.09696,14.9421,0.112768
+1435,57.322,17.4453,15.0257,0.069632,0.890336,0.006688,0.00592,0.0288,0.097984,0.098752,13.7126,0.115008
+1436,61.8881,16.1582,15.0578,0.068448,0.923616,0.007296,0.005024,0.028672,0.09808,0.09648,13.7168,0.113312
+1437,61.8806,16.1602,16.2898,0.069632,0.914496,0.007104,0.00544,0.028768,0.096576,0.098176,14.9524,0.117248
+1438,56.8952,17.5762,15.0797,0.069984,0.94784,0.007552,0.005056,0.028672,0.098304,0.097472,13.7096,0.115232
+1439,62.3858,16.0293,14.9996,0.069504,0.8784,0.006464,0.006112,0.02848,0.096256,0.09648,13.7051,0.1128
+1440,62.1435,16.0918,16.2793,0.069312,0.909888,0.007872,0.005696,0.028512,0.099072,0.104576,14.9378,0.116576
+1441,57.3927,17.4238,16.2591,0.069152,0.9016,0.008192,0.005344,0.028544,0.09632,0.097152,14.9401,0.11264
+1442,57.9841,17.2461,15.0523,0.069568,0.892992,0.008064,0.005632,0.028704,0.098912,0.104448,13.7196,0.124448
+1443,61.5533,16.2461,16.2776,0.069664,0.948992,0.007392,0.004896,0.028672,0.098176,0.098112,14.9093,0.112352
+1444,57.3734,17.4297,15.0815,0.069536,0.952416,0.007488,0.004896,0.028576,0.09776,0.097824,13.7084,0.114592
+1445,61.0469,16.3809,15.0554,0.069568,0.919168,0.007136,0.005504,0.028704,0.096864,0.098304,13.7084,0.121824
+1446,63.1709,15.8301,16.2094,0.071616,0.871936,0.00672,0.006144,0.028672,0.096256,0.098048,14.9159,0.114176
+1447,57.8793,17.2773,16.2493,0.068256,0.90896,0.006496,0.00608,0.028704,0.096288,0.097696,14.9223,0.114528
+1448,56.4249,17.7227,15.1091,0.070336,0.984896,0.006624,0.006144,0.028672,0.096256,0.097376,13.7041,0.11472
+1449,62.3402,16.041,16.347,0.069728,0.988704,0.007008,0.005568,0.028512,0.096352,0.096896,14.934,0.120224
+1450,53.0021,18.8672,15.1941,0.069632,1.05654,0.006592,0.00592,0.028672,0.098016,0.096544,13.7169,0.115296
+1451,62.9534,15.8848,15.1893,0.069664,1.04854,0.00784,0.004544,0.028576,0.096256,0.098336,13.7216,0.113952
+1452,63.8643,15.6582,16.3432,0.067904,1.00256,0.006944,0.006048,0.028768,0.097376,0.097184,14.9197,0.116736
+1453,58.7965,17.0078,15.0157,0.069792,0.886656,0.007808,0.004544,0.02864,0.096192,0.098208,13.7094,0.114496
+1454,61.8955,16.1562,16.2223,0.069632,0.858112,0.008192,0.005792,0.0288,0.106752,0.097792,14.9335,0.113664
+1455,57.9448,17.2578,16.2151,0.070304,0.878912,0.007424,0.004896,0.02864,0.098304,0.09792,14.9176,0.111136
+1456,57.9055,17.2695,14.9975,0.069664,0.867488,0.006976,0.00592,0.028864,0.096288,0.098304,13.7107,0.113312
+1457,62.5764,15.9805,15.0206,0.07472,0.864256,0.007808,0.004544,0.028736,0.098016,0.098464,13.7298,0.11424
+1458,62.008,16.127,16.2162,0.070272,0.866304,0.008,0.005632,0.028704,0.096704,0.09648,14.9299,0.114176
+1459,58.2149,17.1777,14.981,0.069664,0.859872,0.0064,0.006144,0.028672,0.096256,0.097504,13.7019,0.11456
+1460,62.4238,16.0195,16.2208,0.069408,0.869216,0.00736,0.004928,0.028672,0.098336,0.097952,14.9302,0.114688
+1461,57.5152,17.3867,16.331,0.069408,0.988,0.007232,0.00512,0.028672,0.096256,0.097312,14.9207,0.118368
+1462,56.3194,17.7559,15.196,0.0696,1.07114,0.00752,0.004864,0.03472,0.105824,0.107168,13.6779,0.117344
+1463,62.5,16,15.0502,0.069632,0.905216,0.007616,0.004704,0.02864,0.097888,0.096672,13.7257,0.114144
+1464,60.7283,16.4668,16.4213,0.069824,1.08598,0.007648,0.004864,0.028448,0.097376,0.097184,14.9156,0.114432
+1465,57.827,17.293,15.0569,0.07168,0.931296,0.006688,0.00592,0.02848,0.094624,0.09824,13.7067,0.113248
+1466,62.1435,16.0918,15.0376,0.069632,0.917504,0.007552,0.004864,0.029984,0.096416,0.096736,13.7007,0.114208
+1467,60.9959,16.3945,16.3738,0.069632,1.01171,0.008096,0.005344,0.028992,0.096832,0.097632,14.9407,0.114848
+1468,58.1092,17.209,15.0193,0.069664,0.917152,0.006464,0.006144,0.028672,0.097376,0.097184,13.6827,0.113952
+1469,62.5382,15.9902,14.9955,0.069312,0.876864,0.007552,0.004736,0.028672,0.09824,0.09776,13.6988,0.113504
+1470,61.7984,16.1816,16.2612,0.069632,0.927744,0.007424,0.004864,0.028672,0.098112,0.098496,14.9135,0.112672
+1471,57.7813,17.3066,15.0461,0.069184,0.926368,0.00816,0.005312,0.028512,0.096736,0.096928,13.701,0.113952
+1472,62.1359,16.0938,14.9996,0.069792,0.891232,0.008064,0.005632,0.028544,0.096992,0.09808,13.6863,0.115008
+1473,62.4619,16.0098,16.2387,0.071136,0.897664,0.008032,0.005312,0.027616,0.097536,0.097024,14.9217,0.11264
+1474,57.5087,17.3887,15.0229,0.068416,0.906816,0.006592,0.006176,0.02864,0.096256,0.098304,13.6987,0.113088
+1475,61.8059,16.1797,15.0897,0.071104,0.9488,0.008192,0.005408,0.02896,0.096736,0.099488,13.7142,0.116736
+1476,59.3348,16.8535,16.3431,0.069632,0.978752,0.006336,0.006144,0.028672,0.097408,0.097184,14.9453,0.1136
+1477,59.1224,16.9141,15.0446,0.069632,0.909312,0.007808,0.004576,0.028576,0.098048,0.097856,13.7141,0.114688
+1478,61.4056,16.2852,15.1224,0.07104,0.99392,0.007264,0.005024,0.028672,0.096256,0.097792,13.7095,0.11296
+1479,62.2947,16.0527,16.2498,0.068608,0.907232,0.007456,0.004832,0.028672,0.096288,0.096224,14.9275,0.112992
+1480,56.7565,17.6191,16.3403,0.06768,0.95552,0.023328,0.006048,0.0288,0.097568,0.097056,14.9502,0.11408
+1481,56.7439,17.623,15.194,0.06976,1.05827,0.00656,0.006144,0.028672,0.096256,0.097824,13.7159,0.114592
+1482,61.5163,16.2559,16.5151,0.069632,1.14806,0.007008,0.00592,0.028416,0.107008,0.098304,14.936,0.114688
+1483,58.6215,17.0586,15.018,0.069632,0.882688,0.007776,0.004576,0.028608,0.096288,0.098048,13.7174,0.11296
+1484,62.1133,16.0996,14.9884,0.069504,0.884352,0.006656,0.006176,0.02864,0.096288,0.09808,13.6849,0.113824
+1485,62.3782,16.0312,16.2541,0.070752,0.900032,0.008,0.005312,0.027616,0.098304,0.098304,14.932,0.113792
+1486,57.9186,17.2656,14.9926,0.069504,0.868512,0.008032,0.005696,0.028512,0.096672,0.097696,13.7038,0.114176
+1487,62.653,15.9609,15.3976,0.069568,0.860512,0.006592,0.00608,0.028736,0.1024,0.107616,14.1035,0.112672
+1488,57.9317,17.2617,16.9165,0.069952,1.57696,0.007424,0.004896,0.02864,0.097504,0.097056,14.9209,0.113184
+1489,58.0367,17.2305,15.0589,0.069632,0.9216,0.007872,0.004544,0.028544,0.096256,0.101696,13.7141,0.114656
+1490,61.791,16.1836,15.031,0.07008,0.926016,0.007296,0.004992,0.028672,0.098336,0.098304,13.6818,0.115552
+1491,62.2568,16.0625,16.3084,0.069216,0.889184,0.006624,0.00592,0.0288,0.096352,0.097504,15.0023,0.11248
+1492,57.6642,17.3418,15.0082,0.06944,0.878272,0.007072,0.005824,0.028704,0.096544,0.098304,13.711,0.112992
+1493,58.6416,17.0527,15.1182,0.070272,0.999584,0.007296,0.004992,0.028672,0.096256,0.097984,13.6994,0.113728
+1494,63.6974,15.6992,16.3144,0.069632,0.978272,0.006816,0.006112,0.028576,0.096224,0.096416,14.9073,0.125056
+1495,57.0792,17.5195,15.1533,0.069824,1.04157,0.006976,0.0056,0.028928,0.096544,0.096256,13.6929,0.11472
+1496,61.3615,16.2969,15.1503,0.069632,1.0128,0.007104,0.005824,0.028832,0.096448,0.0976,13.7182,0.113856
+1497,61.3541,16.2988,16.3221,0.069504,0.961184,0.007872,0.004576,0.029664,0.096832,0.0976,14.9391,0.115776
+1498,56.3009,17.7617,15.0899,0.069568,0.986816,0.00704,0.005888,0.02848,0.09632,0.09664,13.6847,0.114368
+1499,60.8944,16.4219,15.1201,0.068928,0.996224,0.008096,0.004192,0.028672,0.096288,0.097312,13.7073,0.113088
+1500,62.0681,16.1113,16.214,0.070784,0.870656,0.006784,0.006176,0.02864,0.098336,0.09936,14.9205,0.1128
+1501,57.5087,17.3887,15.0436,0.069408,0.911584,0.007616,0.004672,0.028672,0.096256,0.098272,13.7133,0.113824
+1502,60.2637,16.5938,15.1163,0.077824,0.974848,0.007296,0.004992,0.028672,0.097888,0.09872,13.7093,0.116736
+1503,61.8731,16.1621,16.2611,0.070304,0.866304,0.007904,0.004544,0.029792,0.096416,0.096864,14.975,0.113952
+1504,56.4436,17.7168,15.1793,0.069632,1.03424,0.007328,0.00496,0.02992,0.10688,0.098112,13.714,0.114208
+1505,62.6453,15.9629,15.0749,0.069728,0.94208,0.00768,0.004608,0.029696,0.10528,0.097824,13.7038,0.114176
+1506,61.8432,16.1699,16.2898,0.083712,0.8928,0.006528,0.006144,0.028672,0.096256,0.09824,14.9645,0.112928
+1507,57.1365,17.502,15.7744,0.070368,0.945312,0.007008,0.005536,0.037472,0.098304,0.098304,14.0877,0.424416
+1508,60.0305,16.6582,15.0298,0.07072,0.908224,0.008192,0.005696,0.028768,0.09632,0.096544,13.7011,0.114176
+1509,61.963,16.1387,16.2836,0.069248,0.942464,0.008192,0.005376,0.02944,0.096288,0.096224,14.9229,0.113536
+1510,58.2878,17.1562,15.022,0.069664,0.892288,0.006752,0.006144,0.028672,0.096256,0.098304,13.7093,0.11456
+1511,62.439,16.0156,15.0075,0.068832,0.867008,0.007296,0.00512,0.02864,0.096288,0.098272,13.7216,0.1144
+1512,62.272,16.0586,16.2263,0.069632,0.886176,0.006752,0.006144,0.028672,0.104448,0.09824,14.9113,0.114944
+1513,55.1962,18.1172,15.0773,0.069632,0.941984,0.006272,0.006112,0.028672,0.096256,0.0976,13.7175,0.113312
+1514,64.024,15.6191,15.0956,0.0696,0.96224,0.006496,0.006144,0.028672,0.096288,0.097664,13.714,0.114496
+1515,61.8059,16.1797,16.3545,0.069664,0.997344,0.007552,0.0048,0.030048,0.096864,0.098304,14.9361,0.113888
+1516,57.1939,17.4844,15.0814,0.069632,0.963712,0.00704,0.005888,0.028608,0.096192,0.097792,13.6979,0.114656
+1517,61.413,16.2832,15.0465,0.069344,0.919488,0.006496,0.006144,0.028672,0.096288,0.098272,13.7073,0.114528
+1518,62.3858,16.0293,16.2551,0.069632,0.905248,0.007936,0.005632,0.02848,0.09696,0.09648,14.932,0.112736
+1519,57.7682,17.3105,14.9893,0.069632,0.874496,0.007328,0.00496,0.028672,0.096256,0.09776,13.6966,0.113568
+1520,60.8365,16.4375,15.0812,0.069632,0.958464,0.007904,0.005632,0.028928,0.096864,0.098144,13.6992,0.116448
+1521,61.9255,16.1484,16.308,0.069632,0.957952,0.006656,0.00592,0.02864,0.096096,0.096672,14.9333,0.113184
+1522,57.8139,17.2969,15.0009,0.069632,0.894496,0.006624,0.006176,0.02864,0.097472,0.097088,13.6859,0.11488
+1523,62.3174,16.0469,15.0179,0.069632,0.90112,0.007584,0.004704,0.028672,0.096256,0.09776,13.6986,0.113568
+1524,62.5,16,16.2079,0.06864,0.880608,0.007488,0.004896,0.028576,0.09744,0.09712,14.9094,0.113696
+1525,57.7292,17.3223,14.9996,0.069568,0.87456,0.00816,0.005312,0.02896,0.096832,0.099456,13.7,0.116704
+1526,59.0746,16.9277,15.1237,0.069376,0.989472,0.008,0.005664,0.028768,0.096384,0.096768,13.7154,0.113856
+1527,59.3554,16.8477,16.3348,0.069632,0.991232,0.007296,0.004992,0.028672,0.096256,0.098304,14.9251,0.113408
+1528,59.4934,16.8086,16.302,0.070752,0.946272,0.006976,0.005984,0.028832,0.096256,0.096256,14.9372,0.113472
+1529,57.6706,17.3398,15.0556,0.068384,0.952288,0.007616,0.004672,0.028672,0.09616,0.096352,13.6868,0.114688
+1530,61.7612,16.1914,16.2836,0.069632,0.914528,0.007072,0.005856,0.02896,0.098304,0.098304,14.9481,0.112864
+1531,57.3669,17.4316,15.0307,0.069536,0.917984,0.006464,0.006112,0.028672,0.095776,0.096736,13.695,0.114432
+1532,61.4056,16.2852,15.1391,0.069696,1.00374,0.00768,0.004864,0.028416,0.097792,0.098784,13.7114,0.116736
+1533,60.7859,16.4512,16.3296,0.068448,0.972128,0.006816,0.005728,0.028864,0.09648,0.09808,14.9397,0.113344
+1534,57.3027,17.4512,15.1218,0.069632,0.996384,0.007136,0.005824,0.028992,0.098304,0.097472,13.7011,0.11696
+1535,61.2953,16.3145,16.3533,0.071136,1.01021,0.007744,0.004576,0.02864,0.096288,0.098048,14.9234,0.113248
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..949e3ba
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,32.1578,31.1128,29.9054,0.0700682,0.956986,0.00754881,0.0056525,0.0288603,0.0965178,0.0982233,28.527,0.114593
+max_1024,34.9679,33.832,31.915,0.104448,1.6992,0.024064,0.020512,0.054816,0.115072,0.117024,30.4625,0.354304
+min_1024,29.5578,28.5977,29.0105,0.067584,0.844096,0.006144,0.004096,0.026688,0.094208,0.095232,27.7076,0.111456
+512,32.6656,30.6133,31.2971,0.07104,1.3728,0.00784,0.004448,0.028672,0.096256,0.10208,29.4997,0.11424
+513,31.0887,32.166,31.0716,0.069216,1.20656,0.006272,0.019968,0.034592,0.094976,0.097888,29.426,0.116128
+514,31.3706,31.877,29.5196,0.069056,0.88736,0.007552,0.004736,0.02848,0.096,0.096704,28.2153,0.1144
+515,31.2043,32.0469,29.6887,0.074624,1.06496,0.018176,0.005984,0.028448,0.107136,0.099712,28.1764,0.113216
+516,32.7073,30.5742,30.9988,0.069664,1.11299,0.016384,0.006144,0.028512,0.095776,0.098272,29.4571,0.114048
+517,30.8974,32.3652,29.5076,0.070752,0.865184,0.008192,0.005568,0.0272,0.09808,0.09648,28.2228,0.113376
+518,31.966,31.2832,29.5445,0.069408,0.942304,0.007328,0.00496,0.028192,0.104928,0.11264,28.1615,0.113184
+519,32.5949,30.6797,30.7462,0.068896,0.895712,0.008,0.005568,0.028512,0.095136,0.098304,29.4329,0.113184
+520,30.862,32.4023,30.5427,0.068448,1.02195,0.007648,0.00464,0.028672,0.10416,0.100288,28.8526,0.354304
+521,31.21,32.041,29.8476,0.077312,1.19997,0.006816,0.005792,0.034432,0.094944,0.096256,28.2189,0.113088
+522,32.4585,30.8086,30.847,0.069376,0.966944,0.007936,0.01456,0.028672,0.095424,0.097088,29.4514,0.115552
+523,30.7231,32.5488,29.6459,0.075808,1.01373,0.016384,0.006144,0.028416,0.101728,0.097024,28.1929,0.113824
+524,32.651,30.627,30.7273,0.069632,0.89088,0.007264,0.004992,0.02816,0.096512,0.096544,29.4172,0.116128
+525,31.4554,31.791,30.6945,0.069472,0.888992,0.007488,0.0048,0.028672,0.095904,0.096608,29.3888,0.113696
+526,31.3668,31.8809,29.5014,0.069664,0.879904,0.006848,0.005312,0.027456,0.097504,0.097088,28.2009,0.116736
+527,32.4502,30.8164,29.4813,0.06928,0.8728,0.006496,0.006144,0.028256,0.094688,0.097856,28.1924,0.113408
+528,32.2378,31.0195,30.8515,0.0696,0.975168,0.00624,0.005344,0.02848,0.09488,0.098112,29.4606,0.113024
+529,31.4265,31.8203,29.5225,0.06816,0.890016,0.007008,0.005632,0.027136,0.097312,0.096928,28.2177,0.112672
+530,32.0621,31.1895,29.6018,0.08192,0.991264,0.007232,0.004928,0.028768,0.096256,0.098336,28.1764,0.116736
+531,32.2845,30.9746,30.6889,0.069632,0.894976,0.006208,0.00608,0.028672,0.096256,0.097312,29.3755,0.114272
+532,31.3687,31.8789,30.794,0.068352,0.944128,0.008064,0.004224,0.028672,0.097984,0.097984,29.4316,0.112992
+533,31.4574,31.7891,29.5495,0.068544,0.8704,0.008032,0.005568,0.02736,0.096256,0.096256,28.2635,0.113568
+534,32.0521,31.1992,30.8305,0.069632,0.93184,0.007392,0.01488,0.02848,0.096704,0.09824,29.4703,0.113024
+535,31.3226,31.9258,29.5052,0.068128,0.897024,0.007264,0.005024,0.028576,0.102496,0.096288,28.1764,0.124096
+536,32.6885,30.5918,30.6663,0.069632,0.86016,0.006272,0.005856,0.028768,0.095808,0.0968,29.3888,0.114176
+537,31.4806,31.7656,30.6839,0.069504,0.897056,0.007136,0.005536,0.027232,0.096256,0.098304,29.3673,0.115552
+538,31.4438,31.8027,29.5007,0.069824,0.909312,0.007296,0.004928,0.028096,0.094848,0.096256,28.1764,0.113792
+539,32.9388,30.3594,29.5696,0.069472,0.906048,0.007264,0.005024,0.028672,0.095552,0.09696,28.246,0.114624
+540,32.6115,30.6641,30.6836,0.069472,0.901696,0.006272,0.005792,0.028384,0.096928,0.098272,29.3622,0.114656
+541,31.4091,31.8379,29.553,0.069216,0.946912,0.007872,0.005568,0.029568,0.095392,0.097056,28.1867,0.114688
+542,32.1124,31.1406,29.5035,0.071264,0.86672,0.0072,0.005088,0.028672,0.100384,0.113952,28.1955,0.114688
+543,32.768,30.5176,30.7589,0.0696,0.982976,0.00624,0.006144,0.038912,0.096064,0.096448,29.3372,0.12528
+544,31.2691,31.9805,30.8024,0.070464,0.995328,0.007424,0.004864,0.028256,0.094624,0.09808,29.3905,0.112832
+545,31.0736,32.1816,29.7054,0.069376,1.08979,0.007936,0.004352,0.040128,0.10032,0.112608,28.167,0.113824
+546,32.51,30.7598,30.7684,0.07072,0.977696,0.006304,0.00576,0.02816,0.095136,0.096224,29.3745,0.113952
+547,31.3399,31.9082,29.5465,0.069632,0.961536,0.016672,0.004832,0.0288,0.098176,0.096256,28.1559,0.114688
+548,32.7491,30.5352,30.6541,0.07168,0.854016,0.00784,0.00448,0.028512,0.095456,0.097024,29.3808,0.114336
+549,31.0378,32.2188,30.8185,0.068576,0.966432,0.0064,0.014272,0.04096,0.096288,0.098176,29.4126,0.11472
+550,31.3322,31.916,29.5649,0.0696,0.957536,0.007104,0.005472,0.028512,0.109376,0.098112,28.1745,0.114688
+551,32.4956,30.7734,29.6092,0.069472,0.974144,0.007008,0.0056,0.039456,0.097696,0.105088,28.1948,0.116
+552,32.5141,30.7559,30.8101,0.069632,0.987136,0.007392,0.004928,0.02816,0.094688,0.108544,29.397,0.11264
+553,29.9503,33.3887,29.7656,0.069376,1.14621,0.007072,0.005568,0.0272,0.100384,0.098272,28.1969,0.114688
+554,32.2114,31.0449,29.5188,0.068544,0.941152,0.00704,0.004256,0.0408,0.094208,0.106432,28.1437,0.112672
+555,34.3164,29.1406,30.9181,0.069632,0.976896,0.007776,0.005568,0.039232,0.096064,0.104544,29.4993,0.119136
+556,30.6605,32.6152,30.8266,0.068544,1.03424,0.016384,0.005472,0.02848,0.095104,0.097376,29.3672,0.113856
+557,31.7008,31.5449,29.483,0.069344,0.872384,0.007104,0.005568,0.027424,0.098112,0.09792,28.1905,0.114656
+558,32.6468,30.6309,30.634,0.069504,0.896832,0.006624,0.005472,0.02736,0.096224,0.097504,29.3211,0.113376
+559,31.4535,31.793,29.4791,0.069344,0.858432,0.007456,0.0048,0.028672,0.096352,0.099392,28.1988,0.11584
+560,32.768,30.5176,30.6884,0.069632,0.892928,0.006144,0.006144,0.028672,0.09424,0.097472,29.3794,0.11376
+561,31.4033,31.8438,30.7431,0.06976,0.903584,0.00736,0.004928,0.028672,0.096288,0.098336,29.4214,0.112768
+562,31.0887,32.166,29.6223,0.069632,1.00762,0.007232,0.004928,0.028128,0.09488,0.096256,28.2004,0.113184
+563,32.7449,30.5391,29.4033,0.069216,0.85872,0.0072,0.005088,0.028704,0.096224,0.098304,28.1251,0.114816
+564,32.9218,30.375,30.6757,0.069568,0.860928,0.007232,0.005024,0.028224,0.094656,0.098304,29.4002,0.111584
+565,31.4458,31.8008,29.4461,0.069632,0.906432,0.006976,0.005824,0.028448,0.096544,0.09824,28.119,0.11504
+566,32.8753,30.418,29.4723,0.06992,0.85824,0.00752,0.004768,0.02848,0.095712,0.096992,28.1966,0.114048
+567,32.2764,30.9824,30.904,0.068896,0.973536,0.007776,0.005568,0.02864,0.097312,0.097472,29.5084,0.116448
+568,30.9984,32.2598,30.6871,0.069632,0.909152,0.006304,0.005568,0.028224,0.095264,0.096224,29.3634,0.113344
+569,30.1247,33.1953,30.7264,0.069888,0.868,0.006464,0.006144,0.028352,0.096608,0.109888,29.4284,0.112672
+570,32.4297,30.8359,29.4646,0.069312,0.876192,0.006816,0.005184,0.027584,0.096288,0.096224,28.1734,0.113568
+571,32.6551,30.623,29.5034,0.070112,0.877824,0.006912,0.005696,0.028576,0.096608,0.098432,28.2049,0.114272
+572,32.4256,30.8398,30.7047,0.069664,0.877792,0.006912,0.005184,0.027584,0.096064,0.09648,29.399,0.126016
+573,31.0416,32.2148,29.5609,0.069696,0.978784,0.006272,0.006144,0.028416,0.096512,0.096256,28.1656,0.113216
+574,32.5472,30.7246,29.5309,0.069792,0.923936,0.006496,0.005632,0.02896,0.095488,0.109536,28.1779,0.113216
+575,32.442,30.8242,30.7244,0.06944,0.889312,0.00784,0.005568,0.02752,0.097536,0.117024,29.3975,0.11264
+576,31.3341,31.9141,30.0049,0.069632,1.05411,0.006752,0.005248,0.02752,0.09616,0.096384,28.5358,0.11328
+577,32.313,30.9473,29.483,0.067584,0.897056,0.007904,0.005568,0.028544,0.097216,0.109952,28.1565,0.11264
+578,32.9833,30.3184,30.6319,0.069632,0.872448,0.006144,0.006144,0.028288,0.094592,0.100352,29.3411,0.11328
+579,31.1076,32.1465,29.5735,0.102688,0.946848,0.00736,0.004928,0.028672,0.097536,0.098368,28.173,0.11408
+580,32.0903,31.1621,30.0421,0.069632,1.0952,0.006624,0.012192,0.032256,0.094816,0.096384,28.5222,0.1128
+581,31.7716,31.4746,31.4307,0.069632,1.63824,0.006304,0.006144,0.02864,0.096288,0.09952,29.3732,0.11264
+582,31.603,31.6426,29.4523,0.06944,0.871968,0.006816,0.00528,0.02752,0.096224,0.096256,28.1653,0.113504
+583,32.8542,30.4375,29.4809,0.069376,0.871744,0.007072,0.005568,0.027232,0.097504,0.098528,28.1892,0.114656
+584,32.6781,30.6016,30.6557,0.069664,0.87008,0.006432,0.0056,0.028192,0.094848,0.096672,29.3703,0.113856
+585,31.2786,31.9707,29.5047,0.07088,0.906016,0.007584,0.004704,0.028672,0.097504,0.098496,28.1749,0.115936
+586,32.3948,30.8691,29.6591,0.069632,1.1039,0.008,0.004256,0.028672,0.09568,0.096864,28.1389,0.113248
+587,32.7617,30.5234,30.686,0.068448,0.919584,0.00752,0.004736,0.028672,0.096256,0.096288,29.3497,0.114816
+588,31.2081,32.043,30.7763,0.068576,1.02605,0.008096,0.004192,0.028672,0.095904,0.096608,29.3356,0.11264
+589,31.6753,31.5703,29.507,0.06976,0.918848,0.006848,0.005792,0.028576,0.096352,0.098624,28.1693,0.11296
+590,32.5141,30.7559,30.6766,0.069344,0.921792,0.00624,0.005792,0.028384,0.094848,0.096256,29.3408,0.113152
+591,30.8192,32.4473,29.6492,0.070976,1.05571,0.00768,0.004608,0.028672,0.096256,0.098048,28.1725,0.114688
+592,32.4379,30.8281,30.8326,0.069504,1.06026,0.016768,0.004448,0.028608,0.094272,0.09824,29.3315,0.129024
+593,31.4883,31.7578,30.6954,0.071488,0.875936,0.006944,0.005696,0.028288,0.09504,0.096256,29.4024,0.113344
+594,31.3764,31.8711,29.4327,0.068448,0.900672,0.006592,0.005568,0.03536,0.095488,0.096544,28.1108,0.113248
+595,33.0237,30.2812,29.4544,0.069728,0.872416,0.007616,0.004672,0.028672,0.09632,0.098368,28.164,0.112672
+596,32.008,31.2422,30.6208,0.070976,0.877248,0.0072,0.004896,0.028128,0.1024,0.096992,29.3189,0.11408
+597,31.5252,31.7207,29.4953,0.069632,0.94944,0.006976,0.005664,0.028192,0.095168,0.098336,28.1285,0.113376
+598,32.9049,30.3906,29.4582,0.069536,0.883968,0.007008,0.005152,0.027616,0.096064,0.0976,28.1579,0.113408
+599,32.57,30.7031,30.7612,0.06912,1.01798,0.00672,0.005952,0.028512,0.09664,0.098272,29.3253,0.11264
+600,31.3802,31.8672,29.9562,0.068192,1.01168,0.007968,0.00432,0.028672,0.096064,0.096448,28.5286,0.11424
+601,31.6871,31.5586,29.526,0.067584,0.974848,0.007776,0.005568,0.027616,0.097664,0.09856,28.1337,0.112768
+602,33.0792,30.2305,30.6363,0.069376,0.932864,0.007744,0.004512,0.028672,0.094208,0.098336,29.2876,0.113056
+603,31.1701,32.082,29.5245,0.075392,0.998048,0.006368,0.006144,0.028352,0.096576,0.098304,28.102,0.11328
+604,32.81,30.4785,29.9479,0.069632,0.968704,0.00736,0.004896,0.02832,0.094624,0.097568,28.5635,0.113312
+605,30.5873,32.6934,31.4122,0.075808,1.6992,0.006784,0.005824,0.028576,0.096672,0.098272,29.2884,0.11264
+606,32.3457,30.916,29.491,0.069664,0.913376,0.00784,0.004448,0.028672,0.09584,0.096672,28.16,0.114528
+607,32.7429,30.541,29.4816,0.069504,0.958592,0.006816,0.005792,0.028192,0.096064,0.099296,28.1017,0.11568
+608,32.3764,30.8867,30.8753,0.069248,1.12182,0.007008,0.02048,0.028672,0.095968,0.096544,29.3226,0.113024
+609,31.271,31.9785,29.5444,0.069632,0.954368,0.007968,0.005568,0.028512,0.096448,0.098912,28.1655,0.117568
+610,32.6531,30.625,29.469,0.068992,0.926464,0.006336,0.005664,0.028352,0.09504,0.097824,28.1274,0.112992
+611,31.9481,31.3008,30.8408,0.069632,1.03629,0.007968,0.015648,0.028832,0.1032,0.09792,29.3687,0.11264
+612,31.2252,32.0254,30.798,0.069472,0.981376,0.007968,0.014464,0.030784,0.095904,0.097728,29.387,0.11328
+613,31.2672,31.9824,29.4691,0.070016,0.987168,0.007456,0.0048,0.028672,0.096288,0.096224,28.0648,0.1136
+614,32.5949,30.6797,30.8002,0.06896,1.0023,0.006336,0.005664,0.028288,0.095072,0.098304,29.3823,0.11296
+615,31.1739,32.0781,29.4816,0.070592,0.907296,0.0072,0.005056,0.028672,0.095584,0.09696,28.157,0.11328
+616,32.2073,31.0488,29.8876,0.0688,0.974816,0.007008,0.004224,0.028544,0.095584,0.096928,28.4979,0.113728
+617,31.9461,31.3027,30.791,0.070656,1.09059,0.007776,0.005568,0.027584,0.096192,0.096352,29.2823,0.113984
+618,31.2825,31.9668,29.5627,0.069632,1.00352,0.007936,0.015776,0.031136,0.098752,0.09952,28.121,0.115456
+619,32.252,31.0059,29.542,0.069632,1.00762,0.007904,0.014176,0.031168,0.096192,0.09632,28.0965,0.122432
+620,32.4997,30.7695,30.6239,0.073728,0.929344,0.006592,0.005408,0.02736,0.095616,0.096928,29.2741,0.114848
+621,31.5835,31.6621,29.4589,0.06944,0.920224,0.007968,0.005536,0.028448,0.095232,0.09728,28.122,0.112768
+622,32.888,30.4062,29.4216,0.06928,0.870752,0.007904,0.004384,0.028672,0.094208,0.09808,28.1349,0.113376
+623,32.8395,30.4512,30.6053,0.069632,0.875584,0.007072,0.005536,0.028384,0.09696,0.098528,29.311,0.112672
+624,30.6973,32.5762,30.6606,0.069344,0.956192,0.006656,0.005344,0.027424,0.096256,0.096256,29.2884,0.11472
+625,32.0461,31.2051,29.5118,0.070176,0.966368,0.006528,0.006048,0.02848,0.095872,0.09808,28.1276,0.112672
+626,32.3682,30.8945,30.7409,0.070016,1.01994,0.0072,0.004896,0.027968,0.094944,0.096416,29.3047,0.11488
+627,31.5213,31.7246,29.3682,0.069664,0.86832,0.006496,0.006144,0.028096,0.094784,0.098112,28.0824,0.114176
+628,32.4688,30.7988,30.7423,0.069312,1.02496,0.007264,0.004896,0.028224,0.094784,0.096256,29.3007,0.115904
+629,31.0661,32.1895,30.6217,0.069376,0.915296,0.00688,0.005728,0.028416,0.094752,0.096384,29.2923,0.11264
+630,30.655,32.6211,29.563,0.081664,1.04422,0.006752,0.014336,0.028704,0.096224,0.098304,28.0776,0.1152
+631,33.2922,30.0371,30.6217,0.0696,0.907296,0.007904,0.005568,0.027488,0.096256,0.09744,29.2975,0.11264
+632,31.2386,32.0117,30.7466,0.075648,0.988512,0.006944,0.005184,0.027584,0.098304,0.098304,29.3325,0.113632
+633,31.1948,32.0566,29.4733,0.06864,0.988192,0.006976,0.005664,0.028128,0.095232,0.097312,28.0699,0.113248
+634,32.6572,30.6211,30.7569,0.069664,0.997344,0.006144,0.005856,0.02832,0.09632,0.098208,29.3424,0.112672
+635,31.2767,31.9727,29.481,0.069664,0.993248,0.007936,0.005568,0.027456,0.096224,0.098112,28.0681,0.114688
+636,32.9388,30.3594,30.6182,0.069728,0.866688,0.006656,0.005344,0.027424,0.097408,0.09872,29.3319,0.114336
+637,31.3361,31.9121,30.6639,0.069344,0.945888,0.006976,0.005632,0.027136,0.096256,0.096256,29.3028,0.113664
+638,31.6871,31.5586,29.3989,0.069632,0.884736,0.007968,0.00432,0.028672,0.096256,0.098304,28.0945,0.11456
+639,32.2764,30.9824,29.4926,0.069312,0.989024,0.006912,0.005696,0.028128,0.096416,0.096896,28.0865,0.11376
+640,32.8605,30.4316,30.6196,0.069664,0.86528,0.007104,0.004192,0.028608,0.096256,0.099488,29.3364,0.11264
+641,31.6753,31.5703,29.4099,0.069248,0.86688,0.006528,0.006112,0.028352,0.09456,0.096288,28.1292,0.112736
+642,32.5658,30.707,29.5294,0.069376,1.01811,0.007296,0.004928,0.028192,0.095872,0.099232,28.0904,0.116064
+643,32.8901,30.4043,30.5728,0.069152,0.877312,0.007872,0.005536,0.02752,0.096256,0.09744,29.2789,0.1128
+644,31.44,31.8066,29.8127,0.069632,0.914976,0.006624,0.00544,0.027328,0.096256,0.096256,28.4813,0.114944
+645,32.034,31.2168,30.3719,0.068704,0.996256,0.006144,0.006144,0.02848,0.095648,0.097088,28.9607,0.112672
+646,31.1587,32.0938,30.8276,0.077824,1.04038,0.01408,0.004352,0.028672,0.096288,0.112608,29.3396,0.113696
+647,31.4207,31.8262,29.4628,0.06896,1.00045,0.007872,0.005568,0.02752,0.096256,0.096384,28.0452,0.114624
+648,32.8374,30.4531,30.5637,0.069632,0.8704,0.007968,0.00432,0.028672,0.096256,0.098304,29.2741,0.114016
+649,31.4053,31.8418,30.7673,0.069376,1.04125,0.00784,0.005568,0.027552,0.096256,0.09776,29.3074,0.11424
+650,31.3918,31.8555,29.52,0.071776,1.02413,0.0072,0.004928,0.028,0.095072,0.097792,28.0765,0.11456
+651,32.3784,30.8848,29.4249,0.069632,0.984832,0.0064,0.006144,0.028416,0.095648,0.096608,28.0233,0.113952
+652,32.5265,30.7441,30.7395,0.069216,1.01011,0.00752,0.004736,0.028384,0.096544,0.098336,29.3109,0.113728
+653,31.2557,31.9941,29.5101,0.06912,1.03322,0.007552,0.004736,0.028672,0.09616,0.096384,28.0617,0.11264
+654,32.3192,30.9414,29.4605,0.069632,0.966176,0.006624,0.005696,0.028224,0.095104,0.099488,28.0726,0.116896
+655,32.7596,30.5254,30.6708,0.069664,0.970752,0.007552,0.004704,0.028448,0.095936,0.106912,29.2742,0.11264
+656,31.4864,31.7598,30.7058,0.069344,1.0033,0.006752,0.00528,0.028544,0.095232,0.098048,29.2867,0.11264
+657,31.1891,32.0625,29.5485,0.069664,1.04202,0.006528,0.006144,0.028256,0.096672,0.097312,28.0884,0.1136
+658,32.541,30.7305,30.6996,0.069632,0.988288,0.00704,0.004096,0.028672,0.097696,0.098176,29.2933,0.112672
+659,31.1379,32.1152,29.5487,0.069632,1.03424,0.007584,0.004704,0.028672,0.095744,0.096768,28.0894,0.121984
+660,32.7911,30.4961,30.6279,0.070048,0.923104,0.006688,0.005504,0.027392,0.097504,0.096928,29.2877,0.11296
+661,31.5116,31.7344,30.6431,0.068512,0.915296,0.006304,0.006144,0.028288,0.094592,0.097472,29.3118,0.114688
+662,31.2939,31.9551,29.4563,0.069664,0.924928,0.00688,0.005184,0.027584,0.095744,0.096768,28.1149,0.114592
+663,32.9642,30.3359,29.3588,0.068288,0.874496,0.0072,0.005088,0.028512,0.094368,0.097952,28.0682,0.114688
+664,32.7827,30.5039,30.6049,0.069856,0.90112,0.007552,0.004736,0.028672,0.096256,0.098304,29.2844,0.114016
+665,31.6851,31.5605,29.3714,0.069632,0.876224,0.006464,0.006144,0.028064,0.094816,0.096256,28.0797,0.114112
+666,32.8437,30.4473,29.356,0.069632,0.866304,0.007424,0.004864,0.02832,0.096608,0.098304,28.0696,0.115008
+667,33.1113,30.2012,30.5992,0.069632,0.870016,0.006528,0.006144,0.028128,0.09488,0.098208,29.3127,0.112992
+668,31.6127,31.6328,30.5739,0.069632,0.876544,0.008192,0.004096,0.028672,0.096224,0.096288,29.2796,0.114656
+669,31.6851,31.5605,29.3447,0.068544,0.88064,0.006208,0.00608,0.028672,0.094208,0.097536,28.0501,0.112672
+670,32.9642,30.3359,30.5623,0.069632,0.907264,0.007872,0.004416,0.028704,0.099712,0.096864,29.2347,0.113184
+671,31.4767,31.7695,29.4769,0.069632,0.949984,0.006432,0.006144,0.02832,0.09456,0.112672,28.0965,0.11264
+672,32.5203,30.75,30.718,0.06928,1.04278,0.00784,0.004448,0.028736,0.098272,0.0976,29.2543,0.114688
+673,31.7087,31.5371,30.5664,0.069632,0.861536,0.006816,0.005824,0.028256,0.096032,0.097088,29.2878,0.113408
+674,30.6826,32.5918,29.4276,0.071712,0.913408,0.007232,0.004896,0.02816,0.094848,0.099424,28.0913,0.116608
+675,33.7042,29.6699,29.3663,0.069632,0.861408,0.006944,0.005696,0.028128,0.0952,0.097664,28.0886,0.112992
+676,32.541,30.7305,30.663,0.068512,0.943712,0.00656,0.005408,0.02736,0.09584,0.096704,29.3038,0.115104
+677,31.3745,31.873,29.4498,0.069792,0.921632,0.007456,0.004832,0.028672,0.096032,0.09648,28.1108,0.114048
+678,33.0152,30.2891,29.3852,0.069056,0.873472,0.007488,0.0048,0.028352,0.094528,0.098112,28.0947,0.114688
+679,32.6323,30.6445,30.7102,0.07008,0.929376,0.016768,0.005568,0.029248,0.096352,0.099584,29.3497,0.113472
+680,31.051,32.2051,30.6378,0.069632,0.935072,0.007008,0.004096,0.028672,0.105536,0.106464,29.266,0.11536
+681,31.6655,31.5801,29.4748,0.071392,0.944416,0.007552,0.01408,0.029344,0.095488,0.103424,28.0944,0.114656
+682,32.8753,30.418,30.5399,0.069632,0.89936,0.006144,0.00592,0.028512,0.094592,0.098144,29.2249,0.112736
+683,31.6362,31.6094,29.3494,0.069696,0.844096,0.008064,0.005536,0.02736,0.096256,0.097536,28.087,0.113792
+684,32.8732,30.4199,30.5521,0.069344,0.862528,0.007424,0.004832,0.028384,0.095872,0.096704,29.2723,0.114688
+685,31.5077,31.7383,30.6294,0.069536,0.878944,0.007424,0.004864,0.028704,0.096224,0.096256,29.3335,0.113952
+686,30.9384,32.3223,29.6076,0.069632,1.13005,0.006592,0.006144,0.028352,0.096224,0.09808,28.0582,0.114336
+687,32.5472,30.7246,29.5068,0.070912,1.00634,0.0072,0.005088,0.02864,0.095392,0.101248,28.0781,0.113888
+688,32.1932,31.0625,30.5992,0.0696,0.943264,0.00704,0.004096,0.028672,0.095904,0.112992,29.2229,0.114688
+689,31.6949,31.5508,29.5854,0.069664,1.07427,0.00704,0.005632,0.028192,0.0952,0.099968,28.0927,0.112768
+690,32.676,30.6035,29.411,0.069376,0.915456,0.0064,0.005632,0.028192,0.0952,0.096256,28.0801,0.114368
+691,32.3907,30.873,30.64,0.070816,0.881088,0.00656,0.00608,0.028544,0.096544,0.1064,29.3311,0.112832
+692,31.6734,31.5723,30.5571,0.06848,0.88016,0.006592,0.005408,0.02736,0.096064,0.096608,29.2633,0.11312
+693,31.5562,31.6895,29.4052,0.069632,0.878144,0.006592,0.00576,0.029056,0.096256,0.096256,28.1108,0.11264
+694,32.7974,30.4902,30.5501,0.069344,0.88512,0.007296,0.00496,0.028704,0.09584,0.096672,29.2495,0.112704
+695,31.5465,31.6992,29.3849,0.069984,0.88896,0.008064,0.005568,0.027328,0.096256,0.106496,28.069,0.113312
+696,32.6927,30.5879,30.5541,0.06944,0.895168,0.006976,0.005216,0.027552,0.095584,0.096928,29.2434,0.113856
+697,31.4323,31.8145,30.6504,0.069664,0.9296,0.006336,0.006144,0.02848,0.09584,0.096864,29.3045,0.112992
+698,31.361,31.8867,29.393,0.068864,0.895872,0.006144,0.005856,0.028128,0.094912,0.096416,28.0821,0.11472
+699,33.0685,30.2402,29.399,0.069632,0.915456,0.007552,0.004736,0.028672,0.096288,0.098304,28.0653,0.113056
+700,32.869,30.4238,30.5325,0.068512,0.88992,0.007072,0.004096,0.028672,0.096256,0.097568,29.2277,0.112672
+701,31.6284,31.6172,29.3284,0.069632,0.899072,0.00768,0.004608,0.028704,0.09808,0.098496,28.0063,0.11584
+702,32.7345,30.5488,29.4193,0.069184,0.9016,0.00768,0.004608,0.028672,0.095648,0.096864,28.1006,0.114464
+703,32.4317,30.834,30.6955,0.069632,0.9968,0.00672,0.00592,0.028192,0.09504,0.098176,29.2803,0.11472
+704,31.1929,32.0586,30.6356,0.068256,0.944096,0.007936,0.004352,0.028672,0.095776,0.096736,29.2762,0.113664
+705,31.8507,31.3965,29.3582,0.069632,0.882688,0.007712,0.004576,0.036704,0.095584,0.099136,28.0474,0.114848
+706,32.6156,30.6602,30.642,0.069664,0.95744,0.007072,0.00416,0.028672,0.095808,0.096704,29.2695,0.113056
+707,31.5465,31.6992,29.4436,0.069344,0.94032,0.006144,0.006144,0.028704,0.096224,0.098048,28.0821,0.116512
+708,31.693,31.5527,30.7451,0.068064,1.03834,0.007488,0.0048,0.02832,0.09456,0.09728,29.2935,0.112736
+709,31.5835,31.6621,30.6463,0.070912,0.935744,0.007104,0.005568,0.028512,0.096416,0.098592,29.2908,0.11264
+710,31.5232,31.7227,29.399,0.06912,0.92416,0.007584,0.004704,0.028544,0.094336,0.096352,28.0596,0.114688
+711,32.2967,30.9629,29.3712,0.070112,0.923968,0.007456,0.004832,0.028704,0.096256,0.097696,28.0285,0.113632
+712,32.8732,30.4199,30.6185,0.068448,0.961888,0.006816,0.005216,0.027552,0.095744,0.097888,29.2419,0.113056
+713,31.4188,31.8281,29.4154,0.071456,0.949856,0.006784,0.005888,0.02896,0.096224,0.098336,28.045,0.112896
+714,32.6593,30.6191,29.4402,0.069248,0.905408,0.006944,0.004096,0.028672,0.095424,0.097088,28.1067,0.126592
+715,31.996,31.2539,30.6634,0.074592,0.947328,0.007008,0.019872,0.028608,0.096928,0.114112,29.2615,0.11344
+716,31.9481,31.3008,29.3745,0.069632,0.907232,0.006176,0.005824,0.028224,0.095008,0.097664,28.0493,0.115424
+717,32.9642,30.3359,29.3581,0.06944,0.911552,0.007616,0.004672,0.028672,0.095712,0.0968,28.0289,0.114688
+718,32.8226,30.4668,30.5748,0.069888,0.90112,0.008096,0.004192,0.028672,0.096096,0.096352,29.2575,0.112896
+719,31.5524,31.6934,30.5609,0.069504,0.893536,0.006272,0.006144,0.028512,0.095808,0.096864,29.2495,0.11472
+720,31.7697,31.4766,29.3724,0.069632,0.90112,0.006144,0.005856,0.02816,0.095008,0.096256,28.0566,0.1136
+721,32.907,30.3887,30.5398,0.069632,0.898176,0.007072,0.005536,0.02832,0.095136,0.10176,29.2195,0.114688
+722,31.6186,31.627,29.4134,0.068352,0.9216,0.007584,0.004672,0.028384,0.096416,0.096384,28.0757,0.114304
+723,32.8648,30.4277,30.542,0.069152,0.887424,0.007712,0.004576,0.028672,0.095712,0.0968,29.2371,0.114848
+724,31.564,31.6816,30.5433,0.070848,0.895488,0.006464,0.005536,0.028288,0.0952,0.097344,29.23,0.11408
+725,31.5893,31.6562,29.4134,0.06944,0.921696,0.00624,0.006144,0.028672,0.096128,0.097792,28.074,0.113312
+726,32.9536,30.3457,29.3443,0.070112,0.892992,0.007904,0.004416,0.02864,0.094208,0.098048,28.0352,0.112768
+727,32.9769,30.3242,30.5458,0.069536,0.901664,0.007264,0.004992,0.028672,0.095616,0.096864,29.2189,0.122272
+728,31.6695,31.5762,29.3121,0.071616,0.87456,0.007264,0.004928,0.0288,0.096224,0.098304,28.0156,0.11472
+729,32.5762,30.6973,29.4708,0.06896,1.01443,0.00624,0.006048,0.028672,0.0944,0.096064,28.0429,0.113024
+730,32.5493,30.7227,30.7672,0.069184,1.09622,0.007296,0.004928,0.028288,0.096256,0.09808,29.2535,0.11344
+731,31.2767,31.9727,30.6135,0.069632,0.923648,0.00624,0.006048,0.028672,0.104192,0.096512,29.2556,0.122912
+732,31.4767,31.7695,29.5173,0.070752,1.02906,0.007328,0.004928,0.028288,0.106752,0.098432,28.0576,0.114208
+733,32.7659,30.5195,30.6934,0.069632,1.02928,0.007008,0.005632,0.028256,0.095136,0.096288,29.2495,0.112672
+734,31.4303,31.8164,29.453,0.07056,0.948224,0.006272,0.005856,0.028192,0.096256,0.09856,28.0845,0.114528
+735,32.6531,30.625,30.565,0.069376,0.922464,0.007808,0.005568,0.027584,0.095936,0.096576,29.227,0.11264
+736,31.6695,31.5762,30.5471,0.068832,0.888896,0.007008,0.004224,0.028544,0.09776,0.098752,29.2394,0.113696
+737,31.531,31.7148,29.3565,0.068224,0.884416,0.006368,0.006144,0.028256,0.094624,0.0976,28.058,0.112832
+738,32.7638,30.5215,29.4052,0.069632,0.913056,0.006528,0.005472,0.028448,0.095136,0.098272,28.0732,0.115456
+739,32.7806,30.5059,30.5419,0.069632,0.892544,0.006528,0.006112,0.028416,0.094528,0.09728,29.2342,0.11264
+740,31.5038,31.7422,29.483,0.069216,0.987584,0.008032,0.004224,0.028672,0.096256,0.0984,28.0756,0.11504
+741,32.6302,30.6465,29.5041,0.069312,0.989504,0.00672,0.005792,0.026976,0.095776,0.09664,28.0998,0.113536
+742,32.5327,30.7383,30.6281,0.069216,0.926336,0.007168,0.004896,0.028384,0.09472,0.098304,29.2844,0.114688
+743,31.4265,31.8203,30.5681,0.069312,0.91536,0.007008,0.005856,0.028832,0.095616,0.097024,29.2362,0.112832
+744,31.531,31.7148,29.4138,0.068544,0.920864,0.00688,0.005248,0.027648,0.098048,0.097984,28.0737,0.114816
+745,32.5555,30.7168,30.6811,0.069632,1.00966,0.00752,0.004768,0.028672,0.095328,0.096544,29.256,0.113024
+746,31.601,31.6445,30.7023,0.076512,0.99328,0.007968,0.004352,0.02864,0.097536,0.097024,29.2844,0.11264
+747,31.5932,31.6523,29.3962,0.069024,0.907872,0.007616,0.004672,0.028672,0.096288,0.097248,28.0709,0.113888
+748,32.7073,30.5742,31.8239,0.069632,0.946176,0.007616,0.004672,0.028608,0.094272,0.09776,30.4625,0.11264
+749,30.2708,33.0352,29.4359,0.068512,0.978432,0.006656,0.005952,0.028192,0.09488,0.096256,28.043,0.114016
+750,32.8458,30.4453,30.6234,0.068192,0.940032,0.008128,0.004192,0.029696,0.097248,0.098272,29.2639,0.113696
+751,31.4284,31.8184,30.6133,0.06944,1.02422,0.007904,0.0056,0.027456,0.095712,0.096768,29.1734,0.1128
+752,31.4903,31.7559,29.5057,0.069792,1.03629,0.007776,0.00448,0.028448,0.094432,0.09824,28.0529,0.113312
+753,32.5783,30.6953,29.4465,0.068576,1.0376,0.00688,0.00576,0.028128,0.095136,0.098048,27.9937,0.112672
+754,32.6676,30.6113,30.7073,0.067968,1.00736,0.0064,0.005568,0.0272,0.096256,0.098304,29.2844,0.11392
+755,31.44,31.8066,29.3495,0.0696,0.92592,0.007232,0.005056,0.028672,0.096224,0.096288,28.0064,0.114144
+756,32.5949,30.6797,29.4154,0.069088,0.91712,0.007072,0.004096,0.028672,0.1024,0.098304,28.0731,0.115552
+757,32.9091,30.3867,30.6061,0.069664,0.916192,0.007392,0.004896,0.028672,0.094208,0.098304,29.2737,0.113056
+758,31.229,32.0215,30.6035,0.069504,0.894464,0.007008,0.014336,0.029952,0.09616,0.09712,29.2822,0.112704
+759,30.622,32.6562,29.678,0.068032,1.15507,0.017984,0.004544,0.028672,0.102432,0.0976,28.0903,0.113376
+760,32.5431,30.7285,30.7937,0.069632,1.11168,0.006528,0.004128,0.029888,0.097056,0.10816,29.254,0.11264
+761,31.2653,31.9844,29.6018,0.069632,1.12026,0.00784,0.005568,0.027552,0.096256,0.098272,28.0515,0.124928
+762,32.2296,31.0273,30.837,0.069792,1.16973,0.007232,0.00496,0.028256,0.09472,0.098208,29.2512,0.112864
+763,32.0561,31.1953,30.604,0.06848,0.942112,0.007552,0.004704,0.028672,0.094208,0.096256,29.2454,0.116576
+764,31.0812,32.1738,29.5179,0.069696,1.02787,0.006368,0.005632,0.027136,0.096256,0.098016,28.0737,0.113248
+765,32.9748,30.3262,29.4001,0.068608,0.91136,0.007392,0.004896,0.028672,0.096,0.097664,28.0667,0.118816
+766,32.7512,30.5332,30.5314,0.069664,0.90624,0.007136,0.004096,0.028672,0.097312,0.0984,29.2066,0.113248
+767,31.4728,31.7734,29.34,0.06928,0.930496,0.00784,0.005568,0.027552,0.09616,0.096256,27.9942,0.112672
+768,32.8479,30.4434,29.4457,0.069184,0.922048,0.007904,0.004384,0.028672,0.096288,0.098304,28.1045,0.114368
+769,32.8648,30.4277,30.5592,0.068544,0.878528,0.00624,0.006112,0.02848,0.095616,0.096832,29.2661,0.112736
+770,31.529,31.7168,30.5828,0.069632,0.9216,0.007648,0.00464,0.028704,0.096224,0.097536,29.2442,0.112672
+771,31.6518,31.5938,29.3596,0.069536,0.888928,0.007328,0.00496,0.028544,0.096,0.096672,28.0535,0.114208
+772,32.8711,30.4219,30.5704,0.069216,0.885536,0.007296,0.004928,0.028256,0.096416,0.097952,29.2666,0.114176
+773,31.6049,31.6406,29.404,0.068512,0.976864,0.007488,0.0048,0.028672,0.095808,0.096736,28.0105,0.114688
+774,32.8016,30.4863,30.5168,0.069632,0.929792,0.007392,0.004896,0.028256,0.096256,0.096672,29.1697,0.114272
+775,31.5582,31.6875,30.5422,0.069344,0.899744,0.008064,0.005568,0.027328,0.096256,0.098336,29.2249,0.11264
+776,31.5562,31.6895,29.3539,0.069632,0.872992,0.008032,0.004256,0.028672,0.096256,0.097568,28.0604,0.116096
+777,32.9176,30.3789,29.3419,0.069408,0.895488,0.007648,0.00464,0.028672,0.096256,0.097312,28.0279,0.114624
+778,32.8521,30.4395,30.5998,0.069632,0.934464,0.007744,0.00464,0.028672,0.1024,0.09808,29.2406,0.1136
+779,31.6186,31.627,29.4068,0.06944,0.91776,0.00768,0.004608,0.028672,0.09568,0.096832,28.0719,0.114144
+780,32.8037,30.4844,29.4158,0.069536,0.895488,0.008,0.004256,0.028672,0.094208,0.097536,28.1046,0.113568
+781,32.6635,30.6152,30.6402,0.069664,0.995328,0.007232,0.005056,0.028672,0.096256,0.097312,29.228,0.112672
+782,31.3629,31.8848,29.3906,0.069248,0.957152,0.007456,0.004832,0.028672,0.095904,0.096608,28.0125,0.118144
+783,32.4359,30.8301,29.4286,0.070464,1.01174,0.007584,0.004704,0.028672,0.097376,0.097184,27.9978,0.113024
+784,32.7282,30.5547,30.5157,0.068096,0.90064,0.006624,0.00544,0.027328,0.096192,0.09632,29.2023,0.1128
+785,32.2175,31.0391,30.5137,0.069888,0.909152,0.006784,0.005856,0.028416,0.0968,0.0984,29.1854,0.113024
+786,31.6206,31.625,29.2987,0.069632,0.890208,0.006816,0.005184,0.027584,0.096128,0.096384,27.9932,0.113504
+787,32.8184,30.4707,30.5295,0.068448,0.881792,0.00704,0.005664,0.028416,0.096672,0.098016,29.2297,0.11376
+788,31.5213,31.7246,29.3685,0.069344,0.93008,0.00752,0.004768,0.028192,0.094688,0.097696,28.0227,0.113536
+789,32.8838,30.4102,30.5277,0.076544,0.893984,0.00704,0.005568,0.037536,0.096256,0.098304,29.1994,0.113024
+790,31.7677,31.4785,30.5439,0.069632,0.890304,0.00672,0.005472,0.028352,0.0952,0.097664,29.2374,0.113184
+791,31.44,31.8066,29.3649,0.069728,0.902976,0.006912,0.005792,0.028512,0.0968,0.098336,28.0407,0.1152
+792,32.6011,30.6738,29.4113,0.068896,0.977664,0.007872,0.004384,0.028608,0.095456,0.096928,28.0181,0.11344
+793,32.8226,30.4668,30.5828,0.069632,0.914528,0.007072,0.005568,0.0272,0.096064,0.09776,29.2503,0.114688
+794,31.2767,31.9727,29.4119,0.068384,0.995296,0.007424,0.004864,0.02832,0.095616,0.09728,28.0002,0.114496
+795,32.5803,30.6934,29.4319,0.069664,0.999392,0.00784,0.004448,0.028672,0.097696,0.096864,28.0139,0.113408
+796,33.2273,30.0957,30.5314,0.06976,0.864256,0.007872,0.004416,0.028672,0.110592,0.098048,29.2347,0.113056
+797,31.6792,31.5664,30.6012,0.069632,0.921088,0.006656,0.005984,0.028064,0.100352,0.108448,29.2463,0.11472
+798,31.2424,32.0078,29.4354,0.069472,0.948384,0.006144,0.005856,0.028128,0.09504,0.097504,28.0706,0.114272
+799,32.0983,31.1543,30.714,0.068544,1.03117,0.007136,0.005632,0.041472,0.098304,0.098304,29.2495,0.113888
+800,32,31.25,29.3478,0.069632,0.933888,0.007616,0.004672,0.028672,0.096032,0.096512,27.9961,0.114688
+801,32.8331,30.457,30.5464,0.068032,0.909312,0.006144,0.006144,0.028576,0.094304,0.09744,29.2213,0.115104
+802,31.6753,31.5703,30.5585,0.068576,0.878592,0.007776,0.004512,0.028672,0.110592,0.097696,29.2481,0.113984
+803,31.5058,31.7402,29.3745,0.069472,0.954528,0.007776,0.005568,0.02768,0.096192,0.097696,28.0009,0.114688
+804,32.8859,30.4082,29.3618,0.070176,0.902272,0.007008,0.004096,0.028704,0.095584,0.096768,28.039,0.118112
+805,32.7764,30.5098,30.4927,0.06912,0.90144,0.006336,0.006144,0.028416,0.095808,0.103104,29.1687,0.113632
+806,31.4903,31.7559,29.3171,0.071648,0.872384,0.00624,0.00576,0.028256,0.09504,0.098272,28.0105,0.129024
+807,32.3846,30.8789,29.4503,0.068928,0.996032,0.007488,0.0048,0.028672,0.096256,0.097408,28.0375,0.113184
+808,32.0802,31.1719,30.7496,0.078784,1.05677,0.007584,0.004704,0.032736,0.096288,0.116256,29.2439,0.11264
+809,31.6362,31.6094,30.5201,0.068384,0.90112,0.006176,0.006112,0.028384,0.094496,0.097568,29.2032,0.114688
+810,31.3284,31.9199,29.4146,0.069728,0.935936,0.007328,0.004672,0.027968,0.104672,0.103168,28.0471,0.11408
+811,32.7052,30.5762,30.5521,0.07536,0.922016,0.0072,0.005088,0.028672,0.09584,0.096704,29.2065,0.114656
+812,31.646,31.5996,29.344,0.069888,0.903232,0.007552,0.004704,0.028224,0.094688,0.097472,28.0236,0.114688
+813,32.5059,30.7637,30.7199,0.068128,1.07277,0.006528,0.006144,0.028,0.09488,0.102432,29.227,0.114016
+814,31.7815,31.4648,30.5226,0.069632,0.882688,0.007712,0.004576,0.031744,0.095232,0.096256,29.2209,0.11392
+815,31.5058,31.7402,29.3783,0.069088,0.87248,0.006816,0.005792,0.028384,0.098944,0.11264,28.0694,0.114752
+816,32.4832,30.7852,29.4596,0.069664,0.993248,0.008192,0.004096,0.028672,0.09584,0.096672,28.0493,0.113888
+817,32.4914,30.7773,30.6156,0.06944,0.97072,0.006368,0.006144,0.028352,0.09568,0.106592,29.2192,0.113024
+818,31.5465,31.6992,29.3388,0.071072,0.917984,0.006272,0.00576,0.028352,0.094912,0.09776,28.0024,0.114272
+819,32.8184,30.4707,29.4298,0.069344,0.947552,0.00704,0.005568,0.028832,0.095808,0.0968,28.0662,0.11264
+820,32.7408,30.543,30.5895,0.068192,0.933888,0.008032,0.004256,0.028672,0.096256,0.098304,29.2393,0.11264
+821,30.9515,32.3086,30.6272,0.069568,1.01382,0.007744,0.004544,0.028672,0.096096,0.096416,29.1963,0.114112
+822,31.9083,31.3398,29.4502,0.069632,0.999424,0.007296,0.004896,0.02816,0.094816,0.097984,28.0333,0.114624
+823,32.3457,30.916,30.6211,0.069376,1.00378,0.007328,0.00496,0.028672,0.095584,0.09696,29.2002,0.114208
+824,31.3457,31.9023,29.4441,0.070784,0.981888,0.006208,0.005888,0.028192,0.09488,0.097888,28.0453,0.113024
+825,32.5679,30.7051,30.5699,0.06912,0.91392,0.0072,0.005088,0.028672,0.095808,0.096704,29.2404,0.113056
+826,31.3937,31.8535,30.6239,0.069536,0.993184,0.0064,0.005664,0.028224,0.095168,0.097472,29.2155,0.112704
+827,31.6812,31.5645,29.3524,0.069248,0.944992,0.006176,0.006112,0.028288,0.096352,0.104512,27.9838,0.112928
+828,32.869,30.4238,29.3333,0.07088,0.92448,0.007712,0.004544,0.02864,0.095744,0.096832,27.99,0.114464
+829,32.7094,30.5723,30.4906,0.069632,0.90112,0.007328,0.00496,0.028672,0.095712,0.096832,29.1628,0.123584
+830,31.7008,31.5449,29.3087,0.069952,0.89088,0.006144,0.00592,0.028544,0.096192,0.098688,27.9982,0.114112
+831,33.0046,30.2988,29.3248,0.069664,0.872416,0.00784,0.005568,0.027552,0.096256,0.096256,28.0348,0.114368
+832,33.0046,30.2988,30.5127,0.069568,0.87088,0.006176,0.005824,0.028448,0.094752,0.097984,29.2232,0.115872
+833,31.5679,31.6777,29.3087,0.068064,0.884736,0.007616,0.004672,0.028672,0.095936,0.096608,28.0084,0.113984
+834,32.8352,30.4551,30.3473,0.069664,1.0895,0.007616,0.004672,0.03072,0.102432,0.102304,28.8253,0.115072
+835,31.7677,31.4785,30.6012,0.069568,0.929856,0.007424,0.004864,0.028672,0.095552,0.096608,29.2561,0.11264
+836,31.603,31.6426,29.3308,0.068928,0.918208,0.007168,0.004896,0.028256,0.096096,0.097088,27.9959,0.114336
+837,32.5513,30.7207,30.6523,0.069952,0.995072,0.006816,0.005792,0.02832,0.094944,0.098272,29.2407,0.112416
+838,31.5952,31.6504,30.5506,0.068352,0.937952,0.007552,0.004736,0.028672,0.094208,0.098336,29.1942,0.116544
+839,31.6969,31.5488,29.2762,0.0696,0.87248,0.00736,0.004928,0.028672,0.09568,0.105024,27.9794,0.113024
+840,32.3416,30.9199,29.3745,0.069632,0.935936,0.016384,0.006048,0.02848,0.095616,0.096992,28.0107,0.114688
+841,31.75,31.4961,30.8159,0.069536,1.21667,0.007872,0.005568,0.027456,0.096256,0.096256,29.1835,0.112832
+842,31.6832,31.5625,29.325,0.07168,0.888832,0.007712,0.004576,0.02864,0.095744,0.098208,28.0132,0.116384
+843,33.0046,30.2988,29.2671,0.069632,0.868352,0.007296,0.004992,0.028544,0.095872,0.102688,27.9759,0.113856
+844,31.99,31.2598,30.462,0.069152,0.907712,0.006208,0.005856,0.028352,0.094816,0.096256,29.1402,0.11344
+845,32.1709,31.084,30.5014,0.07024,0.901088,0.007488,0.0048,0.029728,0.095232,0.096224,29.184,0.11264
+846,31.8052,31.4414,29.2905,0.06912,0.858656,0.007776,0.00448,0.028672,0.10368,0.098528,28.0049,0.11472
+847,32.9663,30.334,30.5132,0.071296,0.859616,0.007072,0.005568,0.0272,0.097536,0.096864,29.2346,0.11344
+848,31.7146,31.5312,29.2987,0.069664,0.862176,0.006336,0.00576,0.028096,0.094976,0.096288,28.0207,0.114688
+849,32.3396,30.9219,30.6863,0.07024,1.06678,0.006752,0.006048,0.054816,0.096352,0.096768,29.1756,0.112864
+850,31.8467,31.4004,30.4396,0.069632,0.876416,0.006272,0.005632,0.028224,0.095168,0.101984,29.1433,0.112992
+851,31.8171,31.4297,29.3192,0.069632,0.881888,0.006944,0.005472,0.027456,0.096128,0.09792,28.0162,0.117504
+852,32.3334,30.9277,29.2688,0.0696,0.872672,0.006816,0.005184,0.027616,0.095552,0.096928,27.9813,0.113152
+853,32.4276,30.8379,30.4578,0.0712,0.864352,0.006528,0.006112,0.028352,0.096448,0.098496,29.1737,0.112608
+854,31.3437,31.9043,29.3499,0.069056,0.940608,0.007776,0.004512,0.028672,0.095456,0.097056,27.9941,0.112704
+855,31.992,31.2578,29.5044,0.070496,1.11622,0.016384,0.006144,0.03472,0.095808,0.096896,27.9532,0.114464
+856,33.0387,30.2676,30.4912,0.068448,0.886752,0.007552,0.004736,0.028512,0.0944,0.09792,29.178,0.124928
+857,30.6513,32.625,31.0725,0.085632,1.46294,0.006144,0.006144,0.02864,0.09424,0.097824,29.1776,0.113344
+858,31.6342,31.6113,30.4824,0.069632,0.880544,0.00624,0.00592,0.028352,0.102464,0.10496,29.1692,0.115104
+859,31.3764,31.8711,29.3345,0.068576,0.905216,0.007392,0.004896,0.028672,0.096192,0.096352,28.0146,0.112672
+860,33.0152,30.2891,29.3164,0.069664,0.888192,0.006752,0.005248,0.02752,0.096224,0.102432,28.0064,0.11392
+861,31.988,31.2617,30.6368,0.07024,1.01696,0.00704,0.013472,0.03168,0.105472,0.097312,29.1819,0.112672
+862,31.6675,31.5781,29.2766,0.068352,0.89904,0.007424,0.004864,0.028672,0.095872,0.09664,27.9612,0.114624
+863,32.4133,30.8516,29.2557,0.07104,0.868736,0.0064,0.006144,0.028512,0.0944,0.096288,27.9712,0.11296
+864,31.191,32.0605,30.5835,0.069408,1.00234,0.007616,0.004672,0.028352,0.09456,0.097952,29.1658,0.1128
+865,32.4482,30.8184,30.538,0.069632,0.962912,0.006208,0.00608,0.028672,0.09568,0.096832,29.1574,0.11456
+866,31.3956,31.8516,29.5096,0.069376,1.09523,0.006848,0.013344,0.031712,0.096256,0.103936,27.9762,0.116736
+867,31.8904,31.3574,30.7414,0.08896,1.06496,0.008064,0.005568,0.037568,0.096224,0.10448,29.2225,0.113056
+868,31.4961,31.75,29.7251,0.082944,1.28758,0.006752,0.005312,0.028608,0.096672,0.098592,28.0025,0.116096
+869,32.676,30.6035,30.4869,0.068512,0.880608,0.007872,0.005568,0.02752,0.096256,0.096256,29.1919,0.11248
+870,31.0548,32.2012,30.5821,0.069664,0.944128,0.008064,0.004224,0.028672,0.106496,0.099904,29.207,0.114016
+871,31.1872,32.0645,29.3463,0.068128,0.949824,0.006592,0.006048,0.028128,0.094848,0.096256,27.9839,0.11264
+872,32.5617,30.7109,29.3396,0.069632,0.956224,0.006336,0.005728,0.028384,0.09696,0.098304,27.9625,0.115552
+873,32.9133,30.3828,30.4598,0.069312,0.879232,0.006432,0.006144,0.028512,0.09552,0.097152,29.1635,0.113952
+874,31.153,32.0996,29.4013,0.06896,0.9728,0.00704,0.01216,0.028352,0.096384,0.098336,28.0005,0.116736
+875,32.6156,30.6602,29.3127,0.08192,0.93184,0.007296,0.004992,0.028672,0.1024,0.09744,27.945,0.11312
+876,32.0681,31.1836,30.8326,0.069248,1.23328,0.006208,0.018368,0.028672,0.09584,0.104416,29.1634,0.113248
+877,31.7874,31.459,30.4503,0.068256,0.863296,0.007072,0.005568,0.0272,0.09728,0.097216,29.1718,0.11264
+878,31.2805,31.9688,29.3908,0.0696,0.958688,0.007264,0.004928,0.028544,0.096512,0.108512,28.0023,0.114496
+879,32.7429,30.541,30.5276,0.069344,0.9272,0.00704,0.005568,0.027296,0.096192,0.09776,29.1846,0.11264
+880,31.2062,32.0449,29.4161,0.069568,1.03466,0.006592,0.005408,0.02736,0.097664,0.10304,27.9572,0.114592
+881,32.0641,31.1875,30.6442,0.06864,1.06291,0.007072,0.005568,0.027264,0.096256,0.097408,29.1634,0.115648
+882,31.5776,31.668,30.4394,0.071328,0.874848,0.007744,0.005696,0.02752,0.096256,0.097824,29.1449,0.11328
+883,30.8564,32.4082,29.2994,0.06832,0.947776,0.00656,0.005664,0.027104,0.106048,0.09792,27.9253,0.114688
+884,32.6948,30.5859,30.4855,0.075008,0.925472,0.007104,0.004128,0.028672,0.095936,0.100608,29.1348,0.113856
+885,31.6127,31.6328,30.5132,0.069248,0.89536,0.00736,0.004928,0.028672,0.102432,0.097248,29.1932,0.114688
+886,31.2462,32.0039,29.3277,0.069632,0.963168,0.007264,0.004928,0.02832,0.094656,0.098112,27.9472,0.114432
+887,32.0943,31.1582,29.3958,0.0696,1.04336,0.007456,0.004832,0.04096,0.096256,0.097728,27.9121,0.12352
+888,31.976,31.2734,30.6366,0.068352,1.01565,0.006272,0.015584,0.028736,0.10928,0.097472,29.1807,0.114528
+889,31.7303,31.5156,29.3144,0.075776,0.935616,0.006464,0.006144,0.028384,0.096352,0.098048,27.9516,0.116096
+890,32.6531,30.625,29.3709,0.070016,0.974592,0.006944,0.005184,0.029632,0.094208,0.098336,27.9777,0.114272
+891,32.7408,30.543,30.5563,0.068192,0.988352,0.006944,0.005696,0.028352,0.094816,0.096224,29.1514,0.116256
+892,31.2748,31.9746,30.5152,0.069664,0.995296,0.00752,0.004768,0.028448,0.095648,0.097088,29.1037,0.113056
+893,31.4903,31.7559,29.4134,0.069632,1.01722,0.006848,0.005856,0.028288,0.096,0.097184,27.9772,0.1152
+894,32.4092,30.8555,30.5152,0.069632,0.966112,0.006688,0.00544,0.027328,0.096256,0.097536,29.1336,0.11264
+895,31.315,31.9336,29.4316,0.076032,1.03766,0.006816,0.005792,0.028576,0.096704,0.098304,27.9654,0.116256
+896,32.6551,30.623,30.5505,0.068096,0.964096,0.006656,0.004096,0.028672,0.095904,0.096608,29.1732,0.113248
+897,31.411,31.8359,30.591,0.077248,0.987712,0.00784,0.005568,0.027552,0.096256,0.0984,29.1775,0.112896
+898,31.4883,31.7578,29.3712,0.0696,0.977792,0.00752,0.004768,0.028352,0.094528,0.0976,27.9764,0.114688
+899,32.5949,30.6797,29.3409,0.077664,0.972832,0.006272,0.006144,0.028672,0.096256,0.098304,27.9388,0.115968
+900,32.3764,30.8867,30.6363,0.06928,1.01571,0.022464,0.004864,0.028064,0.094816,0.0976,29.19,0.11344
+901,31.0021,32.2559,29.4874,0.06832,1.10352,0.006496,0.006144,0.028224,0.09616,0.10704,27.9566,0.11488
+902,32.6177,30.6582,29.3065,0.069632,0.90096,0.006304,0.005728,0.028544,0.094784,0.097536,27.9887,0.114272
+903,32.5575,30.7148,30.4845,0.069536,0.894816,0.0064,0.005664,0.029152,0.096256,0.097952,29.17,0.114688
+904,31.2519,31.998,29.2747,0.06944,0.854368,0.00656,0.00544,0.027328,0.096096,0.097632,28.0044,0.113472
+905,32.4194,30.8457,29.3329,0.077024,0.902144,0.007808,0.005568,0.027584,0.096288,0.098272,28.0023,0.115904
+906,32.5534,30.7188,30.5266,0.069632,0.914944,0.006656,0.005344,0.027424,0.095872,0.09664,29.1963,0.113824
+907,30.0593,33.2676,29.5798,0.06976,1.15181,0.006144,0.006144,0.028672,0.096288,0.108544,27.9982,0.114304
+908,33.1477,30.168,30.4675,0.069632,0.874496,0.00624,0.005824,0.028128,0.095008,0.097504,29.1766,0.114112
+909,31.4265,31.8203,30.4616,0.069536,0.90128,0.006592,0.006048,0.028224,0.0968,0.098304,29.1422,0.112544
+910,31.5543,31.6914,29.3069,0.069664,0.94208,0.00736,0.004896,0.027968,0.094944,0.096224,27.9503,0.113504
+911,32.6906,30.5898,30.4749,0.07472,0.917408,0.00624,0.006144,0.028672,0.096128,0.097408,29.1359,0.112352
+912,31.7874,31.459,30.4972,0.069088,0.860448,0.006784,0.005344,0.027424,0.096256,0.097472,29.2156,0.118784
+913,31.6734,31.5723,29.2759,0.069696,0.86032,0.007776,0.005568,0.027616,0.096256,0.098304,27.9955,0.11488
+914,32.9642,30.3359,29.2573,0.069184,0.862368,0.006432,0.0056,0.027168,0.096096,0.096416,27.9798,0.11424
+915,32.4071,30.8574,30.5188,0.075744,0.938016,0.007424,0.004864,0.028672,0.096256,0.098304,29.1554,0.114208
+916,31.7697,31.4766,29.2794,0.06896,0.873216,0.007424,0.004832,0.028288,0.095904,0.097024,27.99,0.113792
+917,31.8131,31.4336,29.5096,0.069216,1.07056,0.007072,0.005568,0.028864,0.10896,0.097984,28.0047,0.116736
+918,32.2398,31.0176,30.6463,0.0712,1.10403,0.006464,0.005728,0.028256,0.095072,0.096224,29.1264,0.112928
+919,31.4516,31.7949,29.512,0.069568,1.08416,0.016384,0.006144,0.028384,0.095584,0.107136,27.9883,0.11632
+920,31.8944,31.3535,29.4679,0.069664,1.11725,0.00704,0.020512,0.028224,0.096704,0.097504,27.9164,0.11456
+921,34.6086,28.8945,30.5964,0.069344,0.928064,0.007808,0.013792,0.031296,0.094528,0.098144,29.2311,0.122272
+922,30.8304,32.4355,30.5526,0.06928,0.973088,0.00672,0.00544,0.028736,0.094848,0.09632,29.1655,0.11264
+923,32.0601,31.1914,29.2884,0.069632,0.915456,0.007648,0.00464,0.028672,0.096256,0.09776,27.9548,0.113536
+924,33.1714,30.1465,30.4783,0.069632,0.882688,0.007904,0.004384,0.028672,0.095616,0.096896,29.1797,0.112864
+925,30.9534,32.3066,29.3536,0.069632,0.974592,0.007648,0.004896,0.02768,0.0968,0.106368,27.9517,0.114336
+926,31.0963,32.1582,30.5807,0.07168,0.980992,0.014336,0.004096,0.043008,0.096256,0.096256,29.1611,0.113056
+927,31.5019,31.7441,31.0303,0.068608,1.41517,0.014336,0.005792,0.028864,0.096128,0.104736,29.1813,0.115328
+928,31.9162,31.332,29.6409,0.08192,1.22397,0.00688,0.004096,0.028672,0.095424,0.103232,27.9829,0.113728
+929,32.0621,31.1895,29.7882,0.088064,1.39469,0.007456,0.004832,0.0504,0.0968,0.09856,27.9306,0.116736
+930,32.4749,30.793,30.5466,0.068384,0.978528,0.00656,0.005536,0.034496,0.095136,0.097696,29.1469,0.113408
+931,32.024,31.2266,29.2702,0.069696,0.92992,0.00768,0.004608,0.03008,0.096896,0.098336,27.9182,0.114816
+932,32.6551,30.623,29.3253,0.069632,0.97248,0.006464,0.005568,0.028384,0.095072,0.096384,27.9364,0.114944
+933,32.1225,31.1309,30.6239,0.069088,1.01654,0.007232,0.005024,0.042656,0.09456,0.097472,29.1746,0.116736
+934,31.974,31.2754,30.5873,0.06944,0.975072,0.006496,0.005696,0.02912,0.095328,0.09696,29.1965,0.11264
+935,31.5776,31.668,29.4548,0.071712,1.05725,0.007392,0.004896,0.028672,0.096256,0.098304,27.9754,0.115008
+936,32.7157,30.5664,30.6281,0.06912,0.996288,0.007648,0.00464,0.040448,0.096032,0.096992,29.2039,0.113024
+937,31.4864,31.7598,29.438,0.076864,1.0311,0.007232,0.005056,0.028672,0.110592,0.098304,27.9653,0.114816
+938,32.7575,30.5273,30.5752,0.06832,0.974528,0.006336,0.005728,0.030848,0.094496,0.106496,29.1755,0.11296
+939,31.3841,31.8633,30.4968,0.069632,0.960416,0.00624,0.006144,0.028448,0.095488,0.097248,29.1205,0.11264
+940,31.3303,31.918,29.3233,0.069216,0.985312,0.006336,0.005664,0.02816,0.0952,0.096256,27.9224,0.11472
+941,32.3682,30.8945,29.5279,0.069088,1.16618,0.007616,0.018976,0.029824,0.097056,0.0984,27.9245,0.116288
+942,32.51,30.7598,30.8197,0.069408,1.22467,0.006784,0.004096,0.032448,0.098624,0.098112,29.1719,0.113696
+943,31.2462,32.0039,29.3844,0.07088,0.99408,0.00784,0.005568,0.027552,0.096256,0.099392,27.9664,0.116416
+944,32.5079,30.7617,29.3501,0.069184,0.974976,0.006656,0.005408,0.02736,0.096288,0.097344,27.9582,0.114688
+945,32.5203,30.75,30.572,0.069632,1.01078,0.007072,0.005568,0.0272,0.09744,0.097152,29.1421,0.114976
+946,31.338,31.9102,30.536,0.06928,0.997952,0.006464,0.005824,0.028352,0.09488,0.097408,29.1233,0.112544
+947,31.315,31.9336,29.3806,0.069632,0.982816,0.006368,0.006144,0.028288,0.096576,0.09824,27.9769,0.115648
+948,32.5803,30.6934,30.5684,0.069536,0.972544,0.006496,0.005408,0.02736,0.095968,0.096576,29.1819,0.11264
+949,31.2443,32.0059,29.359,0.068512,0.970176,0.006688,0.005952,0.028288,0.096832,0.098304,27.9695,0.114688
+950,32.0481,31.2031,30.5438,0.068672,0.9792,0.006848,0.005184,0.027584,0.095648,0.096736,29.1506,0.113344
+951,31.7205,31.5254,29.3132,0.069824,0.968672,0.008,0.005568,0.028544,0.096384,0.098176,27.925,0.113024
+952,32.6802,30.5996,29.3007,0.069632,0.970752,0.007552,0.004736,0.028288,0.096064,0.096832,27.914,0.112896
+953,32.2601,30.998,30.722,0.07712,1.14496,0.021056,0.006176,0.02864,0.096352,0.098208,29.1381,0.111456
+954,31.6969,31.5488,30.4824,0.069632,0.950272,0.006272,0.005792,0.02848,0.094752,0.098176,29.1164,0.112608
+955,31.7756,31.4707,29.2332,0.069664,0.862176,0.007456,0.004832,0.028672,0.097408,0.097152,27.9508,0.115008
+956,32.7953,30.4922,30.513,0.069312,0.955904,0.007008,0.004128,0.02864,0.094208,0.097728,29.1416,0.114528
+957,31.4419,31.8047,29.3402,0.069472,0.975744,0.006176,0.006144,0.028672,0.095872,0.098688,27.9429,0.11648
+958,32.7031,30.5781,30.466,0.069632,0.92496,0.00688,0.005888,0.028256,0.102208,0.096704,29.1186,0.112928
+959,31.5952,31.6504,30.4815,0.069728,0.933024,0.00704,0.0056,0.02832,0.096896,0.09856,29.1287,0.113664
+960,31.7303,31.5156,29.2891,0.068224,0.91696,0.006688,0.005312,0.027456,0.096256,0.096256,27.959,0.112928
+961,32.3559,30.9062,29.2729,0.072064,0.93248,0.008064,0.005568,0.027424,0.095712,0.098688,27.9164,0.116544
+962,33.1477,30.168,30.5739,0.069632,0.951392,0.007072,0.004256,0.028512,0.096192,0.097792,29.2051,0.113952
+963,31.6616,31.584,29.2469,0.069632,0.89088,0.007776,0.005568,0.027648,0.096192,0.09632,27.9388,0.114144
+964,32.2988,30.9609,29.2782,0.069856,0.929568,0.007232,0.0048,0.028704,0.094464,0.096224,27.9339,0.113472
+965,33.6223,29.7422,30.4578,0.069632,0.927744,0.007168,0.00512,0.028672,0.095456,0.097056,29.1123,0.114624
+966,31.819,31.4277,30.4308,0.069632,0.878592,0.007616,0.004672,0.028512,0.0944,0.09776,29.1366,0.112992
+967,31.3783,31.8691,29.3269,0.069184,1.01405,0.006304,0.005728,0.028512,0.096128,0.096832,27.8918,0.118304
+968,32.9663,30.334,30.5678,0.069824,1.0336,0.006752,0.005344,0.028608,0.096896,0.097824,29.1151,0.113888
+969,30.9984,32.2598,29.3948,0.069568,1.03635,0.007904,0.005568,0.043168,0.094944,0.098272,27.9256,0.113408
+970,33.4881,29.8613,30.4929,0.069632,0.944352,0.008,0.004288,0.028672,0.096256,0.098432,29.1306,0.112672
+971,31.8765,31.3711,30.4698,0.069632,0.92288,0.006912,0.005632,0.02816,0.095264,0.096224,29.1321,0.112992
+972,31.642,31.6035,29.269,0.0712,0.917184,0.006944,0.004288,0.02848,0.096256,0.098304,27.9319,0.114432
+973,33.107,30.2051,29.2741,0.069632,0.91136,0.007904,0.005568,0.027488,0.09568,0.096288,27.9455,0.114688
+974,32.5928,30.6816,30.4906,0.069632,0.927712,0.006176,0.005888,0.028384,0.104832,0.097856,29.1348,0.115296
+975,31.8963,31.3516,29.2782,0.069536,0.971968,0.007072,0.015648,0.03072,0.094848,0.096352,27.8793,0.112736
+976,33.2122,30.1094,29.2251,0.069216,0.881216,0.007648,0.00464,0.028448,0.094496,0.098272,27.9238,0.117376
+977,32.8142,30.4746,30.4742,0.069632,0.902848,0.006464,0.006144,0.028032,0.096256,0.096896,29.1548,0.113216
+978,31.6538,31.5918,30.4799,0.069344,0.925408,0.00672,0.005344,0.027424,0.095904,0.096608,29.1389,0.114208
+979,31.4612,31.7852,29.2621,0.069984,0.925696,0.00736,0.004896,0.028672,0.095648,0.096864,27.92,0.112992
+980,33.0408,30.2656,30.4093,0.068224,0.859808,0.006496,0.0056,0.028288,0.10336,0.09968,29.1232,0.114688
+981,31.7953,31.4512,29.1981,0.070848,0.89072,0.007072,0.005568,0.027264,0.096064,0.09648,27.8897,0.1144
+982,33.0152,30.2891,30.4105,0.069504,0.902784,0.006656,0.00544,0.027328,0.095936,0.096576,29.0918,0.1144
+983,31.6773,31.5684,30.4247,0.069568,0.901824,0.006144,0.006144,0.028672,0.096256,0.099584,29.1028,0.113696
+984,31.7382,31.5078,29.2578,0.068704,0.891872,0.007424,0.004864,0.02832,0.095936,0.096576,27.9506,0.113504
+985,32.3907,30.873,29.4405,0.08496,1.06086,0.008,0.005568,0.027392,0.101568,0.09712,27.9388,0.116288
+986,33.1757,30.1426,30.4145,0.069312,0.862272,0.006816,0.00528,0.027488,0.095904,0.096608,29.1369,0.11392
+987,31.4903,31.7559,29.4018,0.074592,1.05882,0.007808,0.005568,0.037824,0.096256,0.1024,27.9033,0.115264
+988,32.85,30.4414,29.2168,0.069344,0.895264,0.0072,0.005088,0.028192,0.09472,0.096224,27.9071,0.113632
+989,33.0813,30.2285,30.4194,0.068064,0.886816,0.007392,0.004864,0.028672,0.096256,0.096256,29.1177,0.113408
+990,31.5058,31.7402,30.4456,0.070816,0.91632,0.007264,0.00496,0.028288,0.094656,0.098112,29.1119,0.113312
+991,31.7598,31.4863,29.3111,0.068864,0.906144,0.007488,0.0048,0.028672,0.102432,0.096224,27.9818,0.114688
+992,32.6739,30.6055,30.6031,0.0696,0.991296,0.007232,0.00496,0.028352,0.09584,0.097088,29.1956,0.113152
+993,31.5913,31.6543,29.2487,0.069632,0.927296,0.006592,0.00608,0.028064,0.094912,0.10432,27.8979,0.11392
+994,32.8289,30.4609,30.4103,0.069664,0.907232,0.007232,0.004992,0.02832,0.096096,0.096832,29.0857,0.114272
+995,31.7244,31.5215,30.4128,0.069632,0.897024,0.008064,0.005536,0.028448,0.0952,0.097344,29.0969,0.114656
+996,31.7342,31.5117,29.1875,0.07072,0.865248,0.016352,0.006016,0.028032,0.095008,0.098272,27.8936,0.114208
+997,32.6239,30.6523,29.2536,0.069664,0.894944,0.007616,0.004672,0.028672,0.09616,0.097664,27.9413,0.112928
+998,32.8079,30.4805,30.4691,0.068416,0.952288,0.00736,0.004928,0.028544,0.096352,0.096288,29.1021,0.1128
+999,31.5232,31.7227,29.2725,0.068032,0.953472,0.00704,0.005664,0.028544,0.096448,0.096544,27.9034,0.113344
+1000,32.4359,30.8301,29.3478,0.069632,1.00147,0.007616,0.004672,0.028352,0.09648,0.098336,27.9261,0.115136
+1001,32.5866,30.6875,30.5379,0.06848,1.00125,0.006368,0.006144,0.02832,0.095808,0.096672,29.1209,0.113984
+1002,31.3188,31.9297,30.5788,0.070016,1.00538,0.006752,0.005408,0.02736,0.096352,0.099968,29.1552,0.112352
+1003,31.7067,31.5391,29.2616,0.069664,0.901088,0.007392,0.004896,0.028672,0.096256,0.106496,27.9327,0.114496
+1004,32.5803,30.6934,30.5295,0.069632,1.01581,0.007968,0.00432,0.028672,0.097472,0.098304,29.0958,0.111584
+1005,31.5077,31.7383,29.3683,0.069504,0.993408,0.007232,0.005056,0.028672,0.094208,0.09824,27.9585,0.113504
+1006,32.5679,30.7051,30.5377,0.07104,0.981664,0.007296,0.004928,0.028256,0.096288,0.098592,29.137,0.11264
+1007,31.3533,31.8945,30.482,0.069664,0.97392,0.00704,0.0056,0.028224,0.0952,0.097568,29.0885,0.116256
+1008,29.7294,33.6367,29.9043,0.071328,1.60189,0.00768,0.004608,0.028672,0.09552,0.096992,27.8835,0.114112
+1009,32.9007,30.3945,29.3233,0.069408,0.984288,0.023552,0.006144,0.028288,0.094592,0.097696,27.9058,0.113504
+1010,33.5826,29.7773,30.5289,0.071136,0.967232,0.007648,0.004608,0.028672,0.096256,0.10032,29.139,0.11408
+1011,31.3879,31.8594,29.2435,0.069408,0.913696,0.007456,0.004832,0.028672,0.096,0.09632,27.9124,0.114688
+1012,32.1568,31.0977,29.313,0.070784,0.97488,0.007008,0.005824,0.026944,0.097344,0.098816,27.9179,0.113504
+1013,31.6734,31.5723,30.7871,0.069312,1.28198,0.016384,0.006016,0.028224,0.106944,0.096768,29.0684,0.113088
+1014,32.0782,31.1738,30.4169,0.077888,0.952256,0.016384,0.00512,0.02896,0.09696,0.098336,29.0284,0.11264
+1015,31.1284,32.125,29.638,0.067904,1.29552,0.007008,0.005664,0.02864,0.100864,0.098112,27.9204,0.113824
+1016,32.3969,30.8672,30.4605,0.070208,0.968032,0.006816,0.005184,0.027584,0.096288,0.09728,29.0764,0.112672
+1017,31.8091,31.4375,29.4471,0.068576,1.1119,0.006304,0.006144,0.028672,0.094208,0.103744,27.9142,0.113344
+1018,33.3703,29.9668,30.3892,0.069824,0.897792,0.007584,0.004704,0.028448,0.095776,0.09696,29.0755,0.112608
+1019,31.4612,31.7852,30.5156,0.069152,0.981952,0.006272,0.006016,0.028608,0.095488,0.096416,29.1188,0.112896
+1020,32.01,31.2402,29.1886,0.070016,0.864224,0.007936,0.004352,0.028672,0.09552,0.096672,27.9084,0.112832
+1021,33.0685,30.2402,29.1974,0.069632,0.873792,0.006848,0.00576,0.028256,0.095008,0.097824,27.9065,0.11376
+1022,32.3559,30.9062,30.5345,0.068576,1.01171,0.007936,0.004352,0.028672,0.106528,0.098272,29.0939,0.114528
+1023,32.1164,31.1367,29.2062,0.068096,0.888832,0.0072,0.005088,0.02864,0.094432,0.098144,27.9019,0.113824
+1024,32.8964,30.3984,29.25,0.06816,0.921248,0.006496,0.005536,0.028448,0.09504,0.097536,27.9129,0.114656
+1025,32.6531,30.625,30.522,0.070272,0.9616,0.007072,0.005568,0.027232,0.095808,0.096352,29.1455,0.112608
+1026,31.6362,31.6094,29.2716,0.069664,0.915424,0.007296,0.004928,0.028096,0.094848,0.09824,27.9388,0.114272
+1027,31.9561,31.293,29.2675,0.069984,0.96432,0.006432,0.006144,0.028288,0.09568,0.0968,27.886,0.113888
+1028,33.6975,29.6758,30.5097,0.06832,0.98016,0.006912,0.005152,0.027584,0.096256,0.09776,29.1129,0.114688
+1029,30.2457,33.0625,30.6119,0.069408,1.06534,0.00672,0.004096,0.028672,0.096256,0.097344,29.1316,0.112512
+1030,31.8566,31.3906,29.5861,0.068608,1.18781,0.022112,0.004512,0.028672,0.102176,0.09648,27.9611,0.114656
+1031,31.3188,31.9297,30.7658,0.06832,1.24637,0.007008,0.005632,0.027168,0.095968,0.096448,29.1062,0.11264
+1032,32.6115,30.6641,29.3108,0.069632,0.95232,0.00736,0.00496,0.02864,0.101408,0.097248,27.9347,0.114464
+1033,31.992,31.2578,30.5848,0.07168,1.0337,0.006688,0.006016,0.028128,0.09488,0.097568,29.1335,0.11264
+1034,32.8205,30.4688,30.4467,0.069056,0.93776,0.006976,0.00528,0.027488,0.09584,0.098176,29.0904,0.115744
+1035,31.984,31.2656,29.2966,0.071104,0.984896,0.006912,0.005696,0.02816,0.09472,0.096672,27.8956,0.112864
+1036,33.1735,30.1445,29.2393,0.06928,0.88032,0.006848,0.005344,0.02752,0.096128,0.096256,27.944,0.1136
+1037,33.0536,30.2539,30.3759,0.069376,0.884,0.007136,0.006112,0.02848,0.09648,0.098304,29.0731,0.112928
+1038,31.9083,31.3398,29.133,0.069024,0.86912,0.006272,0.005888,0.02832,0.094688,0.097632,27.8489,0.113152
+1039,33.1821,30.1367,29.223,0.069376,0.865088,0.007296,0.004992,0.028672,0.096256,0.098304,27.9386,0.114464
+1040,32.6572,30.6211,30.4328,0.069728,0.925696,0.007584,0.004704,0.028512,0.094464,0.098208,29.091,0.112928
+1041,31.6832,31.5625,30.506,0.069632,1.01725,0.006752,0.005856,0.028128,0.09504,0.098304,29.0714,0.113728
+1042,31.3533,31.8945,29.3556,0.069312,1.02621,0.006304,0.005696,0.028128,0.094976,0.097536,27.9132,0.11424
+1043,32.85,30.4414,30.4254,0.069088,0.918336,0.006144,0.006144,0.028672,0.103488,0.101344,29.0775,0.114656
+1044,31.7736,31.4727,29.1877,0.069632,0.899072,0.008192,0.00416,0.028608,0.095808,0.096704,27.8711,0.1144
+1045,32.9176,30.3789,30.5297,0.068,1.04141,0.007072,0.005536,0.027456,0.096128,0.096288,29.0734,0.1144
+1046,31.8527,31.3945,30.3968,0.07008,0.851744,0.006336,0.0056,0.027168,0.096256,0.096256,29.1307,0.112672
+1047,31.5815,31.6641,29.3982,0.069632,1.03155,0.006784,0.005888,0.028448,0.10288,0.104224,27.9345,0.11424
+1048,32.85,30.4414,29.3151,0.070752,1.0024,0.00768,0.004608,0.028352,0.094528,0.098304,27.8948,0.113664
+1049,33.1735,30.1445,30.3562,0.069504,0.875392,0.007808,0.005536,0.027616,0.096256,0.096256,29.0652,0.112608
+1050,31.5154,31.7305,29.1512,0.069632,0.878592,0.008064,0.004224,0.028672,0.09792,0.098272,27.8492,0.116704
+1051,32.8711,30.4219,29.3069,0.0696,0.997024,0.006528,0.00608,0.02816,0.094784,0.0976,27.8942,0.112896
+1052,32.3969,30.8672,30.5063,0.06944,0.97648,0.006752,0.005344,0.027424,0.096288,0.097472,29.1111,0.116032
+1053,32,31.25,29.2495,0.069632,0.966656,0.007488,0.0048,0.028672,0.095904,0.096608,27.8664,0.113312
+1054,32.9176,30.3789,30.227,0.068128,1.01581,0.007776,0.004544,0.030688,0.10368,0.099072,28.7806,0.116704
+1055,31.6049,31.6406,30.548,0.069664,1.01782,0.007584,0.004704,0.028672,0.096256,0.096288,29.1143,0.11264
+1056,31.5271,31.7188,29.3181,0.068576,1.00704,0.006688,0.005312,0.027456,0.095872,0.097984,27.8934,0.115712
+1057,32.4585,30.8086,30.6124,0.068448,1.03629,0.00736,0.004928,0.028672,0.095936,0.096576,29.1615,0.112672
+1058,31.6636,31.582,30.442,0.069792,0.946848,0.008096,0.004192,0.028672,0.096256,0.096256,29.0755,0.116448
+1059,31.7854,31.4609,29.2324,0.069152,0.909728,0.006432,0.006144,0.028352,0.094528,0.097504,27.9063,0.114208
+1060,33.1263,30.1875,29.1886,0.069088,0.873472,0.007328,0.00496,0.02832,0.095744,0.105088,27.8915,0.11312
+1061,33.0578,30.25,30.4312,0.070784,0.873344,0.006176,0.006112,0.028672,0.09632,0.098272,29.1383,0.113248
+1062,31.8329,31.4141,29.1867,0.069472,0.869184,0.007712,0.004576,0.028672,0.094208,0.09808,27.9015,0.11328
+1063,32.8584,30.4336,29.2122,0.069312,0.945984,0.006656,0.005856,0.028448,0.095904,0.098336,27.8454,0.116256
+1064,33.0749,30.2344,30.3575,0.068384,0.890528,0.006464,0.005696,0.028192,0.09504,0.098016,29.0513,0.113888
+1065,31.531,31.7148,30.4188,0.075872,0.88064,0.007456,0.015072,0.028256,0.09648,0.098496,29.1021,0.114464
+1066,31.9361,31.3125,29.1608,0.069664,0.88672,0.006176,0.00592,0.028224,0.094912,0.097376,27.8578,0.114016
+1067,32.8669,30.4258,30.423,0.069632,0.894976,0.008192,0.005792,0.028768,0.095968,0.0968,29.1076,0.115328
+1068,31.6166,31.6289,29.2596,0.070752,0.90816,0.0072,0.00496,0.028256,0.094816,0.096224,27.9347,0.114528
+1069,33.0152,30.2891,30.4162,0.069664,0.903008,0.006272,0.006144,0.028416,0.094624,0.09792,29.0957,0.114496
+1070,31.8765,31.3711,30.4461,0.069952,0.870592,0.007392,0.004896,0.028128,0.094752,0.096256,29.1594,0.114688
+1071,31.6597,31.5859,29.2131,0.069184,0.891712,0.007488,0.0048,0.028672,0.096256,0.098176,27.9021,0.11472
+1072,32.8374,30.4531,29.2178,0.07168,0.951264,0.007648,0.00464,0.028672,0.095584,0.096928,27.8479,0.113408
+1073,32.7995,30.4883,30.466,0.069632,0.98624,0.00704,0.0056,0.028352,0.094944,0.096384,29.0646,0.113216
+1074,31.5349,31.7109,29.2017,0.069856,0.907296,0.007328,0.004928,0.02832,0.094752,0.098144,27.8753,0.115712
+1075,32.9769,30.3242,29.1656,0.069632,0.89904,0.006272,0.006048,0.028416,0.094624,0.09808,27.8502,0.113248
+1076,33.1864,30.1328,30.3866,0.069184,0.885632,0.006144,0.005952,0.02816,0.096192,0.097024,29.0835,0.11488
+1077,31.8844,31.3633,30.3821,0.069632,0.87248,0.007328,0.004928,0.028608,0.095776,0.097824,29.0929,0.11264
+1078,31.6597,31.5859,29.1861,0.075776,0.888832,0.007392,0.004896,0.028352,0.096288,0.098592,27.8707,0.115296
+1079,32.4956,30.7734,30.6038,0.069728,1.13098,0.024064,0.004576,0.028672,0.096288,0.10416,29.0327,0.112672
+1080,32.0963,31.1562,29.2344,0.068768,0.883616,0.008,0.004288,0.028672,0.096256,0.097952,27.9329,0.113888
+1081,32.8037,30.4844,30.3596,0.070208,0.873696,0.006944,0.005792,0.03312,0.096256,0.100352,29.0605,0.112768
+1082,31.992,31.2578,30.4271,0.069632,0.95584,0.007904,0.00496,0.026688,0.095712,0.096736,29.0544,0.115296
+1083,31.7539,31.4922,29.1615,0.069632,0.890496,0.006528,0.006112,0.028384,0.095552,0.09664,27.8534,0.114688
+1084,32.4791,30.7891,29.2858,0.069664,0.994464,0.006976,0.004256,0.03664,0.102464,0.096256,27.861,0.114048
+1085,33.3811,29.957,30.4046,0.069344,0.866592,0.007584,0.004704,0.028704,0.096224,0.097696,29.1211,0.11264
+1086,31.7342,31.5117,29.2089,0.069248,0.881344,0.008064,0.004224,0.028704,0.095232,0.102368,27.9068,0.112928
+1087,32.3969,30.8672,29.2782,0.069664,0.960096,0.006528,0.02032,0.028832,0.102208,0.098304,27.8771,0.115136
+1088,33.1907,30.1289,30.4434,0.068448,0.937664,0.006464,0.005536,0.027232,0.096256,0.096256,29.0918,0.113696
+1089,31.1701,32.082,30.5417,0.069568,1.04323,0.008,0.005536,0.027424,0.104448,0.098304,29.0714,0.113824
+1090,31.8289,31.418,29.1885,0.069152,0.897952,0.00736,0.004928,0.028192,0.103936,0.09696,27.8654,0.114688
+1091,32.6572,30.6211,30.3923,0.069664,0.94,0.00784,0.005568,0.027552,0.096288,0.096224,29.0345,0.114688
+1092,31.9401,31.3086,29.1812,0.0696,0.879904,0.006912,0.005216,0.027552,0.095648,0.096864,27.8855,0.114048
+1093,32.9684,30.332,30.4128,0.069632,0.890464,0.00656,0.00608,0.028736,0.1024,0.101664,29.0926,0.114688
+1094,31.6557,31.5898,30.3643,0.068544,0.884192,0.006656,0.005376,0.027392,0.096256,0.098048,29.0634,0.1144
+1095,31.644,31.6016,29.2455,0.068992,0.907008,0.007104,0.005568,0.0272,0.096288,0.098176,27.9205,0.11472
+1096,32.7869,30.5,29.2106,0.069632,0.908416,0.007072,0.004192,0.028544,0.095904,0.096608,27.8856,0.114688
+1097,32.9642,30.3359,30.4626,0.069216,0.930528,0.006432,0.006144,0.02832,0.095872,0.097024,29.116,0.113024
+1098,31.5582,31.6875,29.2004,0.07168,0.909312,0.007872,0.004416,0.028672,0.095616,0.096896,27.8732,0.112672
+1099,32.9091,30.3867,29.2031,0.068256,0.912864,0.006688,0.006016,0.028128,0.09488,0.096288,27.8766,0.113408
+1100,32.6739,30.6055,30.4169,0.069664,0.94,0.007776,0.004512,0.028672,0.096288,0.100064,29.0566,0.113312
+1101,31.6792,31.5664,29.2224,0.069408,0.91568,0.0072,0.005088,0.02864,0.095968,0.096576,27.8897,0.114208
+1102,32.8542,30.4375,29.993,0.07504,0.894976,0.00688,0.005216,0.027552,0.096256,0.099776,28.6726,0.11472
+1103,31.9401,31.3086,30.4894,0.069536,0.997344,0.007104,0.005568,0.028224,0.095232,0.096256,29.0773,0.112832
+1104,31.5854,31.6602,29.245,0.069664,0.939456,0.006688,0.005344,0.027424,0.096352,0.098208,27.8856,0.11632
+1105,32.9472,30.3516,30.4621,0.06928,0.952864,0.007392,0.004896,0.028608,0.094304,0.098048,29.0941,0.11264
+1106,31.7224,31.5234,30.3739,0.069632,0.861536,0.006816,0.005408,0.02736,0.095808,0.096704,29.0959,0.114688
+1107,31.3188,31.9297,29.2061,0.069664,0.93184,0.008032,0.005536,0.02736,0.095744,0.096768,27.8569,0.114272
+1108,32.8458,30.4453,29.2088,0.069696,0.919584,0.006176,0.005824,0.026944,0.096256,0.097696,27.8729,0.113728
+1109,33.2338,30.0898,30.4005,0.069632,0.882144,0.006688,0.005984,0.02832,0.094752,0.097632,29.102,0.113312
+1110,31.5854,31.6602,29.3125,0.069504,1.02822,0.00624,0.005888,0.02816,0.101024,0.10448,27.8547,0.114368
+1111,32.9218,30.375,29.1565,0.069632,0.92096,0.006784,0.006112,0.028128,0.094784,0.096256,27.8198,0.114048
+1112,33.1477,30.168,30.3432,0.069632,0.868352,0.007936,0.004352,0.028672,0.094208,0.096352,29.0608,0.112864
+1113,31.5543,31.6914,30.3963,0.06816,0.918688,0.007008,0.0056,0.028256,0.095168,0.098336,29.0625,0.112576
+1114,31.8804,31.3672,29.2208,0.069184,0.915616,0.006432,0.005568,0.028448,0.095008,0.096256,27.8897,0.114656
+1115,32.6781,30.6016,30.5101,0.077632,0.972992,0.007968,0.005568,0.028512,0.096384,0.098144,29.109,0.11392
+1116,31.8804,31.3672,29.1779,0.069408,0.89104,0.006208,0.005824,0.028416,0.094784,0.096352,27.8711,0.11472
+1117,33.2597,30.0664,30.3624,0.068352,0.886656,0.006272,0.006144,0.028384,0.09568,0.097152,29.059,0.114688
+1118,31.821,31.4258,30.3638,0.069472,0.897056,0.006464,0.005536,0.027232,0.095584,0.096928,29.0529,0.112672
+1119,31.7776,31.4688,29.1677,0.06848,0.927712,0.006144,0.006144,0.028544,0.094336,0.098016,27.8242,0.11408
+1120,32.9557,30.3438,29.2411,0.069824,0.929824,0.007296,0.00496,0.028224,0.094656,0.096256,27.8956,0.114432
+1121,33.0024,30.3008,30.3247,0.069632,0.90112,0.0072,0.005088,0.028544,0.094336,0.098304,29.0075,0.112992
+1122,31.7776,31.4688,29.219,0.070016,0.945376,0.006944,0.004096,0.028672,0.095552,0.09696,27.8569,0.114528
+1123,32.7408,30.543,29.3304,0.068544,1.02605,0.008064,0.005536,0.02736,0.096256,0.096256,27.8897,0.11264
+1124,32.6323,30.6445,30.5026,0.074464,0.988768,0.006432,0.005664,0.02848,0.096832,0.098336,29.0895,0.11408
+1125,31.6792,31.5664,30.4664,0.068608,0.989184,0.007552,0.004736,0.028672,0.096064,0.096448,29.0611,0.114048
+1126,31.6166,31.6289,29.2794,0.069632,0.964064,0.00672,0.005344,0.027392,0.097728,0.09856,27.8935,0.116416
+1127,32.724,30.5586,30.4359,0.06944,0.934656,0.0072,0.005088,0.028672,0.095456,0.09696,29.0857,0.112768
+1128,31.3802,31.8672,29.3007,0.069632,0.976896,0.007264,0.00496,0.028128,0.096864,0.098304,27.9033,0.115424
+1129,32.9345,30.3633,30.3698,0.0696,0.886848,0.007424,0.004832,0.028672,0.096032,0.096512,29.0672,0.11264
+1130,31.5582,31.6875,30.3161,0.069536,0.872224,0.006464,0.005472,0.028608,0.09648,0.09808,29.025,0.114272
+1131,32.0681,31.1836,29.143,0.069664,0.87392,0.006688,0.005888,0.028,0.094784,0.096608,27.854,0.113472
+1132,32.7533,30.5312,29.2598,0.069632,0.960512,0.007712,0.004576,0.028448,0.106752,0.097408,27.87,0.114688
+1133,33.2036,30.1172,30.4135,0.070208,0.890976,0.007872,0.005536,0.027552,0.096288,0.097568,29.1048,0.11264
+1134,31.8368,31.4102,29.1039,0.069504,0.860288,0.00624,0.005888,0.028672,0.09584,0.100928,27.8118,0.124736
+1135,32.8289,30.4609,29.2172,0.070144,0.920608,0.007104,0.005696,0.028256,0.096416,0.09696,27.879,0.113056
+1136,33.0152,30.2891,30.4574,0.06912,0.969216,0.007168,0.004928,0.028128,0.09488,0.096352,29.0734,0.114272
+1137,31.821,31.4258,30.3943,0.069632,0.91248,0.007072,0.005664,0.028512,0.096896,0.097728,29.063,0.113344
+1138,31.7067,31.5391,29.1642,0.069312,0.889152,0.006848,0.005152,0.027616,0.095552,0.096768,27.8591,0.114656
+1139,32.9091,30.3867,30.5498,0.069312,1.02432,0.007488,0.0048,0.028672,0.096288,0.098272,29.1078,0.112896
+1140,31.6792,31.5664,29.2291,0.069632,0.960512,0.007552,0.004736,0.028352,0.094528,0.096448,27.8546,0.112672
+1141,32.6948,30.5859,29.6099,0.069408,0.960736,0.007424,0.004864,0.028672,0.096256,0.096288,28.2316,0.114688
+1142,32.0641,31.1875,30.4827,0.06784,1.00966,0.0072,0.004928,0.028448,0.094592,0.097792,29.0596,0.11264
+1143,31.7146,31.5312,29.261,0.069632,0.931136,0.006848,0.005824,0.028384,0.100992,0.097376,27.9046,0.116256
+1144,33.0408,30.2656,29.1349,0.069632,0.897056,0.008,0.004256,0.028704,0.095712,0.0968,27.82,0.11472
+1145,33.1821,30.1367,30.4021,0.069632,0.894112,0.007008,0.005696,0.028224,0.095104,0.096256,29.0931,0.112992
+1146,31.7264,31.5195,29.2352,0.070784,0.912256,0.008064,0.004224,0.028672,0.095488,0.097024,27.9054,0.11328
+1147,32.8416,30.4492,29.1281,0.069344,0.88512,0.007808,0.005568,0.027616,0.096224,0.096256,27.8262,0.113952
+1148,33.1864,30.1328,30.4312,0.069632,0.98512,0.008,0.004256,0.028672,0.096256,0.096288,29.0284,0.114656
+1149,30.8769,32.3867,30.4783,0.069216,1.01555,0.006816,0.005792,0.02832,0.094912,0.096288,29.0487,0.112768
+1150,32.3192,30.9414,29.3915,0.069792,1.09395,0.006272,0.005728,0.02848,0.096864,0.097568,27.8781,0.114688
+1151,32.4873,30.7812,30.5363,0.068224,0.982464,0.01696,0.006144,0.032768,0.09552,0.096992,29.1246,0.11264
+1152,31.0868,32.168,29.3172,0.077024,1.02285,0.006144,0.016384,0.029856,0.095264,0.09936,27.8536,0.116736
+1153,32.0762,31.1758,30.5295,0.069632,1.02179,0.006304,0.006144,0.036672,0.0944,0.097664,29.0838,0.113152
+1154,32.2621,30.9961,30.4422,0.068352,0.96048,0.008,0.004288,0.028672,0.096256,0.098304,29.0631,0.114784
+1155,31.976,31.2734,29.3121,0.083968,1.00323,0.006432,0.006144,0.028128,0.094752,0.097312,27.8784,0.113792
+1156,32.8374,30.4531,29.6285,0.081056,0.94656,0.006624,0.005536,0.027424,0.096064,0.096288,28.2542,0.114784
+1157,32.4133,30.8516,30.337,0.069632,0.917504,0.007392,0.004896,0.028704,0.094336,0.097984,29.004,0.112608
+1158,31.9561,31.293,29.1385,0.069664,0.884448,0.0064,0.005696,0.02832,0.095008,0.096256,27.8379,0.114848
+1159,32.926,30.3711,29.214,0.071424,0.87824,0.006752,0.005888,0.028192,0.094944,0.096256,27.9183,0.113984
+1160,32.9982,30.3047,30.5212,0.069664,0.972768,0.008,0.004288,0.028672,0.09568,0.096832,29.1308,0.114528
+1161,31.6597,31.5859,29.2038,0.071232,0.88928,0.008064,0.005536,0.027616,0.096032,0.097728,27.8943,0.113984
+1162,32.9684,30.332,29.1246,0.069312,0.893152,0.00624,0.00592,0.028384,0.09472,0.097376,27.8148,0.114688
+1163,32.8626,30.4297,30.5111,0.069632,1.0199,0.00768,0.00464,0.029696,0.096224,0.096704,29.0719,0.114752
+1164,31.7106,31.5352,30.4865,0.069664,0.945408,0.00688,0.005344,0.027424,0.096256,0.097568,29.1253,0.11264
+1165,31.5232,31.7227,29.1635,0.069632,0.902592,0.00672,0.005888,0.028224,0.09616,0.098176,27.8413,0.114816
+1166,32.8205,30.4688,30.335,0.083968,0.884064,0.006816,0.005312,0.027456,0.09584,0.09632,29.0216,0.113568
+1167,31.7224,31.5234,29.1623,0.068576,0.95232,0.007744,0.004544,0.028672,0.096,0.098464,27.7907,0.115264
+1168,32.8753,30.418,30.4028,0.069632,0.944384,0.007392,0.004864,0.02864,0.095936,0.09664,29.0421,0.113152
+1169,31.7973,31.4492,30.3493,0.069632,0.907264,0.007776,0.005568,0.027616,0.094272,0.09824,29.0236,0.115392
+1170,31.7697,31.4766,29.2591,0.068928,0.979648,0.007968,0.004352,0.02864,0.094208,0.097312,27.8635,0.114624
+1171,32.6032,30.6719,29.2866,0.068256,0.995328,0.0072,0.005088,0.028672,0.094368,0.09744,27.8655,0.124768
+1172,33.29,30.0391,30.347,0.069664,0.894944,0.008128,0.00416,0.028672,0.096448,0.098048,29.0325,0.1144
+1173,31.6049,31.6406,29.2461,0.068544,0.970464,0.0064,0.006144,0.028512,0.095552,0.096256,27.8612,0.113088
+1174,33.0195,30.2852,29.3654,0.06928,1.12074,0.015968,0.004544,0.02864,0.095872,0.09776,27.8164,0.116256
+1175,33.195,30.125,30.3388,0.069568,0.90288,0.006496,0.006144,0.028288,0.096032,0.096576,29.0201,0.1128
+1176,31.9003,31.3477,30.3347,0.069248,0.883072,0.006144,0.006048,0.02832,0.094752,0.09792,29.0327,0.11648
+1177,31.9561,31.293,29.1287,0.069632,0.863488,0.006912,0.005696,0.028416,0.094912,0.098336,27.8488,0.112512
+1178,33.0451,30.2617,30.3475,0.06928,0.922208,0.007456,0.004832,0.028384,0.094496,0.097376,29.0087,0.114752
+1179,31.75,31.4961,29.1943,0.070624,0.938016,0.007264,0.004992,0.028672,0.095616,0.096896,27.8376,0.114592
+1180,32.9557,30.3438,30.4337,0.068384,0.905216,0.007168,0.004992,0.028064,0.094976,0.097376,29.1132,0.114272
+1181,31.7776,31.4688,30.4078,0.069664,0.913152,0.006368,0.006144,0.028288,0.095968,0.096384,29.0792,0.112576
+1182,31.6362,31.6094,29.2352,0.069632,0.94144,0.006784,0.00528,0.027488,0.095456,0.096896,27.8673,0.124928
+1183,32.9007,30.3945,29.2411,0.069888,0.95152,0.006944,0.005664,0.028224,0.096992,0.096512,27.8712,0.114208
+1184,33.1134,30.1992,30.2961,0.069248,0.879008,0.007552,0.004704,0.028448,0.094496,0.096192,29.0037,0.112672
+1185,31.0642,32.1914,29.2223,0.069664,0.931808,0.007648,0.00464,0.028672,0.096416,0.098144,27.8692,0.116096
+1186,33.521,29.832,29.2604,0.06816,0.990592,0.006784,0.005216,0.027552,0.09616,0.096352,27.8565,0.113024
+1187,32.9133,30.3828,30.4934,0.068352,0.970752,0.00784,0.005568,0.027552,0.1024,0.104448,29.0898,0.116736
+1188,31.6088,31.6367,30.4536,0.069632,0.964608,0.007264,0.004704,0.028288,0.094912,0.09744,29.0739,0.112896
+1189,31.7067,31.5391,29.1676,0.069216,0.905376,0.0064,0.006144,0.028224,0.094816,0.097952,27.8448,0.11472
+1190,32.9176,30.3789,30.3854,0.071488,0.921728,0.006208,0.006048,0.028256,0.09472,0.09808,29.045,0.113888
+1191,31.7382,31.5078,29.2229,0.068512,0.901152,0.00736,0.004896,0.028672,0.1024,0.1024,27.8918,0.11568
+1192,33.011,30.293,30.4087,0.070176,0.906816,0.006592,0.005472,0.028608,0.094944,0.098176,29.0848,0.11312
+1193,31.7973,31.4492,30.344,0.068416,0.895008,0.007488,0.0048,0.02864,0.095552,0.096448,29.035,0.11264
+1194,31.5738,31.6719,29.2448,0.07168,0.935968,0.008,0.004256,0.028672,0.096256,0.106528,27.8794,0.114016
+1195,33.1263,30.1875,29.1388,0.067808,0.877664,0.006976,0.005472,0.028544,0.095008,0.096256,27.8467,0.1144
+1196,32.9769,30.3242,30.4074,0.076416,0.994912,0.00656,0.005504,0.027264,0.097344,0.097216,28.9893,0.112864
+1197,31.9122,31.3359,29.138,0.069632,0.854048,0.007264,0.004992,0.028672,0.095872,0.10688,27.8569,0.113792
+1198,32.2662,30.9922,29.3721,0.069632,1.09965,0.006272,0.005856,0.028096,0.095072,0.110592,27.8405,0.116448
+1199,32.5658,30.707,30.5011,0.06912,1.02227,0.00656,0.00608,0.028672,0.110272,0.102784,29.0427,0.11264
+1200,32.1366,31.1172,30.3645,0.06848,0.865664,0.006816,0.005216,0.02768,0.096096,0.09776,29.0821,0.114688
+1201,31.5815,31.6641,29.1389,0.069632,0.908832,0.006624,0.006048,0.028096,0.096,0.113568,27.7975,0.11264
+1202,33.1692,30.1484,30.2927,0.06832,0.845824,0.007584,0.004704,0.028384,0.094496,0.097792,29.0309,0.11472
+1203,31.8527,31.3945,29.1322,0.070752,0.87088,0.006592,0.006016,0.028256,0.094752,0.097536,27.8445,0.112864
+1204,32.6822,30.5977,30.4315,0.068576,0.974848,0.007488,0.0048,0.028256,0.094656,0.097248,29.0427,0.112896
+1205,31.5349,31.7109,30.4358,0.070112,0.968704,0.007552,0.004736,0.028672,0.095392,0.09712,29.05,0.113472
+1206,31.3995,31.8477,29.2688,0.068576,1.00147,0.00768,0.004576,0.028672,0.100352,0.09792,27.845,0.11456
+1207,32.8289,30.4609,29.184,0.069632,0.89088,0.006144,0.006144,0.028384,0.094496,0.101696,27.874,0.112704
+1208,32.1366,31.1172,31.915,0.068576,1.22381,0.016576,0.0048,0.028416,0.104704,0.0976,30.2558,0.114688
+1209,30.6403,32.6367,29.2254,0.069248,0.94496,0.007936,0.005568,0.035648,0.094208,0.110368,27.8448,0.11264
+1210,31.968,31.2812,29.4947,0.069504,1.22074,0.007264,0.004928,0.02816,0.094816,0.099968,27.8429,0.1264
+1211,32.2825,30.9766,30.8382,0.070048,1.3527,0.007104,0.005536,0.027296,0.095648,0.096896,29.0693,0.113696
+1212,31.5038,31.7422,29.166,0.06928,0.940192,0.006752,0.005248,0.02752,0.096256,0.096256,27.8077,0.116736
+1213,32.4174,30.8477,29.2225,0.069056,0.963264,0.007584,0.004704,0.028672,0.095776,0.09648,27.8444,0.112608
+1214,33.0451,30.2617,30.558,0.06944,1.09178,0.008064,0.004224,0.028672,0.095616,0.096864,29.0489,0.114496
+1215,31.8487,31.3984,30.3046,0.070144,0.884576,0.00672,0.00592,0.02816,0.094976,0.097568,29.0042,0.112352
+1216,31.691,31.5547,29.1781,0.06928,0.889472,0.007776,0.004512,0.028672,0.102432,0.101344,27.86,0.114688
+1217,33.0237,30.2812,30.3623,0.070368,0.944128,0.006144,0.005792,0.028096,0.095168,0.097664,29.0022,0.112768
+1218,31.8368,31.4102,29.1215,0.06864,0.859552,0.00672,0.005312,0.028608,0.095104,0.112128,27.8308,0.114688
+1219,32.7324,30.5508,30.3938,0.069376,0.955808,0.007008,0.005632,0.028192,0.097248,0.09808,29.0198,0.112672
+1220,31.6557,31.5898,30.3812,0.06944,0.919648,0.006272,0.005856,0.028032,0.09504,0.09632,29.0468,0.113856
+1221,31.5893,31.6562,29.1416,0.070208,0.925696,0.006336,0.005952,0.02864,0.095296,0.096896,27.7998,0.112768
+1222,32.7533,30.5312,29.1971,0.069376,0.93888,0.007584,0.004704,0.028704,0.095296,0.097184,27.8425,0.112832
+1223,31.1095,32.1445,30.4821,0.075776,0.99328,0.007616,0.004672,0.028672,0.097664,0.096896,29.0648,0.112768
+1224,33.1306,30.1836,29.2172,0.069632,1.00803,0.00768,0.004608,0.02864,0.095776,0.096768,27.7934,0.11264
+1225,32.8711,30.4219,29.1388,0.068352,0.929792,0.006144,0.006144,0.02848,0.096448,0.097728,27.7899,0.115808
+1226,32.6656,30.6133,30.4849,0.069248,1.04032,0.006784,0.00528,0.027488,0.096064,0.096448,29.0304,0.112832
+1227,31.6949,31.5508,30.4435,0.069664,1.03398,0.006368,0.006144,0.028544,0.095488,0.097184,28.9915,0.114688
+1228,31.8487,31.3984,29.1688,0.069216,0.90768,0.007776,0.004544,0.02864,0.09536,0.097152,27.8446,0.113824
+1229,32.7533,30.5312,30.4016,0.069216,0.930208,0.00752,0.004768,0.028672,0.101536,0.097024,29.0469,0.115744
+1230,31.7973,31.4492,29.1389,0.069344,0.907552,0.00736,0.004928,0.028384,0.094496,0.098304,27.8139,0.114688
+1231,32.96,30.3398,30.3721,0.069248,0.938624,0.007584,0.004704,0.029824,0.094976,0.096384,29.0181,0.11264
+1232,31.7894,31.457,30.2984,0.069952,0.866144,0.006304,0.005728,0.028352,0.094944,0.09728,29.0169,0.1128
+1233,31.6871,31.5586,29.1905,0.069504,0.90576,0.007264,0.005024,0.028608,0.094272,0.10448,27.861,0.114656
+1234,32.8542,30.4375,29.1799,0.07104,0.96064,0.006656,0.005344,0.027424,0.097312,0.097248,27.7996,0.114688
+1235,32.9812,30.3203,30.4251,0.069632,0.956416,0.007744,0.004544,0.028672,0.096256,0.096288,29.0529,0.11264
+1236,31.7539,31.4922,29.1642,0.068288,0.907264,0.007392,0.004896,0.028192,0.096544,0.097824,27.8371,0.116736
+1237,32.8205,30.4688,29.1779,0.069632,0.908672,0.006784,0.005856,0.028352,0.094816,0.097824,27.8512,0.114688
+1238,32.8584,30.4336,30.4096,0.06848,0.968288,0.006528,0.005568,0.0272,0.09616,0.096448,29.0279,0.113056
+1239,31.5116,31.7344,30.3992,0.068288,0.96784,0.006848,0.005568,0.02736,0.096256,0.096256,29.0181,0.11264
+1240,31.5699,31.6758,29.2596,0.073792,0.970688,0.007488,0.0048,0.02848,0.096224,0.097888,27.8637,0.116512
+1241,32.6489,30.6289,30.462,0.069664,1.00758,0.00768,0.004608,0.028672,0.096256,0.096256,29.038,0.113216
+1242,31.7776,31.4688,29.1594,0.069088,0.911712,0.006688,0.00544,0.027328,0.096032,0.09648,27.8303,0.11632
+1243,32.8584,30.4336,29.1476,0.070016,0.920736,0.007008,0.005728,0.028192,0.095104,0.097408,27.8107,0.112704
+1244,33.2079,30.1133,31.5704,0.069312,0.882592,0.007072,0.00416,0.028608,0.095712,0.096576,30.2712,0.1152
+1245,30.5016,32.7852,29.2289,0.069664,0.942048,0.008,0.005536,0.027424,0.096256,0.097792,27.8693,0.112896
+1246,33.0707,30.2383,29.1902,0.069024,0.880352,0.00704,0.004224,0.028544,0.09536,0.096992,27.8954,0.113248
+1247,32.6447,30.6328,30.3482,0.070624,0.960544,0.007552,0.004704,0.028672,0.097568,0.096992,28.969,0.112576
+1248,31.6753,31.5703,29.1667,0.06912,0.938368,0.006272,0.00576,0.028352,0.094912,0.096352,27.8138,0.11376
+1249,32.6822,30.5977,29.2638,0.081952,0.97072,0.007712,0.012768,0.028672,0.110464,0.098432,27.8364,0.116672
+1250,32.7911,30.4961,30.4139,0.069568,0.993248,0.01744,0.005088,0.028672,0.095488,0.09696,28.9952,0.112288
+1251,31.2386,32.0117,29.9664,0.069472,1.00982,0.00752,0.004768,0.028672,0.103776,0.096928,28.5307,0.114784
+1252,32.4749,30.793,29.1492,0.069664,0.877888,0.006816,0.005984,0.02816,0.096224,0.096992,27.8543,0.113184
+1253,32.5949,30.6797,30.3739,0.069632,0.935552,0.007968,0.004704,0.028672,0.096288,0.096224,29.0202,0.114688
+1254,31.469,31.7773,29.1911,0.069792,0.973632,0.007328,0.004928,0.028352,0.096,0.096864,27.8009,0.113344
+1255,32.8374,30.4531,30.5562,0.069632,1.05872,0.00624,0.006144,0.028672,0.095744,0.096832,29.0795,0.114688
+1256,31.566,31.6797,30.3432,0.069312,0.91184,0.007712,0.004576,0.028672,0.095488,0.09632,29.0159,0.113376
+1257,31.338,31.9102,29.2435,0.069728,0.997376,0.00704,0.005664,0.028288,0.09712,0.09808,27.8239,0.116256
+1258,32.96,30.3398,29.2934,0.06864,1.00666,0.00688,0.013408,0.0296,0.100384,0.105792,27.8486,0.113408
+1259,33.0067,30.2969,30.3484,0.069664,0.872416,0.006144,0.006144,0.028608,0.098368,0.10432,29.0469,0.115776
+1260,31.1701,32.082,29.2413,0.069248,0.990816,0.006976,0.005184,0.027552,0.096256,0.096256,27.836,0.113088
+1261,32.4914,30.7773,29.2822,0.0688,1.06374,0.006208,0.00608,0.028672,0.1024,0.098272,27.7932,0.114816
+1262,32.8838,30.4102,30.4189,0.069632,0.997376,0.007584,0.004704,0.028672,0.095552,0.09696,29.0053,0.113184
+1263,30.9627,32.2969,30.7569,0.069632,1.32678,0.006464,0.006144,0.036704,0.104352,0.10032,28.9918,0.114688
+1264,31.7776,31.4688,29.0791,0.069152,0.899264,0.006656,0.005408,0.02736,0.095968,0.096544,27.7647,0.113984
+1265,32.4626,30.8047,30.4539,0.069248,0.987616,0.006144,0.006144,0.028448,0.09648,0.0976,29.0492,0.113024
+1266,31.4458,31.8008,29.268,0.069248,1.01402,0.006336,0.005696,0.028224,0.094912,0.096448,27.8385,0.114688
+1267,32.0481,31.2031,30.5172,0.069632,0.98304,0.007904,0.005568,0.037216,0.095936,0.10928,29.0793,0.129408
+1268,31.5738,31.6719,30.4666,0.068192,0.954368,0.018432,0.005536,0.041568,0.096128,0.096384,29.0543,0.131616
+1269,31.4419,31.8047,29.3048,0.069664,1.05677,0.008096,0.005536,0.028672,0.09648,0.097856,27.8166,0.12512
+1270,32.6531,30.625,29.2368,0.082016,0.97024,0.00688,0.00512,0.027648,0.096,0.096512,27.838,0.1144
+1271,32.4626,30.8047,30.4689,0.068416,0.98096,0.016384,0.006144,0.02832,0.09648,0.098432,29.059,0.114784
+1272,31.3112,31.9375,29.3061,0.069408,1.05101,0.007584,0.01472,0.028512,0.094592,0.097632,27.8289,0.11376
+1273,32.6364,30.6406,30.4344,0.069408,0.964832,0.021632,0.004992,0.028672,0.096256,0.098304,29.0345,0.115808
+1274,31.411,31.8359,29.1595,0.06768,0.878592,0.00784,0.004448,0.028672,0.095808,0.09648,27.8653,0.114656
+1275,32.6531,30.625,29.537,0.07008,0.90144,0.007872,0.005536,0.027552,0.095712,0.096704,28.2185,0.113632
+1276,31.4651,31.7812,31.0419,0.067968,1.61997,0.007456,0.004864,0.028544,0.096128,0.100576,29.0038,0.11264
+1277,29.5578,33.832,29.4122,0.068448,1.15098,0.00624,0.00592,0.026784,0.098016,0.108608,27.8325,0.114688
+1278,34.9679,28.5977,29.2086,0.069632,0.9728,0.007872,0.004448,0.028608,0.095296,0.096416,27.8188,0.114656
+1279,32.6989,30.582,30.4069,0.068192,1.01581,0.007744,0.004576,0.02864,0.096256,0.09744,28.9719,0.116352
+1280,31.7067,31.5391,29.1818,0.069664,0.985088,0.00784,0.004416,0.028672,0.094208,0.097856,27.7795,0.11456
+1281,32.6781,30.6016,29.1971,0.069504,0.98192,0.0072,0.00512,0.028672,0.1024,0.098304,27.7893,0.114688
+1282,32.7995,30.4883,30.4042,0.069664,0.94,0.006144,0.005888,0.028256,0.094912,0.097856,29.0472,0.114272
+1283,31.1549,32.0977,29.3324,0.068448,1.07069,0.00656,0.014336,0.03072,0.1024,0.100352,27.8241,0.11472
+1284,32.8374,30.4531,29.1315,0.070144,0.894432,0.00704,0.005152,0.027584,0.096256,0.096384,27.8199,0.114592
+1285,32.9176,30.3789,30.435,0.06928,0.948576,0.007488,0.0048,0.028672,0.095744,0.096768,29.0673,0.116384
+1286,31.0491,32.207,30.4582,0.069984,1.01213,0.007808,0.00448,0.028544,0.095392,0.096864,29.0301,0.112896
+1287,31.3995,31.8477,29.1741,0.069536,0.973216,0.00784,0.005568,0.028928,0.102912,0.098272,27.7731,0.114688
+1288,33.0621,30.2461,30.3427,0.07136,0.956128,0.006752,0.005344,0.027488,0.112576,0.097984,28.9501,0.114912
+1289,31.7973,31.4492,29.1656,0.069632,0.947648,0.00672,0.005888,0.028256,0.09488,0.110592,27.7891,0.112896
+1290,32.7115,30.5703,30.5104,0.069632,1.06906,0.008064,0.004224,0.028672,0.108576,0.098272,29.0079,0.116032
+1291,31.8052,31.4414,30.2907,0.069824,0.883264,0.008032,0.005568,0.02736,0.095584,0.096928,28.9907,0.11344
+1292,31.3764,31.8711,29.3458,0.069664,1.05434,0.006496,0.01344,0.02752,0.096224,0.09632,27.8687,0.113088
+1293,32.724,30.5586,29.2388,0.067968,1.0008,0.006816,0.005952,0.039104,0.095904,0.096608,27.8118,0.11376
+1294,32.888,30.4062,30.41,0.06944,0.960736,0.007488,0.0048,0.028512,0.096416,0.098336,29.0304,0.113856
+1295,31.5815,31.6641,29.3622,0.068992,1.09632,0.006144,0.006144,0.028384,0.094496,0.097856,27.8509,0.112896
+1296,32.4133,30.8516,29.2702,0.077536,1.0009,0.007104,0.004192,0.036832,0.098016,0.097952,27.8328,0.11488
+1297,32.8247,30.4648,30.3125,0.069472,0.888992,0.007424,0.004864,0.029856,0.095072,0.096288,29.0031,0.117376
+1298,31.6401,31.6055,30.334,0.075776,0.870432,0.007648,0.004608,0.028576,0.097664,0.098176,29.0374,0.113696
+1299,31.4651,31.7812,29.1385,0.06896,0.875456,0.006336,0.005952,0.02832,0.09456,0.097728,27.8472,0.114048
+1300,32.4832,30.7852,30.5309,0.0696,1.04963,0.016736,0.0048,0.044128,0.0992,0.10576,29.027,0.114048
+1301,31.6753,31.5703,29.1892,0.069216,0.932256,0.007712,0.004576,0.028672,0.096256,0.096256,27.8405,0.113696
+1302,31.5543,31.6914,30.49,0.069408,1.03248,0.006464,0.014464,0.028544,0.096192,0.114464,29.0122,0.115776
+1303,31.8289,31.418,30.6196,0.069408,1.17565,0.016544,0.00464,0.044352,0.115072,0.096576,28.9845,0.1128
+1304,31.9441,31.3047,29.1255,0.068704,0.900896,0.016384,0.005536,0.028448,0.096448,0.098752,27.7916,0.118752
+1305,31.9601,31.2891,29.4448,0.068288,1.23085,0.018432,0.006144,0.02832,0.100736,0.097952,27.7794,0.114688
+1306,32.6489,30.6289,30.4538,0.104448,0.9824,0.006784,0.005344,0.028928,0.102944,0.098304,29.011,0.113568
+1307,31.972,31.2773,29.2209,0.069664,1.01555,0.006432,0.00608,0.028608,0.095552,0.097024,27.7873,0.114688
+1308,32.8542,30.4375,30.3165,0.06944,0.896704,0.006656,0.005472,0.02832,0.095232,0.096256,29.0028,0.115648
+1309,32.0561,31.1953,29.0177,0.069632,0.85568,0.006528,0.006112,0.028192,0.09472,0.097408,27.7452,0.11424
+1310,32.7827,30.5039,29.4523,0.0696,0.943168,0.007072,0.00416,0.028672,0.097632,0.10512,28.0836,0.113216
+1311,32.7659,30.5195,30.5008,0.07168,1.01926,0.008832,0.006048,0.030752,0.095936,0.102784,29.0528,0.112736
+1312,31.4961,31.75,29.269,0.068608,1.00966,0.007712,0.004576,0.028672,0.11024,0.100736,27.815,0.123744
+1313,32.8331,30.457,29.2461,0.070048,1.02557,0.006848,0.005856,0.0392,0.09776,0.0968,27.7893,0.114688
+1314,32.8711,30.4219,30.4318,0.068128,0.995328,0.006144,0.005984,0.039104,0.095616,0.096704,29.0101,0.11472
+1315,31.469,31.7773,29.2964,0.069632,1.00147,0.022528,0.006144,0.02864,0.096288,0.098304,27.858,0.115392
+1316,32.5783,30.6953,29.1105,0.069216,0.881216,0.007584,0.004704,0.028672,0.095872,0.09664,27.8137,0.112832
+1317,32.7366,30.5469,30.3539,0.06912,0.949056,0.006304,0.006112,0.028608,0.095648,0.096928,28.9874,0.114688
+1318,31.6753,31.5703,29.0665,0.06944,0.880576,0.006528,0.005568,0.02848,0.094976,0.1024,27.7647,0.113792
+1319,33.1563,30.1602,29.1017,0.069632,0.88064,0.008096,0.005568,0.028864,0.098784,0.09632,27.7995,0.114272
+1320,32.3192,30.9414,30.5234,0.07776,1.08045,0.007072,0.00416,0.02864,0.095744,0.107008,29.0096,0.112992
+1321,31.4961,31.75,30.3225,0.069632,0.892928,0.007776,0.005568,0.028736,0.095136,0.108544,28.9886,0.1256
+1322,31.7106,31.5352,29.2306,0.069632,0.993312,0.007424,0.004832,0.028224,0.094688,0.097664,27.8206,0.114144
+1323,32.3723,30.8906,30.4476,0.06912,1.01427,0.008032,0.014496,0.030336,0.098432,0.096512,29.0017,0.114688
+1324,31.746,31.5,29.1226,0.0696,0.882016,0.006848,0.005312,0.027456,0.096256,0.098112,27.8223,0.114688
+1325,33.1821,30.1367,30.3104,0.069632,0.878592,0.008096,0.005568,0.028352,0.095104,0.096352,29.016,0.112672
+1326,31.8408,31.4062,30.253,0.069632,0.883712,0.007104,0.004192,0.02864,0.096096,0.096448,28.9525,0.114624
+1327,31.9122,31.3359,29.1245,0.069504,0.927296,0.006912,0.00576,0.028288,0.095008,0.097376,27.7813,0.112992
+1328,32.5162,30.7539,29.1395,0.07024,0.910464,0.007008,0.004224,0.029664,0.102816,0.096768,27.8049,0.11344
+1329,32.7953,30.4922,31.5149,0.06784,0.92512,0.00672,0.00592,0.02816,0.094944,0.097792,30.1749,0.113504
+1330,30.81,32.457,29.0931,0.071232,0.876992,0.008064,0.004224,0.028672,0.096096,0.096416,27.7975,0.113888
+1331,32.8669,30.4258,29.2927,0.069568,1.0119,0.007488,0.014656,0.028768,0.094496,0.09776,27.8545,0.113568
+1332,32.9897,30.3125,30.3258,0.068576,0.870432,0.00752,0.004736,0.028672,0.096256,0.098336,29.038,0.113216
+1333,31.8091,31.4375,29.0825,0.069632,0.869248,0.007392,0.004896,0.028672,0.096192,0.09632,27.7975,0.11264
+1334,31.2233,32.0273,29.2063,0.069024,1.01645,0.007456,0.004832,0.028448,0.095776,0.096992,27.7729,0.114464
+1335,34.7072,28.8125,30.4787,0.07008,1.03168,0.006656,0.005984,0.04112,0.096192,0.096352,29.0178,0.112832
+1336,31.5465,31.6992,30.4066,0.069632,0.958464,0.00768,0.004608,0.0408,0.096096,0.096576,29.0181,0.114656
+1337,30.178,33.1367,29.4462,0.06768,1.18582,0.01632,0.005312,0.04384,0.09552,0.097056,27.8214,0.113312
+1338,34.0019,29.4102,30.4822,0.068864,0.983488,0.006656,0.005344,0.040896,0.095072,0.098304,29.0673,0.11632
+1339,30.1602,33.1562,29.3288,0.069632,1.09674,0.015072,0.004384,0.027936,0.094912,0.098304,27.8077,0.11408
+1340,34.1652,29.2695,30.4381,0.068576,0.972512,0.006432,0.005568,0.028384,0.095072,0.097312,29.0494,0.11488
+1341,30.1283,33.1914,30.5517,0.069632,1.12576,0.006688,0.005216,0.027648,0.114528,0.096416,28.9915,0.114368
+1342,31.2653,31.9844,29.5527,0.069984,1.27542,0.006816,0.02048,0.028672,0.098304,0.098304,27.8385,0.116288
+1343,34.0516,29.3672,29.2022,0.06976,1.01162,0.006304,0.006144,0.040544,0.094624,0.097504,27.7614,0.11424
+1344,32.6447,30.6328,30.414,0.069632,0.964608,0.007744,0.004544,0.028672,0.096256,0.097344,29.0306,0.114656
+1345,31.6597,31.5859,29.1555,0.06976,0.946528,0.006336,0.006144,0.03072,0.096096,0.098464,27.7873,0.114208
+1346,32.7198,30.5625,29.2837,0.069632,1.04438,0.015776,0.0048,0.028672,0.114368,0.102208,27.7897,0.114176
+1347,32.8711,30.4219,30.3718,0.071584,0.940128,0.016384,0.00608,0.032864,0.096224,0.109856,28.9857,0.113024
+1348,31.8804,31.3672,30.3377,0.069792,0.923936,0.006368,0.005664,0.028352,0.096032,0.09712,28.9978,0.112672
+1349,31.7067,31.5391,29.1525,0.07168,0.937664,0.006464,0.006144,0.028352,0.094528,0.097984,27.7958,0.113952
+1350,33.2857,30.043,30.2765,0.068544,0.859584,0.006688,0.005376,0.027392,0.096,0.096512,28.9973,0.119136
+1351,31.691,31.5547,29.2137,0.070528,0.964384,0.006464,0.006144,0.028352,0.096384,0.097824,27.8305,0.113088
+1352,32.6656,30.6133,30.4354,0.069472,1.00902,0.006944,0.005152,0.027616,0.096032,0.09648,29.0117,0.11296
+1353,31.9003,31.3477,30.3274,0.068288,0.903104,0.00752,0.004768,0.028672,0.096032,0.097984,29.0081,0.112864
+1354,31.821,31.4258,29.142,0.068608,0.903168,0.007648,0.00464,0.02832,0.09456,0.096256,27.8241,0.114688
+1355,32.032,31.2188,29.2628,0.074688,1.00352,0.00768,0.004608,0.028672,0.106528,0.098272,27.8232,0.115616
+1356,33.3855,29.9531,30.4527,0.068576,1.11616,0.007552,0.004736,0.028384,0.094592,0.098144,28.9213,0.11328
+1357,31.988,31.2617,29.0519,0.068576,0.872192,0.0064,0.006016,0.03232,0.096192,0.096928,27.7586,0.114688
+1358,33.195,30.125,29.0881,0.070016,0.872384,0.006208,0.005792,0.028448,0.094816,0.097408,27.7998,0.11328
+1359,33.122,30.1914,30.2836,0.069632,0.875744,0.006944,0.005696,0.028288,0.09504,0.096256,28.9934,0.112544
+1360,31.4303,31.8164,30.422,0.070336,0.997632,0.007232,0.004928,0.02816,0.096352,0.097952,29.0067,0.11264
+1361,31.996,31.2539,29.0406,0.069632,0.880576,0.00624,0.006112,0.028512,0.095552,0.09712,27.7443,0.11264
+1362,33.2381,30.0859,30.2514,0.07024,0.882496,0.006656,0.005376,0.027392,0.096256,0.09936,28.9495,0.114112
+1363,32.008,31.2422,29.1287,0.06944,0.876736,0.00624,0.006048,0.028672,0.095648,0.096704,27.8366,0.112672
+1364,32.9388,30.3594,29.6209,0.069536,1.00365,0.006816,0.005248,0.02752,0.096256,0.098016,28.1986,0.115232
+1365,32.0923,31.1602,30.8936,0.069728,1.46166,0.022624,0.005984,0.030752,0.094752,0.097568,28.9963,0.114176
+1366,31.6127,31.6328,29.2242,0.0696,1.01117,0.00672,0.005376,0.027392,0.096256,0.09776,27.796,0.113952
+1367,32.9515,30.3477,29.1044,0.06992,0.909312,0.007456,0.004832,0.028672,0.095328,0.097184,27.7787,0.112992
+1368,33.277,30.0508,30.3575,0.06848,0.945952,0.006368,0.005696,0.028256,0.095072,0.096256,28.987,0.124448
+1369,31.566,31.6797,29.1456,0.070144,0.974816,0.007552,0.004736,0.028672,0.09744,0.098848,27.7507,0.112672
+1370,33.2986,30.0312,29.08,0.067968,0.894752,0.006368,0.005632,0.028384,0.095008,0.097664,27.7706,0.113568
+1371,33.2727,30.0547,30.2449,0.069152,0.876576,0.006656,0.006016,0.0288,0.096288,0.097472,28.9472,0.116736
+1372,31.7067,31.5391,30.4585,0.068608,1.03216,0.007424,0.004864,0.028096,0.094784,0.098304,29.0099,0.114304
+1373,31.4188,31.8281,29.1738,0.069632,1.01354,0.006368,0.006144,0.028224,0.096256,0.096704,27.7422,0.114688
+1374,32.8079,30.4805,30.3801,0.069632,0.990784,0.006592,0.005408,0.02736,0.096288,0.097312,28.9733,0.113408
+1375,31.5232,31.7227,29.2089,0.069312,1.00534,0.00704,0.005568,0.028416,0.095008,0.097856,27.7857,0.114688
+1376,32.8289,30.4609,30.4008,0.070144,0.921952,0.007776,0.004512,0.02848,0.095456,0.096416,29.062,0.11408
+1377,30.1816,33.1328,30.424,0.068512,0.994624,0.006848,0.005824,0.028832,0.096416,0.096288,29.0116,0.114976
+1378,32.9854,30.3164,29.1929,0.068224,1.02195,0.007936,0.004352,0.028672,0.095328,0.09648,27.7564,0.113504
+1379,32.7911,30.4961,30.4394,0.069632,0.985088,0.0072,0.005088,0.028672,0.1024,0.1024,29.0243,0.114688
+1380,31.4612,31.7852,30.3698,0.069664,0.994944,0.006496,0.005536,0.028288,0.0952,0.096256,28.9604,0.113024
+1381,31.4883,31.7578,29.2203,0.073344,1.00099,0.007072,0.005568,0.027296,0.09808,0.098336,27.7936,0.116
+1382,32.7743,30.5117,29.184,0.069664,0.986336,0.006912,0.005344,0.027424,0.095744,0.09648,27.7832,0.112896
+1383,32.7869,30.5,30.4312,0.069632,0.988928,0.0064,0.0056,0.028224,0.0952,0.096288,29.0274,0.1136
+1384,31.469,31.7773,29.2274,0.069568,0.989792,0.007936,0.004352,0.028672,0.095712,0.0968,27.82,0.11456
+1385,32.7953,30.4922,29.1842,0.06976,0.976896,0.006208,0.006144,0.028608,0.095712,0.096864,27.7911,0.112864
+1386,32.9133,30.3828,30.4676,0.069632,1.01171,0.00768,0.004608,0.028672,0.096256,0.098336,29.0366,0.114048
+1387,31.5349,31.7109,30.4432,0.068992,1.0103,0.007424,0.004864,0.028672,0.09536,0.096992,29.0162,0.114368
+1388,31.4149,31.832,29.2248,0.070784,0.963456,0.007776,0.004512,0.028672,0.095456,0.097056,27.8426,0.114528
+1389,32.6489,30.6289,30.3985,0.069632,0.998528,0.00704,0.005664,0.028384,0.094976,0.096256,28.9852,0.112864
+1390,31.0755,32.1797,29.2446,0.075776,1.06086,0.007168,0.005024,0.02816,0.094848,0.097632,27.7613,0.113856
+1391,32.9303,30.3672,30.3521,0.069376,0.895968,0.007808,0.005568,0.027584,0.095456,0.097056,29.0345,0.118784
+1392,31.7933,31.4531,30.3101,0.06832,0.870144,0.0064,0.005664,0.028384,0.096544,0.096416,29.0246,0.113696
+1393,31.4342,31.8125,29.222,0.06928,0.977248,0.007168,0.00512,0.02864,0.09584,0.097728,27.8144,0.126528
+1394,33.122,30.1914,29.7883,0.070048,0.8912,0.007264,0.004928,0.028256,0.096512,0.098336,28.4769,0.11488
+1395,32.2581,31,30.3595,0.069632,0.89296,0.007392,0.004896,0.02864,0.095488,0.09664,29.0451,0.118688
+1396,31.1929,32.0586,29.3359,0.069984,1.11808,0.006272,0.018272,0.028736,0.102528,0.097568,27.7809,0.113632
+1397,33.1735,30.1445,29.1207,0.068032,0.910336,0.007072,0.005568,0.027424,0.10208,0.096416,27.7908,0.113024
+1398,32.8289,30.4609,30.3566,0.069632,0.976896,0.0072,0.004928,0.028192,0.094848,0.098304,28.9608,0.11584
+1399,31.6127,31.6328,29.0913,0.069568,0.906848,0.006624,0.006144,0.028032,0.094848,0.096288,27.7688,0.114144
+1400,32.9854,30.3164,29.1697,0.067872,0.937632,0.006496,0.005536,0.027232,0.096256,0.097504,27.8167,0.114464
+1401,33.0493,30.2578,30.2995,0.07072,0.882784,0.006944,0.005568,0.027264,0.095744,0.096768,29.0012,0.112448
+1402,31.1929,32.0586,30.423,0.069632,0.995008,0.0208,0.005408,0.027488,0.10352,0.11344,28.973,0.114784
+1403,32.1608,31.0938,29.0995,0.069632,0.878592,0.00736,0.00496,0.02864,0.096032,0.09648,27.8036,0.114112
+1404,32.6239,30.6523,30.3733,0.069152,0.954528,0.006624,0.005376,0.02944,0.09552,0.096928,29.0018,0.113952
+1405,31.8131,31.4336,29.1092,0.0704,0.899264,0.007424,0.004864,0.028672,0.095552,0.09696,27.7934,0.112672
+1406,32.8711,30.4219,30.2593,0.069632,0.945408,0.006912,0.004096,0.028672,0.095712,0.096608,28.8872,0.125056
+1407,31.7421,31.5039,30.3899,0.069632,0.974336,0.006656,0.005984,0.028224,0.096864,0.097376,28.9986,0.112288
+1408,31.9282,31.3203,29.1607,0.069088,0.903808,0.007328,0.004928,0.02816,0.094752,0.098208,27.8406,0.113856
+1409,32.8753,30.418,29.2874,0.070144,1.04698,0.006272,0.006016,0.028672,0.096096,0.098464,27.8057,0.129024
+1410,32.8205,30.4688,30.3538,0.069152,0.877344,0.007744,0.004544,0.028704,0.095392,0.096832,29.0613,0.112768
+1411,31.9162,31.332,29.1488,0.075936,0.907744,0.007808,0.005568,0.027584,0.098272,0.097888,27.8116,0.11648
+1412,33.2079,30.1133,29.1375,0.07024,0.868384,0.008192,0.005216,0.027552,0.095648,0.096672,27.8509,0.114688
+1413,32.9176,30.3789,30.3158,0.069472,0.904928,0.006688,0.00592,0.028352,0.094752,0.098272,28.9936,0.113856
+1414,31.8606,31.3867,29.1135,0.069728,0.880704,0.007712,0.004576,0.028544,0.095648,0.096992,27.8154,0.11424
+1415,33.1392,30.1758,30.3227,0.069632,0.869568,0.006976,0.005728,0.028448,0.09616,0.110528,29.023,0.11264
+1416,31.438,31.8086,30.4076,0.06848,0.974432,0.006528,0.005472,0.030976,0.096512,0.098368,29.0141,0.112672
+1417,31.6284,31.6172,29.1328,0.069632,0.929792,0.006144,0.006144,0.028448,0.094432,0.09792,27.7876,0.112672
+1418,32.9557,30.3438,30.4231,0.069632,1.01786,0.0072,0.004928,0.028832,0.095424,0.09712,28.9893,0.112736
+1419,31.7146,31.5312,30.4132,0.069888,0.99552,0.006336,0.005952,0.028672,0.095904,0.096608,28.9989,0.115424
+1420,31.6753,31.5703,29.2516,0.069664,1.04365,0.006944,0.004096,0.028672,0.097472,0.098112,27.7883,0.114688
+1421,32.7366,30.5469,29.2463,0.06848,0.993184,0.007712,0.004608,0.028672,0.095648,0.096896,27.8384,0.112704
+1422,33.303,30.0273,30.2961,0.069312,0.878592,0.006464,0.005728,0.02848,0.094816,0.098336,28.9996,0.114688
+1423,31.7146,31.5312,29.0586,0.069632,0.877664,0.007072,0.005632,0.027136,0.096256,0.096256,27.7648,0.114176
+1424,33.0024,30.3008,29.153,0.069664,0.905152,0.006176,0.00592,0.028416,0.094688,0.096256,27.8282,0.118464
+1425,32.9176,30.3789,30.343,0.069632,0.913408,0.007584,0.004704,0.028672,0.097696,0.09888,29.0095,0.11296
+1426,31.746,31.5,30.3329,0.069216,0.917312,0.006752,0.005824,0.028128,0.095136,0.098272,28.9976,0.114688
+1427,31.7697,31.4766,29.1448,0.0696,0.900416,0.007072,0.005568,0.027232,0.096256,0.096288,27.8282,0.114144
+1428,32.96,30.3398,30.29,0.069632,0.886752,0.006176,0.005856,0.028192,0.094976,0.096256,28.9894,0.112672
+1429,31.5387,31.707,29.2263,0.079872,0.991264,0.00736,0.004896,0.028672,0.096256,0.09824,27.8058,0.113952
+1430,33.0621,30.2461,30.2911,0.0696,0.889952,0.007072,0.004192,0.028608,0.096192,0.09632,28.9853,0.113824
+1431,31.4844,31.7617,30.4376,0.069472,1.03875,0.007296,0.004992,0.028672,0.096256,0.098304,28.9812,0.112704
+1432,31.8131,31.4336,29.1554,0.069664,0.923616,0.007168,0.005024,0.028096,0.09488,0.097952,27.8154,0.113568
+1433,32.9557,30.3438,29.1738,0.075488,0.96048,0.006464,0.006144,0.02848,0.09648,0.099392,27.7855,0.11536
+1434,33.011,30.293,30.3493,0.069632,0.935328,0.006752,0.005248,0.02752,0.095488,0.096768,28.9996,0.112896
+1435,31.7421,31.5039,29.1365,0.069632,0.90912,0.006368,0.00608,0.028288,0.094624,0.097888,27.8092,0.115232
+1436,33.1134,30.1992,29.0819,0.06992,0.881632,0.007072,0.004192,0.028672,0.096256,0.096256,27.7844,0.11344
+1437,32.2825,30.9766,30.255,0.069632,0.92752,0.006368,0.006144,0.028672,0.095872,0.09648,28.9097,0.114624
+1438,31.825,31.4219,30.3048,0.070176,0.936992,0.007136,0.004096,0.028672,0.09568,0.096832,28.952,0.113216
+1439,32.2499,31.0078,29.0898,0.069216,0.885152,0.00784,0.005568,0.027552,0.096256,0.096256,27.7893,0.11264
+1440,33.0664,30.2422,30.3247,0.06912,0.918016,0.007456,0.004832,0.028608,0.096512,0.099584,28.988,0.11264
+1441,31.8052,31.4414,29.0797,0.069152,0.902112,0.006144,0.006144,0.028672,0.095968,0.096416,27.7608,0.114336
+1442,32.9727,30.3281,30.3658,0.068576,0.96048,0.008192,0.004096,0.028672,0.096064,0.096448,28.9874,0.115904
+1443,31.7067,31.5391,30.3155,0.069312,0.936096,0.006304,0.006144,0.02832,0.095936,0.09632,28.9635,0.113632
+1444,30.8434,32.4219,29.1574,0.075808,0.937952,0.018432,0.005344,0.028576,0.096704,0.09872,27.7804,0.115392
+1445,34.2383,29.207,29.0906,0.069888,0.905792,0.007712,0.004576,0.028672,0.095456,0.096128,27.7677,0.114688
+1446,32.8374,30.4531,30.5092,0.069472,1.08371,0.007168,0.004992,0.034656,0.096544,0.097472,29.0024,0.112832
+1447,32.012,31.2383,29.0929,0.070688,0.902816,0.006464,0.00576,0.028416,0.094848,0.098176,27.7731,0.11264
+1448,33.0323,30.2734,29.0992,0.079872,0.927168,0.00672,0.004096,0.028672,0.09536,0.096672,27.7468,0.113824
+1449,33.2252,30.0977,30.3186,0.069632,0.897024,0.00768,0.004608,0.028672,0.096096,0.096384,29.0018,0.116704
+1450,31.9043,31.3438,30.2369,0.069792,0.87584,0.006912,0.005696,0.028384,0.094944,0.09824,28.9444,0.112672
+1451,31.988,31.2617,29.0871,0.069184,0.878304,0.006976,0.005632,0.028288,0.095136,0.097536,27.7891,0.11696
+1452,33.2036,30.1172,30.2469,0.070688,0.87328,0.006304,0.005728,0.028192,0.094944,0.096416,28.9546,0.116736
+1453,31.5077,31.7383,29.2572,0.069056,1.03466,0.006688,0.014336,0.031872,0.095136,0.097696,27.7919,0.11584
+1454,33.2079,30.1133,30.2879,0.070816,0.907808,0.006464,0.0056,0.028224,0.0952,0.09728,28.9631,0.113408
+1455,31.2805,31.9688,30.4841,0.068224,1.0649,0.006208,0.005952,0.03504,0.096128,0.096352,28.9952,0.116128
+1456,31.8963,31.3516,29.0329,0.070112,0.87856,0.007168,0.004928,0.028192,0.09488,0.097728,27.738,0.113344
+1457,33.1049,30.207,29.1371,0.069792,0.95088,0.008192,0.005632,0.02736,0.09552,0.0968,27.7688,0.11408
+1458,33.1692,30.1484,30.3497,0.076064,0.953344,0.006752,0.004512,0.028672,0.097664,0.098624,28.9713,0.112736
+1459,32.1084,31.1445,29.1239,0.069632,0.878592,0.007424,0.004864,0.028672,0.09552,0.096672,27.8285,0.114016
+1460,32.9897,30.3125,29.1888,0.068416,0.940032,0.007584,0.004704,0.028672,0.097408,0.096928,27.8299,0.115168
+1461,32.7659,30.5195,30.2981,0.069632,0.951456,0.007008,0.005632,0.028192,0.095232,0.096224,28.9321,0.11264
+1462,31.8012,31.4453,30.3251,0.068128,0.9432,0.006912,0.005184,0.027584,0.095616,0.096896,28.968,0.1136
+1463,31.4728,31.7734,29.3222,0.0848,1.09283,0.007104,0.016384,0.029728,0.099296,0.100384,27.7786,0.113056
+1464,33.011,30.293,30.3197,0.069024,0.8968,0.006976,0.004096,0.028672,0.095616,0.096896,29.0074,0.114272
+1465,31.7185,31.5273,29.1556,0.069888,0.983072,0.007296,0.004992,0.02864,0.096,0.096512,27.7562,0.11296
+1466,32.9133,30.3828,30.4117,0.068512,0.99648,0.00704,0.004096,0.028672,0.095744,0.096768,28.9956,0.118784
+1467,31.6518,31.5938,30.328,0.070912,0.887008,0.006688,0.005952,0.028288,0.096832,0.098304,29.0202,0.113824
+1468,32.004,31.2461,29.099,0.079872,0.884448,0.006432,0.005696,0.028448,0.09488,0.097376,27.7882,0.113696
+1469,31.0153,32.2422,29.27,0.069664,1.06698,0.007264,0.005024,0.028672,0.097472,0.098144,27.7821,0.114688
+1470,34.6789,28.8359,30.3221,0.069664,0.875904,0.007968,0.004896,0.028064,0.09488,0.09728,29.0293,0.114112
+1471,31.4072,31.8398,29.2199,0.069632,0.98304,0.007712,0.004576,0.028672,0.097376,0.097216,27.8179,0.113824
+1472,32.6739,30.6055,29.1999,0.069632,1.00762,0.0072,0.00496,0.027936,0.095072,0.096288,27.777,0.114176
+1473,32.7366,30.5469,30.419,0.0688,1.01776,0.007072,0.005568,0.028544,0.094944,0.097952,28.9835,0.114816
+1474,31.8884,31.3594,30.4531,0.069568,0.9976,0.006368,0.005664,0.027104,0.105504,0.09648,29.0312,0.113664
+1475,31.2576,31.9922,29.2201,0.069632,1.024,0.007776,0.005568,0.027616,0.096032,0.098528,27.7748,0.116096
+1476,33.4597,29.8867,30.2958,0.069632,0.900128,0.007136,0.004096,0.028672,0.095392,0.09712,28.9807,0.112928
+1477,31.1625,32.0898,29.0933,0.069632,0.916512,0.007136,0.014336,0.028672,0.096288,0.096224,27.7502,0.114272
+1478,33.5958,29.7656,30.3189,0.069952,0.93184,0.008,0.004288,0.028672,0.109632,0.101312,28.9523,0.11296
+1479,32.012,31.2383,30.2787,0.069632,0.89472,0.0064,0.006144,0.02848,0.0944,0.096256,28.969,0.113664
+1480,31.9361,31.3125,29.0956,0.069664,0.904928,0.0064,0.0056,0.02752,0.097216,0.096992,27.7729,0.114304
+1481,33.2209,30.1016,29.0105,0.068128,0.883872,0.007008,0.005632,0.02832,0.095072,0.096256,27.7126,0.113568
+1482,33.2252,30.0977,30.2787,0.06864,0.888288,0.006656,0.005344,0.027424,0.096256,0.101664,28.9697,0.114656
+1483,31.821,31.4258,29.0598,0.068352,0.894944,0.007712,0.004576,0.028672,0.094304,0.09616,27.7504,0.114688
+1484,32.9091,30.3867,29.1613,0.069664,0.995296,0.007328,0.004928,0.02816,0.094752,0.096256,27.7453,0.119616
+1485,32.8669,30.4258,30.3463,0.069632,0.917504,0.007456,0.004832,0.028672,0.09728,0.09728,29.0099,0.113728
+1486,31.8171,31.4297,30.2788,0.069184,0.901568,0.00736,0.004928,0.028192,0.094688,0.0976,28.9615,0.113856
+1487,31.8646,31.3828,29.1408,0.069632,0.933568,0.006464,0.006144,0.028064,0.095968,0.097152,27.7904,0.113408
+1488,32.0722,31.1797,30.323,0.069184,0.974784,0.007008,0.004096,0.028672,0.095936,0.096576,28.9341,0.11264
+1489,32.2378,31.0195,29.1486,0.069824,0.956448,0.007808,0.005568,0.028768,0.096992,0.0984,27.7688,0.116
+1490,32.4585,30.8086,30.3626,0.068576,0.952288,0.007584,0.004704,0.028064,0.094816,0.096448,28.9985,0.111552
+1491,31.5038,31.7422,30.4456,0.06976,1.04237,0.006848,0.00576,0.02864,0.096288,0.097952,28.9853,0.112704
+1492,32.4379,30.8281,29.1643,0.068352,0.92336,0.006432,0.005536,0.028992,0.094528,0.097664,27.8258,0.113632
+1493,32.4051,30.8594,29.1678,0.069952,0.983456,0.008,0.005568,0.02848,0.0952,0.098272,27.7622,0.116672
+1494,33.849,29.543,30.4189,0.069632,0.976896,0.008032,0.004256,0.028672,0.095488,0.097024,29.0263,0.11264
+1495,31.3725,31.875,29.1959,0.069664,0.999392,0.007264,0.005024,0.028672,0.09552,0.096512,27.7794,0.1144
+1496,32.7408,30.543,29.2553,0.069632,1.00765,0.007424,0.004832,0.02816,0.09472,0.096256,27.8323,0.114304
+1497,32.6572,30.6211,30.385,0.068448,1.00758,0.007712,0.004576,0.028672,0.096256,0.0976,28.9594,0.114688
+1498,31.7973,31.4492,30.3043,0.071008,0.92432,0.007264,0.004896,0.028384,0.094656,0.097504,28.9634,0.112832
+1499,32,31.25,29.0505,0.06944,0.870592,0.00624,0.006048,0.028672,0.095232,0.095232,27.7661,0.11296
+1500,33.1692,30.1484,30.3514,0.069632,0.935552,0.006528,0.005472,0.027296,0.096256,0.100064,28.9979,0.11264
+1501,31.8566,31.3906,29.0821,0.068512,0.90112,0.007392,0.004896,0.028672,0.095392,0.097152,27.7644,0.114528
+1502,33.0408,30.2656,30.3426,0.070016,0.925728,0.007488,0.004768,0.028544,0.095456,0.097184,28.9976,0.115744
+1503,31.8012,31.4453,30.3023,0.068544,0.892608,0.006464,0.006144,0.028416,0.094496,0.097888,28.9951,0.112672
+1504,31.968,31.2812,29.1144,0.069632,0.90112,0.007648,0.00464,0.028704,0.095776,0.098336,27.7929,0.115616
+1505,33.1134,30.1992,29.0839,0.068544,0.9216,0.00768,0.004608,0.028672,0.095968,0.096544,27.746,0.114304
+1506,33.1864,30.1328,30.3227,0.069664,0.9432,0.00704,0.004096,0.02992,0.09504,0.097312,28.9617,0.114688
+1507,31.9122,31.3359,29.0901,0.07008,0.907232,0.008,0.005536,0.027488,0.096224,0.09824,27.7627,0.114624
+1508,33.2727,30.0547,29.0734,0.069632,0.890432,0.006592,0.005376,0.027392,0.096256,0.096256,27.768,0.113504
+1509,33.0408,30.2656,30.3246,0.069312,0.910208,0.007808,0.005568,0.027584,0.096256,0.097536,28.9943,0.116032
+1510,31.6675,31.5781,30.358,0.069472,0.937632,0.007072,0.004192,0.028576,0.09616,0.096384,29.0068,0.111616
+1511,31.7933,31.4531,29.071,0.073728,0.882688,0.007936,0.005536,0.029056,0.095872,0.09712,27.7627,0.116384
+1512,32.9515,30.3477,30.2961,0.069664,0.935904,0.006144,0.005824,0.028768,0.094464,0.097312,28.9464,0.111552
+1513,31.6871,31.5586,29.0693,0.069632,0.898976,0.00624,0.006144,0.02864,0.096256,0.097824,27.7509,0.114688
+1514,32.7575,30.5273,30.4067,0.069568,1.02816,0.00768,0.004608,0.028512,0.094368,0.09776,28.9632,0.112768
+1515,31.9242,31.3242,30.3063,0.069632,0.931328,0.006656,0.006048,0.028352,0.096096,0.096736,28.9568,0.114656
+1516,31.8646,31.3828,29.075,0.071616,0.91552,0.006144,0.005824,0.028288,0.094912,0.09728,27.7309,0.124544
+1517,32.6156,30.6602,29.1007,0.068256,0.914624,0.006976,0.005664,0.028256,0.095072,0.096288,27.7723,0.113248
+1518,32.8416,30.4492,30.4322,0.068544,1.02192,0.008096,0.004192,0.028672,0.09824,0.110688,28.9788,0.112992
+1519,31.8646,31.3828,29.1032,0.069632,0.925696,0.007744,0.005568,0.027648,0.096128,0.096416,27.7606,0.113728
+1520,33.0493,30.2578,29.1062,0.072064,0.9176,0.006272,0.005728,0.028576,0.096416,0.097984,27.7653,0.116256
+1521,32.96,30.3398,30.1729,0.069664,0.882656,0.007552,0.004736,0.028672,0.095264,0.096896,28.8745,0.112992
+1522,32.02,31.2305,30.3636,0.069632,0.894592,0.006528,0.005472,0.028768,0.096832,0.097472,29.0489,0.115456
+1523,31.6675,31.5781,29.12,0.069536,0.91712,0.006624,0.006016,0.028192,0.094816,0.098016,27.7852,0.114496
+1524,32.2175,31.0391,30.5308,0.06928,1.12064,0.022624,0.004128,0.02864,0.101696,0.09696,28.9726,0.11424
+1525,31.8963,31.3516,29.3376,0.075776,1.19734,0.016704,0.005568,0.027616,0.095296,0.098816,27.7076,0.112832
+1526,32.7533,30.5312,30.2448,0.068352,0.905184,0.008064,0.004224,0.028672,0.09552,0.096992,28.9236,0.114144
+1527,31.6518,31.5938,30.4873,0.070336,1.14288,0.006208,0.00608,0.028608,0.094272,0.097376,28.9289,0.11264
+1528,31.5232,31.7227,29.1442,0.069536,0.956544,0.007584,0.004672,0.02832,0.09456,0.097632,27.7695,0.115808
+1529,33.1092,30.2031,29.1258,0.069632,0.970432,0.006464,0.006144,0.028672,0.094208,0.097728,27.7387,0.113856
+1530,33.0749,30.2344,30.2822,0.06832,0.927744,0.007264,0.004928,0.028032,0.094944,0.096256,28.9414,0.113248
+1531,31.6479,31.5977,29.1698,0.07104,0.981184,0.006752,0.005536,0.028448,0.09664,0.09824,27.7665,0.115456
+1532,32.8163,30.4727,29.0857,0.069344,0.933888,0.006432,0.005568,0.02832,0.095136,0.097312,27.7364,0.113344
+1533,33.1864,30.1328,30.2654,0.068992,0.897696,0.007648,0.00464,0.028672,0.096288,0.097472,28.9493,0.114688
+1534,31.5543,31.6914,30.3003,0.068576,0.93904,0.007136,0.004096,0.028672,0.096256,0.096256,28.9464,0.113856
+1535,31.746,31.5,29.0896,0.06928,0.893312,0.007488,0.004768,0.028672,0.095712,0.09792,27.778,0.114496
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..0fa4e14
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1305.28,0.822969,0.318965,0.00557231,0.21955,0.00528191,0.00502478,0.00534025,0.00588906,0.00581694,0.0610367,0.00545328
+max_1024,1821.66,2.39026,0.949152,0.020896,0.835552,0.04096,0.028704,0.022176,0.040736,0.026752,0.090592,0.036672
+min_1024,418.365,0.54895,0.274336,0.004288,0.192416,0.004064,0.004064,0.004096,0.004288,0.004448,0.04096,0.004128
+512,1590.68,0.628662,0.283968,0.006048,0.20192,0.004896,0.004256,0.005952,0.005824,0.005664,0.043968,0.00544
+513,1208.62,0.827393,0.28544,0.004992,0.204096,0.0048,0.004096,0.005888,0.005696,0.0048,0.045056,0.006016
+514,1724.99,0.579712,0.284512,0.00608,0.200768,0.005536,0.004704,0.005216,0.005056,0.006112,0.045088,0.005952
+515,1356.07,0.737427,0.280864,0.00448,0.19856,0.005472,0.004768,0.00528,0.00496,0.006144,0.045184,0.006016
+516,1572.06,0.636108,0.279104,0.004992,0.198624,0.004096,0.005728,0.004512,0.006144,0.005856,0.043296,0.005856
+517,1371.28,0.729248,0.289664,0.00512,0.2048,0.004096,0.005664,0.005952,0.004768,0.006144,0.047104,0.006016
+518,1358.09,0.736328,0.290816,0.006144,0.208896,0.005728,0.004512,0.005568,0.005792,0.006912,0.04272,0.004544
+519,1267.92,0.788696,0.2888,0.00576,0.207232,0.005536,0.004704,0.006048,0.005728,0.006656,0.04256,0.004576
+520,1114.1,0.897583,0.530272,0.007712,0.445024,0.007552,0.004736,0.005344,0.004896,0.006144,0.043008,0.005856
+521,708.283,1.41187,0.341152,0.005408,0.26208,0.004896,0.004192,0.005856,0.0056,0.004896,0.043008,0.005216
+522,1196.61,0.835693,0.290464,0.006144,0.208576,0.004416,0.005248,0.004992,0.006144,0.005888,0.043264,0.005792
+523,1524.38,0.656006,0.284704,0.00544,0.203456,0.00528,0.004832,0.00528,0.00512,0.006112,0.044576,0.004608
+524,1104.19,0.90564,0.28336,0.004896,0.200704,0.005216,0.004864,0.004256,0.006144,0.006144,0.045056,0.00608
+525,1600,0.625,0.285568,0.00496,0.204,0.004896,0.004096,0.005984,0.005568,0.004832,0.046656,0.004576
+526,1371.28,0.729248,0.284672,0.005664,0.201184,0.004096,0.005728,0.004512,0.006144,0.006144,0.046272,0.004928
+527,1532.93,0.652344,0.293312,0.004864,0.20992,0.004896,0.00432,0.00576,0.005728,0.005984,0.046016,0.005824
+528,1071.55,0.933228,0.497632,0.008192,0.40928,0.005472,0.004864,0.00432,0.006144,0.006144,0.047104,0.006112
+529,799.297,1.2511,0.289312,0.005088,0.204672,0.004224,0.0056,0.00464,0.006176,0.00576,0.047456,0.005696
+530,1302.38,0.767822,0.306912,0.004608,0.224736,0.00464,0.004256,0.005984,0.005856,0.005728,0.04576,0.005344
+531,1237.28,0.808228,0.288288,0.006144,0.205824,0.004928,0.004288,0.005632,0.004608,0.006144,0.045056,0.005664
+532,1650.28,0.605957,0.290208,0.006048,0.206144,0.004896,0.004096,0.005984,0.005824,0.00576,0.04592,0.005536
+533,1302.38,0.767822,0.2912,0.00496,0.210208,0.0048,0.004096,0.00608,0.006208,0.006144,0.043008,0.005696
+534,1474.71,0.678101,0.28672,0.00576,0.207232,0.004128,0.00576,0.004448,0.006144,0.006144,0.04272,0.004384
+535,1405.87,0.711304,0.305152,0.006144,0.223232,0.005504,0.004736,0.005568,0.005728,0.005088,0.044032,0.00512
+536,1296.41,0.771362,0.2888,0.005856,0.208864,0.004416,0.005376,0.004864,0.006048,0.005504,0.043424,0.004448
+537,636.47,1.57117,0.3,0.007136,0.21504,0.005312,0.004832,0.004224,0.006112,0.006144,0.045056,0.006144
+538,1489.45,0.671387,0.286592,0.005888,0.203008,0.00432,0.005664,0.004352,0.006144,0.006144,0.045056,0.006016
+539,1496.26,0.668335,0.28672,0.005408,0.20144,0.00512,0.004864,0.004352,0.006144,0.005984,0.048576,0.004832
+540,654.731,1.52734,0.3112,0.006144,0.223264,0.005408,0.0048,0.005312,0.004928,0.006144,0.049152,0.006048
+541,1319.8,0.75769,0.30992,0.004768,0.223232,0.005792,0.004448,0.005632,0.005728,0.00704,0.04832,0.00496
+542,1281,0.78064,0.290816,0.006016,0.20448,0.004544,0.005216,0.005024,0.006144,0.006144,0.047104,0.006144
+543,1503.12,0.665283,0.310432,0.006144,0.22528,0.005888,0.004352,0.005696,0.005728,0.00496,0.047072,0.005312
+544,1386.59,0.721191,0.522272,0.006144,0.425984,0.016544,0.005664,0.004448,0.006112,0.006144,0.046784,0.004448
+545,737.354,1.3562,0.29056,0.00464,0.206208,0.004736,0.004096,0.00608,0.005728,0.005728,0.048,0.005344
+546,1422.47,0.703003,0.285536,0.00496,0.198656,0.005408,0.004832,0.00528,0.00496,0.006144,0.05088,0.004416
+547,1383.32,0.7229,0.287776,0.006144,0.198656,0.005248,0.004992,0.005728,0.004544,0.006112,0.051072,0.00528
+548,1430.17,0.699219,0.311488,0.004896,0.22464,0.004736,0.004096,0.00592,0.00576,0.005728,0.050176,0.005536
+549,1293.95,0.772827,0.288768,0.00544,0.201408,0.004096,0.005728,0.004544,0.006112,0.00608,0.05056,0.0048
+550,1464.16,0.682983,0.284,0.00576,0.1968,0.004288,0.005728,0.004512,0.006144,0.005952,0.049344,0.005472
+551,1560.08,0.640991,0.286976,0.005664,0.199392,0.00592,0.00432,0.005728,0.006368,0.005632,0.049248,0.004704
+552,1478.7,0.67627,0.290528,0.00592,0.204352,0.004768,0.004096,0.00608,0.00576,0.00576,0.047936,0.005856
+553,1356.74,0.737061,0.518144,0.006144,0.427872,0.006304,0.006144,0.005344,0.004896,0.006144,0.049152,0.006144
+554,704.567,1.41931,0.28224,0.00448,0.2,0.0048,0.004096,0.00608,0.005536,0.004768,0.047104,0.005376
+555,1590.37,0.628784,0.281728,0.005856,0.198304,0.004736,0.004224,0.005888,0.0056,0.004768,0.047072,0.00528
+556,1512.56,0.661133,0.282688,0.005376,0.195392,0.005472,0.004768,0.005344,0.004896,0.006144,0.050496,0.0048
+557,1342.07,0.745117,0.282656,0.005792,0.196992,0.005728,0.00448,0.005792,0.005728,0.004864,0.048864,0.004416
+558,1570.85,0.636597,0.286432,0.006112,0.200704,0.004128,0.005632,0.004608,0.006144,0.00576,0.047488,0.005856
+559,1263.03,0.791748,0.277536,0.005344,0.19456,0.004896,0.004128,0.006144,0.005952,0.005728,0.045472,0.005312
+560,717.589,1.39355,0.280576,0.005632,0.201024,0.004288,0.005472,0.004768,0.006112,0.005728,0.042912,0.00464
+561,1069.03,0.935425,0.528384,0.006144,0.432128,0.01552,0.00496,0.00576,0.005792,0.004832,0.048384,0.004864
+562,783.549,1.27625,0.307232,0.005408,0.221888,0.00416,0.005568,0.004672,0.006144,0.00592,0.048448,0.005024
+563,1310.3,0.763184,0.285184,0.004896,0.200704,0.005312,0.004832,0.004224,0.006112,0.006144,0.047104,0.005856
+564,1669.45,0.598999,0.278528,0.005888,0.198912,0.00512,0.00512,0.005216,0.005024,0.006144,0.042304,0.0048
+565,1459.47,0.685181,0.280352,0.005408,0.19968,0.005216,0.004704,0.004416,0.006144,0.006144,0.043008,0.005632
+566,1434.17,0.697266,0.278016,0.004544,0.198656,0.005152,0.004864,0.00432,0.006144,0.006144,0.04288,0.005312
+567,1490,0.671143,0.2792,0.004736,0.198656,0.005568,0.004672,0.006112,0.00576,0.005728,0.04304,0.004928
+568,1384.49,0.72229,0.282368,0.00544,0.202592,0.004896,0.00416,0.00592,0.00576,0.004704,0.043008,0.005888
+569,1510.32,0.662109,0.548896,0.006144,0.466944,0.00752,0.004768,0.00592,0.005792,0.004672,0.042496,0.00464
+570,637.758,1.56799,0.277152,0.004736,0.19984,0.004928,0.004128,0.005888,0.005696,0.0048,0.042656,0.00448
+571,1697.82,0.588989,0.274336,0.005632,0.193024,0.005824,0.004416,0.005536,0.004704,0.006144,0.043008,0.006048
+572,1295.59,0.771851,0.27552,0.005984,0.19472,0.004096,0.00592,0.00432,0.006144,0.006144,0.04288,0.005312
+573,1483.25,0.674194,0.2744,0.00576,0.194112,0.004896,0.00416,0.00592,0.0056,0.00592,0.04192,0.006112
+574,1466,0.682129,0.274432,0.005792,0.19424,0.004768,0.004192,0.006048,0.005472,0.004768,0.043008,0.006144
+575,1637.42,0.610718,0.274432,0.006016,0.194304,0.004512,0.005248,0.00496,0.005984,0.005696,0.04272,0.004992
+576,1491.9,0.670288,0.276864,0.004736,0.197888,0.004864,0.004096,0.005984,0.005728,0.005728,0.041952,0.005888
+577,1335.72,0.748657,0.294528,0.004448,0.216832,0.004384,0.005376,0.004832,0.006048,0.005568,0.041632,0.005408
+578,1399.62,0.714478,0.55648,0.00448,0.47088,0.006304,0.005664,0.004576,0.006144,0.00592,0.0472,0.005312
+579,581.117,1.72083,0.337952,0.005472,0.251616,0.005056,0.004096,0.006048,0.005792,0.005696,0.049696,0.00448
+580,1617.69,0.618164,0.290816,0.005824,0.20448,0.004736,0.004192,0.006048,0.006016,0.00576,0.0488,0.00496
+581,1430.92,0.698853,0.29296,0.005376,0.205408,0.00432,0.005472,0.004768,0.006144,0.006144,0.050528,0.0048
+582,1433.67,0.69751,0.292768,0.005824,0.20512,0.00512,0.004864,0.004384,0.006144,0.005888,0.049376,0.006048
+583,1218.32,0.820801,0.291616,0.00512,0.20592,0.004896,0.004224,0.005856,0.005664,0.004864,0.049152,0.00592
+584,1663.35,0.601196,0.296512,0.006144,0.208256,0.004736,0.004096,0.006144,0.005696,0.005696,0.050048,0.005696
+585,1302.18,0.767944,0.302784,0.005952,0.21472,0.004608,0.005152,0.005088,0.006048,0.00624,0.049152,0.005824
+586,1437.7,0.695557,0.302368,0.005888,0.217344,0.0056,0.00464,0.00544,0.006848,0.00592,0.04528,0.005408
+587,1359.22,0.735718,0.28768,0.005056,0.20848,0.004512,0.005184,0.005056,0.005888,0.005728,0.043072,0.004704
+588,686.27,1.45715,0.296,0.01024,0.210464,0.004576,0.005184,0.005056,0.005888,0.005696,0.043136,0.00576
+589,1432.17,0.698242,0.280576,0.006144,0.200032,0.004768,0.004096,0.006112,0.005696,0.005664,0.04192,0.006144
+590,1583.3,0.631592,0.279584,0.00512,0.198688,0.00544,0.004704,0.005184,0.005152,0.006112,0.04448,0.004704
+591,1381.22,0.723999,0.278112,0.005472,0.195232,0.00528,0.004864,0.004192,0.006144,0.006112,0.045088,0.005728
+592,1540.43,0.64917,0.27856,0.005568,0.195136,0.005728,0.004512,0.0056,0.00576,0.005024,0.04672,0.004512
+593,1443.02,0.692993,0.282688,0.005856,0.198944,0.005408,0.004832,0.005984,0.00576,0.005664,0.045888,0.004352
+594,1227.63,0.814575,0.289408,0.004736,0.202784,0.00544,0.004768,0.005344,0.004928,0.006112,0.05072,0.004576
+595,1537.83,0.650269,0.293568,0.005088,0.206848,0.005184,0.004832,0.00432,0.006144,0.006144,0.049152,0.005856
+596,701.55,1.42542,0.321536,0.007936,0.23168,0.005888,0.004384,0.005664,0.005888,0.004832,0.050624,0.00464
+597,1515.63,0.65979,0.286752,0.0048,0.202752,0.005184,0.004864,0.004288,0.008,0.00592,0.045472,0.005472
+598,1167.45,0.856567,0.286496,0.005408,0.198816,0.004736,0.004096,0.006144,0.005952,0.005696,0.049792,0.005856
+599,1158.7,0.863037,0.307136,0.005632,0.219648,0.005504,0.004736,0.005344,0.004896,0.006144,0.049152,0.00608
+600,1651.61,0.605469,0.296832,0.005632,0.203264,0.004096,0.00576,0.00448,0.006144,0.005376,0.056064,0.006016
+601,1402.26,0.713135,0.300416,0.005376,0.205728,0.005408,0.004832,0.005344,0.004896,0.006144,0.057344,0.005344
+602,1205.24,0.829712,0.303104,0.005728,0.209312,0.005824,0.004416,0.005632,0.005728,0.005024,0.055296,0.006144
+603,1116.53,0.89563,0.305696,0.004704,0.212992,0.004096,0.005728,0.004512,0.006144,0.005792,0.055648,0.00608
+604,1660.99,0.602051,0.538624,0.005728,0.413568,0.00656,0.004224,0.004096,0.006144,0.006144,0.061344,0.030816
+605,697.073,1.43457,0.293888,0.00608,0.20416,0.0048,0.005184,0.005056,0.006144,0.006144,0.05088,0.00544
+606,1347.15,0.74231,0.293728,0.00496,0.200704,0.004096,0.006176,0.005344,0.004864,0.006144,0.056384,0.005056
+607,1473.12,0.678833,0.281536,0.005056,0.19456,0.005504,0.004736,0.005408,0.004832,0.006144,0.050976,0.00432
+608,1419.51,0.704468,0.287392,0.004768,0.200704,0.004096,0.005824,0.004416,0.006144,0.006144,0.050656,0.00464
+609,1466.79,0.681763,0.284064,0.006144,0.19456,0.005888,0.004352,0.005824,0.00576,0.0048,0.0512,0.005536
+610,1487.02,0.672485,0.2824,0.004384,0.19664,0.0056,0.004608,0.0056,0.00576,0.005024,0.049152,0.005632
+611,1157.55,0.863892,0.290976,0.005376,0.20368,0.005152,0.004864,0.00432,0.006144,0.006144,0.050464,0.004832
+612,1416.32,0.706055,0.285312,0.004704,0.206624,0.00432,0.00544,0.0048,0.0056,0.005728,0.043616,0.00448
+613,645.853,1.54834,0.315552,0.007488,0.228192,0.005216,0.004864,0.004224,0.006144,0.006144,0.048224,0.005056
+614,1602.19,0.624146,0.291936,0.005888,0.205056,0.005632,0.004608,0.005408,0.004832,0.006144,0.049088,0.00528
+615,1463.64,0.683228,0.28624,0.006144,0.198656,0.005792,0.004448,0.005696,0.005792,0.004928,0.04912,0.005664
+616,1274.03,0.784912,0.282528,0.004736,0.202752,0.005504,0.004768,0.005344,0.004864,0.006144,0.043008,0.005408
+617,1643.33,0.608521,0.284512,0.005792,0.201088,0.00528,0.004736,0.004288,0.006144,0.006144,0.045056,0.005984
+618,1013.86,0.986328,0.292864,0.006144,0.206848,0.004224,0.005728,0.004416,0.006112,0.00608,0.048448,0.004864
+619,1280,0.78125,0.290816,0.005376,0.205568,0.00544,0.0048,0.005248,0.006464,0.005984,0.04736,0.004576
+620,1009.61,0.990479,0.30496,0.006016,0.219264,0.005408,0.004832,0.005248,0.004992,0.006144,0.047104,0.005952
+621,1225.98,0.815674,0.530592,0.005056,0.442368,0.007232,0.005056,0.005632,0.00576,0.006368,0.047776,0.005344
+622,750.527,1.3324,0.301024,0.005408,0.211872,0.005408,0.004832,0.005248,0.004992,0.006144,0.0512,0.00592
+623,1307.37,0.764893,0.313568,0.004288,0.224576,0.0048,0.004096,0.006144,0.00576,0.006496,0.052768,0.00464
+624,1038.14,0.963257,0.319264,0.004512,0.230336,0.004896,0.004288,0.00576,0.005728,0.006016,0.052096,0.005632
+625,1431.17,0.69873,0.29696,0.005504,0.20544,0.005824,0.004416,0.005664,0.004608,0.007296,0.052064,0.006144
+626,1675.26,0.596924,0.286976,0.005376,0.197632,0.005152,0.004864,0.00432,0.006144,0.006144,0.052224,0.00512
+627,1334.64,0.749268,0.284576,0.006048,0.196704,0.005888,0.004352,0.006144,0.006112,0.005696,0.047584,0.006048
+628,1341.41,0.745483,0.294912,0.005952,0.209088,0.004096,0.005664,0.004576,0.006144,0.006144,0.047104,0.006144
+629,1363.06,0.733643,0.502016,0.004736,0.415392,0.006496,0.006048,0.005216,0.00512,0.006144,0.047104,0.00576
+630,764.25,1.30847,0.296608,0.005792,0.214528,0.004896,0.00416,0.005888,0.00576,0.006272,0.04352,0.005792
+631,1391.54,0.718628,0.285856,0.005888,0.20096,0.005152,0.004864,0.00432,0.006144,0.006144,0.047104,0.00528
+632,1542.46,0.648315,0.2824,0.005408,0.198944,0.004704,0.005664,0.004576,0.006144,0.005856,0.045344,0.00576
+633,1390.6,0.719116,0.27456,0.005344,0.19552,0.005632,0.004576,0.005504,0.00576,0.00512,0.04096,0.006144
+634,1573.27,0.63562,0.278048,0.005504,0.195232,0.005696,0.004512,0.005632,0.005728,0.005024,0.045056,0.005664
+635,1358.54,0.736084,0.278528,0.00592,0.194784,0.005728,0.004512,0.005568,0.006656,0.005728,0.043488,0.006144
+636,1518.44,0.658569,0.281056,0.004576,0.200736,0.005152,0.004768,0.004384,0.00608,0.005696,0.044576,0.005088
+637,883.425,1.13196,0.31952,0.005056,0.23104,0.00448,0.00528,0.00496,0.005888,0.005696,0.05168,0.00544
+638,818.3,1.22205,0.552288,0.005408,0.412416,0.030944,0.028704,0.005472,0.004768,0.006176,0.052864,0.005536
+639,994.658,1.00537,0.31648,0.005952,0.231616,0.005472,0.004768,0.005408,0.004832,0.006144,0.046944,0.005344
+640,1324.49,0.755005,0.310816,0.006144,0.22528,0.005152,0.005088,0.00528,0.00496,0.0072,0.046048,0.005664
+641,1486.21,0.672852,0.294912,0.00576,0.213152,0.00432,0.00544,0.0048,0.006144,0.006144,0.044512,0.00464
+642,1290.69,0.77478,0.292896,0.005376,0.211424,0.004416,0.005344,0.004896,0.006112,0.006016,0.044384,0.004928
+643,1564.85,0.639038,0.2952,0.00448,0.212576,0.004416,0.005344,0.004896,0.005824,0.00592,0.0456,0.006144
+644,1374.96,0.727295,0.288512,0.004448,0.206432,0.004512,0.005248,0.004992,0.006016,0.005728,0.0456,0.005536
+645,1357.64,0.736572,0.292128,0.005408,0.207072,0.004608,0.00512,0.00512,0.006144,0.006176,0.047072,0.005408
+646,1305.29,0.766113,0.522432,0.004992,0.434176,0.007936,0.004352,0.005664,0.00576,0.00496,0.049024,0.005568
+647,740.352,1.35071,0.298496,0.005632,0.213248,0.004352,0.005408,0.004832,0.006144,0.005504,0.047744,0.005632
+648,1251.64,0.79895,0.299008,0.006016,0.21312,0.00592,0.00432,0.005728,0.005696,0.00496,0.04816,0.005088
+649,1588.83,0.629395,0.2888,0.006144,0.200704,0.005248,0.004864,0.004256,0.006112,0.006144,0.049152,0.006176
+650,1308.42,0.764282,0.282656,0.006016,0.194688,0.004096,0.005632,0.004608,0.006144,0.006112,0.05056,0.0048
+651,1345.38,0.743286,0.285984,0.00544,0.197312,0.004096,0.005664,0.005792,0.004928,0.006144,0.0512,0.005408
+652,1638.07,0.610474,0.28832,0.005568,0.198496,0.004832,0.004096,0.00608,0.005824,0.005728,0.052,0.005696
+653,1214.17,0.823608,0.28896,0.005408,0.198912,0.004768,0.004128,0.00608,0.005632,0.005696,0.0536,0.004736
+654,1606.9,0.622314,0.292896,0.006144,0.200704,0.005568,0.004672,0.005376,0.004864,0.006144,0.054464,0.00496
+655,1424.45,0.702026,0.533408,0.005056,0.428,0.02048,0.005984,0.004256,0.006144,0.006144,0.0512,0.006144
+656,660.698,1.51355,0.308128,0.005024,0.216864,0.00432,0.00544,0.0048,0.006144,0.006144,0.054432,0.00496
+657,1620.57,0.617065,0.29312,0.004448,0.203968,0.004832,0.004096,0.005856,0.00576,0.004768,0.054752,0.00464
+658,1508.1,0.663086,0.290848,0.005568,0.199232,0.004096,0.006144,0.005376,0.004864,0.006144,0.054784,0.00464
+659,1364.88,0.732666,0.286688,0.005536,0.195136,0.00448,0.00528,0.004928,0.006048,0.005632,0.053856,0.005792
+660,1260.89,0.793091,0.281792,0.005856,0.194368,0.004576,0.004128,0.006112,0.0056,0.00576,0.05008,0.005312
+661,1559.19,0.641357,0.294912,0.005504,0.205312,0.004224,0.005568,0.004672,0.006144,0.005888,0.053152,0.004448
+662,1284.62,0.778442,0.296256,0.00608,0.204864,0.005312,0.004864,0.005184,0.0064,0.004864,0.053248,0.00544
+663,1354.27,0.738403,0.304832,0.005376,0.213856,0.005792,0.004448,0.005632,0.005696,0.005056,0.053248,0.005728
+664,705.963,1.4165,0.30176,0.006816,0.210976,0.005664,0.004544,0.005504,0.004832,0.006048,0.052352,0.005024
+665,1413.88,0.707275,0.284576,0.004512,0.198496,0.004192,0.00576,0.004384,0.006176,0.005728,0.049536,0.005792
+666,1524.94,0.655762,0.290208,0.004352,0.202272,0.00448,0.005216,0.005024,0.00576,0.005728,0.052,0.005376
+667,1251.07,0.799316,0.284192,0.00464,0.19568,0.004864,0.004288,0.005984,0.005824,0.005792,0.051808,0.005312
+668,1609.43,0.621338,0.284672,0.005408,0.195328,0.005536,0.004672,0.005376,0.004864,0.006144,0.052928,0.004416
+669,1485.4,0.673218,0.285216,0.004736,0.19456,0.005632,0.004608,0.005536,0.005792,0.005056,0.053248,0.006048
+670,1350.7,0.740356,0.280576,0.005984,0.192672,0.005504,0.004736,0.00528,0.00496,0.006144,0.05088,0.004416
+671,1490.27,0.671021,0.288832,0.00544,0.201472,0.005568,0.004672,0.00592,0.00576,0.004704,0.050784,0.004512
+672,1202.05,0.831909,0.503968,0.005408,0.414592,0.007488,0.0048,0.005248,0.004992,0.006144,0.050816,0.00448
+673,814.8,1.22729,0.290368,0.006144,0.205952,0.004672,0.004416,0.00544,0.004832,0.006112,0.047136,0.005664
+674,1548.88,0.64563,0.28896,0.005376,0.201664,0.004224,0.006016,0.005376,0.004864,0.006144,0.050912,0.004384
+675,807.571,1.23828,0.302976,0.00544,0.215744,0.006048,0.005504,0.004832,0.006144,0.005824,0.047424,0.006016
+676,1395.33,0.716675,0.296608,0.005376,0.209856,0.005888,0.004352,0.005728,0.005696,0.00496,0.049152,0.0056
+677,1531.79,0.652832,0.284928,0.005408,0.198848,0.004928,0.00512,0.005088,0.006144,0.005888,0.047424,0.00608
+678,1527.79,0.654541,0.286336,0.005824,0.198336,0.004736,0.005632,0.004608,0.005984,0.00592,0.049536,0.00576
+679,1245.74,0.802734,0.291072,0.004832,0.202752,0.005856,0.004384,0.005504,0.006336,0.005664,0.05008,0.005664
+680,618.498,1.61682,0.291072,0.005376,0.20736,0.004608,0.005184,0.005056,0.005728,0.004512,0.04832,0.004928
+681,1521.83,0.657104,0.29696,0.007584,0.207456,0.005376,0.004864,0.004096,0.006144,0.006176,0.050496,0.004768
+682,1405.39,0.711548,0.284704,0.006144,0.196608,0.005888,0.004352,0.005632,0.00576,0.004992,0.05088,0.004448
+683,1558.6,0.641602,0.289056,0.004384,0.202752,0.005184,0.004704,0.004448,0.006144,0.006144,0.050912,0.004384
+684,1452.48,0.688477,0.281312,0.004832,0.19456,0.00544,0.0048,0.005536,0.005792,0.005088,0.050624,0.00464
+685,1363.74,0.733276,0.282624,0.005632,0.195072,0.005856,0.004384,0.006144,0.006144,0.005856,0.04912,0.004416
+686,1396.52,0.716064,0.281472,0.004992,0.195808,0.004896,0.004096,0.006016,0.005536,0.004832,0.050784,0.004512
+687,1596.57,0.626343,0.284416,0.005376,0.198592,0.005024,0.005312,0.004928,0.006048,0.00576,0.047584,0.005792
+688,1299.08,0.769775,0.288096,0.005824,0.200768,0.004352,0.005408,0.004832,0.006144,0.00576,0.049536,0.005472
+689,1477.37,0.67688,0.28672,0.006048,0.200576,0.00432,0.00544,0.005952,0.004992,0.006144,0.04848,0.004768
+690,653.217,1.53088,0.292864,0.008192,0.204352,0.004544,0.005216,0.005024,0.006144,0.006016,0.048352,0.005024
+691,1504.78,0.664551,0.285792,0.006112,0.199744,0.004896,0.004288,0.006144,0.006144,0.006016,0.047136,0.005312
+692,1385.89,0.721558,0.278528,0.006144,0.194464,0.004192,0.0056,0.00464,0.006144,0.00576,0.04656,0.005024
+693,1577.51,0.633911,0.280608,0.005824,0.196384,0.00464,0.004128,0.006048,0.005792,0.00576,0.047136,0.004896
+694,962.632,1.03882,0.280576,0.005472,0.19728,0.005312,0.004288,0.004736,0.006144,0.00576,0.046656,0.004928
+695,1524.09,0.656128,0.2856,0.005024,0.201984,0.004864,0.005408,0.004832,0.006144,0.00576,0.046624,0.00496
+696,1186.04,0.84314,0.282944,0.004512,0.200608,0.005728,0.004512,0.005504,0.004768,0.006112,0.046112,0.005088
+697,1355.84,0.737549,0.287008,0.0048,0.202752,0.006048,0.004192,0.005888,0.00608,0.005728,0.045792,0.005728
+698,813.829,1.22876,0.292768,0.008192,0.2048,0.004096,0.005664,0.004576,0.006144,0.00576,0.047488,0.006048
+699,1292.11,0.773926,0.288768,0.006144,0.202688,0.00416,0.0056,0.00464,0.006144,0.005856,0.048544,0.004992
+700,1760.21,0.568115,0.282624,0.005952,0.194752,0.005856,0.004384,0.006144,0.006016,0.005888,0.047488,0.006144
+701,1408.77,0.709839,0.280672,0.005376,0.19504,0.00448,0.005856,0.004416,0.006112,0.006112,0.048512,0.004768
+702,1452.74,0.688354,0.282304,0.005408,0.194624,0.004768,0.004096,0.006112,0.005728,0.005696,0.050048,0.005824
+703,1301.76,0.768188,0.280128,0.005408,0.193248,0.005696,0.004544,0.005504,0.005792,0.005088,0.049152,0.005696
+704,1694.66,0.590088,0.280576,0.006144,0.192512,0.005536,0.004704,0.005184,0.005056,0.006144,0.050976,0.00432
+705,1032.13,0.968872,0.290272,0.005344,0.20096,0.004864,0.004096,0.006144,0.006144,0.006048,0.051296,0.005376
+706,1272.25,0.786011,0.284672,0.005984,0.198816,0.005344,0.004832,0.005248,0.005056,0.006144,0.048704,0.004544
+707,881.239,1.13477,0.284608,0.007488,0.19728,0.004416,0.005344,0.004896,0.006112,0.005728,0.047552,0.005792
+708,1635.13,0.611572,0.278528,0.005984,0.19472,0.0056,0.00464,0.005504,0.004768,0.006112,0.046656,0.004544
+709,1467.05,0.681641,0.280544,0.005856,0.194848,0.005216,0.004992,0.005216,0.005056,0.006144,0.047104,0.006112
+710,1238.96,0.807129,0.283072,0.004544,0.194496,0.00416,0.005536,0.004704,0.006048,0.005728,0.051712,0.006144
+711,1729.73,0.578125,0.284512,0.004352,0.19408,0.004448,0.005568,0.004672,0.006144,0.006144,0.053248,0.005856
+712,1395.57,0.716553,0.281312,0.004832,0.19664,0.004064,0.005856,0.004384,0.006144,0.005952,0.04864,0.0048
+713,1450.94,0.689209,0.279552,0.005952,0.192704,0.005696,0.004576,0.005568,0.005728,0.005056,0.04896,0.005312
+714,797.197,1.25439,0.2952,0.004384,0.209952,0.004896,0.00432,0.00576,0.006496,0.006144,0.047136,0.006112
+715,1282.4,0.779785,0.53632,0.004512,0.41552,0.006368,0.005536,0.004704,0.005984,0.005728,0.059968,0.028
+716,714.336,1.3999,0.291072,0.005408,0.205792,0.005728,0.004512,0.005568,0.004704,0.006112,0.048224,0.005024
+717,1522.96,0.656616,0.280576,0.006112,0.19648,0.004256,0.005504,0.004736,0.006144,0.005792,0.046912,0.00464
+718,1297.02,0.770996,0.279872,0.005376,0.19536,0.005632,0.004608,0.00544,0.004832,0.006112,0.047104,0.005408
+719,1369.44,0.730225,0.282336,0.005472,0.196352,0.004896,0.004224,0.006112,0.005696,0.005824,0.047936,0.005824
+720,1411.68,0.708374,0.297792,0.004992,0.21456,0.004576,0.005184,0.005056,0.005792,0.005568,0.045984,0.00608
+721,1575.69,0.634644,0.29328,0.004608,0.206784,0.005728,0.00448,0.006144,0.00592,0.005728,0.048832,0.005056
+722,1180.4,0.847168,0.288544,0.005632,0.201216,0.005824,0.004416,0.005664,0.005728,0.004992,0.049152,0.00592
+723,1626.69,0.614746,0.284672,0.006144,0.200576,0.004224,0.005536,0.004704,0.006144,0.005856,0.047168,0.00432
+724,1486.21,0.672852,0.540992,0.005536,0.414624,0.038144,0.012768,0.004416,0.006112,0.006112,0.04736,0.00592
+725,667.753,1.49756,0.284192,0.00576,0.196608,0.004512,0.005248,0.00496,0.005856,0.005664,0.04992,0.005664
+726,1304.67,0.766479,0.399392,0.005472,0.3096,0.004416,0.00544,0.0048,0.006144,0.005696,0.053088,0.004736
+727,1213.27,0.824219,0.359584,0.005632,0.250368,0.004096,0.014336,0.005728,0.00576,0.014976,0.053376,0.005312
+728,1595.64,0.626709,0.290592,0.005408,0.197632,0.005248,0.004832,0.004256,0.007904,0.005696,0.053984,0.005632
+729,1395.1,0.716797,0.287392,0.0048,0.200672,0.005632,0.004608,0.00544,0.004832,0.006112,0.050752,0.004544
+730,1392.49,0.71814,0.290528,0.006048,0.2008,0.005888,0.004352,0.005888,0.005792,0.0048,0.051104,0.005856
+731,1481.37,0.675049,0.295808,0.00512,0.210944,0.004096,0.005632,0.004608,0.006144,0.005984,0.047296,0.005984
+732,1372.42,0.728638,0.294656,0.006144,0.208896,0.005152,0.004864,0.00432,0.006144,0.006144,0.047104,0.005888
+733,505.804,1.97705,0.406176,0.006816,0.294912,0.013856,0.004576,0.005888,0.020256,0.006112,0.048896,0.004864
+734,1199.06,0.833984,0.306272,0.006016,0.219264,0.005216,0.004864,0.004256,0.006144,0.006144,0.049088,0.00528
+735,1433.17,0.697754,0.294656,0.005376,0.201472,0.005728,0.004512,0.005536,0.00576,0.005088,0.055296,0.005888
+736,1583.91,0.631348,0.287296,0.004736,0.19664,0.005856,0.004352,0.005536,0.005728,0.00512,0.05328,0.006048
+737,1492.17,0.670166,0.290528,0.005984,0.199872,0.004928,0.004256,0.005632,0.00576,0.004992,0.053248,0.005856
+738,1446.84,0.691162,0.285536,0.00496,0.196576,0.004128,0.005632,0.004608,0.006144,0.005888,0.053216,0.004384
+739,1291.3,0.774414,0.294944,0.005472,0.203424,0.005216,0.004832,0.005696,0.005856,0.005024,0.05472,0.004704
+740,1470.47,0.680054,0.509984,0.005888,0.413952,0.006336,0.005664,0.004384,0.006144,0.006144,0.056544,0.004928
+741,652.853,1.53174,0.294656,0.005504,0.199104,0.004288,0.00544,0.0048,0.006144,0.005728,0.05776,0.005888
+742,1513.95,0.660522,0.289216,0.004544,0.19456,0.005952,0.004288,0.005696,0.005792,0.004896,0.058752,0.004736
+743,1482.18,0.674683,0.294272,0.006112,0.194592,0.005472,0.004768,0.00512,0.00512,0.006144,0.06144,0.005504
+744,1520.98,0.657471,0.299744,0.004896,0.200704,0.00576,0.00448,0.005344,0.004896,0.006144,0.06144,0.00608
+745,1322.57,0.756104,0.296032,0.005792,0.19664,0.004416,0.00544,0.0048,0.006144,0.005696,0.061792,0.005312
+746,1498.45,0.667358,0.295648,0.004832,0.197952,0.004704,0.004192,0.005792,0.005792,0.0048,0.062752,0.004832
+747,1392.01,0.718384,0.304544,0.005376,0.205184,0.004512,0.005248,0.00496,0.00592,0.00592,0.06192,0.005504
+748,1178.2,0.848755,0.296832,0.004512,0.206816,0.005344,0.004864,0.005184,0.005088,0.006144,0.053248,0.005632
+749,1459.21,0.685303,0.300288,0.006144,0.206304,0.00464,0.00512,0.00512,0.005824,0.005664,0.056096,0.005376
+750,723.292,1.38257,0.32432,0.00688,0.22528,0.004128,0.005728,0.00448,0.006144,0.006016,0.061024,0.00464
+751,1373.11,0.728271,0.294944,0.005504,0.19664,0.004704,0.004224,0.006016,0.006144,0.005952,0.060992,0.004768
+752,1099.89,0.90918,0.302176,0.006144,0.202784,0.005856,0.004352,0.005728,0.005664,0.004992,0.061472,0.005184
+753,1638.07,0.610474,0.295392,0.004576,0.198656,0.004128,0.005696,0.004512,0.006144,0.00608,0.060704,0.004896
+754,1391.78,0.718506,0.295008,0.00464,0.196608,0.00576,0.00448,0.006144,0.00592,0.005696,0.060064,0.005696
+755,1446.07,0.691528,0.292864,0.005888,0.196352,0.004608,0.005184,0.005056,0.006016,0.005696,0.059456,0.004608
+756,1384.49,0.72229,0.316288,0.004992,0.218624,0.004608,0.005152,0.005088,0.006144,0.006144,0.059392,0.006144
+757,1349.37,0.741089,0.301056,0.006144,0.204128,0.004768,0.00512,0.00512,0.006144,0.005856,0.058752,0.005024
+758,602.132,1.66077,0.3072,0.007776,0.209312,0.0056,0.00464,0.005408,0.004832,0.006144,0.058688,0.0048
+759,1433.42,0.697632,0.296096,0.005504,0.199296,0.005408,0.004832,0.005216,0.005024,0.006144,0.059296,0.005376
+760,1484.33,0.673706,0.29632,0.006144,0.195936,0.004768,0.004096,0.006112,0.005632,0.005728,0.0624,0.005504
+761,1528.36,0.654297,0.292896,0.005664,0.196672,0.004512,0.005472,0.004768,0.006144,0.005664,0.059296,0.004704
+762,1147.98,0.871094,0.290848,0.005728,0.194912,0.00416,0.005632,0.004608,0.006144,0.005984,0.058784,0.004896
+763,1325.14,0.754639,0.29264,0.004544,0.19584,0.004832,0.004096,0.006144,0.006048,0.00576,0.059872,0.005504
+764,1568.45,0.637573,0.28704,0.004512,0.196512,0.004096,0.006144,0.00544,0.0048,0.006144,0.055264,0.004128
+765,1432.17,0.698242,0.301696,0.00512,0.206848,0.005792,0.004448,0.00544,0.0048,0.006144,0.057344,0.00576
+766,961.051,1.04053,0.5712,0.006144,0.423936,0.006144,0.005568,0.004672,0.017504,0.004992,0.065568,0.036672
+767,715.959,1.39673,0.32432,0.004832,0.216672,0.004512,0.005216,0.005024,0.00592,0.005696,0.07168,0.004768
+768,1598.44,0.62561,0.292544,0.004608,0.202752,0.005728,0.004512,0.005568,0.004672,0.006144,0.053248,0.005312
+769,1371.28,0.729248,0.284704,0.005536,0.195168,0.005792,0.004448,0.005632,0.005792,0.00496,0.052896,0.00448
+770,1675.26,0.596924,0.288768,0.005376,0.197376,0.005344,0.004896,0.004096,0.006144,0.006112,0.05456,0.004864
+771,889.468,1.12427,0.368032,0.005376,0.269248,0.004096,0.005632,0.004608,0.006144,0.006144,0.061056,0.005728
+772,1592.23,0.628052,0.308992,0.006144,0.218496,0.004736,0.00416,0.00608,0.005728,0.005664,0.052096,0.005888
+773,1284.01,0.778809,0.29696,0.006144,0.206848,0.00576,0.00448,0.00544,0.0048,0.006144,0.05248,0.004864
+774,1446.07,0.691528,0.507904,0.006016,0.415872,0.007936,0.004352,0.005728,0.005856,0.006592,0.05072,0.004832
+775,669.445,1.49377,0.292576,0.005408,0.203616,0.005728,0.004512,0.005536,0.00576,0.005088,0.0512,0.005728
+776,1563.36,0.639648,0.29008,0.005888,0.20096,0.005184,0.004864,0.004288,0.006144,0.006048,0.051296,0.005408
+777,1419.76,0.704346,0.28928,0.004864,0.2,0.0048,0.0056,0.00464,0.006144,0.006016,0.051328,0.005888
+778,1536.38,0.650879,0.28656,0.005632,0.197152,0.005184,0.005024,0.00576,0.00576,0.004864,0.0512,0.005984
+779,1457.91,0.685913,0.287424,0.0048,0.19664,0.005824,0.004416,0.005664,0.005824,0.004864,0.054912,0.00448
+780,1377.73,0.72583,0.29312,0.005056,0.200416,0.004384,0.00592,0.00432,0.006144,0.006144,0.055296,0.00544
+781,1385.42,0.721802,0.291616,0.004896,0.199904,0.004896,0.004096,0.006016,0.006272,0.005984,0.054496,0.005056
+782,1445.31,0.691895,0.303104,0.005376,0.207392,0.00432,0.00544,0.0048,0.006144,0.006144,0.05872,0.004768
+783,1307.58,0.764771,0.534496,0.005376,0.414432,0.006208,0.005728,0.004512,0.006144,0.006016,0.063488,0.022592
+784,712.72,1.40308,0.309856,0.004704,0.21504,0.005856,0.004384,0.005728,0.005568,0.005088,0.058464,0.005024
+785,1456.87,0.686401,0.295136,0.005376,0.201152,0.00464,0.00416,0.00608,0.006016,0.005824,0.057568,0.00432
+786,1308.63,0.76416,0.342176,0.014816,0.23552,0.005344,0.004864,0.005184,0.005088,0.006144,0.059392,0.005824
+787,1497.62,0.667725,0.291168,0.004512,0.198464,0.004288,0.005472,0.004768,0.006144,0.006144,0.055328,0.006048
+788,1471.79,0.679443,0.28672,0.005696,0.196928,0.004224,0.005536,0.004704,0.006144,0.006144,0.052512,0.004832
+789,1398.91,0.714844,0.291424,0.004704,0.19984,0.004896,0.00416,0.005984,0.005728,0.004672,0.056704,0.004736
+790,684.035,1.46191,0.397088,0.005568,0.303328,0.004448,0.005312,0.004928,0.006016,0.005696,0.055872,0.00592
+791,1233.92,0.810425,0.666496,0.004992,0.526336,0.03072,0.022528,0.005664,0.00576,0.00496,0.059392,0.006144
+792,684.778,1.46033,0.297408,0.004544,0.2048,0.005184,0.004832,0.004352,0.006112,0.005952,0.057312,0.00432
+793,1532.36,0.652588,0.294944,0.005376,0.201504,0.005472,0.004736,0.005216,0.005024,0.006144,0.056448,0.005024
+794,1390.83,0.718994,0.292864,0.005664,0.202368,0.004864,0.004192,0.006144,0.00608,0.005696,0.052832,0.005024
+795,1387.3,0.720825,0.29696,0.00608,0.19632,0.004448,0.005312,0.004928,0.006048,0.005696,0.061984,0.006144
+796,1290.69,0.77478,0.288576,0.005408,0.194816,0.004576,0.004096,0.006144,0.005824,0.005664,0.056096,0.005952
+797,1469.94,0.680298,0.287232,0.004608,0.194496,0.00416,0.0056,0.00464,0.006144,0.005728,0.057088,0.004768
+798,1344.94,0.74353,0.323296,0.0048,0.229376,0.00512,0.004896,0.00432,0.006144,0.006144,0.057152,0.005344
+799,1366.7,0.731689,0.57216,0.004832,0.475136,0.007968,0.005504,0.00496,0.005952,0.005696,0.057024,0.005088
+800,614.093,1.62842,0.303104,0.004448,0.216672,0.004512,0.005216,0.005024,0.005952,0.00576,0.049728,0.005792
+801,1453.51,0.687988,0.31376,0.020896,0.20912,0.005536,0.004704,0.005376,0.006208,0.005888,0.050112,0.00592
+802,1146.86,0.871948,0.30512,0.004512,0.214336,0.004768,0.004128,0.006048,0.00576,0.005728,0.054112,0.005728
+803,1295.79,0.771729,0.30256,0.004576,0.215072,0.005344,0.004832,0.005216,0.006336,0.004864,0.051232,0.005088
+804,1432.92,0.697876,0.3072,0.005536,0.217696,0.005408,0.004832,0.005216,0.005024,0.006144,0.0512,0.006144
+805,1352.71,0.739258,0.299008,0.005408,0.209632,0.005152,0.004832,0.004352,0.006144,0.006016,0.051328,0.006144
+806,1581.16,0.632446,0.290944,0.004512,0.202592,0.004192,0.00592,0.005824,0.00464,0.006144,0.0512,0.00592
+807,1400.58,0.713989,0.557056,0.006144,0.466144,0.006944,0.005664,0.004576,0.006144,0.005856,0.051008,0.004576
+808,599.225,1.66882,0.3072,0.006144,0.218592,0.00464,0.00512,0.00512,0.006016,0.005792,0.049632,0.006144
+809,1532.93,0.652344,0.28656,0.006144,0.202112,0.004736,0.00416,0.00608,0.00576,0.005696,0.045888,0.005984
+810,1626.36,0.614868,0.280416,0.004512,0.196608,0.005248,0.00496,0.005216,0.005056,0.006144,0.047104,0.005568
+811,1476.57,0.677246,0.278816,0.004416,0.194528,0.005888,0.005536,0.00496,0.00608,0.005728,0.046976,0.004704
+812,1425.44,0.701538,0.282528,0.006016,0.196544,0.004288,0.005472,0.004768,0.006144,0.006144,0.047104,0.006048
+813,1440.99,0.69397,0.278528,0.005632,0.193024,0.005664,0.004576,0.00544,0.006368,0.005824,0.04688,0.00512
+814,1485.13,0.67334,0.280864,0.004384,0.196288,0.004416,0.00544,0.0048,0.006144,0.005792,0.048896,0.004704
+815,1365.56,0.7323,0.289248,0.004608,0.206016,0.004896,0.004096,0.006048,0.00576,0.004608,0.04832,0.004896
+816,1455.84,0.68689,0.5192,0.005824,0.4304,0.007264,0.004864,0.004256,0.006144,0.006144,0.049024,0.00528
+817,610.205,1.63879,0.297056,0.004992,0.206848,0.005312,0.004864,0.005184,0.00512,0.006144,0.053248,0.005344
+818,1613.87,0.619629,0.290496,0.004448,0.200704,0.005408,0.0048,0.005888,0.005728,0.004768,0.053248,0.005504
+819,1572.36,0.635986,0.2888,0.006112,0.198496,0.004288,0.00608,0.005312,0.004992,0.006144,0.052832,0.004544
+820,1326.85,0.753662,0.284416,0.004864,0.195648,0.004896,0.004256,0.005792,0.005728,0.004864,0.053056,0.005312
+821,1277.01,0.783081,0.284672,0.005408,0.195296,0.00544,0.004832,0.00576,0.00576,0.004832,0.05232,0.005024
+822,1674.91,0.597046,0.284672,0.005504,0.196256,0.004928,0.004256,0.005856,0.00576,0.0048,0.052576,0.004736
+823,1345.38,0.743286,0.292352,0.006112,0.19584,0.004896,0.004128,0.006112,0.005984,0.005728,0.05792,0.005632
+824,1485.94,0.672974,0.295968,0.00512,0.202752,0.004096,0.005664,0.004576,0.006144,0.006144,0.056864,0.004608
+825,1056.35,0.946655,0.54896,0.005376,0.414528,0.007552,0.004736,0.005152,0.021344,0.026752,0.058848,0.004672
+826,840.464,1.18982,0.292896,0.006144,0.198656,0.005312,0.004864,0.00416,0.006048,0.005728,0.057376,0.004608
+827,1240.27,0.806274,0.293344,0.004544,0.198336,0.004416,0.005344,0.0064,0.005952,0.005888,0.057632,0.004832
+828,1324.49,0.755005,0.315392,0.006144,0.219136,0.005248,0.004864,0.004224,0.006144,0.006144,0.058688,0.0048
+829,1268.11,0.788574,0.291328,0.00496,0.196608,0.00512,0.004832,0.004384,0.006144,0.005792,0.057696,0.005792
+830,1257.79,0.795044,0.294144,0.006112,0.197984,0.0048,0.004096,0.00608,0.005792,0.00576,0.058144,0.005376
+831,1702.76,0.58728,0.290816,0.006144,0.19456,0.005824,0.004416,0.0056,0.00464,0.006144,0.059296,0.004192
+832,1262.25,0.792236,0.301472,0.004512,0.205952,0.004896,0.004224,0.005856,0.005792,0.005792,0.058304,0.006144
+833,1590.06,0.628906,0.291328,0.004576,0.19664,0.005856,0.004352,0.005728,0.005664,0.004992,0.058944,0.004576
+834,624.2,1.60205,0.310944,0.007488,0.21168,0.005216,0.00464,0.00448,0.006144,0.006144,0.059392,0.00576
+835,1375.88,0.726807,0.293024,0.005408,0.197472,0.005664,0.004608,0.005472,0.005792,0.005088,0.058848,0.004672
+836,1566.95,0.638184,0.292864,0.00608,0.194144,0.004576,0.005216,0.005024,0.005824,0.005728,0.060128,0.006144
+837,1529.79,0.653687,0.28672,0.005472,0.193216,0.005216,0.004832,0.004288,0.006112,0.00608,0.05712,0.004384
+838,1381.45,0.723877,0.29712,0.005408,0.203648,0.004096,0.005664,0.004576,0.006144,0.005856,0.056896,0.004832
+839,1417.55,0.705444,0.291456,0.005088,0.197632,0.004928,0.004288,0.005984,0.005792,0.004672,0.05728,0.005792
+840,1439.72,0.69458,0.303136,0.004832,0.206848,0.004096,0.00576,0.00448,0.006144,0.006144,0.059392,0.00544
+841,1333.55,0.749878,0.30864,0.006144,0.212992,0.004096,0.005728,0.004512,0.007584,0.00576,0.056288,0.005536
+842,837.2,1.19446,0.53088,0.004672,0.434176,0.007744,0.004544,0.005568,0.005984,0.005952,0.056224,0.006016
+843,962.293,1.03918,0.298592,0.005632,0.203232,0.004128,0.005632,0.004608,0.006144,0.006112,0.057376,0.005728
+844,1686.99,0.592773,0.291264,0.004544,0.196448,0.004256,0.005504,0.004736,0.006144,0.006144,0.058816,0.004672
+845,1424.7,0.701904,0.296992,0.006144,0.201984,0.004864,0.004096,0.005824,0.005952,0.005824,0.057632,0.004672
+846,1266.74,0.789429,0.293184,0.004512,0.19856,0.00576,0.004448,0.005472,0.0048,0.006112,0.058656,0.004864
+847,1051.87,0.950684,0.303968,0.004992,0.209984,0.004896,0.004224,0.005824,0.005696,0.006336,0.057312,0.004704
+848,1545.66,0.646973,0.30352,0.004608,0.208768,0.004224,0.005536,0.004704,0.006144,0.005984,0.057504,0.006048
+849,1372.42,0.728638,0.307552,0.004896,0.210944,0.005376,0.004832,0.005216,0.005056,0.006176,0.05936,0.005696
+850,1332.03,0.750732,0.32752,0.004608,0.233152,0.004448,0.00528,0.004928,0.006144,0.005856,0.05744,0.005664
+851,600.983,1.66394,0.312448,0.008128,0.214752,0.004448,0.005344,0.004896,0.006048,0.00576,0.057792,0.00528
+852,1496.8,0.668091,0.295008,0.005632,0.203648,0.004192,0.005792,0.004352,0.006144,0.006144,0.053248,0.005856
+853,1265.17,0.790405,0.28992,0.00608,0.19808,0.004736,0.004192,0.006016,0.005696,0.005952,0.053856,0.005312
+854,1407.8,0.710327,0.295488,0.00464,0.2048,0.004096,0.005792,0.004448,0.006144,0.006048,0.054944,0.004576
+855,1594.39,0.627197,0.292864,0.006144,0.200704,0.005632,0.004608,0.005696,0.00592,0.004768,0.054368,0.005024
+856,1458.69,0.685547,0.294912,0.005952,0.202944,0.005376,0.004864,0.005184,0.005056,0.006176,0.054592,0.004768
+857,1192.08,0.838867,0.292384,0.005792,0.196288,0.004768,0.004192,0.006016,0.00576,0.00608,0.057824,0.005664
+858,1237.46,0.808105,0.315392,0.006016,0.223168,0.004288,0.005536,0.004704,0.006144,0.006144,0.054368,0.005024
+859,1407.08,0.710693,0.518432,0.004384,0.425184,0.006944,0.005632,0.004608,0.006144,0.006016,0.054528,0.004992
+860,754.745,1.32495,0.290208,0.005856,0.196896,0.005792,0.004448,0.005632,0.00576,0.004992,0.055296,0.005536
+861,1398.67,0.714966,0.288544,0.006144,0.19632,0.004384,0.005376,0.004864,0.00592,0.005952,0.053664,0.00592
+862,1557.41,0.64209,0.290592,0.005664,0.198656,0.004608,0.005152,0.005088,0.005952,0.005728,0.053824,0.00592
+863,1387.77,0.720581,0.28672,0.00608,0.194624,0.0056,0.00464,0.00528,0.00496,0.006144,0.054528,0.004864
+864,1442.76,0.693115,0.284672,0.005504,0.193056,0.0056,0.004736,0.005472,0.004768,0.006144,0.054912,0.00448
+865,1533.51,0.6521,0.284672,0.0056,0.192416,0.004736,0.00576,0.00448,0.006144,0.006144,0.054784,0.004608
+866,634.35,1.57642,0.30944,0.005376,0.20896,0.004896,0.004192,0.005952,0.006304,0.005728,0.063104,0.004928
+867,915.512,1.09229,0.47744,0.00704,0.376832,0.005152,0.004832,0.004384,0.006112,0.006144,0.06144,0.005504
+868,1163.8,0.859253,0.299936,0.005024,0.206144,0.0048,0.004096,0.00608,0.00576,0.006336,0.055552,0.006144
+869,1282.61,0.779663,0.302464,0.005664,0.208416,0.004928,0.004256,0.005792,0.005728,0.004832,0.057344,0.005504
+870,1264.78,0.790649,0.294944,0.005536,0.201088,0.00432,0.00544,0.0048,0.006112,0.00592,0.057216,0.004512
+871,1692.21,0.590942,0.294912,0.005632,0.201216,0.005248,0.004832,0.004256,0.006144,0.006144,0.056608,0.004832
+872,1391.54,0.718628,0.293696,0.004928,0.198048,0.004704,0.004192,0.006048,0.005184,0.005056,0.060832,0.004704
+873,1528.64,0.654175,0.298272,0.005376,0.197472,0.004256,0.005504,0.004736,0.006144,0.00608,0.06336,0.005344
+874,1297.43,0.770752,0.30736,0.005408,0.212864,0.004896,0.00432,0.005728,0.005824,0.004864,0.057344,0.006112
+875,1467.84,0.681274,0.301056,0.006144,0.200384,0.004416,0.005344,0.004896,0.005888,0.005536,0.063968,0.00448
+876,663.051,1.50818,0.320352,0.00704,0.223232,0.005504,0.004736,0.005344,0.004928,0.006112,0.057344,0.006112
+877,1526.36,0.655151,0.294912,0.0056,0.1992,0.005376,0.004864,0.005152,0.005088,0.006144,0.058464,0.005024
+878,1419.27,0.70459,0.29216,0.006144,0.196608,0.005856,0.005536,0.004992,0.005792,0.00576,0.056032,0.00544
+879,1445.56,0.691772,0.286784,0.004448,0.194592,0.005216,0.004768,0.00432,0.006112,0.005728,0.055744,0.005856
+880,1551.22,0.644653,0.2888,0.006144,0.193984,0.004672,0.004096,0.006144,0.006048,0.005888,0.05712,0.004704
+881,1345.16,0.743408,0.284832,0.005824,0.19488,0.004128,0.00576,0.00592,0.00576,0.005088,0.052896,0.004576
+882,1372.42,0.728638,0.282656,0.005984,0.192672,0.005248,0.004864,0.005792,0.00576,0.00496,0.052832,0.004544
+883,1434.68,0.697021,0.294784,0.006144,0.202752,0.005824,0.004416,0.0056,0.00464,0.006144,0.053248,0.006016
+884,1463.9,0.683105,0.513504,0.005952,0.420032,0.006304,0.005696,0.004384,0.006144,0.006144,0.053248,0.0056
+885,653.27,1.53076,0.305152,0.005376,0.215168,0.004736,0.005696,0.004544,0.006144,0.005952,0.051392,0.006144
+886,1643.99,0.608276,0.290528,0.005632,0.19888,0.004384,0.005536,0.004704,0.006144,0.005888,0.053504,0.005856
+887,1321.93,0.75647,0.285152,0.004544,0.196576,0.004128,0.005632,0.004608,0.006144,0.00592,0.052832,0.004768
+888,1602.19,0.624146,0.284672,0.006144,0.19456,0.005536,0.004704,0.005472,0.005824,0.00512,0.052512,0.0048
+889,1496.26,0.668335,0.2888,0.00544,0.195264,0.004096,0.0056,0.00464,0.006144,0.005856,0.057184,0.004576
+890,1430.92,0.698853,0.290176,0.006144,0.194496,0.00416,0.005568,0.004672,0.006144,0.006144,0.057344,0.005504
+891,1315.35,0.760254,0.288384,0.00544,0.193248,0.005344,0.004832,0.005216,0.006432,0.004768,0.057344,0.00576
+892,1548,0.645996,0.29488,0.004576,0.200704,0.005152,0.004864,0.00432,0.006144,0.006144,0.057344,0.005632
+893,1284.01,0.778809,0.292736,0.005696,0.197056,0.005344,0.004832,0.00528,0.005024,0.006144,0.057344,0.006016
+894,697.429,1.43384,0.305184,0.007872,0.207168,0.005376,0.004864,0.005408,0.004832,0.006144,0.059008,0.004512
+895,1470.21,0.680176,0.292576,0.005408,0.197056,0.00464,0.00512,0.00512,0.006144,0.006144,0.057344,0.0056
+896,1560.68,0.640747,0.292864,0.006144,0.19808,0.004672,0.005152,0.005088,0.005856,0.005696,0.057056,0.00512
+897,1341.41,0.745483,0.298912,0.004704,0.206848,0.00512,0.004864,0.004352,0.006144,0.005888,0.055552,0.00544
+898,1247.64,0.801514,0.290816,0.005472,0.194944,0.004384,0.005568,0.004672,0.006144,0.005696,0.059456,0.00448
+899,1698.88,0.588623,0.291424,0.004704,0.196608,0.004096,0.005856,0.004384,0.006144,0.006112,0.058464,0.005056
+900,1326,0.75415,0.292864,0.005888,0.196672,0.00432,0.00544,0.004768,0.006144,0.006048,0.058624,0.00496
+901,1505.05,0.664429,0.310752,0.005856,0.207136,0.00544,0.0048,0.005216,0.005024,0.006144,0.065536,0.0056
+902,1228.19,0.814209,0.512032,0.006144,0.415744,0.007264,0.004896,0.004224,0.006144,0.006144,0.057344,0.004128
+903,737.354,1.3562,0.295168,0.005376,0.203808,0.005536,0.004704,0.005408,0.005984,0.005088,0.054688,0.004576
+904,1332.9,0.750244,0.310784,0.006048,0.212128,0.004896,0.004256,0.006144,0.006144,0.006144,0.059392,0.005632
+905,804.873,1.24243,0.3104,0.00576,0.210528,0.004896,0.005184,0.005056,0.006144,0.006144,0.061376,0.005312
+906,1473.38,0.678711,0.301504,0.004864,0.200704,0.004096,0.005824,0.004416,0.006144,0.006144,0.063488,0.005824
+907,1365.56,0.7323,0.299392,0.00448,0.19456,0.005344,0.004832,0.004192,0.006112,0.006144,0.068704,0.005024
+908,1427.18,0.700684,0.301152,0.005408,0.195392,0.005408,0.004832,0.005248,0.004992,0.006144,0.067584,0.006144
+909,1398.67,0.714966,0.305184,0.006048,0.2008,0.00544,0.0048,0.005216,0.005024,0.006144,0.067328,0.004384
+910,1139.36,0.877686,0.517856,0.007488,0.4104,0.00608,0.00416,0.005888,0.005952,0.005856,0.066272,0.00576
+911,778.263,1.28491,0.30352,0.00496,0.200096,0.004704,0.004096,0.006144,0.005856,0.00592,0.066048,0.005696
+912,1564.25,0.639282,0.294688,0.00576,0.196992,0.00416,0.00576,0.004416,0.006144,0.006144,0.059392,0.00592
+913,1602.82,0.623901,0.29376,0.00496,0.196608,0.005216,0.004864,0.005728,0.005728,0.005088,0.060544,0.005024
+914,1345.16,0.743408,0.311072,0.006144,0.210944,0.005376,0.004864,0.004128,0.00752,0.00576,0.060416,0.00592
+915,1435.93,0.696411,0.291424,0.004704,0.19456,0.005856,0.004416,0.00576,0.00576,0.004832,0.061184,0.004352
+916,1508.93,0.66272,0.292832,0.004672,0.195744,0.004864,0.004192,0.005984,0.00576,0.005728,0.060352,0.005536
+917,1051.33,0.951172,0.301088,0.006144,0.202752,0.005632,0.004608,0.005472,0.006016,0.0064,0.05984,0.004224
+918,1342.07,0.745117,0.312384,0.005536,0.214944,0.0048,0.004128,0.00608,0.005856,0.004448,0.06128,0.005312
+919,745.066,1.34216,0.302784,0.00752,0.203616,0.004096,0.00576,0.00448,0.006144,0.005856,0.05968,0.005632
+920,1585.45,0.630737,0.294912,0.005856,0.196896,0.005152,0.005088,0.0056,0.005728,0.005056,0.060928,0.004608
+921,1469.68,0.68042,0.293728,0.00496,0.197984,0.004768,0.004128,0.005888,0.005824,0.005824,0.058208,0.006144
+922,1362.83,0.733765,0.292864,0.005952,0.194368,0.00448,0.00528,0.00496,0.006016,0.005728,0.061344,0.004736
+923,1522.11,0.656982,0.287136,0.004512,0.19456,0.005408,0.004832,0.005216,0.005024,0.006144,0.056416,0.005024
+924,946.396,1.05664,0.30928,0.006016,0.215168,0.005152,0.004864,0.004352,0.006112,0.006144,0.057152,0.00432
+925,1690.47,0.591553,0.299008,0.006144,0.2048,0.005728,0.004512,0.006144,0.00592,0.006336,0.054816,0.004608
+926,1384.49,0.72229,0.299296,0.005408,0.206912,0.004896,0.005536,0.004864,0.006144,0.00608,0.05488,0.004576
+927,1390.12,0.71936,0.293376,0.004704,0.200704,0.005248,0.004864,0.00544,0.004928,0.006144,0.055296,0.006048
+928,690.667,1.44788,0.300352,0.007712,0.203232,0.004096,0.005792,0.004448,0.006144,0.00608,0.057408,0.00544
+929,1653.61,0.604736,0.296384,0.006144,0.198688,0.005248,0.004864,0.004288,0.00752,0.004672,0.059392,0.005568
+930,1334.2,0.749512,0.29696,0.006144,0.200704,0.004096,0.005856,0.004416,0.006112,0.005856,0.057632,0.006144
+931,1578.72,0.633423,0.293728,0.00496,0.2,0.0048,0.004096,0.006144,0.006048,0.005696,0.05584,0.006144
+932,1256.44,0.795898,0.290656,0.006144,0.198656,0.004096,0.005728,0.004512,0.006144,0.005408,0.053984,0.005984
+933,1638.07,0.610474,0.29296,0.004704,0.198048,0.004704,0.004224,0.006016,0.006144,0.006144,0.057344,0.005632
+934,1422.22,0.703125,0.289312,0.00464,0.196608,0.005824,0.004416,0.005632,0.005728,0.005024,0.05696,0.00448
+935,1327.71,0.753174,0.31536,0.005408,0.219296,0.004672,0.004096,0.006144,0.006144,0.005568,0.05792,0.006112
+936,1277.01,0.783081,0.521888,0.004544,0.424992,0.007104,0.00416,0.00592,0.005728,0.004704,0.059392,0.005344
+937,741.29,1.349,0.300704,0.004672,0.198656,0.005664,0.004576,0.005504,0.004768,0.006112,0.065408,0.005344
+938,1290.28,0.775024,0.298752,0.006112,0.196416,0.00432,0.00544,0.006464,0.00576,0.004864,0.063488,0.005888
+939,1433.92,0.697388,0.303104,0.005568,0.199232,0.004128,0.005824,0.005536,0.004992,0.006144,0.066592,0.005088
+940,1600,0.625,0.299808,0.004896,0.196608,0.004128,0.00576,0.004448,0.007808,0.005728,0.065856,0.004576
+941,1338.34,0.747192,0.29696,0.005664,0.19504,0.005792,0.004448,0.005888,0.005696,0.0048,0.064928,0.004704
+942,1140.15,0.877075,0.304288,0.006144,0.198656,0.005408,0.004832,0.005248,0.004992,0.007872,0.065824,0.005312
+943,1704.54,0.58667,0.301792,0.004992,0.198656,0.00576,0.00448,0.005568,0.00576,0.005056,0.065536,0.005984
+944,847.507,1.17993,0.29984,0.004928,0.204448,0.004448,0.005376,0.004864,0.006112,0.005696,0.059072,0.004896
+945,1110.78,0.900269,0.507552,0.008192,0.403168,0.005504,0.005024,0.005664,0.00576,0.00496,0.063488,0.005792
+946,992.488,1.00757,0.294912,0.005632,0.198464,0.0048,0.004096,0.006144,0.006144,0.00592,0.059168,0.004544
+947,1267.72,0.788818,0.294432,0.004416,0.196608,0.005184,0.004864,0.005632,0.0048,0.006144,0.061376,0.005408
+948,1523.24,0.656494,0.294784,0.005728,0.195008,0.005472,0.004736,0.005952,0.005856,0.005728,0.060288,0.006016
+949,1498.99,0.667114,0.292864,0.006144,0.194368,0.004288,0.005472,0.004768,0.006144,0.005888,0.061184,0.004608
+950,1268.31,0.788452,0.295168,0.004704,0.196128,0.004576,0.004096,0.006144,0.005824,0.005696,0.06224,0.00576
+951,1391.54,0.718628,0.311296,0.006112,0.208928,0.005792,0.004448,0.00544,0.0048,0.006144,0.063488,0.006144
+952,1409.98,0.709229,0.3032,0.005408,0.203648,0.005536,0.004704,0.006144,0.006016,0.005728,0.059936,0.00608
+953,1324.92,0.754761,0.521888,0.004704,0.417184,0.006784,0.005824,0.004384,0.006144,0.006144,0.065376,0.005344
+954,626.587,1.59595,0.305152,0.006112,0.202208,0.004672,0.005824,0.004416,0.006144,0.006144,0.064672,0.00496
+955,1279.8,0.781372,0.30816,0.005056,0.210944,0.00512,0.004832,0.004384,0.006144,0.006144,0.059392,0.006144
+956,1761.34,0.567749,0.298976,0.00544,0.195296,0.0056,0.004608,0.005984,0.005792,0.005792,0.064352,0.006112
+957,1187.76,0.841919,0.318144,0.004832,0.199872,0.004928,0.005472,0.020448,0.0048,0.006176,0.065504,0.006112
+958,1515.91,0.659668,0.297152,0.005376,0.194848,0.004768,0.004096,0.005952,0.005792,0.005792,0.064384,0.006144
+959,1433.92,0.697388,0.296832,0.005952,0.193728,0.004928,0.004288,0.0056,0.00576,0.005024,0.065536,0.006016
+960,1236.71,0.808594,0.310112,0.00496,0.208672,0.00432,0.005504,0.004736,0.006144,0.006144,0.064768,0.004864
+961,1434.68,0.697021,0.299008,0.0056,0.200352,0.004896,0.004192,0.005856,0.005728,0.004832,0.063232,0.00432
+962,1126.98,0.887329,0.52352,0.007744,0.419776,0.004608,0.005728,0.004512,0.006144,0.00592,0.063712,0.005376
+963,919.313,1.08777,0.301152,0.005376,0.199552,0.00528,0.004864,0.005216,0.005088,0.006144,0.065376,0.004256
+964,1454.29,0.687622,0.301056,0.006144,0.196448,0.005536,0.004864,0.005664,0.00592,0.005888,0.064448,0.006144
+965,1356.07,0.737427,0.296864,0.004544,0.195648,0.004896,0.004288,0.00592,0.00576,0.004736,0.065472,0.0056
+966,1454.29,0.687622,0.299744,0.004896,0.19632,0.004384,0.005376,0.004864,0.006144,0.005792,0.065888,0.00608
+967,1365.79,0.732178,0.303136,0.005824,0.19488,0.00592,0.00432,0.006016,0.00576,0.005696,0.07008,0.00464
+968,1335.94,0.748535,0.30384,0.004832,0.194592,0.005728,0.00448,0.005376,0.004864,0.006144,0.0728,0.005024
+969,1373.81,0.727905,0.3032,0.005376,0.19744,0.0056,0.00464,0.005184,0.005056,0.006144,0.069344,0.004416
+970,1393.67,0.717529,0.305152,0.005856,0.198592,0.004448,0.005312,0.004928,0.006144,0.006144,0.068864,0.004864
+971,694.59,1.4397,0.31056,0.00816,0.202208,0.004672,0.004256,0.005984,0.005664,0.005728,0.06848,0.005408
+972,1560.08,0.640991,0.302944,0.005728,0.19696,0.00416,0.0056,0.00464,0.006144,0.00576,0.067968,0.005984
+973,1353.6,0.73877,0.299104,0.005344,0.19552,0.005344,0.004896,0.005696,0.005856,0.004832,0.065568,0.006048
+974,1535.81,0.651123,0.304384,0.005568,0.198304,0.004768,0.004352,0.005984,0.005568,0.004832,0.069632,0.005376
+975,1302.8,0.767578,0.302464,0.006112,0.196032,0.004704,0.004096,0.006016,0.0056,0.004768,0.069632,0.005504
+976,1476.83,0.677124,0.30288,0.0048,0.19632,0.004352,0.005344,0.004896,0.005664,0.004608,0.071584,0.005312
+977,1348.48,0.741577,0.301664,0.004672,0.196128,0.004576,0.005344,0.004896,0.00608,0.005472,0.069952,0.004544
+978,1448.63,0.690308,0.311296,0.005824,0.200544,0.004576,0.005184,0.005056,0.00592,0.006304,0.072992,0.004896
+979,1303.21,0.767334,0.52656,0.005376,0.414688,0.006336,0.005952,0.005536,0.005728,0.00512,0.071744,0.00608
+980,695.298,1.43823,0.3032,0.005376,0.197184,0.004384,0.005376,0.004864,0.006144,0.00576,0.06928,0.004832
+981,1342.29,0.744995,0.303136,0.006144,0.194144,0.004544,0.005216,0.004992,0.006112,0.00592,0.071584,0.00448
+982,1031.09,0.969849,0.310144,0.004992,0.204608,0.004288,0.005472,0.004768,0.006144,0.005888,0.069344,0.00464
+983,1605.64,0.622803,0.305152,0.005856,0.200896,0.004192,0.005568,0.004672,0.006144,0.006048,0.066848,0.004928
+984,1492.44,0.670044,0.302624,0.00544,0.197312,0.004128,0.005664,0.004544,0.006144,0.006144,0.067584,0.005664
+985,1453,0.688232,0.295424,0.00464,0.196352,0.004352,0.005408,0.004832,0.006144,0.006144,0.06144,0.006112
+986,1137.62,0.879028,0.295232,0.004416,0.199808,0.004928,0.004192,0.005824,0.0056,0.004928,0.061248,0.004288
+987,1748.56,0.571899,0.300768,0.005536,0.201312,0.005248,0.004864,0.005728,0.00576,0.005024,0.06144,0.005856
+988,627.884,1.59265,0.306976,0.006752,0.208064,0.004896,0.004128,0.005728,0.00576,0.005984,0.060352,0.005312
+989,1293.13,0.773315,0.291264,0.004544,0.196608,0.0056,0.00464,0.00544,0.0048,0.006144,0.058432,0.005056
+990,1531.5,0.652954,0.290816,0.005376,0.194656,0.004928,0.005536,0.004704,0.006144,0.005856,0.057632,0.005984
+991,1511.44,0.661621,0.289248,0.004576,0.196448,0.004256,0.005504,0.004736,0.006144,0.005888,0.057152,0.004544
+992,1221.41,0.818726,0.292192,0.006144,0.195744,0.00496,0.005408,0.004832,0.006112,0.005696,0.057824,0.005472
+993,1671.84,0.598145,0.290816,0.005728,0.194976,0.004096,0.005728,0.004512,0.006144,0.005984,0.059104,0.004544
+994,1462.6,0.683716,0.291072,0.005376,0.195552,0.004096,0.005792,0.004448,0.006144,0.005984,0.059008,0.004672
+995,1442.25,0.693359,0.293312,0.004544,0.198656,0.005312,0.004928,0.005248,0.004992,0.006144,0.05856,0.004928
+996,1312.82,0.761719,0.292096,0.006016,0.19616,0.004672,0.004096,0.006048,0.00592,0.005888,0.05792,0.005376
+997,615.338,1.62512,0.299584,0.00688,0.202752,0.005152,0.004864,0.004352,0.006112,0.006144,0.057344,0.005984
+998,1580.86,0.632568,0.294368,0.006144,0.194592,0.005824,0.004384,0.006144,0.00608,0.005696,0.059904,0.0056
+999,1531.5,0.652954,0.294336,0.005408,0.196512,0.004896,0.004288,0.00608,0.005792,0.00576,0.060128,0.005472
+1000,1227.45,0.814697,0.292896,0.005056,0.19456,0.0056,0.00464,0.005536,0.004704,0.006144,0.061344,0.005312
+1001,956.227,1.04578,0.355904,0.006176,0.255968,0.0056,0.00464,0.00544,0.004832,0.0072,0.060352,0.005696
+1002,1648.29,0.606689,0.30768,0.004576,0.206432,0.004512,0.005248,0.004992,0.006144,0.005888,0.064864,0.005024
+1003,968.436,1.03259,0.318848,0.006144,0.22528,0.004096,0.005792,0.004448,0.006144,0.00592,0.05552,0.005504
+1004,1380.05,0.724609,0.509984,0.006144,0.415488,0.0064,0.005568,0.004672,0.006144,0.005856,0.055264,0.004448
+1005,670.376,1.4917,0.30416,0.005504,0.20544,0.005856,0.004384,0.005696,0.00576,0.004928,0.061216,0.005376
+1006,1311.56,0.762451,0.286752,0.006176,0.194496,0.004128,0.005632,0.004608,0.006144,0.005824,0.055168,0.004576
+1007,1624.11,0.615723,0.28848,0.0048,0.19456,0.004096,0.005664,0.004576,0.005824,0.005696,0.057952,0.005312
+1008,1251.64,0.79895,0.290176,0.005408,0.195296,0.004096,0.006016,0.004224,0.006144,0.006144,0.057344,0.005504
+1009,1513.11,0.660889,0.294912,0.00576,0.196992,0.005152,0.004896,0.004288,0.006144,0.006144,0.0608,0.004736
+1010,1347.15,0.74231,0.297312,0.004448,0.198656,0.00592,0.00432,0.005984,0.005984,0.005696,0.061408,0.004896
+1011,1250.69,0.799561,0.315392,0.005664,0.2176,0.005408,0.0048,0.00528,0.00496,0.006144,0.059392,0.006144
+1012,1665.04,0.600586,0.295776,0.00496,0.196608,0.005248,0.004832,0.004288,0.006112,0.006144,0.06144,0.006144
+1013,624.676,1.60083,0.301056,0.008192,0.198336,0.004416,0.005312,0.004928,0.005728,0.005728,0.06352,0.004896
+1014,1578.42,0.633545,0.298816,0.005728,0.19632,0.0048,0.004096,0.005856,0.00576,0.004768,0.065536,0.005952
+1015,1374.04,0.727783,0.297024,0.005376,0.196416,0.004896,0.005408,0.005056,0.005952,0.005888,0.061888,0.006144
+1016,1480.84,0.675293,0.299008,0.005888,0.202752,0.004352,0.00608,0.005248,0.005056,0.006144,0.059072,0.004416
+1017,1205.41,0.82959,0.294912,0.006144,0.196608,0.005728,0.004544,0.005696,0.005728,0.004928,0.059392,0.006144
+1018,1611.65,0.620483,0.293024,0.005408,0.196672,0.004896,0.004096,0.006048,0.005728,0.005664,0.05968,0.004832
+1019,1456.1,0.686768,0.294912,0.006144,0.196128,0.004576,0.005184,0.005024,0.00576,0.00576,0.060192,0.006144
+1020,906.395,1.10327,0.319808,0.004416,0.223232,0.005248,0.004832,0.004256,0.006144,0.00608,0.060576,0.005024
+1021,585.143,1.70898,0.527232,0.004992,0.415616,0.006272,0.005472,0.020544,0.006304,0.006048,0.057408,0.004576
+1022,1060.73,0.942749,0.313632,0.004416,0.20272,0.005504,0.004768,0.019584,0.006176,0.004928,0.060544,0.004992
+1023,1748.19,0.572021,0.300256,0.005568,0.20128,0.00544,0.0048,0.006048,0.00576,0.005696,0.06032,0.005344
+1024,1296.82,0.771118,0.29712,0.004864,0.198656,0.005504,0.004736,0.005728,0.005824,0.006336,0.059936,0.005536
+1025,1629.6,0.613647,0.292736,0.005504,0.194784,0.004544,0.00512,0.005056,0.00576,0.005728,0.060224,0.006016
+1026,1421.24,0.703613,0.298528,0.005888,0.194816,0.00528,0.00496,0.005728,0.00576,0.004896,0.065536,0.005664
+1027,1385.89,0.721558,0.30128,0.005344,0.199104,0.004672,0.004096,0.006144,0.005856,0.005696,0.064224,0.006144
+1028,1205.59,0.829468,0.297824,0.00496,0.202016,0.004832,0.004096,0.006016,0.005952,0.00592,0.059424,0.004608
+1029,1368.76,0.730591,0.519936,0.004608,0.420896,0.007104,0.005504,0.004768,0.006144,0.00592,0.059616,0.005376
+1030,729.93,1.37,0.310624,0.0056,0.207392,0.00416,0.005728,0.004448,0.007424,0.004864,0.065536,0.005472
+1031,1469.15,0.680664,0.301152,0.005376,0.197472,0.005472,0.004672,0.005216,0.00512,0.006144,0.066784,0.004896
+1032,1343.83,0.744141,0.303104,0.005984,0.20016,0.0048,0.004128,0.005984,0.00576,0.00576,0.06608,0.004448
+1033,1503.67,0.665039,0.302496,0.006176,0.197856,0.004864,0.005536,0.004704,0.006144,0.00592,0.06576,0.005536
+1034,1201.35,0.832397,0.300992,0.004512,0.196608,0.005536,0.004736,0.005568,0.005728,0.005056,0.067584,0.005664
+1035,1651.28,0.605591,0.297792,0.004928,0.197792,0.00496,0.005504,0.004736,0.006144,0.005824,0.063552,0.004352
+1036,1449.14,0.690063,0.303488,0.00464,0.200672,0.0056,0.004672,0.005344,0.004864,0.006144,0.065536,0.006016
+1037,1362.83,0.733765,0.301504,0.004544,0.202752,0.005216,0.004864,0.004416,0.005984,0.006144,0.063008,0.004576
+1038,554.225,1.80432,0.331776,0.007872,0.227648,0.004096,0.005696,0.005792,0.004896,0.006144,0.064544,0.005088
+1039,1659.31,0.602661,0.301088,0.005376,0.201344,0.004256,0.005856,0.004384,0.006144,0.006144,0.06144,0.006144
+1040,1443.27,0.692871,0.293504,0.004736,0.19456,0.005536,0.004704,0.005632,0.005696,0.005056,0.062464,0.00512
+1041,1344.27,0.743896,0.2976,0.005056,0.197792,0.004896,0.00416,0.005856,0.005696,0.004832,0.063488,0.005824
+1042,1406.11,0.711182,0.300608,0.006144,0.197888,0.004864,0.004096,0.007328,0.005984,0.00512,0.063488,0.005696
+1043,1249.16,0.800537,0.2976,0.004768,0.196544,0.004128,0.005632,0.004608,0.006144,0.006144,0.06496,0.004672
+1044,1722.46,0.580566,0.296704,0.005472,0.1952,0.004128,0.0056,0.00464,0.006112,0.005664,0.064,0.005888
+1045,1361.7,0.734375,0.298976,0.006144,0.196192,0.004512,0.005216,0.005024,0.006016,0.005728,0.064032,0.006112
+1046,1448.89,0.690186,0.519776,0.00576,0.41408,0.007264,0.004864,0.004256,0.006144,0.006144,0.065536,0.005728
+1047,689.04,1.45129,0.301152,0.005408,0.19744,0.005792,0.004448,0.005664,0.004672,0.006048,0.067232,0.004448
+1048,1452.22,0.688599,0.295008,0.005408,0.195392,0.005792,0.004448,0.005888,0.006016,0.00592,0.061728,0.004416
+1049,1330.52,0.751587,0.294912,0.005696,0.195008,0.004096,0.005792,0.005568,0.005024,0.006144,0.06144,0.006144
+1050,1504.22,0.664795,0.294592,0.005376,0.194656,0.004928,0.004192,0.006144,0.006144,0.005792,0.061792,0.005568
+1051,1358.99,0.73584,0.296096,0.005344,0.195008,0.004512,0.005792,0.004448,0.006144,0.006144,0.063392,0.005312
+1052,1238.77,0.807251,0.29152,0.0048,0.196608,0.004096,0.005664,0.004576,0.006144,0.006144,0.059104,0.004384
+1053,1821.66,0.54895,0.288416,0.005344,0.195168,0.00432,0.005664,0.004608,0.006112,0.005984,0.055456,0.00576
+1054,1235.04,0.809692,0.297984,0.006144,0.19824,0.004512,0.005248,0.004992,0.008096,0.005888,0.059552,0.005312
+1055,1262.44,0.792114,0.525888,0.00784,0.39472,0.023424,0.018432,0.005312,0.004928,0.006144,0.059392,0.005696
+1056,885.334,1.12952,0.296128,0.005408,0.199072,0.004416,0.00544,0.0048,0.005408,0.004832,0.061376,0.005376
+1057,1355.39,0.737793,0.295552,0.004832,0.196608,0.005792,0.004448,0.006144,0.00608,0.00576,0.05984,0.006048
+1058,898.344,1.11316,0.325984,0.004448,0.23136,0.00416,0.0056,0.00464,0.006144,0.00608,0.058944,0.004608
+1059,1508.66,0.662842,0.304608,0.005824,0.202368,0.0048,0.004128,0.006112,0.005824,0.00576,0.064192,0.0056
+1060,1556.53,0.642456,0.303104,0.00592,0.200928,0.005152,0.004704,0.00448,0.006176,0.006112,0.064544,0.005088
+1061,1310.93,0.762817,0.31744,0.006144,0.21488,0.004256,0.006144,0.005248,0.004992,0.006176,0.065024,0.004576
+1062,1252.22,0.798584,0.29936,0.004864,0.197664,0.004928,0.004256,0.00576,0.00576,0.006272,0.064128,0.005728
+1063,1447.61,0.690796,0.328128,0.004512,0.227328,0.005536,0.004704,0.005344,0.00592,0.00512,0.065184,0.00448
+1064,601.027,1.66382,0.333408,0.008128,0.22896,0.004576,0.004096,0.00608,0.005888,0.005792,0.06416,0.005728
+1065,1469.15,0.680664,0.297472,0.004608,0.196,0.004704,0.004096,0.006144,0.006144,0.005888,0.063744,0.006144
+1066,1241.59,0.80542,0.29328,0.004512,0.196288,0.004416,0.005344,0.004896,0.006144,0.006144,0.060672,0.004864
+1067,1572.06,0.636108,0.288736,0.004992,0.193664,0.004896,0.004192,0.005888,0.005728,0.00592,0.058112,0.005344
+1068,1122.19,0.891113,0.322048,0.004608,0.210944,0.005696,0.004544,0.005472,0.005792,0.00512,0.060448,0.019424
+1069,1398.43,0.715088,0.315392,0.005632,0.217568,0.004128,0.0056,0.00464,0.006144,0.006144,0.06064,0.004896
+1070,1535.23,0.651367,0.299424,0.004512,0.19968,0.004896,0.004288,0.0056,0.00608,0.005728,0.064,0.00464
+1071,1268.31,0.788452,0.300928,0.006144,0.200704,0.005408,0.004832,0.005248,0.005024,0.006112,0.06144,0.006016
+1072,668.353,1.49622,0.308608,0.008192,0.204384,0.004512,0.005248,0.004992,0.006144,0.006144,0.063488,0.005504
+1073,1515.63,0.65979,0.295136,0.005952,0.198432,0.004512,0.005248,0.004992,0.005408,0.004832,0.061184,0.004576
+1074,1376.58,0.72644,0.29568,0.004928,0.198464,0.004288,0.005472,0.004768,0.006016,0.005728,0.059936,0.00608
+1075,1480.57,0.675415,0.295904,0.005088,0.196608,0.005568,0.004672,0.006144,0.006144,0.005856,0.061344,0.00448
+1076,1354.05,0.738525,0.294272,0.005376,0.195552,0.00416,0.005664,0.00448,0.006144,0.005824,0.06176,0.005312
+1077,1433.67,0.69751,0.297664,0.004832,0.200704,0.004096,0.006144,0.005376,0.004864,0.006144,0.059392,0.006112
+1078,798.596,1.2522,0.303072,0.00496,0.200704,0.005248,0.004864,0.006272,0.006016,0.005728,0.063968,0.005312
+1079,1270.08,0.787354,0.313632,0.004928,0.212992,0.005408,0.004832,0.005216,0.0064,0.005824,0.062432,0.0056
+1080,731.886,1.36633,0.313984,0.006912,0.212512,0.004576,0.005152,0.005088,0.006144,0.006144,0.06144,0.006016
+1081,1360.35,0.735107,0.296128,0.005792,0.196416,0.00464,0.00512,0.00512,0.005504,0.004736,0.063424,0.005376
+1082,1403.94,0.71228,0.299072,0.005408,0.197344,0.004128,0.005792,0.005472,0.005088,0.006144,0.065344,0.004352
+1083,1548.88,0.64563,0.301056,0.00608,0.19872,0.006144,0.004096,0.006144,0.005856,0.005728,0.063296,0.004992
+1084,1383.32,0.7229,0.296192,0.005504,0.1952,0.005888,0.004352,0.005952,0.00576,0.00576,0.0624,0.005376
+1085,1384.49,0.72229,0.297536,0.004672,0.198656,0.005216,0.004864,0.004256,0.006144,0.005952,0.062688,0.005088
+1086,1354.5,0.738281,0.298976,0.005056,0.198656,0.004096,0.005696,0.004544,0.006144,0.005984,0.063488,0.005312
+1087,1399.39,0.7146,0.302624,0.006144,0.202016,0.004832,0.004096,0.006144,0.005856,0.005728,0.062144,0.005664
+1088,1307.16,0.765015,0.516096,0.005984,0.413856,0.007968,0.00432,0.005728,0.005728,0.004928,0.06256,0.005024
+1089,707.61,1.41321,0.305152,0.005792,0.2072,0.005248,0.004864,0.004224,0.006144,0.006144,0.061216,0.00432
+1090,1344.49,0.743774,0.29696,0.005888,0.200256,0.0048,0.004096,0.007296,0.004992,0.006144,0.058912,0.004576
+1091,1567.25,0.638062,0.296992,0.005824,0.198976,0.004128,0.006112,0.005312,0.005952,0.00512,0.060736,0.004832
+1092,1205.95,0.829224,0.290816,0.005888,0.194848,0.005696,0.004512,0.005536,0.004704,0.006144,0.0584,0.005088
+1093,1601.25,0.624512,0.291584,0.004864,0.19664,0.005088,0.00512,0.005216,0.005024,0.006144,0.058592,0.004896
+1094,1528.07,0.654419,0.293504,0.005056,0.198176,0.004576,0.005664,0.004576,0.006144,0.00592,0.057568,0.005824
+1095,1393.91,0.717407,0.292864,0.005376,0.197376,0.004096,0.006144,0.005472,0.004768,0.006144,0.057344,0.006144
+1096,1402.74,0.712891,0.290816,0.005984,0.195936,0.004896,0.004128,0.005952,0.005728,0.004704,0.058432,0.005056
+1097,1100.48,0.908691,0.514048,0.006048,0.41696,0.007072,0.005536,0.004704,0.006176,0.006112,0.057312,0.004128
+1098,433.783,2.3053,0.360608,0.00496,0.266144,0.004192,0.005568,0.005824,0.004992,0.006144,0.057344,0.00544
+1099,1279.6,0.781494,0.31712,0.004416,0.221184,0.005216,0.004864,0.004256,0.006144,0.006144,0.059392,0.005504
+1100,1303.01,0.767456,0.313344,0.006144,0.215072,0.005408,0.004832,0.005184,0.005024,0.006144,0.060544,0.004992
+1101,1430.92,0.698853,0.29696,0.006144,0.20048,0.00432,0.005152,0.004992,0.004384,0.005952,0.059392,0.006144
+1102,1433.17,0.697754,0.294752,0.00496,0.198656,0.006144,0.004096,0.005984,0.005824,0.004608,0.059168,0.005312
+1103,1527.5,0.654663,0.303104,0.006048,0.204864,0.004128,0.0056,0.00464,0.006048,0.005984,0.059648,0.006144
+1104,1397.24,0.715698,0.307232,0.006144,0.208896,0.00528,0.004832,0.004256,0.006112,0.006144,0.060864,0.004704
+1105,592.979,1.6864,0.337856,0.008,0.238944,0.004896,0.00416,0.00592,0.005568,0.004896,0.059392,0.00608
+1106,1437.45,0.695679,0.30336,0.004608,0.204192,0.004704,0.004096,0.006144,0.005632,0.005824,0.062272,0.005888
+1107,1299.7,0.769409,0.30928,0.00576,0.192896,0.004096,0.00576,0.022176,0.004832,0.006144,0.063104,0.004512
+1108,1317.04,0.759277,0.299104,0.00464,0.200416,0.004352,0.005536,0.004704,0.006144,0.005824,0.06176,0.005728
+1109,1627.01,0.614624,0.305568,0.005632,0.202816,0.004896,0.00416,0.006144,0.006144,0.005952,0.06368,0.006144
+1110,1379.36,0.724976,0.3032,0.005376,0.201536,0.005248,0.004864,0.004224,0.006144,0.006144,0.065024,0.00464
+1111,1436.44,0.696167,0.301056,0.00592,0.200352,0.004672,0.004096,0.00608,0.005728,0.004576,0.065312,0.00432
+1112,1446.84,0.691162,0.299008,0.006112,0.198208,0.004576,0.005184,0.005056,0.005888,0.005696,0.063968,0.00432
+1113,653.791,1.52954,0.317472,0.00784,0.213184,0.004256,0.005472,0.004768,0.006144,0.005792,0.065504,0.004512
+1114,856.635,1.16736,0.292864,0.005952,0.1968,0.004096,0.00576,0.00448,0.006144,0.005984,0.0592,0.004448
+1115,1411.44,0.708496,0.3184,0.005056,0.218304,0.004896,0.004128,0.005888,0.0064,0.005664,0.063392,0.004672
+1116,1242.15,0.805054,0.309248,0.006112,0.208928,0.005312,0.004832,0.004192,0.006144,0.006144,0.063296,0.004288
+1117,1464.69,0.682739,0.305696,0.00464,0.208128,0.004896,0.004064,0.006016,0.006112,0.005824,0.061152,0.004864
+1118,1448.89,0.690186,0.313376,0.005696,0.219584,0.004096,0.005728,0.004512,0.006144,0.006112,0.056992,0.004512
+1119,1356.07,0.737427,0.303136,0.004992,0.208352,0.00464,0.004096,0.006144,0.006144,0.005856,0.057568,0.005344
+1120,1439.97,0.694458,0.3048,0.005632,0.205344,0.005856,0.004352,0.005728,0.00576,0.004896,0.06144,0.005792
+1121,1138.25,0.87854,0.538336,0.0056,0.422432,0.025632,0.005088,0.0056,0.005792,0.005024,0.057312,0.005856
+1122,696.066,1.43665,0.311328,0.005952,0.217152,0.004224,0.005536,0.004704,0.006144,0.006048,0.056928,0.00464
+1123,1576.6,0.634277,0.29696,0.005856,0.205088,0.004192,0.005696,0.004448,0.006144,0.005888,0.054944,0.004704
+1124,1513.39,0.660767,0.290848,0.00592,0.198752,0.004224,0.005536,0.004704,0.00608,0.005792,0.0552,0.00464
+1125,1402.74,0.712891,0.2928,0.006016,0.19472,0.005312,0.004864,0.005792,0.005792,0.004832,0.059392,0.00608
+1126,1230.21,0.812866,0.292032,0.005664,0.196064,0.004896,0.005408,0.005056,0.006144,0.00592,0.057568,0.005312
+1127,1794.52,0.557251,0.29088,0.005376,0.196416,0.004896,0.005728,0.004704,0.006144,0.005824,0.057408,0.004384
+1128,1388.71,0.720093,0.299136,0.005056,0.202752,0.005216,0.004896,0.005952,0.005888,0.005792,0.058208,0.005376
+1129,1265.56,0.790161,0.293376,0.004576,0.201952,0.004896,0.004096,0.005952,0.005728,0.005728,0.05568,0.004768
+1130,665.8,1.50195,0.304832,0.007968,0.208704,0.004512,0.005248,0.004992,0.006016,0.006048,0.05552,0.005824
+1131,1644.98,0.60791,0.290528,0.005536,0.197216,0.00592,0.00432,0.005984,0.00576,0.005728,0.054208,0.005856
+1132,1279,0.78186,0.28816,0.005792,0.194912,0.004224,0.005696,0.004416,0.006144,0.006144,0.055296,0.005536
+1133,1635.13,0.611572,0.293344,0.004576,0.202176,0.004672,0.005216,0.005024,0.005952,0.00576,0.054912,0.005056
+1134,819.61,1.22009,0.316288,0.004992,0.224832,0.004544,0.005216,0.005024,0.00592,0.005728,0.0552,0.004832
+1135,1568.45,0.637573,0.294944,0.006016,0.202912,0.005312,0.004864,0.005184,0.00512,0.006112,0.054848,0.004576
+1136,1429.67,0.699463,0.294912,0.005408,0.203488,0.00528,0.004864,0.004192,0.006176,0.006112,0.053248,0.006144
+1137,1371.51,0.729126,0.563488,0.00448,0.468896,0.007904,0.005472,0.005056,0.006112,0.005792,0.053632,0.006144
+1138,738.018,1.35498,0.294944,0.005824,0.203008,0.00416,0.0056,0.00464,0.006144,0.006144,0.055008,0.004416
+1139,1605.64,0.622803,0.28768,0.005056,0.197664,0.004896,0.004288,0.005312,0.004928,0.006144,0.054496,0.004896
+1140,1431.92,0.698364,0.292864,0.005696,0.195008,0.00512,0.00512,0.005312,0.005088,0.005984,0.060544,0.004992
+1141,1290.69,0.77478,0.291424,0.00496,0.194592,0.005536,0.004672,0.00544,0.0048,0.006144,0.059392,0.005888
+1142,1609.75,0.621216,0.299584,0.004672,0.202432,0.004416,0.005344,0.004896,0.006144,0.006144,0.060832,0.004704
+1143,1219.59,0.819946,0.29696,0.00576,0.196384,0.004704,0.00528,0.00496,0.006016,0.005728,0.063712,0.004416
+1144,1646.96,0.607178,0.298272,0.005376,0.196928,0.0048,0.004352,0.005888,0.005856,0.005696,0.064064,0.005312
+1145,1364.88,0.732666,0.30336,0.00448,0.202688,0.005728,0.00448,0.0056,0.005856,0.00496,0.063456,0.006112
+1146,1313.45,0.761353,0.516096,0.00608,0.412832,0.007072,0.004096,0.005984,0.00576,0.005888,0.063904,0.00448
+1147,708.712,1.41101,0.306208,0.006144,0.202752,0.005792,0.004448,0.005632,0.006656,0.006048,0.063424,0.005312
+1148,1445.31,0.691895,0.301088,0.00576,0.200704,0.004512,0.005312,0.004896,0.006016,0.005728,0.06352,0.00464
+1149,1356.29,0.737305,0.298944,0.005376,0.196832,0.004704,0.004096,0.005984,0.005824,0.005728,0.064384,0.006016
+1150,1511.72,0.661499,0.303104,0.006144,0.198368,0.004384,0.005632,0.004608,0.006144,0.006144,0.066656,0.005024
+1151,1201.88,0.832031,0.299008,0.005952,0.196,0.004896,0.004096,0.005856,0.005696,0.004832,0.06688,0.0048
+1152,1664.03,0.600952,0.296992,0.005632,0.198336,0.004896,0.004128,0.006144,0.006144,0.00592,0.061152,0.00464
+1153,722.271,1.38452,0.313344,0.005984,0.216736,0.004608,0.005152,0.005088,0.00592,0.005376,0.05968,0.0048
+1154,1497.62,0.667725,0.51584,0.006144,0.413696,0.008,0.004288,0.00576,0.005664,0.00496,0.06144,0.005888
+1155,652.281,1.53308,0.299296,0.004384,0.205856,0.004864,0.00432,0.006144,0.006112,0.00576,0.057184,0.004672
+1156,1587.6,0.629883,0.299488,0.004608,0.200704,0.005152,0.005056,0.005536,0.005728,0.00512,0.063136,0.004448
+1157,1442.76,0.693115,0.299008,0.005568,0.199232,0.005184,0.005088,0.005632,0.00576,0.00496,0.062848,0.004736
+1158,1514.51,0.660278,0.293664,0.004896,0.19776,0.004896,0.004192,0.005664,0.005728,0.004992,0.060928,0.004608
+1159,1345.16,0.743408,0.290816,0.006144,0.194592,0.005792,0.004416,0.005632,0.00592,0.004832,0.057344,0.006144
+1160,1457.91,0.685913,0.294112,0.006144,0.198112,0.00464,0.004096,0.006144,0.006144,0.00608,0.057408,0.005344
+1161,1501.47,0.666016,0.295584,0.004832,0.196256,0.004448,0.005312,0.004928,0.006144,0.006048,0.061536,0.00608
+1162,1351.82,0.739746,0.29504,0.005408,0.199552,0.00576,0.004448,0.006144,0.00576,0.005664,0.05728,0.005024
+1163,1473.65,0.678589,0.299008,0.005984,0.200576,0.004416,0.005344,0.006528,0.005888,0.005824,0.059616,0.004832
+1164,643.317,1.55444,0.312288,0.007136,0.216448,0.004736,0.004224,0.006016,0.0056,0.005728,0.057504,0.004896
+1165,1507.82,0.663208,0.305024,0.006016,0.204928,0.004096,0.00576,0.00448,0.006144,0.005952,0.061632,0.006016
+1166,1223.23,0.817505,0.321408,0.006016,0.223392,0.004192,0.005728,0.004384,0.006144,0.005728,0.059808,0.006016
+1167,1628.95,0.613892,0.29904,0.0056,0.200832,0.004512,0.00528,0.006464,0.00576,0.006336,0.05968,0.004576
+1168,1237.65,0.807983,0.301472,0.004512,0.200736,0.005536,0.004672,0.005344,0.006272,0.005792,0.063872,0.004736
+1169,1401.3,0.713623,0.29904,0.005504,0.199296,0.005184,0.004864,0.004288,0.006144,0.006144,0.063232,0.004384
+1170,1578.72,0.633423,0.303584,0.004576,0.204352,0.004544,0.005248,0.004992,0.005984,0.005728,0.0632,0.00496
+1171,1293.13,0.773315,0.309248,0.005664,0.207328,0.005408,0.004832,0.005216,0.005024,0.006176,0.063456,0.006144
+1172,587.114,1.70325,0.329728,0.007744,0.227808,0.005568,0.00464,0.005408,0.004832,0.006144,0.06304,0.004544
+1173,1630.25,0.613403,0.303104,0.006112,0.200736,0.005504,0.004736,0.005984,0.00592,0.005792,0.062176,0.006144
+1174,1441.75,0.693604,0.300672,0.006144,0.196608,0.005664,0.004576,0.005472,0.00496,0.005952,0.065536,0.00576
+1175,1462.33,0.683838,0.300096,0.006016,0.19632,0.004512,0.00608,0.005216,0.005088,0.006144,0.065376,0.005344
+1176,1361.02,0.734741,0.303232,0.005056,0.202432,0.004416,0.005344,0.004896,0.006048,0.005696,0.064032,0.005312
+1177,1463.12,0.683472,0.299008,0.006112,0.197792,0.004896,0.004192,0.005792,0.005632,0.00496,0.0648,0.004832
+1178,1354.27,0.738403,0.298016,0.005632,0.19632,0.004896,0.004096,0.005408,0.004864,0.006112,0.065408,0.00528
+1179,1432.67,0.697998,0.306336,0.00512,0.202592,0.004224,0.005952,0.004288,0.007744,0.005728,0.066112,0.004576
+1180,1346.93,0.742432,0.518112,0.00464,0.417792,0.007712,0.004608,0.005408,0.0048,0.006144,0.061376,0.005632
+1181,662.998,1.5083,0.30464,0.006048,0.204832,0.00416,0.0056,0.004672,0.006112,0.005952,0.061632,0.005632
+1182,1340.31,0.746094,0.305088,0.004928,0.202752,0.005856,0.004384,0.005664,0.00576,0.00496,0.065472,0.005312
+1183,1530.07,0.653564,0.302656,0.006144,0.196608,0.006112,0.005312,0.00496,0.006112,0.005664,0.066048,0.005696
+1184,1378.89,0.72522,0.304224,0.005984,0.198816,0.005408,0.004832,0.006144,0.006176,0.00592,0.065632,0.005312
+1185,1512,0.661377,0.303872,0.00512,0.199776,0.004896,0.004224,0.00592,0.005952,0.005888,0.066208,0.005888
+1186,1332.03,0.750732,0.297728,0.004864,0.19776,0.004928,0.004224,0.00592,0.005728,0.005728,0.063872,0.004704
+1187,1351.37,0.73999,0.302048,0.00512,0.198624,0.005376,0.004832,0.005216,0.006624,0.006624,0.06464,0.004992
+1188,1531.79,0.652832,0.303296,0.004896,0.198656,0.005792,0.004448,0.005568,0.005856,0.005088,0.067456,0.005536
+1189,679.327,1.47205,0.319488,0.007808,0.213376,0.00576,0.00448,0.005376,0.005888,0.00512,0.066944,0.004736
+1190,1495.71,0.668579,0.3024,0.005472,0.19728,0.004096,0.005856,0.004384,0.006144,0.006144,0.067584,0.00544
+1191,626.3,1.59668,0.306592,0.00592,0.204288,0.004832,0.004096,0.006144,0.006176,0.005728,0.063872,0.005536
+1192,1635.46,0.61145,0.301056,0.006144,0.198656,0.005472,0.004768,0.005152,0.005088,0.006144,0.065216,0.004416
+1193,1535.52,0.651245,0.305152,0.006144,0.200704,0.0056,0.00464,0.00528,0.00496,0.006144,0.065536,0.006144
+1194,1170.45,0.85437,0.306656,0.00608,0.198752,0.005504,0.004736,0.005152,0.005056,0.006144,0.069632,0.0056
+1195,1508.1,0.663086,0.309856,0.006464,0.202112,0.004864,0.004256,0.005824,0.005696,0.004864,0.069632,0.006144
+1196,1424.2,0.702148,0.329888,0.004448,0.226432,0.004992,0.004096,0.005952,0.005728,0.004736,0.067552,0.005952
+1197,687.71,1.4541,0.486976,0.008032,0.38048,0.004704,0.00512,0.00512,0.005824,0.005696,0.066304,0.005696
+1198,1247.26,0.801758,0.307648,0.004544,0.204256,0.00464,0.00512,0.00496,0.005792,0.00576,0.067936,0.00464
+1199,1342.51,0.744873,0.305024,0.005408,0.19952,0.005632,0.004608,0.005472,0.004768,0.007232,0.066496,0.005888
+1200,1511.44,0.661621,0.30304,0.006144,0.196608,0.0056,0.00464,0.005408,0.006208,0.00592,0.066432,0.00608
+1201,1302.18,0.767944,0.300704,0.006016,0.194688,0.005536,0.004704,0.005344,0.006048,0.004992,0.067584,0.005792
+1202,1472.85,0.678955,0.303104,0.005408,0.199392,0.004096,0.005728,0.004512,0.006144,0.005984,0.066912,0.004928
+1203,1461.29,0.684326,0.301984,0.005056,0.199904,0.004864,0.004096,0.005824,0.005728,0.004832,0.06688,0.0048
+1204,1246.69,0.802124,0.307584,0.004512,0.204256,0.00464,0.004352,0.005888,0.005952,0.005984,0.065888,0.006112
+1205,1589.45,0.62915,0.518432,0.005376,0.414176,0.006688,0.00592,0.00432,0.006144,0.006144,0.065056,0.004608
+1206,635.137,1.57446,0.3072,0.00608,0.202816,0.005728,0.004512,0.005536,0.004704,0.006144,0.067296,0.004384
+1207,1528.07,0.654419,0.302048,0.005088,0.196608,0.00528,0.004864,0.004224,0.006112,0.006144,0.068832,0.004896
+1208,1458.43,0.685669,0.306816,0.005792,0.194912,0.005728,0.004512,0.005376,0.004896,0.006112,0.073728,0.00576
+1209,795.031,1.25781,0.299008,0.005472,0.195232,0.004096,0.005728,0.004512,0.006144,0.005792,0.067392,0.00464
+1210,1554.16,0.643433,0.313504,0.005376,0.209824,0.005664,0.004576,0.00528,0.00496,0.00608,0.0672,0.004544
+1211,1455.84,0.68689,0.302464,0.006144,0.198656,0.00576,0.00448,0.005408,0.004864,0.006112,0.065536,0.005504
+1212,1367.61,0.731201,0.309472,0.004672,0.204832,0.005408,0.0048,0.005248,0.004992,0.006144,0.067584,0.005792
+1213,1187.94,0.841797,0.524288,0.006176,0.415712,0.007744,0.004544,0.006144,0.006144,0.006144,0.066848,0.004832
+1214,736.029,1.35864,0.308032,0.004896,0.2048,0.005312,0.004864,0.005216,0.005088,0.007264,0.065984,0.004608
+1215,1273.24,0.7854,0.303872,0.004864,0.200256,0.004544,0.005184,0.005056,0.006016,0.005856,0.06736,0.004736
+1216,1673.54,0.597534,0.303104,0.005984,0.1968,0.005696,0.004544,0.005728,0.00576,0.004896,0.068992,0.004704
+1217,1182.96,0.845337,0.30512,0.00576,0.19904,0.005888,0.004352,0.005696,0.005952,0.005792,0.066528,0.006112
+1218,1599.69,0.625122,0.303936,0.004928,0.19968,0.004928,0.004288,0.006016,0.005856,0.005856,0.067616,0.004768
+1219,1434.68,0.697021,0.302464,0.006016,0.197952,0.004896,0.004128,0.006048,0.00576,0.005696,0.066464,0.005504
+1220,1419.27,0.70459,0.305152,0.0056,0.200384,0.004896,0.004192,0.005856,0.006304,0.005728,0.067136,0.005056
+1221,1119.74,0.893066,0.304544,0.00576,0.19904,0.005408,0.004832,0.00528,0.006656,0.0056,0.066432,0.005536
+1222,772.102,1.29517,0.311936,0.006784,0.206816,0.004128,0.005632,0.004608,0.006144,0.006144,0.067136,0.004544
+1223,1522.39,0.65686,0.30784,0.005056,0.202784,0.004192,0.006016,0.00528,0.00496,0.006144,0.067584,0.005824
+1224,1446.58,0.691284,0.305152,0.006144,0.198656,0.005312,0.004864,0.005216,0.005088,0.006144,0.067584,0.006144
+1225,1206.12,0.829102,0.30848,0.005376,0.202656,0.004896,0.004192,0.005888,0.005696,0.0048,0.069632,0.005344
+1226,1575.38,0.634766,0.302816,0.004448,0.200704,0.005664,0.004576,0.005472,0.006624,0.005632,0.064192,0.005504
+1227,1489.73,0.671265,0.303392,0.004384,0.2024,0.004448,0.005312,0.00496,0.006112,0.005728,0.064928,0.00512
+1228,1363.52,0.733398,0.305024,0.005856,0.20256,0.004576,0.005184,0.005056,0.006016,0.00576,0.064,0.006016
+1229,1216.51,0.822021,0.313344,0.005568,0.213568,0.005408,0.004832,0.005856,0.0056,0.004928,0.063136,0.004448
+1230,1036.57,0.964722,0.310016,0.004832,0.212992,0.00528,0.004864,0.005216,0.00512,0.006144,0.060608,0.00496
+1231,833.452,1.19983,0.315392,0.00672,0.216672,0.004512,0.005248,0.004992,0.005952,0.00592,0.059808,0.005568
+1232,1533.22,0.652222,0.305408,0.005376,0.20176,0.005408,0.0048,0.005248,0.006592,0.005728,0.065984,0.004512
+1233,1356.52,0.737183,0.305568,0.004704,0.204352,0.004544,0.005216,0.005024,0.006144,0.006144,0.063488,0.005952
+1234,1280.6,0.780884,0.303968,0.004928,0.202752,0.005888,0.004352,0.005696,0.005824,0.00496,0.064896,0.004672
+1235,1599.38,0.625244,0.300864,0.004768,0.202752,0.005248,0.004832,0.005952,0.00576,0.004864,0.061376,0.005312
+1236,1445.05,0.692017,0.300736,0.006016,0.200832,0.005728,0.004512,0.005504,0.00656,0.005856,0.059904,0.005824
+1237,1444.29,0.692383,0.295392,0.004544,0.198656,0.005536,0.004704,0.005632,0.00576,0.004992,0.060672,0.004896
+1238,1370.59,0.729614,0.300992,0.005792,0.204224,0.004896,0.004224,0.005696,0.00592,0.0048,0.05936,0.00608
+1239,1261.67,0.792603,0.516128,0.005376,0.416608,0.006272,0.00608,0.00544,0.0048,0.006144,0.059392,0.006016
+1240,684.721,1.46045,0.30032,0.005376,0.203616,0.005888,0.004352,0.005728,0.00592,0.004736,0.059392,0.005312
+1241,1572.36,0.635986,0.294432,0.005376,0.198976,0.004736,0.004192,0.005792,0.005728,0.004768,0.059392,0.005472
+1242,1489.18,0.671509,0.298144,0.005632,0.201248,0.005568,0.00464,0.005376,0.006368,0.005696,0.058336,0.00528
+1243,1201,0.832642,0.296704,0.004768,0.198688,0.00576,0.004448,0.00608,0.005856,0.005696,0.060064,0.005344
+1244,1597.19,0.626099,0.29728,0.005408,0.199552,0.004224,0.005536,0.005856,0.006176,0.00496,0.06048,0.005088
+1245,1517.88,0.658813,0.294912,0.00592,0.198784,0.004192,0.0056,0.00464,0.005952,0.005728,0.059008,0.005088
+1246,1268.9,0.788086,0.296288,0.00576,0.198304,0.004832,0.004096,0.005888,0.005664,0.004832,0.061344,0.005568
+1247,1450.68,0.689331,0.30272,0.005408,0.205696,0.005632,0.004608,0.005888,0.005856,0.005728,0.058304,0.0056
+1248,732.344,1.36548,0.511456,0.005952,0.414144,0.006336,0.004128,0.006112,0.005792,0.006272,0.0576,0.00512
+1249,994.537,1.00549,0.311872,0.004672,0.216736,0.004448,0.004192,0.006048,0.005856,0.006432,0.05888,0.004608
+1250,1338.34,0.747192,0.30048,0.006112,0.202784,0.005728,0.004512,0.005408,0.004864,0.006112,0.059392,0.005568
+1251,1603.13,0.623779,0.303104,0.005536,0.201312,0.005408,0.004832,0.004096,0.006144,0.006144,0.064896,0.004736
+1252,1325.57,0.754395,0.294912,0.00608,0.197984,0.004864,0.005344,0.004864,0.006112,0.005696,0.059136,0.004832
+1253,1297.23,0.770874,0.297664,0.005152,0.20192,0.004896,0.004128,0.00592,0.0056,0.004832,0.059424,0.005792
+1254,1682.48,0.59436,0.29904,0.005376,0.199456,0.004096,0.005728,0.004512,0.006144,0.00608,0.06288,0.004768
+1255,1233.55,0.810669,0.308256,0.005952,0.206208,0.004896,0.004128,0.005984,0.005728,0.004672,0.065376,0.005312
+1256,1446.33,0.691406,0.575488,0.005536,0.467136,0.00656,0.005408,0.004832,0.006176,0.005984,0.069408,0.004448
+1257,669.719,1.49316,0.321696,0.005376,0.209856,0.005248,0.004864,0.004224,0.006144,0.006112,0.07504,0.004832
+1258,1357.19,0.736816,0.313152,0.005472,0.20272,0.0048,0.004128,0.005984,0.005824,0.00576,0.072512,0.005952
+1259,1456.61,0.686523,0.313696,0.00448,0.20272,0.005344,0.004896,0.005856,0.006016,0.00576,0.07424,0.004384
+1260,1256.06,0.796143,0.310336,0.00576,0.200672,0.004512,0.005248,0.004992,0.005728,0.00576,0.072384,0.00528
+1261,1512.56,0.661133,0.315008,0.005344,0.199136,0.00464,0.005152,0.005088,0.00592,0.005888,0.078304,0.005536
+1262,1321.29,0.756836,0.317312,0.005952,0.198656,0.004288,0.005472,0.004768,0.006144,0.006144,0.079872,0.006016
+1263,1519.29,0.658203,0.317888,0.005088,0.198656,0.004096,0.005824,0.00592,0.005888,0.005088,0.081728,0.0056
+1264,1308.21,0.764404,0.319552,0.005376,0.201088,0.004544,0.005184,0.005056,0.005888,0.00576,0.081856,0.0048
+1265,1097.53,0.911133,0.567072,0.006144,0.413472,0.030176,0.021056,0.004288,0.006144,0.006144,0.073728,0.00592
+1266,775.097,1.29016,0.315648,0.005408,0.203744,0.004096,0.005664,0.005888,0.004832,0.006144,0.074784,0.005088
+1267,1120.35,0.892578,0.3232,0.004416,0.212704,0.004384,0.005344,0.004896,0.00608,0.005696,0.07424,0.00544
+1268,1686.29,0.593018,0.31216,0.00496,0.199712,0.004896,0.004288,0.0056,0.006368,0.005728,0.07568,0.004928
+1269,1385.42,0.721802,0.310816,0.005888,0.200896,0.00416,0.0056,0.00464,0.006144,0.005984,0.07184,0.005664
+1270,1413.63,0.707397,0.307232,0.005376,0.199456,0.00576,0.00448,0.005536,0.004704,0.006144,0.071424,0.004352
+1271,1306.33,0.765503,0.31536,0.005536,0.199264,0.004096,0.005664,0.004576,0.006144,0.006112,0.077888,0.00608
+1272,1411.93,0.708252,0.311136,0.005376,0.202624,0.004896,0.004352,0.006112,0.006048,0.005792,0.07008,0.005856
+1273,1238.58,0.807373,0.523456,0.006144,0.414976,0.006912,0.005664,0.004576,0.006144,0.005984,0.067648,0.005408
+1274,684.378,1.46118,0.31264,0.006144,0.208896,0.005152,0.004832,0.004384,0.006112,0.006144,0.065536,0.00544
+1275,1580.25,0.632812,0.313344,0.006144,0.198656,0.005344,0.004864,0.00416,0.006112,0.006144,0.077184,0.004736
+1276,1488.37,0.671875,0.309248,0.006144,0.199712,0.004896,0.004288,0.006144,0.005952,0.005696,0.071744,0.004672
+1277,1346.26,0.742798,0.307232,0.0056,0.198848,0.004448,0.005312,0.004928,0.006144,0.006144,0.071232,0.004576
+1278,1433.67,0.69751,0.303776,0.004832,0.198656,0.005856,0.004384,0.005568,0.00576,0.005056,0.067616,0.006048
+1279,1309.67,0.76355,0.305152,0.006048,0.2008,0.004096,0.0056,0.004672,0.006112,0.005888,0.067584,0.004352
+1280,1471.79,0.679443,0.3072,0.005536,0.196928,0.004384,0.005376,0.004864,0.00608,0.005984,0.072928,0.00512
+1281,1277.8,0.782593,0.315392,0.006144,0.200704,0.00512,0.004864,0.004352,0.006144,0.006144,0.077504,0.004416
+1282,1060.04,0.943359,0.560928,0.004608,0.415744,0.008224,0.006112,0.005952,0.004288,0.007808,0.078208,0.029984
+1283,831.506,1.20264,0.316928,0.005984,0.208608,0.004544,0.00528,0.00496,0.006048,0.005728,0.070144,0.005632
+1284,1472.85,0.678955,0.30864,0.00592,0.202176,0.004896,0.004096,0.006144,0.006176,0.005952,0.067744,0.005536
+1285,1292.11,0.773926,0.301056,0.005376,0.195328,0.005856,0.004384,0.005696,0.0056,0.005088,0.0688,0.004928
+1286,579.349,1.72607,0.949152,0.005024,0.835552,0.004128,0.004192,0.005728,0.005568,0.00496,0.078976,0.005024
+1287,1597.19,0.626099,0.31328,0.0048,0.210464,0.004608,0.005152,0.005056,0.00592,0.00592,0.065984,0.005376
+1288,1265.96,0.789917,0.308992,0.006144,0.204768,0.00416,0.00576,0.005824,0.006048,0.00592,0.06448,0.005888
+1289,1347.81,0.741943,0.518176,0.005792,0.414048,0.006304,0.005984,0.005536,0.00576,0.005088,0.064704,0.00496
+1290,711.111,1.40625,0.312864,0.00592,0.211136,0.004128,0.005632,0.004608,0.006144,0.00576,0.063872,0.005664
+1291,1306.75,0.765259,0.305152,0.006016,0.200832,0.005472,0.004768,0.005888,0.00592,0.005728,0.064384,0.006144
+1292,1481.11,0.675171,0.301568,0.004576,0.201824,0.004928,0.004192,0.005696,0.00576,0.004928,0.063488,0.006176
+1293,1512,0.661377,0.302912,0.005888,0.200256,0.0048,0.004096,0.00608,0.005792,0.005696,0.064352,0.005952
+1294,1385.89,0.721558,0.299328,0.004672,0.197728,0.004896,0.004224,0.005824,0.006272,0.005728,0.064096,0.005888
+1295,1219.77,0.819824,0.299008,0.006016,0.19472,0.005696,0.004512,0.005792,0.00592,0.00592,0.06432,0.006112
+1296,1663.69,0.601074,0.301312,0.005408,0.199648,0.00512,0.004832,0.004384,0.006144,0.006144,0.06464,0.004992
+1297,1344.49,0.743774,0.31616,0.004864,0.196384,0.00432,0.005216,0.005024,0.005952,0.00576,0.083616,0.005024
+1298,1379.36,0.724976,0.597856,0.006016,0.467072,0.00768,0.004608,0.005472,0.0048,0.006016,0.09024,0.005952
+1299,674.294,1.48303,0.313344,0.005728,0.209312,0.005728,0.004512,0.005536,0.004704,0.006144,0.065536,0.006144
+1300,1382.38,0.723389,0.306304,0.005376,0.200704,0.004864,0.004096,0.005952,0.005952,0.005952,0.068128,0.00528
+1301,1428.92,0.699829,0.303776,0.004768,0.19968,0.004896,0.00432,0.005888,0.005728,0.006336,0.067808,0.004352
+1302,1510.6,0.661987,0.301184,0.005408,0.196992,0.004608,0.005152,0.005056,0.005472,0.004768,0.068608,0.00512
+1303,1387.77,0.720581,0.300672,0.00592,0.194784,0.005536,0.004736,0.005408,0.005824,0.00512,0.067584,0.00576
+1304,1205.24,0.829712,0.30352,0.00448,0.200704,0.005472,0.004768,0.005312,0.004928,0.006144,0.067232,0.00448
+1305,1273.43,0.785278,0.308864,0.00576,0.207232,0.005696,0.004544,0.005344,0.004896,0.007168,0.062464,0.00576
+1306,1327.71,0.753174,0.309248,0.005824,0.208224,0.004896,0.004288,0.00576,0.005792,0.00592,0.063776,0.004768
+1307,644.583,1.55139,0.315808,0.00656,0.210944,0.004096,0.005792,0.004448,0.006176,0.006112,0.065536,0.006144
+1308,1633.5,0.612183,0.300544,0.006144,0.200704,0.004096,0.005728,0.004512,0.006144,0.00592,0.061664,0.005632
+1309,1422.72,0.702881,0.30192,0.00496,0.200736,0.005472,0.004736,0.005312,0.00624,0.004832,0.064512,0.00512
+1310,1444.03,0.692505,0.301952,0.004992,0.200288,0.004512,0.005536,0.00656,0.005728,0.004704,0.065248,0.004384
+1311,1365.56,0.7323,0.299008,0.006144,0.196608,0.004096,0.00576,0.00576,0.004896,0.006112,0.063488,0.006144
+1312,1404.18,0.712158,0.305408,0.00496,0.20016,0.00464,0.004256,0.005984,0.006144,0.006144,0.067584,0.005536
+1313,1295.79,0.771729,0.301056,0.005824,0.196512,0.004512,0.00528,0.00496,0.006112,0.005888,0.067328,0.00464
+1314,1578.42,0.633545,0.309024,0.0056,0.202784,0.004608,0.00512,0.00512,0.006144,0.006112,0.067616,0.00592
+1315,1323.85,0.755371,0.52592,0.006144,0.417792,0.007456,0.004832,0.005824,0.00576,0.005888,0.066496,0.005728
+1316,701.49,1.42554,0.307936,0.004832,0.202752,0.005856,0.004384,0.005664,0.005664,0.005056,0.067584,0.006144
+1317,1350.48,0.740479,0.299232,0.005344,0.196896,0.004832,0.004096,0.006048,0.005792,0.00576,0.065856,0.004608
+1318,1494.89,0.668945,0.297184,0.005408,0.195296,0.00432,0.005408,0.004832,0.006144,0.005984,0.06496,0.004832
+1319,1207.9,0.827881,0.299008,0.005664,0.195072,0.005312,0.004896,0.005728,0.005888,0.005792,0.065856,0.0048
+1320,1664.03,0.600952,0.305184,0.006144,0.196608,0.005216,0.004832,0.004288,0.006144,0.006144,0.071168,0.00464
+1321,1412.41,0.708008,0.30352,0.004512,0.196608,0.005248,0.004864,0.004256,0.006112,0.006144,0.069632,0.006144
+1322,1411.2,0.708618,0.303104,0.005472,0.19728,0.006112,0.004128,0.006016,0.005792,0.005728,0.068256,0.00432
+1323,1358.54,0.736084,0.304224,0.0056,0.194976,0.004224,0.005536,0.004704,0.006144,0.005984,0.071744,0.005312
+1324,569.522,1.75586,0.340928,0.007104,0.228992,0.00448,0.00528,0.00496,0.006016,0.005728,0.07408,0.004288
+1325,1532.36,0.652588,0.308992,0.00576,0.1968,0.004288,0.005472,0.005792,0.00512,0.006144,0.073728,0.005888
+1326,1481.11,0.675171,0.306944,0.00448,0.196064,0.00464,0.005152,0.005088,0.005824,0.005728,0.074464,0.005504
+1327,1208.26,0.827637,0.3072,0.005344,0.195072,0.004384,0.005376,0.004864,0.006144,0.005856,0.075136,0.005024
+1328,1511.72,0.661499,0.309632,0.004512,0.195936,0.004736,0.00416,0.00608,0.006144,0.006144,0.077504,0.004416
+1329,1522.11,0.656982,0.309248,0.005888,0.196192,0.004768,0.004128,0.005664,0.005696,0.004992,0.075776,0.006144
+1330,1394.86,0.716919,0.307936,0.004832,0.196128,0.004576,0.005184,0.005056,0.006144,0.006144,0.075072,0.0048
+1331,1185.87,0.843262,0.303104,0.006144,0.196448,0.004256,0.005504,0.004736,0.006144,0.00608,0.069056,0.004736
+1332,1566.05,0.63855,0.535328,0.004896,0.42752,0.006656,0.005312,0.004928,0.006144,0.005952,0.067776,0.006144
+1333,681.021,1.46838,0.30464,0.004448,0.198496,0.004256,0.005504,0.004736,0.006144,0.006144,0.069568,0.005344
+1334,1494.89,0.668945,0.301056,0.005824,0.19488,0.005408,0.004832,0.005184,0.005056,0.006144,0.068896,0.004832
+1335,1310.09,0.763306,0.303936,0.004896,0.19456,0.004224,0.005664,0.004448,0.005984,0.005728,0.07408,0.004352
+1336,1509.49,0.662476,0.304704,0.004576,0.196608,0.004096,0.005728,0.005792,0.005984,0.005088,0.071488,0.005344
+1337,1400.1,0.714233,0.301088,0.005376,0.194336,0.004896,0.005792,0.004672,0.006144,0.00592,0.069024,0.004928
+1338,1431.42,0.698608,0.303104,0.005984,0.195872,0.004896,0.004192,0.006144,0.006144,0.005632,0.069152,0.005088
+1339,1193.3,0.838013,0.303264,0.005376,0.196768,0.004864,0.005408,0.004832,0.006144,0.00576,0.069664,0.004448
+1340,1621.86,0.616577,0.306368,0.006144,0.198656,0.005632,0.004608,0.005312,0.004928,0.006144,0.069632,0.005312
+1341,688.23,1.453,0.313376,0.007488,0.20144,0.005408,0.004832,0.005248,0.0064,0.005952,0.072288,0.00432
+1342,1470.21,0.680176,0.30464,0.005472,0.197248,0.004128,0.005504,0.004736,0.005728,0.005728,0.070464,0.005632
+1343,1040.52,0.96106,0.321504,0.005952,0.213216,0.005184,0.004864,0.004256,0.006144,0.006144,0.069632,0.006112
+1344,1227.08,0.814941,0.313376,0.005888,0.205024,0.00416,0.0056,0.004608,0.007232,0.005056,0.070912,0.004896
+1345,1533.8,0.651978,0.308,0.00512,0.202752,0.005568,0.004672,0.005248,0.004992,0.006144,0.067584,0.00592
+1346,1166.79,0.857056,0.312384,0.00544,0.205504,0.006144,0.005184,0.005056,0.006144,0.006176,0.067456,0.00528
+1347,1650.28,0.605957,0.302944,0.00448,0.198528,0.004096,0.005728,0.004512,0.006144,0.005984,0.067744,0.005728
+1348,1284.42,0.778564,0.303104,0.006144,0.198656,0.005632,0.00464,0.005408,0.006496,0.00576,0.064224,0.006144
+1349,1391.78,0.718506,0.3072,0.005376,0.20352,0.005152,0.004864,0.00432,0.006144,0.006048,0.067584,0.004192
+1350,711.667,1.40515,0.308256,0.007936,0.198944,0.005664,0.004544,0.005472,0.004768,0.006144,0.069472,0.005312
+1351,1682.48,0.59436,0.30608,0.005024,0.201792,0.004992,0.00416,0.005504,0.00592,0.00496,0.069216,0.004512
+1352,1168.28,0.855957,0.301056,0.005856,0.19792,0.004896,0.00432,0.005952,0.005824,0.005824,0.06592,0.004544
+1353,1477.37,0.67688,0.299008,0.006112,0.196672,0.005216,0.004864,0.005312,0.005088,0.006112,0.063488,0.006144
+1354,1676.63,0.596436,0.298848,0.005856,0.1968,0.004192,0.005568,0.004672,0.006144,0.006144,0.063488,0.005984
+1355,1369.21,0.730347,0.299008,0.005792,0.1968,0.004256,0.006112,0.005216,0.00512,0.00608,0.064736,0.004896
+1356,1399.86,0.714355,0.299008,0.005536,0.195168,0.005536,0.004704,0.005216,0.005024,0.006144,0.065536,0.006144
+1357,1417.3,0.705566,0.302752,0.005504,0.198752,0.00464,0.004256,0.005984,0.006016,0.005952,0.065888,0.00576
+1358,712.72,1.40308,0.485376,0.008192,0.376832,0.005632,0.004608,0.00544,0.0048,0.006144,0.068992,0.004736
+1359,1193.82,0.837646,0.299008,0.005472,0.195232,0.005312,0.004928,0.005888,0.005824,0.005728,0.065792,0.004832
+1360,1482.45,0.674561,0.299008,0.005632,0.195072,0.005344,0.004864,0.005536,0.005888,0.004992,0.06736,0.00432
+1361,1191.39,0.839355,0.300192,0.006144,0.19456,0.00528,0.004832,0.005312,0.005056,0.006144,0.067552,0.005312
+1362,539.018,1.85522,0.350368,0.005024,0.24576,0.005536,0.004704,0.005376,0.004864,0.006144,0.067584,0.005376
+1363,1335.29,0.748901,0.31584,0.004544,0.210944,0.00512,0.004864,0.004352,0.006144,0.006016,0.069728,0.004128
+1364,1335.07,0.749023,0.33888,0.005056,0.231424,0.004096,0.005696,0.004544,0.006144,0.006016,0.071584,0.00432
+1365,1349.37,0.741089,0.618496,0.00592,0.464128,0.00688,0.004352,0.012288,0.040736,0.012224,0.06704,0.004928
+1366,683.863,1.46228,0.310944,0.00608,0.204864,0.005888,0.004352,0.005696,0.006592,0.005696,0.065984,0.005792
+1367,1482.98,0.674316,0.301088,0.006048,0.196704,0.004096,0.005664,0.004576,0.006144,0.00576,0.06704,0.005056
+1368,1360.8,0.734863,0.301056,0.0056,0.195104,0.005568,0.004672,0.005696,0.00592,0.004768,0.069024,0.004704
+1369,1502.29,0.665649,0.302688,0.005472,0.19488,0.004448,0.005312,0.004928,0.006144,0.006144,0.069632,0.005728
+1370,1212.55,0.824707,0.301184,0.005376,0.19488,0.004672,0.005184,0.005056,0.005888,0.005664,0.069344,0.00512
+1371,1670.81,0.598511,0.303104,0.005664,0.1968,0.004384,0.005344,0.004896,0.00592,0.005696,0.069536,0.004864
+1372,1417.06,0.705688,0.309504,0.005376,0.19968,0.005824,0.004416,0.006144,0.006144,0.00576,0.071104,0.005056
+1373,1239.71,0.806641,0.527616,0.006144,0.415104,0.006784,0.005888,0.004352,0.006144,0.006144,0.07168,0.005376
+1374,671.09,1.49011,0.305792,0.004736,0.197664,0.004928,0.004256,0.005664,0.00576,0.00496,0.07296,0.004864
+1375,1637.09,0.61084,0.302656,0.005472,0.195232,0.004096,0.005728,0.004512,0.006144,0.00592,0.069856,0.005696
+1376,1308.42,0.764282,0.301664,0.004768,0.195872,0.004832,0.004096,0.006016,0.005664,0.00576,0.068576,0.00608
+1377,1519.57,0.658081,0.3072,0.005792,0.196032,0.004896,0.004224,0.005824,0.005824,0.004736,0.075232,0.00464
+1378,1306.75,0.765259,0.303104,0.006144,0.195776,0.004896,0.004128,0.005888,0.00576,0.0048,0.069568,0.006144
+1379,1471.53,0.679565,0.311296,0.006016,0.196448,0.004384,0.00528,0.00496,0.006176,0.006112,0.07696,0.00496
+1380,835.748,1.19653,0.461856,0.00576,0.348224,0.004416,0.005344,0.004896,0.006048,0.006208,0.075744,0.005216
+1381,1016.38,0.983887,0.3976,0.004512,0.28864,0.00576,0.00448,0.005568,0.005792,0.005024,0.073056,0.004768
+1382,658.362,1.51892,0.34592,0.00768,0.229536,0.004448,0.005312,0.004928,0.006144,0.006016,0.075904,0.005952
+1383,813.748,1.22888,0.429728,0.006144,0.300416,0.00576,0.004864,0.014528,0.006176,0.005696,0.080352,0.005792
+1384,1717.76,0.582153,0.310112,0.00496,0.202752,0.005152,0.00496,0.004256,0.006112,0.006144,0.071488,0.004288
+1385,1225.43,0.81604,0.3072,0.006144,0.196416,0.004288,0.005472,0.004768,0.006112,0.005728,0.0736,0.004672
+1386,1558.6,0.641602,0.311296,0.006144,0.19456,0.005792,0.004448,0.005984,0.00576,0.00576,0.078048,0.0048
+1387,1466.79,0.681763,0.30944,0.005376,0.195488,0.004128,0.005408,0.0048,0.006144,0.005824,0.077856,0.004416
+1388,1374.73,0.727417,0.31136,0.005408,0.198656,0.004896,0.004096,0.00592,0.005792,0.00576,0.076192,0.00464
+1389,1277.01,0.783081,0.61408,0.005472,0.46752,0.005888,0.004448,0.005504,0.006144,0.006304,0.0824,0.0304
+1390,662.194,1.51013,0.311296,0.005632,0.19712,0.005664,0.004576,0.005472,0.004768,0.006144,0.075776,0.006144
+1391,1371.51,0.729126,0.311296,0.004672,0.196576,0.004128,0.005952,0.00432,0.006112,0.006144,0.077856,0.005536
+1392,1511.72,0.661499,0.309248,0.005408,0.195232,0.00416,0.0056,0.00464,0.006144,0.005824,0.077632,0.004608
+1393,1420.5,0.703979,0.306752,0.006112,0.194592,0.0056,0.00464,0.005248,0.004992,0.006112,0.07376,0.005696
+1394,1414.85,0.706787,0.309184,0.00608,0.194656,0.005792,0.004416,0.005504,0.005984,0.004896,0.075776,0.00608
+1395,1339.66,0.74646,0.305152,0.005408,0.1952,0.004192,0.0056,0.00464,0.006176,0.006112,0.072832,0.004992
+1396,1378.66,0.725342,0.309664,0.004544,0.201952,0.004864,0.004096,0.006112,0.005504,0.0048,0.073344,0.004448
+1397,1254.52,0.797119,0.315328,0.004576,0.201824,0.004928,0.004192,0.006112,0.006112,0.005952,0.076032,0.0056
+1398,418.365,2.39026,0.318176,0.00688,0.200704,0.005344,0.004832,0.005184,0.006432,0.004864,0.079232,0.004704
+1399,993.934,1.0061,0.344064,0.00592,0.225504,0.005856,0.004384,0.005696,0.005792,0.004896,0.081056,0.00496
+1400,1513.67,0.660645,0.311296,0.005408,0.198848,0.00464,0.00512,0.00512,0.006144,0.00576,0.074112,0.006144
+1401,1416.57,0.705933,0.30768,0.004576,0.196608,0.00544,0.004832,0.005408,0.005824,0.00512,0.075104,0.004768
+1402,1180.57,0.847046,0.305184,0.005792,0.194752,0.004256,0.005536,0.004704,0.006144,0.00608,0.073376,0.004544
+1403,1515.63,0.65979,0.319488,0.006048,0.212928,0.004256,0.005472,0.004768,0.006144,0.00592,0.069344,0.004608
+1404,1524.38,0.656006,0.303424,0.004416,0.19856,0.004192,0.005568,0.004672,0.005888,0.005888,0.069152,0.005088
+1405,655.308,1.526,0.307136,0.007072,0.19664,0.0056,0.004608,0.00544,0.0048,0.006144,0.071392,0.00544
+1406,1452.74,0.688354,0.305024,0.00576,0.19904,0.005632,0.004608,0.00544,0.0048,0.006144,0.067584,0.006016
+1407,1377.73,0.72583,0.301728,0.004928,0.19456,0.004096,0.005664,0.004576,0.006144,0.005984,0.069792,0.005984
+1408,1299.7,0.769409,0.304064,0.005056,0.195584,0.00512,0.00544,0.0048,0.006144,0.005824,0.07104,0.005056
+1409,1454.03,0.687744,0.3072,0.005824,0.19488,0.005792,0.004448,0.00576,0.00592,0.00592,0.07376,0.004896
+1410,1369.67,0.730103,0.30688,0.004736,0.196032,0.004672,0.005792,0.005568,0.005024,0.006144,0.073632,0.00528
+1411,1426.18,0.701172,0.303584,0.005088,0.19424,0.004416,0.005216,0.005024,0.005984,0.00576,0.072224,0.005632
+1412,1386.83,0.721069,0.318752,0.006112,0.201984,0.004896,0.004128,0.005984,0.006272,0.005952,0.078016,0.005408
+1413,1388.47,0.720215,0.530304,0.006144,0.415744,0.00752,0.004768,0.005952,0.00576,0.005728,0.072672,0.006016
+1414,686.097,1.45752,0.305152,0.005568,0.194816,0.004416,0.005312,0.004928,0.006048,0.005728,0.073376,0.00496
+1415,1491.9,0.670288,0.302784,0.004768,0.196608,0.005312,0.004832,0.005312,0.005056,0.006112,0.069472,0.005312
+1416,1303.84,0.766968,0.306176,0.00512,0.19664,0.005632,0.004576,0.005472,0.004768,0.006144,0.072704,0.00512
+1417,1134.78,0.881226,0.322976,0.00576,0.213376,0.005664,0.004576,0.005504,0.005824,0.005088,0.071648,0.005536
+1418,1712.73,0.583862,0.309248,0.005568,0.199232,0.0056,0.004672,0.005664,0.006016,0.00592,0.071456,0.00512
+1419,1333.12,0.750122,0.305184,0.006144,0.196288,0.004416,0.005312,0.004928,0.006144,0.00592,0.071488,0.004544
+1420,1524.94,0.655762,0.306464,0.006144,0.196608,0.00592,0.00432,0.0056,0.00464,0.006144,0.07168,0.005408
+1421,1130.4,0.884644,0.303232,0.004864,0.194528,0.005728,0.004512,0.005408,0.004832,0.006144,0.07168,0.005536
+1422,721.254,1.38647,0.311328,0.007808,0.200192,0.004928,0.00416,0.005856,0.00592,0.005824,0.07216,0.00448
+1423,1336.38,0.748291,0.305152,0.0056,0.194944,0.004256,0.005472,0.004768,0.006144,0.00576,0.073504,0.004704
+1424,1495.44,0.668701,0.308768,0.006144,0.19456,0.005696,0.004544,0.005312,0.004928,0.006144,0.075776,0.005664
+1425,1331.82,0.750854,0.308288,0.006112,0.194528,0.00416,0.006144,0.005216,0.005056,0.006112,0.075584,0.005376
+1426,1414.85,0.706787,0.3072,0.005664,0.19504,0.005376,0.004864,0.00576,0.006016,0.005856,0.073888,0.004736
+1427,1300.52,0.768921,0.308672,0.005664,0.196512,0.004672,0.005184,0.005056,0.005888,0.00576,0.074368,0.005568
+1428,1488.37,0.671875,0.306816,0.005728,0.194752,0.00432,0.00544,0.0048,0.006144,0.005792,0.07408,0.00576
+1429,1323.21,0.755737,0.3072,0.00608,0.19568,0.004896,0.004288,0.005856,0.005792,0.004736,0.075072,0.0048
+1430,1445.31,0.691895,0.53472,0.005376,0.4208,0.007424,0.004832,0.005216,0.005056,0.006144,0.07552,0.004352
+1431,645.649,1.54883,0.310976,0.006144,0.197728,0.004928,0.004192,0.005856,0.005632,0.004896,0.075776,0.005824
+1432,1517.6,0.658936,0.310272,0.006016,0.196736,0.005312,0.004864,0.00528,0.005024,0.006144,0.07552,0.005376
+1433,1214.89,0.82312,0.309248,0.005888,0.196032,0.004896,0.004128,0.005792,0.005792,0.006336,0.07424,0.006144
+1434,1616.1,0.618774,0.299648,0.004736,0.19456,0.005312,0.004832,0.005216,0.00512,0.006144,0.068928,0.0048
+1435,1348.03,0.741821,0.300032,0.00512,0.19616,0.004544,0.005376,0.004864,0.006048,0.005696,0.067168,0.005056
+1436,986.869,1.01331,0.327712,0.005536,0.219392,0.004448,0.005312,0.004928,0.005984,0.00576,0.072032,0.00432
+1437,1546.54,0.646606,0.317472,0.0056,0.203264,0.004128,0.0056,0.00464,0.006144,0.006144,0.077408,0.004544
+1438,1181.08,0.84668,0.582592,0.005056,0.466944,0.007296,0.004832,0.004256,0.006144,0.006144,0.075776,0.006144
+1439,725.469,1.37842,0.31888,0.006144,0.202752,0.004096,0.005632,0.005792,0.005184,0.00592,0.077824,0.005536
+1440,1412.41,0.708008,0.320352,0.00496,0.215072,0.005408,0.0048,0.005312,0.004928,0.006144,0.067584,0.006144
+1441,1397.95,0.715332,0.302976,0.006144,0.196608,0.005184,0.004864,0.00544,0.004992,0.006144,0.067584,0.006016
+1442,1407.08,0.710693,0.305152,0.005632,0.196352,0.004864,0.005472,0.004768,0.006144,0.005632,0.070144,0.006144
+1443,1373.57,0.728027,0.301088,0.006016,0.196736,0.005184,0.004864,0.005472,0.005088,0.006016,0.066848,0.004864
+1444,1348.92,0.741333,0.30096,0.005856,0.196896,0.005184,0.004864,0.004288,0.006144,0.006144,0.065536,0.006048
+1445,1517.04,0.65918,0.305152,0.005664,0.198944,0.004288,0.00576,0.00448,0.006144,0.006144,0.068704,0.005024
+1446,1133.06,0.882568,0.30416,0.00512,0.199904,0.004896,0.004096,0.005984,0.005728,0.00576,0.068096,0.004576
+1447,1045.97,0.956055,0.520896,0.006848,0.4096,0.006144,0.005664,0.004576,0.006144,0.006016,0.070944,0.00496
+1448,854.312,1.17053,0.308192,0.005088,0.202176,0.004672,0.004128,0.006112,0.006144,0.00592,0.068864,0.005088
+1449,1494.62,0.669067,0.307872,0.004864,0.198464,0.004288,0.005472,0.004768,0.00608,0.005728,0.07216,0.006048
+1450,1409.74,0.709351,0.303616,0.004608,0.197952,0.0048,0.005472,0.004768,0.006144,0.006144,0.06864,0.005088
+1451,1315.56,0.760132,0.299072,0.005376,0.195392,0.005312,0.004864,0.005184,0.00512,0.006144,0.066848,0.004832
+1452,1534.08,0.651855,0.299104,0.004704,0.197984,0.004768,0.004128,0.005888,0.005728,0.00576,0.064512,0.005632
+1453,1348.92,0.741333,0.30128,0.005024,0.196384,0.00432,0.005536,0.004704,0.006144,0.006016,0.067712,0.00544
+1454,1397.95,0.715332,0.302848,0.005376,0.195552,0.00576,0.00448,0.005408,0.004832,0.006144,0.069632,0.005664
+1455,1408.04,0.710205,0.311296,0.005856,0.200608,0.00448,0.005248,0.004992,0.005984,0.005984,0.072,0.006144
+1456,684.32,1.4613,0.316864,0.007808,0.207232,0.005856,0.004416,0.005696,0.00656,0.005792,0.067872,0.005632
+1457,1381.68,0.723755,0.30304,0.004704,0.198656,0.005344,0.004832,0.005216,0.006528,0.005728,0.06656,0.005472
+1458,1589.45,0.62915,0.307232,0.006144,0.198656,0.005536,0.004704,0.00592,0.005792,0.00576,0.069664,0.005056
+1459,1342.95,0.744629,0.303232,0.005024,0.198592,0.00416,0.0056,0.00464,0.006144,0.00592,0.067808,0.005344
+1460,1204.88,0.829956,0.303104,0.006144,0.196608,0.005504,0.004736,0.005792,0.00576,0.004832,0.068896,0.004832
+1461,1622.82,0.616211,0.303008,0.005664,0.197024,0.00416,0.0056,0.00464,0.006144,0.005952,0.067776,0.006048
+1462,1374.5,0.727539,0.30384,0.004832,0.1984,0.004352,0.005408,0.004832,0.006144,0.005952,0.06896,0.00496
+1463,1466.79,0.681763,0.303552,0.004544,0.2,0.0048,0.004096,0.006144,0.006144,0.006016,0.065664,0.006144
+1464,1407.8,0.710327,0.3072,0.00576,0.198784,0.004352,0.00528,0.00496,0.006144,0.005792,0.07136,0.004768
+1465,622.256,1.60706,0.315616,0.006688,0.202784,0.00528,0.004928,0.005408,0.004832,0.006144,0.073728,0.005824
+1466,1480.84,0.675293,0.307392,0.005376,0.196672,0.004896,0.004192,0.005952,0.005856,0.00576,0.072544,0.006144
+1467,1456.87,0.686401,0.307936,0.004832,0.198528,0.004224,0.005536,0.004704,0.006144,0.005888,0.073504,0.004576
+1468,1218.14,0.820923,0.311392,0.0048,0.196608,0.00416,0.005696,0.00448,0.006144,0.00592,0.07808,0.005504
+1469,1343.39,0.744385,0.315392,0.006144,0.196608,0.004128,0.00576,0.004448,0.007392,0.005152,0.08112,0.00464
+1470,1672.52,0.5979,0.308672,0.005472,0.19728,0.005312,0.004832,0.005216,0.00512,0.006144,0.073728,0.005568
+1471,1346.26,0.742798,0.31232,0.00512,0.196512,0.004192,0.005504,0.004736,0.005984,0.005696,0.080096,0.00448
+1472,1401.54,0.713501,0.307168,0.00576,0.19904,0.00544,0.0048,0.005376,0.005984,0.005056,0.0696,0.006112
+1473,742.231,1.34729,0.493536,0.007488,0.377728,0.00416,0.005664,0.004576,0.006144,0.005984,0.075936,0.005856
+1474,682.553,1.46509,0.32976,0.005632,0.217344,0.004352,0.004256,0.005248,0.004832,0.005184,0.078048,0.004864
+1475,1586.98,0.630127,0.313344,0.006144,0.198656,0.005216,0.004864,0.004256,0.006144,0.006144,0.07696,0.00496
+1476,1404.42,0.712036,0.309632,0.00448,0.196608,0.005824,0.004416,0.006144,0.005696,0.005728,0.074592,0.006144
+1477,1208.08,0.827759,0.31712,0.005376,0.194688,0.004896,0.004192,0.005664,0.00576,0.00496,0.075776,0.015808
+1478,1617.37,0.618286,0.308832,0.00544,0.194432,0.004896,0.004288,0.005984,0.006016,0.005984,0.076064,0.005728
+1479,1262.25,0.792236,0.339968,0.006016,0.217216,0.005888,0.004352,0.005728,0.006528,0.00592,0.083488,0.004832
+1480,1344.05,0.744019,0.321024,0.005984,0.196768,0.005664,0.004576,0.006144,0.006144,0.00592,0.084192,0.005632
+1481,640.1,1.56226,0.336288,0.006592,0.206368,0.004576,0.005376,0.004864,0.006112,0.005696,0.090592,0.006112
+1482,1473.65,0.678589,0.31248,0.005376,0.197248,0.00432,0.00544,0.0048,0.006144,0.00576,0.078112,0.00528
+1483,1255.86,0.796265,0.311872,0.004672,0.19456,0.005728,0.004512,0.0056,0.00576,0.005024,0.081632,0.004384
+1484,1538.11,0.650146,0.315456,0.00464,0.196608,0.00576,0.00448,0.006144,0.00576,0.005696,0.080736,0.005632
+1485,1153.97,0.866577,0.30736,0.005344,0.193184,0.004384,0.005344,0.004896,0.00608,0.00576,0.076224,0.006144
+1486,1612.28,0.620239,0.30528,0.0048,0.194208,0.004448,0.0056,0.00464,0.006144,0.005824,0.074048,0.005568
+1487,1205.06,0.829834,0.303904,0.004896,0.194208,0.005568,0.004832,0.004288,0.006144,0.00608,0.073504,0.004384
+1488,1592.84,0.627808,0.321568,0.005408,0.210944,0.004864,0.004096,0.005984,0.005728,0.004672,0.075232,0.00464
+1489,1101.08,0.908203,0.550272,0.007552,0.432768,0.005504,0.004768,0.00592,0.006336,0.00576,0.07616,0.005504
+1490,857.083,1.16675,0.308896,0.004544,0.196608,0.004096,0.005888,0.004352,0.006144,0.006112,0.075808,0.005344
+1491,1329.87,0.751953,0.305152,0.005568,0.193088,0.005216,0.004832,0.004288,0.006144,0.006144,0.0752,0.004672
+1492,1442,0.693481,0.311808,0.004864,0.196608,0.00528,0.00496,0.005408,0.004832,0.006144,0.077824,0.005888
+1493,888.985,1.12488,0.395648,0.0056,0.268992,0.00432,0.005408,0.015072,0.006144,0.006144,0.079168,0.0048
+1494,1795.7,0.556885,0.31504,0.005856,0.19616,0.004832,0.005664,0.004608,0.006112,0.006144,0.079872,0.005792
+1495,1306.75,0.765259,0.30992,0.0048,0.195552,0.005056,0.00416,0.006144,0.006144,0.005824,0.077152,0.005088
+1496,1384.72,0.722168,0.313344,0.005856,0.196608,0.004384,0.005344,0.004896,0.005984,0.005536,0.079904,0.004832
+1497,1463.9,0.683105,0.313536,0.004864,0.196608,0.005312,0.004864,0.005184,0.00512,0.006144,0.079872,0.005568
+1498,611.07,1.63647,0.315584,0.006624,0.200544,0.004256,0.005504,0.004736,0.006144,0.006144,0.075808,0.005824
+1499,1502.02,0.665771,0.309824,0.004736,0.196608,0.005344,0.004832,0.00416,0.006144,0.006144,0.075776,0.00608
+1500,1354.72,0.738159,0.309504,0.005376,0.19536,0.00432,0.005408,0.004832,0.006048,0.005696,0.07632,0.006144
+1501,1498.99,0.667114,0.309376,0.004672,0.196384,0.004288,0.005472,0.004768,0.006144,0.005792,0.076128,0.005728
+1502,1320.01,0.757568,0.310944,0.006144,0.19456,0.005824,0.004416,0.005792,0.005792,0.004832,0.077792,0.005792
+1503,1437.45,0.695679,0.309344,0.005376,0.194976,0.004544,0.006048,0.005216,0.00512,0.006144,0.077312,0.004608
+1504,1331.6,0.750977,0.30736,0.005376,0.195488,0.005696,0.004544,0.005376,0.00592,0.005088,0.073728,0.006144
+1505,1484.06,0.673828,0.30768,0.005088,0.198144,0.004608,0.00512,0.00496,0.005728,0.005696,0.072704,0.005632
+1506,738.284,1.35449,0.49152,0.00768,0.377344,0.005216,0.004864,0.004256,0.006144,0.006144,0.075232,0.00464
+1507,1143.81,0.874268,0.308064,0.004928,0.196608,0.004128,0.005664,0.004544,0.006144,0.005984,0.075488,0.004576
+1508,1330.09,0.751831,0.306816,0.005376,0.19472,0.004896,0.004128,0.00592,0.005632,0.0048,0.075776,0.005568
+1509,1511.72,0.661499,0.308896,0.005632,0.19504,0.004128,0.005632,0.004608,0.006144,0.006144,0.075776,0.005792
+1510,1330.52,0.751587,0.303104,0.005792,0.194592,0.004416,0.005184,0.005056,0.00592,0.00576,0.072192,0.004192
+1511,1419.02,0.704712,0.3072,0.005664,0.194912,0.004224,0.005536,0.004704,0.006144,0.00608,0.073792,0.006144
+1512,1178.87,0.848267,0.319744,0.005376,0.205664,0.004224,0.005536,0.004704,0.006144,0.006144,0.077536,0.004416
+1513,1555.05,0.643066,0.31744,0.006144,0.202752,0.005216,0.00496,0.005984,0.005824,0.005696,0.076128,0.004736
+1514,1400.82,0.713867,0.547072,0.00448,0.433152,0.007072,0.004064,0.006016,0.00576,0.005984,0.07584,0.004704
+1515,658.151,1.51941,0.313344,0.005792,0.199008,0.005408,0.004832,0.005216,0.005024,0.006144,0.0776,0.00432
+1516,1424.7,0.701904,0.311296,0.005504,0.197024,0.00432,0.005408,0.004832,0.006144,0.005792,0.07728,0.004992
+1517,1494.62,0.669067,0.312352,0.005408,0.197344,0.004224,0.006016,0.005632,0.00576,0.004992,0.0776,0.005376
+1518,1301.35,0.768433,0.309248,0.006144,0.19456,0.004128,0.005984,0.004224,0.006144,0.006144,0.07696,0.00496
+1519,1488.64,0.671753,0.309664,0.004512,0.196608,0.005216,0.005056,0.005312,0.004896,0.006144,0.077152,0.004768
+1520,1344.71,0.743652,0.31088,0.005632,0.19712,0.00512,0.00512,0.005408,0.005952,0.005056,0.075744,0.005728
+1521,1446.33,0.691406,0.310752,0.006144,0.195776,0.004928,0.004096,0.00592,0.005824,0.005696,0.076768,0.0056
+1522,1310.72,0.762939,0.311296,0.005824,0.196928,0.005664,0.004576,0.005312,0.005088,0.005984,0.076832,0.005088
+1523,1154.62,0.866089,0.546816,0.008192,0.397312,0.019968,0.022496,0.00464,0.006144,0.00608,0.076928,0.005056
+1524,840.119,1.19031,0.314592,0.005728,0.194976,0.005248,0.004832,0.004256,0.006144,0.00592,0.082144,0.005344
+1525,1491.62,0.67041,0.316864,0.006144,0.194592,0.0056,0.004608,0.00608,0.005856,0.005792,0.082624,0.005568
+1526,1310.72,0.762939,0.310592,0.005408,0.19504,0.004672,0.0056,0.004608,0.006144,0.006112,0.077696,0.005312
+1527,1432.92,0.697876,0.309856,0.004832,0.196416,0.004288,0.006144,0.005248,0.004992,0.006144,0.075776,0.006016
+1528,1339,0.746826,0.31728,0.006144,0.196512,0.004192,0.00608,0.005472,0.00592,0.005056,0.08192,0.005984
+1529,1458.43,0.685669,0.311904,0.004704,0.196032,0.004672,0.004096,0.00608,0.005696,0.005856,0.078816,0.005952
+1530,1396.28,0.716187,0.311968,0.005056,0.19456,0.005728,0.004512,0.005568,0.00576,0.005056,0.079872,0.005856
+1531,1391.54,0.718628,0.3152,0.005984,0.196768,0.005568,0.004672,0.006112,0.005728,0.005696,0.07872,0.005952
+1532,567.706,1.76147,0.580256,0.004736,0.428032,0.04096,0.005376,0.004864,0.006112,0.00576,0.079872,0.004544
+1533,1281.6,0.780273,0.32592,0.0056,0.207616,0.00432,0.005376,0.004864,0.006144,0.005856,0.08016,0.005984
+1534,1297.64,0.77063,0.313472,0.005376,0.197536,0.005184,0.005024,0.005376,0.00592,0.005088,0.078944,0.005024
+1535,1298.05,0.770386,0.315296,0.0048,0.196608,0.005632,0.004608,0.005952,0.005888,0.005728,0.080736,0.005344
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..6e369ce
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_2,Nei_64,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1153.88,0.915759,0.408372,0.00566522,0.235171,0.0108782,0.0112139,0.00667378,0.00664675,0.00641519,0.120089,0.00561838
+max_1024,1643,2.39868,0.70032,0.02928,0.526752,0.050912,0.040704,0.02256,0.022528,0.022496,0.165792,0.014944
+min_1024,416.896,0.608643,0.368736,0.004352,0.198304,0.009248,0.009056,0.005664,0.005888,0.005024,0.113056,0.004224
+512,1151.05,0.868774,0.394272,0.006048,0.22336,0.010208,0.011808,0.006624,0.006144,0.006016,0.118656,0.005408
+513,818.382,1.22192,0.594144,0.006976,0.415744,0.010272,0.012256,0.007168,0.006208,0.005088,0.124896,0.005536
+514,1074.64,0.930542,0.373376,0.004736,0.20448,0.010496,0.010304,0.007168,0.0064,0.006048,0.118752,0.004992
+515,1286.03,0.777588,0.382112,0.006112,0.210976,0.01024,0.01024,0.006144,0.00624,0.006048,0.120576,0.005536
+516,1228.55,0.813965,0.378848,0.00544,0.2096,0.01024,0.010432,0.007264,0.00656,0.006176,0.117024,0.006112
+517,1167.28,0.856689,0.376832,0.005696,0.206528,0.010496,0.010656,0.006272,0.006112,0.006144,0.12016,0.004768
+518,1229.11,0.813599,0.377088,0.004608,0.20656,0.010496,0.01232,0.006144,0.007264,0.006208,0.1176,0.005888
+519,986.038,1.01416,0.386272,0.00608,0.210752,0.010432,0.010304,0.006144,0.007296,0.00704,0.122464,0.00576
+520,1076.34,0.929077,0.674208,0.004544,0.501728,0.012288,0.012032,0.0064,0.0072,0.00512,0.118752,0.006144
+521,694.296,1.44031,0.435296,0.00544,0.258368,0.010624,0.01024,0.006144,0.007296,0.006656,0.124896,0.005632
+522,1243.28,0.804321,0.412064,0.004544,0.242752,0.010464,0.010944,0.006336,0.0072,0.006016,0.117664,0.006144
+523,1257.99,0.794922,0.416192,0.004544,0.247104,0.010624,0.01056,0.006144,0.006144,0.006144,0.118784,0.006144
+524,1192.26,0.838745,0.37648,0.005824,0.206592,0.010496,0.01056,0.007584,0.006624,0.005952,0.117056,0.005792
+525,1391.54,0.718628,0.379328,0.004832,0.208736,0.010368,0.012288,0.006176,0.006144,0.007136,0.117408,0.00624
+526,1065.28,0.938721,0.382464,0.004576,0.209984,0.0112,0.012032,0.006432,0.006112,0.006144,0.120384,0.0056
+527,1448.37,0.69043,0.38912,0.005376,0.222208,0.01024,0.010272,0.00752,0.006528,0.006144,0.114944,0.005888
+528,665.043,1.50366,0.460832,0.008096,0.288864,0.01024,0.01136,0.006432,0.008096,0.0064,0.11648,0.004864
+529,1026.31,0.974365,0.37472,0.005632,0.207264,0.010368,0.01024,0.007808,0.006496,0.005856,0.114976,0.00608
+530,1424.2,0.702148,0.370688,0.005664,0.202784,0.010496,0.010432,0.00624,0.007296,0.006176,0.115456,0.006144
+531,1314.93,0.760498,0.369248,0.004704,0.202752,0.011264,0.010752,0.006496,0.006304,0.006144,0.115776,0.005056
+532,1263.61,0.791382,0.370464,0.004864,0.200672,0.010272,0.01024,0.006144,0.00768,0.006176,0.118752,0.005664
+533,1358.09,0.736328,0.369664,0.00512,0.202112,0.010496,0.010624,0.007232,0.006528,0.006304,0.115104,0.006144
+534,727.208,1.37512,0.381248,0.004384,0.20608,0.010464,0.010784,0.00624,0.007328,0.005984,0.12528,0.004704
+535,1437.95,0.695435,0.605888,0.006016,0.436192,0.012448,0.010368,0.007392,0.00656,0.00592,0.115168,0.005824
+536,685.753,1.45825,0.382976,0.00608,0.214688,0.010464,0.012512,0.006144,0.0072,0.006112,0.113632,0.006144
+537,1508.38,0.662964,0.382528,0.005984,0.206112,0.010688,0.010688,0.00752,0.006336,0.005984,0.123456,0.00576
+538,1225.25,0.816162,0.376416,0.004576,0.208896,0.01024,0.011616,0.006464,0.006496,0.006176,0.116128,0.005824
+539,1336.6,0.748169,0.376704,0.005664,0.206368,0.010496,0.010816,0.006272,0.006144,0.006144,0.118784,0.006016
+540,1263.22,0.791626,0.370208,0.00544,0.204544,0.010464,0.010976,0.006144,0.006176,0.006112,0.114688,0.005664
+541,1234.85,0.809814,0.372768,0.005984,0.20496,0.01024,0.01024,0.007264,0.0064,0.006336,0.115168,0.006176
+542,1255.48,0.796509,0.380928,0.006144,0.210944,0.01024,0.011424,0.006464,0.006496,0.006336,0.118304,0.004576
+543,1348.26,0.741699,0.59216,0.004544,0.423744,0.012288,0.01152,0.006464,0.0064,0.005984,0.116576,0.00464
+544,707.854,1.41272,0.382464,0.0056,0.20912,0.010496,0.012704,0.007328,0.00624,0.006048,0.119296,0.005632
+545,1112.59,0.898804,0.381408,0.004576,0.210944,0.01024,0.011872,0.006496,0.006208,0.006176,0.118752,0.006144
+546,1309.67,0.76355,0.370528,0.005344,0.203616,0.011264,0.010656,0.006624,0.006272,0.006016,0.114784,0.005952
+547,1290.28,0.775024,0.377344,0.004608,0.208128,0.010496,0.010464,0.006464,0.007936,0.0064,0.116704,0.006144
+548,1326.42,0.753906,0.374784,0.006144,0.2048,0.01024,0.01168,0.006464,0.006432,0.006144,0.116736,0.006144
+549,1181.42,0.846436,0.375296,0.004608,0.2048,0.011264,0.010688,0.006432,0.006432,0.006144,0.118784,0.006144
+550,1118.67,0.893921,0.385024,0.006144,0.216544,0.010496,0.010528,0.006208,0.007392,0.005952,0.115616,0.006144
+551,1406.11,0.711182,0.598048,0.006144,0.423552,0.012672,0.011488,0.00656,0.006336,0.006176,0.120032,0.005088
+552,752.664,1.32861,0.381504,0.0048,0.212448,0.010656,0.013472,0.00656,0.006432,0.006208,0.114784,0.006144
+553,1180.06,0.847412,0.38048,0.004512,0.210784,0.01024,0.011296,0.006624,0.006528,0.006144,0.118816,0.005536
+554,1301.76,0.768188,0.370944,0.004768,0.206336,0.010496,0.010528,0.006112,0.0072,0.005088,0.114688,0.005728
+555,1398.19,0.71521,0.377056,0.004832,0.208544,0.010528,0.010304,0.00752,0.006592,0.006048,0.117056,0.005632
+556,1240.27,0.806274,0.377888,0.005728,0.205152,0.011424,0.011168,0.006144,0.006144,0.006144,0.120448,0.005536
+557,1280.4,0.781006,0.380992,0.005344,0.207712,0.01024,0.011296,0.006496,0.006592,0.006112,0.122432,0.004768
+558,1168.45,0.855835,0.3912,0.006144,0.21712,0.010208,0.0104,0.007136,0.006624,0.006176,0.122464,0.004928
+559,1299.9,0.769287,0.602112,0.005504,0.422528,0.014016,0.01056,0.006144,0.006176,0.0072,0.12384,0.006144
+560,729.41,1.37097,0.384864,0.0048,0.2104,0.010752,0.013312,0.006752,0.006304,0.006208,0.120768,0.005568
+561,1198.36,0.834473,0.378592,0.004672,0.206304,0.010496,0.010528,0.006176,0.0072,0.006272,0.121376,0.005568
+562,1272.05,0.786133,0.38064,0.006144,0.207904,0.010528,0.010272,0.006368,0.006592,0.006016,0.12096,0.005856
+563,1373.34,0.728149,0.37856,0.004608,0.206784,0.010304,0.01024,0.006176,0.007296,0.006208,0.121376,0.005568
+564,1252.41,0.798462,0.38464,0.00576,0.205184,0.010272,0.010208,0.006144,0.006144,0.006144,0.11984,0.014944
+565,1266.54,0.789551,0.380992,0.005568,0.205344,0.0104,0.01024,0.006176,0.00752,0.006272,0.123392,0.00608
+566,1027.73,0.973022,0.37888,0.00592,0.20896,0.010432,0.010208,0.007456,0.00688,0.006144,0.116736,0.006144
+567,1373.57,0.728027,0.61648,0.005344,0.4448,0.01264,0.010336,0.006144,0.006176,0.006112,0.118784,0.006144
+568,702.754,1.42297,0.391168,0.00592,0.21936,0.011424,0.013152,0.006208,0.007232,0.006016,0.115712,0.006144
+569,1286.03,0.777588,0.415616,0.00464,0.245696,0.010304,0.011584,0.006528,0.006144,0.005952,0.1192,0.005568
+570,1171.12,0.853882,0.38368,0.00496,0.212992,0.01136,0.011168,0.006176,0.007232,0.006272,0.117536,0.005984
+571,1366.02,0.732056,0.379968,0.006016,0.210976,0.010336,0.01024,0.007328,0.006528,0.006048,0.116928,0.005568
+572,1198.01,0.834717,0.375104,0.004864,0.2048,0.01024,0.012288,0.006144,0.007264,0.006176,0.117632,0.005696
+573,1374.5,0.727539,0.37744,0.004672,0.206848,0.01024,0.010272,0.007296,0.006528,0.00624,0.119168,0.006176
+574,821.83,1.2168,0.386336,0.005344,0.211744,0.010336,0.012192,0.007648,0.006688,0.006144,0.12064,0.0056
+575,1488.1,0.671997,0.595904,0.005344,0.423904,0.011168,0.011744,0.006592,0.00624,0.006144,0.118784,0.005984
+576,607.445,1.64624,0.399392,0.006176,0.228608,0.010528,0.012448,0.006432,0.006144,0.006144,0.11824,0.004672
+577,1497.62,0.667725,0.383072,0.005344,0.207744,0.011296,0.011104,0.006272,0.006144,0.006144,0.12288,0.006144
+578,1165.79,0.857788,0.383008,0.005088,0.208896,0.01024,0.012192,0.00624,0.006176,0.006112,0.122496,0.005568
+579,1294.15,0.772705,0.393312,0.005344,0.2192,0.010528,0.010784,0.006144,0.00752,0.00624,0.122592,0.00496
+580,1231.69,0.81189,0.382976,0.005792,0.209248,0.01024,0.01024,0.007424,0.006528,0.006048,0.121312,0.006144
+581,1237.28,0.808228,0.393088,0.006144,0.215072,0.011392,0.011104,0.00752,0.006528,0.006304,0.123008,0.006016
+582,1166.62,0.857178,0.387104,0.005344,0.21712,0.010528,0.010752,0.006144,0.007264,0.005024,0.12048,0.004448
+583,783.099,1.27698,0.589856,0.007968,0.405728,0.012288,0.013504,0.006528,0.006176,0.00592,0.12672,0.005024
+584,947.819,1.05505,0.378016,0.005376,0.207712,0.010272,0.011744,0.006496,0.006304,0.005952,0.118624,0.005536
+585,1547.12,0.646362,0.3776,0.004864,0.208896,0.011328,0.01104,0.006336,0.006112,0.006176,0.116704,0.006144
+586,1193.47,0.837891,0.373376,0.004704,0.208512,0.010496,0.010368,0.006144,0.006144,0.006144,0.116096,0.004768
+587,1399.39,0.7146,0.381664,0.004832,0.21088,0.010304,0.01024,0.007232,0.006464,0.006176,0.120512,0.005024
+588,1181.6,0.846313,0.376832,0.005408,0.205568,0.01136,0.01072,0.00656,0.006144,0.006144,0.120064,0.004864
+589,416.896,2.39868,0.395776,0.004672,0.227328,0.01024,0.012128,0.006304,0.006144,0.006144,0.116736,0.00608
+590,734.708,1.36108,0.398624,0.008096,0.229472,0.01024,0.011552,0.006464,0.006368,0.006016,0.11488,0.005536
+591,1270.87,0.786865,0.387008,0.006144,0.214304,0.010496,0.01072,0.006144,0.007584,0.00624,0.119296,0.00608
+592,1228.55,0.813965,0.374784,0.005632,0.206944,0.01056,0.012384,0.006144,0.006144,0.007168,0.113664,0.006144
+593,1056.21,0.946777,0.383744,0.004864,0.21712,0.010304,0.011456,0.006432,0.006496,0.006016,0.116576,0.00448
+594,1330.73,0.751465,0.394208,0.004896,0.22752,0.010272,0.010208,0.006144,0.008192,0.006144,0.116544,0.004288
+595,952.891,1.04944,0.400064,0.0048,0.229376,0.010336,0.011488,0.006784,0.006208,0.006144,0.120256,0.004672
+596,1135.57,0.880615,0.390144,0.00512,0.220256,0.01056,0.012256,0.006624,0.006304,0.006144,0.118208,0.004672
+597,559.334,1.78784,0.57888,0.01056,0.403168,0.01056,0.011456,0.006496,0.006464,0.00592,0.11888,0.005376
+598,847.77,1.17957,0.393536,0.00464,0.2232,0.010272,0.011936,0.006496,0.007456,0.006048,0.117536,0.005952
+599,922.73,1.08374,0.403904,0.004544,0.233472,0.01024,0.010304,0.008128,0.006144,0.006144,0.118784,0.006144
+600,1322.78,0.755981,0.387168,0.004928,0.219168,0.01024,0.012256,0.007264,0.006624,0.006144,0.114976,0.005568
+601,859.331,1.1637,0.389088,0.006048,0.223136,0.010432,0.01024,0.006176,0.006176,0.007168,0.1136,0.006112
+602,1484.06,0.673828,0.387008,0.005824,0.219456,0.011424,0.011104,0.00608,0.006208,0.006144,0.114688,0.00608
+603,637.659,1.56824,0.39712,0.008192,0.22528,0.011456,0.011264,0.007648,0.006496,0.006144,0.114656,0.005984
+604,1260.7,0.793213,0.384544,0.006176,0.215008,0.01024,0.012288,0.007968,0.006368,0.006144,0.114688,0.005664
+605,1201.35,0.832397,0.376032,0.00592,0.210304,0.010496,0.010816,0.006176,0.006176,0.006112,0.114432,0.0056
+606,1266.35,0.789673,0.376832,0.005728,0.209312,0.010272,0.012256,0.00736,0.006528,0.006176,0.113056,0.006144
+607,1326.85,0.753662,0.380736,0.005856,0.211232,0.01024,0.01024,0.007488,0.006592,0.0064,0.116736,0.005952
+608,785.502,1.27307,0.384864,0.006144,0.212992,0.011456,0.010464,0.0064,0.006496,0.006176,0.118752,0.005984
+609,856.187,1.16797,0.397312,0.005472,0.226272,0.011296,0.010592,0.006528,0.0064,0.006144,0.118784,0.005824
+610,723.228,1.38269,0.57344,0.007712,0.397792,0.011904,0.012672,0.007296,0.006432,0.006016,0.119072,0.004544
+611,1018.91,0.981445,0.38912,0.005888,0.219392,0.01024,0.011616,0.006816,0.006336,0.005952,0.116736,0.006144
+612,1148.63,0.870605,0.395264,0.005344,0.224032,0.011328,0.010752,0.006592,0.007328,0.006016,0.11776,0.006112
+613,1314.08,0.760986,0.380192,0.006048,0.212192,0.010496,0.010592,0.0064,0.006176,0.006144,0.116512,0.005632
+614,1263.61,0.791382,0.380448,0.006144,0.21296,0.010304,0.011392,0.006592,0.006336,0.006208,0.114848,0.005664
+615,671.916,1.48828,0.393216,0.005728,0.225696,0.011456,0.010656,0.00656,0.007392,0.006144,0.114752,0.004832
+616,1467.05,0.681641,0.380928,0.005728,0.215456,0.01024,0.011488,0.00656,0.006432,0.006112,0.114176,0.004736
+617,628.655,1.5907,0.417792,0.008032,0.242944,0.010496,0.010624,0.006464,0.006112,0.006144,0.120832,0.006144
+618,1357.19,0.736816,0.377728,0.004992,0.212832,0.010432,0.010336,0.007232,0.006528,0.005952,0.114496,0.004928
+619,1222.5,0.817993,0.374944,0.004928,0.206368,0.010496,0.010464,0.006272,0.00752,0.006144,0.117152,0.0056
+620,1274.03,0.784912,0.393728,0.004608,0.2248,0.010464,0.010432,0.006208,0.007424,0.006176,0.11856,0.005056
+621,1186.56,0.842773,0.374784,0.005536,0.208512,0.010656,0.010656,0.006304,0.006144,0.006144,0.114688,0.006144
+622,1234.48,0.810059,0.378496,0.004544,0.213024,0.010208,0.010464,0.0072,0.006464,0.006016,0.114848,0.005728
+623,1279,0.78186,0.37888,0.005536,0.211552,0.01024,0.012128,0.006304,0.006144,0.006144,0.115776,0.005056
+624,993.09,1.00696,0.374976,0.005088,0.208896,0.011392,0.010528,0.006368,0.006432,0.006016,0.114656,0.0056
+625,882.759,1.13281,0.383296,0.006656,0.212896,0.010272,0.010368,0.007424,0.00672,0.006176,0.116736,0.006048
+626,1244.23,0.803711,0.386208,0.005472,0.21776,0.01024,0.011904,0.006528,0.006144,0.006208,0.116352,0.0056
+627,1180.91,0.846802,0.387104,0.005632,0.221696,0.01024,0.011392,0.006688,0.006336,0.006208,0.114272,0.00464
+628,1262.64,0.791992,0.375488,0.0048,0.208896,0.01024,0.01024,0.007552,0.006592,0.005952,0.116192,0.005024
+629,1270.67,0.786987,0.378176,0.00608,0.206912,0.011424,0.010752,0.006496,0.006144,0.006144,0.118528,0.005696
+630,1184.67,0.844116,0.38352,0.004768,0.210944,0.011424,0.011072,0.006176,0.006144,0.006144,0.120832,0.006016
+631,1193.82,0.837646,0.4096,0.005984,0.234944,0.010528,0.011904,0.006688,0.006432,0.006144,0.121952,0.005024
+632,624.485,1.60132,0.556544,0.008192,0.382976,0.012128,0.012448,0.006144,0.006144,0.006144,0.116736,0.005632
+633,1200.12,0.833252,0.378912,0.005856,0.207008,0.010368,0.010272,0.00736,0.006464,0.006464,0.120224,0.004896
+634,1357.19,0.736816,0.380192,0.005696,0.209216,0.010368,0.01024,0.007296,0.006496,0.006176,0.119168,0.005536
+635,1225.25,0.816162,0.37424,0.006144,0.2048,0.01136,0.010464,0.006432,0.006464,0.006208,0.116768,0.0056
+636,1289.47,0.775513,0.372736,0.005376,0.207648,0.01136,0.011072,0.006208,0.006144,0.006144,0.113792,0.004992
+637,1207.55,0.828125,0.37552,0.004864,0.208864,0.011648,0.01088,0.006144,0.007296,0.006112,0.113568,0.006144
+638,924.396,1.08179,0.387936,0.004928,0.219136,0.01024,0.010272,0.006176,0.00608,0.006144,0.12016,0.0048
+639,1444.29,0.692383,0.652064,0.004896,0.479232,0.0136,0.010848,0.006272,0.006176,0.006112,0.118784,0.006144
+640,644.786,1.5509,0.381632,0.004896,0.210944,0.01024,0.01184,0.006496,0.00624,0.006144,0.118784,0.006048
+641,1223.23,0.817505,0.376704,0.00608,0.206912,0.010272,0.011776,0.006496,0.006272,0.006144,0.116736,0.006016
+642,1237.84,0.807861,0.376896,0.004544,0.207904,0.010464,0.011008,0.006144,0.006144,0.006208,0.11872,0.00576
+643,1272.44,0.785889,0.38912,0.005664,0.209376,0.011392,0.010624,0.006528,0.006272,0.006144,0.119872,0.013248
+644,1292.32,0.773804,0.376832,0.00608,0.208256,0.010496,0.010496,0.006336,0.006144,0.006144,0.118048,0.004832
+645,1033.95,0.967163,0.384992,0.006144,0.21504,0.01024,0.011392,0.0064,0.006784,0.006144,0.116736,0.006112
+646,1478.17,0.676514,0.375808,0.00512,0.208896,0.01024,0.01168,0.006496,0.0064,0.006144,0.114848,0.005984
+647,577.064,1.73291,0.393216,0.008128,0.217152,0.011872,0.012704,0.007712,0.006304,0.006048,0.118304,0.004992
+648,1281,0.78064,0.37696,0.005376,0.208896,0.010464,0.010432,0.006624,0.006176,0.006112,0.116736,0.006144
+649,1205.24,0.829712,0.374784,0.006144,0.206432,0.010656,0.0104,0.007392,0.00656,0.006208,0.116256,0.004736
+650,1293.54,0.773071,0.378624,0.00576,0.208896,0.010496,0.010368,0.007296,0.006432,0.006272,0.117216,0.005888
+651,1244.8,0.803345,0.377984,0.006144,0.206848,0.01024,0.010432,0.00736,0.006496,0.00624,0.118656,0.005568
+652,1311.14,0.762695,0.380928,0.006144,0.210112,0.011072,0.011328,0.006528,0.006432,0.006144,0.118304,0.004864
+653,905.894,1.10388,0.396512,0.005344,0.22752,0.010464,0.012096,0.00656,0.006496,0.006176,0.116288,0.005568
+654,1371.28,0.729248,0.389696,0.004768,0.219136,0.011296,0.01248,0.006528,0.00656,0.006016,0.116864,0.006048
+655,556.9,1.79565,0.39568,0.00688,0.22528,0.010272,0.010304,0.00752,0.0064,0.006144,0.117056,0.005824
+656,1408.29,0.710083,0.385024,0.006048,0.2168,0.010496,0.010432,0.007232,0.006432,0.006144,0.116736,0.004704
+657,1226.53,0.815308,0.378048,0.006144,0.208704,0.010432,0.01024,0.006144,0.007296,0.00624,0.117184,0.005664
+658,1350.26,0.740601,0.37888,0.005408,0.209632,0.011424,0.010592,0.006528,0.006272,0.006144,0.118112,0.004768
+659,1212.19,0.824951,0.376768,0.005472,0.205472,0.010304,0.012032,0.006368,0.006112,0.006144,0.118784,0.00608
+660,1246.69,0.802124,0.39104,0.006144,0.220928,0.010528,0.011744,0.006656,0.006144,0.006144,0.116736,0.006016
+661,1229.29,0.813477,0.387072,0.016384,0.210912,0.010272,0.01024,0.006336,0.007328,0.006112,0.113344,0.006144
+662,713.962,1.40063,0.561056,0.007008,0.384992,0.012288,0.012288,0.007264,0.00624,0.005952,0.11936,0.005664
+663,1164.79,0.858521,0.379392,0.00464,0.210624,0.01184,0.010656,0.006464,0.006144,0.006144,0.118016,0.004864
+664,1222.5,0.817993,0.378688,0.004416,0.210016,0.010816,0.010592,0.00736,0.006784,0.006144,0.116928,0.005632
+665,1378.2,0.725586,0.377888,0.006144,0.20864,0.010464,0.010272,0.006144,0.007424,0.006112,0.11712,0.005568
+666,1221.41,0.818726,0.376096,0.005344,0.205568,0.010368,0.01024,0.006144,0.007392,0.006016,0.119456,0.005568
+667,1217.78,0.821167,0.380768,0.006048,0.206944,0.01024,0.010432,0.007232,0.006848,0.00624,0.1208,0.005984
+668,966.152,1.03503,0.387072,0.006144,0.216896,0.010432,0.011264,0.006848,0.006464,0.006048,0.1184,0.004576
+669,1270.67,0.786987,0.5928,0.005024,0.421888,0.012288,0.011392,0.006464,0.006496,0.00592,0.117184,0.006144
+670,762.898,1.31079,0.391392,0.005504,0.216032,0.012288,0.013504,0.006784,0.006336,0.00608,0.118848,0.006016
+671,1087.92,0.919189,0.388992,0.005312,0.217344,0.010464,0.012032,0.006496,0.006592,0.006144,0.118784,0.005824
+672,1408.29,0.710083,0.391168,0.005888,0.22144,0.01024,0.011328,0.006496,0.006656,0.006048,0.116928,0.006144
+673,1234.66,0.809937,0.38064,0.005344,0.209696,0.01024,0.011584,0.006496,0.0064,0.00624,0.118656,0.005984
+674,1285.83,0.77771,0.374784,0.00592,0.202976,0.010304,0.012032,0.006368,0.006112,0.007424,0.118688,0.00496
+675,1178.37,0.848633,0.37168,0.005088,0.206528,0.010528,0.010272,0.006144,0.007488,0.006016,0.114912,0.004704
+676,1383.78,0.722656,0.376864,0.006144,0.206848,0.01024,0.010272,0.007168,0.006528,0.005984,0.118752,0.004928
+677,1330.3,0.751709,0.378816,0.006176,0.210464,0.010496,0.010432,0.006144,0.006176,0.006112,0.116736,0.00608
+678,593.58,1.68469,0.444448,0.008192,0.272384,0.010272,0.010208,0.007264,0.006496,0.005984,0.118528,0.00512
+679,1304.87,0.766357,0.38912,0.006112,0.21904,0.010368,0.01024,0.006144,0.007232,0.006112,0.117728,0.006144
+680,616.589,1.62183,0.39056,0.006112,0.220224,0.010496,0.010976,0.006144,0.006176,0.006112,0.118784,0.005536
+681,1554.75,0.643188,0.391744,0.004864,0.220416,0.010528,0.01072,0.006144,0.006144,0.0072,0.119776,0.005952
+682,1043.04,0.95874,0.380768,0.006144,0.2048,0.010368,0.011328,0.006464,0.006656,0.006144,0.12288,0.005984
+683,1053.36,0.949341,0.386464,0.004352,0.221184,0.010272,0.0104,0.0072,0.006432,0.006144,0.114912,0.005568
+684,1041.84,0.959839,0.409056,0.004544,0.24352,0.0104,0.01024,0.006144,0.007168,0.006176,0.115392,0.005472
+685,922.834,1.08362,0.42464,0.006944,0.256,0.01024,0.011648,0.006432,0.006496,0.006112,0.11472,0.006048
+686,1252.22,0.798584,0.408576,0.00512,0.241312,0.010528,0.0104,0.007424,0.006432,0.006304,0.114912,0.006144
+687,1103.89,0.905884,0.425984,0.00592,0.254176,0.01024,0.010304,0.008128,0.006304,0.007072,0.117696,0.006144
+688,1122.35,0.890991,0.458592,0.006112,0.282688,0.01024,0.012256,0.006144,0.007328,0.006208,0.121632,0.005984
+689,1266.54,0.789551,0.404544,0.006144,0.231424,0.01024,0.010272,0.006112,0.007424,0.006208,0.12112,0.0056
+690,1138.41,0.878418,0.428032,0.005984,0.25616,0.01024,0.011392,0.006464,0.006656,0.006208,0.120288,0.00464
+691,1262.44,0.792114,0.411264,0.005344,0.244544,0.01024,0.011328,0.006496,0.006432,0.006144,0.115008,0.005728
+692,517.433,1.93262,0.436256,0.008128,0.264256,0.011456,0.010432,0.006464,0.006432,0.006176,0.118112,0.0048
+693,1403.7,0.712402,0.388448,0.005344,0.217888,0.0104,0.011968,0.006432,0.006208,0.006144,0.118496,0.005568
+694,1268.31,0.788452,0.37888,0.00592,0.21072,0.010528,0.0104,0.006144,0.006144,0.006144,0.117952,0.004928
+695,1286.03,0.777588,0.38096,0.005536,0.213344,0.010528,0.010208,0.006208,0.007424,0.00624,0.116608,0.004864
+696,1121.58,0.891602,0.376832,0.006144,0.208256,0.01088,0.011424,0.006112,0.006464,0.00608,0.115328,0.006144
+697,654.522,1.52783,0.382912,0.005472,0.213664,0.01024,0.011552,0.006368,0.006656,0.006176,0.116704,0.00608
+698,1215.61,0.822632,0.39952,0.005344,0.233536,0.010528,0.010816,0.006176,0.0072,0.00624,0.114912,0.004768
+699,645.395,1.54944,0.411584,0.007936,0.239904,0.010272,0.01152,0.006496,0.006496,0.006144,0.116736,0.00608
+700,853.244,1.172,0.397312,0.005856,0.227616,0.01024,0.012096,0.007552,0.0064,0.005824,0.116896,0.004832
+701,1382.38,0.723389,0.41952,0.005376,0.246528,0.010272,0.011232,0.007168,0.006144,0.006144,0.120832,0.005824
+702,1102.11,0.907349,0.39136,0.004928,0.223232,0.01024,0.011552,0.00656,0.006464,0.006144,0.116672,0.005568
+703,1401.06,0.713745,0.389152,0.005728,0.219264,0.010464,0.01136,0.006464,0.006592,0.006112,0.1184,0.004768
+704,1047.44,0.954712,0.385024,0.00576,0.215104,0.010528,0.01232,0.006144,0.007392,0.006208,0.115424,0.006144
+705,1290.49,0.774902,0.595968,0.00592,0.423488,0.01264,0.01056,0.006144,0.007328,0.006528,0.117216,0.006144
+706,719.291,1.39026,0.387072,0.005728,0.213152,0.010464,0.012192,0.006272,0.006144,0.006144,0.120832,0.006144
+707,1324.07,0.755249,0.385024,0.006176,0.212256,0.010464,0.010496,0.006368,0.006144,0.006144,0.120832,0.006144
+708,1227.63,0.814575,0.374784,0.005888,0.205056,0.011392,0.010432,0.0064,0.006432,0.006208,0.116832,0.006144
+709,1226.16,0.815552,0.388864,0.005792,0.215392,0.01024,0.011776,0.006464,0.006336,0.006144,0.120832,0.005888
+710,1203.64,0.830811,0.377696,0.00496,0.210208,0.010976,0.010496,0.007136,0.006496,0.006144,0.115136,0.006144
+711,1341.41,0.745483,0.376672,0.005664,0.209376,0.01024,0.01024,0.00736,0.006624,0.006272,0.114912,0.005984
+712,1072.25,0.932617,0.37888,0.006144,0.206848,0.011328,0.012256,0.006592,0.006496,0.006144,0.116928,0.006144
+713,1380.52,0.724365,0.386656,0.006144,0.218144,0.01056,0.010912,0.006272,0.007392,0.006272,0.1152,0.00576
+714,597.346,1.67407,0.405216,0.007488,0.232256,0.011392,0.011136,0.007168,0.006592,0.006336,0.11712,0.005728
+715,1389.65,0.719604,0.382816,0.004896,0.21504,0.01024,0.011424,0.006464,0.00656,0.00608,0.116736,0.005376
+716,1157.55,0.863892,0.376672,0.004576,0.208896,0.010272,0.01168,0.006528,0.006336,0.006144,0.116736,0.005504
+717,1381.45,0.723877,0.376864,0.006144,0.208608,0.010528,0.01024,0.006144,0.006144,0.007232,0.117088,0.004736
+718,1071.27,0.933472,0.382816,0.005824,0.21072,0.010496,0.01024,0.006432,0.007552,0.006784,0.118784,0.005984
+719,901.012,1.10986,0.393824,0.004704,0.22528,0.01024,0.0104,0.007616,0.00656,0.00608,0.118304,0.00464
+720,1293.13,0.773315,0.388064,0.005088,0.219136,0.011328,0.0112,0.006144,0.006144,0.006144,0.116736,0.006144
+721,682.78,1.4646,0.39568,0.007168,0.220896,0.010368,0.010432,0.0072,0.006656,0.006272,0.12112,0.005568
+722,1173.81,0.851929,0.386432,0.005632,0.211456,0.011488,0.01104,0.006144,0.0072,0.005088,0.12272,0.005664
+723,1319.8,0.75769,0.385024,0.005888,0.215328,0.011232,0.010816,0.006528,0.006208,0.006144,0.116736,0.006144
+724,1247.64,0.801514,0.391168,0.005504,0.209536,0.01152,0.010432,0.006368,0.006496,0.006144,0.129024,0.006144
+725,1140.95,0.876465,0.397504,0.00464,0.219136,0.010272,0.011328,0.006496,0.006656,0.00624,0.126944,0.005792
+726,1173.98,0.851807,0.38912,0.00608,0.215104,0.011296,0.010464,0.006496,0.00656,0.006144,0.120832,0.006144
+727,1358.99,0.73584,0.387072,0.005536,0.215648,0.01024,0.012288,0.006208,0.007328,0.006176,0.118624,0.005024
+728,947.819,1.05505,0.591872,0.005568,0.422464,0.012288,0.012032,0.0064,0.007456,0.005952,0.114944,0.004768
+729,721,1.38696,0.38912,0.006016,0.219264,0.01024,0.012,0.006432,0.006144,0.006144,0.116736,0.006144
+730,1209.87,0.826538,0.376512,0.005344,0.20768,0.010336,0.012352,0.006144,0.007168,0.0064,0.115456,0.005632
+731,1302.8,0.767578,0.393312,0.005024,0.22528,0.011424,0.010752,0.006496,0.006144,0.006144,0.11648,0.005568
+732,1084.6,0.921997,0.387072,0.005856,0.21536,0.010208,0.012128,0.006304,0.006144,0.007808,0.11712,0.006144
+733,793.26,1.26062,0.41024,0.004736,0.241696,0.011392,0.010688,0.006528,0.007264,0.006304,0.115488,0.006144
+734,1345.16,0.743408,0.40624,0.004832,0.2392,0.010656,0.0104,0.00784,0.006336,0.006144,0.114688,0.006144
+735,1195.04,0.836792,0.648128,0.005024,0.479232,0.012288,0.011648,0.00656,0.006368,0.006144,0.114688,0.006176
+736,604.71,1.65369,0.402784,0.006144,0.231424,0.01024,0.01152,0.006496,0.00656,0.006144,0.118464,0.005792
+737,1287.65,0.776611,0.391392,0.004544,0.223008,0.01024,0.011744,0.006528,0.006304,0.006144,0.116736,0.006144
+738,965.81,1.0354,0.382688,0.005408,0.213728,0.01136,0.011168,0.006144,0.006144,0.0072,0.11568,0.005856
+739,1521.83,0.657104,0.385664,0.004768,0.216576,0.010528,0.01216,0.006464,0.006144,0.006144,0.117792,0.005088
+740,1168.28,0.855957,0.37824,0.006144,0.206848,0.01024,0.012096,0.006304,0.006176,0.006176,0.118688,0.005568
+741,1276.01,0.783691,0.387072,0.005504,0.218752,0.010496,0.010912,0.00624,0.006176,0.006272,0.117664,0.005056
+742,1273.24,0.7854,0.381088,0.005152,0.212864,0.010336,0.011424,0.006304,0.006848,0.006144,0.11648,0.005536
+743,637.957,1.5675,0.392,0.007008,0.2232,0.010272,0.010272,0.007296,0.006496,0.006336,0.11648,0.00464
+744,1262.83,0.79187,0.382752,0.006016,0.212704,0.010656,0.012,0.006432,0.006144,0.006144,0.116736,0.00592
+745,1360.35,0.735107,0.37888,0.006112,0.208928,0.010272,0.011328,0.006496,0.006688,0.006016,0.117952,0.005088
+746,1179.55,0.847778,0.380896,0.006144,0.212512,0.01072,0.011744,0.006464,0.006368,0.006144,0.114688,0.006112
+747,1326.21,0.754028,0.392704,0.005376,0.221696,0.010496,0.011616,0.006496,0.006464,0.006144,0.118784,0.005632
+748,1257.6,0.795166,0.374528,0.005952,0.204992,0.01024,0.012032,0.006368,0.006176,0.006144,0.116736,0.005888
+749,734.445,1.36157,0.418208,0.011872,0.243744,0.010592,0.010656,0.007584,0.006592,0.006176,0.115872,0.00512
+750,1060.32,0.943115,0.486816,0.007808,0.26832,0.0104,0.010464,0.006112,0.007264,0.011168,0.159744,0.005536
+751,979.436,1.021,0.382496,0.005568,0.21328,0.010464,0.010304,0.007328,0.006752,0.00592,0.117216,0.005664
+752,1279.2,0.781738,0.37936,0.004832,0.208896,0.010272,0.011328,0.006432,0.006464,0.006144,0.119104,0.005888
+753,1275.22,0.78418,0.389216,0.016864,0.21024,0.010496,0.010688,0.006144,0.006176,0.006112,0.116736,0.00576
+754,1195.91,0.836182,0.379168,0.004384,0.210944,0.010272,0.010272,0.007232,0.00672,0.00608,0.118624,0.00464
+755,1334.85,0.749146,0.38016,0.005344,0.211744,0.01024,0.011392,0.006368,0.006816,0.006144,0.116576,0.005536
+756,985.207,1.01501,0.380192,0.005824,0.210752,0.010592,0.010432,0.007264,0.006368,0.005984,0.117376,0.0056
+757,1303.63,0.76709,0.390656,0.00608,0.21504,0.01024,0.010304,0.007264,0.006592,0.00656,0.122656,0.00592
+758,625.678,1.59827,0.394976,0.008192,0.218208,0.010464,0.012992,0.006144,0.007232,0.006144,0.119744,0.005856
+759,1264.78,0.790649,0.385056,0.005888,0.21248,0.010496,0.010784,0.006336,0.007296,0.006144,0.119456,0.006176
+760,1232.99,0.811035,0.378432,0.005344,0.207712,0.01024,0.012224,0.006208,0.006144,0.006144,0.118784,0.005632
+761,1246.5,0.802246,0.382976,0.006144,0.212256,0.010528,0.010432,0.0064,0.006176,0.006112,0.118784,0.006144
+762,1215.79,0.82251,0.376256,0.006144,0.20608,0.01024,0.011008,0.006176,0.006112,0.006176,0.118752,0.005568
+763,1353.83,0.738647,0.379264,0.004832,0.208928,0.011232,0.011136,0.006272,0.006144,0.006176,0.118624,0.00592
+764,889.565,1.12415,0.413696,0.005888,0.23168,0.01024,0.011712,0.014912,0.008064,0.006272,0.118784,0.006144
+765,536.969,1.8623,0.610784,0.006624,0.436224,0.011392,0.013184,0.006144,0.006304,0.007104,0.117664,0.006144
+766,1164.46,0.858765,0.378912,0.00544,0.210912,0.010496,0.010816,0.006272,0.006144,0.006144,0.116736,0.005952
+767,1344.27,0.743896,0.382208,0.005408,0.211456,0.010496,0.010368,0.006144,0.007328,0.006176,0.118944,0.005888
+768,1097.24,0.911377,0.380512,0.006016,0.212384,0.010336,0.0104,0.00624,0.006208,0.006464,0.116736,0.005728
+769,1490.54,0.670898,0.38112,0.005888,0.2112,0.01024,0.011488,0.006528,0.00656,0.006144,0.11792,0.005152
+770,1163.31,0.859619,0.385632,0.004672,0.216448,0.010496,0.012064,0.006464,0.006432,0.006144,0.118144,0.004768
+771,1267.52,0.78894,0.387264,0.005376,0.219424,0.010528,0.012192,0.006496,0.006272,0.006144,0.115936,0.004896
+772,968.665,1.03235,0.593984,0.005344,0.424224,0.012672,0.010432,0.007296,0.006624,0.00624,0.116448,0.004704
+773,822.573,1.2157,0.383136,0.005344,0.216,0.01024,0.011392,0.00688,0.006304,0.006144,0.114688,0.006144
+774,1147.5,0.87146,0.391232,0.005376,0.219488,0.010528,0.010432,0.006144,0.006144,0.006272,0.122144,0.004704
+775,1368.98,0.730469,0.382944,0.006176,0.210912,0.011488,0.010752,0.006432,0.006144,0.006144,0.118784,0.006112
+776,1112.74,0.898682,0.383424,0.004544,0.208896,0.011328,0.0112,0.007328,0.006496,0.005984,0.12272,0.004928
+777,1406.35,0.71106,0.380928,0.005408,0.209632,0.01024,0.012032,0.0064,0.006144,0.006144,0.118784,0.006144
+778,1164.3,0.858887,0.383424,0.004544,0.212928,0.01024,0.011584,0.006592,0.0064,0.006144,0.120352,0.00464
+779,1175.15,0.850952,0.426272,0.004544,0.251392,0.010528,0.010368,0.008032,0.006304,0.006144,0.12288,0.00608
+780,709.203,1.41003,0.65536,0.008,0.47328,0.011456,0.011232,0.007232,0.006624,0.006208,0.126432,0.004896
+781,961.841,1.03967,0.383712,0.004864,0.212704,0.010464,0.012192,0.006304,0.006144,0.006144,0.118784,0.006112
+782,1286.03,0.777588,0.388832,0.004608,0.216544,0.0104,0.010624,0.006176,0.007232,0.006272,0.121248,0.005728
+783,1301.14,0.768555,0.381888,0.005056,0.210944,0.01024,0.01024,0.00736,0.006464,0.00624,0.1192,0.006144
+784,1194.52,0.837158,0.3768,0.006112,0.206016,0.010496,0.010848,0.006144,0.006144,0.006144,0.118784,0.006112
+785,1266.93,0.789307,0.38096,0.005056,0.214272,0.010528,0.010464,0.0064,0.006144,0.006144,0.116352,0.0056
+786,853.689,1.17139,0.399456,0.005376,0.229824,0.010496,0.0104,0.006112,0.007232,0.006688,0.11856,0.004768
+787,1251.26,0.799194,0.598016,0.006144,0.423456,0.01264,0.010368,0.006144,0.0072,0.0064,0.11952,0.006144
+788,716.021,1.39661,0.396928,0.005664,0.22576,0.01024,0.012288,0.0072,0.00656,0.006176,0.11728,0.00576
+789,1449.65,0.689819,0.377376,0.004928,0.208064,0.010528,0.010816,0.006112,0.007488,0.006208,0.117376,0.005856
+790,1247.64,0.801514,0.381504,0.004672,0.212544,0.010464,0.010432,0.006176,0.006144,0.006144,0.119904,0.005024
+791,1345.82,0.743042,0.37904,0.005344,0.209056,0.01056,0.01072,0.006144,0.006144,0.007168,0.11888,0.005024
+792,1219.96,0.819702,0.390528,0.005984,0.2152,0.01024,0.011616,0.006464,0.006496,0.005952,0.123072,0.005504
+793,1207.01,0.828491,0.405888,0.004544,0.237216,0.010528,0.010368,0.00736,0.006528,0.006272,0.117952,0.00512
+794,1169.78,0.854858,0.389408,0.004544,0.217024,0.010272,0.012224,0.007392,0.006464,0.005888,0.11952,0.00608
+795,1040.39,0.961182,0.571744,0.006688,0.400928,0.010528,0.01024,0.006144,0.007392,0.006176,0.1192,0.004448
+796,817.646,1.22302,0.398208,0.004992,0.225216,0.010336,0.010208,0.007712,0.0064,0.005984,0.122336,0.005024
+797,1220.14,0.81958,0.38352,0.00464,0.208896,0.011296,0.011232,0.007232,0.006656,0.006112,0.121312,0.006144
+798,1319.16,0.758057,0.374784,0.005504,0.202976,0.010656,0.011584,0.006784,0.006208,0.006144,0.12,0.004928
+799,1367.84,0.731079,0.376672,0.00544,0.205536,0.011232,0.010592,0.0064,0.00656,0.006144,0.118784,0.005984
+800,1240.27,0.806274,0.372928,0.005344,0.199648,0.012288,0.01136,0.006464,0.006656,0.00624,0.118784,0.006144
+801,1273.04,0.785522,0.371424,0.004832,0.202752,0.01024,0.01024,0.00736,0.006496,0.006208,0.118432,0.004864
+802,811.169,1.23279,0.384544,0.005632,0.212992,0.010496,0.012384,0.006304,0.006144,0.006144,0.118784,0.005664
+803,1167.28,0.856689,0.611008,0.006848,0.402816,0.016896,0.040704,0.006496,0.006176,0.006144,0.118784,0.006144
+804,821.747,1.21692,0.382752,0.005984,0.207008,0.010272,0.012256,0.007296,0.00656,0.006176,0.121248,0.005952
+805,1316.83,0.759399,0.379136,0.004704,0.20592,0.010528,0.010624,0.0064,0.006144,0.006144,0.12288,0.005792
+806,1197.84,0.834839,0.384768,0.005376,0.208992,0.010944,0.011488,0.006464,0.006592,0.006176,0.122848,0.005888
+807,1325.78,0.754272,0.387296,0.004832,0.214048,0.01056,0.010688,0.006368,0.007328,0.006144,0.121696,0.005632
+808,1272.05,0.786133,0.378592,0.006144,0.206208,0.010496,0.010624,0.007296,0.006496,0.006208,0.119264,0.005856
+809,1030.7,0.970215,0.376256,0.005952,0.204992,0.01024,0.01152,0.006784,0.006272,0.006144,0.118784,0.005568
+810,1374.96,0.727295,0.41312,0.006048,0.239712,0.01024,0.011488,0.00624,0.00656,0.006208,0.121056,0.005568
+811,802.272,1.24646,0.588,0.007456,0.412608,0.011264,0.010624,0.006816,0.006112,0.006144,0.121984,0.004992
+812,1088.2,0.918945,0.382848,0.00544,0.211648,0.01024,0.01024,0.007424,0.006688,0.006272,0.11888,0.006016
+813,1211.83,0.825195,0.376864,0.006016,0.206432,0.010496,0.010528,0.006336,0.007392,0.006208,0.1184,0.005056
+814,1345.6,0.743164,0.378368,0.005344,0.206944,0.010464,0.01088,0.006304,0.00736,0.006176,0.119296,0.0056
+815,1261.08,0.792969,0.373344,0.004704,0.2048,0.01136,0.010528,0.006752,0.006176,0.006144,0.118208,0.004672
+816,1277.01,0.783081,0.3808,0.004832,0.206848,0.01024,0.011456,0.006496,0.006528,0.005984,0.122752,0.005664
+817,807.173,1.23889,0.376832,0.005632,0.205344,0.01024,0.01136,0.006464,0.00672,0.006144,0.119808,0.00512
+818,1504.5,0.664673,0.598016,0.006048,0.423392,0.012608,0.010592,0.007424,0.006464,0.006112,0.120384,0.004992
+819,724.892,1.37952,0.387424,0.004544,0.214944,0.01152,0.013056,0.006144,0.006176,0.006112,0.118784,0.006144
+820,1206.84,0.828613,0.376832,0.005472,0.205472,0.01024,0.01024,0.007392,0.006432,0.006368,0.119072,0.006144
+821,1290.69,0.77478,0.372192,0.004544,0.202752,0.012224,0.010304,0.006304,0.00736,0.006048,0.11712,0.005536
+822,1354.05,0.738525,0.376448,0.006048,0.206144,0.010496,0.010784,0.006368,0.007456,0.0064,0.116992,0.00576
+823,1252.6,0.79834,0.377184,0.004704,0.208608,0.010496,0.010272,0.006336,0.007328,0.00624,0.117312,0.005888
+824,1228.55,0.813965,0.380448,0.004416,0.210944,0.010208,0.011552,0.006464,0.006496,0.005952,0.11888,0.005536
+825,1206.3,0.828979,0.382176,0.00608,0.210688,0.010528,0.010272,0.007232,0.006528,0.006208,0.119104,0.005536
+826,1159.68,0.862305,0.595104,0.006048,0.421888,0.013632,0.010944,0.0064,0.007296,0.006144,0.117248,0.005504
+827,778.337,1.28479,0.38784,0.004832,0.214304,0.010976,0.012288,0.008064,0.006272,0.006144,0.119936,0.005024
+828,1198.71,0.834229,0.381056,0.005344,0.205184,0.01056,0.01248,0.006144,0.007488,0.006208,0.12272,0.004928
+829,1291.5,0.774292,0.376864,0.005664,0.20528,0.01136,0.011136,0.006176,0.006144,0.006144,0.120032,0.004928
+830,1357.87,0.73645,0.382976,0.00576,0.209216,0.010304,0.011616,0.00656,0.0064,0.006144,0.120832,0.006144
+831,1199.59,0.833618,0.379328,0.00464,0.210208,0.010496,0.01072,0.006368,0.007616,0.006112,0.11712,0.006048
+832,1179.04,0.848145,0.386592,0.006144,0.21504,0.01024,0.011552,0.006976,0.007296,0.006144,0.117536,0.005664
+833,1185.01,0.843872,0.400672,0.005952,0.229184,0.010624,0.01024,0.006176,0.007168,0.006944,0.118784,0.0056
+834,1206.12,0.829102,0.421888,0.00592,0.25168,0.010432,0.010496,0.006176,0.008096,0.00608,0.116864,0.006144
+835,717.464,1.3938,0.414016,0.007008,0.23552,0.011648,0.012928,0.006176,0.006144,0.006112,0.12288,0.0056
+836,1424.2,0.702148,0.37936,0.004544,0.208896,0.010272,0.010432,0.007488,0.00656,0.006144,0.120224,0.0048
+837,1215.97,0.822388,0.378144,0.004544,0.208256,0.010464,0.010464,0.0072,0.00656,0.006272,0.118848,0.005536
+838,1343.61,0.744263,0.379744,0.004992,0.210912,0.010272,0.011584,0.006624,0.006336,0.006112,0.117792,0.00512
+839,1226.53,0.815308,0.376672,0.005472,0.205696,0.01024,0.012,0.006464,0.006112,0.006144,0.118784,0.00576
+840,1190.35,0.840088,0.378976,0.005344,0.208832,0.010496,0.010208,0.00672,0.006304,0.005856,0.120256,0.00496
+841,771.302,1.29651,0.402944,0.004416,0.231424,0.010272,0.011424,0.006784,0.006336,0.006144,0.120544,0.0056
+842,932.817,1.07202,0.454336,0.007488,0.232448,0.010272,0.011488,0.008096,0.007008,0.006144,0.165792,0.0056
+843,1009.61,0.990479,0.387072,0.005984,0.213152,0.01024,0.011584,0.006752,0.00624,0.006144,0.120832,0.006144
+844,1408.77,0.709839,0.38912,0.00608,0.213056,0.011808,0.01072,0.00624,0.00608,0.006112,0.124,0.005024
+845,1204,0.830566,0.383296,0.004832,0.210464,0.010528,0.010432,0.006144,0.006144,0.007168,0.121856,0.005728
+846,1354.27,0.738403,0.382112,0.00576,0.207232,0.01024,0.01184,0.006592,0.007872,0.006144,0.120896,0.005536
+847,1258.37,0.794678,0.375008,0.005376,0.205216,0.010528,0.010528,0.006112,0.006176,0.006112,0.120416,0.004544
+848,1244.61,0.803467,0.382784,0.006144,0.212896,0.010336,0.01024,0.00752,0.006688,0.006176,0.116832,0.005952
+849,1227.27,0.814819,0.378144,0.00576,0.207232,0.011488,0.01104,0.006144,0.006144,0.006144,0.118624,0.005568
+850,689.562,1.4502,0.58192,0.007776,0.402368,0.01152,0.012832,0.0064,0.006112,0.006144,0.12288,0.005888
+851,675.183,1.48108,0.387808,0.004832,0.21712,0.012256,0.01024,0.007296,0.00656,0.00624,0.118432,0.004832
+852,1297.23,0.770874,0.3824,0.005408,0.207584,0.01024,0.01184,0.006592,0.006144,0.006144,0.122816,0.005632
+853,1304.67,0.766479,0.380928,0.005344,0.2056,0.01024,0.011872,0.00656,0.006144,0.006144,0.12288,0.006144
+854,1248.4,0.801025,0.376448,0.004576,0.204576,0.010464,0.011936,0.006432,0.00624,0.006112,0.120544,0.005568
+855,1277.8,0.782593,0.372768,0.005824,0.201024,0.011616,0.010912,0.006176,0.006112,0.006144,0.118784,0.006176
+856,1182.96,0.845337,0.380512,0.005632,0.211456,0.011264,0.010496,0.006752,0.006304,0.006048,0.116832,0.005728
+857,699.454,1.42969,0.462848,0.007744,0.289152,0.010304,0.011712,0.006176,0.006496,0.006208,0.120032,0.005024
+858,883.234,1.1322,0.393216,0.006048,0.220448,0.010496,0.010816,0.007616,0.006624,0.00608,0.120224,0.004864
+859,1316.2,0.759766,0.382112,0.005728,0.211296,0.010336,0.010208,0.007296,0.006496,0.00624,0.118944,0.005568
+860,1314.51,0.760742,0.380544,0.004608,0.21296,0.010272,0.01024,0.006176,0.00736,0.00608,0.117248,0.0056
+861,1188.97,0.841064,0.383936,0.005056,0.213024,0.01024,0.011552,0.006848,0.006272,0.00704,0.11904,0.004864
+862,1400.1,0.714233,0.375712,0.005024,0.207872,0.010464,0.011008,0.006176,0.006112,0.006144,0.118208,0.004704
+863,1248.02,0.80127,0.38096,0.005728,0.21136,0.01024,0.011648,0.006528,0.0064,0.006176,0.117888,0.004992
+864,1124.97,0.888916,0.385024,0.005888,0.213248,0.01024,0.012288,0.007424,0.006528,0.006016,0.118272,0.00512
+865,566.489,1.76526,0.427456,0.008,0.25328,0.010528,0.010464,0.006496,0.007264,0.006144,0.119648,0.005632
+866,984.142,1.01611,0.376928,0.005344,0.208768,0.010496,0.010912,0.006176,0.006208,0.006176,0.11776,0.005088
+867,1619.93,0.61731,0.381312,0.004512,0.212928,0.010272,0.011456,0.006496,0.006592,0.006144,0.116736,0.006176
+868,1313.87,0.761108,0.38272,0.00576,0.209312,0.012256,0.0104,0.00752,0.00656,0.006208,0.118816,0.005888
+869,1274.03,0.784912,0.375104,0.004736,0.2048,0.01024,0.0104,0.007232,0.006304,0.006176,0.119232,0.005984
+870,1134.78,0.881226,0.385024,0.005952,0.214304,0.010464,0.010912,0.006208,0.006112,0.006208,0.119872,0.004992
+871,1278.6,0.782104,0.385088,0.005344,0.211072,0.010592,0.012192,0.006368,0.006336,0.00624,0.1208,0.006144
+872,680.399,1.46973,0.569344,0.008192,0.395264,0.0104,0.013504,0.006784,0.006176,0.006144,0.11824,0.00464
+873,1094.89,0.91333,0.374176,0.005696,0.205248,0.01024,0.011488,0.0064,0.00656,0.006272,0.116704,0.005568
+874,1204.71,0.830078,0.378688,0.004896,0.208768,0.0104,0.01024,0.007136,0.007168,0.006144,0.118368,0.005568
+875,1307.58,0.764771,0.400352,0.005056,0.231424,0.01024,0.011456,0.006304,0.006496,0.006208,0.116992,0.006176
+876,854.134,1.17078,0.70032,0.005728,0.526752,0.011264,0.011072,0.006336,0.006144,0.006144,0.120832,0.006048
+877,1408.53,0.709961,0.385088,0.004608,0.208896,0.01024,0.011392,0.007008,0.006176,0.006144,0.124928,0.005696
+878,1206.12,0.829102,0.385952,0.004992,0.21232,0.010912,0.011808,0.006432,0.006336,0.006144,0.122144,0.004864
+879,620.935,1.61047,0.585728,0.00688,0.407072,0.010528,0.010432,0.0072,0.006496,0.006272,0.125184,0.005664
+880,1093,0.914917,0.37744,0.004672,0.206848,0.011296,0.010624,0.006752,0.006144,0.006144,0.118784,0.006176
+881,1200.64,0.832886,0.376032,0.005824,0.206816,0.01024,0.010592,0.006144,0.006176,0.006112,0.118592,0.005536
+882,1346.93,0.742432,0.376704,0.005472,0.205504,0.011552,0.010944,0.006176,0.007328,0.00624,0.117472,0.006016
+883,1256.25,0.796021,0.376832,0.005664,0.20896,0.010528,0.0104,0.006112,0.006144,0.007232,0.11568,0.006112
+884,1248.02,0.80127,0.37888,0.005824,0.207168,0.011296,0.011136,0.00624,0.007424,0.006272,0.117376,0.006144
+885,1230.4,0.812744,0.376832,0.005888,0.208224,0.01056,0.010656,0.006336,0.006144,0.006144,0.117888,0.004992
+886,1318.95,0.758179,0.389536,0.00448,0.217088,0.011392,0.011136,0.008192,0.006144,0.006144,0.118784,0.006176
+887,788.906,1.26758,0.583552,0.008064,0.40768,0.011744,0.010656,0.006272,0.006176,0.007232,0.119712,0.006016
+888,1024.38,0.976196,0.381248,0.004704,0.210752,0.010432,0.011424,0.00672,0.006432,0.006144,0.118784,0.005856
+889,1281.2,0.780518,0.37888,0.005536,0.206848,0.010848,0.011776,0.006656,0.006144,0.006144,0.118784,0.006144
+890,1388,0.720459,0.378976,0.005344,0.207744,0.011328,0.011136,0.006208,0.006144,0.006272,0.118656,0.006144
+891,1249.35,0.800415,0.374816,0.006176,0.202752,0.01024,0.011808,0.006528,0.00624,0.006112,0.11984,0.00512
+892,1217.6,0.821289,0.3808,0.006144,0.204544,0.010528,0.0104,0.007712,0.006432,0.006176,0.122848,0.006016
+893,1120.04,0.892822,0.406464,0.005056,0.231424,0.01152,0.012064,0.006944,0.006336,0.006144,0.120832,0.006144
+894,1317.89,0.758789,0.404352,0.005024,0.229376,0.01024,0.011712,0.00672,0.006176,0.006112,0.12288,0.006112
+895,627.547,1.59351,0.564384,0.008192,0.385024,0.012288,0.012288,0.006144,0.006144,0.006144,0.122592,0.005568
+896,1207.19,0.828369,0.385152,0.005344,0.211744,0.010336,0.011424,0.006784,0.006368,0.006144,0.120832,0.006176
+897,1248.21,0.801147,0.381216,0.004384,0.20832,0.010752,0.010304,0.006144,0.007232,0.006272,0.121664,0.006144
+898,1309.25,0.763794,0.38336,0.00464,0.208896,0.011296,0.010464,0.006912,0.006144,0.006144,0.12288,0.005984
+899,1249.54,0.800293,0.382784,0.005536,0.207424,0.010272,0.010272,0.008032,0.006272,0.006144,0.12288,0.005952
+900,1247.45,0.801636,0.380608,0.004544,0.208384,0.010496,0.0104,0.006176,0.00736,0.006144,0.121472,0.005632
+901,1229.85,0.81311,0.38848,0.005664,0.212576,0.010496,0.010912,0.006112,0.0072,0.006176,0.123744,0.0056
+902,1268.7,0.788208,0.602144,0.004736,0.423936,0.013408,0.011168,0.006144,0.007296,0.006176,0.123616,0.005664
+903,733.327,1.36365,0.38912,0.005664,0.213472,0.01024,0.014208,0.006272,0.006144,0.006144,0.12192,0.005056
+904,1231.69,0.81189,0.37712,0.004384,0.208096,0.010528,0.010752,0.006144,0.006144,0.006144,0.120128,0.0048
+905,1282.4,0.779785,0.380128,0.005696,0.205248,0.01152,0.010656,0.006496,0.006144,0.006144,0.122592,0.005632
+906,1266.35,0.789673,0.379232,0.004736,0.206848,0.010336,0.012128,0.006208,0.006144,0.006144,0.120832,0.005856
+907,1231.14,0.812256,0.382336,0.005344,0.205696,0.011776,0.010752,0.006144,0.006144,0.007264,0.123648,0.005568
+908,1326.64,0.753784,0.381504,0.00464,0.208448,0.010496,0.010432,0.00736,0.006496,0.006048,0.122848,0.004736
+909,1167.95,0.856201,0.382272,0.0056,0.211072,0.010528,0.0104,0.006112,0.006144,0.006144,0.120704,0.005568
+910,1072.39,0.932495,0.599456,0.00544,0.42448,0.012448,0.011424,0.006432,0.006688,0.006176,0.120736,0.005632
+911,696.421,1.43591,0.431776,0.006048,0.256096,0.011648,0.012512,0.006496,0.006208,0.006176,0.1208,0.005792
+912,1454.03,0.687744,0.396736,0.005632,0.225824,0.010208,0.011712,0.00672,0.00736,0.006176,0.117536,0.005568
+913,1223.23,0.817505,0.398624,0.005824,0.224896,0.01056,0.010624,0.006144,0.007264,0.006272,0.121376,0.005664
+914,1185.19,0.84375,0.389088,0.004544,0.219104,0.010432,0.011968,0.006272,0.006144,0.006208,0.11872,0.005696
+915,1193.99,0.837524,0.40848,0.005056,0.237536,0.01024,0.012032,0.006368,0.006176,0.006144,0.118784,0.006144
+916,1390.36,0.719238,0.387392,0.005056,0.212992,0.010368,0.01136,0.006752,0.006336,0.006144,0.12288,0.005504
+917,1191.56,0.839233,0.397504,0.004704,0.228704,0.010464,0.010688,0.007232,0.006688,0.0064,0.116896,0.005728
+918,1130.71,0.884399,0.597568,0.006144,0.42304,0.012672,0.010752,0.007264,0.006624,0.00592,0.119456,0.005696
+919,693.884,1.44116,0.385024,0.006144,0.212704,0.010528,0.011296,0.00656,0.00656,0.00624,0.118848,0.006144
+920,1594.08,0.627319,0.382176,0.005504,0.208992,0.010784,0.011648,0.006752,0.006176,0.006144,0.120544,0.005632
+921,1187.25,0.842285,0.37696,0.004544,0.204736,0.011456,0.01104,0.006304,0.007392,0.0064,0.119168,0.00592
+922,1341.85,0.745239,0.3792,0.004544,0.210432,0.010528,0.010368,0.007232,0.006496,0.006336,0.11712,0.006144
+923,1259.15,0.794189,0.379264,0.004512,0.208864,0.01024,0.01168,0.006752,0.006144,0.006144,0.118784,0.006144
+924,1249.35,0.800415,0.38096,0.006144,0.21008,0.010496,0.010592,0.0064,0.006144,0.006144,0.119904,0.005056
+925,848.297,1.17883,0.393216,0.006144,0.221088,0.010336,0.01024,0.008192,0.006144,0.006144,0.120192,0.004736
+926,1199.24,0.833862,0.599712,0.006048,0.42528,0.012672,0.010656,0.006272,0.007232,0.00624,0.11952,0.005792
+927,645.09,1.55017,0.407808,0.005504,0.234016,0.010496,0.010336,0.006176,0.006112,0.006144,0.12288,0.006144
+928,1157.72,0.86377,0.397152,0.00544,0.223936,0.01024,0.011776,0.006176,0.006464,0.006112,0.121024,0.005984
+929,1512,0.661377,0.393504,0.004608,0.222336,0.010496,0.010592,0.006336,0.00624,0.006144,0.120832,0.00592
+930,1166.95,0.856934,0.393216,0.005408,0.219872,0.01024,0.012096,0.006336,0.006144,0.006144,0.120832,0.006144
+931,1254.52,0.797119,0.385344,0.004544,0.214688,0.010464,0.010336,0.007168,0.00656,0.00624,0.119296,0.006048
+932,1277.41,0.782837,0.396224,0.005056,0.22736,0.01024,0.01024,0.007424,0.006528,0.006464,0.116768,0.006144
+933,1142.86,0.875,0.596192,0.004576,0.421888,0.012384,0.011488,0.00672,0.006272,0.006144,0.120832,0.005888
+934,728.955,1.37183,0.385024,0.005696,0.210816,0.010816,0.013632,0.006784,0.006208,0.006144,0.12,0.004928
+935,1315.77,0.76001,0.380896,0.005376,0.209664,0.010272,0.011616,0.006496,0.006432,0.006144,0.118784,0.006112
+936,1230.77,0.8125,0.393472,0.0048,0.222656,0.010464,0.010496,0.00624,0.007264,0.005024,0.120832,0.005696
+937,1208.97,0.827148,0.38368,0.004768,0.21504,0.01024,0.010432,0.007328,0.006464,0.00624,0.118464,0.004704
+938,1195.39,0.836548,0.382976,0.006016,0.209024,0.011456,0.012544,0.006432,0.006432,0.006144,0.119968,0.00496
+939,1344.27,0.743896,0.390016,0.00496,0.218912,0.010464,0.01024,0.006176,0.007488,0.006336,0.120544,0.004896
+940,989.85,1.01025,0.38912,0.006144,0.217088,0.01024,0.01232,0.0072,0.006848,0.006304,0.117888,0.005088
+941,1413.39,0.70752,0.38912,0.006144,0.217088,0.01024,0.011584,0.00688,0.006112,0.006144,0.118784,0.006144
+942,604.754,1.65356,0.413696,0.008128,0.236864,0.010464,0.010784,0.006464,0.007168,0.006144,0.12288,0.0048
+943,1314.72,0.76062,0.380928,0.005984,0.208096,0.010496,0.010944,0.006144,0.006144,0.007168,0.120928,0.005024
+944,1313.66,0.76123,0.37888,0.006016,0.206976,0.010272,0.01184,0.00656,0.006144,0.006144,0.120064,0.004864
+945,1148.95,0.870361,0.382144,0.005984,0.208384,0.010496,0.010464,0.006336,0.006144,0.00768,0.121088,0.005568
+946,1211.3,0.825562,0.382976,0.005792,0.213344,0.011392,0.010752,0.006528,0.006144,0.006144,0.118144,0.004736
+947,1086.9,0.920044,0.382624,0.005504,0.208672,0.010496,0.011008,0.007776,0.0064,0.006144,0.120832,0.005792
+948,1539.85,0.649414,0.388992,0.00592,0.215264,0.011296,0.011232,0.006176,0.007392,0.006272,0.119424,0.006016
+949,799.688,1.25049,0.401376,0.007904,0.229344,0.01056,0.01024,0.006144,0.006176,0.007168,0.117728,0.006112
+950,994.658,1.00537,0.382592,0.006144,0.210944,0.01024,0.01168,0.006496,0.0064,0.00608,0.118848,0.00576
+951,1301.14,0.768555,0.380256,0.005376,0.207648,0.01024,0.01136,0.006848,0.006336,0.006144,0.120672,0.005632
+952,1324.07,0.755249,0.378528,0.005376,0.207712,0.01024,0.01024,0.007456,0.006592,0.005952,0.119264,0.005696
+953,1282.61,0.779663,0.37472,0.005472,0.203168,0.010496,0.010336,0.007296,0.006528,0.006144,0.1192,0.00608
+954,1258.37,0.794678,0.37888,0.006016,0.204928,0.010272,0.011488,0.006464,0.006528,0.006208,0.122048,0.004928
+955,789.058,1.26733,0.37888,0.005696,0.207296,0.01024,0.011712,0.006496,0.006368,0.006144,0.118816,0.006112
+956,1345.38,0.743286,0.661152,0.005312,0.489376,0.012608,0.010912,0.006144,0.007232,0.006176,0.117664,0.005728
+957,713.465,1.40161,0.415104,0.0056,0.24016,0.012192,0.012,0.006528,0.006144,0.006144,0.120768,0.005568
+958,1232.81,0.811157,0.382816,0.005888,0.210944,0.010496,0.010464,0.00752,0.006592,0.006144,0.118784,0.005984
+959,1288.46,0.776123,0.378848,0.006144,0.206848,0.010272,0.011264,0.006784,0.006496,0.006144,0.118784,0.006112
+960,1314.29,0.760864,0.381664,0.004832,0.208896,0.01024,0.012288,0.007296,0.006464,0.006176,0.120576,0.004896
+961,1230.21,0.812866,0.38096,0.00544,0.20864,0.010464,0.010624,0.006496,0.006144,0.006144,0.12224,0.004768
+962,1247.83,0.801392,0.377024,0.004544,0.204704,0.01136,0.010464,0.006432,0.006432,0.006016,0.121056,0.006016
+963,1080.31,0.925659,0.385024,0.005792,0.211296,0.010272,0.011264,0.006784,0.006496,0.006144,0.122368,0.004608
+964,1168.12,0.856079,0.57344,0.007712,0.4016,0.010528,0.01024,0.006176,0.0072,0.006144,0.118944,0.004896
+965,923.771,1.08252,0.379712,0.004928,0.207936,0.010944,0.012544,0.006144,0.006144,0.007264,0.117664,0.006144
+966,1194.17,0.837402,0.380576,0.005984,0.208512,0.010784,0.012032,0.0064,0.006144,0.006144,0.118784,0.005792
+967,1291.5,0.774292,0.379744,0.004928,0.20816,0.010656,0.010592,0.006112,0.006144,0.006144,0.121952,0.005056
+968,1319.8,0.75769,0.377184,0.004672,0.206848,0.01024,0.011552,0.006528,0.006496,0.006144,0.118784,0.00592
+969,1314.51,0.760742,0.374784,0.006144,0.20224,0.010752,0.010592,0.007424,0.006496,0.006144,0.120192,0.0048
+970,1277.01,0.783081,0.37888,0.006144,0.202752,0.011296,0.011232,0.006144,0.006272,0.006048,0.122848,0.006144
+971,1182.11,0.845947,0.378912,0.004576,0.206112,0.010976,0.011968,0.006464,0.006144,0.006144,0.120864,0.005664
+972,1291.5,0.774292,0.598016,0.005824,0.424256,0.012288,0.012032,0.0064,0.007456,0.006208,0.117408,0.006144
+973,703.659,1.42114,0.387104,0.006144,0.208864,0.011424,0.012544,0.006784,0.006144,0.006144,0.12288,0.006176
+974,1234.29,0.810181,0.376128,0.005856,0.204992,0.010368,0.011296,0.006752,0.006496,0.006144,0.118656,0.005568
+975,1326.64,0.753784,0.37648,0.004416,0.2048,0.01024,0.010432,0.007456,0.006528,0.006016,0.121024,0.005568
+976,1352.48,0.73938,0.378784,0.005952,0.206368,0.010528,0.010624,0.00736,0.006528,0.00624,0.119136,0.006048
+977,1215.97,0.822388,0.378048,0.00576,0.203136,0.011296,0.010624,0.00672,0.006176,0.006144,0.122624,0.005568
+978,1278.4,0.782227,0.375264,0.004576,0.202752,0.011584,0.010496,0.006496,0.00624,0.006144,0.122144,0.004832
+979,1217.78,0.821167,0.376288,0.005824,0.205024,0.010336,0.01024,0.006176,0.007424,0.006176,0.119392,0.005696
+980,1078.18,0.92749,0.575968,0.006656,0.403424,0.01024,0.011424,0.006528,0.0064,0.006208,0.120192,0.004896
+981,842.712,1.18665,0.563008,0.004576,0.386048,0.011264,0.013984,0.006496,0.006144,0.006144,0.122656,0.005696
+982,722.144,1.38477,0.385248,0.005344,0.215456,0.010528,0.01056,0.006272,0.0072,0.00624,0.117504,0.006144
+983,1534.94,0.651489,0.385024,0.006144,0.213024,0.010208,0.010432,0.007424,0.006528,0.006016,0.120704,0.004544
+984,1301.14,0.768555,0.382656,0.005376,0.211488,0.010464,0.0104,0.00624,0.007296,0.005984,0.119712,0.005696
+985,1157.23,0.864136,0.382976,0.006144,0.208224,0.010912,0.011648,0.006752,0.006176,0.006144,0.121888,0.005088
+986,1485.4,0.673218,0.374784,0.005408,0.20496,0.010848,0.01168,0.00672,0.006144,0.006144,0.116768,0.006112
+987,1195.56,0.836426,0.380864,0.004928,0.208864,0.01024,0.011424,0.006464,0.00656,0.00624,0.120544,0.0056
+988,1066.81,0.937378,0.572864,0.00816,0.401824,0.010272,0.011936,0.006464,0.006144,0.006144,0.116736,0.005184
+989,852.445,1.1731,0.380928,0.00608,0.208992,0.011392,0.010752,0.006496,0.006144,0.006144,0.118784,0.006144
+990,1195.04,0.836792,0.374816,0.005696,0.204288,0.010496,0.010592,0.006496,0.006144,0.006144,0.120128,0.004832
+991,1278.6,0.782104,0.378848,0.004576,0.206848,0.011616,0.010624,0.0064,0.006176,0.006144,0.120832,0.005632
+992,1346.26,0.742798,0.376864,0.005344,0.207264,0.010528,0.010432,0.00752,0.006688,0.006048,0.116928,0.006112
+993,1257.6,0.795166,0.372736,0.005856,0.202912,0.010368,0.01024,0.006144,0.007328,0.006176,0.118688,0.005024
+994,1282.2,0.779907,0.372832,0.006144,0.202752,0.01024,0.012288,0.006144,0.006144,0.007232,0.117248,0.00464
+995,1237.65,0.807983,0.376512,0.004544,0.204704,0.01024,0.011808,0.006368,0.0064,0.006144,0.120768,0.005536
+996,704.87,1.4187,0.396768,0.008064,0.221312,0.010272,0.010208,0.007552,0.00656,0.006208,0.120992,0.0056
+997,1008.99,0.991089,0.378304,0.006176,0.206432,0.010496,0.010368,0.006144,0.006144,0.006144,0.120736,0.005664
+998,1208.97,0.827148,0.374336,0.006144,0.204544,0.010496,0.010272,0.006112,0.007488,0.006176,0.117408,0.005696
+999,1260.31,0.793457,0.376832,0.005504,0.205152,0.010528,0.011328,0.007104,0.0072,0.00528,0.119776,0.00496
+1000,1000.24,0.999756,0.448512,0.005472,0.278816,0.010528,0.010432,0.00784,0.0064,0.006144,0.116736,0.006144
+1001,1499.54,0.66687,0.383936,0.005088,0.215008,0.011424,0.010464,0.006752,0.006176,0.006176,0.116704,0.006144
+1002,1165.62,0.85791,0.38304,0.005088,0.212992,0.01024,0.01024,0.006336,0.008,0.006176,0.1184,0.005568
+1003,1360.57,0.734985,0.654752,0.005376,0.481504,0.012672,0.0104,0.007488,0.006624,0.006304,0.118816,0.005568
+1004,636.47,1.57117,0.39488,0.006144,0.21424,0.011072,0.013504,0.006784,0.006304,0.005984,0.125088,0.00576
+1005,1265.56,0.790161,0.38464,0.005952,0.210528,0.010528,0.010656,0.007328,0.0064,0.005952,0.121536,0.00576
+1006,1186.56,0.842773,0.383648,0.00496,0.208512,0.010528,0.01184,0.00672,0.006112,0.006144,0.12288,0.005952
+1007,1378.66,0.725342,0.387808,0.004832,0.210944,0.011264,0.010752,0.006496,0.006304,0.0072,0.123872,0.006144
+1008,1192.26,0.838745,0.378208,0.005376,0.203776,0.010368,0.012,0.006336,0.006144,0.006112,0.12256,0.005536
+1009,1238.96,0.807129,0.387072,0.006144,0.209984,0.010592,0.01216,0.006784,0.00624,0.006144,0.12288,0.006144
+1010,1199.41,0.83374,0.384896,0.006144,0.212128,0.010528,0.010816,0.006144,0.007264,0.00624,0.119616,0.006016
+1011,1216.69,0.821899,0.60624,0.005312,0.43456,0.012448,0.01056,0.006144,0.006144,0.006144,0.120096,0.004832
+1012,737.221,1.35645,0.393216,0.006144,0.216992,0.010336,0.013728,0.006464,0.006464,0.005984,0.12096,0.006144
+1013,1209.33,0.826904,0.382976,0.006144,0.208896,0.01024,0.011648,0.006368,0.006496,0.00624,0.1208,0.006144
+1014,1210.94,0.825806,0.380928,0.006144,0.206848,0.01136,0.011168,0.006144,0.006144,0.006144,0.120832,0.006144
+1015,1355.84,0.737549,0.387904,0.004896,0.217088,0.01024,0.01168,0.00592,0.00656,0.006112,0.120288,0.00512
+1016,1197.49,0.835083,0.383136,0.005088,0.214752,0.010496,0.010272,0.006144,0.006208,0.00608,0.118528,0.005568
+1017,1166.62,0.857178,0.382976,0.005536,0.209504,0.010272,0.010208,0.006368,0.007968,0.006144,0.120832,0.006144
+1018,1064.86,0.939087,0.391808,0.004704,0.22256,0.010816,0.0104,0.007456,0.006656,0.00608,0.118304,0.004832
+1019,1326.64,0.753784,0.640992,0.004896,0.468992,0.013312,0.010688,0.006496,0.006368,0.006144,0.118528,0.005568
+1020,743.376,1.34521,0.382816,0.005472,0.213664,0.010272,0.011648,0.006496,0.0064,0.006144,0.116736,0.005984
+1021,691.366,1.44641,0.381568,0.004864,0.210368,0.010496,0.01056,0.006144,0.006144,0.007264,0.119712,0.006016
+1022,1203.11,0.831177,0.372736,0.0056,0.205344,0.01024,0.011776,0.006432,0.006304,0.006176,0.11472,0.006144
+1023,1347.37,0.742188,0.378208,0.005344,0.209184,0.0104,0.010592,0.006144,0.006144,0.006144,0.118752,0.005504
+1024,1249.16,0.800537,0.374784,0.005504,0.205536,0.011456,0.010976,0.006176,0.006272,0.00608,0.11664,0.006144
+1025,1242.34,0.804932,0.380928,0.006048,0.208992,0.01024,0.011712,0.0064,0.006464,0.006144,0.118784,0.006144
+1026,1204,0.830566,0.597536,0.006144,0.42304,0.012672,0.010784,0.006112,0.007392,0.006208,0.11952,0.005664
+1027,731.755,1.36658,0.38448,0.006144,0.210848,0.011392,0.013024,0.006432,0.006144,0.006112,0.118688,0.005696
+1028,1348.03,0.741821,0.380928,0.005376,0.211712,0.01024,0.011488,0.006272,0.006656,0.00608,0.118112,0.004992
+1029,1219.23,0.82019,0.381088,0.005312,0.209856,0.011776,0.010144,0.006464,0.006336,0.006208,0.120352,0.00464
+1030,1285.83,0.77771,0.380544,0.005472,0.209312,0.010496,0.010272,0.006144,0.007296,0.006272,0.11952,0.00576
+1031,1260.5,0.793335,0.374784,0.006144,0.205984,0.010496,0.010464,0.006496,0.006176,0.006144,0.118176,0.004704
+1032,1300.94,0.768677,0.376832,0.005696,0.207296,0.010272,0.011552,0.006368,0.006432,0.00624,0.116832,0.006144
+1033,1168.45,0.855835,0.38912,0.00592,0.208864,0.02,0.011008,0.006112,0.007168,0.006304,0.118624,0.00512
+1034,1349.81,0.740845,0.598336,0.004416,0.423936,0.012352,0.01216,0.006208,0.006144,0.0072,0.121088,0.004832
+1035,532.225,1.87891,0.398432,0.006144,0.224448,0.011072,0.013376,0.006752,0.006496,0.006144,0.118464,0.005536
+1036,1464.69,0.682739,0.386848,0.006112,0.214496,0.010496,0.01056,0.006176,0.007296,0.00624,0.119552,0.00592
+1037,1224.15,0.816895,0.387488,0.004512,0.217088,0.01024,0.012288,0.006176,0.007648,0.006144,0.118336,0.005056
+1038,1320.86,0.75708,0.381344,0.004672,0.212768,0.010496,0.010272,0.007136,0.006464,0.005984,0.117568,0.005984
+1039,1244.98,0.803223,0.38064,0.005632,0.207104,0.010464,0.010368,0.007104,0.006688,0.006336,0.121088,0.005856
+1040,1195.21,0.83667,0.384896,0.004416,0.215008,0.010272,0.011744,0.006368,0.0064,0.006144,0.118848,0.005696
+1041,1174.31,0.851562,0.377312,0.004576,0.208896,0.01024,0.0104,0.00736,0.006592,0.00624,0.116864,0.006144
+1042,601.159,1.66345,0.390592,0.007712,0.211456,0.012256,0.012352,0.007232,0.00672,0.006336,0.12096,0.005568
+1043,1340.75,0.74585,0.38096,0.006144,0.2064,0.010528,0.011424,0.006464,0.006496,0.006176,0.12256,0.004768
+1044,1235.78,0.809204,0.375616,0.004896,0.2048,0.011328,0.0112,0.00624,0.007456,0.006176,0.118816,0.004704
+1045,1280.8,0.780762,0.37888,0.00592,0.206944,0.010368,0.010272,0.006112,0.007424,0.006304,0.120608,0.004928
+1046,1275.22,0.78418,0.380448,0.004512,0.210848,0.010272,0.01136,0.0064,0.006592,0.005984,0.11888,0.0056
+1047,1260.31,0.793457,0.3776,0.004832,0.206848,0.010304,0.011488,0.006432,0.006592,0.006144,0.119904,0.005056
+1048,1202.76,0.831421,0.375296,0.004608,0.206848,0.01024,0.01136,0.006464,0.006432,0.006112,0.118272,0.00496
+1049,1347.59,0.742065,0.382432,0.005344,0.21104,0.010464,0.010624,0.006336,0.006144,0.00624,0.118624,0.007616
+1050,651.97,1.53381,0.395104,0.006944,0.216512,0.010784,0.013696,0.006368,0.006528,0.006144,0.12256,0.005568
+1051,1074.36,0.930786,0.380928,0.006144,0.206848,0.011328,0.010624,0.006272,0.006592,0.006144,0.122176,0.0048
+1052,1446.07,0.691528,0.376512,0.005728,0.205216,0.010368,0.011904,0.0064,0.006144,0.006144,0.118784,0.005824
+1053,925.232,1.08081,0.39088,0.004576,0.221184,0.01024,0.010336,0.007424,0.006592,0.006208,0.11872,0.0056
+1054,1237.84,0.807861,0.399136,0.005984,0.226976,0.010496,0.010464,0.006176,0.006176,0.006304,0.12064,0.00592
+1055,1278.8,0.781982,0.38736,0.004928,0.21472,0.010464,0.010336,0.007232,0.006944,0.006304,0.1208,0.005632
+1056,1068.48,0.935913,0.397312,0.006144,0.219136,0.010272,0.012256,0.00768,0.006688,0.006112,0.124384,0.00464
+1057,1160.83,0.86145,0.59712,0.005952,0.424128,0.012352,0.011808,0.006432,0.006272,0.006144,0.118336,0.005696
+1058,711.173,1.40613,0.404064,0.004704,0.23552,0.01024,0.011424,0.006464,0.006624,0.006208,0.118144,0.004736
+1059,1073.94,0.931152,0.413728,0.005504,0.240256,0.01024,0.01024,0.00784,0.006528,0.006112,0.122272,0.004736
+1060,833.876,1.19922,0.409472,0.004416,0.23552,0.01024,0.011584,0.006848,0.006144,0.006144,0.12288,0.005696
+1061,1485.67,0.673096,0.422368,0.004576,0.251584,0.010496,0.010304,0.006144,0.007232,0.006432,0.119456,0.006144
+1062,1062.93,0.940796,0.444,0.005696,0.264672,0.011392,0.011104,0.006144,0.006144,0.006144,0.126976,0.005728
+1063,1236.71,0.808594,0.395264,0.005568,0.2256,0.010496,0.01024,0.007232,0.006496,0.006176,0.11872,0.004736
+1064,651.814,1.53418,0.58224,0.02928,0.386112,0.010528,0.012896,0.00624,0.006112,0.006144,0.118784,0.006144
+1065,1076.2,0.929199,0.381408,0.004928,0.208896,0.011744,0.010784,0.006144,0.006144,0.006272,0.120704,0.005792
+1066,1297.02,0.770996,0.375104,0.004416,0.204704,0.01152,0.010752,0.006432,0.006208,0.006144,0.120224,0.004704
+1067,1362.83,0.733765,0.37888,0.006144,0.206848,0.01024,0.011392,0.006368,0.006496,0.006272,0.118976,0.006144
+1068,1114.25,0.897461,0.381056,0.004544,0.208768,0.01152,0.011008,0.006176,0.006112,0.006144,0.120832,0.005952
+1069,1255.67,0.796387,0.377696,0.00496,0.206048,0.010496,0.01056,0.006368,0.006144,0.006144,0.121888,0.005088
+1070,1240.65,0.80603,0.397376,0.005376,0.227328,0.010464,0.010816,0.007744,0.006432,0.006208,0.118304,0.004704
+1071,1346.7,0.742554,0.641312,0.004544,0.468832,0.012288,0.010304,0.007168,0.006688,0.006144,0.1192,0.006144
+1072,663.159,1.50793,0.391488,0.00544,0.217568,0.012224,0.012224,0.006464,0.006304,0.006048,0.120608,0.004608
+1073,1204.71,0.830078,0.376864,0.005568,0.207456,0.01024,0.011392,0.006464,0.006528,0.005952,0.1184,0.004864
+1074,1271.46,0.786499,0.380544,0.005568,0.205376,0.010368,0.011424,0.006432,0.006464,0.006144,0.123008,0.00576
+1075,1346.26,0.742798,0.381024,0.005344,0.209792,0.011264,0.011104,0.006304,0.006144,0.006144,0.120032,0.004896
+1076,1242.72,0.804688,0.382976,0.005632,0.20736,0.01024,0.011456,0.006464,0.00656,0.006048,0.123072,0.006144
+1077,1191.56,0.839233,0.405472,0.005344,0.233376,0.010496,0.010976,0.006144,0.006176,0.006112,0.120832,0.006016
+1078,1170.95,0.854004,0.385408,0.004672,0.212352,0.010496,0.012192,0.006304,0.006464,0.006144,0.120832,0.005952
+1079,1266.35,0.789673,0.411104,0.005376,0.239872,0.010528,0.010496,0.00624,0.007744,0.006144,0.119136,0.005568
+1080,621.029,1.61023,0.398848,0.008192,0.223232,0.011392,0.011136,0.006144,0.007264,0.006176,0.11968,0.005632
+1081,1177.18,0.849487,0.386976,0.005504,0.215648,0.010272,0.01024,0.006144,0.006176,0.006112,0.120832,0.006048
+1082,1340.75,0.74585,0.37952,0.004736,0.208896,0.011392,0.010944,0.006368,0.006112,0.006144,0.118784,0.006144
+1083,1297.23,0.770874,0.386944,0.004544,0.21408,0.010624,0.010784,0.006144,0.0072,0.006208,0.121696,0.005664
+1084,1247.07,0.80188,0.37728,0.00496,0.208032,0.010528,0.010656,0.006336,0.006112,0.006144,0.118784,0.005728
+1085,1303.42,0.767212,0.378912,0.005344,0.20768,0.01024,0.012288,0.006176,0.00736,0.00624,0.117472,0.006112
+1086,1040.78,0.960815,0.379904,0.00512,0.210816,0.010368,0.011488,0.006304,0.00672,0.006048,0.118464,0.004576
+1087,801.487,1.24768,0.615328,0.005088,0.421888,0.013536,0.01088,0.006304,0.006144,0.006144,0.139264,0.00608
+1088,989.014,1.01111,0.389504,0.005632,0.217952,0.010304,0.010208,0.006176,0.006144,0.006112,0.120832,0.006144
+1089,1169.12,0.855347,0.397792,0.004576,0.226976,0.010496,0.01168,0.006528,0.006432,0.006144,0.120064,0.004896
+1090,1227.45,0.814697,0.401888,0.004576,0.233472,0.01024,0.01024,0.007232,0.006752,0.006208,0.118112,0.005056
+1091,1335.72,0.748657,0.405472,0.005344,0.234304,0.01024,0.01184,0.006496,0.006208,0.006144,0.118784,0.006112
+1092,1244.42,0.803589,0.377632,0.004992,0.20832,0.010496,0.010432,0.006272,0.006144,0.006176,0.118752,0.006048
+1093,1264.2,0.791016,0.382624,0.005344,0.2112,0.010528,0.012064,0.006368,0.0064,0.006144,0.118784,0.005792
+1094,1129.46,0.885376,0.385024,0.006016,0.212896,0.010464,0.01024,0.006112,0.006176,0.006144,0.120832,0.006144
+1095,862.952,1.15881,0.57296,0.007616,0.39792,0.010528,0.012288,0.006144,0.006176,0.006112,0.120576,0.0056
+1096,1037.49,0.963867,0.378368,0.005344,0.205792,0.010272,0.012,0.0064,0.006144,0.006144,0.120608,0.005664
+1097,1221.41,0.818726,0.380928,0.005952,0.20704,0.01024,0.01152,0.006432,0.006624,0.006016,0.12096,0.006144
+1098,1296,0.771606,0.376576,0.005344,0.205696,0.010304,0.010304,0.006144,0.006144,0.006208,0.120768,0.005664
+1099,1279.6,0.781494,0.37888,0.006144,0.206112,0.010496,0.01072,0.006176,0.007136,0.00624,0.12128,0.004576
+1100,1331.6,0.750977,0.37872,0.005376,0.205376,0.010464,0.010336,0.006048,0.007616,0.00608,0.121472,0.005952
+1101,1202.76,0.831421,0.381568,0.004736,0.212992,0.01024,0.01024,0.006144,0.007424,0.006304,0.118816,0.004672
+1102,1207.73,0.828003,0.384928,0.006048,0.21088,0.0104,0.012288,0.006144,0.007424,0.006144,0.119552,0.006048
+1103,801.487,1.24768,0.58352,0.008128,0.40704,0.010816,0.013568,0.006496,0.006272,0.00608,0.119136,0.005984
+1104,1046.77,0.955322,0.378912,0.006144,0.206016,0.010464,0.010592,0.006272,0.006272,0.0072,0.121248,0.004704
+1105,1089.8,0.917603,0.385664,0.004736,0.217088,0.010272,0.011552,0.006368,0.00656,0.006112,0.117984,0.004992
+1106,1574.78,0.63501,0.383008,0.005888,0.212704,0.010496,0.010528,0.007264,0.007072,0.006144,0.116736,0.006176
+1107,1245.17,0.803101,0.382976,0.006144,0.198304,0.010528,0.010304,0.02256,0.006112,0.006144,0.11792,0.00496
+1108,1145.57,0.872925,0.382496,0.005696,0.209344,0.011456,0.01104,0.006208,0.006208,0.007168,0.119712,0.005664
+1109,1246.5,0.802246,0.38496,0.005792,0.211296,0.011456,0.011072,0.006144,0.007168,0.005152,0.1208,0.00608
+1110,1283.21,0.779297,0.38848,0.006144,0.21504,0.01024,0.011936,0.006528,0.006112,0.006144,0.12048,0.005856
+1111,630.154,1.58691,0.42192,0.008192,0.249472,0.010656,0.012288,0.006112,0.007744,0.00608,0.116704,0.004672
+1112,1280.4,0.781006,0.382368,0.005376,0.211968,0.01024,0.01136,0.006304,0.006624,0.00608,0.11888,0.005536
+1113,1235.78,0.809204,0.380992,0.005344,0.209632,0.010368,0.01024,0.006176,0.007296,0.006272,0.11952,0.006144
+1114,1313.66,0.76123,0.408128,0.004928,0.234944,0.010752,0.0104,0.007232,0.006528,0.006112,0.121344,0.005888
+1115,1257.02,0.795532,0.379232,0.004672,0.210784,0.0104,0.01024,0.006144,0.007552,0.006016,0.117504,0.00592
+1116,1221.77,0.818481,0.380832,0.005728,0.207296,0.011296,0.010496,0.006336,0.006528,0.006144,0.12096,0.006048
+1117,1215.07,0.822998,0.37888,0.006016,0.206976,0.010272,0.011872,0.006368,0.006304,0.006176,0.118752,0.006144
+1118,1338.34,0.747192,0.653504,0.005312,0.480256,0.012288,0.01184,0.006304,0.006432,0.006048,0.12,0.005024
+1119,623.725,1.60327,0.386624,0.005664,0.21552,0.01024,0.01152,0.0064,0.006368,0.00624,0.118976,0.005696
+1120,1216.69,0.821899,0.382592,0.005984,0.209056,0.01152,0.010688,0.006304,0.006304,0.006144,0.120832,0.00576
+1121,1253.37,0.797852,0.376832,0.005408,0.205216,0.01056,0.010272,0.0072,0.006528,0.006208,0.120448,0.004992
+1122,699.872,1.42883,0.40512,0.004416,0.233472,0.01024,0.011456,0.006272,0.00672,0.006272,0.120672,0.0056
+1123,1253.94,0.797485,0.409984,0.004672,0.236928,0.012288,0.010624,0.006368,0.006176,0.006144,0.120832,0.005952
+1124,1413.14,0.707642,0.3864,0.005728,0.212416,0.010528,0.010656,0.006432,0.006144,0.006144,0.122784,0.005568
+1125,1209.15,0.827026,0.38752,0.004544,0.212992,0.011872,0.010656,0.006176,0.006112,0.007456,0.121568,0.006144
+1126,773.852,1.29224,0.39488,0.008192,0.21504,0.012288,0.013568,0.006496,0.0064,0.006272,0.120864,0.00576
+1127,1173.81,0.851929,0.388448,0.004416,0.21296,0.01024,0.012288,0.006176,0.006112,0.006144,0.124576,0.005536
+1128,1244.8,0.803345,0.380576,0.005376,0.210976,0.010464,0.010624,0.006368,0.006144,0.006176,0.118752,0.005696
+1129,1393.2,0.717773,0.384736,0.006144,0.20832,0.010528,0.010528,0.006176,0.007136,0.0064,0.123648,0.005856
+1130,1241.21,0.805664,0.380288,0.005472,0.205472,0.01024,0.012128,0.006304,0.006144,0.006144,0.122784,0.0056
+1131,1231.69,0.81189,0.380704,0.005696,0.205248,0.01024,0.011936,0.006496,0.006144,0.006144,0.12288,0.00592
+1132,1184.67,0.844116,0.37888,0.00544,0.207552,0.01024,0.010304,0.006272,0.007392,0.006208,0.119328,0.006144
+1133,1048.91,0.953369,0.577376,0.006656,0.404608,0.010592,0.010624,0.00624,0.006112,0.006368,0.120544,0.005632
+1134,911.945,1.09656,0.386912,0.004608,0.214784,0.010528,0.012256,0.006144,0.00736,0.00608,0.119616,0.005536
+1135,1152.99,0.86731,0.380928,0.006144,0.210336,0.010784,0.010304,0.006144,0.0072,0.006272,0.118784,0.00496
+1136,1262.06,0.792358,0.391776,0.004704,0.222336,0.010368,0.011008,0.006144,0.007232,0.006112,0.118816,0.005056
+1137,1348.26,0.741699,0.37888,0.006144,0.208896,0.01024,0.010272,0.006112,0.007552,0.0064,0.11712,0.006144
+1138,669.062,1.49463,0.378016,0.005504,0.205504,0.01024,0.011904,0.006432,0.00624,0.006176,0.120512,0.005504
+1139,1339.44,0.746582,0.397888,0.004672,0.229376,0.01024,0.011456,0.006912,0.006208,0.006144,0.116736,0.006144
+1140,1079.74,0.926147,0.39952,0.005344,0.230304,0.011328,0.011168,0.006176,0.007488,0.005984,0.11712,0.004608
+1141,969.582,1.03137,0.697248,0.005024,0.486816,0.050912,0.010624,0.006528,0.006272,0.006144,0.118784,0.006144
+1142,805.348,1.2417,0.383552,0.0048,0.214848,0.010304,0.011392,0.006304,0.006496,0.0064,0.116864,0.006144
+1143,1221.05,0.81897,0.382976,0.005792,0.2072,0.011904,0.010624,0.006144,0.00736,0.006944,0.120864,0.006144
+1144,1216.69,0.821899,0.382976,0.005856,0.208288,0.010464,0.010944,0.007168,0.00688,0.0064,0.12224,0.004736
+1145,1273.83,0.785034,0.380448,0.006016,0.209024,0.010272,0.010304,0.007136,0.007008,0.005952,0.119072,0.005664
+1146,1283.01,0.779419,0.37888,0.005824,0.20672,0.010688,0.011456,0.0064,0.006336,0.006208,0.12032,0.004928
+1147,787.162,1.27039,0.398848,0.006112,0.225088,0.010464,0.012064,0.0064,0.00624,0.007136,0.119712,0.005632
+1148,1268.9,0.788086,0.636928,0.00592,0.423456,0.012768,0.010464,0.007232,0.00672,0.005952,0.159328,0.005088
+1149,655.465,1.52563,0.415008,0.005472,0.242336,0.011328,0.010688,0.006496,0.006304,0.006144,0.12064,0.0056
+1150,1200.82,0.832764,0.412864,0.005344,0.23856,0.010272,0.012256,0.006144,0.006144,0.007456,0.121056,0.005632
+1151,1064.86,0.939087,0.39936,0.006144,0.22528,0.01024,0.011488,0.006944,0.006144,0.006208,0.121984,0.004928
+1152,1292.32,0.773804,0.398048,0.004832,0.229376,0.01024,0.01024,0.006336,0.007552,0.006176,0.117152,0.006144
+1153,1335.29,0.748901,0.391936,0.004864,0.220352,0.010496,0.010848,0.007424,0.00656,0.006368,0.120192,0.004832
+1154,868.164,1.15186,0.385856,0.004928,0.216128,0.010496,0.010944,0.006144,0.007456,0.006464,0.117152,0.006144
+1155,964.559,1.03674,0.669184,0.005568,0.495744,0.012672,0.010304,0.006144,0.007264,0.006304,0.119552,0.005632
+1156,687.594,1.45435,0.403456,0.006144,0.229248,0.010368,0.011264,0.006368,0.0064,0.006688,0.1224,0.004576
+1157,1494.35,0.669189,0.383456,0.005088,0.21424,0.010464,0.010752,0.006208,0.006144,0.006144,0.118784,0.005632
+1158,1212.91,0.824463,0.378784,0.004704,0.206848,0.011328,0.010688,0.006304,0.006496,0.006144,0.120704,0.005568
+1159,1313.03,0.761597,0.380928,0.005824,0.207168,0.01152,0.01056,0.006304,0.006432,0.006144,0.120832,0.006144
+1160,1155.1,0.865723,0.403744,0.004384,0.23248,0.010496,0.010464,0.006368,0.0064,0.006176,0.120832,0.006144
+1161,796.81,1.255,0.38768,0.004704,0.215072,0.01024,0.010272,0.007136,0.006528,0.006272,0.121312,0.006144
+1162,1260.11,0.793579,0.599776,0.004512,0.425376,0.01264,0.010464,0.007232,0.00656,0.005984,0.121472,0.005536
+1163,807.412,1.23853,0.393216,0.005824,0.217408,0.01136,0.011168,0.006144,0.006144,0.006144,0.12288,0.006144
+1164,1246.31,0.802368,0.382752,0.005376,0.208928,0.010496,0.010752,0.006176,0.007552,0.006176,0.121408,0.005888
+1165,1269.68,0.787598,0.391968,0.004992,0.210208,0.010976,0.02048,0.007456,0.006528,0.006208,0.119072,0.006048
+1166,1240.27,0.806274,0.37968,0.004896,0.208384,0.010528,0.010464,0.006176,0.007424,0.006144,0.12064,0.005024
+1167,1134.47,0.88147,0.380096,0.006144,0.208192,0.010528,0.010656,0.006144,0.007328,0.006176,0.119328,0.0056
+1168,1244.8,0.803345,0.381056,0.005376,0.20944,0.010464,0.01152,0.006752,0.006432,0.006144,0.118784,0.006144
+1169,1109.73,0.901123,0.38688,0.004544,0.216512,0.010496,0.010464,0.006144,0.0072,0.006176,0.119744,0.0056
+1170,1500.09,0.666626,0.394176,0.005056,0.224288,0.010496,0.010976,0.00624,0.007392,0.006048,0.117536,0.006144
+1171,572.147,1.7478,0.405472,0.008128,0.227392,0.011456,0.011072,0.007936,0.0064,0.006144,0.120832,0.006112
+1172,1227.82,0.814453,0.393216,0.006144,0.201888,0.01024,0.009056,0.021952,0.00672,0.006144,0.124928,0.006144
+1173,1361.48,0.734497,0.388128,0.005376,0.202592,0.011104,0.010304,0.006176,0.0072,0.020896,0.118912,0.005568
+1174,1064.03,0.939819,0.386272,0.005856,0.200864,0.010368,0.010272,0.006144,0.020448,0.006272,0.120512,0.005536
+1175,1438.45,0.69519,0.388992,0.004544,0.20192,0.010496,0.010656,0.006144,0.006144,0.006144,0.137216,0.005728
+1176,726.177,1.37708,0.417824,0.005344,0.246656,0.01024,0.010464,0.007168,0.00672,0.006304,0.118848,0.00608
+1177,1279.6,0.781494,0.60224,0.004544,0.429184,0.012704,0.010656,0.006176,0.007232,0.006208,0.119648,0.005888
+1178,657.358,1.52124,0.392448,0.006144,0.221184,0.01024,0.0104,0.0072,0.006464,0.006144,0.119072,0.0056
+1179,1247.83,0.801392,0.390112,0.00512,0.203808,0.010464,0.010464,0.006656,0.006144,0.02048,0.120832,0.006144
+1180,1261.67,0.792603,0.389184,0.005344,0.201024,0.010784,0.011264,0.006464,0.006528,0.022496,0.119136,0.006144
+1181,1343.83,0.744141,0.38928,0.005024,0.20464,0.0104,0.01024,0.007488,0.020384,0.006656,0.118848,0.0056
+1182,1078.75,0.927002,0.388672,0.005376,0.201472,0.01024,0.01216,0.006272,0.022528,0.006144,0.118784,0.005696
+1183,1091.83,0.915894,0.398592,0.004512,0.2128,0.011296,0.023552,0.006208,0.007552,0.006208,0.120896,0.005568
+1184,1406.35,0.71106,0.628608,0.004864,0.435488,0.01264,0.010656,0.007168,0.006784,0.01632,0.128672,0.006016
+1185,731.363,1.36731,0.59296,0.006144,0.413056,0.01088,0.012288,0.007264,0.006304,0.006016,0.125056,0.005952
+1186,1095.92,0.912476,0.374432,0.00592,0.203008,0.010208,0.011392,0.006464,0.00672,0.006144,0.118784,0.005792
+1187,1199.59,0.833618,0.373792,0.005088,0.202272,0.010496,0.010496,0.006144,0.007232,0.006112,0.121024,0.004928
+1188,1325.14,0.754639,0.375872,0.006176,0.20272,0.011584,0.010592,0.006432,0.006208,0.006144,0.120448,0.005568
+1189,1210.4,0.826172,0.396192,0.005024,0.223232,0.01024,0.01024,0.007712,0.006624,0.006144,0.1224,0.004576
+1190,1349.81,0.740845,0.371488,0.004896,0.202432,0.010464,0.010336,0.0072,0.00656,0.00592,0.117536,0.006144
+1191,585.854,1.70691,0.395072,0.00608,0.222592,0.010528,0.010688,0.006112,0.007232,0.006144,0.119744,0.005952
+1192,1643,0.608643,0.422016,0.006624,0.210016,0.010496,0.010496,0.006368,0.006144,0.006144,0.159744,0.005984
+1193,941.176,1.0625,0.37792,0.006144,0.204,0.010496,0.010784,0.006144,0.007392,0.006016,0.12128,0.005664
+1194,1200.12,0.833252,0.374656,0.00464,0.202752,0.01024,0.011456,0.006752,0.006368,0.006144,0.120768,0.005536
+1195,1326,0.75415,0.37568,0.004992,0.202624,0.0104,0.010208,0.006176,0.007456,0.006272,0.121408,0.006144
+1196,1347.81,0.741943,0.37488,0.005344,0.2016,0.012128,0.0104,0.00736,0.00672,0.00608,0.12032,0.004928
+1197,1105.83,0.904297,0.372672,0.00496,0.202016,0.010336,0.010656,0.006336,0.006144,0.006272,0.12032,0.005632
+1198,1495.98,0.668457,0.373792,0.00608,0.200768,0.011456,0.011008,0.006208,0.006144,0.006176,0.120352,0.0056
+1199,1184.16,0.844482,0.380448,0.005632,0.203264,0.01024,0.010432,0.007168,0.006688,0.006208,0.125152,0.005664
+1200,594.528,1.68201,0.569632,0.007456,0.393344,0.011136,0.012288,0.006176,0.007232,0.00512,0.120736,0.006144
+1201,1016.38,0.983887,0.380928,0.005504,0.205472,0.011456,0.011072,0.006112,0.006176,0.006112,0.12448,0.004544
+1202,1278,0.782471,0.375616,0.004928,0.201952,0.01104,0.011808,0.006464,0.006336,0.006112,0.120832,0.006144
+1203,1225.06,0.816284,0.37488,0.005344,0.201696,0.011904,0.010624,0.006144,0.006144,0.006144,0.120864,0.006016
+1204,1232.06,0.811646,0.374496,0.006112,0.200768,0.010208,0.010432,0.007232,0.006688,0.005984,0.121216,0.005856
+1205,1332.25,0.75061,0.374496,0.00592,0.200896,0.011648,0.010912,0.006176,0.007328,0.006112,0.119648,0.005856
+1206,760.208,1.31543,0.408288,0.004832,0.229376,0.01008,0.009696,0.006112,0.006592,0.016672,0.119808,0.00512
+1207,616.775,1.62134,0.56832,0.007168,0.38912,0.012288,0.012288,0.0072,0.006368,0.006112,0.123168,0.004608
+1208,1321.29,0.756836,0.374944,0.004832,0.205984,0.011136,0.011328,0.006432,0.006656,0.006176,0.116832,0.005568
+1209,1223.23,0.817505,0.376832,0.006144,0.202752,0.01024,0.01152,0.006528,0.006528,0.006144,0.122048,0.004928
+1210,1344.27,0.743896,0.38096,0.006048,0.202848,0.010272,0.01168,0.006496,0.006368,0.006144,0.124928,0.006176
+1211,1092.41,0.915405,0.375008,0.004512,0.20256,0.010464,0.011552,0.006368,0.006432,0.006144,0.120832,0.006144
+1212,1367.16,0.731445,0.372736,0.005664,0.2024,0.010496,0.010816,0.006144,0.00736,0.005984,0.119008,0.004864
+1213,1209.87,0.826538,0.415744,0.00544,0.22928,0.010496,0.010784,0.006144,0.006144,0.007616,0.133696,0.006144
+1214,1100.34,0.908813,0.609888,0.004416,0.434176,0.012288,0.011552,0.006496,0.006528,0.006144,0.122752,0.005536
+1215,794.723,1.2583,0.37744,0.004704,0.2048,0.011392,0.01104,0.00624,0.006144,0.006144,0.122272,0.004704
+1216,1204.53,0.8302,0.3744,0.004544,0.20256,0.01024,0.01168,0.006304,0.00656,0.006048,0.120928,0.005536
+1217,1286.84,0.7771,0.374176,0.005408,0.201536,0.010304,0.01168,0.006496,0.006368,0.006144,0.120672,0.005568
+1218,1330.09,0.751831,0.37456,0.006016,0.198784,0.011488,0.01072,0.006336,0.006272,0.006144,0.12288,0.00592
+1219,1174.14,0.851685,0.376864,0.006144,0.202368,0.010528,0.010336,0.006144,0.007264,0.006144,0.12176,0.006176
+1220,1321.5,0.756714,0.380448,0.005504,0.207424,0.010304,0.01136,0.006496,0.006688,0.006048,0.12096,0.005664
+1221,1205.06,0.829834,0.41248,0.00512,0.227328,0.010272,0.011456,0.00672,0.0064,0.020448,0.118784,0.005952
+1222,1319.38,0.757935,0.617024,0.004672,0.442368,0.012288,0.01168,0.006496,0.0064,0.006144,0.122208,0.004768
+1223,569.284,1.75659,0.438144,0.005728,0.237984,0.011968,0.01056,0.016384,0.007776,0.022496,0.119232,0.006016
+1224,1543.04,0.648071,0.376864,0.005792,0.205152,0.01024,0.011584,0.006496,0.006496,0.006144,0.120064,0.004896
+1225,1173.81,0.851929,0.376832,0.006176,0.204128,0.010464,0.010464,0.006336,0.00768,0.005856,0.120864,0.004864
+1226,1474.71,0.678101,0.376832,0.006144,0.2048,0.011872,0.010688,0.00624,0.007296,0.006016,0.117632,0.006144
+1227,1237.28,0.808228,0.373088,0.004544,0.20448,0.010432,0.01024,0.006144,0.00736,0.006176,0.118784,0.004928
+1228,1292.73,0.77356,0.374784,0.005408,0.203008,0.010528,0.010432,0.006144,0.006144,0.006144,0.120832,0.006144
+1229,1157.72,0.86377,0.374176,0.005312,0.202944,0.010368,0.010464,0.006432,0.006208,0.006144,0.120736,0.005568
+1230,1028.76,0.972046,0.636992,0.005344,0.4552,0.012576,0.011744,0.006496,0.014528,0.006144,0.11984,0.00512
+1231,731.755,1.36658,0.379392,0.004608,0.208064,0.010496,0.010496,0.0064,0.006208,0.006144,0.122144,0.004832
+1232,1166.95,0.856934,0.376896,0.004864,0.20272,0.010272,0.011392,0.006624,0.006464,0.006112,0.122848,0.0056
+1233,1300.11,0.769165,0.374784,0.005696,0.202368,0.010464,0.010592,0.0064,0.006144,0.006144,0.120832,0.006144
+1234,1283.01,0.779419,0.379936,0.005408,0.20144,0.01216,0.010368,0.006144,0.007296,0.006432,0.12512,0.005568
+1235,1191.04,0.8396,0.387072,0.005856,0.202496,0.010528,0.020544,0.006368,0.006112,0.006144,0.124192,0.004832
+1236,1275.22,0.78418,0.377984,0.005792,0.205152,0.010272,0.011328,0.006464,0.006624,0.006144,0.120608,0.0056
+1237,1052.69,0.949951,0.37856,0.005824,0.203072,0.011424,0.01056,0.006528,0.006304,0.006144,0.12288,0.005824
+1238,772.393,1.29468,0.574304,0.006944,0.395264,0.011904,0.012704,0.00816,0.006144,0.006144,0.122368,0.004672
+1239,994.537,1.00549,0.37728,0.004512,0.208704,0.010464,0.01024,0.006272,0.007296,0.006176,0.118944,0.004672
+1240,1312.61,0.761841,0.373248,0.004608,0.202592,0.010432,0.01024,0.006112,0.007232,0.00624,0.119648,0.006144
+1241,864.5,1.15674,0.475136,0.005568,0.291392,0.022144,0.010656,0.006112,0.006144,0.006176,0.121984,0.00496
+1242,1392.01,0.718384,0.374272,0.006144,0.202752,0.010272,0.011424,0.0064,0.00672,0.006144,0.118784,0.005632
+1243,1243.85,0.803955,0.378944,0.006016,0.204928,0.01136,0.010304,0.006464,0.00592,0.006208,0.123104,0.00464
+1244,1181.08,0.84668,0.385824,0.004864,0.216192,0.010464,0.010944,0.006144,0.006112,0.007232,0.11904,0.004832
+1245,1083.88,0.922607,0.579072,0.007488,0.404256,0.01024,0.01024,0.0072,0.006848,0.006272,0.120992,0.005536
+1246,857.262,1.1665,0.381824,0.005056,0.208864,0.011296,0.010752,0.006272,0.006496,0.005984,0.120992,0.006112
+1247,1208.79,0.827271,0.380608,0.005344,0.205664,0.012288,0.010272,0.007488,0.006528,0.006176,0.121088,0.00576
+1248,1285.62,0.777832,0.374784,0.006112,0.202784,0.01024,0.01024,0.006176,0.007264,0.006368,0.120736,0.004864
+1249,1357.87,0.73645,0.380544,0.004672,0.204736,0.010432,0.011872,0.006432,0.006144,0.006144,0.124544,0.005568
+1250,1138.09,0.878662,0.374592,0.004608,0.202752,0.01024,0.011584,0.006464,0.006528,0.006144,0.120672,0.0056
+1251,1370.59,0.729614,0.37552,0.004832,0.203936,0.011104,0.011488,0.006368,0.00656,0.006144,0.12,0.005088
+1252,1239.15,0.807007,0.407968,0.021088,0.202752,0.010272,0.011424,0.006432,0.006688,0.02048,0.12288,0.005952
+1253,614.047,1.62854,0.602592,0.006624,0.424992,0.011232,0.013632,0.006496,0.006496,0.006144,0.122112,0.004864
+1254,1026.18,0.974487,0.376416,0.005344,0.20304,0.010464,0.010528,0.006144,0.006144,0.006272,0.122752,0.005728
+1255,1195.91,0.836182,0.373408,0.004768,0.2024,0.010528,0.010304,0.006144,0.006144,0.006144,0.122176,0.0048
+1256,1358.09,0.736328,0.375616,0.00496,0.202752,0.010208,0.011776,0.006496,0.006336,0.006112,0.120832,0.006144
+1257,666.341,1.50073,0.411648,0.005984,0.209056,0.01024,0.011424,0.006528,0.00656,0.016288,0.139424,0.006144
+1258,1377.04,0.726196,0.405504,0.005696,0.233056,0.010336,0.011008,0.006176,0.00736,0.005984,0.121184,0.004704
+1259,1259.73,0.793823,0.387552,0.004576,0.212992,0.01024,0.011616,0.006496,0.006464,0.006144,0.124032,0.004992
+1260,540.583,1.84985,0.391232,0.007456,0.212928,0.0112,0.012256,0.005664,0.005888,0.006432,0.123328,0.00608
+1261,1338.12,0.747314,0.380192,0.006144,0.206368,0.010496,0.010464,0.006144,0.006176,0.007264,0.121536,0.0056
+1262,1321.72,0.756592,0.378368,0.005504,0.202688,0.01056,0.010624,0.007648,0.006496,0.006016,0.1232,0.005632
+1263,1301.35,0.768433,0.37536,0.004704,0.20272,0.011328,0.010592,0.006496,0.0064,0.006144,0.1224,0.004576
+1264,1112.74,0.898682,0.387392,0.004512,0.204704,0.010272,0.023744,0.006752,0.006336,0.006144,0.118784,0.006144
+1265,1370.82,0.729492,0.37696,0.004672,0.204416,0.010528,0.0104,0.007488,0.006592,0.006208,0.12096,0.005696
+1266,1183.64,0.844849,0.422688,0.004896,0.233472,0.01024,0.011648,0.006752,0.006176,0.021888,0.122752,0.004864
+1267,1351.59,0.739868,0.606976,0.004864,0.431744,0.012672,0.0104,0.007136,0.006496,0.006272,0.121248,0.006144
+1268,729.215,1.37134,0.382976,0.006144,0.206848,0.011552,0.011104,0.007232,0.006976,0.006144,0.122016,0.00496
+1269,1204.88,0.829956,0.370848,0.005344,0.201632,0.010272,0.011232,0.006464,0.006368,0.00624,0.11856,0.004736
+1270,1266.93,0.789307,0.374336,0.005344,0.201536,0.01024,0.012288,0.007424,0.006592,0.006112,0.119136,0.005664
+1271,1362.83,0.733765,0.374784,0.005952,0.20272,0.010464,0.011936,0.006464,0.006176,0.006144,0.118784,0.006144
+1272,1131.34,0.883911,0.374784,0.005824,0.201024,0.01024,0.011552,0.006464,0.00656,0.006144,0.121888,0.005088
+1273,821.418,1.21741,0.436416,0.005344,0.2624,0.010496,0.01072,0.006144,0.006144,0.006144,0.123904,0.00512
+1274,1305.91,0.765747,0.37936,0.004864,0.208896,0.01024,0.010336,0.007936,0.006304,0.006144,0.118784,0.005856
+1275,714.709,1.39917,0.59392,0.008192,0.413184,0.010528,0.010464,0.00736,0.006496,0.00608,0.125472,0.006144
+1276,1140.31,0.876953,0.37696,0.005408,0.205056,0.010496,0.010592,0.006176,0.006112,0.006176,0.12192,0.005024
+1277,1192.78,0.838379,0.376288,0.005408,0.203264,0.010464,0.01024,0.006144,0.006144,0.007232,0.12176,0.005632
+1278,1282.2,0.779907,0.375424,0.005024,0.20272,0.010272,0.011712,0.005792,0.006432,0.006144,0.12144,0.005888
+1279,1179.04,0.848145,0.40192,0.004608,0.217088,0.010272,0.01024,0.00736,0.015136,0.007424,0.123648,0.006144
+1280,1354.05,0.738525,0.376512,0.006016,0.20288,0.01024,0.011456,0.006496,0.00656,0.00608,0.12096,0.005824
+1281,1261.86,0.79248,0.392672,0.005888,0.203008,0.011488,0.010656,0.006528,0.006144,0.022496,0.120864,0.0056
+1282,1313.45,0.761353,0.61648,0.005952,0.444416,0.01248,0.011424,0.00688,0.006272,0.006144,0.118272,0.00464
+1283,773.779,1.29236,0.588672,0.004992,0.41568,0.010304,0.012288,0.007296,0.006432,0.006048,0.1208,0.004832
+1284,1003.92,0.996094,0.379072,0.005376,0.207296,0.010656,0.011456,0.006336,0.006432,0.00592,0.120512,0.005088
+1285,1287.65,0.776611,0.376896,0.005984,0.202912,0.012192,0.010336,0.006176,0.006112,0.007872,0.120672,0.00464
+1286,1296.41,0.771362,0.374784,0.005696,0.201152,0.012096,0.011488,0.00672,0.00656,0.006112,0.120032,0.004928
+1287,1157.39,0.864014,0.376832,0.005472,0.203424,0.01024,0.010464,0.007776,0.006336,0.006176,0.1208,0.006144
+1288,1332.9,0.750244,0.375744,0.005056,0.202752,0.01024,0.010368,0.007488,0.006464,0.006048,0.122464,0.004864
+1289,1228.74,0.813843,0.374816,0.006016,0.20288,0.010272,0.012128,0.006304,0.006176,0.00624,0.120192,0.004608
+1290,1396.05,0.716309,0.391936,0.004896,0.2048,0.011424,0.02544,0.007584,0.006496,0.00592,0.119264,0.006112
+1291,544.681,1.83594,0.444416,0.022528,0.231424,0.020096,0.010656,0.019744,0.00656,0.006304,0.1224,0.004704
+1292,1374.73,0.727417,0.378624,0.004512,0.2064,0.010528,0.0104,0.007264,0.00672,0.006144,0.121184,0.005472
+1293,1161.82,0.860718,0.374816,0.006144,0.202752,0.010272,0.01024,0.007168,0.00656,0.006176,0.120864,0.00464
+1294,1382.15,0.723511,0.380928,0.005408,0.205536,0.012,0.010528,0.007712,0.006624,0.006144,0.120864,0.006112
+1295,1116.53,0.89563,0.376864,0.005568,0.203328,0.010272,0.010208,0.006336,0.007264,0.006272,0.122784,0.004832
+1296,1268.7,0.788208,0.380672,0.005376,0.2072,0.010496,0.010592,0.007616,0.006528,0.005952,0.121216,0.005696
+1297,1328.58,0.752686,0.39056,0.005408,0.199392,0.01024,0.010432,0.007232,0.006592,0.00624,0.139392,0.005632
+1298,670.486,1.49146,0.40608,0.007136,0.233472,0.01024,0.011424,0.00656,0.006592,0.006176,0.118752,0.005728
+1299,1015.75,0.984497,0.383296,0.004544,0.206752,0.011968,0.010528,0.007424,0.006816,0.006272,0.122848,0.006144
+1300,1270.08,0.787354,0.378464,0.005664,0.203232,0.010272,0.01168,0.006464,0.0064,0.006144,0.12288,0.005728
+1301,1279.6,0.781494,0.376512,0.005568,0.202784,0.010592,0.010464,0.007232,0.00672,0.006432,0.120896,0.005824
+1302,1134.94,0.881104,0.396768,0.005696,0.215072,0.01056,0.010368,0.007552,0.012384,0.006048,0.123488,0.0056
+1303,1410.23,0.709106,0.378176,0.006144,0.202752,0.010304,0.011552,0.006752,0.006208,0.006144,0.122752,0.005568
+1304,1249.35,0.800415,0.396448,0.005376,0.203648,0.011456,0.011072,0.006144,0.00736,0.021088,0.124704,0.0056
+1305,1225.98,0.815674,0.645152,0.005984,0.467104,0.013984,0.010624,0.006112,0.00752,0.006336,0.122528,0.00496
+1306,723.931,1.38135,0.590432,0.022656,0.399296,0.01072,0.011936,0.006496,0.006208,0.006144,0.122272,0.004704
+1307,1054.18,0.948608,0.372928,0.005024,0.20256,0.010432,0.010272,0.006112,0.007392,0.006176,0.119392,0.005568
+1308,851.825,1.17395,0.442368,0.005984,0.258208,0.01024,0.011904,0.006528,0.007488,0.016768,0.119104,0.006144
+1309,1589.14,0.629272,0.380736,0.005632,0.206336,0.010912,0.010592,0.006144,0.006144,0.006144,0.12288,0.005952
+1310,1239.52,0.806763,0.377056,0.0048,0.202752,0.01024,0.010464,0.00736,0.006624,0.006272,0.12288,0.005664
+1311,1351.59,0.739868,0.376832,0.006112,0.202784,0.011616,0.010848,0.006208,0.007296,0.00624,0.119584,0.006144
+1312,1104.19,0.90564,0.385888,0.004928,0.21504,0.010272,0.011968,0.006432,0.007168,0.006816,0.11856,0.004704
+1313,1388.47,0.720215,0.608832,0.004672,0.436192,0.01232,0.01024,0.006144,0.007392,0.00624,0.119488,0.006144
+1314,736.624,1.35754,0.380512,0.004512,0.206848,0.01024,0.013824,0.006368,0.0064,0.006016,0.120672,0.005632
+1315,1200.47,0.833008,0.376832,0.005664,0.201184,0.01024,0.01024,0.007264,0.006528,0.006208,0.12336,0.006144
+1316,1288.05,0.776367,0.372576,0.005408,0.20144,0.011616,0.010464,0.006592,0.006144,0.006144,0.118784,0.005984
+1317,1346.48,0.742676,0.37888,0.0056,0.203296,0.011936,0.010592,0.006176,0.007136,0.00512,0.12432,0.004704
+1318,1115.77,0.89624,0.375968,0.005376,0.201504,0.012288,0.010272,0.006208,0.007456,0.00624,0.121088,0.005536
+1319,1374.04,0.727783,0.38096,0.006112,0.206368,0.010784,0.0104,0.007552,0.006496,0.00608,0.122208,0.00496
+1320,1206.66,0.828735,0.386464,0.00576,0.210496,0.010496,0.010592,0.006368,0.006144,0.006144,0.12448,0.005984
+1321,1122.35,0.890991,0.628928,0.005376,0.45152,0.012288,0.0104,0.007584,0.006592,0.006144,0.12288,0.006144
+1322,767.113,1.30359,0.391616,0.004544,0.2208,0.010624,0.011488,0.00672,0.006368,0.006144,0.118816,0.006112
+1323,1262.44,0.792114,0.377952,0.005408,0.205568,0.01024,0.011232,0.006784,0.006464,0.006208,0.120512,0.005536
+1324,1288.66,0.776001,0.373216,0.004576,0.202272,0.010528,0.010496,0.007584,0.00656,0.006176,0.11888,0.006144
+1325,978.5,1.02197,0.413696,0.005984,0.237728,0.011456,0.010784,0.006432,0.007456,0.006112,0.122784,0.00496
+1326,1165.79,0.857788,0.412256,0.004704,0.229376,0.010272,0.01136,0.00704,0.006144,0.016384,0.120832,0.006144
+1327,1463.9,0.683105,0.378176,0.00576,0.206432,0.01056,0.010752,0.007232,0.0064,0.006144,0.119328,0.005568
+1328,1217.06,0.821655,0.378912,0.005376,0.207584,0.010304,0.011424,0.006496,0.006496,0.006176,0.12032,0.004736
+1329,687.191,1.4552,0.499808,0.007456,0.301888,0.01024,0.01024,0.015552,0.006464,0.020992,0.121984,0.004992
+1330,1045.7,0.956299,0.376832,0.006144,0.204512,0.010496,0.010272,0.006176,0.0072,0.005056,0.122432,0.004544
+1331,1201,0.832642,0.372384,0.006144,0.202752,0.010272,0.010208,0.006272,0.006016,0.006144,0.118784,0.005792
+1332,1464.69,0.682739,0.376832,0.005824,0.203072,0.012288,0.011584,0.00672,0.006272,0.006144,0.118784,0.006144
+1333,1241.21,0.805664,0.375328,0.00464,0.202752,0.011936,0.010592,0.006144,0.006144,0.006176,0.1208,0.006144
+1334,1122.81,0.890625,0.3744,0.004448,0.202752,0.01024,0.012064,0.006368,0.006144,0.006176,0.120608,0.0056
+1335,1285.83,0.77771,0.391168,0.006016,0.202816,0.010304,0.0104,0.00752,0.006656,0.006144,0.135168,0.006144
+1336,1336.38,0.748291,0.64864,0.004544,0.472928,0.013344,0.0112,0.006176,0.006144,0.00624,0.122528,0.005536
+1337,767.041,1.30371,0.593088,0.005952,0.413888,0.011424,0.013152,0.006144,0.006176,0.006112,0.124512,0.005728
+1338,1008.99,0.991089,0.37488,0.004768,0.202752,0.01024,0.011936,0.006432,0.006208,0.006144,0.120832,0.005568
+1339,1291.1,0.774536,0.376864,0.005696,0.202528,0.010464,0.010688,0.006144,0.006144,0.006144,0.12288,0.006176
+1340,1381.45,0.723877,0.380928,0.006048,0.2024,0.011904,0.011072,0.007168,0.0064,0.005984,0.123808,0.006144
+1341,1113.95,0.897705,0.374944,0.004768,0.202752,0.01024,0.010368,0.007232,0.006496,0.00624,0.121216,0.005632
+1342,1061.14,0.942383,0.395904,0.004736,0.224992,0.010528,0.0104,0.007712,0.006368,0.005792,0.120288,0.005088
+1343,1162.98,0.859863,0.411648,0.005472,0.236192,0.01024,0.011616,0.00672,0.00624,0.006176,0.123968,0.005024
+1344,1353.6,0.73877,0.601088,0.006144,0.425984,0.012288,0.01216,0.006272,0.006144,0.006176,0.120288,0.005632
+1345,731.755,1.36658,0.385024,0.006144,0.206656,0.011776,0.012928,0.006208,0.006144,0.006176,0.122848,0.006144
+1346,1188.28,0.841553,0.380992,0.005536,0.202752,0.010528,0.010624,0.007456,0.006304,0.006304,0.126944,0.004544
+1347,1276.21,0.783569,0.37504,0.004544,0.204224,0.010432,0.010464,0.006272,0.006144,0.007168,0.119808,0.005984
+1348,1301.56,0.768311,0.375136,0.004544,0.203808,0.010336,0.010976,0.006208,0.007232,0.006176,0.119712,0.006144
+1349,1191.39,0.839355,0.381312,0.00448,0.2048,0.011712,0.010816,0.006144,0.007168,0.006272,0.124832,0.005088
+1350,1349.37,0.741089,0.376832,0.00592,0.202528,0.010528,0.0104,0.006176,0.007328,0.005952,0.121856,0.006144
+1351,1151.05,0.868774,0.388064,0.005088,0.21504,0.010272,0.011296,0.006464,0.006528,0.006176,0.121056,0.006144
+1352,1340.75,0.74585,0.633408,0.004672,0.452032,0.012672,0.010464,0.006208,0.007392,0.006176,0.127648,0.006144
+1353,721.19,1.3866,0.384544,0.004352,0.208224,0.010912,0.012288,0.008192,0.006144,0.006144,0.122656,0.005632
+1354,1201.35,0.832397,0.37792,0.00608,0.204864,0.010272,0.010208,0.006464,0.007264,0.005984,0.121312,0.005472
+1355,1282.2,0.779907,0.371168,0.004672,0.202752,0.01024,0.01024,0.006144,0.007232,0.006144,0.117696,0.006048
+1356,1360.35,0.735107,0.381152,0.004384,0.206848,0.011968,0.01056,0.006336,0.007328,0.005952,0.121696,0.00608
+1357,1186.56,0.842773,0.375232,0.004704,0.204,0.010464,0.010624,0.006336,0.006176,0.007232,0.119712,0.005984
+1358,1371.51,0.729126,0.376832,0.006048,0.202592,0.010496,0.01168,0.006752,0.006144,0.006144,0.120832,0.006144
+1359,1132.9,0.88269,0.393216,0.005728,0.2216,0.01024,0.012,0.006432,0.006144,0.00624,0.118688,0.006144
+1360,539.089,1.85498,0.640896,0.005696,0.424384,0.02784,0.027456,0.006144,0.007488,0.006048,0.129472,0.006368
+1361,725.534,1.3783,0.475808,0.005024,0.306208,0.010464,0.010656,0.006464,0.006176,0.006144,0.118784,0.005888
+1362,766.324,1.30493,0.389248,0.005344,0.21792,0.0104,0.011232,0.0064,0.00656,0.00624,0.11904,0.006112
+1363,1192.78,0.838379,0.378368,0.005376,0.205472,0.010432,0.011616,0.006752,0.006176,0.006144,0.120768,0.005632
+1364,1389.42,0.719727,0.376928,0.004544,0.206688,0.011424,0.011104,0.006144,0.006144,0.006144,0.118784,0.005952
+1365,954,1.04822,0.393216,0.006144,0.217088,0.01024,0.011424,0.0064,0.006528,0.006272,0.122976,0.006144
+1366,1021.96,0.978516,0.602112,0.005728,0.424352,0.012288,0.012096,0.006336,0.0072,0.00512,0.122848,0.006144
+1367,889.275,1.12451,0.40784,0.004384,0.235456,0.010304,0.012288,0.006144,0.007904,0.006144,0.119072,0.006144
+1368,1366.24,0.731934,0.397024,0.005664,0.223328,0.010496,0.010368,0.006144,0.006304,0.007072,0.121792,0.005856
+1369,1126.36,0.887817,0.380928,0.006144,0.208096,0.01056,0.010656,0.006208,0.006144,0.006144,0.1224,0.004576
+1370,1380.75,0.724243,0.399648,0.004544,0.2272,0.010208,0.012064,0.006368,0.006176,0.006272,0.121888,0.004928
+1371,1211.12,0.825684,0.382944,0.005344,0.209856,0.01024,0.011648,0.006752,0.006208,0.006112,0.120832,0.005952
+1372,1308,0.764526,0.382688,0.00608,0.208576,0.010528,0.0104,0.007648,0.006496,0.006272,0.120832,0.005856
+1373,1264.2,0.791016,0.38688,0.004544,0.21632,0.010528,0.01056,0.007584,0.006528,0.006144,0.119008,0.005664
+1374,1038.8,0.962646,0.575584,0.007488,0.402336,0.010304,0.011424,0.006784,0.006368,0.006176,0.118752,0.005952
+1375,889.371,1.12439,0.382624,0.005952,0.20656,0.01072,0.014272,0.006208,0.006144,0.006208,0.120768,0.005792
+1376,1312.19,0.762085,0.378912,0.005376,0.20912,0.010528,0.010624,0.00624,0.006144,0.006144,0.118784,0.005952
+1377,1265.37,0.790283,0.378912,0.006144,0.206848,0.011904,0.010624,0.006144,0.007168,0.005216,0.120192,0.004672
+1378,1180.74,0.846924,0.378656,0.006144,0.203904,0.011136,0.01152,0.006464,0.006432,0.006016,0.121152,0.005888
+1379,1305.08,0.766235,0.372032,0.005696,0.2032,0.01024,0.01024,0.006368,0.007424,0.006176,0.116832,0.005856
+1380,1358.77,0.735962,0.377408,0.004672,0.206336,0.010752,0.011296,0.006336,0.006656,0.006432,0.118784,0.006144
+1381,860.143,1.1626,0.384928,0.006144,0.208928,0.010208,0.012288,0.007616,0.00672,0.006144,0.120832,0.006048
+1382,990.089,1.01001,0.601472,0.005408,0.422624,0.013568,0.011008,0.006144,0.006208,0.00608,0.124896,0.005536
+1383,800.078,1.24988,0.386784,0.005952,0.213184,0.011392,0.01072,0.006336,0.006368,0.006144,0.120832,0.005856
+1384,1442.76,0.693115,0.38304,0.005376,0.20768,0.010272,0.010208,0.007328,0.00656,0.005984,0.124544,0.005088
+1385,1266.93,0.789307,0.374944,0.005344,0.201664,0.01024,0.01024,0.006144,0.007424,0.006144,0.1216,0.006144
+1386,1243.47,0.804199,0.377312,0.004576,0.204832,0.011296,0.0112,0.006208,0.00736,0.006336,0.11936,0.006144
+1387,1253.56,0.797729,0.378816,0.005664,0.203232,0.011424,0.010528,0.006464,0.0064,0.006144,0.12288,0.00608
+1388,1212.01,0.825073,0.376608,0.005344,0.205216,0.01056,0.010336,0.006112,0.00624,0.006144,0.120736,0.00592
+1389,1375.65,0.726929,0.3784,0.005568,0.205248,0.010368,0.01024,0.006368,0.007328,0.006144,0.121472,0.005664
+1390,677.193,1.47668,0.587008,0.007712,0.410272,0.01024,0.011456,0.006304,0.006624,0.006144,0.12272,0.005536
+1391,1050.12,0.952271,0.374784,0.005952,0.204992,0.01024,0.01136,0.006336,0.006816,0.00624,0.116704,0.006144
+1392,1348.26,0.741699,0.378368,0.006144,0.20608,0.010496,0.010752,0.007424,0.006912,0.006144,0.118784,0.005632
+1393,1257.79,0.795044,0.37504,0.004544,0.204608,0.01184,0.010688,0.006176,0.0072,0.006272,0.117568,0.006144
+1394,1221.41,0.818726,0.380928,0.005888,0.210848,0.010496,0.010336,0.006144,0.006144,0.00624,0.118688,0.006144
+1395,1262.25,0.792236,0.376768,0.006144,0.202752,0.01024,0.012288,0.00624,0.007296,0.006176,0.119552,0.00608
+1396,959.7,1.04199,0.407552,0.006144,0.22528,0.01024,0.011488,0.014912,0.006368,0.006144,0.120832,0.006144
+1397,1499.27,0.666992,0.398208,0.004992,0.22528,0.01024,0.010336,0.007168,0.007072,0.006144,0.120832,0.006144
+1398,792.493,1.26184,0.595872,0.009824,0.415904,0.010592,0.012288,0.007616,0.006432,0.006144,0.121024,0.006048
+1399,1097.98,0.910767,0.376832,0.005568,0.204576,0.010432,0.010848,0.006144,0.006144,0.007168,0.121376,0.004576
+1400,1347.81,0.741943,0.380352,0.005376,0.2056,0.01024,0.011584,0.006464,0.006528,0.006144,0.12288,0.005536
+1401,1268.31,0.788452,0.376832,0.006144,0.204576,0.010464,0.01024,0.006144,0.007392,0.006304,0.119424,0.006144
+1402,1172.63,0.852783,0.37696,0.004544,0.2048,0.01024,0.01216,0.006304,0.00784,0.006048,0.1192,0.005824
+1403,1319.8,0.75769,0.376448,0.006144,0.202752,0.011264,0.0112,0.006208,0.006144,0.006144,0.120832,0.00576
+1404,685.58,1.45862,0.388032,0.005056,0.219136,0.011264,0.011168,0.00624,0.006144,0.006176,0.116704,0.006144
+1405,1100.34,0.908813,0.619648,0.008192,0.404832,0.01056,0.010592,0.00624,0.007264,0.006848,0.159552,0.005568
+1406,812.86,1.23022,0.381728,0.004896,0.210976,0.01136,0.010528,0.006752,0.006144,0.006144,0.120192,0.004736
+1407,1193.3,0.838013,0.380928,0.005472,0.209568,0.01184,0.010688,0.006176,0.007424,0.006048,0.118848,0.004864
+1408,1435.93,0.696411,0.37888,0.006144,0.208128,0.010464,0.010784,0.006176,0.007232,0.00608,0.118944,0.004928
+1409,1027.98,0.972778,0.377728,0.004992,0.206848,0.011904,0.010624,0.006144,0.007264,0.006144,0.117664,0.006144
+1410,1409.74,0.709351,0.379008,0.005344,0.207776,0.010272,0.010336,0.007072,0.007136,0.005984,0.118944,0.006144
+1411,1309.04,0.763916,0.38096,0.004512,0.208128,0.010688,0.01056,0.007648,0.006688,0.006144,0.120832,0.00576
+1412,1150.08,0.869507,0.393216,0.006144,0.21856,0.010688,0.012416,0.006144,0.006272,0.007136,0.121024,0.004832
+1413,1375.19,0.727173,0.602112,0.007456,0.428608,0.012448,0.010272,0.007648,0.006656,0.006144,0.116736,0.006144
+1414,666.992,1.49927,0.378432,0.005664,0.207712,0.01024,0.01024,0.007232,0.006528,0.006112,0.119136,0.005568
+1415,1235.6,0.809326,0.375168,0.004544,0.204736,0.01024,0.011456,0.006816,0.006304,0.006144,0.118784,0.006144
+1416,1292.93,0.773438,0.376416,0.005344,0.205056,0.0104,0.010656,0.007424,0.006592,0.0064,0.118848,0.005696
+1417,1346.93,0.742432,0.374784,0.00608,0.204416,0.010528,0.0104,0.006144,0.007232,0.006144,0.117696,0.006144
+1418,1281,0.78064,0.37872,0.005472,0.203424,0.01024,0.011808,0.006528,0.00624,0.006144,0.12288,0.005984
+1419,1194.87,0.836914,0.376832,0.005728,0.203168,0.01232,0.010208,0.007456,0.006528,0.006208,0.119072,0.006144
+1420,1258.37,0.794678,0.649408,0.004672,0.473088,0.013568,0.01104,0.006112,0.007296,0.006496,0.121376,0.00576
+1421,769.708,1.29919,0.581792,0.006048,0.405216,0.010816,0.012416,0.00752,0.006592,0.005984,0.122592,0.004608
+1422,1055.94,0.947021,0.371872,0.005568,0.203136,0.010432,0.01024,0.006144,0.006208,0.007104,0.117472,0.005568
+1423,1233.73,0.810547,0.372736,0.006176,0.20272,0.01024,0.011392,0.00672,0.006464,0.006144,0.116736,0.006144
+1424,1374.96,0.727295,0.37472,0.005344,0.203552,0.011584,0.010944,0.006176,0.007264,0.00624,0.117536,0.00608
+1425,1168.28,0.855957,0.372544,0.005952,0.202336,0.010848,0.01024,0.007392,0.00656,0.006144,0.11712,0.005952
+1426,1288.66,0.776001,0.374912,0.004448,0.204672,0.010368,0.011424,0.00688,0.006272,0.006144,0.118752,0.005952
+1427,1282.4,0.779785,0.374752,0.00544,0.20352,0.01024,0.011424,0.007008,0.007232,0.006432,0.117408,0.006048
+1428,1257.41,0.795288,0.5944,0.004576,0.42352,0.012672,0.010464,0.007648,0.006496,0.006144,0.118368,0.004512
+1429,631.173,1.58435,0.644096,0.005664,0.44032,0.01072,0.014112,0.014592,0.007232,0.021408,0.124416,0.005632
+1430,1108.98,0.901733,0.398656,0.005472,0.225952,0.01024,0.012288,0.007424,0.006624,0.006272,0.11888,0.005504
+1431,1479.77,0.675781,0.381952,0.00512,0.210944,0.01024,0.010304,0.00768,0.006592,0.006144,0.118784,0.006144
+1432,1073.09,0.931885,0.38608,0.006144,0.212992,0.010272,0.012256,0.006144,0.006144,0.006144,0.120448,0.005536
+1433,1352.93,0.739136,0.392192,0.00512,0.221184,0.011392,0.011136,0.007552,0.006528,0.006368,0.118336,0.004576
+1434,1373.11,0.728271,0.377024,0.004992,0.20688,0.01024,0.01168,0.00672,0.006176,0.006112,0.118624,0.0056
+1435,1283.81,0.778931,0.37888,0.006112,0.208928,0.01024,0.01024,0.007424,0.006528,0.006304,0.118016,0.005088
+1436,1072.11,0.932739,0.597696,0.006144,0.423936,0.012288,0.01168,0.00672,0.006176,0.006144,0.118784,0.005824
+1437,762.472,1.31152,0.380608,0.005344,0.207136,0.010912,0.01392,0.00608,0.00592,0.006528,0.119104,0.005664
+1438,1324.71,0.754883,0.374208,0.005952,0.204864,0.010368,0.01024,0.006336,0.007328,0.006112,0.117408,0.0056
+1439,1235.22,0.80957,0.372736,0.005472,0.203232,0.010432,0.010464,0.007648,0.006464,0.006176,0.116704,0.006144
+1440,1402.98,0.712769,0.378176,0.0056,0.207392,0.010272,0.011808,0.006496,0.00624,0.006144,0.11872,0.005504
+1441,1158.04,0.863525,0.372768,0.006016,0.202912,0.011936,0.01056,0.006176,0.00736,0.0064,0.116704,0.004704
+1442,1275.62,0.783936,0.373696,0.005056,0.204192,0.010528,0.010432,0.006272,0.007296,0.0064,0.118592,0.004928
+1443,1278,0.782471,0.378304,0.006176,0.203936,0.010496,0.010624,0.006336,0.006144,0.006144,0.12288,0.005568
+1444,1332.25,0.75061,0.379968,0.005472,0.205472,0.012192,0.010336,0.006144,0.006144,0.006144,0.122496,0.005568
+1445,792.877,1.26123,0.567296,0.008192,0.38672,0.011648,0.01328,0.006176,0.007552,0.006144,0.12144,0.006144
+1446,781.679,1.2793,0.385024,0.006112,0.210144,0.010496,0.010816,0.006144,0.007392,0.006176,0.1216,0.006144
+1447,1490.27,0.671021,0.380864,0.006112,0.20688,0.01024,0.010336,0.00608,0.007392,0.00624,0.121504,0.00608
+1448,1397.71,0.715454,0.380352,0.005824,0.206944,0.010496,0.010208,0.006176,0.006144,0.006112,0.12288,0.005568
+1449,1293.95,0.772827,0.376832,0.00576,0.204224,0.0112,0.011552,0.006336,0.00656,0.006272,0.118784,0.006144
+1450,1259.73,0.793823,0.387232,0.00448,0.208864,0.010304,0.012032,0.006336,0.006144,0.006144,0.126976,0.005952
+1451,1187.07,0.842407,0.380992,0.004544,0.206848,0.011296,0.011232,0.00736,0.00656,0.006336,0.121056,0.00576
+1452,1238.58,0.807373,0.598304,0.004896,0.421888,0.013664,0.010912,0.006176,0.007168,0.006208,0.12176,0.005632
+1453,730.125,1.36963,0.415936,0.005344,0.238336,0.011744,0.011008,0.006144,0.00736,0.006112,0.125056,0.004832
+1454,1208.97,0.827148,0.388192,0.005376,0.209696,0.011328,0.011136,0.006304,0.007232,0.006144,0.125504,0.005472
+1455,1294.77,0.772339,0.3824,0.005792,0.208768,0.010304,0.010656,0.006176,0.007168,0.00512,0.122784,0.005632
+1456,1238.21,0.807617,0.403648,0.005024,0.231136,0.010528,0.010272,0.006112,0.006144,0.007328,0.121344,0.00576
+1457,1234.66,0.809937,0.379136,0.004992,0.208896,0.011488,0.010592,0.006464,0.006272,0.006144,0.118688,0.0056
+1458,1243.85,0.803955,0.381056,0.006016,0.210464,0.010496,0.010592,0.006144,0.006176,0.006304,0.119968,0.004896
+1459,1175.15,0.850952,0.385088,0.004928,0.212864,0.0104,0.011488,0.006528,0.006528,0.006144,0.120576,0.005632
+1460,631.076,1.58459,0.587072,0.008,0.407744,0.011424,0.013056,0.00624,0.006144,0.006144,0.122752,0.005568
+1461,1038.41,0.963013,0.376832,0.006144,0.2048,0.01024,0.011296,0.006336,0.006816,0.006176,0.120032,0.004992
+1462,1285.83,0.77771,0.378976,0.005408,0.205472,0.01168,0.010976,0.006144,0.006144,0.006176,0.122208,0.004768
+1463,1073.23,0.931763,0.392672,0.006144,0.216736,0.010496,0.011392,0.006496,0.006464,0.006208,0.123136,0.0056
+1464,1317.25,0.759155,0.383104,0.005376,0.210976,0.010496,0.010816,0.006176,0.006304,0.006144,0.121824,0.004992
+1465,1114.86,0.896973,0.386528,0.006176,0.210912,0.01024,0.012288,0.006176,0.006144,0.0072,0.121792,0.0056
+1466,1594.39,0.627197,0.388672,0.006144,0.21504,0.01024,0.01168,0.006464,0.006432,0.006144,0.120832,0.005696
+1467,1221.96,0.818359,0.606048,0.004896,0.431616,0.0128,0.01024,0.006176,0.007552,0.005984,0.121184,0.0056
+1468,681.985,1.46631,0.383616,0.005056,0.208896,0.011552,0.013024,0.006208,0.007168,0.005088,0.1208,0.005824
+1469,1188.8,0.841187,0.380928,0.005696,0.207296,0.01024,0.011488,0.006432,0.006592,0.006176,0.120864,0.006144
+1470,1255.86,0.796265,0.375168,0.004512,0.203936,0.010496,0.010816,0.00752,0.00624,0.006144,0.11936,0.006144
+1471,1362.83,0.733765,0.382496,0.005376,0.209696,0.011296,0.010656,0.006368,0.0064,0.006208,0.120832,0.005664
+1472,1190.35,0.840088,0.384928,0.005568,0.208896,0.010848,0.011392,0.006528,0.006624,0.006176,0.122848,0.006048
+1473,1201.88,0.832031,0.380928,0.005856,0.208864,0.010464,0.010336,0.006144,0.006272,0.006016,0.120864,0.006112
+1474,1298.87,0.769897,0.37888,0.00592,0.205024,0.01152,0.011008,0.006144,0.006144,0.006144,0.120832,0.006144
+1475,1272.05,0.786133,0.38528,0.004352,0.208896,0.011488,0.01072,0.006496,0.006112,0.006144,0.124928,0.006144
+1476,669.008,1.49475,0.387072,0.008192,0.211968,0.01088,0.010624,0.006144,0.00736,0.006176,0.119584,0.006144
+1477,1171.46,0.853638,0.376832,0.005504,0.203008,0.010496,0.010368,0.007328,0.006624,0.006112,0.12128,0.006112
+1478,1305.71,0.765869,0.37488,0.004992,0.203904,0.010976,0.010464,0.00608,0.007488,0.006432,0.119008,0.005536
+1479,1357.42,0.736694,0.379264,0.004736,0.206176,0.010912,0.01024,0.007392,0.006624,0.006112,0.121184,0.005888
+1480,1188.8,0.841187,0.373536,0.004896,0.203936,0.011104,0.01136,0.006304,0.00656,0.005984,0.117248,0.006144
+1481,872.789,1.14575,0.403904,0.00464,0.210944,0.012288,0.010496,0.00736,0.006592,0.00624,0.139296,0.006048
+1482,1552.1,0.644287,0.379936,0.005088,0.21024,0.010464,0.01072,0.006144,0.006176,0.006112,0.120416,0.004576
+1483,725.02,1.37927,0.458496,0.007456,0.287424,0.010368,0.010208,0.006176,0.00736,0.006176,0.117504,0.005824
+1484,1060.87,0.942627,0.375968,0.006112,0.204832,0.01024,0.013472,0.006368,0.006496,0.006048,0.116896,0.005504
+1485,1195.91,0.836182,0.377056,0.005344,0.203744,0.010272,0.011584,0.006496,0.006432,0.006144,0.122016,0.005024
+1486,1316.2,0.759766,0.3728,0.005344,0.203744,0.010272,0.01136,0.006336,0.006592,0.006016,0.11712,0.006016
+1487,1194.52,0.837158,0.375264,0.004576,0.204064,0.01056,0.010624,0.006176,0.006144,0.006144,0.120832,0.006144
+1488,1350.48,0.740479,0.374784,0.005504,0.203392,0.01024,0.01136,0.006464,0.00672,0.005952,0.119008,0.006144
+1489,1254.52,0.797119,0.376704,0.006048,0.204512,0.010528,0.010304,0.0072,0.006496,0.006144,0.11936,0.006112
+1490,1276.01,0.783691,0.376832,0.005824,0.207168,0.01024,0.0104,0.007136,0.006592,0.006176,0.118784,0.004512
+1491,764.607,1.30786,0.417792,0.007936,0.243968,0.01024,0.01152,0.00672,0.006336,0.006144,0.118784,0.006144
+1492,1069.45,0.935059,0.373888,0.005984,0.204224,0.010464,0.010752,0.006176,0.00736,0.00608,0.117248,0.0056
+1493,1293.75,0.772949,0.374784,0.006144,0.203776,0.010592,0.010656,0.0064,0.006144,0.006144,0.119936,0.004992
+1494,1322.14,0.756348,0.374784,0.00576,0.206464,0.010464,0.010784,0.006176,0.007264,0.006176,0.115552,0.006144
+1495,1232.25,0.811523,0.372704,0.005376,0.20288,0.011136,0.010272,0.006112,0.007488,0.00624,0.117344,0.005856
+1496,1350.48,0.740479,0.372736,0.006144,0.202464,0.010496,0.010272,0.006144,0.006144,0.006144,0.118784,0.006144
+1497,1191.04,0.8396,0.374816,0.005984,0.202528,0.01056,0.010304,0.006272,0.0072,0.006944,0.120192,0.004832
+1498,1191.74,0.839111,0.39344,0.00464,0.206752,0.010304,0.024576,0.007232,0.006528,0.006272,0.12128,0.005856
+1499,691.308,1.44653,0.557888,0.007104,0.382976,0.01168,0.010848,0.00624,0.007264,0.006144,0.119616,0.006016
+1500,1172.63,0.852783,0.376864,0.006144,0.2048,0.011264,0.01072,0.006176,0.006016,0.006208,0.121312,0.004224
+1501,1267.72,0.788818,0.376704,0.006144,0.204032,0.009248,0.009952,0.007264,0.007008,0.006208,0.120832,0.006016
+1502,1444.29,0.692383,0.3728,0.006048,0.201504,0.010272,0.01024,0.006112,0.007296,0.006112,0.119072,0.006144
+1503,1351.37,0.73999,0.368736,0.00608,0.200928,0.010048,0.01072,0.006368,0.006144,0.005856,0.117024,0.005568
+1504,1203.29,0.831055,0.380768,0.006016,0.206976,0.011392,0.011136,0.006144,0.007264,0.006176,0.11968,0.005984
+1505,1248.78,0.800781,0.375744,0.005088,0.204768,0.01024,0.011712,0.006432,0.006432,0.006144,0.120256,0.004672
+1506,1331.6,0.750977,0.380992,0.005536,0.207456,0.011488,0.010784,0.0064,0.006144,0.006144,0.1224,0.00464
+1507,646.669,1.54639,0.567648,0.006624,0.38672,0.01056,0.014336,0.006144,0.006144,0.006144,0.124928,0.006048
+1508,1019.67,0.980713,0.378848,0.00464,0.204416,0.010496,0.0104,0.006336,0.007904,0.00592,0.123136,0.0056
+1509,1205.41,0.82959,0.376832,0.00544,0.203008,0.010496,0.010432,0.006144,0.00608,0.005632,0.123456,0.006144
+1510,1468.63,0.680908,0.378464,0.006144,0.2048,0.01024,0.011552,0.00688,0.006144,0.006144,0.120832,0.005728
+1511,1211.12,0.825684,0.382496,0.006144,0.2048,0.01024,0.012,0.006432,0.006144,0.006144,0.124928,0.005664
+1512,1264.98,0.790527,0.37888,0.00608,0.202848,0.011328,0.010528,0.006464,0.006464,0.0072,0.123392,0.004576
+1513,1197.66,0.834961,0.380576,0.005888,0.203008,0.011488,0.01072,0.006432,0.006176,0.006144,0.124928,0.005792
+1514,1254.9,0.796875,0.601504,0.005536,0.424512,0.01232,0.012032,0.0064,0.006144,0.006144,0.12288,0.005536
+1515,696.954,1.43481,0.3896,0.004544,0.210272,0.010944,0.012256,0.006144,0.006144,0.006144,0.128224,0.004928
+1516,1319.59,0.757812,0.38096,0.005664,0.207328,0.01024,0.011616,0.006368,0.0064,0.006336,0.122368,0.00464
+1517,1254.9,0.796875,0.386976,0.005632,0.209408,0.011456,0.010816,0.006432,0.006112,0.006144,0.124928,0.006048
+1518,1323,0.755859,0.377248,0.00448,0.206272,0.010496,0.01056,0.006304,0.0072,0.006272,0.120832,0.004832
+1519,1293.75,0.772949,0.382976,0.005792,0.20448,0.010528,0.010624,0.006144,0.007296,0.006464,0.126912,0.004736
+1520,1220.86,0.819092,0.37888,0.005952,0.202976,0.01024,0.011552,0.006752,0.006272,0.006112,0.12448,0.004544
+1521,1232.99,0.811035,0.382144,0.006112,0.204608,0.010464,0.011744,0.006688,0.006144,0.006144,0.124736,0.005504
+1522,1326,0.75415,0.599488,0.00576,0.42432,0.012288,0.01184,0.006592,0.006144,0.006144,0.120832,0.005568
+1523,717.967,1.39282,0.388768,0.006144,0.20688,0.012256,0.012288,0.007328,0.006208,0.005984,0.125888,0.005792
+1524,1182.11,0.845947,0.377408,0.004896,0.204544,0.010496,0.01024,0.006176,0.006112,0.006144,0.12288,0.00592
+1525,1311.14,0.762695,0.376832,0.0048,0.202176,0.010816,0.01024,0.007168,0.006592,0.006208,0.123264,0.005568
+1526,1349.14,0.741211,0.380928,0.006048,0.2024,0.011808,0.011168,0.006304,0.0072,0.006336,0.12352,0.006144
+1527,1049.99,0.952393,0.382592,0.004544,0.206816,0.01024,0.011904,0.006336,0.006336,0.006144,0.124736,0.005536
+1528,1445.82,0.69165,0.377536,0.004768,0.2048,0.012288,0.010464,0.007232,0.0064,0.006208,0.120736,0.00464
+1529,1218.32,0.820801,0.41168,0.006144,0.22736,0.021632,0.010944,0.006304,0.006144,0.006144,0.122176,0.004832
+1530,1335.51,0.748779,0.598048,0.006112,0.423968,0.012288,0.012,0.006432,0.006144,0.006144,0.118784,0.006176
+1531,709.879,1.40869,0.384,0.00512,0.206848,0.011872,0.012704,0.006144,0.007296,0.006112,0.122848,0.005056
+1532,685.982,1.45776,0.373984,0.006016,0.202688,0.010432,0.010464,0.00752,0.00656,0.005984,0.118816,0.005504
+1533,524.053,1.9082,0.43888,0.004896,0.268288,0.01024,0.010368,0.007264,0.006496,0.006592,0.118784,0.005952
+1534,1494.35,0.669189,0.3824,0.005856,0.211232,0.01024,0.010304,0.007232,0.006624,0.006016,0.119328,0.005568
+1535,1287.65,0.776611,0.378496,0.004512,0.208,0.010528,0.010496,0.006432,0.006144,0.007232,0.119584,0.005568
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..b1076f9
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_3,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1168.29,0.922673,0.388684,0.00568378,0.23652,0.00894294,0.00886709,0.00626147,0.00602863,0.00656978,0.104371,0.00543863
+max_1024,1670.81,2.58899,1.65683,0.03072,1.5097,0.065536,0.081312,0.044736,0.022368,0.021344,0.21056,0.02224
+min_1024,386.251,0.598511,0.339968,0.004384,0.198208,0.006848,0.007072,0.004672,0.004608,0.00448,0.090112,0.004256
+512,754.953,1.32458,0.37648,0.005952,0.21696,0.00816,0.007776,0.005056,0.005952,0.006144,0.114688,0.005792
+513,664.019,1.50598,0.518144,0.008192,0.376096,0.00816,0.008544,0.00608,0.00592,0.006688,0.093728,0.004736
+514,1472.59,0.679077,0.358944,0.00464,0.217088,0.008192,0.008192,0.006176,0.006112,0.006304,0.096096,0.006144
+515,1358.09,0.736328,0.345888,0.005824,0.204544,0.009984,0.008736,0.00608,0.005792,0.00672,0.092288,0.00592
+516,1311.56,0.762451,0.35056,0.004544,0.210272,0.00816,0.0088,0.006144,0.005888,0.006432,0.094272,0.006048
+517,1250.11,0.799927,0.343008,0.00512,0.206016,0.008192,0.008704,0.006336,0.006016,0.006368,0.091584,0.004672
+518,1343.61,0.744263,0.344704,0.00512,0.206816,0.008192,0.008224,0.006112,0.00592,0.006368,0.09216,0.005792
+519,979.553,1.02087,0.34816,0.005984,0.206368,0.008128,0.008896,0.006144,0.005888,0.0064,0.095648,0.004704
+520,1670.81,0.598511,0.528608,0.004704,0.38912,0.008192,0.008192,0.006144,0.006144,0.006176,0.094176,0.00576
+521,490.128,2.04028,0.374624,0.007776,0.232352,0.00816,0.008192,0.006144,0.006144,0.006144,0.094208,0.005504
+522,1391.54,0.718628,0.348096,0.005952,0.211168,0.00816,0.008192,0.006144,0.006144,0.006144,0.090112,0.00608
+523,1200.47,0.833008,0.348192,0.005408,0.205568,0.009472,0.008416,0.006304,0.005856,0.006432,0.095904,0.004832
+524,1530.07,0.653564,0.352416,0.0048,0.208896,0.008224,0.010016,0.006112,0.005856,0.0064,0.096512,0.0056
+525,1248.4,0.801025,0.355424,0.005888,0.209152,0.008192,0.008192,0.006144,0.006144,0.006144,0.100192,0.005376
+526,1396.52,0.716064,0.352896,0.004896,0.206848,0.008192,0.008224,0.006112,0.006144,0.006144,0.100352,0.005984
+527,1167.95,0.856201,0.354112,0.006176,0.210752,0.008128,0.008448,0.006112,0.00592,0.006368,0.096256,0.005952
+528,1093.14,0.914795,0.622592,0.006016,0.43008,0.057472,0.008224,0.006112,0.006144,0.006144,0.096256,0.006144
+529,837.628,1.19385,0.364576,0.006144,0.221248,0.008128,0.01024,0.006176,0.006112,0.006144,0.095808,0.004576
+530,1306.12,0.765625,0.352256,0.006144,0.210848,0.008128,0.008256,0.006112,0.005856,0.0064,0.095552,0.00496
+531,1281,0.78064,0.34384,0.005824,0.20512,0.008192,0.008224,0.006112,0.006144,0.006144,0.09216,0.00592
+532,1407.08,0.710693,0.348736,0.005056,0.206848,0.008288,0.009216,0.006112,0.005056,0.00736,0.09504,0.00576
+533,1249.54,0.800293,0.346528,0.004576,0.20416,0.008128,0.008256,0.00608,0.005824,0.0064,0.098432,0.004672
+534,1356.52,0.737183,0.351712,0.005472,0.20752,0.008192,0.008256,0.00608,0.006144,0.006144,0.098304,0.0056
+535,848.824,1.1781,0.350208,0.005408,0.208896,0.00816,0.008832,0.006112,0.005792,0.0064,0.095872,0.004736
+536,679.496,1.47168,0.368288,0.008032,0.22544,0.008192,0.00928,0.006112,0.006528,0.006496,0.092416,0.005792
+537,1350.7,0.740356,0.349888,0.004544,0.208064,0.00816,0.010208,0.006144,0.004992,0.0072,0.0952,0.005376
+538,1402.02,0.713257,0.385152,0.005376,0.243712,0.007136,0.009344,0.006112,0.005024,0.007168,0.095232,0.006048
+539,1282.2,0.779907,0.358048,0.005664,0.217312,0.008192,0.008256,0.006336,0.006144,0.006144,0.094208,0.005792
+540,1297.64,0.77063,0.346208,0.005376,0.205664,0.00816,0.008192,0.006144,0.006048,0.00624,0.09552,0.004864
+541,1233.92,0.810425,0.348032,0.005568,0.205376,0.008192,0.008448,0.00752,0.005984,0.0064,0.094528,0.006016
+542,1450.17,0.689575,0.349984,0.005984,0.207008,0.008192,0.008224,0.006112,0.006144,0.006144,0.096256,0.00592
+543,1251.26,0.799194,0.356352,0.006144,0.214816,0.00816,0.008448,0.006144,0.005728,0.006432,0.094336,0.006144
+544,522.249,1.91479,0.401408,0.008192,0.25568,0.008096,0.008416,0.00608,0.005824,0.006368,0.09776,0.004992
+545,1387.77,0.720581,0.360448,0.006144,0.216832,0.008096,0.008544,0.006144,0.00608,0.006208,0.097344,0.005056
+546,1420.5,0.703979,0.358592,0.005408,0.21392,0.008192,0.008224,0.006112,0.006208,0.0072,0.097184,0.006144
+547,538.876,1.85571,0.55456,0.005792,0.407968,0.008192,0.009632,0.006496,0.006272,0.006272,0.098304,0.005632
+548,1002.57,0.997437,0.352192,0.00592,0.207072,0.008192,0.008192,0.005888,0.005792,0.0064,0.098656,0.00608
+549,1285.02,0.778198,0.35808,0.005408,0.215616,0.008192,0.00816,0.006464,0.00608,0.00624,0.096256,0.005664
+550,769.274,1.29993,0.545088,0.007872,0.4,0.00816,0.008128,0.006208,0.005792,0.006432,0.097664,0.004832
+551,1086.62,0.920288,0.352896,0.00496,0.208896,0.00816,0.008224,0.006144,0.006144,0.006144,0.098304,0.00592
+552,1227.08,0.814941,0.350432,0.005824,0.20512,0.008192,0.008192,0.006144,0.006144,0.006208,0.099936,0.004672
+553,1292.32,0.773804,0.3584,0.005856,0.212608,0.00816,0.008736,0.005952,0.004608,0.007232,0.100704,0.004544
+554,1325.14,0.754639,0.377056,0.004544,0.231392,0.008224,0.009312,0.006048,0.005088,0.0072,0.099296,0.005952
+555,1095.04,0.913208,0.35744,0.005984,0.214368,0.008192,0.008704,0.005888,0.005792,0.006432,0.096768,0.005312
+556,1467.57,0.681396,0.376832,0.005888,0.237376,0.00816,0.008384,0.006112,0.006464,0.006144,0.093216,0.005088
+557,1111.08,0.900024,0.385152,0.004896,0.243712,0.008192,0.008192,0.006144,0.005984,0.006336,0.095936,0.00576
+558,1156.41,0.864746,0.386464,0.005984,0.2472,0.008192,0.008352,0.006272,0.006624,0.006144,0.09216,0.005536
+559,839.258,1.19153,0.359168,0.00688,0.219136,0.008192,0.008192,0.006144,0.006144,0.006144,0.09376,0.004576
+560,1334.64,0.749268,0.34992,0.005376,0.209728,0.008192,0.00928,0.005056,0.006144,0.006144,0.094208,0.005792
+561,1156.25,0.864868,0.349984,0.00544,0.2096,0.008192,0.008256,0.00608,0.006144,0.006144,0.094208,0.00592
+562,1584.22,0.631226,0.348192,0.006144,0.210336,0.008128,0.008768,0.006112,0.005824,0.006432,0.092,0.004448
+563,1298.26,0.770264,0.34432,0.0056,0.205664,0.008192,0.008192,0.006144,0.005824,0.006432,0.092192,0.00608
+564,1317.04,0.759277,0.343488,0.005376,0.205728,0.008192,0.008192,0.006144,0.006016,0.006272,0.09216,0.005408
+565,746.968,1.33875,0.348192,0.005632,0.209408,0.008192,0.008192,0.007904,0.00592,0.006464,0.091712,0.004768
+566,635.778,1.57288,0.431136,0.007904,0.290848,0.00816,0.008384,0.006112,0.005792,0.0064,0.09184,0.005696
+567,1249.16,0.800537,0.360832,0.004992,0.22224,0.007136,0.01024,0.006144,0.006144,0.006144,0.09216,0.005632
+568,1124.81,0.889038,0.350208,0.005536,0.211104,0.008192,0.008352,0.0064,0.005792,0.0064,0.093792,0.00464
+569,1477.63,0.676758,0.361024,0.004832,0.221184,0.008192,0.009568,0.005888,0.005024,0.00624,0.094112,0.005984
+570,1102.85,0.906738,0.370688,0.006144,0.2272,0.00816,0.008192,0.006048,0.005888,0.006432,0.098016,0.004608
+571,1573.87,0.635376,0.348192,0.005408,0.207616,0.008192,0.008224,0.006112,0.006144,0.006144,0.095936,0.004416
+572,1240.46,0.806152,0.346624,0.004608,0.20688,0.00816,0.009984,0.006176,0.005856,0.006432,0.0936,0.004928
+573,1283.81,0.778931,0.527104,0.004896,0.387072,0.008192,0.008192,0.006144,0.006144,0.006208,0.094144,0.006112
+574,724.763,1.37976,0.356832,0.007072,0.217088,0.008192,0.009376,0.00496,0.006144,0.006176,0.092128,0.005696
+575,1338.78,0.746948,0.34816,0.006144,0.208896,0.008192,0.008192,0.006144,0.006144,0.006144,0.09392,0.004384
+576,1259.53,0.793945,0.349184,0.00512,0.208896,0.008224,0.009376,0.00608,0.004992,0.007232,0.09312,0.006144
+577,1398.67,0.714966,0.348384,0.005376,0.208992,0.008128,0.007104,0.006176,0.006112,0.006208,0.095968,0.00432
+578,1217.6,0.821289,0.345216,0.00544,0.205568,0.008224,0.009472,0.006048,0.004992,0.0072,0.092928,0.005344
+579,1351.82,0.739746,0.350496,0.004576,0.206688,0.008192,0.010144,0.006048,0.005984,0.006432,0.09632,0.006112
+580,717.778,1.39319,0.347584,0.006144,0.206848,0.008192,0.008192,0.006048,0.00576,0.006272,0.09456,0.005568
+581,857.801,1.16577,0.543232,0.007776,0.400288,0.008192,0.008256,0.00608,0.006176,0.006112,0.095296,0.005056
+582,1060.59,0.942871,0.348832,0.004896,0.207968,0.00816,0.008384,0.00608,0.004928,0.007264,0.095136,0.006016
+583,1376.81,0.726318,0.346656,0.0048,0.208928,0.00816,0.008192,0.006144,0.006144,0.006144,0.09216,0.005984
+584,1314.93,0.760498,0.34816,0.005728,0.207264,0.008224,0.009344,0.006048,0.005056,0.006368,0.095072,0.005056
+585,1326.64,0.753784,0.342848,0.004896,0.2048,0.008192,0.009344,0.005024,0.006112,0.006176,0.093568,0.004736
+586,1256.83,0.795654,0.343616,0.005408,0.203744,0.00816,0.010016,0.00608,0.005888,0.006432,0.092416,0.005472
+587,1418.28,0.705078,0.34816,0.006016,0.210208,0.00816,0.00816,0.006048,0.00512,0.006304,0.093088,0.005056
+588,1263.03,0.791748,0.360448,0.005856,0.221472,0.009728,0.008448,0.00608,0.006048,0.006528,0.091776,0.004512
+589,1130.09,0.884888,0.352416,0.005376,0.215104,0.008128,0.008768,0.00608,0.005888,0.006432,0.091936,0.004704
+590,812.376,1.23096,0.359552,0.008192,0.218208,0.008128,0.008704,0.005824,0.00592,0.006304,0.09296,0.005312
+591,1439.47,0.694702,0.34816,0.005504,0.209376,0.008128,0.008096,0.006048,0.005792,0.006432,0.093888,0.004896
+592,1278.4,0.782227,0.341472,0.005408,0.203552,0.008128,0.008192,0.006048,0.005824,0.006432,0.092384,0.005504
+593,1361.93,0.734253,0.344544,0.004544,0.208576,0.00816,0.00816,0.006208,0.005824,0.006368,0.092064,0.00464
+594,1259.92,0.793701,0.346144,0.004896,0.206848,0.008192,0.008224,0.006112,0.006144,0.006144,0.094208,0.005376
+595,1369.9,0.72998,0.343872,0.004736,0.206272,0.007936,0.00864,0.006048,0.00576,0.006432,0.092672,0.005376
+596,951.231,1.05127,0.342048,0.005408,0.203328,0.008192,0.0096,0.006112,0.004928,0.007328,0.092448,0.004704
+597,1656.29,0.60376,0.52832,0.006144,0.386432,0.00816,0.008704,0.00608,0.006368,0.006144,0.094208,0.00608
+598,682.098,1.46606,0.351328,0.008192,0.207904,0.007232,0.0096,0.006048,0.00576,0.0064,0.094816,0.005376
+599,1604.07,0.623413,0.349472,0.006112,0.210176,0.008256,0.008512,0.006112,0.005952,0.0064,0.092544,0.005408
+600,1280.8,0.780762,0.346496,0.00512,0.206528,0.008064,0.008512,0.006048,0.005792,0.006432,0.094496,0.005504
+601,1242.72,0.804688,0.348256,0.005056,0.206688,0.00816,0.008224,0.006048,0.006144,0.006432,0.09616,0.005344
+602,1349.14,0.741211,0.352704,0.00464,0.204768,0.008192,0.008192,0.006144,0.006016,0.006272,0.1024,0.00608
+603,1382.62,0.723267,0.348576,0.004544,0.206816,0.008192,0.009856,0.00608,0.005824,0.0064,0.095808,0.005056
+604,1119.13,0.893555,0.350592,0.004736,0.206176,0.008192,0.008512,0.006048,0.005824,0.006432,0.098784,0.005888
+605,1207.01,0.828491,0.371168,0.004576,0.22736,0.00816,0.00816,0.00608,0.005792,0.006432,0.098464,0.006144
+606,594.96,1.68079,0.415616,0.008192,0.268192,0.008192,0.008288,0.006144,0.006048,0.00624,0.098304,0.006016
+607,1463.12,0.683472,0.354144,0.004672,0.2128,0.00816,0.008224,0.006048,0.005824,0.0064,0.096576,0.00544
+608,1260.89,0.793091,0.34624,0.00544,0.203584,0.008192,0.008384,0.005952,0.006176,0.006112,0.097472,0.004928
+609,540.583,1.84985,0.549088,0.005792,0.408128,0.008192,0.009408,0.0064,0.006304,0.0064,0.09232,0.006144
+610,1052.82,0.949829,0.346368,0.00544,0.2048,0.00816,0.008544,0.006112,0.005792,0.006432,0.096672,0.004416
+611,1263.81,0.79126,0.350208,0.006144,0.210464,0.006848,0.009632,0.004672,0.005984,0.006144,0.094176,0.006144
+612,682.496,1.46521,0.361984,0.00784,0.218816,0.008128,0.008352,0.006368,0.005856,0.006432,0.09456,0.005632
+613,1248.21,0.801147,0.345824,0.006144,0.205952,0.00816,0.00832,0.006144,0.004992,0.007264,0.092992,0.005856
+614,1210.76,0.825928,0.344096,0.005664,0.206368,0.00816,0.008384,0.004992,0.006048,0.005824,0.093792,0.004864
+615,1607.85,0.621948,0.346624,0.004576,0.206304,0.008192,0.008672,0.00608,0.00592,0.006432,0.096,0.004448
+616,1315.14,0.760376,0.341952,0.005536,0.202496,0.008192,0.008128,0.006048,0.00512,0.006368,0.093984,0.00608
+617,1361.48,0.734497,0.339968,0.005568,0.20128,0.008192,0.008192,0.006144,0.006144,0.006144,0.093536,0.004768
+618,1249.73,0.800171,0.341696,0.005408,0.201472,0.008032,0.008544,0.006144,0.005824,0.006432,0.09424,0.0056
+619,762.259,1.31189,0.429216,0.005984,0.288928,0.008192,0.00816,0.006176,0.006144,0.006144,0.094144,0.005344
+620,1133.37,0.882324,0.598016,0.005472,0.455264,0.010304,0.008192,0.006144,0.006144,0.006144,0.095424,0.004928
+621,776.419,1.28796,0.352608,0.004448,0.21504,0.008192,0.01024,0.006144,0.00592,0.006304,0.09184,0.00448
+622,1232.81,0.811157,0.353216,0.005056,0.212992,0.008192,0.008192,0.006144,0.006144,0.006144,0.09536,0.004992
+623,1287.04,0.776978,0.350208,0.00592,0.208192,0.00816,0.010208,0.005216,0.006048,0.006176,0.095616,0.004672
+624,1514.79,0.660156,0.350528,0.004416,0.210944,0.008192,0.008192,0.007264,0.005024,0.007168,0.094432,0.004896
+625,1430.17,0.699219,0.345664,0.005696,0.20864,0.00816,0.008128,0.006048,0.004992,0.007296,0.091008,0.005696
+626,1327.07,0.75354,0.34736,0.006048,0.208288,0.007968,0.008736,0.00608,0.005824,0.0064,0.092672,0.005344
+627,1224.7,0.816528,0.34672,0.004704,0.212512,0.00816,0.008224,0.006016,0.00576,0.006432,0.090144,0.004768
+628,654.156,1.52869,0.362496,0.008192,0.221184,0.008192,0.008416,0.00592,0.006144,0.006144,0.093248,0.005056
+629,1296,0.771606,0.345632,0.005408,0.207584,0.008192,0.008224,0.006112,0.006144,0.006176,0.092128,0.005664
+630,1288.46,0.776123,0.345344,0.005472,0.205024,0.008192,0.00864,0.006176,0.005792,0.006432,0.09424,0.005376
+631,1361.93,0.734253,0.353312,0.006144,0.20656,0.00816,0.009984,0.006112,0.005856,0.0064,0.098752,0.005344
+632,1250.11,0.799927,0.346304,0.00544,0.205504,0.008128,0.008128,0.006048,0.005824,0.006432,0.095744,0.005056
+633,1276.61,0.783325,0.3472,0.005984,0.20496,0.008224,0.00944,0.00608,0.006016,0.006432,0.09472,0.005344
+634,1410.71,0.708862,0.34368,0.006144,0.204064,0.008128,0.008544,0.006016,0.005824,0.006048,0.093152,0.00576
+635,1303.63,0.76709,0.366432,0.005824,0.225376,0.008416,0.008128,0.006208,0.006144,0.006144,0.094208,0.005984
+636,667.101,1.49902,0.38128,0.007776,0.236384,0.008128,0.008288,0.006144,0.005792,0.006016,0.096736,0.006016
+637,1060.18,0.943237,0.370624,0.005472,0.23008,0.00816,0.008192,0.006112,0.006176,0.006176,0.094176,0.00608
+638,1401.78,0.713379,0.354304,0.005792,0.213056,0.008192,0.009664,0.00608,0.005024,0.0072,0.094944,0.004352
+639,1409.5,0.709473,0.348192,0.005792,0.208416,0.006976,0.008256,0.006112,0.006112,0.006144,0.095808,0.004576
+640,1348.26,0.741699,0.342016,0.006144,0.204,0.00816,0.009024,0.006112,0.005856,0.006432,0.091936,0.004352
+641,1334.85,0.749146,0.346368,0.005088,0.2048,0.008192,0.008192,0.006144,0.006144,0.006144,0.096256,0.005408
+642,1244.98,0.803223,0.342016,0.00544,0.203456,0.008224,0.00816,0.006144,0.005952,0.006336,0.093888,0.004416
+643,1326.85,0.753662,0.37056,0.004768,0.231424,0.008192,0.008224,0.006208,0.006048,0.006208,0.094144,0.005344
+644,688.114,1.45325,0.35872,0.007776,0.21536,0.00816,0.008384,0.006048,0.006144,0.0064,0.094304,0.006144
+645,1244.23,0.803711,0.34464,0.004704,0.204768,0.008192,0.008192,0.006144,0.006144,0.006144,0.095552,0.0048
+646,1344.27,0.743896,0.350048,0.004736,0.206816,0.008192,0.009888,0.006016,0.005888,0.0064,0.096736,0.005376
+647,1453,0.688232,0.352288,0.005408,0.207584,0.0096,0.008736,0.00608,0.005888,0.0064,0.096416,0.006176
+648,1304.25,0.766724,0.344192,0.00464,0.204384,0.008192,0.008224,0.006048,0.005824,0.006432,0.09472,0.005728
+649,1277.21,0.782959,0.348352,0.005376,0.207392,0.00816,0.00864,0.006112,0.005792,0.006432,0.095584,0.004864
+650,1253.37,0.797852,0.347488,0.005824,0.203232,0.008224,0.009312,0.006624,0.005984,0.006432,0.09648,0.005376
+651,913.674,1.09448,0.352736,0.004992,0.212704,0.008192,0.00832,0.006112,0.00576,0.006432,0.094496,0.005728
+652,1256.44,0.795898,0.602112,0.006144,0.45584,0.010336,0.008448,0.006048,0.006016,0.0064,0.097984,0.004896
+653,771.52,1.29614,0.379616,0.004832,0.229376,0.008224,0.009216,0.005184,0.006048,0.007424,0.094976,0.014336
+654,1103.6,0.906128,0.376544,0.006144,0.223264,0.00816,0.008192,0.006144,0.006144,0.006144,0.106496,0.005856
+655,1535.23,0.651367,0.350816,0.004704,0.206848,0.008224,0.008256,0.006048,0.006144,0.006144,0.099424,0.005024
+656,1155.27,0.865601,0.373152,0.004512,0.223232,0.008192,0.008192,0.006144,0.006144,0.006048,0.096352,0.014336
+657,1405.63,0.711426,0.363808,0.005696,0.219584,0.008192,0.009472,0.006048,0.004992,0.00752,0.096896,0.005408
+658,1282,0.780029,0.350208,0.006144,0.208896,0.008192,0.008256,0.00608,0.006176,0.006144,0.095904,0.004416
+659,1165.46,0.858032,0.369184,0.00464,0.223232,0.008192,0.010272,0.006112,0.005952,0.006336,0.098304,0.006144
+660,615.755,1.62402,0.36864,0.008192,0.221184,0.008192,0.008192,0.006144,0.006144,0.0072,0.098624,0.004768
+661,1324.28,0.755127,0.352064,0.006176,0.20816,0.008128,0.008992,0.006112,0.006144,0.006144,0.096256,0.005952
+662,1272.64,0.785767,0.35872,0.004576,0.212512,0.00816,0.008608,0.006144,0.00592,0.0064,0.10032,0.00608
+663,1328.58,0.752686,0.352736,0.004928,0.208768,0.00816,0.008352,0.006144,0.005856,0.006432,0.098304,0.005792
+664,1333.12,0.750122,0.349088,0.005024,0.205888,0.008192,0.0088,0.00608,0.005824,0.006432,0.098176,0.004672
+665,1359.44,0.735596,0.349216,0.005728,0.205216,0.008192,0.008192,0.006144,0.006048,0.00624,0.097696,0.00576
+666,1099.01,0.909912,0.353728,0.006144,0.2048,0.008192,0.01024,0.006144,0.006144,0.006144,0.100352,0.005568
+667,1537.83,0.650269,0.532032,0.004576,0.38896,0.00816,0.008192,0.006016,0.006016,0.0064,0.098368,0.005344
+668,583.6,1.7135,0.408064,0.007776,0.264128,0.00816,0.008384,0.00608,0.004992,0.007232,0.096736,0.004576
+669,1119.43,0.893311,0.363136,0.004704,0.219008,0.008128,0.008384,0.006144,0.006144,0.006144,0.099392,0.005088
+670,1564.85,0.639038,0.354112,0.004608,0.210912,0.00816,0.008096,0.006016,0.005824,0.0064,0.098656,0.00544
+671,432.318,2.31311,0.623296,0.004832,0.47888,0.008224,0.00848,0.006176,0.006112,0.006336,0.099936,0.00432
+672,644.025,1.55273,0.536448,0.00576,0.389376,0.008224,0.008288,0.006144,0.006112,0.006176,0.100352,0.006016
+673,731.363,1.36731,0.362752,0.007808,0.215648,0.008192,0.008192,0.00608,0.005952,0.0064,0.099552,0.004928
+674,1353.15,0.739014,0.35856,0.0048,0.208896,0.008192,0.008416,0.005952,0.00736,0.0064,0.102944,0.0056
+675,1339.66,0.74646,0.34816,0.006176,0.204768,0.008192,0.008192,0.006112,0.005856,0.0064,0.098112,0.004352
+676,1302.38,0.767822,0.34928,0.005664,0.206944,0.00816,0.008256,0.006048,0.005824,0.0064,0.096608,0.005376
+677,1244.8,0.803345,0.346912,0.004896,0.204768,0.00816,0.008192,0.006016,0.005952,0.006432,0.097472,0.005024
+678,1390.83,0.718994,0.348192,0.004608,0.20832,0.00816,0.008384,0.005568,0.005088,0.007296,0.095104,0.005664
+679,1270.27,0.787231,0.362368,0.006144,0.204288,0.00816,0.007936,0.00672,0.005824,0.006432,0.110848,0.006016
+680,645.446,1.54932,0.356576,0.005408,0.211904,0.008192,0.008192,0.006144,0.006144,0.006176,0.09936,0.005056
+681,1173.98,0.851807,0.36304,0.007776,0.216,0.008192,0.01008,0.005536,0.004864,0.007392,0.098432,0.004768
+682,1340.97,0.745728,0.357088,0.004864,0.21504,0.008192,0.008192,0.006144,0.005952,0.006368,0.096224,0.006112
+683,1214.53,0.823364,0.350208,0.006144,0.205856,0.007136,0.009728,0.006016,0.005824,0.0064,0.098464,0.00464
+684,1436.19,0.696289,0.352352,0.005408,0.207584,0.00816,0.008224,0.006016,0.006112,0.0064,0.09936,0.005088
+685,1243.1,0.804443,0.347872,0.005408,0.20576,0.008192,0.007872,0.006048,0.005952,0.0064,0.096672,0.005568
+686,1344.27,0.743896,0.348224,0.004736,0.207968,0.00816,0.00912,0.006176,0.006112,0.006144,0.094208,0.0056
+687,556.257,1.79773,0.382688,0.006176,0.214368,0.008192,0.008736,0.00624,0.006144,0.015872,0.09472,0.02224
+688,699.513,1.42957,0.373088,0.007808,0.228096,0.00816,0.009312,0.006048,0.006368,0.006432,0.09472,0.006144
+689,1330.95,0.751343,0.350208,0.004544,0.210048,0.008256,0.008544,0.00608,0.005824,0.006432,0.094688,0.005792
+690,1399.62,0.714478,0.354304,0.006144,0.20624,0.008192,0.0088,0.006144,0.006144,0.006144,0.101728,0.004768
+691,1333.55,0.749878,0.350208,0.006144,0.206272,0.00816,0.008288,0.006016,0.005824,0.006432,0.096928,0.006144
+692,1320.44,0.757324,0.35072,0.004608,0.2048,0.008224,0.00816,0.006144,0.006144,0.006144,0.100384,0.006112
+693,1232.06,0.811646,0.348224,0.004544,0.204768,0.008192,0.008192,0.006016,0.005888,0.006432,0.0984,0.005792
+694,1100.34,0.908813,0.347232,0.006144,0.204416,0.008192,0.008544,0.006176,0.005888,0.006432,0.09616,0.00528
+695,1555.64,0.642822,0.528384,0.005376,0.38784,0.008192,0.008192,0.006144,0.006144,0.006144,0.095936,0.004416
+696,694.002,1.44092,0.367328,0.006848,0.223232,0.008192,0.008192,0.006176,0.006112,0.006144,0.097824,0.004608
+697,1312.61,0.761841,0.352256,0.005696,0.209344,0.008192,0.009568,0.005984,0.00496,0.007296,0.096736,0.00448
+698,1387.06,0.720947,0.345632,0.006176,0.20272,0.008192,0.009792,0.006112,0.005824,0.0064,0.094752,0.005664
+699,1310.93,0.762817,0.346144,0.005984,0.20496,0.008192,0.008192,0.006144,0.006144,0.006144,0.09552,0.004864
+700,1345.38,0.743286,0.346112,0.006016,0.204928,0.008192,0.009664,0.006048,0.005856,0.0064,0.09424,0.004768
+701,1284.42,0.778564,0.34416,0.005376,0.203616,0.008192,0.008192,0.006176,0.006112,0.006176,0.095904,0.004416
+702,1311.35,0.762573,0.350272,0.005408,0.2056,0.008224,0.00816,0.006144,0.006048,0.00624,0.099488,0.00496
+703,743.511,1.34497,0.41008,0.004768,0.26432,0.009216,0.007072,0.006112,0.006176,0.006176,0.100288,0.005952
+704,863.406,1.1582,0.382976,0.008192,0.233472,0.00816,0.008224,0.006144,0.005792,0.006496,0.101728,0.004768
+705,1297.23,0.770874,0.34864,0.004576,0.206848,0.008192,0.009888,0.00608,0.005792,0.006432,0.096352,0.00448
+706,1382.15,0.723511,0.348192,0.006144,0.2048,0.008224,0.008352,0.005952,0.006176,0.006208,0.097664,0.004672
+707,1325.35,0.754517,0.351648,0.005568,0.205056,0.00816,0.008544,0.006144,0.006112,0.006176,0.100352,0.005536
+708,1218.87,0.820435,0.348384,0.005408,0.203712,0.008128,0.009664,0.00608,0.004992,0.007232,0.098208,0.00496
+709,1352.48,0.73938,0.346112,0.006112,0.203872,0.00816,0.008192,0.005216,0.006016,0.00624,0.097344,0.00496
+710,1414.61,0.706909,0.352256,0.005696,0.207296,0.008192,0.00832,0.006016,0.006144,0.006144,0.098304,0.006144
+711,1274.42,0.784668,0.356352,0.006048,0.212832,0.00816,0.00848,0.006144,0.005856,0.006432,0.097664,0.004736
+712,510.882,1.9574,0.395296,0.008128,0.249728,0.008192,0.008384,0.006048,0.005824,0.006432,0.098208,0.004352
+713,1213.45,0.824097,0.38432,0.006016,0.220896,0.008128,0.008672,0.00608,0.005792,0.00656,0.1024,0.019776
+714,1213.27,0.824219,0.354432,0.005088,0.210272,0.007936,0.00912,0.005888,0.005856,0.006464,0.098464,0.005344
+715,1256.25,0.796021,0.348352,0.004448,0.205984,0.00816,0.008128,0.005184,0.006016,0.006272,0.098176,0.005984
+716,1468.1,0.681152,0.355456,0.006112,0.20688,0.008192,0.00928,0.005216,0.006016,0.007136,0.10128,0.005344
+717,1238.21,0.807617,0.353632,0.005568,0.207008,0.008,0.0088,0.006144,0.005952,0.006336,0.100352,0.005472
+718,930.592,1.07458,0.36224,0.005408,0.217952,0.008192,0.0096,0.006048,0.004992,0.0072,0.097088,0.00576
+719,654.888,1.52698,0.409888,0.007776,0.254688,0.008288,0.018304,0.007328,0.00608,0.00624,0.096608,0.004576
+720,1249.16,0.800537,0.365888,0.006144,0.223232,0.008192,0.008416,0.005984,0.00608,0.006144,0.096256,0.00544
+721,1409.74,0.709351,0.34864,0.004576,0.206848,0.008192,0.00944,0.006048,0.004992,0.007232,0.095168,0.006144
+722,1342.73,0.744751,0.372736,0.005888,0.231392,0.008128,0.008128,0.006016,0.005824,0.006432,0.094784,0.006144
+723,1288.46,0.776123,0.352288,0.005632,0.207296,0.008032,0.008,0.005856,0.005888,0.0064,0.099008,0.006176
+724,1380.75,0.724243,0.352256,0.006016,0.206976,0.008192,0.008192,0.006144,0.006016,0.006272,0.099616,0.004832
+725,1224.15,0.816895,0.349984,0.006016,0.204608,0.008128,0.00816,0.006048,0.00592,0.0064,0.098784,0.00592
+726,1311.35,0.762573,0.394816,0.006144,0.248896,0.00736,0.007936,0.006144,0.007296,0.006432,0.098912,0.005696
+727,584.725,1.71021,0.399104,0.00784,0.254304,0.008192,0.008192,0.006144,0.006144,0.006144,0.096256,0.005888
+728,1481.64,0.674927,0.352864,0.004704,0.210944,0.008192,0.008192,0.006144,0.005984,0.006304,0.096256,0.006144
+729,1268.9,0.788086,0.362528,0.005376,0.217376,0.00816,0.008768,0.006144,0.006016,0.006272,0.098304,0.006112
+730,531.224,1.88245,0.55504,0.005792,0.410176,0.008192,0.008256,0.007104,0.006432,0.006784,0.096352,0.005952
+731,1011.23,0.988892,0.350144,0.00544,0.207776,0.008192,0.009568,0.006304,0.005888,0.006432,0.094688,0.005856
+732,1330.52,0.751587,0.358528,0.005088,0.21472,0.008128,0.008384,0.006048,0.006048,0.006432,0.0984,0.00528
+733,595.089,1.68042,0.38336,0.007168,0.23552,0.008192,0.009312,0.005184,0.005984,0.0064,0.100096,0.005504
+734,1366.93,0.731567,0.358048,0.006112,0.210144,0.008192,0.008352,0.005024,0.005888,0.006304,0.10224,0.005792
+735,1231.69,0.81189,0.3488,0.004736,0.206848,0.008192,0.008192,0.006144,0.006144,0.006144,0.097888,0.004512
+736,1285.02,0.778198,0.354464,0.005408,0.212,0.00816,0.008192,0.006144,0.006144,0.006112,0.096288,0.006016
+737,1375.42,0.727051,0.352736,0.004992,0.208896,0.008192,0.0096,0.006048,0.005984,0.0064,0.096896,0.005728
+738,645.039,1.55029,0.356352,0.005376,0.209696,0.00816,0.008096,0.006016,0.005824,0.0064,0.100864,0.00592
+739,1360.57,0.734985,0.37232,0.00608,0.227392,0.008192,0.008192,0.006144,0.006144,0.006144,0.098304,0.005728
+740,1073.09,0.931885,0.691072,0.005024,0.495136,0.02912,0.036096,0.006336,0.005856,0.0064,0.10096,0.006144
+741,687.075,1.45544,0.354112,0.004544,0.214816,0.008128,0.008288,0.006048,0.006048,0.0064,0.09424,0.0056
+742,1523.53,0.656372,0.356544,0.004576,0.21216,0.00816,0.008928,0.006144,0.00608,0.00624,0.098272,0.005984
+743,1250.69,0.799561,0.350208,0.005568,0.205376,0.008224,0.01024,0.006112,0.006144,0.006336,0.09728,0.004928
+744,1410.23,0.709106,0.350208,0.005632,0.20736,0.008192,0.008352,0.005984,0.006144,0.006144,0.096256,0.006144
+745,1292.11,0.773926,0.347648,0.0056,0.205632,0.00816,0.008384,0.006144,0.006176,0.006304,0.095872,0.005376
+746,1321.29,0.756836,0.34816,0.006144,0.205888,0.008128,0.008384,0.006048,0.005024,0.007168,0.095232,0.006144
+747,1242.53,0.80481,0.361152,0.0048,0.219136,0.008192,0.008192,0.006176,0.006112,0.006144,0.097984,0.004416
+748,546.716,1.8291,0.37792,0.008032,0.233632,0.008192,0.008192,0.006144,0.006144,0.006144,0.096096,0.005344
+749,1516.48,0.659424,0.353888,0.004608,0.21008,0.009056,0.008256,0.00608,0.006144,0.006336,0.098016,0.005312
+750,1248.21,0.801147,0.348736,0.004672,0.206848,0.008192,0.008224,0.006112,0.006144,0.006144,0.09808,0.00432
+751,1430.17,0.699219,0.351136,0.005056,0.208288,0.008736,0.008224,0.006176,0.006112,0.006144,0.097856,0.004544
+752,1282,0.780029,0.35056,0.004576,0.206176,0.00816,0.008064,0.006048,0.004992,0.007264,0.10032,0.00496
+753,1249.16,0.800537,0.356512,0.005408,0.209792,0.008192,0.008192,0.006144,0.006176,0.006144,0.102048,0.004416
+754,1256.63,0.795776,0.355424,0.005888,0.207104,0.008192,0.008192,0.006144,0.006176,0.006112,0.10192,0.005696
+755,969.353,1.03162,0.363968,0.00544,0.217696,0.008256,0.008224,0.006144,0.007296,0.006112,0.099232,0.005568
+756,746.288,1.33997,0.392608,0.008192,0.241568,0.008192,0.008288,0.006144,0.006144,0.00624,0.102304,0.005536
+757,1351.82,0.739746,0.35712,0.004864,0.210976,0.00816,0.008192,0.007392,0.005952,0.006432,0.100832,0.00432
+758,1396.05,0.716309,0.358432,0.005952,0.210944,0.008384,0.008352,0.005984,0.006144,0.006144,0.101824,0.004704
+759,1329.44,0.752197,0.354336,0.00544,0.2096,0.008192,0.008192,0.006144,0.006144,0.006144,0.09968,0.0048
+760,1305.29,0.766113,0.350368,0.005408,0.204864,0.008736,0.008384,0.00608,0.005792,0.0064,0.09968,0.005024
+761,1321.93,0.75647,0.351776,0.005696,0.2032,0.008192,0.008288,0.006048,0.006144,0.006176,0.102368,0.005664
+762,1233.73,0.810547,0.350048,0.005408,0.20464,0.008128,0.008256,0.00608,0.005088,0.00736,0.099136,0.005952
+763,1352.04,0.739624,0.359392,0.005088,0.217088,0.007776,0.008416,0.005984,0.005792,0.0064,0.097952,0.004896
+764,648.306,1.54248,0.38096,0.008192,0.235488,0.008128,0.00832,0.006112,0.005792,0.006432,0.097888,0.004608
+765,1338.56,0.74707,0.356352,0.006144,0.210464,0.008096,0.008128,0.00672,0.005856,0.0064,0.0984,0.006144
+766,1328.58,0.752686,0.350336,0.005376,0.205184,0.008128,0.0088,0.006144,0.006144,0.006144,0.098304,0.006112
+767,1397.71,0.715454,0.354304,0.00592,0.207072,0.008224,0.009184,0.005216,0.006048,0.006304,0.100192,0.006144
+768,1283.61,0.779053,0.352192,0.005536,0.205152,0.00816,0.008192,0.006048,0.005856,0.006432,0.100736,0.00608
+769,1307.37,0.764893,0.35152,0.006144,0.206848,0.008192,0.009344,0.00608,0.005056,0.0072,0.097248,0.005408
+770,1227.63,0.814575,0.346656,0.00464,0.206048,0.00816,0.008352,0.00608,0.00608,0.006432,0.095968,0.004896
+771,1158.7,0.863037,0.360032,0.004672,0.21824,0.00816,0.008704,0.006016,0.006464,0.006368,0.096128,0.00528
+772,827.893,1.20789,0.61456,0.004704,0.423936,0.038816,0.024192,0.006048,0.00608,0.006432,0.098656,0.005696
+773,1071.69,0.933105,0.37888,0.005984,0.229536,0.008192,0.00832,0.007456,0.00608,0.006432,0.102016,0.004864
+774,1203.64,0.830811,0.387072,0.006144,0.239616,0.008192,0.008352,0.005984,0.006144,0.006144,0.101728,0.004768
+775,1385.66,0.72168,0.380864,0.004736,0.233472,0.008192,0.008192,0.006144,0.006144,0.006144,0.1024,0.00544
+776,1271.26,0.786621,0.36,0.006144,0.20992,0.007168,0.009824,0.00608,0.005824,0.006432,0.102912,0.005696
+777,1223.78,0.817139,0.353024,0.004864,0.206848,0.00816,0.010176,0.00608,0.005984,0.006464,0.099616,0.004832
+778,1322.78,0.755981,0.353376,0.005408,0.207552,0.008128,0.008352,0.006048,0.0056,0.0064,0.100544,0.005344
+779,1406.83,0.710815,0.356448,0.005376,0.211584,0.00816,0.01024,0.00608,0.005952,0.006432,0.097888,0.004736
+780,934.626,1.06995,0.612864,0.004608,0.432128,0.045056,0.008192,0.006144,0.006144,0.006272,0.099456,0.004864
+781,789.21,1.26709,0.361376,0.005024,0.212064,0.008192,0.008672,0.006112,0.005824,0.006432,0.10432,0.004736
+782,1486.48,0.672729,0.3584,0.0056,0.211488,0.007968,0.008224,0.006048,0.005984,0.006016,0.102144,0.004928
+783,1380.52,0.724365,0.360064,0.005504,0.209536,0.008192,0.01024,0.006144,0.006112,0.006176,0.1024,0.00576
+784,1263.42,0.791504,0.357728,0.005536,0.211008,0.008128,0.008384,0.00656,0.006144,0.006144,0.100352,0.005472
+785,1318.53,0.758423,0.361312,0.005056,0.212992,0.008192,0.008192,0.006144,0.006144,0.006144,0.1024,0.006048
+786,1235.22,0.80957,0.354304,0.00544,0.207552,0.008192,0.008192,0.006144,0.006176,0.006368,0.101248,0.004992
+787,744.186,1.34375,0.364544,0.006144,0.219232,0.008192,0.0096,0.006112,0.006048,0.0064,0.098464,0.004352
+788,1029.4,0.971436,0.597664,0.005408,0.443232,0.018432,0.008352,0.007168,0.004992,0.007328,0.097088,0.005664
+789,886.868,1.12756,0.387744,0.004768,0.240864,0.008032,0.0088,0.00608,0.00656,0.006144,0.101984,0.004512
+790,1068.61,0.935791,0.395584,0.00464,0.237248,0.008128,0.008384,0.016352,0.007776,0.005824,0.101088,0.006144
+791,1135.26,0.880859,0.44624,0.005632,0.288448,0.008192,0.008096,0.006144,0.005024,0.006368,0.112416,0.00592
+792,899.133,1.11218,1.65683,0.005824,1.5097,0.008192,0.008192,0.006176,0.0072,0.006432,0.098976,0.006144
+793,387.916,2.57788,0.561824,0.004768,0.413696,0.008192,0.009536,0.006464,0.006528,0.006144,0.101792,0.004704
+794,776.787,1.28735,0.563008,0.008,0.41184,0.008224,0.009312,0.006304,0.006272,0.0064,0.100704,0.005952
+795,657.781,1.52026,0.366592,0.005408,0.217024,0.008288,0.008704,0.00608,0.005824,0.006496,0.10368,0.005088
+796,1256.83,0.795654,0.360288,0.005376,0.209696,0.00816,0.009696,0.006208,0.00592,0.006432,0.102816,0.005984
+797,1254.9,0.796875,0.369568,0.005024,0.21664,0.00816,0.008704,0.006144,0.006112,0.006208,0.108192,0.004384
+798,1273.83,0.785034,0.362496,0.005984,0.212544,0.008128,0.00864,0.006016,0.005824,0.006432,0.10448,0.004448
+799,1213.99,0.82373,0.37888,0.005408,0.230144,0.00816,0.008192,0.006176,0.006112,0.006144,0.104192,0.004352
+800,673.463,1.48486,0.673632,0.006048,0.442048,0.01056,0.081312,0.00608,0.016864,0.006336,0.098304,0.00608
+801,1042.37,0.959351,0.427904,0.005984,0.256064,0.008128,0.008352,0.014336,0.007424,0.006496,0.115104,0.006016
+802,1343.39,0.744385,0.35584,0.005472,0.210784,0.00816,0.008384,0.006016,0.004992,0.0072,0.0992,0.005632
+803,1355.84,0.737549,0.359456,0.006144,0.21088,0.00816,0.009952,0.006368,0.00624,0.006208,0.100064,0.00544
+804,941.068,1.06262,0.36848,0.005408,0.225504,0.00816,0.00848,0.006048,0.006528,0.005888,0.096736,0.005728
+805,1372.65,0.728516,0.378912,0.006144,0.229408,0.00816,0.008192,0.006144,0.006144,0.006144,0.104128,0.004448
+806,1275.02,0.784302,0.374048,0.005856,0.229664,0.008192,0.008192,0.006144,0.006016,0.006016,0.09856,0.005408
+807,862.316,1.15967,0.660736,0.005696,0.514496,0.01024,0.008192,0.006144,0.006112,0.006208,0.098272,0.005376
+808,869.916,1.14954,0.36576,0.006144,0.222336,0.00816,0.008352,0.00608,0.004928,0.007392,0.097056,0.005312
+809,1464.43,0.682861,0.356,0.005408,0.209632,0.008192,0.009984,0.006208,0.005984,0.006432,0.098368,0.005792
+810,1248.78,0.800781,0.353952,0.004608,0.205952,0.008128,0.009152,0.006144,0.006144,0.006144,0.102336,0.005344
+811,1408.04,0.710205,0.355808,0.005408,0.209024,0.008128,0.00912,0.006144,0.005984,0.006304,0.100352,0.005344
+812,1278.8,0.781982,0.354112,0.004544,0.21088,0.008192,0.008224,0.006112,0.006144,0.006144,0.098304,0.005568
+813,1299.7,0.769409,0.357344,0.005088,0.206848,0.008224,0.00816,0.006144,0.006144,0.006144,0.105984,0.004608
+814,1213.27,0.824219,0.358624,0.004544,0.210912,0.008192,0.008192,0.006144,0.006144,0.006144,0.1024,0.005952
+815,986.275,1.01392,0.597696,0.004576,0.43744,0.018624,0.008736,0.006144,0.006144,0.006304,0.104288,0.00544
+816,796.422,1.25562,0.354752,0.004544,0.208896,0.008192,0.008192,0.006144,0.005824,0.006432,0.100416,0.006112
+817,1422.72,0.702881,0.35328,0.006144,0.208608,0.00816,0.008128,0.00608,0.005632,0.006432,0.098752,0.005344
+818,1154.45,0.866211,0.349984,0.005536,0.205408,0.008224,0.008192,0.006112,0.006048,0.00624,0.098304,0.00592
+819,1417.55,0.705444,0.357696,0.004384,0.212896,0.008288,0.008352,0.005984,0.006176,0.006112,0.100224,0.00528
+820,1189.14,0.840942,0.40528,0.00448,0.257824,0.00816,0.008352,0.005792,0.005824,0.0064,0.102912,0.005536
+821,1277.8,0.782593,0.366464,0.005408,0.208992,0.00816,0.00896,0.006048,0.006144,0.006144,0.110592,0.006016
+822,777.156,1.28674,0.3584,0.005792,0.20928,0.00816,0.009344,0.005024,0.006112,0.006176,0.102368,0.006144
+823,640.751,1.56067,0.422496,0.00784,0.271072,0.00816,0.008448,0.006144,0.006112,0.006176,0.103584,0.00496
+824,1294.97,0.772217,0.362976,0.004768,0.212992,0.008192,0.008544,0.005856,0.00608,0.00624,0.104352,0.005952
+825,1172.46,0.852905,0.426496,0.004992,0.247808,0.008192,0.009376,0.015232,0.006112,0.02048,0.108544,0.00576
+826,1148.79,0.870483,0.384416,0.005472,0.230048,0.008192,0.008192,0.006144,0.006144,0.007264,0.107424,0.005536
+827,1190.35,0.840088,0.380864,0.005824,0.229696,0.008192,0.009472,0.00608,0.004928,0.006304,0.104288,0.00608
+828,1269.29,0.787842,0.368032,0.006048,0.21888,0.00816,0.008384,0.005856,0.005952,0.00608,0.102944,0.005728
+829,1236.53,0.808716,0.357952,0.006144,0.210944,0.00816,0.010016,0.006112,0.005856,0.006528,0.098496,0.005696
+830,1168.12,0.856079,0.536256,0.005408,0.38784,0.008192,0.008384,0.006048,0.006112,0.006304,0.1024,0.005568
+831,618.404,1.61707,0.377216,0.007776,0.227968,0.008192,0.008384,0.006112,0.006016,0.006272,0.102016,0.00448
+832,1273.04,0.785522,0.355872,0.005728,0.207264,0.008192,0.008416,0.005952,0.006112,0.006208,0.102336,0.005664
+833,1255.48,0.796509,0.355328,0.006144,0.206848,0.00816,0.008224,0.006144,0.006144,0.006144,0.10224,0.00528
+834,1417.06,0.705688,0.356352,0.00576,0.208416,0.00816,0.009056,0.006048,0.005856,0.0064,0.100512,0.006144
+835,1276.81,0.783203,0.355872,0.006144,0.2048,0.008192,0.01024,0.006144,0.00592,0.0064,0.102368,0.005664
+836,1323.21,0.755737,0.357856,0.006016,0.206304,0.00816,0.008896,0.006144,0.006144,0.00608,0.104512,0.0056
+837,811.571,1.23218,0.366592,0.006144,0.21904,0.00816,0.00832,0.006144,0.006144,0.006144,0.101888,0.004608
+838,726.434,1.37659,0.383392,0.007936,0.230016,0.008192,0.00832,0.006016,0.006144,0.006368,0.1056,0.0048
+839,1135.41,0.880737,0.362528,0.006176,0.21296,0.00816,0.008224,0.006144,0.007296,0.004992,0.104096,0.00448
+840,1576.6,0.634277,0.366112,0.005408,0.21136,0.008128,0.008288,0.006048,0.005824,0.0064,0.109152,0.005504
+841,1257.21,0.79541,0.357824,0.004544,0.2048,0.00816,0.009504,0.00608,0.004992,0.007232,0.107168,0.005344
+842,1289.47,0.775513,0.355264,0.005056,0.208064,0.00816,0.008384,0.006656,0.005888,0.006432,0.101856,0.004768
+843,1318.31,0.758545,0.357984,0.006144,0.210944,0.008192,0.008224,0.007456,0.005856,0.0064,0.09904,0.005728
+844,1319.8,0.75769,0.354016,0.004576,0.206848,0.008192,0.008192,0.006144,0.006176,0.006112,0.1024,0.005376
+845,1192.95,0.838257,0.35904,0.004736,0.210944,0.008192,0.009568,0.006368,0.00592,0.0064,0.1024,0.004512
+846,568.534,1.75891,0.391168,0.007872,0.239936,0.008192,0.008224,0.006112,0.006144,0.006144,0.1024,0.006144
+847,1468.36,0.68103,0.366208,0.006144,0.218624,0.008224,0.008032,0.006144,0.005856,0.006432,0.100992,0.00576
+848,1257.21,0.79541,0.362432,0.005984,0.2152,0.008128,0.008288,0.006112,0.006144,0.006144,0.100352,0.00608
+849,420.318,2.37915,0.541824,0.005792,0.393632,0.00816,0.00832,0.006112,0.006144,0.006208,0.102144,0.005312
+850,635.729,1.573,0.653664,0.00624,0.396832,0.00816,0.008416,0.006272,0.005632,0.00704,0.21056,0.004512
+851,564.148,1.77258,0.362496,0.008192,0.213024,0.008256,0.009216,0.005216,0.005952,0.006368,0.101312,0.00496
+852,1383.78,0.722656,0.354208,0.005472,0.2112,0.008192,0.008128,0.006048,0.005824,0.006432,0.096864,0.006048
+853,1246.5,0.802246,0.356032,0.005632,0.207328,0.00816,0.010016,0.006048,0.005792,0.0064,0.100832,0.005824
+854,1161.82,0.860718,0.362784,0.004864,0.217088,0.008192,0.008192,0.006176,0.006112,0.005984,0.100512,0.005664
+855,1336.38,0.748291,0.362496,0.006144,0.212992,0.008192,0.008224,0.006112,0.006144,0.006144,0.103488,0.005056
+856,1324.28,0.755127,0.35728,0.005024,0.208896,0.008192,0.009248,0.006656,0.006528,0.00624,0.1016,0.004896
+857,1314.51,0.760742,0.360832,0.004576,0.214848,0.008192,0.008288,0.006144,0.005856,0.006432,0.101504,0.004992
+858,856.993,1.16687,0.616064,0.006144,0.468224,0.010592,0.008512,0.006048,0.005856,0.006624,0.098304,0.00576
+859,778.781,1.28406,0.368288,0.004544,0.210816,0.008192,0.021504,0.005216,0.006048,0.006304,0.100192,0.005472
+860,1396.52,0.716064,0.369312,0.004768,0.208576,0.022848,0.009696,0.006016,0.005888,0.0064,0.100512,0.004608
+861,1209.87,0.826538,0.36464,0.00464,0.204352,0.00816,0.007808,0.021376,0.006112,0.006144,0.100352,0.005696
+862,1421.48,0.703491,0.358784,0.00448,0.212192,0.008192,0.008128,0.00624,0.005984,0.0064,0.101024,0.006144
+863,1203.82,0.830688,0.349408,0.005408,0.205664,0.008192,0.008192,0.006144,0.006144,0.006144,0.09824,0.00528
+864,1409.01,0.709717,0.353984,0.005408,0.207872,0.008192,0.008192,0.007264,0.005024,0.007232,0.099264,0.005536
+865,1268.31,0.788452,0.358432,0.006144,0.210336,0.008224,0.008736,0.005888,0.005792,0.006464,0.102336,0.004512
+866,549.836,1.81873,0.382976,0.006976,0.2312,0.00816,0.008416,0.006112,0.006208,0.006144,0.104416,0.005344
+867,1347.15,0.74231,0.357152,0.004928,0.208864,0.008192,0.009856,0.00608,0.005824,0.0064,0.102144,0.004864
+868,1342.51,0.744873,0.364544,0.005792,0.211296,0.008192,0.008224,0.00576,0.005792,0.006432,0.106912,0.006144
+869,1322.57,0.756104,0.3688,0.005408,0.205696,0.008192,0.008192,0.006048,0.005952,0.006432,0.1024,0.02048
+870,1094.75,0.913452,0.377248,0.004864,0.225152,0.008128,0.008384,0.006016,0.006272,0.006144,0.106496,0.005792
+871,1302.38,0.767822,0.356736,0.00448,0.204832,0.00816,0.009344,0.00608,0.005056,0.00736,0.10528,0.006144
+872,829.402,1.20569,0.411648,0.005472,0.25872,0.008192,0.008352,0.005984,0.006144,0.006144,0.107712,0.004928
+873,892.278,1.12073,0.603424,0.005344,0.44736,0.01024,0.009216,0.005216,0.006048,0.006304,0.108352,0.005344
+874,1017.13,0.983154,0.370432,0.005664,0.21552,0.008224,0.009568,0.006016,0.004992,0.007264,0.107296,0.005888
+875,1225.61,0.815918,0.356384,0.004608,0.208864,0.008192,0.008192,0.006176,0.006112,0.006144,0.1024,0.005696
+876,1355.39,0.737793,0.361152,0.0048,0.21232,0.008128,0.008352,0.005856,0.004992,0.007232,0.103328,0.006144
+877,1303.42,0.767212,0.359456,0.005792,0.211296,0.008192,0.008288,0.00608,0.0072,0.006432,0.100864,0.005312
+878,1271.65,0.786377,0.3584,0.005888,0.208512,0.008096,0.008384,0.005888,0.006176,0.006432,0.104064,0.00496
+879,1239.33,0.806885,0.359936,0.005728,0.206752,0.008224,0.008352,0.006048,0.0048,0.007168,0.107232,0.005632
+880,1308.63,0.76416,0.366112,0.00544,0.213696,0.008192,0.009952,0.006048,0.005792,0.006432,0.104896,0.005664
+881,1019.41,0.980957,0.596384,0.004832,0.446464,0.01024,0.008192,0.006176,0.006112,0.006144,0.1024,0.005824
+882,879.725,1.13672,0.366624,0.006144,0.217088,0.00816,0.008224,0.006144,0.006144,0.006144,0.104032,0.004544
+883,1229.85,0.81311,0.361536,0.005952,0.2088,0.00816,0.010144,0.006016,0.005888,0.006432,0.104832,0.005312
+884,1397.95,0.715332,0.356352,0.005632,0.20736,0.008192,0.008224,0.00592,0.005888,0.006432,0.10432,0.004384
+885,1277.01,0.783081,0.361536,0.005696,0.206528,0.008704,0.008448,0.006144,0.006176,0.006112,0.108416,0.005312
+886,1279,0.78186,0.354752,0.004512,0.2048,0.008192,0.009984,0.006304,0.005984,0.0064,0.103712,0.004864
+887,1223.97,0.817017,0.346912,0.004928,0.20272,0.008192,0.008192,0.006144,0.006144,0.006144,0.10016,0.004288
+888,1363.97,0.733154,0.359648,0.005824,0.209216,0.008192,0.008192,0.006144,0.006048,0.006208,0.104096,0.005728
+889,1147.02,0.871826,0.536576,0.00576,0.387264,0.008192,0.008384,0.006176,0.006048,0.00624,0.102368,0.006144
+890,675.517,1.48035,0.376224,0.007776,0.227936,0.008128,0.008352,0.00608,0.006048,0.006144,0.100416,0.005344
+891,1504.5,0.664673,0.353344,0.005952,0.204992,0.008192,0.008192,0.006144,0.006144,0.006176,0.102176,0.005376
+892,1377.27,0.726074,0.35536,0.006144,0.208416,0.008224,0.00864,0.006144,0.005856,0.006432,0.100192,0.005312
+893,1289.88,0.775269,0.350208,0.006016,0.204928,0.008192,0.008192,0.006144,0.006144,0.006144,0.098336,0.006112
+894,1306.75,0.765259,0.352032,0.005728,0.205216,0.008192,0.008192,0.006144,0.006144,0.006144,0.100352,0.00592
+895,1262.83,0.79187,0.352256,0.00544,0.205504,0.008192,0.008192,0.006048,0.005824,0.005984,0.102656,0.004416
+896,1358.99,0.73584,0.37312,0.004736,0.227328,0.008192,0.008192,0.006144,0.006144,0.006144,0.100352,0.005888
+897,1048.64,0.953613,0.534528,0.0056,0.385568,0.008192,0.008192,0.006144,0.006144,0.006144,0.103744,0.0048
+898,803.925,1.2439,0.360416,0.008192,0.212992,0.008192,0.008256,0.007488,0.006112,0.0064,0.096672,0.006112
+899,1310.51,0.763062,0.35264,0.004736,0.206784,0.00816,0.008256,0.006016,0.005792,0.006432,0.100576,0.005888
+900,1355.17,0.737915,0.356352,0.006144,0.208128,0.00816,0.008864,0.006048,0.005984,0.006432,0.101664,0.004928
+901,1310.93,0.762817,0.35456,0.005408,0.20576,0.008192,0.00928,0.005248,0.005952,0.006176,0.103776,0.004768
+902,1293.95,0.772827,0.353024,0.004864,0.208448,0.008128,0.008704,0.00608,0.006048,0.006304,0.099808,0.00464
+903,1279.6,0.781494,0.35024,0.005632,0.205312,0.008192,0.008192,0.006144,0.006176,0.006112,0.099968,0.004512
+904,1371.28,0.729248,0.356352,0.005472,0.206912,0.00816,0.008832,0.006176,0.006112,0.006176,0.103936,0.004576
+905,1068.34,0.936035,0.3584,0.005824,0.207168,0.00816,0.008224,0.006144,0.006144,0.006144,0.104448,0.006144
+906,832.52,1.20117,0.382912,0.008192,0.233088,0.008128,0.008384,0.006016,0.005984,0.006432,0.100608,0.00608
+907,1293.75,0.772949,0.352544,0.005504,0.207808,0.00816,0.009344,0.006048,0.005088,0.0064,0.099744,0.004448
+908,1372.88,0.728394,0.3584,0.004704,0.210944,0.008192,0.008192,0.006144,0.006144,0.006144,0.1024,0.005536
+909,501.408,1.99438,0.558752,0.00592,0.408864,0.008192,0.008736,0.006336,0.006368,0.006144,0.1024,0.005792
+910,1108.38,0.902222,0.356928,0.004672,0.210176,0.00816,0.008096,0.006048,0.005088,0.006336,0.10352,0.004832
+911,1307.58,0.764771,0.35584,0.006144,0.206048,0.008192,0.008704,0.005984,0.005856,0.0064,0.10288,0.005632
+912,1296,0.771606,0.534496,0.004768,0.387072,0.008192,0.008192,0.006176,0.006048,0.006208,0.1024,0.00544
+913,699.812,1.42896,0.360192,0.007968,0.209184,0.008192,0.008768,0.00592,0.005824,0.006432,0.10256,0.005344
+914,1340.97,0.745728,0.359488,0.005824,0.207168,0.01024,0.008192,0.006048,0.005856,0.006432,0.104384,0.005344
+915,1306.12,0.765625,0.354368,0.005024,0.2048,0.008224,0.008032,0.006016,0.005888,0.006432,0.10464,0.005312
+916,1379.59,0.724854,0.356352,0.005728,0.206688,0.00832,0.008544,0.006048,0.005888,0.0064,0.102592,0.006144
+917,1315.56,0.760132,0.35472,0.004544,0.206272,0.00816,0.008288,0.006048,0.005856,0.006432,0.102976,0.006144
+918,1282.81,0.779541,0.354112,0.005632,0.203264,0.008224,0.00992,0.006048,0.005984,0.006432,0.102656,0.005952
+919,1229.29,0.813477,0.354016,0.005376,0.203616,0.008192,0.009792,0.005632,0.005056,0.007168,0.103424,0.00576
+920,1374.96,0.727295,0.53456,0.005408,0.387808,0.008192,0.008192,0.006144,0.006144,0.006144,0.101952,0.004576
+921,573.148,1.74475,0.366624,0.008192,0.214752,0.008128,0.008576,0.007296,0.004992,0.007392,0.10288,0.004416
+922,1327.07,0.75354,0.354272,0.00544,0.205504,0.008224,0.00944,0.006272,0.005888,0.0064,0.100992,0.006112
+923,1318.1,0.758667,0.3528,0.00464,0.20688,0.00816,0.008192,0.006176,0.006112,0.006336,0.101216,0.005088
+924,1419.76,0.704346,0.356992,0.004736,0.208896,0.009984,0.008384,0.006048,0.005952,0.006144,0.100704,0.006144
+925,1249.16,0.800537,0.35264,0.004864,0.20624,0.00832,0.008672,0.006144,0.006144,0.006144,0.100352,0.00576
+926,1060.04,0.943359,0.358816,0.004544,0.212928,0.008192,0.009888,0.006144,0.005824,0.0064,0.100288,0.004608
+927,1363.06,0.733643,0.358592,0.005408,0.209824,0.008192,0.00832,0.007264,0.006304,0.005984,0.102304,0.004992
+928,1472.85,0.678955,0.531776,0.006144,0.385024,0.008192,0.008192,0.006144,0.006176,0.006112,0.100352,0.00544
+929,724.315,1.38062,0.362496,0.008192,0.212544,0.00816,0.008704,0.006112,0.006144,0.00624,0.100256,0.006144
+930,1230.58,0.812622,0.352256,0.005632,0.207136,0.00816,0.008128,0.006048,0.00592,0.006432,0.09984,0.00496
+931,1334.42,0.74939,0.350752,0.005024,0.203776,0.007296,0.009152,0.005184,0.006016,0.007264,0.10128,0.00576
+932,1400.58,0.713989,0.354848,0.00464,0.206848,0.008192,0.008192,0.006144,0.005984,0.006304,0.103776,0.004768
+933,1295.79,0.771729,0.355712,0.006144,0.2048,0.008192,0.008192,0.006176,0.006112,0.006144,0.104448,0.005504
+934,1295.79,0.771729,0.35984,0.005472,0.204576,0.008192,0.009088,0.006112,0.005952,0.006368,0.108544,0.005536
+935,1220.32,0.819458,0.354656,0.004544,0.204672,0.00816,0.007904,0.006048,0.005952,0.006432,0.104896,0.006048
+936,1385.19,0.721924,0.53936,0.004832,0.387072,0.008192,0.008192,0.006144,0.006144,0.006176,0.108224,0.004384
+937,709.08,1.41028,0.360576,0.007808,0.208864,0.008128,0.008,0.006048,0.005248,0.007488,0.102944,0.006048
+938,1286.63,0.777222,0.357344,0.005056,0.206848,0.008224,0.008256,0.006048,0.007264,0.0064,0.10432,0.004928
+939,1295.59,0.771851,0.354304,0.005408,0.205536,0.008192,0.008192,0.006112,0.00576,0.006432,0.102528,0.006144
+940,1339.22,0.746704,0.360512,0.005408,0.205824,0.008224,0.010176,0.006048,0.005792,0.006432,0.106688,0.00592
+941,1244.23,0.803711,0.354304,0.005536,0.20336,0.008192,0.01024,0.006144,0.006112,0.006208,0.104,0.004512
+942,1286.43,0.777344,0.356384,0.006144,0.2048,0.008256,0.00928,0.00672,0.005888,0.0064,0.104128,0.004768
+943,1346.26,0.742798,0.354016,0.005792,0.203104,0.008192,0.008224,0.006112,0.006144,0.006144,0.104448,0.005856
+944,1193.3,0.838013,0.40416,0.0048,0.251904,0.008192,0.009344,0.006048,0.00512,0.007456,0.105152,0.006144
+945,599.181,1.66895,0.36688,0.007136,0.218752,0.00816,0.008608,0.005984,0.00624,0.005344,0.101216,0.00544
+946,1358.09,0.736328,0.356352,0.00608,0.204864,0.008192,0.008192,0.006176,0.005856,0.006432,0.10576,0.0048
+947,1314.51,0.760742,0.3488,0.004736,0.202752,0.008192,0.00816,0.006144,0.006144,0.006176,0.101856,0.00464
+948,1334.2,0.749512,0.352352,0.005408,0.205632,0.008192,0.008192,0.006144,0.006176,0.006112,0.101984,0.004512
+949,1154.45,0.866211,0.346528,0.004576,0.20432,0.00816,0.00816,0.006048,0.005888,0.006432,0.097888,0.005056
+950,1466.52,0.681885,0.354304,0.006144,0.2048,0.008192,0.009536,0.006016,0.00496,0.007328,0.102528,0.0048
+951,1327.07,0.75354,0.35776,0.006112,0.203904,0.00816,0.008288,0.006048,0.005056,0.0072,0.107488,0.005504
+952,1283.61,0.779053,0.3584,0.005408,0.209632,0.008192,0.008256,0.007392,0.005024,0.0072,0.10256,0.004736
+953,614.508,1.62732,0.363968,0.007744,0.215232,0.008192,0.008704,0.007488,0.006016,0.0064,0.09888,0.005312
+954,1268.31,0.788452,0.349504,0.005728,0.203168,0.008192,0.008192,0.006144,0.006016,0.006272,0.100352,0.00544
+955,1344.27,0.743896,0.352288,0.005664,0.20528,0.008192,0.008384,0.005952,0.006176,0.006176,0.10208,0.004384
+956,1397.71,0.715454,0.356352,0.006144,0.2048,0.009408,0.008704,0.005952,0.005952,0.006432,0.102848,0.006112
+957,1268.9,0.788086,0.354272,0.006144,0.202496,0.007936,0.008416,0.00608,0.005824,0.006592,0.104672,0.006112
+958,1333.98,0.749634,0.35424,0.00464,0.204288,0.008128,0.00848,0.006144,0.005856,0.0064,0.104768,0.005536
+959,1200.64,0.832886,0.354432,0.00512,0.202752,0.008192,0.008192,0.006144,0.006048,0.00624,0.106432,0.005312
+960,1433.42,0.697632,0.551904,0.005088,0.39728,0.008192,0.009248,0.005184,0.006048,0.00624,0.10992,0.004704
+961,552.096,1.81128,0.373408,0.006816,0.219136,0.008192,0.008384,0.005984,0.006112,0.006336,0.106304,0.006144
+962,1459.47,0.685181,0.376832,0.00608,0.224384,0.00816,0.008384,0.006048,0.004992,0.007488,0.106368,0.004928
+963,1392.49,0.71814,0.360288,0.004544,0.2048,0.00816,0.008192,0.006144,0.006144,0.006144,0.110592,0.005568
+964,1285.62,0.777832,0.357632,0.005504,0.203392,0.008224,0.009568,0.00608,0.0048,0.007392,0.107296,0.005376
+965,1301.35,0.768433,0.352352,0.005376,0.204896,0.00816,0.008512,0.006048,0.005792,0.006336,0.102368,0.004864
+966,1307.37,0.764893,0.351904,0.005472,0.204768,0.00816,0.008928,0.006176,0.005824,0.006432,0.100352,0.005792
+967,1233.73,0.810547,0.375008,0.004928,0.227328,0.008192,0.008224,0.006112,0.006144,0.006144,0.1024,0.005536
+968,1327.28,0.753418,0.537344,0.004864,0.385088,0.008192,0.008192,0.006144,0.006144,0.006144,0.106496,0.00608
+969,676.075,1.47913,0.376832,0.008192,0.22496,0.008128,0.00816,0.00608,0.005824,0.0064,0.104032,0.005056
+970,1280.4,0.781006,0.360384,0.004672,0.212064,0.00816,0.008352,0.00608,0.005984,0.006432,0.103136,0.005504
+971,1303.01,0.767456,0.354304,0.006016,0.204928,0.008192,0.008192,0.006144,0.006144,0.006144,0.10384,0.004704
+972,533.855,1.87317,0.575872,0.005792,0.424416,0.008224,0.008384,0.00624,0.006144,0.006144,0.104448,0.00608
+973,1085.03,0.921631,0.354304,0.005792,0.206496,0.00816,0.008128,0.006048,0.004992,0.007392,0.10288,0.004416
+974,1151.21,0.868652,0.356352,0.006144,0.206848,0.008192,0.009472,0.006048,0.006016,0.00672,0.102048,0.004864
+975,611.343,1.63574,0.369504,0.006976,0.217088,0.008192,0.00832,0.007648,0.005984,0.0064,0.104384,0.004512
+976,1356.97,0.736938,0.355392,0.00576,0.206304,0.00816,0.008416,0.006016,0.005984,0.006432,0.102944,0.005376
+977,1036.04,0.96521,0.395232,0.005408,0.237696,0.00816,0.008736,0.006496,0.01392,0.00656,0.1024,0.005856
+978,1343.39,0.744385,0.37504,0.005408,0.209504,0.00816,0.008352,0.006368,0.02048,0.006144,0.106176,0.004448
+979,1380.05,0.724609,0.353504,0.006144,0.2048,0.008192,0.008192,0.006144,0.006144,0.006176,0.102336,0.005376
+980,1399.62,0.714478,0.353632,0.005696,0.205248,0.008192,0.008192,0.006144,0.006144,0.006144,0.1024,0.005472
+981,1215.97,0.822388,0.354304,0.005568,0.205376,0.008192,0.008288,0.006048,0.006144,0.007264,0.102304,0.00512
+982,1400.58,0.713989,0.537696,0.005504,0.387712,0.008192,0.008192,0.006144,0.005952,0.006336,0.104352,0.005312
+983,618.731,1.61621,0.370816,0.007808,0.21712,0.00816,0.008672,0.006016,0.005792,0.006272,0.106176,0.0048
+984,1274.62,0.784546,0.353696,0.006144,0.203808,0.007136,0.01024,0.006144,0.006048,0.00624,0.1024,0.005536
+985,1318.74,0.758301,0.353952,0.005632,0.204512,0.006944,0.009312,0.006048,0.00512,0.006368,0.104224,0.005792
+986,1441.75,0.693604,0.356384,0.005696,0.205248,0.009792,0.008416,0.005984,0.006112,0.0064,0.104,0.004736
+987,1272.25,0.786011,0.357376,0.006144,0.202752,0.008192,0.008288,0.00608,0.006112,0.006144,0.10832,0.005344
+988,1225.06,0.816284,0.354144,0.0048,0.202784,0.00816,0.008384,0.005952,0.006144,0.00624,0.106336,0.005344
+989,1290.89,0.774658,0.355744,0.005952,0.204064,0.00816,0.008352,0.006016,0.006464,0.006496,0.104704,0.005536
+990,1303.21,0.767334,0.538624,0.005536,0.3872,0.008224,0.008384,0.006016,0.00592,0.006432,0.105888,0.005024
+991,709.94,1.40857,0.364544,0.008192,0.208928,0.008192,0.01024,0.006112,0.005984,0.006304,0.104448,0.006144
+992,1292.32,0.773804,0.353344,0.005984,0.202816,0.00816,0.008096,0.006048,0.005824,0.006432,0.104768,0.005216
+993,1310.51,0.763062,0.356128,0.005664,0.205184,0.00816,0.00832,0.006144,0.006144,0.006048,0.104544,0.00592
+994,1383.32,0.7229,0.356384,0.005568,0.205376,0.008192,0.008192,0.006144,0.006144,0.006144,0.10608,0.004544
+995,688.982,1.45142,0.387104,0.005408,0.229632,0.008192,0.008704,0.006048,0.006144,0.014432,0.10368,0.004864
+996,1389.89,0.719482,0.38096,0.005728,0.227744,0.009376,0.008384,0.006016,0.0064,0.006432,0.106272,0.004608
+997,1173.47,0.852173,0.359872,0.005792,0.2072,0.008192,0.009344,0.006048,0.005088,0.007232,0.105408,0.005568
+998,565.668,1.76782,0.371072,0.007808,0.21984,0.008192,0.008064,0.006272,0.00576,0.005824,0.103232,0.00608
+999,1595.64,0.626709,0.361664,0.006144,0.2048,0.009984,0.008192,0.006016,0.006528,0.006144,0.108544,0.005312
+1000,1215.97,0.822388,0.35616,0.006048,0.202848,0.008416,0.009792,0.006016,0.005856,0.0064,0.104864,0.00592
+1001,1360.57,0.734985,0.35904,0.004704,0.206848,0.008192,0.008192,0.006176,0.006112,0.006144,0.107872,0.0048
+1002,1153.48,0.866943,0.356192,0.006144,0.202752,0.008256,0.009216,0.005216,0.005984,0.006304,0.106336,0.005984
+1003,1426.68,0.700928,0.356384,0.006144,0.202752,0.008192,0.008352,0.005984,0.006144,0.006176,0.108096,0.004544
+1004,1316.41,0.759644,0.357088,0.004864,0.204768,0.008192,0.008192,0.006144,0.005984,0.006304,0.10832,0.00432
+1005,1297.85,0.770508,0.384896,0.004992,0.233248,0.008416,0.00816,0.006112,0.005824,0.006432,0.1064,0.005312
+1006,523.25,1.91113,0.37856,0.007776,0.221024,0.00816,0.008352,0.006688,0.005984,0.006336,0.108512,0.005728
+1007,1346.26,0.742798,0.354752,0.004576,0.204768,0.008192,0.008192,0.006144,0.006144,0.006144,0.105952,0.00464
+1008,1305.5,0.765991,0.36,0.005856,0.2048,0.008128,0.00832,0.006048,0.005984,0.006432,0.108736,0.005696
+1009,1403.7,0.712402,0.360448,0.006112,0.204832,0.008192,0.009824,0.006048,0.006496,0.006304,0.108064,0.004576
+1010,1142.54,0.875244,0.358656,0.004448,0.20432,0.00816,0.00832,0.006048,0.005984,0.006432,0.108896,0.006048
+1011,855.472,1.16895,0.3584,0.005728,0.204384,0.008128,0.009088,0.006144,0.006144,0.006176,0.108192,0.004416
+1012,1379.12,0.725098,0.361152,0.005088,0.208896,0.008192,0.00928,0.00608,0.00512,0.006304,0.106336,0.005856
+1013,1060.73,0.942749,0.624672,0.005536,0.463072,0.018144,0.008544,0.006048,0.005856,0.006432,0.106048,0.004992
+1014,897.557,1.11414,0.36016,0.004544,0.209984,0.008128,0.008416,0.006016,0.004928,0.007328,0.105312,0.005504
+1015,1173.3,0.852295,0.35776,0.005664,0.20656,0.008192,0.008704,0.0064,0.00608,0.005984,0.104672,0.005504
+1016,1383.78,0.722656,0.354336,0.005664,0.204544,0.00816,0.008512,0.006048,0.005824,0.006432,0.104512,0.00464
+1017,1391.54,0.718628,0.355904,0.004544,0.2048,0.008288,0.009792,0.006016,0.005792,0.0064,0.104896,0.005376
+1018,1136.52,0.879883,0.366784,0.005408,0.20368,0.008192,0.022528,0.006144,0.006016,0.006272,0.103808,0.004736
+1019,1396.76,0.715942,0.360992,0.004608,0.208736,0.00816,0.008384,0.006176,0.006112,0.006208,0.10784,0.004768
+1020,1285.83,0.77771,0.356832,0.004832,0.206432,0.008192,0.007904,0.006272,0.00576,0.006432,0.10512,0.005888
+1021,641.353,1.5592,0.620448,0.00576,0.447872,0.018432,0.008736,0.006016,0.005824,0.0064,0.11536,0.006048
+1022,1187.59,0.842041,0.3584,0.005472,0.20752,0.008224,0.00816,0.006144,0.006144,0.006144,0.105984,0.004608
+1023,1229.48,0.813354,0.356896,0.00464,0.2048,0.008192,0.010208,0.006048,0.005856,0.006464,0.105952,0.004736
+1024,1394.62,0.717041,0.36208,0.005632,0.205056,0.00816,0.008352,0.006048,0.005728,0.006432,0.110944,0.005728
+1025,1206.84,0.828613,0.359136,0.004832,0.202592,0.008192,0.008352,0.00608,0.006016,0.006336,0.111744,0.004992
+1026,1410.47,0.708984,0.35856,0.004768,0.2048,0.008192,0.008192,0.006144,0.006176,0.006112,0.108544,0.005632
+1027,1246.12,0.80249,0.354976,0.004928,0.205856,0.00816,0.008704,0.006016,0.004736,0.007648,0.102944,0.005984
+1028,678.764,1.47327,0.361632,0.006144,0.207936,0.00816,0.008192,0.005088,0.006144,0.006144,0.108512,0.005312
+1029,629.669,1.58813,0.418048,0.00768,0.262912,0.008192,0.008192,0.006144,0.006144,0.006144,0.108096,0.004544
+1030,1167.62,0.856445,0.39088,0.006144,0.23552,0.008224,0.008256,0.007392,0.00608,0.006432,0.106976,0.005856
+1031,1315.98,0.759888,0.369792,0.006144,0.21712,0.008192,0.009856,0.00608,0.005856,0.006432,0.104736,0.005376
+1032,521.518,1.91748,0.561152,0.006144,0.409248,0.00816,0.008224,0.0064,0.00624,0.006144,0.106176,0.004416
+1033,987.821,1.01233,0.360992,0.00464,0.208896,0.008192,0.009696,0.006048,0.005856,0.006432,0.106592,0.00464
+1034,958.129,1.0437,0.628736,0.005536,0.451168,0.018432,0.009312,0.005184,0.022368,0.006144,0.10608,0.004512
+1035,943.996,1.05933,0.364544,0.006144,0.210016,0.008192,0.008288,0.006048,0.005056,0.00736,0.1088,0.00464
+1036,1176.67,0.849854,0.374816,0.00576,0.20448,0.008096,0.02336,0.006112,0.006048,0.00624,0.11008,0.00464
+1037,1344.71,0.743652,0.355936,0.005376,0.205472,0.00816,0.008096,0.006048,0.005952,0.006784,0.10448,0.005568
+1038,1380.05,0.724609,0.352256,0.005856,0.202016,0.0072,0.009568,0.006048,0.004896,0.00736,0.103168,0.006144
+1039,1309.88,0.763428,0.360416,0.006144,0.206592,0.008128,0.008544,0.006112,0.006176,0.006272,0.106336,0.006112
+1040,1185.01,0.843872,0.373024,0.004864,0.20416,0.02112,0.008192,0.006144,0.006144,0.006176,0.11056,0.005664
+1041,805.111,1.24207,0.372448,0.005408,0.217888,0.008192,0.010208,0.006208,0.005824,0.006432,0.106496,0.005792
+1042,1072.53,0.932373,0.62528,0.004736,0.423936,0.01024,0.016384,0.044736,0.00592,0.006432,0.106752,0.006144
+1043,820.266,1.21912,0.44032,0.005568,0.288864,0.00816,0.008736,0.006112,0.006144,0.006144,0.1056,0.004992
+1044,964.332,1.03699,0.44752,0.00512,0.271648,0.007936,0.008384,0.015136,0.006304,0.007232,0.120896,0.004864
+1045,1304.25,0.766724,0.382976,0.005952,0.233664,0.008192,0.009792,0.006016,0.005856,0.006432,0.10224,0.004832
+1046,1181.08,0.84668,0.37888,0.005568,0.227904,0.008256,0.008192,0.00608,0.006144,0.006208,0.106176,0.004352
+1047,1187.59,0.842041,0.364384,0.006112,0.210976,0.009664,0.008128,0.00656,0.005856,0.006432,0.104672,0.005984
+1048,1050.66,0.951782,0.392032,0.004928,0.241664,0.008192,0.008192,0.00608,0.005792,0.006464,0.10608,0.00464
+1049,1280,0.78125,0.530432,0.005504,0.383616,0.00928,0.007136,0.006176,0.00608,0.00624,0.101696,0.004704
+1050,785.126,1.27368,0.365664,0.007776,0.213472,0.008192,0.008224,0.0072,0.005056,0.007264,0.103168,0.005312
+1051,1379.36,0.724976,0.36096,0.004896,0.212,0.00816,0.008384,0.006304,0.00608,0.006432,0.102848,0.005856
+1052,1289.06,0.775757,0.359264,0.004992,0.208448,0.008192,0.00864,0.00608,0.005824,0.0064,0.105632,0.005056
+1053,1301.35,0.768433,0.357024,0.004768,0.206848,0.008224,0.00816,0.006144,0.006144,0.007264,0.10512,0.004352
+1054,1244.23,0.803711,0.360448,0.005664,0.20528,0.008192,0.009472,0.006048,0.004992,0.007264,0.107392,0.006144
+1055,1326.64,0.753784,0.360192,0.005472,0.207296,0.00816,0.008096,0.006048,0.005952,0.006432,0.106976,0.00576
+1056,605.917,1.65039,0.385024,0.005536,0.233216,0.008192,0.008064,0.005216,0.006016,0.00624,0.107808,0.004736
+1057,891.21,1.12207,0.380416,0.008064,0.220736,0.008128,0.008704,0.006016,0.005696,0.006432,0.111008,0.005632
+1058,1268.9,0.788086,0.36016,0.004544,0.20688,0.00816,0.008192,0.005984,0.005824,0.006432,0.108736,0.005408
+1059,1390.36,0.719238,0.3584,0.005952,0.206496,0.008128,0.010208,0.00608,0.005856,0.006432,0.103104,0.006144
+1060,1294.15,0.772705,0.360608,0.005408,0.207136,0.00816,0.008832,0.006144,0.005984,0.006304,0.106496,0.006144
+1061,1243.47,0.804199,0.361216,0.004864,0.208896,0.008224,0.010208,0.006144,0.006048,0.00624,0.105632,0.00496
+1062,1237.65,0.807983,0.3584,0.005888,0.205056,0.008192,0.00976,0.006016,0.005824,0.0064,0.10512,0.006144
+1063,1351.15,0.740112,0.359648,0.006016,0.204928,0.008192,0.009952,0.006048,0.005824,0.0064,0.106912,0.005376
+1064,1266.15,0.789795,0.360512,0.005408,0.209664,0.008224,0.009184,0.006592,0.005856,0.006432,0.10464,0.004512
+1065,509.992,1.96082,0.366592,0.007904,0.215168,0.00816,0.008384,0.006176,0.006112,0.006368,0.10368,0.00464
+1066,1315.14,0.760376,0.356352,0.005664,0.207328,0.008192,0.008224,0.006112,0.006144,0.006144,0.104064,0.00448
+1067,1395.33,0.716675,0.35664,0.004576,0.208032,0.008864,0.008416,0.00592,0.006144,0.006336,0.103424,0.004928
+1068,1310.09,0.763306,0.352256,0.005664,0.203232,0.008192,0.009504,0.006176,0.005824,0.006432,0.102496,0.004736
+1069,1311.35,0.762573,0.350752,0.00464,0.204416,0.00816,0.008096,0.006016,0.00592,0.006432,0.102144,0.004928
+1070,1202.76,0.831421,0.355936,0.006144,0.202656,0.008288,0.008192,0.006112,0.005856,0.006432,0.106528,0.005728
+1071,1186.21,0.843018,0.372768,0.005504,0.221088,0.00816,0.008768,0.006048,0.006112,0.006336,0.105824,0.004928
+1072,1360.35,0.735107,0.534752,0.005408,0.385984,0.008192,0.008192,0.006144,0.006144,0.006144,0.104,0.004544
+1073,692.594,1.44385,0.360864,0.006944,0.210912,0.00816,0.008224,0.005984,0.005952,0.006432,0.102496,0.00576
+1074,1333.55,0.749878,0.354208,0.005408,0.204928,0.008192,0.008352,0.006048,0.004992,0.007584,0.102912,0.005792
+1075,1404.9,0.711792,0.358688,0.005408,0.205504,0.00816,0.008128,0.006016,0.005792,0.006432,0.107104,0.006144
+1076,1303.63,0.76709,0.351904,0.004384,0.203776,0.007168,0.008448,0.00592,0.006144,0.006112,0.104448,0.005504
+1077,1303.42,0.767212,0.352256,0.005984,0.202912,0.008192,0.008224,0.006144,0.006112,0.006144,0.103808,0.004736
+1078,970.961,1.02991,0.421888,0.00576,0.246144,0.008224,0.00816,0.016384,0.006144,0.02048,0.106208,0.004384
+1079,1239.33,0.806885,0.37856,0.006144,0.22528,0.008192,0.01024,0.006144,0.006144,0.006144,0.104448,0.005824
+1080,1131.34,0.883911,0.538176,0.00544,0.387552,0.008192,0.008352,0.006112,0.00592,0.006432,0.104544,0.005632
+1081,793.337,1.2605,0.363552,0.007808,0.209344,0.00816,0.01024,0.006144,0.005856,0.0064,0.104288,0.005312
+1082,1326,0.75415,0.352256,0.005568,0.202688,0.008288,0.008352,0.006016,0.005888,0.0064,0.103936,0.00512
+1083,1363.29,0.733521,0.3584,0.006144,0.205824,0.007168,0.01024,0.006144,0.00592,0.006368,0.104448,0.006144
+1084,1175.83,0.850464,0.354336,0.005568,0.20336,0.00816,0.008192,0.006144,0.006144,0.006176,0.106016,0.004576
+1085,1403.7,0.712402,0.36304,0.00464,0.20832,0.008128,0.008416,0.006016,0.005824,0.0064,0.110624,0.004672
+1086,1332.47,0.750488,0.3584,0.006144,0.202752,0.008192,0.008192,0.006144,0.006144,0.006176,0.10976,0.004896
+1087,1184.16,0.844482,0.411584,0.004992,0.247232,0.008192,0.008512,0.013792,0.004992,0.007232,0.111328,0.005312
+1088,1128.06,0.886475,0.540672,0.005984,0.385184,0.008192,0.008192,0.006144,0.006144,0.006144,0.110144,0.004544
+1089,710.248,1.40796,0.377664,0.007168,0.222656,0.00816,0.008704,0.00608,0.005792,0.006432,0.10672,0.005952
+1090,1319.8,0.75769,0.3584,0.005664,0.206304,0.007168,0.009632,0.006048,0.006016,0.006432,0.106496,0.00464
+1091,1321.08,0.756958,0.358528,0.005376,0.205408,0.008128,0.008128,0.006016,0.005952,0.0064,0.108,0.00512
+1092,526.681,1.89868,0.563232,0.006144,0.4096,0.008192,0.008224,0.006176,0.007232,0.0064,0.106528,0.004736
+1093,560.789,1.7832,0.37888,0.005504,0.203392,0.008192,0.022528,0.006144,0.006176,0.007232,0.113568,0.006144
+1094,896.672,1.11523,0.637408,0.00512,0.468992,0.019968,0.008416,0.006144,0.005984,0.006464,0.11072,0.0056
+1095,1057.58,0.945557,0.364896,0.004576,0.208672,0.008192,0.008512,0.005984,0.006112,0.006272,0.111712,0.004864
+1096,1201.88,0.832031,0.39776,0.004576,0.235424,0.008096,0.017696,0.006432,0.005824,0.0064,0.107168,0.006144
+1097,1286.03,0.777588,0.3624,0.006016,0.206976,0.008192,0.00992,0.006048,0.00592,0.006432,0.106848,0.006048
+1098,1312.4,0.761963,0.357024,0.004768,0.2048,0.008192,0.008192,0.006144,0.006144,0.006176,0.10784,0.004768
+1099,1419.51,0.704468,0.357536,0.005376,0.207648,0.009344,0.008448,0.006048,0.004992,0.006304,0.104064,0.005312
+1100,1279.4,0.781616,0.356288,0.005408,0.202752,0.00816,0.008384,0.006016,0.004992,0.007232,0.107392,0.005952
+1101,1230.58,0.812622,0.367008,0.005056,0.208832,0.008128,0.008128,0.006048,0.005792,0.006432,0.112992,0.0056
+1102,1045.3,0.956665,0.636928,0.005504,0.475776,0.011776,0.008384,0.006272,0.005856,0.006528,0.110688,0.006144
+1103,811.491,1.2323,0.36864,0.005504,0.20544,0.008192,0.00832,0.006016,0.006144,0.006144,0.118464,0.004416
+1104,1357.42,0.736694,0.360352,0.00608,0.206912,0.008192,0.008192,0.00608,0.005856,0.006432,0.10656,0.006048
+1105,1254.71,0.796997,0.362496,0.006144,0.206176,0.008864,0.008192,0.006144,0.006144,0.006144,0.110048,0.00464
+1106,1259.92,0.793701,0.360736,0.004992,0.206368,0.008192,0.008384,0.006016,0.006592,0.006112,0.108544,0.005536
+1107,1170.12,0.854614,0.377184,0.004544,0.198208,0.008032,0.008672,0.034656,0.00576,0.00592,0.10672,0.004672
+1108,1414.61,0.706909,0.360448,0.005984,0.204992,0.008192,0.010208,0.006144,0.006048,0.00624,0.108192,0.004448
+1109,1262.83,0.79187,0.360736,0.004448,0.208064,0.00816,0.010208,0.006048,0.006112,0.006432,0.105216,0.006048
+1110,1018.65,0.981689,0.631424,0.004896,0.423936,0.065536,0.008192,0.006144,0.006144,0.006176,0.104416,0.005984
+1111,518.481,1.92871,0.409696,0.00544,0.232128,0.008128,0.01792,0.006432,0.005952,0.021344,0.106272,0.00608
+1112,1244.8,0.803345,0.3656,0.005792,0.21296,0.00816,0.008608,0.006144,0.006016,0.006272,0.106304,0.005344
+1113,1218.87,0.820435,0.360128,0.005408,0.207392,0.008608,0.008224,0.006144,0.007424,0.006432,0.104896,0.0056
+1114,1330.3,0.751709,0.35936,0.005056,0.210176,0.008192,0.008992,0.006112,0.006144,0.006144,0.10384,0.004704
+1115,1469.94,0.680298,0.357056,0.004896,0.208576,0.00816,0.008544,0.006144,0.005952,0.006336,0.1024,0.006048
+1116,1351.82,0.739746,0.362912,0.00496,0.210176,0.008192,0.008352,0.006752,0.00592,0.0064,0.106464,0.005696
+1117,1153.48,0.866943,0.539456,0.004896,0.386208,0.008192,0.008704,0.006144,0.00592,0.006432,0.106784,0.006176
+1118,725.662,1.37805,0.361664,0.008192,0.208224,0.008096,0.008416,0.006016,0.005824,0.00512,0.106432,0.005344
+1119,1357.42,0.736694,0.360672,0.004768,0.208896,0.008224,0.00816,0.006144,0.005856,0.006432,0.106496,0.005696
+1120,1303.84,0.766968,0.356576,0.004384,0.206688,0.008128,0.008416,0.00608,0.006016,0.006336,0.104448,0.00608
+1121,1377.04,0.726196,0.360448,0.005408,0.207584,0.009952,0.00848,0.006144,0.006144,0.006176,0.105568,0.004992
+1122,1110.03,0.900879,0.359936,0.005888,0.20688,0.00816,0.008448,0.006144,0.006144,0.007392,0.105248,0.005632
+1123,1482.98,0.674316,0.358496,0.005376,0.207072,0.008256,0.008736,0.006048,0.005792,0.006432,0.104672,0.006112
+1124,1256.63,0.795776,0.36,0.006176,0.206688,0.00832,0.01024,0.006144,0.006144,0.006144,0.104448,0.005696
+1125,1318.1,0.758667,0.534432,0.005344,0.38736,0.008128,0.008704,0.006112,0.006016,0.006592,0.10032,0.005856
+1126,709.633,1.40918,0.36624,0.007808,0.213568,0.00816,0.01024,0.006176,0.005952,0.006304,0.1024,0.005632
+1127,1226.53,0.815308,0.356128,0.0056,0.20512,0.00816,0.00848,0.005792,0.005792,0.006432,0.104832,0.00592
+1128,1305.71,0.765869,0.357024,0.005024,0.20592,0.00816,0.008512,0.006048,0.005824,0.006432,0.105184,0.00592
+1129,797.508,1.25391,0.424928,0.005088,0.276064,0.00816,0.00864,0.006112,0.005824,0.006272,0.104384,0.004384
+1130,1249.35,0.800415,0.3936,0.004544,0.241536,0.00816,0.008288,0.006144,0.006144,0.006144,0.108192,0.004448
+1131,1406.59,0.710938,0.36048,0.005376,0.209696,0.008192,0.008192,0.006144,0.006144,0.006144,0.105984,0.004608
+1132,1292.32,0.773804,0.361696,0.005408,0.209312,0.00816,0.008096,0.006016,0.005824,0.0064,0.1072,0.00528
+1133,1078.75,0.927002,0.613632,0.005888,0.430336,0.03888,0.008128,0.006048,0.005952,0.006432,0.106592,0.005376
+1134,791.498,1.26343,0.35872,0.00544,0.207872,0.00816,0.008192,0.006144,0.005952,0.006368,0.105728,0.004864
+1135,1384.72,0.722168,0.362016,0.006144,0.208864,0.00816,0.008224,0.006016,0.005824,0.006624,0.106496,0.005664
+1136,1128.37,0.88623,0.352288,0.006016,0.206976,0.008224,0.00816,0.006048,0.005568,0.00608,0.100672,0.004544
+1137,1572.96,0.635742,0.354752,0.004576,0.206848,0.00816,0.008192,0.006176,0.006016,0.00624,0.104032,0.004512
+1138,1286.03,0.777588,0.351232,0.006144,0.204032,0.00816,0.008224,0.006016,0.004992,0.007328,0.101056,0.00528
+1139,1327.07,0.75354,0.357472,0.006176,0.206176,0.008128,0.008128,0.00592,0.005088,0.006336,0.106176,0.005344
+1140,1218.32,0.820801,0.360448,0.006144,0.20848,0.00816,0.00864,0.005984,0.006112,0.006336,0.104448,0.006144
+1141,1012.61,0.987549,0.630592,0.006144,0.431712,0.056736,0.008576,0.00608,0.005952,0.0064,0.10304,0.005952
+1142,825.058,1.21204,0.360448,0.00608,0.208384,0.00816,0.008704,0.005728,0.005664,0.0064,0.106624,0.004704
+1143,1320.01,0.757568,0.358144,0.004768,0.20688,0.008192,0.00816,0.006144,0.006048,0.00624,0.106336,0.005376
+1144,1314.51,0.760742,0.357824,0.005408,0.205728,0.008192,0.008192,0.006144,0.00608,0.006208,0.106496,0.005376
+1145,1377.04,0.726196,0.36064,0.004768,0.206848,0.008192,0.008192,0.006144,0.006144,0.006144,0.108544,0.005664
+1146,1295.18,0.772095,0.353536,0.00544,0.205504,0.008192,0.008192,0.006144,0.005952,0.006336,0.1024,0.005376
+1147,835.066,1.19751,0.385024,0.005952,0.224768,0.008128,0.0088,0.005856,0.014784,0.007392,0.10448,0.004864
+1148,1135.57,0.880615,0.390624,0.005376,0.238592,0.008192,0.008224,0.006112,0.005952,0.006336,0.106432,0.005408
+1149,1070.43,0.934204,0.655552,0.005344,0.465568,0.042912,0.00816,0.006016,0.005888,0.0064,0.10912,0.006144
+1150,797.741,1.25354,0.383328,0.004448,0.21648,0.00816,0.008384,0.01888,0.007968,0.006368,0.108,0.00464
+1151,1505.33,0.664307,0.36864,0.00576,0.211328,0.008192,0.010208,0.006112,0.005856,0.006432,0.109728,0.005024
+1152,1182.45,0.845703,1.50941,0.005408,1.356,0.008352,0.008416,0.006304,0.006144,0.006176,0.106464,0.006144
+1153,386.251,2.58899,0.589664,0.004704,0.431808,0.008192,0.008512,0.006144,0.006176,0.007584,0.111168,0.005376
+1154,641.202,1.55957,0.618016,0.005408,0.451424,0.018528,0.008192,0.006144,0.006144,0.006144,0.110592,0.00544
+1155,856.545,1.16748,0.358848,0.004544,0.206336,0.008096,0.008288,0.006048,0.005952,0.006432,0.108736,0.004416
+1156,1359.44,0.735596,0.358848,0.004544,0.206528,0.008128,0.008352,0.005888,0.005984,0.006432,0.108448,0.004544
+1157,1317.04,0.759277,0.358112,0.004512,0.206176,0.008128,0.008128,0.006016,0.005024,0.0072,0.107488,0.00544
+1158,1291.3,0.774414,0.3584,0.005632,0.205312,0.008192,0.008192,0.006144,0.005952,0.006336,0.108256,0.004384
+1159,1245.55,0.802856,0.358176,0.004896,0.20464,0.008128,0.008096,0.006304,0.005824,0.0064,0.108576,0.005312
+1160,1301.56,0.768311,0.362528,0.005408,0.207712,0.008192,0.008192,0.006144,0.006144,0.006144,0.108544,0.006048
+1161,1247.83,0.801392,0.364128,0.0056,0.208704,0.00816,0.009984,0.00512,0.006144,0.00624,0.108448,0.005728
+1162,582.149,1.71777,0.621504,0.005056,0.436032,0.028672,0.008384,0.00608,0.005824,0.015808,0.109504,0.006144
+1163,1176.17,0.85022,0.36272,0.005376,0.20784,0.008192,0.01024,0.006112,0.005984,0.006368,0.106464,0.006144
+1164,1193.3,0.838013,0.3912,0.005536,0.229984,0.008224,0.00816,0.006144,0.00608,0.015584,0.106912,0.004576
+1165,1125.12,0.888794,0.37888,0.005728,0.225696,0.008192,0.008192,0.006144,0.006144,0.006144,0.107648,0.004992
+1166,1048.91,0.953369,0.37264,0.006048,0.221184,0.008192,0.008448,0.005888,0.006144,0.007264,0.103328,0.006144
+1167,1167.95,0.856201,0.374784,0.005536,0.223744,0.00816,0.00816,0.006048,0.00592,0.006176,0.106656,0.004384
+1168,1476.83,0.677124,0.381344,0.004704,0.2288,0.008224,0.008704,0.00592,0.005824,0.006432,0.106816,0.00592
+1169,825.141,1.21191,0.62064,0.004416,0.430048,0.043008,0.008192,0.006144,0.006144,0.006176,0.11056,0.005952
+1170,1015.87,0.984375,0.364288,0.006176,0.208416,0.00816,0.008672,0.006144,0.006144,0.006144,0.108544,0.005888
+1171,1263.22,0.791626,0.35856,0.005376,0.203648,0.008224,0.009536,0.006016,0.004992,0.007232,0.10896,0.004576
+1172,1312.61,0.761841,0.362304,0.005408,0.2056,0.008192,0.009376,0.00496,0.006176,0.006272,0.110432,0.005888
+1173,1297.23,0.770874,0.360416,0.004544,0.20672,0.008192,0.008192,0.00736,0.005984,0.0064,0.107232,0.005792
+1174,1309.04,0.763916,0.360896,0.004544,0.210304,0.008192,0.008864,0.006112,0.005824,0.006432,0.10592,0.004704
+1175,1264.78,0.790649,0.358208,0.005984,0.20496,0.008192,0.009824,0.006016,0.005824,0.006432,0.105024,0.005952
+1176,1305.71,0.765869,0.36128,0.004928,0.209984,0.00816,0.008384,0.006048,0.005024,0.007392,0.106304,0.005056
+1177,1305.91,0.765747,0.53776,0.00608,0.386528,0.008192,0.0088,0.006144,0.006144,0.006144,0.104416,0.005312
+1178,699.991,1.42859,0.374976,0.007808,0.217664,0.008192,0.01024,0.006144,0.00592,0.006368,0.107744,0.004896
+1179,1351.15,0.740112,0.3672,0.005024,0.213024,0.00816,0.009952,0.00608,0.00576,0.006432,0.106944,0.005824
+1180,598.087,1.672,0.483744,0.004544,0.309088,0.015712,0.00848,0.018944,0.006144,0.006144,0.110368,0.00432
+1181,1391.3,0.71875,0.364544,0.006144,0.210944,0.008192,0.009888,0.006464,0.00576,0.006432,0.106272,0.004448
+1182,1226.16,0.815552,0.362496,0.006112,0.204832,0.008192,0.008352,0.005984,0.006144,0.006176,0.111872,0.004832
+1183,1267.52,0.78894,0.36864,0.005568,0.205376,0.010144,0.008288,0.006176,0.006112,0.007264,0.11472,0.004992
+1184,1381.68,0.723755,0.546816,0.005472,0.387744,0.008192,0.008192,0.006144,0.006144,0.006144,0.114112,0.004672
+1185,675.908,1.47949,0.37088,0.007808,0.208992,0.008128,0.008704,0.006144,0.006144,0.00624,0.114048,0.004672
+1186,1457.91,0.685913,0.370464,0.006144,0.208928,0.00816,0.0096,0.006016,0.00496,0.007232,0.113504,0.00592
+1187,1128.22,0.886353,0.364576,0.005408,0.207232,0.008192,0.008576,0.006144,0.005984,0.005536,0.11312,0.004384
+1188,1411.44,0.708496,0.362336,0.004736,0.20592,0.008192,0.009088,0.006016,0.005824,0.006432,0.110784,0.005344
+1189,1131.18,0.884033,0.364192,0.006144,0.204192,0.008128,0.008224,0.006016,0.00592,0.006432,0.113344,0.005792
+1190,1387.3,0.720825,0.365792,0.006144,0.20592,0.008128,0.00832,0.005152,0.00608,0.007168,0.113536,0.005344
+1191,633.761,1.57788,0.359296,0.004992,0.204128,0.00816,0.008,0.006048,0.005088,0.0072,0.110976,0.004704
+1192,1423.46,0.702515,0.6112,0.004992,0.456704,0.01024,0.008224,0.006112,0.006144,0.006176,0.107808,0.0048
+1193,821.418,1.21741,0.379968,0.005856,0.22352,0.008192,0.008288,0.00608,0.006112,0.006144,0.1104,0.005376
+1194,1331.38,0.751099,0.358432,0.005408,0.205472,0.008384,0.009312,0.005184,0.006016,0.0072,0.105408,0.006048
+1195,1288.25,0.776245,0.357376,0.00512,0.205888,0.00816,0.008576,0.006048,0.005856,0.006432,0.105152,0.006144
+1196,1389.18,0.719849,0.360544,0.004576,0.206816,0.008192,0.00992,0.00608,0.00576,0.006432,0.107008,0.00576
+1197,956.004,1.04602,0.395872,0.004672,0.242816,0.008576,0.008096,0.006016,0.004864,0.007392,0.10896,0.00448
+1198,1426.18,0.701172,0.376832,0.006144,0.225216,0.00816,0.008288,0.006144,0.005792,0.006176,0.104768,0.006144
+1199,1372.88,0.728394,0.360448,0.005632,0.208608,0.008192,0.008448,0.00608,0.006176,0.006496,0.106336,0.00448
+1200,597.346,1.67407,0.376832,0.008192,0.222304,0.00816,0.008384,0.004864,0.006144,0.0072,0.1072,0.004384
+1201,1245.93,0.802612,0.360416,0.004544,0.2088,0.008288,0.008192,0.006176,0.006112,0.006144,0.106496,0.005664
+1202,1307.37,0.764893,0.353056,0.004928,0.202752,0.008224,0.00832,0.005984,0.006144,0.006144,0.10448,0.00608
+1203,1374.73,0.727417,0.360928,0.004608,0.206816,0.008192,0.01024,0.006112,0.00592,0.0064,0.108,0.00464
+1204,1150.56,0.869141,0.362048,0.005728,0.203168,0.008192,0.008192,0.006144,0.005856,0.006432,0.11264,0.005696
+1205,1396.52,0.716064,0.36032,0.005696,0.204544,0.008128,0.008704,0.00592,0.005952,0.0064,0.10896,0.006016
+1206,1317.25,0.759155,0.359744,0.0056,0.203008,0.008352,0.008192,0.00592,0.00576,0.006432,0.11104,0.00544
+1207,1187.76,0.841919,0.407008,0.004608,0.239168,0.008128,0.008384,0.006048,0.00656,0.017856,0.110944,0.005312
+1208,545.806,1.83215,0.39504,0.007968,0.233728,0.00816,0.008192,0.006176,0.006016,0.00624,0.11264,0.00592
+1209,1273.24,0.7854,0.367616,0.006016,0.210176,0.008128,0.009152,0.006176,0.006112,0.006144,0.110368,0.005344
+1210,1283.01,0.779419,0.361152,0.004832,0.208224,0.00816,0.00864,0.00592,0.005824,0.006432,0.107008,0.006112
+1211,474.294,2.1084,0.557088,0.006144,0.397312,0.008192,0.00944,0.006336,0.006304,0.006432,0.112128,0.0048
+1212,631.368,1.58386,0.58512,0.00544,0.429952,0.008192,0.00864,0.006336,0.0064,0.006144,0.108544,0.005472
+1213,566.803,1.76428,0.38,0.008192,0.21696,0.008128,0.008384,0.006176,0.006112,0.006272,0.114464,0.005312
+1214,1332.47,0.750488,0.362528,0.005696,0.208832,0.00816,0.008192,0.006016,0.005856,0.006464,0.108768,0.004544
+1215,1282,0.780029,0.364544,0.005536,0.205408,0.008192,0.008224,0.006016,0.005888,0.0064,0.114272,0.004608
+1216,1281.4,0.780396,0.36272,0.00448,0.204576,0.008128,0.00848,0.006144,0.006144,0.006144,0.11264,0.005984
+1217,1254.71,0.796997,0.365824,0.005792,0.203104,0.008192,0.008192,0.006016,0.005984,0.006432,0.116736,0.005376
+1218,1305.91,0.765747,0.362112,0.005408,0.205568,0.008192,0.008192,0.00624,0.006048,0.006176,0.11056,0.005728
+1219,1122.35,0.890991,0.365856,0.00592,0.208096,0.007168,0.008416,0.005984,0.00608,0.007232,0.111552,0.005408
+1220,930.169,1.07507,0.6104,0.005408,0.45344,0.01024,0.008224,0.006112,0.006144,0.006144,0.109728,0.00496
+1221,866.328,1.1543,0.365472,0.004992,0.206528,0.008128,0.008416,0.006048,0.005792,0.0064,0.114432,0.004736
+1222,1342.29,0.744995,0.364064,0.006144,0.204512,0.00816,0.008512,0.006144,0.006112,0.006208,0.112608,0.005664
+1223,1231.51,0.812012,0.360928,0.004576,0.2048,0.008192,0.008192,0.00608,0.00608,0.006272,0.112256,0.00448
+1224,1361.7,0.734375,0.368256,0.0056,0.205344,0.008192,0.008192,0.006144,0.006144,0.006144,0.116736,0.00576
+1225,1194.17,0.837402,0.368352,0.004448,0.206624,0.008128,0.009536,0.005248,0.005984,0.006304,0.116576,0.005504
+1226,1276.01,0.783691,0.363168,0.004768,0.206848,0.008192,0.008192,0.006144,0.005952,0.006336,0.111872,0.004864
+1227,1180.23,0.84729,0.365408,0.00496,0.20992,0.008192,0.0088,0.006016,0.006112,0.006464,0.110464,0.00448
+1228,1068.06,0.936279,0.626912,0.005408,0.469472,0.010368,0.008384,0.006016,0.005792,0.006464,0.110176,0.004832
+1229,463.322,2.15833,0.393504,0.004416,0.235488,0.008192,0.008192,0.006144,0.006144,0.007264,0.113408,0.004256
+1230,1265.96,0.789917,0.38336,0.004544,0.221088,0.008192,0.008192,0.006144,0.006144,0.014336,0.109696,0.005024
+1231,1370.59,0.729614,0.36032,0.005696,0.205248,0.008128,0.008256,0.006144,0.006144,0.006144,0.108576,0.005984
+1232,1350.26,0.740601,0.360672,0.005408,0.205568,0.008192,0.008384,0.006144,0.006144,0.006144,0.110016,0.004672
+1233,1233.55,0.810669,0.364544,0.006144,0.208736,0.008064,0.00848,0.006176,0.006112,0.006144,0.110112,0.004576
+1234,1238.21,0.807617,0.366368,0.006144,0.206848,0.008192,0.00928,0.005088,0.006112,0.006176,0.11264,0.005888
+1235,615.616,1.62439,0.380832,0.008064,0.221312,0.008032,0.008352,0.006144,0.006144,0.006176,0.11056,0.006048
+1236,1199.77,0.833496,0.352032,0.00576,0.203136,0.008192,0.008224,0.005952,0.005344,0.005056,0.104448,0.00592
+1237,1370.82,0.729492,0.362496,0.00496,0.206368,0.00816,0.008416,0.006016,0.005824,0.0064,0.11104,0.005312
+1238,1339,0.746826,0.363872,0.0056,0.205376,0.00816,0.010272,0.006112,0.005856,0.0064,0.110624,0.005472
+1239,1183.64,0.844849,0.361312,0.004992,0.204768,0.008192,0.008192,0.006176,0.006112,0.006144,0.110688,0.006048
+1240,1488.91,0.671631,0.358976,0.004672,0.206848,0.008128,0.008256,0.006144,0.006144,0.006176,0.107744,0.004864
+1241,1227.45,0.814697,0.355264,0.005056,0.202752,0.008192,0.008448,0.005952,0.00608,0.006208,0.107904,0.004672
+1242,964.218,1.03711,0.395168,0.005536,0.236128,0.008192,0.008192,0.006144,0.006144,0.006144,0.11264,0.006048
+1243,622.587,1.6062,0.36864,0.007808,0.215424,0.008192,0.008224,0.00752,0.005824,0.006432,0.104416,0.0048
+1244,1372.65,0.728516,0.358016,0.00608,0.206912,0.008192,0.008192,0.006144,0.006112,0.006176,0.104448,0.00576
+1245,1297.02,0.770996,0.358208,0.004672,0.206496,0.008128,0.008608,0.006112,0.006112,0.006208,0.106496,0.005376
+1246,792.8,1.26135,0.425568,0.005984,0.258208,0.008192,0.008352,0.006016,0.007168,0.015328,0.110592,0.005728
+1247,1237.09,0.80835,0.369312,0.004768,0.212992,0.008192,0.009696,0.006176,0.00592,0.006432,0.110656,0.00448
+1248,1123.58,0.890015,0.370432,0.006016,0.21312,0.008192,0.009344,0.006528,0.00592,0.0064,0.109024,0.005888
+1249,1160.18,0.861938,0.541216,0.00464,0.385024,0.008224,0.009632,0.006048,0.005856,0.006432,0.110464,0.004896
+1250,921.589,1.08508,0.581664,0.030656,0.403392,0.00816,0.008352,0.006048,0.005888,0.0064,0.108064,0.004704
+1251,962.519,1.03894,0.366624,0.005888,0.207104,0.008192,0.008448,0.005952,0.00608,0.006208,0.114112,0.00464
+1252,1523.53,0.656372,0.36864,0.005984,0.209056,0.008192,0.01024,0.006144,0.006144,0.006144,0.112416,0.00432
+1253,1229.48,0.813354,0.364224,0.005824,0.206976,0.00816,0.00816,0.006016,0.006016,0.0064,0.11088,0.005792
+1254,1345.16,0.743408,0.366752,0.004544,0.210816,0.008128,0.008288,0.006112,0.005824,0.006432,0.110656,0.005952
+1255,1285.22,0.778076,0.370496,0.004672,0.206848,0.008192,0.01024,0.00608,0.005792,0.006432,0.116864,0.005376
+1256,1294.77,0.772339,0.366464,0.005856,0.205088,0.008224,0.009568,0.00608,0.005856,0.006432,0.113344,0.006016
+1257,1102.41,0.907104,0.387232,0.005408,0.234272,0.007392,0.007264,0.00592,0.007424,0.006432,0.108096,0.005024
+1258,685.982,1.45776,0.395264,0.008192,0.23904,0.008192,0.008352,0.006016,0.005856,0.007008,0.106464,0.006144
+1259,1051.06,0.951416,0.396,0.00496,0.242976,0.008672,0.009952,0.006048,0.005824,0.006432,0.105152,0.005984
+1260,1494.89,0.668945,0.364256,0.005568,0.21152,0.008192,0.009312,0.005184,0.005984,0.0064,0.10624,0.005856
+1261,1299.7,0.769409,0.366592,0.005472,0.214976,0.00816,0.008544,0.005696,0.00496,0.007424,0.1064,0.00496
+1262,1300.52,0.768921,0.362208,0.006048,0.210912,0.00816,0.008352,0.00608,0.005888,0.006432,0.10448,0.005856
+1263,1321.5,0.756714,0.364992,0.004992,0.210944,0.008192,0.01024,0.006176,0.006112,0.006144,0.106496,0.005696
+1264,1261.47,0.792725,0.368352,0.005536,0.2096,0.008192,0.008192,0.00624,0.006048,0.00624,0.112544,0.00576
+1265,1215.25,0.822876,0.58336,0.004416,0.43008,0.008192,0.008192,0.006144,0.006144,0.006176,0.108512,0.005504
+1266,618.311,1.61731,0.391168,0.008192,0.233472,0.008192,0.008192,0.006144,0.005792,0.006272,0.108768,0.006144
+1267,1288.66,0.776001,0.365184,0.004768,0.215008,0.008192,0.008192,0.006048,0.00608,0.006304,0.104448,0.006144
+1268,1270.67,0.786987,0.3584,0.006144,0.20848,0.00816,0.008352,0.006016,0.006016,0.006272,0.103968,0.004992
+1269,494.656,2.02161,0.557408,0.004832,0.39936,0.008192,0.009216,0.006304,0.00624,0.006784,0.11072,0.00576
+1270,658.098,1.51953,0.583616,0.005376,0.424864,0.008192,0.008192,0.006144,0.006144,0.006336,0.112448,0.00592
+1271,542.696,1.84265,0.370688,0.008,0.210848,0.00816,0.008512,0.006048,0.00608,0.006304,0.110592,0.006144
+1272,1388.47,0.720215,0.358784,0.00448,0.206848,0.008192,0.009312,0.005024,0.006144,0.006176,0.107744,0.004864
+1273,1300.52,0.768921,0.361056,0.005024,0.206528,0.008224,0.008096,0.006048,0.005984,0.00672,0.108608,0.005824
+1274,1295.59,0.771851,0.36496,0.004544,0.206784,0.008192,0.009504,0.00608,0.004928,0.007264,0.112864,0.0048
+1275,1219.96,0.819702,0.362048,0.005408,0.205632,0.00816,0.008288,0.006112,0.005888,0.0064,0.110592,0.005568
+1276,1345.82,0.743042,0.360512,0.005408,0.205088,0.008192,0.008768,0.006144,0.006144,0.006144,0.108544,0.00608
+1277,680.229,1.47009,0.368608,0.004704,0.206016,0.008128,0.00864,0.006592,0.005952,0.006336,0.116736,0.005504
+1278,1220.86,0.819092,0.628736,0.006144,0.442368,0.019808,0.008384,0.006048,0.005888,0.006592,0.112544,0.02096
+1279,829.318,1.20581,0.35888,0.004544,0.206848,0.008256,0.009632,0.006016,0.00592,0.006752,0.10624,0.004672
+1280,1348.03,0.741821,0.362656,0.00544,0.207744,0.00816,0.00944,0.006016,0.005024,0.007296,0.107392,0.006144
+1281,1276.21,0.783569,0.3584,0.005536,0.205408,0.008192,0.008224,0.006112,0.005888,0.0064,0.107712,0.004928
+1282,1267.92,0.788696,0.366592,0.005952,0.208544,0.008128,0.0088,0.006176,0.00608,0.00608,0.110688,0.006144
+1283,1238.58,0.807373,0.362528,0.005504,0.207264,0.00816,0.008288,0.006016,0.00608,0.006432,0.110144,0.00464
+1284,1379.82,0.724731,0.363072,0.00496,0.206048,0.00816,0.009024,0.006144,0.006144,0.006144,0.110592,0.005856
+1285,1226.35,0.81543,0.365792,0.00592,0.208928,0.008128,0.00848,0.006112,0.0072,0.0064,0.10928,0.005344
+1286,896.967,1.11487,0.624736,0.004704,0.464896,0.01024,0.008192,0.006144,0.006144,0.006144,0.11264,0.005632
+1287,938.804,1.06519,0.362048,0.005696,0.206656,0.00816,0.008768,0.006048,0.005856,0.006432,0.108736,0.005696
+1288,1324.49,0.755005,0.362496,0.006144,0.2048,0.008192,0.010016,0.00608,0.005984,0.006368,0.109792,0.00512
+1289,1235.78,0.809204,0.36352,0.006144,0.206848,0.008192,0.008192,0.006144,0.006144,0.006144,0.110304,0.005408
+1290,1419.27,0.70459,0.362464,0.006144,0.204832,0.00816,0.008064,0.006112,0.006112,0.006368,0.11056,0.006112
+1291,1246.69,0.802124,0.359872,0.004544,0.204736,0.008192,0.008096,0.006016,0.005856,0.0064,0.11072,0.005312
+1292,1310.3,0.763184,0.362496,0.006144,0.206048,0.00816,0.009024,0.00608,0.005824,0.0064,0.109728,0.005088
+1293,824.062,1.2135,0.365696,0.005536,0.209504,0.008192,0.008192,0.006144,0.006144,0.006144,0.110496,0.005344
+1294,735.434,1.35974,0.379232,0.007776,0.223936,0.008192,0.008256,0.00608,0.005856,0.006432,0.10816,0.004544
+1295,1233.73,0.810547,0.361568,0.005408,0.204768,0.00816,0.0088,0.006016,0.006112,0.0064,0.110592,0.005312
+1296,1327.28,0.753418,0.364608,0.00448,0.2064,0.00816,0.008384,0.006304,0.006016,0.0064,0.11264,0.005824
+1297,1273.04,0.785522,0.372768,0.005408,0.20144,0.008192,0.00944,0.006016,0.005056,0.007296,0.125536,0.004384
+1298,1302.8,0.767578,0.363936,0.005408,0.203584,0.008192,0.00832,0.006016,0.006144,0.006144,0.114688,0.00544
+1299,1240.65,0.80603,0.360768,0.004544,0.204672,0.008192,0.008192,0.006112,0.005792,0.006432,0.11216,0.004672
+1300,1356.52,0.737183,0.374784,0.005824,0.209216,0.008192,0.008192,0.006176,0.006112,0.006144,0.119968,0.00496
+1301,1159.85,0.862183,0.36496,0.004512,0.206848,0.008192,0.008352,0.005984,0.006144,0.006144,0.114048,0.004736
+1302,653.374,1.53052,0.381088,0.006976,0.220736,0.008064,0.008416,0.006496,0.006144,0.006176,0.112608,0.005472
+1303,1304.25,0.766724,0.35936,0.005056,0.204768,0.008128,0.008288,0.006048,0.005824,0.006592,0.11024,0.004416
+1304,1361.7,0.734375,0.364544,0.005664,0.207008,0.00816,0.008544,0.006144,0.006144,0.006144,0.110592,0.006144
+1305,1207.73,0.828003,0.364544,0.006144,0.206848,0.008128,0.008256,0.006144,0.006144,0.006144,0.110592,0.006144
+1306,1295.59,0.771851,0.362496,0.00592,0.204,0.007168,0.01008,0.006048,0.00592,0.0064,0.112096,0.004864
+1307,1353.83,0.738647,0.361952,0.005408,0.203488,0.008192,0.008256,0.00608,0.006176,0.0072,0.111552,0.0056
+1308,1286.43,0.777344,0.367104,0.004608,0.206848,0.008192,0.009344,0.004992,0.006144,0.007168,0.114688,0.00512
+1309,1183.64,0.844849,0.57312,0.00592,0.415968,0.008192,0.008416,0.00592,0.006144,0.006144,0.110592,0.005824
+1310,611.343,1.63574,0.37696,0.007808,0.2176,0.008128,0.008256,0.006144,0.006144,0.006144,0.11232,0.004416
+1311,1304.04,0.766846,0.360864,0.0048,0.205824,0.007168,0.009536,0.005952,0.004992,0.00736,0.109376,0.005856
+1312,1359.89,0.735352,0.361952,0.006144,0.204832,0.00816,0.0096,0.0064,0.005984,0.006432,0.1088,0.0056
+1313,1165.13,0.858276,0.360448,0.006112,0.204832,0.008192,0.008288,0.006048,0.006144,0.00624,0.109984,0.004608
+1314,1451.45,0.688965,0.36048,0.005888,0.204832,0.00816,0.008448,0.006144,0.006144,0.006144,0.10992,0.0048
+1315,648.923,1.54102,0.409632,0.005728,0.256512,0.008096,0.009664,0.005952,0.00592,0.006304,0.106976,0.00448
+1316,1422.47,0.703003,0.577536,0.005536,0.41984,0.008192,0.008384,0.00592,0.006112,0.006432,0.110976,0.006144
+1317,589.565,1.69617,0.395008,0.007872,0.233792,0.008192,0.00928,0.007104,0.006144,0.006144,0.110592,0.005888
+1318,1344.71,0.743652,0.368512,0.005856,0.209184,0.008224,0.009376,0.004928,0.006144,0.006304,0.11248,0.006016
+1319,1309.46,0.763672,0.361952,0.004544,0.206688,0.008192,0.008384,0.005984,0.006112,0.006176,0.110496,0.005376
+1320,1336.16,0.748413,0.360448,0.005472,0.205024,0.008192,0.008352,0.005856,0.005824,0.006368,0.1104,0.00496
+1321,1268.9,0.788086,0.356704,0.004448,0.204416,0.00816,0.00816,0.00592,0.005792,0.006432,0.108608,0.004768
+1322,1190.18,0.84021,0.359584,0.006144,0.202752,0.008224,0.008416,0.005888,0.006144,0.005504,0.111168,0.005344
+1323,1356.97,0.736938,0.373536,0.004928,0.20272,0.008192,0.01024,0.006176,0.02176,0.0064,0.108032,0.005088
+1324,1349.59,0.740967,0.54176,0.005952,0.386848,0.008224,0.008416,0.00592,0.005824,0.006432,0.108768,0.005376
+1325,686.96,1.45569,0.37888,0.008192,0.221184,0.008224,0.009568,0.006016,0.004896,0.007168,0.107488,0.006144
+1326,1253.75,0.797607,0.364512,0.006144,0.20864,0.00816,0.008352,0.005728,0.00576,0.006432,0.109216,0.00608
+1327,1303.21,0.767334,0.357024,0.005056,0.206368,0.008128,0.008384,0.005888,0.006048,0.006432,0.104864,0.005856
+1328,557.924,1.79236,0.561152,0.006144,0.40928,0.008512,0.008192,0.006144,0.007232,0.0064,0.104576,0.004672
+1329,975.122,1.02551,0.35456,0.005376,0.203712,0.00816,0.008256,0.006112,0.00608,0.00624,0.105696,0.004928
+1330,1274.42,0.784668,0.363936,0.005856,0.207136,0.008192,0.009632,0.00592,0.00496,0.007392,0.109312,0.005536
+1331,720.936,1.38708,0.63296,0.005408,0.4552,0.033088,0.009696,0.00624,0.005984,0.0064,0.106688,0.004256
+1332,1108.53,0.9021,0.365952,0.00544,0.211904,0.008224,0.008192,0.006112,0.006144,0.006144,0.10848,0.005312
+1333,1542.75,0.648193,0.358208,0.005408,0.207008,0.00816,0.008096,0.006048,0.004896,0.0064,0.10624,0.005952
+1334,1276.41,0.783447,0.366048,0.004576,0.206304,0.00816,0.00864,0.006048,0.00608,0.006304,0.114592,0.005344
+1335,1298.26,0.770264,0.356928,0.004672,0.206368,0.008128,0.008736,0.006048,0.005952,0.006432,0.104448,0.006144
+1336,1214.35,0.823486,0.356032,0.006144,0.204064,0.008352,0.008384,0.006048,0.005824,0.006432,0.10496,0.005824
+1337,1416.08,0.706177,0.35616,0.0048,0.2048,0.008192,0.008192,0.006144,0.006144,0.006176,0.106368,0.005344
+1338,1197.14,0.835327,0.365856,0.005408,0.20576,0.008192,0.01024,0.006144,0.005984,0.006304,0.11248,0.005344
+1339,1011.48,0.988647,0.624288,0.00576,0.432512,0.044896,0.008352,0.006144,0.006144,0.006144,0.108544,0.005792
+1340,883.52,1.13184,0.364544,0.005408,0.209632,0.008192,0.008416,0.00592,0.006144,0.006144,0.109792,0.004896
+1341,1238.21,0.807617,0.3584,0.0056,0.205312,0.008224,0.008224,0.006112,0.005888,0.0064,0.10784,0.0048
+1342,1298.87,0.769897,0.363936,0.00544,0.2048,0.00816,0.008544,0.006048,0.005824,0.006432,0.113152,0.005536
+1343,1372.88,0.728394,0.362368,0.004512,0.206368,0.00816,0.010208,0.006016,0.00608,0.006432,0.108992,0.0056
+1344,1143.81,0.874268,0.374816,0.005536,0.217696,0.009696,0.008736,0.006144,0.006144,0.006144,0.110336,0.004384
+1345,1362.61,0.733887,0.360128,0.005408,0.205312,0.008128,0.008608,0.006048,0.005856,0.006528,0.108608,0.005632
+1346,1266.74,0.789429,0.37664,0.005408,0.2216,0.008192,0.008192,0.006048,0.005984,0.006432,0.109024,0.00576
+1347,947.819,1.05505,0.61712,0.004768,0.458752,0.01024,0.008256,0.006112,0.006112,0.006176,0.11056,0.006144
+1348,939.126,1.06482,0.370464,0.004544,0.210624,0.00816,0.008288,0.00608,0.005856,0.006656,0.114752,0.005504
+1349,789.362,1.26685,0.399136,0.005408,0.215456,0.00816,0.010112,0.015968,0.005056,0.02048,0.112608,0.005888
+1350,1406.11,0.711182,0.37152,0.004928,0.2184,0.00816,0.008992,0.006112,0.006144,0.006144,0.107744,0.004896
+1351,1342.29,0.744995,0.3584,0.005408,0.203488,0.008192,0.009824,0.006016,0.006016,0.0064,0.108704,0.004352
+1352,1204.53,0.8302,0.356256,0.005472,0.203424,0.008192,0.008512,0.005824,0.006144,0.006208,0.106432,0.006048
+1353,1390.36,0.719238,0.36144,0.00512,0.206656,0.008,0.008576,0.006016,0.005984,0.006432,0.108544,0.006112
+1354,1115.47,0.896484,0.36336,0.00496,0.20672,0.00816,0.009472,0.00608,0.00672,0.006176,0.108928,0.006144
+1355,662.837,1.50867,0.38944,0.006944,0.233472,0.008192,0.008192,0.00736,0.00496,0.007296,0.10736,0.005664
+1356,1388.47,0.720215,0.363808,0.006144,0.208096,0.008128,0.008672,0.006016,0.00592,0.0064,0.109024,0.005408
+1357,1132.74,0.882812,0.356256,0.005696,0.2032,0.008192,0.008256,0.00608,0.006144,0.005824,0.106816,0.006048
+1358,1623.46,0.615967,0.364704,0.004832,0.208288,0.008224,0.008672,0.006016,0.006112,0.006176,0.110816,0.005568
+1359,1157.06,0.864258,0.376704,0.006144,0.218496,0.008128,0.008704,0.006016,0.006112,0.006496,0.110592,0.006016
+1360,1318.53,0.758423,0.3584,0.005664,0.202464,0.00816,0.008384,0.006048,0.005984,0.006432,0.10912,0.006144
+1361,1247.45,0.801636,0.362816,0.004576,0.206464,0.00816,0.008096,0.006016,0.006016,0.0064,0.111072,0.006016
+1362,603.952,1.65576,0.64912,0.005952,0.454848,0.04288,0.00832,0.00608,0.005856,0.0064,0.112736,0.006048
+1363,844.275,1.18445,0.36864,0.006144,0.210944,0.008192,0.008192,0.006144,0.005984,0.006304,0.110592,0.006144
+1364,1281.8,0.780151,0.362336,0.006144,0.2048,0.008192,0.008192,0.006144,0.00608,0.006208,0.110592,0.005984
+1365,815.611,1.22607,0.408928,0.00544,0.254144,0.00816,0.008704,0.005824,0.005888,0.00624,0.109056,0.005472
+1366,1311.14,0.762695,0.39936,0.005664,0.233952,0.008192,0.008192,0.006144,0.014336,0.007328,0.110464,0.005088
+1367,1284.21,0.778687,0.385024,0.006144,0.229376,0.008192,0.008192,0.006176,0.006112,0.006144,0.109728,0.00496
+1368,1196.09,0.83606,0.375392,0.004704,0.20432,0.023008,0.00944,0.005952,0.00512,0.007456,0.110528,0.004864
+1369,1371.05,0.72937,0.542304,0.006144,0.387072,0.008192,0.008224,0.006112,0.006144,0.006144,0.108544,0.005728
+1370,585.645,1.70752,0.372288,0.007904,0.213376,0.00816,0.008352,0.005824,0.00592,0.006432,0.110848,0.005472
+1371,1243.1,0.804443,0.365088,0.00464,0.206848,0.008192,0.009696,0.006048,0.005856,0.0064,0.111264,0.006144
+1372,1299.9,0.769287,0.35808,0.00464,0.204736,0.00816,0.008288,0.00608,0.006112,0.00624,0.108512,0.005312
+1373,1383.32,0.7229,0.360032,0.006144,0.204096,0.008128,0.00896,0.006144,0.00608,0.006208,0.108544,0.005728
+1374,1113.19,0.898315,0.370528,0.005408,0.203488,0.008192,0.008192,0.005824,0.005824,0.02112,0.106496,0.005984
+1375,1397.71,0.715454,0.360448,0.005568,0.207232,0.008128,0.00816,0.006048,0.005888,0.0064,0.10848,0.004544
+1376,1269.68,0.787598,0.362496,0.006016,0.208192,0.008192,0.008192,0.006016,0.005056,0.007296,0.107392,0.006144
+1377,1017.77,0.982544,0.633856,0.006144,0.478976,0.010304,0.008384,0.006144,0.005984,0.006304,0.106304,0.005312
+1378,822.82,1.21533,0.362496,0.005408,0.209152,0.008128,0.008736,0.00592,0.005952,0.0064,0.106816,0.005984
+1379,1333.33,0.75,0.362944,0.004576,0.210048,0.00704,0.00928,0.006048,0.005088,0.006464,0.109824,0.004576
+1380,1313.66,0.76123,0.35616,0.006144,0.204032,0.00816,0.008416,0.005824,0.005024,0.007296,0.105312,0.005952
+1381,1296.2,0.771484,0.358016,0.005952,0.204576,0.00816,0.009952,0.005952,0.005024,0.007232,0.105408,0.00576
+1382,858.61,1.16467,0.411712,0.005376,0.246496,0.023776,0.008384,0.004896,0.006112,0.006208,0.104384,0.00608
+1383,1485.13,0.67334,0.360544,0.005376,0.209696,0.008192,0.008224,0.006112,0.006144,0.006144,0.10608,0.004576
+1384,1168.62,0.855713,0.35824,0.005888,0.20672,0.008192,0.008416,0.005888,0.005824,0.006432,0.104896,0.005984
+1385,620.277,1.61218,0.389152,0.008192,0.235488,0.008128,0.008288,0.006144,0.00608,0.006208,0.104448,0.006176
+1386,1406.35,0.71106,0.36048,0.005408,0.207584,0.008192,0.01008,0.005952,0.00592,0.0064,0.1064,0.004544
+1387,1253.17,0.797974,0.3568,0.004512,0.2048,0.008192,0.008192,0.006144,0.006144,0.006176,0.107968,0.004672
+1388,543.128,1.84119,0.569344,0.006144,0.409216,0.008192,0.008384,0.00624,0.00624,0.006144,0.11264,0.006144
+1389,964.673,1.03662,0.359968,0.004448,0.20416,0.00816,0.008736,0.005984,0.005952,0.006432,0.110752,0.005344
+1390,1167.78,0.856323,0.362144,0.005664,0.208864,0.008192,0.008352,0.006048,0.005856,0.005888,0.107488,0.005792
+1391,1180.23,0.84729,0.657408,0.005568,0.449088,0.047072,0.008224,0.02048,0.006144,0.006272,0.108576,0.005984
+1392,838.657,1.19238,0.363392,0.005152,0.208672,0.00816,0.00816,0.005984,0.006144,0.006432,0.108704,0.005984
+1393,1182.96,0.845337,0.356384,0.005792,0.206528,0.00816,0.007904,0.00512,0.006112,0.00624,0.105536,0.004992
+1394,1335.51,0.748779,0.354336,0.005696,0.202432,0.00816,0.008352,0.006016,0.004992,0.007232,0.10528,0.006176
+1395,1383.08,0.723022,0.361024,0.004672,0.204832,0.00992,0.00848,0.006144,0.005984,0.006304,0.110336,0.004352
+1396,1297.85,0.770508,0.360448,0.005568,0.202752,0.00816,0.008608,0.00592,0.005792,0.006432,0.112832,0.004384
+1397,1194.34,0.83728,0.366592,0.006144,0.202208,0.008128,0.010368,0.00592,0.00592,0.006432,0.116384,0.005088
+1398,1157.88,0.863647,0.362752,0.005408,0.20768,0.00816,0.008288,0.006048,0.005824,0.006528,0.109792,0.005024
+1399,1266.35,0.789673,0.37584,0.006144,0.214432,0.00816,0.008832,0.006144,0.006144,0.0072,0.11344,0.005344
+1400,651.451,1.53503,0.374368,0.00816,0.210592,0.00816,0.008608,0.006176,0.005888,0.006368,0.114688,0.005728
+1401,1259.34,0.794067,0.362624,0.005376,0.20896,0.007072,0.009504,0.00592,0.00496,0.007296,0.108992,0.004544
+1402,1290.49,0.774902,0.360736,0.005408,0.203776,0.008192,0.008224,0.006112,0.006144,0.006176,0.11056,0.006144
+1403,1374.5,0.727539,0.36048,0.005664,0.204832,0.008128,0.008736,0.006112,0.006144,0.006144,0.109696,0.005024
+1404,1145.89,0.872681,0.37728,0.004544,0.222208,0.007168,0.009248,0.006656,0.005824,0.006432,0.109056,0.006144
+1405,1368.53,0.730713,0.361632,0.005408,0.207712,0.009344,0.008576,0.006016,0.005984,0.0064,0.106816,0.005376
+1406,1284.62,0.778442,0.366816,0.004864,0.208512,0.008192,0.008096,0.005888,0.004864,0.007424,0.113376,0.0056
+1407,1066.67,0.9375,0.620544,0.00592,0.46256,0.010304,0.00864,0.006048,0.005888,0.006432,0.11024,0.004512
+1408,807.969,1.23767,0.366624,0.006144,0.208896,0.008192,0.008224,0.006112,0.006144,0.006144,0.11232,0.004448
+1409,1358.54,0.736084,0.358368,0.005024,0.202592,0.008128,0.008384,0.00592,0.006016,0.006432,0.11056,0.005312
+1410,1299.49,0.769531,0.35584,0.005408,0.203744,0.008192,0.008192,0.00592,0.005984,0.006432,0.106592,0.005376
+1411,1399.39,0.7146,0.362432,0.006016,0.204928,0.008192,0.009632,0.005952,0.00496,0.007296,0.109376,0.00608
+1412,1131.02,0.884155,0.369536,0.004992,0.204032,0.008192,0.022816,0.00592,0.00496,0.00752,0.10608,0.005024
+1413,1387.53,0.720703,0.360448,0.006144,0.208896,0.008064,0.007904,0.00592,0.005824,0.0064,0.106208,0.005088
+1414,1265.76,0.790039,0.365888,0.00576,0.207232,0.008192,0.008192,0.006144,0.006144,0.006144,0.11264,0.00544
+1415,1080.88,0.925171,0.603424,0.005824,0.446432,0.0104,0.008416,0.006112,0.006144,0.006144,0.108544,0.005408
+1416,845.059,1.18335,0.368192,0.006144,0.207968,0.008128,0.007136,0.006144,0.006144,0.006336,0.114496,0.005696
+1417,853.422,1.17175,0.467936,0.005056,0.296992,0.00816,0.009504,0.00656,0.006016,0.01616,0.114432,0.005056
+1418,1251.26,0.799194,0.370688,0.006048,0.212352,0.008128,0.008736,0.00592,0.006048,0.006432,0.112256,0.004768
+1419,1429.42,0.699585,0.367104,0.004672,0.208864,0.008192,0.009792,0.006016,0.005984,0.006432,0.11104,0.006112
+1420,1262.06,0.792358,0.360544,0.004704,0.2048,0.008192,0.008224,0.006112,0.006144,0.006176,0.11056,0.005632
+1421,1261.67,0.792603,0.373632,0.004992,0.219136,0.008192,0.008192,0.006144,0.006144,0.006144,0.110272,0.004416
+1422,1108.83,0.901855,0.358048,0.004576,0.206464,0.008192,0.008576,0.006112,0.006048,0.006272,0.106496,0.005312
+1423,638.155,1.56702,0.37184,0.007904,0.215328,0.008192,0.008192,0.006144,0.006144,0.006144,0.10848,0.005312
+1424,1306.33,0.765503,0.355424,0.006112,0.204832,0.008192,0.008192,0.006144,0.006144,0.006176,0.104288,0.005344
+1425,1251.45,0.799072,0.360288,0.006144,0.2048,0.008192,0.01024,0.006144,0.006144,0.006144,0.106496,0.005984
+1426,1401.78,0.713379,0.354304,0.005472,0.204576,0.008096,0.00832,0.006048,0.005056,0.007616,0.104096,0.005024
+1427,1174.65,0.851318,0.356064,0.0056,0.205344,0.008192,0.008192,0.006144,0.006144,0.006144,0.104448,0.005856
+1428,1396.52,0.716064,0.359776,0.006144,0.206848,0.008192,0.008192,0.006144,0.006144,0.006144,0.106496,0.005472
+1429,1307.37,0.764893,0.363776,0.00608,0.204512,0.00816,0.008288,0.006048,0.00592,0.006432,0.11296,0.005376
+1430,1200.82,0.832764,0.358784,0.004832,0.207008,0.008032,0.008192,0.006144,0.006144,0.005888,0.106752,0.005792
+1431,691.717,1.44568,0.759808,0.03072,0.58112,0.00816,0.008704,0.00592,0.006016,0.006432,0.106592,0.006144
+1432,1208.97,0.827148,0.359872,0.006144,0.2048,0.008192,0.008192,0.006144,0.006144,0.006144,0.108544,0.005568
+1433,1320.01,0.757568,0.3584,0.006112,0.206048,0.008192,0.008736,0.006016,0.005856,0.0064,0.106656,0.004384
+1434,1361.25,0.734619,0.360448,0.005472,0.20752,0.008192,0.008192,0.007232,0.005056,0.007232,0.106528,0.005024
+1435,952.891,1.04944,0.399616,0.004544,0.24368,0.008192,0.009824,0.006048,0.005824,0.006432,0.109088,0.005984
+1436,1330.95,0.751343,0.363456,0.005024,0.210944,0.008192,0.009632,0.005952,0.00608,0.0064,0.106464,0.004768
+1437,1467.84,0.681274,0.364128,0.005408,0.209632,0.008192,0.008192,0.006144,0.006112,0.006208,0.108512,0.005728
+1438,1296,0.771606,0.555648,0.004736,0.402496,0.008256,0.008448,0.00592,0.00496,0.00736,0.107328,0.006144
+1439,685.466,1.45886,0.371328,0.006784,0.21504,0.008192,0.008192,0.006176,0.006112,0.006144,0.108544,0.006144
+1440,1410.95,0.70874,0.363488,0.00512,0.210496,0.008128,0.008384,0.005952,0.00592,0.006432,0.106944,0.006112
+1441,1224.33,0.816772,0.35808,0.005408,0.207744,0.008192,0.00832,0.006016,0.006144,0.006144,0.104448,0.005664
+1442,1340.31,0.746094,0.360384,0.00496,0.2064,0.00816,0.008704,0.006112,0.006144,0.006144,0.108032,0.005728
+1443,1159.35,0.862549,0.35792,0.005504,0.204864,0.00816,0.0088,0.006144,0.006144,0.006176,0.106464,0.005664
+1444,1511.72,0.661499,0.356064,0.004448,0.206624,0.00816,0.008064,0.00592,0.005888,0.006432,0.105024,0.005504
+1445,1124.97,0.888916,0.3528,0.00464,0.204576,0.008128,0.00848,0.006144,0.00576,0.00448,0.105728,0.004864
+1446,1515.91,0.659668,0.394688,0.005408,0.244544,0.008192,0.007648,0.005824,0.00496,0.007264,0.105376,0.005472
+1447,564.382,1.77185,0.399136,0.008192,0.239616,0.008128,0.008192,0.00608,0.006048,0.006368,0.110592,0.00592
+1448,1305.08,0.766235,0.366176,0.005376,0.207808,0.008192,0.00944,0.00496,0.00608,0.006368,0.112416,0.005536
+1449,1250.69,0.799561,0.3688,0.00544,0.207712,0.008192,0.008192,0.006176,0.006112,0.006144,0.115744,0.005088
+1450,469.267,2.13098,0.558624,0.006144,0.397312,0.008224,0.009536,0.006144,0.006368,0.0064,0.112832,0.005664
+1451,550.353,1.81702,0.636384,0.006016,0.476704,0.008672,0.00832,0.006144,0.0072,0.006432,0.111296,0.0056
+1452,562.097,1.77905,0.400832,0.008192,0.241664,0.008192,0.008192,0.006144,0.005984,0.006304,0.110592,0.005568
+1453,1367.61,0.731201,0.363168,0.004768,0.208896,0.008192,0.008192,0.006144,0.006144,0.006144,0.110144,0.004544
+1454,1331.38,0.751099,0.358144,0.00576,0.204224,0.008224,0.007072,0.006176,0.006112,0.006208,0.10848,0.005888
+1455,1299.49,0.769531,0.360128,0.0048,0.206816,0.008224,0.008352,0.005952,0.006176,0.006112,0.10832,0.005376
+1456,1211.48,0.825439,0.355648,0.006144,0.204096,0.008128,0.008224,0.006016,0.004992,0.007264,0.105344,0.00544
+1457,1304.04,0.766846,0.356416,0.004576,0.20688,0.00816,0.008224,0.006016,0.005792,0.006432,0.104608,0.005728
+1458,1185.19,0.84375,0.375648,0.00512,0.223168,0.008128,0.00832,0.006144,0.006112,0.006176,0.106496,0.005984
+1459,1131.02,0.884155,0.63488,0.005504,0.432448,0.045376,0.009312,0.00608,0.016736,0.006432,0.107936,0.005056
+1460,793.03,1.26099,0.359872,0.005408,0.207744,0.00816,0.008256,0.006016,0.005888,0.006432,0.106592,0.005376
+1461,1385.89,0.721558,0.358752,0.004576,0.208896,0.008192,0.008096,0.00624,0.005888,0.00608,0.104768,0.006016
+1462,1263.22,0.791626,0.35888,0.004576,0.2048,0.008192,0.008224,0.006112,0.006144,0.006208,0.10848,0.006144
+1463,1261.47,0.792725,0.354752,0.004512,0.2048,0.008192,0.008192,0.006176,0.006112,0.006176,0.105952,0.00464
+1464,1245.74,0.802734,0.356384,0.00544,0.205536,0.00816,0.008352,0.005984,0.006144,0.006144,0.105952,0.004672
+1465,1343.61,0.744263,0.3584,0.006048,0.204384,0.00816,0.00992,0.006784,0.005856,0.006592,0.106272,0.004384
+1466,1257.79,0.795044,0.380032,0.022528,0.208384,0.008128,0.008608,0.006048,0.00608,0.006432,0.10848,0.005344
+1467,927.431,1.07825,0.632832,0.005888,0.448768,0.034816,0.009344,0.006208,0.005984,0.006432,0.109248,0.006144
+1468,868.625,1.15125,0.389152,0.006144,0.23552,0.008192,0.008192,0.006144,0.006144,0.006144,0.108288,0.004384
+1469,1324.07,0.755249,0.374816,0.005824,0.21536,0.008192,0.009344,0.004992,0.006176,0.006304,0.114112,0.004512
+1470,787.692,1.26953,0.436256,0.00608,0.266304,0.008192,0.008192,0.006144,0.006016,0.015968,0.114624,0.004736
+1471,1533.22,0.652222,0.377088,0.004928,0.217088,0.008192,0.009632,0.006528,0.005824,0.006432,0.112896,0.005568
+1472,1037.62,0.963745,0.377344,0.004576,0.221184,0.008192,0.008224,0.007872,0.005824,0.006432,0.11056,0.00448
+1473,1465.21,0.682495,0.364416,0.004896,0.210112,0.008128,0.008064,0.00512,0.006144,0.006176,0.110432,0.005344
+1474,1211.3,0.825562,0.541152,0.004896,0.386912,0.008192,0.008384,0.005952,0.005984,0.006432,0.108576,0.005824
+1475,626.443,1.59631,0.37888,0.008192,0.219104,0.00816,0.008288,0.006112,0.006048,0.00624,0.110592,0.006144
+1476,1244.61,0.803467,0.36672,0.005376,0.211552,0.00816,0.008256,0.006016,0.005792,0.006432,0.108992,0.006144
+1477,1171.29,0.85376,0.356608,0.004544,0.206752,0.008192,0.009376,0.006784,0.005888,0.005824,0.1032,0.006048
+1478,1569.95,0.636963,0.358496,0.005408,0.208864,0.009056,0.008192,0.006112,0.005824,0.006496,0.104192,0.004352
+1479,1298.67,0.77002,0.356576,0.004992,0.2048,0.008192,0.008224,0.006112,0.006144,0.006176,0.105952,0.005984
+1480,1302.18,0.767944,0.360128,0.005408,0.204736,0.00816,0.008128,0.005056,0.006112,0.007168,0.109568,0.005792
+1481,1183.64,0.844849,0.35856,0.00448,0.203904,0.00816,0.008128,0.005056,0.00624,0.007168,0.109472,0.005952
+1482,1160.01,0.862061,0.544224,0.005856,0.38688,0.008192,0.008352,0.00592,0.005856,0.006272,0.111296,0.0056
+1483,533.507,1.87439,0.422304,0.006816,0.268256,0.008128,0.008288,0.006144,0.006144,0.006144,0.106496,0.005888
+1484,1160.18,0.861938,0.397248,0.006144,0.240768,0.00816,0.00912,0.006144,0.006144,0.006144,0.108544,0.00608
+1485,1205.95,0.829224,0.369792,0.005568,0.213568,0.008192,0.008192,0.00736,0.004992,0.0072,0.109344,0.005376
+1486,1311.35,0.762573,0.395776,0.004608,0.237568,0.008192,0.009568,0.00592,0.004992,0.007264,0.1128,0.004864
+1487,1244.04,0.803833,0.388736,0.006112,0.235552,0.008192,0.008224,0.00608,0.005824,0.006432,0.10656,0.00576
+1488,1274.42,0.784668,0.372736,0.005824,0.213312,0.008192,0.01024,0.006144,0.00592,0.006368,0.112064,0.004672
+1489,1182.62,0.845581,0.374432,0.006144,0.21504,0.008224,0.009984,0.00592,0.006016,0.0064,0.110912,0.005792
+1490,829.066,1.20618,0.562688,0.008192,0.403456,0.008224,0.009312,0.004992,0.006144,0.006176,0.11056,0.005632
+1491,1109.58,0.901245,0.370144,0.006016,0.21072,0.008192,0.009952,0.004736,0.006144,0.007328,0.111456,0.0056
+1492,1220.32,0.819458,0.367168,0.004672,0.210944,0.008192,0.008192,0.006144,0.005984,0.006304,0.112096,0.00464
+1493,1439.47,0.694702,0.365536,0.005088,0.208832,0.008256,0.008192,0.006144,0.006144,0.006144,0.111776,0.00496
+1494,1272.84,0.785645,0.363136,0.005088,0.2048,0.008192,0.008224,0.006144,0.006112,0.006144,0.11264,0.005792
+1495,1161.16,0.861206,0.36048,0.005952,0.202944,0.008224,0.009376,0.004928,0.006176,0.006112,0.111936,0.004832
+1496,1384.95,0.722046,0.362496,0.006176,0.20464,0.00816,0.008352,0.006144,0.006048,0.00624,0.111648,0.005088
+1497,877.182,1.14001,0.367136,0.00464,0.210944,0.009536,0.008192,0.0048,0.006016,0.006272,0.111808,0.004928
+1498,786.936,1.27075,0.399392,0.008192,0.241184,0.00816,0.00864,0.006208,0.006144,0.006176,0.110016,0.004672
+1499,915.307,1.09253,0.384832,0.005408,0.228128,0.00816,0.008224,0.006144,0.005984,0.005856,0.11104,0.005888
+1500,1594.71,0.627075,0.363168,0.0048,0.210112,0.00816,0.00864,0.006048,0.005824,0.006528,0.107968,0.005088
+1501,1377.96,0.725708,0.363456,0.005056,0.20688,0.00816,0.01024,0.006176,0.005984,0.006304,0.110144,0.004512
+1502,1269.29,0.787842,0.363424,0.004992,0.2048,0.008224,0.009856,0.00592,0.005952,0.006592,0.112,0.005088
+1503,1190.52,0.839966,0.366336,0.004384,0.210496,0.00816,0.008256,0.006048,0.005888,0.006432,0.111072,0.0056
+1504,1023.1,0.977417,0.382624,0.004544,0.206848,0.023936,0.008544,0.005888,0.006432,0.006368,0.114688,0.005376
+1505,1538.98,0.64978,0.544448,0.005984,0.38688,0.008192,0.008544,0.006112,0.005984,0.006368,0.11056,0.005824
+1506,716.397,1.39587,0.373312,0.007808,0.211936,0.00816,0.009728,0.00592,0.005856,0.006432,0.113056,0.004416
+1507,1236.53,0.808716,0.360288,0.005952,0.204992,0.008192,0.008224,0.006112,0.006144,0.006144,0.108544,0.005984
+1508,1274.82,0.784424,0.36176,0.005504,0.20496,0.008256,0.008288,0.006464,0.006144,0.006144,0.110592,0.005408
+1509,1356.52,0.737183,0.363296,0.004864,0.2048,0.008192,0.01024,0.006144,0.006048,0.00624,0.11168,0.005088
+1510,1103.45,0.90625,0.3584,0.005888,0.203008,0.008192,0.008288,0.006048,0.006144,0.006144,0.110272,0.004416
+1511,1423.71,0.702393,0.362432,0.005408,0.205344,0.008192,0.007968,0.005952,0.00496,0.007264,0.111488,0.005856
+1512,807.969,1.23767,0.3728,0.005408,0.205152,0.00816,0.009792,0.00608,0.00512,0.019936,0.108608,0.004544
+1513,1093.72,0.914307,0.602144,0.005504,0.444512,0.010304,0.008704,0.00608,0.00608,0.006272,0.109824,0.004864
+1514,933.987,1.07068,0.367968,0.006144,0.20832,0.00816,0.008736,0.006016,0.00592,0.006432,0.112768,0.005472
+1515,1212.91,0.824463,0.36832,0.005408,0.207584,0.008224,0.00832,0.006016,0.006112,0.006208,0.114624,0.005824
+1516,1300.11,0.769165,0.360608,0.00496,0.2048,0.008288,0.008096,0.006144,0.006144,0.006144,0.110592,0.00544
+1517,1395.57,0.716553,0.358432,0.005664,0.205056,0.00816,0.008128,0.005984,0.005824,0.006624,0.108256,0.004736
+1518,1294.77,0.772339,0.356672,0.004416,0.204832,0.008256,0.009216,0.005184,0.006048,0.007168,0.105408,0.006144
+1519,1270.47,0.787109,0.36096,0.004608,0.2048,0.008192,0.01024,0.006144,0.006016,0.006272,0.108544,0.006144
+1520,1209.33,0.826904,0.372768,0.005952,0.215232,0.008192,0.009952,0.006016,0.00592,0.0064,0.110624,0.00448
+1521,1157.55,0.863892,0.37072,0.005472,0.215232,0.008192,0.008672,0.006112,0.00592,0.0064,0.109696,0.005024
+1522,722.972,1.38318,0.36848,0.006848,0.212736,0.00816,0.008384,0.005888,0.005824,0.006432,0.108832,0.005376
+1523,1532.07,0.65271,0.358656,0.0056,0.204896,0.008192,0.008896,0.006016,0.00576,0.0064,0.106784,0.006112
+1524,1233.73,0.810547,0.358144,0.005792,0.20496,0.00816,0.008416,0.006144,0.005984,0.00608,0.10672,0.005888
+1525,1367.84,0.731079,0.361824,0.006112,0.204832,0.008192,0.01008,0.006048,0.005952,0.0064,0.108736,0.005472
+1526,1184.84,0.843994,0.360512,0.005376,0.205632,0.008192,0.008192,0.006176,0.006112,0.006144,0.109984,0.004704
+1527,1389.18,0.719849,0.359232,0.004928,0.204576,0.008416,0.009632,0.00592,0.004992,0.0072,0.108928,0.00464
+1528,1212.55,0.824707,0.367392,0.004896,0.208896,0.008192,0.009248,0.00512,0.006112,0.006304,0.113696,0.004928
+1529,1341.85,0.745239,0.545792,0.00512,0.38496,0.008256,0.009248,0.005088,0.006144,0.006144,0.114688,0.006144
+1530,704.688,1.41907,0.368224,0.008192,0.210368,0.00816,0.0088,0.006144,0.006144,0.006144,0.108544,0.005728
+1531,1200.82,0.832764,0.3544,0.005408,0.2048,0.00816,0.008704,0.005888,0.00576,0.005088,0.104448,0.006144
+1532,735.368,1.35986,0.35728,0.005024,0.2048,0.00816,0.008256,0.006048,0.005952,0.0064,0.10768,0.00496
+1533,1209.87,0.826538,0.362016,0.006144,0.204704,0.008128,0.00832,0.005472,0.005824,0.006432,0.111328,0.005664
+1534,1160.83,0.86145,0.376768,0.006048,0.206848,0.008192,0.024096,0.006496,0.005792,0.0064,0.10832,0.004576
+1535,1335.29,0.748901,0.361728,0.006144,0.20688,0.00816,0.009408,0.005024,0.006048,0.006272,0.108384,0.005408
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..f2a33fa
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_4,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1234.98,0.851891,0.356162,0.00554666,0.227677,0.00728928,0.00685053,0.00598097,0.00596813,0.00595125,0.0855406,0.00535769
+max_1024,1782.03,2.44922,0.87488,0.022848,0.743392,0.059328,0.041696,0.02224,0.02064,0.022528,0.110272,0.021472
+min_1024,408.293,0.561157,0.304512,0.004096,0.192512,0.005728,0.0048,0.00432,0.004416,0.00416,0.065536,0.004096
+512,661.659,1.51135,0.34688,0.00688,0.238656,0.006336,0.006336,0.00592,0.004928,0.006112,0.065728,0.005984
+513,1458.95,0.685425,0.32288,0.006016,0.206144,0.0064,0.00672,0.006144,0.006144,0.006144,0.073728,0.00544
+514,1245.36,0.802979,0.32176,0.006144,0.20688,0.006112,0.007264,0.005056,0.007392,0.004896,0.07344,0.004576
+515,1417.55,0.705444,0.306752,0.005376,0.197536,0.0072,0.007072,0.005888,0.00576,0.006048,0.066336,0.005536
+516,1507.55,0.66333,0.310624,0.006144,0.197728,0.006336,0.006304,0.005888,0.00496,0.006112,0.07168,0.005472
+517,1385.66,0.72168,0.309856,0.004704,0.200704,0.006144,0.007424,0.00592,0.005088,0.006144,0.06864,0.005088
+518,1188.8,0.841187,0.489472,0.005536,0.379424,0.006208,0.006144,0.006176,0.006048,0.005824,0.069696,0.004416
+519,967.864,1.0332,0.559904,0.004896,0.43536,0.019296,0.00752,0.00592,0.004992,0.006176,0.071168,0.004576
+520,1071.69,0.933105,0.322912,0.006144,0.210336,0.006336,0.006496,0.005728,0.005632,0.005088,0.07168,0.005472
+521,1406.83,0.710815,0.311552,0.004928,0.198688,0.006272,0.008032,0.005984,0.005792,0.005792,0.070496,0.005568
+522,1403.7,0.712402,0.314976,0.0056,0.201248,0.006144,0.006368,0.00592,0.006144,0.006144,0.07168,0.005728
+523,1311.14,0.762695,0.31504,0.006144,0.196608,0.006144,0.007424,0.006912,0.005952,0.005856,0.074208,0.005792
+524,1133.53,0.882202,0.335424,0.00592,0.217312,0.006144,0.006144,0.006144,0.00752,0.005792,0.074752,0.005696
+525,1573.27,0.63562,0.320064,0.004672,0.2048,0.006144,0.007264,0.006592,0.00576,0.005056,0.074816,0.00496
+526,1160.83,0.86145,0.31984,0.004448,0.202752,0.006176,0.007744,0.006272,0.005664,0.006016,0.07568,0.005088
+527,1038.28,0.963135,0.357312,0.005056,0.241696,0.007328,0.006976,0.006144,0.005824,0.005792,0.073824,0.004672
+528,768.264,1.30164,0.350208,0.006688,0.236832,0.006304,0.006304,0.006048,0.005792,0.004896,0.07168,0.005664
+529,1291.1,0.774536,0.335776,0.006016,0.223392,0.006112,0.008032,0.005888,0.005792,0.006656,0.06784,0.006048
+530,1183.13,0.845215,0.348192,0.006144,0.2392,0.006304,0.006304,0.005888,0.005824,0.004768,0.068768,0.004992
+531,927.956,1.07764,0.344096,0.006144,0.23472,0.006336,0.006752,0.006144,0.006016,0.005888,0.06592,0.006176
+532,1002.45,0.997559,0.404992,0.006176,0.286688,0.006144,0.006208,0.00608,0.006144,0.006144,0.075776,0.005632
+533,1126.05,0.888062,0.344288,0.004448,0.233216,0.006368,0.008192,0.006144,0.005888,0.00576,0.068224,0.006048
+534,1262.44,0.792114,0.344352,0.004864,0.232704,0.006432,0.006272,0.00592,0.005792,0.006592,0.070112,0.005664
+535,699.454,1.42969,0.348544,0.007008,0.239104,0.006336,0.006464,0.006144,0.006176,0.00608,0.065568,0.005664
+536,1232.44,0.811401,0.349664,0.005408,0.238304,0.006144,0.006176,0.006112,0.006112,0.00576,0.070048,0.0056
+537,1156.25,0.864868,0.345792,0.005696,0.238016,0.006144,0.007328,0.00496,0.006144,0.006144,0.065536,0.005824
+538,1059.49,0.943848,0.340128,0.005408,0.227904,0.006304,0.006304,0.00592,0.005792,0.005792,0.072256,0.004448
+539,1180.57,0.847046,0.356096,0.006144,0.239104,0.006336,0.006464,0.006176,0.006112,0.006016,0.073856,0.005888
+540,1195.74,0.836304,0.351424,0.006144,0.233472,0.006144,0.006144,0.006144,0.005824,0.00576,0.076448,0.005344
+541,705.356,1.41772,0.370624,0.006144,0.256,0.006144,0.008096,0.005888,0.005888,0.005984,0.0704,0.00608
+542,977.099,1.02344,0.514048,0.007968,0.400608,0.006336,0.0064,0.005888,0.005024,0.006048,0.071296,0.00448
+543,1082.6,0.923706,0.346848,0.004832,0.233472,0.0072,0.007136,0.006144,0.006144,0.005824,0.071296,0.0048
+544,1272.84,0.785645,0.33792,0.005408,0.22736,0.006304,0.0064,0.005792,0.004768,0.006112,0.069632,0.006144
+545,1239.52,0.806763,0.34416,0.005376,0.231488,0.006336,0.006752,0.006144,0.005984,0.006016,0.070976,0.005088
+546,1438.45,0.69519,0.339904,0.006048,0.229248,0.006272,0.006144,0.006144,0.006112,0.005728,0.069472,0.004736
+547,1228,0.814331,0.342976,0.005056,0.229376,0.006144,0.007616,0.006656,0.005792,0.005792,0.0704,0.006144
+548,1181.42,0.846436,0.343968,0.00608,0.22944,0.006144,0.006144,0.006144,0.006144,0.00592,0.071904,0.006048
+549,1049.58,0.952759,0.321536,0.00544,0.211648,0.006176,0.007168,0.005088,0.006144,0.006144,0.069408,0.00432
+550,706.451,1.41553,0.350208,0.008192,0.233472,0.006144,0.006144,0.006144,0.006144,0.006144,0.073472,0.004352
+551,1308.63,0.76416,0.319488,0.006016,0.208768,0.006336,0.006208,0.006144,0.006016,0.00576,0.069888,0.004352
+552,1325.78,0.754272,0.313216,0.004928,0.20272,0.006144,0.006144,0.006144,0.006144,0.005984,0.069728,0.00528
+553,1306.33,0.765503,0.32768,0.0056,0.20736,0.006176,0.016384,0.00592,0.006368,0.005984,0.06896,0.004928
+554,1462.6,0.683716,0.323616,0.005888,0.210688,0.006336,0.006272,0.006336,0.006144,0.005888,0.071264,0.0048
+555,1320.65,0.757202,0.323584,0.006144,0.208896,0.006144,0.00624,0.007744,0.004448,0.006144,0.07328,0.004544
+556,940.096,1.06372,0.311008,0.00608,0.202816,0.006144,0.006144,0.006144,0.005728,0.005792,0.066304,0.005856
+557,1287.04,0.776978,0.328608,0.005024,0.219136,0.006144,0.00768,0.006624,0.005792,0.005856,0.066208,0.006144
+558,444.083,2.25183,0.324,0.006688,0.210752,0.006208,0.006144,0.006144,0.00576,0.005888,0.070304,0.006112
+559,1233.92,0.810425,0.3584,0.006048,0.239712,0.007616,0.00672,0.006048,0.005984,0.0064,0.073728,0.006144
+560,1418.77,0.704834,0.333824,0.006016,0.214752,0.006368,0.00624,0.00624,0.006144,0.006144,0.077504,0.004416
+561,1311.35,0.762573,0.32608,0.00496,0.208896,0.007232,0.006752,0.005888,0.006496,0.005824,0.074304,0.005728
+562,1309.46,0.763672,0.319552,0.005408,0.20352,0.006144,0.007264,0.005056,0.006112,0.006144,0.074816,0.005088
+563,1012.86,0.987305,0.325632,0.0056,0.210624,0.006752,0.005696,0.005888,0.005056,0.005792,0.075488,0.004736
+564,1436.94,0.695923,0.32768,0.004928,0.21504,0.006144,0.006176,0.006112,0.006144,0.005792,0.072032,0.005312
+565,661.178,1.51245,0.356256,0.007488,0.24192,0.006336,0.006272,0.005888,0.005824,0.005024,0.07168,0.005824
+566,1283.41,0.779175,0.326432,0.004896,0.216128,0.006368,0.00624,0.005888,0.004992,0.006016,0.071552,0.004352
+567,1419.02,0.704712,0.323712,0.004512,0.208864,0.006144,0.006144,0.006144,0.006016,0.005856,0.074144,0.005888
+568,1370.13,0.729858,0.344768,0.004768,0.231424,0.006176,0.006144,0.006144,0.006112,0.007296,0.072192,0.004512
+569,1208.97,0.827148,0.330464,0.004832,0.21504,0.007776,0.00656,0.006144,0.005984,0.005856,0.072128,0.006144
+570,1270.67,0.786987,0.341632,0.006048,0.225376,0.006144,0.006144,0.006144,0.006144,0.00528,0.074592,0.00576
+571,1163.97,0.859131,0.32896,0.005408,0.210976,0.007008,0.00736,0.00496,0.006112,0.006144,0.075616,0.005376
+572,1145.41,0.873047,0.34816,0.00576,0.225664,0.006144,0.006144,0.006144,0.006176,0.00608,0.079904,0.006144
+573,723.1,1.38293,0.348192,0.007904,0.23104,0.006368,0.006592,0.006112,0.005824,0.006496,0.073056,0.0048
+574,1335.51,0.748779,0.31744,0.005632,0.203264,0.0072,0.006368,0.004864,0.007648,0.005824,0.070496,0.006144
+575,1111.99,0.899292,0.32912,0.005664,0.210912,0.006336,0.006464,0.006144,0.006144,0.006144,0.075776,0.005536
+576,1025.28,0.975342,0.352032,0.006144,0.238688,0.006368,0.006272,0.005888,0.00496,0.006112,0.07168,0.00592
+577,1309.88,0.763428,0.337312,0.005728,0.2216,0.006144,0.006208,0.00736,0.005888,0.005152,0.073696,0.005536
+578,1235.97,0.809082,0.32768,0.005536,0.2136,0.0072,0.006304,0.004928,0.006144,0.006144,0.07296,0.004864
+579,1201.35,0.832397,0.337472,0.005472,0.223552,0.006336,0.006304,0.006144,0.006144,0.005824,0.072,0.005696
+580,1290.08,0.775146,0.54992,0.00512,0.428032,0.016352,0.006176,0.005984,0.005792,0.005696,0.07216,0.004608
+581,825.723,1.21106,0.346336,0.005376,0.233728,0.00672,0.006272,0.005856,0.006496,0.005888,0.069888,0.006112
+582,1408.77,0.709839,0.329696,0.004608,0.217088,0.006144,0.006176,0.006112,0.006144,0.005888,0.071936,0.0056
+583,1265.37,0.790283,0.330944,0.005408,0.218048,0.006144,0.007456,0.00624,0.005856,0.00608,0.0704,0.005312
+584,1102.11,0.907349,0.3216,0.004928,0.210592,0.006336,0.006304,0.006176,0.006112,0.006144,0.069632,0.005376
+585,1484.33,0.673706,0.326752,0.005664,0.213152,0.006304,0.006304,0.006144,0.006144,0.006144,0.071584,0.005312
+586,1400.34,0.714111,0.325152,0.006144,0.212128,0.006304,0.006272,0.00592,0.004896,0.006176,0.071648,0.005664
+587,1366.7,0.731689,0.51408,0.005824,0.39904,0.006336,0.006624,0.006112,0.00608,0.005888,0.073504,0.004672
+588,968.322,1.03271,0.325472,0.005408,0.213728,0.006304,0.006208,0.005952,0.005696,0.00608,0.070304,0.005792
+589,769.13,1.30017,0.345184,0.007808,0.231808,0.006144,0.007488,0.005856,0.00512,0.007232,0.068384,0.005344
+590,1363.52,0.733398,0.321696,0.005408,0.211488,0.006304,0.006272,0.005856,0.005664,0.004992,0.069632,0.00608
+591,1593.77,0.627441,0.316288,0.005056,0.202464,0.006304,0.007392,0.005024,0.006176,0.006112,0.07168,0.00608
+592,1255.67,0.796387,0.311296,0.0056,0.197152,0.006176,0.006112,0.007264,0.005056,0.006112,0.07312,0.004704
+593,1371.05,0.72937,0.312704,0.004384,0.200704,0.006144,0.0072,0.00512,0.006144,0.006112,0.071232,0.005664
+594,1255.48,0.796509,0.312032,0.004864,0.197984,0.006336,0.006336,0.005856,0.005792,0.005024,0.074976,0.004864
+595,798.129,1.25293,0.359072,0.004768,0.231424,0.006112,0.007776,0.005856,0.006176,0.006624,0.085536,0.0048
+596,1042.9,0.958862,0.355808,0.005696,0.238048,0.00768,0.006304,0.005984,0.005792,0.00496,0.075744,0.0056
+597,736.36,1.35803,0.36464,0.007488,0.244512,0.006112,0.006144,0.006144,0.006144,0.006144,0.077184,0.004768
+598,1439.21,0.694824,0.323744,0.005408,0.209728,0.006176,0.006176,0.006112,0.005664,0.005728,0.074272,0.00448
+599,1398.91,0.714844,0.331136,0.006144,0.212992,0.006176,0.00624,0.006048,0.006112,0.005888,0.076032,0.005504
+600,1165.29,0.858154,0.327936,0.004576,0.212896,0.00624,0.006176,0.006016,0.005792,0.00576,0.07456,0.00592
+601,1524.09,0.656128,0.320928,0.00448,0.20384,0.006304,0.006848,0.005856,0.005728,0.005984,0.076448,0.00544
+602,1260.5,0.793335,0.311968,0.004736,0.198656,0.006144,0.007232,0.005056,0.006144,0.005792,0.07344,0.004768
+603,1443.78,0.692627,0.495616,0.006112,0.378912,0.006176,0.007488,0.005888,0.005024,0.006144,0.073728,0.006144
+604,1057.03,0.946045,0.323584,0.004672,0.210592,0.006336,0.006048,0.005856,0.006144,0.006016,0.072352,0.005568
+605,707.427,1.41357,0.3304,0.00688,0.212704,0.006336,0.00624,0.006144,0.006112,0.005888,0.074016,0.00608
+606,1364.2,0.733032,0.309728,0.005056,0.196608,0.006144,0.006144,0.006144,0.006144,0.006144,0.07168,0.005664
+607,1511.44,0.661621,0.329728,0.006144,0.210304,0.006336,0.006592,0.006144,0.005568,0.005888,0.078112,0.00464
+608,1362.61,0.733887,0.319648,0.004544,0.202752,0.006144,0.006144,0.006144,0.006176,0.006112,0.075776,0.005856
+609,1241.02,0.805786,0.313344,0.005632,0.198752,0.006304,0.0064,0.006144,0.006016,0.005824,0.073952,0.00432
+610,1599.06,0.625366,0.31712,0.0048,0.200704,0.006144,0.006208,0.007168,0.00608,0.00512,0.075552,0.005344
+611,560.06,1.78552,0.323616,0.00592,0.210464,0.006304,0.006688,0.006144,0.005792,0.005824,0.071552,0.004928
+612,647.129,1.54529,0.411296,0.00752,0.291776,0.006144,0.007904,0.005888,0.005824,0.00496,0.075776,0.005504
+613,1380.05,0.724609,0.32368,0.005408,0.207328,0.006304,0.006368,0.007424,0.004864,0.006112,0.073728,0.006144
+614,1102.26,0.907227,0.324224,0.004736,0.21232,0.006368,0.006336,0.005824,0.005792,0.005024,0.073312,0.004512
+615,1216.69,0.821899,0.316,0.004672,0.2048,0.006144,0.008,0.006336,0.006016,0.005792,0.069376,0.004864
+616,1470.21,0.680176,0.319232,0.004704,0.208192,0.006336,0.006272,0.005792,0.004832,0.006144,0.071648,0.005312
+617,1499.54,0.66687,0.313344,0.00576,0.203136,0.006176,0.00736,0.006432,0.005696,0.005088,0.068704,0.004992
+618,1351.59,0.739868,0.50512,0.005856,0.389408,0.006144,0.007776,0.005824,0.004832,0.006144,0.073728,0.005408
+619,1115.47,0.896484,0.313504,0.004576,0.200544,0.006272,0.0064,0.00592,0.006144,0.006144,0.07168,0.005824
+620,686.327,1.45703,0.324032,0.006944,0.208384,0.006336,0.006272,0.005856,0.006304,0.006304,0.07184,0.005792
+621,1624.75,0.615479,0.319616,0.00544,0.202816,0.006336,0.006752,0.006176,0.006112,0.006112,0.07376,0.006112
+622,1348.26,0.741699,0.309184,0.005792,0.194912,0.006176,0.007488,0.005824,0.005088,0.006144,0.07168,0.00608
+623,1437.7,0.695557,0.312352,0.00512,0.198656,0.007264,0.00688,0.005664,0.005792,0.005152,0.07312,0.004704
+624,1331.38,0.751099,0.305152,0.00592,0.192736,0.006144,0.006144,0.006176,0.006112,0.005984,0.071296,0.00464
+625,1504.78,0.664551,0.313536,0.005408,0.197504,0.007168,0.006848,0.005856,0.005792,0.005056,0.075264,0.00464
+626,1366.47,0.731812,0.311328,0.005856,0.194336,0.006304,0.006496,0.006176,0.006112,0.007296,0.072576,0.006176
+627,1109.28,0.901489,0.3176,0.005984,0.204736,0.006336,0.006496,0.005824,0.006144,0.006208,0.071264,0.004608
+628,1394.86,0.716919,0.553504,0.004992,0.44192,0.00848,0.006304,0.005856,0.00576,0.004896,0.069504,0.005792
+629,776.714,1.28748,0.322592,0.005888,0.21296,0.006336,0.0064,0.005984,0.006144,0.005856,0.06768,0.005344
+630,1448.89,0.690186,0.31424,0.004992,0.2048,0.006176,0.006144,0.006112,0.006144,0.006048,0.06768,0.006144
+631,1266.74,0.789429,0.310016,0.004832,0.198656,0.006176,0.007936,0.005824,0.005856,0.005088,0.069472,0.006176
+632,1446.58,0.691284,0.307232,0.005824,0.19488,0.006144,0.007264,0.006144,0.006048,0.00512,0.071392,0.004416
+633,1465.21,0.682495,0.309184,0.006144,0.196608,0.006176,0.00736,0.004928,0.006112,0.006144,0.069632,0.00608
+634,1457.13,0.686279,0.306784,0.00544,0.193216,0.007328,0.006304,0.0048,0.006144,0.006144,0.07168,0.005728
+635,1074.22,0.930908,0.3208,0.006144,0.2048,0.00624,0.007904,0.005664,0.00624,0.006592,0.071808,0.005408
+636,1348.03,0.741821,0.32608,0.004544,0.206848,0.006144,0.006176,0.006112,0.007776,0.005888,0.078112,0.00448
+637,732.606,1.36499,0.341952,0.006784,0.221184,0.006144,0.007552,0.005888,0.004992,0.006176,0.077792,0.00544
+638,1333.98,0.749634,0.317376,0.006016,0.198784,0.006144,0.0072,0.005088,0.006144,0.006144,0.075776,0.00608
+639,1196.26,0.835938,0.312224,0.004992,0.200064,0.006304,0.006624,0.006144,0.006144,0.006144,0.071136,0.004672
+640,1594.71,0.627075,0.304512,0.006144,0.193984,0.006336,0.006272,0.005472,0.005024,0.006144,0.069632,0.005504
+641,1517.88,0.658813,0.331328,0.00464,0.218464,0.006592,0.0064,0.006112,0.006144,0.006048,0.07152,0.005408
+642,1347.37,0.742188,0.311296,0.006144,0.196416,0.006336,0.006144,0.005824,0.005792,0.004864,0.074688,0.005088
+643,1453.77,0.687866,0.313344,0.005536,0.19712,0.00624,0.007808,0.005856,0.005888,0.005056,0.075136,0.004704
+644,1041.97,0.959717,0.31696,0.006048,0.202848,0.006176,0.006112,0.006112,0.0056,0.00576,0.07264,0.005664
+645,625.917,1.59766,0.340672,0.006848,0.210944,0.0072,0.007136,0.00592,0.016608,0.006176,0.075008,0.004832
+646,1436.44,0.696167,0.314304,0.005024,0.200704,0.006144,0.006144,0.006144,0.006144,0.005984,0.073504,0.004512
+647,938.159,1.06592,0.31552,0.004736,0.19776,0.006336,0.006848,0.006144,0.005824,0.005856,0.076384,0.005632
+648,1433.42,0.697632,0.336096,0.005376,0.213152,0.006336,0.00624,0.005824,0.004928,0.006176,0.083584,0.00448
+649,1133.53,0.882202,0.347488,0.005696,0.225248,0.006336,0.006432,0.006176,0.006144,0.006112,0.079872,0.005472
+650,1016.5,0.983765,0.338336,0.004512,0.208896,0.006144,0.00736,0.016992,0.006208,0.006304,0.0768,0.00512
+651,1585.45,0.630737,0.495968,0.004896,0.37888,0.006144,0.007424,0.004864,0.006144,0.006176,0.075744,0.005696
+652,771.956,1.29541,0.567296,0.006144,0.432128,0.024576,0.006176,0.006048,0.006208,0.005984,0.073888,0.006144
+653,1229.29,0.813477,0.32928,0.005664,0.211424,0.006144,0.007872,0.005888,0.005824,0.005088,0.07568,0.005696
+654,1176.5,0.849976,0.315008,0.006144,0.202176,0.006336,0.00624,0.005824,0.005824,0.005056,0.071648,0.00576
+655,1501.19,0.666138,0.327584,0.006144,0.206848,0.006144,0.008192,0.006144,0.006144,0.005984,0.075936,0.006048
+656,1298.26,0.770264,0.314816,0.005824,0.201024,0.006176,0.006112,0.006144,0.006144,0.006144,0.07168,0.005568
+657,1498.17,0.66748,0.329024,0.006144,0.20688,0.006112,0.008096,0.005888,0.005824,0.004992,0.079648,0.00544
+658,1191.04,0.8396,0.315424,0.005536,0.197216,0.006144,0.006144,0.006144,0.005984,0.005888,0.077632,0.004736
+659,1655.28,0.604126,0.318336,0.004992,0.202496,0.006336,0.007776,0.005888,0.005984,0.006112,0.073728,0.005024
+660,1152.02,0.868042,0.337408,0.006144,0.20688,0.007296,0.006272,0.004896,0.00608,0.006144,0.088064,0.005632
+661,736.889,1.35706,0.332704,0.00704,0.212608,0.006336,0.0064,0.00608,0.006016,0.00592,0.077696,0.004608
+662,1502.57,0.665527,0.327392,0.00608,0.200704,0.006208,0.006144,0.005888,0.005984,0.005888,0.08464,0.005856
+663,1272.25,0.786011,0.321536,0.005536,0.197216,0.007168,0.007008,0.005856,0.005792,0.004896,0.083424,0.00464
+664,1450.68,0.689331,0.31792,0.004704,0.198656,0.006144,0.0064,0.005888,0.006144,0.006144,0.077824,0.006016
+665,1352.48,0.73938,0.311968,0.004768,0.196608,0.00736,0.006976,0.00592,0.005792,0.005824,0.073696,0.005024
+666,1426.68,0.700928,0.30928,0.005408,0.194752,0.00672,0.006144,0.006144,0.00592,0.005728,0.073568,0.004896
+667,820.266,1.21912,0.329696,0.00448,0.21504,0.007168,0.006848,0.005664,0.0064,0.005952,0.072384,0.00576
+668,1119.43,0.893311,0.328896,0.006112,0.215072,0.006144,0.006272,0.006016,0.006144,0.005824,0.07184,0.005472
+669,880.86,1.13525,0.5192,0.008192,0.403456,0.006144,0.00736,0.00496,0.006112,0.006144,0.071552,0.00528
+670,1383.55,0.722778,0.314624,0.00592,0.200928,0.006144,0.006144,0.006144,0.006176,0.006112,0.07168,0.005376
+671,1284.21,0.778687,0.314912,0.006048,0.20288,0.006112,0.007552,0.004736,0.006144,0.006144,0.069632,0.005664
+672,1468.1,0.681152,0.311456,0.004608,0.200704,0.006144,0.007744,0.005856,0.004864,0.006112,0.069632,0.005792
+673,1375.65,0.726929,0.314816,0.005376,0.196928,0.006304,0.006528,0.006048,0.006144,0.005984,0.075936,0.005568
+674,1279.4,0.781616,0.31216,0.004928,0.194592,0.006112,0.006176,0.006112,0.006144,0.006144,0.077568,0.004384
+675,1436.94,0.695923,0.313312,0.00496,0.196608,0.006144,0.008224,0.006112,0.006144,0.006144,0.073632,0.005344
+676,1371.51,0.729126,0.3072,0.0056,0.194592,0.006112,0.006688,0.005824,0.005792,0.004864,0.07312,0.004608
+677,1014.87,0.985352,0.562944,0.00464,0.432096,0.02256,0.007968,0.005888,0.005792,0.004992,0.073664,0.005344
+678,849.44,1.17725,0.315104,0.004512,0.20272,0.007264,0.00624,0.00496,0.005792,0.00576,0.072384,0.005472
+679,1400.82,0.713867,0.314784,0.006048,0.196704,0.006144,0.008192,0.006144,0.006144,0.006112,0.07376,0.005536
+680,775.317,1.28979,0.31024,0.005088,0.198656,0.006144,0.006144,0.006144,0.005728,0.005696,0.07168,0.00496
+681,1782.03,0.561157,0.313568,0.00496,0.196608,0.007168,0.008384,0.004928,0.006144,0.006144,0.073728,0.005504
+682,1285.42,0.777954,0.31104,0.005632,0.195072,0.006176,0.006112,0.007328,0.00496,0.006144,0.073728,0.005888
+683,1550.05,0.645142,0.311488,0.005408,0.197472,0.006176,0.006176,0.006112,0.00608,0.005856,0.07312,0.005088
+684,737.487,1.35596,0.344064,0.005696,0.22544,0.006432,0.006144,0.006144,0.005824,0.00576,0.07648,0.006144
+685,701.37,1.42578,0.339392,0.007776,0.218656,0.006304,0.00688,0.006112,0.006176,0.006048,0.075872,0.005568
+686,1382.15,0.723511,0.31648,0.005632,0.199168,0.006144,0.00816,0.005824,0.005824,0.004864,0.075552,0.005312
+687,1552.69,0.644043,0.318848,0.005632,0.199168,0.007488,0.006848,0.006144,0.006112,0.005824,0.076128,0.005504
+688,1337.69,0.747559,0.308832,0.005472,0.196416,0.006336,0.006272,0.004672,0.006112,0.006144,0.07168,0.005728
+689,1395.33,0.716675,0.317216,0.005632,0.199168,0.007264,0.007104,0.005888,0.005888,0.005856,0.074496,0.00592
+690,1238.77,0.807251,0.31024,0.005088,0.196128,0.006304,0.006304,0.005856,0.00576,0.004928,0.074912,0.00496
+691,1555.05,0.643066,0.311296,0.006144,0.197888,0.006336,0.006688,0.005888,0.00576,0.005824,0.071808,0.00496
+692,1308.42,0.764282,0.493568,0.006016,0.379008,0.006144,0.006144,0.006144,0.006144,0.005856,0.071968,0.006144
+693,1077.89,0.927734,0.565312,0.004704,0.452608,0.008192,0.007712,0.005888,0.004832,0.006144,0.069632,0.0056
+694,840.895,1.18921,0.312224,0.005024,0.198656,0.006144,0.007424,0.004864,0.006144,0.006144,0.072832,0.004992
+695,1332.47,0.750488,0.308864,0.004704,0.198112,0.006304,0.006496,0.005824,0.006272,0.0056,0.070208,0.005344
+696,1552.1,0.644287,0.309152,0.004704,0.195968,0.006336,0.006592,0.006048,0.005728,0.00576,0.072576,0.00544
+697,1389.89,0.719482,0.30928,0.005408,0.194752,0.006336,0.006496,0.006144,0.005824,0.00608,0.07328,0.00496
+698,1344.94,0.74353,0.312768,0.006144,0.19408,0.006336,0.00624,0.0056,0.004832,0.006144,0.077824,0.005568
+699,1461.81,0.684082,0.31648,0.006144,0.196608,0.006144,0.0072,0.005088,0.006144,0.006176,0.077632,0.005344
+700,1401.54,0.713501,0.31744,0.006144,0.19456,0.006144,0.006144,0.006144,0.006144,0.005824,0.08128,0.005056
+701,1299.9,0.769287,0.4936,0.005408,0.378912,0.006368,0.006688,0.006112,0.005984,0.005888,0.073472,0.004768
+702,1037.22,0.964111,0.59264,0.004832,0.421888,0.044992,0.006208,0.005888,0.005888,0.020992,0.07712,0.004832
+703,732.672,1.36487,0.333184,0.006144,0.217088,0.006144,0.008032,0.005856,0.005792,0.004992,0.073632,0.005504
+704,769.563,1.29944,0.423936,0.018432,0.294752,0.006304,0.006144,0.005952,0.006336,0.005952,0.07392,0.006144
+705,1296.61,0.77124,0.340672,0.004992,0.219168,0.007168,0.006848,0.005856,0.005824,0.005088,0.079808,0.00592
+706,1590.99,0.62854,0.321536,0.005952,0.19808,0.006336,0.006272,0.005856,0.004864,0.006112,0.08192,0.006144
+707,1331.6,0.750977,0.31488,0.005856,0.196736,0.006304,0.00752,0.006496,0.005888,0.005824,0.074624,0.005632
+708,1008.62,0.991455,0.326272,0.004768,0.212256,0.006304,0.006304,0.005824,0.004832,0.006112,0.07536,0.004512
+709,1071.83,0.932983,0.61936,0.00496,0.501408,0.00848,0.006208,0.006144,0.006144,0.006016,0.07552,0.00448
+710,822.077,1.21643,0.31792,0.004704,0.198656,0.006176,0.006112,0.006144,0.006144,0.006144,0.077824,0.006016
+711,1504.5,0.664673,0.3152,0.005824,0.198336,0.006656,0.006432,0.005984,0.006144,0.006176,0.073696,0.005952
+712,1354.95,0.738037,0.310176,0.005024,0.194528,0.006176,0.006112,0.006176,0.006112,0.006144,0.075136,0.004768
+713,1354.72,0.738159,0.316576,0.005824,0.194336,0.006336,0.008544,0.006144,0.006016,0.005792,0.078272,0.005312
+714,1247.26,0.801758,0.311296,0.00576,0.194656,0.006304,0.006272,0.005856,0.006016,0.00656,0.075552,0.00432
+715,1635.46,0.61145,0.317664,0.005376,0.195552,0.007328,0.006272,0.004928,0.006048,0.006144,0.079872,0.006144
+716,1339.22,0.746704,0.316096,0.0048,0.196608,0.006176,0.006112,0.00608,0.005824,0.005728,0.080064,0.004704
+717,982.136,1.01819,0.374784,0.005984,0.23568,0.006144,0.007648,0.016928,0.006176,0.006112,0.083968,0.006144
+718,1370.82,0.729492,0.616544,0.005408,0.451328,0.021856,0.041696,0.00592,0.005824,0.005728,0.074304,0.00448
+719,815.53,1.2262,0.330464,0.004992,0.206176,0.006336,0.008096,0.005856,0.00496,0.006144,0.08192,0.005984
+720,1437.19,0.695801,0.327712,0.005824,0.203072,0.006144,0.006144,0.006144,0.006144,0.006144,0.083104,0.004992
+721,1339.44,0.746582,0.319712,0.005408,0.19888,0.006336,0.006272,0.006432,0.005792,0.005824,0.079648,0.00512
+722,1296.61,0.77124,0.30976,0.004608,0.19456,0.006176,0.007168,0.00512,0.006112,0.005952,0.075392,0.004672
+723,1078.6,0.927124,0.326464,0.004896,0.208928,0.007296,0.006848,0.006048,0.005792,0.005952,0.076,0.004704
+724,1584.53,0.631104,0.31952,0.005408,0.198752,0.006336,0.006304,0.005824,0.00576,0.00512,0.081344,0.004672
+725,1419.51,0.704468,0.499712,0.005984,0.378976,0.00624,0.00624,0.006016,0.006144,0.006176,0.078912,0.005024
+726,1105.23,0.904785,0.567328,0.004672,0.438272,0.016384,0.007168,0.00512,0.006144,0.006112,0.077856,0.0056
+727,808.208,1.2373,0.320128,0.004736,0.200704,0.006144,0.008064,0.005664,0.006016,0.00592,0.076736,0.006144
+728,1413.39,0.70752,0.315872,0.004608,0.19968,0.006336,0.00608,0.00496,0.006144,0.006144,0.077568,0.004352
+729,1420,0.704224,0.323584,0.005824,0.196416,0.006336,0.008256,0.005824,0.005824,0.005024,0.085248,0.004832
+730,1322.36,0.756226,0.317856,0.004512,0.196576,0.006144,0.007392,0.006048,0.0064,0.004896,0.079712,0.006176
+731,1315.14,0.760376,0.315456,0.005376,0.196512,0.006304,0.00688,0.006144,0.005824,0.005824,0.077984,0.004608
+732,1439.21,0.694824,0.329728,0.006144,0.196608,0.006144,0.018432,0.007488,0.005888,0.005056,0.077856,0.006112
+733,1395.57,0.716553,0.312064,0.0048,0.19456,0.006176,0.00752,0.0064,0.005792,0.005024,0.077408,0.004384
+734,1019.79,0.980591,0.32768,0.005984,0.207008,0.007264,0.00624,0.00496,0.006112,0.006144,0.077824,0.006144
+735,1400.34,0.714111,0.607552,0.005664,0.453088,0.008192,0.007744,0.006432,0.02064,0.006176,0.093888,0.005728
+736,795.803,1.25659,0.33872,0.004896,0.216832,0.006336,0.006208,0.005984,0.006016,0.005984,0.081824,0.00464
+737,1443.78,0.692627,0.317728,0.004384,0.199712,0.006304,0.006816,0.005824,0.005824,0.004992,0.079392,0.00448
+738,1251.64,0.79895,0.311296,0.005632,0.194752,0.006304,0.006304,0.006144,0.00592,0.006016,0.075264,0.00496
+739,1458.95,0.685425,0.311328,0.006016,0.19472,0.006112,0.007808,0.005824,0.005888,0.005056,0.075072,0.004832
+740,1458.17,0.685791,0.311328,0.00544,0.195264,0.006176,0.006112,0.006144,0.00608,0.00576,0.075776,0.004576
+741,1407.8,0.710327,0.316672,0.006144,0.194528,0.006176,0.007456,0.006464,0.006016,0.005984,0.078528,0.005376
+742,832.774,1.20081,0.541568,0.00496,0.41984,0.006144,0.006144,0.006112,0.005792,0.00576,0.081792,0.005024
+743,1485.94,0.672974,0.589824,0.006144,0.427104,0.048032,0.00752,0.005824,0.00512,0.006112,0.07888,0.005088
+744,861.681,1.16052,0.32992,0.005408,0.20368,0.007264,0.006496,0.005888,0.004928,0.006144,0.083968,0.006144
+745,1346.7,0.742554,0.31264,0.005952,0.194752,0.006144,0.007392,0.004896,0.006144,0.006144,0.075776,0.00544
+746,1392.72,0.718018,0.314528,0.006016,0.196736,0.006144,0.006144,0.006144,0.006016,0.005696,0.076288,0.005344
+747,1291.91,0.774048,0.327648,0.006144,0.204576,0.006336,0.008224,0.006048,0.00576,0.005856,0.078592,0.006112
+748,1424.2,0.702148,0.311296,0.005472,0.195232,0.006144,0.007584,0.005856,0.004992,0.006144,0.075392,0.00448
+749,1215.97,0.822388,0.30608,0.005024,0.193728,0.006336,0.006656,0.005824,0.005824,0.004992,0.0728,0.004896
+750,1652.95,0.60498,0.319488,0.005376,0.197408,0.006144,0.00768,0.006432,0.00576,0.005824,0.080128,0.004736
+751,1114.25,0.897461,0.324768,0.006144,0.202336,0.006464,0.00624,0.007232,0.005056,0.006144,0.07984,0.005312
+752,629.379,1.58887,0.36608,0.007776,0.239264,0.006336,0.006272,0.005856,0.004864,0.006112,0.083968,0.005632
+753,1259.92,0.793701,0.32768,0.006144,0.203808,0.006304,0.006976,0.005472,0.004864,0.00608,0.083424,0.004608
+754,1574.78,0.63501,0.323104,0.006144,0.196608,0.007264,0.006304,0.00672,0.005792,0.00576,0.082848,0.005664
+755,1336.81,0.748047,0.323264,0.004448,0.199872,0.006336,0.008032,0.004928,0.00608,0.006144,0.081952,0.005472
+756,1366.24,0.731934,0.320128,0.004736,0.19456,0.006176,0.006112,0.006144,0.005888,0.00576,0.08576,0.004992
+757,1347.15,0.74231,0.329216,0.005472,0.195232,0.006144,0.008192,0.006176,0.006112,0.006112,0.090144,0.005632
+758,1382.38,0.723389,0.327712,0.006144,0.19456,0.006176,0.006112,0.006144,0.005984,0.00576,0.090656,0.006176
+759,1117.6,0.894775,0.49712,0.004448,0.380064,0.006464,0.006688,0.006016,0.005824,0.005824,0.07648,0.005312
+760,561.711,1.78027,0.345856,0.008096,0.211072,0.006112,0.006304,0.005984,0.02048,0.008096,0.073824,0.005888
+761,1622.18,0.616455,0.318784,0.006144,0.200704,0.006144,0.006304,0.006016,0.006112,0.006144,0.075776,0.00544
+762,1339.44,0.746582,0.312704,0.006144,0.196352,0.006336,0.006208,0.006144,0.006144,0.006144,0.073728,0.005504
+763,1516.19,0.659546,0.317696,0.004704,0.196608,0.007872,0.006464,0.006144,0.005984,0.00576,0.078368,0.005792
+764,1361.48,0.734497,0.310656,0.005536,0.19504,0.006112,0.006272,0.0056,0.006016,0.005856,0.07472,0.005504
+765,1364.65,0.732788,0.319264,0.006112,0.195968,0.006816,0.008192,0.006144,0.006048,0.00592,0.078176,0.005888
+766,1336.6,0.748169,0.311392,0.004512,0.19456,0.006176,0.006112,0.006176,0.006112,0.005984,0.075936,0.005824
+767,1242.34,0.804932,0.498528,0.00496,0.376832,0.008096,0.00624,0.006144,0.006048,0.005824,0.079264,0.00512
+768,950.238,1.05237,0.347776,0.005792,0.199008,0.006176,0.006432,0.022208,0.006176,0.006112,0.090112,0.00576
+769,678.651,1.47351,0.351296,0.008128,0.228672,0.006432,0.006624,0.006144,0.00592,0.005824,0.078144,0.005408
+770,1481.11,0.675171,0.320128,0.004736,0.200736,0.007232,0.00656,0.005824,0.004928,0.006144,0.079552,0.004416
+771,1350.7,0.740356,0.320736,0.005632,0.199168,0.006144,0.00736,0.006432,0.005824,0.004992,0.07984,0.005344
+772,1477.37,0.67688,0.315392,0.006144,0.194464,0.00624,0.006144,0.006144,0.006144,0.006112,0.078976,0.005024
+773,1258.37,0.794678,0.31696,0.004384,0.195968,0.006336,0.006304,0.005824,0.0064,0.00576,0.080608,0.005376
+774,1409.26,0.709595,0.313536,0.004992,0.196576,0.006144,0.006176,0.006016,0.005792,0.00576,0.076608,0.005472
+775,1083.02,0.92334,0.321728,0.005408,0.202784,0.006336,0.006656,0.006304,0.006112,0.005952,0.077152,0.005024
+776,666.287,1.50085,0.331808,0.007648,0.207392,0.007264,0.006304,0.004864,0.006144,0.006176,0.07984,0.006176
+777,1335.72,0.748657,0.312544,0.005856,0.194176,0.006784,0.006176,0.006144,0.005984,0.005888,0.076096,0.00544
+778,510.151,1.96021,0.394656,0.005728,0.266272,0.006304,0.006336,0.005824,0.013728,0.006208,0.07872,0.005536
+779,1370.82,0.729492,0.33984,0.006144,0.214688,0.006368,0.006272,0.007552,0.005792,0.005088,0.08192,0.006016
+780,1443.27,0.692871,0.314496,0.00576,0.19696,0.006176,0.006144,0.00592,0.005824,0.00576,0.07664,0.005312
+781,1023.49,0.977051,0.316128,0.004832,0.201952,0.006368,0.00672,0.006144,0.005984,0.005824,0.073408,0.004896
+782,1436.44,0.696167,0.630784,0.005792,0.485728,0.034816,0.006144,0.006144,0.006112,0.005984,0.07504,0.005024
+783,788.906,1.26758,0.327936,0.004896,0.208256,0.006336,0.006592,0.00576,0.005952,0.005856,0.078688,0.0056
+784,1409.01,0.709717,0.317184,0.004704,0.200672,0.007264,0.006432,0.005856,0.005024,0.006144,0.075776,0.005312
+785,1343.17,0.744507,0.32256,0.005504,0.202784,0.006336,0.00656,0.006144,0.005792,0.005888,0.078208,0.005344
+786,1307.37,0.764893,0.319424,0.00608,0.19664,0.006112,0.006144,0.00736,0.006016,0.005056,0.08128,0.004736
+787,1549.46,0.645386,0.317888,0.004544,0.198656,0.007648,0.006688,0.005984,0.005792,0.00576,0.076672,0.006144
+788,1366.93,0.731567,0.317888,0.004512,0.196128,0.006304,0.006464,0.006144,0.006144,0.00576,0.08176,0.004672
+789,1220.86,0.819092,0.31952,0.006048,0.199776,0.006368,0.00688,0.005824,0.006304,0.005664,0.077952,0.004704
+790,1350.92,0.740234,0.499712,0.005472,0.3792,0.006368,0.006272,0.005792,0.005856,0.005792,0.080608,0.004352
+791,619.105,1.61523,0.331776,0.008192,0.208832,0.006208,0.007168,0.006464,0.004832,0.006112,0.079136,0.004832
+792,1362.83,0.733765,0.323552,0.00608,0.198656,0.0072,0.006304,0.004992,0.00608,0.006144,0.08192,0.006176
+793,1329.01,0.752441,0.321536,0.005568,0.197184,0.006144,0.007392,0.004896,0.006144,0.006144,0.08192,0.006144
+794,1385.19,0.721924,0.319968,0.004544,0.196544,0.006208,0.006144,0.006112,0.005856,0.00576,0.082624,0.006176
+795,697.073,1.43457,0.38912,0.00592,0.263776,0.006304,0.006624,0.006144,0.006144,0.006144,0.083328,0.004736
+796,1410.23,0.709106,0.32768,0.005664,0.201184,0.006176,0.006112,0.006144,0.00592,0.005824,0.084512,0.006144
+797,1292.73,0.77356,0.553696,0.0048,0.423936,0.007328,0.007008,0.006016,0.00576,0.005856,0.088288,0.004704
+798,1041.44,0.960205,0.343808,0.006112,0.222784,0.006304,0.006304,0.006304,0.006112,0.006016,0.077984,0.005888
+799,727.402,1.37476,0.33808,0.007488,0.217568,0.006464,0.007328,0.004992,0.006176,0.006112,0.077376,0.004576
+800,1278,0.782471,0.32768,0.006144,0.208864,0.006208,0.007168,0.005088,0.006176,0.005952,0.075936,0.006144
+801,1535.23,0.651367,0.319936,0.004992,0.204128,0.006304,0.006656,0.006144,0.006048,0.005856,0.074112,0.005696
+802,1421.48,0.703491,0.316096,0.0048,0.200096,0.006304,0.007648,0.00512,0.006112,0.006144,0.07376,0.006112
+803,1297.02,0.770996,0.313344,0.005568,0.196416,0.006304,0.006752,0.005984,0.005824,0.005792,0.076352,0.004352
+804,1510.6,0.661987,0.319488,0.006144,0.196608,0.007264,0.00656,0.00592,0.00608,0.005952,0.078816,0.006144
+805,944.214,1.05908,0.319136,0.00592,0.200384,0.006336,0.006496,0.006144,0.006144,0.006144,0.075776,0.005792
+806,1659.64,0.602539,0.321536,0.00544,0.203232,0.006336,0.006176,0.005888,0.005856,0.006528,0.077728,0.004352
+807,683.008,1.46411,0.338528,0.00672,0.217088,0.006144,0.007712,0.005824,0.004896,0.006144,0.078912,0.005088
+808,1509.21,0.662598,0.317024,0.006048,0.198176,0.006304,0.006336,0.00432,0.006176,0.006112,0.077824,0.005728
+809,1323.85,0.755371,0.3216,0.005376,0.195552,0.006144,0.008192,0.006144,0.006144,0.00608,0.081984,0.005984
+810,1409.74,0.709351,0.321344,0.004704,0.200448,0.006336,0.006176,0.006144,0.006144,0.006144,0.079872,0.005376
+811,1377.5,0.725952,0.319808,0.004384,0.196608,0.006144,0.007456,0.004864,0.006112,0.006144,0.08192,0.006176
+812,1296,0.771606,0.335776,0.005632,0.196544,0.006336,0.006304,0.005664,0.005824,0.00512,0.098304,0.006048
+813,1170.62,0.854248,0.328672,0.005088,0.204256,0.006304,0.006528,0.006144,0.006176,0.006112,0.08192,0.006144
+814,1021.06,0.97937,0.35024,0.005376,0.22976,0.006368,0.006272,0.005824,0.005984,0.006208,0.079584,0.004864
+815,684.263,1.46143,0.349952,0.007936,0.22144,0.006144,0.007296,0.004992,0.006176,0.006112,0.084,0.005856
+816,1316.62,0.759521,0.339232,0.006144,0.21504,0.006144,0.00752,0.006784,0.005856,0.005728,0.080608,0.005408
+817,1370.36,0.729736,0.323264,0.005408,0.199616,0.006336,0.00784,0.006304,0.006144,0.005888,0.080128,0.0056
+818,1454.03,0.687744,0.325888,0.005376,0.199648,0.006176,0.007968,0.005856,0.00624,0.005984,0.083904,0.004736
+819,1372.65,0.728516,0.319616,0.005408,0.195424,0.006144,0.006176,0.006112,0.006144,0.005952,0.082208,0.006048
+820,1491.9,0.670288,0.31888,0.006144,0.196608,0.006144,0.007392,0.004896,0.006144,0.006144,0.079872,0.005536
+821,1293.54,0.773071,0.320544,0.005504,0.1952,0.006144,0.007232,0.005056,0.006144,0.006144,0.083808,0.005312
+822,1205.59,0.829468,0.323616,0.005376,0.199456,0.006144,0.00624,0.006048,0.006144,0.006144,0.083168,0.004896
+823,588.464,1.69934,0.344096,0.00784,0.211296,0.006144,0.007456,0.004896,0.00608,0.006144,0.089536,0.004704
+824,1335.94,0.748535,0.325984,0.00448,0.196352,0.006304,0.006208,0.006144,0.006176,0.00608,0.089792,0.004448
+825,1316.62,0.759521,0.317632,0.004576,0.195584,0.006336,0.006624,0.004704,0.005824,0.005696,0.082432,0.005856
+826,1578.42,0.633545,0.321856,0.004416,0.197856,0.00688,0.006208,0.005888,0.005824,0.00576,0.084288,0.004736
+827,1375.65,0.726929,0.31648,0.005408,0.193312,0.007328,0.006304,0.005824,0.00512,0.006144,0.0816,0.00544
+828,1363.29,0.733521,0.316736,0.00608,0.1944,0.006304,0.006208,0.006144,0.006112,0.005728,0.08032,0.00544
+829,1300.94,0.768677,0.315872,0.004768,0.195776,0.006304,0.006816,0.005312,0.004928,0.006144,0.079872,0.005952
+830,993.572,1.00647,0.502144,0.004672,0.380928,0.006176,0.006112,0.006144,0.006144,0.005888,0.080128,0.005952
+831,1208.44,0.827515,0.590432,0.004672,0.459776,0.015456,0.008064,0.005824,0.005888,0.006016,0.080192,0.004544
+832,769.997,1.29871,0.387104,0.005408,0.258304,0.006656,0.006144,0.006144,0.013376,0.005184,0.081088,0.0048
+833,1058.95,0.944336,0.377248,0.00448,0.253952,0.006144,0.007648,0.005824,0.00496,0.006144,0.08352,0.004576
+834,1180.74,0.846924,0.370752,0.005408,0.25376,0.006336,0.006304,0.005824,0.005056,0.006144,0.077024,0.004896
+835,1379.36,0.724976,0.323968,0.004448,0.204832,0.006112,0.00736,0.004928,0.006144,0.006144,0.07936,0.00464
+836,1192.43,0.838623,0.323584,0.006144,0.200608,0.00624,0.006144,0.006144,0.005792,0.005632,0.080736,0.006144
+837,1559.49,0.641235,0.323968,0.004832,0.204256,0.006208,0.006624,0.005952,0.005856,0.00592,0.078528,0.005792
+838,1136.67,0.879761,0.322048,0.004608,0.204128,0.006304,0.006656,0.006144,0.006144,0.006144,0.077088,0.004832
+839,1275.02,0.784302,0.559136,0.005664,0.431712,0.014272,0.007104,0.005888,0.005792,0.00592,0.076608,0.006176
+840,819.446,1.22034,0.321664,0.005408,0.205664,0.006144,0.006144,0.00608,0.006208,0.006016,0.075776,0.004224
+841,1407.32,0.710571,0.314176,0.004928,0.197824,0.006336,0.007936,0.006176,0.004992,0.006112,0.073728,0.006144
+842,1488.37,0.671875,0.319488,0.006144,0.200096,0.006336,0.00656,0.006048,0.005792,0.00576,0.07808,0.004672
+843,1296,0.771606,0.316736,0.00608,0.196416,0.006304,0.00624,0.00592,0.005824,0.006176,0.078336,0.00544
+844,1442.51,0.693237,0.323424,0.00576,0.19872,0.006336,0.007552,0.004864,0.006144,0.006144,0.08192,0.005984
+845,1273.04,0.785522,0.319968,0.004576,0.197984,0.006368,0.006624,0.006112,0.006144,0.006144,0.081408,0.004608
+846,1146.7,0.87207,0.554944,0.004832,0.432128,0.007264,0.006272,0.004896,0.006144,0.006176,0.081888,0.005344
+847,1248.59,0.800903,0.669696,0.005536,0.485856,0.059328,0.0064,0.006112,0.006112,0.00608,0.088128,0.006144
+848,756.348,1.32214,0.339968,0.005824,0.209216,0.007328,0.006944,0.005824,0.00576,0.004896,0.088032,0.006144
+849,1231.51,0.812012,0.34032,0.00448,0.219104,0.006144,0.007776,0.005824,0.0064,0.006592,0.079264,0.004736
+850,762.969,1.31067,0.386688,0.004736,0.241664,0.006176,0.006208,0.006048,0.006144,0.006144,0.088096,0.021472
+851,507.874,1.96899,0.365504,0.005056,0.237568,0.006144,0.008192,0.006144,0.005952,0.005824,0.086336,0.004288
+852,1140.31,0.876953,0.505184,0.005792,0.378304,0.006368,0.006272,0.005856,0.00496,0.006144,0.086016,0.005472
+853,984.379,1.01587,0.564544,0.00544,0.438976,0.008192,0.008,0.005632,0.005888,0.006112,0.080864,0.00544
+854,1090.81,0.916748,0.333824,0.005472,0.207552,0.006144,0.006112,0.005856,0.00576,0.005824,0.086624,0.00448
+855,1308.63,0.76416,0.320768,0.005824,0.196928,0.006144,0.008192,0.006144,0.005824,0.005856,0.08048,0.005376
+856,1448.89,0.690186,0.319552,0.0048,0.201856,0.006336,0.006336,0.005664,0.006368,0.004896,0.077792,0.005504
+857,1328.79,0.752563,0.318912,0.006112,0.19664,0.006144,0.007392,0.006528,0.00576,0.005024,0.079744,0.005568
+858,1467.84,0.681274,0.321536,0.005664,0.19712,0.007232,0.007072,0.00608,0.005984,0.005984,0.082048,0.004352
+859,1332.47,0.750488,0.32144,0.004576,0.196192,0.006368,0.006304,0.006144,0.006144,0.006144,0.083968,0.0056
+860,1372.19,0.72876,0.319232,0.004576,0.198624,0.006144,0.006304,0.005984,0.006016,0.006016,0.080128,0.00544
+861,1131.18,0.884033,0.327232,0.005824,0.203104,0.007328,0.006976,0.006144,0.005824,0.005888,0.080448,0.005696
+862,1088.93,0.918335,0.567328,0.005568,0.440896,0.008224,0.006112,0.006144,0.006144,0.005824,0.083968,0.004448
+863,1008.49,0.991577,0.335872,0.006144,0.206848,0.006144,0.007808,0.00656,0.005824,0.005856,0.084544,0.006144
+864,1387.53,0.720703,0.328128,0.004672,0.200672,0.006144,0.006176,0.006112,0.006176,0.006112,0.086016,0.006048
+865,1261.28,0.792847,0.325184,0.004544,0.198656,0.006144,0.008192,0.006144,0.006144,0.006144,0.083904,0.005312
+866,1076.76,0.928711,0.333408,0.005376,0.211072,0.006304,0.006208,0.005856,0.005056,0.006144,0.08192,0.005472
+867,1344.27,0.743896,0.346368,0.005344,0.226304,0.006144,0.007808,0.006528,0.006144,0.006144,0.077472,0.00448
+868,1531.79,0.652832,0.323776,0.005408,0.203712,0.006112,0.006144,0.006144,0.006144,0.006144,0.079264,0.004704
+869,1210.22,0.826294,0.499424,0.005632,0.378656,0.006368,0.006656,0.006144,0.00592,0.00592,0.078272,0.005856
+870,1088.64,0.918579,0.575488,0.005504,0.416384,0.036864,0.01824,0.005856,0.006112,0.006048,0.075392,0.005088
+871,892.083,1.12097,0.323744,0.005376,0.205728,0.006144,0.007296,0.006432,0.00576,0.005088,0.077568,0.004352
+872,1389.42,0.719727,0.321568,0.006144,0.19984,0.006304,0.006272,0.004672,0.006144,0.006144,0.081024,0.005024
+873,1339.22,0.746704,0.320832,0.005664,0.19712,0.006112,0.007584,0.006656,0.00576,0.005888,0.080608,0.00544
+874,1329.87,0.751953,0.321536,0.00544,0.195264,0.006176,0.00736,0.00592,0.00512,0.007616,0.083712,0.004928
+875,1467.84,0.681274,0.323488,0.004512,0.198496,0.006304,0.007648,0.005856,0.004928,0.006144,0.083968,0.005632
+876,1351.37,0.73999,0.31952,0.005376,0.195328,0.006176,0.00768,0.005888,0.004832,0.006176,0.083008,0.005056
+877,1371.73,0.729004,0.323584,0.006144,0.19648,0.006272,0.007296,0.005056,0.00608,0.006144,0.08528,0.004832
+878,1139.2,0.877808,0.506144,0.005376,0.379456,0.006368,0.006304,0.005824,0.005856,0.004768,0.086016,0.006176
+879,710.556,1.40735,0.339136,0.00752,0.211136,0.006336,0.00656,0.006112,0.005664,0.00592,0.084576,0.005312
+880,1394.86,0.716919,0.323584,0.005376,0.199424,0.007232,0.006304,0.004928,0.006112,0.006144,0.08192,0.006144
+881,1427.68,0.700439,0.328288,0.004704,0.204384,0.006336,0.006368,0.006144,0.006144,0.006112,0.081952,0.006144
+882,1366.47,0.731812,0.32656,0.005024,0.200736,0.006112,0.007232,0.005056,0.006144,0.006144,0.083968,0.006144
+883,1356.07,0.737427,0.323584,0.005536,0.1968,0.006368,0.006336,0.006176,0.006112,0.006176,0.08544,0.00464
+884,1373.81,0.727905,0.321248,0.005664,0.19648,0.006336,0.006432,0.005632,0.005888,0.006048,0.082944,0.005824
+885,1225.61,0.815918,0.328704,0.00512,0.204768,0.006176,0.008192,0.006176,0.006112,0.00592,0.081344,0.004896
+886,1443.52,0.692749,0.50176,0.006176,0.378848,0.006144,0.0072,0.005088,0.006144,0.006144,0.081664,0.004352
+887,1057.71,0.945435,0.571648,0.005088,0.443904,0.008544,0.0064,0.00608,0.006112,0.006144,0.083968,0.005408
+888,813.263,1.22961,0.328256,0.004672,0.201888,0.006304,0.006368,0.005888,0.004864,0.006112,0.087072,0.005088
+889,1389.65,0.719604,0.321888,0.00448,0.197696,0.006304,0.006336,0.005856,0.004992,0.006112,0.085216,0.004896
+890,1417.55,0.705444,0.325792,0.00496,0.198656,0.006176,0.006112,0.006144,0.006144,0.006144,0.086016,0.00544
+891,1350.26,0.740601,0.319648,0.004736,0.19456,0.007296,0.00704,0.006144,0.006144,0.006144,0.08192,0.005664
+892,1354.72,0.738159,0.33024,0.004608,0.208224,0.006336,0.006624,0.006144,0.005856,0.005856,0.082144,0.004448
+893,1314.72,0.76062,0.317472,0.006144,0.196288,0.006336,0.007584,0.005888,0.00512,0.006112,0.079456,0.004544
+894,1430.17,0.699219,0.322304,0.00496,0.196032,0.006304,0.006304,0.005888,0.005888,0.005984,0.084896,0.006048
+895,1051.47,0.95105,0.329728,0.005792,0.205024,0.006272,0.007296,0.005024,0.006112,0.006144,0.08192,0.006144
+896,655.57,1.52539,0.33568,0.006656,0.212832,0.00624,0.006272,0.00592,0.006144,0.006048,0.079968,0.0056
+897,1447.09,0.69104,0.320384,0.004992,0.196608,0.006144,0.00784,0.00592,0.005888,0.00496,0.081888,0.006144
+898,1458.17,0.685791,0.319616,0.005376,0.195456,0.007296,0.00624,0.004928,0.006112,0.006144,0.0832,0.004864
+899,1385.19,0.721924,0.318944,0.005376,0.193312,0.006144,0.006176,0.006112,0.006144,0.005952,0.08416,0.005568
+900,1245.55,0.802856,0.323616,0.005952,0.1968,0.006144,0.006176,0.006112,0.006016,0.00432,0.087328,0.004768
+901,1395.81,0.716431,0.324256,0.004736,0.19456,0.006144,0.008064,0.005856,0.006016,0.00592,0.088512,0.004448
+902,1407.32,0.710571,0.32352,0.005376,0.195456,0.006144,0.006176,0.006112,0.006144,0.006016,0.086144,0.005952
+903,722.654,1.38379,0.34016,0.005408,0.211616,0.006368,0.006176,0.00592,0.005792,0.005856,0.088608,0.004416
+904,908.708,1.10046,0.399392,0.008192,0.258048,0.006144,0.006144,0.016384,0.006144,0.006048,0.087648,0.00464
+905,1519.57,0.658081,0.328576,0.004992,0.198336,0.006336,0.006272,0.006144,0.006144,0.006048,0.089632,0.004672
+906,1324.71,0.754883,0.325632,0.005856,0.198272,0.006304,0.00608,0.00592,0.005984,0.005152,0.0872,0.004864
+907,1371.96,0.728882,0.323584,0.005792,0.19456,0.006496,0.006144,0.006048,0.005792,0.005888,0.088288,0.004576
+908,1343.17,0.744507,0.31792,0.005024,0.19456,0.006144,0.007456,0.005952,0.005024,0.006144,0.08192,0.005696
+909,1019.03,0.981323,0.335872,0.005472,0.199232,0.00624,0.007968,0.00592,0.006432,0.00576,0.092704,0.006144
+910,1410.71,0.708862,0.325504,0.005568,0.199232,0.006176,0.006112,0.006144,0.006144,0.00608,0.084032,0.006016
+911,906.496,1.10315,0.356224,0.00608,0.219136,0.006208,0.007264,0.006432,0.006016,0.004864,0.094208,0.006016
+912,815.693,1.22595,0.3584,0.007872,0.223552,0.006144,0.006176,0.006112,0.00736,0.004928,0.091488,0.004768
+913,1267.72,0.788818,0.328256,0.004736,0.200224,0.006304,0.006464,0.006144,0.007264,0.005056,0.086016,0.006048
+914,1477.1,0.677002,0.32976,0.006112,0.198688,0.006176,0.007584,0.005856,0.004992,0.006112,0.089408,0.004832
+915,1354.05,0.738525,0.326304,0.004768,0.196576,0.006208,0.007168,0.00672,0.00576,0.005024,0.089504,0.004576
+916,1238.77,0.807251,0.32608,0.004544,0.200224,0.006304,0.006304,0.005664,0.006784,0.005984,0.0856,0.004672
+917,1342.73,0.744751,0.319584,0.005408,0.199488,0.007232,0.006496,0.005856,0.004992,0.006144,0.0792,0.004768
+918,1489.45,0.671387,0.319584,0.004512,0.198112,0.006304,0.006368,0.005632,0.004768,0.006112,0.08192,0.005856
+919,1176.5,0.849976,0.500128,0.004704,0.37888,0.006144,0.006144,0.006144,0.006144,0.005952,0.080064,0.005952
+920,553.177,1.80774,0.353024,0.00688,0.22736,0.007264,0.006368,0.005824,0.005088,0.006144,0.08352,0.004576
+921,866.97,1.15344,0.320992,0.00544,0.197408,0.006144,0.008192,0.005888,0.005824,0.005824,0.080768,0.005504
+922,1367.38,0.731323,0.330496,0.004864,0.208576,0.006336,0.006272,0.00576,0.005888,0.005888,0.082592,0.00432
+923,1580.25,0.632812,0.325664,0.005376,0.201504,0.006176,0.007296,0.00496,0.006144,0.006176,0.082944,0.005088
+924,1160.67,0.861572,0.321024,0.005696,0.197056,0.006144,0.006336,0.005984,0.007136,0.00512,0.08192,0.005632
+925,1629.6,0.613647,0.323584,0.0056,0.198816,0.006304,0.00768,0.00592,0.005088,0.006112,0.083168,0.004896
+926,1123.27,0.890259,0.37472,0.005024,0.247136,0.006336,0.006368,0.005856,0.005824,0.00496,0.087776,0.00544
+927,1039.2,0.96228,0.359136,0.004832,0.239232,0.006336,0.006336,0.006144,0.005824,0.005856,0.078528,0.006048
+928,702.392,1.42371,0.346272,0.006656,0.2232,0.006176,0.006112,0.006144,0.006144,0.005792,0.080224,0.005824
+929,1450.68,0.689331,0.326304,0.004704,0.202752,0.006368,0.00784,0.006272,0.006144,0.006144,0.081504,0.004576
+930,1472.06,0.679321,0.333856,0.005376,0.203296,0.006304,0.006176,0.006016,0.005792,0.00576,0.090752,0.004384
+931,1300.94,0.768677,0.33168,0.004992,0.200512,0.006336,0.006144,0.006144,0.006144,0.006144,0.089824,0.00544
+932,1339.44,0.746582,0.323072,0.005792,0.199008,0.006144,0.006176,0.005952,0.005856,0.005728,0.082784,0.005632
+933,1282.81,0.779541,0.322432,0.004992,0.201984,0.006368,0.006336,0.005824,0.004896,0.006048,0.08112,0.004864
+934,1195.21,0.83667,0.325664,0.005984,0.202912,0.006144,0.007232,0.005056,0.006144,0.005984,0.081088,0.00512
+935,1180.74,0.846924,0.574848,0.004384,0.43008,0.024576,0.008,0.005824,0.005792,0.004992,0.085888,0.005312
+936,775.537,1.28943,0.339968,0.00608,0.212448,0.006304,0.006272,0.006432,0.005632,0.005696,0.08496,0.006144
+937,1526.65,0.655029,0.319136,0.005472,0.196832,0.006368,0.00752,0.005024,0.006112,0.006144,0.079872,0.005792
+938,1487.56,0.672241,0.333152,0.006144,0.197984,0.006304,0.006656,0.006144,0.006144,0.006144,0.09216,0.005472
+939,1346.7,0.742554,0.331776,0.005984,0.198816,0.006144,0.007872,0.005856,0.006016,0.005856,0.090816,0.004416
+940,880.576,1.13562,0.341888,0.006112,0.210976,0.006176,0.006112,0.006176,0.005888,0.005632,0.0888,0.006016
+941,1114.56,0.897217,0.542848,0.005376,0.418176,0.006336,0.006432,0.006144,0.007296,0.005024,0.083232,0.004832
+942,1238.77,0.807251,0.57344,0.005408,0.442912,0.006336,0.006176,0.005952,0.005888,0.005888,0.088736,0.006144
+943,929.958,1.07532,0.570304,0.005024,0.433344,0.008608,0.00656,0.006144,0.005984,0.005856,0.092608,0.006176
+944,977.682,1.02283,0.331776,0.005376,0.205568,0.006304,0.00704,0.005088,0.006144,0.006112,0.08528,0.004864
+945,1293.13,0.773315,0.32368,0.00464,0.200256,0.006304,0.006464,0.006112,0.006016,0.00592,0.082272,0.005696
+946,1485.94,0.672974,0.329024,0.00576,0.201088,0.006144,0.006144,0.006144,0.00608,0.005728,0.086496,0.00544
+947,1313.03,0.761597,0.326592,0.005024,0.200704,0.006176,0.00816,0.006144,0.006016,0.005824,0.083904,0.00464
+948,1273.83,0.785034,0.327584,0.005984,0.198848,0.006112,0.0072,0.005088,0.006176,0.006112,0.086016,0.006048
+949,1363.06,0.733643,0.320736,0.005536,0.19888,0.006336,0.006368,0.006112,0.005632,0.005856,0.080704,0.005312
+950,1490.27,0.671021,0.326752,0.005568,0.198752,0.006304,0.006272,0.005824,0.005824,0.00496,0.087904,0.005344
+951,1107.48,0.902954,0.331072,0.005408,0.205568,0.006144,0.007744,0.005856,0.004832,0.006144,0.083968,0.005408
+952,820.184,1.21924,0.338944,0.007168,0.212992,0.006144,0.006144,0.006144,0.006144,0.00592,0.082144,0.006144
+953,1350.26,0.740601,0.32272,0.006144,0.1984,0.006336,0.006304,0.006048,0.005888,0.006048,0.082112,0.00544
+954,1429.67,0.699463,0.329728,0.006048,0.202016,0.006336,0.006528,0.005856,0.005824,0.004992,0.087296,0.004832
+955,1377.04,0.726196,0.321536,0.005952,0.196672,0.006304,0.006112,0.006144,0.006144,0.006112,0.083264,0.004832
+956,1332.9,0.750244,0.325536,0.0048,0.198656,0.007328,0.006944,0.005824,0.00576,0.004896,0.085984,0.005344
+957,1287.85,0.776489,0.321536,0.006144,0.196608,0.006144,0.007264,0.005024,0.006176,0.006112,0.08368,0.004384
+958,1477.1,0.677002,0.330464,0.00496,0.200576,0.006272,0.006144,0.005984,0.005792,0.005792,0.088928,0.006016
+959,668.571,1.49573,0.52464,0.004704,0.401024,0.006336,0.006272,0.005856,0.00576,0.005984,0.082816,0.005888
+960,1317.04,0.759277,0.589792,0.00448,0.43808,0.026176,0.00624,0.006144,0.005888,0.005984,0.091072,0.005728
+961,863.588,1.15796,0.333856,0.00544,0.207552,0.006176,0.007936,0.005824,0.006176,0.00592,0.083904,0.004928
+962,1426.93,0.700806,0.32992,0.005408,0.203232,0.006336,0.006176,0.005568,0.004896,0.006144,0.087232,0.004928
+963,1289.47,0.775513,0.331424,0.004736,0.203872,0.006304,0.006912,0.006144,0.006144,0.006144,0.085856,0.005312
+964,1389.65,0.719604,0.323584,0.00576,0.19808,0.006368,0.006144,0.004864,0.006112,0.006144,0.085088,0.005024
+965,1269.49,0.78772,0.328608,0.004992,0.200736,0.006304,0.008064,0.00608,0.006144,0.006144,0.08512,0.005024
+966,1471,0.67981,0.323584,0.005888,0.200608,0.006496,0.006144,0.006112,0.005792,0.00576,0.082432,0.004352
+967,1239.33,0.806885,0.50672,0.004864,0.378848,0.006336,0.006304,0.006016,0.006144,0.006176,0.085984,0.006048
+968,1098.12,0.910645,0.571392,0.006144,0.444416,0.009248,0.006304,0.004928,0.006144,0.006144,0.08192,0.006144
+969,852.534,1.17297,0.328864,0.006144,0.202752,0.007232,0.007104,0.005408,0.004928,0.00608,0.083872,0.005344
+970,1409.01,0.709717,0.323968,0.00448,0.200704,0.006144,0.007232,0.005056,0.006144,0.005984,0.083392,0.004832
+971,1261.86,0.79248,0.326912,0.005792,0.196736,0.006336,0.006176,0.006144,0.006016,0.00592,0.088416,0.005376
+972,1457.39,0.686157,0.325824,0.005536,0.199424,0.006176,0.007168,0.005088,0.006144,0.006048,0.085888,0.004352
+973,1259.92,0.793701,0.509696,0.00592,0.379008,0.00624,0.007232,0.005088,0.006112,0.006144,0.088096,0.005856
+974,1016.76,0.983521,0.353728,0.005408,0.229376,0.006336,0.006336,0.005792,0.005088,0.006144,0.083936,0.005312
+975,1405.63,0.711426,0.364224,0.004576,0.232512,0.006656,0.00656,0.006144,0.006016,0.005824,0.09056,0.005376
+976,1012.23,0.987915,0.584736,0.005408,0.432896,0.028672,0.006144,0.006144,0.006144,0.005792,0.088224,0.005312
+977,662.033,1.5105,0.331776,0.005472,0.205312,0.006336,0.006272,0.005984,0.006144,0.006112,0.084,0.006144
+978,1596.57,0.626343,0.333536,0.004512,0.208064,0.006368,0.006272,0.005792,0.006464,0.005792,0.0848,0.005472
+979,1302.8,0.767578,0.335872,0.006144,0.204288,0.006304,0.006496,0.006144,0.00608,0.005824,0.088448,0.006144
+980,1411.2,0.708618,0.329696,0.005376,0.203584,0.006176,0.006112,0.005472,0.005952,0.00608,0.084896,0.006048
+981,1274.03,0.784912,0.323264,0.005408,0.1992,0.006304,0.006272,0.006048,0.006176,0.006112,0.08192,0.005824
+982,1502.57,0.665527,0.324128,0.00464,0.20064,0.006208,0.006144,0.006144,0.006144,0.006048,0.083584,0.004576
+983,1255.09,0.796753,0.333408,0.0056,0.201024,0.006336,0.006176,0.006144,0.006016,0.005824,0.09056,0.005728
+984,1014.49,0.985718,0.631296,0.005088,0.495616,0.008192,0.0072,0.005088,0.006144,0.006144,0.09216,0.005664
+985,814.476,1.22778,0.341056,0.006112,0.204832,0.006176,0.007488,0.004768,0.006144,0.005984,0.094208,0.005344
+986,1437.19,0.695801,0.341152,0.006048,0.202848,0.006144,0.006144,0.006144,0.006176,0.006112,0.096224,0.005312
+987,1275.42,0.784058,0.337184,0.005376,0.199616,0.006144,0.007712,0.005984,0.005824,0.005088,0.096096,0.005344
+988,1407.8,0.710327,0.333824,0.006016,0.202176,0.00688,0.006272,0.005984,0.006144,0.006016,0.088192,0.006144
+989,1253.56,0.797729,0.326112,0.004832,0.198336,0.006304,0.006304,0.00768,0.005792,0.005024,0.085952,0.005888
+990,1368.53,0.730713,0.326496,0.004928,0.203872,0.006336,0.00688,0.00608,0.00576,0.00576,0.081984,0.004896
+991,1373.11,0.728271,0.325888,0.00592,0.198912,0.006112,0.007584,0.005888,0.004992,0.006112,0.08576,0.004608
+992,1115.62,0.896362,0.343904,0.005408,0.213504,0.006336,0.00624,0.005856,0.00656,0.006144,0.088064,0.005792
+993,1188.62,0.841309,0.580896,0.005536,0.43888,0.018464,0.008032,0.005856,0.005984,0.00624,0.086496,0.005408
+994,845.32,1.18298,0.336832,0.005056,0.204832,0.006112,0.006144,0.008,0.005792,0.005728,0.090592,0.004576
+995,1235.22,0.80957,0.326752,0.005728,0.20112,0.006144,0.007232,0.005056,0.006144,0.006144,0.08384,0.005344
+996,1501.47,0.666016,0.32768,0.00576,0.19904,0.006176,0.006112,0.007584,0.004704,0.006144,0.087808,0.004352
+997,1032.39,0.968628,0.3464,0.004416,0.215008,0.006144,0.007424,0.004896,0.007168,0.00512,0.091264,0.00496
+998,1590.68,0.628662,0.336352,0.004576,0.207936,0.006336,0.006368,0.006304,0.005888,0.005856,0.086944,0.006144
+999,1274.23,0.78479,0.333824,0.00576,0.20112,0.006272,0.007808,0.005632,0.004832,0.006176,0.091648,0.004576
+1000,1488.1,0.671997,0.510272,0.004416,0.37888,0.006144,0.006144,0.006144,0.005984,0.00576,0.092224,0.004576
+1001,1057.17,0.945923,0.57328,0.00576,0.430464,0.017888,0.006688,0.006144,0.005888,0.005856,0.088608,0.005984
+1002,835.066,1.19751,0.341024,0.006144,0.208928,0.007168,0.00624,0.006432,0.005856,0.004992,0.089952,0.005312
+1003,1312.4,0.761963,0.335872,0.006176,0.200448,0.006304,0.006304,0.006048,0.006144,0.006112,0.093376,0.00496
+1004,1316.2,0.759766,0.331232,0.00592,0.200928,0.006144,0.006144,0.006176,0.006112,0.006112,0.088096,0.0056
+1005,1316.2,0.759766,0.330304,0.004672,0.198656,0.006144,0.007264,0.005056,0.006112,0.006144,0.091936,0.00432
+1006,1434.17,0.697266,0.33552,0.005952,0.200896,0.008096,0.006272,0.005856,0.005792,0.005792,0.091072,0.005792
+1007,1354.72,0.738159,0.3296,0.005792,0.196384,0.006304,0.00656,0.006144,0.006144,0.00608,0.090176,0.006016
+1008,1199.41,0.83374,0.3296,0.005632,0.198944,0.006304,0.006208,0.007648,0.006592,0.00624,0.087488,0.004544
+1009,938.481,1.06555,0.581952,0.00448,0.446368,0.008192,0.008032,0.005888,0.005888,0.005888,0.092512,0.004704
+1010,810.447,1.23389,0.356288,0.004576,0.229376,0.0072,0.006304,0.004928,0.006144,0.006144,0.086016,0.0056
+1011,1414.85,0.706787,0.326592,0.005024,0.199936,0.006304,0.006752,0.007264,0.005024,0.006144,0.083968,0.006176
+1012,1294.36,0.772583,0.32768,0.006112,0.200768,0.006112,0.006176,0.006112,0.006016,0.005632,0.085952,0.0048
+1013,1589.45,0.62915,0.331072,0.005888,0.20096,0.006144,0.007456,0.004832,0.006144,0.006144,0.088064,0.00544
+1014,1259.92,0.793701,0.33344,0.006144,0.200704,0.006144,0.006272,0.006016,0.006144,0.006048,0.090208,0.00576
+1015,1278.8,0.781982,0.321664,0.005408,0.196768,0.006336,0.006656,0.005792,0.00576,0.005088,0.08496,0.004896
+1016,877.84,1.13916,0.35632,0.00448,0.212992,0.025792,0.006976,0.006144,0.00592,0.005888,0.0824,0.005728
+1017,1275.02,0.784302,0.340736,0.004864,0.219136,0.006144,0.00784,0.005792,0.0048,0.006144,0.081568,0.004448
+1018,726.628,1.37622,0.345888,0.006784,0.221184,0.006176,0.006112,0.006144,0.006144,0.006144,0.081888,0.005312
+1019,1288.66,0.776001,0.323424,0.004704,0.202752,0.006176,0.007648,0.006656,0.005984,0.00592,0.078208,0.005376
+1020,1424.45,0.702026,0.317472,0.004448,0.197824,0.006368,0.006752,0.005952,0.005792,0.005792,0.07872,0.005824
+1021,752.734,1.32849,0.321056,0.005792,0.199008,0.006144,0.007488,0.0048,0.006176,0.006112,0.079872,0.005664
+1022,1188.8,0.841187,0.335136,0.006144,0.202752,0.007296,0.006304,0.004832,0.0072,0.005088,0.090112,0.005408
+1023,1267.33,0.789062,0.333824,0.005408,0.20144,0.006176,0.00784,0.005632,0.004928,0.006144,0.092064,0.004192
+1024,1254.9,0.796875,0.33952,0.005408,0.207872,0.006176,0.006112,0.006176,0.006112,0.006144,0.090112,0.005408
+1025,1250.31,0.799805,0.578976,0.00592,0.432192,0.02064,0.007232,0.005056,0.006144,0.006144,0.090112,0.005536
+1026,801.801,1.24719,0.341408,0.004384,0.208896,0.006176,0.007584,0.005824,0.004992,0.006176,0.092096,0.00528
+1027,1380.75,0.724243,0.3368,0.005056,0.19792,0.006304,0.008352,0.00576,0.004896,0.006144,0.096256,0.006112
+1028,1468.1,0.681152,0.326112,0.004608,0.198624,0.007168,0.006432,0.004864,0.007264,0.004992,0.086016,0.006144
+1029,1283.21,0.779297,0.324352,0.004864,0.198656,0.006176,0.007744,0.005792,0.004864,0.006144,0.084064,0.006048
+1030,1290.49,0.774902,0.325632,0.006144,0.197984,0.006368,0.006272,0.005696,0.004896,0.005824,0.086304,0.006144
+1031,1376.34,0.726562,0.325664,0.006144,0.19616,0.006336,0.006432,0.006112,0.006144,0.006144,0.087392,0.0048
+1032,1453.51,0.687988,0.540352,0.00448,0.419232,0.006336,0.00656,0.005792,0.005856,0.005856,0.080576,0.005664
+1033,935.694,1.06873,0.567072,0.004448,0.42576,0.018656,0.008192,0.005952,0.005792,0.005952,0.086752,0.005568
+1034,880.198,1.13611,0.339968,0.005664,0.21552,0.007168,0.006272,0.005024,0.006112,0.006144,0.083104,0.00496
+1035,1271.46,0.786499,0.32512,0.005888,0.198432,0.006336,0.006432,0.007232,0.005056,0.006176,0.083936,0.005632
+1036,1420,0.704224,0.322432,0.004992,0.198688,0.006112,0.006176,0.005824,0.005824,0.00576,0.08416,0.004896
+1037,1357.64,0.736572,0.320032,0.004704,0.19664,0.006112,0.007936,0.00576,0.006016,0.005024,0.08176,0.00608
+1038,1333.33,0.75,0.326048,0.004512,0.200704,0.006144,0.007712,0.00576,0.004992,0.006112,0.085568,0.004544
+1039,1290.49,0.774902,0.325632,0.005408,0.20128,0.006304,0.006176,0.006112,0.00608,0.005824,0.08336,0.005088
+1040,1488.1,0.671997,0.327648,0.005408,0.199456,0.006144,0.007424,0.004896,0.006112,0.006144,0.086016,0.006048
+1041,1159.68,0.862305,0.331904,0.005408,0.20368,0.00624,0.008096,0.00576,0.005728,0.004928,0.086016,0.006048
+1042,694.885,1.43909,0.354304,0.008224,0.2248,0.006336,0.006272,0.00576,0.006048,0.00592,0.086208,0.004736
+1043,1401.78,0.713379,0.329728,0.005888,0.196864,0.006144,0.00736,0.004928,0.006144,0.006144,0.090112,0.006144
+1044,1393.43,0.717651,0.332768,0.005056,0.198656,0.007616,0.006336,0.00576,0.004864,0.006176,0.093792,0.004512
+1045,1331.38,0.751099,0.332448,0.004768,0.197728,0.006208,0.006272,0.004896,0.00608,0.006144,0.09584,0.004512
+1046,1311.56,0.762451,0.333824,0.005664,0.199104,0.006176,0.006144,0.005856,0.005792,0.00576,0.094912,0.004416
+1047,1299.08,0.769775,0.34032,0.00448,0.202208,0.008096,0.006752,0.005888,0.005824,0.005824,0.095136,0.006112
+1048,1375.42,0.727051,0.332608,0.004928,0.200064,0.006336,0.006592,0.006112,0.005824,0.006048,0.091616,0.005088
+1049,1239.52,0.806763,0.519648,0.005536,0.379328,0.006304,0.006208,0.00608,0.006144,0.006048,0.0984,0.0056
+1050,573.991,1.74219,0.362304,0.007936,0.219392,0.006144,0.0072,0.005088,0.006144,0.006144,0.098304,0.005952
+1051,1360.8,0.734863,0.336064,0.005376,0.19712,0.0064,0.006336,0.006112,0.006016,0.006112,0.09824,0.004352
+1052,840.981,1.18909,0.333824,0.005376,0.197376,0.006144,0.007808,0.005792,0.004832,0.006144,0.094208,0.006144
+1053,1487.29,0.672363,0.329984,0.005376,0.207872,0.006208,0.007136,0.005088,0.006176,0.006048,0.079936,0.006144
+1054,1508.66,0.662842,0.328032,0.004448,0.202752,0.006144,0.007296,0.004992,0.006144,0.006144,0.085408,0.004704
+1055,1273.04,0.785522,0.328128,0.004928,0.202752,0.006144,0.007296,0.004992,0.006144,0.006176,0.083936,0.00576
+1056,1481.11,0.675171,0.341216,0.005952,0.19888,0.006112,0.007712,0.005792,0.004928,0.006176,0.10032,0.005344
+1057,1036.7,0.9646,0.337184,0.0056,0.201248,0.006176,0.0072,0.005056,0.006176,0.006112,0.094208,0.005408
+1058,692.477,1.44409,0.350208,0.008192,0.219136,0.006144,0.006144,0.006144,0.006144,0.006144,0.087168,0.004992
+1059,1437.19,0.695801,0.331776,0.005696,0.197088,0.006112,0.008192,0.006176,0.006112,0.005888,0.092032,0.00448
+1060,1474.71,0.678101,0.329728,0.00592,0.1968,0.006176,0.006144,0.006144,0.006144,0.006144,0.090112,0.006144
+1061,1293.95,0.772827,0.326496,0.004928,0.196608,0.006144,0.007552,0.005824,0.005088,0.006112,0.089376,0.004864
+1062,1412.9,0.707764,0.321536,0.006144,0.196608,0.008192,0.006144,0.006016,0.00576,0.00576,0.080768,0.006144
+1063,1279,0.78186,0.32368,0.005408,0.20064,0.006272,0.006592,0.005792,0.0048,0.006144,0.08192,0.006112
+1064,1446.58,0.691284,0.323584,0.005888,0.198464,0.006336,0.0064,0.005984,0.005856,0.005728,0.08416,0.004768
+1065,1113.35,0.898193,0.330432,0.004704,0.2048,0.006144,0.00736,0.004928,0.006144,0.006144,0.085504,0.004704
+1066,668.68,1.49548,0.344,0.007744,0.21344,0.007264,0.005024,0.006144,0.006144,0.005888,0.086272,0.00608
+1067,1291.3,0.774414,0.3256,0.004896,0.199744,0.006368,0.006336,0.004704,0.005888,0.0056,0.086752,0.005312
+1068,1529.21,0.653931,0.337024,0.006144,0.201792,0.006304,0.006368,0.004672,0.006144,0.006144,0.094112,0.005344
+1069,1279.2,0.781738,0.325664,0.00592,0.198208,0.006368,0.006592,0.005856,0.005792,0.005856,0.084896,0.006176
+1070,1382.15,0.723511,0.325632,0.006144,0.198656,0.006176,0.006208,0.006048,0.006144,0.006144,0.083968,0.006144
+1071,701.79,1.42493,0.335968,0.005376,0.209728,0.006144,0.007168,0.00512,0.006144,0.006144,0.08576,0.004384
+1072,1304.46,0.766602,0.519328,0.006144,0.386688,0.006368,0.006304,0.006144,0.005888,0.00592,0.09056,0.005312
+1073,968.78,1.03223,0.584832,0.005952,0.42208,0.040416,0.006688,0.006016,0.006144,0.00592,0.086272,0.005344
+1074,925.754,1.0802,0.34976,0.005728,0.219552,0.007168,0.006336,0.004928,0.007488,0.0048,0.088064,0.005696
+1075,1291.1,0.774536,0.334976,0.006144,0.2048,0.006144,0.008192,0.006144,0.006144,0.005888,0.086176,0.005344
+1076,1484.86,0.673462,0.325984,0.004864,0.200672,0.006208,0.006112,0.006144,0.005952,0.005792,0.084512,0.005728
+1077,1343.61,0.744263,0.324832,0.005856,0.200768,0.006336,0.006176,0.006144,0.005824,0.005824,0.08256,0.005344
+1078,1348.48,0.741577,0.322048,0.00464,0.197824,0.006304,0.006304,0.00576,0.00496,0.006144,0.084,0.006112
+1079,1288.25,0.776245,0.326368,0.00496,0.200736,0.0072,0.007072,0.005664,0.006016,0.00592,0.082784,0.006016
+1080,1452.74,0.688354,0.327584,0.006144,0.200416,0.006336,0.006272,0.005632,0.005792,0.004928,0.086016,0.006048
+1081,955.558,1.04651,0.337504,0.005536,0.206816,0.0064,0.006528,0.006048,0.005792,0.005824,0.088832,0.005728
+1082,757.887,1.31946,0.365984,0.007968,0.240992,0.006368,0.006272,0.005888,0.004896,0.006176,0.081888,0.005536
+1083,1427.43,0.700562,0.32768,0.006144,0.200704,0.006144,0.0064,0.005888,0.006144,0.005952,0.084192,0.006112
+1084,1445.82,0.69165,0.333856,0.005536,0.199264,0.007168,0.006528,0.005888,0.004992,0.006144,0.093568,0.004768
+1085,1296.82,0.771118,0.333408,0.005376,0.19664,0.006368,0.006656,0.005824,0.005824,0.005024,0.096096,0.0056
+1086,1202.41,0.831665,0.329728,0.005824,0.198304,0.006336,0.006336,0.005792,0.004768,0.005952,0.091488,0.004928
+1087,1435.43,0.696655,0.335968,0.00512,0.202752,0.006144,0.00736,0.004928,0.006144,0.006144,0.092064,0.005312
+1088,1456.87,0.686401,0.335872,0.005504,0.201344,0.006144,0.006144,0.006144,0.006112,0.005728,0.094336,0.004416
+1089,804.794,1.24255,0.35168,0.006144,0.217088,0.00624,0.007616,0.005792,0.004928,0.006144,0.09216,0.005568
+1090,872.325,1.14636,0.577696,0.004736,0.425472,0.022272,0.006272,0.005792,0.005088,0.006144,0.096256,0.005664
+1091,1054.99,0.947876,0.365792,0.005376,0.225664,0.006304,0.006528,0.006048,0.005824,0.005824,0.098912,0.005312
+1092,1426.93,0.700806,0.354656,0.004416,0.225056,0.006336,0.006176,0.005856,0.005952,0.005664,0.090176,0.005024
+1093,1217.78,0.821167,0.335072,0.006144,0.206848,0.006272,0.00784,0.005792,0.004768,0.006048,0.086016,0.005344
+1094,1107.63,0.902832,0.354048,0.00544,0.223552,0.006336,0.006272,0.005792,0.0048,0.006144,0.090112,0.0056
+1095,1211.83,0.825195,0.38064,0.006144,0.24576,0.006144,0.007232,0.005056,0.006144,0.006144,0.09216,0.005856
+1096,1298.05,0.770386,0.343744,0.00576,0.2128,0.006304,0.006304,0.0064,0.005728,0.0064,0.088224,0.005824
+1097,913.572,1.0946,0.350656,0.004544,0.221184,0.00624,0.00752,0.005824,0.00496,0.006144,0.089728,0.004512
+1098,713.216,1.4021,0.34896,0.006912,0.21504,0.007168,0.006336,0.006688,0.005984,0.006016,0.090304,0.004512
+1099,1186.04,0.84314,0.333376,0.005376,0.2016,0.006144,0.007552,0.004768,0.006112,0.006144,0.090112,0.005568
+1100,1396.76,0.715942,0.331776,0.006144,0.202752,0.006176,0.006112,0.006176,0.006112,0.006144,0.0872,0.00496
+1101,1185.53,0.843506,0.339648,0.005696,0.203168,0.006208,0.006144,0.006112,0.006144,0.006112,0.09424,0.005824
+1102,1161.82,0.860718,0.368096,0.006048,0.229472,0.006144,0.006144,0.006144,0.005824,0.006144,0.096576,0.0056
+1103,1458.69,0.685547,0.335648,0.00448,0.204704,0.00624,0.006112,0.007456,0.004832,0.006176,0.09008,0.005568
+1104,1301.35,0.768433,0.518144,0.006144,0.37888,0.006144,0.006144,0.006176,0.005888,0.005824,0.097888,0.005056
+1105,969.697,1.03125,0.355904,0.005792,0.214592,0.006336,0.006752,0.005856,0.005952,0.005888,0.09904,0.005696
+1106,789.438,1.26672,0.35312,0.006976,0.216736,0.006336,0.006304,0.00576,0.005792,0.005888,0.094656,0.004672
+1107,1413.88,0.707275,0.347936,0.004704,0.198656,0.007264,0.006784,0.02224,0.005824,0.004992,0.092064,0.005408
+1108,1273.04,0.785522,0.337984,0.006144,0.201856,0.006624,0.006368,0.00576,0.00576,0.005056,0.096064,0.004352
+1109,1439.97,0.694458,0.33008,0.004416,0.198656,0.007904,0.006592,0.006016,0.006112,0.006016,0.089728,0.00464
+1110,1283.21,0.779297,0.325152,0.006112,0.198304,0.006304,0.006272,0.00576,0.005824,0.004928,0.085984,0.005664
+1111,1448.12,0.690552,0.32736,0.005408,0.199456,0.006176,0.00816,0.00592,0.006016,0.00592,0.084544,0.00576
+1112,1095.77,0.912598,0.331776,0.005408,0.201472,0.007456,0.0048,0.00736,0.004928,0.006176,0.088032,0.006144
+1113,1214.89,0.82312,0.58128,0.006144,0.431232,0.028544,0.00688,0.005792,0.006048,0.006112,0.084736,0.005792
+1114,812.457,1.23083,0.330688,0.005056,0.202752,0.006144,0.006144,0.006144,0.006144,0.005952,0.088032,0.00432
+1115,1498.17,0.66748,0.331456,0.005376,0.200672,0.0064,0.006912,0.006144,0.006048,0.00592,0.088384,0.0056
+1116,1312.82,0.761719,0.326976,0.00576,0.19904,0.006176,0.006048,0.005696,0.00576,0.005024,0.088032,0.00544
+1117,1313.66,0.76123,0.325664,0.005376,0.197376,0.006144,0.008032,0.004352,0.00608,0.006112,0.08736,0.004832
+1118,1297.64,0.77063,0.32768,0.005696,0.203232,0.006112,0.007584,0.00576,0.005088,0.006144,0.083712,0.004352
+1119,1457.13,0.686279,0.327968,0.004384,0.202752,0.006176,0.007424,0.004928,0.006048,0.006144,0.08512,0.004992
+1120,1332.68,0.750366,0.325728,0.004704,0.196608,0.006144,0.006144,0.006144,0.006016,0.00576,0.088576,0.005632
+1121,931.65,1.07336,0.344064,0.005472,0.221216,0.0064,0.00656,0.005984,0.005824,0.005856,0.081984,0.004768
+1122,1432.42,0.69812,0.56704,0.006144,0.432128,0.016384,0.006144,0.006176,0.005888,0.006016,0.082272,0.005888
+1123,825.723,1.21106,0.329728,0.006144,0.20688,0.006112,0.007232,0.005056,0.006144,0.006144,0.081664,0.004352
+1124,1490,0.671143,0.320224,0.004832,0.196608,0.006176,0.006112,0.00752,0.005856,0.005056,0.083296,0.004768
+1125,1306.96,0.765137,0.342016,0.006016,0.20608,0.006336,0.006752,0.005792,0.006016,0.005888,0.092992,0.006144
+1126,1377.27,0.726074,0.336448,0.005024,0.200512,0.006336,0.007392,0.004928,0.006112,0.006144,0.094208,0.005792
+1127,1368.07,0.730957,0.329824,0.005088,0.198432,0.006336,0.008032,0.005824,0.00576,0.004992,0.090048,0.005312
+1128,1361.93,0.734253,0.327712,0.006144,0.196608,0.006176,0.006112,0.006144,0.00592,0.005728,0.088736,0.006144
+1129,1363.74,0.733276,0.512,0.006144,0.376832,0.006144,0.007744,0.005824,0.004896,0.006112,0.093792,0.004512
+1130,1082.31,0.92395,0.585536,0.005408,0.44544,0.008224,0.006112,0.006144,0.006144,0.006016,0.096384,0.005664
+1131,821.5,1.21729,0.336096,0.004544,0.200672,0.006144,0.007552,0.00576,0.00512,0.006144,0.094208,0.005952
+1132,1358.54,0.736084,0.330688,0.005056,0.19808,0.006368,0.0064,0.00576,0.005824,0.004928,0.092128,0.006144
+1133,1355.39,0.737793,0.321856,0.004448,0.196576,0.0072,0.006784,0.005792,0.005856,0.005088,0.085376,0.004736
+1134,1375.19,0.727173,0.327424,0.004704,0.195968,0.006336,0.006144,0.00576,0.00496,0.00608,0.092128,0.005344
+1135,1351.15,0.740112,0.329856,0.004512,0.197824,0.006592,0.006496,0.006112,0.005984,0.00592,0.090528,0.005888
+1136,1335.94,0.748535,0.33216,0.004448,0.200704,0.006144,0.006144,0.006144,0.006112,0.005984,0.09152,0.00496
+1137,1366.93,0.731567,0.32256,0.00512,0.194592,0.006112,0.008096,0.00576,0.005984,0.006112,0.085792,0.004992
+1138,1342.29,0.744995,0.323584,0.0056,0.198688,0.006336,0.00624,0.005856,0.005888,0.004896,0.085248,0.004832
+1139,698.678,1.43127,0.342016,0.008192,0.210944,0.0072,0.006784,0.005792,0.006848,0.006016,0.085856,0.004384
+1140,1440.22,0.694336,0.32976,0.005408,0.199392,0.006144,0.006144,0.006144,0.00592,0.005728,0.0904,0.00448
+1141,1364.42,0.73291,0.32816,0.004544,0.196608,0.006144,0.006144,0.006144,0.006048,0.005824,0.091872,0.004832
+1142,1242.53,0.80481,0.325152,0.005408,0.196608,0.006336,0.00624,0.006048,0.004928,0.006144,0.088064,0.005376
+1143,1500.92,0.66626,0.327968,0.005408,0.195456,0.006176,0.007488,0.004896,0.006112,0.006144,0.091552,0.004736
+1144,1093.43,0.914551,0.351744,0.006144,0.21504,0.006144,0.007936,0.005696,0.00608,0.006016,0.093056,0.005632
+1145,1544.79,0.647339,0.337952,0.005856,0.20304,0.007328,0.006816,0.005792,0.005984,0.005952,0.092384,0.0048
+1146,1328.58,0.752686,0.327776,0.004864,0.202752,0.006144,0.00736,0.004928,0.006144,0.006144,0.083808,0.005632
+1147,1303.21,0.767334,0.331968,0.005376,0.209824,0.006176,0.007968,0.006336,0.006144,0.00608,0.079328,0.004736
+1148,1406.59,0.710938,0.319008,0.004608,0.19664,0.006112,0.008192,0.005952,0.005792,0.00576,0.08064,0.005312
+1149,1408.77,0.709839,0.325472,0.004672,0.196544,0.006208,0.007872,0.005824,0.006016,0.00592,0.087008,0.005408
+1150,1402.26,0.713135,0.327744,0.004384,0.198048,0.006752,0.006144,0.006144,0.006144,0.006048,0.08816,0.00592
+1151,1394.15,0.717285,0.319488,0.006144,0.194592,0.007168,0.006688,0.005824,0.004896,0.006112,0.081984,0.00608
+1152,1413.14,0.707642,0.322528,0.005088,0.196608,0.006144,0.007488,0.005824,0.005152,0.006112,0.085056,0.005056
+1153,1367.84,0.731079,0.321888,0.00448,0.194528,0.006176,0.007616,0.005824,0.00496,0.006144,0.087104,0.005056
+1154,1381.22,0.723999,0.323584,0.00544,0.193216,0.006176,0.007296,0.004992,0.006112,0.006176,0.089472,0.004704
+1155,1365.33,0.732422,0.323712,0.004864,0.19376,0.006304,0.006688,0.00576,0.005856,0.004864,0.09008,0.005536
+1156,1224.33,0.816772,0.339968,0.006144,0.214528,0.006368,0.00624,0.005792,0.006688,0.005888,0.083744,0.004576
+1157,1362.61,0.733887,0.323008,0.005728,0.194912,0.006208,0.0072,0.006112,0.00512,0.006144,0.086016,0.005568
+1158,1388.71,0.720093,0.325664,0.005472,0.193152,0.006208,0.006112,0.00592,0.005824,0.005792,0.092352,0.004832
+1159,1371.05,0.72937,0.319424,0.005408,0.193056,0.006304,0.006208,0.006144,0.006144,0.005792,0.08432,0.006048
+1160,1379.59,0.724854,0.319616,0.005408,0.193184,0.006304,0.006304,0.005856,0.005952,0.005984,0.084608,0.006016
+1161,1310.09,0.763306,0.333824,0.005696,0.206272,0.006368,0.006848,0.005856,0.006016,0.005824,0.08656,0.004384
+1162,1375.19,0.727173,0.321536,0.006144,0.19376,0.006368,0.00624,0.005824,0.005984,0.005056,0.087776,0.004384
+1163,1388.95,0.719971,0.3328,0.005632,0.19408,0.007136,0.007456,0.004896,0.00608,0.006144,0.095968,0.005408
+1164,1227.82,0.814453,0.327424,0.005984,0.192672,0.007232,0.006272,0.004928,0.006176,0.006112,0.092192,0.005856
+1165,1164.46,0.858765,0.343616,0.005696,0.216832,0.006304,0.006688,0.006016,0.005824,0.005792,0.084768,0.005696
+1166,1338.78,0.746948,0.378016,0.006048,0.24176,0.006144,0.007232,0.005056,0.00752,0.006016,0.092928,0.005312
+1167,1399.86,0.714355,0.333824,0.005984,0.20192,0.006336,0.006976,0.006112,0.006048,0.005856,0.0896,0.004992
+1168,1358.09,0.736328,0.321824,0.005408,0.195584,0.006144,0.007936,0.005824,0.005792,0.005024,0.08528,0.004832
+1169,1366.47,0.731812,0.327872,0.00544,0.195456,0.006176,0.007424,0.004864,0.006112,0.006144,0.09152,0.004736
+1170,1332.9,0.750244,0.329728,0.006144,0.198208,0.006336,0.006304,0.005664,0.004704,0.006112,0.091936,0.00432
+1171,1395.1,0.716797,0.327232,0.005696,0.195008,0.007296,0.00704,0.006144,0.006144,0.006048,0.08816,0.005696
+1172,1352.04,0.739624,0.327712,0.006144,0.19456,0.007232,0.005056,0.006144,0.006144,0.006144,0.091616,0.004672
+1173,1271.06,0.786743,0.352288,0.005408,0.2128,0.006304,0.006944,0.005856,0.005856,0.005696,0.097248,0.006176
+1174,1290.89,0.774658,0.32032,0.004864,0.19392,0.006336,0.00624,0.00576,0.004896,0.006144,0.087808,0.004352
+1175,1161.82,0.860718,0.35552,0.016384,0.220864,0.006432,0.006176,0.006144,0.005984,0.005824,0.082368,0.005344
+1176,1478.97,0.676147,0.323456,0.005408,0.196544,0.006304,0.006496,0.00576,0.006016,0.006016,0.084928,0.005984
+1177,1377.27,0.726074,0.32576,0.004256,0.196032,0.006336,0.006496,0.006144,0.006144,0.00592,0.089824,0.004608
+1178,1242.53,0.80481,0.374016,0.006144,0.22864,0.006336,0.006336,0.005728,0.006016,0.006688,0.102368,0.00576
+1179,1260.11,0.793579,0.347296,0.005536,0.219424,0.006304,0.0064,0.006048,0.006144,0.006176,0.085856,0.005408
+1180,1411.44,0.708496,0.321568,0.005824,0.194656,0.006336,0.006176,0.006144,0.006144,0.006144,0.085248,0.004896
+1181,1395.57,0.716553,0.323776,0.0048,0.19584,0.006304,0.006752,0.006144,0.006144,0.006144,0.086048,0.0056
+1182,1367.84,0.731079,0.32384,0.005088,0.19456,0.006144,0.007328,0.004992,0.006112,0.006176,0.088032,0.005408
+1183,1406.35,0.71106,0.330144,0.004512,0.19856,0.00624,0.007936,0.005792,0.006016,0.005856,0.089088,0.006144
+1184,1325.35,0.754517,0.329728,0.005504,0.199296,0.006144,0.006144,0.006176,0.006112,0.006144,0.089952,0.004256
+1185,1283.41,0.779175,0.327168,0.005408,0.19536,0.006208,0.006144,0.006016,0.005696,0.004672,0.09216,0.005504
+1186,823.151,1.21484,0.34848,0.004416,0.196608,0.022528,0.006144,0.006144,0.006144,0.006144,0.09536,0.004992
+1187,1532.36,0.652588,0.338304,0.004448,0.203904,0.006336,0.008352,0.005984,0.005984,0.00496,0.093536,0.0048
+1188,1361.7,0.734375,0.324032,0.004544,0.196608,0.006144,0.0072,0.006496,0.006016,0.006016,0.08608,0.004928
+1189,1345.6,0.743164,0.36288,0.00448,0.210944,0.008192,0.007168,0.005152,0.006112,0.006144,0.108544,0.006144
+1190,1213.99,0.82373,0.338816,0.004992,0.196288,0.006464,0.006144,0.02048,0.006144,0.006144,0.087648,0.004512
+1191,721.508,1.38599,0.319488,0.005856,0.194176,0.006368,0.006592,0.005856,0.006016,0.005888,0.082592,0.006144
+1192,1547.41,0.64624,0.346112,0.005728,0.201088,0.022624,0.006272,0.005952,0.006144,0.006016,0.086144,0.006144
+1193,1226.35,0.81543,0.365568,0.00512,0.235424,0.00624,0.00768,0.00576,0.004992,0.006144,0.089504,0.004704
+1194,1372.65,0.728516,0.321984,0.004576,0.195936,0.006304,0.006144,0.00576,0.00496,0.006144,0.087392,0.004768
+1195,1397.95,0.715332,0.326144,0.00464,0.194528,0.006304,0.007968,0.00576,0.006272,0.005984,0.089792,0.004896
+1196,1372.65,0.728516,0.34,0.005664,0.19648,0.006752,0.006176,0.006112,0.00592,0.020704,0.087328,0.004864
+1197,1328.58,0.752686,0.344256,0.004512,0.199904,0.0064,0.006688,0.006112,0.005824,0.020416,0.08848,0.00592
+1198,1362.16,0.734131,0.320928,0.005728,0.194144,0.006336,0.006176,0.005792,0.005056,0.006176,0.085984,0.005536
+1199,1404.66,0.711914,0.326016,0.00448,0.19456,0.007232,0.006784,0.00576,0.006016,0.004928,0.090112,0.006144
+1200,1257.02,0.795532,0.32896,0.005696,0.194208,0.006336,0.006368,0.005728,0.004928,0.006112,0.094208,0.005376
+1201,1414.36,0.707031,0.32768,0.00608,0.19824,0.006624,0.00784,0.006496,0.005856,0.005792,0.08608,0.004672
+1202,1271.85,0.786255,0.328768,0.005984,0.202656,0.006336,0.006208,0.005632,0.006016,0.005984,0.08464,0.005312
+1203,1361.48,0.734497,0.331168,0.006144,0.198656,0.006176,0.007456,0.004896,0.006048,0.006176,0.09008,0.005536
+1204,1389.18,0.719849,0.324608,0.00512,0.195968,0.006336,0.006336,0.005824,0.006016,0.005984,0.088032,0.004992
+1205,1269.68,0.787598,0.321536,0.005888,0.194816,0.007232,0.007104,0.005856,0.004416,0.006112,0.085728,0.004384
+1206,960.488,1.04114,0.327008,0.006144,0.196192,0.006336,0.007424,0.005088,0.006144,0.00608,0.088128,0.005472
+1207,408.293,2.44922,0.87488,0.004512,0.743392,0.006336,0.00752,0.006464,0.006304,0.006144,0.089408,0.0048
+1208,858.52,1.16479,0.341472,0.005376,0.211712,0.006176,0.006112,0.006144,0.005856,0.00576,0.088736,0.0056
+1209,1270.08,0.787354,0.364544,0.005984,0.23888,0.006368,0.006816,0.006016,0.005664,0.005856,0.083904,0.005056
+1210,1334.2,0.749512,0.34816,0.005664,0.219616,0.006144,0.006144,0.006016,0.006272,0.006144,0.0872,0.00496
+1211,1370.59,0.729614,0.340128,0.005376,0.211872,0.007456,0.00816,0.005952,0.005088,0.005216,0.084992,0.006016
+1212,1333.98,0.749634,0.34288,0.00496,0.2152,0.007104,0.006592,0.004576,0.006144,0.005888,0.087456,0.00496
+1213,1374.5,0.727539,0.337792,0.00576,0.2048,0.006336,0.008032,0.005792,0.005824,0.00512,0.090112,0.006016
+1214,849.176,1.17761,0.364928,0.005472,0.224256,0.007328,0.006336,0.006656,0.015616,0.006176,0.088352,0.004736
+1215,1012.48,0.987671,0.359744,0.005408,0.227168,0.006336,0.00688,0.005984,0.005856,0.005952,0.090752,0.005408
+1216,820.184,1.21924,0.431744,0.004512,0.28992,0.006304,0.006304,0.016928,0.006144,0.006144,0.09008,0.005408
+1217,788.754,1.26782,0.413728,0.005504,0.28736,0.006176,0.00768,0.005664,0.006112,0.005088,0.085312,0.004832
+1218,995.383,1.00464,0.330752,0.005056,0.206848,0.006144,0.006144,0.006144,0.006016,0.005856,0.08416,0.004384
+1219,1478.7,0.67627,0.346848,0.004832,0.222848,0.0064,0.006304,0.006112,0.006144,0.005888,0.084,0.00432
+1220,1322.57,0.756104,0.338784,0.004928,0.21216,0.00688,0.00624,0.005792,0.005824,0.005792,0.086752,0.004416
+1221,1331.17,0.751221,0.335136,0.005376,0.206752,0.0064,0.006848,0.005984,0.005824,0.005792,0.086848,0.005312
+1222,1389.42,0.719727,0.329408,0.006144,0.202752,0.0072,0.006752,0.005856,0.005824,0.005088,0.083968,0.005824
+1223,1326.42,0.753906,0.335744,0.004576,0.205824,0.006336,0.006944,0.005984,0.006048,0.005792,0.088672,0.005568
+1224,1386.13,0.721436,0.331456,0.005824,0.203072,0.006144,0.006144,0.006144,0.006144,0.006144,0.086016,0.005824
+1225,1368.07,0.730957,0.331232,0.006144,0.196608,0.006368,0.00784,0.00608,0.006048,0.005984,0.09056,0.0056
+1226,1362.38,0.734009,0.3272,0.005408,0.200672,0.006304,0.006304,0.005856,0.005056,0.006112,0.086016,0.005472
+1227,1369.21,0.730347,0.32448,0.004992,0.198752,0.007232,0.007008,0.005792,0.005856,0.005856,0.082848,0.006144
+1228,1035.39,0.96582,0.327136,0.005664,0.1984,0.006368,0.006496,0.006304,0.006144,0.006048,0.086112,0.0056
+1229,1516.48,0.659424,0.330624,0.004992,0.198656,0.006144,0.006144,0.006176,0.006112,0.005952,0.090336,0.006112
+1230,1134.94,0.881104,0.347904,0.004672,0.218496,0.006336,0.006304,0.0064,0.005888,0.00576,0.088704,0.005344
+1231,1504.5,0.664673,0.33312,0.00544,0.202688,0.006304,0.006752,0.006176,0.006144,0.005984,0.088192,0.00544
+1232,1395.57,0.716553,0.335904,0.005408,0.2056,0.006112,0.006144,0.006176,0.006112,0.006144,0.08928,0.004928
+1233,1337.69,0.747559,0.342112,0.004544,0.208928,0.006112,0.007936,0.0064,0.006048,0.00592,0.090432,0.005792
+1234,1339,0.746826,0.324448,0.00496,0.198656,0.006176,0.006112,0.00608,0.005792,0.005792,0.0848,0.00608
+1235,1377.27,0.726074,0.32768,0.005408,0.198432,0.006304,0.006944,0.00576,0.005984,0.005952,0.08816,0.004736
+1236,1360.35,0.735107,0.323584,0.006144,0.194592,0.007232,0.006272,0.004896,0.006144,0.006144,0.086016,0.006144
+1237,1373.11,0.728271,0.328032,0.004544,0.19616,0.006304,0.006432,0.007264,0.005024,0.006144,0.090112,0.006048
+1238,1372.65,0.728516,0.325632,0.006144,0.19456,0.007648,0.00672,0.006112,0.005952,0.00576,0.086592,0.006144
+1239,1360.35,0.735107,0.327584,0.004736,0.196608,0.006176,0.007744,0.00656,0.006048,0.00592,0.088384,0.005408
+1240,1373.11,0.728271,0.326592,0.005056,0.196608,0.006176,0.006112,0.006144,0.006144,0.00608,0.089696,0.004576
+1241,1148.46,0.870728,0.338144,0.005408,0.211872,0.007296,0.00704,0.006016,0.00608,0.005888,0.083616,0.004928
+1242,1479.77,0.675781,0.336544,0.004832,0.206048,0.006336,0.006752,0.006144,0.005984,0.0056,0.0888,0.006048
+1243,1361.7,0.734375,0.33968,0.005408,0.207776,0.006176,0.00816,0.006144,0.006048,0.006016,0.088288,0.005664
+1244,1275.62,0.783936,0.333856,0.006144,0.198656,0.006144,0.006144,0.007232,0.00528,0.005952,0.092128,0.006176
+1245,1322.78,0.755981,0.342016,0.00576,0.209312,0.006112,0.007424,0.004864,0.006144,0.006176,0.091552,0.004672
+1246,1368.98,0.730469,0.326048,0.004512,0.19456,0.006144,0.008192,0.005888,0.005824,0.005824,0.090656,0.004448
+1247,1392.72,0.718018,0.324736,0.005504,0.194816,0.006336,0.006336,0.006144,0.006112,0.00576,0.088416,0.005312
+1248,1387.06,0.720947,0.323808,0.005408,0.19312,0.006304,0.006336,0.006176,0.006112,0.00608,0.089856,0.004416
+1249,1362.38,0.734009,0.331456,0.00464,0.194496,0.006176,0.006144,0.006144,0.006144,0.006016,0.096288,0.005408
+1250,1328.15,0.75293,0.332128,0.005024,0.196544,0.006208,0.006144,0.006144,0.006144,0.006144,0.094208,0.005568
+1251,1269.09,0.787964,0.35136,0.00608,0.215104,0.006176,0.007712,0.005856,0.006208,0.005952,0.092928,0.005344
+1252,1390.83,0.718994,0.332512,0.004832,0.198656,0.006144,0.006144,0.006144,0.005984,0.00576,0.093856,0.004992
+1253,1345.16,0.743408,0.34496,0.004992,0.198208,0.006336,0.008096,0.018784,0.006176,0.006112,0.091264,0.004992
+1254,1355.62,0.737671,0.327456,0.004096,0.196608,0.006144,0.006368,0.005952,0.006112,0.006144,0.090112,0.00592
+1255,1358.54,0.736084,0.341376,0.005824,0.192832,0.008192,0.007232,0.005056,0.006176,0.006112,0.104448,0.005504
+1256,1313.03,0.761597,0.352704,0.00464,0.197888,0.006912,0.006144,0.006144,0.005984,0.022528,0.096416,0.006048
+1257,1298.87,0.769897,0.327616,0.004896,0.19456,0.006144,0.006144,0.006144,0.006176,0.006112,0.092128,0.005312
+1258,1334.85,0.749146,0.333824,0.004672,0.198656,0.006176,0.007872,0.005856,0.00592,0.005984,0.09312,0.005568
+1259,1286.84,0.7771,0.342464,0.004512,0.197632,0.006304,0.007008,0.006016,0.01856,0.006304,0.091424,0.004704
+1260,1409.26,0.709595,0.325664,0.006144,0.19456,0.006144,0.007232,0.005056,0.006144,0.00592,0.090112,0.004352
+1261,1247.64,0.801514,0.33184,0.005376,0.199488,0.006144,0.006144,0.006144,0.006048,0.005952,0.091424,0.00512
+1262,779.003,1.28369,0.423136,0.005408,0.279328,0.006144,0.007488,0.004896,0.006048,0.006176,0.093504,0.014144
+1263,1183.3,0.845093,0.36512,0.022848,0.21296,0.006304,0.006272,0.006144,0.006144,0.006144,0.09344,0.004864
+1264,1268.5,0.78833,0.332992,0.005728,0.197024,0.006144,0.008,0.0056,0.00592,0.005056,0.094208,0.005312
+1265,1253.75,0.797607,0.330208,0.004608,0.196576,0.007392,0.006528,0.005824,0.005856,0.00512,0.093344,0.00496
+1266,1425.44,0.701538,0.33792,0.005824,0.201024,0.006144,0.006144,0.006144,0.005952,0.005632,0.096192,0.004864
+1267,1323.64,0.755493,0.33792,0.006144,0.201824,0.006816,0.006432,0.006112,0.006144,0.005792,0.094048,0.004608
+1268,1289.67,0.775391,0.562784,0.006144,0.423392,0.006368,0.006336,0.005856,0.006176,0.005984,0.0968,0.005728
+1269,991.527,1.00854,0.345952,0.004608,0.204768,0.0072,0.007072,0.005664,0.006016,0.005984,0.099136,0.005504
+1270,1432.42,0.69812,0.33792,0.006016,0.20192,0.006336,0.006272,0.005824,0.006144,0.005056,0.095904,0.004448
+1271,1284.21,0.778687,0.331488,0.005568,0.196768,0.006368,0.006336,0.007392,0.004896,0.006144,0.09216,0.005856
+1272,1350.7,0.740356,0.337696,0.004448,0.200736,0.00736,0.00656,0.005856,0.0048,0.006112,0.096256,0.005568
+1273,1253.17,0.797974,0.329728,0.005696,0.196448,0.006336,0.00656,0.006144,0.00608,0.005824,0.091552,0.005088
+1274,1420,0.704224,0.334208,0.004448,0.202528,0.006336,0.006176,0.006144,0.006144,0.005952,0.091808,0.004672
+1275,1363.29,0.733521,0.339968,0.00576,0.203136,0.007584,0.006752,0.006144,0.005856,0.005792,0.094016,0.004928
+1276,1319.38,0.757935,0.334592,0.004864,0.198656,0.006144,0.00784,0.005888,0.00592,0.005152,0.093984,0.006144
+1277,1240.27,0.806274,0.576832,0.005536,0.43888,0.006144,0.007488,0.005856,0.005088,0.006144,0.096256,0.00544
+1278,1016.25,0.984009,0.342048,0.006016,0.20624,0.006336,0.006464,0.0064,0.006112,0.006144,0.09376,0.004576
+1279,855.115,1.16943,0.345184,0.008192,0.208896,0.006144,0.007648,0.005888,0.004992,0.006112,0.091968,0.005344
+1280,1257.79,0.795044,0.340288,0.004512,0.201792,0.006304,0.00656,0.00592,0.006016,0.005984,0.09712,0.00608
+1281,1094.75,0.913452,0.352416,0.005408,0.205696,0.007264,0.00704,0.005952,0.006272,0.005952,0.104096,0.004736
+1282,1348.48,0.741577,0.353312,0.005536,0.219584,0.006336,0.006112,0.005984,0.005792,0.006208,0.092416,0.005344
+1283,1487.56,0.672241,0.335872,0.005664,0.200768,0.006368,0.008384,0.006144,0.006016,0.006144,0.091296,0.005088
+1284,1261.28,0.792847,0.326752,0.005888,0.196864,0.006144,0.006144,0.006144,0.006016,0.005792,0.08848,0.00528
+1285,1302.59,0.7677,0.337888,0.005376,0.203584,0.006112,0.007808,0.005856,0.006368,0.0056,0.091104,0.00608
+1286,1143.5,0.874512,0.634912,0.006144,0.486496,0.025504,0.006144,0.006144,0.006112,0.006048,0.087392,0.004928
+1287,742.365,1.34705,0.33776,0.00464,0.204832,0.007616,0.006688,0.005984,0.006016,0.005856,0.090688,0.00544
+1288,1591.92,0.628174,0.331968,0.004672,0.199712,0.006208,0.006176,0.004992,0.006144,0.006144,0.09216,0.00576
+1289,1269.29,0.787842,0.32768,0.005536,0.197216,0.006144,0.007232,0.005088,0.007392,0.006048,0.088512,0.004512
+1290,1479.5,0.675903,0.329728,0.005568,0.198816,0.0064,0.00624,0.005824,0.00576,0.004896,0.0912,0.005024
+1291,1341.63,0.745361,0.331808,0.005888,0.198272,0.00656,0.00832,0.00592,0.005856,0.005824,0.09056,0.004608
+1292,1259.73,0.793823,0.331264,0.00592,0.200928,0.006144,0.007968,0.005824,0.005792,0.005024,0.088032,0.005632
+1293,1383.55,0.722778,0.33696,0.006048,0.2008,0.006144,0.007168,0.00512,0.006144,0.006144,0.09408,0.005312
+1294,1163.97,0.859131,0.342016,0.005568,0.203328,0.006144,0.007328,0.00656,0.005984,0.005792,0.095264,0.006048
+1295,596.129,1.67749,0.370784,0.007552,0.230048,0.006208,0.00784,0.005856,0.006016,0.005984,0.096672,0.004608
+1296,1449.14,0.690063,0.346144,0.005792,0.20896,0.006368,0.006208,0.005888,0.00608,0.00592,0.095968,0.00496
+1297,1283.01,0.779419,0.343008,0.005088,0.192512,0.006144,0.007744,0.005856,0.006016,0.00496,0.1096,0.005088
+1298,1427.43,0.700562,0.32768,0.005728,0.197024,0.006144,0.00736,0.005024,0.006048,0.006144,0.089184,0.005024
+1299,1261.67,0.792603,0.335872,0.006144,0.200704,0.006368,0.00784,0.006272,0.006144,0.006144,0.091584,0.004672
+1300,1418.28,0.705078,0.342016,0.005952,0.200896,0.0072,0.006944,0.005824,0.00576,0.004992,0.099648,0.0048
+1301,1178.03,0.848877,0.33216,0.00448,0.200704,0.006336,0.00736,0.005792,0.00672,0.006336,0.09008,0.004352
+1302,959.138,1.0426,0.344512,0.004704,0.212672,0.006368,0.00624,0.005824,0.006016,0.006112,0.090592,0.005984
+1303,689.736,1.44983,0.354304,0.008192,0.217088,0.006176,0.007776,0.005824,0.004992,0.005952,0.093184,0.00512
+1304,1363.29,0.733521,0.337344,0.005408,0.199648,0.006208,0.006112,0.006144,0.006144,0.006016,0.096256,0.005408
+1305,1392.72,0.718018,0.33136,0.006048,0.194656,0.006176,0.00816,0.006144,0.006144,0.005792,0.092512,0.005728
+1306,1470.21,0.680176,0.333824,0.005408,0.200864,0.006336,0.006272,0.005664,0.005984,0.005184,0.093248,0.004864
+1307,1348.26,0.741699,0.335904,0.00608,0.196672,0.006144,0.007456,0.004832,0.006144,0.006144,0.097536,0.004896
+1308,1313.03,0.761597,0.339968,0.00576,0.201088,0.006144,0.008,0.005568,0.00592,0.005088,0.098048,0.004352
+1309,1285.42,0.777954,0.334816,0.00512,0.19808,0.006304,0.00656,0.006144,0.006144,0.006176,0.094176,0.006112
+1310,1249.35,0.800415,0.333824,0.006112,0.199872,0.006496,0.00624,0.005696,0.006016,0.005088,0.09216,0.006144
+1311,1272.84,0.785645,0.334688,0.00496,0.2048,0.006176,0.00784,0.005696,0.006208,0.005952,0.088192,0.004864
+1312,683.749,1.46252,0.353376,0.008224,0.220288,0.006912,0.00624,0.006144,0.006144,0.006144,0.087936,0.005344
+1313,1404.42,0.712036,0.328416,0.005056,0.19664,0.0072,0.006976,0.005856,0.005824,0.004992,0.089952,0.00592
+1314,1403.46,0.712524,0.33616,0.00464,0.200704,0.007232,0.006464,0.005856,0.005024,0.006176,0.094176,0.005888
+1315,1299.9,0.769287,0.33328,0.006144,0.195968,0.006496,0.007488,0.005088,0.006144,0.006144,0.094208,0.0056
+1316,683.008,1.46411,0.344064,0.005376,0.205568,0.006144,0.006176,0.006112,0.00608,0.005824,0.097824,0.00496
+1317,1257.79,0.795044,0.524192,0.004768,0.388736,0.006368,0.006304,0.006144,0.00608,0.005984,0.094208,0.0056
+1318,896.869,1.11499,0.585728,0.006144,0.425888,0.030112,0.00624,0.00576,0.005088,0.006144,0.095488,0.004864
+1319,896.476,1.11548,0.339968,0.005984,0.209056,0.006144,0.007648,0.005792,0.005024,0.006112,0.089344,0.004864
+1320,1619.61,0.617432,0.332864,0.005888,0.20096,0.006176,0.006144,0.006112,0.006144,0.006144,0.089984,0.005312
+1321,1281.4,0.780396,0.330144,0.0048,0.200192,0.006336,0.006464,0.006144,0.005984,0.005888,0.08848,0.005856
+1322,1491.9,0.670288,0.328864,0.005408,0.199264,0.006368,0.006208,0.005888,0.006016,0.005952,0.088416,0.005344
+1323,1336.6,0.748169,0.340064,0.005344,0.197504,0.006144,0.0072,0.005088,0.006144,0.006048,0.100448,0.006144
+1324,1228.19,0.814209,0.332512,0.004832,0.197664,0.006304,0.006272,0.004896,0.006048,0.006144,0.095616,0.004736
+1325,1077.19,0.928345,0.344128,0.005376,0.205408,0.00608,0.006496,0.006112,0.005952,0.00608,0.096512,0.006112
+1326,1314.08,0.760986,0.337216,0.006144,0.210176,0.006336,0.00624,0.005728,0.004992,0.006144,0.086048,0.005408
+1327,822.903,1.21521,0.352256,0.008064,0.211072,0.006176,0.007584,0.005792,0.005024,0.006176,0.096224,0.006144
+1328,1358.32,0.736206,0.339424,0.005632,0.202976,0.006304,0.006304,0.00576,0.00576,0.004896,0.096192,0.0056
+1329,1290.69,0.77478,0.333824,0.006144,0.204064,0.006304,0.008448,0.005728,0.004896,0.00608,0.087136,0.005024
+1330,1427.68,0.700439,0.333952,0.004736,0.204224,0.006304,0.00656,0.006144,0.005888,0.005888,0.088576,0.005632
+1331,1375.42,0.727051,0.32768,0.006144,0.198656,0.006144,0.008192,0.00576,0.005984,0.005984,0.085952,0.004864
+1332,1347.15,0.74231,0.322464,0.005024,0.196608,0.006144,0.006144,0.006144,0.005856,0.005728,0.085792,0.005024
+1333,1279.2,0.781738,0.335552,0.006144,0.196608,0.006176,0.007456,0.004928,0.006016,0.006144,0.096256,0.005824
+1334,1052.01,0.950562,0.511296,0.00608,0.378752,0.006336,0.006144,0.005888,0.005856,0.006144,0.090624,0.005472
+1335,935.801,1.0686,0.54272,0.01424,0.402848,0.006336,0.006688,0.006112,0.005952,0.005952,0.088448,0.006144
+1336,929.641,1.07568,0.343936,0.005568,0.209472,0.006176,0.006112,0.006144,0.006144,0.006144,0.09216,0.006016
+1337,1572.96,0.635742,0.334144,0.004992,0.208032,0.006304,0.006848,0.005984,0.005856,0.005824,0.084736,0.005568
+1338,1080.31,0.925659,0.339776,0.00592,0.205024,0.006176,0.006112,0.006112,0.005664,0.005728,0.093088,0.005952
+1339,1383.78,0.722656,0.357472,0.005376,0.233344,0.006336,0.006912,0.005472,0.006016,0.004992,0.083712,0.005312
+1340,1174.65,0.851318,0.378912,0.006144,0.2536,0.006336,0.006272,0.005728,0.006048,0.005728,0.084512,0.004544
+1341,1359.89,0.735352,0.336128,0.005408,0.209856,0.00736,0.006976,0.005856,0.005952,0.006112,0.082432,0.006176
+1342,1199.77,0.833496,0.514592,0.00464,0.380032,0.006368,0.00624,0.00576,0.0064,0.005824,0.093152,0.006176
+1343,1061,0.942505,0.589248,0.005664,0.4264,0.036736,0.0064,0.006112,0.006112,0.005952,0.090304,0.005568
+1344,887.733,1.12646,0.335328,0.005408,0.203552,0.006112,0.006144,0.006144,0.006144,0.006048,0.090208,0.005568
+1345,1267.52,0.78894,0.334016,0.004448,0.197888,0.006304,0.006752,0.006176,0.006112,0.006144,0.094208,0.005984
+1346,1487.29,0.672363,0.32768,0.005952,0.1968,0.006144,0.006144,0.006048,0.006016,0.005888,0.088544,0.006144
+1347,1355.84,0.737549,0.328736,0.005728,0.197024,0.006208,0.007808,0.006176,0.005792,0.005856,0.088736,0.005408
+1348,1362.16,0.734131,0.334336,0.00512,0.201728,0.006336,0.006272,0.004864,0.006112,0.006112,0.09216,0.005632
+1349,1249.35,0.800415,0.334432,0.004704,0.200704,0.006144,0.007968,0.00576,0.005824,0.005024,0.093952,0.004352
+1350,822.242,1.21619,0.527296,0.005056,0.395264,0.006176,0.006112,0.006144,0.006144,0.005984,0.091584,0.004832
+1351,1310.93,0.762817,0.586144,0.004512,0.425504,0.036544,0.006944,0.005984,0.005824,0.005952,0.088768,0.006112
+1352,888.022,1.1261,0.336,0.004896,0.207872,0.006336,0.006272,0.004896,0.006048,0.00592,0.088288,0.005472
+1353,1276.01,0.783691,0.342464,0.004576,0.210912,0.006144,0.00752,0.005792,0.005184,0.006144,0.091296,0.004896
+1354,1486.48,0.672729,0.33632,0.004992,0.202624,0.006272,0.006144,0.005696,0.006016,0.005856,0.093024,0.005696
+1355,1361.48,0.734497,0.33056,0.004896,0.196352,0.006304,0.006336,0.006048,0.006144,0.005984,0.093408,0.005088
+1356,1236.71,0.808594,0.331776,0.006144,0.196608,0.006144,0.00624,0.006048,0.006176,0.006112,0.09328,0.005024
+1357,1250.11,0.799927,0.333152,0.005472,0.195264,0.006112,0.00784,0.005824,0.004768,0.006176,0.096224,0.005472
+1358,1252.22,0.798584,0.336544,0.004736,0.20272,0.005728,0.006592,0.005952,0.006336,0.005728,0.0944,0.004352
+1359,1213.27,0.824219,0.598048,0.005824,0.45088,0.02048,0.007168,0.00512,0.006144,0.006144,0.091392,0.004896
+1360,821.171,1.21777,0.340224,0.005408,0.205504,0.006304,0.006272,0.006144,0.006144,0.00592,0.093632,0.004896
+1361,1290.28,0.775024,0.339968,0.006144,0.196608,0.006144,0.008192,0.006144,0.006144,0.006144,0.099712,0.004736
+1362,759.855,1.31604,0.33744,0.005536,0.197248,0.0072,0.006272,0.00496,0.006112,0.006144,0.098304,0.005664
+1363,1454.29,0.687622,0.331296,0.005568,0.197184,0.006144,0.007808,0.005792,0.004832,0.006176,0.092128,0.005664
+1364,1255.29,0.796631,0.32768,0.005952,0.19632,0.006336,0.006304,0.006272,0.006048,0.005984,0.090016,0.004448
+1365,1497.9,0.667603,0.332672,0.00512,0.196608,0.00752,0.006816,0.006112,0.005856,0.005888,0.092736,0.006016
+1366,1151.37,0.86853,0.519136,0.005088,0.37888,0.006144,0.006144,0.006144,0.006144,0.006144,0.098304,0.006144
+1367,1193.82,0.837646,0.575712,0.00432,0.436224,0.013824,0.006656,0.006144,0.006112,0.006112,0.092224,0.004096
+1368,797.197,1.25439,0.337856,0.004864,0.200704,0.006144,0.006144,0.00608,0.006048,0.006016,0.096544,0.005312
+1369,1417.06,0.705688,0.338368,0.004544,0.199904,0.006336,0.006752,0.006144,0.006016,0.005856,0.097792,0.005024
+1370,1339.44,0.746582,0.335904,0.006144,0.196096,0.006336,0.006496,0.006112,0.006144,0.006144,0.098048,0.004384
+1371,912.859,1.09546,0.34816,0.005728,0.211392,0.006112,0.00752,0.004896,0.006048,0.006112,0.095264,0.005088
+1372,1662.68,0.60144,0.333856,0.005728,0.204256,0.006336,0.00624,0.005856,0.005152,0.006048,0.089216,0.005024
+1373,1368.53,0.730713,0.329152,0.006144,0.200704,0.006176,0.007904,0.0056,0.004896,0.006176,0.085984,0.005568
+1374,1206.66,0.828735,0.344,0.004768,0.217088,0.006144,0.006176,0.00768,0.005824,0.004896,0.086016,0.005408
+1375,1039.33,0.962158,0.337888,0.004384,0.20688,0.006112,0.007296,0.004992,0.006144,0.006144,0.090112,0.005824
+1376,743.713,1.3446,0.345856,0.008192,0.20688,0.006112,0.006144,0.006144,0.006144,0.006144,0.094208,0.005888
+1377,1443.52,0.692749,0.33424,0.004832,0.20016,0.006336,0.0064,0.00576,0.005984,0.00592,0.093024,0.005824
+1378,1358.32,0.736206,0.333824,0.006048,0.195936,0.006336,0.006752,0.00576,0.00576,0.004832,0.096256,0.006144
+1379,1298.67,0.77002,0.32976,0.006144,0.196032,0.006272,0.006592,0.0072,0.005088,0.006176,0.091552,0.004704
+1380,1302.18,0.767944,0.335168,0.005408,0.19664,0.006368,0.006368,0.005376,0.00512,0.006144,0.098304,0.00544
+1381,1463.12,0.683472,0.333824,0.005824,0.198176,0.006944,0.007456,0.004896,0.007584,0.006048,0.091808,0.005088
+1382,970.386,1.03052,0.344448,0.00448,0.210944,0.006144,0.006144,0.006144,0.006144,0.006144,0.093536,0.004768
+1383,1195.56,0.836426,0.573472,0.005536,0.43888,0.008224,0.008064,0.00576,0.006048,0.006016,0.088768,0.006176
+1384,852.978,1.17236,0.335904,0.005504,0.201376,0.006144,0.007456,0.004896,0.006048,0.006144,0.093216,0.00512
+1385,1378.2,0.725586,0.334528,0.0048,0.198144,0.006336,0.006464,0.005792,0.005792,0.005888,0.096896,0.004416
+1386,1298.67,0.77002,0.353792,0.006144,0.211968,0.006336,0.006336,0.004896,0.005984,0.006144,0.100352,0.005632
+1387,1190.01,0.840332,0.355424,0.005568,0.21152,0.006336,0.007968,0.006176,0.006144,0.00592,0.10048,0.005312
+1388,691.833,1.44543,0.417792,0.005664,0.280224,0.006336,0.006272,0.005984,0.004768,0.006144,0.096256,0.006144
+1389,1152.99,0.86731,0.377056,0.005376,0.236512,0.007616,0.006752,0.00608,0.005664,0.005856,0.099008,0.004192
+1390,977.449,1.02307,0.350176,0.005632,0.213504,0.006144,0.007296,0.004992,0.006144,0.006144,0.094208,0.006112
+1391,851.205,1.1748,0.354112,0.008032,0.209056,0.006144,0.007264,0.005056,0.006112,0.006144,0.100352,0.005952
+1392,1320.23,0.757446,0.342432,0.004544,0.202368,0.006304,0.006304,0.0056,0.005824,0.004992,0.101696,0.0048
+1393,1282.81,0.779541,0.339648,0.005376,0.205344,0.006336,0.006368,0.006112,0.006144,0.005856,0.092448,0.005664
+1394,1453.51,0.687988,0.339328,0.005408,0.202784,0.006304,0.006336,0.005792,0.00496,0.006176,0.096224,0.005344
+1395,1208.26,0.827637,0.348,0.006144,0.208928,0.006112,0.007552,0.006432,0.005856,0.005888,0.095104,0.005984
+1396,1326.21,0.754028,0.356352,0.005728,0.220768,0.006496,0.00624,0.00576,0.005952,0.005056,0.095712,0.00464
+1397,1403.94,0.71228,0.344832,0.004928,0.206688,0.006304,0.006304,0.005984,0.006176,0.006112,0.096256,0.00608
+1398,946.943,1.05603,0.343328,0.005664,0.203488,0.006176,0.006112,0.006112,0.005824,0.005728,0.098912,0.005312
+1399,1283.21,0.779297,0.590624,0.004864,0.423008,0.039392,0.006592,0.006144,0.005984,0.005952,0.094272,0.004416
+1400,840.464,1.18982,0.352448,0.005376,0.213952,0.006144,0.007936,0.0064,0.006048,0.005824,0.096096,0.004672
+1401,1385.66,0.72168,0.361408,0.005024,0.2272,0.006272,0.006336,0.005984,0.006112,0.00592,0.093824,0.004736
+1402,1228.92,0.813721,0.338816,0.004992,0.2048,0.006144,0.007264,0.005024,0.006144,0.006144,0.09216,0.006144
+1403,1417.06,0.705688,0.337952,0.005408,0.201472,0.006144,0.007744,0.00576,0.005952,0.00512,0.095744,0.004608
+1404,1288.46,0.776123,0.33936,0.00544,0.203008,0.006336,0.0064,0.005376,0.006048,0.005984,0.095232,0.005536
+1405,1053.77,0.948975,0.35024,0.005568,0.213568,0.006176,0.007872,0.005792,0.005888,0.005024,0.09568,0.004672
+1406,1237.65,0.807983,0.34,0.004704,0.206848,0.006144,0.007264,0.005056,0.006112,0.006144,0.09216,0.005568
+1407,1250.69,0.799561,0.59808,0.005056,0.415744,0.032544,0.026848,0.006144,0.006144,0.00608,0.094208,0.005312
+1408,845.582,1.18262,0.347424,0.006144,0.212352,0.006336,0.006624,0.006112,0.006144,0.005984,0.09232,0.005408
+1409,1406.59,0.710938,0.338368,0.004576,0.200704,0.006112,0.008064,0.006304,0.006112,0.006176,0.096128,0.004192
+1410,1333.55,0.749878,0.331808,0.005888,0.19584,0.006336,0.006368,0.006752,0.00592,0.005824,0.094144,0.004736
+1411,1301.56,0.768311,0.335968,0.004512,0.19856,0.006144,0.007584,0.005728,0.006528,0.005856,0.095136,0.00592
+1412,1149.43,0.869995,0.349696,0.005856,0.209184,0.006144,0.007328,0.00496,0.007424,0.004864,0.098304,0.005632
+1413,1525.23,0.65564,0.343392,0.005408,0.20576,0.007232,0.006784,0.00448,0.006112,0.006112,0.096096,0.005408
+1414,1272.84,0.785645,0.516672,0.004992,0.377952,0.006368,0.006368,0.00576,0.00496,0.006144,0.098304,0.005824
+1415,875.775,1.14185,0.591872,0.005952,0.42208,0.034592,0.0064,0.006144,0.006112,0.006016,0.098432,0.006144
+1416,930.803,1.07434,0.361568,0.006144,0.214816,0.006336,0.006176,0.00592,0.005984,0.005984,0.104896,0.005312
+1417,1414.61,0.706909,0.344096,0.006144,0.202752,0.006176,0.009408,0.004896,0.006144,0.006144,0.097888,0.004544
+1418,1277.6,0.782715,0.33792,0.006048,0.20064,0.006304,0.006176,0.007232,0.005024,0.006144,0.094208,0.006144
+1419,1401.78,0.713379,0.333344,0.006144,0.198208,0.006432,0.006336,0.006112,0.006144,0.006144,0.09216,0.005664
+1420,1315.77,0.76001,0.331776,0.005728,0.20032,0.006336,0.005984,0.004864,0.006144,0.006112,0.091904,0.004384
+1421,1429.17,0.699707,0.337184,0.005664,0.199136,0.007552,0.006784,0.005792,0.005888,0.00592,0.09504,0.005408
+1422,1334.64,0.749268,0.333856,0.005952,0.200384,0.006336,0.006272,0.00576,0.005856,0.00496,0.094208,0.004128
+1423,897.065,1.11475,0.381888,0.005056,0.241568,0.00624,0.006144,0.006144,0.006144,0.00592,0.098528,0.006144
+1424,676.131,1.479,0.378432,0.007552,0.240256,0.006144,0.007232,0.005056,0.006144,0.006144,0.094208,0.005696
+1425,1427.68,0.700439,0.335104,0.005952,0.204288,0.006368,0.006272,0.00576,0.004896,0.00608,0.090112,0.005376
+1426,1237.46,0.808105,0.3288,0.006048,0.197984,0.006304,0.006272,0.00576,0.00496,0.006176,0.089984,0.005312
+1427,1429.67,0.699463,0.336288,0.004544,0.202016,0.006848,0.007264,0.006624,0.005888,0.005856,0.09296,0.004288
+1428,1261.86,0.79248,0.332512,0.00496,0.200704,0.006144,0.007232,0.005056,0.006144,0.006144,0.090112,0.006016
+1429,1412.17,0.70813,0.335744,0.005984,0.196768,0.006144,0.006208,0.006048,0.005824,0.005792,0.09696,0.006016
+1430,1167.12,0.856812,0.356352,0.005664,0.20496,0.006496,0.006144,0.006112,0.007168,0.006656,0.108096,0.005056
+1431,908.607,1.10059,0.606432,0.004448,0.445504,0.021408,0.007872,0.00576,0.006016,0.005952,0.103424,0.006048
+1432,934.52,1.07007,0.338304,0.00448,0.204576,0.006336,0.006176,0.00528,0.00496,0.006176,0.094176,0.006144
+1433,1466.79,0.681763,0.335648,0.0048,0.2,0.006336,0.006656,0.00544,0.0048,0.006144,0.09616,0.005312
+1434,1281.8,0.780151,0.328,0.004416,0.198656,0.007232,0.006336,0.004896,0.006112,0.006176,0.089568,0.004608
+1435,1399.39,0.7146,0.335808,0.006144,0.201952,0.006368,0.00672,0.005824,0.005824,0.005856,0.09104,0.00608
+1436,1315.56,0.760132,0.329216,0.005664,0.1968,0.006336,0.006272,0.00576,0.005792,0.0048,0.09216,0.005632
+1437,1411.68,0.708374,0.3312,0.006144,0.198592,0.00624,0.006208,0.006048,0.00592,0.005888,0.090592,0.005568
+1438,1347.15,0.74231,0.329728,0.005664,0.196352,0.006336,0.006336,0.005568,0.005024,0.006144,0.09216,0.006144
+1439,1194.87,0.836914,0.512,0.005376,0.379136,0.006336,0.006464,0.006112,0.00592,0.005824,0.091744,0.005088
+1440,1089.36,0.917969,0.575456,0.005888,0.439936,0.008448,0.0064,0.005792,0.00608,0.005888,0.090912,0.006112
+1441,615.755,1.62402,0.381568,0.004736,0.243456,0.006304,0.006208,0.006144,0.006176,0.006112,0.096256,0.006176
+1442,1249.54,0.800293,0.353344,0.006144,0.216096,0.00688,0.006272,0.006304,0.006112,0.005792,0.094368,0.005376
+1443,1678.34,0.595825,0.33792,0.006144,0.202784,0.006144,0.00752,0.005792,0.00512,0.006112,0.093536,0.004768
+1444,1300.11,0.769165,0.336128,0.004992,0.202368,0.006336,0.006112,0.005728,0.006048,0.00608,0.09296,0.005504
+1445,1436.19,0.696289,0.334144,0.004704,0.2,0.006304,0.007904,0.004928,0.006144,0.006144,0.09216,0.005856
+1446,1344.05,0.744019,0.332576,0.004864,0.196608,0.006144,0.006144,0.006144,0.006144,0.005856,0.095872,0.0048
+1447,1156.57,0.864624,0.33568,0.005792,0.205184,0.00736,0.006752,0.005824,0.005792,0.005024,0.088,0.005952
+1448,704.143,1.42017,0.354848,0.006976,0.21504,0.006144,0.006144,0.007264,0.005024,0.006144,0.096256,0.005856
+1449,1308.21,0.764404,0.340992,0.00512,0.202528,0.006336,0.006304,0.007168,0.005024,0.006112,0.097408,0.004992
+1450,1378.2,0.725586,0.335904,0.005728,0.200832,0.006464,0.006112,0.006144,0.006144,0.006144,0.093856,0.00448
+1451,1403.46,0.712524,0.33744,0.005824,0.196928,0.008192,0.006304,0.005984,0.006144,0.006144,0.096256,0.005664
+1452,1252.98,0.798096,0.339968,0.006112,0.198688,0.007392,0.00624,0.004896,0.007552,0.005888,0.097056,0.006144
+1453,1424.45,0.702026,0.342016,0.006144,0.200192,0.006304,0.006496,0.00608,0.006208,0.0072,0.097248,0.006144
+1454,1381.45,0.723877,0.331072,0.005408,0.199424,0.006144,0.006144,0.006144,0.006144,0.006016,0.09024,0.005408
+1455,1235.6,0.809326,0.515264,0.005984,0.378976,0.006208,0.007232,0.005088,0.006112,0.006144,0.094176,0.005344
+1456,1050.39,0.952026,0.577248,0.0056,0.426528,0.02048,0.006176,0.005888,0.00608,0.006048,0.094624,0.005824
+1457,843.319,1.18579,0.334624,0.004896,0.20064,0.006208,0.006144,0.006144,0.006144,0.006144,0.0936,0.004704
+1458,1349.59,0.740967,0.334528,0.004928,0.198656,0.006144,0.006144,0.006144,0.006144,0.006144,0.094208,0.006016
+1459,1017.01,0.983276,0.372736,0.005792,0.233408,0.006464,0.008288,0.005856,0.005856,0.00672,0.09584,0.004512
+1460,1494.35,0.669189,0.3496,0.00448,0.208896,0.006144,0.006144,0.007616,0.006048,0.00592,0.09904,0.005312
+1461,1433.67,0.69751,0.335872,0.00576,0.202304,0.0064,0.00672,0.005888,0.006048,0.006112,0.091552,0.005088
+1462,1178.54,0.848511,0.329024,0.005984,0.1968,0.006112,0.006144,0.006144,0.006144,0.006048,0.090208,0.00544
+1463,1501.19,0.666138,0.549344,0.004576,0.415744,0.007168,0.006816,0.005824,0.005792,0.00512,0.093504,0.0048
+1464,865.779,1.15503,0.585728,0.005824,0.422208,0.030304,0.006272,0.005824,0.005824,0.005024,0.098304,0.006144
+1465,925.127,1.08093,0.341696,0.006144,0.2048,0.007296,0.00704,0.005824,0.005824,0.00576,0.093184,0.005824
+1466,1298.05,0.770386,0.338464,0.00464,0.204832,0.006112,0.006336,0.005952,0.006144,0.006144,0.093472,0.004832
+1467,1371.73,0.729004,0.33552,0.006048,0.20048,0.0064,0.006208,0.006144,0.00608,0.005856,0.092512,0.005792
+1468,1316.62,0.759521,0.33008,0.00464,0.198656,0.006144,0.006176,0.006112,0.00608,0.00416,0.09216,0.005952
+1469,1366.24,0.731934,0.331008,0.005632,0.19696,0.006304,0.006144,0.006144,0.005952,0.005856,0.09264,0.005376
+1470,1409.26,0.709595,0.34112,0.0056,0.19664,0.006336,0.006272,0.005792,0.005824,0.004992,0.104352,0.005312
+1471,1278.6,0.782104,0.33792,0.005408,0.201184,0.006304,0.008096,0.005856,0.005792,0.004928,0.096256,0.004096
+1472,1174.99,0.851074,0.340544,0.00464,0.204832,0.006112,0.006176,0.006176,0.006112,0.006144,0.094176,0.006176
+1473,1235.97,0.809082,0.57344,0.005696,0.42848,0.017888,0.006688,0.006144,0.006176,0.006112,0.091232,0.005024
+1474,870.933,1.14819,0.340352,0.005088,0.206656,0.006336,0.006144,0.006144,0.00608,0.006208,0.09216,0.005536
+1475,1273.24,0.7854,0.333632,0.004512,0.196608,0.006208,0.008128,0.006112,0.005792,0.00576,0.094976,0.005536
+1476,1455.58,0.687012,0.331424,0.005696,0.19904,0.006208,0.006144,0.006176,0.00608,0.00592,0.090368,0.005792
+1477,1152.83,0.867432,0.346368,0.005088,0.210944,0.006144,0.006304,0.005984,0.006144,0.005856,0.094496,0.005408
+1478,1376.11,0.726685,0.340256,0.004704,0.204832,0.006112,0.006144,0.006144,0.006144,0.005824,0.094528,0.005824
+1479,1389.18,0.719849,0.342912,0.004992,0.2048,0.006144,0.006304,0.0072,0.006016,0.005056,0.097632,0.004768
+1480,1350.92,0.740234,0.520096,0.005504,0.379392,0.006304,0.006112,0.006144,0.005824,0.005728,0.09904,0.006048
+1481,772.612,1.29431,0.553248,0.010624,0.40336,0.006144,0.008032,0.005824,0.005824,0.004896,0.103648,0.004896
+1482,1077.19,0.928345,0.34624,0.005408,0.201568,0.006144,0.00768,0.005856,0.004896,0.006144,0.103808,0.004736
+1483,1321.08,0.756958,0.333472,0.006048,0.196128,0.006336,0.006528,0.006112,0.006016,0.005984,0.094528,0.005792
+1484,1451.97,0.688721,0.339232,0.00544,0.198496,0.006336,0.006528,0.00576,0.005952,0.005152,0.10016,0.005408
+1485,1309.67,0.76355,0.342592,0.004672,0.200544,0.006304,0.008192,0.00592,0.005856,0.006112,0.098848,0.006144
+1486,1300.73,0.768799,0.33376,0.005024,0.19664,0.006112,0.007296,0.004992,0.007584,0.005952,0.09488,0.00528
+1487,1268.31,0.788452,0.331904,0.005408,0.195456,0.006304,0.007584,0.006464,0.005856,0.005792,0.094048,0.004992
+1488,1119.89,0.892944,0.36064,0.004832,0.229376,0.00752,0.00496,0.007008,0.00512,0.006112,0.090112,0.0056
+1489,1173.13,0.852417,0.578144,0.004704,0.444416,0.009504,0.00688,0.006112,0.00592,0.00608,0.089824,0.004704
+1490,822.49,1.21582,0.340576,0.004736,0.206816,0.006176,0.006112,0.006144,0.006144,0.006144,0.09392,0.004384
+1491,1416.08,0.706177,0.335904,0.00592,0.196864,0.006112,0.008224,0.006112,0.006144,0.005952,0.0944,0.006176
+1492,1427.68,0.700439,0.339328,0.00544,0.198528,0.006368,0.006368,0.005792,0.004832,0.006144,0.100352,0.005504
+1493,1308.84,0.764038,0.339264,0.005632,0.200224,0.006304,0.006976,0.005792,0.005984,0.00592,0.096992,0.00544
+1494,1301.14,0.768555,0.337408,0.00448,0.198656,0.006176,0.006112,0.006144,0.006144,0.006144,0.098208,0.005344
+1495,1256.83,0.795654,0.335392,0.00576,0.196992,0.006144,0.007488,0.004832,0.006112,0.006144,0.096256,0.005664
+1496,824.394,1.21301,0.376896,0.005408,0.22816,0.006112,0.007264,0.005024,0.006144,0.006016,0.106624,0.006144
+1497,1111.53,0.899658,0.622912,0.004448,0.452256,0.037216,0.007232,0.005024,0.006144,0.006144,0.099776,0.004672
+1498,880.86,1.13525,0.344288,0.004704,0.206144,0.006304,0.006272,0.005792,0.004896,0.006112,0.098304,0.00576
+1499,1301.97,0.768066,0.34112,0.005792,0.198816,0.006336,0.007456,0.004928,0.00608,0.006112,0.100288,0.005312
+1500,1458.95,0.685425,0.347648,0.004416,0.202752,0.006144,0.006144,0.006144,0.006176,0.006112,0.104416,0.005344
+1501,1305.71,0.765869,0.34,0.005408,0.195296,0.006144,0.007936,0.00576,0.00576,0.00512,0.104,0.004576
+1502,1257.21,0.79541,0.339456,0.004608,0.198144,0.006336,0.006432,0.006144,0.005888,0.00576,0.100832,0.005312
+1503,1312.4,0.761963,0.339008,0.006016,0.202112,0.006272,0.006784,0.005952,0.005824,0.005856,0.09488,0.005312
+1504,1439.21,0.694824,0.3408,0.004928,0.202752,0.006144,0.006144,0.006176,0.006144,0.006112,0.097344,0.005056
+1505,1004.29,0.995728,0.340128,0.00544,0.205696,0.007264,0.00704,0.00576,0.005664,0.005024,0.092128,0.006112
+1506,1435.68,0.696533,0.581632,0.005568,0.424512,0.028672,0.006144,0.006144,0.006048,0.005952,0.093856,0.004736
+1507,830.832,1.20361,0.348192,0.006144,0.202752,0.008032,0.006304,0.006144,0.005888,0.005792,0.10256,0.004576
+1508,1378.66,0.725342,0.333408,0.005408,0.198656,0.006336,0.0064,0.005568,0.004992,0.006144,0.094208,0.005696
+1509,1237.46,0.808105,0.333824,0.005568,0.197088,0.00624,0.006144,0.006176,0.006112,0.006144,0.096192,0.00416
+1510,1459.21,0.685303,0.331808,0.006144,0.196608,0.007392,0.0064,0.005824,0.00496,0.006144,0.093664,0.004672
+1511,1285.22,0.778076,0.329536,0.005408,0.195488,0.006144,0.007392,0.004896,0.006144,0.006144,0.09216,0.00576
+1512,1451.71,0.688843,0.327488,0.005408,0.197312,0.006304,0.00608,0.004352,0.006048,0.006112,0.090144,0.005728
+1513,1311.14,0.762695,0.517248,0.005568,0.379456,0.006144,0.0072,0.005088,0.006144,0.006144,0.09616,0.005344
+1514,984.379,1.01587,0.588192,0.00448,0.437344,0.015264,0.007328,0.00496,0.006144,0.006144,0.101984,0.004544
+1515,842.365,1.18713,0.355584,0.005376,0.21376,0.006144,0.00736,0.004928,0.007296,0.004992,0.100352,0.005376
+1516,1240.84,0.805908,0.36592,0.005952,0.227264,0.006304,0.006048,0.00432,0.0072,0.005184,0.098176,0.005472
+1517,1364.2,0.733032,0.335648,0.004544,0.200704,0.007168,0.006784,0.005824,0.0048,0.006144,0.094208,0.005472
+1518,1388,0.720459,0.348544,0.004896,0.198656,0.006144,0.00624,0.006048,0.006144,0.006112,0.108576,0.005728
+1519,1237.65,0.807983,0.352032,0.004768,0.202112,0.006304,0.006624,0.005728,0.005824,0.005856,0.109472,0.005344
+1520,1380.29,0.724487,0.348992,0.004896,0.198688,0.006112,0.007712,0.005792,0.00496,0.006112,0.110272,0.004448
+1521,1263.03,0.791748,0.34816,0.005504,0.202656,0.0064,0.00656,0.005632,0.005856,0.004992,0.105888,0.004672
+1522,1025.03,0.975586,0.583712,0.006144,0.429568,0.024928,0.006304,0.005792,0.005856,0.005984,0.094432,0.004704
+1523,810.848,1.23328,0.33808,0.005408,0.199552,0.007392,0.006944,0.006144,0.006016,0.005824,0.094656,0.006144
+1524,1424.7,0.701904,0.329856,0.005408,0.194816,0.006336,0.006272,0.004416,0.006144,0.006144,0.094208,0.006112
+1525,1235.04,0.809692,0.332992,0.006144,0.196608,0.006144,0.00768,0.006432,0.00624,0.005632,0.092704,0.005408
+1526,1472.85,0.678955,0.334848,0.00512,0.196608,0.006144,0.006144,0.005952,0.005856,0.005824,0.098208,0.004992
+1527,1277.21,0.782959,0.333536,0.006144,0.196192,0.006368,0.006336,0.006144,0.006016,0.00592,0.09456,0.005856
+1528,1395.81,0.716431,0.330432,0.00512,0.196608,0.006176,0.007296,0.004992,0.006112,0.006176,0.092128,0.005824
+1529,1360.8,0.734863,0.339648,0.006144,0.196608,0.006144,0.008192,0.006144,0.006112,0.005888,0.098592,0.005824
+1530,1159.03,0.862793,0.335872,0.004576,0.200672,0.006176,0.006176,0.00608,0.006144,0.006144,0.094208,0.005696
+1531,695.948,1.43689,0.347456,0.00752,0.208832,0.006336,0.006784,0.006304,0.006048,0.005952,0.0944,0.00528
+1532,746.764,1.33911,0.3384,0.004544,0.201888,0.006304,0.006304,0.00576,0.005056,0.006112,0.097888,0.004544
+1533,1017.51,0.982788,0.35024,0.006144,0.21056,0.006368,0.006336,0.006112,0.006176,0.006112,0.097632,0.0048
+1534,1292.32,0.773804,0.339968,0.005664,0.198464,0.006208,0.006368,0.006432,0.006016,0.005984,0.100096,0.004736
+1535,1417.06,0.705688,0.340768,0.004896,0.198048,0.006336,0.00656,0.006016,0.005952,0.006016,0.10208,0.004864
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..d743118
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1249.52,0.847915,0.332575,0.00561263,0.233296,0.00649428,0.00568566,0.00585159,0.00592991,0.00584603,0.0583955,0.00546372
+max_1024,1749.68,2.88806,0.773152,0.026752,0.67648,0.059392,0.032768,0.05616,0.022528,0.028672,0.077792,0.021568
+min_1024,346.253,0.571533,0.284032,0.004256,0.191168,0.004416,0.00432,0.004352,0.004544,0.004544,0.044992,0.004224
+512,1452.22,0.688599,0.321952,0.004512,0.234656,0.00496,0.006144,0.005696,0.005792,0.0064,0.047648,0.006144
+513,1331.38,0.751099,0.299008,0.00576,0.211328,0.005824,0.005728,0.004832,0.006176,0.006048,0.048928,0.004384
+514,1141.58,0.875977,0.351552,0.005792,0.262304,0.005632,0.004832,0.006112,0.006144,0.006144,0.049152,0.00544
+515,1501.19,0.666138,0.289952,0.005536,0.20256,0.004928,0.006112,0.006144,0.006048,0.005728,0.047488,0.005408
+516,1211.83,0.825195,0.29408,0.005664,0.20528,0.006176,0.0056,0.005664,0.005088,0.006176,0.049024,0.005408
+517,1041.31,0.960327,0.311136,0.006144,0.223104,0.005632,0.004768,0.006112,0.006112,0.005696,0.047584,0.005984
+518,660.06,1.51501,0.604736,0.005088,0.512,0.007648,0.005824,0.006432,0.007776,0.00624,0.048,0.005728
+519,1207.37,0.828247,0.305152,0.005472,0.213664,0.006048,0.005568,0.004832,0.007776,0.005728,0.0512,0.004864
+520,1466.26,0.682007,0.303104,0.00544,0.211648,0.005856,0.005568,0.004992,0.007136,0.00512,0.0512,0.006144
+521,1302.38,0.767822,0.299232,0.0048,0.208896,0.005632,0.004608,0.006144,0.006048,0.005664,0.051776,0.005664
+522,1413.88,0.707275,0.300608,0.005952,0.20704,0.006048,0.005568,0.004832,0.00608,0.006144,0.053248,0.005696
+523,1470.47,0.680054,0.29904,0.005344,0.210848,0.005024,0.006144,0.005696,0.006496,0.00624,0.047264,0.005984
+524,970.271,1.03064,0.299712,0.005056,0.214432,0.004864,0.005984,0.006048,0.00576,0.005664,0.046016,0.005888
+525,1077.33,0.928223,0.3128,0.005376,0.223744,0.005632,0.00496,0.006144,0.00592,0.005664,0.049856,0.005504
+526,890.048,1.12354,0.57568,0.006144,0.485376,0.008064,0.005536,0.004864,0.006112,0.006144,0.048864,0.004576
+527,1103.89,0.905884,0.303104,0.004544,0.21504,0.006144,0.005984,0.005696,0.00576,0.005088,0.049152,0.005696
+528,1191.22,0.839478,0.29696,0.004672,0.208896,0.006144,0.00576,0.005696,0.006336,0.004832,0.049056,0.005568
+529,1549.46,0.645386,0.29888,0.006144,0.210944,0.00608,0.005536,0.004832,0.00608,0.00608,0.047168,0.006016
+530,1269.09,0.787964,0.312832,0.005344,0.224256,0.006144,0.005952,0.005696,0.006336,0.005792,0.047904,0.005408
+531,1219.77,0.819824,0.316288,0.004992,0.231424,0.005696,0.00464,0.006048,0.006144,0.005984,0.046912,0.004448
+532,949.907,1.05273,0.305312,0.005376,0.22,0.0056,0.004704,0.006144,0.006144,0.005664,0.046624,0.005056
+533,1223.97,0.817017,0.3072,0.005408,0.22192,0.005888,0.005664,0.004832,0.007232,0.005056,0.046144,0.005056
+534,1052.14,0.950439,0.535392,0.00496,0.43008,0.026272,0.005664,0.00496,0.006112,0.006048,0.045152,0.006144
+535,691.717,1.44568,0.311072,0.005856,0.2248,0.004864,0.006144,0.005856,0.005792,0.0048,0.047072,0.005888
+536,905.494,1.10437,0.299168,0.005376,0.213536,0.005696,0.004928,0.006176,0.005856,0.0056,0.045856,0.006144
+537,1060.59,0.942871,0.292864,0.005568,0.205376,0.005888,0.005568,0.004928,0.006176,0.006112,0.048192,0.005056
+538,875.775,1.14185,0.304832,0.005504,0.213632,0.006144,0.006144,0.005632,0.00576,0.004992,0.0512,0.005824
+539,1063.21,0.940552,0.29504,0.005344,0.209792,0.006112,0.005568,0.004832,0.006048,0.006112,0.04624,0.004992
+540,676.131,1.479,0.610272,0.004736,0.522208,0.007744,0.005664,0.005088,0.006144,0.006112,0.047104,0.005472
+541,839.516,1.19116,0.314688,0.006144,0.22848,0.004992,0.006144,0.00576,0.006528,0.005984,0.045216,0.00544
+542,1053.36,0.949341,0.28784,0.006144,0.200704,0.00592,0.005536,0.004928,0.006144,0.006144,0.046976,0.005344
+543,1250.69,0.799561,0.314112,0.004832,0.227328,0.006144,0.006144,0.005728,0.00576,0.004896,0.048448,0.004832
+544,983.67,1.0166,0.343072,0.005408,0.257824,0.005056,0.006144,0.005664,0.00576,0.00496,0.04688,0.005376
+545,1055.94,0.947021,0.3184,0.005056,0.2312,0.005696,0.004768,0.006144,0.006016,0.005728,0.048896,0.004896
+546,669.609,1.49341,0.346144,0.005376,0.2568,0.006144,0.005984,0.005664,0.004768,0.006112,0.049152,0.006144
+547,551.984,1.81165,0.35536,0.007168,0.264224,0.006112,0.005664,0.005664,0.005056,0.006144,0.049152,0.006176
+548,1461.03,0.684448,0.291232,0.00464,0.202624,0.0056,0.004768,0.0072,0.005088,0.006176,0.04912,0.006016
+549,1092.7,0.915161,0.367168,0.004736,0.278528,0.006144,0.005824,0.005696,0.00592,0.005088,0.049152,0.00608
+550,346.253,2.88806,0.343808,0.0056,0.252448,0.005952,0.005568,0.004864,0.006144,0.006112,0.051232,0.005888
+551,554.901,1.80212,0.488128,0.006848,0.399328,0.005696,0.004544,0.006176,0.006112,0.005888,0.048672,0.004864
+552,1126.51,0.887695,0.32736,0.004576,0.238848,0.004896,0.006112,0.005856,0.005792,0.005792,0.05008,0.005408
+553,976.168,1.02441,0.327296,0.005376,0.236544,0.006144,0.00576,0.005696,0.004928,0.006144,0.0512,0.005504
+554,887.156,1.1272,0.403456,0.0056,0.309792,0.006144,0.00576,0.005664,0.00512,0.005984,0.054368,0.005024
+555,994.295,1.00574,0.3304,0.004768,0.2376,0.006112,0.005696,0.005664,0.005056,0.006112,0.0544,0.004992
+556,1113.19,0.898315,0.352096,0.004384,0.264192,0.006144,0.005696,0.005696,0.004992,0.006144,0.049152,0.005696
+557,1191.39,0.839355,0.316096,0.00464,0.229344,0.00608,0.005632,0.004832,0.005984,0.006144,0.048896,0.004544
+558,615.061,1.62585,0.37248,0.007488,0.279328,0.005632,0.0048,0.006144,0.006048,0.00576,0.05168,0.0056
+559,939.342,1.06458,0.33792,0.0056,0.24768,0.004864,0.006048,0.00592,0.005792,0.005728,0.051232,0.005056
+560,838.314,1.19287,0.314976,0.006144,0.221184,0.00576,0.005568,0.005056,0.006144,0.006144,0.053248,0.005728
+561,1454.55,0.6875,0.296928,0.004544,0.210944,0.006144,0.005824,0.005696,0.004896,0.006112,0.047104,0.005664
+562,1081.02,0.925049,0.28624,0.005344,0.200832,0.004832,0.00608,0.005888,0.0056,0.004896,0.047104,0.005664
+563,1414.85,0.706787,0.297632,0.0048,0.204,0.004864,0.006144,0.005824,0.006464,0.005824,0.055136,0.004576
+564,838.743,1.19226,0.544768,0.005408,0.424672,0.034496,0.005568,0.004992,0.006144,0.005952,0.051392,0.006144
+565,1242.34,0.804932,0.3072,0.005472,0.213664,0.006048,0.005536,0.004832,0.006112,0.006144,0.0544,0.004992
+566,1301.56,0.768311,0.308416,0.006048,0.218944,0.005632,0.004896,0.006144,0.005856,0.005696,0.049888,0.005312
+567,1562.76,0.639893,0.299072,0.005664,0.211456,0.005952,0.005632,0.004832,0.0072,0.005024,0.048768,0.004544
+568,1383.78,0.722656,0.292544,0.004512,0.208256,0.004832,0.006048,0.005984,0.005792,0.005728,0.045984,0.005408
+569,1327.93,0.753052,0.284032,0.005376,0.199104,0.005728,0.004832,0.006144,0.006144,0.006144,0.045056,0.005504
+570,1595.02,0.626953,0.464192,0.004384,0.37888,0.006144,0.005728,0.005696,0.00512,0.005984,0.046976,0.00528
+571,1083.31,0.923096,0.288768,0.006144,0.201792,0.005056,0.006144,0.005696,0.00592,0.005952,0.047424,0.00464
+572,1455.06,0.687256,0.29296,0.005376,0.205696,0.006144,0.005696,0.005664,0.005024,0.006144,0.047136,0.00608
+573,1112.44,0.898926,0.483328,0.00784,0.393568,0.005856,0.005568,0.00496,0.006144,0.00608,0.047168,0.006144
+574,1154.78,0.865967,0.289184,0.005088,0.200704,0.006144,0.005536,0.006304,0.005888,0.004832,0.04912,0.005568
+575,1369.21,0.730347,0.294912,0.006144,0.206848,0.006144,0.00592,0.005728,0.005792,0.005088,0.047136,0.006112
+576,1388.24,0.720337,0.290816,0.006144,0.202784,0.006048,0.005536,0.004768,0.006144,0.006112,0.047136,0.006144
+577,1310.93,0.762817,0.290912,0.005344,0.204896,0.004896,0.006144,0.005856,0.00576,0.0048,0.048672,0.004544
+578,1278.2,0.782349,0.341952,0.005664,0.254336,0.005696,0.004672,0.006112,0.006144,0.005888,0.04736,0.00608
+579,1065,0.938965,0.3152,0.006144,0.227328,0.006144,0.005952,0.005696,0.004736,0.007648,0.0456,0.005952
+580,1374.5,0.727539,0.292736,0.005344,0.2056,0.006144,0.006144,0.006016,0.005792,0.005728,0.045952,0.006016
+581,1572.66,0.635864,0.294848,0.004832,0.208512,0.0056,0.005024,0.006144,0.006144,0.006144,0.047104,0.005344
+582,686.96,1.45569,0.314368,0.007168,0.225248,0.005728,0.004544,0.006144,0.006144,0.005888,0.048832,0.004672
+583,1434.17,0.697266,0.286752,0.006144,0.200288,0.00576,0.004928,0.006112,0.00592,0.005856,0.046816,0.004928
+584,1453,0.688232,0.29104,0.005376,0.201216,0.0056,0.00512,0.00608,0.006208,0.005856,0.051072,0.004512
+585,1309.67,0.76355,0.305536,0.00448,0.220384,0.004896,0.006144,0.00576,0.006528,0.005824,0.046848,0.004672
+586,779.003,1.28369,0.305536,0.005472,0.218112,0.005824,0.005568,0.004992,0.007424,0.004896,0.048512,0.004736
+587,1081.59,0.924561,0.30048,0.004384,0.216768,0.005632,0.00496,0.006112,0.00592,0.006368,0.044992,0.005344
+588,1382.15,0.723511,0.29744,0.004704,0.212704,0.005632,0.004864,0.006144,0.007392,0.004896,0.045056,0.006048
+589,1343.61,0.744263,0.301056,0.005408,0.215776,0.005952,0.005632,0.004864,0.006112,0.006112,0.046432,0.004768
+590,627.595,1.59338,0.313056,0.007808,0.225664,0.00608,0.005504,0.004832,0.006112,0.006144,0.045056,0.005856
+591,1393.43,0.717651,0.311584,0.005024,0.22672,0.00576,0.005088,0.006144,0.00576,0.0056,0.046016,0.005472
+592,1501.74,0.665894,0.290464,0.005408,0.20544,0.005728,0.004768,0.00736,0.005984,0.00512,0.045024,0.005632
+593,1328.36,0.752808,0.290912,0.004448,0.202176,0.004864,0.005952,0.00608,0.006208,0.006048,0.049248,0.005888
+594,1517.88,0.658813,0.293024,0.005376,0.201696,0.006144,0.005728,0.00624,0.006272,0.005984,0.049504,0.00608
+595,1144.93,0.873413,0.29696,0.005472,0.20752,0.006144,0.005696,0.005696,0.006816,0.005696,0.049536,0.004384
+596,1345.82,0.743042,0.317568,0.005344,0.23008,0.005632,0.004864,0.006144,0.00592,0.006336,0.04832,0.004928
+597,1194.34,0.83728,0.325344,0.0048,0.235296,0.005632,0.004864,0.006112,0.006144,0.007232,0.049856,0.005408
+598,746.628,1.33936,0.315424,0.007648,0.225824,0.006144,0.00592,0.005664,0.0048,0.006144,0.04832,0.00496
+599,1512.28,0.661255,0.290816,0.005792,0.203104,0.00576,0.005632,0.004992,0.006144,0.005696,0.047616,0.00608
+600,1305.91,0.765747,0.298624,0.005344,0.208864,0.006368,0.004768,0.006112,0.006016,0.005728,0.049696,0.005728
+601,1497.35,0.667847,0.292896,0.0048,0.203904,0.005024,0.006112,0.005664,0.00592,0.005984,0.050016,0.005472
+602,1412.66,0.707886,0.311296,0.005664,0.219232,0.005632,0.004992,0.006176,0.005792,0.0064,0.053056,0.004352
+603,1439.97,0.694458,0.498016,0.004448,0.407552,0.005664,0.004576,0.007328,0.00496,0.006144,0.0512,0.006144
+604,1073.94,0.931152,0.298112,0.006048,0.208032,0.005056,0.006176,0.005888,0.005632,0.005952,0.049952,0.005376
+605,1317.25,0.759155,0.29504,0.005344,0.207392,0.0056,0.005024,0.006144,0.00592,0.005696,0.048864,0.005056
+606,1244.23,0.803711,0.545024,0.0048,0.452032,0.007744,0.00512,0.00608,0.006176,0.005728,0.051648,0.005696
+607,891.792,1.12134,0.311328,0.006144,0.223136,0.005696,0.005696,0.00624,0.004992,0.006144,0.048352,0.004928
+608,1306.33,0.765503,0.292096,0.006144,0.20432,0.0056,0.00512,0.00608,0.005568,0.004768,0.04864,0.005856
+609,1378.66,0.725342,0.294944,0.005344,0.203584,0.006144,0.005824,0.005664,0.004896,0.006144,0.05248,0.004864
+610,1420.25,0.704102,0.307616,0.004512,0.218304,0.00496,0.006112,0.00576,0.005984,0.005888,0.051072,0.005024
+611,1255.86,0.796265,0.29904,0.00592,0.20912,0.006144,0.00576,0.005696,0.004928,0.006144,0.050208,0.00512
+612,990.329,1.00977,0.338016,0.005376,0.236384,0.006176,0.014304,0.006144,0.006144,0.006144,0.0512,0.006144
+613,962.858,1.03857,0.341632,0.00448,0.250848,0.00512,0.006048,0.00624,0.006112,0.005824,0.051552,0.005408
+614,980.022,1.02039,0.536288,0.006048,0.427232,0.024512,0.005056,0.006144,0.00576,0.005696,0.049984,0.005856
+615,1013.49,0.986694,0.30048,0.006144,0.208896,0.005664,0.005632,0.00512,0.006112,0.005824,0.05152,0.005568
+616,1500.09,0.666626,0.295072,0.005344,0.20528,0.005632,0.005088,0.006048,0.005952,0.00576,0.0512,0.004768
+617,1523.24,0.656494,0.290816,0.006112,0.198688,0.006144,0.006144,0.005952,0.00576,0.004672,0.0512,0.006144
+618,1381.22,0.723999,0.288768,0.006144,0.198656,0.006144,0.005568,0.006432,0.005952,0.005856,0.047968,0.006048
+619,1507.27,0.663452,0.2912,0.005088,0.203904,0.004992,0.006144,0.006144,0.00592,0.005792,0.04768,0.005536
+620,1218.32,0.820801,0.467776,0.004896,0.37888,0.006112,0.005568,0.005792,0.005056,0.006144,0.05024,0.005088
+621,1248.21,0.801147,0.292864,0.005984,0.202656,0.005696,0.004832,0.006112,0.006144,0.006144,0.050368,0.004928
+622,1275.22,0.78418,0.313376,0.005056,0.227296,0.005632,0.004672,0.006112,0.006144,0.005664,0.047488,0.005312
+623,1219.96,0.819702,0.530816,0.004864,0.441792,0.007776,0.005088,0.006112,0.00576,0.005728,0.047968,0.005728
+624,995.988,1.00403,0.288768,0.006144,0.200704,0.006144,0.0056,0.004832,0.005952,0.006144,0.048544,0.004704
+625,1423.71,0.702393,0.297024,0.004672,0.210208,0.004864,0.006112,0.005888,0.005664,0.004832,0.049152,0.005632
+626,1381.22,0.723999,0.288768,0.006016,0.198784,0.006144,0.005696,0.005696,0.006048,0.005088,0.049152,0.006144
+627,1421.48,0.703491,0.329312,0.006144,0.237408,0.005632,0.0048,0.00768,0.005792,0.004928,0.0512,0.005728
+628,1202.41,0.831665,0.319488,0.005856,0.226816,0.004928,0.006112,0.00576,0.005728,0.006208,0.051936,0.006144
+629,1548.88,0.64563,0.468992,0.005568,0.378912,0.004832,0.005952,0.00608,0.005888,0.005952,0.049664,0.006144
+630,1203.64,0.830811,0.294912,0.007424,0.20352,0.006144,0.005888,0.005696,0.004832,0.006112,0.050624,0.004672
+631,1205.41,0.82959,0.301056,0.005664,0.211424,0.006144,0.005856,0.005664,0.004864,0.006144,0.049312,0.005984
+632,486.952,2.05359,0.356544,0.008128,0.266176,0.005664,0.004896,0.00608,0.00576,0.005696,0.04912,0.005024
+633,1280.6,0.780884,0.298656,0.00592,0.207072,0.006144,0.005888,0.005696,0.005824,0.00512,0.0512,0.005792
+634,1490.27,0.671021,0.315392,0.005856,0.224928,0.004832,0.006048,0.006016,0.006272,0.005696,0.050816,0.004928
+635,1480.04,0.675659,0.29616,0.005856,0.202816,0.0056,0.004864,0.006144,0.005888,0.005728,0.053888,0.005376
+636,1303.63,0.76709,0.483328,0.006144,0.390592,0.004704,0.006112,0.006048,0.005888,0.005728,0.053408,0.004704
+637,909.818,1.09912,0.292864,0.006048,0.200416,0.0056,0.005056,0.006112,0.006144,0.005952,0.052608,0.004928
+638,1417.79,0.705322,0.306944,0.0056,0.213568,0.006112,0.005792,0.00576,0.004864,0.007296,0.052064,0.005888
+639,656.253,1.5238,0.31744,0.008096,0.22528,0.005728,0.00608,0.004832,0.005984,0.006144,0.050464,0.004832
+640,919.52,1.08752,0.330368,0.00496,0.239072,0.00464,0.006144,0.006176,0.005952,0.006304,0.0512,0.00592
+641,916.126,1.09155,0.33792,0.006016,0.249632,0.0056,0.004992,0.006176,0.006016,0.005952,0.0488,0.004736
+642,895.594,1.11658,0.32368,0.005344,0.23552,0.004992,0.006144,0.005664,0.00608,0.005952,0.04784,0.006144
+643,918.489,1.08875,0.317472,0.006144,0.229376,0.005952,0.005664,0.004832,0.00608,0.006144,0.048416,0.004864
+644,1088.2,0.918945,0.315648,0.005376,0.226272,0.006176,0.005952,0.005696,0.006016,0.005888,0.048096,0.006176
+645,947.052,1.05591,0.565216,0.0048,0.47664,0.007776,0.005056,0.006144,0.005824,0.005728,0.04784,0.005408
+646,677.753,1.47546,0.319616,0.005056,0.22704,0.005632,0.004896,0.006144,0.00592,0.005696,0.053792,0.00544
+647,740.821,1.34985,0.333024,0.005408,0.238304,0.006048,0.005632,0.004832,0.006016,0.006144,0.055296,0.005344
+648,688.519,1.45239,0.56512,0.004704,0.475136,0.005824,0.005536,0.005024,0.006144,0.005952,0.051392,0.005408
+649,1256.83,0.795654,0.326272,0.004736,0.232448,0.005152,0.005984,0.00592,0.006336,0.005888,0.053216,0.006592
+650,1151.86,0.868164,0.35024,0.005408,0.256832,0.006112,0.005856,0.005696,0.004832,0.006144,0.053248,0.006112
+651,617.518,1.61938,0.517504,0.006592,0.423712,0.006112,0.005568,0.0048,0.006048,0.006176,0.05312,0.005376
+652,865.322,1.15564,0.3072,0.006144,0.212448,0.00576,0.005024,0.006144,0.006048,0.005568,0.05392,0.006144
+653,1485.4,0.673218,0.3008,0.005952,0.206624,0.0056,0.005056,0.006144,0.005728,0.005728,0.05408,0.005888
+654,1501.19,0.666138,0.301024,0.006144,0.206848,0.005632,0.004608,0.006176,0.005984,0.005696,0.053856,0.00608
+655,1385.19,0.721924,0.301056,0.006144,0.206624,0.0056,0.004896,0.006112,0.006144,0.005824,0.054848,0.004864
+656,1154.94,0.865845,0.299008,0.00592,0.204576,0.006464,0.005568,0.004832,0.007232,0.005024,0.053248,0.006144
+657,1207.01,0.828491,0.308384,0.005344,0.213792,0.006144,0.005728,0.005664,0.006688,0.00592,0.053696,0.005408
+658,1522.11,0.656982,0.306784,0.004672,0.21504,0.006112,0.005568,0.004832,0.006016,0.006144,0.052928,0.005472
+659,696.362,1.43604,0.32336,0.007968,0.2296,0.00576,0.005536,0.005088,0.006144,0.00592,0.051424,0.00592
+660,1251.45,0.799072,0.290944,0.005344,0.200672,0.004992,0.006144,0.006016,0.0056,0.004768,0.052864,0.004544
+661,1380.05,0.724609,0.326944,0.006144,0.235072,0.0056,0.005088,0.006144,0.0056,0.00464,0.053248,0.005408
+662,1325.35,0.754517,0.301088,0.00544,0.208864,0.004864,0.006112,0.006144,0.006144,0.006144,0.052608,0.004768
+663,1412.66,0.707886,0.314016,0.004768,0.223232,0.0056,0.004672,0.006112,0.006144,0.006144,0.052256,0.005088
+664,1487.02,0.672485,0.47104,0.005824,0.378976,0.005632,0.004832,0.006144,0.005984,0.005728,0.051776,0.006144
+665,1095.63,0.91272,0.309472,0.005344,0.218112,0.00576,0.005568,0.005088,0.006112,0.005888,0.0528,0.0048
+666,1356.74,0.737061,0.305344,0.005536,0.213504,0.005696,0.004672,0.006112,0.006144,0.005632,0.053472,0.004576
+667,719.67,1.38953,0.490912,0.007488,0.395808,0.005632,0.004864,0.006176,0.006112,0.005824,0.053568,0.00544
+668,737.487,1.35596,0.398528,0.005504,0.301696,0.006144,0.00592,0.005664,0.00592,0.005056,0.057216,0.005408
+669,892.278,1.12073,0.37888,0.0056,0.282752,0.005728,0.004928,0.006176,0.005824,0.005696,0.057184,0.004992
+670,1241.59,0.80542,0.338144,0.005376,0.240576,0.005792,0.005536,0.005056,0.006144,0.006144,0.058528,0.004992
+671,852.357,1.17322,0.3584,0.005664,0.26176,0.00496,0.006144,0.005728,0.00576,0.004896,0.0584,0.005088
+672,678.37,1.47412,0.376832,0.0056,0.283168,0.006144,0.005568,0.004832,0.005984,0.006144,0.054624,0.004768
+673,739.884,1.35156,0.586016,0.026752,0.473248,0.006176,0.006048,0.005664,0.005728,0.005088,0.052416,0.004896
+674,1112.29,0.899048,0.332128,0.005344,0.242624,0.006144,0.005888,0.005664,0.004832,0.006176,0.05088,0.004576
+675,1298.87,0.769897,0.304896,0.005536,0.2136,0.006144,0.005856,0.00592,0.005792,0.00496,0.0512,0.005888
+676,1220.32,0.819458,0.303104,0.005984,0.214304,0.004992,0.006144,0.005696,0.005728,0.00496,0.050848,0.004448
+677,1487.02,0.672485,0.301088,0.005568,0.209472,0.006144,0.005664,0.005632,0.007104,0.005536,0.051296,0.004672
+678,1089.65,0.917725,0.325824,0.005024,0.235552,0.005984,0.005536,0.004832,0.006144,0.006144,0.0512,0.005408
+679,1021.19,0.979248,0.3288,0.004992,0.237568,0.006144,0.005984,0.005664,0.006368,0.005696,0.051808,0.004576
+680,416.154,2.40295,0.335008,0.005568,0.244,0.005664,0.004864,0.006144,0.005856,0.005696,0.051904,0.005312
+681,956.786,1.04517,0.412576,0.007072,0.319392,0.005568,0.004768,0.006176,0.006112,0.005952,0.051392,0.006144
+682,1038.14,0.963257,0.346112,0.00592,0.251456,0.004768,0.006144,0.006016,0.00576,0.005728,0.054176,0.006144
+683,1026.82,0.973877,0.602976,0.00512,0.507904,0.006144,0.006112,0.005664,0.00576,0.005024,0.055264,0.005984
+684,1057.44,0.945679,0.303776,0.004768,0.209952,0.00512,0.006048,0.005664,0.00576,0.006592,0.054752,0.00512
+685,697.251,1.4342,0.375264,0.004608,0.266112,0.01856,0.006176,0.006112,0.005856,0.0064,0.055328,0.006112
+686,1235.78,0.809204,0.319488,0.008096,0.223328,0.006176,0.006112,0.005856,0.005984,0.00592,0.053248,0.004768
+687,1317.47,0.759033,0.312896,0.005344,0.220064,0.006112,0.005696,0.005664,0.005056,0.006144,0.053248,0.005568
+688,1044.5,0.957397,0.32768,0.006144,0.233472,0.006144,0.005728,0.005664,0.005088,0.006048,0.05472,0.004672
+689,1317.04,0.759277,0.296992,0.005984,0.206976,0.005568,0.004704,0.006176,0.006112,0.005536,0.051008,0.004928
+690,1396.28,0.716187,0.29344,0.00464,0.2048,0.0056,0.004672,0.006112,0.006144,0.005632,0.051264,0.004576
+691,1348.26,0.741699,0.470464,0.005952,0.37856,0.005664,0.005088,0.005984,0.005728,0.005696,0.052224,0.005568
+692,1033.3,0.967773,0.303168,0.005888,0.2112,0.005664,0.004576,0.006144,0.006144,0.005664,0.053344,0.004544
+693,1428.92,0.699829,0.321376,0.006144,0.227328,0.005696,0.004544,0.006144,0.006144,0.006144,0.053248,0.005984
+694,747.923,1.33704,0.31248,0.008128,0.219232,0.005984,0.005536,0.004832,0.006144,0.006144,0.051072,0.005408
+695,1534.08,0.651855,0.304192,0.006144,0.210944,0.005696,0.00592,0.004928,0.005984,0.006144,0.05312,0.005312
+696,1301.97,0.768066,0.294144,0.005504,0.202816,0.004832,0.005984,0.005824,0.00576,0.0048,0.053248,0.005376
+697,1443.52,0.692749,0.296832,0.006112,0.20384,0.00512,0.006048,0.005664,0.005728,0.005056,0.053248,0.006016
+698,1411.93,0.708252,0.303104,0.005888,0.209056,0.005632,0.004704,0.006176,0.007264,0.005024,0.054464,0.004896
+699,1284.01,0.778809,0.29696,0.005824,0.203072,0.006144,0.005728,0.0056,0.00512,0.00608,0.0544,0.004992
+700,1171.62,0.853516,0.299008,0.006144,0.202784,0.005824,0.005568,0.00496,0.00736,0.004928,0.05648,0.00496
+701,979.084,1.02136,0.321952,0.004672,0.2304,0.005152,0.006016,0.005664,0.005952,0.006048,0.052096,0.005952
+702,1074.64,0.930542,0.493568,0.008096,0.397344,0.0056,0.006112,0.0048,0.00608,0.006144,0.054624,0.004768
+703,1116.68,0.895508,0.303104,0.005376,0.209664,0.006144,0.005728,0.005664,0.005024,0.006112,0.054592,0.0048
+704,1462.07,0.68396,0.29936,0.00448,0.206112,0.004832,0.006112,0.005792,0.005824,0.004768,0.05712,0.00432
+705,1496.26,0.668335,0.299456,0.00464,0.2048,0.006144,0.0056,0.005664,0.00512,0.006144,0.055296,0.006048
+706,1320.65,0.757202,0.303328,0.004608,0.208576,0.005664,0.006368,0.004832,0.005984,0.006144,0.055296,0.005856
+707,1514.51,0.660278,0.292672,0.005696,0.199104,0.005856,0.005568,0.00496,0.006144,0.00608,0.053312,0.005952
+708,1304.04,0.766846,0.469248,0.00512,0.378464,0.005632,0.005024,0.006144,0.005824,0.005728,0.051936,0.005376
+709,1191.22,0.839478,0.3,0.005088,0.208896,0.006016,0.005568,0.004832,0.006112,0.005984,0.05136,0.006144
+710,1417.55,0.705444,0.31952,0.005376,0.228128,0.006016,0.005568,0.004832,0.006112,0.006144,0.052576,0.004768
+711,940.744,1.06299,0.559136,0.005344,0.417984,0.006944,0.005984,0.006112,0.014368,0.028672,0.069024,0.004704
+712,1110.63,0.900391,0.305152,0.005568,0.215008,0.004864,0.005984,0.006048,0.00576,0.005728,0.051744,0.004448
+713,1330.3,0.751709,0.302176,0.005088,0.210272,0.004768,0.006144,0.00592,0.005696,0.004768,0.054944,0.004576
+714,1465.47,0.682373,0.298272,0.004416,0.206816,0.006144,0.0056,0.005984,0.00608,0.005984,0.051904,0.005344
+715,1297.23,0.770874,0.31536,0.005632,0.223744,0.006144,0.005856,0.005632,0.004896,0.006176,0.051168,0.006112
+716,1217.24,0.821533,0.308096,0.00496,0.217088,0.005664,0.004576,0.006144,0.006144,0.005856,0.05296,0.004704
+717,1075.63,0.929688,0.309248,0.00608,0.214368,0.004832,0.006144,0.005856,0.005952,0.006656,0.054752,0.004608
+718,1489.73,0.671265,0.303136,0.005984,0.21008,0.005152,0.006112,0.005696,0.006016,0.00592,0.053024,0.005152
+719,1242.15,0.805054,0.532768,0.004512,0.441376,0.007136,0.006144,0.005728,0.005824,0.004832,0.0512,0.006016
+720,917.049,1.09045,0.303584,0.00496,0.210944,0.006176,0.005536,0.004832,0.005984,0.006144,0.053248,0.00576
+721,1346.93,0.742432,0.2968,0.006144,0.202752,0.006016,0.005312,0.005056,0.006016,0.00576,0.05376,0.005984
+722,1432.17,0.698242,0.291136,0.004416,0.202752,0.006144,0.005824,0.005696,0.004864,0.006144,0.050624,0.004672
+723,1336.6,0.748169,0.292352,0.005376,0.200992,0.004736,0.006144,0.006144,0.00592,0.005728,0.05184,0.005472
+724,1407.56,0.710449,0.288864,0.005408,0.19744,0.006144,0.0056,0.004672,0.006112,0.006144,0.0512,0.006144
+725,1544.79,0.647339,0.319424,0.0048,0.226784,0.0064,0.005504,0.005024,0.005312,0.004928,0.055296,0.005376
+726,1143.34,0.874634,0.288768,0.005536,0.199104,0.0056,0.0048,0.006144,0.006112,0.0056,0.050944,0.004928
+727,1086.18,0.920654,0.299008,0.00608,0.204864,0.005888,0.0056,0.004896,0.006144,0.00592,0.053472,0.006144
+728,1073.09,0.931885,0.574272,0.004928,0.482624,0.006912,0.00608,0.006016,0.00576,0.005728,0.05008,0.006144
+729,1247.45,0.801636,0.311552,0.004448,0.219136,0.006144,0.00592,0.005696,0.004768,0.006144,0.053248,0.006048
+730,1420,0.704224,0.301056,0.005632,0.21072,0.006368,0.004608,0.006144,0.006144,0.00592,0.05072,0.0048
+731,1148.14,0.870972,0.29872,0.00608,0.208032,0.005024,0.006144,0.006144,0.005824,0.005728,0.049888,0.005856
+732,1275.62,0.783936,0.305152,0.006144,0.212992,0.005952,0.0056,0.004832,0.006144,0.005984,0.05136,0.006144
+733,1210.58,0.82605,0.331776,0.006112,0.23728,0.005568,0.004992,0.006144,0.005792,0.005824,0.05392,0.006144
+734,1283.21,0.779297,0.311296,0.005824,0.217408,0.006176,0.005568,0.0048,0.007168,0.006112,0.05328,0.00496
+735,1186.21,0.843018,0.302592,0.006144,0.209984,0.005056,0.006144,0.005792,0.006016,0.00576,0.052064,0.005632
+736,1217.78,0.821167,0.29584,0.005024,0.204288,0.004864,0.005888,0.006144,0.005728,0.006336,0.052672,0.004896
+737,870.656,1.14856,0.309248,0.00816,0.214912,0.005696,0.004832,0.006016,0.006144,0.006144,0.05232,0.005024
+738,1530.64,0.65332,0.295104,0.005376,0.201664,0.006144,0.005728,0.00656,0.006048,0.005728,0.052896,0.00496
+739,1289.67,0.775391,0.287488,0.004864,0.196608,0.006176,0.006048,0.005504,0.004832,0.006144,0.052736,0.004576
+740,1671.15,0.598389,0.29088,0.005088,0.197824,0.00496,0.006112,0.006176,0.006112,0.005728,0.053504,0.005376
+741,1358.99,0.73584,0.296896,0.005728,0.202336,0.004928,0.007264,0.005024,0.006144,0.006048,0.053344,0.00608
+742,1537.25,0.650513,0.29264,0.004704,0.202656,0.0056,0.005824,0.005088,0.006112,0.005856,0.051072,0.005728
+743,1218.5,0.820679,0.288416,0.005536,0.19648,0.004864,0.006112,0.005856,0.006432,0.00592,0.051424,0.005792
+744,807.094,1.23901,0.298272,0.006144,0.2048,0.006144,0.005984,0.005664,0.004768,0.006112,0.050784,0.007872
+745,1013.23,0.986938,0.546048,0.005376,0.417984,0.042944,0.004864,0.006144,0.005984,0.005792,0.051616,0.005344
+746,1017.26,0.983032,0.323168,0.005504,0.23136,0.004864,0.00608,0.005632,0.006016,0.00608,0.051904,0.005728
+747,1290.28,0.775024,0.329216,0.005568,0.237568,0.004864,0.005984,0.00608,0.005824,0.00576,0.051936,0.005632
+748,1196.26,0.835938,0.29696,0.006144,0.2048,0.005856,0.005952,0.005664,0.005056,0.006144,0.052352,0.004992
+749,1488.1,0.671997,0.293376,0.004608,0.200736,0.006112,0.005728,0.005632,0.006144,0.005024,0.053248,0.006144
+750,1532.36,0.652588,0.299552,0.004864,0.206272,0.004832,0.005984,0.006176,0.006112,0.006144,0.053248,0.00592
+751,1099.01,0.909912,0.307424,0.00448,0.21664,0.005696,0.00496,0.006144,0.005856,0.005664,0.051968,0.006016
+752,1672.18,0.598022,0.298272,0.005824,0.20512,0.005888,0.005536,0.00496,0.006144,0.006144,0.053248,0.005408
+753,1330.73,0.751465,0.3072,0.006016,0.211072,0.006144,0.005952,0.005664,0.005824,0.005088,0.056512,0.004928
+754,729.605,1.37061,0.315488,0.00672,0.218752,0.005664,0.004928,0.006144,0.00592,0.006368,0.055296,0.005696
+755,1452.22,0.688599,0.303136,0.006144,0.210048,0.004992,0.006144,0.005664,0.005728,0.004992,0.054496,0.004928
+756,1292.93,0.773438,0.293472,0.004704,0.198656,0.005952,0.005568,0.00592,0.005088,0.006144,0.055328,0.006112
+757,1582.38,0.631958,0.290176,0.005728,0.197056,0.005728,0.005536,0.005088,0.006144,0.005824,0.053568,0.005504
+758,1331.6,0.750977,0.2896,0.004768,0.196608,0.006144,0.006048,0.00624,0.006048,0.005728,0.05344,0.004576
+759,1555.64,0.642822,0.500192,0.004736,0.407328,0.005696,0.004768,0.006144,0.006048,0.00592,0.053568,0.005984
+760,1111.83,0.899414,0.284672,0.005472,0.193184,0.005888,0.005472,0.005056,0.006112,0.006144,0.0512,0.006144
+761,1020.05,0.980347,0.298688,0.005344,0.207136,0.0048,0.006112,0.006144,0.006144,0.005696,0.051648,0.005664
+762,878.122,1.13879,0.511808,0.024576,0.39936,0.006144,0.005792,0.005632,0.00496,0.006144,0.053248,0.005952
+763,1255.67,0.796387,0.301056,0.005408,0.207584,0.006176,0.005696,0.005632,0.005024,0.006144,0.054848,0.004544
+764,1405.15,0.71167,0.295328,0.004672,0.202368,0.006048,0.005728,0.004992,0.006144,0.005984,0.053408,0.005984
+765,1324.49,0.755005,0.311296,0.005952,0.215232,0.006144,0.005888,0.005632,0.005952,0.005088,0.056672,0.004736
+766,1462.33,0.683838,0.297984,0.005024,0.20176,0.005088,0.006048,0.005632,0.005824,0.005024,0.059008,0.004576
+767,1401.54,0.713501,0.296192,0.005952,0.194752,0.00608,0.005536,0.0048,0.006112,0.006144,0.061376,0.00544
+768,1271.65,0.786377,0.29696,0.006144,0.197856,0.004896,0.006048,0.00592,0.00576,0.0048,0.059392,0.006144
+769,1204,0.830566,0.301056,0.005504,0.199328,0.006112,0.005792,0.005664,0.004928,0.006144,0.06144,0.006144
+770,1485.13,0.67334,0.291424,0.004704,0.19664,0.005984,0.005408,0.00496,0.00736,0.004928,0.056672,0.004768
+771,744.118,1.34387,0.303712,0.006784,0.204096,0.004864,0.006048,0.006016,0.006272,0.006144,0.057344,0.006144
+772,1572.36,0.635986,0.295552,0.004736,0.200416,0.0056,0.004928,0.006144,0.006112,0.00592,0.05696,0.004736
+773,1361.48,0.734497,0.28656,0.004768,0.19456,0.005728,0.005568,0.005088,0.006112,0.005664,0.05376,0.005312
+774,1506.44,0.663818,0.290848,0.00592,0.196832,0.005984,0.005376,0.006368,0.0048,0.006144,0.054848,0.004576
+775,1335.29,0.748901,0.289568,0.005024,0.195904,0.004832,0.006112,0.005888,0.005984,0.005984,0.053824,0.006016
+776,1580.25,0.632812,0.296128,0.00592,0.202976,0.005568,0.004672,0.006144,0.006112,0.00576,0.053312,0.005664
+777,1152.5,0.867676,0.290912,0.005728,0.194976,0.006112,0.005568,0.004832,0.006016,0.006144,0.056992,0.004544
+778,1090.38,0.917114,0.313344,0.005504,0.214976,0.004864,0.00608,0.00592,0.005792,0.00576,0.059744,0.004704
+779,1376.11,0.726685,0.325632,0.005792,0.23168,0.00592,0.006112,0.005664,0.004928,0.006144,0.053248,0.006144
+780,709.571,1.4093,0.31488,0.006656,0.219136,0.005696,0.00464,0.006048,0.006144,0.005824,0.055424,0.005312
+781,1489.18,0.671509,0.298208,0.005984,0.198816,0.005824,0.005664,0.004896,0.006176,0.006112,0.059392,0.005344
+782,1445.31,0.691895,0.302752,0.005344,0.205632,0.005984,0.00592,0.005792,0.004896,0.006112,0.057344,0.005728
+783,1241.96,0.805176,0.31376,0.004512,0.221184,0.00592,0.005536,0.00496,0.006112,0.005984,0.055008,0.004544
+784,1525.23,0.65564,0.302144,0.005504,0.207488,0.006144,0.005696,0.005696,0.006592,0.00576,0.053856,0.005408
+785,1169.12,0.855347,0.306016,0.004928,0.212992,0.005888,0.005696,0.004832,0.006112,0.006144,0.054656,0.004768
+786,1161.16,0.861206,0.297024,0.005376,0.201504,0.005728,0.005568,0.005088,0.006144,0.006144,0.056928,0.004544
+787,1492.17,0.670166,0.299584,0.005088,0.204,0.004896,0.006144,0.005888,0.005824,0.005888,0.056128,0.005728
+788,755.72,1.32324,0.300768,0.00752,0.202624,0.005024,0.006112,0.00576,0.005856,0.005888,0.056224,0.00576
+789,1457.91,0.685913,0.295488,0.00464,0.202784,0.006016,0.005536,0.004832,0.006112,0.00608,0.054912,0.004576
+790,1321.08,0.756958,0.294048,0.005344,0.199232,0.0056,0.004928,0.006176,0.006112,0.005536,0.055744,0.005376
+791,1525.23,0.65564,0.295008,0.005504,0.200704,0.004768,0.006112,0.00592,0.005792,0.005696,0.055968,0.004544
+792,1311.56,0.762451,0.293184,0.004768,0.196608,0.006176,0.00576,0.005664,0.004928,0.006144,0.057344,0.005792
+793,1475.24,0.677856,0.289376,0.004704,0.19408,0.004576,0.005792,0.00448,0.006112,0.005888,0.05936,0.004384
+794,1129,0.885742,0.294016,0.00576,0.196928,0.0056,0.006144,0.004704,0.006144,0.00576,0.0576,0.005376
+795,1409.74,0.709351,0.302816,0.0056,0.204928,0.005632,0.005024,0.006144,0.006144,0.006112,0.057376,0.005856
+796,1241.78,0.805298,0.553568,0.004704,0.455744,0.007104,0.006144,0.005696,0.005824,0.004864,0.057344,0.006144
+797,849.969,1.17651,0.344064,0.004512,0.247808,0.005856,0.005536,0.004992,0.006144,0.006144,0.057344,0.005728
+798,1376.11,0.726685,0.294816,0.00544,0.203328,0.0056,0.004768,0.006144,0.005952,0.005792,0.051744,0.006048
+799,1515.63,0.65979,0.30304,0.005056,0.208896,0.006176,0.005728,0.005728,0.004896,0.006144,0.05504,0.005376
+800,1316.62,0.759521,0.290816,0.005536,0.199072,0.0056,0.004832,0.006144,0.005984,0.005728,0.05344,0.00448
+801,1533.8,0.651978,0.291648,0.004928,0.201792,0.005056,0.00592,0.005664,0.004832,0.006112,0.05232,0.005024
+802,1379.12,0.725098,0.468928,0.005408,0.376832,0.004864,0.006112,0.00592,0.0056,0.004864,0.053248,0.00608
+803,1174.82,0.851196,0.291008,0.005344,0.195392,0.005696,0.004736,0.006112,0.005856,0.006336,0.055392,0.006144
+804,1026.44,0.974243,0.30432,0.005376,0.207488,0.005632,0.004896,0.006144,0.005952,0.006112,0.057408,0.005312
+805,936.871,1.06738,0.489504,0.00752,0.39392,0.006176,0.005824,0.005632,0.004896,0.006144,0.054592,0.0048
+806,1079.31,0.926514,0.295744,0.004928,0.202752,0.005696,0.004576,0.006112,0.006144,0.006144,0.053248,0.006144
+807,1509.21,0.662598,0.290848,0.004736,0.195712,0.004992,0.006144,0.006144,0.006144,0.005856,0.055584,0.005536
+808,1382.38,0.723389,0.292704,0.006048,0.195904,0.004896,0.006144,0.005792,0.0056,0.004992,0.057344,0.005984
+809,1595.64,0.626709,0.292256,0.0056,0.195104,0.006144,0.005504,0.004832,0.006048,0.006144,0.057344,0.005536
+810,1298.87,0.769897,0.290144,0.005472,0.193184,0.006144,0.005696,0.005664,0.005024,0.006144,0.057344,0.005472
+811,1322.14,0.756348,0.29168,0.00496,0.19456,0.006176,0.006112,0.006176,0.006048,0.005696,0.057376,0.004576
+812,1360.12,0.735229,0.290624,0.004512,0.19456,0.006144,0.006112,0.00608,0.005728,0.005952,0.056,0.005536
+813,1481.64,0.674927,0.301056,0.005824,0.20464,0.005952,0.004768,0.006144,0.006144,0.006144,0.056896,0.004544
+814,1235.22,0.80957,0.547872,0.005792,0.448864,0.008192,0.00608,0.005696,0.00576,0.005024,0.057152,0.005312
+815,902.899,1.10754,0.29264,0.004416,0.200736,0.006112,0.005568,0.004672,0.006144,0.00608,0.053312,0.0056
+816,1203.82,0.830688,0.29504,0.005056,0.200704,0.006144,0.005856,0.006368,0.005888,0.005824,0.053856,0.005344
+817,1749.68,0.571533,0.2936,0.0048,0.199872,0.004928,0.006144,0.005696,0.00576,0.004928,0.056672,0.0048
+818,1321.5,0.756714,0.291392,0.005056,0.19456,0.006144,0.006016,0.005664,0.005792,0.005056,0.057344,0.00576
+819,1586.98,0.630127,0.292992,0.005376,0.195456,0.006144,0.005824,0.005632,0.00496,0.006112,0.05904,0.004448
+820,1191.74,0.839111,0.29072,0.00496,0.19456,0.005696,0.005568,0.00512,0.006144,0.00576,0.057504,0.005408
+821,831.169,1.20312,0.299456,0.004544,0.203872,0.005024,0.006144,0.005664,0.005728,0.005024,0.057312,0.006144
+822,1491.35,0.670532,0.5408,0.005344,0.437152,0.014336,0.005792,0.005696,0.004896,0.006144,0.055296,0.006144
+823,863.406,1.1582,0.300512,0.00592,0.202976,0.006176,0.005568,0.006464,0.005792,0.005792,0.056224,0.0056
+824,1304.87,0.766357,0.296256,0.005152,0.198752,0.004992,0.006144,0.005728,0.006464,0.005728,0.057856,0.00544
+825,1429.67,0.699463,0.323584,0.006144,0.228608,0.004864,0.006144,0.005824,0.00576,0.004832,0.056576,0.004832
+826,1329.22,0.752319,0.296096,0.005728,0.199072,0.00592,0.0056,0.004864,0.006144,0.006048,0.057344,0.005376
+827,1597.19,0.626099,0.294944,0.005472,0.19712,0.005568,0.004832,0.006144,0.005792,0.005728,0.059744,0.004544
+828,1309.46,0.763672,0.475136,0.006144,0.378432,0.005632,0.005056,0.006144,0.006144,0.006144,0.056768,0.004672
+829,972.46,1.02832,0.304992,0.004832,0.208384,0.005632,0.00512,0.006048,0.005632,0.00624,0.05776,0.005344
+830,1473.38,0.678711,0.298464,0.005696,0.202848,0.00592,0.004672,0.006176,0.005952,0.005536,0.056064,0.0056
+831,657.675,1.52051,0.319488,0.008224,0.223232,0.006112,0.005824,0.005664,0.004928,0.006112,0.053248,0.006144
+832,1434.93,0.696899,0.295488,0.00464,0.20384,0.005056,0.006144,0.006176,0.006112,0.005824,0.053248,0.004448
+833,1570.85,0.636597,0.303008,0.005376,0.209888,0.006016,0.005472,0.004896,0.006144,0.005952,0.05344,0.005824
+834,1325.57,0.754395,0.292864,0.005536,0.196544,0.005792,0.00512,0.006144,0.006176,0.006112,0.056512,0.004928
+835,1556.82,0.642334,0.293248,0.004512,0.200352,0.005728,0.004864,0.006112,0.005888,0.005696,0.053952,0.006144
+836,1352.26,0.739502,0.290848,0.005728,0.195008,0.006112,0.00608,0.005696,0.005824,0.004928,0.05664,0.004832
+837,1128.37,0.88623,0.292896,0.0056,0.195104,0.00576,0.005536,0.006336,0.004928,0.006112,0.057344,0.006176
+838,1104.79,0.905151,0.311168,0.004736,0.212992,0.006144,0.005824,0.005632,0.006464,0.00592,0.05808,0.005376
+839,1303.01,0.767456,0.538208,0.00576,0.427808,0.021088,0.005728,0.005664,0.00512,0.006016,0.055296,0.005728
+840,942.91,1.06055,0.305152,0.005664,0.209376,0.00576,0.005568,0.006368,0.005856,0.00512,0.056512,0.004928
+841,1461.81,0.684082,0.292864,0.005472,0.196736,0.00464,0.006144,0.006048,0.00576,0.00576,0.057792,0.004512
+842,1514.79,0.660156,0.296224,0.005536,0.198912,0.0056,0.0064,0.004864,0.006016,0.006144,0.057344,0.005408
+843,1315.35,0.760254,0.301056,0.006144,0.204832,0.006112,0.006144,0.005984,0.005952,0.00592,0.055104,0.004864
+844,1524.94,0.655762,0.295584,0.005056,0.202016,0.004832,0.006144,0.005568,0.006048,0.005984,0.054112,0.005824
+845,1398.67,0.714966,0.475136,0.005888,0.379008,0.005664,0.004704,0.006144,0.006144,0.006016,0.056992,0.004576
+846,1128.84,0.885864,0.288736,0.004768,0.196608,0.005696,0.004576,0.006112,0.006144,0.005984,0.053408,0.00544
+847,1262.44,0.792114,0.299008,0.005504,0.207104,0.005632,0.004992,0.006144,0.00576,0.005504,0.053568,0.0048
+848,1438.45,0.69519,0.309088,0.004448,0.212992,0.006144,0.005568,0.004832,0.005984,0.006144,0.057344,0.005632
+849,1281.4,0.780396,0.540672,0.006144,0.431424,0.016544,0.004672,0.006112,0.006144,0.00592,0.057568,0.006144
+850,895.79,1.11633,0.304128,0.005088,0.208096,0.004896,0.006144,0.005792,0.005952,0.006688,0.056608,0.004864
+851,771.665,1.2959,0.310304,0.006144,0.21504,0.006144,0.005632,0.005664,0.006208,0.00512,0.054944,0.005408
+852,1325.57,0.754395,0.296992,0.00464,0.201728,0.00512,0.006048,0.00624,0.005856,0.005696,0.056032,0.005632
+853,1539.85,0.649414,0.473056,0.006144,0.378304,0.00608,0.004736,0.006144,0.006144,0.005792,0.0536,0.006112
+854,1079.6,0.92627,0.298304,0.00592,0.200864,0.005696,0.00464,0.006112,0.006144,0.006144,0.057344,0.00544
+855,1452.22,0.688599,0.302752,0.00448,0.206848,0.006144,0.0056,0.00624,0.005792,0.004928,0.05728,0.00544
+856,1453.51,0.687988,0.294592,0.004608,0.202112,0.004832,0.006048,0.005888,0.006016,0.005824,0.053952,0.005312
+857,660.912,1.51306,0.311136,0.006592,0.214944,0.005984,0.005664,0.005824,0.005056,0.006144,0.055296,0.005632
+858,1516.48,0.659424,0.293088,0.005376,0.195552,0.006112,0.005568,0.0048,0.006048,0.006144,0.058496,0.004992
+859,1482.45,0.674561,0.304864,0.005952,0.20624,0.004928,0.006112,0.005824,0.0064,0.00576,0.057792,0.005856
+860,1354.27,0.738403,0.294944,0.0056,0.20112,0.005632,0.004768,0.006112,0.006048,0.005792,0.053696,0.006176
+861,1471,0.67981,0.300224,0.005984,0.20496,0.006144,0.006144,0.006176,0.005952,0.005728,0.053792,0.005344
+862,1123.42,0.890137,0.300832,0.005536,0.205408,0.006144,0.005824,0.005728,0.005984,0.005088,0.0552,0.00592
+863,1284.01,0.778809,0.298336,0.005632,0.204736,0.004864,0.005952,0.00608,0.005856,0.005984,0.05376,0.005472
+864,1380.29,0.724487,0.3072,0.005344,0.213792,0.006176,0.006112,0.005952,0.0056,0.004832,0.054752,0.00464
+865,742.432,1.34692,0.313344,0.007456,0.217376,0.004768,0.00592,0.006048,0.00592,0.005824,0.054976,0.005056
+866,1469.15,0.680664,0.29808,0.005952,0.202944,0.006144,0.005888,0.005664,0.006112,0.004864,0.054624,0.005888
+867,1337.47,0.747681,0.305152,0.006144,0.210464,0.005696,0.005024,0.006144,0.006144,0.006144,0.053248,0.006144
+868,1206.12,0.829102,0.293632,0.004896,0.200704,0.006144,0.005728,0.005696,0.004992,0.006112,0.053248,0.006112
+869,1491.08,0.670654,0.301056,0.006144,0.2048,0.005696,0.004608,0.007808,0.005664,0.004896,0.056416,0.005024
+870,1600,0.625,0.473088,0.005504,0.378816,0.004832,0.006112,0.00592,0.006368,0.006144,0.054464,0.004928
+871,1147.98,0.871094,0.2928,0.006144,0.198656,0.006176,0.005952,0.005632,0.004768,0.006144,0.053248,0.00608
+872,1279.4,0.781616,0.290816,0.005632,0.19712,0.006048,0.005536,0.004832,0.006112,0.006144,0.054272,0.00512
+873,1558.6,0.641602,0.295168,0.004352,0.2048,0.00576,0.005568,0.005056,0.006144,0.006144,0.05136,0.005984
+874,717.778,1.39319,0.301344,0.006752,0.206848,0.005664,0.004576,0.006144,0.006144,0.006144,0.053248,0.005824
+875,1527.22,0.654785,0.294464,0.006144,0.202048,0.004864,0.00608,0.005888,0.00592,0.005952,0.051872,0.005696
+876,1359.89,0.735352,0.2888,0.005984,0.196032,0.004864,0.006112,0.005856,0.00576,0.00592,0.053536,0.004736
+877,1544.49,0.647461,0.29696,0.00592,0.200704,0.005632,0.004832,0.006144,0.006144,0.006048,0.056704,0.004832
+878,1365.11,0.732544,0.294912,0.00608,0.19872,0.006144,0.005792,0.005696,0.004928,0.006112,0.055296,0.006144
+879,1420.99,0.703735,0.473248,0.00576,0.378784,0.005696,0.005024,0.006144,0.005824,0.005728,0.055744,0.004544
+880,629.815,1.58777,0.296416,0.005344,0.201408,0.005696,0.004736,0.006144,0.00608,0.006176,0.055328,0.005504
+881,1371.28,0.729248,0.309248,0.004608,0.212992,0.006144,0.006016,0.005696,0.00576,0.005056,0.057376,0.0056
+882,694.002,1.44092,0.30848,0.007488,0.209728,0.00576,0.005568,0.005056,0.006144,0.006208,0.05712,0.005408
+883,1445.31,0.691895,0.297024,0.004544,0.202752,0.006176,0.005856,0.005888,0.005952,0.00592,0.054176,0.00576
+884,1345.38,0.743286,0.294848,0.004512,0.200736,0.00608,0.005568,0.004864,0.005984,0.006144,0.055296,0.005664
+885,1111.83,0.899414,0.336832,0.005056,0.221216,0.00592,0.005568,0.016448,0.006208,0.005824,0.064448,0.006144
+886,1524.38,0.656006,0.489472,0.00576,0.3936,0.006144,0.005696,0.005664,0.005024,0.006144,0.056768,0.004672
+887,914.286,1.09375,0.30032,0.006144,0.200032,0.004864,0.006048,0.005952,0.00576,0.006016,0.060096,0.005408
+888,1663.69,0.601074,0.301248,0.0056,0.203296,0.005888,0.005664,0.004864,0.007168,0.005184,0.05904,0.004544
+889,936.657,1.06763,0.514432,0.020864,0.399744,0.006144,0.005536,0.004832,0.006048,0.006112,0.059392,0.00576
+890,1184.84,0.843994,0.309248,0.006144,0.208896,0.006176,0.005664,0.005632,0.005056,0.006144,0.060576,0.00496
+891,1536.1,0.651001,0.29936,0.005088,0.200736,0.006048,0.00544,0.004896,0.006112,0.006144,0.059392,0.005504
+892,1335.51,0.748779,0.29744,0.004992,0.200704,0.00592,0.005568,0.004896,0.006144,0.006016,0.057472,0.005728
+893,1490.54,0.670898,0.302176,0.005984,0.202112,0.0064,0.00464,0.006144,0.006144,0.006144,0.059264,0.005344
+894,1331.82,0.750854,0.294912,0.005536,0.199264,0.006144,0.005856,0.005728,0.004896,0.006048,0.056864,0.004576
+895,1246.88,0.802002,0.299008,0.005376,0.19968,0.006112,0.006176,0.006112,0.006144,0.005856,0.057632,0.00592
+896,836.345,1.19568,0.309088,0.004864,0.210944,0.006144,0.00592,0.005632,0.004864,0.006112,0.059264,0.005344
+897,899.528,1.11169,0.581984,0.00448,0.477184,0.015904,0.004576,0.006144,0.006144,0.00608,0.05536,0.006112
+898,1487.29,0.672363,0.315392,0.005728,0.219584,0.006144,0.005984,0.005664,0.0064,0.00576,0.055392,0.004736
+899,1412.41,0.708008,0.309152,0.005632,0.211456,0.006144,0.005664,0.005632,0.00512,0.007392,0.056064,0.006048
+900,1461.55,0.684204,0.308128,0.004992,0.208896,0.006112,0.005664,0.006176,0.005824,0.004928,0.05936,0.006176
+901,1390.36,0.719238,0.305152,0.00592,0.205024,0.005984,0.005568,0.006368,0.006016,0.00592,0.059584,0.004768
+902,1387.3,0.720825,0.299008,0.006144,0.200384,0.005632,0.004928,0.006144,0.006144,0.00576,0.058752,0.00512
+903,1349.59,0.740967,0.517792,0.006144,0.417792,0.006144,0.006048,0.005664,0.005792,0.005024,0.059392,0.005792
+904,1112.44,0.898926,0.29856,0.00464,0.200704,0.005664,0.004608,0.006112,0.006144,0.005824,0.059456,0.005408
+905,1328.58,0.752686,0.304896,0.005664,0.207328,0.006144,0.006048,0.005632,0.005792,0.005056,0.057344,0.005888
+906,1036.04,0.96521,0.57344,0.005376,0.415872,0.006944,0.01552,0.05616,0.006144,0.006144,0.055328,0.005952
+907,1066.39,0.937744,0.307488,0.004864,0.202752,0.005888,0.005568,0.015168,0.006144,0.006144,0.055296,0.005664
+908,1241.02,0.805786,0.311296,0.016736,0.202784,0.0056,0.004832,0.005984,0.006144,0.00576,0.057728,0.005728
+909,1494.62,0.669067,0.299232,0.005376,0.201696,0.006144,0.005792,0.006208,0.005728,0.004832,0.0584,0.005056
+910,1337.47,0.747681,0.296544,0.005888,0.198336,0.005728,0.00512,0.006112,0.006144,0.00592,0.057568,0.005728
+911,1537.83,0.650269,0.294848,0.004576,0.198624,0.0056,0.004704,0.006112,0.005824,0.00576,0.058016,0.005632
+912,937.3,1.06689,0.335904,0.006144,0.230976,0.005632,0.006144,0.005056,0.006144,0.012288,0.058912,0.004608
+913,714.398,1.39978,0.377376,0.004672,0.253312,0.004832,0.022144,0.00608,0.00576,0.004864,0.058976,0.016736
+914,1457.13,0.686279,0.309632,0.00448,0.212992,0.006144,0.005984,0.005632,0.005792,0.00512,0.058816,0.004672
+915,1218.68,0.820557,0.547488,0.004768,0.41984,0.036864,0.005664,0.006048,0.005728,0.005088,0.0584,0.005088
+916,863.224,1.15845,0.317952,0.004608,0.220576,0.004864,0.005984,0.006048,0.005792,0.004544,0.060416,0.00512
+917,1316.83,0.759399,0.308128,0.005024,0.212864,0.0056,0.004768,0.006176,0.006112,0.00592,0.05552,0.006144
+918,1617.05,0.618408,0.3,0.005088,0.2048,0.006144,0.005664,0.005696,0.005088,0.00608,0.056672,0.004768
+919,1303.42,0.767212,0.298912,0.004832,0.202752,0.006144,0.005632,0.006464,0.00576,0.005728,0.055744,0.005856
+920,1339.88,0.746338,0.295296,0.00448,0.198656,0.006176,0.0056,0.0048,0.005952,0.006144,0.057344,0.006144
+921,1305.08,0.766235,0.304032,0.005056,0.2048,0.006016,0.005696,0.006336,0.005856,0.004768,0.059392,0.006112
+922,1340.31,0.746094,0.308224,0.00512,0.212288,0.004832,0.006112,0.005696,0.00576,0.004928,0.059264,0.004224
+923,760.631,1.3147,0.300832,0.008192,0.200736,0.00576,0.005568,0.005024,0.007232,0.005056,0.057344,0.00592
+924,1468.36,0.68103,0.293408,0.004928,0.196576,0.006176,0.005728,0.005664,0.004992,0.006144,0.057344,0.005856
+925,1237.65,0.807983,0.292864,0.005344,0.197408,0.005888,0.006112,0.005664,0.004864,0.006144,0.055328,0.006112
+926,1578.12,0.633667,0.298208,0.005376,0.203104,0.005632,0.005088,0.006144,0.00544,0.0048,0.057216,0.005408
+927,1421.24,0.703613,0.297024,0.005344,0.2016,0.005824,0.005536,0.004992,0.006144,0.005856,0.056672,0.005056
+928,1334.64,0.749268,0.515168,0.00592,0.418016,0.006144,0.006048,0.005632,0.00576,0.00512,0.057088,0.00544
+929,1001.96,0.998047,0.292928,0.006016,0.196736,0.006176,0.005696,0.005792,0.004864,0.006176,0.056896,0.004576
+930,1214.17,0.823608,0.315392,0.005792,0.219488,0.006016,0.005568,0.004832,0.006112,0.006144,0.055296,0.006144
+931,1252.79,0.798218,0.53984,0.005344,0.44112,0.008192,0.006144,0.005728,0.006208,0.005984,0.055776,0.005344
+932,787.162,1.27039,0.336288,0.004416,0.231424,0.006144,0.005792,0.005664,0.005088,0.016224,0.056992,0.004544
+933,1342.51,0.744873,0.32112,0.021632,0.209504,0.005632,0.004896,0.00576,0.00576,0.004864,0.057344,0.005728
+934,1346.48,0.742676,0.301056,0.006016,0.204224,0.004864,0.00608,0.005888,0.005824,0.005888,0.05616,0.006112
+935,1479.77,0.675781,0.30416,0.005792,0.208448,0.004896,0.006144,0.005888,0.0064,0.006016,0.055232,0.005344
+936,894.812,1.11755,0.773152,0.005504,0.67648,0.006144,0.005824,0.005664,0.005984,0.005088,0.057056,0.005408
+937,1038.14,0.963257,0.311648,0.004448,0.216352,0.004864,0.006112,0.005952,0.006336,0.006144,0.055296,0.006144
+938,1494.89,0.668945,0.29648,0.005376,0.201696,0.006144,0.005728,0.005632,0.005024,0.006144,0.055296,0.00544
+939,637.311,1.56909,0.33312,0.022432,0.221248,0.005696,0.004704,0.006112,0.006144,0.005952,0.055488,0.005344
+940,1685.25,0.593384,0.296832,0.005728,0.200192,0.005056,0.00608,0.005632,0.005888,0.004896,0.057344,0.006016
+941,1333.12,0.750122,0.292864,0.006144,0.196448,0.0056,0.0048,0.0072,0.005088,0.006144,0.056448,0.004992
+942,1529.5,0.653809,0.2992,0.004928,0.202784,0.006112,0.005696,0.005664,0.005056,0.006112,0.057344,0.005504
+943,1401.78,0.713379,0.295072,0.005952,0.1968,0.006048,0.0056,0.006368,0.005792,0.004896,0.059072,0.004544
+944,1297.02,0.770996,0.291552,0.004864,0.194144,0.005632,0.005024,0.006144,0.006144,0.006144,0.057376,0.00608
+945,1107.63,0.902832,0.303776,0.004768,0.196416,0.005792,0.005728,0.015296,0.007488,0.0048,0.058432,0.005056
+946,454.631,2.19958,0.352352,0.005376,0.252576,0.005664,0.0048,0.006112,0.00608,0.007584,0.059456,0.004704
+947,1062.93,0.940796,0.339104,0.008128,0.23968,0.005856,0.005728,0.004832,0.006112,0.006144,0.057088,0.005536
+948,1134,0.881836,0.312576,0.005984,0.216576,0.0048,0.006112,0.005824,0.005728,0.004864,0.057312,0.005376
+949,1484.6,0.673584,0.309312,0.005344,0.21344,0.005664,0.005056,0.006144,0.006144,0.006016,0.055424,0.00608
+950,1300.52,0.768921,0.305152,0.006144,0.208864,0.005728,0.006016,0.004832,0.007008,0.00512,0.056448,0.004992
+951,1371.05,0.72937,0.31904,0.005568,0.223232,0.004672,0.006048,0.005888,0.005824,0.0048,0.057312,0.005696
+952,684.378,1.46118,0.321792,0.00544,0.222144,0.005824,0.00608,0.005664,0.006528,0.00576,0.059424,0.004928
+953,1331.17,0.751221,0.343616,0.00592,0.241888,0.006144,0.005856,0.005696,0.006016,0.005056,0.061184,0.005856
+954,594.96,1.68079,0.395232,0.007776,0.29072,0.004608,0.006144,0.006144,0.00576,0.005728,0.06224,0.006112
+955,1410.71,0.708862,0.311424,0.00496,0.212896,0.0056,0.004832,0.006048,0.006144,0.006144,0.059392,0.005408
+956,1348.26,0.741699,0.31744,0.00544,0.219232,0.006336,0.005536,0.005152,0.006112,0.006144,0.058816,0.004672
+957,1323,0.755859,0.308608,0.005344,0.20992,0.006112,0.005888,0.005664,0.004864,0.006112,0.059328,0.005376
+958,1143.02,0.874878,0.524288,0.005568,0.42432,0.005696,0.004736,0.006144,0.006112,0.005792,0.059776,0.006144
+959,1101.82,0.907593,0.314336,0.005088,0.214048,0.005088,0.006112,0.005632,0.00576,0.005024,0.062752,0.004832
+960,1118.06,0.894409,0.31552,0.00448,0.21504,0.006144,0.005952,0.005792,0.005696,0.005088,0.061472,0.005856
+961,832.351,1.20142,0.55248,0.005792,0.423968,0.033088,0.006144,0.005856,0.00576,0.0048,0.061408,0.005664
+962,838.743,1.19226,0.321536,0.005952,0.222656,0.004896,0.006112,0.005824,0.005696,0.004896,0.05936,0.006144
+963,1285.22,0.778076,0.339872,0.004832,0.239616,0.00592,0.005568,0.004896,0.00768,0.005728,0.060256,0.005376
+964,1378.89,0.72522,0.309792,0.0048,0.210944,0.006144,0.005568,0.004672,0.006144,0.006144,0.059392,0.005984
+965,1197.49,0.835083,0.307168,0.004512,0.210944,0.00592,0.005568,0.004864,0.006144,0.005856,0.057632,0.005728
+966,1144.61,0.873657,0.30576,0.004704,0.20688,0.006112,0.00576,0.005568,0.00656,0.005824,0.059712,0.00464
+967,975.006,1.02563,0.305472,0.004384,0.206848,0.006144,0.005632,0.005696,0.005056,0.007264,0.058272,0.006176
+968,1036.44,0.964844,0.619168,0.004704,0.475136,0.05232,0.005024,0.006176,0.00592,0.006048,0.059264,0.004576
+969,905.894,1.10388,0.327392,0.004832,0.227328,0.006144,0.005888,0.005696,0.005984,0.005088,0.061088,0.005344
+970,1087.92,0.919189,0.309152,0.005888,0.21088,0.005632,0.004928,0.006112,0.005952,0.005792,0.057952,0.006016
+971,1243.1,0.804443,0.304768,0.005696,0.2032,0.006144,0.00576,0.004608,0.006016,0.006144,0.06144,0.00576
+972,1577.51,0.633911,0.304192,0.005664,0.204576,0.0048,0.006144,0.005664,0.005632,0.005088,0.061152,0.005472
+973,1221.77,0.818481,0.339136,0.005376,0.238336,0.006176,0.006112,0.006176,0.006112,0.006144,0.059328,0.005376
+974,1512,0.661377,0.300576,0.005376,0.197664,0.006112,0.005696,0.005696,0.004992,0.006144,0.063488,0.005408
+975,1349.81,0.740845,0.309408,0.005344,0.205728,0.00576,0.005536,0.00512,0.006144,0.005856,0.064928,0.004992
+976,1115.16,0.896729,0.299456,0.004544,0.200128,0.004672,0.006144,0.006112,0.005824,0.005568,0.06176,0.004704
+977,1405.15,0.71167,0.323488,0.005824,0.2232,0.0056,0.004992,0.006144,0.005856,0.005728,0.060096,0.006048
+978,1458.69,0.685547,0.301312,0.004512,0.201824,0.005056,0.006112,0.005664,0.005792,0.004928,0.06144,0.005984
+979,1373.34,0.728149,0.310112,0.00496,0.210944,0.006112,0.005536,0.004832,0.006048,0.006144,0.059392,0.006144
+980,1369.67,0.730103,0.293856,0.005088,0.19456,0.005984,0.005536,0.004896,0.006112,0.00592,0.060864,0.004896
+981,1486.75,0.672607,0.310848,0.004576,0.212992,0.005632,0.00464,0.006112,0.006144,0.005856,0.059584,0.005312
+982,1343.17,0.744507,0.296992,0.006144,0.19456,0.006144,0.005568,0.004832,0.005984,0.006144,0.062976,0.00464
+983,1594.39,0.627197,0.480224,0.005088,0.37792,0.005056,0.006144,0.005696,0.00576,0.004928,0.06464,0.004992
+984,581.323,1.72021,0.305152,0.00592,0.202976,0.006144,0.00592,0.0064,0.005984,0.005856,0.061344,0.004608
+985,1385.89,0.721558,0.557056,0.00608,0.415808,0.047104,0.005728,0.005664,0.006624,0.00592,0.059424,0.004704
+986,872.603,1.146,0.304928,0.006144,0.2048,0.005632,0.00464,0.006112,0.005984,0.005728,0.059968,0.00592
+987,1552.99,0.643921,0.303104,0.005952,0.202944,0.005632,0.006368,0.005696,0.004832,0.006144,0.060512,0.005024
+988,1127.91,0.886597,0.311296,0.005504,0.211616,0.00592,0.005568,0.004864,0.006144,0.006144,0.060608,0.004928
+989,1591.3,0.628418,0.303168,0.005408,0.20464,0.004992,0.006144,0.005792,0.00576,0.006016,0.05984,0.004576
+990,1396.05,0.716309,0.304992,0.004864,0.2048,0.006144,0.006016,0.006272,0.006016,0.005728,0.059776,0.005376
+991,1102.11,0.907349,0.31264,0.004416,0.21296,0.00592,0.005568,0.004896,0.006144,0.006144,0.061184,0.005408
+992,1320.65,0.757202,0.310496,0.006144,0.210944,0.006144,0.005984,0.006304,0.00592,0.005696,0.057984,0.005376
+993,1457.91,0.685913,0.300256,0.005376,0.201504,0.00576,0.005568,0.006336,0.004864,0.006144,0.059328,0.005376
+994,1223.97,0.817017,0.545152,0.004704,0.444416,0.007808,0.005536,0.005088,0.006144,0.005856,0.05968,0.00592
+995,899.429,1.11182,0.350208,0.006016,0.251232,0.004896,0.006144,0.005856,0.005504,0.005024,0.059392,0.006144
+996,1226.9,0.815063,0.341664,0.005408,0.23344,0.004992,0.006144,0.00576,0.012032,0.004768,0.063456,0.005664
+997,1276.01,0.783691,0.326016,0.004896,0.229376,0.006144,0.0056,0.0048,0.005984,0.006144,0.057344,0.005728
+998,1161.33,0.861084,0.298496,0.006144,0.199936,0.004864,0.006144,0.006144,0.006144,0.00592,0.057568,0.005632
+999,1137.94,0.878784,0.50384,0.005792,0.403808,0.00592,0.0056,0.004864,0.006144,0.006112,0.059424,0.006176
+1000,1038.41,0.963013,0.34016,0.005376,0.238528,0.006144,0.00608,0.005728,0.005984,0.005792,0.060384,0.006144
+1001,1352.26,0.739502,0.323008,0.005472,0.22496,0.005088,0.00608,0.005888,0.0056,0.00496,0.059392,0.005568
+1002,753.842,1.32654,0.311296,0.00816,0.210624,0.005632,0.00496,0.006144,0.005792,0.0056,0.05824,0.006144
+1003,1360.12,0.735229,0.298656,0.004736,0.202752,0.0056,0.004672,0.00608,0.005792,0.005696,0.057984,0.005344
+1004,1460.77,0.68457,0.327008,0.005824,0.22896,0.004864,0.006144,0.006112,0.00592,0.005728,0.057984,0.005472
+1005,938.696,1.06531,0.32768,0.005824,0.229696,0.006016,0.005696,0.005888,0.004928,0.006144,0.058848,0.00464
+1006,1214.89,0.82312,0.315328,0.006048,0.215136,0.006144,0.00592,0.005696,0.006176,0.00576,0.058368,0.00608
+1007,1113.19,0.898315,0.308288,0.005408,0.211296,0.0056,0.005024,0.00608,0.005568,0.004736,0.059232,0.005344
+1008,1160.67,0.861572,0.3328,0.006144,0.233472,0.00592,0.005536,0.004928,0.006144,0.006112,0.059232,0.005312
+1009,1277.8,0.782593,0.351808,0.005504,0.254592,0.005792,0.005696,0.004928,0.006144,0.006048,0.057408,0.005696
+1010,713.651,1.40125,0.317952,0.007008,0.218496,0.004768,0.006112,0.00592,0.005792,0.005696,0.058368,0.005792
+1011,1455.06,0.687256,0.314464,0.006144,0.216992,0.005664,0.004672,0.006176,0.006112,0.006144,0.05696,0.0056
+1012,1328.58,0.752686,0.314368,0.00512,0.202752,0.006144,0.005888,0.005632,0.006912,0.006144,0.056896,0.01888
+1013,1407.08,0.710693,0.319648,0.004256,0.223232,0.005952,0.005984,0.005728,0.004864,0.006144,0.058688,0.0048
+1014,863.771,1.15771,0.68608,0.00592,0.577248,0.005632,0.00512,0.006144,0.005696,0.00576,0.058176,0.016384
+1015,1000,1,0.333824,0.00544,0.221888,0.006144,0.00592,0.005728,0.004736,0.006144,0.059392,0.018432
+1016,1218.14,0.820923,0.311136,0.005856,0.210976,0.005696,0.004832,0.006112,0.006144,0.005504,0.060032,0.005984
+1017,1129.93,0.88501,0.55184,0.005024,0.429312,0.027264,0.005632,0.0048,0.00608,0.005984,0.062624,0.00512
+1018,930.169,1.07507,0.331264,0.006112,0.23248,0.00512,0.006112,0.005696,0.006016,0.00592,0.058176,0.005632
+1019,1523.81,0.65625,0.29904,0.005056,0.202752,0.005792,0.005504,0.005088,0.006144,0.005728,0.057568,0.005408
+1020,1308.84,0.764038,0.299008,0.005728,0.198944,0.005728,0.004672,0.007904,0.00576,0.005792,0.058336,0.006144
+1021,730.45,1.36902,0.300064,0.005088,0.200224,0.005632,0.005088,0.00608,0.00576,0.005696,0.061952,0.004544
+1022,855.74,1.16858,0.315328,0.005728,0.215456,0.006144,0.00592,0.005696,0.005952,0.004992,0.05936,0.00608
+1023,1291.1,0.774536,0.311296,0.006144,0.208832,0.005664,0.00464,0.006144,0.006144,0.006144,0.061472,0.006112
+1024,1088.2,0.918945,0.550912,0.005568,0.448192,0.00704,0.006144,0.005728,0.005856,0.004832,0.06256,0.004992
+1025,1008,0.992065,0.3464,0.005344,0.244768,0.006112,0.006144,0.00608,0.0056,0.004704,0.063072,0.004576
+1026,1456.36,0.686646,0.305696,0.00464,0.2048,0.006144,0.006144,0.005728,0.005792,0.004864,0.062752,0.004832
+1027,1430.17,0.699219,0.305696,0.004608,0.206464,0.005664,0.00496,0.007264,0.005024,0.006144,0.059392,0.006176
+1028,1395.81,0.716431,0.303136,0.006144,0.202368,0.0056,0.005024,0.007232,0.005056,0.006144,0.060864,0.004704
+1029,1333.12,0.750122,0.307744,0.004768,0.2048,0.005888,0.005632,0.004896,0.006112,0.006144,0.063488,0.006016
+1030,1343.17,0.744507,0.483328,0.006144,0.380512,0.005856,0.0048,0.006144,0.006144,0.00592,0.06288,0.004928
+1031,998.172,1.00183,0.31264,0.006144,0.210944,0.00592,0.0056,0.004896,0.006112,0.006048,0.061536,0.00544
+1032,1561.87,0.640259,0.30384,0.00512,0.198656,0.006144,0.005568,0.006304,0.00608,0.006208,0.063936,0.005824
+1033,729.67,1.37048,0.315392,0.007712,0.20528,0.006144,0.005728,0.005664,0.004992,0.006144,0.067584,0.006144
+1034,1519.29,0.658203,0.308096,0.004928,0.2048,0.006144,0.005856,0.005664,0.004864,0.006144,0.065152,0.004544
+1035,1357.19,0.736816,0.30192,0.00496,0.200704,0.006144,0.005568,0.004768,0.006048,0.006144,0.062496,0.005088
+1036,1515.91,0.659668,0.302144,0.006016,0.200832,0.00608,0.005312,0.005024,0.006048,0.00576,0.061696,0.005376
+1037,1407.56,0.710449,0.298592,0.005408,0.19664,0.0048,0.006144,0.00576,0.005792,0.004832,0.063488,0.005728
+1038,1387.3,0.720825,0.298944,0.004384,0.19856,0.0056,0.004768,0.006144,0.00608,0.005728,0.061888,0.005792
+1039,1105.23,0.904785,0.299808,0.005088,0.196608,0.006144,0.005952,0.0056,0.004832,0.006144,0.063488,0.005952
+1040,899.923,1.11121,0.313344,0.006144,0.210592,0.005856,0.004768,0.006112,0.006112,0.00592,0.063296,0.004544
+1041,1313.45,0.761353,0.550592,0.005376,0.426784,0.024576,0.006144,0.006048,0.00576,0.005696,0.064416,0.005792
+1042,849.881,1.17664,0.314976,0.005504,0.215232,0.005632,0.005056,0.007328,0.006272,0.005888,0.058336,0.005728
+1043,1545.37,0.647095,0.3024,0.005344,0.203552,0.006144,0.006016,0.00576,0.005952,0.005952,0.05824,0.00544
+1044,1324.92,0.754761,0.300704,0.005792,0.201056,0.005952,0.005568,0.004896,0.007616,0.006144,0.057888,0.005792
+1045,1567.25,0.638062,0.30464,0.004544,0.20272,0.006176,0.006112,0.005984,0.00576,0.00576,0.062208,0.005376
+1046,1393.2,0.717773,0.299008,0.005952,0.196832,0.006112,0.005696,0.005696,0.004992,0.006144,0.062464,0.00512
+1047,1230.21,0.812866,0.299904,0.004992,0.198656,0.005728,0.004544,0.006112,0.006144,0.005856,0.063104,0.004768
+1048,1174.14,0.851685,0.303104,0.006144,0.200448,0.005568,0.00496,0.006112,0.006144,0.005792,0.061792,0.006144
+1049,1671.84,0.598145,0.298816,0.006016,0.20016,0.004864,0.006048,0.006144,0.00592,0.0056,0.058112,0.005952
+1050,1305.91,0.765747,0.540672,0.00592,0.440544,0.008192,0.005888,0.005632,0.00592,0.005088,0.0584,0.005088
+1051,832.944,1.20056,0.29744,0.004576,0.2008,0.006048,0.006016,0.005664,0.004736,0.006112,0.058432,0.005056
+1052,1474.18,0.678345,0.29328,0.004512,0.198656,0.005696,0.004544,0.006048,0.005792,0.005728,0.057504,0.0048
+1053,1528.64,0.654175,0.298688,0.00592,0.200928,0.00576,0.005664,0.00496,0.006144,0.006144,0.057344,0.005824
+1054,1320.01,0.757568,0.300288,0.005952,0.200512,0.005664,0.00496,0.006144,0.006144,0.006144,0.059392,0.005376
+1055,1564.85,0.639038,0.297312,0.004448,0.200704,0.006048,0.005536,0.004832,0.006112,0.006144,0.058752,0.004736
+1056,1171.46,0.853638,0.296576,0.006144,0.196608,0.006112,0.005568,0.005984,0.006048,0.00512,0.059232,0.00576
+1057,874.56,1.14343,0.313056,0.005472,0.212896,0.004896,0.006112,0.005856,0.0056,0.004928,0.06144,0.005856
+1058,946.505,1.05652,0.550336,0.004544,0.450528,0.008192,0.00592,0.005568,0.004896,0.006144,0.059264,0.00528
+1059,1032.78,0.968262,0.300544,0.005664,0.203232,0.00608,0.005568,0.0048,0.00608,0.006048,0.05744,0.005632
+1060,1485.13,0.67334,0.298496,0.005408,0.200928,0.005696,0.005056,0.006144,0.006144,0.006144,0.057344,0.005632
+1061,1382.15,0.723511,0.301376,0.004416,0.205888,0.005024,0.006144,0.005728,0.005952,0.005888,0.05776,0.004576
+1062,1430.42,0.699097,0.303136,0.004992,0.204736,0.005632,0.004704,0.006112,0.006112,0.005728,0.05984,0.00528
+1063,1349.14,0.741211,0.296288,0.00592,0.196832,0.006144,0.005664,0.005728,0.004992,0.006144,0.059392,0.005472
+1064,1434.93,0.696899,0.477184,0.00608,0.378624,0.005728,0.004832,0.006144,0.00592,0.005824,0.0592,0.004832
+1065,1294.97,0.772217,0.294976,0.005344,0.200512,0.00512,0.006016,0.005536,0.004864,0.006112,0.05696,0.004512
+1066,1398.19,0.71521,0.295872,0.005056,0.200704,0.006144,0.005568,0.004832,0.005984,0.006112,0.056704,0.004768
+1067,1253.56,0.797729,0.546176,0.005376,0.447456,0.008192,0.005984,0.005632,0.005952,0.005088,0.057152,0.005344
+1068,916.741,1.09082,0.298752,0.005952,0.200896,0.006176,0.005856,0.005696,0.005856,0.005088,0.057344,0.005888
+1069,1343.17,0.744507,0.29696,0.005984,0.198048,0.004864,0.006144,0.005856,0.00592,0.005856,0.059168,0.00512
+1070,1516.76,0.659302,0.299264,0.004672,0.200704,0.00592,0.005568,0.0064,0.006208,0.00592,0.058048,0.005824
+1071,1368.98,0.730469,0.300704,0.00576,0.200896,0.006016,0.005792,0.004832,0.00608,0.006144,0.059392,0.005792
+1072,1493.26,0.669678,0.296128,0.006144,0.198656,0.00576,0.005536,0.005088,0.006144,0.005792,0.057664,0.005344
+1073,1345.6,0.743164,0.477344,0.00576,0.378496,0.004864,0.006144,0.006144,0.006144,0.005792,0.059424,0.004576
+1074,681.531,1.46729,0.299008,0.006144,0.198656,0.006144,0.006144,0.006144,0.006144,0.006144,0.058624,0.004864
+1075,1413.63,0.707397,0.54672,0.004608,0.434176,0.0216,0.005056,0.006144,0.005856,0.005856,0.057888,0.005536
+1076,856.456,1.1676,0.29696,0.006144,0.200704,0.006144,0.00592,0.005664,0.0048,0.006144,0.056928,0.004512
+1077,1424.45,0.702026,0.293984,0.005728,0.1968,0.005568,0.004896,0.006176,0.006112,0.00576,0.0576,0.005344
+1078,1534.08,0.651855,0.301504,0.00496,0.202752,0.006144,0.005664,0.005664,0.005056,0.006144,0.059392,0.005728
+1079,1311.77,0.762329,0.30512,0.004768,0.206432,0.0056,0.005056,0.005856,0.005792,0.004736,0.06144,0.00544
+1080,1535.23,0.651367,0.299296,0.004864,0.200128,0.004672,0.006144,0.00592,0.005824,0.005728,0.060352,0.005664
+1081,1355.39,0.737793,0.47632,0.005984,0.376768,0.005696,0.004768,0.006144,0.006144,0.006048,0.059392,0.005376
+1082,1193.82,0.837646,0.292256,0.005824,0.19488,0.00576,0.005568,0.005056,0.006144,0.005824,0.057664,0.005536
+1083,1306.96,0.765137,0.305696,0.00464,0.206848,0.00608,0.005664,0.004832,0.005952,0.006144,0.059392,0.006144
+1084,1196.09,0.83606,0.556064,0.005728,0.419264,0.03952,0.005568,0.005056,0.006144,0.006144,0.063264,0.005376
+1085,926.592,1.07922,0.303104,0.006144,0.198656,0.006144,0.005792,0.005952,0.005856,0.004928,0.06496,0.004672
+1086,1510.05,0.662231,0.305184,0.005824,0.201056,0.006048,0.006208,0.00592,0.00576,0.00576,0.063616,0.004992
+1087,1330.95,0.751343,0.304224,0.005504,0.197248,0.006016,0.005568,0.006304,0.005792,0.004992,0.067488,0.005312
+1088,1525.8,0.655396,0.298912,0.006144,0.195712,0.004992,0.006144,0.005664,0.005728,0.004992,0.063488,0.006048
+1089,1326.21,0.754028,0.297472,0.004608,0.196448,0.005632,0.004768,0.006144,0.005952,0.00576,0.06352,0.00464
+1090,1579.33,0.633179,0.479072,0.004576,0.376832,0.005888,0.005536,0.00496,0.006144,0.005952,0.06368,0.005504
+1091,933.242,1.07153,0.298624,0.005376,0.195328,0.00592,0.006048,0.005664,0.006944,0.005952,0.061632,0.00576
+1092,1622.18,0.616455,0.307232,0.006144,0.206848,0.006144,0.0056,0.0048,0.007616,0.005888,0.059488,0.004704
+1093,619.246,1.61487,0.310368,0.008224,0.207936,0.005024,0.006144,0.005696,0.006368,0.006368,0.059232,0.005376
+1094,1622.82,0.616211,0.299008,0.006144,0.20208,0.0048,0.006112,0.005952,0.005536,0.004896,0.05872,0.004768
+1095,1275.02,0.784302,0.299328,0.004384,0.204,0.004928,0.006112,0.005792,0.005888,0.005824,0.057696,0.004704
+1096,1646.96,0.607178,0.296192,0.006048,0.196704,0.005888,0.005376,0.00512,0.006144,0.005856,0.05968,0.005376
+1097,1323.85,0.755371,0.293568,0.004864,0.194592,0.005888,0.005536,0.004928,0.006144,0.005824,0.059712,0.00608
+1098,885.334,1.12952,0.348736,0.004768,0.237568,0.00528,0.00496,0.018432,0.006048,0.005696,0.059936,0.006048
+1099,1198.19,0.834595,0.309312,0.005728,0.208352,0.005056,0.006016,0.005664,0.005952,0.005952,0.062016,0.004576
+1100,1584.53,0.631104,0.301024,0.006144,0.197856,0.004896,0.006144,0.00608,0.00592,0.005728,0.062144,0.006112
+1101,758.8,1.31787,0.314688,0.007712,0.209376,0.005792,0.005568,0.006848,0.005824,0.00576,0.062368,0.00544
+1102,1432.17,0.698242,0.298784,0.006144,0.19616,0.005792,0.004896,0.006144,0.005888,0.005824,0.062016,0.00592
+1103,1522.39,0.65686,0.307424,0.006144,0.200704,0.006144,0.005824,0.006464,0.00608,0.005696,0.065792,0.004576
+1104,1333.12,0.750122,0.302336,0.005856,0.198208,0.004832,0.006144,0.006016,0.005952,0.006016,0.063424,0.005888
+1105,1480.04,0.675659,0.303712,0.004832,0.202752,0.005664,0.0056,0.005216,0.006048,0.006144,0.06144,0.006016
+1106,1307.79,0.764648,0.296512,0.004672,0.198592,0.0056,0.004736,0.006112,0.006144,0.006144,0.059168,0.005344
+1107,1292.73,0.77356,0.309248,0.006144,0.196512,0.005696,0.00464,0.0224,0.006272,0.006048,0.056704,0.004832
+1108,1312.82,0.761719,0.30368,0.00464,0.20656,0.005632,0.004928,0.006112,0.00592,0.005664,0.059488,0.004736
+1109,1454.03,0.687744,0.305504,0.004448,0.208448,0.0056,0.005088,0.006112,0.00576,0.0064,0.057504,0.006144
+1110,718.219,1.39233,0.305152,0.008192,0.204128,0.0048,0.006112,0.005792,0.006496,0.006144,0.05904,0.004448
+1111,1554.46,0.643311,0.300512,0.005472,0.200992,0.0056,0.005024,0.006112,0.00576,0.005696,0.060256,0.0056
+1112,1278.8,0.781982,0.295328,0.005376,0.197632,0.006144,0.005664,0.006016,0.004704,0.006144,0.059104,0.004544
+1113,1571.46,0.636353,0.296672,0.006112,0.198464,0.005632,0.004832,0.006176,0.005952,0.005952,0.057696,0.005856
+1114,1332.03,0.750732,0.298336,0.006144,0.199712,0.00512,0.006048,0.00544,0.005952,0.005056,0.059392,0.005472
+1115,1521.55,0.657227,0.325216,0.005536,0.227616,0.004416,0.007264,0.005024,0.006144,0.006112,0.057376,0.005728
+1116,1069.45,0.935059,0.290432,0.006144,0.194368,0.005664,0.004768,0.006144,0.005984,0.00592,0.05568,0.00576
+1117,1049.99,0.952393,0.305152,0.006144,0.208608,0.005664,0.004864,0.006144,0.00576,0.00576,0.057408,0.0048
+1118,1449.65,0.689819,0.622592,0.005888,0.480992,0.007808,0.00816,0.025536,0.022528,0.006016,0.060672,0.004992
+1119,811.169,1.23279,0.29696,0.0056,0.1992,0.005824,0.005568,0.004992,0.006144,0.006144,0.057344,0.006144
+1120,1490,0.671143,0.300768,0.004736,0.200704,0.005856,0.005504,0.00608,0.005088,0.006144,0.06128,0.005376
+1121,1380.52,0.724365,0.301472,0.0048,0.200704,0.00576,0.005568,0.006112,0.00512,0.006112,0.06144,0.005856
+1122,1312.82,0.761719,0.299008,0.006144,0.19664,0.00608,0.005568,0.004736,0.006112,0.006048,0.061536,0.006144
+1123,1522.11,0.656982,0.303104,0.005536,0.2024,0.005056,0.006144,0.005568,0.005824,0.005088,0.061344,0.006144
+1124,1163.14,0.859741,0.294912,0.006144,0.196576,0.005696,0.004608,0.006112,0.006144,0.006048,0.058592,0.004992
+1125,1171.46,0.853638,0.309664,0.004384,0.212864,0.005632,0.004832,0.006048,0.006144,0.005728,0.059456,0.004576
+1126,1590.06,0.628906,0.298368,0.005376,0.199648,0.006144,0.00576,0.005568,0.005088,0.006112,0.059392,0.00528
+1127,789.895,1.26599,0.304736,0.008192,0.202688,0.0056,0.004928,0.00592,0.006144,0.00592,0.059616,0.005728
+1128,1466.26,0.682007,0.299008,0.006144,0.200736,0.005824,0.005568,0.00496,0.006016,0.005792,0.059232,0.004736
+1129,1497.35,0.667847,0.29472,0.006144,0.198656,0.00592,0.00432,0.006112,0.00576,0.005696,0.05616,0.005952
+1130,1420,0.704224,0.297248,0.0048,0.200736,0.00608,0.005536,0.004736,0.006144,0.006144,0.057344,0.005728
+1131,1381.68,0.723755,0.292864,0.006048,0.194656,0.006176,0.005696,0.004512,0.006144,0.005952,0.057536,0.006144
+1132,1530.07,0.653564,0.292672,0.006048,0.194656,0.006112,0.00608,0.005568,0.004768,0.006144,0.057344,0.005952
+1133,952.005,1.05042,0.296768,0.004768,0.200512,0.005568,0.004864,0.006144,0.00592,0.005728,0.05792,0.005344
+1134,952.558,1.0498,0.296768,0.006144,0.199872,0.004928,0.006144,0.005824,0.005792,0.004768,0.057344,0.005952
+1135,1141.9,0.875732,0.497408,0.007584,0.393824,0.006176,0.005952,0.005664,0.005952,0.004928,0.061472,0.005856
+1136,1212.19,0.824951,0.301152,0.005344,0.201568,0.006144,0.005952,0.0056,0.006336,0.005792,0.059328,0.005088
+1137,1268.31,0.788452,0.301248,0.005376,0.2032,0.004832,0.00592,0.006144,0.006176,0.005952,0.058816,0.004832
+1138,1596.26,0.626465,0.298752,0.004544,0.200704,0.005632,0.004608,0.00736,0.004928,0.006176,0.05936,0.00544
+1139,1354.5,0.738281,0.296864,0.004352,0.198656,0.006144,0.005664,0.005664,0.005056,0.006144,0.059232,0.005952
+1140,1477.9,0.676636,0.292864,0.00544,0.196352,0.005056,0.006048,0.005632,0.00576,0.005088,0.058912,0.004576
+1141,1384.25,0.722412,0.475328,0.005344,0.37744,0.005664,0.00496,0.006144,0.006144,0.006176,0.058688,0.004768
+1142,1144.29,0.873901,0.293856,0.005056,0.19456,0.006144,0.005632,0.005664,0.005088,0.006144,0.0608,0.004768
+1143,1369.9,0.72998,0.297056,0.005888,0.198272,0.004832,0.006048,0.007168,0.00512,0.006176,0.058976,0.004576
+1144,1099.15,0.90979,0.497856,0.006624,0.39856,0.004896,0.006144,0.005792,0.005824,0.005888,0.058272,0.005856
+1145,1115.47,0.896484,0.292896,0.005664,0.192992,0.006144,0.005728,0.005632,0.005024,0.00608,0.061152,0.00448
+1146,1535.23,0.651367,0.298976,0.005664,0.197088,0.006144,0.005728,0.005568,0.005088,0.006144,0.06144,0.006112
+1147,1414.12,0.707153,0.295104,0.004384,0.19408,0.005632,0.005056,0.006144,0.005952,0.005888,0.061888,0.00608
+1148,1412.9,0.707764,0.293376,0.004896,0.193728,0.004928,0.006144,0.005568,0.00592,0.005088,0.061248,0.005856
+1149,1385.19,0.721924,0.294912,0.005344,0.192704,0.004736,0.006112,0.005984,0.005568,0.005952,0.063456,0.005056
+1150,1542.17,0.648438,0.484608,0.005248,0.383488,0.0056,0.005024,0.006176,0.005792,0.005696,0.062208,0.005376
+1151,1116.38,0.895752,0.297792,0.004928,0.195808,0.004896,0.006144,0.005728,0.005856,0.00592,0.062368,0.006144
+1152,1418.53,0.704956,0.29776,0.004896,0.194592,0.006048,0.005568,0.004736,0.006144,0.00608,0.063584,0.006112
+1153,1236.71,0.808594,0.29568,0.004864,0.193984,0.004832,0.005984,0.006016,0.005632,0.004768,0.064512,0.005088
+1154,769.852,1.29895,0.305088,0.00752,0.200544,0.004992,0.006112,0.00608,0.005824,0.005696,0.062272,0.006048
+1155,1466.79,0.681763,0.3072,0.005472,0.203424,0.006144,0.005888,0.005792,0.006496,0.006144,0.063136,0.004704
+1156,1186.56,0.842773,0.333856,0.005984,0.229536,0.006144,0.006016,0.005664,0.004704,0.006144,0.065184,0.00448
+1157,1658.3,0.603027,0.304544,0.005344,0.200576,0.006368,0.006112,0.004864,0.006112,0.006176,0.063456,0.005536
+1158,1378.66,0.725342,0.301056,0.0056,0.198432,0.004864,0.006144,0.005568,0.005824,0.004992,0.065088,0.004544
+1159,1218.68,0.820557,0.296864,0.005792,0.194112,0.004896,0.006112,0.005504,0.005952,0.00496,0.063488,0.006048
+1160,1434.93,0.696899,0.301472,0.004544,0.200224,0.0056,0.005088,0.00608,0.005824,0.00592,0.062048,0.006144
+1161,1122.35,0.890991,0.298784,0.006144,0.196128,0.004576,0.006144,0.00608,0.005792,0.00576,0.06224,0.00592
+1162,806.299,1.24023,0.305152,0.00784,0.199008,0.006144,0.005888,0.005632,0.00608,0.004928,0.065088,0.004544
+1163,1470.74,0.679932,0.301792,0.0048,0.198592,0.005632,0.006112,0.0048,0.007808,0.005536,0.064064,0.004448
+1164,1486.75,0.672607,0.294976,0.006144,0.19456,0.005664,0.004608,0.006112,0.006144,0.005792,0.061408,0.004544
+1165,1414.36,0.707031,0.29696,0.005568,0.195136,0.006144,0.005824,0.005568,0.004992,0.006144,0.061472,0.006112
+1166,1432.92,0.697876,0.290784,0.006144,0.192544,0.006112,0.005472,0.0048,0.006112,0.006144,0.057344,0.006112
+1167,1485.4,0.673218,0.29472,0.00592,0.192768,0.006144,0.005568,0.00464,0.006144,0.006144,0.06144,0.005952
+1168,1138.57,0.878296,0.298368,0.005376,0.197472,0.005664,0.004576,0.006144,0.006144,0.005824,0.06176,0.005408
+1169,1543.91,0.647705,0.296544,0.005376,0.195488,0.005728,0.005536,0.00512,0.006144,0.006144,0.06144,0.005568
+1170,1263.81,0.79126,0.54144,0.004832,0.439872,0.011712,0.00512,0.00592,0.005888,0.005632,0.057952,0.004512
+1171,893.543,1.11914,0.296448,0.004576,0.195648,0.005056,0.006144,0.0056,0.005984,0.00592,0.062144,0.005376
+1172,1327.5,0.753296,0.295296,0.00448,0.19456,0.006176,0.005888,0.005536,0.004928,0.006144,0.062912,0.004672
+1173,1563.96,0.639404,0.30208,0.005088,0.200704,0.005632,0.004608,0.006144,0.005888,0.005696,0.062144,0.006176
+1174,879.347,1.13721,0.31184,0.004448,0.21296,0.006144,0.006016,0.005568,0.006016,0.004928,0.061184,0.004576
+1175,1692.91,0.590698,0.302912,0.005344,0.203552,0.006144,0.006016,0.005632,0.005952,0.005984,0.058336,0.005952
+1176,1306.33,0.765503,0.48208,0.004896,0.385024,0.006144,0.005664,0.004672,0.006048,0.006176,0.058368,0.005088
+1177,1014.74,0.985474,0.322368,0.004928,0.224704,0.004864,0.005952,0.005952,0.006112,0.006368,0.05856,0.004928
+1178,1607.22,0.622192,0.30096,0.005408,0.199392,0.006112,0.006176,0.00576,0.005792,0.004864,0.061408,0.006048
+1179,602.309,1.66028,0.304928,0.008128,0.20192,0.004992,0.006144,0.006144,0.006144,0.006144,0.059392,0.00592
+1180,1267.33,0.789062,0.329728,0.005664,0.222688,0.00512,0.006048,0.005568,0.005792,0.00512,0.067584,0.006144
+1181,1477.9,0.676636,0.28832,0.00544,0.191168,0.006176,0.005472,0.004736,0.006144,0.00576,0.057728,0.005696
+1182,1548.58,0.645752,0.290816,0.005536,0.192768,0.005696,0.004896,0.006048,0.005792,0.005728,0.058208,0.006144
+1183,1179.04,0.848145,0.289504,0.004832,0.192512,0.005824,0.004416,0.006144,0.006144,0.005792,0.057696,0.006144
+1184,1448.12,0.690552,0.536608,0.006144,0.44032,0.006144,0.00592,0.005632,0.004832,0.006144,0.057088,0.004384
+1185,1120.81,0.892212,0.294912,0.006144,0.193728,0.00496,0.006112,0.006016,0.005856,0.005728,0.060224,0.006144
+1186,1362.61,0.733887,0.321376,0.005952,0.222464,0.005088,0.00608,0.005568,0.004704,0.006176,0.05936,0.005984
+1187,1061,0.942505,0.575488,0.00544,0.438208,0.04496,0.00496,0.006144,0.005856,0.005888,0.059424,0.004608
+1188,929.536,1.07581,0.315392,0.005728,0.199072,0.006144,0.005664,0.006496,0.005824,0.005888,0.074432,0.006144
+1189,1394.15,0.717285,0.295392,0.004576,0.196608,0.005792,0.005568,0.005056,0.006112,0.006144,0.059392,0.006144
+1190,1520.7,0.657593,0.300416,0.006144,0.197856,0.006912,0.005632,0.004832,0.005952,0.006144,0.06144,0.005504
+1191,644.076,1.55261,0.293984,0.004992,0.194496,0.005664,0.00464,0.006144,0.005984,0.005728,0.06176,0.004576
+1192,1062.24,0.941406,0.400832,0.005888,0.301056,0.005568,0.004928,0.006144,0.00576,0.005728,0.060192,0.005568
+1193,1433.42,0.697632,0.311712,0.004544,0.212384,0.006368,0.005824,0.004832,0.006112,0.006112,0.059424,0.006112
+1194,1529.79,0.653687,0.305152,0.0056,0.201248,0.006176,0.005632,0.006624,0.005984,0.005568,0.063776,0.004544
+1195,737.619,1.35571,0.309248,0.008192,0.202752,0.00576,0.005536,0.005088,0.006144,0.005984,0.064672,0.00512
+1196,1329.01,0.752441,0.299008,0.005952,0.195872,0.005024,0.006144,0.006016,0.005792,0.005696,0.064096,0.004416
+1197,1426.68,0.700928,0.295872,0.005056,0.194016,0.005696,0.005088,0.005888,0.00592,0.005824,0.063552,0.004832
+1198,1578.72,0.633423,0.300576,0.006048,0.19664,0.005568,0.004736,0.006144,0.006048,0.00576,0.063968,0.005664
+1199,1409.26,0.709595,0.297024,0.005376,0.195392,0.005792,0.0056,0.004992,0.006144,0.006144,0.06144,0.006144
+1200,1352.48,0.73938,0.294784,0.005824,0.192736,0.005856,0.00448,0.005312,0.004928,0.006144,0.063488,0.006016
+1201,1076.34,0.929077,0.294144,0.00576,0.192128,0.004864,0.006144,0.00576,0.00592,0.005792,0.0624,0.005376
+1202,1584.22,0.631226,0.301664,0.004672,0.200704,0.005856,0.005536,0.004992,0.006144,0.005824,0.06352,0.004416
+1203,1063.76,0.940063,0.497024,0.007456,0.39424,0.00592,0.0056,0.004864,0.006144,0.005824,0.061632,0.005344
+1204,1113.65,0.897949,0.29696,0.005856,0.194848,0.005952,0.0056,0.004832,0.006144,0.006144,0.06288,0.004704
+1205,1348.7,0.741455,0.295456,0.00464,0.19456,0.005728,0.005728,0.004928,0.006144,0.006048,0.061536,0.006144
+1206,1586.67,0.630249,0.300288,0.005728,0.198528,0.005984,0.0048,0.006144,0.005824,0.005696,0.062208,0.005376
+1207,1430.17,0.699219,0.295872,0.005024,0.195904,0.006016,0.004928,0.006144,0.005888,0.005728,0.061728,0.004512
+1208,1330.52,0.751587,0.296928,0.006144,0.195968,0.004832,0.006048,0.005888,0.005984,0.00592,0.060032,0.006112
+1209,1314.08,0.760986,0.302464,0.005472,0.199328,0.005728,0.004544,0.005856,0.0064,0.005952,0.06368,0.005504
+1210,1198.54,0.834351,0.295424,0.004608,0.194592,0.006112,0.005344,0.004896,0.006144,0.005824,0.063456,0.004448
+1211,947.709,1.05518,0.315264,0.004704,0.212576,0.005632,0.005024,0.006048,0.00576,0.005728,0.06368,0.006112
+1212,733.262,1.36377,0.314048,0.006752,0.212,0.005088,0.006112,0.005504,0.006432,0.005728,0.061888,0.004544
+1213,1492.17,0.670166,0.297344,0.00464,0.197856,0.004896,0.006144,0.005664,0.005824,0.004896,0.06144,0.005984
+1214,1594.39,0.627197,0.29696,0.00544,0.197312,0.006144,0.005952,0.005536,0.004896,0.006144,0.059392,0.006144
+1215,1338.78,0.746948,0.29696,0.005728,0.194912,0.005696,0.004608,0.006144,0.006144,0.005696,0.063328,0.004704
+1216,1511.16,0.661743,0.299712,0.00496,0.19664,0.006112,0.006144,0.005984,0.005952,0.00592,0.062016,0.005984
+1217,1313.45,0.761353,0.299008,0.005376,0.19712,0.005696,0.0048,0.006144,0.005984,0.005792,0.061984,0.006112
+1218,1294.36,0.772583,0.295104,0.005408,0.195488,0.005664,0.004608,0.006112,0.005952,0.005696,0.061312,0.004864
+1219,1405.15,0.71167,0.29696,0.005376,0.197376,0.006048,0.0056,0.004768,0.006112,0.006144,0.059392,0.006144
+1220,1384.49,0.72229,0.298336,0.005792,0.19696,0.00576,0.005536,0.005088,0.006144,0.005888,0.061696,0.005472
+1221,737.354,1.3562,0.301056,0.00768,0.199168,0.005792,0.005568,0.005024,0.006144,0.006112,0.059424,0.006144
+1222,1590.68,0.628662,0.302112,0.006144,0.199808,0.006272,0.004864,0.006144,0.005984,0.00576,0.061792,0.005344
+1223,1335.29,0.748901,0.298912,0.006144,0.19456,0.006144,0.005856,0.005536,0.005024,0.006112,0.063488,0.006048
+1224,1465.47,0.682373,0.299904,0.004992,0.196608,0.007648,0.00464,0.006144,0.006144,0.005728,0.06288,0.00512
+1225,1311.14,0.762695,0.296928,0.005408,0.195328,0.005664,0.004576,0.006144,0.005792,0.005952,0.062016,0.006048
+1226,1519.85,0.657959,0.297344,0.004416,0.1976,0.00512,0.006016,0.005408,0.004992,0.006112,0.063136,0.004544
+1227,991.768,1.0083,0.299392,0.00448,0.195744,0.00496,0.006144,0.006048,0.0056,0.00576,0.064512,0.006144
+1228,1591.3,0.628418,0.302496,0.005376,0.19648,0.005024,0.006112,0.005536,0.005824,0.006752,0.065888,0.005504
+1229,1382.62,0.723267,0.548512,0.005504,0.434816,0.014336,0.005952,0.005536,0.004928,0.006112,0.065536,0.005792
+1230,660.698,1.51355,0.354272,0.00448,0.247808,0.005984,0.00608,0.006368,0.006144,0.006144,0.065536,0.005728
+1231,1649.95,0.606079,0.307136,0.004992,0.201792,0.005088,0.006112,0.006112,0.005952,0.005952,0.065792,0.005344
+1232,1349.37,0.741089,0.300992,0.004864,0.200288,0.005664,0.004992,0.006144,0.00576,0.005728,0.06224,0.005312
+1233,1295.59,0.771851,0.303488,0.004992,0.196608,0.00592,0.005536,0.00608,0.006208,0.00496,0.067552,0.005632
+1234,1519.01,0.658325,0.3048,0.005984,0.198816,0.00608,0.005568,0.004736,0.006144,0.006144,0.065536,0.005792
+1235,1130.09,0.884888,0.298784,0.005856,0.196896,0.006048,0.005408,0.004928,0.006144,0.005984,0.0616,0.00592
+1236,1394.62,0.717041,0.303136,0.005536,0.197216,0.006144,0.005632,0.004608,0.006144,0.006144,0.066688,0.005024
+1237,1342.07,0.745117,0.299008,0.005856,0.196896,0.006048,0.0056,0.004832,0.006048,0.006144,0.06144,0.006144
+1238,687.883,1.45374,0.309728,0.006624,0.20672,0.005664,0.004704,0.006144,0.006112,0.005568,0.063072,0.00512
+1239,1586.06,0.630493,0.297152,0.006016,0.196,0.004864,0.006112,0.005664,0.005792,0.004928,0.063424,0.004352
+1240,1313.87,0.761108,0.294912,0.005728,0.194976,0.005696,0.0056,0.005088,0.006144,0.005856,0.061216,0.004608
+1241,1554.75,0.643188,0.296768,0.005952,0.19808,0.004864,0.006144,0.005696,0.005792,0.004896,0.059392,0.005952
+1242,1408.04,0.710205,0.292832,0.004352,0.195648,0.005056,0.006112,0.005632,0.005952,0.004832,0.059392,0.005856
+1243,1330.73,0.751465,0.294976,0.006144,0.192512,0.005888,0.006336,0.006208,0.006144,0.006176,0.061024,0.004544
+1244,1106.28,0.903931,0.294912,0.006016,0.194208,0.005632,0.005088,0.006016,0.005632,0.005792,0.062112,0.004416
+1245,1569.65,0.637085,0.301728,0.00512,0.201824,0.005024,0.006144,0.006144,0.005984,0.005856,0.05984,0.005792
+1246,1331.17,0.751221,0.542784,0.005376,0.437056,0.010368,0.006016,0.005952,0.005856,0.005952,0.061216,0.004992
+1247,813.425,1.22937,0.303072,0.005344,0.197056,0.005696,0.005056,0.006144,0.006144,0.006176,0.065504,0.005952
+1248,1446.84,0.691162,0.299712,0.0048,0.19456,0.006144,0.006144,0.006144,0.005984,0.00576,0.065248,0.004928
+1249,1534.94,0.651489,0.30176,0.004864,0.196608,0.006144,0.00576,0.005696,0.00512,0.005952,0.065536,0.00608
+1250,839.947,1.19055,0.307456,0.00448,0.210976,0.006016,0.0056,0.004736,0.006144,0.006144,0.057344,0.006016
+1251,1526.93,0.654907,0.317696,0.00576,0.21568,0.006144,0.005728,0.006528,0.005856,0.005696,0.061536,0.004768
+1252,925.545,1.08044,0.304992,0.006144,0.202784,0.005824,0.005568,0.00496,0.006144,0.006144,0.061472,0.005952
+1253,1150.4,0.869263,0.307904,0.0048,0.208448,0.005632,0.005056,0.006144,0.00592,0.005728,0.060032,0.006144
+1254,1526.93,0.654907,0.308544,0.006048,0.206208,0.004864,0.006112,0.0056,0.005792,0.004992,0.063488,0.00544
+1255,1403.22,0.712646,0.558496,0.006112,0.430112,0.028672,0.006144,0.005664,0.00576,0.00496,0.065216,0.005856
+1256,877.934,1.13904,0.303104,0.005696,0.200544,0.004832,0.006016,0.006144,0.005984,0.00576,0.063552,0.004576
+1257,1328.58,0.752686,0.297248,0.004416,0.197792,0.004928,0.006144,0.005696,0.004544,0.006144,0.06144,0.006144
+1258,1551.52,0.644531,0.30064,0.004416,0.199744,0.005024,0.005984,0.005568,0.005952,0.00512,0.063232,0.0056
+1259,1353.83,0.738647,0.298336,0.006016,0.194688,0.006144,0.005664,0.005664,0.005088,0.006112,0.063488,0.005472
+1260,1459.47,0.685181,0.48128,0.005888,0.377088,0.005824,0.005536,0.005024,0.006144,0.006176,0.064512,0.005088
+1261,1070.85,0.933838,0.296608,0.006144,0.193696,0.00496,0.006144,0.006144,0.005568,0.005728,0.062432,0.005792
+1262,1503.67,0.665039,0.305088,0.005984,0.198784,0.0056,0.004704,0.006112,0.006144,0.006048,0.065632,0.00608
+1263,1177.86,0.848999,0.551008,0.00448,0.428,0.026624,0.005728,0.005792,0.005888,0.006368,0.06224,0.005888
+1264,959.813,1.04187,0.301088,0.006144,0.199744,0.005056,0.006112,0.0056,0.005952,0.004896,0.06304,0.004544
+1265,1347.59,0.742065,0.295264,0.004448,0.19648,0.005696,0.005664,0.00512,0.00592,0.005824,0.061568,0.004544
+1266,1573.57,0.635498,0.296768,0.005376,0.195392,0.005632,0.004608,0.006144,0.006144,0.005952,0.061632,0.005888
+1267,1409.26,0.709595,0.296896,0.004512,0.196448,0.006304,0.006048,0.005632,0.005824,0.005024,0.06144,0.005664
+1268,1429.17,0.699707,0.299008,0.006112,0.196608,0.005856,0.004416,0.006144,0.006144,0.006016,0.062944,0.004768
+1269,1344.27,0.743896,0.482592,0.006144,0.37888,0.005632,0.004608,0.006176,0.006112,0.005824,0.063616,0.0056
+1270,923.667,1.08264,0.312064,0.004864,0.210688,0.005632,0.004864,0.006144,0.005856,0.005728,0.062144,0.006144
+1271,1444.03,0.692505,0.316608,0.00608,0.213056,0.006144,0.005696,0.005632,0.005056,0.006144,0.063456,0.005344
+1272,1342.73,0.744751,0.5632,0.005696,0.460928,0.007712,0.004928,0.006112,0.006144,0.005984,0.06096,0.004736
+1273,877.088,1.14014,0.309472,0.00464,0.20816,0.004832,0.006144,0.005824,0.00576,0.0048,0.063488,0.005824
+1274,1378.43,0.725464,0.300928,0.005408,0.199392,0.005792,0.005536,0.005056,0.006144,0.006144,0.06144,0.006016
+1275,1541.3,0.648804,0.303968,0.00496,0.202336,0.006368,0.005664,0.005824,0.005088,0.006144,0.06144,0.006144
+1276,1345.82,0.743042,0.29712,0.005376,0.195488,0.006144,0.005792,0.0056,0.00512,0.006016,0.062752,0.004832
+1277,1513.95,0.660522,0.299776,0.004864,0.196608,0.006112,0.00608,0.005632,0.005824,0.005024,0.064768,0.004864
+1278,1105.98,0.904175,0.297024,0.004672,0.195712,0.004992,0.006144,0.005728,0.0056,0.005056,0.063488,0.005632
+1279,1304.87,0.766357,0.303712,0.004576,0.204288,0.005664,0.005088,0.006144,0.005472,0.004768,0.063136,0.004576
+1280,1614.51,0.619385,0.29904,0.004448,0.197952,0.004832,0.006112,0.006016,0.005888,0.005952,0.062016,0.005824
+1281,743.376,1.34521,0.305152,0.007488,0.201408,0.006144,0.005664,0.005696,0.005024,0.006144,0.062976,0.004608
+1282,1354.72,0.738159,0.298336,0.005376,0.19536,0.006048,0.005536,0.005856,0.00512,0.006112,0.063488,0.00544
+1283,1561.27,0.640503,0.301056,0.005504,0.199104,0.005632,0.004832,0.006112,0.006112,0.005824,0.061824,0.006112
+1284,1412.41,0.708008,0.296896,0.005472,0.195104,0.005728,0.004768,0.006016,0.00608,0.005728,0.06192,0.00608
+1285,1427.18,0.700684,0.296288,0.006144,0.19568,0.005024,0.006144,0.005696,0.005792,0.004896,0.06144,0.005472
+1286,1301.35,0.768433,0.295712,0.004864,0.198496,0.005664,0.004768,0.006144,0.006112,0.006144,0.058976,0.004544
+1287,1136.52,0.879883,0.296672,0.006112,0.194592,0.005664,0.006624,0.005696,0.00576,0.004928,0.06144,0.005856
+1288,754.953,1.32458,0.311712,0.004544,0.212288,0.004832,0.00608,0.00576,0.005824,0.005856,0.060384,0.006144
+1289,892.666,1.12024,0.571232,0.005984,0.415904,0.059392,0.006144,0.005696,0.005792,0.004896,0.06144,0.005984
+1290,1204.35,0.830322,0.311392,0.005376,0.2096,0.005632,0.00608,0.004832,0.00768,0.006016,0.061632,0.004544
+1291,1322.57,0.756104,0.3072,0.005664,0.2064,0.005024,0.006144,0.006144,0.006144,0.006144,0.059392,0.006144
+1292,1192.95,0.838257,0.35376,0.005376,0.250816,0.00576,0.005536,0.00512,0.006112,0.006144,0.063488,0.005408
+1293,1276.01,0.783691,0.303872,0.00512,0.202784,0.005696,0.005568,0.005088,0.006144,0.006112,0.061472,0.005888
+1294,1215.25,0.822876,0.49504,0.00448,0.37888,0.006176,0.005408,0.004832,0.006112,0.006144,0.06144,0.021568
+1295,981.666,1.01868,0.311808,0.004608,0.19664,0.005824,0.005632,0.004896,0.022432,0.00592,0.061504,0.004352
+1296,1481.37,0.675049,0.312704,0.00592,0.20912,0.006144,0.006016,0.005632,0.004736,0.006144,0.063488,0.005504
+1297,743.713,1.3446,0.322496,0.00688,0.2048,0.006048,0.005568,0.0048,0.006112,0.006144,0.0776,0.004544
+1298,1380.98,0.724121,0.304096,0.005088,0.200736,0.00576,0.005568,0.005024,0.006144,0.006176,0.063456,0.006144
+1299,1416.81,0.705811,0.297056,0.005376,0.194912,0.0056,0.006592,0.004832,0.005984,0.006176,0.061408,0.006176
+1300,1434.17,0.697266,0.301056,0.005376,0.197248,0.0056,0.004768,0.007456,0.005984,0.004992,0.064672,0.00496
+1301,1420.25,0.704102,0.300864,0.00544,0.197216,0.005632,0.004704,0.006144,0.00608,0.005952,0.063744,0.005952
+1302,1345.38,0.743286,0.317888,0.004544,0.21504,0.006144,0.005728,0.005632,0.005024,0.006144,0.063488,0.006144
+1303,1037.75,0.963623,0.312512,0.005344,0.207776,0.006112,0.005856,0.005664,0.006496,0.005824,0.064096,0.005344
+1304,1154.13,0.866455,0.31744,0.005824,0.214752,0.004864,0.005984,0.006048,0.006208,0.005472,0.063328,0.00496
+1305,1554.16,0.643433,0.319488,0.005376,0.217856,0.006144,0.00576,0.005696,0.00496,0.006112,0.06144,0.006144
+1306,615.2,1.62549,0.337024,0.007104,0.233056,0.005696,0.00496,0.006144,0.00592,0.005728,0.06384,0.004576
+1307,1279,0.78186,0.309088,0.004928,0.208224,0.004832,0.00608,0.005888,0.005856,0.00464,0.063264,0.005376
+1308,1550.05,0.645142,0.301184,0.005344,0.201152,0.0056,0.00512,0.005728,0.005792,0.004864,0.06144,0.006144
+1309,1532.07,0.65271,0.303488,0.004576,0.199744,0.00496,0.006144,0.00608,0.005824,0.00576,0.064256,0.006144
+1310,1324.49,0.755005,0.306464,0.005376,0.201024,0.004832,0.00608,0.006144,0.006144,0.00608,0.065376,0.005408
+1311,1077.75,0.927856,0.299008,0.006144,0.196608,0.006016,0.005536,0.004864,0.006112,0.006144,0.06144,0.006144
+1312,1384.02,0.722534,0.301216,0.00544,0.201184,0.0056,0.005024,0.006144,0.005856,0.006432,0.060448,0.005088
+1313,1419.51,0.704468,0.548224,0.005984,0.434048,0.016672,0.005696,0.005664,0.005024,0.006176,0.063456,0.005504
+1314,841.5,1.18835,0.3032,0.005344,0.199584,0.005952,0.005568,0.005888,0.00512,0.007456,0.063424,0.004864
+1315,1473.65,0.678589,0.299008,0.005792,0.196064,0.004992,0.006144,0.00576,0.005984,0.005952,0.062176,0.006144
+1316,1334.42,0.74939,0.301056,0.005888,0.196864,0.005792,0.005952,0.00576,0.005024,0.006144,0.064512,0.00512
+1317,1480.3,0.675537,0.3072,0.005344,0.202912,0.004832,0.006048,0.006176,0.005984,0.00592,0.06544,0.004544
+1318,1406.83,0.710815,0.303104,0.005728,0.19648,0.004864,0.00592,0.00608,0.005728,0.005792,0.067744,0.004768
+1319,1375.42,0.727051,0.483328,0.005344,0.377632,0.005824,0.005568,0.005024,0.006112,0.006144,0.067232,0.004448
+1320,1110.78,0.900269,0.29904,0.006144,0.195776,0.004928,0.006144,0.005568,0.005792,0.005024,0.064544,0.00512
+1321,1434.42,0.697144,0.307232,0.006144,0.201888,0.00496,0.006144,0.005664,0.005952,0.005856,0.066208,0.004416
+1322,1223.42,0.817383,0.605088,0.004992,0.464896,0.04304,0.00592,0.005696,0.004832,0.006048,0.065056,0.004608
+1323,875.401,1.14233,0.30496,0.005344,0.202976,0.004768,0.006144,0.005984,0.005952,0.005824,0.062112,0.005856
+1324,1396.76,0.715942,0.298944,0.005856,0.196896,0.006048,0.005504,0.004832,0.006144,0.005888,0.061728,0.006048
+1325,1588.83,0.629395,0.297088,0.004544,0.198656,0.006112,0.00512,0.005152,0.006112,0.005888,0.059648,0.005856
+1326,1352.93,0.739136,0.292768,0.00576,0.194112,0.004928,0.006144,0.00576,0.006016,0.00592,0.05808,0.006048
+1327,1495.98,0.668457,0.299104,0.005344,0.195424,0.006048,0.005632,0.004832,0.006016,0.006144,0.063488,0.006176
+1328,1116.53,0.89563,0.481536,0.004448,0.378784,0.006144,0.006016,0.005632,0.005952,0.005088,0.064672,0.0048
+1329,1340.09,0.746216,0.3072,0.006112,0.200416,0.0056,0.006656,0.006208,0.006016,0.005824,0.06544,0.004928
+1330,1367.16,0.731445,0.303136,0.005536,0.19872,0.00464,0.006144,0.005952,0.00592,0.005952,0.064096,0.006176
+1331,678.314,1.47424,0.311296,0.008224,0.20272,0.006176,0.00592,0.005632,0.006144,0.005952,0.065632,0.004896
+1332,1434.17,0.697266,0.302112,0.006144,0.195936,0.004864,0.006048,0.005728,0.006016,0.005952,0.06608,0.005344
+1333,1563.36,0.639648,0.299712,0.0048,0.198208,0.005664,0.005024,0.006144,0.005856,0.005728,0.063168,0.00512
+1334,1421.98,0.703247,0.29632,0.006016,0.193888,0.004896,0.006112,0.005664,0.00576,0.004992,0.063488,0.005504
+1335,1416.57,0.705933,0.29808,0.006144,0.196,0.004736,0.006112,0.006144,0.005984,0.005952,0.0616,0.005408
+1336,1339.88,0.746338,0.299008,0.005728,0.196448,0.004864,0.005952,0.006144,0.00608,0.00576,0.061888,0.006144
+1337,1139.52,0.877563,0.29792,0.005056,0.196608,0.005952,0.005312,0.00512,0.006144,0.006048,0.062816,0.004864
+1338,1449.91,0.689697,0.298016,0.006144,0.19664,0.00576,0.005536,0.005056,0.006144,0.005952,0.061408,0.005376
+1339,1345.38,0.743286,0.542592,0.005824,0.438592,0.008192,0.006144,0.006144,0.006144,0.006112,0.059424,0.006016
+1340,836.772,1.19507,0.298592,0.004576,0.198656,0.006144,0.0056,0.005888,0.004896,0.006144,0.061344,0.005344
+1341,1583.61,0.63147,0.300544,0.005664,0.200352,0.00496,0.006112,0.005728,0.005856,0.00592,0.06032,0.005632
+1342,1281,0.78064,0.30128,0.005792,0.198944,0.005696,0.006112,0.004672,0.006112,0.006176,0.063232,0.004544
+1343,1559.49,0.641235,0.299328,0.004896,0.196608,0.006144,0.006112,0.005632,0.005856,0.004928,0.063488,0.005664
+1344,1318.53,0.758423,0.301056,0.00592,0.196832,0.006176,0.005824,0.006272,0.005824,0.005952,0.063488,0.004768
+1345,1428.67,0.699951,0.30352,0.004512,0.201824,0.005024,0.006144,0.005696,0.006144,0.004576,0.064608,0.004992
+1346,1143.34,0.874634,0.298272,0.006144,0.19664,0.006016,0.005568,0.004768,0.006144,0.006048,0.061536,0.005408
+1347,1372.65,0.728516,0.301088,0.005504,0.199296,0.006176,0.00576,0.005664,0.00496,0.006112,0.062656,0.00496
+1348,674.683,1.48218,0.546944,0.005376,0.418336,0.034464,0.004768,0.006144,0.006016,0.005792,0.061056,0.004992
+1349,1091.54,0.916138,0.303328,0.005344,0.203776,0.006144,0.005664,0.0048,0.00592,0.006144,0.060896,0.00464
+1350,1446.33,0.691406,0.299264,0.00448,0.196608,0.006144,0.005664,0.00592,0.006368,0.00576,0.062304,0.006016
+1351,1455.84,0.68689,0.297248,0.005024,0.196608,0.006144,0.006144,0.00592,0.00576,0.0064,0.059744,0.005504
+1352,1315.35,0.760254,0.301632,0.004672,0.200704,0.006176,0.005952,0.005536,0.004864,0.006144,0.06256,0.005024
+1353,1521.83,0.657104,0.300672,0.005856,0.1984,0.005728,0.005056,0.006176,0.006112,0.006144,0.06144,0.00576
+1354,1195.39,0.836548,0.306016,0.00496,0.204576,0.005664,0.004832,0.006112,0.006144,0.006144,0.062592,0.004992
+1355,1433.92,0.697388,0.298112,0.005568,0.196736,0.005632,0.005056,0.006016,0.005984,0.005952,0.061824,0.005344
+1356,1315.14,0.760376,0.294944,0.004608,0.196608,0.006112,0.005536,0.004768,0.006112,0.006144,0.059392,0.005664
+1357,710.741,1.40698,0.305152,0.008,0.201984,0.005056,0.006144,0.0056,0.006496,0.005696,0.06128,0.004896
+1358,1444.03,0.692505,0.303328,0.005408,0.199584,0.005728,0.004544,0.006112,0.00576,0.00576,0.065504,0.004928
+1359,1299.7,0.769409,0.301056,0.005472,0.19728,0.006144,0.006016,0.006112,0.005824,0.00576,0.062336,0.006112
+1360,1479.5,0.675903,0.306112,0.005024,0.202752,0.006144,0.0056,0.006624,0.00592,0.00592,0.063584,0.004544
+1361,1430.92,0.698853,0.303136,0.005856,0.198944,0.005824,0.006048,0.004512,0.006144,0.006144,0.064544,0.00512
+1362,722.781,1.38354,0.307936,0.004896,0.20688,0.00608,0.005408,0.004864,0.006176,0.006112,0.061472,0.006048
+1363,1414.85,0.706787,0.299584,0.004864,0.19856,0.005664,0.004864,0.005952,0.006144,0.006144,0.06144,0.005952
+1364,1116.68,0.895508,0.537152,0.004672,0.434176,0.008192,0.005952,0.005632,0.00592,0.005088,0.062496,0.005024
+1365,827.057,1.20911,0.318848,0.005376,0.213824,0.006144,0.006016,0.005856,0.006016,0.005952,0.064224,0.00544
+1366,1435.68,0.696533,0.3072,0.005408,0.202528,0.005088,0.006112,0.006144,0.006144,0.006144,0.064608,0.005024
+1367,1480.04,0.675659,0.305152,0.0056,0.200704,0.00464,0.006144,0.006112,0.005568,0.00576,0.065728,0.004896
+1368,1444.03,0.692505,0.305152,0.006016,0.200832,0.006144,0.00544,0.0048,0.006144,0.006176,0.064512,0.005088
+1369,1451.71,0.688843,0.305856,0.004896,0.202528,0.0056,0.004864,0.006112,0.005792,0.005728,0.06432,0.006016
+1370,1356.29,0.737305,0.481248,0.004448,0.37888,0.006144,0.005792,0.005632,0.00496,0.006144,0.063488,0.00576
+1371,1122.5,0.890869,0.303104,0.005568,0.199232,0.0056,0.00464,0.006144,0.006144,0.006144,0.064736,0.004896
+1372,1501.19,0.666138,0.311776,0.00464,0.2048,0.006048,0.005568,0.006656,0.005824,0.005792,0.066368,0.00608
+1373,1284.42,0.778564,0.545856,0.005824,0.44048,0.007744,0.004704,0.006144,0.006144,0.005952,0.06352,0.005344
+1374,878.404,1.13843,0.303136,0.005408,0.199392,0.005728,0.005568,0.005088,0.006144,0.005792,0.065312,0.004704
+1375,1345.6,0.743164,0.301056,0.006048,0.195936,0.004864,0.006144,0.00544,0.004832,0.006112,0.065536,0.006144
+1376,1481.11,0.675171,0.32304,0.005376,0.21584,0.0056,0.004864,0.006144,0.00592,0.005728,0.068192,0.005376
+1377,1413.39,0.70752,0.302176,0.006048,0.196704,0.006144,0.005504,0.006368,0.00592,0.005952,0.064192,0.005344
+1378,1421.24,0.703613,0.29696,0.006048,0.196736,0.005824,0.004416,0.006112,0.006144,0.005952,0.06112,0.004608
+1379,1297.64,0.77063,0.48128,0.00592,0.3784,0.005952,0.00608,0.005056,0.006176,0.006112,0.062784,0.0048
+1380,1230.03,0.812988,0.300672,0.004384,0.19664,0.006016,0.00624,0.006144,0.006144,0.006176,0.063456,0.005472
+1381,1359.89,0.735352,0.29872,0.005344,0.197472,0.006144,0.005888,0.005568,0.004928,0.006144,0.06144,0.005792
+1382,706.755,1.41492,0.309248,0.007776,0.205216,0.006144,0.0056,0.004672,0.006112,0.006144,0.06304,0.004544
+1383,971.998,1.02881,0.32608,0.004512,0.227104,0.005664,0.0048,0.006144,0.006144,0.006016,0.061152,0.004544
+1384,1609.75,0.621216,0.3056,0.004544,0.2048,0.006112,0.006048,0.005824,0.00592,0.006048,0.06192,0.004384
+1385,1364.65,0.732788,0.303968,0.00496,0.200288,0.005664,0.004992,0.006016,0.006272,0.006144,0.064928,0.004704
+1386,1411.44,0.708496,0.305376,0.006048,0.200416,0.005728,0.004896,0.006144,0.005888,0.005888,0.065824,0.004544
+1387,1328.36,0.752808,0.48128,0.005504,0.377472,0.006176,0.006016,0.005568,0.005856,0.005088,0.06448,0.00512
+1388,1194.34,0.83728,0.305184,0.005984,0.20064,0.005632,0.004832,0.006144,0.005888,0.005728,0.065696,0.00464
+1389,1322.78,0.755981,0.305888,0.004864,0.202752,0.006016,0.005472,0.004896,0.007296,0.005088,0.063392,0.006112
+1390,1437.7,0.695557,0.627584,0.004992,0.47104,0.021888,0.031296,0.018144,0.00576,0.004832,0.06528,0.004352
+1391,772.393,1.29468,0.301504,0.004576,0.198624,0.005824,0.005632,0.004928,0.006144,0.006144,0.064704,0.004928
+1392,1533.8,0.651978,0.305152,0.00592,0.198912,0.006112,0.005632,0.005664,0.005088,0.006144,0.066816,0.004864
+1393,1327.93,0.753052,0.30896,0.005952,0.2008,0.005664,0.006624,0.005632,0.00576,0.005088,0.067584,0.005856
+1394,1488.37,0.671875,0.29904,0.005376,0.197408,0.00576,0.005568,0.00512,0.00608,0.006144,0.06144,0.006144
+1395,1319.38,0.757935,0.29888,0.004608,0.196384,0.0056,0.004864,0.006144,0.006144,0.006176,0.063456,0.005504
+1396,1463.38,0.68335,0.477184,0.005568,0.377408,0.005792,0.005568,0.005024,0.006144,0.005888,0.061312,0.00448
+1397,1095.04,0.913208,0.300864,0.006144,0.196608,0.006144,0.00576,0.005568,0.005056,0.005824,0.063808,0.005952
+1398,1289.88,0.775269,0.30624,0.005984,0.200864,0.006144,0.006016,0.005536,0.00624,0.00576,0.064416,0.00528
+1399,720.112,1.38867,0.307168,0.008128,0.201376,0.0056,0.00464,0.006144,0.006144,0.00576,0.063872,0.005504
+1400,1547.7,0.646118,0.307136,0.005984,0.2,0.00496,0.006144,0.005696,0.005824,0.004864,0.067584,0.00608
+1401,1286.63,0.777222,0.29712,0.005376,0.194496,0.00512,0.006112,0.005856,0.005824,0.00576,0.063776,0.0048
+1402,1513.95,0.660522,0.300928,0.005952,0.195936,0.00496,0.006144,0.005728,0.005952,0.005952,0.064288,0.006016
+1403,810.046,1.2345,0.321568,0.005376,0.203552,0.006144,0.006144,0.006144,0.006144,0.005408,0.077792,0.004864
+1404,1021.06,0.97937,0.31152,0.005376,0.207616,0.006336,0.005728,0.005664,0.006368,0.004768,0.06528,0.004384
+1405,1387.3,0.720825,0.30608,0.005024,0.20016,0.006464,0.005536,0.004928,0.006144,0.006144,0.06704,0.00464
+1406,1108.23,0.902344,0.546816,0.005824,0.426304,0.02048,0.006016,0.005568,0.005952,0.006144,0.064384,0.006144
+1407,971.652,1.02917,0.299904,0.004992,0.196608,0.006144,0.005824,0.005664,0.004896,0.006144,0.06512,0.004512
+1408,1528.36,0.654297,0.300224,0.005952,0.1968,0.006144,0.006144,0.005472,0.005952,0.00512,0.063296,0.005344
+1409,1371.05,0.72937,0.29792,0.005056,0.194592,0.00608,0.005568,0.004832,0.006016,0.006144,0.064608,0.005024
+1410,1488.64,0.671753,0.298144,0.005376,0.195392,0.00608,0.00592,0.005696,0.004832,0.006144,0.06336,0.005344
+1411,1221.96,0.818359,0.305248,0.005376,0.19952,0.006176,0.007744,0.005664,0.004992,0.006144,0.0648,0.004832
+1412,1474.71,0.678101,0.30368,0.00464,0.202752,0.005664,0.004576,0.005536,0.006112,0.005952,0.063424,0.005024
+1413,1024.51,0.976074,0.298752,0.005344,0.197504,0.005664,0.004672,0.006144,0.006112,0.005696,0.06192,0.005696
+1414,1496.8,0.668091,0.300896,0.004832,0.19968,0.00512,0.006048,0.005664,0.006464,0.005728,0.062016,0.005344
+1415,1420,0.704224,0.548928,0.005344,0.440544,0.012384,0.004672,0.006144,0.006112,0.005824,0.062944,0.00496
+1416,822.903,1.21521,0.304736,0.006144,0.200704,0.005792,0.005568,0.005024,0.006144,0.006144,0.063488,0.005728
+1417,1382.15,0.723511,0.303744,0.0048,0.200704,0.006144,0.006176,0.005984,0.005792,0.005792,0.062272,0.00608
+1418,1542.75,0.648193,0.29696,0.005472,0.195232,0.006112,0.005376,0.004896,0.006144,0.006112,0.062624,0.004992
+1419,1451.71,0.688843,0.298624,0.004512,0.198656,0.006048,0.005568,0.004832,0.00608,0.006144,0.061408,0.005376
+1420,1321.72,0.756592,0.294944,0.005536,0.195168,0.005888,0.005728,0.004832,0.00608,0.006144,0.060704,0.004864
+1421,1439.97,0.694458,0.477184,0.005568,0.377088,0.005632,0.004928,0.006144,0.00592,0.005728,0.061152,0.005024
+1422,1087.77,0.919312,0.292928,0.005056,0.194112,0.0056,0.005088,0.005888,0.005984,0.005952,0.059904,0.005344
+1423,1204.53,0.8302,0.328736,0.00544,0.227616,0.005696,0.00496,0.006048,0.005952,0.006432,0.061248,0.005344
+1424,1511.72,0.661499,0.56176,0.004736,0.415712,0.045056,0.012224,0.005664,0.005792,0.005024,0.06256,0.004992
+1425,777.894,1.28552,0.302624,0.005728,0.200448,0.004864,0.006048,0.005888,0.005856,0.005856,0.062272,0.005664
+1426,1476.04,0.67749,0.29904,0.0056,0.197152,0.005696,0.005568,0.00512,0.006144,0.006144,0.06288,0.004736
+1427,1414.85,0.706787,0.303872,0.004704,0.200672,0.005568,0.004832,0.006016,0.006144,0.006144,0.065248,0.004544
+1428,1579.64,0.633057,0.299104,0.004768,0.198656,0.0056,0.00464,0.006144,0.005984,0.005696,0.062048,0.005568
+1429,1365.11,0.732544,0.301632,0.004672,0.196608,0.00736,0.00496,0.006112,0.005856,0.00576,0.06416,0.006144
+1430,1159.52,0.862427,0.305152,0.006144,0.200256,0.005632,0.005056,0.00592,0.005984,0.005952,0.064064,0.006144
+1431,1311.56,0.762451,0.299008,0.006144,0.197984,0.004864,0.006048,0.00592,0.00576,0.00576,0.061792,0.004736
+1432,1424.45,0.702026,0.302944,0.005632,0.2024,0.00496,0.006144,0.005632,0.00592,0.005952,0.060352,0.005952
+1433,703.78,1.4209,0.318592,0.008096,0.215168,0.00608,0.0056,0.004832,0.006016,0.006112,0.06128,0.005408
+1434,1394.15,0.717285,0.300608,0.005632,0.200256,0.005056,0.00608,0.005664,0.005824,0.00496,0.06144,0.005696
+1435,1493.53,0.669556,0.298752,0.0056,0.196864,0.0056,0.00496,0.00608,0.00592,0.006048,0.061792,0.005888
+1436,1551.22,0.644653,0.297216,0.004352,0.198656,0.005568,0.004672,0.005984,0.005824,0.00576,0.060256,0.006144
+1437,1350.03,0.740723,0.300608,0.006048,0.19456,0.006144,0.005696,0.005664,0.006624,0.00592,0.06416,0.005792
+1438,1458.95,0.685425,0.300576,0.004448,0.200704,0.005952,0.005536,0.004896,0.006144,0.005856,0.061728,0.005312
+1439,1105.09,0.904907,0.299584,0.004672,0.198656,0.006144,0.005888,0.005568,0.004928,0.006144,0.062784,0.0048
+1440,1518.72,0.658447,0.303104,0.006144,0.203872,0.005056,0.005856,0.004352,0.006144,0.006144,0.060608,0.004928
+1441,1351.82,0.739746,0.589184,0.005504,0.486016,0.008,0.0056,0.004832,0.006144,0.006144,0.06144,0.005504
+1442,645.751,1.54858,0.313568,0.005344,0.211936,0.006144,0.00592,0.006368,0.006144,0.006048,0.060576,0.005088
+1443,1591.61,0.628296,0.306272,0.006016,0.202144,0.004864,0.006112,0.005984,0.006304,0.006144,0.063328,0.005376
+1444,1502.02,0.665771,0.300672,0.006144,0.200032,0.004864,0.006048,0.005824,0.005824,0.005824,0.060352,0.00576
+1445,1325.78,0.754272,0.296864,0.005984,0.19664,0.0056,0.004768,0.006144,0.006016,0.005728,0.059936,0.006048
+1446,1303.63,0.76709,0.300672,0.004672,0.200416,0.005984,0.004544,0.006144,0.006144,0.005632,0.06176,0.005376
+1447,1526.36,0.655151,0.48064,0.005344,0.377824,0.005664,0.0056,0.00512,0.006144,0.006144,0.063392,0.005408
+1448,1093.29,0.914673,0.305152,0.005568,0.202624,0.006336,0.00464,0.006112,0.006144,0.005568,0.063328,0.004832
+1449,1390.83,0.718994,0.31392,0.00496,0.20832,0.004672,0.006144,0.005856,0.005952,0.00576,0.0664,0.005856
+1450,1032.39,0.968628,0.501888,0.00752,0.394016,0.006048,0.005536,0.0048,0.006144,0.006144,0.067008,0.004672
+1451,1120.2,0.8927,0.30624,0.00544,0.202592,0.00496,0.006144,0.005408,0.004832,0.006144,0.065344,0.005376
+1452,1456.36,0.686646,0.3088,0.006144,0.200704,0.006144,0.005664,0.004576,0.006144,0.006144,0.067584,0.005696
+1453,1310.3,0.763184,0.307456,0.004608,0.202304,0.005856,0.004864,0.006112,0.00592,0.005728,0.066176,0.005888
+1454,1492.71,0.669922,0.309856,0.004896,0.202432,0.005632,0.004928,0.006112,0.006016,0.005952,0.067936,0.005952
+1455,1325.14,0.754639,0.302176,0.005376,0.197248,0.0056,0.004768,0.006144,0.006144,0.00608,0.065472,0.005344
+1456,1269.88,0.787476,0.309312,0.005408,0.20256,0.005024,0.006144,0.005536,0.005984,0.005984,0.068096,0.004576
+1457,1337.69,0.747559,0.307488,0.004352,0.204096,0.004864,0.006112,0.005792,0.005952,0.00576,0.064384,0.006176
+1458,1302.59,0.7677,0.305888,0.004832,0.200704,0.005664,0.004576,0.006144,0.006144,0.005792,0.067328,0.004704
+1459,1443.27,0.692871,0.554016,0.0056,0.422432,0.034176,0.004768,0.006112,0.006016,0.005728,0.063584,0.0056
+1460,864.682,1.15649,0.305152,0.006112,0.200704,0.005696,0.004608,0.006112,0.006144,0.006144,0.063488,0.006144
+1461,1348.26,0.741699,0.306848,0.004704,0.202752,0.006112,0.005568,0.004736,0.006112,0.006176,0.06528,0.005408
+1462,928.482,1.07703,0.301056,0.005504,0.197248,0.00576,0.005568,0.005056,0.006144,0.00576,0.063872,0.006144
+1463,1567.25,0.638062,0.306112,0.004992,0.202272,0.0056,0.00512,0.005984,0.005952,0.005856,0.065792,0.004544
+1464,1453.26,0.68811,0.520288,0.005376,0.41392,0.004768,0.006112,0.00592,0.005824,0.005728,0.067616,0.005024
+1465,1068.34,0.936035,0.303264,0.005504,0.198624,0.004832,0.00608,0.005568,0.004672,0.006144,0.067296,0.004544
+1466,1255.86,0.796265,0.30528,0.005376,0.2016,0.00576,0.005568,0.005056,0.006144,0.006144,0.064736,0.004896
+1467,1366.47,0.731812,0.309696,0.004512,0.20672,0.005568,0.004832,0.006112,0.005888,0.006176,0.064832,0.005056
+1468,698.321,1.43201,0.36672,0.007488,0.260864,0.006176,0.0056,0.00464,0.006112,0.007232,0.064032,0.004576
+1469,1520.98,0.657471,0.30512,0.005344,0.203488,0.005696,0.004736,0.006144,0.006144,0.006144,0.06144,0.005984
+1470,1346.93,0.742432,0.304736,0.005248,0.203776,0.006144,0.005664,0.004576,0.006144,0.006144,0.06144,0.0056
+1471,1495.71,0.668579,0.3072,0.005824,0.20208,0.005088,0.006144,0.005664,0.00592,0.005824,0.064512,0.006144
+1472,1311.77,0.762329,0.302656,0.005344,0.197504,0.006176,0.006016,0.0056,0.005856,0.005024,0.065536,0.0056
+1473,1208.79,0.827271,0.307456,0.0048,0.204832,0.005888,0.005568,0.004896,0.006176,0.006112,0.063488,0.005696
+1474,1305.91,0.765747,0.306912,0.006144,0.20176,0.005088,0.00608,0.005568,0.005952,0.006528,0.063936,0.005856
+1475,1484.33,0.673706,0.311328,0.005632,0.208992,0.006016,0.004832,0.005952,0.005952,0.00576,0.0632,0.004992
+1476,723.995,1.38123,0.322624,0.008192,0.21504,0.005664,0.004576,0.006144,0.006144,0.006144,0.06544,0.00528
+1477,1405.15,0.71167,0.311296,0.005248,0.205376,0.005664,0.004896,0.006144,0.006144,0.006112,0.067008,0.004704
+1478,1405.63,0.711426,0.300992,0.006144,0.196064,0.005696,0.005088,0.00592,0.00576,0.004768,0.065472,0.00608
+1479,1511.16,0.661743,0.301472,0.004832,0.202624,0.005632,0.004768,0.00592,0.005792,0.00576,0.06032,0.005824
+1480,871.489,1.14746,0.3032,0.005344,0.200992,0.004864,0.005984,0.005696,0.00576,0.004928,0.064608,0.005024
+1481,1569.35,0.637207,0.480288,0.00544,0.378848,0.004832,0.006144,0.005888,0.005984,0.005824,0.062016,0.005312
+1482,1068.89,0.935547,0.307232,0.005696,0.200768,0.0056,0.005024,0.006144,0.006144,0.005984,0.066848,0.005024
+1483,1506.71,0.663696,0.309248,0.005664,0.204736,0.00464,0.006144,0.006144,0.006144,0.006112,0.06352,0.006144
+1484,671.145,1.48999,0.325952,0.007488,0.217184,0.005056,0.006112,0.006144,0.006048,0.00624,0.067328,0.004352
+1485,1456.36,0.686646,0.3032,0.006144,0.198656,0.006112,0.005568,0.006304,0.005824,0.004864,0.065152,0.004576
+1486,1410.95,0.70874,0.298528,0.00544,0.195264,0.006144,0.005888,0.00544,0.005088,0.006112,0.063488,0.005664
+1487,1524.09,0.656128,0.302592,0.00608,0.198304,0.0056,0.005056,0.006144,0.006144,0.006144,0.063488,0.005632
+1488,1374.27,0.727661,0.301792,0.005024,0.19856,0.005632,0.004704,0.006144,0.00608,0.005728,0.063968,0.005952
+1489,1413.88,0.707275,0.52448,0.004928,0.419424,0.005664,0.004992,0.00608,0.005824,0.005792,0.066272,0.005504
+1490,1030.05,0.970825,0.301152,0.00592,0.195968,0.00496,0.006144,0.005664,0.005664,0.00512,0.067136,0.004576
+1491,1496.53,0.668213,0.306496,0.005504,0.201376,0.006112,0.005696,0.004544,0.006144,0.006144,0.065536,0.00544
+1492,1233.55,0.810669,0.626688,0.005632,0.469504,0.028672,0.032768,0.006144,0.005952,0.005824,0.067104,0.005088
+1493,849.528,1.17712,0.3072,0.00448,0.203936,0.00496,0.006144,0.006144,0.006144,0.006144,0.063488,0.00576
+1494,1327.07,0.75354,0.301888,0.004928,0.198016,0.004832,0.006048,0.006144,0.006176,0.006112,0.063488,0.006144
+1495,1493.26,0.669678,0.307232,0.005472,0.202976,0.005664,0.005024,0.005984,0.00576,0.00592,0.065568,0.004864
+1496,1392.49,0.71814,0.303104,0.005376,0.200928,0.004864,0.00592,0.005984,0.005824,0.00576,0.063552,0.004896
+1497,1395.57,0.716553,0.303296,0.004704,0.20176,0.005088,0.006112,0.005376,0.004928,0.006112,0.063488,0.005728
+1498,1294.15,0.772705,0.481024,0.005376,0.377792,0.006112,0.005568,0.004736,0.006112,0.006144,0.063488,0.005696
+1499,1080.88,0.925171,0.321536,0.005984,0.218944,0.005632,0.00496,0.006144,0.006144,0.005952,0.062816,0.00496
+1500,1363.06,0.733643,0.315456,0.004928,0.210976,0.006144,0.005952,0.005568,0.005856,0.00512,0.065536,0.005376
+1501,975.354,1.02527,0.557216,0.004672,0.431712,0.02848,0.004704,0.006144,0.005984,0.005696,0.064096,0.005728
+1502,1161.82,0.860718,0.30992,0.004768,0.206848,0.006144,0.005792,0.005536,0.005088,0.006112,0.065088,0.004544
+1503,1424.2,0.702148,0.308736,0.006112,0.202784,0.006144,0.006048,0.00544,0.004896,0.006144,0.065536,0.005632
+1504,1311.56,0.762451,0.301344,0.005408,0.196864,0.004864,0.006144,0.005728,0.00592,0.00592,0.065504,0.004992
+1505,1480.3,0.675537,0.303104,0.005504,0.199296,0.006144,0.0056,0.00464,0.006144,0.00608,0.0648,0.004896
+1506,1324.71,0.754883,0.300928,0.004832,0.198656,0.005984,0.0056,0.0048,0.006144,0.006176,0.063424,0.005312
+1507,1251.07,0.799316,0.30032,0.006048,0.198272,0.005632,0.00512,0.005888,0.00576,0.004704,0.063488,0.005408
+1508,1316.62,0.759521,0.311296,0.006048,0.206784,0.0056,0.0048,0.006144,0.005984,0.006304,0.064736,0.004896
+1509,1347.15,0.74231,0.329696,0.006016,0.225408,0.006144,0.005888,0.005696,0.004832,0.007296,0.062304,0.006112
+1510,729.41,1.37097,0.313408,0.006752,0.208896,0.00608,0.005568,0.0048,0.006048,0.006048,0.063584,0.005632
+1511,1473.91,0.678467,0.309248,0.006112,0.202816,0.006112,0.005792,0.006144,0.005952,0.005792,0.065792,0.004736
+1512,1307.16,0.765015,0.300576,0.005344,0.19664,0.004992,0.006144,0.005472,0.005792,0.00512,0.065536,0.005536
+1513,1547.41,0.64624,0.30304,0.005792,0.199008,0.006144,0.005824,0.005504,0.005056,0.006144,0.063488,0.00608
+1514,1317.04,0.759277,0.305152,0.006144,0.200032,0.004768,0.006144,0.00576,0.005888,0.004736,0.065536,0.006144
+1515,1438.45,0.69519,0.48384,0.005056,0.37888,0.00608,0.005536,0.004768,0.006144,0.00608,0.0656,0.005696
+1516,1090.09,0.917358,0.305152,0.005664,0.202304,0.005024,0.006144,0.005312,0.004928,0.006144,0.0648,0.004832
+1517,1168.95,0.855469,0.318048,0.004864,0.212992,0.005728,0.005568,0.005088,0.006144,0.006112,0.0656,0.005952
+1518,1063.21,0.940552,0.551104,0.005056,0.444416,0.008192,0.00592,0.005568,0.00592,0.00512,0.065536,0.005376
+1519,889.854,1.12378,0.346752,0.004704,0.243616,0.005696,0.00464,0.006144,0.006112,0.005728,0.065472,0.00464
+1520,1615.78,0.618896,0.314176,0.004896,0.208928,0.006112,0.005824,0.0056,0.006112,0.004992,0.066784,0.004928
+1521,1394.38,0.717163,0.313728,0.004608,0.206496,0.005632,0.00608,0.005056,0.006112,0.006112,0.067616,0.006016
+1522,1369.44,0.730225,0.313376,0.005888,0.207104,0.006144,0.00592,0.005504,0.0064,0.005728,0.066048,0.00464
+1523,1285.42,0.777954,0.310592,0.005568,0.207424,0.005696,0.004544,0.006144,0.00608,0.005696,0.064,0.00544
+1524,1094.02,0.914062,0.314208,0.00496,0.210944,0.005824,0.0056,0.00496,0.006144,0.006144,0.064992,0.00464
+1525,1460.77,0.68457,0.311584,0.004416,0.207904,0.005088,0.00608,0.005504,0.005824,0.00512,0.067008,0.00464
+1526,1221.77,0.818481,0.312896,0.00544,0.208576,0.00512,0.006112,0.005536,0.005856,0.005024,0.065536,0.005696
+1527,741.223,1.34912,0.321536,0.007776,0.215456,0.00736,0.00496,0.006112,0.005824,0.005696,0.06368,0.004672
+1528,1566.35,0.638428,0.308096,0.004992,0.202752,0.006144,0.005888,0.0064,0.006176,0.006048,0.064704,0.004992
+1529,1242.72,0.804688,0.301248,0.004416,0.198368,0.005696,0.004832,0.005984,0.006144,0.00576,0.064032,0.006016
+1530,1519.01,0.658325,0.305376,0.004992,0.202112,0.004832,0.00608,0.006112,0.005984,0.00576,0.064032,0.005472
+1531,1352.93,0.739136,0.30928,0.006144,0.202208,0.004864,0.00592,0.006144,0.006112,0.005824,0.066912,0.005152
+1532,742.029,1.34766,0.483424,0.004736,0.37888,0.006144,0.005984,0.005568,0.004832,0.006144,0.065536,0.0056
+1533,849.616,1.177,0.320896,0.006144,0.218528,0.004736,0.006112,0.00592,0.00576,0.004704,0.063488,0.005504
+1534,748.949,1.33521,0.352832,0.00672,0.24704,0.004864,0.006144,0.005824,0.005824,0.004768,0.06672,0.004928
+1535,1400.58,0.713989,0.327424,0.00448,0.224704,0.005696,0.00512,0.006176,0.006112,0.006144,0.063488,0.005504
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..774e89e
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_6,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1266.25,0.831683,0.331814,0.00568913,0.22364,0.00641953,0.00528244,0.00566916,0.00596578,0.00592059,0.0677649,0.00546291
+max_1024,1794.92,2.42065,0.820288,0.0272,0.555008,0.069632,0.022528,0.032192,0.02128,0.022528,0.326048,0.020832
+min_1024,413.111,0.557129,0.28272,0.00432,0.190464,0.004096,0.004064,0.00416,0.004352,0.004576,0.047168,0.004096
+512,1308.42,0.764282,0.557056,0.006144,0.417376,0.04752,0.008192,0.005728,0.00576,0.004928,0.05696,0.004448
+513,834.471,1.19836,0.310624,0.006144,0.214752,0.00592,0.004608,0.005952,0.00592,0.005664,0.056192,0.005472
+514,1245.55,0.802856,0.287456,0.005088,0.196416,0.004288,0.005984,0.005504,0.004928,0.006112,0.053248,0.005888
+515,1690.47,0.591553,0.294528,0.004608,0.202656,0.005248,0.005088,0.006016,0.00576,0.005792,0.05408,0.00528
+516,1196.61,0.835693,0.287552,0.004864,0.198656,0.005536,0.004704,0.00592,0.0056,0.004864,0.053056,0.004352
+517,1531.5,0.652954,0.28672,0.006048,0.196192,0.004608,0.005664,0.004576,0.006176,0.005984,0.052448,0.005024
+518,1353.83,0.738647,0.288736,0.005376,0.197632,0.005856,0.004384,0.006144,0.005792,0.00576,0.051936,0.005856
+519,1554.46,0.643311,0.291104,0.004384,0.19792,0.004832,0.005408,0.004832,0.006144,0.005952,0.055488,0.006144
+520,938.481,1.06555,0.292864,0.0056,0.199232,0.005856,0.004352,0.006144,0.005824,0.005792,0.055392,0.004672
+521,1266.35,0.789673,0.5448,0.004832,0.415104,0.040736,0.004992,0.005632,0.005728,0.004992,0.057056,0.005728
+522,963.425,1.03796,0.29888,0.006144,0.202752,0.005248,0.004992,0.005376,0.004864,0.006176,0.057312,0.006016
+523,1584.53,0.631104,0.286752,0.005408,0.197376,0.00544,0.0048,0.0056,0.005792,0.004992,0.052352,0.004992
+524,1257.6,0.795166,0.282784,0.005376,0.191456,0.005568,0.004672,0.005984,0.006048,0.005728,0.051872,0.00608
+525,1226.71,0.815186,0.28688,0.005376,0.194784,0.0048,0.00544,0.0064,0.005792,0.004928,0.054336,0.005024
+526,1330.73,0.751465,0.28608,0.005728,0.194816,0.004256,0.005984,0.006304,0.006176,0.005888,0.051424,0.005504
+527,1495.71,0.668579,0.2872,0.004576,0.20272,0.00608,0.00416,0.006144,0.005984,0.005696,0.047168,0.004672
+528,1062.93,0.940796,0.286496,0.005376,0.195456,0.005632,0.00576,0.004992,0.006144,0.006144,0.0512,0.005792
+529,1660.65,0.602173,0.289216,0.004576,0.204416,0.004416,0.005824,0.005504,0.005056,0.006144,0.04864,0.00464
+530,654.47,1.52795,0.29648,0.007712,0.20528,0.005472,0.004768,0.005856,0.005792,0.006048,0.049888,0.005664
+531,1423.95,0.702271,0.316576,0.005408,0.22752,0.00464,0.005632,0.005728,0.007008,0.005728,0.049568,0.005344
+532,1453.51,0.687988,0.293696,0.004928,0.20032,0.00448,0.006144,0.005792,0.00592,0.005856,0.054112,0.006144
+533,1252.6,0.79834,0.292864,0.006144,0.20016,0.00464,0.005632,0.00464,0.006112,0.005984,0.05472,0.004832
+534,1239.52,0.806763,0.289024,0.004768,0.196288,0.004416,0.006144,0.005952,0.005728,0.006336,0.053664,0.005728
+535,1746.7,0.57251,0.290592,0.005984,0.19808,0.004832,0.006048,0.005472,0.004928,0.00608,0.053248,0.00592
+536,1398.67,0.714966,0.286464,0.005984,0.194592,0.004224,0.006016,0.005472,0.004896,0.006144,0.053248,0.005888
+537,943.996,1.05933,0.292864,0.005664,0.203232,0.005344,0.004896,0.006144,0.006144,0.006144,0.049152,0.006144
+538,1180.06,0.847412,0.483328,0.008192,0.391168,0.006144,0.00576,0.005952,0.00576,0.005056,0.050368,0.004928
+539,1081.45,0.924683,0.290464,0.006144,0.202112,0.004736,0.005536,0.004704,0.006144,0.005952,0.049344,0.005792
+540,1513.39,0.660767,0.284704,0.005376,0.196736,0.004736,0.005504,0.006208,0.004672,0.006144,0.050656,0.004672
+541,1279.2,0.781738,0.28272,0.005344,0.195328,0.004256,0.006048,0.00528,0.005024,0.006144,0.050496,0.0048
+542,1124.19,0.889526,0.2856,0.005024,0.196256,0.004448,0.005792,0.005536,0.005056,0.006144,0.05248,0.004864
+543,1539.56,0.649536,0.286688,0.005056,0.196544,0.005248,0.005056,0.005568,0.005952,0.00592,0.052032,0.005312
+544,1404.18,0.712158,0.284768,0.00544,0.195328,0.006144,0.004096,0.006144,0.006144,0.00576,0.0512,0.004512
+545,683.978,1.46204,0.291232,0.00512,0.2024,0.004448,0.005824,0.005536,0.005024,0.006144,0.0512,0.005536
+546,1452.74,0.688354,0.290848,0.006144,0.200704,0.005376,0.004864,0.006176,0.006112,0.006144,0.05088,0.004448
+547,718.849,1.39111,0.321856,0.007552,0.232224,0.004384,0.005888,0.005536,0.004832,0.006144,0.05088,0.004416
+548,1344.49,0.743774,0.295296,0.004704,0.206848,0.005248,0.004992,0.005856,0.005792,0.004736,0.0512,0.00592
+549,1625.72,0.615112,0.469312,0.005952,0.377536,0.00592,0.004352,0.006112,0.005824,0.00544,0.052224,0.005952
+550,1178.2,0.848755,0.288544,0.005856,0.198944,0.0056,0.00464,0.006112,0.00576,0.00576,0.049952,0.00592
+551,1386.13,0.721436,0.284416,0.006144,0.194176,0.00448,0.005792,0.005504,0.005088,0.006144,0.0512,0.005888
+552,1483.25,0.674194,0.28464,0.005408,0.194912,0.00448,0.00576,0.004672,0.005952,0.005856,0.051488,0.006112
+553,722.017,1.38501,0.291104,0.005024,0.200736,0.005536,0.004672,0.005888,0.005728,0.005824,0.052192,0.005504
+554,1301.35,0.768433,0.541152,0.004576,0.428032,0.026464,0.004256,0.006176,0.006048,0.005888,0.055072,0.00464
+555,909.616,1.09937,0.289344,0.00512,0.200704,0.005376,0.004864,0.005664,0.004576,0.006144,0.0512,0.005696
+556,1553.28,0.643799,0.299296,0.005632,0.202688,0.00512,0.004096,0.006176,0.00592,0.005728,0.057952,0.005984
+557,1332.68,0.750366,0.470912,0.004736,0.374784,0.006112,0.004128,0.006144,0.006144,0.005696,0.057792,0.005376
+558,1124.5,0.889282,0.293184,0.004448,0.198528,0.005248,0.004864,0.00432,0.006144,0.005984,0.05856,0.005088
+559,1554.75,0.643188,0.29536,0.004576,0.202016,0.004768,0.005568,0.004672,0.006144,0.006144,0.056896,0.004576
+560,1375.88,0.726807,0.294592,0.00576,0.200096,0.005088,0.004096,0.006176,0.00592,0.005664,0.055968,0.005824
+561,1234.66,0.809937,0.295712,0.004896,0.202368,0.00448,0.005792,0.005472,0.006176,0.006528,0.054976,0.005024
+562,997.808,1.0022,0.319968,0.004736,0.228864,0.004608,0.005664,0.00464,0.00608,0.006144,0.053248,0.005984
+563,863.133,1.15857,0.327648,0.007552,0.23424,0.005856,0.004384,0.006144,0.005856,0.005696,0.051936,0.005984
+564,1397.48,0.715576,0.329856,0.004416,0.239072,0.00464,0.005632,0.004672,0.00608,0.007296,0.052096,0.005952
+565,1395.57,0.716553,0.295392,0.004896,0.204448,0.004448,0.005792,0.005472,0.006304,0.00496,0.053248,0.005824
+566,1221.05,0.81897,0.292896,0.005888,0.20096,0.006144,0.005152,0.006208,0.005088,0.00608,0.0528,0.004576
+567,1413.63,0.707397,0.290432,0.005824,0.198976,0.005568,0.004672,0.005792,0.005728,0.004864,0.053248,0.00576
+568,1521.55,0.657227,0.291424,0.004704,0.20048,0.004384,0.005888,0.006336,0.005984,0.005664,0.052896,0.005088
+569,1238.77,0.807251,0.28416,0.006144,0.196608,0.0056,0.00464,0.005728,0.005792,0.004864,0.049152,0.005632
+570,1138.73,0.878174,0.293952,0.006112,0.202816,0.005664,0.004544,0.00608,0.006208,0.006016,0.0512,0.005312
+571,1534.08,0.651855,0.553024,0.005376,0.422656,0.047168,0.005312,0.004928,0.006176,0.005888,0.049376,0.006144
+572,825.89,1.21082,0.290752,0.004448,0.201984,0.004864,0.005376,0.004896,0.006112,0.006144,0.0512,0.005728
+573,1476.57,0.677246,0.290784,0.006144,0.196608,0.005792,0.004448,0.007392,0.004896,0.006144,0.053248,0.006112
+574,1420.25,0.704102,0.292608,0.005824,0.198688,0.004416,0.005088,0.005152,0.006144,0.006112,0.055296,0.005888
+575,1150.08,0.869507,0.292064,0.005568,0.196928,0.004352,0.006144,0.00576,0.005696,0.004928,0.057344,0.005344
+576,1260.89,0.793091,0.28928,0.004608,0.197696,0.005056,0.005216,0.005056,0.005952,0.00576,0.05536,0.004576
+577,1641.68,0.609131,0.28928,0.004704,0.196128,0.004576,0.005472,0.004768,0.006144,0.005856,0.055584,0.006048
+578,1099.45,0.909546,0.293984,0.006144,0.197952,0.0048,0.00544,0.0048,0.006176,0.005696,0.057664,0.005312
+579,1576.6,0.634277,0.296992,0.005984,0.202048,0.00496,0.00528,0.00496,0.006144,0.005984,0.057312,0.00432
+580,695.18,1.43848,0.310688,0.00752,0.21312,0.004992,0.005248,0.004992,0.006144,0.005344,0.057984,0.005344
+581,1677.66,0.596069,0.301152,0.005024,0.202752,0.005568,0.004672,0.006112,0.005728,0.005696,0.060288,0.005312
+582,1222.5,0.817993,0.301056,0.005984,0.203968,0.005088,0.005184,0.005056,0.005536,0.005856,0.059264,0.00512
+583,1368.53,0.730713,0.306816,0.00464,0.212032,0.005056,0.005184,0.005088,0.006112,0.005728,0.057632,0.005344
+584,1355.17,0.737915,0.289408,0.004736,0.196608,0.00528,0.00496,0.005408,0.00496,0.006016,0.0568,0.00464
+585,1528.93,0.654053,0.293568,0.0048,0.198144,0.004608,0.005632,0.00464,0.006112,0.006048,0.05744,0.006144
+586,1365.79,0.732178,0.288768,0.005376,0.19328,0.0056,0.00464,0.005984,0.005728,0.005792,0.05792,0.004448
+587,1501.19,0.666138,0.301984,0.005056,0.2048,0.005152,0.00512,0.00608,0.005792,0.00576,0.058112,0.006112
+588,1275.81,0.783813,0.287232,0.004704,0.19584,0.004832,0.005408,0.004864,0.006112,0.006144,0.053248,0.00608
+589,802.665,1.24585,0.292864,0.007936,0.198752,0.004256,0.006016,0.005504,0.004896,0.006112,0.05456,0.004832
+590,1389.18,0.719849,0.288,0.006176,0.195872,0.004832,0.005216,0.005024,0.006112,0.005824,0.053568,0.005376
+591,1527.5,0.654663,0.287584,0.00496,0.198432,0.00432,0.006144,0.00528,0.00496,0.006144,0.052608,0.004736
+592,1179.38,0.8479,0.284672,0.006112,0.194624,0.005792,0.005664,0.004896,0.006144,0.006048,0.05072,0.004672
+593,1464.43,0.682861,0.29008,0.00608,0.194688,0.00608,0.00512,0.00512,0.005888,0.005792,0.055904,0.005408
+594,1457.65,0.686035,0.287648,0.005024,0.19456,0.005504,0.004736,0.005856,0.005568,0.00496,0.056992,0.004448
+595,1570.55,0.636719,0.293344,0.004576,0.198272,0.004512,0.006112,0.005728,0.00592,0.00576,0.057792,0.004672
+596,413.111,2.42065,0.292256,0.004448,0.198656,0.006112,0.00512,0.00512,0.00608,0.005792,0.0552,0.005728
+597,1216.33,0.822144,0.307808,0.006912,0.212992,0.00592,0.00432,0.006144,0.00592,0.005696,0.05392,0.005984
+598,1497.35,0.667847,0.301056,0.006144,0.202752,0.006016,0.004224,0.006144,0.005984,0.005664,0.057984,0.006144
+599,1352.48,0.73938,0.473088,0.006048,0.378496,0.004576,0.005728,0.004672,0.005984,0.006176,0.056512,0.004896
+600,1054.45,0.948364,0.287648,0.004736,0.194752,0.005248,0.005088,0.006144,0.006144,0.006144,0.055296,0.004096
+601,1079.03,0.926758,0.32176,0.0056,0.226048,0.005632,0.004608,0.005984,0.005856,0.005792,0.056096,0.006144
+602,1494.07,0.669312,0.301056,0.004992,0.202752,0.005632,0.004608,0.005984,0.006304,0.005888,0.059584,0.005312
+603,988.417,1.01172,0.305184,0.005408,0.209024,0.004704,0.005568,0.004704,0.006112,0.006144,0.05872,0.0048
+604,1124.97,0.888916,0.542784,0.00544,0.443136,0.008192,0.005536,0.004704,0.006144,0.006144,0.057344,0.006144
+605,973.731,1.02698,0.305792,0.004736,0.210944,0.005664,0.004576,0.006048,0.00624,0.005984,0.055456,0.006144
+606,660.965,1.51294,0.298752,0.005376,0.204992,0.0048,0.005472,0.006112,0.005888,0.005024,0.056352,0.004736
+607,862.407,1.15955,0.301088,0.005376,0.205568,0.005952,0.00432,0.006112,0.006048,0.00576,0.057408,0.004544
+608,1161.66,0.86084,0.299072,0.005376,0.205216,0.004512,0.005824,0.004416,0.006144,0.006112,0.056544,0.004928
+609,988.298,1.01184,0.308224,0.0056,0.213536,0.005408,0.004832,0.00576,0.005824,0.0048,0.057152,0.005312
+610,1440.99,0.69397,0.305984,0.004896,0.212448,0.00464,0.005664,0.00464,0.00608,0.006144,0.05664,0.004832
+611,1170.29,0.854492,0.55104,0.004576,0.427936,0.036864,0.005344,0.004896,0.006144,0.006144,0.053248,0.005888
+612,977.799,1.02271,0.303488,0.005088,0.208864,0.005152,0.005088,0.005504,0.004736,0.007392,0.056096,0.005568
+613,812.376,1.23096,0.3072,0.005824,0.216448,0.005056,0.005216,0.005024,0.006144,0.006144,0.053024,0.00432
+614,960.375,1.04126,0.319488,0.006144,0.227328,0.006144,0.005184,0.005056,0.006144,0.005888,0.052736,0.004864
+615,1290.49,0.774902,0.295136,0.004992,0.201824,0.005024,0.005216,0.005024,0.006016,0.005792,0.055776,0.005472
+616,1653.95,0.604614,0.289184,0.004864,0.19856,0.005248,0.005088,0.005408,0.00496,0.006016,0.053248,0.005792
+617,735.566,1.3595,0.321728,0.005408,0.227808,0.004576,0.005696,0.004672,0.005984,0.006144,0.056928,0.004512
+618,1154.45,0.866211,0.69712,0.004896,0.555008,0.05488,0.004512,0.006048,0.00576,0.005792,0.05408,0.006144
+619,811.893,1.23169,0.31376,0.004512,0.220928,0.004384,0.005888,0.005408,0.005056,0.006144,0.056544,0.004896
+620,1372.19,0.72876,0.295456,0.00464,0.202752,0.005984,0.004256,0.006144,0.005728,0.005664,0.054144,0.006144
+621,1149.43,0.869995,0.29744,0.00464,0.202752,0.005216,0.005024,0.006144,0.006144,0.006048,0.055392,0.00608
+622,1683.52,0.593994,0.290464,0.005376,0.196672,0.004992,0.00528,0.004928,0.006144,0.006144,0.055296,0.005632
+623,1370.36,0.729736,0.287232,0.004832,0.196064,0.00464,0.0056,0.004704,0.00608,0.006112,0.05328,0.00592
+624,1490.27,0.671021,0.288736,0.005568,0.196864,0.004416,0.005856,0.004416,0.006112,0.006144,0.053248,0.006112
+625,1176.84,0.849731,0.294752,0.00544,0.20144,0.005664,0.004576,0.006016,0.0056,0.004768,0.055296,0.005952
+626,1010.24,0.989868,0.569952,0.004704,0.419584,0.05504,0.011872,0.005056,0.006112,0.00592,0.056608,0.005056
+627,1045.43,0.956543,0.301184,0.004992,0.208,0.004992,0.005248,0.005024,0.005888,0.005664,0.055936,0.00544
+628,1551.22,0.644653,0.298784,0.004416,0.202752,0.005248,0.004992,0.006144,0.00592,0.005728,0.057984,0.0056
+629,1259.15,0.794189,0.298656,0.005504,0.206688,0.004896,0.004096,0.006144,0.006144,0.006144,0.05328,0.00576
+630,1122.5,0.890869,0.297984,0.005696,0.2032,0.00608,0.00416,0.00736,0.006048,0.005024,0.055104,0.005312
+631,1532.93,0.652344,0.29024,0.004576,0.196544,0.005376,0.004864,0.005664,0.00576,0.00496,0.057184,0.005312
+632,1434.42,0.697144,0.2888,0.005376,0.193312,0.006144,0.005184,0.006336,0.00496,0.006048,0.055296,0.006144
+633,1077.33,0.928223,0.29344,0.004672,0.196608,0.005216,0.005024,0.005824,0.00576,0.0048,0.059392,0.006144
+634,1763.24,0.567139,0.288448,0.004576,0.198496,0.005952,0.004288,0.005792,0.00576,0.004832,0.053248,0.005504
+635,703.116,1.42224,0.31744,0.008192,0.222944,0.004384,0.005888,0.005504,0.004992,0.007168,0.053696,0.004672
+636,1315.77,0.76001,0.303264,0.005376,0.209824,0.005408,0.004832,0.00608,0.00576,0.005728,0.055776,0.00448
+637,1404.42,0.712036,0.296768,0.005664,0.198944,0.004288,0.005952,0.006336,0.006144,0.005984,0.057504,0.005952
+638,1305.08,0.766235,0.293664,0.004896,0.200704,0.005888,0.004352,0.006144,0.005792,0.005728,0.055488,0.004672
+639,1494.62,0.669067,0.292864,0.005664,0.194848,0.004288,0.006016,0.006016,0.005792,0.004704,0.060736,0.0048
+640,1390.83,0.718994,0.291712,0.004928,0.19456,0.005472,0.004768,0.006144,0.006144,0.006144,0.059136,0.004416
+641,1358.32,0.736206,0.290848,0.00544,0.195264,0.005248,0.004992,0.006176,0.006112,0.005952,0.057248,0.004416
+642,1044.23,0.957642,0.291136,0.004576,0.200544,0.00576,0.004512,0.006112,0.005792,0.005664,0.054016,0.00416
+643,1384.25,0.722412,0.550912,0.005216,0.414624,0.008064,0.012416,0.032192,0.014656,0.005888,0.053408,0.004448
+644,929.747,1.07556,0.29728,0.004544,0.20384,0.00496,0.005344,0.004864,0.006144,0.005984,0.055456,0.006144
+645,1343.17,0.744507,0.294944,0.006016,0.200096,0.004832,0.005792,0.0056,0.004992,0.006144,0.055296,0.006176
+646,1362.38,0.734009,0.296352,0.005632,0.203168,0.005216,0.005088,0.005504,0.00496,0.005952,0.055296,0.005536
+647,1396.05,0.716309,0.290464,0.005504,0.195232,0.005888,0.005344,0.00512,0.006144,0.005664,0.055776,0.005792
+648,1420,0.704224,0.291872,0.005536,0.196704,0.004608,0.005632,0.00464,0.006112,0.006144,0.057216,0.00528
+649,1312.19,0.762085,0.288768,0.00576,0.192928,0.005824,0.004384,0.006144,0.00576,0.005728,0.057664,0.004576
+650,1517.6,0.658936,0.295168,0.004544,0.198208,0.004352,0.00592,0.005664,0.00608,0.004896,0.05936,0.006144
+651,1328.36,0.752808,0.293856,0.005088,0.196608,0.005152,0.005088,0.005504,0.004736,0.006144,0.059392,0.006144
+652,1479.5,0.675903,0.606368,0.005376,0.465824,0.03072,0.015776,0.012896,0.006144,0.006048,0.05744,0.006144
+653,786.784,1.271,0.294752,0.005856,0.196896,0.005184,0.005056,0.006176,0.006112,0.005792,0.057696,0.005984
+654,1561.87,0.640259,0.292416,0.006016,0.196736,0.005856,0.004416,0.005984,0.005728,0.00464,0.057344,0.005696
+655,1033.82,0.967285,0.366624,0.00592,0.268512,0.005888,0.004352,0.006144,0.006016,0.005792,0.059552,0.004448
+656,1063.21,0.940552,0.3464,0.005152,0.24368,0.005632,0.004608,0.005952,0.00576,0.00576,0.064448,0.005408
+657,1268.9,0.788086,0.337536,0.006048,0.235616,0.005632,0.004608,0.005984,0.00576,0.00576,0.062368,0.00576
+658,1352.71,0.739258,0.333824,0.006176,0.232544,0.004992,0.005312,0.004928,0.006144,0.006144,0.063008,0.004576
+659,1191.04,0.8396,0.370432,0.005376,0.268352,0.004992,0.005408,0.0048,0.006144,0.005984,0.063648,0.005728
+660,1136.04,0.880249,0.3432,0.005568,0.249888,0.00464,0.005568,0.004672,0.006144,0.006112,0.055296,0.005312
+661,701.43,1.42566,0.346528,0.006816,0.251552,0.004448,0.005824,0.005472,0.005088,0.006144,0.055296,0.005888
+662,1262.25,0.792236,0.324096,0.004608,0.231424,0.005312,0.004928,0.005664,0.005696,0.005024,0.056704,0.004736
+663,1218.68,0.820557,0.472736,0.005344,0.377664,0.00608,0.00416,0.006144,0.006176,0.005888,0.05552,0.00576
+664,1346.04,0.74292,0.296576,0.005856,0.200992,0.005248,0.004992,0.0056,0.005888,0.004896,0.057344,0.00576
+665,1065.42,0.938599,0.293856,0.005088,0.198656,0.005504,0.004736,0.005888,0.005792,0.004704,0.058656,0.004832
+666,1500.09,0.666626,0.298496,0.005376,0.200544,0.005024,0.005216,0.005024,0.006144,0.006112,0.059424,0.005632
+667,1091.98,0.915771,0.305152,0.00512,0.206816,0.005152,0.005088,0.005536,0.004736,0.006144,0.061248,0.005312
+668,1573.87,0.635376,0.546944,0.005408,0.438464,0.021152,0.005344,0.004896,0.006144,0.005952,0.05456,0.005024
+669,815.124,1.22681,0.30928,0.005344,0.19936,0.018528,0.006144,0.0056,0.006144,0.00592,0.057184,0.005056
+670,1543.04,0.648071,0.292896,0.006144,0.198656,0.005376,0.004864,0.005504,0.006048,0.004928,0.056544,0.004832
+671,1266.74,0.789429,0.291392,0.004672,0.198656,0.005856,0.004384,0.006144,0.00592,0.00576,0.055168,0.004832
+672,1073.66,0.931396,0.292128,0.006144,0.198016,0.004736,0.005536,0.004704,0.006144,0.006144,0.055296,0.005408
+673,1502.02,0.665771,0.297312,0.004544,0.202656,0.005824,0.005728,0.004832,0.006144,0.006144,0.056736,0.004704
+674,1384.49,0.72229,0.28672,0.005536,0.19312,0.005504,0.004736,0.005888,0.004544,0.005952,0.056384,0.005056
+675,1135.88,0.880371,0.301184,0.004864,0.193984,0.004672,0.017824,0.005952,0.004928,0.006112,0.057344,0.005504
+676,1747.07,0.572388,0.295456,0.004608,0.202752,0.005216,0.005024,0.005568,0.00576,0.005056,0.057056,0.004416
+677,669.39,1.4939,0.34592,0.007744,0.248512,0.006112,0.004128,0.006176,0.005984,0.005728,0.05584,0.005696
+678,1279.8,0.781372,0.309312,0.005376,0.215296,0.004704,0.005568,0.004672,0.006112,0.006144,0.057024,0.004416
+679,1443.27,0.692871,0.309248,0.006144,0.212992,0.005536,0.004704,0.005952,0.00576,0.005696,0.057376,0.005088
+680,689.156,1.45105,0.323456,0.00608,0.217152,0.00544,0.016704,0.005984,0.00576,0.005024,0.055296,0.006016
+681,1794.92,0.557129,0.287008,0.004416,0.194592,0.00592,0.004288,0.005664,0.005728,0.004992,0.055296,0.006112
+682,1216.51,0.822021,0.301024,0.005984,0.192704,0.00592,0.00432,0.007296,0.018496,0.004896,0.055296,0.006112
+683,818.382,1.22192,0.315424,0.006144,0.20688,0.005344,0.004864,0.00608,0.00576,0.00576,0.068416,0.006176
+684,1207.9,0.827881,0.529408,0.00512,0.43008,0.008192,0.005536,0.004704,0.006144,0.006144,0.057344,0.006144
+685,891.113,1.12219,0.31056,0.005568,0.21488,0.004832,0.005408,0.004832,0.006144,0.006016,0.057472,0.005408
+686,1329.87,0.751953,0.309344,0.00464,0.214048,0.005088,0.005216,0.005024,0.006144,0.005792,0.057696,0.005696
+687,1289.06,0.775757,0.47104,0.005472,0.375456,0.006112,0.00416,0.006112,0.006112,0.005792,0.057312,0.004512
+688,1312.4,0.761963,0.29456,0.0056,0.196352,0.004896,0.005376,0.004864,0.006144,0.006112,0.059424,0.005792
+689,1213.99,0.82373,0.3072,0.006016,0.208512,0.004608,0.005632,0.006176,0.005728,0.004992,0.059392,0.006144
+690,1384.25,0.722412,0.326016,0.004992,0.229376,0.00576,0.00448,0.00608,0.005856,0.005664,0.058176,0.005632
+691,1298.87,0.769897,0.302496,0.0056,0.2064,0.005088,0.005152,0.00512,0.006112,0.005856,0.057632,0.005536
+692,1435.43,0.696655,0.309216,0.004992,0.210272,0.004768,0.005536,0.004704,0.006144,0.006144,0.060928,0.005728
+693,779.745,1.28247,0.31456,0.008192,0.212992,0.005312,0.004928,0.005664,0.005984,0.00576,0.060416,0.005312
+694,1272.25,0.786011,0.297536,0.004704,0.204288,0.004576,0.005696,0.005728,0.00496,0.006144,0.057024,0.004416
+695,1288.86,0.775879,0.59728,0.00544,0.499616,0.004896,0.005408,0.004864,0.006112,0.006144,0.059392,0.005408
+696,962.406,1.03906,0.29504,0.005984,0.200416,0.004544,0.005728,0.006016,0.005792,0.004992,0.057152,0.004416
+697,1608.17,0.621826,0.295552,0.004768,0.200576,0.004192,0.006048,0.0056,0.00592,0.00496,0.058464,0.005024
+698,884.092,1.1311,0.29296,0.005408,0.196768,0.0048,0.005472,0.004768,0.006144,0.005952,0.057536,0.006112
+699,1263.22,0.791626,0.306368,0.005376,0.207808,0.006144,0.00416,0.00608,0.006144,0.006048,0.059264,0.005344
+700,1325.35,0.754517,0.306176,0.006048,0.204896,0.006048,0.004192,0.007264,0.005024,0.006144,0.061248,0.005312
+701,750.664,1.33215,0.346112,0.008192,0.24704,0.004864,0.005376,0.005952,0.005056,0.006144,0.05936,0.004128
+702,1267.52,0.78894,0.319616,0.005376,0.224224,0.005728,0.004512,0.00608,0.00592,0.005792,0.055936,0.006048
+703,1164.79,0.858521,0.489472,0.0056,0.377376,0.006144,0.00512,0.021504,0.006048,0.005792,0.056928,0.00496
+704,1484.6,0.673584,0.300544,0.0056,0.205376,0.005248,0.00496,0.0056,0.0048,0.005984,0.057344,0.005632
+705,1220.68,0.819214,0.297856,0.004992,0.202784,0.005632,0.004576,0.006016,0.005728,0.005728,0.057504,0.004896
+706,1086.9,0.920044,0.314368,0.00576,0.217248,0.00432,0.005952,0.005472,0.004992,0.006112,0.0592,0.005312
+707,1303.21,0.767334,0.330272,0.00464,0.23488,0.004736,0.005504,0.004736,0.006144,0.006144,0.058592,0.004896
+708,1208.44,0.827515,0.544736,0.005024,0.421888,0.028672,0.005216,0.005056,0.006112,0.005792,0.061632,0.005344
+709,910.121,1.09875,0.313376,0.006112,0.217024,0.004192,0.006048,0.005504,0.005888,0.005088,0.058944,0.004576
+710,1237.84,0.807861,0.325984,0.004608,0.229376,0.006048,0.004192,0.006144,0.006144,0.006016,0.057472,0.005984
+711,1412.17,0.70813,0.299072,0.00544,0.203168,0.004448,0.005632,0.006688,0.005888,0.005952,0.057376,0.00448
+712,1068.06,0.936279,0.311872,0.004672,0.213024,0.005632,0.005632,0.00512,0.006112,0.005696,0.061344,0.00464
+713,1491.62,0.67041,0.30848,0.005952,0.20704,0.006048,0.004192,0.006144,0.006048,0.005408,0.062272,0.005376
+714,1387.53,0.720703,0.29984,0.004928,0.198656,0.006112,0.004128,0.006144,0.006048,0.005728,0.063168,0.004928
+715,805.506,1.24146,0.301056,0.00544,0.201408,0.005184,0.005056,0.005536,0.005728,0.00512,0.062976,0.004608
+716,1543.62,0.647827,0.61824,0.004768,0.468,0.031232,0.018464,0.014784,0.00576,0.005696,0.064224,0.005312
+717,802.744,1.24573,0.307552,0.004576,0.208064,0.004768,0.005504,0.004768,0.006112,0.006144,0.06288,0.004736
+718,1385.42,0.721802,0.30112,0.005376,0.199328,0.004384,0.005888,0.00624,0.00608,0.005696,0.063328,0.0048
+719,1332.03,0.750732,0.493408,0.006176,0.394848,0.00448,0.005824,0.005504,0.005056,0.006176,0.05936,0.005984
+720,1047.03,0.955078,0.29696,0.006144,0.19456,0.006144,0.004096,0.006144,0.006112,0.005824,0.061792,0.006144
+721,1666.73,0.599976,0.306176,0.005632,0.198272,0.004992,0.00528,0.00496,0.006144,0.006144,0.069472,0.00528
+722,1374.04,0.727783,0.297664,0.004768,0.19456,0.00592,0.00432,0.006144,0.006144,0.006112,0.065184,0.004512
+723,1291.91,0.774048,0.297664,0.0048,0.19776,0.004992,0.00528,0.00496,0.006144,0.006144,0.062848,0.004736
+724,1398.67,0.714966,0.302048,0.00512,0.202528,0.004416,0.005856,0.00432,0.006112,0.006144,0.06144,0.006112
+725,731.298,1.36743,0.3064,0.008192,0.203968,0.004928,0.005312,0.006176,0.004896,0.006144,0.06144,0.005344
+726,1579.33,0.633179,0.298592,0.005376,0.199488,0.005312,0.004928,0.005568,0.00576,0.005056,0.06144,0.005664
+727,1359.22,0.735718,0.298528,0.006016,0.197952,0.004928,0.005472,0.004768,0.006144,0.006144,0.06144,0.005664
+728,1513.11,0.660889,0.477408,0.005056,0.376832,0.006144,0.00512,0.00512,0.006016,0.005696,0.062016,0.005408
+729,1066.67,0.9375,0.29504,0.005024,0.19456,0.005632,0.004608,0.006144,0.006144,0.006144,0.06144,0.005344
+730,1370.82,0.729492,0.294912,0.005792,0.200832,0.004384,0.00608,0.005728,0.00576,0.004896,0.05712,0.00432
+731,1292.73,0.77356,0.297472,0.004576,0.202752,0.006112,0.005184,0.005088,0.006144,0.006144,0.05664,0.004832
+732,1445.56,0.691772,0.297664,0.0048,0.204,0.004896,0.005344,0.004896,0.006144,0.00592,0.056672,0.004992
+733,1354.72,0.738159,0.54304,0.004384,0.423872,0.030784,0.006112,0.005472,0.00592,0.005024,0.056864,0.004608
+734,862.134,1.15991,0.292864,0.006144,0.19968,0.005152,0.004064,0.006144,0.005728,0.005792,0.054016,0.006144
+735,1393.67,0.717529,0.292608,0.005408,0.196768,0.004832,0.005408,0.006272,0.005728,0.00512,0.057344,0.005728
+736,1527.79,0.654541,0.2952,0.004352,0.1984,0.004416,0.00592,0.005536,0.006464,0.00576,0.059424,0.004928
+737,1183.82,0.844727,0.291104,0.004576,0.196352,0.00416,0.006112,0.00544,0.006048,0.005984,0.056288,0.006144
+738,1409.01,0.709717,0.288768,0.005632,0.194304,0.004864,0.005376,0.004864,0.006144,0.005888,0.056736,0.00496
+739,1364.88,0.732666,0.290144,0.005856,0.194592,0.004352,0.005888,0.005792,0.005824,0.005024,0.057344,0.005472
+740,1303.63,0.76709,0.290368,0.005344,0.195136,0.004512,0.005728,0.004544,0.006144,0.005824,0.057632,0.005504
+741,890.628,1.1228,0.303872,0.004864,0.21008,0.00496,0.00528,0.00496,0.006112,0.005728,0.055776,0.006112
+742,1079.31,0.926514,0.303104,0.008192,0.206848,0.00528,0.00496,0.005536,0.004704,0.006144,0.056608,0.004832
+743,1501.47,0.666016,0.296032,0.005536,0.198816,0.004544,0.005696,0.004672,0.006016,0.006144,0.059296,0.005312
+744,1444.29,0.692383,0.294784,0.005376,0.199296,0.004384,0.005984,0.005472,0.004928,0.005984,0.057376,0.005984
+745,1283.61,0.779053,0.506144,0.004544,0.4096,0.005696,0.004544,0.006048,0.005728,0.005728,0.058272,0.005984
+746,1135.26,0.880859,0.292864,0.006144,0.195648,0.005056,0.005216,0.005024,0.006144,0.006016,0.058976,0.00464
+747,1366.24,0.731934,0.299008,0.005664,0.20448,0.004896,0.005344,0.004896,0.006144,0.006112,0.05648,0.004992
+748,1522.11,0.656982,0.293024,0.005376,0.197024,0.00464,0.005632,0.00464,0.00608,0.005984,0.0592,0.004448
+749,1179.89,0.847534,0.291008,0.005376,0.195456,0.005248,0.005056,0.00544,0.006272,0.005696,0.05632,0.006144
+750,1663.35,0.601196,0.29696,0.006144,0.201792,0.005056,0.005216,0.005024,0.005984,0.005792,0.05712,0.004832
+751,633.614,1.57825,0.302816,0.008192,0.202784,0.005824,0.004384,0.006144,0.006144,0.006112,0.057376,0.005856
+752,1572.96,0.635742,0.2976,0.004736,0.20176,0.005088,0.004096,0.006144,0.006144,0.005888,0.058624,0.00512
+753,1334.64,0.749268,0.311296,0.006144,0.19456,0.005152,0.005088,0.005632,0.00576,0.004992,0.077824,0.006144
+754,1172.46,0.852905,0.296992,0.005376,0.194976,0.00448,0.00576,0.00448,0.006144,0.006112,0.06352,0.006144
+755,1379.59,0.724854,0.292864,0.005664,0.192384,0.004704,0.005568,0.004672,0.006144,0.006048,0.06272,0.00496
+756,1540.43,0.64917,0.314592,0.021856,0.195232,0.0056,0.00464,0.006144,0.005984,0.005824,0.063968,0.005344
+757,1377.96,0.725708,0.294912,0.005568,0.193088,0.006144,0.00432,0.00592,0.006016,0.005728,0.063232,0.004896
+758,948.807,1.05396,0.304,0.005088,0.206496,0.004448,0.005824,0.005472,0.005088,0.006144,0.059392,0.006048
+759,748.47,1.33606,0.306912,0.008192,0.2048,0.005728,0.004512,0.005984,0.00576,0.006272,0.059808,0.005856
+760,1543.91,0.647705,0.302112,0.006112,0.19808,0.004704,0.005312,0.004928,0.006112,0.005664,0.065888,0.005312
+761,1373.34,0.728149,0.290112,0.0056,0.193056,0.0056,0.00464,0.006144,0.006144,0.00592,0.057568,0.00544
+762,1407.08,0.710693,0.475136,0.005568,0.378976,0.004576,0.005728,0.004672,0.005984,0.006144,0.0584,0.005088
+763,1076.34,0.929077,0.288448,0.006144,0.192512,0.006016,0.004224,0.006144,0.006016,0.005728,0.05584,0.005824
+764,1219.77,0.819824,0.305184,0.00544,0.209312,0.004416,0.005856,0.005568,0.00496,0.006144,0.058848,0.00464
+765,1725.36,0.57959,0.290816,0.006144,0.19456,0.006144,0.005152,0.00512,0.006112,0.005696,0.055776,0.006112
+766,1296.61,0.77124,0.296544,0.005952,0.200896,0.005632,0.004608,0.005952,0.005728,0.004704,0.057344,0.005728
+767,1211.3,0.825562,0.58368,0.006176,0.446432,0.043008,0.006208,0.00608,0.00592,0.005664,0.059232,0.00496
+768,875.12,1.1427,0.294912,0.005824,0.19616,0.004864,0.005408,0.00496,0.006016,0.006144,0.060608,0.004928
+769,1264.98,0.790527,0.304384,0.006144,0.19424,0.004416,0.005856,0.005504,0.018336,0.006432,0.05808,0.005376
+770,1719.92,0.581421,0.290848,0.006016,0.194688,0.005664,0.004576,0.006048,0.00576,0.005728,0.057568,0.0048
+771,1091.54,0.916138,0.294912,0.006144,0.19664,0.005472,0.004736,0.00608,0.005952,0.005888,0.059424,0.004576
+772,1381.22,0.723999,0.290976,0.004736,0.19456,0.005408,0.004832,0.005728,0.00592,0.005888,0.05824,0.005664
+773,1436.19,0.696289,0.2912,0.00448,0.195648,0.005088,0.005152,0.005056,0.006144,0.006048,0.059264,0.00432
+774,1332.03,0.750732,0.288768,0.006048,0.192576,0.00416,0.005856,0.00448,0.006048,0.006144,0.057312,0.006144
+775,1084.32,0.922241,0.307296,0.005344,0.211168,0.0048,0.005472,0.004736,0.006144,0.00592,0.059104,0.004608
+776,726.241,1.37695,0.303552,0.006688,0.208832,0.005408,0.0048,0.005792,0.006304,0.00576,0.053824,0.006144
+777,1380.29,0.724487,0.296864,0.00464,0.195744,0.00496,0.00528,0.00496,0.006112,0.006176,0.055296,0.013696
+778,1406.83,0.710815,0.28736,0.004736,0.195744,0.00496,0.00528,0.00496,0.006144,0.005536,0.055456,0.004544
+779,1263.42,0.791504,0.473088,0.005696,0.379328,0.005984,0.004256,0.006144,0.006016,0.00576,0.055392,0.004512
+780,1322.78,0.755981,0.29872,0.014336,0.19456,0.005632,0.004608,0.006144,0.006048,0.005728,0.055808,0.005856
+781,1349.14,0.741211,0.298336,0.006144,0.192544,0.005984,0.004224,0.006144,0.00608,0.005664,0.065824,0.005728
+782,1397,0.71582,0.288768,0.00544,0.193216,0.005408,0.004832,0.006144,0.005856,0.005696,0.057728,0.004448
+783,1461.03,0.684448,0.301792,0.004832,0.202752,0.006112,0.00416,0.006112,0.005824,0.0056,0.061856,0.004544
+784,1178.54,0.848511,0.298848,0.00496,0.20224,0.004608,0.005632,0.004608,0.006144,0.006144,0.0592,0.005312
+785,729.995,1.36987,0.297952,0.007136,0.200704,0.005856,0.004384,0.006144,0.005664,0.005728,0.057536,0.0048
+786,1371.28,0.729248,0.291744,0.00512,0.19632,0.004384,0.005856,0.005536,0.004992,0.006144,0.057344,0.006048
+787,1513.95,0.660522,0.291488,0.004768,0.196608,0.00528,0.00496,0.005568,0.0064,0.006016,0.056896,0.004992
+788,1134,0.881836,0.28976,0.005088,0.194496,0.004192,0.006048,0.005344,0.00496,0.006176,0.059104,0.004352
+789,1381.68,0.723755,0.28928,0.004608,0.193728,0.004928,0.00544,0.006624,0.005856,0.005792,0.057664,0.00464
+790,1314.93,0.760498,0.294624,0.005568,0.19472,0.004512,0.005728,0.0064,0.005792,0.005728,0.06032,0.005856
+791,758.168,1.31897,0.306752,0.005344,0.20768,0.005216,0.005024,0.005792,0.005856,0.004736,0.06144,0.005664
+792,1090.96,0.916626,0.5136,0.016192,0.395456,0.006144,0.005728,0.004672,0.005984,0.006144,0.067584,0.005696
+793,1198.89,0.834106,0.302784,0.005888,0.195872,0.005088,0.005184,0.005152,0.006048,0.006144,0.067584,0.005824
+794,1305.5,0.765991,0.30848,0.006016,0.209024,0.005952,0.004288,0.006144,0.006144,0.005984,0.059552,0.005376
+795,1466,0.682129,0.30048,0.006176,0.202624,0.005408,0.004352,0.006016,0.004896,0.00608,0.05936,0.005568
+796,1032.26,0.96875,0.29504,0.00544,0.196832,0.004832,0.005408,0.004864,0.005856,0.005728,0.060064,0.006016
+797,1569.05,0.637329,0.294624,0.00576,0.194112,0.00496,0.005312,0.004896,0.006144,0.005824,0.06176,0.005856
+798,1251.83,0.798828,0.293792,0.005024,0.194592,0.005888,0.00432,0.006144,0.005888,0.00624,0.060672,0.005024
+799,1733.02,0.577026,0.296832,0.005696,0.19664,0.005888,0.004768,0.00592,0.005728,0.004736,0.06144,0.006016
+800,1426.68,0.700928,0.290848,0.00608,0.194624,0.005184,0.005056,0.005344,0.00496,0.00608,0.057344,0.006176
+801,655.308,1.526,0.37488,0.007584,0.254048,0.004704,0.005568,0.004672,0.016384,0.006304,0.069472,0.006144
+802,1475.24,0.677856,0.300672,0.004544,0.202592,0.006016,0.004224,0.006144,0.006048,0.005888,0.059744,0.005472
+803,1490.54,0.670898,0.301504,0.004544,0.20224,0.004608,0.00608,0.005504,0.004928,0.006016,0.062912,0.004672
+804,1309.67,0.76355,0.475136,0.006144,0.37824,0.004736,0.0056,0.004672,0.006112,0.006112,0.058784,0.004736
+805,1152.18,0.86792,0.293888,0.00592,0.194784,0.005568,0.004672,0.005856,0.00576,0.005888,0.060128,0.005312
+806,1356.74,0.737061,0.292416,0.006016,0.194688,0.005984,0.004256,0.006144,0.006144,0.006144,0.057344,0.005696
+807,1569.95,0.636963,0.296,0.006016,0.196512,0.004416,0.006048,0.005888,0.005728,0.00496,0.06112,0.005312
+808,1353.83,0.738647,0.298624,0.006144,0.196608,0.005888,0.004352,0.006016,0.00592,0.005888,0.062048,0.00576
+809,1432.17,0.698242,0.556864,0.00544,0.426784,0.028704,0.005312,0.004928,0.006112,0.005792,0.067936,0.005856
+810,831.253,1.203,0.301056,0.006144,0.196608,0.00576,0.00448,0.006144,0.005984,0.005696,0.065568,0.004672
+811,1508.38,0.662964,0.300672,0.005376,0.197376,0.004256,0.006144,0.005984,0.005824,0.005856,0.064256,0.0056
+812,1427.68,0.700439,0.295488,0.004672,0.19456,0.00592,0.00432,0.006144,0.005856,0.00576,0.063776,0.00448
+813,1195.21,0.83667,0.299008,0.005728,0.197024,0.005664,0.004576,0.005824,0.005728,0.004832,0.064768,0.004864
+814,1326.21,0.754028,0.29696,0.006144,0.195776,0.00496,0.005312,0.004896,0.006144,0.00592,0.062944,0.004864
+815,1598.13,0.625732,0.293568,0.0048,0.196608,0.0056,0.00464,0.006144,0.005952,0.005664,0.05968,0.00448
+816,1390.36,0.719238,0.290528,0.005376,0.193376,0.005888,0.004352,0.006144,0.005568,0.005728,0.058336,0.00576
+817,1339.66,0.74646,0.293984,0.005504,0.1952,0.00528,0.00496,0.0056,0.00576,0.005024,0.061344,0.005312
+818,1416.32,0.706055,0.297728,0.004864,0.199808,0.004992,0.004128,0.006112,0.005856,0.005728,0.061472,0.004768
+819,684.035,1.46191,0.303104,0.008192,0.198656,0.005344,0.004896,0.00592,0.006016,0.005856,0.063296,0.004928
+820,840.809,1.18933,0.328128,0.004544,0.219136,0.005856,0.004384,0.006144,0.005856,0.005696,0.06192,0.014592
+821,956.004,1.04602,0.298624,0.006144,0.196576,0.005248,0.005024,0.005568,0.004704,0.006112,0.063488,0.00576
+822,1538.69,0.649902,0.297888,0.005024,0.196608,0.005664,0.004576,0.006144,0.005888,0.00592,0.06192,0.006144
+823,1308,0.764526,0.311104,0.006144,0.192544,0.020224,0.005536,0.004928,0.006176,0.006016,0.063584,0.005952
+824,1493.8,0.669434,0.299008,0.005344,0.196832,0.004672,0.005568,0.005984,0.004832,0.006176,0.064704,0.004896
+825,1320.86,0.75708,0.303104,0.005664,0.196192,0.004992,0.005312,0.004928,0.006144,0.006048,0.06768,0.006144
+826,1122.04,0.891235,0.515264,0.016128,0.39552,0.006144,0.005184,0.005056,0.006144,0.00592,0.069856,0.005312
+827,1013.49,0.986694,0.32528,0.004736,0.223232,0.005952,0.004288,0.006144,0.005888,0.005792,0.063936,0.005312
+828,1389.65,0.719604,0.335488,0.004608,0.23296,0.004608,0.005664,0.004576,0.006144,0.006144,0.06544,0.005344
+829,1383.08,0.723022,0.296,0.006144,0.190464,0.006016,0.004224,0.006176,0.006112,0.00576,0.065792,0.005312
+830,1133.53,0.882202,0.299328,0.004608,0.194016,0.004608,0.005664,0.004576,0.006176,0.006112,0.067584,0.005984
+831,1172.13,0.853149,0.299584,0.004672,0.194144,0.004512,0.005952,0.005504,0.004928,0.006144,0.068672,0.005056
+832,1656.29,0.60376,0.300352,0.006144,0.1944,0.004256,0.006016,0.005536,0.004928,0.006048,0.067584,0.00544
+833,1255.48,0.796509,0.305152,0.005728,0.200832,0.004384,0.005856,0.005504,0.006272,0.004928,0.067136,0.004512
+834,1550.05,0.645142,0.303136,0.006144,0.202752,0.005344,0.004896,0.006016,0.005856,0.005696,0.061888,0.004544
+835,715.458,1.39771,0.313344,0.008224,0.204704,0.00416,0.00592,0.00544,0.005024,0.006144,0.068896,0.004832
+836,1396.76,0.715942,0.29648,0.00608,0.19568,0.005088,0.005152,0.005088,0.00608,0.005664,0.061984,0.005664
+837,1310.09,0.763306,0.294912,0.00544,0.193248,0.006112,0.004096,0.007168,0.00512,0.005984,0.0616,0.006144
+838,1309.46,0.763672,0.297952,0.005088,0.197984,0.004768,0.005344,0.004896,0.006144,0.005984,0.063168,0.004576
+839,932.817,1.07202,0.298432,0.006144,0.192512,0.00592,0.004352,0.00608,0.005984,0.005888,0.065984,0.005568
+840,1071.69,0.933105,0.31744,0.005536,0.212672,0.005024,0.005216,0.005024,0.00608,0.005792,0.067008,0.005088
+841,1312.82,0.761719,0.361248,0.004896,0.259488,0.004704,0.0056,0.004672,0.006112,0.006144,0.065056,0.004576
+842,1535.23,0.651367,0.305152,0.005504,0.201344,0.00528,0.00496,0.00544,0.004992,0.005952,0.065536,0.006144
+843,728.372,1.37292,0.315616,0.006912,0.210176,0.004864,0.005376,0.004896,0.006112,0.006048,0.065632,0.0056
+844,1355.84,0.737549,0.29952,0.004608,0.198176,0.004576,0.005664,0.004576,0.006144,0.006144,0.063488,0.006144
+845,1389.65,0.719604,0.300896,0.004544,0.198656,0.005344,0.004896,0.0056,0.005696,0.005088,0.065344,0.005728
+846,1325.35,0.754517,0.303104,0.005344,0.199648,0.006016,0.00576,0.004704,0.006016,0.006144,0.063488,0.005984
+847,1440.73,0.694092,0.297216,0.0048,0.19456,0.005984,0.004256,0.006144,0.005728,0.005728,0.06432,0.005696
+848,1387.3,0.720825,0.300832,0.005344,0.19536,0.00592,0.00432,0.007392,0.00496,0.00608,0.065536,0.00592
+849,1354.27,0.738403,0.300128,0.006144,0.194528,0.005152,0.00512,0.005792,0.005856,0.005888,0.066336,0.005312
+850,1489.45,0.671387,0.29888,0.006144,0.198272,0.00448,0.005568,0.004704,0.006112,0.005856,0.061728,0.006016
+851,624.485,1.60132,0.305504,0.007552,0.199648,0.005568,0.004672,0.005952,0.005568,0.004864,0.0656,0.00608
+852,1373.11,0.728271,0.297056,0.005408,0.19472,0.004736,0.005536,0.004704,0.006144,0.006112,0.064704,0.004992
+853,1388.24,0.720337,0.317568,0.006144,0.21504,0.005248,0.004992,0.005824,0.005888,0.005856,0.06416,0.004416
+854,1547.41,0.64624,0.495616,0.006144,0.3808,0.016512,0.006016,0.005472,0.00496,0.00608,0.06464,0.004992
+855,1007.5,0.992554,0.292864,0.00576,0.192192,0.004832,0.005248,0.00496,0.006016,0.005792,0.06352,0.004544
+856,1289.67,0.775391,0.294912,0.005952,0.192704,0.005216,0.005024,0.005568,0.006464,0.006272,0.063392,0.00432
+857,887.541,1.12671,0.338336,0.004512,0.233312,0.004416,0.005856,0.00528,0.006464,0.005888,0.067648,0.00496
+858,1290.69,0.77478,0.344032,0.005824,0.223552,0.005216,0.005024,0.005568,0.005792,0.005024,0.067552,0.02048
+859,1417.79,0.705322,0.552608,0.00576,0.440288,0.014304,0.004544,0.006048,0.00576,0.005728,0.064384,0.005792
+860,812.537,1.23071,0.302176,0.00592,0.19888,0.005856,0.004384,0.006048,0.00592,0.005888,0.063936,0.005344
+861,1379.82,0.724731,0.294912,0.005824,0.196096,0.004928,0.005344,0.004928,0.006112,0.005696,0.061536,0.004448
+862,1542.46,0.648315,0.48976,0.004384,0.37888,0.00608,0.00416,0.006176,0.006048,0.005664,0.072224,0.006144
+863,1128.69,0.885986,0.296992,0.005568,0.194816,0.004416,0.006016,0.005536,0.004928,0.006048,0.064832,0.004832
+864,1423.46,0.702515,0.29568,0.004832,0.192512,0.005792,0.004448,0.00608,0.005536,0.005824,0.06576,0.004896
+865,1363.97,0.733154,0.294912,0.005408,0.193248,0.005792,0.004448,0.00608,0.006048,0.005792,0.063744,0.004352
+866,1575.99,0.634521,0.298144,0.005408,0.197344,0.005216,0.005024,0.0056,0.006464,0.005696,0.06208,0.005312
+867,1362.38,0.734009,0.6288,0.004544,0.48944,0.044448,0.004704,0.006016,0.00592,0.005888,0.062048,0.005792
+868,760.985,1.31409,0.300736,0.004544,0.198656,0.005792,0.005728,0.004864,0.006144,0.005888,0.063744,0.005376
+869,1411.2,0.708618,0.299008,0.00592,0.194784,0.005504,0.004736,0.0056,0.005888,0.004896,0.06688,0.0048
+870,1564.85,0.639038,0.300256,0.005376,0.195424,0.006144,0.005536,0.004704,0.006144,0.006144,0.065472,0.005312
+871,1430.92,0.698853,0.484928,0.006144,0.382496,0.004576,0.005728,0.004672,0.005984,0.006144,0.063488,0.005696
+872,1115.92,0.896118,0.298112,0.006016,0.19264,0.005248,0.004992,0.006144,0.005984,0.005728,0.066016,0.005344
+873,1339,0.746826,0.299264,0.004384,0.194528,0.00528,0.00496,0.005504,0.005888,0.004992,0.069152,0.004576
+874,1518.72,0.658447,0.317696,0.004928,0.212608,0.00448,0.005792,0.00464,0.005952,0.006144,0.067584,0.005568
+875,1364.2,0.733032,0.299744,0.004864,0.195584,0.00512,0.00512,0.00512,0.005984,0.005856,0.065984,0.006112
+876,1042.11,0.959595,0.576256,0.004864,0.442368,0.034816,0.005344,0.004896,0.006144,0.006144,0.066592,0.005088
+877,927.326,1.07837,0.304224,0.005408,0.199008,0.00448,0.005792,0.005504,0.005088,0.006144,0.067328,0.005472
+878,1507.27,0.663452,0.306112,0.005056,0.202144,0.004704,0.005376,0.004864,0.005952,0.005664,0.06768,0.004672
+879,1269.29,0.787842,0.300768,0.004576,0.196512,0.005344,0.004896,0.005984,0.00576,0.005728,0.066496,0.005472
+880,1259.34,0.794067,0.30256,0.005376,0.20112,0.004544,0.005728,0.004544,0.006144,0.006112,0.063488,0.005504
+881,1296.2,0.771484,0.312704,0.005376,0.196704,0.004992,0.004096,0.006144,0.005888,0.006048,0.077728,0.005728
+882,1601.25,0.624512,0.297024,0.005376,0.195392,0.00544,0.0048,0.00576,0.00576,0.004864,0.063488,0.006144
+883,1362.38,0.734009,0.2952,0.004352,0.194368,0.004416,0.005856,0.005504,0.004896,0.006144,0.063488,0.006176
+884,1304.04,0.766846,0.297056,0.005376,0.197216,0.004352,0.00592,0.005472,0.006304,0.00496,0.06304,0.004416
+885,1482.45,0.674561,0.598592,0.00464,0.432128,0.069632,0.00608,0.005408,0.004992,0.006048,0.064896,0.004768
+886,735.963,1.35876,0.315072,0.004576,0.212832,0.004192,0.006048,0.005504,0.004832,0.006144,0.065536,0.005408
+887,1398.19,0.71521,0.313344,0.005792,0.21296,0.00448,0.005792,0.00464,0.005952,0.006144,0.062976,0.004608
+888,1223.78,0.817139,0.311296,0.006144,0.208896,0.00544,0.0048,0.005792,0.00576,0.004928,0.063392,0.006144
+889,1294.97,0.772217,0.299584,0.005088,0.197984,0.004768,0.005504,0.004736,0.006144,0.006048,0.063584,0.005728
+890,1412.9,0.707764,0.29904,0.005792,0.194944,0.00528,0.004928,0.006144,0.006144,0.006144,0.065152,0.004512
+891,1452.74,0.688354,0.298528,0.005408,0.193248,0.005664,0.004576,0.006048,0.006048,0.005696,0.066176,0.005664
+892,1329.65,0.752075,0.29696,0.006144,0.194112,0.004544,0.005696,0.00464,0.006048,0.006016,0.063616,0.006144
+893,1551.81,0.644409,0.301408,0.004576,0.201696,0.00512,0.005312,0.004928,0.006144,0.005888,0.061696,0.006048
+894,700.351,1.42786,0.307872,0.007104,0.20624,0.004672,0.005568,0.004672,0.006144,0.006048,0.061536,0.005888
+895,892.472,1.12048,0.323232,0.005568,0.219968,0.0056,0.00464,0.005856,0.005856,0.005824,0.06432,0.0056
+896,1407.8,0.710327,0.298752,0.005888,0.200032,0.004928,0.004192,0.006144,0.005792,0.006176,0.059712,0.005888
+897,1265.37,0.790283,0.294912,0.005792,0.19696,0.005312,0.004928,0.005536,0.005792,0.005056,0.060448,0.005088
+898,1441.49,0.693726,0.29696,0.005344,0.195552,0.005952,0.004288,0.006144,0.005728,0.005824,0.062208,0.00592
+899,1365.33,0.732422,0.301152,0.004768,0.196608,0.005312,0.004928,0.005664,0.006048,0.005792,0.066464,0.005568
+900,1462.86,0.683594,0.302272,0.005952,0.194752,0.005824,0.004416,0.006112,0.00576,0.006432,0.067712,0.005312
+901,1405.63,0.711426,0.30512,0.005344,0.199552,0.005696,0.004544,0.005888,0.005728,0.004768,0.067584,0.006016
+902,733.327,1.36365,0.316768,0.007552,0.210784,0.00496,0.00528,0.00496,0.006144,0.00576,0.06592,0.005408
+903,1239.52,0.806763,0.307008,0.005344,0.201344,0.004416,0.005888,0.004352,0.006112,0.006144,0.067584,0.005824
+904,1410.95,0.70874,0.308,0.004896,0.204768,0.00528,0.004992,0.005856,0.006016,0.005888,0.06416,0.006144
+905,1474.97,0.677979,0.489472,0.006144,0.376832,0.00592,0.00432,0.006144,0.006112,0.005792,0.072064,0.006144
+906,1107.78,0.90271,0.304928,0.004576,0.198688,0.005632,0.004576,0.006048,0.00624,0.00576,0.067968,0.00544
+907,1417.55,0.705444,0.30624,0.00592,0.20032,0.004704,0.005568,0.004672,0.006144,0.006144,0.067424,0.005344
+908,1379.36,0.724976,0.309248,0.005952,0.200896,0.005888,0.004352,0.007488,0.005824,0.005152,0.068672,0.005024
+909,1465.47,0.682373,0.311296,0.006144,0.200096,0.004704,0.006144,0.00544,0.004928,0.006016,0.072992,0.004832
+910,1434.42,0.697144,0.595808,0.005504,0.486016,0.008192,0.005152,0.005088,0.006112,0.005824,0.067936,0.005984
+911,780.711,1.28088,0.309472,0.005344,0.202816,0.005056,0.005216,0.006112,0.005056,0.006144,0.069184,0.004544
+912,1433.42,0.697632,0.304576,0.004576,0.196544,0.006016,0.00528,0.005088,0.006144,0.005696,0.069888,0.005344
+913,766.898,1.30396,0.326496,0.004992,0.215008,0.00544,0.0048,0.005824,0.006464,0.005824,0.073376,0.004768
+914,1171.46,0.853638,0.323488,0.004608,0.21504,0.005824,0.004416,0.006144,0.005792,0.006048,0.07008,0.005536
+915,1587.9,0.629761,0.310112,0.00496,0.200032,0.0048,0.005472,0.006688,0.005728,0.005664,0.07168,0.005088
+916,1362.38,0.734009,0.309248,0.006144,0.198592,0.00416,0.006144,0.006016,0.005728,0.005664,0.07184,0.00496
+917,1433.92,0.697388,0.308768,0.005504,0.200736,0.004704,0.005568,0.004672,0.006144,0.006048,0.069728,0.005664
+918,1188.62,0.841309,0.305792,0.004736,0.198688,0.005568,0.00464,0.005984,0.005824,0.005824,0.0696,0.004928
+919,710.741,1.40698,0.32304,0.007776,0.215456,0.005952,0.004288,0.006144,0.006144,0.006016,0.065664,0.0056
+920,1443.52,0.692749,0.302912,0.005824,0.198784,0.004288,0.005952,0.00432,0.006112,0.006144,0.065536,0.005952
+921,1569.05,0.637329,0.301056,0.006144,0.198656,0.005408,0.004832,0.006048,0.005824,0.006176,0.063648,0.00432
+922,1219.59,0.819946,0.299008,0.006048,0.196,0.0048,0.005472,0.004768,0.006144,0.005792,0.065312,0.004672
+923,1426.68,0.700928,0.299008,0.006048,0.196128,0.004672,0.0056,0.00464,0.006176,0.00592,0.06496,0.004864
+924,1384.49,0.72229,0.2976,0.004736,0.19584,0.004864,0.005408,0.004832,0.006144,0.006144,0.064896,0.004736
+925,1569.35,0.637207,0.301312,0.005088,0.196608,0.006048,0.00576,0.00464,0.00608,0.006144,0.065536,0.005408
+926,1361.48,0.734497,0.298624,0.004576,0.197856,0.0048,0.00544,0.0048,0.006144,0.00592,0.063712,0.005376
+927,1402.26,0.713135,0.5424,0.006144,0.434176,0.008192,0.005536,0.004704,0.006144,0.00608,0.0656,0.005824
+928,818.709,1.22144,0.298944,0.006016,0.19472,0.006048,0.005376,0.004928,0.006144,0.005792,0.06384,0.00608
+929,1585.75,0.630615,0.303104,0.006144,0.197856,0.004896,0.00512,0.005024,0.00576,0.005696,0.06752,0.005088
+930,1279.4,0.781616,0.299008,0.00576,0.194944,0.00576,0.00448,0.006048,0.00576,0.006208,0.065056,0.004992
+931,729.995,1.36987,0.336096,0.005344,0.228,0.004416,0.005856,0.00544,0.005088,0.006144,0.071392,0.004416
+932,1618.01,0.618042,0.305408,0.004864,0.202272,0.004576,0.005728,0.006208,0.00592,0.005728,0.06448,0.005632
+933,1400.34,0.714111,0.306496,0.006176,0.200128,0.00464,0.0056,0.006208,0.005728,0.004992,0.067584,0.00544
+934,1348.03,0.741821,0.302464,0.006112,0.19664,0.005312,0.004928,0.006048,0.00576,0.005696,0.066464,0.005504
+935,1466.26,0.682007,0.553088,0.005376,0.428928,0.024576,0.005216,0.005024,0.006144,0.006016,0.066976,0.004832
+936,824.145,1.21338,0.30128,0.004544,0.196512,0.005408,0.0048,0.006144,0.00592,0.005696,0.066208,0.006048
+937,1532.93,0.652344,0.310912,0.00608,0.206912,0.005312,0.004896,0.004256,0.006016,0.006144,0.065536,0.00576
+938,1379.82,0.724731,0.309248,0.0056,0.195008,0.005248,0.005088,0.006112,0.005696,0.005792,0.075808,0.004896
+939,1195.39,0.836548,0.300896,0.005536,0.195168,0.005792,0.004448,0.006112,0.005728,0.005696,0.066464,0.005952
+940,1381.45,0.723877,0.299744,0.004832,0.19584,0.004864,0.005952,0.005632,0.0048,0.006176,0.065504,0.006144
+941,1487.83,0.672119,0.31792,0.004576,0.212992,0.005344,0.004896,0.006144,0.005888,0.005664,0.06736,0.005056
+942,1335.94,0.748535,0.295584,0.004768,0.194368,0.004288,0.005984,0.005472,0.00496,0.006112,0.065056,0.004576
+943,1422.72,0.702881,0.303456,0.004704,0.19664,0.005792,0.004416,0.006144,0.005696,0.005664,0.068512,0.005888
+944,1296.61,0.77124,0.548256,0.005856,0.436448,0.010304,0.005408,0.004864,0.006112,0.006112,0.067616,0.005536
+945,859.06,1.16406,0.30128,0.005376,0.19552,0.00416,0.00608,0.005312,0.004992,0.006112,0.068736,0.004992
+946,1385.19,0.721924,0.31552,0.005376,0.210848,0.005088,0.005184,0.005056,0.006144,0.006144,0.06688,0.0048
+947,1406.83,0.710815,0.316736,0.006016,0.196064,0.004768,0.005504,0.006688,0.020576,0.005856,0.06576,0.005504
+948,1262.64,0.791992,0.302752,0.004384,0.197888,0.004864,0.0056,0.00576,0.005024,0.006144,0.067584,0.005504
+949,1461.29,0.684326,0.299008,0.005632,0.194144,0.005024,0.00544,0.0048,0.006144,0.006144,0.065536,0.006144
+950,1376.34,0.726562,0.301216,0.005376,0.194848,0.004736,0.005504,0.006112,0.005984,0.004928,0.068608,0.00512
+951,965.127,1.03613,0.29904,0.006144,0.19456,0.00592,0.004352,0.006016,0.005728,0.005728,0.064416,0.006176
+952,1269.68,0.787598,0.339968,0.005696,0.235168,0.004896,0.005376,0.004864,0.006144,0.006144,0.066784,0.004896
+953,1198.01,0.834717,0.317696,0.00544,0.216,0.005536,0.004704,0.006112,0.00592,0.006208,0.063168,0.004608
+954,723.739,1.38171,0.335712,0.00672,0.22528,0.005952,0.004288,0.006112,0.005728,0.006016,0.070208,0.005408
+955,714.522,1.39954,0.357696,0.005984,0.236704,0.00512,0.02048,0.005504,0.005888,0.005024,0.067584,0.005408
+956,1287.04,0.776978,0.303488,0.004992,0.198656,0.006016,0.004224,0.006176,0.00592,0.00576,0.066112,0.005632
+957,1340.09,0.746216,0.30448,0.005536,0.201152,0.004256,0.006016,0.005312,0.005056,0.006144,0.065536,0.005472
+958,1416.08,0.706177,0.299552,0.004864,0.198656,0.00528,0.00496,0.005728,0.005792,0.004864,0.063488,0.00592
+959,1101.52,0.907837,0.305888,0.004832,0.204384,0.004544,0.005728,0.004672,0.005952,0.006144,0.064576,0.005056
+960,1165.29,0.858154,0.546944,0.005408,0.443232,0.008192,0.005248,0.004992,0.006144,0.005824,0.063392,0.004512
+961,868.441,1.15149,0.31936,0.00592,0.21488,0.00448,0.00576,0.004672,0.005952,0.007744,0.063936,0.006016
+962,1212.19,0.824951,0.319968,0.0048,0.216096,0.005088,0.005184,0.005056,0.006144,0.005888,0.065792,0.00592
+963,1282.81,0.779541,0.483072,0.005952,0.377024,0.005952,0.004288,0.006144,0.005856,0.005664,0.066304,0.005888
+964,1252.41,0.798462,0.307232,0.005504,0.201376,0.005664,0.004544,0.006016,0.005888,0.005728,0.067712,0.0048
+965,1398.67,0.714966,0.309152,0.005568,0.203136,0.00432,0.005952,0.005408,0.004992,0.006144,0.067616,0.006016
+966,1370.36,0.729736,0.3032,0.005376,0.19952,0.005408,0.004832,0.006144,0.006144,0.005984,0.065152,0.00464
+967,1437.7,0.695557,0.310976,0.005376,0.207456,0.004352,0.00592,0.005472,0.004992,0.006144,0.065536,0.005728
+968,1218.87,0.820435,0.31056,0.005632,0.202944,0.004416,0.005856,0.005472,0.006688,0.005856,0.068288,0.005408
+969,761.409,1.31335,0.321536,0.007744,0.213312,0.004224,0.006016,0.005504,0.004864,0.006144,0.068608,0.00512
+970,1398.19,0.71521,0.306432,0.005632,0.1984,0.004864,0.005408,0.004832,0.006144,0.005856,0.06992,0.005376
+971,1562.17,0.640137,0.303712,0.004736,0.198304,0.004448,0.005856,0.0056,0.004928,0.006112,0.069184,0.004544
+972,1181.25,0.846558,0.299296,0.004576,0.196416,0.005504,0.004736,0.005792,0.005824,0.004768,0.066624,0.005056
+973,1357.19,0.736816,0.301056,0.005344,0.195392,0.005536,0.004672,0.00592,0.005568,0.00496,0.068832,0.004832
+974,1365.79,0.732178,0.304672,0.006016,0.194688,0.0056,0.00464,0.006144,0.006144,0.005856,0.06992,0.005664
+975,1584.53,0.631104,0.3056,0.004928,0.19776,0.004992,0.005888,0.005536,0.006464,0.005728,0.068544,0.00576
+976,1237.28,0.808228,0.301152,0.005376,0.199168,0.004416,0.005856,0.005472,0.005184,0.006016,0.064992,0.004672
+977,1433.92,0.697388,0.54432,0.0056,0.428576,0.016384,0.006048,0.005504,0.004928,0.006048,0.065536,0.005696
+978,837.799,1.1936,0.299808,0.004928,0.194528,0.006048,0.004192,0.006176,0.005984,0.006272,0.065536,0.006144
+979,1595.95,0.626587,0.301088,0.005664,0.198176,0.005056,0.005472,0.004768,0.006144,0.006112,0.065152,0.004544
+980,1359.22,0.735718,0.30208,0.005664,0.194336,0.0048,0.005504,0.004736,0.006144,0.006144,0.068992,0.00576
+981,1190.18,0.84021,0.30384,0.004832,0.196608,0.005664,0.004576,0.006016,0.005728,0.00576,0.06992,0.004736
+982,1405.63,0.711426,0.301696,0.004736,0.195936,0.004768,0.005344,0.004896,0.006112,0.005728,0.069312,0.004864
+983,1571.46,0.636353,0.305152,0.005728,0.196928,0.004224,0.006112,0.005536,0.00576,0.005088,0.069632,0.006144
+984,1335.29,0.748901,0.300128,0.006112,0.193984,0.004704,0.005568,0.004672,0.006176,0.006112,0.067488,0.005312
+985,874.56,1.14343,0.308864,0.005504,0.205248,0.004288,0.005824,0.005696,0.004928,0.00608,0.065536,0.00576
+986,1502.84,0.665405,0.540672,0.005664,0.43376,0.00704,0.006048,0.005504,0.004832,0.006144,0.06656,0.00512
+987,893.153,1.11963,0.310624,0.005664,0.20032,0.00496,0.00528,0.00496,0.006144,0.006144,0.07168,0.005472
+988,1351.15,0.740112,0.303904,0.004896,0.19456,0.005856,0.004384,0.006176,0.005952,0.005664,0.071424,0.004992
+989,1389.89,0.719482,0.4904,0.005056,0.378848,0.005472,0.004768,0.005856,0.005856,0.005824,0.074176,0.004544
+990,1049.31,0.953003,0.311392,0.005376,0.19552,0.005536,0.004672,0.006144,0.005984,0.005728,0.076352,0.00608
+991,1570.25,0.636841,0.310528,0.00576,0.196992,0.005248,0.005024,0.006112,0.005984,0.005888,0.074144,0.005376
+992,1365.56,0.7323,0.3072,0.006144,0.19456,0.005888,0.004352,0.006144,0.005824,0.005696,0.073856,0.004736
+993,1419.76,0.704346,0.31056,0.006144,0.196608,0.005472,0.004768,0.005792,0.00576,0.004864,0.075744,0.005408
+994,1327.93,0.753052,0.577792,0.004768,0.455808,0.015232,0.005632,0.004672,0.00608,0.006144,0.073728,0.005728
+995,774.95,1.29041,0.309088,0.005984,0.198848,0.005504,0.004704,0.005888,0.00576,0.004736,0.07168,0.005984
+996,1545.37,0.647095,0.320224,0.004736,0.198656,0.005408,0.004832,0.005824,0.005792,0.02048,0.07008,0.004416
+997,1364.88,0.732666,0.30784,0.005088,0.196608,0.005248,0.004992,0.006144,0.00592,0.00576,0.072288,0.005792
+998,1142.06,0.87561,0.30736,0.004896,0.19664,0.005856,0.0056,0.004896,0.006144,0.005824,0.072,0.005504
+999,1484.06,0.673828,0.303648,0.00464,0.194368,0.004288,0.006016,0.005696,0.00592,0.004896,0.072928,0.004896
+1000,1342.07,0.745117,0.32768,0.005984,0.20704,0.005312,0.004896,0.005728,0.00576,0.017184,0.069632,0.006144
+1001,1404.9,0.711792,0.300832,0.005664,0.192384,0.004736,0.005536,0.004672,0.006144,0.006048,0.069728,0.00592
+1002,1052.01,0.950562,0.313024,0.005824,0.20304,0.005248,0.005024,0.005568,0.004672,0.006144,0.07168,0.005824
+1003,1291.91,0.774048,0.557088,0.006144,0.425984,0.024576,0.005472,0.004768,0.006144,0.006112,0.073344,0.004544
+1004,988.775,1.01135,0.311008,0.005376,0.199168,0.004416,0.005856,0.005472,0.005056,0.006144,0.073728,0.005792
+1005,1304.46,0.766602,0.31744,0.006144,0.20016,0.00464,0.00544,0.0048,0.006144,0.006048,0.07952,0.004544
+1006,1212.37,0.824829,0.33408,0.005376,0.201696,0.006016,0.004224,0.006176,0.007136,0.020768,0.078016,0.004672
+1007,1241.02,0.805786,0.30864,0.005408,0.193248,0.0056,0.00464,0.005984,0.005888,0.005888,0.076448,0.005536
+1008,1222.32,0.818115,0.322624,0.005536,0.215136,0.004608,0.005632,0.004672,0.00608,0.006144,0.06944,0.005376
+1009,1165.79,0.857788,0.360448,0.005472,0.248032,0.004544,0.005696,0.006208,0.00576,0.004864,0.073728,0.006144
+1010,1377.5,0.725952,0.313248,0.005376,0.199584,0.005376,0.004864,0.00512,0.00512,0.006144,0.075776,0.005888
+1011,1334.85,0.749146,0.570112,0.004896,0.451712,0.00704,0.00608,0.005504,0.0048,0.006144,0.077824,0.006112
+1012,816.75,1.22437,0.31408,0.004832,0.198688,0.005856,0.005792,0.004704,0.006144,0.00608,0.077024,0.00496
+1013,1550.05,0.645142,0.307296,0.005056,0.198592,0.004192,0.006048,0.005888,0.005856,0.004704,0.071648,0.005312
+1014,1369.67,0.730103,0.303104,0.006048,0.194656,0.005504,0.004736,0.005984,0.00576,0.00576,0.068512,0.006144
+1015,1266.15,0.789795,0.302912,0.00576,0.194944,0.006144,0.00544,0.0048,0.006144,0.006112,0.067648,0.00592
+1016,1379.12,0.725098,0.314336,0.005056,0.207904,0.005088,0.00544,0.0048,0.006144,0.006144,0.068672,0.005088
+1017,1435.93,0.696411,0.300928,0.00608,0.192576,0.005856,0.004416,0.005984,0.0056,0.005888,0.068512,0.006016
+1018,1314.08,0.760986,0.2984,0.005376,0.191392,0.005792,0.004448,0.006144,0.005888,0.005728,0.068256,0.005376
+1019,1482.98,0.674316,0.310912,0.005664,0.197088,0.0056,0.00464,0.006176,0.00592,0.00576,0.074304,0.00576
+1020,1386.59,0.721191,0.307616,0.00448,0.196608,0.005376,0.004864,0.005568,0.005728,0.005088,0.07504,0.004864
+1021,444.758,2.24841,0.311552,0.006784,0.198688,0.005344,0.004864,0.00576,0.005792,0.004832,0.073728,0.00576
+1022,1190.7,0.839844,0.516608,0.004576,0.405184,0.005504,0.004992,0.006144,0.005984,0.005696,0.07408,0.004448
+1023,1158.21,0.863403,0.319808,0.004448,0.194368,0.004288,0.022464,0.005408,0.004864,0.006144,0.072928,0.004896
+1024,1332.9,0.750244,0.303136,0.005632,0.192832,0.004384,0.005696,0.004512,0.00608,0.006144,0.07344,0.004416
+1025,1359.44,0.735596,0.342752,0.004832,0.234624,0.004992,0.005248,0.004992,0.006144,0.006144,0.071008,0.004768
+1026,1322.14,0.756348,0.309248,0.005856,0.200992,0.00576,0.00448,0.005984,0.00576,0.005664,0.068608,0.006144
+1027,1576.9,0.634155,0.613856,0.005856,0.483616,0.024576,0.005472,0.004768,0.006144,0.006144,0.07168,0.0056
+1028,774.804,1.29065,0.312672,0.006112,0.200768,0.006112,0.005376,0.004864,0.006176,0.005696,0.072096,0.005472
+1029,1303.21,0.767334,0.302912,0.004768,0.196608,0.005312,0.004928,0.005824,0.005728,0.00496,0.06944,0.005344
+1030,1431.42,0.698608,0.29872,0.004672,0.19616,0.004544,0.005728,0.004512,0.006144,0.005888,0.065792,0.00528
+1031,1303.63,0.76709,0.303104,0.005792,0.198272,0.004832,0.00432,0.00592,0.006144,0.006016,0.065664,0.006144
+1032,1431.42,0.698608,0.302336,0.006144,0.196,0.004704,0.0056,0.006336,0.005728,0.004864,0.067392,0.005568
+1033,1347.59,0.742065,0.301056,0.006048,0.194368,0.004384,0.005856,0.005504,0.005024,0.006144,0.067584,0.006144
+1034,1378.2,0.725586,0.301152,0.005376,0.193376,0.006016,0.004224,0.006144,0.005824,0.005856,0.06976,0.004576
+1035,1513.39,0.660767,0.309152,0.006144,0.197632,0.00512,0.005152,0.006752,0.005792,0.004928,0.071584,0.006048
+1036,1346.26,0.742798,0.557056,0.006144,0.442368,0.008096,0.004192,0.006176,0.006016,0.005696,0.07328,0.005088
+1037,808.448,1.23694,0.310976,0.004544,0.198528,0.00416,0.005856,0.004448,0.006048,0.006144,0.075776,0.005472
+1038,1330.73,0.751465,0.303104,0.0056,0.194528,0.004672,0.006144,0.005632,0.005856,0.00592,0.069856,0.004896
+1039,1588.52,0.629517,0.301664,0.004704,0.19632,0.004384,0.005664,0.004672,0.006048,0.006144,0.067584,0.006144
+1040,1029.92,0.970947,0.303872,0.005056,0.193632,0.005024,0.005216,0.005024,0.006144,0.005792,0.072032,0.005952
+1041,1674.91,0.597046,0.304512,0.004448,0.194592,0.005856,0.004352,0.006144,0.005984,0.005696,0.072064,0.005376
+1042,1228.55,0.813965,0.300768,0.006144,0.192512,0.005728,0.004512,0.006144,0.006144,0.00592,0.067808,0.005856
+1043,1598.44,0.62561,0.306112,0.005056,0.198656,0.005248,0.00496,0.005504,0.00608,0.005888,0.068576,0.006144
+1044,1024,0.976562,0.31952,0.00576,0.2144,0.00512,0.005152,0.005088,0.006144,0.005888,0.067104,0.004864
+1045,1481.11,0.675171,0.573696,0.004384,0.421888,0.046144,0.005056,0.005536,0.004704,0.006144,0.073728,0.006112
+1046,834.131,1.19885,0.31344,0.005376,0.19952,0.00544,0.0048,0.00576,0.00592,0.005888,0.074592,0.006144
+1047,1438.96,0.694946,0.3072,0.005952,0.198848,0.005984,0.004256,0.005632,0.005728,0.005024,0.071072,0.004704
+1048,1530.93,0.653198,0.50176,0.0056,0.397568,0.004416,0.005888,0.005472,0.005024,0.006112,0.067008,0.004672
+1049,1097.09,0.911499,0.301408,0.004544,0.196512,0.005184,0.005056,0.006144,0.005888,0.005856,0.067328,0.004896
+1050,1302.8,0.767578,0.29696,0.005376,0.192608,0.004864,0.005408,0.0048,0.006144,0.005984,0.065728,0.006048
+1051,1437.95,0.695435,0.31376,0.004576,0.2088,0.005568,0.004672,0.005824,0.00576,0.0048,0.069088,0.004672
+1052,1449.14,0.690063,0.324128,0.004672,0.218528,0.004672,0.005568,0.004672,0.0072,0.00512,0.069408,0.004288
+1053,1449.91,0.689697,0.305152,0.006144,0.196608,0.005824,0.004416,0.00608,0.00576,0.005792,0.069696,0.004832
+1054,1028.5,0.97229,0.52864,0.018176,0.40368,0.005856,0.004864,0.005728,0.005792,0.004928,0.073664,0.005952
+1055,1105.98,0.904175,0.307168,0.005056,0.195616,0.005088,0.004096,0.006144,0.006144,0.005824,0.073888,0.005312
+1056,1494.89,0.668945,0.324928,0.006112,0.21072,0.004416,0.006016,0.00544,0.005888,0.00512,0.075776,0.00544
+1057,1307.58,0.764771,0.497536,0.005504,0.377472,0.005408,0.004832,0.005696,0.00576,0.014176,0.072672,0.006016
+1058,1181.6,0.846313,0.305184,0.005408,0.193248,0.005888,0.004384,0.00608,0.005888,0.005888,0.073472,0.004928
+1059,1331.6,0.750977,0.299584,0.004672,0.192512,0.005216,0.005024,0.005376,0.005024,0.005984,0.069632,0.006144
+1060,1546.24,0.646729,0.301408,0.004576,0.196192,0.004384,0.005888,0.005408,0.005088,0.006144,0.067584,0.006144
+1061,1398.91,0.714844,0.30192,0.00496,0.196352,0.004352,0.005888,0.004352,0.006144,0.006144,0.068768,0.00496
+1062,1337.03,0.747925,0.3016,0.004768,0.197632,0.005024,0.004224,0.006112,0.00592,0.005664,0.06624,0.006016
+1063,633.125,1.57947,0.364544,0.008192,0.249408,0.004544,0.005728,0.004544,0.006112,0.006144,0.075488,0.004384
+1064,1557.71,0.641968,0.316608,0.006144,0.19664,0.005728,0.00448,0.00544,0.004928,0.006016,0.081888,0.005344
+1065,1317.04,0.759277,0.306112,0.005056,0.194112,0.004544,0.006144,0.005472,0.006304,0.006496,0.073472,0.004512
+1066,1072.81,0.932129,0.300256,0.005408,0.193216,0.005216,0.00496,0.004192,0.006144,0.006112,0.069664,0.005344
+1067,1357.64,0.736572,0.305152,0.00544,0.193216,0.005664,0.004576,0.00592,0.005952,0.005888,0.073792,0.004704
+1068,1382.85,0.723145,0.33984,0.005856,0.216736,0.00592,0.00496,0.014176,0.006144,0.005888,0.074144,0.006016
+1069,1425.94,0.701294,0.309248,0.006176,0.194528,0.00512,0.00512,0.005952,0.005824,0.005856,0.074528,0.006144
+1070,1270.67,0.786987,0.311008,0.0056,0.200288,0.005056,0.005248,0.004992,0.006144,0.006144,0.07168,0.005856
+1071,795.649,1.25684,0.313344,0.007616,0.19616,0.00512,0.005184,0.005056,0.006176,0.006112,0.075776,0.006144
+1072,1528.93,0.654053,0.303456,0.004544,0.197632,0.005024,0.004096,0.006144,0.005824,0.00576,0.069344,0.005088
+1073,1387.77,0.720581,0.315392,0.005344,0.2056,0.006048,0.004256,0.006112,0.006112,0.00576,0.070112,0.006048
+1074,1190.87,0.839722,0.493888,0.004864,0.376288,0.00464,0.005664,0.004576,0.006144,0.015552,0.070464,0.005696
+1075,1223.42,0.817383,0.299072,0.005344,0.192384,0.005088,0.005152,0.005088,0.006112,0.00592,0.06784,0.006144
+1076,1541.3,0.648804,0.299456,0.004576,0.196064,0.00464,0.006048,0.005408,0.00496,0.00608,0.066976,0.004704
+1077,1384.49,0.72229,0.302944,0.005696,0.194016,0.005088,0.004384,0.005888,0.006112,0.006144,0.069632,0.005984
+1078,1381.92,0.723633,0.309376,0.004768,0.199968,0.004832,0.00544,0.0048,0.006144,0.005824,0.072,0.0056
+1079,1330.52,0.751587,0.585536,0.004576,0.448416,0.034816,0.005856,0.005888,0.00592,0.00592,0.068576,0.005568
+1080,733.13,1.36401,0.30256,0.005536,0.196768,0.004544,0.005728,0.004512,0.006144,0.006048,0.06768,0.0056
+1081,1691.51,0.591187,0.31248,0.005824,0.197984,0.005088,0.005184,0.005056,0.006144,0.006144,0.075712,0.005344
+1082,840.809,1.18933,0.38304,0.004672,0.260128,0.006112,0.005664,0.004576,0.006144,0.012288,0.077824,0.005632
+1083,1176.67,0.849854,0.316128,0.004832,0.204128,0.004768,0.005504,0.005984,0.004928,0.006112,0.074784,0.005088
+1084,1411.93,0.708252,0.3112,0.004992,0.198336,0.004416,0.005856,0.005504,0.004992,0.006144,0.075648,0.005312
+1085,1355.39,0.737793,0.302336,0.005824,0.196096,0.004896,0.0056,0.004672,0.006144,0.006144,0.067584,0.005376
+1086,1501.19,0.666138,0.300384,0.006144,0.196064,0.00464,0.005504,0.004736,0.006144,0.006144,0.065536,0.005472
+1087,1323.42,0.755615,0.300928,0.006112,0.194528,0.00416,0.00608,0.005408,0.004896,0.006144,0.067584,0.006016
+1088,626.3,1.59668,0.331648,0.007584,0.221888,0.005728,0.00448,0.006016,0.005792,0.00576,0.068448,0.005952
+1089,1590.99,0.62854,0.303488,0.004864,0.194528,0.005632,0.004608,0.005888,0.005824,0.005856,0.070496,0.005792
+1090,1224.33,0.816772,0.304256,0.005984,0.19392,0.004928,0.005344,0.006016,0.004992,0.006144,0.071648,0.00528
+1091,1212.73,0.824585,0.30672,0.004608,0.197952,0.0048,0.005984,0.0056,0.004928,0.006016,0.07152,0.005312
+1092,1375.65,0.726929,0.311776,0.004576,0.206848,0.006112,0.005216,0.005056,0.006144,0.006016,0.066752,0.005056
+1093,1411.2,0.708618,0.315136,0.004576,0.194016,0.004416,0.005824,0.004416,0.006144,0.006144,0.068768,0.020832
+1094,1230.03,0.812988,0.299168,0.004416,0.194144,0.004512,0.00576,0.00448,0.006144,0.006144,0.067584,0.005984
+1095,1485.4,0.673218,0.335456,0.006144,0.227328,0.005408,0.004832,0.005696,0.005952,0.005888,0.06848,0.005728
+1096,799.142,1.25134,0.325408,0.007616,0.217504,0.004288,0.005984,0.005312,0.005056,0.006144,0.067584,0.00592
+1097,1370.59,0.729614,0.303104,0.005728,0.196544,0.004576,0.005664,0.005952,0.0048,0.006112,0.067584,0.006144
+1098,1364.65,0.732788,0.338656,0.004832,0.227328,0.00544,0.0048,0.007168,0.00512,0.006144,0.0728,0.005024
+1099,1521.26,0.657349,0.48752,0.004512,0.37888,0.006112,0.00416,0.006112,0.006048,0.00576,0.070112,0.005824
+1100,984.142,1.01611,0.30144,0.005024,0.19456,0.00528,0.004992,0.005504,0.005792,0.005056,0.069632,0.0056
+1101,919.726,1.08728,0.335872,0.005344,0.219968,0.005632,0.004576,0.006016,0.006272,0.016384,0.06656,0.00512
+1102,1298.87,0.769897,0.3184,0.005056,0.198656,0.005984,0.004256,0.006144,0.005856,0.005824,0.066144,0.02048
+1103,1618.97,0.617676,0.308448,0.005568,0.20128,0.005344,0.004896,0.005728,0.005792,0.004928,0.069568,0.005344
+1104,727.144,1.37524,0.307232,0.007776,0.202176,0.005088,0.005184,0.005056,0.006048,0.005728,0.065472,0.004704
+1105,1252.41,0.798462,0.300384,0.005504,0.1952,0.005408,0.004832,0.005536,0.00576,0.005088,0.067584,0.005472
+1106,1415.59,0.706421,0.329952,0.005344,0.22016,0.006112,0.00416,0.006112,0.006176,0.006112,0.07088,0.004896
+1107,1443.78,0.692627,0.510048,0.005408,0.385024,0.004928,0.005376,0.020736,0.005696,0.005088,0.07328,0.004512
+1108,1046.37,0.955688,0.300736,0.005312,0.193408,0.0056,0.00464,0.005888,0.005792,0.00576,0.068576,0.00576
+1109,1442.51,0.693237,0.301056,0.005696,0.194016,0.005088,0.005792,0.005728,0.00592,0.005088,0.069312,0.004416
+1110,1324.49,0.755005,0.3,0.005056,0.194272,0.004416,0.005856,0.006048,0.005824,0.004928,0.069216,0.004384
+1111,1528.36,0.654297,0.304704,0.005824,0.196864,0.004192,0.006048,0.005728,0.005824,0.004896,0.069632,0.005696
+1112,1371.96,0.728882,0.55216,0.005504,0.428768,0.021856,0.004768,0.005856,0.006016,0.005888,0.068224,0.00528
+1113,829.822,1.20508,0.303104,0.006144,0.194528,0.00416,0.00608,0.006176,0.006144,0.006144,0.067584,0.006144
+1114,1428.42,0.700073,0.3072,0.006144,0.194528,0.005216,0.005024,0.005504,0.004768,0.006144,0.074784,0.005088
+1115,1495.16,0.668823,0.308352,0.005568,0.199232,0.00592,0.00432,0.006144,0.00592,0.005696,0.07024,0.005312
+1116,1181.42,0.846436,0.341408,0.00544,0.23008,0.005696,0.004544,0.006048,0.005824,0.005696,0.072544,0.005536
+1117,1406.59,0.710938,0.30192,0.00496,0.195744,0.00496,0.00528,0.00496,0.006016,0.005696,0.069952,0.004352
+1118,1344.94,0.74353,0.302912,0.006144,0.196,0.004704,0.005856,0.005504,0.005024,0.006144,0.067584,0.005952
+1119,1124.97,0.888916,0.331776,0.005696,0.226848,0.005024,0.005216,0.005024,0.006144,0.005792,0.066944,0.005088
+1120,1389.65,0.719604,0.308864,0.005952,0.20656,0.004576,0.005664,0.004576,0.006144,0.006144,0.063488,0.00576
+1121,1186.04,0.84314,0.301056,0.005408,0.197344,0.005632,0.004608,0.005984,0.005856,0.005728,0.064352,0.006144
+1122,828.144,1.20752,0.3072,0.008192,0.198656,0.005408,0.004832,0.00576,0.00576,0.004864,0.06912,0.004608
+1123,1593.15,0.627686,0.307424,0.00432,0.198624,0.006016,0.005376,0.006176,0.00496,0.006144,0.07104,0.004768
+1124,1335.51,0.748779,0.485408,0.005824,0.377152,0.005504,0.004736,0.00576,0.005952,0.005888,0.06992,0.004672
+1125,1118.51,0.894043,0.306752,0.00464,0.196512,0.004192,0.006048,0.005472,0.004928,0.007968,0.07168,0.005312
+1126,1357.42,0.736694,0.304608,0.005312,0.19504,0.00464,0.0056,0.004672,0.00608,0.006144,0.07168,0.00544
+1127,1564.25,0.639282,0.313344,0.006112,0.196512,0.004224,0.006144,0.00576,0.006048,0.00592,0.07648,0.006144
+1128,1328.15,0.75293,0.30928,0.0056,0.196384,0.004864,0.005376,0.004864,0.006112,0.005696,0.075552,0.004832
+1129,1403.7,0.712402,0.308352,0.005824,0.196416,0.00464,0.0056,0.004672,0.00608,0.006144,0.073664,0.005312
+1130,715.771,1.39709,0.311584,0.007552,0.196896,0.004704,0.005568,0.004672,0.006144,0.006144,0.075008,0.004896
+1131,1545.37,0.647095,0.304992,0.005728,0.199072,0.00528,0.00496,0.006016,0.00576,0.005728,0.066464,0.005984
+1132,1340.31,0.746094,0.296448,0.00544,0.191168,0.006176,0.005088,0.005152,0.00592,0.005696,0.066176,0.005632
+1133,1134.63,0.881348,0.303104,0.0056,0.195104,0.005664,0.004576,0.005792,0.005856,0.005792,0.068576,0.006144
+1134,1459.99,0.684937,0.304736,0.004576,0.195584,0.004928,0.005344,0.004896,0.006144,0.006144,0.07168,0.00544
+1135,1470.74,0.679932,0.302816,0.005312,0.19552,0.005344,0.004896,0.00608,0.005792,0.005696,0.068448,0.005728
+1136,1385.89,0.721558,0.3072,0.005728,0.199072,0.005824,0.005664,0.004896,0.006144,0.005856,0.069184,0.004832
+1137,1339.66,0.74646,0.3072,0.006176,0.196192,0.00448,0.005792,0.005504,0.006272,0.00496,0.073024,0.0048
+1138,894.03,1.11853,0.563968,0.004864,0.41984,0.04096,0.00528,0.00496,0.006144,0.005824,0.071072,0.005024
+1139,1098.71,0.910156,0.30848,0.005568,0.198976,0.004352,0.00592,0.005408,0.005056,0.006144,0.07168,0.005376
+1140,1432.92,0.697876,0.303104,0.005408,0.1944,0.004992,0.00528,0.00496,0.006144,0.006144,0.069632,0.006144
+1141,1243.28,0.804321,0.30128,0.004576,0.195936,0.004576,0.006144,0.005664,0.006048,0.005888,0.066368,0.00608
+1142,1150.24,0.869385,0.301536,0.004832,0.194336,0.004384,0.005856,0.005408,0.006464,0.005856,0.068512,0.005888
+1143,1572.36,0.635986,0.301056,0.006144,0.196128,0.004576,0.006144,0.005728,0.005856,0.005888,0.065536,0.005056
+1144,1360.12,0.735229,0.29696,0.005408,0.192704,0.00464,0.005568,0.004672,0.006144,0.006144,0.066912,0.004768
+1145,1425.69,0.701416,0.300128,0.006176,0.194528,0.00592,0.00432,0.005984,0.005824,0.005792,0.066272,0.005312
+1146,1311.35,0.762573,0.303296,0.004928,0.196192,0.004512,0.00576,0.004544,0.00608,0.006144,0.069632,0.005504
+1147,694.767,1.43933,0.315392,0.007424,0.201312,0.004288,0.005984,0.006272,0.005696,0.00592,0.072384,0.006112
+1148,1628.95,0.613892,0.311456,0.005088,0.2064,0.004544,0.005728,0.006048,0.005728,0.004992,0.067584,0.005344
+1149,1372.42,0.728638,0.301056,0.005888,0.193952,0.00496,0.006144,0.005472,0.004768,0.006176,0.069056,0.00464
+1150,1465.74,0.682251,0.486432,0.005984,0.381088,0.005472,0.004768,0.005728,0.006496,0.005888,0.065728,0.00528
+1151,1021.57,0.978882,0.300384,0.005632,0.193024,0.005376,0.004864,0.006144,0.005888,0.005664,0.06832,0.005472
+1152,1499.82,0.666748,0.309248,0.005792,0.203104,0.00528,0.00496,0.005472,0.0048,0.006112,0.06896,0.004768
+1153,1267.33,0.789062,0.311296,0.005536,0.19312,0.005984,0.004256,0.006144,0.005952,0.005728,0.068192,0.016384
+1154,1578.42,0.633545,0.305568,0.004576,0.19856,0.005984,0.004256,0.0056,0.005952,0.005856,0.070144,0.00464
+1155,1402.5,0.713013,0.304544,0.005664,0.195232,0.005472,0.004768,0.005728,0.005792,0.004928,0.071616,0.005344
+1156,772.175,1.29504,0.30816,0.007104,0.200704,0.00592,0.00432,0.006144,0.005664,0.005824,0.06736,0.00512
+1157,888.503,1.12549,0.3592,0.004896,0.25104,0.00496,0.005312,0.004928,0.006144,0.005824,0.069952,0.006144
+1158,1631.22,0.613037,0.500992,0.005824,0.387392,0.005312,0.004928,0.0056,0.005888,0.004896,0.075776,0.005376
+1159,1091.54,0.916138,0.309056,0.004736,0.19456,0.006144,0.005216,0.005024,0.006144,0.006048,0.07584,0.005344
+1160,1379.82,0.724731,0.341056,0.005984,0.21696,0.004384,0.005888,0.014592,0.006144,0.005632,0.07616,0.005312
+1161,1289.88,0.775269,0.305152,0.006144,0.19376,0.004896,0.005376,0.004864,0.006144,0.006144,0.07296,0.004864
+1162,1569.05,0.637329,0.313344,0.006048,0.204224,0.004768,0.005792,0.005504,0.005088,0.006144,0.069632,0.006144
+1163,1366.02,0.732056,0.300896,0.006048,0.19632,0.00448,0.005792,0.004672,0.00592,0.006144,0.065568,0.005952
+1164,697.964,1.43274,0.313088,0.00672,0.198496,0.005504,0.004704,0.005792,0.005728,0.004864,0.075776,0.005504
+1165,1474.18,0.678345,0.305376,0.005344,0.19504,0.004608,0.005664,0.004736,0.005984,0.006176,0.073312,0.004512
+1166,1293.13,0.773315,0.319168,0.004608,0.196032,0.018752,0.005536,0.00496,0.005536,0.00576,0.072672,0.005312
+1167,1365.11,0.732544,0.315552,0.005376,0.201632,0.005248,0.004992,0.00544,0.006496,0.005696,0.075712,0.00496
+1168,1389.42,0.719727,0.30768,0.004768,0.19456,0.005408,0.004832,0.006144,0.006112,0.005696,0.074208,0.005952
+1169,1346.93,0.742432,0.307168,0.006112,0.194176,0.004512,0.00576,0.006528,0.005888,0.00592,0.07216,0.006112
+1170,1407.32,0.710571,0.320864,0.006144,0.196448,0.02016,0.004608,0.006112,0.006016,0.005824,0.07008,0.005472
+1171,1279.2,0.781738,0.3072,0.005824,0.196384,0.00464,0.006144,0.005632,0.00576,0.004992,0.072928,0.004896
+1172,1364.88,0.732666,0.54208,0.005632,0.43264,0.008192,0.005312,0.004928,0.006144,0.005856,0.067872,0.005504
+1173,869.086,1.15063,0.303712,0.004704,0.196064,0.00464,0.0056,0.004672,0.006112,0.006144,0.071136,0.00464
+1174,1511.72,0.661499,0.30528,0.005376,0.197024,0.004576,0.005504,0.004768,0.006112,0.006144,0.070752,0.005024
+1175,1345.38,0.743286,0.31744,0.0048,0.210336,0.004704,0.005536,0.004704,0.006144,0.006144,0.069632,0.00544
+1176,1263.61,0.791382,0.305152,0.006144,0.19456,0.00576,0.00448,0.006144,0.006176,0.00576,0.071296,0.004832
+1177,1178.87,0.848267,0.32176,0.005344,0.205824,0.005312,0.004928,0.005664,0.00576,0.00496,0.070912,0.013056
+1178,1535.52,0.651245,0.306464,0.00608,0.199968,0.004896,0.005376,0.004864,0.006144,0.005856,0.067872,0.005408
+1179,1307.37,0.764893,0.319488,0.005984,0.213152,0.005984,0.005376,0.005024,0.006144,0.005728,0.067584,0.004512
+1180,1440.22,0.694336,0.30592,0.004832,0.200704,0.005952,0.004288,0.006144,0.005664,0.005728,0.068192,0.004416
+1181,1039.33,0.962158,0.518144,0.008192,0.394368,0.005088,0.005856,0.005504,0.004928,0.022528,0.06672,0.00496
+1182,1123.89,0.889771,0.302912,0.00464,0.196096,0.004608,0.005632,0.004672,0.00608,0.006144,0.069632,0.005408
+1183,1219.23,0.82019,0.301824,0.004864,0.19456,0.005472,0.004768,0.005792,0.005792,0.006464,0.069024,0.005088
+1184,1247.83,0.801392,0.331616,0.022368,0.205632,0.004096,0.005728,0.00464,0.006016,0.006144,0.07168,0.005312
+1185,1189.49,0.840698,0.306272,0.005984,0.194592,0.004224,0.006048,0.005408,0.005952,0.00512,0.0736,0.005344
+1186,1488.91,0.671631,0.30512,0.005344,0.196736,0.004992,0.005312,0.004928,0.006144,0.005792,0.069984,0.005888
+1187,1333.12,0.750122,0.3072,0.006144,0.19456,0.005696,0.004544,0.006144,0.005984,0.005728,0.072256,0.006144
+1188,1317.89,0.758789,0.3064,0.005824,0.196064,0.00496,0.005344,0.004896,0.006144,0.005856,0.071968,0.005344
+1189,1345.82,0.743042,0.31248,0.005696,0.19504,0.00608,0.004128,0.006368,0.005952,0.006112,0.077344,0.00576
+1190,620.136,1.61255,0.314944,0.007744,0.200416,0.004832,0.005408,0.004832,0.006144,0.006144,0.073728,0.005696
+1191,675.016,1.48145,0.3048,0.006176,0.194528,0.005984,0.004256,0.006144,0.006144,0.006016,0.06976,0.005792
+1192,1196.26,0.835938,0.299584,0.004704,0.194528,0.00528,0.00496,0.005536,0.005824,0.005024,0.069184,0.004544
+1193,1752.3,0.570679,0.305024,0.00544,0.195328,0.006144,0.005536,0.004736,0.006112,0.006112,0.069696,0.00592
+1194,1343.61,0.744263,0.303136,0.005408,0.194304,0.00512,0.00544,0.0048,0.006144,0.006144,0.07152,0.004256
+1195,878.122,1.13879,0.33792,0.006048,0.231072,0.004544,0.005728,0.004512,0.006144,0.006144,0.069248,0.00448
+1196,1561.57,0.640381,0.311296,0.006144,0.202752,0.006144,0.005376,0.004864,0.006144,0.006144,0.067584,0.006144
+1197,703.538,1.42139,0.308992,0.007808,0.19904,0.005888,0.004352,0.006144,0.005632,0.00656,0.06768,0.005888
+1198,1295.59,0.771851,0.3016,0.005824,0.195328,0.004192,0.006048,0.005472,0.004832,0.006144,0.068896,0.004864
+1199,1511.16,0.661743,0.306688,0.004544,0.198208,0.004512,0.00576,0.006048,0.005824,0.00496,0.07152,0.005312
+1200,1338.56,0.74707,0.306176,0.006144,0.19856,0.005216,0.00512,0.005248,0.004992,0.006144,0.069472,0.00528
+1201,1339.88,0.746338,0.303008,0.006144,0.19456,0.005568,0.004672,0.006144,0.006112,0.005792,0.067968,0.006048
+1202,1421.48,0.703491,0.3072,0.005536,0.195168,0.006048,0.004192,0.006144,0.006048,0.005728,0.073504,0.004832
+1203,1213.81,0.823853,0.305248,0.005344,0.195264,0.004288,0.005984,0.004256,0.006144,0.006144,0.072896,0.004928
+1204,1627.33,0.614502,0.309536,0.004896,0.19776,0.004992,0.005312,0.006496,0.00576,0.00496,0.073728,0.005632
+1205,1129.93,0.88501,0.583712,0.005536,0.438592,0.037152,0.006016,0.005408,0.00496,0.006144,0.075008,0.004896
+1206,911.539,1.09705,0.306208,0.006144,0.196608,0.005536,0.004704,0.00576,0.0056,0.005024,0.071328,0.005504
+1207,1347.37,0.742188,0.303296,0.00576,0.195104,0.005184,0.005056,0.005888,0.005728,0.004768,0.071104,0.004704
+1208,1265.37,0.790283,0.358144,0.005408,0.246592,0.0056,0.00464,0.005664,0.005856,0.004864,0.073728,0.005792
+1209,1047.44,0.954712,0.341088,0.006144,0.229376,0.005728,0.004512,0.005856,0.005824,0.005856,0.07248,0.005312
+1210,1534.66,0.651611,0.307648,0.004512,0.195584,0.00512,0.005152,0.006624,0.005984,0.004768,0.075552,0.004352
+1211,1353.15,0.739014,0.306784,0.006144,0.194336,0.00432,0.005952,0.005408,0.005024,0.006144,0.073728,0.005728
+1212,1461.29,0.684326,0.342944,0.021472,0.214688,0.004448,0.005824,0.006464,0.00576,0.00576,0.072448,0.00608
+1213,1413.88,0.707275,0.3072,0.005888,0.194816,0.00576,0.00448,0.006144,0.005952,0.005952,0.07344,0.004768
+1214,509.77,1.96167,0.330048,0.007552,0.219712,0.004576,0.005696,0.00464,0.006016,0.006144,0.069664,0.006048
+1215,1111.23,0.899902,0.3464,0.004352,0.239392,0.00432,0.005696,0.004672,0.006048,0.006112,0.071168,0.00464
+1216,1285.42,0.777954,0.308416,0.0056,0.203296,0.005888,0.004352,0.006144,0.006112,0.005952,0.06576,0.005312
+1217,1246.69,0.802124,0.313408,0.004864,0.2048,0.005856,0.004384,0.006144,0.005856,0.005856,0.070208,0.00544
+1218,1324.71,0.754883,0.30752,0.004448,0.198656,0.005632,0.004576,0.005984,0.006304,0.006144,0.07136,0.004416
+1219,1705.25,0.586426,0.3072,0.005408,0.197248,0.00448,0.00576,0.006048,0.00592,0.0048,0.07168,0.005856
+1220,1201.17,0.83252,0.315392,0.005376,0.205568,0.005536,0.004704,0.005984,0.00592,0.005696,0.070496,0.006112
+1221,1519.29,0.658203,0.3072,0.006144,0.20208,0.004768,0.005472,0.0048,0.006112,0.006144,0.067232,0.004448
+1222,718.596,1.3916,0.309248,0.007552,0.202624,0.004864,0.005408,0.004864,0.007296,0.004992,0.066784,0.004864
+1223,1262.64,0.791992,0.301504,0.004576,0.1984,0.004352,0.005888,0.006208,0.005824,0.004576,0.067104,0.004576
+1224,1644.32,0.608154,0.306976,0.0056,0.198848,0.004448,0.00608,0.005472,0.004832,0.006144,0.069632,0.00592
+1225,1094.02,0.914062,0.30288,0.004736,0.196064,0.00464,0.0056,0.00464,0.006144,0.006144,0.069568,0.005344
+1226,1439.97,0.694458,0.301056,0.006144,0.19456,0.006144,0.00512,0.005152,0.006112,0.006144,0.067072,0.004608
+1227,1309.67,0.76355,0.30592,0.004992,0.195808,0.004896,0.005376,0.004864,0.006176,0.005952,0.07184,0.006016
+1228,1418.77,0.704834,0.306336,0.005792,0.1968,0.004416,0.005792,0.006112,0.005888,0.005888,0.070336,0.005312
+1229,1206.66,0.828735,0.311296,0.005984,0.206016,0.005088,0.005152,0.005088,0.00592,0.005792,0.066112,0.006144
+1230,725.726,1.37793,0.344064,0.008192,0.233504,0.005952,0.004256,0.006144,0.006112,0.00592,0.06784,0.006144
+1231,1357.87,0.73645,0.315648,0.004768,0.204672,0.004224,0.006048,0.005472,0.006112,0.005952,0.072672,0.005728
+1232,1481.64,0.674927,0.31744,0.00592,0.202976,0.005952,0.004288,0.006144,0.00608,0.005856,0.075872,0.004352
+1233,1116.68,0.895508,0.317312,0.006112,0.206816,0.00416,0.006144,0.006016,0.005696,0.004672,0.07168,0.006016
+1234,1524.09,0.656128,0.317632,0.005024,0.204672,0.004384,0.005888,0.00624,0.00608,0.005856,0.07408,0.005408
+1235,1261.86,0.79248,0.316192,0.004864,0.2048,0.005696,0.004544,0.006016,0.005824,0.00576,0.074336,0.004352
+1236,1551.52,0.644531,0.309248,0.005696,0.198912,0.004384,0.00592,0.005472,0.004928,0.006112,0.073216,0.004608
+1237,1342.29,0.744995,0.311776,0.004576,0.20208,0.004768,0.005248,0.004992,0.00576,0.005824,0.073632,0.004896
+1238,1316.2,0.759766,0.569536,0.004736,0.421152,0.041696,0.005472,0.004768,0.006144,0.006144,0.073728,0.005696
+1239,844.188,1.18457,0.313344,0.006016,0.200576,0.004352,0.00592,0.005856,0.005728,0.005024,0.075488,0.004384
+1240,1472.59,0.679077,0.311296,0.006176,0.19792,0.0048,0.00544,0.0048,0.006144,0.006144,0.075072,0.0048
+1241,1332.03,0.750732,0.303168,0.0056,0.195104,0.006112,0.00416,0.006112,0.006144,0.005984,0.069792,0.00416
+1242,1117.9,0.894531,0.303104,0.005728,0.194752,0.004384,0.005856,0.005536,0.004928,0.006144,0.071424,0.004352
+1243,1248.59,0.800903,0.303104,0.005632,0.194336,0.004832,0.005536,0.004704,0.006144,0.005952,0.070944,0.005024
+1244,1604.39,0.623291,0.310848,0.006144,0.200288,0.004512,0.006144,0.00576,0.005888,0.005888,0.070528,0.005696
+1245,1391.78,0.718506,0.305024,0.00576,0.196128,0.00496,0.005312,0.006144,0.005024,0.006048,0.069632,0.006016
+1246,966.608,1.03455,0.313344,0.006048,0.204896,0.006048,0.004192,0.006144,0.006144,0.00608,0.067648,0.006144
+1247,1086.18,0.920654,0.313344,0.007616,0.20128,0.006048,0.004224,0.006112,0.006144,0.006144,0.070784,0.004992
+1248,1520.7,0.657593,0.30944,0.005376,0.199488,0.004256,0.006112,0.006048,0.005856,0.005824,0.071456,0.005024
+1249,1289.27,0.775635,0.3072,0.004576,0.197632,0.00496,0.004096,0.00608,0.00576,0.005792,0.07248,0.005824
+1250,1515.63,0.65979,0.308992,0.005504,0.198304,0.005088,0.005184,0.005056,0.005888,0.005824,0.072256,0.005888
+1251,1045.56,0.956421,0.30944,0.005408,0.195552,0.00592,0.004288,0.007648,0.005984,0.005888,0.07264,0.006112
+1252,1540.43,0.64917,0.306976,0.005376,0.197568,0.005248,0.005024,0.005472,0.00592,0.004992,0.07168,0.005696
+1253,1345.38,0.743286,0.31344,0.005344,0.199552,0.005856,0.004384,0.006144,0.006144,0.005952,0.075296,0.004768
+1254,1153.8,0.866699,0.313888,0.00464,0.20192,0.004928,0.005344,0.004896,0.006144,0.006144,0.074976,0.004896
+1255,1600.31,0.624878,0.311296,0.006144,0.196608,0.005536,0.004704,0.006144,0.006016,0.00576,0.07424,0.006144
+1256,644.278,1.55212,0.319488,0.008192,0.202688,0.00416,0.005952,0.005856,0.005952,0.005952,0.075744,0.004992
+1257,1435.43,0.696655,0.31552,0.00448,0.202656,0.005408,0.004832,0.0056,0.005888,0.004928,0.075744,0.005984
+1258,1205.77,0.829346,0.307104,0.004672,0.19456,0.006144,0.006144,0.00544,0.005952,0.004992,0.073728,0.005472
+1259,1189.49,0.840698,0.309248,0.005952,0.194784,0.0056,0.004608,0.00576,0.005888,0.005792,0.07632,0.004544
+1260,1481.37,0.675049,0.315424,0.005664,0.19504,0.00592,0.005376,0.005088,0.006144,0.006144,0.081024,0.005024
+1261,1364.2,0.733032,0.310592,0.005984,0.192672,0.006048,0.004192,0.006176,0.006112,0.005984,0.077984,0.00544
+1262,1181.77,0.846191,0.311552,0.004544,0.1936,0.004864,0.005376,0.006208,0.004928,0.006016,0.081216,0.0048
+1263,1496.8,0.668091,0.319168,0.004608,0.204096,0.0048,0.00528,0.00496,0.006144,0.006144,0.077824,0.005312
+1264,707.304,1.41382,0.319904,0.00672,0.20464,0.00592,0.00432,0.007616,0.005792,0.005024,0.075104,0.004768
+1265,1275.22,0.78418,0.309312,0.005376,0.195392,0.005952,0.00432,0.006112,0.006144,0.006144,0.074912,0.00496
+1266,1418.04,0.7052,0.310592,0.005728,0.194976,0.005632,0.004608,0.005824,0.006144,0.005696,0.076544,0.00544
+1267,1248.4,0.801025,0.312672,0.006112,0.198656,0.004128,0.00608,0.005472,0.004864,0.006112,0.075776,0.005472
+1268,1411.93,0.708252,0.319072,0.006144,0.200448,0.004416,0.005856,0.005344,0.00512,0.006144,0.079872,0.005728
+1269,1386.83,0.721069,0.309376,0.00544,0.193216,0.004224,0.006048,0.005536,0.005888,0.005056,0.077888,0.00608
+1270,1309.25,0.763794,0.309248,0.006144,0.1936,0.005056,0.005248,0.004992,0.006176,0.005568,0.078144,0.00432
+1271,859.782,1.16309,0.593536,0.006144,0.477184,0.006144,0.005728,0.004672,0.005984,0.006144,0.075776,0.00576
+1272,1512.83,0.661011,0.645664,0.004608,0.495616,0.044064,0.005088,0.006016,0.005696,0.005792,0.074304,0.00448
+1273,789.514,1.2666,0.313344,0.0056,0.202272,0.00512,0.005152,0.006592,0.00608,0.00592,0.070464,0.006144
+1274,1295.18,0.772095,0.309216,0.004576,0.200544,0.005984,0.004256,0.006144,0.00608,0.005696,0.070144,0.005792
+1275,1453,0.688232,0.509344,0.005536,0.399968,0.005824,0.004416,0.006144,0.005856,0.005728,0.070336,0.005536
+1276,1043.57,0.958252,0.339936,0.005376,0.226176,0.006112,0.005408,0.004832,0.006144,0.005984,0.073888,0.006016
+1277,1409.01,0.709717,0.309248,0.006016,0.19616,0.004704,0.005472,0.004736,0.006144,0.005984,0.075104,0.004928
+1278,1283.01,0.779419,0.305152,0.006144,0.192512,0.005728,0.004512,0.006016,0.0056,0.004768,0.07376,0.006112
+1279,1371.96,0.728882,0.31088,0.005792,0.198624,0.00448,0.005792,0.004672,0.00592,0.006144,0.073728,0.005728
+1280,957.793,1.04407,0.505504,0.008128,0.393024,0.00592,0.004576,0.006016,0.006016,0.005696,0.070336,0.005792
+1281,1062.65,0.94104,0.304544,0.004512,0.197728,0.005024,0.005216,0.005024,0.006144,0.005216,0.070368,0.005312
+1282,1462.86,0.683594,0.305152,0.0056,0.196608,0.00464,0.005472,0.004768,0.006144,0.005952,0.07104,0.004928
+1283,1590.68,0.628662,0.305344,0.005344,0.1976,0.005952,0.00592,0.00464,0.006016,0.006144,0.069632,0.004096
+1284,1213.63,0.823975,0.301088,0.005856,0.193984,0.00496,0.00528,0.00496,0.006112,0.00576,0.069472,0.004704
+1285,1339.88,0.746338,0.301056,0.005536,0.194272,0.004992,0.00528,0.00496,0.006176,0.00576,0.069024,0.005056
+1286,1263.03,0.791748,0.313344,0.005568,0.192992,0.004224,0.006048,0.006208,0.006144,0.005888,0.075072,0.0112
+1287,1620.57,0.617065,0.310688,0.00544,0.1968,0.004672,0.00576,0.005504,0.00512,0.006144,0.075776,0.005472
+1288,1360.8,0.734863,0.306976,0.005376,0.19552,0.005248,0.004992,0.005536,0.00608,0.005888,0.072608,0.005728
+1289,650.469,1.53735,0.57568,0.00464,0.415744,0.03072,0.022528,0.00752,0.004768,0.005376,0.078592,0.005792
+1290,1279.8,0.781372,0.30992,0.00496,0.202752,0.006144,0.004096,0.006144,0.00608,0.005728,0.068064,0.005952
+1291,1458.17,0.685791,0.308704,0.00592,0.200928,0.00544,0.0048,0.00576,0.00576,0.00496,0.069536,0.0056
+1292,1217.42,0.821411,0.498784,0.006144,0.38704,0.005216,0.005056,0.0056,0.00576,0.005024,0.073632,0.005312
+1293,1246.69,0.802124,0.319264,0.004896,0.196416,0.00432,0.00592,0.005376,0.02128,0.006208,0.069504,0.005344
+1294,1339.66,0.74646,0.303104,0.006144,0.19456,0.005536,0.004704,0.005856,0.005952,0.005856,0.069984,0.004512
+1295,1373.34,0.728149,0.30704,0.004576,0.19776,0.0048,0.00544,0.0048,0.006144,0.005952,0.071872,0.005696
+1296,1379.59,0.724854,0.310464,0.005344,0.19744,0.004384,0.005952,0.00592,0.005728,0.006016,0.074368,0.005312
+1297,1159.68,0.862305,0.820288,0.005344,0.445216,0.016256,0.004288,0.006112,0.005984,0.005728,0.326048,0.005312
+1298,867.429,1.15283,0.325408,0.005376,0.211616,0.004352,0.006144,0.00592,0.005952,0.00592,0.074368,0.00576
+1299,1535.81,0.651123,0.313344,0.005696,0.195008,0.00544,0.0048,0.005856,0.00576,0.00496,0.07968,0.006144
+1300,1202.23,0.831787,0.341952,0.004832,0.233472,0.005536,0.004704,0.0056,0.005696,0.006496,0.070272,0.005344
+1301,1022.47,0.978027,0.30336,0.00464,0.194528,0.004128,0.006112,0.005472,0.006464,0.005728,0.070432,0.005856
+1302,1564.85,0.639038,0.309248,0.005952,0.194208,0.00464,0.006144,0.005664,0.005888,0.00496,0.07712,0.004672
+1303,1423.95,0.702271,0.344832,0.005088,0.218688,0.004544,0.015712,0.005888,0.005024,0.006144,0.077824,0.00592
+1304,1349.14,0.741211,0.324096,0.004608,0.210944,0.005824,0.004416,0.006144,0.006144,0.006144,0.075392,0.00448
+1305,1392.49,0.71814,0.310752,0.005664,0.197088,0.005376,0.004864,0.006144,0.006144,0.006144,0.073728,0.0056
+1306,710.433,1.40759,0.314368,0.007168,0.198656,0.005248,0.004992,0.005568,0.005824,0.004992,0.075776,0.006144
+1307,1464.95,0.682617,0.307968,0.004864,0.196608,0.005536,0.004704,0.006112,0.005984,0.005888,0.073888,0.004384
+1308,823.317,1.2146,0.384896,0.004544,0.243456,0.004416,0.005856,0.016576,0.006144,0.006144,0.09216,0.0056
+1309,1139.36,0.877686,0.322112,0.004928,0.196608,0.0056,0.00464,0.00592,0.018656,0.006144,0.073728,0.005888
+1310,1710.23,0.584717,0.308,0.004896,0.196608,0.006048,0.004192,0.006144,0.006144,0.006144,0.073408,0.004416
+1311,1404.42,0.712036,0.309248,0.005696,0.19872,0.00448,0.005792,0.004672,0.00592,0.006144,0.072928,0.004896
+1312,1325.35,0.754517,0.3072,0.004992,0.19632,0.004416,0.005824,0.005472,0.006336,0.004928,0.0736,0.005312
+1313,1474.97,0.677979,0.307296,0.005376,0.19952,0.0056,0.00464,0.00576,0.00576,0.004864,0.07136,0.004416
+1314,664.18,1.50562,0.311456,0.007552,0.199296,0.004416,0.005856,0.006144,0.005696,0.005856,0.072128,0.004512
+1315,1524.66,0.655884,0.30928,0.00576,0.196992,0.005536,0.004704,0.005888,0.005824,0.00576,0.07424,0.004576
+1316,1305.08,0.766235,0.305152,0.006144,0.19456,0.005632,0.004608,0.005984,0.00592,0.005792,0.071456,0.005056
+1317,1237.65,0.807983,0.311488,0.005376,0.19552,0.005824,0.004416,0.005984,0.006208,0.00592,0.077664,0.004576
+1318,1224.51,0.81665,0.306432,0.006048,0.193856,0.004896,0.005344,0.006208,0.00656,0.005888,0.072256,0.005376
+1319,1611.33,0.620605,0.306336,0.00608,0.196032,0.004736,0.005536,0.004704,0.006144,0.006144,0.071648,0.005312
+1320,1224.7,0.816528,0.304832,0.005472,0.195008,0.004416,0.005856,0.005408,0.005024,0.006144,0.07168,0.005824
+1321,1379.82,0.724731,0.314624,0.005344,0.197408,0.005856,0.004384,0.006144,0.007872,0.00592,0.07632,0.005376
+1322,1321.29,0.756836,0.589856,0.006016,0.411776,0.065536,0.014144,0.005536,0.004896,0.006144,0.0712,0.004608
+1323,832.52,1.20117,0.32144,0.004544,0.210112,0.004928,0.005344,0.004896,0.006144,0.005952,0.07392,0.0056
+1324,1396.52,0.716064,0.335872,0.006144,0.219168,0.005984,0.004224,0.006144,0.006144,0.006144,0.07712,0.0048
+1325,1309.25,0.763794,0.309248,0.005888,0.194816,0.005504,0.004736,0.005664,0.006496,0.005888,0.075584,0.004672
+1326,1074.22,0.930908,0.308,0.004928,0.19456,0.00592,0.004288,0.006144,0.005856,0.005888,0.075648,0.004768
+1327,961.502,1.04004,0.3584,0.005504,0.229792,0.004384,0.00592,0.005408,0.005024,0.006112,0.075776,0.02048
+1328,1590.99,0.62854,0.309312,0.005408,0.198784,0.004736,0.005504,0.004928,0.005952,0.006144,0.07328,0.004576
+1329,1371.51,0.729126,0.307648,0.004992,0.196192,0.00448,0.00576,0.004672,0.006016,0.00608,0.073728,0.005728
+1330,1278.4,0.782227,0.557056,0.006144,0.42336,0.026624,0.004672,0.005984,0.00608,0.005728,0.073376,0.005088
+1331,884.474,1.13062,0.309696,0.004576,0.19648,0.004192,0.006144,0.005664,0.005824,0.004928,0.075744,0.006144
+1332,1367.84,0.731079,0.309248,0.005408,0.195296,0.005376,0.004864,0.006144,0.006144,0.006144,0.073728,0.006144
+1333,1340.09,0.746216,0.308864,0.00592,0.194368,0.004544,0.005792,0.004416,0.006144,0.006144,0.075776,0.00576
+1334,1211.66,0.825317,0.310016,0.004864,0.196384,0.004352,0.005952,0.006048,0.005792,0.005792,0.075744,0.005088
+1335,1309.46,0.763672,0.3072,0.00608,0.195936,0.004832,0.00544,0.0048,0.006144,0.005888,0.073568,0.004512
+1336,1537.25,0.650513,0.307104,0.006112,0.194528,0.00416,0.00608,0.005536,0.006048,0.00496,0.073632,0.006048
+1337,1346.93,0.742432,0.311072,0.00608,0.194624,0.005248,0.004992,0.006144,0.00608,0.005888,0.076096,0.00592
+1338,1428.17,0.700195,0.309248,0.00592,0.19888,0.00528,0.00496,0.006144,0.005792,0.005728,0.072032,0.004512
+1339,1031.35,0.969604,0.539232,0.0272,0.405152,0.005984,0.004608,0.005984,0.00592,0.005888,0.073952,0.004544
+1340,1061.41,0.942139,0.311776,0.004672,0.19584,0.004864,0.005408,0.004832,0.006144,0.006144,0.077824,0.006048
+1341,1395.33,0.716675,0.303648,0.00464,0.193632,0.005024,0.005248,0.004992,0.006144,0.00592,0.072992,0.005056
+1342,1248.59,0.800903,0.307232,0.005728,0.196384,0.004768,0.005792,0.004416,0.007232,0.005056,0.07168,0.006176
+1343,1148.14,0.870972,0.3072,0.005504,0.194816,0.00448,0.006048,0.0056,0.00576,0.00512,0.073728,0.006144
+1344,1417.79,0.705322,0.330976,0.005504,0.217728,0.005216,0.005024,0.006112,0.00608,0.005856,0.074112,0.005344
+1345,1327.71,0.753174,0.30528,0.005344,0.19344,0.005664,0.004576,0.005888,0.005984,0.005792,0.0736,0.004992
+1346,1421.73,0.703369,0.313888,0.00464,0.196608,0.0056,0.00464,0.005792,0.005792,0.004832,0.081376,0.004608
+1347,709.51,1.40942,0.333824,0.006016,0.2144,0.004736,0.004224,0.005408,0.004864,0.005824,0.082208,0.006144
+1348,1247.45,0.801636,0.316896,0.008,0.202976,0.00592,0.004288,0.00608,0.00576,0.005664,0.072608,0.0056
+1349,1349.59,0.740967,0.310464,0.006144,0.196608,0.00576,0.00448,0.006144,0.006144,0.006144,0.073728,0.005312
+1350,1362.83,0.733765,0.311776,0.005056,0.197888,0.004864,0.005408,0.004832,0.006144,0.005792,0.076128,0.005664
+1351,1119.28,0.893433,0.305792,0.004736,0.196608,0.005472,0.004768,0.005824,0.00576,0.005824,0.071872,0.004928
+1352,1454.03,0.687744,0.3072,0.005568,0.195136,0.005376,0.004864,0.0056,0.00576,0.005024,0.075584,0.004288
+1353,1350.48,0.740479,0.30928,0.005088,0.196608,0.006144,0.005184,0.005056,0.006144,0.005792,0.073856,0.005408
+1354,1515.35,0.659912,0.317504,0.014272,0.196704,0.005504,0.004736,0.006144,0.006048,0.005792,0.073888,0.004416
+1355,1276.61,0.783325,0.306336,0.005984,0.194688,0.004128,0.006112,0.005408,0.006112,0.004896,0.073728,0.00528
+1356,1337.47,0.747681,0.610304,0.006144,0.472672,0.028832,0.004352,0.006144,0.005952,0.005888,0.075456,0.004864
+1357,779.3,1.2832,0.3104,0.0056,0.194944,0.004256,0.005984,0.005408,0.005056,0.00608,0.077728,0.005344
+1358,1641.68,0.609131,0.311808,0.004608,0.196608,0.005984,0.005728,0.004704,0.006112,0.006144,0.0768,0.00512
+1359,1134.15,0.881714,0.516128,0.005504,0.401312,0.004832,0.005504,0.004736,0.006144,0.006144,0.07744,0.004512
+1360,1164.46,0.858765,0.305568,0.004512,0.19456,0.005568,0.004672,0.005856,0.00576,0.004928,0.075168,0.004544
+1361,1316.83,0.759399,0.324288,0.0048,0.21056,0.004512,0.00576,0.006496,0.006144,0.006112,0.07504,0.004864
+1362,799.297,1.2511,0.31216,0.00496,0.194016,0.00464,0.0056,0.00464,0.006144,0.006144,0.079872,0.006144
+1363,1333.12,0.750122,0.307168,0.00464,0.196608,0.005952,0.004288,0.006144,0.00608,0.005888,0.072,0.005568
+1364,741.022,1.34949,0.313376,0.007808,0.196992,0.00608,0.00416,0.006144,0.006144,0.006144,0.07504,0.004864
+1365,856.814,1.16711,0.460064,0.005408,0.332512,0.005376,0.004864,0.005792,0.005984,0.014432,0.080288,0.005408
+1366,1384.25,0.722412,0.306464,0.005536,0.199264,0.005952,0.004288,0.006144,0.005792,0.005888,0.068192,0.005408
+1367,1145.73,0.872803,0.309248,0.006144,0.197824,0.004928,0.005344,0.004896,0.006016,0.005728,0.07328,0.005088
+1368,1466,0.682129,0.309152,0.006048,0.19584,0.004864,0.00544,0.004928,0.006016,0.006144,0.073728,0.006144
+1369,1517.6,0.658936,0.30928,0.005664,0.197088,0.005312,0.004928,0.006144,0.005952,0.00576,0.073856,0.004576
+1370,1355.39,0.737793,0.305344,0.005408,0.194496,0.005088,0.005152,0.005088,0.006048,0.005728,0.073568,0.004768
+1371,1232.62,0.811279,0.310464,0.005856,0.196896,0.005536,0.004704,0.00592,0.004352,0.006112,0.075712,0.005376
+1372,760.067,1.31567,0.315392,0.008128,0.196672,0.00528,0.00496,0.005536,0.004704,0.006144,0.079648,0.00432
+1373,1489.73,0.671265,0.308352,0.005344,0.197344,0.00416,0.006176,0.005536,0.005952,0.004864,0.073728,0.005248
+1374,1376.81,0.726318,0.318304,0.00496,0.19456,0.005664,0.004576,0.005952,0.005952,0.005888,0.084608,0.006144
+1375,1318.53,0.758423,0.497472,0.006144,0.385024,0.00544,0.0048,0.005792,0.005824,0.004928,0.073568,0.005952
+1376,1039.86,0.96167,0.305152,0.005472,0.193184,0.005856,0.004384,0.006144,0.006144,0.006144,0.07168,0.006144
+1377,1383.08,0.723022,0.30928,0.0056,0.196896,0.004352,0.00592,0.006208,0.006272,0.005696,0.073792,0.004544
+1378,1331.6,0.750977,0.331776,0.006016,0.211072,0.00528,0.00496,0.005632,0.004736,0.006016,0.083488,0.004576
+1379,1469.68,0.68042,0.311296,0.005792,0.19824,0.004864,0.005408,0.004832,0.006048,0.00576,0.074208,0.006144
+1380,1319.38,0.757935,0.553312,0.004512,0.437952,0.008,0.004608,0.005984,0.00576,0.005696,0.07472,0.00608
+1381,851.382,1.17456,0.311072,0.006112,0.19664,0.005184,0.005056,0.005888,0.005952,0.005856,0.074464,0.00592
+1382,1368.3,0.730835,0.325376,0.006144,0.214368,0.004768,0.005504,0.004736,0.006144,0.006144,0.07168,0.005888
+1383,1371.05,0.72937,0.304096,0.005088,0.19456,0.005984,0.004256,0.006144,0.005824,0.005728,0.071456,0.005056
+1384,1311.98,0.762207,0.305088,0.0048,0.196608,0.005632,0.00576,0.004992,0.006176,0.00608,0.069664,0.005376
+1385,899.824,1.11133,0.335968,0.005344,0.226176,0.006144,0.00512,0.00512,0.006016,0.005792,0.071264,0.004992
+1386,1581.16,0.632446,0.324928,0.005856,0.198464,0.004576,0.005728,0.004512,0.019904,0.006752,0.073696,0.00544
+1387,1321.5,0.756714,0.309664,0.004544,0.198016,0.006016,0.004864,0.005696,0.006176,0.005824,0.072416,0.006112
+1388,1632.85,0.612427,0.308992,0.0056,0.1992,0.00528,0.004896,0.00416,0.006144,0.006144,0.07168,0.005888
+1389,1317.68,0.758911,0.557056,0.00576,0.432512,0.017792,0.004736,0.005888,0.00592,0.005856,0.074048,0.004544
+1390,782.875,1.27734,0.332384,0.004704,0.210752,0.004416,0.005824,0.005504,0.004928,0.016384,0.075104,0.004768
+1391,1529.79,0.653687,0.311296,0.00592,0.194784,0.005536,0.004704,0.005728,0.005824,0.004832,0.07888,0.005088
+1392,1461.03,0.684448,0.495552,0.00496,0.380448,0.004576,0.005728,0.004672,0.005984,0.006144,0.077728,0.005312
+1393,1063.62,0.940186,0.311296,0.005696,0.195008,0.005408,0.004832,0.00592,0.005792,0.005728,0.07856,0.004352
+1394,1355.39,0.737793,0.313856,0.004576,0.19856,0.004192,0.00608,0.00576,0.00576,0.00496,0.079392,0.004576
+1395,1291.1,0.774536,0.326144,0.004608,0.210944,0.005984,0.004256,0.006144,0.006112,0.00592,0.077376,0.0048
+1396,1494.07,0.669312,0.311296,0.005952,0.196832,0.006016,0.004192,0.006144,0.005792,0.005888,0.075552,0.004928
+1397,1048.11,0.954102,0.548864,0.005696,0.42848,0.010208,0.004288,0.006016,0.005984,0.005728,0.07632,0.006144
+1398,1022.21,0.978271,0.311264,0.00544,0.197312,0.006176,0.005088,0.00512,0.006144,0.006016,0.073856,0.006112
+1399,1316.2,0.759766,0.321536,0.014336,0.19632,0.004416,0.005728,0.005568,0.005056,0.006144,0.07904,0.004928
+1400,1483.25,0.674194,0.312704,0.005824,0.196736,0.004288,0.006144,0.005536,0.005824,0.005056,0.077792,0.005504
+1401,1220.5,0.819336,0.309408,0.005376,0.19344,0.005728,0.00448,0.006048,0.00528,0.005056,0.07888,0.00512
+1402,1413.63,0.707397,0.313504,0.004768,0.19456,0.00544,0.0048,0.005568,0.005824,0.006464,0.080448,0.005632
+1403,1323.85,0.755371,0.305664,0.004768,0.192512,0.006048,0.004192,0.006144,0.006144,0.006144,0.073728,0.005984
+1404,1512,0.661377,0.308416,0.005568,0.19616,0.00512,0.005184,0.005056,0.006144,0.005728,0.074144,0.005312
+1405,1077.19,0.928345,0.321376,0.005376,0.204832,0.004896,0.005376,0.004896,0.006112,0.005728,0.07824,0.00592
+1406,1352.48,0.73938,0.56768,0.00496,0.447872,0.008832,0.005568,0.004672,0.006144,0.006112,0.077856,0.005664
+1407,834.471,1.19836,0.319136,0.005472,0.19632,0.005056,0.005184,0.00688,0.00592,0.005888,0.082656,0.00576
+1408,1416.32,0.706055,0.315968,0.004864,0.19456,0.00544,0.0048,0.005856,0.00576,0.004928,0.083808,0.005952
+1409,1274.03,0.784912,0.330528,0.004896,0.212992,0.004096,0.005696,0.00576,0.004928,0.006016,0.081312,0.004832
+1410,1153.8,0.866699,0.329984,0.005408,0.216032,0.005664,0.004576,0.006048,0.005856,0.005824,0.075488,0.005088
+1411,1392.96,0.717896,0.308384,0.006016,0.193792,0.004992,0.005248,0.004992,0.006144,0.006112,0.075776,0.005312
+1412,1296.61,0.77124,0.3072,0.005472,0.193184,0.00544,0.0048,0.006176,0.007168,0.005088,0.074784,0.005088
+1413,1478.97,0.676147,0.329184,0.004576,0.218624,0.004416,0.005632,0.00464,0.006112,0.006144,0.073728,0.005312
+1414,1348.03,0.741821,0.311936,0.004992,0.196608,0.005344,0.004896,0.005632,0.00592,0.005888,0.076768,0.005888
+1415,669.993,1.49255,0.311296,0.007648,0.1992,0.005376,0.004864,0.005696,0.005664,0.005024,0.07168,0.006144
+1416,1325.14,0.754639,0.311328,0.005696,0.203232,0.005408,0.0048,0.005696,0.005696,0.004992,0.070816,0.004992
+1417,1683.52,0.593994,0.3176,0.005376,0.195488,0.005888,0.005536,0.006176,0.00496,0.006112,0.073728,0.014336
+1418,1123.11,0.890381,0.30576,0.004736,0.19456,0.005344,0.004896,0.005888,0.005824,0.00576,0.07264,0.006112
+1419,1403.46,0.712524,0.306944,0.005408,0.19472,0.004704,0.005536,0.004704,0.006144,0.006144,0.073728,0.005856
+1420,1303.21,0.767334,0.31824,0.016416,0.196416,0.005056,0.005856,0.005504,0.005024,0.006144,0.073056,0.004768
+1421,1425.44,0.701538,0.309632,0.004928,0.19664,0.005472,0.004736,0.005856,0.00576,0.004928,0.075584,0.005728
+1422,1428.67,0.699951,0.311456,0.005376,0.195584,0.005728,0.00448,0.006144,0.006176,0.006048,0.07584,0.00608
+1423,1167.62,0.856445,0.579552,0.004768,0.419744,0.050912,0.00448,0.006112,0.00592,0.005888,0.076288,0.00544
+1424,809.806,1.23486,0.324128,0.004768,0.206304,0.00464,0.005632,0.004672,0.00608,0.006144,0.079872,0.006016
+1425,1531.21,0.653076,0.31152,0.004576,0.199648,0.004896,0.00416,0.006112,0.00592,0.005728,0.074368,0.006112
+1426,1305.5,0.765991,0.51424,0.005376,0.40032,0.0056,0.00464,0.00592,0.005984,0.005888,0.074368,0.006144
+1427,1075.49,0.92981,0.308896,0.00608,0.194048,0.004672,0.005632,0.004672,0.00608,0.006144,0.075776,0.005792
+1428,1417.06,0.705688,0.311296,0.00576,0.196032,0.005056,0.005568,0.004736,0.00608,0.006144,0.076864,0.005056
+1429,1491.62,0.67041,0.310976,0.005984,0.195904,0.00496,0.005696,0.004672,0.006016,0.006144,0.075776,0.005824
+1430,1248.02,0.80127,0.31072,0.005664,0.19504,0.006144,0.00512,0.00512,0.006048,0.005792,0.076224,0.005568
+1431,1425.19,0.70166,0.321184,0.006112,0.200736,0.0056,0.00464,0.00576,0.005792,0.004832,0.08192,0.005792
+1432,645.751,1.54858,0.319104,0.00752,0.197376,0.00592,0.00432,0.006144,0.006144,0.006144,0.079872,0.005664
+1433,1517.04,0.65918,0.324352,0.015104,0.198144,0.00464,0.00544,0.0048,0.006112,0.006144,0.077824,0.006144
+1434,1211.83,0.825195,0.32368,0.005376,0.193376,0.00592,0.00432,0.006144,0.018432,0.006144,0.077824,0.006144
+1435,1219.96,0.819702,0.309632,0.004544,0.194496,0.00608,0.004128,0.006144,0.006048,0.005696,0.077632,0.004864
+1436,1305.91,0.765747,0.309888,0.004832,0.194592,0.005632,0.004576,0.006016,0.0056,0.005856,0.076736,0.006048
+1437,1473.12,0.678833,0.308224,0.005152,0.196576,0.005376,0.004864,0.005888,0.00576,0.004928,0.073536,0.006144
+1438,1365.79,0.732178,0.327648,0.005408,0.209792,0.005984,0.004256,0.006144,0.006144,0.006144,0.077856,0.00592
+1439,1282.2,0.779907,0.312064,0.004864,0.1984,0.004352,0.00592,0.005472,0.006464,0.004672,0.077184,0.004736
+1440,758.027,1.31921,0.33168,0.008192,0.214112,0.005024,0.005248,0.006112,0.005024,0.006176,0.075744,0.006048
+1441,1513.95,0.660522,0.309984,0.0048,0.19824,0.004512,0.005856,0.005472,0.005056,0.006144,0.075072,0.004832
+1442,1324.07,0.755249,0.3072,0.005376,0.194496,0.004928,0.005312,0.00496,0.006112,0.006144,0.075552,0.00432
+1443,798.986,1.25159,0.512,0.00608,0.397376,0.005856,0.004416,0.006112,0.005824,0.00576,0.074432,0.006144
+1444,1508.66,0.662842,0.325568,0.004608,0.2048,0.006144,0.004096,0.006144,0.006144,0.0072,0.08064,0.005792
+1445,1474.97,0.677979,0.318688,0.005728,0.20112,0.005568,0.004672,0.006144,0.006144,0.006048,0.07792,0.005344
+1446,1286.03,0.777588,0.31168,0.004544,0.196416,0.004416,0.005856,0.00624,0.006144,0.00592,0.077088,0.005056
+1447,1443.52,0.692749,0.3152,0.006144,0.200704,0.005824,0.004416,0.006144,0.00576,0.005856,0.0744,0.005952
+1448,1084.6,0.921997,0.512,0.008096,0.393312,0.006144,0.005312,0.004928,0.006144,0.005856,0.076064,0.006144
+1449,1067.08,0.937134,0.313504,0.004768,0.200704,0.005664,0.004576,0.005984,0.005728,0.005888,0.07456,0.005632
+1450,1471.26,0.679688,0.310176,0.005056,0.1976,0.00512,0.004288,0.005952,0.006112,0.005824,0.07408,0.006144
+1451,1232.62,0.811279,0.307168,0.005984,0.19472,0.004096,0.005216,0.005024,0.006176,0.006112,0.073728,0.006112
+1452,1165.62,0.85791,0.307232,0.005984,0.19472,0.005248,0.004992,0.006112,0.005952,0.005888,0.073792,0.004544
+1453,1547.7,0.646118,0.310016,0.004864,0.196608,0.005856,0.004384,0.006144,0.005952,0.005856,0.075872,0.00448
+1454,1366.7,0.731689,0.309248,0.00544,0.194464,0.004896,0.005408,0.004832,0.006144,0.00592,0.077632,0.004512
+1455,1298.26,0.770264,0.311328,0.006144,0.19456,0.005152,0.005088,0.006048,0.006048,0.005856,0.07776,0.004672
+1456,1428.42,0.700073,0.309856,0.004992,0.196448,0.004256,0.005984,0.005472,0.00608,0.004992,0.075776,0.005856
+1457,1492.71,0.669922,0.561152,0.006144,0.41984,0.031904,0.004992,0.005632,0.005824,0.00496,0.07728,0.004576
+1458,778.781,1.28406,0.327328,0.005376,0.213856,0.005312,0.004928,0.005664,0.005728,0.004992,0.075776,0.005696
+1459,1465.74,0.682251,0.311168,0.005344,0.19552,0.00608,0.00416,0.006144,0.006144,0.006176,0.075744,0.005856
+1460,1307.37,0.764893,0.50272,0.005056,0.387008,0.00528,0.005024,0.0056,0.005952,0.00592,0.077824,0.005056
+1461,1133.37,0.882324,0.339968,0.005408,0.215488,0.004384,0.005856,0.014048,0.006208,0.005664,0.077888,0.005024
+1462,1193.65,0.837769,0.309696,0.004992,0.194592,0.0056,0.004608,0.007296,0.004992,0.006144,0.075776,0.005696
+1463,920.76,1.08606,0.370784,0.005472,0.256672,0.005728,0.004512,0.006112,0.005728,0.005696,0.076448,0.004416
+1464,1208.26,0.827637,0.337728,0.005824,0.223552,0.005792,0.004448,0.006144,0.006144,0.006176,0.073696,0.005952
+1465,1294.97,0.772217,0.557088,0.005344,0.438368,0.008,0.005024,0.005568,0.005952,0.005888,0.07792,0.005024
+1466,871.119,1.14795,0.328832,0.006112,0.210432,0.00464,0.0056,0.006688,0.006176,0.00576,0.07808,0.005344
+1467,1410.23,0.709106,0.317184,0.006176,0.200672,0.005376,0.004864,0.005728,0.00576,0.004896,0.077824,0.005888
+1468,1340.09,0.746216,0.499712,0.005632,0.378464,0.005024,0.00528,0.006208,0.004896,0.006144,0.08192,0.006144
+1469,1080.45,0.925537,0.317472,0.005568,0.20128,0.005664,0.004576,0.006144,0.006144,0.005856,0.077632,0.004608
+1470,1435.68,0.696533,0.315392,0.006144,0.19456,0.00608,0.004192,0.006112,0.005984,0.005664,0.082112,0.004544
+1471,1475.77,0.677612,0.315072,0.006112,0.196384,0.004352,0.00592,0.005376,0.005088,0.006144,0.079872,0.005824
+1472,813.667,1.229,0.319488,0.005408,0.202496,0.005088,0.005184,0.005056,0.006144,0.005728,0.079488,0.004896
+1473,1045.3,0.956665,0.521952,0.014528,0.393152,0.006144,0.00544,0.0048,0.006144,0.006144,0.079872,0.005728
+1474,1084.03,0.922485,0.362496,0.006144,0.245344,0.004512,0.00576,0.004672,0.007296,0.00592,0.07808,0.004768
+1475,1178.03,0.848877,0.33792,0.00576,0.221568,0.005408,0.004832,0.00576,0.006528,0.005984,0.077344,0.004736
+1476,1729.73,0.578125,0.493248,0.00528,0.377696,0.005312,0.004928,0.005696,0.00576,0.00496,0.077792,0.005824
+1477,1093.29,0.914673,0.315616,0.004576,0.202112,0.004736,0.005536,0.004736,0.006112,0.006048,0.075872,0.005888
+1478,1176.17,0.85022,0.319488,0.006144,0.199808,0.004992,0.004128,0.006112,0.006144,0.00576,0.081632,0.004768
+1479,1487.02,0.672485,0.31632,0.005024,0.200704,0.00592,0.00432,0.006144,0.005888,0.005536,0.078464,0.00432
+1480,1227.63,0.814575,0.33792,0.006016,0.220928,0.00448,0.005856,0.005504,0.006784,0.00576,0.077952,0.00464
+1481,1495.98,0.668457,0.323616,0.005696,0.206752,0.00464,0.005632,0.004672,0.00608,0.006144,0.079296,0.004704
+1482,800.391,1.24939,0.329824,0.00752,0.20368,0.005728,0.004512,0.006144,0.005792,0.005632,0.084832,0.005984
+1483,1342.29,0.744995,0.321312,0.006144,0.198112,0.00464,0.0056,0.004672,0.006112,0.006048,0.084064,0.00592
+1484,1337.91,0.747437,0.320672,0.006144,0.202272,0.004576,0.005696,0.005984,0.006048,0.005824,0.07888,0.005248
+1485,1313.03,0.761597,0.318336,0.004992,0.200704,0.005728,0.005632,0.005024,0.006112,0.005728,0.078272,0.006144
+1486,1349.37,0.741089,0.315104,0.006144,0.196608,0.005664,0.004608,0.006112,0.005856,0.005664,0.078592,0.005856
+1487,1364.42,0.73291,0.315392,0.005408,0.196864,0.004576,0.00576,0.004672,0.005952,0.006144,0.079936,0.00608
+1488,1326.85,0.753662,0.316288,0.005088,0.196608,0.00608,0.004192,0.006112,0.00608,0.00592,0.08016,0.006048
+1489,1511.72,0.661499,0.323872,0.005536,0.203136,0.004608,0.005664,0.006048,0.005728,0.005088,0.082976,0.005088
+1490,1185.87,0.843262,0.319488,0.005792,0.19904,0.005824,0.004384,0.006144,0.005792,0.0056,0.082496,0.004416
+1491,704.204,1.42004,0.336352,0.00672,0.212896,0.006144,0.00512,0.00512,0.006144,0.006144,0.083264,0.0048
+1492,1283.61,0.779053,0.321536,0.006144,0.198336,0.004448,0.005824,0.005472,0.005056,0.006144,0.08512,0.004992
+1493,1051.33,0.951172,0.34128,0.006144,0.22528,0.006144,0.005344,0.004928,0.006112,0.006144,0.075776,0.005408
+1494,1427.18,0.700684,0.31936,0.005536,0.201312,0.005536,0.004704,0.006144,0.006144,0.005728,0.07824,0.006016
+1495,1472.85,0.678955,0.312512,0.00544,0.196448,0.005056,0.005216,0.005056,0.006112,0.00576,0.07808,0.005344
+1496,1232.62,0.811279,0.310208,0.005088,0.196192,0.004512,0.00576,0.004736,0.005856,0.006144,0.07728,0.00464
+1497,1012.73,0.987427,0.352032,0.005376,0.234336,0.006048,0.004192,0.006112,0.006144,0.006048,0.07792,0.005856
+1498,1145.73,0.872803,0.564512,0.005632,0.42768,0.025408,0.00416,0.006112,0.006144,0.006016,0.077952,0.005408
+1499,1039.59,0.961914,0.325184,0.006144,0.2048,0.005344,0.004896,0.006112,0.005856,0.005888,0.080448,0.005696
+1500,1202.41,0.831665,0.315584,0.005376,0.199616,0.005792,0.004448,0.00608,0.00576,0.005856,0.077568,0.005088
+1501,1569.05,0.637329,0.493568,0.00608,0.376896,0.00592,0.00432,0.006176,0.00576,0.005696,0.078336,0.004384
+1502,1013.74,0.98645,0.313344,0.006144,0.19456,0.005888,0.004352,0.006144,0.006144,0.006144,0.079328,0.00464
+1503,1653.61,0.604736,0.31232,0.00512,0.196608,0.00576,0.00448,0.005984,0.00576,0.005664,0.076896,0.006048
+1504,1336.6,0.748169,0.313376,0.006112,0.194624,0.005984,0.004224,0.006144,0.00592,0.005728,0.08016,0.00448
+1505,1099.6,0.909424,0.320576,0.005632,0.19824,0.005024,0.005248,0.004992,0.006144,0.006144,0.08384,0.005312
+1506,1710.94,0.584473,0.315424,0.005888,0.196128,0.004832,0.00544,0.0048,0.006144,0.006144,0.08128,0.004768
+1507,707.366,1.4137,0.323584,0.008192,0.20032,0.00448,0.005824,0.004416,0.006144,0.006144,0.083552,0.004512
+1508,1425.69,0.701416,0.316064,0.004896,0.196416,0.004288,0.005984,0.005344,0.005056,0.006144,0.08192,0.006016
+1509,1468.89,0.680786,0.313888,0.004672,0.198176,0.004544,0.00576,0.005568,0.005056,0.006144,0.07936,0.004608
+1510,1173.3,0.852295,0.313344,0.006144,0.19456,0.006144,0.005664,0.004608,0.006112,0.006144,0.07792,0.006048
+1511,1380.75,0.724243,0.309728,0.004576,0.19456,0.006144,0.00512,0.00512,0.005952,0.00576,0.077824,0.004672
+1512,1339.22,0.746704,0.311136,0.00592,0.194784,0.005568,0.004672,0.006144,0.006144,0.006144,0.075776,0.005984
+1513,1552.69,0.644043,0.313344,0.006144,0.197728,0.005024,0.005536,0.004704,0.006144,0.005984,0.077088,0.004992
+1514,849.264,1.17749,0.318176,0.004864,0.20272,0.005344,0.004896,0.005376,0.004896,0.006112,0.077824,0.006144
+1515,780.19,1.28174,0.328128,0.006752,0.20464,0.005632,0.004608,0.005888,0.0064,0.006144,0.083328,0.004736
+1516,1355.17,0.737915,0.316128,0.004832,0.19824,0.004512,0.00576,0.005504,0.00512,0.006144,0.081088,0.004928
+1517,1420.25,0.704102,0.324256,0.005024,0.2048,0.005824,0.004448,0.007488,0.005856,0.005056,0.079872,0.005888
+1518,1204,0.830566,0.313344,0.005504,0.194976,0.004352,0.00592,0.00544,0.005024,0.006112,0.079872,0.006144
+1519,1420.99,0.703735,0.317248,0.004416,0.196544,0.005152,0.005088,0.005504,0.004768,0.006144,0.083968,0.005664
+1520,1300.11,0.769165,0.317344,0.006016,0.194688,0.0056,0.00464,0.006144,0.006048,0.005728,0.082432,0.006048
+1521,1475.77,0.677612,0.319488,0.006144,0.196608,0.005504,0.00576,0.00512,0.006144,0.005952,0.082112,0.006144
+1522,1371.51,0.729126,0.313472,0.0048,0.196032,0.004672,0.0056,0.00464,0.006144,0.006144,0.079872,0.005568
+1523,1217.24,0.821533,0.319296,0.005888,0.198912,0.005344,0.004896,0.005664,0.005696,0.006976,0.079968,0.005952
+1524,894.03,1.11853,0.315392,0.008192,0.196608,0.005536,0.004704,0.005824,0.0056,0.00496,0.079328,0.00464
+1525,1513.67,0.660645,0.313344,0.005472,0.19728,0.005472,0.004768,0.005696,0.00576,0.004928,0.079456,0.004512
+1526,1401.06,0.713745,0.313888,0.005024,0.19456,0.005664,0.004576,0.006144,0.006016,0.005888,0.080256,0.00576
+1527,1208.08,0.827759,0.31312,0.00608,0.196704,0.00608,0.004128,0.006144,0.005952,0.005696,0.076416,0.00592
+1528,1293.54,0.773071,0.315936,0.00464,0.197888,0.004864,0.005376,0.004864,0.006144,0.006144,0.081248,0.004768
+1529,1535.23,0.651367,0.3176,0.004896,0.19776,0.004992,0.005952,0.005472,0.00496,0.006144,0.08192,0.005504
+1530,1348.03,0.741821,0.310656,0.005792,0.194912,0.005248,0.004992,0.0056,0.00576,0.005024,0.077824,0.005504
+1531,1302.8,0.767578,0.31104,0.004704,0.197664,0.005088,0.005184,0.005088,0.006112,0.00576,0.07616,0.00528
+1532,636.321,1.57153,0.56576,0.004608,0.438272,0.018112,0.004448,0.006112,0.00576,0.005696,0.077824,0.004928
+1533,1246.88,0.802002,0.312032,0.004832,0.196608,0.005248,0.004992,0.0056,0.005952,0.005952,0.076704,0.006144
+1534,1361.48,0.734497,0.30928,0.005376,0.194528,0.004928,0.005344,0.004896,0.006144,0.005984,0.077152,0.004928
+1535,855.115,1.16943,0.352064,0.004896,0.236544,0.00512,0.005664,0.00464,0.006112,0.006112,0.077632,0.005344
diff --git a/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..6ac4631
--- /dev/null
+++ b/profile/Vis_0/GridCellWidthCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_0,GCWidth_8,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,1205.15,0.893871,0.348307,0.00561088,0.234716,0.00543425,0.00502809,0.00533872,0.00586856,0.00586197,0.0751326,0.00531606
+max_1024,1760.96,4.9823,1.31472,0.053536,1.22061,0.04096,0.006368,0.022528,0.009792,0.021184,0.108544,0.006176
+min_1024,200.711,0.567871,0.282624,0.004128,0.190464,0.004096,0.004064,0.004096,0.004352,0.004384,0.0512,0.00416
+512,1485.4,0.673218,0.470944,0.006144,0.37888,0.00416,0.005952,0.005344,0.005024,0.006144,0.053248,0.006048
+513,1080.6,0.925415,0.303136,0.005952,0.21056,0.004672,0.005184,0.005056,0.00592,0.005664,0.055616,0.004512
+514,710.803,1.40686,0.30928,0.007456,0.211552,0.004256,0.005632,0.004608,0.006144,0.006176,0.058624,0.004832
+515,1465.74,0.682251,0.296256,0.005952,0.199936,0.00496,0.004192,0.006048,0.00624,0.006048,0.05744,0.00544
+516,1519.29,0.658203,0.300704,0.006144,0.200704,0.0056,0.00464,0.005632,0.00576,0.004992,0.06144,0.005792
+517,1510.32,0.662109,0.295552,0.004736,0.202208,0.00464,0.005312,0.004928,0.00608,0.005696,0.055808,0.006144
+518,1305.5,0.765991,0.291776,0.005024,0.19456,0.005504,0.004736,0.005504,0.004768,0.006112,0.060544,0.005024
+519,1539.27,0.649658,0.295936,0.00512,0.198656,0.005728,0.004512,0.006016,0.005664,0.004704,0.059392,0.006144
+520,1316.83,0.759399,0.299008,0.005664,0.201184,0.005152,0.004928,0.005312,0.005088,0.006144,0.059392,0.006144
+521,1120.2,0.8927,0.298112,0.006144,0.200416,0.004384,0.006144,0.005408,0.004832,0.006144,0.059328,0.005312
+522,911.133,1.09753,0.581632,0.006144,0.485376,0.008096,0.004192,0.006144,0.005856,0.005696,0.0552,0.004928
+523,633.81,1.57776,0.311328,0.006048,0.21616,0.004992,0.004224,0.005984,0.006208,0.005536,0.057568,0.004608
+524,838.142,1.19312,0.298944,0.00448,0.204768,0.004128,0.005792,0.00448,0.007424,0.004832,0.057344,0.005696
+525,926.487,1.07935,0.295424,0.004608,0.20256,0.004288,0.005856,0.004416,0.006112,0.006144,0.055328,0.006112
+526,1087.48,0.919556,0.295072,0.00544,0.202656,0.00496,0.004192,0.006016,0.00576,0.00576,0.054144,0.006144
+527,679.947,1.4707,0.301056,0.00464,0.206848,0.005664,0.004576,0.005696,0.005728,0.00496,0.057344,0.0056
+528,931.862,1.07312,0.29936,0.005088,0.202784,0.005472,0.004736,0.005536,0.004736,0.006112,0.059392,0.005504
+529,1061.28,0.942261,0.318464,0.00512,0.221184,0.004256,0.005728,0.004448,0.006048,0.006144,0.060672,0.004864
+530,1295.18,0.772095,0.30768,0.004576,0.214784,0.004352,0.005504,0.004736,0.006144,0.005728,0.0576,0.004256
+531,954.556,1.04761,0.366944,0.004768,0.270336,0.004224,0.005792,0.004416,0.006048,0.006144,0.059392,0.005824
+532,1341.19,0.745605,0.308608,0.005696,0.213216,0.004352,0.005632,0.004576,0.006144,0.006144,0.057344,0.005504
+533,1054.18,0.948608,0.321536,0.006144,0.23088,0.00464,0.005248,0.004992,0.00608,0.005504,0.05296,0.005088
+534,779.819,1.28235,0.339968,0.006144,0.249152,0.0048,0.004288,0.005952,0.00592,0.005696,0.05328,0.004736
+535,592.55,1.68762,1.31472,0.006144,1.22061,0.007808,0.005536,0.005088,0.005952,0.005696,0.05184,0.006048
+536,1113.35,0.898193,0.326624,0.005088,0.235552,0.005728,0.004512,0.005728,0.005888,0.005888,0.053984,0.004256
+537,1163.97,0.859131,0.352256,0.006048,0.260192,0.005952,0.004288,0.005952,0.006048,0.005696,0.053632,0.004448
+538,1080.03,0.925903,0.325376,0.004576,0.233472,0.005248,0.004896,0.005312,0.005024,0.006144,0.055296,0.005408
+539,1404.9,0.711792,0.306208,0.005536,0.2136,0.005952,0.005632,0.004832,0.006112,0.006144,0.05312,0.00528
+540,1479.77,0.675781,0.297888,0.005024,0.208256,0.004736,0.005952,0.005952,0.005824,0.004832,0.05312,0.004192
+541,1058.67,0.94458,0.319296,0.005696,0.225728,0.005184,0.005056,0.005952,0.005792,0.00592,0.054016,0.005952
+542,1244.8,0.803345,0.538976,0.005056,0.425984,0.025696,0.004928,0.00528,0.005088,0.006112,0.055296,0.005536
+543,933.987,1.07068,0.29456,0.005504,0.20544,0.005152,0.005088,0.005984,0.005728,0.004672,0.0512,0.005792
+544,1377.73,0.72583,0.29296,0.005376,0.201568,0.005248,0.004928,0.005344,0.00496,0.006144,0.054432,0.00496
+545,1409.98,0.709229,0.292832,0.004704,0.203968,0.004928,0.004192,0.006048,0.006144,0.00576,0.051584,0.005504
+546,1442.51,0.693237,0.288128,0.006144,0.196608,0.005568,0.004672,0.005568,0.005824,0.004992,0.053248,0.005504
+547,1467.05,0.681641,0.289632,0.00496,0.198656,0.005248,0.004928,0.006016,0.00576,0.00624,0.053216,0.004608
+548,1440.48,0.694214,0.2904,0.004576,0.196544,0.005312,0.004928,0.005344,0.004896,0.006144,0.05728,0.005376
+549,1251.83,0.798828,0.30384,0.004864,0.209888,0.004896,0.005376,0.005088,0.006144,0.006144,0.056544,0.004896
+550,1186.56,0.842773,0.299168,0.005376,0.205728,0.005472,0.004768,0.005504,0.00592,0.00496,0.056384,0.005056
+551,1275.62,0.783936,0.3272,0.005472,0.232096,0.005152,0.005024,0.005344,0.006336,0.005824,0.056288,0.005664
+552,1485.94,0.672974,0.290848,0.00544,0.19712,0.00432,0.005568,0.004704,0.006112,0.006016,0.055424,0.006144
+553,1476.83,0.677124,0.290816,0.00608,0.195776,0.004992,0.005664,0.004576,0.006176,0.006048,0.056608,0.004896
+554,1431.17,0.69873,0.284288,0.004608,0.194208,0.004384,0.00544,0.004832,0.006016,0.005728,0.05376,0.005312
+555,1476.83,0.677124,0.28464,0.005312,0.193472,0.004192,0.005824,0.00432,0.006144,0.006112,0.05328,0.005984
+556,1470.74,0.679932,0.282624,0.005952,0.193824,0.00496,0.00416,0.005568,0.005792,0.005024,0.05296,0.004384
+557,1444.54,0.692261,0.28416,0.00544,0.19328,0.004352,0.005664,0.005344,0.005088,0.006144,0.053248,0.0056
+558,1479.77,0.675781,0.28672,0.005408,0.19328,0.005152,0.004992,0.004192,0.006112,0.006144,0.056768,0.004672
+559,1064.73,0.939209,0.3224,0.004992,0.226944,0.004448,0.005504,0.004736,0.006144,0.006144,0.059136,0.004352
+560,1598.75,0.625488,0.302016,0.005088,0.206816,0.005184,0.004992,0.005248,0.00672,0.005536,0.056288,0.006144
+561,1414.61,0.706909,0.550944,0.005536,0.432736,0.026464,0.005536,0.004864,0.006144,0.005696,0.057792,0.006176
+562,850.145,1.17627,0.29056,0.004576,0.19648,0.005728,0.004512,0.005728,0.005824,0.004832,0.057344,0.005536
+563,1420,0.704224,0.2904,0.005376,0.195232,0.004192,0.005696,0.004544,0.006144,0.005984,0.057504,0.005728
+564,1466.79,0.681763,0.292896,0.006048,0.196736,0.005344,0.004896,0.005344,0.004864,0.006144,0.05904,0.00448
+565,1414.61,0.706909,0.294912,0.005504,0.199104,0.004288,0.005632,0.004608,0.006144,0.006048,0.05744,0.006144
+566,1200.64,0.832886,0.292896,0.005376,0.197376,0.004128,0.005568,0.004672,0.006144,0.006144,0.058944,0.004544
+567,931.438,1.07361,0.295488,0.004672,0.204416,0.00448,0.00592,0.004352,0.006112,0.006144,0.054752,0.00464
+568,942.693,1.06079,0.317024,0.006176,0.224352,0.004992,0.004096,0.006144,0.005952,0.005792,0.053792,0.005728
+569,1497.35,0.667847,0.304192,0.006144,0.212416,0.004672,0.005184,0.005056,0.005792,0.005664,0.053984,0.00528
+570,1418.04,0.7052,0.300128,0.005504,0.20544,0.005408,0.004832,0.00544,0.0048,0.006144,0.05728,0.00528
+571,1308,0.764526,0.305152,0.005376,0.210816,0.00496,0.00416,0.005952,0.00544,0.004992,0.057344,0.006112
+572,1482.18,0.674683,0.30128,0.004576,0.206784,0.005728,0.004512,0.005664,0.005728,0.004992,0.057344,0.005952
+573,1478.43,0.676392,0.295008,0.005344,0.19968,0.005216,0.004928,0.005248,0.005088,0.006144,0.057344,0.006016
+574,1412.41,0.708008,0.291424,0.005088,0.198272,0.00448,0.005568,0.004672,0.006144,0.005824,0.055616,0.00576
+575,1443.02,0.692993,0.294784,0.005344,0.199232,0.004416,0.005472,0.004768,0.006144,0.006144,0.057344,0.00592
+576,1304.04,0.766846,0.325632,0.005536,0.229984,0.005376,0.004832,0.005248,0.005024,0.006144,0.059008,0.00448
+577,1026.44,0.974243,0.329696,0.005984,0.23568,0.005728,0.004512,0.005696,0.005728,0.00496,0.055296,0.006112
+578,1375.42,0.727051,0.338336,0.004608,0.243584,0.005888,0.004352,0.005824,0.00576,0.0048,0.058816,0.004704
+579,799.453,1.25085,0.333664,0.005504,0.238208,0.005664,0.004576,0.006144,0.006144,0.005888,0.055552,0.005984
+580,1252.6,0.79834,0.32768,0.005632,0.234016,0.005824,0.004384,0.005792,0.005824,0.004768,0.055296,0.006144
+581,1381.92,0.723633,0.303104,0.00576,0.208576,0.0048,0.004288,0.005952,0.005856,0.005696,0.057472,0.004704
+582,1379.36,0.724976,0.322464,0.00512,0.229376,0.005408,0.004832,0.005344,0.004896,0.006144,0.055296,0.006048
+583,1390.83,0.718994,0.315328,0.004608,0.222592,0.004608,0.005344,0.004896,0.006112,0.005536,0.055936,0.005696
+584,1392.25,0.718262,0.314336,0.005088,0.221184,0.005248,0.004896,0.005952,0.005536,0.004992,0.056992,0.004448
+585,1219.23,0.82019,0.34016,0.005888,0.248256,0.00416,0.005792,0.004416,0.006112,0.006048,0.054848,0.00464
+586,1397.48,0.715576,0.319488,0.006112,0.225184,0.004224,0.006144,0.005632,0.005952,0.0048,0.055296,0.006144
+587,1086.33,0.920532,0.327232,0.004576,0.237408,0.004192,0.005792,0.004352,0.006144,0.006144,0.053248,0.005376
+588,1205.95,0.829224,0.332064,0.004544,0.242688,0.00496,0.004128,0.006048,0.005824,0.005632,0.05312,0.00512
+589,1168.95,0.855469,0.310752,0.005408,0.219744,0.004448,0.00544,0.0048,0.006144,0.005856,0.053536,0.005376
+590,1113.65,0.897949,0.32944,0.006144,0.23552,0.005312,0.004896,0.005312,0.004992,0.006112,0.055296,0.005856
+591,1077.33,0.928223,0.36928,0.004768,0.279616,0.00496,0.00416,0.006048,0.005728,0.005728,0.05376,0.004512
+592,347.752,2.87561,0.334912,0.006144,0.241664,0.005568,0.004672,0.005472,0.004768,0.006144,0.0552,0.00528
+593,326.791,3.06006,0.348352,0.005376,0.256704,0.00432,0.005728,0.004512,0.006144,0.006144,0.054592,0.004832
+594,1276.81,0.783203,0.314688,0.006144,0.222752,0.004576,0.005472,0.0048,0.006112,0.005728,0.053664,0.00544
+595,1227.63,0.814575,0.321088,0.005792,0.22768,0.005696,0.004576,0.0056,0.005792,0.00496,0.055264,0.005728
+596,1322.78,0.755981,0.333824,0.005984,0.241728,0.004192,0.00576,0.00448,0.006144,0.006016,0.053376,0.006144
+597,1100.93,0.908325,0.330016,0.004576,0.239424,0.005632,0.004608,0.0056,0.00576,0.005024,0.054304,0.005088
+598,921.07,1.08569,0.346048,0.005376,0.250784,0.005504,0.004736,0.00544,0.004832,0.006112,0.057344,0.00592
+599,729.67,1.37048,0.352256,0.005472,0.256576,0.004192,0.005696,0.004544,0.006144,0.006112,0.05872,0.0048
+600,1008.49,0.991577,0.308992,0.004512,0.212896,0.004192,0.005696,0.004544,0.006144,0.00608,0.059456,0.005472
+601,1042.37,0.959351,0.301344,0.004608,0.206208,0.004512,0.005376,0.004864,0.006144,0.005408,0.05808,0.006144
+602,1184.5,0.844238,0.326176,0.004608,0.226752,0.004672,0.005248,0.004992,0.006144,0.007168,0.061632,0.00496
+603,1108.23,0.902344,0.312672,0.005664,0.215072,0.004576,0.005312,0.004896,0.006144,0.00592,0.059616,0.005472
+604,756.977,1.32104,0.319712,0.006144,0.223136,0.004192,0.005696,0.004544,0.006144,0.006144,0.0592,0.004512
+605,1238.77,0.807251,0.311296,0.005888,0.2112,0.005472,0.004768,0.005376,0.004864,0.006144,0.062912,0.004672
+606,1204.71,0.830078,0.358848,0.004576,0.259168,0.00496,0.00416,0.00608,0.005792,0.005664,0.063584,0.004864
+607,1126.67,0.887573,0.336896,0.00512,0.237568,0.005856,0.004416,0.005824,0.005824,0.00576,0.060384,0.006144
+608,849.176,1.17761,0.434176,0.00608,0.335328,0.004704,0.00544,0.0048,0.006144,0.005696,0.060992,0.004992
+609,1138.57,0.878296,0.341408,0.005824,0.244032,0.005344,0.004896,0.005344,0.00496,0.00608,0.059392,0.005536
+610,1132.27,0.883179,0.324768,0.006144,0.220832,0.004448,0.005504,0.004736,0.006144,0.00592,0.065248,0.005792
+611,905.794,1.104,0.334016,0.005472,0.23776,0.004768,0.005344,0.004928,0.006112,0.005856,0.058944,0.004832
+612,1322.14,0.756348,0.327744,0.005376,0.23024,0.005888,0.00432,0.00592,0.006368,0.005824,0.059104,0.004704
+613,1272.25,0.786011,0.326016,0.004576,0.22928,0.00544,0.0048,0.00544,0.004992,0.007136,0.058208,0.006144
+614,1274.42,0.784668,0.3256,0.004608,0.225216,0.00544,0.0048,0.00544,0.00496,0.006016,0.063456,0.005664
+615,814.476,1.22778,0.52752,0.00576,0.426016,0.00448,0.005536,0.004672,0.006176,0.005888,0.06368,0.005312
+616,501.869,1.99255,0.853184,0.0056,0.755392,0.00496,0.00416,0.00608,0.005824,0.005696,0.059936,0.005536
+617,334.914,2.98584,0.34576,0.005408,0.242528,0.005376,0.004864,0.005312,0.004992,0.006048,0.065536,0.005696
+618,1232.62,0.811279,0.354304,0.006144,0.251904,0.00528,0.004928,0.00528,0.004992,0.006144,0.06464,0.004992
+619,844.623,1.18396,0.325696,0.005408,0.230176,0.005568,0.004672,0.005376,0.00496,0.006016,0.058752,0.004768
+620,819.282,1.22058,0.713856,0.005984,0.616608,0.005696,0.004544,0.005664,0.005792,0.00496,0.059296,0.005312
+621,1186.9,0.842529,0.341088,0.006144,0.237568,0.005696,0.004544,0.005664,0.005824,0.004896,0.06544,0.005312
+622,541.835,1.84558,0.347584,0.004608,0.246688,0.00496,0.004224,0.005952,0.005952,0.005696,0.064224,0.00528
+623,836.943,1.19482,0.347488,0.00544,0.246464,0.00416,0.005728,0.005632,0.004992,0.006112,0.063488,0.005472
+624,1121.27,0.891846,0.337472,0.005984,0.237216,0.004608,0.005344,0.004896,0.006176,0.00576,0.061792,0.005696
+625,660.432,1.51416,0.721184,0.005088,0.62784,0.00496,0.004128,0.006112,0.005856,0.00576,0.056,0.00544
+626,727.337,1.37488,0.346112,0.006112,0.249888,0.005248,0.00496,0.005312,0.00496,0.006176,0.058592,0.004864
+627,200.711,4.9823,0.364768,0.005376,0.268544,0.004832,0.004256,0.005984,0.005824,0.005696,0.05936,0.004896
+628,1261.08,0.792969,0.328288,0.004672,0.23552,0.005856,0.004384,0.005888,0.005824,0.005792,0.054176,0.006176
+629,1183.82,0.844727,0.34416,0.005408,0.235776,0.012864,0.006144,0.005376,0.004864,0.006144,0.062592,0.004992
+630,678.876,1.47302,0.40176,0.004608,0.302976,0.005408,0.0048,0.005408,0.004864,0.006112,0.062784,0.0048
+631,338.778,2.95178,0.374048,0.005536,0.270784,0.004256,0.005792,0.004448,0.006144,0.006016,0.065664,0.005408
+632,613.771,1.62927,0.350176,0.006144,0.249856,0.00544,0.0048,0.00544,0.00496,0.005984,0.06144,0.006112
+633,884.474,1.13062,0.335872,0.005952,0.235744,0.00528,0.004928,0.005376,0.004864,0.006144,0.062528,0.005056
+634,1316.62,0.759521,0.331456,0.004448,0.229376,0.005376,0.004864,0.005344,0.004896,0.006144,0.065536,0.005472
+635,947.49,1.05542,0.342656,0.004704,0.249856,0.00592,0.00432,0.005952,0.005856,0.005792,0.055584,0.004672
+636,1211.12,0.825684,0.33792,0.006048,0.243808,0.00416,0.00576,0.004416,0.007424,0.004896,0.056736,0.004672
+637,1287.04,0.776978,0.3344,0.004672,0.239616,0.005152,0.004928,0.005376,0.005024,0.006144,0.058944,0.004544
+638,1133.53,0.882202,0.32768,0.005504,0.233248,0.00496,0.004128,0.006112,0.005696,0.005664,0.057856,0.004512
+639,1248.59,0.800903,0.331808,0.004832,0.236896,0.004768,0.005824,0.004416,0.006144,0.006144,0.057344,0.00544
+640,796.965,1.25476,0.330432,0.0048,0.237344,0.004352,0.005568,0.00464,0.006144,0.006112,0.056928,0.004544
+641,717.024,1.39465,0.510016,0.005824,0.413984,0.004192,0.005728,0.004512,0.006144,0.006144,0.058976,0.004512
+642,702.452,1.42358,0.391168,0.00592,0.292384,0.0048,0.005856,0.004416,0.006112,0.006144,0.059392,0.006144
+643,678.146,1.47461,0.35024,0.006144,0.251904,0.00528,0.004928,0.005344,0.00496,0.006112,0.059392,0.006176
+644,686.903,1.45581,0.540768,0.005344,0.442304,0.004928,0.005664,0.004704,0.006144,0.006112,0.06048,0.005088
+645,825.39,1.21155,0.378624,0.006144,0.284288,0.00448,0.005472,0.004768,0.006144,0.00608,0.05536,0.005888
+646,757.747,1.3197,0.331968,0.004384,0.241472,0.004288,0.0056,0.00464,0.006144,0.006144,0.053248,0.006048
+647,636.42,1.57129,0.59392,0.005792,0.5,0.00416,0.005984,0.005344,0.006208,0.004992,0.057088,0.004352
+648,1122.5,0.890869,0.348672,0.004608,0.257504,0.00464,0.0056,0.00464,0.006144,0.006048,0.05504,0.004448
+649,1135.73,0.880493,0.335008,0.006016,0.241248,0.004672,0.005664,0.004544,0.006144,0.006112,0.055136,0.005472
+650,985.207,1.01501,0.343488,0.006016,0.24768,0.005376,0.004992,0.005312,0.005056,0.006144,0.057344,0.005568
+651,1176.34,0.850098,0.344064,0.005632,0.246304,0.0056,0.004608,0.005632,0.005792,0.00496,0.060416,0.00512
+652,1154.94,0.865845,0.332384,0.004704,0.238816,0.004896,0.005344,0.004896,0.006144,0.005888,0.056928,0.004768
+653,773.122,1.29346,0.55152,0.004672,0.458016,0.004832,0.005248,0.004992,0.006144,0.006144,0.056384,0.005088
+654,1222.87,0.817749,0.341728,0.005376,0.248,0.004768,0.005152,0.005088,0.006048,0.005792,0.055744,0.00576
+655,955.224,1.04688,0.54336,0.004736,0.428032,0.026624,0.006144,0.005408,0.004992,0.005984,0.056384,0.005056
+656,925.964,1.07996,0.360448,0.006144,0.264192,0.00512,0.00496,0.005312,0.005088,0.006144,0.058464,0.005024
+657,1029.66,0.971191,0.33984,0.004576,0.244608,0.00496,0.004224,0.006048,0.005824,0.00576,0.058144,0.005696
+658,1248.21,0.801147,0.323584,0.005728,0.229792,0.005568,0.004672,0.005632,0.00576,0.004992,0.056512,0.004928
+659,1318.95,0.758179,0.329824,0.005376,0.236096,0.004416,0.005536,0.004704,0.006112,0.005984,0.056576,0.005024
+660,798.752,1.25195,0.327392,0.005504,0.22912,0.00496,0.00416,0.006112,0.006144,0.005824,0.059712,0.005856
+661,1105.09,0.904907,0.354112,0.006144,0.251488,0.004512,0.005408,0.004832,0.006144,0.00592,0.063712,0.005952
+662,1130.55,0.884521,0.344,0.004576,0.245504,0.004224,0.00576,0.004512,0.006112,0.006144,0.06144,0.005728
+663,873.254,1.14514,0.319488,0.005792,0.21744,0.005952,0.004288,0.005984,0.005728,0.004672,0.064832,0.0048
+664,1219.05,0.820312,0.334368,0.00464,0.233472,0.004224,0.005728,0.004416,0.006112,0.006144,0.063488,0.006144
+665,1405.39,0.711548,0.31392,0.005088,0.219136,0.005312,0.004928,0.005344,0.004992,0.006048,0.057344,0.005728
+666,1155.27,0.865601,0.327712,0.005824,0.235616,0.00432,0.005664,0.004576,0.006144,0.006016,0.054976,0.004576
+667,1010.61,0.989502,0.365312,0.004864,0.269568,0.004864,0.004224,0.006016,0.005888,0.00576,0.058016,0.006112
+668,896.967,1.11487,0.375808,0.005088,0.278528,0.005344,0.004896,0.006112,0.00576,0.00576,0.059936,0.004384
+669,1048.37,0.953857,0.344064,0.005984,0.243872,0.006144,0.005216,0.005024,0.006048,0.005728,0.060928,0.00512
+670,665.692,1.5022,0.34816,0.007616,0.248128,0.004352,0.005568,0.004672,0.006144,0.00592,0.060672,0.005088
+671,1286.03,0.777588,0.324576,0.005088,0.229376,0.004256,0.005792,0.005376,0.006464,0.004768,0.059168,0.004288
+672,1300.73,0.768799,0.311904,0.004992,0.216832,0.004352,0.005632,0.00464,0.006112,0.006144,0.057344,0.005856
+673,1335.72,0.748657,0.309248,0.005536,0.211552,0.005664,0.004608,0.005664,0.006464,0.005888,0.058944,0.004928
+674,1341.41,0.745483,0.312928,0.006112,0.215072,0.00416,0.005728,0.00448,0.006112,0.006144,0.059392,0.005728
+675,662.515,1.5094,0.489568,0.004576,0.39024,0.004928,0.004256,0.005984,0.005856,0.00576,0.062112,0.005856
+676,1059.77,0.943604,0.551168,0.005504,0.437088,0.019936,0.00464,0.006144,0.005952,0.00592,0.061632,0.004352
+677,701.43,1.42566,0.370688,0.00608,0.274496,0.004096,0.005888,0.004352,0.006176,0.006112,0.059008,0.00448
+678,1046.5,0.955566,0.334048,0.005376,0.236416,0.004224,0.005728,0.004512,0.006144,0.006144,0.059392,0.006112
+679,1184.84,0.843994,0.325312,0.004736,0.227328,0.005952,0.004288,0.005952,0.005792,0.005696,0.060256,0.005312
+680,701.911,1.42468,0.331776,0.005408,0.233632,0.004672,0.005216,0.005056,0.006016,0.005792,0.061088,0.004896
+681,900.715,1.11023,0.387104,0.00608,0.286784,0.00576,0.00448,0.005824,0.005792,0.005824,0.061888,0.004672
+682,1091.68,0.916016,0.39936,0.005696,0.280896,0.004256,0.005664,0.004544,0.006144,0.017792,0.06976,0.004608
+683,935.16,1.06934,0.5592,0.053536,0.405184,0.0048,0.006144,0.005472,0.005824,0.00512,0.067552,0.005568
+684,1034.47,0.966675,0.344064,0.005632,0.24176,0.004544,0.005408,0.0048,0.006144,0.005952,0.065024,0.0048
+685,772.466,1.29456,0.334112,0.00544,0.232256,0.004256,0.0056,0.00464,0.007168,0.005152,0.065248,0.004352
+686,1160.67,0.861572,0.340448,0.004576,0.243712,0.005152,0.005088,0.00592,0.005696,0.004768,0.0608,0.004736
+687,1240.46,0.806152,0.331328,0.006144,0.233216,0.004352,0.0056,0.00464,0.006144,0.006144,0.059392,0.005696
+688,1101.52,0.907837,0.313344,0.005472,0.216896,0.00496,0.00416,0.00608,0.005856,0.005728,0.059392,0.0048
+689,1215.79,0.82251,0.345984,0.005664,0.242144,0.005344,0.004896,0.005344,0.004928,0.006112,0.065536,0.006016
+690,598.48,1.6709,0.539808,0.026624,0.412736,0.005056,0.005472,0.004768,0.006144,0.005984,0.067712,0.005312
+691,1286.63,0.777222,0.339488,0.005984,0.23568,0.004256,0.00576,0.00432,0.006144,0.006144,0.065536,0.005664
+692,1304.67,0.766479,0.331616,0.006144,0.227328,0.00608,0.00416,0.006048,0.005856,0.005728,0.06432,0.005952
+693,903.696,1.10657,0.347136,0.00512,0.24704,0.004864,0.004128,0.006112,0.005856,0.005792,0.063808,0.004416
+694,1492.98,0.6698,0.307744,0.00464,0.206848,0.005664,0.004576,0.005632,0.005792,0.00496,0.064512,0.00512
+695,1009.86,0.990234,0.481856,0.004672,0.376832,0.005216,0.004928,0.005344,0.004992,0.006144,0.068864,0.004864
+696,1311.35,0.762573,0.321536,0.00544,0.218944,0.00496,0.00416,0.00608,0.00592,0.0064,0.064512,0.00512
+697,1131.34,0.883911,0.345632,0.005632,0.241344,0.004928,0.004096,0.006112,0.005824,0.00576,0.066272,0.005664
+698,1118.21,0.894287,0.343616,0.005472,0.239648,0.004928,0.00416,0.006048,0.005952,0.006368,0.065536,0.005504
+699,1058.12,0.945068,0.38864,0.005856,0.282944,0.005952,0.004288,0.005952,0.00576,0.005792,0.066432,0.005664
+700,1255.48,0.796509,0.341312,0.005376,0.240544,0.005184,0.004928,0.005312,0.005056,0.006144,0.063008,0.00576
+701,1084.46,0.922119,0.340192,0.004608,0.237376,0.005888,0.004352,0.00592,0.00576,0.006528,0.063712,0.006048
+702,792.34,1.26208,0.359168,0.005088,0.25808,0.005216,0.004928,0.005312,0.004992,0.006144,0.063488,0.00592
+703,956.562,1.04541,0.365664,0.006144,0.26336,0.004928,0.00416,0.00608,0.005984,0.005888,0.063808,0.005312
+704,815.124,1.22681,0.6912,0.00512,0.587776,0.007744,0.004544,0.005664,0.00576,0.00496,0.064608,0.005024
+705,777.008,1.28699,0.408608,0.005888,0.306496,0.00496,0.004192,0.006048,0.005792,0.005792,0.064128,0.005312
+706,971.191,1.02966,0.352608,0.004576,0.253824,0.005696,0.004544,0.00576,0.00576,0.00496,0.062944,0.004544
+707,985.089,1.01514,0.349024,0.004992,0.24576,0.005888,0.00432,0.00592,0.005952,0.00592,0.065568,0.004704
+708,881.998,1.13379,0.407008,0.006176,0.296928,0.004288,0.005952,0.005952,0.005728,0.005728,0.070528,0.005728
+709,633.271,1.5791,0.444416,0.006144,0.333824,0.00592,0.004352,0.00592,0.005792,0.005696,0.070624,0.006144
+710,960.037,1.04163,0.35424,0.005792,0.252256,0.004224,0.00576,0.004384,0.006112,0.006144,0.063488,0.00608
+711,592.421,1.68799,0.360704,0.007488,0.256992,0.005504,0.004736,0.005504,0.005952,0.004928,0.063488,0.006112
+712,1252.41,0.798462,0.339744,0.004576,0.240832,0.004768,0.00432,0.00592,0.006016,0.005728,0.062016,0.005568
+713,1258.76,0.794434,0.362496,0.006144,0.263232,0.00496,0.004192,0.006048,0.00576,0.005728,0.06144,0.004992
+714,991.648,1.00842,0.316416,0.00512,0.2184,0.004832,0.004256,0.005984,0.00592,0.005472,0.062048,0.004384
+715,854.134,1.17078,0.350496,0.00496,0.24576,0.005344,0.004896,0.005344,0.004896,0.006144,0.067584,0.005568
+716,498.054,2.00781,0.647168,0.006176,0.528352,0.021632,0.004992,0.00592,0.005824,0.005856,0.063904,0.004512
+717,846.368,1.18152,0.353984,0.005376,0.255008,0.005248,0.004928,0.00528,0.004992,0.006176,0.061408,0.005568
+718,1163.97,0.859131,0.33472,0.004992,0.232672,0.004896,0.004192,0.006048,0.006144,0.006144,0.063488,0.006144
+719,1173.64,0.852051,0.339968,0.005632,0.237824,0.004384,0.005504,0.004704,0.006144,0.00592,0.063712,0.006144
+720,998.537,1.00146,0.339968,0.00544,0.238272,0.005568,0.004672,0.005536,0.005984,0.006048,0.063616,0.004832
+721,930.38,1.07483,0.34224,0.004832,0.243712,0.004128,0.005824,0.004416,0.006112,0.006176,0.061408,0.005632
+722,1190.18,0.84021,0.342048,0.006144,0.24096,0.004832,0.004256,0.005952,0.00608,0.00592,0.06336,0.004544
+723,479.597,2.08508,0.34352,0.007584,0.240224,0.005408,0.004832,0.005504,0.005952,0.00496,0.063456,0.0056
+724,1364.42,0.73291,0.319552,0.005376,0.219168,0.004896,0.005248,0.004992,0.005824,0.005632,0.063392,0.005024
+725,1378.66,0.725342,0.331328,0.006016,0.231584,0.00544,0.004768,0.00544,0.004832,0.006112,0.06144,0.005696
+726,1252.79,0.798218,0.3312,0.00608,0.230944,0.00464,0.00528,0.00496,0.006048,0.005664,0.062016,0.005568
+727,1242.91,0.804565,0.324864,0.005664,0.225056,0.0048,0.004128,0.006112,0.00592,0.005696,0.062112,0.005376
+728,865.139,1.15588,0.344064,0.005568,0.244288,0.005888,0.004352,0.00592,0.005728,0.004736,0.062464,0.00512
+729,1155.43,0.865479,0.342144,0.005632,0.242272,0.004128,0.00576,0.004448,0.006144,0.006144,0.063168,0.004448
+730,1102.56,0.906982,0.339264,0.006144,0.234944,0.004672,0.00528,0.00496,0.006048,0.00576,0.066016,0.00544
+731,940.528,1.06323,0.320928,0.006144,0.218752,0.00448,0.005344,0.004896,0.006144,0.006144,0.063488,0.005536
+732,1276.81,0.783203,0.32768,0.006144,0.228544,0.004928,0.004096,0.006112,0.005728,0.005824,0.060192,0.006112
+733,1086.47,0.92041,0.342016,0.005728,0.24176,0.004416,0.00544,0.0048,0.006144,0.005984,0.062688,0.005056
+734,1189.66,0.840576,0.356512,0.005376,0.254656,0.004352,0.0056,0.004608,0.006144,0.006176,0.064736,0.004864
+735,1201.35,0.832397,0.479456,0.005376,0.375776,0.005984,0.004256,0.005984,0.005792,0.00576,0.064384,0.006144
+736,1165.46,0.858032,0.346112,0.00608,0.243776,0.005248,0.004896,0.004192,0.006144,0.006144,0.065088,0.004544
+737,1198.54,0.834351,0.341568,0.005504,0.238208,0.004096,0.005856,0.004416,0.006112,0.006144,0.065536,0.005696
+738,636.124,1.57202,0.352352,0.007616,0.24848,0.004256,0.00576,0.004416,0.006048,0.006144,0.065216,0.004416
+739,1253.94,0.797485,0.331552,0.005888,0.228864,0.004864,0.004096,0.006144,0.006144,0.006048,0.063616,0.005888
+740,803.689,1.24426,0.344544,0.005056,0.23872,0.00496,0.004128,0.006048,0.005792,0.006016,0.06816,0.005664
+741,1399.15,0.714722,0.327264,0.005536,0.221568,0.004352,0.0056,0.004608,0.006144,0.006112,0.067616,0.005728
+742,1031.74,0.969238,0.485344,0.004512,0.378752,0.00528,0.004928,0.00528,0.004992,0.006144,0.069632,0.005824
+743,1195.56,0.836426,0.354272,0.005536,0.25248,0.00416,0.00576,0.00448,0.006112,0.006144,0.063488,0.006112
+744,1200.82,0.832764,0.556192,0.005536,0.426592,0.032064,0.0048,0.005376,0.004864,0.006144,0.065536,0.00528
+745,816.913,1.22412,0.335872,0.005984,0.235648,0.004128,0.005792,0.004448,0.006144,0.006144,0.062688,0.004896
+746,1325.78,0.754272,0.320608,0.005984,0.218688,0.004704,0.005184,0.005056,0.005984,0.006304,0.063488,0.005216
+747,1329.22,0.752319,0.320064,0.004672,0.220288,0.00496,0.004128,0.006176,0.005824,0.005696,0.063616,0.004704
+748,1249.54,0.800293,0.332448,0.004736,0.233024,0.004544,0.005376,0.004864,0.006144,0.005792,0.063264,0.004704
+749,654.784,1.52722,0.341888,0.00544,0.236384,0.0056,0.00464,0.005568,0.006464,0.005696,0.06624,0.005856
+750,1083.74,0.922729,0.347936,0.004512,0.243552,0.004224,0.005664,0.004576,0.006144,0.00608,0.067648,0.005536
+751,1081.59,0.924561,0.541184,0.004576,0.423936,0.024576,0.006048,0.00528,0.005056,0.006144,0.060576,0.004992
+752,923.458,1.08289,0.322624,0.005952,0.219328,0.005344,0.004896,0.005312,0.00496,0.007456,0.064032,0.005344
+753,1465.74,0.682251,0.321632,0.005472,0.21952,0.004512,0.005632,0.004608,0.006144,0.005792,0.06384,0.006112
+754,1199.41,0.83374,0.342688,0.004928,0.241344,0.004416,0.005632,0.004608,0.006144,0.006016,0.063648,0.005952
+755,1266.74,0.789429,0.322432,0.004992,0.221184,0.005568,0.004704,0.005472,0.005824,0.005056,0.065344,0.004288
+756,1114.71,0.897095,0.382592,0.00464,0.279872,0.0048,0.00512,0.00512,0.005984,0.005728,0.066016,0.005312
+757,823.731,1.21399,0.546176,0.005536,0.445024,0.005344,0.004896,0.005312,0.00496,0.006112,0.063488,0.005504
+758,1046.77,0.955322,0.354304,0.005536,0.248288,0.004224,0.006016,0.00528,0.005088,0.006144,0.067584,0.006144
+759,695.18,1.43848,0.343008,0.007168,0.237344,0.004288,0.005664,0.004576,0.006144,0.005984,0.066848,0.004992
+760,1094.16,0.91394,0.351104,0.004992,0.247456,0.00448,0.00544,0.004768,0.006144,0.005856,0.065824,0.006144
+761,757.677,1.31982,0.336128,0.0048,0.23728,0.004416,0.005472,0.004736,0.006144,0.005728,0.061856,0.005696
+762,1054.58,0.948242,0.339968,0.005696,0.235648,0.004416,0.00544,0.0048,0.006144,0.005888,0.065792,0.006144
+763,694.767,1.43933,0.563008,0.004672,0.458752,0.004096,0.006048,0.005248,0.005088,0.006176,0.067552,0.005376
+764,293.095,3.41187,0.655232,0.007584,0.549344,0.004256,0.005632,0.004608,0.006144,0.006112,0.065568,0.005984
+765,538.416,1.8573,0.352256,0.005632,0.24832,0.004256,0.005824,0.004288,0.006112,0.006144,0.065536,0.006144
+766,964.9,1.03638,0.349856,0.005376,0.242528,0.004288,0.00576,0.004416,0.006048,0.006112,0.069632,0.005696
+767,971.307,1.02954,0.357728,0.005376,0.250656,0.005408,0.004832,0.005344,0.004896,0.006144,0.069632,0.00544
+768,698.142,1.43237,0.396768,0.005888,0.291072,0.005952,0.004288,0.00592,0.005952,0.005952,0.066144,0.0056
+769,980.725,1.01965,0.3792,0.004544,0.276096,0.00448,0.005376,0.004864,0.006144,0.006144,0.065536,0.006016
+770,1408.04,0.710205,0.321568,0.004832,0.219136,0.004256,0.00576,0.004416,0.006048,0.006176,0.065504,0.00544
+771,1250.69,0.799561,0.336768,0.00512,0.233344,0.004224,0.006112,0.005312,0.00496,0.006144,0.065568,0.005984
+772,1151.86,0.868164,0.335264,0.005856,0.229664,0.0056,0.004672,0.005536,0.00576,0.005056,0.067584,0.005536
+773,1333.77,0.749756,0.331776,0.005536,0.229568,0.004512,0.005216,0.005056,0.006016,0.00624,0.063488,0.006144
+774,1108.08,0.902466,0.3584,0.006016,0.254016,0.00416,0.005728,0.004512,0.006144,0.006144,0.065536,0.006144
+775,1152.99,0.86731,0.336224,0.004608,0.233312,0.005184,0.004992,0.005248,0.005056,0.006144,0.065536,0.006144
+776,524.355,1.9071,0.3584,0.008192,0.251904,0.005728,0.004512,0.005696,0.005728,0.00496,0.06688,0.0048
+777,1120.04,0.892822,0.366464,0.004576,0.265536,0.004768,0.004096,0.006144,0.00592,0.00576,0.064096,0.005568
+778,1089.94,0.91748,0.340064,0.005952,0.237088,0.004768,0.00432,0.00592,0.006144,0.006144,0.065312,0.004416
+779,1174.82,0.851196,0.317504,0.00544,0.219264,0.004736,0.00528,0.004992,0.006112,0.005824,0.061312,0.004544
+780,1255.86,0.796265,0.347584,0.006048,0.24528,0.004672,0.00528,0.004992,0.00608,0.00576,0.063904,0.005568
+781,1033.56,0.967529,0.342496,0.004576,0.242688,0.00496,0.004256,0.00592,0.005728,0.004736,0.064992,0.00464
+782,1142.7,0.875122,0.358272,0.004544,0.259776,0.004416,0.005632,0.004608,0.006144,0.006112,0.061504,0.005536
+783,1243.28,0.804321,0.337056,0.006144,0.231424,0.005216,0.00496,0.005312,0.00624,0.006752,0.065728,0.00528
+784,1163.47,0.859497,0.337056,0.00544,0.237376,0.004928,0.004256,0.00592,0.005824,0.005792,0.06224,0.00528
+785,828.144,1.20752,0.334656,0.004928,0.233536,0.005888,0.004288,0.00592,0.00576,0.006368,0.061824,0.006144
+786,1296,0.771606,0.354944,0.004736,0.253696,0.004352,0.005536,0.004704,0.006144,0.006144,0.064832,0.0048
+787,1174.48,0.85144,0.338048,0.00544,0.2384,0.005472,0.004768,0.005408,0.004992,0.005984,0.063072,0.004512
+788,1370.82,0.729492,0.356032,0.006016,0.255552,0.004672,0.005216,0.00496,0.00608,0.00576,0.061952,0.005824
+789,1006.64,0.993408,0.329408,0.00608,0.226976,0.004544,0.005408,0.004832,0.006112,0.006016,0.063616,0.005824
+790,1378.66,0.725342,0.323584,0.006144,0.220352,0.004928,0.00416,0.00608,0.00576,0.006528,0.063488,0.006144
+791,530.914,1.88354,0.353248,0.007104,0.257664,0.00448,0.005376,0.004864,0.006144,0.005792,0.057056,0.004768
+792,1389.18,0.719849,0.313536,0.004608,0.214912,0.005376,0.004864,0.005408,0.00672,0.005952,0.059744,0.005952
+793,863.588,1.15796,0.325632,0.005536,0.225888,0.005888,0.004352,0.005856,0.005888,0.005856,0.061792,0.004576
+794,1224.51,0.81665,0.329472,0.005952,0.22752,0.005344,0.004928,0.005536,0.00576,0.006144,0.0624,0.005888
+795,1306.96,0.765137,0.312512,0.005792,0.2072,0.005856,0.004384,0.005856,0.006016,0.005952,0.066144,0.005312
+796,971.652,1.02917,0.33888,0.005056,0.238912,0.004768,0.005184,0.005056,0.006112,0.00576,0.063552,0.00448
+797,1009.86,0.990234,0.55824,0.005888,0.420096,0.04096,0.00576,0.00448,0.006144,0.00608,0.063488,0.005344
+798,897.458,1.11426,0.348352,0.005408,0.246368,0.004448,0.005536,0.004704,0.006144,0.006144,0.063488,0.006112
+799,1350.92,0.740234,0.32928,0.005376,0.224224,0.004256,0.005824,0.005312,0.005088,0.006144,0.067584,0.005472
+800,1235.6,0.809326,0.323584,0.006144,0.21712,0.005152,0.00496,0.005344,0.004992,0.006144,0.06864,0.005088
+801,1416.08,0.706177,0.3192,0.005664,0.215232,0.004384,0.005504,0.004736,0.006144,0.006144,0.065536,0.005856
+802,885.334,1.12952,0.333824,0.005504,0.231808,0.004352,0.005504,0.00592,0.004992,0.006112,0.064832,0.0048
+803,1064.17,0.939697,0.360672,0.005376,0.254144,0.004896,0.005184,0.005056,0.006144,0.005952,0.069056,0.004864
+804,1405.39,0.711548,0.342592,0.004672,0.231424,0.005664,0.004576,0.005664,0.006464,0.00576,0.073696,0.004672
+805,712.906,1.40271,0.378208,0.00784,0.272256,0.004576,0.005344,0.004896,0.006144,0.005792,0.065888,0.005472
+806,1234.48,0.810059,0.315424,0.005376,0.213792,0.005792,0.00448,0.00576,0.00576,0.004832,0.065056,0.004576
+807,1275.22,0.78418,0.323584,0.006144,0.221184,0.005856,0.004384,0.005696,0.00608,0.005696,0.063808,0.004736
+808,1205.77,0.829346,0.348192,0.005344,0.243904,0.004736,0.005184,0.005056,0.007296,0.004992,0.065536,0.006144
+809,1347.37,0.742188,0.315072,0.005408,0.213216,0.004864,0.004224,0.006016,0.005856,0.005792,0.064128,0.005568
+810,1302.38,0.767822,0.335936,0.005408,0.239584,0.004928,0.004192,0.006048,0.006048,0.005664,0.05936,0.004704
+811,622.303,1.60693,0.34336,0.006144,0.240768,0.004928,0.00416,0.006112,0.005856,0.005728,0.064224,0.00544
+812,959.7,1.04199,0.321536,0.004832,0.218944,0.004256,0.005888,0.004352,0.006144,0.006144,0.065536,0.00544
+813,1007.01,0.993042,0.360256,0.006144,0.255072,0.00496,0.00416,0.006144,0.005728,0.005696,0.0664,0.005952
+814,1125.58,0.888428,0.34016,0.004992,0.23664,0.00496,0.00416,0.00608,0.005696,0.005664,0.066528,0.00544
+815,1281.2,0.780518,0.339872,0.004672,0.23552,0.005248,0.004992,0.005504,0.005792,0.005088,0.067584,0.005472
+816,1391.78,0.718506,0.311296,0.00576,0.208736,0.00464,0.005248,0.004992,0.006016,0.006272,0.064672,0.00496
+817,1304.25,0.766724,0.331808,0.005984,0.227488,0.0056,0.00464,0.0056,0.005888,0.00592,0.065792,0.004896
+818,1048.91,0.953369,0.482432,0.006176,0.3768,0.005696,0.004544,0.006144,0.006144,0.005952,0.065664,0.005312
+819,1083.88,0.922607,0.319104,0.006144,0.214176,0.00496,0.004128,0.006112,0.005728,0.004512,0.067584,0.00576
+820,662.998,1.5083,0.325376,0.008192,0.219168,0.005248,0.004928,0.005312,0.00496,0.006144,0.065536,0.005888
+821,1715.24,0.583008,0.309248,0.0056,0.203296,0.005728,0.004512,0.006144,0.006144,0.006144,0.066976,0.004704
+822,1277.6,0.782715,0.295712,0.004896,0.195744,0.00496,0.004128,0.005888,0.00576,0.005792,0.063904,0.00464
+823,1636.44,0.611084,0.307392,0.00544,0.200704,0.00496,0.004128,0.00608,0.005632,0.005856,0.069536,0.005056
+824,1352.93,0.739136,0.30464,0.006144,0.196608,0.005888,0.004352,0.005728,0.004512,0.006144,0.069632,0.005632
+825,1504.22,0.664795,0.309248,0.005408,0.20144,0.00544,0.004768,0.005312,0.00496,0.006144,0.069632,0.006144
+826,1039.73,0.961792,0.485024,0.004128,0.378752,0.004192,0.005888,0.004384,0.006112,0.006144,0.069632,0.005792
+827,1071.97,0.932861,0.345632,0.00592,0.239424,0.004512,0.005376,0.004864,0.006144,0.006144,0.067584,0.005664
+828,646.822,1.54602,0.32704,0.007488,0.221568,0.004448,0.005472,0.004768,0.006144,0.005952,0.065728,0.005472
+829,1663.35,0.601196,0.312384,0.006144,0.206848,0.005536,0.004704,0.005504,0.004768,0.006112,0.067488,0.00528
+830,1257.21,0.79541,0.307296,0.005952,0.200896,0.0056,0.00464,0.006144,0.00592,0.005728,0.068,0.004416
+831,1455.32,0.687134,0.309632,0.005056,0.202752,0.005344,0.004896,0.005312,0.004928,0.006144,0.069632,0.005568
+832,1404.18,0.712158,0.30448,0.005536,0.201312,0.00416,0.00576,0.00544,0.00512,0.006144,0.065536,0.005472
+833,1411.2,0.708618,0.301472,0.004576,0.200608,0.004128,0.00592,0.004512,0.005952,0.006176,0.06528,0.00432
+834,977.916,1.02258,0.480864,0.005536,0.37744,0.005344,0.004896,0.005344,0.00496,0.00608,0.065536,0.005728
+835,1521.83,0.657104,0.31328,0.0048,0.208544,0.004448,0.005504,0.004736,0.006144,0.00592,0.067808,0.005376
+836,730.255,1.36938,0.30912,0.008224,0.203936,0.004928,0.004096,0.006144,0.005856,0.006432,0.063488,0.006016
+837,1498.99,0.667114,0.305216,0.005696,0.204352,0.00496,0.004128,0.006048,0.00576,0.005696,0.06416,0.004416
+838,1107.63,0.902832,0.30752,0.004576,0.204128,0.004608,0.005344,0.004896,0.005984,0.005728,0.067168,0.005088
+839,1719.56,0.581543,0.303168,0.006048,0.202592,0.004352,0.005536,0.004704,0.005952,0.005792,0.063776,0.004416
+840,1244.23,0.803711,0.296992,0.005536,0.197216,0.005856,0.004384,0.005728,0.004544,0.006112,0.062624,0.004992
+841,1581.47,0.632324,0.303072,0.005408,0.199488,0.005792,0.004448,0.00576,0.005856,0.004768,0.065536,0.006016
+842,1288.66,0.776001,0.297856,0.004928,0.198656,0.005472,0.004768,0.005216,0.005056,0.006112,0.063488,0.00416
+843,1240.27,0.806274,0.311648,0.004576,0.212928,0.00544,0.0048,0.005376,0.00496,0.006048,0.06144,0.00608
+844,1261.47,0.792725,0.547104,0.0048,0.432128,0.018432,0.004096,0.006144,0.005792,0.005728,0.064256,0.005728
+845,888.311,1.12573,0.313696,0.004576,0.210816,0.006144,0.004224,0.005984,0.005728,0.005664,0.065856,0.004704
+846,1382.62,0.723267,0.311296,0.005536,0.209152,0.005632,0.00496,0.004096,0.006144,0.005888,0.065568,0.00432
+847,1487.56,0.672241,0.30752,0.004576,0.203808,0.004928,0.00416,0.006048,0.005792,0.005664,0.06784,0.004704
+848,1097.39,0.911255,0.31088,0.004608,0.208224,0.004768,0.005184,0.005056,0.005824,0.005728,0.066176,0.005312
+849,1713.81,0.583496,0.308896,0.004608,0.204608,0.005568,0.004672,0.005408,0.004832,0.006144,0.067584,0.005472
+850,1299.49,0.769531,0.309152,0.006144,0.200608,0.004192,0.005568,0.004672,0.006144,0.006144,0.069632,0.006048
+851,463.086,2.15942,0.342016,0.005856,0.235808,0.005632,0.004608,0.005568,0.005824,0.004992,0.06864,0.005088
+852,435.559,2.2959,0.33536,0.008192,0.225312,0.00528,0.004928,0.005248,0.004992,0.006144,0.069632,0.005632
+853,1387.06,0.720947,0.324416,0.004928,0.224256,0.00496,0.004256,0.00592,0.005504,0.00496,0.063488,0.006144
+854,1378.66,0.725342,0.310976,0.006048,0.208,0.00496,0.004224,0.006144,0.00752,0.006016,0.063456,0.004608
+855,1160.01,0.862061,0.29696,0.006016,0.200128,0.004352,0.00432,0.00432,0.005568,0.004672,0.063328,0.004256
+856,1397.48,0.715576,0.31104,0.005376,0.209824,0.005312,0.004896,0.005248,0.005024,0.006144,0.063488,0.005728
+857,1179.89,0.847534,0.322272,0.005024,0.222176,0.004992,0.004224,0.005952,0.005856,0.006016,0.062048,0.005984
+858,1449.91,0.689697,0.313344,0.005536,0.210784,0.004864,0.005152,0.005088,0.006144,0.006144,0.06528,0.004352
+859,1222.32,0.818115,0.324,0.004992,0.21472,0.004384,0.005504,0.004736,0.006144,0.005952,0.071872,0.005696
+860,789.438,1.26672,0.313984,0.004864,0.206144,0.0048,0.004128,0.006112,0.005856,0.006016,0.070048,0.006016
+861,658.309,1.51904,0.32608,0.004608,0.221024,0.004192,0.00576,0.00448,0.006144,0.006144,0.06928,0.004448
+862,1294.36,0.772583,0.315392,0.005472,0.211616,0.005504,0.004736,0.005504,0.00576,0.0064,0.065664,0.004736
+863,1591.61,0.628296,0.313344,0.005984,0.202912,0.005632,0.00464,0.005536,0.006592,0.00592,0.071104,0.005024
+864,745.744,1.34094,0.48448,0.006144,0.376832,0.005376,0.004864,0.005376,0.004896,0.006112,0.069536,0.005344
+865,1238.96,0.807129,0.5592,0.00464,0.428032,0.032192,0.004672,0.006144,0.005728,0.005696,0.0664,0.005696
+866,861.047,1.16138,0.315424,0.006048,0.210176,0.00496,0.004128,0.00608,0.005792,0.005632,0.066432,0.006176
+867,1315.77,0.76001,0.317344,0.005376,0.211328,0.004736,0.005184,0.005056,0.006144,0.005856,0.067872,0.005792
+868,1263.61,0.791382,0.307392,0.004736,0.202784,0.005568,0.00464,0.005536,0.006496,0.005888,0.066048,0.005696
+869,1010.36,0.989746,0.3072,0.005696,0.205248,0.005152,0.00496,0.004256,0.006112,0.006144,0.064576,0.005056
+870,1559.19,0.641357,0.306048,0.004992,0.202752,0.005792,0.004448,0.005728,0.006304,0.005824,0.065344,0.004864
+871,1399.62,0.714478,0.306944,0.004864,0.204544,0.004352,0.005792,0.004448,0.007616,0.00576,0.064288,0.00528
+872,877.464,1.13965,0.324352,0.004864,0.224352,0.00496,0.004192,0.006048,0.005856,0.005856,0.063456,0.004768
+873,455.719,2.19434,0.721152,0.005376,0.57648,0.007232,0.005056,0.005824,0.00576,0.021184,0.089792,0.004448
+874,1070.15,0.934448,0.331808,0.006144,0.22528,0.005248,0.004928,0.00528,0.005024,0.006144,0.069088,0.004672
+875,1498.45,0.667358,0.330496,0.004864,0.225312,0.005184,0.004928,0.005312,0.005024,0.006144,0.067584,0.006144
+876,1347.37,0.742188,0.31952,0.004896,0.210944,0.005728,0.004512,0.00576,0.006272,0.005824,0.070208,0.005376
+877,1297.23,0.770874,0.31216,0.00496,0.2088,0.004192,0.006144,0.0056,0.005728,0.005056,0.067264,0.004416
+878,1230.21,0.812866,0.315168,0.006176,0.210528,0.00448,0.005152,0.005088,0.006144,0.006144,0.065536,0.00592
+879,1079.46,0.926392,0.343584,0.006144,0.2368,0.004864,0.004224,0.006016,0.005824,0.005696,0.068352,0.005664
+880,710.988,1.40649,0.35024,0.005088,0.24496,0.004928,0.005664,0.004544,0.006144,0.006144,0.067264,0.005504
+881,848.384,1.17871,0.357696,0.008192,0.251616,0.004384,0.005472,0.0048,0.006112,0.005888,0.06576,0.005472
+882,1294.36,0.772583,0.322592,0.005824,0.216416,0.00496,0.004224,0.006016,0.00576,0.004608,0.069472,0.005312
+883,1243.1,0.804443,0.32768,0.005792,0.216608,0.004928,0.004192,0.006048,0.005856,0.005888,0.072224,0.006144
+884,1355.84,0.737549,0.344384,0.004576,0.239456,0.005824,0.004416,0.006112,0.005856,0.005824,0.066176,0.006144
+885,1291.3,0.774414,0.332736,0.005056,0.229376,0.005664,0.004576,0.0056,0.005728,0.005056,0.065536,0.006144
+886,1064.73,0.939209,0.321536,0.005504,0.21744,0.004416,0.005472,0.004736,0.006144,0.005824,0.067424,0.004576
+887,1064.45,0.939453,0.358112,0.004768,0.251904,0.00592,0.00432,0.00592,0.005792,0.005696,0.068512,0.00528
+888,507.748,1.96948,0.3584,0.008032,0.250048,0.005792,0.004416,0.005856,0.005792,0.004928,0.068512,0.005024
+889,1453,0.688232,0.310368,0.00592,0.207072,0.005248,0.004928,0.005312,0.005024,0.006112,0.06544,0.005312
+890,1552.69,0.644043,0.30544,0.00496,0.200672,0.005472,0.004768,0.00544,0.006464,0.005856,0.066208,0.0056
+891,1281.6,0.780273,0.309152,0.00576,0.203136,0.0056,0.00464,0.0056,0.006688,0.006144,0.065536,0.006048
+892,1439.47,0.694702,0.307072,0.006016,0.20288,0.005344,0.004736,0.005312,0.005088,0.006144,0.065536,0.006016
+893,1081.45,0.924683,0.485568,0.00496,0.380256,0.004768,0.005216,0.005024,0.005952,0.005664,0.068256,0.005472
+894,1145.73,0.872803,0.33376,0.0048,0.221184,0.005856,0.005632,0.004896,0.006144,0.006144,0.073728,0.005376
+895,610.933,1.63684,0.343296,0.007904,0.2272,0.004768,0.00528,0.00496,0.006144,0.006144,0.07568,0.005216
+896,1384.49,0.72229,0.316064,0.005056,0.2048,0.004128,0.006112,0.005472,0.004864,0.006048,0.073728,0.005856
+897,1159.85,0.862183,0.329504,0.006048,0.215136,0.005824,0.004416,0.005824,0.006464,0.006144,0.073728,0.00592
+898,1461.55,0.684204,0.32576,0.0048,0.212992,0.005216,0.004928,0.005312,0.006752,0.005952,0.07424,0.005568
+899,1286.84,0.7771,0.320384,0.004992,0.212064,0.00496,0.00416,0.006112,0.005856,0.005472,0.072064,0.004704
+900,1485.4,0.673218,0.31184,0.00464,0.200736,0.005216,0.004896,0.005312,0.006432,0.005824,0.074432,0.004352
+901,742.298,1.34717,0.34816,0.005728,0.240032,0.005152,0.00496,0.00528,0.005088,0.007328,0.069856,0.004736
+902,1043.3,0.958496,0.502688,0.00704,0.394464,0.004896,0.0056,0.00464,0.006144,0.005952,0.069184,0.004768
+903,1134.31,0.881592,0.326272,0.004736,0.217056,0.00416,0.00576,0.004448,0.006144,0.006144,0.072768,0.005056
+904,1270.87,0.786865,0.331904,0.004768,0.219136,0.005792,0.004448,0.00576,0.005952,0.006496,0.073952,0.0056
+905,1364.88,0.732666,0.387104,0.00464,0.274432,0.00544,0.0048,0.005408,0.004864,0.006112,0.075776,0.005632
+906,1070.29,0.934326,0.315392,0.0056,0.207424,0.005632,0.004576,0.0056,0.00576,0.005024,0.070944,0.004832
+907,1688.72,0.592163,0.307392,0.005472,0.200768,0.004896,0.004192,0.006048,0.005632,0.005824,0.069824,0.004736
+908,1330.73,0.751465,0.304864,0.004736,0.200704,0.005184,0.004928,0.00528,0.005088,0.006144,0.067456,0.005344
+909,1358.09,0.736328,0.48848,0.006144,0.378208,0.004768,0.005216,0.005056,0.00608,0.005856,0.071872,0.00528
+910,1131.65,0.883667,0.329408,0.006144,0.217088,0.005632,0.004608,0.006144,0.005888,0.005856,0.072224,0.005824
+911,1400.34,0.714111,0.312576,0.006144,0.200704,0.005408,0.004832,0.006144,0.006144,0.005856,0.071968,0.005376
+912,1302.38,0.767822,0.301984,0.005024,0.196416,0.004288,0.005664,0.004576,0.006144,0.006144,0.069312,0.004416
+913,1502.02,0.665771,0.331616,0.00544,0.221696,0.00448,0.005376,0.004864,0.006144,0.006144,0.07168,0.005792
+914,1408.77,0.709839,0.312928,0.005824,0.199008,0.006112,0.005152,0.005088,0.005888,0.00576,0.074368,0.005728
+915,1330.09,0.751831,0.307232,0.005664,0.200224,0.00496,0.00576,0.004576,0.006176,0.005952,0.069472,0.004448
+916,1386.13,0.721436,0.299008,0.006112,0.194592,0.005952,0.004288,0.00592,0.0056,0.004992,0.06704,0.004512
+917,1281.8,0.780151,0.307168,0.00592,0.202496,0.004576,0.005312,0.004928,0.007232,0.005056,0.065536,0.006112
+918,1539.27,0.649658,0.512544,0.004992,0.401408,0.004224,0.005888,0.00528,0.00512,0.006112,0.073728,0.005792
+919,965.696,1.03552,0.355264,0.005056,0.243712,0.005504,0.004736,0.005536,0.005856,0.004992,0.073728,0.006144
+920,1221.41,0.818726,0.554944,0.006144,0.446464,0.00768,0.004608,0.005984,0.00576,0.005792,0.066432,0.00608
+921,913.98,1.09412,0.338816,0.004992,0.234688,0.00496,0.004128,0.00608,0.005792,0.005504,0.06832,0.004352
+922,1549.75,0.645264,0.316608,0.005632,0.205152,0.004256,0.005952,0.004416,0.006016,0.006144,0.073728,0.005312
+923,1359.44,0.735596,0.313344,0.006144,0.202304,0.004544,0.005344,0.004896,0.00608,0.005792,0.072096,0.006144
+924,1363.97,0.733154,0.306784,0.004672,0.200448,0.004352,0.005504,0.004736,0.00608,0.005696,0.070048,0.005248
+925,1472.85,0.678955,0.311008,0.006112,0.199936,0.004896,0.004192,0.005952,0.005792,0.005696,0.072576,0.005856
+926,1418.53,0.704956,0.311104,0.004672,0.19984,0.00496,0.0056,0.00464,0.006144,0.006144,0.073728,0.005376
+927,913.878,1.09424,0.31808,0.004736,0.210336,0.004704,0.005312,0.004928,0.00608,0.006176,0.071296,0.004512
+928,1485.4,0.673218,0.560448,0.005376,0.433152,0.022528,0.00544,0.0048,0.006144,0.005792,0.071904,0.005312
+929,867.245,1.15308,0.314368,0.005984,0.200864,0.004128,0.005952,0.004288,0.007584,0.005952,0.074304,0.005312
+930,1341.19,0.745605,0.309824,0.004992,0.200448,0.004352,0.005952,0.005888,0.005792,0.004896,0.07168,0.005824
+931,1432.42,0.69812,0.308544,0.006016,0.198304,0.004576,0.0056,0.00464,0.006144,0.006048,0.071776,0.00544
+932,1471.26,0.679688,0.305152,0.006144,0.198176,0.004576,0.005344,0.004928,0.006016,0.005792,0.068032,0.006144
+933,1403.94,0.71228,0.307232,0.005408,0.197376,0.005952,0.004288,0.00592,0.006368,0.005856,0.071072,0.004992
+934,1336.6,0.748169,0.30496,0.005792,0.194912,0.005952,0.004288,0.00592,0.005504,0.00496,0.07168,0.005952
+935,1375.88,0.726807,0.311488,0.0048,0.198496,0.004256,0.005728,0.004512,0.006144,0.005984,0.075936,0.005632
+936,917.563,1.08984,0.338496,0.005024,0.228864,0.004608,0.005344,0.004896,0.006144,0.005888,0.071936,0.005792
+937,1004.54,0.995483,0.5552,0.005536,0.44112,0.007808,0.005536,0.005088,0.006048,0.00576,0.073568,0.004736
+938,926.278,1.07959,0.327712,0.006144,0.219136,0.004256,0.005728,0.004352,0.006144,0.006144,0.071136,0.004672
+939,1457.65,0.686035,0.31984,0.004576,0.214272,0.004736,0.005216,0.005024,0.006144,0.006144,0.067584,0.006144
+940,1358.32,0.736206,0.317216,0.005376,0.20784,0.005472,0.004768,0.00544,0.0064,0.00576,0.070464,0.005696
+941,1377.27,0.726074,0.313792,0.004544,0.20848,0.004512,0.00544,0.0048,0.00608,0.005696,0.069888,0.004352
+942,1198.01,0.834717,0.313376,0.00544,0.20528,0.004352,0.0056,0.00464,0.006144,0.006144,0.071328,0.004448
+943,1552.4,0.644165,0.30944,0.005344,0.203488,0.004352,0.0056,0.004608,0.006144,0.005952,0.069312,0.00464
+944,1134.31,0.881592,0.31968,0.005376,0.213952,0.005536,0.004704,0.005536,0.005792,0.005056,0.069088,0.00464
+945,1351.15,0.740112,0.33152,0.00592,0.225504,0.00416,0.005824,0.004352,0.006144,0.006144,0.067584,0.005888
+946,1466,0.682129,0.311072,0.006144,0.202016,0.004832,0.005728,0.005664,0.005024,0.006112,0.069632,0.00592
+947,1132.43,0.883057,0.310432,0.005728,0.20112,0.005728,0.004512,0.006112,0.005888,0.005824,0.070016,0.005504
+948,1601.88,0.624268,0.305152,0.005536,0.198944,0.004416,0.005472,0.004768,0.006144,0.005856,0.068928,0.005088
+949,1509.49,0.662476,0.306176,0.005408,0.199296,0.005664,0.004704,0.005856,0.00576,0.005792,0.068416,0.00528
+950,1331.82,0.750854,0.308736,0.005408,0.197344,0.00544,0.0048,0.00528,0.005984,0.00512,0.073728,0.005632
+951,1409.26,0.709595,0.303136,0.005728,0.197056,0.005568,0.00464,0.0056,0.00576,0.005024,0.06864,0.00512
+952,1361.02,0.734741,0.301472,0.004608,0.195616,0.004928,0.005664,0.00464,0.006144,0.006112,0.069568,0.004192
+953,1420,0.704224,0.483168,0.004352,0.3768,0.005504,0.004736,0.005504,0.00592,0.00496,0.070784,0.004608
+954,893.835,1.11877,0.32976,0.006144,0.217088,0.00416,0.005824,0.004384,0.006112,0.006176,0.075456,0.004416
+955,1323.42,0.755615,0.55664,0.005408,0.440704,0.006592,0.006112,0.00528,0.004992,0.006144,0.075776,0.005632
+956,906.797,1.10278,0.325024,0.005472,0.206592,0.00496,0.004224,0.005984,0.005728,0.005696,0.080928,0.00544
+957,1101.08,0.908203,0.319488,0.006144,0.2048,0.005152,0.004928,0.005696,0.005856,0.004992,0.076896,0.005024
+958,1727.54,0.578857,0.313344,0.006144,0.201984,0.004864,0.004224,0.006016,0.006144,0.006144,0.0728,0.005024
+959,1270.27,0.787231,0.310848,0.005472,0.199328,0.005408,0.004864,0.005376,0.00624,0.006144,0.07232,0.005696
+960,1510.05,0.662231,0.30976,0.004608,0.20192,0.00496,0.004128,0.00608,0.005664,0.005728,0.070528,0.006144
+961,1316.2,0.759766,0.307232,0.006048,0.196704,0.005344,0.004896,0.005376,0.00496,0.007392,0.071872,0.00464
+962,1235.41,0.809448,0.31648,0.006144,0.20688,0.005344,0.004864,0.005376,0.004896,0.006112,0.071552,0.005312
+963,1143.81,0.874268,0.549888,0.005536,0.42864,0.014336,0.005664,0.004576,0.006144,0.006112,0.073728,0.005152
+964,979.904,1.02051,0.310528,0.006144,0.20176,0.00496,0.004224,0.006016,0.005888,0.005792,0.07024,0.005504
+965,1335.94,0.748535,0.30512,0.005536,0.196384,0.004928,0.00528,0.00496,0.006144,0.006144,0.069632,0.006112
+966,1568.75,0.637451,0.3072,0.00608,0.19984,0.004928,0.004224,0.005888,0.005792,0.005696,0.070272,0.00448
+967,1085.75,0.921021,0.313344,0.006016,0.202912,0.005152,0.004896,0.005344,0.005056,0.006144,0.07312,0.004704
+968,1612.92,0.619995,0.30832,0.006144,0.19664,0.005344,0.004896,0.005344,0.004896,0.006112,0.073664,0.00528
+969,1356.29,0.737305,0.311296,0.006016,0.19824,0.00464,0.00528,0.00496,0.00608,0.005728,0.074208,0.006144
+970,1408.04,0.710205,0.306176,0.005088,0.19456,0.00544,0.004832,0.006112,0.006144,0.006144,0.073344,0.004512
+971,844.101,1.18469,0.352288,0.006144,0.243008,0.0048,0.004288,0.005952,0.005984,0.005728,0.072,0.004384
+972,712.658,1.4032,0.329728,0.00768,0.219136,0.004608,0.00528,0.00496,0.006112,0.005696,0.071552,0.004704
+973,1385.89,0.721558,0.320736,0.005952,0.208544,0.00464,0.00528,0.00496,0.006112,0.005888,0.074016,0.005344
+974,1346.93,0.742432,0.315392,0.005792,0.203104,0.005344,0.004896,0.005344,0.006272,0.005952,0.074112,0.004576
+975,1280,0.78125,0.315488,0.005344,0.199648,0.004256,0.005984,0.006144,0.006144,0.006144,0.075776,0.006048
+976,893.056,1.11975,0.320704,0.006144,0.208896,0.004192,0.006048,0.005376,0.006368,0.00576,0.072608,0.005312
+977,1710.59,0.584595,0.315776,0.005088,0.200704,0.005888,0.004352,0.006144,0.006144,0.006144,0.075776,0.005536
+978,1081.45,0.924683,0.49152,0.005472,0.375456,0.005792,0.00448,0.005792,0.005728,0.004992,0.077696,0.006112
+979,1270.87,0.786865,0.313312,0.005728,0.202432,0.004832,0.004256,0.005984,0.006016,0.005632,0.07232,0.006112
+980,754.675,1.32507,0.331136,0.007488,0.217952,0.005632,0.005632,0.00512,0.006016,0.005568,0.072384,0.005344
+981,1379.12,0.725098,0.313792,0.004992,0.204192,0.004704,0.00528,0.00496,0.00608,0.005728,0.07216,0.005696
+982,1419.02,0.704712,0.336864,0.005088,0.22704,0.004384,0.005504,0.004736,0.006144,0.006144,0.072928,0.004896
+983,1292.93,0.773438,0.311328,0.00608,0.200736,0.00416,0.005792,0.0064,0.006176,0.005888,0.071456,0.00464
+984,1572.36,0.635986,0.311456,0.005376,0.201664,0.005472,0.004736,0.006144,0.006144,0.006016,0.070944,0.00496
+985,1317.25,0.759155,0.309792,0.00464,0.202784,0.005568,0.00464,0.005664,0.005952,0.00592,0.06848,0.006144
+986,1128.53,0.886108,0.306688,0.006144,0.198656,0.005472,0.004416,0.005728,0.005024,0.005984,0.069632,0.005632
+987,1241.78,0.805298,0.324704,0.00608,0.214528,0.004672,0.00528,0.00496,0.006176,0.006112,0.071552,0.005344
+988,1264.98,0.790527,0.553568,0.004896,0.44032,0.007584,0.004704,0.005504,0.005984,0.005056,0.073568,0.005952
+989,898.738,1.11267,0.319584,0.005344,0.205696,0.005216,0.005024,0.005312,0.004928,0.006176,0.07696,0.004928
+990,1482.45,0.674561,0.317824,0.004608,0.204448,0.00432,0.005536,0.004704,0.006144,0.006144,0.077184,0.004736
+991,1277.01,0.783081,0.316256,0.00496,0.202144,0.004736,0.005216,0.004992,0.006144,0.005952,0.077088,0.005024
+992,1465.47,0.682373,0.321536,0.005632,0.201216,0.005568,0.004672,0.005504,0.005856,0.005024,0.083424,0.00464
+993,1278,0.782471,0.31936,0.005376,0.207648,0.004256,0.005632,0.004576,0.006144,0.005824,0.074048,0.005856
+994,1497.35,0.667847,0.3128,0.005472,0.199392,0.005792,0.004448,0.00576,0.00576,0.004864,0.075776,0.005536
+995,524.422,1.90686,0.491872,0.004704,0.37888,0.004096,0.005984,0.004416,0.006016,0.006112,0.075776,0.005888
+996,1111.23,0.899902,0.328416,0.007168,0.217088,0.005344,0.004896,0.00528,0.00608,0.005024,0.07168,0.005856
+997,1554.16,0.643433,0.316608,0.006176,0.20048,0.004288,0.005696,0.004544,0.005952,0.005696,0.078432,0.005344
+998,1340.97,0.745728,0.315808,0.004608,0.202144,0.004576,0.005376,0.004864,0.006144,0.00576,0.077792,0.004544
+999,1320.23,0.757446,0.314656,0.005376,0.199424,0.005216,0.004992,0.005312,0.004992,0.006112,0.077824,0.005408
+1000,1561.27,0.640503,0.315392,0.006144,0.200736,0.005504,0.004704,0.005824,0.005888,0.005824,0.075776,0.004992
+1001,1288.66,0.776001,0.30928,0.0056,0.197152,0.005856,0.004384,0.005824,0.005632,0.00496,0.075232,0.00464
+1002,1508.1,0.663086,0.312512,0.005856,0.20032,0.004768,0.005952,0.004288,0.006144,0.006144,0.073728,0.005312
+1003,1193.82,0.837646,0.48736,0.00464,0.378144,0.004832,0.005152,0.005088,0.005984,0.005728,0.072256,0.005536
+1004,1159.03,0.862793,0.563008,0.006048,0.421344,0.0368,0.004704,0.005504,0.004768,0.006112,0.07168,0.006048
+1005,743.781,1.34448,0.313344,0.00544,0.203072,0.00448,0.005376,0.006112,0.006496,0.005824,0.071744,0.0048
+1006,1705.6,0.586304,0.312768,0.00592,0.200064,0.00496,0.004128,0.006112,0.005728,0.00576,0.074528,0.005568
+1007,1330.09,0.751831,0.316416,0.00592,0.200032,0.00496,0.004128,0.00592,0.00576,0.005728,0.078656,0.005312
+1008,1405.87,0.711304,0.313344,0.005408,0.19888,0.004608,0.005216,0.005024,0.006144,0.005952,0.077216,0.004896
+1009,1325.57,0.754395,0.315456,0.004736,0.199776,0.00496,0.00416,0.007264,0.005056,0.006112,0.077824,0.005568
+1010,1488.91,0.671631,0.315392,0.006016,0.198784,0.004128,0.006112,0.005792,0.005824,0.00496,0.078752,0.005024
+1011,1249.35,0.800415,0.329728,0.006144,0.214304,0.004832,0.00576,0.005952,0.004672,0.006144,0.076992,0.004928
+1012,1040.25,0.961304,0.339968,0.006144,0.225088,0.004288,0.0056,0.00464,0.006144,0.005952,0.077056,0.005056
+1013,600.103,1.66638,0.397248,0.007712,0.27696,0.00592,0.004352,0.005856,0.00592,0.005792,0.078688,0.006048
+1014,1025.15,0.975464,0.323936,0.004448,0.210592,0.004448,0.005408,0.004832,0.006144,0.005824,0.07792,0.00432
+1015,1450.42,0.689453,0.319488,0.0056,0.205344,0.005152,0.004928,0.005312,0.00512,0.006112,0.076928,0.004992
+1016,1585.45,0.630737,0.312,0.004768,0.200736,0.005792,0.004416,0.005632,0.005888,0.00592,0.074432,0.004416
+1017,1315.56,0.760132,0.311488,0.005408,0.197312,0.00432,0.005568,0.004672,0.006144,0.006144,0.075776,0.006144
+1018,1487.29,0.672363,0.309248,0.005408,0.199424,0.0056,0.004608,0.006144,0.005792,0.00576,0.072128,0.004384
+1019,1060.45,0.942993,0.48832,0.004992,0.378624,0.004352,0.005632,0.00464,0.006112,0.006144,0.07168,0.006144
+1020,1418.77,0.704834,0.324224,0.004736,0.214656,0.00448,0.00544,0.0048,0.00736,0.004928,0.07168,0.006144
+1021,703.599,1.42126,0.551648,0.00512,0.43744,0.006976,0.005856,0.004384,0.006144,0.006144,0.073728,0.005856
+1022,1207.9,0.827881,0.315392,0.005376,0.204928,0.004768,0.00512,0.005088,0.006144,0.006144,0.07168,0.006144
+1023,926.382,1.07947,0.315392,0.005376,0.204896,0.004768,0.004384,0.005856,0.005792,0.005696,0.073632,0.004992
+1024,1687.33,0.592651,0.314048,0.0048,0.201824,0.00496,0.005664,0.004672,0.006112,0.006144,0.074848,0.005024
+1025,1306.75,0.765259,0.323616,0.005504,0.209536,0.004128,0.005728,0.005888,0.005856,0.005024,0.075776,0.006176
+1026,1471,0.67981,0.31216,0.00496,0.200704,0.005504,0.004768,0.005824,0.00576,0.004768,0.073728,0.006144
+1027,675.629,1.4801,0.497664,0.005888,0.37504,0.005696,0.004576,0.005568,0.009792,0.008544,0.076416,0.006144
+1028,672.357,1.4873,0.335872,0.007808,0.221568,0.005152,0.004992,0.004192,0.006176,0.006016,0.074912,0.005056
+1029,1403.7,0.712402,0.319776,0.004928,0.20048,0.00432,0.006144,0.005504,0.004736,0.006144,0.08192,0.0056
+1030,1462.86,0.683594,0.324096,0.004608,0.2048,0.005248,0.004896,0.005216,0.00512,0.006144,0.083328,0.004736
+1031,1285.02,0.778198,0.321536,0.005504,0.201344,0.0056,0.00464,0.005728,0.005824,0.004832,0.083424,0.00464
+1032,952.558,1.0498,0.320832,0.005376,0.201664,0.005888,0.004352,0.005856,0.005984,0.005856,0.080576,0.00528
+1033,1352.71,0.739258,0.323264,0.005408,0.203488,0.004256,0.005824,0.004288,0.006112,0.006144,0.08192,0.005824
+1034,1691.51,0.591187,0.493568,0.005472,0.379552,0.004096,0.005888,0.004448,0.006048,0.006144,0.075776,0.006144
+1035,880.671,1.1355,0.319488,0.005568,0.205376,0.005888,0.004352,0.005824,0.00576,0.00496,0.077184,0.004576
+1036,869.731,1.14978,0.347136,0.007136,0.232768,0.004832,0.004288,0.00592,0.005856,0.004384,0.077504,0.004448
+1037,1392.01,0.718384,0.313344,0.00608,0.198752,0.005888,0.00432,0.006144,0.005696,0.005728,0.076352,0.004384
+1038,1432.92,0.697876,0.313824,0.004576,0.200224,0.004576,0.005344,0.004896,0.006144,0.005984,0.0776,0.00448
+1039,1382.38,0.723389,0.312672,0.005504,0.19696,0.004384,0.005536,0.004704,0.00768,0.005696,0.076736,0.005472
+1040,1360.57,0.734985,0.313344,0.006144,0.196608,0.00528,0.004928,0.005696,0.005824,0.004896,0.079616,0.004352
+1041,1080.17,0.925781,0.31744,0.005664,0.201184,0.005888,0.005664,0.004832,0.006144,0.005856,0.076064,0.006144
+1042,1722.82,0.580444,0.312896,0.004608,0.198688,0.005632,0.004576,0.006144,0.006048,0.0056,0.076384,0.005216
+1043,1213.27,0.824219,0.315904,0.004608,0.204352,0.004544,0.005408,0.004832,0.006144,0.006144,0.074848,0.005024
+1044,1333.98,0.749634,0.316192,0.004864,0.208896,0.00512,0.004928,0.004416,0.006016,0.00608,0.071328,0.004544
+1045,1342.95,0.744629,0.309984,0.004928,0.196608,0.005568,0.004704,0.005504,0.005888,0.00496,0.075776,0.006048
+1046,1512.56,0.661133,0.313344,0.006144,0.200224,0.004576,0.005312,0.004928,0.00592,0.00576,0.075616,0.004864
+1047,1359.44,0.735596,0.311296,0.005536,0.196512,0.0048,0.00544,0.0048,0.006144,0.005792,0.077312,0.00496
+1048,1438.71,0.695068,0.312928,0.00544,0.198336,0.005024,0.004192,0.005824,0.005824,0.004768,0.077792,0.005728
+1049,1153.32,0.867065,0.321536,0.006144,0.206528,0.004416,0.005504,0.004736,0.006144,0.006144,0.07696,0.00496
+1050,1620.57,0.617065,0.329792,0.005344,0.200992,0.004768,0.005184,0.005088,0.006112,0.00576,0.090496,0.006048
+1051,1285.83,0.77771,0.323392,0.00544,0.196448,0.004928,0.004128,0.00608,0.00592,0.005888,0.088608,0.005952
+1052,882.568,1.13306,0.50176,0.004224,0.378368,0.00448,0.005472,0.004768,0.006144,0.005856,0.086304,0.006144
+1053,1455.32,0.687134,0.338592,0.004864,0.210208,0.004832,0.005152,0.005088,0.006144,0.006144,0.090112,0.006048
+1054,684.435,1.46106,0.331776,0.00816,0.20688,0.005312,0.00496,0.005984,0.00576,0.006016,0.083872,0.004832
+1055,1666.4,0.600098,0.32848,0.004896,0.20448,0.004416,0.004128,0.00608,0.005824,0.005696,0.088064,0.004896
+1056,1257.21,0.79541,0.31536,0.004928,0.198592,0.00416,0.005792,0.00448,0.006112,0.00608,0.079904,0.005312
+1057,1466.26,0.682007,0.318048,0.004704,0.200384,0.004416,0.005472,0.006048,0.004864,0.006144,0.08096,0.005056
+1058,1436.19,0.696289,0.319232,0.005568,0.197056,0.004224,0.005664,0.00592,0.004992,0.005952,0.084,0.005856
+1059,1350.03,0.740723,0.319488,0.005472,0.198656,0.004768,0.00528,0.00496,0.006144,0.00576,0.083712,0.004736
+1060,1210.04,0.826416,0.497664,0.005856,0.376224,0.004992,0.004192,0.006016,0.005984,0.005984,0.083392,0.005024
+1061,730.45,1.36902,0.358656,0.00544,0.23984,0.004832,0.004096,0.006176,0.006112,0.006144,0.081824,0.004192
+1062,1039.73,0.961792,0.326048,0.00672,0.20864,0.004192,0.005696,0.004576,0.006112,0.00608,0.079616,0.004416
+1063,1624.43,0.615601,0.317248,0.005472,0.19728,0.005696,0.004544,0.005632,0.005728,0.005024,0.08192,0.005952
+1064,1303.84,0.766968,0.314016,0.004736,0.196608,0.005728,0.004512,0.005696,0.005792,0.005984,0.080288,0.004672
+1065,1467.57,0.681396,0.32208,0.004896,0.201792,0.00496,0.00544,0.004896,0.006144,0.005792,0.082272,0.005888
+1066,1325.14,0.754639,0.315392,0.005408,0.202816,0.004768,0.00432,0.00592,0.00608,0.00592,0.074016,0.006144
+1067,758.729,1.31799,0.350208,0.005984,0.233024,0.004704,0.005152,0.005088,0.00592,0.005856,0.080032,0.004448
+1068,1137.78,0.878906,0.32768,0.00544,0.209152,0.004544,0.005376,0.004864,0.0072,0.00512,0.080992,0.004992
+1069,1397.24,0.715698,0.575296,0.006176,0.450208,0.006464,0.006144,0.005344,0.005984,0.005088,0.083936,0.005952
+1070,789.362,1.26685,0.324928,0.005472,0.201376,0.005376,0.004864,0.005408,0.005952,0.005024,0.086016,0.00544
+1071,1562.17,0.640137,0.319872,0.004992,0.202752,0.005728,0.004512,0.006144,0.006016,0.005888,0.078208,0.005632
+1072,1200.29,0.83313,0.31392,0.005056,0.199936,0.004864,0.004096,0.006144,0.005792,0.006432,0.07584,0.00576
+1073,1548.29,0.645874,0.333824,0.005792,0.226656,0.00496,0.004288,0.006016,0.005856,0.005792,0.070016,0.004448
+1074,1345.6,0.743164,0.305504,0.004576,0.198464,0.004192,0.005664,0.004544,0.006144,0.006144,0.071072,0.004704
+1075,1455.32,0.687134,0.313408,0.005376,0.201536,0.005856,0.005504,0.005024,0.006144,0.006144,0.073408,0.004416
+1076,1212.73,0.824585,0.337792,0.005376,0.226208,0.005888,0.004416,0.00608,0.006144,0.006144,0.07168,0.005856
+1077,1087.63,0.919434,0.352352,0.00544,0.240608,0.005792,0.004448,0.00576,0.006528,0.006144,0.07168,0.005952
+1078,753.287,1.32751,0.327712,0.007968,0.215264,0.005216,0.00496,0.00528,0.005024,0.006144,0.07168,0.006176
+1079,1386.13,0.721436,0.30896,0.00608,0.197856,0.00496,0.004128,0.006112,0.005728,0.005824,0.072416,0.005856
+1080,1063.21,0.940552,0.311776,0.004576,0.202784,0.005536,0.004704,0.005408,0.005824,0.00512,0.072992,0.004832
+1081,1760.96,0.567871,0.313088,0.004384,0.204256,0.00464,0.005312,0.004928,0.006176,0.006112,0.07168,0.0056
+1082,1336.16,0.748413,0.313344,0.005376,0.20352,0.005312,0.004928,0.00528,0.007008,0.005344,0.071712,0.004864
+1083,1388.47,0.720215,0.308288,0.005856,0.19808,0.00496,0.005472,0.004768,0.006144,0.005888,0.071808,0.005312
+1084,855.561,1.16882,0.315392,0.006016,0.20288,0.005792,0.004448,0.005728,0.00576,0.004992,0.073632,0.006144
+1085,1352.71,0.739258,0.319808,0.004416,0.212416,0.004672,0.005216,0.005024,0.00608,0.005952,0.071008,0.005024
+1086,1163.14,0.859741,0.550912,0.005632,0.428544,0.02048,0.005184,0.005056,0.006144,0.006144,0.06864,0.005088
+1087,933.881,1.0708,0.314624,0.005376,0.207744,0.005792,0.004448,0.006144,0.006144,0.00608,0.067552,0.005344
+1088,1365.79,0.732178,0.308224,0.00512,0.200416,0.004384,0.005504,0.004736,0.006144,0.006144,0.069632,0.006144
+1089,1447.61,0.690796,0.313472,0.005376,0.203744,0.005408,0.004832,0.005376,0.004864,0.006144,0.07168,0.006048
+1090,984.142,1.01611,0.3072,0.005984,0.1968,0.005888,0.00432,0.005824,0.005568,0.004992,0.073408,0.004416
+1091,1534.94,0.651489,0.313984,0.004736,0.202784,0.005152,0.004928,0.004256,0.006112,0.006016,0.0752,0.0048
+1092,1439.97,0.694458,0.316832,0.005856,0.204064,0.00496,0.005344,0.005056,0.006016,0.005696,0.074304,0.005536
+1093,1276.21,0.783569,0.323776,0.005024,0.2048,0.005792,0.004448,0.005728,0.005952,0.005888,0.080736,0.005408
+1094,1143.18,0.874756,0.550912,0.005728,0.438688,0.008096,0.004192,0.00592,0.005856,0.005824,0.071872,0.004736
+1095,929.536,1.07581,0.319488,0.006112,0.202784,0.00576,0.00448,0.006144,0.005792,0.005952,0.078144,0.00432
+1096,1327.28,0.753418,0.315392,0.006144,0.19664,0.00528,0.004896,0.006176,0.006048,0.00576,0.07968,0.004768
+1097,1512.28,0.661255,0.317184,0.006048,0.198752,0.005248,0.004992,0.005568,0.00576,0.005056,0.079872,0.005888
+1098,1337.69,0.747559,0.31248,0.006144,0.196608,0.005152,0.005088,0.005632,0.005888,0.00592,0.076768,0.00528
+1099,968.55,1.03247,0.32144,0.005856,0.204928,0.004288,0.005696,0.004512,0.006144,0.006144,0.077824,0.006048
+1100,1519.01,0.658325,0.316704,0.006144,0.202752,0.00528,0.004896,0.004192,0.006112,0.006144,0.075776,0.005408
+1101,1429.92,0.699341,0.531904,0.004576,0.4232,0.00464,0.005472,0.004768,0.006144,0.005888,0.071872,0.005344
+1102,906.295,1.10339,0.325632,0.0048,0.212992,0.005248,0.004992,0.005376,0.00496,0.006048,0.075776,0.00544
+1103,1225.06,0.816284,0.514528,0.01008,0.395904,0.005856,0.005536,0.004992,0.006144,0.006144,0.074848,0.005024
+1104,1047.44,0.954712,0.315392,0.006144,0.20384,0.00496,0.005792,0.004544,0.006144,0.00608,0.072992,0.004896
+1105,1404.42,0.712036,0.313696,0.004448,0.204448,0.004448,0.005504,0.004736,0.006048,0.005792,0.072128,0.006144
+1106,1338.56,0.74707,0.307424,0.00544,0.195488,0.005312,0.004928,0.005248,0.004992,0.006144,0.075296,0.004576
+1107,1349.59,0.740967,0.318112,0.004768,0.190464,0.0056,0.00464,0.022528,0.006048,0.005856,0.073696,0.004512
+1108,1540.14,0.649292,0.313376,0.005984,0.198848,0.005088,0.004992,0.00528,0.005088,0.006144,0.077504,0.004448
+1109,946.614,1.0564,0.31744,0.005536,0.203392,0.00544,0.004768,0.005408,0.005856,0.00512,0.077312,0.004608
+1110,1103.15,0.906494,0.32176,0.005376,0.206912,0.00496,0.004128,0.006048,0.005984,0.005952,0.077504,0.004896
+1111,1434.17,0.697266,0.561152,0.005696,0.426432,0.024576,0.005728,0.004544,0.006112,0.006144,0.075776,0.006144
+1112,874.373,1.14368,0.31744,0.006144,0.200576,0.004224,0.005664,0.004576,0.006144,0.006144,0.077824,0.006144
+1113,1237.46,0.808105,0.315392,0.005664,0.197088,0.005152,0.004928,0.004416,0.005984,0.006144,0.079904,0.006112
+1114,1569.95,0.636963,0.32336,0.005696,0.2032,0.005472,0.004768,0.005984,0.005792,0.005824,0.080704,0.00592
+1115,1381.45,0.723877,0.323168,0.005376,0.201696,0.005888,0.004256,0.006144,0.00608,0.005696,0.082432,0.0056
+1116,1327.93,0.753052,0.313664,0.004576,0.196416,0.004128,0.006112,0.005216,0.005056,0.006144,0.080928,0.005088
+1117,1378.2,0.725586,0.3184,0.005056,0.200608,0.004192,0.005728,0.004512,0.006144,0.006112,0.08096,0.005088
+1118,1348.92,0.741333,0.517792,0.006144,0.397248,0.00416,0.00592,0.005952,0.00576,0.00496,0.081856,0.005792
+1119,503.875,1.98462,0.351744,0.0056,0.231968,0.005152,0.004928,0.004416,0.005984,0.007648,0.080416,0.005632
+1120,1043.7,0.95813,0.342976,0.007104,0.217088,0.004096,0.005952,0.004448,0.005984,0.006144,0.08752,0.00464
+1121,1357.42,0.736694,0.3504,0.004544,0.227232,0.005664,0.004576,0.005632,0.006016,0.006784,0.083968,0.005984
+1122,1333.55,0.749878,0.331424,0.005792,0.207328,0.00544,0.0048,0.005408,0.00672,0.005824,0.084448,0.005664
+1123,1290.49,0.774902,0.332608,0.004928,0.208896,0.005632,0.004608,0.005632,0.004672,0.00608,0.087392,0.004768
+1124,1402.74,0.712891,0.329408,0.00576,0.200512,0.004672,0.005216,0.005024,0.006144,0.006144,0.090112,0.005824
+1125,1126.36,0.887817,0.32784,0.005408,0.19952,0.004096,0.005824,0.004448,0.006112,0.006144,0.091456,0.004832
+1126,1306.96,0.765137,0.33584,0.006144,0.2048,0.005952,0.00432,0.005888,0.005696,0.005792,0.091136,0.006112
+1127,1246.88,0.802002,0.339872,0.006144,0.208928,0.005248,0.004928,0.00528,0.00656,0.00592,0.090816,0.006048
+1128,1042.11,0.959595,0.32976,0.00576,0.19904,0.005824,0.004416,0.006176,0.00592,0.005696,0.092416,0.004512
+1129,1543.62,0.647827,0.330432,0.0048,0.2048,0.005792,0.004448,0.006144,0.005984,0.00624,0.087456,0.004768
+1130,1491.08,0.670654,0.325728,0.005408,0.198688,0.004896,0.005664,0.004576,0.006144,0.006016,0.089568,0.004768
+1131,1386.59,0.721191,0.325952,0.004928,0.19856,0.00576,0.004576,0.005632,0.005792,0.004992,0.09008,0.005632
+1132,1372.19,0.72876,0.314176,0.004928,0.195776,0.004928,0.004096,0.005984,0.00592,0.005888,0.081984,0.004672
+1133,1350.92,0.740234,0.323616,0.005888,0.20096,0.005376,0.004864,0.005376,0.00496,0.006048,0.08512,0.005024
+1134,1353.38,0.738892,0.315552,0.00512,0.19456,0.0056,0.00464,0.00544,0.005856,0.005088,0.083968,0.00528
+1135,1156.74,0.864502,0.32512,0.005792,0.207008,0.004288,0.006144,0.005792,0.005792,0.005824,0.078848,0.005632
+1136,1087.48,0.919556,0.55968,0.004672,0.425984,0.024512,0.00416,0.005888,0.006016,0.005696,0.07664,0.006112
+1137,543.416,1.84021,0.355072,0.004864,0.241088,0.004672,0.005216,0.005024,0.006016,0.00624,0.07712,0.004832
+1138,1350.92,0.740234,0.338464,0.004832,0.221184,0.00416,0.005824,0.004416,0.00736,0.00592,0.078816,0.005952
+1139,1305.5,0.765991,0.348192,0.005952,0.231424,0.005664,0.004768,0.005696,0.005888,0.005888,0.078368,0.004544
+1140,1461.03,0.684448,0.322752,0.005984,0.204896,0.00416,0.005952,0.005952,0.005728,0.005952,0.078592,0.005536
+1141,1322.78,0.755981,0.319488,0.00544,0.204608,0.00496,0.00416,0.006016,0.005632,0.005856,0.077888,0.004928
+1142,1133.68,0.88208,0.496896,0.005472,0.379552,0.005344,0.004896,0.005312,0.004928,0.006144,0.079872,0.005376
+1143,1203.47,0.830933,0.335872,0.00576,0.21952,0.005216,0.005024,0.005408,0.004832,0.006144,0.079424,0.004544
+1144,751.56,1.33057,0.344096,0.008192,0.221184,0.005248,0.004928,0.005952,0.005888,0.005888,0.08064,0.006176
+1145,1383.32,0.7229,0.3072,0.005504,0.199008,0.004384,0.005504,0.004736,0.006144,0.005888,0.071232,0.0048
+1146,778.633,1.2843,0.313376,0.00592,0.204672,0.004448,0.005536,0.004704,0.006144,0.006144,0.070752,0.005056
+1147,1593.46,0.627563,0.314112,0.004832,0.202752,0.005376,0.004864,0.00528,0.006016,0.005088,0.075424,0.00448
+1148,1436.19,0.696289,0.325024,0.00592,0.196352,0.004576,0.005664,0.004608,0.006112,0.006144,0.090112,0.005536
+1149,1369.21,0.730347,0.327808,0.004608,0.20064,0.00528,0.00496,0.006144,0.006144,0.005792,0.088416,0.005824
+1150,1070.99,0.933716,0.331136,0.00608,0.202816,0.00576,0.00448,0.005952,0.00592,0.005952,0.088672,0.005504
+1151,1368.53,0.730713,0.32512,0.005696,0.204704,0.00464,0.00528,0.00496,0.006144,0.006048,0.082016,0.005632
+1152,661.606,1.51147,0.33776,0.007936,0.215296,0.004096,0.005888,0.004352,0.006144,0.006144,0.08192,0.005984
+1153,1403.94,0.71228,0.318944,0.006144,0.198464,0.004288,0.00576,0.00448,0.006144,0.006144,0.08192,0.0056
+1154,1159.85,0.862183,0.354016,0.006144,0.229376,0.00416,0.005824,0.004352,0.007584,0.005952,0.084768,0.005856
+1155,1005.65,0.994385,0.331776,0.006016,0.206496,0.004576,0.005344,0.006048,0.004992,0.006144,0.087328,0.004832
+1156,1560.68,0.640747,0.324448,0.00496,0.202752,0.00528,0.004896,0.005792,0.00656,0.005984,0.083584,0.00464
+1157,1477.1,0.677002,0.321984,0.004896,0.20016,0.004672,0.00576,0.00448,0.006112,0.006176,0.083968,0.00576
+1158,1092.85,0.915039,0.32528,0.005408,0.205408,0.005664,0.004736,0.00544,0.0048,0.006144,0.08192,0.00576
+1159,1390.83,0.718994,0.325632,0.006144,0.2048,0.00544,0.0048,0.005408,0.00496,0.007232,0.081888,0.00496
+1160,1332.25,0.75061,0.315392,0.006144,0.199872,0.004928,0.004192,0.005888,0.005536,0.00496,0.079328,0.004544
+1161,1474.71,0.678101,0.314016,0.004768,0.198336,0.004416,0.00592,0.00432,0.006144,0.006144,0.079488,0.00448
+1162,1310.51,0.763062,0.316704,0.00608,0.19872,0.006016,0.004288,0.006016,0.005792,0.00576,0.078624,0.005408
+1163,1437.7,0.695557,0.342048,0.005952,0.225504,0.00592,0.005472,0.00496,0.006144,0.005824,0.077536,0.004736
+1164,1343.83,0.744141,0.317568,0.005408,0.201568,0.005472,0.0048,0.004128,0.006112,0.006112,0.077824,0.006144
+1165,905.594,1.10425,0.311456,0.004576,0.196608,0.004128,0.00576,0.004448,0.006144,0.006144,0.077824,0.005824
+1166,1605.64,0.622803,0.314112,0.005088,0.200736,0.005888,0.00432,0.005984,0.005792,0.005728,0.074656,0.00592
+1167,1171.79,0.853394,0.321536,0.006144,0.20688,0.005408,0.0048,0.005696,0.005824,0.004992,0.0768,0.004992
+1168,1408.53,0.709961,0.5712,0.005856,0.452896,0.00768,0.004608,0.0056,0.00576,0.005024,0.077824,0.005952
+1169,859.511,1.16345,0.319744,0.00544,0.205376,0.00448,0.005472,0.004768,0.006144,0.005984,0.077504,0.004576
+1170,1318.31,0.758545,0.31424,0.004992,0.19792,0.004832,0.005792,0.006432,0.005824,0.005728,0.077696,0.005024
+1171,1431.42,0.698608,0.345216,0.005696,0.227264,0.004608,0.005152,0.005088,0.005952,0.005696,0.08048,0.00528
+1172,1349.37,0.741089,0.317248,0.005984,0.198816,0.005952,0.004288,0.006016,0.005792,0.005664,0.078784,0.005952
+1173,1362.83,0.733765,0.327424,0.006048,0.20592,0.00496,0.004256,0.00592,0.006336,0.00576,0.082368,0.005856
+1174,1314.72,0.76062,0.321568,0.005984,0.198816,0.005376,0.004864,0.005312,0.004928,0.006144,0.085184,0.00496
+1175,663.212,1.50781,0.32672,0.005792,0.203136,0.005888,0.00432,0.006144,0.006144,0.006144,0.08384,0.005312
+1176,1182.11,0.845947,0.35888,0.004576,0.239616,0.00592,0.00432,0.005856,0.005856,0.005984,0.082336,0.004416
+1177,1488.64,0.671753,0.315392,0.005536,0.200736,0.004672,0.006048,0.005248,0.005088,0.006144,0.076864,0.005056
+1178,1327.71,0.753174,0.31744,0.006144,0.200704,0.005344,0.004896,0.005536,0.006048,0.005856,0.078016,0.004896
+1179,1443.02,0.692993,0.315008,0.005568,0.199232,0.005408,0.004832,0.004096,0.006144,0.006144,0.077824,0.00576
+1180,1355.84,0.737549,0.31376,0.00512,0.196608,0.005312,0.004896,0.005152,0.00512,0.006144,0.079872,0.005536
+1181,1461.55,0.684204,0.319328,0.006144,0.198688,0.005248,0.00496,0.005504,0.005952,0.004928,0.08192,0.005984
+1182,1257.02,0.795532,0.319616,0.005408,0.197472,0.005792,0.005632,0.00496,0.006016,0.00576,0.082432,0.006144
+1183,1505.33,0.664307,0.313568,0.004832,0.198048,0.004704,0.005184,0.005056,0.006144,0.006144,0.077824,0.005632
+1184,1175.66,0.850586,0.319648,0.004928,0.202752,0.005376,0.0048,0.005216,0.005088,0.006144,0.079872,0.005472
+1185,725.598,1.37817,0.32768,0.006144,0.210944,0.005664,0.004576,0.0056,0.006336,0.005696,0.078048,0.004672
+1186,1281.8,0.780151,0.329792,0.00672,0.210016,0.004992,0.004128,0.006144,0.006144,0.006144,0.079872,0.005632
+1187,1431.67,0.698486,0.315296,0.005824,0.196928,0.005984,0.004288,0.005856,0.005792,0.004704,0.079872,0.006048
+1188,1393.43,0.717651,0.315168,0.005472,0.197312,0.005216,0.004992,0.006016,0.00592,0.00576,0.07856,0.00592
+1189,1326,0.75415,0.313984,0.004704,0.199872,0.004928,0.004128,0.006016,0.0056,0.0048,0.079392,0.004544
+1190,1487.02,0.672485,0.319424,0.005536,0.200608,0.0048,0.004288,0.005952,0.006144,0.005824,0.080192,0.00608
+1191,691.366,1.44641,0.322656,0.006112,0.207968,0.00496,0.004192,0.005856,0.005792,0.005792,0.076704,0.00528
+1192,1281.8,0.780151,0.319488,0.005568,0.205376,0.004256,0.005728,0.005952,0.0056,0.005088,0.077184,0.004736
+1193,1418.04,0.7052,0.569824,0.004896,0.452608,0.007872,0.005536,0.005024,0.00608,0.005824,0.07616,0.005824
+1194,709.326,1.40979,0.328832,0.005664,0.209376,0.00576,0.00448,0.005664,0.00592,0.004832,0.081856,0.00528
+1195,1543.91,0.647705,0.323232,0.005408,0.207616,0.004192,0.005696,0.004544,0.006144,0.006016,0.077952,0.005664
+1196,1410.71,0.708862,0.317152,0.005472,0.201088,0.004384,0.00576,0.00448,0.006144,0.00608,0.077888,0.005856
+1197,1437.95,0.695435,0.311744,0.004608,0.198592,0.004256,0.005792,0.004288,0.006144,0.006144,0.077536,0.004384
+1198,1324.28,0.755127,0.308992,0.0056,0.195104,0.005824,0.004416,0.005728,0.005664,0.004992,0.075776,0.005888
+1199,1479.77,0.675781,0.313504,0.005376,0.19952,0.00416,0.005728,0.004512,0.006144,0.006144,0.076992,0.004928
+1200,1270.27,0.787231,0.49328,0.004704,0.378848,0.005568,0.004672,0.005472,0.005824,0.005088,0.077792,0.005312
+1201,1145.89,0.872681,0.311712,0.004576,0.202464,0.00432,0.005728,0.004512,0.006144,0.006048,0.073056,0.004864
+1202,1415.1,0.706665,0.312192,0.004992,0.198656,0.004128,0.005824,0.004384,0.006144,0.006144,0.076832,0.005088
+1203,1444.29,0.692383,0.316576,0.005728,0.199072,0.005792,0.004448,0.006144,0.006144,0.006144,0.077792,0.005312
+1204,1225.43,0.81604,0.313632,0.0048,0.20272,0.005856,0.004384,0.005824,0.00592,0.00592,0.072448,0.00576
+1205,1525.23,0.65564,0.309248,0.005888,0.198624,0.004384,0.006144,0.005344,0.004992,0.006048,0.073408,0.004416
+1206,1269.68,0.787598,0.32544,0.004896,0.2168,0.004352,0.005376,0.004864,0.006144,0.005792,0.071936,0.00528
+1207,1519.85,0.657959,0.313344,0.005856,0.198784,0.004256,0.006144,0.005376,0.00496,0.006048,0.075776,0.006144
+1208,1329.44,0.752197,0.31104,0.004576,0.196416,0.00416,0.005824,0.004352,0.006176,0.006112,0.077824,0.0056
+1209,1345.16,0.743408,0.305728,0.00464,0.196608,0.004192,0.005728,0.004416,0.006144,0.006144,0.073312,0.004544
+1210,1017.01,0.983276,0.32768,0.006144,0.218976,0.004256,0.005664,0.004576,0.006144,0.005792,0.07104,0.005088
+1211,1061.28,0.942261,0.5096,0.006624,0.395008,0.005568,0.004928,0.005824,0.005792,0.004768,0.075776,0.005312
+1212,1109.58,0.901245,0.31744,0.00576,0.19904,0.005408,0.004832,0.005184,0.005056,0.006144,0.080928,0.005088
+1213,1573.27,0.63562,0.31744,0.00608,0.198336,0.00448,0.005408,0.00592,0.005056,0.006144,0.079968,0.006048
+1214,1189.66,0.840576,0.319488,0.006112,0.204672,0.004288,0.005568,0.00464,0.006144,0.006144,0.076832,0.005088
+1215,1591.61,0.628296,0.316832,0.005824,0.201024,0.00544,0.0048,0.005216,0.005024,0.006176,0.077792,0.005536
+1216,1412.17,0.70813,0.315264,0.005952,0.198752,0.004192,0.006112,0.00528,0.004992,0.006144,0.077824,0.006016
+1217,1279.2,0.781738,0.313344,0.005632,0.19824,0.00496,0.00416,0.00576,0.005952,0.00592,0.077952,0.004768
+1218,1417.06,0.705688,0.489472,0.00592,0.376352,0.0048,0.005248,0.004992,0.005984,0.005728,0.075904,0.004544
+1219,1144.77,0.873535,0.321568,0.005376,0.20544,0.004256,0.005952,0.00432,0.006112,0.005824,0.079232,0.005056
+1220,1096.21,0.912231,0.565248,0.006144,0.446464,0.008192,0.005344,0.004896,0.006112,0.005792,0.07728,0.005024
+1221,944.758,1.05847,0.312896,0.00544,0.203264,0.004416,0.006112,0.005312,0.00496,0.006144,0.07168,0.005568
+1222,1411.68,0.708374,0.31344,0.005376,0.201568,0.005472,0.004768,0.005408,0.00496,0.006016,0.074752,0.00512
+1223,1487.29,0.672363,0.31472,0.006144,0.200576,0.004224,0.005664,0.006016,0.005856,0.004992,0.075776,0.005472
+1224,1159.85,0.862183,0.314624,0.006016,0.19632,0.004512,0.005376,0.004864,0.006144,0.006048,0.079968,0.005376
+1225,1743.35,0.573608,0.316288,0.004992,0.200704,0.005472,0.004768,0.005248,0.004992,0.006176,0.077792,0.006144
+1226,1184.84,0.843994,0.313312,0.005536,0.198272,0.00496,0.004256,0.005888,0.005792,0.004672,0.077824,0.006112
+1227,1557.12,0.642212,0.49152,0.005696,0.378784,0.00464,0.005312,0.004928,0.006144,0.00592,0.075584,0.004512
+1228,739.484,1.35229,0.315904,0.004608,0.2048,0.005504,0.004736,0.005376,0.004992,0.006016,0.075328,0.004544
+1229,1532.07,0.65271,0.331776,0.005664,0.216736,0.004928,0.00416,0.006016,0.006048,0.005696,0.078208,0.00432
+1230,1352.48,0.73938,0.313472,0.005408,0.19952,0.005248,0.004992,0.005888,0.005888,0.005952,0.075808,0.004768
+1231,1518.72,0.658447,0.31344,0.005632,0.198816,0.004544,0.004096,0.006016,0.00592,0.00592,0.076352,0.006144
+1232,1357.64,0.736572,0.310624,0.005504,0.19664,0.004704,0.005248,0.004992,0.005952,0.005696,0.076416,0.005472
+1233,1410.47,0.708984,0.311296,0.005792,0.19696,0.005312,0.004928,0.00576,0.005728,0.004896,0.076928,0.004992
+1234,1282.4,0.779785,0.305152,0.006016,0.194688,0.005216,0.004928,0.005248,0.005088,0.005952,0.073568,0.004448
+1235,1533.22,0.652222,0.319584,0.00544,0.201504,0.005824,0.004416,0.0056,0.005984,0.00592,0.080256,0.00464
+1236,1228,0.814331,0.495616,0.006144,0.376832,0.00544,0.0048,0.0056,0.00576,0.005024,0.08144,0.004576
+1237,1118.36,0.894165,0.560192,0.005536,0.429728,0.019328,0.005536,0.004768,0.006144,0.00592,0.07792,0.005312
+1238,851.294,1.17468,0.316448,0.00512,0.198656,0.005504,0.004736,0.00544,0.0048,0.006144,0.081024,0.005024
+1239,1507.55,0.66333,0.31952,0.005792,0.202208,0.004992,0.005696,0.004544,0.006176,0.005952,0.079488,0.004672
+1240,1331.82,0.750854,0.312416,0.00544,0.197344,0.005568,0.00464,0.00608,0.00592,0.005888,0.076224,0.005312
+1241,1335.94,0.748535,0.311296,0.005952,0.196608,0.004288,0.005568,0.004672,0.006144,0.006048,0.075872,0.006144
+1242,1373.81,0.727905,0.311104,0.00608,0.196672,0.005344,0.004928,0.005248,0.004992,0.005952,0.075936,0.005952
+1243,1477.1,0.677002,0.313344,0.006144,0.198656,0.004096,0.005888,0.005984,0.00592,0.004832,0.077248,0.004576
+1244,1365.79,0.732178,0.311136,0.005376,0.195584,0.00528,0.004896,0.006016,0.005856,0.005696,0.077792,0.00464
+1245,1128.06,0.886475,0.329728,0.006048,0.21472,0.004512,0.00544,0.0048,0.006144,0.006144,0.076992,0.004928
+1246,1251.07,0.799316,0.555008,0.005408,0.432864,0.008128,0.00416,0.006016,0.005792,0.005792,0.082432,0.004416
+1247,841.154,1.18884,0.325056,0.005696,0.207296,0.005824,0.004416,0.005696,0.006592,0.005952,0.078016,0.005568
+1248,1521.83,0.657104,0.317952,0.004608,0.203808,0.00496,0.004352,0.006016,0.00592,0.00576,0.077472,0.005056
+1249,1383.08,0.723022,0.320224,0.00512,0.200704,0.00512,0.004928,0.006336,0.005984,0.005824,0.080352,0.005856
+1250,1327.28,0.753418,0.317504,0.0048,0.196,0.004704,0.006144,0.005472,0.0048,0.006112,0.083968,0.005504
+1251,1457.13,0.686279,0.325632,0.006144,0.200448,0.004352,0.005536,0.004704,0.00608,0.005472,0.088192,0.004704
+1252,1330.95,0.751343,0.328192,0.004736,0.198144,0.00464,0.006112,0.005408,0.005952,0.005024,0.09216,0.006016
+1253,1381.68,0.723755,0.5008,0.00608,0.376672,0.00432,0.005632,0.004608,0.006144,0.005952,0.08592,0.005472
+1254,1086.76,0.920166,0.323072,0.006144,0.19984,0.004928,0.004128,0.005888,0.005792,0.005728,0.084992,0.005632
+1255,1147.98,0.871094,0.567296,0.006048,0.425952,0.018624,0.00608,0.005504,0.006464,0.005696,0.08832,0.004608
+1256,913.572,1.0946,0.328096,0.004864,0.202624,0.004224,0.005696,0.004512,0.006144,0.006144,0.088064,0.005824
+1257,1471.79,0.679443,0.323584,0.00576,0.19888,0.004256,0.00544,0.0048,0.006144,0.005856,0.087328,0.00512
+1258,1292.93,0.773438,0.327552,0.006112,0.19872,0.005088,0.00512,0.005216,0.005024,0.006144,0.090112,0.006016
+1259,1420,0.704224,0.354336,0.005856,0.225536,0.00416,0.005984,0.005312,0.005056,0.006144,0.091808,0.00448
+1260,1398.67,0.714966,0.33536,0.005792,0.199008,0.005248,0.004992,0.005472,0.004768,0.006144,0.098304,0.005632
+1261,1309.46,0.763672,0.331264,0.006144,0.19808,0.004704,0.005152,0.005056,0.005888,0.005888,0.09472,0.005632
+1262,1150.24,0.869385,0.340416,0.004576,0.208416,0.004544,0.005344,0.004896,0.006048,0.005824,0.09616,0.004608
+1263,1332.9,0.750244,0.329632,0.005792,0.205152,0.005152,0.005088,0.005312,0.004928,0.006144,0.086016,0.006048
+1264,1482.18,0.674683,0.319232,0.006016,0.19472,0.005696,0.004512,0.006144,0.00576,0.005696,0.0848,0.005888
+1265,1259.73,0.793823,0.333856,0.006144,0.197856,0.004928,0.00416,0.006016,0.005536,0.005824,0.098304,0.005088
+1266,898.246,1.11328,0.351616,0.005632,0.213536,0.005536,0.004672,0.005664,0.005984,0.006496,0.098592,0.005504
+1267,1632.85,0.612427,0.333856,0.004576,0.207936,0.004928,0.004192,0.005952,0.005664,0.005888,0.088992,0.005728
+1268,1332.03,0.750732,0.324672,0.005952,0.198624,0.00432,0.005568,0.004672,0.006144,0.005856,0.088224,0.005312
+1269,1308.42,0.764282,0.32768,0.004928,0.202368,0.004512,0.005408,0.0048,0.006144,0.005568,0.08864,0.005312
+1270,1395.33,0.716675,0.334176,0.00448,0.20272,0.0056,0.00464,0.005568,0.005856,0.00496,0.094208,0.006144
+1271,1182.45,0.845703,0.324352,0.004832,0.2048,0.004256,0.005824,0.004416,0.005984,0.006144,0.083552,0.004544
+1272,1301.35,0.768433,0.559712,0.004608,0.439456,0.00848,0.004672,0.005472,0.006208,0.005856,0.080544,0.004416
+1273,829.234,1.20593,0.319296,0.00448,0.203808,0.00496,0.004224,0.005728,0.005792,0.004928,0.079808,0.005568
+1274,1391.3,0.71875,0.313408,0.005376,0.195392,0.00592,0.00432,0.006144,0.005888,0.005696,0.080288,0.004384
+1275,1493.53,0.669556,0.317472,0.006144,0.200096,0.004704,0.005696,0.004544,0.006144,0.00608,0.079456,0.004608
+1276,1360.8,0.734863,0.323584,0.006144,0.196608,0.004288,0.005728,0.004416,0.006048,0.006176,0.0896,0.004576
+1277,1327.5,0.753296,0.323328,0.004608,0.198464,0.005696,0.004544,0.00544,0.005824,0.00512,0.088064,0.005568
+1278,1348.7,0.741455,0.314048,0.0048,0.196608,0.005664,0.004576,0.005632,0.00592,0.005952,0.08,0.004896
+1279,1506.16,0.66394,0.315392,0.005824,0.198976,0.006144,0.004096,0.005888,0.004352,0.006144,0.079232,0.004736
+1280,1010.11,0.98999,0.326912,0.005888,0.209152,0.005152,0.005088,0.005856,0.005696,0.005888,0.078816,0.005376
+1281,740.486,1.35046,0.325632,0.008224,0.208192,0.004768,0.00432,0.00592,0.005952,0.005728,0.07648,0.006048
+1282,1428.92,0.699829,0.315168,0.00592,0.19664,0.00432,0.005568,0.004672,0.006112,0.006144,0.079872,0.00592
+1283,1488.91,0.671631,0.320608,0.006144,0.198528,0.004224,0.005664,0.004576,0.006144,0.006016,0.084,0.005312
+1284,628.703,1.59058,0.322176,0.004768,0.198624,0.004352,0.005696,0.004288,0.006176,0.006112,0.08736,0.0048
+1285,1393.91,0.717407,0.33376,0.005664,0.209376,0.00592,0.00432,0.005888,0.004416,0.00608,0.086016,0.00608
+1286,1388.47,0.720215,0.32256,0.005088,0.200448,0.004352,0.005536,0.004704,0.006144,0.006144,0.085728,0.004416
+1287,1060.87,0.942627,0.324416,0.004928,0.208352,0.00464,0.005312,0.00496,0.006112,0.00592,0.079136,0.005056
+1288,1265.37,0.790283,0.325632,0.00592,0.20096,0.00512,0.004928,0.00528,0.007168,0.00576,0.08592,0.004576
+1289,740.419,1.35059,0.33792,0.008192,0.208896,0.005792,0.00448,0.005696,0.005888,0.005792,0.08704,0.006144
+1290,1403.22,0.712646,0.327136,0.006144,0.20048,0.00432,0.005632,0.004608,0.006144,0.006144,0.088064,0.0056
+1291,1436.19,0.696289,0.325632,0.005472,0.201376,0.004224,0.005824,0.00432,0.006112,0.006144,0.087104,0.005056
+1292,1388,0.720459,0.321344,0.00608,0.196672,0.005408,0.004832,0.005888,0.00576,0.005792,0.08496,0.005952
+1293,1365.33,0.732422,0.320224,0.004992,0.198592,0.00416,0.0056,0.00464,0.005856,0.005728,0.084672,0.005984
+1294,1327.71,0.753174,0.323584,0.006048,0.196704,0.005504,0.004736,0.005536,0.006432,0.005824,0.088352,0.004448
+1295,1480.57,0.675415,0.498432,0.004864,0.378112,0.004864,0.00512,0.00512,0.005952,0.005728,0.082528,0.006144
+1296,1058.12,0.945068,0.320032,0.005088,0.198656,0.005184,0.005056,0.005344,0.006496,0.005696,0.082816,0.005696
+1297,688.751,1.4519,0.33984,0.008224,0.196576,0.005664,0.004576,0.005664,0.005728,0.005024,0.102368,0.006016
+1298,1530.93,0.653198,0.31968,0.005376,0.197536,0.004128,0.00576,0.004544,0.00608,0.006144,0.085408,0.004704
+1299,1404.9,0.711792,0.348384,0.00544,0.226208,0.004256,0.005984,0.005824,0.005792,0.005824,0.084608,0.004448
+1300,1286.03,0.777588,0.326432,0.004896,0.202144,0.004704,0.005184,0.005056,0.006144,0.00592,0.087968,0.004416
+1301,1476.04,0.67749,0.327712,0.005568,0.196736,0.004544,0.005408,0.004864,0.006112,0.00576,0.094208,0.004512
+1302,1189.83,0.840454,0.364544,0.005952,0.233664,0.005728,0.004512,0.005888,0.005856,0.005696,0.092192,0.005056
+1303,1386.36,0.721313,0.569216,0.005376,0.43488,0.004192,0.006144,0.005728,0.005984,0.00592,0.095008,0.005984
+1304,938.481,1.06555,0.334176,0.004864,0.202752,0.005152,0.004896,0.005312,0.005152,0.007296,0.093024,0.005728
+1305,663.427,1.50732,0.346112,0.008224,0.210912,0.005728,0.004544,0.005696,0.005856,0.005952,0.093056,0.006144
+1306,1398.67,0.714966,0.329408,0.00544,0.1968,0.004608,0.00528,0.00496,0.00608,0.005888,0.094528,0.005824
+1307,1413.39,0.70752,0.330208,0.004576,0.199968,0.004832,0.004256,0.005984,0.00592,0.005728,0.093824,0.00512
+1308,1340.09,0.746216,0.330048,0.0048,0.200096,0.004704,0.005248,0.004992,0.006112,0.00576,0.092576,0.00576
+1309,1370.82,0.729492,0.333824,0.006016,0.200832,0.004256,0.005952,0.005312,0.00496,0.006144,0.095872,0.00448
+1310,1274.23,0.78479,0.331776,0.005856,0.198816,0.004224,0.005728,0.004512,0.006144,0.005984,0.09584,0.004672
+1311,1309.46,0.763672,0.538624,0.006144,0.407552,0.004096,0.005984,0.00528,0.005152,0.006112,0.093632,0.004672
+1312,987.821,1.01233,0.333856,0.005824,0.202656,0.004512,0.00544,0.0048,0.006144,0.006144,0.093664,0.004672
+1313,797.43,1.25403,0.34704,0.007072,0.219136,0.004224,0.006016,0.005472,0.005856,0.005056,0.089312,0.004896
+1314,1391.3,0.71875,0.32768,0.006144,0.200704,0.004224,0.00576,0.004352,0.006144,0.006144,0.088064,0.006144
+1315,1464.69,0.682739,0.33104,0.00544,0.201152,0.004416,0.00576,0.00448,0.006144,0.006144,0.09216,0.005344
+1316,1349.81,0.740845,0.324224,0.004768,0.196576,0.005568,0.004672,0.005376,0.004864,0.006144,0.090112,0.006144
+1317,1337.03,0.747925,0.327776,0.00544,0.197184,0.00432,0.006112,0.005312,0.00496,0.006144,0.093472,0.004832
+1318,1301.14,0.768555,0.325984,0.004608,0.196448,0.005888,0.004352,0.005856,0.00576,0.005824,0.092352,0.004896
+1319,1035.65,0.965576,0.332,0.00544,0.205056,0.004768,0.00512,0.00512,0.00576,0.00576,0.090208,0.004768
+1320,1194.17,0.837402,0.335936,0.005056,0.208896,0.005696,0.004544,0.005664,0.00592,0.0048,0.09008,0.00528
+1321,1394.15,0.717285,0.328128,0.004544,0.203872,0.00496,0.005664,0.004576,0.006144,0.006144,0.087776,0.004448
+1322,1343.39,0.744385,0.324096,0.004608,0.200128,0.004704,0.004064,0.006144,0.00592,0.00576,0.087776,0.004992
+1323,1293.75,0.772949,0.328384,0.0048,0.197984,0.004768,0.00512,0.00512,0.006144,0.005856,0.092448,0.006144
+1324,1482.71,0.674438,0.329728,0.004608,0.199744,0.004896,0.004224,0.006016,0.006144,0.006144,0.09216,0.005792
+1325,1355.39,0.737793,0.326944,0.005984,0.196768,0.006144,0.005504,0.004736,0.006144,0.006144,0.090112,0.005408
+1326,1329.01,0.752441,0.323552,0.006144,0.19456,0.005376,0.004864,0.005312,0.004992,0.00608,0.090112,0.006112
+1327,1360.35,0.735107,0.354336,0.006144,0.223232,0.005824,0.004416,0.006144,0.005984,0.005792,0.092288,0.004512
+1328,1428.67,0.699951,0.331808,0.005792,0.201088,0.005344,0.004448,0.004512,0.006144,0.006144,0.093824,0.004512
+1329,1070.57,0.934082,0.331776,0.00592,0.200672,0.004352,0.005536,0.004704,0.006144,0.005856,0.09424,0.004352
+1330,1438.96,0.694946,0.325344,0.006144,0.198432,0.00432,0.005536,0.004704,0.006144,0.006144,0.088064,0.005856
+1331,714.46,1.39966,0.333824,0.00784,0.209216,0.004128,0.005888,0.004352,0.006144,0.006144,0.085792,0.00432
+1332,1514.51,0.660278,0.331776,0.005824,0.201056,0.005664,0.004544,0.005536,0.006016,0.004832,0.093344,0.00496
+1333,1388.71,0.720093,0.325184,0.005632,0.195072,0.005184,0.004928,0.005984,0.005792,0.00576,0.091136,0.005696
+1334,1382.62,0.723267,0.325632,0.00608,0.198432,0.004384,0.005568,0.004672,0.006176,0.005984,0.089536,0.0048
+1335,1351.15,0.740112,0.3288,0.006144,0.19776,0.00496,0.005216,0.005056,0.006144,0.00592,0.092288,0.005312
+1336,1330.09,0.751831,0.325824,0.005376,0.1968,0.004864,0.004096,0.006144,0.006112,0.00576,0.092128,0.004544
+1337,1325.14,0.754639,0.507904,0.005792,0.377184,0.004128,0.005824,0.006016,0.00576,0.004928,0.093472,0.0048
+1338,866.97,1.15344,0.348192,0.004832,0.2224,0.004928,0.004192,0.006048,0.005824,0.00576,0.088768,0.00544
+1339,838.743,1.19226,0.33696,0.008192,0.202752,0.00576,0.004512,0.005728,0.006336,0.005728,0.09264,0.005312
+1340,1440.22,0.694336,0.3216,0.005376,0.199488,0.00528,0.004928,0.005312,0.004928,0.006144,0.0856,0.004544
+1341,1282.4,0.779785,0.318464,0.005376,0.196384,0.00496,0.004224,0.006016,0.006112,0.00608,0.084,0.005312
+1342,1339.66,0.74646,0.321344,0.00576,0.198304,0.004832,0.004288,0.005952,0.006144,0.006176,0.083936,0.005952
+1343,1536.1,0.651001,0.323488,0.006144,0.196032,0.004672,0.005184,0.005056,0.006144,0.006144,0.088064,0.006048
+1344,1355.84,0.737549,0.31536,0.006144,0.196352,0.004352,0.005664,0.004576,0.006144,0.006112,0.079904,0.006112
+1345,1273.63,0.785156,0.31744,0.006144,0.195968,0.004736,0.005376,0.00592,0.005088,0.005376,0.084224,0.004608
+1346,1161,0.861328,0.319392,0.004736,0.200704,0.005536,0.004704,0.006144,0.006144,0.00608,0.079936,0.005408
+1347,741.022,1.34949,0.3312,0.006496,0.206272,0.004672,0.005216,0.005024,0.006144,0.006144,0.08592,0.005312
+1348,1335.07,0.749023,0.319488,0.006176,0.199808,0.00496,0.004128,0.00608,0.005792,0.005696,0.080704,0.006144
+1349,1373.34,0.728149,0.321568,0.006016,0.19616,0.004672,0.00528,0.00496,0.006112,0.005824,0.088,0.004544
+1350,1479.5,0.675903,0.325632,0.006112,0.19664,0.005888,0.004352,0.005824,0.00576,0.004992,0.08992,0.006144
+1351,1356.74,0.737061,0.324032,0.004576,0.196576,0.005728,0.004512,0.006016,0.005952,0.005792,0.090272,0.004608
+1352,1374.04,0.727783,0.325824,0.004608,0.197728,0.00496,0.00416,0.006144,0.005792,0.005728,0.090912,0.005792
+1353,1321.5,0.756714,0.323584,0.005504,0.197248,0.005344,0.00464,0.004352,0.006144,0.006144,0.088064,0.006144
+1354,1404.42,0.712036,0.507264,0.004608,0.380192,0.004608,0.005344,0.004896,0.006144,0.005824,0.090336,0.005312
+1355,952.78,1.04956,0.324512,0.005024,0.200736,0.005888,0.00432,0.005696,0.005824,0.004864,0.087456,0.004704
+1356,1201.35,0.832397,0.33792,0.00608,0.21024,0.004896,0.004256,0.005952,0.006144,0.006176,0.089248,0.004928
+1357,1558.9,0.641479,0.33584,0.006144,0.200704,0.005888,0.004352,0.005856,0.0056,0.00496,0.096224,0.006112
+1358,1511.44,0.661621,0.32768,0.006144,0.200064,0.004736,0.005184,0.005056,0.005984,0.005728,0.09008,0.004704
+1359,1161.66,0.86084,0.321056,0.004608,0.196416,0.004288,0.00592,0.00608,0.005952,0.005888,0.08656,0.005344
+1360,1635.46,0.61145,0.32768,0.005952,0.198336,0.00464,0.005216,0.004992,0.00608,0.005792,0.091872,0.0048
+1361,1350.7,0.740356,0.32944,0.0048,0.198624,0.0056,0.00464,0.006144,0.006048,0.00576,0.092544,0.00528
+1362,725.984,1.37744,0.506624,0.005056,0.37824,0.004736,0.004096,0.006176,0.005984,0.006208,0.090176,0.005952
+1363,1197.66,0.834961,0.354816,0.004768,0.229376,0.0056,0.00464,0.005664,0.00576,0.00496,0.088064,0.005984
+1364,1134.63,0.881348,0.568736,0.005376,0.426784,0.02048,0.005696,0.004544,0.006144,0.006144,0.088064,0.005504
+1365,929.747,1.07556,0.315424,0.005376,0.199456,0.005568,0.004672,0.006144,0.00576,0.005888,0.078112,0.004448
+1366,1252.03,0.798706,0.323584,0.00608,0.202848,0.005408,0.0048,0.005376,0.004864,0.006144,0.083168,0.004896
+1367,1570.55,0.636719,0.321984,0.004576,0.200192,0.004544,0.005344,0.004896,0.006144,0.005856,0.085792,0.00464
+1368,1346.93,0.742432,0.320192,0.0048,0.200704,0.005696,0.004544,0.005472,0.005792,0.00512,0.083296,0.004768
+1369,1361.25,0.734619,0.31776,0.004768,0.194528,0.00576,0.00448,0.005536,0.005952,0.00496,0.085952,0.005824
+1370,1373.81,0.727905,0.315648,0.005376,0.193536,0.00416,0.005696,0.005536,0.005088,0.006144,0.083968,0.006144
+1371,1100.78,0.908447,0.322304,0.004864,0.201792,0.00496,0.004192,0.005728,0.005984,0.00592,0.083968,0.004896
+1372,1422.96,0.702759,0.32592,0.004384,0.206848,0.004096,0.005664,0.004576,0.006144,0.00576,0.083744,0.004704
+1373,1388,0.720459,0.325216,0.004704,0.199968,0.004832,0.005312,0.004928,0.006144,0.006112,0.087904,0.005312
+1374,841.413,1.18848,0.325792,0.005376,0.199584,0.005408,0.004864,0.005216,0.005024,0.006112,0.089632,0.004576
+1375,1435.68,0.696533,0.348672,0.004608,0.212992,0.005376,0.004864,0.005344,0.00608,0.00496,0.098304,0.006144
+1376,1332.25,0.75061,0.33792,0.005632,0.206592,0.004864,0.004192,0.006048,0.006112,0.005728,0.09376,0.004992
+1377,1108.23,0.902344,0.334304,0.004576,0.202752,0.00544,0.0048,0.005376,0.004992,0.006048,0.094176,0.006144
+1378,1599.38,0.625244,0.334624,0.004896,0.2048,0.00576,0.004512,0.006112,0.006048,0.005696,0.092032,0.004768
+1379,1241.02,0.805786,0.360288,0.004736,0.243712,0.004128,0.005664,0.004576,0.005792,0.00448,0.081856,0.005344
+1380,1069.87,0.934692,0.333408,0.006144,0.208704,0.00432,0.005568,0.004672,0.006112,0.006112,0.08608,0.005696
+1381,610.66,1.63757,0.344032,0.007616,0.214752,0.00496,0.004128,0.006112,0.006048,0.005728,0.088576,0.006112
+1382,1382.85,0.723145,0.325536,0.00544,0.199456,0.005152,0.00496,0.005952,0.006048,0.005888,0.086688,0.005952
+1383,1390.12,0.71936,0.31952,0.005472,0.19728,0.004128,0.005824,0.004416,0.006112,0.006176,0.085568,0.004544
+1384,1416.32,0.706055,0.352224,0.004608,0.227232,0.004128,0.0056,0.004608,0.006144,0.006144,0.088064,0.005696
+1385,1352.71,0.739258,0.3232,0.006144,0.198656,0.005632,0.004608,0.006144,0.00592,0.005856,0.08448,0.00576
+1386,1417.55,0.705444,0.329248,0.005856,0.198944,0.004096,0.006144,0.005504,0.00576,0.00512,0.09216,0.005664
+1387,1277.6,0.782715,0.31616,0.004832,0.193824,0.004832,0.004096,0.005824,0.00592,0.005888,0.08608,0.004864
+1388,854.312,1.17053,0.370624,0.005792,0.239968,0.005216,0.004928,0.005312,0.006528,0.006272,0.090528,0.00608
+1389,645.649,1.54883,0.389568,0.006592,0.259392,0.0048,0.005344,0.004896,0.006144,0.006048,0.091904,0.004448
+1390,1313.45,0.761353,0.362784,0.00544,0.228288,0.004192,0.00576,0.004384,0.00736,0.006912,0.09568,0.004768
+1391,939.989,1.06384,0.355008,0.0048,0.223232,0.005568,0.004672,0.005504,0.004832,0.007488,0.094592,0.00432
+1392,1510.32,0.662109,0.339904,0.005344,0.209888,0.005728,0.004512,0.005664,0.006464,0.005952,0.090464,0.005888
+1393,1428.17,0.700195,0.335552,0.006144,0.208768,0.004224,0.005632,0.004608,0.006016,0.005792,0.088544,0.005824
+1394,1302.18,0.767944,0.329632,0.006048,0.208896,0.005792,0.004448,0.005728,0.006304,0.005792,0.08048,0.006144
+1395,1133.53,0.882202,0.329984,0.005376,0.20992,0.005568,0.004704,0.005504,0.005728,0.00512,0.083168,0.004896
+1396,1154.29,0.866333,0.32768,0.006112,0.198688,0.005696,0.004544,0.005632,0.005888,0.005952,0.089056,0.006112
+1397,963.085,1.03833,0.334464,0.006784,0.202752,0.005696,0.004544,0.005696,0.00624,0.00592,0.092096,0.004736
+1398,1441.75,0.693604,0.32768,0.005984,0.200032,0.004928,0.005536,0.004736,0.006112,0.006048,0.08944,0.004864
+1399,1239.52,0.806763,0.326848,0.005376,0.197312,0.004352,0.005504,0.00592,0.006496,0.005728,0.090816,0.005344
+1400,1516.48,0.659424,0.324896,0.005856,0.196928,0.005632,0.004608,0.005568,0.005856,0.004928,0.090112,0.005408
+1401,1277.21,0.782959,0.323392,0.005984,0.19632,0.004576,0.00528,0.004928,0.00592,0.005696,0.088736,0.005952
+1402,1485.13,0.67334,0.32432,0.0048,0.198656,0.005568,0.004704,0.006112,0.005856,0.005824,0.086624,0.006176
+1403,1238.02,0.807739,0.331808,0.005376,0.202656,0.00496,0.004096,0.006144,0.006144,0.006144,0.091872,0.004416
+1404,1052.69,0.949951,0.361472,0.00512,0.225248,0.005376,0.004864,0.005408,0.00608,0.004896,0.099488,0.004992
+1405,673.075,1.48572,0.340608,0.006752,0.207936,0.00496,0.004192,0.005984,0.005888,0.00576,0.09456,0.004576
+1406,1474.71,0.678101,0.328352,0.0048,0.200672,0.00592,0.004352,0.005824,0.00576,0.00496,0.091488,0.004576
+1407,1274.42,0.784668,0.322048,0.004608,0.196544,0.0056,0.00464,0.005824,0.00608,0.00608,0.088224,0.004448
+1408,1405.39,0.711548,0.326336,0.004768,0.200704,0.004288,0.005792,0.00592,0.005888,0.004736,0.089792,0.004448
+1409,1388.24,0.720337,0.326784,0.005376,0.20352,0.005664,0.004576,0.005632,0.005632,0.00512,0.085984,0.00528
+1410,1353.83,0.738647,0.321536,0.005568,0.199232,0.005312,0.004928,0.005248,0.006048,0.005088,0.084992,0.00512
+1411,1302.8,0.767578,0.31936,0.006144,0.194592,0.00544,0.006368,0.004544,0.006144,0.006048,0.084096,0.005984
+1412,1238.96,0.807129,0.32896,0.006144,0.2048,0.005984,0.004288,0.005888,0.00576,0.005792,0.084928,0.005376
+1413,1250.88,0.799438,0.57088,0.005824,0.44064,0.00736,0.004928,0.005856,0.005792,0.005792,0.089056,0.005632
+1414,868.164,1.15186,0.335168,0.005376,0.200896,0.004736,0.005376,0.004864,0.006144,0.005824,0.096576,0.005376
+1415,1398.43,0.715088,0.329632,0.005632,0.19712,0.005152,0.004384,0.0048,0.00608,0.005728,0.094688,0.006048
+1416,1279.2,0.781738,0.324736,0.006048,0.196192,0.004608,0.005248,0.004992,0.006144,0.006144,0.09008,0.00528
+1417,1475.5,0.677734,0.320768,0.005472,0.197536,0.005664,0.004608,0.005888,0.005792,0.00592,0.084576,0.005312
+1418,1351.37,0.73999,0.324064,0.00496,0.197824,0.004928,0.005472,0.004768,0.006144,0.00592,0.088288,0.00576
+1419,1246.5,0.802246,0.324768,0.00592,0.19888,0.00512,0.005024,0.00592,0.005792,0.0048,0.088,0.005312
+1420,1380.29,0.724487,0.498432,0.004864,0.37888,0.00592,0.00432,0.005888,0.005856,0.00576,0.082528,0.004416
+1421,885.813,1.12891,0.33728,0.005728,0.213408,0.005664,0.004576,0.005664,0.00576,0.006208,0.084768,0.005504
+1422,791.115,1.26404,0.32528,0.008192,0.20192,0.004928,0.004192,0.006048,0.005792,0.006496,0.08192,0.005792
+1423,1623.46,0.615967,0.323584,0.005376,0.199424,0.005792,0.004448,0.006144,0.006112,0.00592,0.084288,0.00608
+1424,1394.15,0.717285,0.321344,0.004608,0.196448,0.005824,0.004416,0.005632,0.00608,0.005952,0.086784,0.0056
+1425,1412.41,0.708008,0.323616,0.005376,0.198848,0.004704,0.005184,0.005056,0.006048,0.005824,0.087616,0.00496
+1426,1340.31,0.746094,0.325728,0.0056,0.199264,0.005344,0.004864,0.005216,0.005024,0.006144,0.089856,0.004416
+1427,1108.83,0.901855,0.34224,0.005376,0.213408,0.004672,0.005312,0.004928,0.006144,0.005952,0.090304,0.006144
+1428,1387.77,0.720581,0.370784,0.005408,0.238304,0.004224,0.005696,0.004512,0.005952,0.006016,0.095872,0.0048
+1429,1047.57,0.95459,0.351808,0.005728,0.217344,0.004288,0.005728,0.004512,0.006112,0.006112,0.096288,0.005696
+1430,1234.29,0.810181,0.319744,0.005408,0.201056,0.004736,0.005216,0.005024,0.005984,0.00624,0.081152,0.004928
+1431,1522.96,0.656616,0.321536,0.005632,0.20256,0.0048,0.005792,0.004448,0.006144,0.005984,0.081152,0.005024
+1432,1308.63,0.76416,0.321536,0.006048,0.198752,0.005856,0.004416,0.005824,0.005728,0.0048,0.085056,0.005056
+1433,1469.42,0.680542,0.323616,0.005344,0.198784,0.00496,0.004096,0.006144,0.005792,0.00576,0.086752,0.005984
+1434,1338.34,0.747192,0.317024,0.004704,0.194592,0.005696,0.004544,0.005888,0.005824,0.005952,0.084288,0.005536
+1435,1451.45,0.688965,0.321536,0.005952,0.194752,0.005376,0.004864,0.006144,0.005984,0.005888,0.087712,0.004864
+1436,1272.05,0.786133,0.324,0.004608,0.196608,0.005472,0.004736,0.00544,0.005888,0.005056,0.090112,0.00608
+1437,1514.79,0.660156,0.325664,0.00544,0.197344,0.00576,0.00448,0.005536,0.005952,0.004928,0.09184,0.004384
+1438,1063.9,0.939941,0.345248,0.005984,0.21264,0.004608,0.005248,0.005024,0.006048,0.006208,0.094176,0.005312
+1439,1176.67,0.849854,0.590176,0.004704,0.420896,0.04096,0.005088,0.005728,0.00592,0.005888,0.095104,0.005888
+1440,873.254,1.14514,0.327552,0.005568,0.200576,0.004832,0.004256,0.005952,0.005824,0.005536,0.088992,0.006016
+1441,1033.56,0.967529,0.342016,0.005408,0.209664,0.005824,0.004384,0.005824,0.00592,0.005952,0.094688,0.004352
+1442,1660.99,0.602051,0.336032,0.00544,0.201536,0.005824,0.004416,0.006144,0.00592,0.005984,0.096064,0.004704
+1443,1204.71,0.830078,0.33008,0.004448,0.196576,0.005152,0.004736,0.004448,0.006144,0.006144,0.097952,0.00448
+1444,1584.53,0.631104,0.333856,0.005984,0.198816,0.005504,0.004736,0.005472,0.005824,0.005088,0.09728,0.005152
+1445,1245.17,0.803101,0.331744,0.005632,0.196608,0.004608,0.00528,0.006016,0.005088,0.005888,0.096512,0.006112
+1446,1219.59,0.819946,0.3408,0.005024,0.204544,0.004352,0.0056,0.00464,0.006144,0.006144,0.098304,0.006048
+1447,1331.6,0.750977,0.59728,0.006144,0.47056,0.006624,0.00608,0.005312,0.004992,0.006144,0.086016,0.005408
+1448,799.375,1.25098,0.329888,0.005408,0.201664,0.005856,0.004384,0.005824,0.005824,0.00592,0.088928,0.00608
+1449,1322.14,0.756348,0.323616,0.0056,0.195104,0.0056,0.005696,0.005088,0.00608,0.005856,0.090048,0.004544
+1450,1426.68,0.700928,0.331488,0.005376,0.199424,0.00432,0.005568,0.005824,0.005056,0.006112,0.094176,0.005632
+1451,1336.6,0.748169,0.331712,0.005504,0.198912,0.004512,0.005344,0.004896,0.006048,0.00576,0.094656,0.00608
+1452,1335.72,0.748657,0.32992,0.0048,0.200064,0.004736,0.005856,0.004416,0.006112,0.006144,0.09216,0.005632
+1453,1313.45,0.761353,0.327712,0.006112,0.198496,0.004288,0.005632,0.004608,0.00752,0.0048,0.09152,0.004736
+1454,1309.04,0.763916,0.349472,0.005856,0.22352,0.005248,0.004992,0.00592,0.004416,0.006048,0.088064,0.005408
+1455,1116.84,0.895386,0.330816,0.006144,0.2048,0.005248,0.00496,0.005312,0.005024,0.00608,0.087936,0.005312
+1456,1245.17,0.803101,0.330944,0.005952,0.204416,0.004672,0.005184,0.005056,0.006144,0.005952,0.088256,0.005312
+1457,1384.72,0.722168,0.329184,0.00448,0.198656,0.005952,0.004288,0.005696,0.005824,0.004896,0.09408,0.005312
+1458,1455.58,0.687012,0.32768,0.0056,0.200928,0.005504,0.004928,0.00528,0.005088,0.006144,0.089312,0.004896
+1459,1279,0.78186,0.31952,0.005376,0.1952,0.004256,0.005696,0.004544,0.006144,0.006176,0.087392,0.004736
+1460,1448.89,0.690186,0.332928,0.005888,0.198944,0.005504,0.004736,0.005472,0.00592,0.00496,0.096192,0.005312
+1461,1278.6,0.782104,0.328416,0.0048,0.198112,0.004672,0.005216,0.004992,0.005952,0.005824,0.093824,0.005024
+1462,1503.95,0.664917,0.325408,0.006144,0.195744,0.00496,0.004096,0.006112,0.005728,0.005728,0.090976,0.00592
+1463,1339,0.746826,0.32304,0.005504,0.193152,0.0056,0.005856,0.004928,0.006144,0.006016,0.09024,0.0056
+1464,1045.3,0.956665,0.32768,0.00576,0.198848,0.004288,0.005664,0.004576,0.006144,0.006144,0.091424,0.004832
+1465,1068.34,0.936035,0.585632,0.005728,0.455072,0.007424,0.004864,0.005952,0.005824,0.005728,0.088992,0.006048
+1466,1062.1,0.941528,0.333824,0.006144,0.206848,0.0056,0.00464,0.005536,0.004704,0.006176,0.088128,0.006048
+1467,1307.58,0.764771,0.331328,0.0056,0.200576,0.004768,0.005184,0.005056,0.005632,0.00592,0.092896,0.005696
+1468,1365.11,0.732544,0.331776,0.005472,0.202656,0.004864,0.004256,0.00592,0.00592,0.005824,0.092416,0.004448
+1469,1265.56,0.790161,0.333408,0.005632,0.200768,0.004544,0.005376,0.004896,0.005984,0.00576,0.09472,0.005728
+1470,1330.09,0.751831,0.33792,0.005664,0.204544,0.004832,0.004288,0.005952,0.005824,0.005696,0.09664,0.00448
+1471,1382.85,0.723145,0.331808,0.0056,0.203008,0.004384,0.005504,0.006496,0.005792,0.005792,0.090688,0.004544
+1472,1266.54,0.789551,0.504,0.004608,0.380064,0.00496,0.005248,0.005024,0.006112,0.006112,0.086048,0.005824
+1473,1102.26,0.907227,0.337248,0.00576,0.206976,0.004352,0.005632,0.004608,0.006144,0.00624,0.092064,0.005472
+1474,659.581,1.51611,0.349792,0.006752,0.21504,0.005888,0.004384,0.005824,0.00576,0.00496,0.095904,0.00528
+1475,1632.85,0.612427,0.332832,0.005408,0.201024,0.004512,0.00544,0.0048,0.006144,0.00592,0.09424,0.005344
+1476,1391.3,0.71875,0.332704,0.005024,0.200448,0.004384,0.005856,0.004416,0.00608,0.006144,0.095744,0.004608
+1477,1297.85,0.770508,0.342016,0.005824,0.205024,0.004192,0.005952,0.004416,0.006016,0.005952,0.098496,0.006144
+1478,1138.89,0.878052,0.340992,0.00512,0.202784,0.0056,0.004608,0.0056,0.006432,0.006336,0.09952,0.004992
+1479,1507.27,0.663452,0.360352,0.005568,0.228992,0.00496,0.004192,0.006144,0.006144,0.006048,0.092256,0.006048
+1480,1328.79,0.752563,0.5088,0.004992,0.37888,0.005728,0.004512,0.005664,0.00576,0.00496,0.093728,0.004576
+1481,1025.54,0.975098,0.333824,0.006112,0.20464,0.004288,0.005568,0.004672,0.006144,0.005536,0.092224,0.00464
+1482,639.85,1.56287,0.34992,0.007584,0.217248,0.004544,0.005376,0.004864,0.006144,0.006144,0.09216,0.005856
+1483,1499.54,0.66687,0.356224,0.004704,0.224864,0.004544,0.005408,0.0048,0.006048,0.005664,0.094784,0.005408
+1484,1310.51,0.763062,0.330656,0.005024,0.198656,0.005664,0.004576,0.005632,0.00576,0.004992,0.094208,0.006144
+1485,1440.48,0.694214,0.334528,0.005056,0.200704,0.005632,0.004608,0.0056,0.00576,0.005056,0.096224,0.005888
+1486,1374.73,0.727417,0.331072,0.005472,0.19904,0.004384,0.00528,0.00496,0.006144,0.005952,0.0944,0.00544
+1487,1340.09,0.746216,0.335552,0.0056,0.20128,0.005888,0.005504,0.00496,0.006144,0.005824,0.094528,0.005824
+1488,1256.06,0.796143,0.512032,0.00608,0.380672,0.004448,0.005536,0.004704,0.006144,0.006144,0.093344,0.00496
+1489,1093.14,0.914795,0.337824,0.004992,0.204832,0.005344,0.004864,0.005312,0.004928,0.006144,0.096128,0.00528
+1490,690.783,1.44763,0.34096,0.007104,0.210912,0.00416,0.00576,0.004448,0.006144,0.006144,0.091328,0.00496
+1491,1374.04,0.727783,0.326912,0.005984,0.200224,0.004736,0.005632,0.004608,0.006144,0.006144,0.088064,0.005376
+1492,1384.25,0.722412,0.3248,0.005376,0.196864,0.00464,0.005248,0.004992,0.006112,0.005952,0.090272,0.005344
+1493,1436.94,0.695923,0.35216,0.005376,0.225088,0.00496,0.004192,0.006144,0.00608,0.00592,0.088352,0.006048
+1494,1299.29,0.769653,0.331712,0.005056,0.20272,0.004096,0.005952,0.005312,0.00512,0.006144,0.091968,0.005344
+1495,1400.34,0.714111,0.323584,0.00576,0.19696,0.004128,0.005824,0.004416,0.006144,0.00592,0.088288,0.006144
+1496,1191.22,0.839478,0.360448,0.005664,0.23152,0.00448,0.005856,0.004384,0.006144,0.006144,0.090112,0.006144
+1497,962.18,1.03931,0.335296,0.006144,0.208448,0.004544,0.005504,0.004736,0.006144,0.00592,0.08832,0.005536
+1498,1500.92,0.66626,0.334816,0.005088,0.206336,0.004608,0.005472,0.004768,0.006144,0.005856,0.091488,0.005056
+1499,1407.8,0.710327,0.330368,0.004736,0.202752,0.004128,0.006048,0.005248,0.005056,0.006144,0.091808,0.004448
+1500,1296,0.771606,0.33184,0.005376,0.199488,0.004192,0.005792,0.004512,0.005984,0.006144,0.094208,0.006144
+1501,1062.52,0.941162,0.362688,0.004576,0.230496,0.004864,0.00576,0.00448,0.006176,0.006112,0.094208,0.006016
+1502,1387.06,0.720947,0.356416,0.005344,0.22208,0.00512,0.004928,0.005312,0.005088,0.006144,0.097856,0.004544
+1503,1422.96,0.702759,0.339296,0.006016,0.200736,0.004192,0.005696,0.004544,0.006144,0.005888,0.100608,0.005472
+1504,1335.29,0.748901,0.337888,0.004608,0.200704,0.006048,0.004192,0.006112,0.005888,0.00592,0.098816,0.0056
+1505,1230.77,0.8125,0.513728,0.004704,0.376512,0.004416,0.005536,0.004704,0.006144,0.006144,0.100256,0.005312
+1506,1107.93,0.902588,0.337568,0.005536,0.200384,0.004928,0.004192,0.006144,0.006176,0.005856,0.09856,0.005792
+1507,856.277,1.16785,0.538624,0.011904,0.396832,0.00496,0.005664,0.004608,0.006112,0.00608,0.097568,0.004896
+1508,1049.99,0.952393,0.336512,0.004736,0.198656,0.004256,0.005888,0.005792,0.005984,0.006496,0.09856,0.006144
+1509,1349.14,0.741211,0.334752,0.004992,0.2,0.0048,0.005152,0.005088,0.00592,0.00576,0.097952,0.005088
+1510,1432.67,0.697998,0.342048,0.005696,0.200992,0.004256,0.005696,0.006528,0.006048,0.005728,0.101952,0.005152
+1511,1303.01,0.767456,0.336224,0.005024,0.194592,0.005888,0.004352,0.005856,0.0064,0.006144,0.1024,0.005568
+1512,1394.15,0.717285,0.342016,0.005568,0.199232,0.0056,0.00464,0.005696,0.005824,0.004864,0.104448,0.006144
+1513,1251.45,0.799072,0.346144,0.005728,0.202304,0.004896,0.00416,0.00544,0.006848,0.00608,0.104512,0.006176
+1514,1065.7,0.938354,0.352,0.005408,0.204992,0.004704,0.005248,0.004992,0.006048,0.00624,0.108544,0.005824
+1515,1298.46,0.770142,0.342016,0.006144,0.200704,0.004224,0.005824,0.00448,0.005984,0.006112,0.103552,0.004992
+1516,1275.42,0.784058,0.337632,0.0056,0.1992,0.005632,0.004608,0.005632,0.0064,0.005728,0.098976,0.005856
+1517,1376.11,0.726685,0.331776,0.005504,0.199296,0.006144,0.005152,0.005088,0.00608,0.00592,0.093472,0.00512
+1518,1431.67,0.698486,0.335776,0.004992,0.19856,0.005664,0.004672,0.005312,0.004928,0.006176,0.100096,0.005376
+1519,871.026,1.14807,0.340544,0.004672,0.203968,0.004896,0.004192,0.006048,0.005856,0.005728,0.100608,0.004576
+1520,1634.48,0.611816,0.354624,0.005056,0.212256,0.0048,0.005504,0.004608,0.00592,0.006496,0.104448,0.005536
+1521,1372.19,0.72876,0.33824,0.005536,0.201312,0.004416,0.005216,0.005024,0.006016,0.005696,0.10016,0.004864
+1522,1355.84,0.737549,0.520064,0.006048,0.376928,0.004224,0.005792,0.004416,0.006048,0.006144,0.104448,0.006016
+1523,1049.99,0.952393,0.339232,0.005376,0.199584,0.005504,0.004704,0.00608,0.005984,0.005888,0.1008,0.005312
+1524,846.981,1.18066,0.341824,0.008032,0.202944,0.005664,0.004544,0.005632,0.006528,0.00576,0.096768,0.005952
+1525,1333.12,0.750122,0.334848,0.00512,0.196128,0.004576,0.005344,0.004896,0.006144,0.006144,0.101472,0.005024
+1526,1396.52,0.716064,0.33792,0.005728,0.200256,0.00496,0.004096,0.006048,0.0056,0.004768,0.102048,0.004416
+1527,1366.7,0.731689,0.334432,0.004704,0.196192,0.004512,0.005344,0.004896,0.005952,0.005728,0.102816,0.004288
+1528,1323.21,0.755737,0.335872,0.005792,0.194912,0.0056,0.00464,0.005536,0.005856,0.004992,0.103424,0.00512
+1529,1278.8,0.781982,0.341376,0.005536,0.19632,0.00496,0.00416,0.006112,0.006112,0.00576,0.106912,0.005504
+1530,1197.14,0.835327,0.360448,0.005728,0.223744,0.005856,0.004288,0.00592,0.005792,0.005792,0.098752,0.004576
+1531,1150.89,0.868896,0.33968,0.006144,0.2048,0.005312,0.004896,0.005184,0.005088,0.006144,0.096256,0.005856
+1532,451.027,2.21716,0.346112,0.008064,0.21024,0.004928,0.00416,0.006016,0.005888,0.005856,0.094816,0.006144
+1533,1212.19,0.824951,0.342016,0.006144,0.200192,0.00464,0.005728,0.00448,0.006144,0.006144,0.10384,0.004704
+1534,1278.8,0.781982,0.333568,0.005376,0.201088,0.004672,0.005216,0.005024,0.006048,0.005728,0.09472,0.005696
+1535,1494.62,0.669067,0.33104,0.00576,0.196512,0.004576,0.005248,0.004736,0.005792,0.004704,0.098304,0.005408
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..20ae5df
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,589.517,1.75034,0.253568,0.00573794,0.197947,0.00545638,0.00501191,0.00540119,0.00553019,0.00560994,0.0175279,0.00534572
+max_1024,798.518,4.49768,0.743424,0.021088,0.659616,0.021056,0.021472,0.020448,0.017984,0.020896,0.03472,0.02048
+min_1024,222.337,1.25232,0.176032,0.004096,0.121216,0.004096,0.004064,0.004256,0.004192,0.004416,0.016064,0.00416
+512,657.939,1.5199,0.196608,0.006144,0.143168,0.004288,0.005408,0.004832,0.005664,0.004576,0.017504,0.005024
+513,684.035,1.46191,0.187456,0.006144,0.132224,0.005024,0.005376,0.004832,0.005792,0.005536,0.017344,0.005184
+514,758.729,1.31799,0.185472,0.006144,0.130432,0.004736,0.005568,0.004672,0.005984,0.005472,0.017216,0.005248
+515,630.202,1.58679,0.40752,0.005472,0.3528,0.005504,0.004832,0.00528,0.005024,0.00608,0.016448,0.00608
+516,583.476,1.71387,0.415392,0.00608,0.358464,0.006144,0.005888,0.004352,0.006144,0.005824,0.016704,0.005792
+517,664.504,1.50488,0.187168,0.004896,0.1328,0.005504,0.004832,0.00432,0.006144,0.006144,0.017536,0.004992
+518,679.665,1.47131,0.186496,0.006144,0.132416,0.0048,0.005344,0.004896,0.005728,0.004512,0.018272,0.004384
+519,798.518,1.25232,0.18032,0.005088,0.126368,0.004704,0.005632,0.004608,0.006048,0.005536,0.017088,0.005248
+520,622.02,1.60767,0.415648,0.005472,0.360384,0.004896,0.006112,0.00528,0.004992,0.006048,0.01648,0.005984
+521,400.254,2.49841,0.272256,0.004736,0.212992,0.005984,0.004256,0.005824,0.004416,0.006144,0.022528,0.005376
+522,565.316,1.76892,0.190464,0.005856,0.135456,0.006144,0.004096,0.006048,0.005344,0.004992,0.017824,0.004704
+523,733.721,1.36292,0.189696,0.006048,0.13456,0.0048,0.005536,0.004704,0.005984,0.005504,0.017184,0.005376
+524,661.712,1.51123,0.191232,0.004864,0.138368,0.004928,0.00416,0.005952,0.005344,0.00512,0.017728,0.004768
+525,548.107,1.82446,0.199136,0.0056,0.144416,0.005952,0.004256,0.005856,0.004384,0.006144,0.017696,0.004832
+526,697.548,1.43359,0.190496,0.006144,0.136224,0.005088,0.005248,0.004992,0.005632,0.004608,0.018176,0.004384
+527,764.322,1.30835,0.182848,0.00464,0.129056,0.006112,0.004096,0.00608,0.005344,0.00496,0.018112,0.004448
+528,580.417,1.7229,0.416352,0.004992,0.361696,0.004896,0.006144,0.00528,0.00496,0.00608,0.016448,0.005856
+529,507.968,1.96863,0.243712,0.00608,0.18848,0.005856,0.004384,0.005728,0.004512,0.006144,0.017632,0.004896
+530,433.76,2.30542,0.63776,0.004992,0.581632,0.006144,0.00512,0.00512,0.006144,0.006144,0.016384,0.00608
+531,532.086,1.87939,0.197728,0.00608,0.142496,0.005024,0.005312,0.004928,0.005824,0.005536,0.017312,0.005216
+532,623.582,1.60364,0.202752,0.006144,0.148512,0.004864,0.00432,0.005792,0.004448,0.006144,0.017568,0.00496
+533,658.256,1.51917,0.22096,0.006176,0.16592,0.005376,0.0048,0.00528,0.004992,0.005888,0.01664,0.005888
+534,571.429,1.75,0.44384,0.006144,0.387104,0.005952,0.004256,0.005888,0.0064,0.005504,0.017024,0.005568
+535,624.724,1.60071,0.190464,0.004992,0.136416,0.004864,0.005472,0.004768,0.005888,0.005504,0.01728,0.00528
+536,704.688,1.41907,0.187552,0.006144,0.13312,0.004128,0.0056,0.004608,0.005984,0.005504,0.017184,0.00528
+537,499.36,2.00256,0.256,0.008128,0.19872,0.006144,0.005184,0.005056,0.005568,0.004672,0.018176,0.004352
+538,581.364,1.72009,0.192512,0.006144,0.138336,0.005024,0.005312,0.004928,0.005728,0.00464,0.018176,0.004224
+539,444.517,2.24963,0.187936,0.005824,0.133056,0.004704,0.005632,0.004608,0.006016,0.005536,0.01712,0.00544
+540,515.22,1.94092,0.219776,0.0048,0.165824,0.005984,0.004256,0.005824,0.004416,0.006144,0.017536,0.004992
+541,488.026,2.04907,0.195584,0.00512,0.141312,0.006144,0.004096,0.006144,0.005408,0.004832,0.01808,0.004448
+542,736.889,1.35706,0.186944,0.004672,0.13312,0.005952,0.004288,0.005792,0.004448,0.006144,0.0176,0.004928
+543,626.108,1.59717,0.405568,0.004704,0.351616,0.004736,0.0056,0.00464,0.006144,0.005568,0.01696,0.0056
+544,508.599,1.96619,0.485344,0.0056,0.40432,0.005696,0.020928,0.005888,0.0056,0.004896,0.01792,0.014496
+545,437.233,2.28711,0.636928,0.006016,0.58176,0.005792,0.004448,0.005856,0.005696,0.004832,0.018016,0.004512
+546,592.079,1.68896,0.408064,0.004576,0.353856,0.004544,0.00576,0.00448,0.006144,0.006144,0.017536,0.005024
+547,656.253,1.5238,0.1864,0.00592,0.131296,0.006144,0.005152,0.005088,0.005568,0.004672,0.018176,0.004384
+548,457.347,2.18652,0.250432,0.0048,0.196512,0.005536,0.004704,0.005408,0.004832,0.006112,0.016416,0.006112
+549,594.657,1.68164,0.410944,0.005856,0.355776,0.00496,0.005376,0.004864,0.005952,0.005696,0.017024,0.00544
+550,623.108,1.60486,0.188224,0.006144,0.13312,0.005568,0.004672,0.005408,0.004832,0.006016,0.016512,0.005952
+551,694.885,1.43909,0.185376,0.00576,0.129408,0.006144,0.004096,0.006144,0.005472,0.004768,0.018112,0.005472
+552,533.021,1.8761,0.439072,0.004896,0.385056,0.005664,0.004544,0.006144,0.005632,0.004608,0.018144,0.004384
+553,486.519,2.05542,0.412672,0.00512,0.3584,0.006144,0.004096,0.006144,0.005568,0.004672,0.018176,0.004352
+554,714.897,1.3988,0.187104,0.004992,0.13296,0.005504,0.004832,0.00528,0.005024,0.005952,0.016576,0.005984
+555,748.88,1.33533,0.182496,0.00512,0.128384,0.004736,0.005536,0.004704,0.005952,0.005504,0.017216,0.005344
+556,490.568,2.03845,0.467968,0.00512,0.4136,0.005536,0.0048,0.005984,0.005536,0.004896,0.01792,0.004576
+557,387.971,2.57751,0.299008,0.019488,0.230368,0.00592,0.00432,0.005792,0.004448,0.006144,0.017664,0.004864
+558,680.568,1.46936,0.190912,0.004832,0.136544,0.004768,0.005568,0.005888,0.004928,0.00592,0.016608,0.005856
+559,649.231,1.54028,0.192512,0.006144,0.137216,0.00608,0.00416,0.00592,0.005376,0.005088,0.01776,0.004768
+560,491.628,2.03406,0.25808,0.006144,0.204032,0.004896,0.004064,0.006144,0.005536,0.004736,0.01808,0.004448
+561,552.953,1.80847,0.410912,0.006144,0.35552,0.004928,0.005408,0.004832,0.006016,0.005504,0.017152,0.005408
+562,664.18,1.50562,0.186752,0.005024,0.132704,0.004512,0.005824,0.004416,0.006144,0.005632,0.016896,0.0056
+563,667.59,1.49792,0.201248,0.004704,0.147456,0.005536,0.004704,0.005408,0.004832,0.006048,0.01648,0.00608
+564,587.409,1.70239,0.233472,0.006144,0.178176,0.005312,0.004928,0.005472,0.004768,0.00608,0.016448,0.006144
+565,401.844,2.48853,0.413408,0.004512,0.35968,0.004864,0.005504,0.004736,0.006048,0.005536,0.017088,0.00544
+566,565.16,1.76941,0.190464,0.005952,0.13536,0.006016,0.004224,0.005824,0.005888,0.004672,0.018144,0.004384
+567,670.431,1.49158,0.190752,0.0056,0.135776,0.005504,0.004832,0.00432,0.006144,0.005984,0.016544,0.006048
+568,527.325,1.89636,0.211808,0.00496,0.158848,0.004896,0.004192,0.006144,0.005728,0.004512,0.018272,0.004256
+569,618.778,1.61609,0.19456,0.005568,0.13984,0.006144,0.004096,0.006144,0.0056,0.00464,0.018272,0.004256
+570,748.401,1.33618,0.186368,0.006144,0.131072,0.006144,0.004096,0.006144,0.005504,0.004736,0.018048,0.00448
+571,689.156,1.45105,0.184704,0.005728,0.129888,0.005536,0.004704,0.005376,0.004864,0.006016,0.016512,0.00608
+572,546.243,1.83069,0.217504,0.0056,0.162752,0.005824,0.004416,0.005632,0.004608,0.006144,0.017664,0.004864
+573,567.745,1.76135,0.409536,0.004672,0.35568,0.004768,0.005568,0.004672,0.006144,0.005504,0.017024,0.005504
+574,648.974,1.54089,0.189344,0.005088,0.135168,0.005664,0.004576,0.005504,0.004736,0.006112,0.016416,0.00608
+575,374.697,2.66882,0.208192,0.006144,0.151552,0.006144,0.005216,0.005024,0.005888,0.005504,0.01728,0.00544
+576,627.451,1.59375,0.200704,0.005792,0.145792,0.005728,0.00448,0.005824,0.004416,0.006144,0.017568,0.00496
+577,627.019,1.59485,0.197952,0.005664,0.1432,0.004736,0.005632,0.004608,0.006016,0.005504,0.017152,0.00544
+578,638.404,1.56641,0.188192,0.005568,0.13344,0.0048,0.00576,0.004512,0.006112,0.005536,0.016992,0.005472
+579,707.427,1.41357,0.191808,0.006112,0.1352,0.006144,0.004096,0.005984,0.005408,0.006112,0.017312,0.00544
+580,523.651,1.90967,0.253792,0.005312,0.199488,0.005568,0.004672,0.00528,0.00496,0.005984,0.016544,0.005984
+581,620.935,1.61047,0.206368,0.0048,0.151392,0.006048,0.004192,0.00592,0.005888,0.004576,0.018336,0.005216
+582,718.093,1.39258,0.186368,0.006144,0.131072,0.006144,0.004096,0.005984,0.005376,0.005024,0.017728,0.0048
+583,666.45,1.50049,0.18672,0.00512,0.13216,0.005056,0.00528,0.00496,0.005856,0.00576,0.017056,0.005472
+584,614.969,1.6261,0.21504,0.00608,0.143424,0.005696,0.004544,0.005536,0.004704,0.006144,0.032768,0.006144
+585,491.333,2.03528,0.316736,0.008192,0.259424,0.0048,0.005536,0.004672,0.006048,0.005504,0.01712,0.00544
+586,452.447,2.21021,0.213216,0.00432,0.159744,0.006144,0.004096,0.006144,0.005472,0.004768,0.01808,0.004448
+587,563.915,1.77332,0.21472,0.005696,0.159424,0.004864,0.005984,0.00528,0.00512,0.005792,0.016736,0.005824
+588,490.862,2.03723,0.201088,0.0056,0.146336,0.005824,0.004416,0.006144,0.005504,0.004736,0.018112,0.004416
+589,647.026,1.54553,0.195424,0.00496,0.141312,0.006144,0.005216,0.005024,0.0056,0.00464,0.01824,0.004288
+590,685.408,1.45898,0.192704,0.0056,0.137632,0.005504,0.005056,0.005568,0.004672,0.006144,0.016384,0.006144
+591,735.764,1.35913,0.18432,0.005984,0.129216,0.005856,0.004352,0.005792,0.004448,0.006144,0.0176,0.004928
+592,612.303,1.63318,0.208544,0.006144,0.1536,0.005504,0.004736,0.005344,0.004896,0.005888,0.01664,0.005792
+593,492.396,2.03088,0.417664,0.004896,0.362528,0.006112,0.004096,0.006144,0.005824,0.005504,0.017344,0.005216
+594,495.075,2.0199,0.220608,0.006144,0.16544,0.004544,0.00576,0.00448,0.006144,0.0056,0.016928,0.005568
+595,552.692,1.80933,0.244192,0.004832,0.190112,0.005504,0.004832,0.004352,0.006144,0.005856,0.016672,0.005888
+596,425.536,2.34998,0.264224,0.004768,0.210944,0.005184,0.00464,0.004512,0.006112,0.005568,0.016992,0.005504
+597,657.517,1.52087,0.188416,0.00608,0.133056,0.005536,0.0048,0.00528,0.004992,0.006144,0.017664,0.004864
+598,755.859,1.323,0.184448,0.006016,0.130336,0.00496,0.005376,0.004864,0.00576,0.00448,0.018272,0.004384
+599,587.788,1.70129,0.188416,0.006144,0.13312,0.006112,0.004128,0.005984,0.005376,0.005024,0.017952,0.004576
+600,539.729,1.85278,0.239616,0.005728,0.184768,0.005728,0.00448,0.0056,0.00464,0.006144,0.017408,0.00512
+601,659.581,1.51611,0.188992,0.004672,0.135168,0.006144,0.004096,0.006144,0.005408,0.004832,0.016384,0.006144
+602,680.286,1.46997,0.196544,0.005664,0.141312,0.004576,0.006144,0.005472,0.004768,0.006112,0.016416,0.00608
+603,487.271,2.05225,0.212992,0.006144,0.157696,0.005632,0.004608,0.0056,0.00464,0.006144,0.01744,0.005088
+604,597.738,1.67297,0.240928,0.006144,0.186368,0.004096,0.005728,0.004512,0.006112,0.005632,0.016928,0.005408
+605,508.725,1.9657,0.413216,0.005472,0.358528,0.00496,0.005376,0.004864,0.005952,0.005504,0.017216,0.005344
+606,701.37,1.42578,0.188896,0.005632,0.135328,0.004928,0.005408,0.004832,0.005824,0.004416,0.018304,0.004224
+607,781.307,1.27991,0.19008,0.005792,0.135136,0.004832,0.0056,0.00464,0.006016,0.005504,0.017152,0.005408
+608,545.697,1.83252,0.468992,0.006016,0.413824,0.005568,0.004672,0.00608,0.0056,0.004704,0.01808,0.004448
+609,516.129,1.9375,0.411456,0.006144,0.356064,0.005504,0.004832,0.004288,0.006144,0.005952,0.016576,0.005952
+610,733.787,1.36279,0.184672,0.006336,0.129184,0.006112,0.004096,0.00608,0.005376,0.004928,0.017856,0.004704
+611,615.385,1.625,0.4096,0.005696,0.354752,0.006144,0.004096,0.006112,0.005536,0.004736,0.018144,0.004384
+612,495.644,2.01758,0.23552,0.006144,0.181536,0.004832,0.004096,0.006016,0.005344,0.005024,0.017792,0.004736
+613,592.721,1.68713,0.198688,0.005728,0.143392,0.004608,0.005728,0.004512,0.006144,0.006016,0.016512,0.006048
+614,636.519,1.57104,0.196512,0.005984,0.141472,0.005664,0.004576,0.005504,0.004736,0.006144,0.016384,0.006048
+615,687.825,1.45386,0.191104,0.004736,0.137216,0.006144,0.004096,0.006048,0.005344,0.004992,0.017856,0.004672
+616,648.82,1.54126,0.192512,0.006144,0.138912,0.004448,0.005248,0.004992,0.005632,0.004608,0.018272,0.004256
+617,527.359,1.89624,0.241632,0.005696,0.18688,0.005536,0.004704,0.005408,0.004832,0.006048,0.01648,0.006048
+618,647.589,1.54419,0.194272,0.006144,0.138496,0.004864,0.00544,0.0048,0.005888,0.006176,0.016608,0.005856
+619,744.795,1.34265,0.187936,0.006144,0.13264,0.004576,0.00576,0.00448,0.006144,0.005536,0.016992,0.005664
+620,662.033,1.5105,0.186784,0.005088,0.13312,0.005184,0.004832,0.004352,0.00608,0.005664,0.016864,0.0056
+621,455.871,2.1936,0.221248,0.006144,0.16592,0.006112,0.005152,0.005088,0.0056,0.00464,0.018208,0.004384
+622,541.119,1.84802,0.192128,0.005664,0.137152,0.004768,0.0056,0.00464,0.006048,0.005696,0.016928,0.005632
+623,653.53,1.53015,0.192544,0.005632,0.137728,0.00608,0.00416,0.005824,0.004416,0.006144,0.017664,0.004896
+624,667.481,1.49817,0.197376,0.004864,0.14336,0.005216,0.0048,0.00432,0.006144,0.005728,0.0168,0.006144
+625,587.114,1.70325,0.200704,0.007744,0.143808,0.005824,0.004416,0.005664,0.004576,0.006144,0.017536,0.004992
+626,478.868,2.08826,0.41184,0.005504,0.356544,0.004736,0.0056,0.00464,0.006144,0.006144,0.017504,0.005024
+627,740.352,1.35071,0.186688,0.005696,0.132928,0.005056,0.005312,0.004928,0.005696,0.00464,0.01824,0.004192
+628,763.467,1.30981,0.183104,0.006176,0.127776,0.00576,0.00448,0.005632,0.004608,0.006144,0.016416,0.006112
+629,469.348,2.13062,0.485376,0.0072,0.429024,0.006144,0.004096,0.006016,0.005536,0.004832,0.018016,0.004512
+630,380.651,2.62708,0.411872,0.005408,0.357248,0.005536,0.004768,0.005312,0.006112,0.00496,0.017856,0.004672
+631,701.55,1.42542,0.192736,0.005696,0.137568,0.005472,0.004832,0.005472,0.005024,0.006144,0.016384,0.006144
+632,605.693,1.651,0.198656,0.006144,0.144608,0.004864,0.004128,0.005984,0.005376,0.005024,0.017856,0.004672
+633,492.456,2.03064,0.245344,0.006144,0.190176,0.005504,0.004832,0.004288,0.006144,0.005696,0.016832,0.005728
+634,699.812,1.42896,0.188512,0.0056,0.13376,0.006016,0.004224,0.005856,0.004384,0.006144,0.0176,0.004928
+635,663.266,1.50769,0.190112,0.00576,0.1352,0.004512,0.005824,0.004416,0.006144,0.005728,0.0168,0.005728
+636,685.58,1.45862,0.196608,0.005728,0.141024,0.0048,0.004096,0.006144,0.006144,0.006144,0.016416,0.006112
+637,554.338,1.80396,0.1904,0.006016,0.1352,0.005536,0.0048,0.00528,0.00496,0.006016,0.016512,0.00608
+638,559.143,1.78845,0.415744,0.005536,0.360832,0.005504,0.004864,0.005248,0.006336,0.004896,0.017952,0.004576
+639,660.219,1.51465,0.19456,0.005984,0.139424,0.006144,0.004096,0.006016,0.005344,0.005024,0.01792,0.004608
+640,477.111,2.09595,0.197952,0.006144,0.14336,0.004096,0.0056,0.00464,0.005952,0.005632,0.017088,0.00544
+641,459.476,2.17639,0.22528,0.006144,0.169984,0.006144,0.004096,0.006144,0.00544,0.0048,0.01808,0.004448
+642,644.38,1.55188,0.191776,0.006144,0.136608,0.004704,0.0056,0.00464,0.006016,0.005472,0.017184,0.005408
+643,748.401,1.33618,0.186368,0.005824,0.131392,0.005664,0.004576,0.005536,0.004704,0.006144,0.016448,0.00608
+644,651.659,1.53455,0.188512,0.004896,0.135168,0.004096,0.005728,0.004512,0.006112,0.005472,0.017088,0.00544
+645,528.994,1.89038,0.206304,0.005824,0.151584,0.005504,0.004832,0.004288,0.006144,0.005728,0.0168,0.0056
+646,542.768,1.84241,0.407776,0.004992,0.352256,0.005536,0.004704,0.005376,0.006208,0.0048,0.017984,0.00592
+647,571.389,1.75012,0.4112,0.005952,0.356224,0.005536,0.004608,0.004512,0.006144,0.005696,0.016832,0.005696
+648,508.946,1.96484,0.210976,0.005728,0.156064,0.005472,0.004768,0.005344,0.004896,0.005984,0.016544,0.006176
+649,405.023,2.46899,0.19456,0.005088,0.140384,0.005024,0.005344,0.004896,0.005728,0.004512,0.0184,0.005184
+650,658.362,1.51892,0.190464,0.005728,0.135584,0.006048,0.004192,0.005888,0.004352,0.006144,0.017632,0.004896
+651,633.125,1.57947,0.191136,0.004832,0.137152,0.00592,0.00432,0.005728,0.004512,0.006144,0.017568,0.00496
+652,672.633,1.48669,0.192448,0.005472,0.139456,0.004608,0.004096,0.006144,0.00544,0.0048,0.016384,0.006048
+653,460.38,2.17212,0.512576,0.006592,0.445664,0.004896,0.005472,0.004768,0.006048,0.005568,0.028768,0.0048
+654,605.201,1.65234,0.192864,0.0056,0.137984,0.005504,0.004832,0.00528,0.004992,0.006144,0.017408,0.00512
+655,707.793,1.41284,0.1832,0.005024,0.129024,0.005536,0.004704,0.005376,0.004864,0.006048,0.01648,0.006144
+656,608.709,1.64282,0.23568,0.005952,0.182304,0.004256,0.005312,0.004928,0.005728,0.004512,0.018304,0.004384
+657,339.396,2.94641,0.40144,0.016576,0.335808,0.0048,0.005536,0.004704,0.005952,0.005504,0.017216,0.005344
+658,598.218,1.67163,0.221344,0.005728,0.166464,0.006144,0.005152,0.005088,0.005536,0.004704,0.018048,0.00448
+659,610.569,1.63782,0.196832,0.005568,0.142112,0.006144,0.004096,0.006144,0.005344,0.004928,0.01792,0.004576
+660,505.118,1.97974,0.19648,0.006048,0.141408,0.005824,0.004416,0.005472,0.004768,0.00608,0.016448,0.006016
+661,552.767,1.80908,0.417632,0.005888,0.362272,0.004576,0.00576,0.00448,0.006144,0.005792,0.016736,0.005984
+662,584.767,1.71008,0.198656,0.006144,0.14336,0.005696,0.004544,0.005568,0.004672,0.006144,0.016416,0.006112
+663,591.608,1.69031,0.190464,0.005568,0.135744,0.005536,0.0048,0.005312,0.004928,0.006016,0.016512,0.006048
+664,555.691,1.79956,0.232096,0.0048,0.178144,0.005888,0.004352,0.005568,0.004672,0.006144,0.01744,0.005088
+665,401.313,2.49182,0.419616,0.006144,0.364224,0.005504,0.004832,0.00432,0.006144,0.005856,0.016672,0.00592
+666,500.092,1.99963,0.19856,0.005824,0.142976,0.0048,0.005536,0.004704,0.005952,0.005472,0.017248,0.006048
+667,532.363,1.87842,0.23424,0.004864,0.167872,0.005504,0.0048,0.00528,0.00496,0.005952,0.030368,0.00464
+668,510.437,1.95911,0.226784,0.005664,0.172768,0.004128,0.005536,0.004704,0.00592,0.005504,0.017248,0.005312
+669,624.533,1.6012,0.20192,0.006176,0.146592,0.004928,0.005408,0.004832,0.005856,0.005568,0.017248,0.005312
+670,572.387,1.74707,0.192512,0.006144,0.137216,0.005728,0.004512,0.005696,0.004544,0.006144,0.017504,0.005024
+671,630.008,1.58728,0.195808,0.00624,0.140576,0.004832,0.005504,0.004736,0.00592,0.005536,0.017216,0.005248
+672,541.942,1.84521,0.253024,0.006176,0.196576,0.005952,0.005536,0.004928,0.005664,0.005632,0.017312,0.005248
+673,529.609,1.88818,0.638528,0.006144,0.582656,0.00512,0.005248,0.004992,0.006176,0.005664,0.016832,0.005696
+674,427.468,2.33936,0.213024,0.0056,0.158272,0.006144,0.005216,0.005024,0.00544,0.0048,0.017984,0.004544
+675,448.975,2.22729,0.198432,0.005728,0.14336,0.004544,0.005792,0.004448,0.006144,0.005856,0.016672,0.005888
+676,683.521,1.46301,0.189056,0.004736,0.136544,0.004768,0.004096,0.00608,0.005344,0.00496,0.01792,0.004608
+677,593.924,1.68372,0.198656,0.006176,0.143328,0.005568,0.004672,0.005888,0.004352,0.006144,0.017696,0.004832
+678,641.403,1.55908,0.204608,0.004736,0.150848,0.004832,0.005504,0.004704,0.005888,0.005504,0.01728,0.005312
+679,493.851,2.0249,0.203584,0.004896,0.149504,0.00576,0.00448,0.006144,0.005344,0.004896,0.017984,0.004576
+680,472.952,2.11438,0.41648,0.004832,0.36048,0.006112,0.005856,0.004384,0.006144,0.005792,0.016736,0.006144
+681,591.48,1.69067,0.190464,0.006144,0.135168,0.006144,0.004096,0.006144,0.005472,0.004768,0.018112,0.004416
+682,521.651,1.91699,0.252928,0.006144,0.197856,0.004896,0.005408,0.004832,0.005792,0.005504,0.017312,0.005184
+683,409.743,2.44055,0.203168,0.004896,0.149248,0.005536,0.0048,0.00528,0.00512,0.00576,0.016768,0.00576
+684,564.654,1.771,0.192768,0.0056,0.13824,0.005504,0.004704,0.005376,0.004864,0.005984,0.016576,0.00592
+685,629.041,1.58972,0.22528,0.006144,0.169984,0.006144,0.005184,0.005056,0.0056,0.00464,0.018208,0.00432
+686,485.337,2.06042,0.249984,0.004768,0.19456,0.006144,0.005152,0.005088,0.005568,0.006208,0.016896,0.0056
+687,533.021,1.8761,0.412256,0.004864,0.358176,0.005536,0.004832,0.00528,0.005024,0.006016,0.016512,0.006016
+688,601.513,1.66248,0.41328,0.006144,0.356352,0.006144,0.005728,0.004512,0.006144,0.005696,0.016832,0.005728
+689,545.733,1.8324,0.421024,0.006144,0.364544,0.006048,0.004192,0.006144,0.005888,0.005504,0.01728,0.00528
+690,222.337,4.49768,0.653568,0.005728,0.597888,0.004896,0.005408,0.004832,0.006144,0.006144,0.017536,0.004992
+691,610.751,1.63733,0.206656,0.006112,0.151584,0.0056,0.004608,0.00528,0.004992,0.005888,0.01664,0.005952
+692,531.775,1.88049,0.188416,0.006144,0.133152,0.006112,0.006048,0.005376,0.00496,0.005568,0.016064,0.004992
+693,407.826,2.45203,0.202752,0.004672,0.148992,0.004608,0.005728,0.004512,0.006144,0.005568,0.01696,0.005568
+694,628.896,1.59009,0.204192,0.005824,0.149312,0.004608,0.00576,0.00448,0.006144,0.005536,0.016992,0.005536
+695,652.385,1.53284,0.196448,0.006144,0.14128,0.005536,0.004736,0.005344,0.004896,0.005984,0.016544,0.005984
+696,431.09,2.3197,0.253952,0.00576,0.200384,0.0048,0.004096,0.006144,0.005376,0.004864,0.017952,0.004576
+697,553.888,1.80542,0.219136,0.00592,0.164064,0.005632,0.004608,0.005504,0.004736,0.006144,0.016384,0.006144
+698,706.999,1.41443,0.19456,0.006144,0.139264,0.006144,0.004096,0.006144,0.005376,0.004864,0.017952,0.004576
+699,658.468,1.51868,0.196608,0.006144,0.141312,0.005664,0.004576,0.005536,0.004704,0.006144,0.01744,0.005088
+700,384.204,2.60278,0.323392,0.006144,0.239616,0.005408,0.0208,0.005696,0.00496,0.005856,0.016672,0.01824
+701,510.564,1.95862,0.192032,0.006112,0.136832,0.004512,0.005824,0.004416,0.006144,0.005664,0.016864,0.005664
+702,653.426,1.5304,0.19584,0.005568,0.141152,0.004896,0.00544,0.004768,0.005984,0.005536,0.017152,0.005344
+703,583.351,1.71423,0.212992,0.00608,0.15776,0.006144,0.004096,0.006144,0.005504,0.004736,0.018112,0.004416
+704,505.087,1.97986,0.207104,0.005664,0.152384,0.005632,0.004608,0.005472,0.004768,0.00608,0.016448,0.006048
+705,459.45,2.17651,0.193376,0.00496,0.139264,0.005696,0.004544,0.005536,0.004704,0.006144,0.016384,0.006144
+706,542.948,1.8418,0.234816,0.006144,0.179712,0.004608,0.005728,0.004512,0.00608,0.005568,0.017024,0.00544
+707,438.826,2.27881,0.300544,0.00576,0.244608,0.006112,0.004096,0.00608,0.005344,0.006016,0.017344,0.005184
+708,639.401,1.56396,0.192768,0.005888,0.139264,0.004352,0.005344,0.004896,0.00576,0.005504,0.017312,0.004448
+709,686.097,1.45752,0.192512,0.005728,0.137632,0.006144,0.004096,0.006016,0.005376,0.004992,0.017856,0.004672
+710,510.532,1.95874,0.21152,0.004896,0.157568,0.005504,0.0048,0.00528,0.004992,0.005856,0.016672,0.005952
+711,447.993,2.23218,0.217088,0.005696,0.162048,0.005504,0.004832,0.005536,0.0048,0.00608,0.016448,0.006144
+712,632.88,1.58008,0.204864,0.005664,0.15008,0.005152,0.005056,0.00576,0.00448,0.006144,0.017568,0.00496
+713,545.879,1.83191,0.251072,0.006144,0.195904,0.0048,0.005536,0.004704,0.00592,0.005504,0.017248,0.005312
+714,494.626,2.02173,0.230368,0.005088,0.17584,0.005504,0.0048,0.005856,0.004608,0.006144,0.016384,0.006144
+715,446.333,2.24048,0.197824,0.006144,0.142432,0.005024,0.005312,0.004928,0.005856,0.005536,0.01728,0.005312
+716,684.263,1.46143,0.192256,0.006144,0.137152,0.00416,0.005568,0.004704,0.006016,0.005984,0.01664,0.005888
+717,697.191,1.43433,0.195744,0.006144,0.139264,0.006144,0.004096,0.006048,0.005312,0.005024,0.017792,0.00592
+718,600.983,1.66394,0.20992,0.00512,0.155648,0.006144,0.004096,0.006144,0.005472,0.004768,0.01808,0.004448
+719,540.619,1.84973,0.199328,0.004768,0.145408,0.005728,0.004512,0.0056,0.00464,0.006144,0.01744,0.005088
+720,663.266,1.50769,0.18992,0.005824,0.135488,0.004096,0.005824,0.004416,0.006144,0.0056,0.016928,0.0056
+721,657.411,1.52112,0.193536,0.006144,0.138368,0.004992,0.005344,0.004896,0.005728,0.005536,0.017344,0.005184
+722,647.487,1.54443,0.196608,0.005856,0.1416,0.006144,0.004096,0.006144,0.005376,0.004864,0.01792,0.004608
+723,508.504,1.96655,0.306976,0.007424,0.248576,0.006144,0.004096,0.006144,0.005952,0.005504,0.017216,0.00592
+724,678.708,1.47339,0.192896,0.005568,0.138208,0.005696,0.004512,0.005536,0.004704,0.006144,0.016384,0.006144
+725,667.862,1.49731,0.189472,0.004992,0.136224,0.005088,0.00528,0.00496,0.005696,0.004544,0.018304,0.004384
+726,621.831,1.60815,0.432128,0.006144,0.376192,0.004736,0.0056,0.00464,0.006144,0.006144,0.017504,0.005024
+727,562.097,1.77905,0.234016,0.004896,0.180064,0.005536,0.0048,0.00528,0.005024,0.005856,0.016672,0.005888
+728,661.339,1.51208,0.184352,0.005952,0.130464,0.004864,0.004128,0.005984,0.005376,0.005056,0.017536,0.004992
+729,676.689,1.47778,0.190272,0.006144,0.134464,0.0048,0.005536,0.004704,0.005856,0.005504,0.017312,0.005952
+730,613.817,1.62915,0.413888,0.004928,0.358432,0.006112,0.004096,0.006144,0.006144,0.005568,0.01696,0.005504
+731,554.413,1.80371,0.248608,0.004896,0.19456,0.0056,0.00464,0.005472,0.004768,0.006144,0.017408,0.00512
+732,672.247,1.48755,0.185344,0.00512,0.132704,0.004512,0.005184,0.005056,0.005568,0.004672,0.018112,0.004416
+733,626.779,1.59546,0.194624,0.005728,0.139744,0.005664,0.004576,0.00528,0.00496,0.00592,0.016608,0.006144
+734,614.554,1.6272,0.194752,0.005792,0.139776,0.005504,0.004768,0.005536,0.004704,0.006144,0.016384,0.006144
+735,635.137,1.57446,0.225248,0.0056,0.170624,0.00528,0.0048,0.00528,0.00512,0.005984,0.016544,0.006016
+736,608.076,1.64453,0.272032,0.006272,0.2168,0.004768,0.004096,0.00608,0.005344,0.006144,0.017248,0.00528
+737,597.694,1.6731,0.20096,0.005632,0.146176,0.00592,0.00432,0.005792,0.004448,0.006144,0.017632,0.004896
+738,627.163,1.59448,0.193856,0.006144,0.138528,0.004832,0.005472,0.004768,0.005856,0.005792,0.017024,0.00544
+739,640,1.5625,0.206912,0.00592,0.151776,0.006144,0.005152,0.005088,0.005568,0.004672,0.018208,0.004384
+740,456.074,2.19263,0.198912,0.005664,0.144064,0.005376,0.004864,0.00576,0.00448,0.006144,0.017536,0.005024
+741,638.205,1.56689,0.19552,0.005056,0.141312,0.00608,0.00416,0.005952,0.005376,0.005056,0.017792,0.004736
+742,505.429,1.97852,0.315904,0.0048,0.2368,0.004672,0.005664,0.016736,0.005344,0.005056,0.030688,0.006144
+743,575.523,1.73755,0.206784,0.006112,0.151584,0.005536,0.004704,0.005408,0.004832,0.006048,0.01648,0.00608
+744,460.225,2.17285,0.204736,0.004992,0.151392,0.004256,0.00544,0.004768,0.005888,0.005504,0.01728,0.005216
+745,585.812,1.70703,0.197888,0.005728,0.142912,0.00496,0.005376,0.004864,0.005952,0.005568,0.017152,0.005376
+746,604.665,1.65381,0.195616,0.005792,0.1408,0.00496,0.005376,0.004864,0.00576,0.005504,0.017312,0.005248
+747,634.744,1.57544,0.233536,0.005664,0.178656,0.006144,0.005216,0.005024,0.0056,0.00464,0.01824,0.004352
+748,606.815,1.64795,0.195616,0.006144,0.141024,0.004384,0.005312,0.004928,0.005664,0.005632,0.017312,0.005216
+749,682.667,1.46484,0.186368,0.005792,0.131424,0.005632,0.004608,0.005504,0.004736,0.006144,0.016384,0.006144
+750,766.754,1.3042,0.185856,0.006144,0.13072,0.005536,0.0048,0.004352,0.006144,0.005664,0.016864,0.005632
+751,743.646,1.34473,0.185632,0.005856,0.13072,0.004768,0.005568,0.00464,0.006016,0.005504,0.017152,0.005408
+752,345.101,2.89771,0.228416,0.006112,0.173952,0.004256,0.005408,0.004832,0.005824,0.005536,0.017312,0.005184
+753,596.215,1.67725,0.197184,0.004672,0.14464,0.004864,0.005472,0.004768,0.005856,0.005504,0.016672,0.004736
+754,648.923,1.54102,0.200736,0.006144,0.145408,0.006144,0.00512,0.00512,0.005504,0.004736,0.018176,0.004384
+755,606.905,1.64771,0.202816,0.004864,0.148992,0.004608,0.005728,0.004512,0.005952,0.005536,0.017184,0.00544
+756,513.605,1.94702,0.198688,0.005632,0.143904,0.005696,0.004544,0.005568,0.004672,0.006144,0.016384,0.006144
+757,685.179,1.45947,0.195424,0.00496,0.141312,0.006144,0.004096,0.006144,0.005408,0.004832,0.018048,0.00448
+758,718.344,1.39209,0.202176,0.005696,0.147456,0.004992,0.005344,0.004896,0.00576,0.005536,0.017312,0.005184
+759,596.042,1.67773,0.239616,0.00592,0.184544,0.006144,0.004096,0.006144,0.005376,0.004864,0.018016,0.004512
+760,485.136,2.06128,0.247296,0.006112,0.192544,0.005152,0.004832,0.004352,0.006144,0.005664,0.016864,0.005632
+761,620.888,1.6106,0.214048,0.006144,0.15888,0.00496,0.005376,0.004864,0.005792,0.005504,0.017344,0.005184
+762,518.153,1.92993,0.20464,0.006144,0.149504,0.005536,0.004704,0.005376,0.004864,0.005984,0.016544,0.005984
+763,576.414,1.73486,0.195136,0.00512,0.140896,0.004576,0.00576,0.004416,0.006144,0.005664,0.016864,0.005696
+764,526.275,1.90015,0.18992,0.00576,0.135552,0.005184,0.0048,0.004352,0.006144,0.005664,0.016864,0.0056
+765,636.717,1.57056,0.182816,0.004736,0.128928,0.005504,0.004832,0.005376,0.004864,0.006016,0.016512,0.006048
+766,623.155,1.60474,0.408224,0.004768,0.353568,0.004832,0.005472,0.004768,0.006144,0.006144,0.017472,0.005056
+767,549.651,1.81934,0.185824,0.005952,0.130752,0.004608,0.005728,0.004512,0.006144,0.0056,0.016928,0.0056
+768,491.304,2.0354,0.421472,0.006144,0.365728,0.00496,0.00608,0.00528,0.005024,0.005984,0.016544,0.005728
+769,486.345,2.05615,0.204896,0.005664,0.15008,0.006144,0.004096,0.005984,0.005344,0.005056,0.017824,0.004704
+770,628.028,1.59229,0.189024,0.004704,0.136224,0.005088,0.004096,0.006144,0.005472,0.004768,0.018048,0.00448
+771,687.248,1.45508,0.19184,0.005568,0.137088,0.005088,0.005248,0.004992,0.005664,0.004576,0.018304,0.005312
+772,586.819,1.7041,0.258368,0.006752,0.202752,0.005312,0.0048,0.00528,0.005088,0.005856,0.016704,0.005824
+773,539.302,1.85425,0.409824,0.005472,0.354976,0.005504,0.004832,0.00528,0.005088,0.005952,0.016576,0.006144
+774,680.738,1.46899,0.180224,0.00608,0.12608,0.005056,0.005312,0.004928,0.005664,0.004576,0.018208,0.00432
+775,609.524,1.64062,0.415712,0.004704,0.361696,0.004896,0.005472,0.004768,0.006144,0.005504,0.017024,0.005504
+776,495.344,2.0188,0.259616,0.007808,0.20304,0.004704,0.004096,0.006144,0.005408,0.00592,0.017248,0.005248
+777,528.38,1.89258,0.412288,0.004736,0.3584,0.005568,0.004672,0.005504,0.004736,0.006144,0.017504,0.005024
+778,539.231,1.85449,0.303104,0.00608,0.247872,0.005856,0.004384,0.005696,0.004544,0.006176,0.017408,0.005088
+779,488.666,2.04639,0.20016,0.005632,0.145536,0.00448,0.005824,0.004416,0.006144,0.0056,0.016928,0.0056
+780,543.885,1.83862,0.196352,0.005664,0.141856,0.005632,0.004608,0.005472,0.004768,0.00608,0.016448,0.005824
+781,680.851,1.46875,0.186368,0.005888,0.131328,0.00576,0.00448,0.005632,0.004608,0.006144,0.017536,0.004992
+782,649.128,1.54053,0.19456,0.006144,0.139296,0.00576,0.004448,0.005664,0.004576,0.006144,0.01744,0.005088
+783,594.657,1.68164,0.197376,0.00512,0.1432,0.005504,0.004832,0.005312,0.00496,0.00592,0.016608,0.00592
+784,610.614,1.6377,0.217088,0.00608,0.161856,0.0056,0.00464,0.006048,0.005376,0.00496,0.017888,0.00464
+785,539.871,1.85229,0.187968,0.006144,0.131072,0.006144,0.00512,0.00512,0.0056,0.00464,0.01824,0.005888
+786,646.975,1.54565,0.188,0.005632,0.132928,0.0048,0.006048,0.005248,0.005088,0.00576,0.016768,0.005728
+787,532.64,1.87744,0.280384,0.006304,0.219392,0.006048,0.004192,0.00592,0.005344,0.00512,0.022528,0.005536
+788,455.719,2.19434,0.248544,0.004832,0.196,0.004704,0.004096,0.006144,0.005376,0.004864,0.017952,0.004576
+789,616.403,1.62231,0.191136,0.004768,0.137216,0.005952,0.004288,0.005824,0.004416,0.006144,0.017856,0.004672
+790,716.334,1.396,0.186016,0.005824,0.1312,0.005504,0.004832,0.00528,0.005056,0.005824,0.016704,0.005792
+791,649.026,1.54077,0.184576,0.004736,0.130816,0.005504,0.004832,0.004256,0.006144,0.005728,0.0168,0.00576
+792,463.768,2.15625,0.492608,0.00784,0.434528,0.005856,0.005504,0.005024,0.005792,0.005536,0.017344,0.005184
+793,640.1,1.56226,0.185184,0.00496,0.131072,0.005536,0.004704,0.005376,0.00592,0.005088,0.01776,0.004768
+794,607.805,1.64526,0.40608,0.004864,0.351232,0.005088,0.005216,0.005024,0.006144,0.005984,0.016544,0.005984
+795,529.541,1.88843,0.4232,0.005856,0.36688,0.006144,0.00544,0.0048,0.006016,0.005504,0.017152,0.005408
+796,377.338,2.65015,0.210752,0.004896,0.157568,0.004224,0.005472,0.004768,0.005856,0.005472,0.017312,0.005184
+797,685.179,1.45947,0.188768,0.005536,0.13392,0.005536,0.0048,0.005888,0.004416,0.006144,0.017664,0.004864
+798,654.941,1.52686,0.189248,0.004928,0.136416,0.004896,0.00544,0.0048,0.005824,0.005536,0.016768,0.00464
+799,658.733,1.51807,0.224032,0.004896,0.169984,0.005728,0.004512,0.0056,0.00464,0.006144,0.01744,0.005088
+800,654.731,1.52734,0.210336,0.00576,0.156032,0.004224,0.0056,0.00464,0.006016,0.0056,0.016928,0.005536
+801,650.779,1.53662,0.191936,0.006016,0.136896,0.004544,0.005792,0.004448,0.006144,0.005536,0.016992,0.005568
+802,677.585,1.47583,0.184832,0.005728,0.129952,0.006144,0.004096,0.006176,0.005344,0.004864,0.01792,0.004608
+803,736.823,1.35718,0.188416,0.0056,0.133664,0.005792,0.004448,0.005664,0.004576,0.006144,0.017504,0.005024
+804,530.433,1.88525,0.243264,0.006144,0.188448,0.005184,0.0048,0.004384,0.00608,0.005632,0.016896,0.005696
+805,351.558,2.84448,0.743424,0.005984,0.659616,0.005664,0.014816,0.006144,0.006144,0.02048,0.018432,0.006144
+806,630.154,1.58691,0.191424,0.005056,0.137216,0.005856,0.004384,0.005696,0.004544,0.006144,0.017504,0.005024
+807,638.503,1.56616,0.20656,0.005696,0.151808,0.005504,0.004864,0.005248,0.005056,0.005856,0.016672,0.005856
+808,541.369,1.84717,0.253952,0.005792,0.198656,0.004448,0.005344,0.004896,0.005984,0.00576,0.016928,0.006144
+809,701.61,1.42529,0.188416,0.006144,0.13312,0.005664,0.004576,0.005536,0.004704,0.006144,0.01744,0.005088
+810,644.228,1.55225,0.187744,0.00592,0.132736,0.004736,0.005664,0.004576,0.00608,0.005536,0.017056,0.00544
+811,662.998,1.5083,0.219072,0.006176,0.163808,0.005664,0.004576,0.005472,0.004768,0.00608,0.016448,0.00608
+812,586.399,1.70532,0.22816,0.005024,0.17408,0.005536,0.004704,0.005408,0.004832,0.00608,0.016448,0.006048
+813,620.418,1.61182,0.192512,0.006144,0.137216,0.006144,0.004096,0.006016,0.005344,0.005024,0.017792,0.004736
+814,447.601,2.23413,0.258176,0.005568,0.203072,0.00464,0.005696,0.004544,0.006144,0.005952,0.016576,0.005984
+815,680.286,1.46997,0.19344,0.004992,0.139264,0.006144,0.004096,0.006144,0.00544,0.0048,0.018112,0.004448
+816,549.209,1.8208,0.239616,0.006144,0.18432,0.005856,0.004384,0.005728,0.004512,0.006144,0.017536,0.004992
+817,639.7,1.56323,0.19792,0.006112,0.142656,0.004832,0.005504,0.004736,0.005856,0.005696,0.01712,0.005408
+818,730.646,1.36865,0.186112,0.006112,0.131008,0.005504,0.004832,0.00528,0.00496,0.00592,0.016608,0.005888
+819,701.49,1.42554,0.186592,0.00608,0.131552,0.005504,0.0048,0.005248,0.004992,0.005856,0.016672,0.005888
+820,569.839,1.75488,0.2056,0.004896,0.15264,0.004928,0.004224,0.005888,0.005376,0.00512,0.017696,0.004832
+821,557.355,1.79419,0.634944,0.005056,0.579584,0.005504,0.004736,0.005568,0.006432,0.005504,0.017312,0.005248
+822,582.149,1.71777,0.411648,0.005536,0.3552,0.005728,0.00448,0.005664,0.006336,0.006176,0.01664,0.005888
+823,384.276,2.60229,0.411744,0.005536,0.357056,0.006048,0.004192,0.005888,0.005568,0.004928,0.01792,0.004608
+824,409.313,2.44312,0.204416,0.006112,0.149536,0.005184,0.004832,0.00432,0.006144,0.00576,0.016768,0.00576
+825,509.643,1.96216,0.208896,0.006176,0.1536,0.006112,0.004096,0.005984,0.005344,0.005056,0.01776,0.004768
+826,642.812,1.55566,0.192512,0.005696,0.137664,0.006112,0.004128,0.005984,0.005376,0.005024,0.017792,0.004736
+827,533.472,1.87451,0.22128,0.00496,0.1672,0.004832,0.005504,0.004736,0.005888,0.005536,0.017248,0.005376
+828,525.667,1.90234,0.417344,0.004672,0.362496,0.005856,0.005504,0.005024,0.005792,0.005504,0.017312,0.005184
+829,655.57,1.52539,0.193824,0.006144,0.137216,0.006144,0.0056,0.00464,0.006016,0.005504,0.017152,0.005408
+830,730.255,1.36938,0.186368,0.006112,0.131104,0.006144,0.004096,0.006144,0.005408,0.004832,0.018016,0.004512
+831,547.228,1.82739,0.232,0.005088,0.177792,0.005536,0.004832,0.00432,0.006144,0.005664,0.016864,0.00576
+832,354.295,2.82251,0.221952,0.004864,0.167968,0.005792,0.004416,0.005696,0.004544,0.006144,0.017504,0.005024
+833,579.186,1.72656,0.204672,0.005664,0.150048,0.005504,0.005056,0.00528,0.004992,0.005856,0.016672,0.0056
+834,594.398,1.68237,0.220704,0.005824,0.166016,0.005536,0.0048,0.00528,0.005056,0.005824,0.016704,0.005664
+835,394.149,2.53711,0.319456,0.005728,0.263136,0.006144,0.005184,0.005056,0.005568,0.005984,0.01712,0.005536
+836,552.767,1.80908,0.203104,0.005632,0.149696,0.004768,0.004096,0.006144,0.00544,0.0048,0.017696,0.004832
+837,455.922,2.19336,0.202752,0.005984,0.147552,0.005504,0.0048,0.00528,0.00496,0.005984,0.016544,0.006144
+838,578.776,1.72778,0.267616,0.006112,0.212416,0.004736,0.0056,0.004608,0.006048,0.0056,0.017024,0.005472
+839,542.301,1.84399,0.409984,0.00576,0.355072,0.005568,0.004672,0.00544,0.004832,0.006112,0.016384,0.006144
+840,676.689,1.47778,0.186368,0.005888,0.132416,0.004896,0.004256,0.005856,0.005408,0.00512,0.01776,0.004768
+841,629.766,1.58789,0.196384,0.005728,0.139712,0.006112,0.005152,0.005088,0.005536,0.004896,0.018144,0.006016
+842,541.155,1.8479,0.215456,0.005664,0.160608,0.005824,0.004416,0.005696,0.004544,0.006144,0.017536,0.005024
+843,501.285,1.99487,0.415744,0.006016,0.360576,0.006144,0.004096,0.006144,0.005504,0.004736,0.018112,0.004416
+844,704.506,1.41943,0.190464,0.005792,0.13552,0.00544,0.0048,0.00528,0.00496,0.006144,0.01776,0.004768
+845,729.735,1.37036,0.186176,0.006144,0.131072,0.005536,0.004704,0.005376,0.004864,0.005984,0.016544,0.005952
+846,516.389,1.93652,0.235136,0.005664,0.179968,0.004896,0.00544,0.0048,0.005632,0.004608,0.018208,0.00592
+847,508,1.96851,0.20096,0.0056,0.14624,0.00592,0.004288,0.005824,0.004416,0.006144,0.017664,0.004864
+848,661.606,1.51147,0.19008,0.005664,0.135648,0.005344,0.004832,0.00528,0.005024,0.005856,0.016672,0.00576
+849,719.733,1.3894,0.186112,0.005632,0.131552,0.005504,0.0048,0.004288,0.006144,0.005696,0.016832,0.005664
+850,542.086,1.84473,0.45056,0.007168,0.394208,0.005504,0.004768,0.005344,0.006464,0.004576,0.01824,0.004288
+851,431.43,2.31787,0.638976,0.005056,0.58368,0.006144,0.004096,0.006144,0.005888,0.005472,0.017312,0.005184
+852,580.334,1.72314,0.41104,0.005792,0.354656,0.005984,0.005504,0.004896,0.005952,0.005696,0.017024,0.005536
+853,596.389,1.67676,0.410176,0.004832,0.356096,0.005504,0.004832,0.00528,0.00512,0.005952,0.016576,0.005984
+854,382.304,2.61572,0.196608,0.005952,0.141504,0.006144,0.004096,0.006144,0.005472,0.004768,0.018048,0.00448
+855,684.492,1.46094,0.188416,0.00576,0.134592,0.005056,0.005248,0.004992,0.005664,0.004576,0.018048,0.00448
+856,644.532,1.55151,0.19456,0.005856,0.140832,0.004864,0.004096,0.006048,0.005344,0.005024,0.017824,0.004672
+857,654.313,1.52832,0.199392,0.004832,0.145408,0.005792,0.004448,0.0056,0.00464,0.006144,0.017408,0.00512
+858,596.476,1.67651,0.215648,0.004704,0.161792,0.00576,0.00448,0.005632,0.004608,0.006144,0.01744,0.005088
+859,508.189,1.96777,0.413696,0.005568,0.358976,0.006144,0.004096,0.00608,0.005536,0.004768,0.01808,0.004448
+860,650.469,1.53735,0.188352,0.006048,0.133216,0.00544,0.0048,0.00544,0.0048,0.00608,0.016448,0.00608
+861,618.731,1.61621,0.416256,0.004768,0.362304,0.005504,0.004832,0.00528,0.005056,0.005984,0.016544,0.005984
+862,521.451,1.91772,0.24576,0.006144,0.19008,0.005504,0.004832,0.005504,0.005024,0.006144,0.017664,0.004864
+863,378.313,2.64331,0.411616,0.006144,0.356,0.005504,0.004832,0.004352,0.006144,0.005824,0.016704,0.006112
+864,664.611,1.50464,0.18736,0.005056,0.134336,0.004864,0.00416,0.005952,0.005728,0.004704,0.018144,0.004416
+865,542.948,1.8418,0.204896,0.005568,0.150176,0.006144,0.005152,0.005088,0.005536,0.004704,0.018112,0.004416
+866,480.864,2.07959,0.1968,0.004832,0.142784,0.004576,0.005856,0.004384,0.006144,0.00576,0.016768,0.005696
+867,688.172,1.45312,0.18848,0.006144,0.13312,0.006144,0.004096,0.006144,0.00544,0.0048,0.018208,0.004384
+868,636.915,1.57007,0.41296,0.00544,0.357056,0.006048,0.005504,0.004832,0.006016,0.005536,0.01712,0.005408
+869,537.251,1.86133,0.196608,0.006144,0.14112,0.005536,0.004896,0.005344,0.004896,0.006144,0.017824,0.004704
+870,614.461,1.62744,0.197216,0.004672,0.14336,0.0056,0.00464,0.005472,0.004768,0.006144,0.016384,0.006176
+871,618.638,1.61646,0.196128,0.006144,0.141056,0.005536,0.0048,0.004256,0.006144,0.005696,0.016832,0.005664
+872,495.164,2.01953,0.37408,0.006144,0.319136,0.004448,0.005312,0.00496,0.00592,0.005568,0.017152,0.00544
+873,557.355,1.79419,0.21104,0.0056,0.156288,0.00592,0.00432,0.005952,0.005344,0.005088,0.017504,0.005024
+874,502.762,1.98901,0.247744,0.0048,0.193888,0.004576,0.00576,0.00448,0.006144,0.005536,0.016992,0.005568
+875,619.292,1.61475,0.204288,0.006144,0.147456,0.006144,0.004096,0.006144,0.005568,0.004672,0.018144,0.00592
+876,674.905,1.48169,0.187296,0.005024,0.13312,0.005792,0.004448,0.005408,0.004832,0.006144,0.016384,0.006144
+877,697.31,1.43408,0.204128,0.006144,0.149248,0.005536,0.0048,0.004256,0.006144,0.005696,0.016832,0.005472
+878,487.387,2.05176,0.237472,0.006176,0.182112,0.005536,0.0048,0.005312,0.00496,0.00592,0.016608,0.006048
+879,689.562,1.4502,0.184384,0.0056,0.129632,0.006144,0.004096,0.006048,0.005376,0.00496,0.01792,0.004608
+880,637.907,1.56763,0.192416,0.006144,0.137216,0.005536,0.004704,0.00544,0.0048,0.006048,0.01648,0.006048
+881,337.814,2.96021,0.21936,0.005632,0.164704,0.005504,0.004832,0.005248,0.005024,0.005824,0.016704,0.005888
+882,581.158,1.7207,0.190464,0.006016,0.135296,0.005568,0.004672,0.00544,0.0048,0.00608,0.016448,0.006144
+883,683.692,1.46265,0.190048,0.006144,0.134944,0.005504,0.004832,0.005248,0.00512,0.005696,0.016832,0.005728
+884,628.799,1.59033,0.190464,0.005952,0.136992,0.004512,0.005184,0.005056,0.005408,0.004832,0.018048,0.00448
+885,625.344,1.59912,0.247392,0.006144,0.165888,0.005664,0.004576,0.01984,0.005792,0.005088,0.017792,0.016608
+886,529.336,1.88916,0.24992,0.005568,0.195488,0.005536,0.004704,0.005408,0.004832,0.00592,0.016608,0.005856
+887,635.531,1.57349,0.192512,0.005888,0.137472,0.006144,0.004096,0.00608,0.005376,0.004928,0.017952,0.004576
+888,736.426,1.35791,0.185088,0.004864,0.131072,0.005632,0.004608,0.006112,0.005472,0.0048,0.018016,0.004512
+889,552.17,1.81104,0.19904,0.0056,0.144288,0.005952,0.004288,0.005792,0.004448,0.006144,0.017568,0.00496
+890,401.726,2.48926,0.212064,0.006144,0.155648,0.006144,0.004096,0.005984,0.005376,0.006176,0.01728,0.005216
+891,662.354,1.50977,0.190304,0.006144,0.134944,0.005504,0.0048,0.004384,0.006016,0.005728,0.0168,0.005984
+892,701.49,1.42554,0.196064,0.006144,0.141312,0.004288,0.0056,0.004448,0.006144,0.0056,0.016928,0.0056
+893,659.688,1.51587,0.202944,0.005632,0.148128,0.006144,0.004096,0.006048,0.004192,0.006144,0.017696,0.004864
+894,684.606,1.46069,0.218816,0.006144,0.16368,0.005504,0.0048,0.005312,0.005024,0.005856,0.016672,0.005824
+895,652.333,1.53296,0.194176,0.005856,0.138656,0.005024,0.005312,0.004896,0.006144,0.005728,0.0168,0.00576
+896,670.706,1.49097,0.188224,0.006016,0.133248,0.00544,0.0048,0.005312,0.004928,0.005952,0.016576,0.005952
+897,672.468,1.48706,0.186112,0.006144,0.130688,0.005536,0.0048,0.004416,0.006112,0.0056,0.016928,0.005888
+898,564.421,1.77173,0.200704,0.006144,0.145408,0.00576,0.00448,0.005632,0.004608,0.006144,0.017536,0.004992
+899,520.259,1.92212,0.410272,0.004768,0.356352,0.006144,0.004096,0.006144,0.005536,0.004704,0.018144,0.004384
+900,568.731,1.7583,0.23456,0.018176,0.167488,0.0048,0.005408,0.004832,0.005824,0.005504,0.017344,0.005184
+901,602.53,1.65967,0.212992,0.006144,0.157696,0.005664,0.004576,0.005536,0.004704,0.006144,0.016384,0.006144
+902,520.788,1.92017,0.219136,0.006144,0.163872,0.006048,0.00416,0.00592,0.005376,0.005088,0.017696,0.004832
+903,676.019,1.47925,0.186368,0.005728,0.13152,0.006048,0.00416,0.00592,0.00432,0.006144,0.017696,0.004832
+904,655.465,1.52563,0.19456,0.005792,0.139616,0.005856,0.004384,0.005696,0.004544,0.006144,0.017536,0.004992
+905,672.688,1.48657,0.194272,0.006048,0.139168,0.005504,0.004832,0.005248,0.005088,0.005824,0.016704,0.005856
+906,585.226,1.70874,0.279872,0.005696,0.213152,0.005536,0.0048,0.004288,0.006144,0.005728,0.028896,0.005632
+907,519.863,1.92358,0.204704,0.005696,0.150016,0.005536,0.0048,0.004256,0.006144,0.005728,0.0168,0.005728
+908,625.439,1.59888,0.19456,0.006144,0.139264,0.005952,0.004288,0.005792,0.004448,0.006144,0.0176,0.004928
+909,474.513,2.10742,0.186272,0.006144,0.130944,0.005536,0.004768,0.00528,0.005024,0.00608,0.016448,0.006048
+910,590.798,1.69263,0.203072,0.005632,0.14832,0.005632,0.004576,0.005568,0.004672,0.006144,0.016384,0.006144
+911,530.433,1.88525,0.411904,0.005472,0.357248,0.00592,0.00432,0.005792,0.005504,0.005088,0.017824,0.004736
+912,711.111,1.40625,0.186816,0.004992,0.1328,0.004416,0.005248,0.004992,0.005664,0.004576,0.01824,0.005888
+913,611.252,1.63599,0.405504,0.00608,0.350272,0.006144,0.005184,0.005056,0.005728,0.004512,0.018304,0.004224
+914,516.129,1.9375,0.480512,0.006144,0.423936,0.005952,0.004288,0.005792,0.006368,0.005504,0.017152,0.005376
+915,514.767,1.94263,0.411168,0.005952,0.355872,0.004768,0.005568,0.004672,0.006144,0.005472,0.017056,0.005664
+916,731.559,1.36694,0.181216,0.005088,0.128128,0.004896,0.004192,0.00592,0.005344,0.00512,0.017728,0.0048
+917,586.819,1.7041,0.41296,0.00576,0.358016,0.004864,0.005472,0.004768,0.006048,0.005504,0.01712,0.005408
+918,390.467,2.56104,0.674976,0.006144,0.589376,0.004544,0.00576,0.018624,0.006336,0.005952,0.03296,0.00528
+919,536.336,1.8645,0.413248,0.005824,0.358272,0.004544,0.00576,0.00448,0.006144,0.005696,0.016832,0.005696
+920,582.729,1.71606,0.411744,0.005632,0.35696,0.005632,0.004608,0.006144,0.005568,0.004672,0.018144,0.004384
+921,597.869,1.67261,0.188416,0.005856,0.133408,0.006144,0.004096,0.006144,0.005344,0.004896,0.017888,0.00464
+922,563.179,1.77563,0.21648,0.005664,0.161696,0.004992,0.005344,0.004864,0.005792,0.005504,0.017376,0.005248
+923,675.462,1.48047,0.184992,0.00608,0.12976,0.006144,0.004096,0.005984,0.005376,0.005024,0.017984,0.004544
+924,695.77,1.43726,0.186208,0.004544,0.132896,0.005248,0.004832,0.004256,0.006144,0.00576,0.016768,0.00576
+925,726.241,1.37695,0.190656,0.005504,0.135968,0.005824,0.004416,0.005696,0.004544,0.006144,0.017504,0.005056
+926,525.33,1.90356,0.462208,0.005504,0.406176,0.005984,0.004256,0.005856,0.006368,0.005504,0.017088,0.005472
+927,439.344,2.27612,0.679296,0.005984,0.6248,0.005472,0.004768,0.005472,0.004768,0.00592,0.016608,0.005504
+928,554.563,1.80322,0.411424,0.004448,0.356352,0.00592,0.005504,0.00496,0.005856,0.005504,0.017312,0.005568
+929,638.802,1.56543,0.194528,0.005984,0.139424,0.005696,0.004544,0.005504,0.004736,0.006112,0.016416,0.006112
+930,493.494,2.02637,0.262016,0.005824,0.207168,0.005504,0.004736,0.005344,0.004896,0.006016,0.016512,0.006016
+931,562.869,1.77661,0.40928,0.005472,0.354336,0.004992,0.005312,0.004928,0.005856,0.005504,0.017312,0.005568
+932,531.534,1.88135,0.409792,0.005088,0.354304,0.006144,0.005568,0.004672,0.006112,0.005408,0.017152,0.005344
+933,596.389,1.67676,0.190976,0.004768,0.137216,0.005504,0.004736,0.005344,0.004896,0.005984,0.016544,0.005984
+934,587.24,1.70288,0.196928,0.005632,0.142112,0.006016,0.004224,0.005888,0.004352,0.006144,0.017696,0.004864
+935,680.512,1.46948,0.190944,0.005088,0.13696,0.005504,0.0048,0.004352,0.00608,0.005664,0.016864,0.005632
+936,515.544,1.9397,0.200384,0.006176,0.145088,0.004384,0.0056,0.00464,0.005984,0.005856,0.016832,0.005824
+937,557.127,1.79492,0.188448,0.006144,0.13312,0.00576,0.00448,0.0056,0.00464,0.006144,0.016384,0.006176
+938,549.356,1.82031,0.235392,0.0048,0.181536,0.004832,0.005472,0.004768,0.005888,0.005632,0.017152,0.005312
+939,613.082,1.6311,0.193856,0.006144,0.138784,0.004576,0.005728,0.004512,0.006112,0.005504,0.017056,0.00544
+940,747.855,1.33716,0.185856,0.005792,0.131424,0.004096,0.005824,0.004416,0.006144,0.0056,0.016928,0.005632
+941,684.95,1.45996,0.188288,0.006144,0.13312,0.005888,0.004352,0.005728,0.004512,0.006144,0.016384,0.006016
+942,461.209,2.16821,0.21056,0.005824,0.155744,0.005504,0.004832,0.00528,0.005088,0.005792,0.016736,0.00576
+943,577.96,1.73022,0.409824,0.00544,0.355232,0.00576,0.00448,0.005632,0.004608,0.006144,0.017664,0.004864
+944,677.585,1.47583,0.186784,0.0056,0.133824,0.00416,0.005536,0.004704,0.005952,0.005312,0.017312,0.004384
+945,386.197,2.58936,0.339744,0.005696,0.284576,0.00464,0.00576,0.00448,0.006144,0.005792,0.016736,0.00592
+946,431.113,2.31958,0.211616,0.004928,0.157664,0.005536,0.004736,0.005376,0.004864,0.006016,0.016512,0.005984
+947,576.901,1.7334,0.209024,0.005696,0.154176,0.005888,0.004352,0.005728,0.004512,0.006144,0.017536,0.004992
+948,581.818,1.71875,0.202752,0.006144,0.14864,0.004896,0.00416,0.00592,0.005376,0.005088,0.017728,0.0048
+949,494.985,2.02026,0.208928,0.005792,0.154144,0.005504,0.0048,0.005312,0.004928,0.00592,0.01664,0.005888
+950,532.086,1.87939,0.420768,0.004992,0.366592,0.005536,0.004704,0.005408,0.006336,0.00464,0.017952,0.004608
+951,522.983,1.91211,0.2112,0.005024,0.157088,0.004704,0.005632,0.004608,0.006048,0.005536,0.017088,0.005472
+952,616.218,1.6228,0.215296,0.005024,0.161792,0.00416,0.0056,0.004576,0.006112,0.005504,0.017056,0.005472
+953,373.62,2.67651,0.214496,0.006144,0.159264,0.004576,0.00576,0.00448,0.006112,0.005472,0.017088,0.0056
+954,553.214,1.80762,0.217088,0.006144,0.161792,0.005696,0.004544,0.005568,0.004672,0.006144,0.016384,0.006144
+955,624.676,1.60083,0.200992,0.0056,0.146272,0.006112,0.004096,0.006016,0.005344,0.005024,0.017824,0.004704
+956,553.439,1.80688,0.220928,0.005824,0.166208,0.005248,0.004832,0.00528,0.00512,0.005792,0.016736,0.005888
+957,419.586,2.3833,0.203584,0.004928,0.149504,0.0056,0.00464,0.005472,0.004768,0.006144,0.01744,0.005088
+958,660.326,1.5144,0.200704,0.005856,0.145696,0.006144,0.004096,0.006144,0.00544,0.0048,0.01808,0.004448
+959,703.538,1.42139,0.200096,0.008128,0.141376,0.006144,0.004096,0.006144,0.005472,0.006144,0.017056,0.005536
+960,506.743,1.97339,0.221184,0.006144,0.165888,0.005856,0.004384,0.005728,0.004512,0.006144,0.0176,0.004928
+961,494.447,2.02246,0.41984,0.00576,0.364928,0.005824,0.004416,0.005664,0.004576,0.006144,0.017664,0.004864
+962,683.35,1.46338,0.189184,0.004832,0.13632,0.004928,0.005184,0.005056,0.0056,0.00464,0.01824,0.004384
+963,758.378,1.3186,0.18656,0.005664,0.131744,0.006016,0.004224,0.005856,0.004384,0.006144,0.017664,0.004864
+964,655.465,1.52563,0.201536,0.004928,0.147488,0.005792,0.004416,0.005696,0.004544,0.006144,0.017536,0.004992
+965,687.594,1.45435,0.186112,0.006048,0.131008,0.005504,0.004832,0.00528,0.005024,0.005856,0.016672,0.005888
+966,668.516,1.49585,0.189952,0.006144,0.134304,0.00496,0.005408,0.005856,0.00512,0.005792,0.016736,0.005632
+967,769.491,1.29956,0.184608,0.005664,0.129792,0.00576,0.00448,0.005568,0.004672,0.006144,0.017408,0.00512
+968,548.767,1.82227,0.4096,0.0056,0.354368,0.004576,0.006144,0.0056,0.00464,0.006176,0.0176,0.004896
+969,602.176,1.66064,0.196192,0.0056,0.141856,0.00576,0.00448,0.0056,0.00464,0.006144,0.016384,0.005728
+970,732.344,1.36548,0.18432,0.005824,0.129344,0.006144,0.004096,0.006144,0.005472,0.004768,0.018112,0.004416
+971,468.061,2.13647,0.496864,0.006144,0.416832,0.017344,0.005792,0.004448,0.006144,0.005728,0.0288,0.005632
+972,687.364,1.45483,0.18944,0.00512,0.135168,0.005696,0.004544,0.005536,0.004704,0.006144,0.016384,0.006144
+973,634.252,1.57666,0.220544,0.005696,0.166144,0.005504,0.004832,0.005248,0.005088,0.00576,0.016768,0.005504
+974,706.694,1.41504,0.189056,0.0048,0.135104,0.006016,0.004224,0.005856,0.004384,0.006144,0.017696,0.004832
+975,759.503,1.31665,0.186368,0.008128,0.130112,0.00512,0.005248,0.004992,0.005632,0.004608,0.017792,0.004736
+976,653.27,1.53076,0.4096,0.006144,0.354176,0.005504,0.004864,0.00592,0.005536,0.004928,0.01792,0.004608
+977,564.888,1.77026,0.425952,0.006144,0.370688,0.006016,0.004224,0.005824,0.005536,0.005024,0.016384,0.006112
+978,550.908,1.81519,0.413696,0.005504,0.358368,0.004768,0.005568,0.004672,0.006144,0.006144,0.017536,0.004992
+979,672.137,1.48779,0.19024,0.006176,0.133088,0.006144,0.0056,0.00464,0.006144,0.005536,0.016992,0.00592
+980,765.464,1.3064,0.186368,0.006048,0.131008,0.004256,0.006144,0.005504,0.004736,0.006144,0.016384,0.006144
+981,477.278,2.09521,0.333984,0.00544,0.270304,0.004992,0.005376,0.014816,0.005792,0.004736,0.018176,0.004352
+982,522.649,1.91333,0.196928,0.005568,0.142208,0.006144,0.004096,0.006144,0.00544,0.0048,0.018048,0.00448
+983,734.445,1.36157,0.188608,0.005664,0.133568,0.005504,0.004832,0.00432,0.006144,0.005952,0.016576,0.006048
+984,756.417,1.32202,0.182784,0.005024,0.129024,0.005184,0.004832,0.00432,0.006144,0.005696,0.016832,0.005728
+985,714.834,1.39893,0.181408,0.006144,0.124928,0.006144,0.004096,0.005984,0.005344,0.005056,0.017792,0.00592
+986,550.242,1.81738,0.464672,0.006048,0.407648,0.00576,0.00448,0.005632,0.006368,0.006208,0.016608,0.00592
+987,567.313,1.7627,0.409216,0.006016,0.353824,0.004704,0.0056,0.00464,0.006144,0.00576,0.016768,0.00576
+988,647.077,1.54541,0.18448,0.004608,0.131072,0.005248,0.004832,0.005312,0.005088,0.00576,0.016768,0.005792
+989,746.628,1.33936,0.185312,0.004992,0.132224,0.005024,0.005312,0.004896,0.00576,0.005536,0.017376,0.004192
+990,556.522,1.79688,0.405504,0.006048,0.349824,0.004576,0.005792,0.004448,0.0072,0.005088,0.017728,0.0048
+991,333.116,3.00195,0.323232,0.005696,0.248352,0.005632,0.004608,0.014336,0.006144,0.006144,0.026624,0.005696
+992,657.675,1.52051,0.197856,0.005888,0.142592,0.004896,0.00432,0.005856,0.004384,0.006144,0.018432,0.005344
+993,680.964,1.46851,0.19056,0.0048,0.135136,0.006144,0.004096,0.006112,0.005312,0.00496,0.018432,0.005568
+994,653.061,1.53125,0.249664,0.006144,0.192512,0.005888,0.004352,0.00576,0.00448,0.006144,0.018432,0.005952
+995,537.039,1.86206,0.411424,0.004608,0.356384,0.00608,0.004128,0.00592,0.00544,0.005024,0.018432,0.005408
+996,596.737,1.67578,0.40752,0.004384,0.352256,0.005632,0.004608,0.006144,0.005568,0.004672,0.018432,0.005824
+997,623.061,1.60498,0.184704,0.005632,0.129344,0.004672,0.005664,0.004576,0.00608,0.005504,0.018272,0.00496
+998,604.576,1.65405,0.270112,0.006144,0.198688,0.00608,0.004128,0.005984,0.01792,0.006016,0.019232,0.00592
+999,479.064,2.0874,0.35376,0.006144,0.269952,0.005536,0.021472,0.005792,0.004448,0.006144,0.028672,0.0056
+1000,650.779,1.53662,0.185376,0.006144,0.13088,0.004288,0.005376,0.004864,0.005792,0.005504,0.017312,0.005216
+1001,687.941,1.45361,0.18432,0.004832,0.130592,0.004576,0.005664,0.004576,0.006048,0.005472,0.017152,0.005408
+1002,551.65,1.81274,0.456512,0.005504,0.400064,0.005696,0.004544,0.0056,0.006464,0.005632,0.01712,0.005888
+1003,520.524,1.92114,0.407552,0.005952,0.352448,0.005536,0.004704,0.005472,0.004768,0.006144,0.01792,0.004608
+1004,578.613,1.72827,0.409376,0.005824,0.352576,0.006112,0.005536,0.004736,0.00608,0.005504,0.017088,0.00592
+1005,557.506,1.7937,0.406016,0.004832,0.351552,0.0048,0.005536,0.004704,0.006112,0.005472,0.017088,0.00592
+1006,581.818,1.71875,0.223232,0.005984,0.157152,0.004832,0.016352,0.005696,0.00464,0.006048,0.018016,0.004512
+1007,550.316,1.81714,0.638592,0.0056,0.5824,0.006144,0.004096,0.006144,0.005728,0.004608,0.018336,0.005536
+1008,462.877,2.1604,0.210752,0.006144,0.15504,0.004704,0.004096,0.006144,0.00592,0.005504,0.01728,0.00592
+1009,630.542,1.58594,0.186464,0.00576,0.131232,0.005504,0.004832,0.004352,0.006112,0.005632,0.01808,0.00496
+1010,603.329,1.65747,0.222112,0.005024,0.166912,0.00512,0.005248,0.004992,0.006144,0.005504,0.01808,0.005088
+1011,554.713,1.80273,0.408352,0.004896,0.352256,0.006144,0.004096,0.006112,0.006176,0.005632,0.01808,0.00496
+1012,696.243,1.43628,0.176032,0.005792,0.121216,0.00512,0.004832,0.004352,0.006144,0.005696,0.016832,0.006048
+1013,601.38,1.66284,0.407072,0.005824,0.351712,0.00496,0.005408,0.004832,0.005984,0.005504,0.017184,0.005664
+1014,560.789,1.7832,0.446176,0.005696,0.389568,0.005824,0.004416,0.005728,0.006368,0.005536,0.017184,0.005856
+1015,538.876,1.85571,0.407264,0.005504,0.351168,0.006144,0.005152,0.005088,0.005824,0.005504,0.017344,0.005536
+1016,406.753,2.4585,0.518144,0.00592,0.435584,0.016416,0.004928,0.006144,0.005664,0.00464,0.018368,0.02048
+1017,477.891,2.09253,0.195296,0.004832,0.141312,0.005632,0.004608,0.005664,0.004576,0.006144,0.017792,0.004736
+1018,629.476,1.58862,0.19328,0.004864,0.139264,0.006016,0.004224,0.005856,0.004384,0.006144,0.017984,0.004544
+1019,675.796,1.47974,0.188416,0.00592,0.133344,0.005792,0.004448,0.005664,0.004576,0.006144,0.017824,0.004704
+1020,696.48,1.43579,0.186368,0.006048,0.132448,0.004864,0.004096,0.00608,0.005376,0.004928,0.01824,0.004288
+1021,738.284,1.35449,0.189824,0.006048,0.1344,0.004992,0.005344,0.004864,0.005792,0.005536,0.017344,0.005504
+1022,535.215,1.86841,0.46336,0.004768,0.407552,0.006144,0.004096,0.006048,0.00624,0.005632,0.016896,0.005984
+1023,657.253,1.52148,0.192512,0.006144,0.137216,0.0056,0.00464,0.005472,0.004768,0.00608,0.017664,0.004928
+1024,710.864,1.40674,0.190336,0.006144,0.135168,0.00528,0.0048,0.004352,0.006048,0.005728,0.0168,0.006016
+1025,706.694,1.41504,0.192512,0.006144,0.137216,0.005728,0.004512,0.0056,0.00464,0.006144,0.017856,0.004672
+1026,540.94,1.84863,0.413248,0.006144,0.355872,0.004576,0.005728,0.004512,0.006144,0.006144,0.018432,0.005696
+1027,489.425,2.04321,0.227328,0.0056,0.172448,0.005536,0.004832,0.00528,0.00496,0.00592,0.017696,0.005056
+1028,641.202,1.55957,0.181248,0.00512,0.128,0.004928,0.004288,0.005824,0.004416,0.006144,0.017984,0.004544
+1029,596.129,1.67749,0.41264,0.005088,0.3584,0.005792,0.004448,0.005664,0.004576,0.006144,0.017664,0.004864
+1030,359.424,2.78223,0.368768,0.016608,0.280416,0.005504,0.004832,0.00528,0.005024,0.014336,0.03072,0.006048
+1031,629.766,1.58789,0.19696,0.005536,0.140224,0.006144,0.005152,0.005088,0.005536,0.004704,0.019584,0.004992
+1032,677.361,1.47632,0.192288,0.005792,0.136032,0.005888,0.004352,0.005696,0.004544,0.006144,0.018432,0.005408
+1033,633.663,1.57812,0.198624,0.006112,0.141376,0.006112,0.004096,0.006144,0.00544,0.0048,0.018432,0.006112
+1034,673.131,1.4856,0.194592,0.00464,0.139264,0.005696,0.004544,0.005664,0.004576,0.006144,0.018432,0.005632
+1035,487.677,2.05054,0.243712,0.006144,0.17616,0.005696,0.004512,0.00576,0.016384,0.005536,0.018752,0.004768
+1036,591.224,1.69141,0.19408,0.006144,0.137216,0.005792,0.004448,0.005696,0.004544,0.006144,0.018432,0.005664
+1037,731.69,1.3667,0.183712,0.006304,0.126912,0.005536,0.004768,0.005344,0.004896,0.005984,0.018592,0.005376
+1038,530.021,1.88672,0.440736,0.006048,0.367264,0.005664,0.004576,0.005504,0.006368,0.020896,0.018432,0.005984
+1039,340.03,2.94092,0.2048,0.006144,0.149312,0.004288,0.00544,0.0048,0.005856,0.005504,0.018816,0.00464
+1040,673.131,1.4856,0.188416,0.005728,0.133536,0.004192,0.0056,0.004544,0.00608,0.005472,0.01872,0.004544
+1041,635.729,1.573,0.188416,0.006144,0.130464,0.004704,0.006048,0.005888,0.006016,0.00592,0.018784,0.004448
+1042,567.864,1.76099,0.199264,0.006752,0.142784,0.004672,0.005632,0.004608,0.006016,0.0056,0.018688,0.004512
+1043,537.11,1.86182,0.411648,0.005888,0.355872,0.004864,0.005216,0.004992,0.005824,0.005504,0.018784,0.004704
+1044,641.303,1.55933,0.226016,0.004896,0.171424,0.004704,0.004096,0.006144,0.005376,0.004864,0.018432,0.00608
+1045,645.243,1.5498,0.191936,0.005568,0.135936,0.005568,0.004672,0.00544,0.0048,0.00608,0.018496,0.005376
+1046,594.312,1.68262,0.228352,0.00512,0.173056,0.00512,0.005216,0.005024,0.005632,0.004608,0.01952,0.005056
+1047,550.168,1.81763,0.413952,0.004864,0.3584,0.005856,0.004384,0.005728,0.005536,0.00512,0.018432,0.005632
+1048,430.162,2.32471,0.198528,0.005824,0.143104,0.004672,0.004096,0.006144,0.005952,0.005504,0.017216,0.006016
+1049,665.583,1.50244,0.196864,0.0056,0.141568,0.00464,0.005536,0.004704,0.00608,0.005536,0.018176,0.005024
+1050,622.209,1.60718,0.245696,0.005792,0.189408,0.006144,0.004096,0.006144,0.005376,0.004864,0.018432,0.00544
+1051,503.751,1.98511,0.639776,0.004896,0.585344,0.005536,0.0048,0.00544,0.005088,0.006112,0.018208,0.004352
+1052,570.474,1.75293,0.411648,0.004544,0.356352,0.005632,0.004608,0.006144,0.005568,0.004672,0.018432,0.005696
+1053,702.452,1.42358,0.1904,0.0072,0.132064,0.00608,0.00416,0.006144,0.005472,0.004768,0.018432,0.00608
+1054,522.649,1.91333,0.239712,0.005024,0.18432,0.005664,0.004576,0.005344,0.004896,0.006144,0.018432,0.005312
+1055,600.147,1.66626,0.191392,0.005024,0.136736,0.004576,0.005792,0.004448,0.006048,0.005536,0.018528,0.004704
+1056,739.884,1.35156,0.206848,0.005376,0.151904,0.004672,0.004064,0.006144,0.005472,0.004768,0.018432,0.006016
+1057,477.612,2.09375,0.232096,0.005024,0.176128,0.006144,0.004096,0.006112,0.005376,0.004896,0.018432,0.005888
+1058,583.227,1.7146,0.251904,0.006144,0.19632,0.005536,0.0048,0.004288,0.006144,0.005696,0.018464,0.004512
+1059,554.713,1.80273,0.415296,0.005984,0.35856,0.005888,0.004352,0.00576,0.005536,0.005088,0.018432,0.005696
+1060,676.131,1.479,0.190048,0.006144,0.134368,0.004896,0.004096,0.006016,0.005376,0.004992,0.018432,0.005728
+1061,678.708,1.47339,0.19456,0.005632,0.13952,0.005536,0.0048,0.00528,0.00512,0.005792,0.018528,0.004352
+1062,617.612,1.61914,0.241568,0.006144,0.18432,0.006144,0.004096,0.006144,0.00544,0.0048,0.018432,0.006048
+1063,628.221,1.5918,0.194688,0.005568,0.139424,0.00464,0.005824,0.004416,0.006144,0.0056,0.01856,0.004512
+1064,610.069,1.63916,0.194432,0.006144,0.139232,0.004128,0.005568,0.004672,0.005952,0.005504,0.017216,0.006016
+1065,661.926,1.51074,0.194976,0.0048,0.140544,0.004704,0.005632,0.004576,0.006048,0.005504,0.01712,0.006048
+1066,336.234,2.97412,0.207264,0.005792,0.13536,0.021056,0.005856,0.004384,0.006144,0.0056,0.016928,0.006144
+1067,372.77,2.68262,0.21504,0.006144,0.15936,0.005536,0.004832,0.004352,0.006144,0.005696,0.017984,0.004992
+1068,690.609,1.448,0.198688,0.005056,0.14336,0.005376,0.004832,0.005952,0.005376,0.005088,0.018432,0.005216
+1069,609.796,1.63989,0.2032,0.004544,0.149504,0.005824,0.004416,0.005696,0.004544,0.006176,0.018144,0.004352
+1070,539.16,1.85474,0.203648,0.004992,0.149216,0.005504,0.0048,0.00432,0.006144,0.005664,0.016864,0.006144
+1071,656.515,1.52319,0.194688,0.0056,0.1392,0.004832,0.005504,0.004736,0.00592,0.006144,0.017792,0.00496
+1072,723.547,1.38208,0.186976,0.004704,0.133152,0.005248,0.0048,0.004256,0.006144,0.00576,0.016768,0.006144
+1073,612.257,1.6333,0.203648,0.004992,0.149504,0.006016,0.004224,0.005888,0.004352,0.006144,0.018176,0.004352
+1074,365.127,2.73877,0.248288,0.00496,0.194016,0.00464,0.005664,0.004576,0.005952,0.005504,0.017216,0.00576
+1075,530.57,1.88477,0.219136,0.006144,0.163104,0.004832,0.005536,0.00592,0.004928,0.005952,0.01776,0.00496
+1076,549.799,1.81885,0.221088,0.006144,0.165888,0.005248,0.0048,0.004288,0.006144,0.005696,0.016832,0.006048
+1077,459.553,2.17603,0.239616,0.005792,0.184672,0.005952,0.004288,0.005824,0.004416,0.006144,0.01808,0.004448
+1078,519.204,1.92603,0.41984,0.006016,0.36432,0.005504,0.004832,0.004352,0.007296,0.004992,0.017952,0.004576
+1079,581.818,1.71875,0.42,0.00592,0.364928,0.0056,0.00464,0.005376,0.004864,0.006144,0.017536,0.004992
+1080,576.009,1.73608,0.198624,0.006144,0.14336,0.004128,0.0056,0.00464,0.005952,0.005504,0.017184,0.006112
+1081,555.014,1.80176,0.239008,0.006144,0.183648,0.004768,0.0056,0.00464,0.005984,0.005504,0.017184,0.005536
+1082,458.576,2.18066,0.441952,0.005856,0.3856,0.005856,0.004384,0.005696,0.006464,0.005472,0.017184,0.00544
+1083,498.115,2.00757,0.23152,0.005568,0.1768,0.00592,0.00432,0.005856,0.005888,0.00464,0.018272,0.004256
+1084,549.062,1.82129,0.235872,0.0048,0.182272,0.005152,0.004832,0.004352,0.006144,0.00576,0.016768,0.005792
+1085,514.896,1.94214,0.247136,0.006048,0.192032,0.004672,0.005696,0.004544,0.00608,0.005536,0.017056,0.005472
+1086,612.166,1.63354,0.202944,0.0056,0.148192,0.006112,0.004128,0.005984,0.005376,0.005024,0.017856,0.004672
+1087,650.262,1.53784,0.19456,0.006144,0.139264,0.006112,0.004128,0.005984,0.005344,0.005056,0.017792,0.004736
+1088,605.648,1.65112,0.218848,0.004832,0.165568,0.004288,0.005408,0.004832,0.00576,0.004736,0.018176,0.005248
+1089,492.663,2.02979,0.203488,0.004832,0.149536,0.005728,0.00448,0.00544,0.0048,0.006048,0.01648,0.006144
+1090,684.606,1.46069,0.194144,0.006176,0.138816,0.004512,0.005792,0.005472,0.00512,0.005728,0.0168,0.005728
+1091,557.127,1.79492,0.247808,0.006176,0.19248,0.005696,0.004544,0.0056,0.00464,0.006144,0.017408,0.00512
+1092,542.66,1.84277,0.223232,0.006144,0.167936,0.00416,0.005632,0.004544,0.00608,0.005536,0.017056,0.006144
+1093,527.224,1.89673,0.19296,0.0056,0.138208,0.005568,0.004672,0.005408,0.004832,0.00608,0.016448,0.006144
+1094,664.611,1.50464,0.187232,0.00496,0.13312,0.005536,0.004704,0.00544,0.0048,0.006112,0.016416,0.006144
+1095,715.209,1.39819,0.198848,0.006144,0.144416,0.005088,0.00528,0.00496,0.005664,0.00464,0.018272,0.004384
+1096,632.001,1.58228,0.19456,0.005952,0.141056,0.004544,0.005152,0.005088,0.005536,0.004704,0.018112,0.004416
+1097,628.317,1.59155,0.218752,0.006112,0.163584,0.005504,0.004832,0.004288,0.006144,0.00576,0.016768,0.00576
+1098,602.796,1.65894,0.19888,0.005728,0.143584,0.004832,0.005472,0.004768,0.005856,0.006144,0.016672,0.005824
+1099,593.881,1.68384,0.19152,0.00512,0.138336,0.005056,0.004064,0.006144,0.005504,0.004736,0.018144,0.004416
+1100,580.499,1.72266,0.210976,0.006144,0.137216,0.006144,0.005152,0.005088,0.005696,0.00464,0.03472,0.006176
+1101,387.805,2.57861,0.197408,0.004896,0.143392,0.006016,0.004192,0.005888,0.005408,0.005088,0.01776,0.004768
+1102,629.669,1.58813,0.188384,0.006144,0.13312,0.005984,0.004256,0.005824,0.004416,0.006144,0.016384,0.006112
+1103,706.207,1.41602,0.18432,0.006112,0.129056,0.006016,0.004224,0.00592,0.005376,0.005088,0.017568,0.00496
+1104,610.979,1.63672,0.42176,0.006048,0.366144,0.00464,0.006144,0.005504,0.004736,0.006176,0.016352,0.006016
+1105,473.471,2.11206,0.19456,0.006144,0.139296,0.006112,0.004096,0.006144,0.005376,0.004864,0.017824,0.004704
+1106,711.729,1.40503,0.18432,0.00608,0.13024,0.004992,0.005344,0.004896,0.005696,0.00464,0.017952,0.00448
+1107,704.264,1.41992,0.190432,0.006144,0.135168,0.005792,0.004448,0.005664,0.004576,0.006144,0.016384,0.006112
+1108,710.864,1.40674,0.190656,0.00544,0.13792,0.005632,0.004608,0.005376,0.004864,0.006016,0.016416,0.004384
+1109,394.377,2.53564,0.436256,0.007712,0.37936,0.006144,0.004096,0.006048,0.005536,0.0048,0.017856,0.004704
+1110,641.303,1.55933,0.194624,0.00496,0.140576,0.004832,0.005536,0.004704,0.00608,0.005504,0.017088,0.005344
+1111,670.157,1.49219,0.194816,0.005664,0.139584,0.004704,0.005632,0.004608,0.005856,0.005728,0.017088,0.005952
+1112,711.358,1.40576,0.21536,0.005696,0.16192,0.004704,0.004096,0.006144,0.005152,0.005088,0.017568,0.004992
+1113,520.656,1.92065,0.241536,0.006144,0.186368,0.005632,0.004608,0.005504,0.004736,0.006144,0.016384,0.006016
+1114,538.522,1.85693,0.410432,0.004896,0.356352,0.005792,0.004448,0.005664,0.006368,0.005504,0.016672,0.004736
+1115,641.102,1.55981,0.187904,0.006112,0.132832,0.005504,0.004832,0.00432,0.006144,0.005728,0.0168,0.005632
+1116,638.802,1.56543,0.188416,0.00608,0.130912,0.004352,0.005696,0.004512,0.007488,0.006848,0.017984,0.004544
+1117,546.789,1.82886,0.225376,0.00624,0.171168,0.00496,0.004096,0.006144,0.00544,0.0048,0.017856,0.004672
+1118,327.287,3.05542,0.41872,0.005024,0.356352,0.005856,0.004384,0.005728,0.006336,0.005504,0.024608,0.004928
+1119,596.302,1.677,0.198656,0.006144,0.143136,0.005504,0.00496,0.005664,0.004576,0.006144,0.016416,0.006112
+1120,479.681,2.08472,0.216,0.004992,0.163712,0.004256,0.005504,0.004704,0.00592,0.005536,0.017184,0.004192
+1121,523.584,1.90991,0.409056,0.005728,0.354208,0.004608,0.005696,0.004544,0.006144,0.005664,0.016864,0.0056
+1122,631.514,1.5835,0.411648,0.005952,0.356544,0.005888,0.004352,0.005472,0.006432,0.00464,0.018176,0.004192
+1123,523.384,1.91064,0.413344,0.005536,0.358496,0.004608,0.005728,0.004512,0.006144,0.005792,0.016736,0.005792
+1124,496.605,2.01367,0.454176,0.005472,0.398048,0.006112,0.005664,0.004576,0.006144,0.005632,0.016896,0.005632
+1125,687.018,1.45557,0.192672,0.004896,0.13872,0.00464,0.005728,0.004512,0.006112,0.005536,0.017024,0.005504
+1126,677.697,1.47559,0.19024,0.005632,0.135424,0.004512,0.005824,0.004416,0.006144,0.0056,0.016928,0.00576
+1127,478.393,2.09033,0.197312,0.0048,0.14336,0.006144,0.004096,0.00608,0.005376,0.004928,0.017888,0.00464
+1128,487.968,2.04932,0.273088,0.005088,0.219136,0.005376,0.004832,0.005248,0.005024,0.00592,0.01664,0.005824
+1129,673.241,1.48535,0.193984,0.00592,0.139008,0.004576,0.00576,0.00448,0.006144,0.005536,0.016992,0.005568
+1130,724.571,1.38013,0.191872,0.006144,0.13648,0.004832,0.005504,0.004736,0.006144,0.005568,0.01696,0.005504
+1131,453.75,2.20386,0.202592,0.0048,0.148736,0.004864,0.005472,0.004768,0.005888,0.005504,0.01728,0.00528
+1132,494.985,2.02026,0.20656,0.006144,0.15136,0.00432,0.005376,0.004832,0.005824,0.005504,0.017312,0.005888
+1133,703.176,1.42212,0.192352,0.004832,0.137248,0.006112,0.005152,0.005088,0.005888,0.005504,0.01728,0.005248
+1134,614.001,1.62866,0.198656,0.0056,0.143904,0.005728,0.004512,0.0056,0.00464,0.006144,0.016384,0.006144
+1135,645.955,1.5481,0.200928,0.004864,0.146976,0.004576,0.005792,0.004448,0.006144,0.005568,0.01696,0.0056
+1136,501.469,1.99414,0.240864,0.006144,0.186176,0.00432,0.005408,0.0048,0.005984,0.005504,0.017184,0.005344
+1137,621.548,1.60889,0.19888,0.005632,0.14416,0.005536,0.004704,0.005408,0.004832,0.00608,0.016448,0.00608
+1138,678.37,1.47412,0.192512,0.006176,0.138368,0.00496,0.005216,0.005056,0.005536,0.004672,0.018144,0.004384
+1139,697.548,1.43359,0.196192,0.006144,0.141024,0.005504,0.004832,0.004288,0.006144,0.005728,0.0168,0.005728
+1140,596.129,1.67749,0.227328,0.006144,0.172032,0.005792,0.004448,0.005632,0.004608,0.006144,0.017408,0.00512
+1141,530.776,1.88403,0.412512,0.005088,0.358208,0.005504,0.004832,0.005248,0.005088,0.006016,0.016512,0.006016
+1142,727.919,1.37378,0.186208,0.006144,0.13104,0.005504,0.004768,0.005312,0.004928,0.005984,0.016544,0.005984
+1143,587.999,1.70068,0.412352,0.004704,0.3584,0.006144,0.004096,0.006144,0.005568,0.004672,0.01824,0.004384
+1144,507.748,1.96948,0.443008,0.004736,0.38896,0.005536,0.004864,0.006016,0.005472,0.004896,0.017952,0.004576
+1145,532.155,1.87915,0.195392,0.004928,0.141312,0.006144,0.004096,0.006112,0.005344,0.004928,0.01792,0.004608
+1146,701.73,1.42505,0.190624,0.005984,0.136544,0.004928,0.005376,0.004864,0.00576,0.005504,0.01728,0.004384
+1147,662.569,1.50928,0.19136,0.00512,0.136576,0.004736,0.0056,0.00464,0.005984,0.006144,0.016544,0.006016
+1148,678.37,1.47412,0.197824,0.005632,0.143424,0.004544,0.005152,0.005088,0.005568,0.004672,0.01824,0.005504
+1149,625.534,1.59863,0.237696,0.005568,0.183008,0.006112,0.004096,0.00608,0.005344,0.00496,0.01792,0.004608
+1150,641.504,1.55884,0.198656,0.006144,0.14336,0.005984,0.004256,0.005856,0.00592,0.004608,0.018272,0.004256
+1151,716.334,1.396,0.188512,0.005568,0.13376,0.006144,0.004096,0.00608,0.005376,0.004928,0.017952,0.004608
+1152,671.806,1.48853,0.190464,0.006144,0.135168,0.005728,0.004512,0.005536,0.004704,0.006144,0.016384,0.006144
+1153,580.334,1.72314,0.187232,0.004992,0.133088,0.006144,0.004096,0.006112,0.005344,0.004928,0.01792,0.004608
+1154,552.841,1.80884,0.40832,0.004864,0.354304,0.005536,0.004704,0.005376,0.006368,0.004672,0.01808,0.004416
+1155,538.31,1.85767,0.198112,0.005568,0.143424,0.004736,0.0056,0.00464,0.006048,0.005536,0.017088,0.005472
+1156,652.229,1.5332,0.202656,0.006304,0.147456,0.005344,0.0048,0.00528,0.005056,0.005856,0.016672,0.005888
+1157,601.557,1.66235,0.191744,0.006144,0.136544,0.004768,0.005568,0.004672,0.005952,0.005536,0.017184,0.005376
+1158,558.952,1.78906,0.415744,0.00576,0.360032,0.004896,0.00544,0.0048,0.006144,0.006144,0.016416,0.006112
+1159,646.669,1.54639,0.190432,0.005664,0.134112,0.006144,0.005216,0.005024,0.006144,0.005536,0.016992,0.0056
+1160,731.559,1.36694,0.18368,0.006144,0.12848,0.00464,0.00576,0.00448,0.006144,0.005504,0.017024,0.005504
+1161,520.061,1.92285,0.462112,0.006048,0.406624,0.00512,0.005216,0.005056,0.00592,0.005504,0.017216,0.005408
+1162,481.486,2.0769,0.6392,0.0056,0.583488,0.005056,0.00528,0.00496,0.007232,0.005056,0.01776,0.004768
+1163,580.334,1.72314,0.408352,0.004896,0.354304,0.005888,0.004352,0.005728,0.005568,0.005088,0.017824,0.004704
+1164,445.266,2.24585,0.198656,0.006144,0.14336,0.005472,0.004768,0.005888,0.004352,0.006144,0.017696,0.004832
+1165,580.252,1.72339,0.24576,0.005728,0.19056,0.005536,0.004832,0.004288,0.006144,0.005728,0.0168,0.006144
+1166,529.131,1.88989,0.413504,0.005568,0.356928,0.006144,0.004096,0.006144,0.006144,0.005888,0.01664,0.005952
+1167,728.826,1.37207,0.189984,0.004608,0.130784,0.005504,0.004832,0.005888,0.004544,0.006144,0.022464,0.005216
+1168,575.039,1.73901,0.449408,0.005024,0.39472,0.004608,0.006144,0.005536,0.004704,0.006144,0.0176,0.004928
+1169,479.232,2.08667,0.243712,0.0056,0.189088,0.005536,0.0048,0.00528,0.00512,0.005728,0.0168,0.00576
+1170,596.215,1.67725,0.188416,0.005632,0.133664,0.006112,0.004096,0.006144,0.005376,0.004896,0.01792,0.004576
+1171,736.558,1.35767,0.192896,0.005632,0.138176,0.005568,0.004672,0.005408,0.004832,0.006048,0.016512,0.006048
+1172,685.867,1.45801,0.190464,0.006144,0.136736,0.004576,0.004096,0.006144,0.005248,0.004992,0.017792,0.004736
+1173,405.545,2.46582,0.251904,0.006144,0.196704,0.006048,0.005216,0.005024,0.0056,0.00464,0.01824,0.004288
+1174,638.902,1.56519,0.193152,0.004736,0.139264,0.006048,0.004192,0.005824,0.004416,0.006144,0.017632,0.004896
+1175,687.825,1.45386,0.19072,0.0048,0.136832,0.005536,0.004832,0.004352,0.006144,0.005664,0.016864,0.005696
+1176,713.34,1.40186,0.206336,0.006144,0.151552,0.005184,0.0048,0.004384,0.006112,0.005632,0.016896,0.005632
+1177,511.936,1.95337,0.239744,0.006144,0.185376,0.005088,0.005248,0.004992,0.005632,0.00464,0.01824,0.004384
+1178,526.749,1.89844,0.414592,0.004992,0.360448,0.005504,0.004736,0.005344,0.006336,0.004736,0.01808,0.004416
+1179,674.683,1.48218,0.18432,0.006144,0.129056,0.006112,0.004096,0.006144,0.00544,0.0048,0.01808,0.004448
+1180,706.329,1.41577,0.191744,0.006144,0.135168,0.006176,0.00528,0.004928,0.005728,0.005792,0.017152,0.005376
+1181,618.357,1.61719,0.2048,0.005792,0.149856,0.005824,0.004416,0.005728,0.004512,0.006144,0.017664,0.004864
+1182,417.065,2.39771,0.20928,0.0056,0.154528,0.005632,0.004608,0.005536,0.004704,0.006144,0.016448,0.00608
+1183,533.403,1.87476,0.227328,0.005984,0.147456,0.020576,0.00528,0.005024,0.0056,0.00464,0.026624,0.006144
+1184,490.774,2.0376,0.219936,0.004896,0.167648,0.004384,0.005312,0.00496,0.005664,0.005568,0.016768,0.004736
+1185,580.663,1.72217,0.202304,0.005664,0.14768,0.005504,0.004928,0.00528,0.005056,0.005792,0.016736,0.005664
+1186,643.418,1.5542,0.195552,0.005088,0.141312,0.006144,0.004096,0.006144,0.005344,0.004896,0.017728,0.0048
+1187,707.182,1.41406,0.194112,0.00592,0.13872,0.004864,0.005472,0.004768,0.005888,0.006144,0.01664,0.005696
+1188,726.628,1.37622,0.187072,0.005088,0.13312,0.0056,0.00464,0.005472,0.004768,0.006112,0.016416,0.005856
+1189,667.862,1.49731,0.196832,0.0056,0.14208,0.00592,0.00432,0.005792,0.004448,0.006144,0.01808,0.004448
+1190,546.498,1.82983,0.260832,0.00512,0.206752,0.005536,0.0048,0.005312,0.004928,0.005952,0.016576,0.005856
+1191,500.122,1.99951,0.281248,0.004768,0.21824,0.004992,0.005344,0.014336,0.004896,0.006144,0.017472,0.005056
+1192,499.756,2.00098,0.202752,0.006144,0.148896,0.004736,0.005216,0.004992,0.005728,0.005536,0.01712,0.004384
+1193,524.994,1.90479,0.209248,0.005824,0.154528,0.005536,0.004736,0.005376,0.004864,0.006016,0.016512,0.005856
+1194,543.741,1.83911,0.412864,0.00592,0.356512,0.005504,0.0048,0.00528,0.006336,0.006144,0.017056,0.005312
+1195,588.59,1.69897,0.200896,0.004672,0.147328,0.005536,0.0048,0.00528,0.004992,0.00592,0.016608,0.00576
+1196,520.457,1.92139,0.221952,0.005088,0.167936,0.005184,0.004832,0.005536,0.004928,0.005984,0.016544,0.00592
+1197,518.875,1.92725,0.193056,0.00464,0.139264,0.006144,0.005152,0.005088,0.005728,0.004512,0.018144,0.004384
+1198,515.091,1.94141,0.413536,0.005472,0.357184,0.006144,0.004096,0.006144,0.006144,0.005984,0.016544,0.005824
+1199,509.326,1.96338,0.440512,0.005728,0.385632,0.006144,0.004096,0.006144,0.005664,0.004576,0.01808,0.004448
+1200,512.128,1.95264,0.214144,0.006144,0.159744,0.005504,0.004736,0.005312,0.004928,0.005952,0.016544,0.00528
+1201,451.3,2.21582,0.216384,0.006144,0.161408,0.005536,0.004768,0.004416,0.006144,0.005568,0.01696,0.00544
+1202,667.971,1.49707,0.19456,0.005792,0.139392,0.005536,0.0048,0.004416,0.005952,0.006144,0.0176,0.004928
+1203,697.31,1.43408,0.190784,0.005632,0.136,0.005952,0.004288,0.005792,0.004448,0.006144,0.017664,0.004864
+1204,628.799,1.59033,0.20352,0.004832,0.149536,0.00576,0.004448,0.005632,0.004608,0.006144,0.017504,0.005056
+1205,518.219,1.92969,0.249056,0.006144,0.193888,0.004768,0.005568,0.004672,0.005952,0.005536,0.017184,0.005344
+1206,672.026,1.48804,0.190816,0.005536,0.136128,0.006144,0.004096,0.006144,0.005408,0.004864,0.017984,0.004512
+1207,712.472,1.40356,0.18432,0.006048,0.12912,0.005728,0.004512,0.0056,0.00464,0.006144,0.017568,0.00496
+1208,411.617,2.42944,0.477184,0.005952,0.405152,0.005984,0.004832,0.020448,0.006144,0.006144,0.016384,0.006144
+1209,402.832,2.48242,0.19776,0.005664,0.143104,0.004832,0.005504,0.004736,0.005888,0.005536,0.017248,0.005248
+1210,754.884,1.32471,0.187872,0.005664,0.133152,0.004704,0.005664,0.004576,0.006048,0.005504,0.01712,0.00544
+1211,675.35,1.48071,0.190624,0.00544,0.136,0.006112,0.004128,0.005984,0.005376,0.005024,0.017824,0.004736
+1212,581.158,1.7207,0.201504,0.004896,0.1488,0.0048,0.004096,0.00608,0.005344,0.00496,0.017888,0.00464
+1213,610.341,1.63843,0.198656,0.006144,0.143136,0.005536,0.004832,0.00528,0.005056,0.006144,0.016384,0.006144
+1214,639.8,1.56299,0.192512,0.006144,0.137216,0.006144,0.004096,0.006144,0.005472,0.004768,0.01808,0.004448
+1215,707.427,1.41357,0.191008,0.004832,0.13712,0.005536,0.004704,0.005408,0.004832,0.006048,0.01648,0.006048
+1216,681.871,1.46655,0.19312,0.004736,0.139168,0.004192,0.00608,0.00544,0.004864,0.006112,0.016416,0.006112
+1217,453.75,2.20386,0.285824,0.006144,0.230496,0.004896,0.004224,0.00592,0.005344,0.006176,0.017312,0.005312
+1218,653.687,1.52979,0.193696,0.005824,0.137536,0.006144,0.004096,0.006144,0.005888,0.005536,0.017248,0.00528
+1219,692.126,1.44482,0.190464,0.006144,0.136192,0.00512,0.005216,0.005024,0.005632,0.004608,0.018304,0.004224
+1220,690.609,1.448,0.194496,0.005856,0.139552,0.005536,0.004704,0.005376,0.004864,0.006016,0.016512,0.00608
+1221,548.474,1.82324,0.238112,0.005664,0.183296,0.006144,0.004096,0.006048,0.005344,0.004992,0.017824,0.004704
+1222,552.99,1.80835,0.416064,0.004864,0.360448,0.006144,0.004096,0.00608,0.006208,0.005696,0.016832,0.005696
+1223,655.78,1.5249,0.188288,0.005632,0.133664,0.005504,0.0048,0.004384,0.00608,0.005664,0.016864,0.005696
+1224,731.298,1.36743,0.185568,0.005888,0.131008,0.00448,0.005216,0.005024,0.005632,0.00576,0.01728,0.00528
+1225,528.721,1.89136,0.206848,0.006144,0.151552,0.005792,0.004448,0.005664,0.004576,0.006144,0.017472,0.005056
+1226,316.391,3.16064,0.439904,0.005952,0.3832,0.006112,0.004096,0.006144,0.006144,0.005728,0.0168,0.005728
+1227,532.363,1.87842,0.196608,0.006144,0.141312,0.006112,0.004128,0.005824,0.004416,0.006144,0.017632,0.004896
+1228,599.444,1.66821,0.192448,0.005792,0.137568,0.0056,0.00464,0.00544,0.0048,0.00608,0.016448,0.00608
+1229,509.073,1.96436,0.416768,0.005504,0.361088,0.006144,0.004096,0.006144,0.005696,0.004544,0.018368,0.005184
+1230,717.715,1.39331,0.190464,0.006144,0.135168,0.005952,0.004288,0.005792,0.004448,0.006144,0.017664,0.004864
+1231,728.178,1.37329,0.181632,0.006144,0.12656,0.004512,0.005824,0.004416,0.006144,0.005536,0.016992,0.005504
+1232,585.143,1.70898,0.433952,0.006144,0.37808,0.004896,0.006144,0.00528,0.00496,0.005952,0.016576,0.00592
+1233,522.582,1.91357,0.224512,0.006144,0.16944,0.00464,0.005696,0.004544,0.006048,0.005472,0.017152,0.005376
+1234,724.187,1.38086,0.181824,0.005408,0.12736,0.005504,0.004832,0.004352,0.006144,0.005664,0.016864,0.005696
+1235,395.978,2.52539,0.506688,0.006752,0.450784,0.00608,0.00416,0.005952,0.0056,0.004832,0.018048,0.00448
+1236,546.133,1.83105,0.198272,0.006144,0.14336,0.00512,0.0048,0.004448,0.006112,0.005664,0.016864,0.00576
+1237,528.857,1.89087,0.412512,0.00496,0.3584,0.005952,0.004288,0.005824,0.005504,0.005056,0.017856,0.004672
+1238,698.38,1.43188,0.192512,0.006144,0.137216,0.005728,0.004512,0.0056,0.00464,0.006144,0.017472,0.005056
+1239,691.775,1.44556,0.189248,0.005056,0.13472,0.004544,0.005792,0.004448,0.005952,0.005504,0.017216,0.006016
+1240,664.719,1.50439,0.193696,0.006144,0.139264,0.005184,0.004832,0.00432,0.006144,0.005696,0.016832,0.00528
+1241,567.156,1.76318,0.239616,0.005728,0.184736,0.005536,0.004704,0.005376,0.004864,0.005984,0.016544,0.006144
+1242,624.581,1.60107,0.186368,0.005984,0.131232,0.005664,0.004576,0.005536,0.004704,0.006144,0.016384,0.006144
+1243,628.703,1.59058,0.40896,0.005632,0.354016,0.004896,0.005472,0.004768,0.006048,0.005504,0.01712,0.005504
+1244,356.515,2.80493,0.534944,0.006528,0.46816,0.015232,0.006176,0.006016,0.005504,0.004832,0.016384,0.006112
+1245,452.297,2.21094,0.19456,0.006144,0.139296,0.00608,0.004128,0.005952,0.005376,0.005056,0.017792,0.004736
+1246,716.209,1.39624,0.186816,0.005664,0.132928,0.005056,0.005312,0.004928,0.005696,0.004544,0.018304,0.004384
+1247,703.417,1.42163,0.1864,0.005984,0.131264,0.006144,0.004096,0.006144,0.005376,0.004864,0.017952,0.004576
+1248,569.522,1.75586,0.191264,0.004896,0.138784,0.004576,0.00512,0.00512,0.005536,0.004704,0.018176,0.004352
+1249,531.258,1.88232,0.407232,0.006144,0.351808,0.004544,0.00576,0.00448,0.006144,0.005664,0.016864,0.005824
+1250,613.725,1.62939,0.197856,0.006048,0.142656,0.004896,0.00544,0.0048,0.005952,0.005536,0.017184,0.005344
+1251,667.318,1.49854,0.190496,0.006144,0.135168,0.00608,0.00416,0.005952,0.005344,0.005088,0.01776,0.0048
+1252,562.869,1.77661,0.22832,0.005088,0.175392,0.004832,0.004096,0.006048,0.005376,0.00496,0.01792,0.004608
+1253,458.781,2.17969,0.178912,0.004832,0.12496,0.006112,0.004096,0.006112,0.005344,0.004928,0.017888,0.00464
+1254,631.028,1.58472,0.226048,0.004864,0.172032,0.005632,0.004608,0.005504,0.004736,0.006112,0.016416,0.006144
+1255,666.667,1.5,0.197408,0.00496,0.14336,0.005696,0.004544,0.005536,0.004704,0.006144,0.016384,0.00608
+1256,714.709,1.39917,0.207296,0.005024,0.153376,0.00432,0.005568,0.004672,0.006144,0.005696,0.016832,0.005664
+1257,536.969,1.8623,0.20432,0.005856,0.149792,0.00608,0.00416,0.005824,0.004416,0.006144,0.016384,0.005664
+1258,653.895,1.5293,0.194464,0.0056,0.139808,0.005536,0.004704,0.005408,0.004832,0.006016,0.016512,0.006048
+1259,725.469,1.37842,0.187136,0.004864,0.13312,0.005792,0.004448,0.0056,0.00464,0.006144,0.016384,0.006144
+1260,676.354,1.47852,0.190432,0.006144,0.135168,0.005664,0.004576,0.005504,0.004736,0.006144,0.016384,0.006112
+1261,568.1,1.76025,0.241248,0.00576,0.186592,0.004384,0.005824,0.004416,0.006144,0.0056,0.016928,0.0056
+1262,347.06,2.88135,0.186272,0.006112,0.131104,0.004672,0.005664,0.004576,0.00608,0.005504,0.017088,0.005472
+1263,519.863,1.92358,0.203072,0.005632,0.148288,0.00608,0.00416,0.00592,0.004416,0.006048,0.017664,0.004864
+1264,544.464,1.83667,0.251776,0.005984,0.196704,0.00416,0.0056,0.00464,0.005984,0.006176,0.016512,0.006016
+1265,516.845,1.93481,0.641024,0.006144,0.585088,0.004736,0.0056,0.004672,0.006112,0.006048,0.01648,0.006144
+1266,490.421,2.03906,0.202752,0.006176,0.147424,0.006048,0.004192,0.00592,0.005376,0.005088,0.018016,0.004512
+1267,617.705,1.6189,0.198176,0.005952,0.143136,0.004608,0.005728,0.004416,0.006144,0.0056,0.016928,0.005664
+1268,576.171,1.7356,0.267936,0.00576,0.213504,0.004096,0.005792,0.004448,0.006144,0.005664,0.016864,0.005664
+1269,630.93,1.58496,0.195744,0.005984,0.139424,0.006144,0.005184,0.005056,0.0056,0.00464,0.018176,0.005536
+1270,500.795,1.99683,0.192512,0.006144,0.137216,0.006112,0.004128,0.005984,0.005376,0.005024,0.017824,0.004704
+1271,699.812,1.42896,0.19456,0.006144,0.139264,0.006144,0.004096,0.006048,0.005344,0.004992,0.017824,0.004704
+1272,554.938,1.802,0.247872,0.005568,0.194784,0.004512,0.005184,0.005056,0.005568,0.004672,0.01824,0.004288
+1273,629.379,1.58887,0.190784,0.005696,0.135936,0.00608,0.00416,0.00592,0.004384,0.00608,0.017728,0.0048
+1274,718.975,1.39087,0.1888,0.005696,0.13392,0.00608,0.00416,0.005952,0.005344,0.005088,0.01776,0.0048
+1275,692.711,1.4436,0.192512,0.006144,0.137088,0.005504,0.004864,0.0056,0.00464,0.006144,0.01744,0.005088
+1276,599.181,1.66895,0.229376,0.006144,0.17408,0.005664,0.004576,0.005504,0.004736,0.006144,0.016384,0.006144
+1277,504.247,1.98315,0.635168,0.005664,0.580352,0.006144,0.004096,0.006112,0.005696,0.004576,0.018304,0.004224
+1278,519.731,1.92407,0.418144,0.004448,0.362496,0.006144,0.004096,0.006144,0.006144,0.006144,0.017728,0.0048
+1279,691.075,1.44702,0.188896,0.00576,0.134016,0.006112,0.004096,0.006144,0.005376,0.004864,0.017952,0.004576
+1280,458.627,2.18042,0.210944,0.006144,0.15568,0.005664,0.004544,0.005568,0.004672,0.006144,0.016384,0.006144
+1281,524.187,1.90771,0.411648,0.005632,0.356864,0.006112,0.004128,0.005952,0.005504,0.004928,0.01792,0.004608
+1282,666.558,1.50024,0.192448,0.006176,0.137024,0.005504,0.004896,0.005344,0.004896,0.006016,0.016512,0.00608
+1283,712.472,1.40356,0.188672,0.005856,0.13376,0.005504,0.004736,0.005376,0.004864,0.006016,0.016512,0.006048
+1284,487.213,2.05249,0.452576,0.005344,0.397376,0.004832,0.006144,0.005344,0.004896,0.006112,0.016416,0.006112
+1285,503.875,1.98462,0.4104,0.004896,0.356352,0.00592,0.00432,0.00576,0.005536,0.005088,0.017728,0.0048
+1286,705.113,1.41821,0.180288,0.00624,0.125024,0.005504,0.004832,0.00528,0.00512,0.00576,0.016768,0.00576
+1287,579.349,1.72607,0.184544,0.005568,0.129824,0.005888,0.004352,0.005728,0.004512,0.006144,0.017536,0.004992
+1288,323.411,3.09204,0.342016,0.006144,0.286752,0.005408,0.0048,0.005344,0.004896,0.005984,0.018112,0.004576
+1289,708.283,1.41187,0.192352,0.006144,0.137216,0.0056,0.00464,0.00544,0.0048,0.006016,0.016512,0.005984
+1290,683.464,1.46313,0.195104,0.005664,0.141408,0.005024,0.005312,0.004928,0.005696,0.004544,0.018368,0.00416
+1291,661.712,1.51123,0.218944,0.006144,0.16384,0.005536,0.004704,0.005376,0.004864,0.005984,0.016544,0.005952
+1292,643.216,1.55469,0.229376,0.005504,0.174624,0.004512,0.005184,0.005056,0.005664,0.004576,0.018336,0.00592
+1293,646.465,1.54688,0.188256,0.006144,0.133056,0.005536,0.004768,0.005344,0.004896,0.005984,0.016544,0.005984
+1294,668.953,1.49487,0.190464,0.0056,0.135712,0.006144,0.005184,0.005056,0.005728,0.005536,0.016736,0.004768
+1295,752.526,1.32886,0.183872,0.006144,0.128896,0.005536,0.0048,0.005248,0.005024,0.005824,0.016704,0.005696
+1296,559.41,1.7876,0.241088,0.006176,0.186336,0.004224,0.005632,0.00448,0.006144,0.005536,0.016992,0.005568
+1297,306.289,3.26489,0.63696,0.0056,0.58224,0.005536,0.004576,0.00544,0.00496,0.006112,0.016416,0.00608
+1298,541.799,1.8457,0.192064,0.006144,0.136352,0.00496,0.005376,0.004864,0.00608,0.005504,0.017088,0.005696
+1299,578.613,1.72827,0.258496,0.004864,0.204608,0.005536,0.0048,0.00528,0.005056,0.005824,0.016704,0.005824
+1300,517.498,1.93237,0.201856,0.006144,0.147328,0.004224,0.005472,0.004768,0.005888,0.005536,0.017248,0.005248
+1301,718.344,1.39209,0.186944,0.004704,0.13312,0.0056,0.00464,0.005472,0.004768,0.006112,0.016416,0.006112
+1302,635.236,1.57422,0.439744,0.005664,0.383456,0.006048,0.004192,0.006016,0.006272,0.0056,0.016928,0.005568
+1303,580.993,1.72119,0.196128,0.0056,0.141568,0.0048,0.005504,0.004768,0.005856,0.005504,0.01728,0.005248
+1304,613.909,1.62891,0.194848,0.005632,0.141248,0.004864,0.004192,0.00592,0.005376,0.005088,0.01776,0.004768
+1305,623.535,1.60376,0.195744,0.006144,0.14064,0.004768,0.005472,0.004768,0.005824,0.005504,0.017344,0.00528
+1306,398.25,2.51099,0.188864,0.005952,0.133728,0.006016,0.004224,0.005888,0.004416,0.00608,0.017728,0.004832
+1307,535.635,1.86694,0.265632,0.005952,0.210656,0.004576,0.005728,0.004512,0.006144,0.005504,0.017024,0.005536
+1308,381.591,2.62061,0.22464,0.006144,0.169952,0.004128,0.005568,0.004672,0.006112,0.005504,0.017056,0.005504
+1309,593.107,1.68604,0.201408,0.0048,0.147456,0.0056,0.00464,0.005472,0.004768,0.006144,0.01744,0.005088
+1310,739.35,1.35254,0.19696,0.00576,0.14208,0.006112,0.004096,0.006112,0.005376,0.004896,0.017984,0.004544
+1311,503.751,1.98511,0.462848,0.006144,0.407552,0.00592,0.00432,0.00576,0.005536,0.005088,0.017728,0.0048
+1312,625.63,1.59839,0.197024,0.005664,0.143872,0.00448,0.004096,0.006144,0.005472,0.004768,0.01808,0.004448
+1313,649.026,1.54077,0.19456,0.005952,0.139456,0.006112,0.004128,0.00592,0.005344,0.005152,0.017728,0.004768
+1314,609.796,1.63989,0.187456,0.005728,0.132672,0.004992,0.005344,0.004896,0.00576,0.005504,0.017344,0.005216
+1315,552.767,1.80908,0.360448,0.006144,0.303104,0.006144,0.004096,0.006144,0.006144,0.005728,0.0168,0.006144
+1316,515.026,1.94165,0.417696,0.0056,0.36224,0.004928,0.006112,0.00528,0.00496,0.00608,0.01648,0.006016
+1317,675.573,1.48022,0.187072,0.005952,0.132,0.006112,0.004096,0.006144,0.005408,0.004832,0.017984,0.004544
+1318,652.022,1.53369,0.18224,0.006048,0.127104,0.004768,0.005568,0.004672,0.005952,0.005568,0.017152,0.005408
+1319,441.57,2.26465,0.276608,0.005664,0.209536,0.006112,0.005184,0.005056,0.005536,0.004704,0.028672,0.006144
+1320,429.35,2.3291,0.434144,0.006144,0.378144,0.004832,0.006144,0.005312,0.004928,0.006112,0.016416,0.006112
+1321,609.705,1.64014,0.219072,0.006144,0.16384,0.005632,0.004608,0.005472,0.004768,0.006048,0.01648,0.00608
+1322,555.767,1.79932,0.222848,0.0048,0.169024,0.004896,0.005472,0.004768,0.005856,0.005504,0.017312,0.005216
+1323,442.524,2.25977,0.250144,0.005632,0.195488,0.005568,0.004672,0.005376,0.004864,0.00608,0.01648,0.005984
+1324,635.827,1.57275,0.194176,0.00576,0.139648,0.005248,0.004832,0.00528,0.00512,0.005792,0.016736,0.00576
+1325,715.334,1.39795,0.189824,0.006016,0.134688,0.004704,0.005632,0.004608,0.006048,0.005504,0.01712,0.005504
+1326,641.403,1.55908,0.20608,0.00608,0.151104,0.004608,0.00576,0.00448,0.006144,0.0056,0.016928,0.005376
+1327,606.905,1.64771,0.231584,0.005632,0.176832,0.006112,0.005152,0.005088,0.005536,0.004704,0.018176,0.004352
+1328,615.57,1.62451,0.188736,0.005056,0.135168,0.004096,0.005728,0.004512,0.006144,0.005536,0.016992,0.005504
+1329,666.667,1.5,0.18656,0.0056,0.13168,0.005504,0.004832,0.005792,0.004448,0.006144,0.017536,0.005024
+1330,670.376,1.4917,0.2376,0.005568,0.18288,0.005792,0.004448,0.005664,0.004576,0.006144,0.017504,0.005024
+1331,522.782,1.91284,0.204128,0.006144,0.149504,0.005664,0.004576,0.005536,0.004704,0.006144,0.016384,0.005472
+1332,676.354,1.47852,0.188224,0.005632,0.13344,0.0056,0.004832,0.00528,0.004992,0.005888,0.01664,0.00592
+1333,698.261,1.43213,0.192512,0.00592,0.13744,0.00576,0.00448,0.006144,0.005504,0.004736,0.018112,0.004416
+1334,402.951,2.48169,0.266304,0.00416,0.197856,0.004928,0.020448,0.006144,0.005408,0.004832,0.018016,0.004512
+1335,549.872,1.8186,0.206912,0.004832,0.15312,0.004576,0.00576,0.00448,0.006048,0.005632,0.016992,0.005472
+1336,646.057,1.54785,0.192128,0.006144,0.137216,0.005248,0.004832,0.004256,0.006144,0.005728,0.0168,0.00576
+1337,656.095,1.52417,0.193152,0.0048,0.139232,0.005792,0.004416,0.005632,0.004608,0.006144,0.017472,0.005056
+1338,628.703,1.59058,0.190272,0.00576,0.134752,0.004896,0.00544,0.0048,0.005856,0.005504,0.017312,0.005952
+1339,608.618,1.64307,0.25104,0.005568,0.196384,0.005024,0.005312,0.004928,0.005728,0.00464,0.018208,0.005248
+1340,612.074,1.63379,0.195392,0.004928,0.141312,0.004096,0.005728,0.004512,0.006144,0.005536,0.016992,0.006144
+1341,681.644,1.46704,0.185984,0.00464,0.131072,0.006144,0.004096,0.00608,0.005888,0.005504,0.017344,0.005216
+1342,635.63,1.57324,0.409216,0.006176,0.352672,0.005856,0.004384,0.005728,0.006368,0.005504,0.017216,0.005312
+1343,375.229,2.66504,0.518528,0.006784,0.45088,0.006112,0.004128,0.005952,0.016576,0.005568,0.01696,0.005568
+1344,659.9,1.51538,0.19472,0.006144,0.14032,0.004896,0.004288,0.005792,0.00464,0.006976,0.01728,0.004384
+1345,699.215,1.43018,0.18928,0.00496,0.135168,0.006144,0.004096,0.006144,0.005344,0.004896,0.01792,0.004608
+1346,675.573,1.48022,0.190976,0.004608,0.137248,0.006112,0.004096,0.006016,0.005376,0.004992,0.017856,0.004672
+1347,651.399,1.53516,0.22528,0.006144,0.171808,0.005536,0.0048,0.00528,0.005088,0.005792,0.016576,0.004256
+1348,609.342,1.64111,0.189472,0.004992,0.137056,0.004256,0.005472,0.004768,0.005856,0.005536,0.01728,0.004256
+1349,640.5,1.56128,0.190464,0.006016,0.136512,0.004928,0.005376,0.004864,0.00576,0.005504,0.017312,0.004192
+1350,684.835,1.46021,0.192512,0.005728,0.137376,0.005536,0.00496,0.005664,0.004576,0.006144,0.017472,0.005056
+1351,740.687,1.3501,0.192608,0.006144,0.137216,0.006048,0.005344,0.004992,0.005632,0.00464,0.018176,0.004416
+1352,516.324,1.93677,0.247808,0.006144,0.194144,0.004512,0.005248,0.004992,0.005664,0.00464,0.018208,0.004256
+1353,436.209,2.29248,0.192512,0.006112,0.137248,0.005792,0.004448,0.005632,0.004608,0.006144,0.017408,0.00512
+1354,644.836,1.55078,0.192512,0.006112,0.137248,0.005888,0.004352,0.00576,0.00448,0.006144,0.0176,0.004928
+1355,725.341,1.37866,0.192608,0.004832,0.138752,0.004608,0.005824,0.004416,0.006144,0.005472,0.017056,0.005504
+1356,612.532,1.63257,0.257472,0.006144,0.202752,0.004224,0.0056,0.004512,0.006144,0.005536,0.016992,0.005568
+1357,540.369,1.85059,0.413696,0.00608,0.358464,0.006112,0.004128,0.005984,0.005536,0.004864,0.018016,0.004512
+1358,628.703,1.59058,0.409248,0.005952,0.35248,0.006112,0.005184,0.005056,0.006144,0.005792,0.016736,0.005792
+1359,576.577,1.73438,0.19328,0.005888,0.137376,0.00496,0.005376,0.004864,0.005728,0.005984,0.016992,0.006112
+1360,597.085,1.6748,0.22528,0.006048,0.169952,0.004256,0.006112,0.005344,0.004896,0.006112,0.016416,0.006144
+1361,617.239,1.62012,0.187264,0.004992,0.13312,0.006112,0.005344,0.004928,0.005696,0.004544,0.018272,0.004256
+1362,567.392,1.76245,0.205408,0.004672,0.140544,0.004864,0.00544,0.016096,0.005088,0.006144,0.017472,0.005088
+1363,785.126,1.27368,0.188416,0.006016,0.133248,0.006144,0.004096,0.006144,0.005376,0.004896,0.017952,0.004544
+1364,534.447,1.87109,0.239776,0.00576,0.185888,0.005024,0.004192,0.006112,0.005376,0.004896,0.017952,0.004576
+1365,473.91,2.11011,0.411648,0.005984,0.356352,0.005536,0.004832,0.00528,0.004992,0.006144,0.016384,0.006144
+1366,730.385,1.36914,0.1864,0.005696,0.131168,0.005504,0.005088,0.005536,0.004704,0.006144,0.016384,0.006176
+1367,563.024,1.77612,0.411904,0.005664,0.357088,0.006144,0.004096,0.006048,0.005504,0.004832,0.018016,0.004512
+1368,567.077,1.76343,0.214016,0.006144,0.159456,0.004384,0.005312,0.004928,0.005728,0.00464,0.01824,0.005184
+1369,550.242,1.81738,0.409536,0.00576,0.354592,0.004544,0.005792,0.004448,0.006144,0.005664,0.016864,0.005728
+1370,639.6,1.56348,0.412832,0.005504,0.356992,0.005792,0.004448,0.005664,0.006336,0.005536,0.01728,0.00528
+1371,478.784,2.08862,0.233472,0.005632,0.167872,0.004672,0.016384,0.005568,0.004672,0.006144,0.017408,0.00512
+1372,567.942,1.76074,0.231424,0.006144,0.177632,0.00464,0.00512,0.00512,0.005504,0.004736,0.018208,0.00432
+1373,638.802,1.56543,0.19184,0.008192,0.134368,0.004896,0.00544,0.0048,0.005824,0.00576,0.017088,0.005472
+1374,652.229,1.5332,0.187104,0.005056,0.13312,0.005376,0.0048,0.00528,0.005024,0.005888,0.01664,0.00592
+1375,596.129,1.67749,0.409504,0.0056,0.354656,0.005504,0.004832,0.005248,0.005088,0.006048,0.01648,0.006048
+1376,466.94,2.1416,0.489856,0.006528,0.434048,0.005536,0.004832,0.005984,0.005504,0.004896,0.017952,0.004576
+1377,466.94,2.1416,0.410976,0.00592,0.355968,0.004704,0.005568,0.004672,0.006112,0.005504,0.017056,0.005472
+1378,570.156,1.75391,0.405504,0.005792,0.35056,0.0056,0.00464,0.005472,0.006336,0.004576,0.018304,0.004224
+1379,618.731,1.61621,0.421664,0.004512,0.367776,0.00496,0.005376,0.004864,0.006112,0.005504,0.017056,0.005504
+1380,269.616,3.70898,0.202752,0.005632,0.148192,0.005312,0.0048,0.005312,0.005024,0.005888,0.01664,0.005952
+1381,711.111,1.40625,0.19184,0.0056,0.137248,0.004928,0.005408,0.004832,0.00576,0.005504,0.017344,0.005216
+1382,664.073,1.50586,0.21488,0.005696,0.160192,0.005504,0.004832,0.004288,0.006144,0.005696,0.016832,0.005696
+1383,627.739,1.59302,0.223488,0.0064,0.167936,0.005696,0.004544,0.005632,0.004608,0.006144,0.01744,0.005088
+1384,540.227,1.85107,0.413024,0.00608,0.357696,0.004864,0.005536,0.004704,0.006112,0.005504,0.017056,0.005472
+1385,647.999,1.54321,0.191456,0.005088,0.138432,0.00496,0.004064,0.006144,0.005376,0.004864,0.017984,0.004544
+1386,684.492,1.46094,0.192512,0.006112,0.137216,0.005504,0.004768,0.005344,0.004896,0.006144,0.017664,0.004864
+1387,537.039,1.86206,0.22016,0.00512,0.165888,0.006144,0.004096,0.006144,0.005376,0.004864,0.018016,0.004512
+1388,420.836,2.37622,0.44032,0.0056,0.385568,0.00576,0.00448,0.005792,0.005536,0.005056,0.017792,0.004736
+1389,592.164,1.68872,0.196608,0.006144,0.141312,0.006144,0.004096,0.006144,0.005472,0.004768,0.018112,0.004416
+1390,672.247,1.48755,0.20368,0.005056,0.14944,0.005504,0.004768,0.005344,0.004896,0.005984,0.016576,0.006112
+1391,645.548,1.54907,0.209088,0.005152,0.155616,0.005536,0.004704,0.005344,0.004896,0.005952,0.016576,0.005312
+1392,493.732,2.02539,0.441472,0.005504,0.385664,0.00592,0.005504,0.00496,0.005856,0.005504,0.017312,0.005248
+1393,667.645,1.4978,0.190496,0.0056,0.135744,0.005696,0.004544,0.005536,0.004704,0.006144,0.016384,0.006144
+1394,717.464,1.3938,0.187104,0.004832,0.13312,0.00576,0.00448,0.005632,0.004608,0.006144,0.017472,0.005056
+1395,614.83,1.62646,0.244032,0.005824,0.17888,0.00608,0.014144,0.005728,0.004704,0.006144,0.016384,0.006144
+1396,537.462,1.8606,0.255744,0.006048,0.200832,0.0056,0.004608,0.005504,0.004736,0.00592,0.016608,0.005888
+1397,502.145,1.99146,0.286432,0.006144,0.202752,0.006144,0.02048,0.005728,0.016608,0.005984,0.016736,0.005856
+1398,669.609,1.49341,0.202272,0.006144,0.146848,0.004704,0.005632,0.004608,0.006048,0.005568,0.017056,0.005664
+1399,499.33,2.00269,0.20512,0.004928,0.151264,0.005536,0.0048,0.004288,0.006144,0.005664,0.016864,0.005632
+1400,513.798,1.94629,0.415328,0.006144,0.359488,0.005056,0.005984,0.00528,0.005152,0.005888,0.016608,0.005728
+1401,719.101,1.39062,0.183584,0.006144,0.128512,0.004608,0.00576,0.00448,0.006112,0.005504,0.017056,0.005408
+1402,729.605,1.37061,0.187008,0.004736,0.13312,0.005632,0.004608,0.005536,0.004704,0.006144,0.016384,0.006144
+1403,601.557,1.66235,0.190592,0.005728,0.135712,0.005504,0.004832,0.00528,0.005056,0.005856,0.016672,0.005952
+1404,638.802,1.56543,0.208832,0.004672,0.155648,0.004192,0.0056,0.004544,0.006112,0.005536,0.017024,0.005504
+1405,650.779,1.53662,0.190688,0.005792,0.135744,0.006016,0.004224,0.006144,0.005696,0.004544,0.018336,0.004192
+1406,429.71,2.32715,0.192512,0.004864,0.138656,0.004704,0.005632,0.004608,0.006016,0.005536,0.01712,0.005376
+1407,582.646,1.71631,0.245728,0.005952,0.181728,0.004832,0.005472,0.004768,0.014336,0.006144,0.016384,0.006112
+1408,531.948,1.87988,0.203584,0.005024,0.149504,0.005536,0.004704,0.005408,0.004832,0.006048,0.01648,0.006048
+1409,606.186,1.64966,0.190752,0.0056,0.136032,0.006112,0.004096,0.006144,0.005408,0.004832,0.017984,0.004544
+1410,714.959,1.39868,0.186624,0.004768,0.133024,0.005504,0.004832,0.00528,0.00496,0.005952,0.016576,0.005728
+1411,618.357,1.61719,0.19664,0.005824,0.141632,0.005792,0.004448,0.005664,0.004576,0.006144,0.017568,0.004992
+1412,562.792,1.77686,0.261888,0.0048,0.208672,0.00432,0.005376,0.004864,0.005792,0.005536,0.017344,0.005184
+1413,699.812,1.42896,0.18976,0.0056,0.1352,0.004832,0.005472,0.004768,0.005824,0.005536,0.017312,0.005216
+1414,689.098,1.45117,0.192384,0.0056,0.13616,0.006144,0.004096,0.006144,0.005472,0.004768,0.01808,0.00592
+1415,633.761,1.57788,0.202336,0.005696,0.147616,0.004544,0.005792,0.004448,0.006144,0.005504,0.017024,0.005568
+1416,446.382,2.24023,0.204192,0.005568,0.15008,0.005728,0.004512,0.0056,0.00464,0.006144,0.016384,0.005536
+1417,596.042,1.67773,0.194016,0.005632,0.139424,0.004864,0.00544,0.0048,0.005824,0.005472,0.017344,0.005216
+1418,650.572,1.53711,0.192512,0.006016,0.138368,0.00512,0.005216,0.005024,0.0056,0.00464,0.01824,0.004288
+1419,708.16,1.41211,0.186688,0.005632,0.13104,0.00496,0.005856,0.004384,0.006144,0.006144,0.017664,0.004864
+1420,511.169,1.9563,0.223744,0.004608,0.169984,0.005632,0.004608,0.005504,0.004736,0.006144,0.016384,0.006144
+1421,595.435,1.67944,0.197664,0.005856,0.14272,0.005024,0.005312,0.004928,0.005728,0.004512,0.018336,0.005248
+1422,748.675,1.33569,0.192512,0.005824,0.137536,0.005632,0.004608,0.005472,0.004768,0.006144,0.0176,0.004928
+1423,624.771,1.60059,0.40944,0.006144,0.354112,0.005504,0.004832,0.00528,0.005056,0.005984,0.016544,0.005984
+1424,514.121,1.94507,0.268416,0.021088,0.198656,0.004224,0.005568,0.004544,0.006112,0.005536,0.017024,0.005664
+1425,377.651,2.64795,0.541024,0.006208,0.471328,0.006144,0.005152,0.007136,0.006176,0.016352,0.016384,0.006144
+1426,491.481,2.03467,0.476768,0.006176,0.408672,0.005024,0.005312,0.004896,0.017984,0.004544,0.01824,0.00592
+1427,441.808,2.26343,0.223968,0.004864,0.16992,0.005536,0.004768,0.005312,0.004928,0.005952,0.016576,0.006112
+1428,537.674,1.85986,0.204992,0.004736,0.151552,0.005248,0.0048,0.004288,0.006144,0.005728,0.0168,0.005696
+1429,632.489,1.58105,0.202752,0.005792,0.147808,0.006144,0.004096,0.006144,0.00544,0.0048,0.018016,0.004512
+1430,691.308,1.44653,0.185312,0.005088,0.131072,0.005632,0.004608,0.005632,0.004608,0.006144,0.017408,0.00512
+1431,500.244,1.99902,0.251904,0.006144,0.196608,0.005536,0.004704,0.005408,0.004832,0.006048,0.01648,0.006144
+1432,436.395,2.2915,0.304704,0.005632,0.25056,0.004384,0.005312,0.004896,0.005856,0.005536,0.01728,0.005248
+1433,578.613,1.72827,0.20144,0.00512,0.146592,0.00496,0.005376,0.004864,0.00576,0.006144,0.016768,0.005856
+1434,629.379,1.58887,0.21504,0.006144,0.159744,0.006144,0.004096,0.006144,0.005408,0.004832,0.017984,0.004544
+1435,449.813,2.22314,0.24144,0.005632,0.185376,0.006112,0.004096,0.006144,0.005344,0.004896,0.01792,0.00592
+1436,624.867,1.60034,0.192512,0.006144,0.137216,0.005728,0.004512,0.0056,0.00464,0.006144,0.017472,0.005056
+1437,680.173,1.47021,0.188448,0.006144,0.134176,0.005088,0.005216,0.005024,0.0056,0.00464,0.018176,0.004384
+1438,674.239,1.48315,0.188416,0.006144,0.132864,0.005504,0.004832,0.005312,0.005088,0.005792,0.016736,0.006144
+1439,587.24,1.70288,0.258048,0.006144,0.202752,0.005952,0.004288,0.005792,0.004448,0.006144,0.017568,0.00496
+1440,531.465,1.88159,0.416672,0.004992,0.362016,0.004576,0.006144,0.0056,0.00464,0.006144,0.017568,0.004992
+1441,468.972,2.13232,0.186368,0.005824,0.131392,0.00576,0.00448,0.0056,0.00464,0.006144,0.01744,0.005088
+1442,707.06,1.41431,0.202432,0.005632,0.147808,0.004672,0.005664,0.004576,0.006048,0.005504,0.01712,0.005408
+1443,437.233,2.28711,0.26608,0.006112,0.21072,0.005536,0.0048,0.005472,0.004928,0.00592,0.016608,0.005984
+1444,546.425,1.83008,0.196608,0.005984,0.143232,0.004384,0.005312,0.004928,0.005728,0.004512,0.018336,0.004192
+1445,694.59,1.4397,0.188896,0.004864,0.135136,0.005536,0.004736,0.005312,0.004928,0.005952,0.016576,0.005856
+1446,483.19,2.06958,0.21024,0.006144,0.155104,0.00464,0.005696,0.004544,0.006112,0.005536,0.017024,0.00544
+1447,450.754,2.21851,0.231424,0.00608,0.176,0.005536,0.0048,0.005312,0.005024,0.005856,0.016672,0.006144
+1448,641.705,1.55835,0.189888,0.005568,0.135872,0.004224,0.00544,0.0048,0.00592,0.005504,0.017248,0.005312
+1449,554.788,1.80249,0.206848,0.005632,0.152064,0.006144,0.004096,0.006144,0.005504,0.004736,0.018112,0.004416
+1450,395.329,2.52954,0.22496,0.005632,0.170304,0.005504,0.004832,0.004352,0.006144,0.005664,0.016864,0.005664
+1451,435.837,2.29443,0.229312,0.006112,0.174048,0.00592,0.00432,0.005728,0.004512,0.006144,0.017504,0.005024
+1452,613.725,1.62939,0.21904,0.005632,0.164576,0.005216,0.004832,0.005376,0.005056,0.005824,0.016704,0.005824
+1453,480.188,2.08252,0.248448,0.016096,0.1832,0.006144,0.004096,0.00608,0.005376,0.004928,0.017952,0.004576
+1454,503.441,1.98633,0.200576,0.005984,0.145088,0.004576,0.006144,0.005408,0.004832,0.006048,0.01648,0.006016
+1455,581.984,1.71826,0.198656,0.006144,0.14336,0.006144,0.004096,0.006144,0.005376,0.004864,0.017984,0.004544
+1456,681.985,1.46631,0.197536,0.005024,0.14336,0.004256,0.005632,0.004448,0.006144,0.006144,0.016384,0.006144
+1457,428.99,2.33105,0.464896,0.006048,0.409728,0.005664,0.004544,0.005664,0.004576,0.006144,0.017728,0.0048
+1458,502.207,1.99121,0.208608,0.005728,0.153184,0.004928,0.005568,0.004672,0.006016,0.005568,0.017088,0.005856
+1459,640.901,1.5603,0.20176,0.005024,0.148544,0.005056,0.00528,0.00496,0.005664,0.004576,0.018272,0.004384
+1460,480.638,2.08057,0.290976,0.00608,0.23728,0.004448,0.005248,0.004992,0.005728,0.00464,0.018176,0.004384
+1461,465.507,2.14819,0.280576,0.005984,0.209056,0.005888,0.020736,0.006144,0.00544,0.0048,0.018016,0.004512
+1462,685.408,1.45898,0.193504,0.005088,0.139232,0.005504,0.004768,0.005344,0.004896,0.006016,0.016512,0.006144
+1463,695.652,1.4375,0.188608,0.006336,0.13312,0.005984,0.004256,0.005856,0.004384,0.006144,0.017696,0.004832
+1464,571.907,1.74854,0.4368,0.004768,0.38208,0.004992,0.006048,0.005312,0.005024,0.00608,0.016448,0.006048
+1465,504.061,1.98389,0.500928,0.006144,0.445696,0.004864,0.005472,0.004768,0.006016,0.005472,0.017184,0.005312
+1466,694.473,1.43994,0.192192,0.005696,0.137504,0.004544,0.005792,0.004448,0.006144,0.005568,0.01696,0.005536
+1467,612.898,1.63159,0.414208,0.004608,0.360448,0.005728,0.004512,0.005568,0.004672,0.006144,0.017504,0.005024
+1468,611.708,1.63477,0.429376,0.006144,0.372736,0.006016,0.005504,0.004864,0.00592,0.005536,0.017216,0.00544
+1469,547.667,1.82593,0.429344,0.006048,0.374112,0.004864,0.00544,0.0048,0.005984,0.005504,0.017184,0.005408
+1470,593.022,1.68628,0.196608,0.005984,0.141216,0.005504,0.004832,0.004256,0.006144,0.006144,0.017472,0.005056
+1471,654.418,1.52808,0.191232,0.004832,0.137216,0.006144,0.005152,0.005088,0.005504,0.004736,0.018112,0.004448
+1472,766.898,1.30396,0.185888,0.006144,0.131072,0.00512,0.004832,0.004384,0.006144,0.005664,0.016864,0.005664
+1473,620.7,1.61108,0.197056,0.004896,0.143264,0.005536,0.0048,0.00512,0.00512,0.00576,0.016768,0.005792
+1474,489.776,2.04175,0.638368,0.006176,0.5816,0.005696,0.004544,0.005728,0.00656,0.005536,0.016992,0.005536
+1475,588.59,1.69897,0.411808,0.005472,0.357184,0.005536,0.004704,0.005344,0.004896,0.006144,0.016384,0.006144
+1476,678.033,1.47485,0.190464,0.006144,0.136864,0.004448,0.00528,0.00496,0.005664,0.004576,0.01824,0.004288
+1477,677.921,1.4751,0.202656,0.00592,0.14768,0.005504,0.004736,0.005376,0.004864,0.006016,0.016544,0.006016
+1478,630.348,1.58643,0.195584,0.00512,0.141024,0.005504,0.004832,0.004288,0.006144,0.005664,0.016864,0.006144
+1479,698.618,1.4314,0.1888,0.004768,0.135008,0.005504,0.004832,0.00528,0.005024,0.005856,0.016672,0.005856
+1480,488.55,2.04688,0.295168,0.005568,0.22112,0.004864,0.004224,0.005888,0.014592,0.006144,0.026624,0.006144
+1481,549.504,1.81982,0.206848,0.005952,0.151776,0.006112,0.005152,0.005088,0.005568,0.004672,0.018176,0.004352
+1482,607.986,1.64478,0.201984,0.00592,0.147328,0.005504,0.004832,0.004352,0.006048,0.005504,0.01712,0.005376
+1483,639.5,1.56372,0.186752,0.005056,0.132608,0.004608,0.005696,0.004544,0.00608,0.005504,0.017088,0.005568
+1484,569.522,1.75586,0.250432,0.005056,0.196608,0.004192,0.005632,0.00464,0.006016,0.005696,0.016832,0.00576
+1485,678.933,1.4729,0.1904,0.005632,0.13568,0.005504,0.004736,0.005344,0.004896,0.006048,0.01648,0.00608
+1486,520.325,1.92188,0.413792,0.006144,0.357792,0.004704,0.005664,0.004576,0.006144,0.006144,0.01824,0.004384
+1487,718.596,1.3916,0.185536,0.005696,0.130784,0.004832,0.005536,0.004704,0.005952,0.005504,0.017216,0.005312
+1488,750.458,1.33252,0.18432,0.006176,0.130464,0.004672,0.004096,0.006144,0.00544,0.0048,0.018176,0.004352
+1489,660.645,1.51367,0.185376,0.005664,0.130592,0.005056,0.00528,0.00496,0.005696,0.004544,0.018336,0.005248
+1490,398.676,2.5083,0.200704,0.005728,0.145824,0.00608,0.00416,0.005952,0.005376,0.005056,0.017792,0.004736
+1491,679.608,1.47144,0.190624,0.006144,0.135168,0.006144,0.004096,0.005984,0.005888,0.00464,0.018176,0.004384
+1492,765.894,1.30566,0.18448,0.005632,0.130848,0.004928,0.00416,0.005952,0.005344,0.005088,0.01776,0.004768
+1493,629.186,1.58936,0.405504,0.00576,0.350592,0.005632,0.004608,0.005504,0.004736,0.006144,0.01744,0.005088
+1494,567.942,1.76074,0.448512,0.006144,0.393216,0.005664,0.004576,0.005504,0.006336,0.004544,0.018304,0.004224
+1495,592.593,1.6875,0.407552,0.004832,0.353536,0.004864,0.005472,0.004768,0.006048,0.005536,0.017088,0.005408
+1496,750.183,1.33301,0.180224,0.004096,0.12896,0.00416,0.005536,0.004704,0.005952,0.005504,0.016608,0.004704
+1497,758.659,1.31812,0.1832,0.005024,0.129024,0.005728,0.004512,0.005664,0.004576,0.006144,0.01744,0.005088
+1498,565.043,1.76978,0.429344,0.005952,0.372928,0.005856,0.004384,0.005728,0.006432,0.005536,0.01712,0.005408
+1499,440.572,2.26978,0.246496,0.0048,0.193568,0.005088,0.005248,0.004992,0.0056,0.004672,0.018144,0.004384
+1500,751.146,1.3313,0.187936,0.006144,0.13312,0.00512,0.0048,0.004416,0.006144,0.005632,0.016896,0.005664
+1501,763.325,1.31006,0.180288,0.004896,0.126976,0.004096,0.005728,0.004512,0.00608,0.005472,0.01712,0.005408
+1502,634.94,1.57495,0.407232,0.006208,0.350752,0.005824,0.004416,0.005696,0.006368,0.005504,0.017248,0.005216
+1503,561.866,1.77979,0.425408,0.006016,0.370176,0.004736,0.0056,0.00464,0.006144,0.0056,0.016928,0.005568
+1504,699.095,1.43042,0.178304,0.006144,0.124608,0.004416,0.00528,0.00496,0.005696,0.004544,0.018272,0.004384
+1505,584.475,1.71094,0.405568,0.004672,0.35168,0.004672,0.005664,0.004576,0.006144,0.0056,0.016928,0.005632
+1506,644.633,1.55127,0.409344,0.005504,0.353248,0.00608,0.00416,0.005952,0.006336,0.005504,0.017024,0.005536
+1507,556.522,1.79688,0.481728,0.004544,0.428032,0.005888,0.004352,0.005728,0.00464,0.006016,0.017536,0.004992
+1508,367.651,2.71997,0.414304,0.006176,0.3528,0.005504,0.004768,0.006048,0.005696,0.00464,0.024416,0.004256
+1509,647.282,1.54492,0.18432,0.006144,0.129024,0.006048,0.004192,0.005696,0.004544,0.006144,0.01744,0.005088
+1510,549.799,1.81885,0.4096,0.006144,0.353376,0.005024,0.005312,0.004928,0.006144,0.006144,0.016384,0.006144
+1511,516.65,1.93555,0.409632,0.005536,0.354912,0.005664,0.004576,0.005536,0.004704,0.006144,0.0176,0.00496
+1512,676.913,1.47729,0.182912,0.004768,0.129024,0.005632,0.004608,0.005504,0.004736,0.006144,0.016416,0.00608
+1513,732.344,1.36548,0.180736,0.00464,0.126944,0.006144,0.004096,0.006144,0.005376,0.004864,0.017952,0.004576
+1514,764.893,1.30737,0.178176,0.005472,0.12464,0.005056,0.00528,0.00496,0.005696,0.004608,0.01824,0.004224
+1515,544.102,1.83789,0.485376,0.00544,0.430112,0.004768,0.005536,0.004704,0.006144,0.006144,0.01744,0.005088
+1516,585.226,1.70874,0.407552,0.006016,0.352384,0.00528,0.00496,0.005792,0.005568,0.005024,0.017856,0.004672
+1517,662.247,1.51001,0.182816,0.00464,0.129024,0.00608,0.00416,0.00592,0.00432,0.006144,0.017728,0.0048
+1518,330.296,3.02759,0.2048,0.006048,0.1496,0.006144,0.004096,0.006016,0.005376,0.004992,0.017856,0.004672
+1519,625.63,1.59839,0.202752,0.006144,0.147456,0.005664,0.004576,0.005536,0.004704,0.006144,0.016384,0.006144
+1520,697.785,1.43311,0.185696,0.005632,0.131584,0.005184,0.00464,0.004512,0.006144,0.005504,0.017024,0.005472
+1521,655.465,1.52563,0.192864,0.0056,0.138144,0.006112,0.004096,0.00608,0.005344,0.00496,0.01792,0.004608
+1522,685.753,1.45825,0.190496,0.00608,0.135232,0.005856,0.004384,0.005728,0.004512,0.006144,0.018176,0.004384
+1523,603.151,1.65796,0.230272,0.004992,0.176128,0.006144,0.004096,0.005952,0.005344,0.005088,0.017792,0.004736
+1524,539.871,1.85229,0.415744,0.005856,0.358688,0.006144,0.005728,0.004512,0.006144,0.005696,0.016832,0.006144
+1525,591.908,1.68945,0.185024,0.004864,0.131008,0.005824,0.004416,0.005664,0.004576,0.006144,0.01744,0.005088
+1526,588.76,1.69849,0.179968,0.005728,0.125216,0.005504,0.004832,0.00528,0.004992,0.005888,0.01664,0.005888
+1527,471.672,2.12012,0.210944,0.00608,0.155712,0.005504,0.004736,0.005888,0.004448,0.006048,0.01776,0.004768
+1528,496.906,2.01245,0.41232,0.004736,0.3584,0.005632,0.004608,0.006144,0.005568,0.004672,0.018176,0.004384
+1529,687.248,1.45508,0.186496,0.0056,0.131712,0.006144,0.00512,0.00512,0.005504,0.004736,0.018112,0.004448
+1530,683.008,1.46411,0.187872,0.005632,0.13312,0.004896,0.005472,0.004768,0.005856,0.005536,0.01728,0.005312
+1531,568.731,1.7583,0.2048,0.005984,0.149664,0.006144,0.004096,0.006048,0.005344,0.004992,0.017824,0.004704
+1532,611.708,1.63477,0.193696,0.006144,0.139072,0.004288,0.005472,0.004768,0.00592,0.005504,0.017248,0.00528
+1533,607.805,1.64526,0.190688,0.005568,0.136032,0.005664,0.004576,0.005504,0.004736,0.006112,0.016416,0.00608
+1534,624.676,1.60083,0.191264,0.004896,0.137216,0.005824,0.004416,0.005664,0.004576,0.006144,0.017504,0.005024
+1535,439.768,2.27393,0.205888,0.005696,0.135616,0.005952,0.018624,0.006144,0.005856,0.005504,0.017312,0.005184
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..5e0b95d
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,551.523,1.88046,0.33744,0.332129,0.0053105
+max_1024,783.324,6.01562,0.613856,0.608256,0.02048
+min_1024,166.234,1.27661,0.28672,0.282624,0.004096
+512,512.032,1.953,0.28912,0.283616,0.005504
+513,462.094,2.16406,0.29024,0.284672,0.005568
+514,658.574,1.51843,0.288928,0.284096,0.004832
+515,602.574,1.65955,0.289088,0.284,0.005088
+516,497.57,2.00977,0.290368,0.284672,0.005696
+517,358.983,2.78564,0.289248,0.283104,0.006144
+518,490.099,2.04041,0.291712,0.286656,0.005056
+519,530.673,1.8844,0.288768,0.284064,0.004704
+520,431.68,2.31653,0.288768,0.284064,0.004704
+521,594.571,1.68188,0.288864,0.283968,0.004896
+522,621.595,1.60876,0.289152,0.283552,0.0056
+523,598.918,1.66968,0.289952,0.284672,0.00528
+524,468.945,2.13245,0.288992,0.283936,0.005056
+525,576.536,1.7345,0.288768,0.284,0.004768
+526,626.875,1.59521,0.290016,0.284672,0.005344
+527,473.061,2.11389,0.289184,0.28304,0.006144
+528,537.78,1.8595,0.288864,0.283936,0.004928
+529,568.1,1.76025,0.301024,0.284128,0.016896
+530,610.432,1.63818,0.289792,0.28464,0.005152
+531,553.401,1.80701,0.289856,0.28464,0.005216
+532,565.941,1.76697,0.289056,0.284,0.005056
+533,578.49,1.72864,0.290048,0.284672,0.005376
+534,590.074,1.6947,0.289984,0.284672,0.005312
+535,555.691,1.79956,0.28928,0.2832,0.00608
+536,464.057,2.15491,0.290048,0.284672,0.005376
+537,607.58,1.64587,0.289184,0.283552,0.005632
+538,662.515,1.5094,0.289088,0.283232,0.005856
+539,552.692,1.80933,0.289024,0.283904,0.00512
+540,472.952,2.11438,0.289184,0.283424,0.00576
+541,629.669,1.58813,0.290112,0.284672,0.00544
+542,607.805,1.64526,0.289984,0.284672,0.005312
+543,466.462,2.1438,0.289152,0.284064,0.005088
+544,528.482,1.89221,0.289984,0.284672,0.005312
+545,475.781,2.10181,0.289088,0.283968,0.00512
+546,511.616,1.95459,0.289472,0.283328,0.006144
+547,468.141,2.13611,0.288768,0.284288,0.00448
+548,624.962,1.6001,0.289152,0.283168,0.005984
+549,600.366,1.66565,0.288768,0.284256,0.004512
+550,529.609,1.88818,0.290304,0.284416,0.005888
+551,482.251,2.07361,0.565312,0.559328,0.005984
+552,482.848,2.07104,0.290208,0.284672,0.005536
+553,607.22,1.64685,0.288768,0.284096,0.004672
+554,476.002,2.10083,0.28672,0.282624,0.004096
+555,608.482,1.64343,0.287456,0.283328,0.004128
+556,686.442,1.45679,0.288768,0.284448,0.00432
+557,637.957,1.5675,0.288768,0.284576,0.004192
+558,552.319,1.81055,0.288896,0.284128,0.004768
+559,545.225,1.83411,0.565024,0.559104,0.00592
+560,596.042,1.67773,0.291008,0.284992,0.006016
+561,578.286,1.72925,0.288768,0.284128,0.00464
+562,605.559,1.65137,0.288864,0.28448,0.004384
+563,619.199,1.61499,0.288928,0.283104,0.005824
+564,654.104,1.52881,0.289216,0.283584,0.005632
+565,694.708,1.43945,0.28896,0.283392,0.005568
+566,638.703,1.56567,0.289248,0.28336,0.005888
+567,624.152,1.60217,0.289088,0.284,0.005088
+568,620.23,1.6123,0.289216,0.283232,0.005984
+569,497.389,2.0105,0.289792,0.284608,0.005184
+570,685.925,1.45789,0.289952,0.284576,0.005376
+571,520.623,1.92078,0.288768,0.284096,0.004672
+572,632.05,1.58215,0.288832,0.284448,0.004384
+573,665.529,1.50256,0.290784,0.284672,0.006112
+574,697.37,1.43396,0.289216,0.28304,0.006176
+575,550.057,1.81799,0.290048,0.284672,0.005376
+576,509.104,1.96423,0.565312,0.559808,0.005504
+577,638.056,1.56726,0.288768,0.284448,0.00432
+578,478.728,2.08887,0.288768,0.284192,0.004576
+579,400.94,2.49414,0.2888,0.284192,0.004608
+580,637.014,1.56982,0.288992,0.284,0.004992
+581,594.657,1.68164,0.289056,0.283968,0.005088
+582,562.367,1.7782,0.289248,0.283424,0.005824
+583,484.418,2.06433,0.289984,0.284672,0.005312
+584,556.031,1.79846,0.289216,0.283328,0.005888
+585,595.306,1.67981,0.289088,0.284,0.005088
+586,562.869,1.77661,0.289184,0.283328,0.005856
+587,539.089,1.85498,0.288768,0.284448,0.00432
+588,676.969,1.47717,0.288768,0.284256,0.004512
+589,650.675,1.53687,0.289952,0.284672,0.00528
+590,486.288,2.0564,0.289952,0.284672,0.00528
+591,462.773,2.16089,0.56608,0.560064,0.006016
+592,484.963,2.06201,0.567008,0.561152,0.005856
+593,559.792,1.78638,0.289152,0.284096,0.005056
+594,514.411,1.94397,0.288768,0.284096,0.004672
+595,454.404,2.20068,0.2888,0.284032,0.004768
+596,461.313,2.16772,0.289216,0.2832,0.006016
+597,467.287,2.14001,0.288992,0.283968,0.005024
+598,645.192,1.54993,0.289888,0.284608,0.00528
+599,616.172,1.62292,0.289184,0.284064,0.00512
+600,547.923,1.82507,0.289152,0.284128,0.005024
+601,498.661,2.00537,0.290016,0.284672,0.005344
+602,619.386,1.6145,0.289056,0.283104,0.005952
+603,539.196,1.85461,0.2888,0.283968,0.004832
+604,635.729,1.573,0.28912,0.283488,0.005632
+605,487.068,2.0531,0.290144,0.284672,0.005472
+606,625.63,1.59839,0.289184,0.283104,0.00608
+607,655.622,1.52527,0.288768,0.28448,0.004288
+608,653.791,1.52954,0.288768,0.284096,0.004672
+609,504.402,1.98254,0.289152,0.28336,0.005792
+610,681.928,1.46643,0.288864,0.28448,0.004384
+611,657.095,1.52185,0.288768,0.284096,0.004672
+612,466.488,2.14368,0.288832,0.284448,0.004384
+613,520.722,1.92041,0.288928,0.284544,0.004384
+614,513.09,1.94897,0.565568,0.559456,0.006112
+615,507.968,1.96863,0.565568,0.559424,0.006144
+616,497.964,2.00818,0.565568,0.559648,0.00592
+617,440.004,2.27271,0.565248,0.560736,0.004512
+618,540.548,1.84998,0.565248,0.560448,0.0048
+619,555.089,1.80151,0.565248,0.56048,0.004768
+620,351.996,2.84094,0.589824,0.571392,0.018432
+621,561.904,1.77966,0.28928,0.283264,0.006016
+622,689.388,1.45056,0.289088,0.28352,0.005568
+623,587.83,1.70117,0.288896,0.284064,0.004832
+624,486.692,2.05469,0.28992,0.284672,0.005248
+625,595.738,1.67859,0.28912,0.283168,0.005952
+626,739.15,1.35291,0.290112,0.284672,0.00544
+627,567.51,1.76208,0.289472,0.283648,0.005824
+628,360.23,2.776,0.288768,0.284288,0.00448
+629,600.19,1.66614,0.288928,0.28288,0.006048
+630,525.701,1.90222,0.289088,0.283968,0.00512
+631,374.594,2.66956,0.28912,0.283456,0.005664
+632,657.042,1.52197,0.289376,0.283232,0.006144
+633,726.434,1.37659,0.289248,0.283136,0.006112
+634,647.999,1.54321,0.289088,0.282976,0.006112
+635,561.096,1.78223,0.289216,0.283648,0.005568
+636,562.328,1.77832,0.28896,0.28336,0.0056
+637,535.04,1.86902,0.29008,0.284672,0.005408
+638,529.986,1.88684,0.289152,0.283456,0.005696
+639,566.646,1.76477,0.288768,0.28432,0.004448
+640,504.931,1.98047,0.565248,0.560352,0.004896
+641,660.698,1.51355,0.288704,0.282976,0.005728
+642,619.339,1.61462,0.289792,0.284512,0.00528
+643,599.181,1.66895,0.290368,0.284672,0.005696
+644,651.399,1.53516,0.288768,0.283872,0.004896
+645,674.461,1.48267,0.288864,0.283936,0.004928
+646,512.673,1.95056,0.289952,0.284672,0.00528
+647,538.133,1.85828,0.2888,0.284416,0.004384
+648,518.251,1.92957,0.565312,0.560928,0.004384
+649,591.566,1.69043,0.289376,0.283296,0.00608
+650,666.179,1.5011,0.288768,0.28448,0.004288
+651,554.488,1.80347,0.289024,0.283936,0.005088
+652,580.993,1.72119,0.289184,0.283104,0.00608
+653,679.89,1.47083,0.288736,0.282624,0.006112
+654,686.787,1.45605,0.289152,0.283072,0.00608
+655,461.99,2.16455,0.289248,0.283488,0.00576
+656,565.199,1.76929,0.288768,0.282976,0.005792
+657,710.248,1.40796,0.29008,0.284672,0.005408
+658,726.241,1.37695,0.288768,0.283648,0.00512
+659,551.056,1.8147,0.288768,0.284064,0.004704
+660,523.752,1.9093,0.566656,0.561152,0.005504
+661,656.989,1.52209,0.288992,0.283456,0.005536
+662,674.017,1.48364,0.289024,0.28288,0.006144
+663,612.532,1.63257,0.289088,0.284096,0.004992
+664,443.146,2.25659,0.289152,0.28304,0.006112
+665,589.947,1.69507,0.28896,0.284064,0.004896
+666,679.834,1.47095,0.288992,0.283936,0.005056
+667,550.168,1.81763,0.289312,0.283424,0.005888
+668,484.504,2.06396,0.565504,0.559584,0.00592
+669,638.106,1.56714,0.2888,0.283552,0.005248
+670,695.298,1.43823,0.288896,0.284192,0.004704
+671,610.069,1.63916,0.288768,0.284096,0.004672
+672,405.745,2.4646,0.288768,0.284128,0.00464
+673,562.328,1.77832,0.289088,0.284096,0.004992
+674,605.201,1.65234,0.289984,0.284672,0.005312
+675,456.786,2.18921,0.28928,0.28336,0.00592
+676,690.958,1.44727,0.288768,0.283936,0.004832
+677,614.738,1.62671,0.288768,0.284192,0.004576
+678,622.303,1.60693,0.288768,0.283936,0.004832
+679,518.941,1.927,0.28912,0.283392,0.005728
+680,542.804,1.84229,0.565248,0.560512,0.004736
+681,519.401,1.92529,0.566272,0.56128,0.004992
+682,494.865,2.02075,0.575488,0.560992,0.014496
+683,491.186,2.03589,0.582112,0.576224,0.005888
+684,532.294,1.87866,0.581632,0.577344,0.004288
+685,576.495,1.73462,0.581248,0.575936,0.005312
+686,487.097,2.05298,0.583936,0.577792,0.006144
+687,500.183,1.99927,0.581824,0.5768,0.005024
+688,575.443,1.73779,0.581632,0.5768,0.004832
+689,534.586,1.87061,0.584896,0.5792,0.005696
+690,489.308,2.0437,0.5848,0.579584,0.005216
+691,553.738,1.80591,0.582912,0.577536,0.005376
+692,572.787,1.74585,0.582464,0.577664,0.0048
+693,529.336,1.88916,0.58368,0.579072,0.004608
+694,443.002,2.25732,0.580224,0.576128,0.004096
+695,589.013,1.69775,0.581664,0.576288,0.005376
+696,580.746,1.72192,0.581344,0.575712,0.005632
+697,380.882,2.62549,0.587808,0.581696,0.006112
+698,511.169,1.9563,0.566432,0.56112,0.005312
+699,609.524,1.64062,0.288448,0.28272,0.005728
+700,642.006,1.55762,0.289184,0.284416,0.004768
+701,524.859,1.90527,0.289312,0.283552,0.00576
+702,669.062,1.49463,0.28912,0.283072,0.006048
+703,597.172,1.67456,0.289216,0.283616,0.0056
+704,734.182,1.36206,0.290048,0.284128,0.00592
+705,482.734,2.07153,0.290208,0.284672,0.005536
+706,415.669,2.40576,0.289088,0.28336,0.005728
+707,622.871,1.60547,0.288864,0.284224,0.00464
+708,591.224,1.69141,0.289344,0.283296,0.006048
+709,475.119,2.10474,0.289184,0.283328,0.005856
+710,561.711,1.78027,0.289152,0.283104,0.006048
+711,627.932,1.59253,0.289216,0.283072,0.006144
+712,537.11,1.86182,0.288992,0.284,0.004992
+713,509.326,1.96338,0.288768,0.28432,0.004448
+714,631.028,1.58472,0.28912,0.284,0.00512
+715,600.498,1.66528,0.290016,0.284672,0.005344
+716,592.764,1.68701,0.288768,0.284384,0.004384
+717,518.744,1.92773,0.28896,0.283968,0.004992
+718,600.498,1.66528,0.288768,0.284352,0.004416
+719,659.475,1.51636,0.28912,0.284192,0.004928
+720,650.159,1.53809,0.288928,0.283936,0.004992
+721,498.6,2.00562,0.289248,0.283264,0.005984
+722,640.3,1.56177,0.289376,0.283232,0.006144
+723,655.78,1.5249,0.29008,0.284672,0.005408
+724,531.465,1.88159,0.289216,0.28336,0.005856
+725,412.031,2.427,0.28912,0.284064,0.005056
+726,640.901,1.5603,0.289152,0.284032,0.00512
+727,689.911,1.44946,0.288768,0.284224,0.004544
+728,619.949,1.61304,0.28912,0.283008,0.006112
+729,626.3,1.59668,0.28912,0.284032,0.005088
+730,604.843,1.65332,0.288768,0.28464,0.004128
+731,647.077,1.54541,0.288768,0.284224,0.004544
+732,646.975,1.54565,0.289184,0.28304,0.006144
+733,454.303,2.20117,0.29008,0.284672,0.005408
+734,600.322,1.66577,0.289856,0.284672,0.005184
+735,577.634,1.7312,0.28896,0.284064,0.004896
+736,703.78,1.4209,0.288768,0.284224,0.004544
+737,487.503,2.05127,0.2888,0.283968,0.004832
+738,519.007,1.92676,0.565248,0.560128,0.00512
+739,448.385,2.23022,0.565632,0.56112,0.004512
+740,332.927,3.00366,0.2888,0.284064,0.004736
+741,630.251,1.58667,0.289152,0.28352,0.005632
+742,540.655,1.84961,0.289184,0.28352,0.005664
+743,617.705,1.6189,0.288768,0.28448,0.004288
+744,458.012,2.18335,0.288768,0.28416,0.004608
+745,760.773,1.31445,0.2888,0.284288,0.004512
+746,695.18,1.43848,0.288704,0.282624,0.00608
+747,658.627,1.51831,0.289952,0.284672,0.00528
+748,438.356,2.28125,0.289216,0.28336,0.005856
+749,607.445,1.64624,0.288768,0.283904,0.004864
+750,487.155,2.05273,0.290176,0.284256,0.00592
+751,537.815,1.85938,0.289216,0.283488,0.005728
+752,411.493,2.43018,0.289184,0.28352,0.005664
+753,670.816,1.49072,0.290144,0.284672,0.005472
+754,688.751,1.4519,0.288768,0.284352,0.004416
+755,500.733,1.99707,0.288768,0.284256,0.004512
+756,577.797,1.73071,0.29024,0.284672,0.005568
+757,609.705,1.64014,0.28912,0.283616,0.005504
+758,588.76,1.69849,0.288704,0.283008,0.005696
+759,441.522,2.26489,0.28912,0.283296,0.005824
+760,487.968,2.04932,0.582528,0.576384,0.006144
+761,528.243,1.89307,0.582944,0.577536,0.005408
+762,552.692,1.80933,0.584928,0.579584,0.005344
+763,513.605,1.94702,0.289152,0.283584,0.005568
+764,504.993,1.98022,0.5832,0.577568,0.005632
+765,522.516,1.91382,0.582528,0.577824,0.004704
+766,456.837,2.18896,0.588928,0.581632,0.007296
+767,467.847,2.13745,0.5832,0.577536,0.005664
+768,568.968,1.75757,0.582816,0.577536,0.00528
+769,461.469,2.16699,0.581632,0.57712,0.004512
+770,499.147,2.00342,0.58368,0.579456,0.004224
+771,547.228,1.82739,0.581824,0.575744,0.00608
+772,579.924,1.72437,0.581632,0.5768,0.004832
+773,303.497,3.29492,0.613856,0.608256,0.0056
+774,783.324,1.27661,0.289952,0.284672,0.00528
+775,618.357,1.61719,0.2888,0.283968,0.004832
+776,635.137,1.57446,0.289024,0.284,0.005024
+777,493.911,2.02466,0.288768,0.284192,0.004576
+778,674.017,1.48364,0.28912,0.28304,0.00608
+779,653.895,1.5293,0.288768,0.284096,0.004672
+780,672.468,1.48706,0.288768,0.28416,0.004608
+781,526.749,1.89844,0.29072,0.284672,0.006048
+782,439.532,2.27515,0.564672,0.559104,0.005568
+783,662.033,1.5105,0.289376,0.28336,0.006016
+784,615.2,1.62549,0.289248,0.283552,0.005696
+785,525.061,1.90454,0.290048,0.284672,0.005376
+786,631.417,1.58374,0.289152,0.283008,0.006144
+787,558.799,1.78955,0.288896,0.284128,0.004768
+788,678.033,1.47485,0.289152,0.282976,0.006176
+789,498.722,2.00513,0.290016,0.284672,0.005344
+790,640.1,1.56226,0.289152,0.283072,0.00608
+791,467.58,2.13867,0.290112,0.284672,0.00544
+792,579.513,1.72559,0.28912,0.284,0.00512
+793,446.625,2.23901,0.2904,0.284672,0.005728
+794,598.393,1.67114,0.289152,0.28304,0.006112
+795,637.311,1.56909,0.305152,0.284672,0.02048
+796,478.169,2.09131,0.288832,0.284,0.004832
+797,510.914,1.95728,0.289984,0.284672,0.005312
+798,699.334,1.42993,0.288768,0.28416,0.004608
+799,406.793,2.45825,0.288928,0.284032,0.004896
+800,448.729,2.22852,0.288928,0.283936,0.004992
+801,691.541,1.44604,0.288768,0.284192,0.004576
+802,668.844,1.49512,0.28912,0.283264,0.005856
+803,596.129,1.67749,0.289216,0.283584,0.005632
+804,436.581,2.29053,0.288768,0.284384,0.004384
+805,669.281,1.49414,0.288768,0.284224,0.004544
+806,629.863,1.58765,0.289088,0.283072,0.006016
+807,651.607,1.53467,0.288768,0.283904,0.004864
+808,457.347,2.18652,0.288768,0.284352,0.004416
+809,508.063,1.96826,0.2888,0.284064,0.004736
+810,717.967,1.39282,0.289248,0.283104,0.006144
+811,616.589,1.62183,0.288864,0.28448,0.004384
+812,567.077,1.76343,0.288768,0.284256,0.004512
+813,419.715,2.38257,0.565792,0.561184,0.004608
+814,689.795,1.44971,0.29008,0.284672,0.005408
+815,628.221,1.5918,0.29008,0.284672,0.005408
+816,233.697,4.27905,0.288768,0.284384,0.004384
+817,496.906,2.01245,0.28992,0.284672,0.005248
+818,635.827,1.57275,0.28912,0.283168,0.005952
+819,478.449,2.09009,0.290144,0.284672,0.005472
+820,599.006,1.66943,0.28912,0.284,0.00512
+821,571.11,1.75098,0.290816,0.284672,0.006144
+822,546.425,1.83008,0.28912,0.283296,0.005824
+823,611.161,1.63623,0.288768,0.28416,0.004608
+824,647.896,1.54346,0.288928,0.283936,0.004992
+825,641.906,1.55786,0.289152,0.283232,0.00592
+826,481.26,2.07788,0.288928,0.283392,0.005536
+827,515.22,1.94092,0.565248,0.56048,0.004768
+828,645.141,1.55005,0.288768,0.284064,0.004704
+829,623.915,1.60278,0.288768,0.284352,0.004416
+830,420.88,2.37598,0.289312,0.28352,0.005792
+831,616.775,1.62134,0.565248,0.5608,0.004448
+832,648.923,1.54102,0.288768,0.284256,0.004512
+833,500.733,1.99707,0.288832,0.284064,0.004768
+834,410.915,2.43359,0.288768,0.284192,0.004576
+835,616.682,1.62158,0.289952,0.284672,0.00528
+836,580.417,1.7229,0.29008,0.284384,0.005696
+837,620.606,1.61133,0.288928,0.283936,0.004992
+838,559.181,1.78833,0.288768,0.284384,0.004384
+839,491.658,2.03394,0.565152,0.559552,0.0056
+840,541.584,1.84644,0.28912,0.283584,0.005536
+841,514.25,1.94458,0.28896,0.283968,0.004992
+842,426.489,2.34473,0.565984,0.559872,0.006112
+843,544.608,1.83618,0.289088,0.284224,0.004864
+844,654.627,1.52759,0.289216,0.283232,0.005984
+845,554.638,1.80298,0.288768,0.284448,0.00432
+846,450.555,2.21948,0.564192,0.55984,0.004352
+847,598.655,1.67041,0.28896,0.283904,0.005056
+848,612.623,1.63232,0.288768,0.283808,0.00496
+849,434.405,2.302,0.288832,0.284096,0.004736
+850,561.327,1.78149,0.28992,0.284672,0.005248
+851,582.397,1.71704,0.288832,0.284096,0.004736
+852,648.204,1.54272,0.290528,0.284672,0.005856
+853,491.186,2.03589,0.288768,0.284352,0.004416
+854,611.252,1.63599,0.28912,0.28336,0.00576
+855,675.239,1.48096,0.28912,0.283168,0.005952
+856,541.155,1.8479,0.289184,0.284096,0.005088
+857,441.237,2.26636,0.288768,0.284352,0.004416
+858,557.355,1.79419,0.288768,0.284096,0.004672
+859,437.28,2.28687,0.288768,0.284096,0.004672
+860,383.7,2.6062,0.288768,0.284288,0.00448
+861,643.317,1.55444,0.28912,0.283584,0.005536
+862,646.261,1.54736,0.289792,0.284608,0.005184
+863,571.907,1.74854,0.288896,0.283936,0.00496
+864,390.058,2.56372,0.2888,0.284352,0.004448
+865,587.999,1.70068,0.288768,0.284384,0.004384
+866,478.84,2.08838,0.289088,0.284,0.005088
+867,390.17,2.56299,0.288832,0.283904,0.004928
+868,524.053,1.9082,0.288768,0.284,0.004768
+869,502.269,1.99097,0.289088,0.283456,0.005632
+870,492.249,2.03149,0.288768,0.283968,0.0048
+871,542.301,1.84399,0.583328,0.57808,0.005248
+872,488.783,2.0459,0.582816,0.5776,0.005216
+873,440.762,2.2688,0.585536,0.579584,0.005952
+874,352.223,2.83911,0.566176,0.561312,0.004864
+875,510.151,1.96021,0.289312,0.283424,0.005888
+876,533.959,1.8728,0.28912,0.283072,0.006048
+877,523.986,1.90845,0.289056,0.284096,0.00496
+878,617.332,1.61987,0.29024,0.284672,0.005568
+879,625.726,1.59814,0.288768,0.284096,0.004672
+880,531.396,1.88184,0.28848,0.28272,0.00576
+881,383.126,2.61011,0.288768,0.28432,0.004448
+882,549.283,1.82056,0.288768,0.284128,0.00464
+883,543.236,1.84082,0.289184,0.283232,0.005952
+884,508.378,1.96704,0.289152,0.283072,0.00608
+885,571.987,1.74829,0.28912,0.284032,0.005088
+886,598.83,1.66992,0.288768,0.284032,0.004736
+887,643.62,1.55371,0.288832,0.282848,0.005984
+888,500.611,1.99756,0.290144,0.284672,0.005472
+889,384.565,2.60034,0.288928,0.284128,0.0048
+890,544.608,1.83618,0.289152,0.284064,0.005088
+891,547.374,1.8269,0.288896,0.283968,0.004928
+892,468.114,2.13623,0.565824,0.5608,0.005024
+893,605.917,1.65039,0.288768,0.28416,0.004608
+894,648.204,1.54272,0.288768,0.284256,0.004512
+895,612.532,1.63257,0.2888,0.28416,0.00464
+896,493.137,2.02783,0.566848,0.561184,0.005664
+897,568.81,1.75806,0.28912,0.283648,0.005472
+898,649.952,1.53857,0.289984,0.284672,0.005312
+899,447.748,2.2334,0.288768,0.28448,0.004288
+900,582.232,1.71753,0.288832,0.283488,0.005344
+901,678.595,1.47363,0.28928,0.283488,0.005792
+902,594.83,1.68115,0.290176,0.284672,0.005504
+903,580.252,1.72339,0.288768,0.284192,0.004576
+904,531.81,1.88037,0.565472,0.559328,0.006144
+905,571.11,1.75098,0.566496,0.561152,0.005344
+906,494.03,2.02417,0.5664,0.561056,0.005344
+907,510.66,1.95825,0.56624,0.561728,0.004512
+908,609.705,1.64014,0.288768,0.284576,0.004192
+909,604.486,1.6543,0.28896,0.284128,0.004832
+910,609.615,1.64038,0.288832,0.284448,0.004384
+911,524.657,1.90601,0.289824,0.284608,0.005216
+912,582.066,1.71802,0.288832,0.284,0.004832
+913,687.248,1.45508,0.289568,0.283424,0.006144
+914,656.621,1.52295,0.29008,0.284672,0.005408
+915,490.951,2.03687,0.289344,0.283424,0.00592
+916,534.098,1.87231,0.289216,0.283488,0.005728
+917,696.007,1.43677,0.289216,0.283072,0.006144
+918,646.363,1.54712,0.288928,0.284576,0.004352
+919,545.697,1.83252,0.289088,0.284096,0.004992
+920,592.164,1.68872,0.290112,0.284672,0.00544
+921,590.287,1.69409,0.28912,0.28336,0.00576
+922,676.466,1.47827,0.28912,0.283104,0.006016
+923,483.703,2.06738,0.288992,0.283104,0.005888
+924,553.364,1.80713,0.289024,0.284,0.005024
+925,641.805,1.55811,0.28976,0.283616,0.006144
+926,632.196,1.58179,0.290304,0.284384,0.00592
+927,571.827,1.74878,0.28928,0.283424,0.005856
+928,512.577,1.95093,0.566272,0.56096,0.005312
+929,694.12,1.44067,0.288256,0.282784,0.005472
+930,591.224,1.69141,0.289152,0.28304,0.006112
+931,600.939,1.66406,0.288768,0.28448,0.004288
+932,578.286,1.72925,0.582048,0.577184,0.004864
+933,494.328,2.02295,0.583552,0.578176,0.005376
+934,464.821,2.15137,0.566848,0.561152,0.005696
+935,506.492,1.97437,0.56656,0.561152,0.005408
+936,630.154,1.58691,0.287744,0.28336,0.004384
+937,573.75,1.74292,0.2888,0.284128,0.004672
+938,653.27,1.53076,0.288768,0.283648,0.00512
+939,491.953,2.03271,0.288768,0.28432,0.004448
+940,601.999,1.66113,0.289184,0.28304,0.006144
+941,628.703,1.59058,0.288768,0.284544,0.004224
+942,707.304,1.41382,0.288768,0.283712,0.005056
+943,503.07,1.98779,0.289024,0.284032,0.004992
+944,608.98,1.64209,0.288864,0.28336,0.005504
+945,733.787,1.36279,0.289024,0.282912,0.006112
+946,703.901,1.42065,0.289184,0.283136,0.006048
+947,615.755,1.62402,0.288768,0.284256,0.004512
+948,494.149,2.02368,0.565248,0.560896,0.004352
+949,576.739,1.73389,0.565248,0.56048,0.004768
+950,536.336,1.8645,0.565248,0.560704,0.004544
+951,464.346,2.15356,0.289824,0.28464,0.005184
+952,456.939,2.18848,0.58192,0.575936,0.005984
+953,586.651,1.70459,0.581728,0.57744,0.004288
+954,483.304,2.06909,0.588,0.581568,0.006432
+955,500.733,1.99707,0.582944,0.577536,0.005408
+956,535.915,1.86597,0.581632,0.57696,0.004672
+957,565.433,1.76855,0.588576,0.583712,0.004864
+958,500.611,1.99756,0.585248,0.57968,0.005568
+959,549.135,1.82104,0.581664,0.577088,0.004576
+960,399.766,2.50146,0.600288,0.595424,0.004864
+961,382.09,2.61719,0.568576,0.5632,0.005376
+962,553.588,1.8064,0.58336,0.577536,0.005824
+963,537.745,1.85962,0.587776,0.582656,0.00512
+964,540.156,1.85132,0.292544,0.28688,0.005664
+965,635.63,1.57324,0.288608,0.283072,0.005536
+966,468.221,2.13574,0.581984,0.57632,0.005664
+967,558.952,1.78906,0.581728,0.576608,0.00512
+968,411.493,2.43018,0.601568,0.595552,0.006016
+969,444.831,2.24805,0.582592,0.578496,0.004096
+970,560.789,1.7832,0.58304,0.577888,0.005152
+971,554.038,1.80493,0.591872,0.587424,0.004448
+972,443.578,2.25439,0.58368,0.577568,0.006112
+973,493.911,2.02466,0.565376,0.560608,0.004768
+974,492.841,2.02905,0.56672,0.561152,0.005568
+975,343.106,2.91455,0.58144,0.576032,0.005408
+976,575.119,1.73877,0.2888,0.284096,0.004704
+977,637.708,1.56812,0.288768,0.28416,0.004608
+978,699.812,1.42896,0.289024,0.282944,0.00608
+979,501.715,1.99316,0.288768,0.284256,0.004512
+980,657.147,1.52173,0.288768,0.28272,0.006048
+981,650.985,1.53613,0.289152,0.283392,0.00576
+982,679.608,1.47144,0.288768,0.284288,0.00448
+983,558.342,1.79102,0.288864,0.284224,0.00464
+984,564.498,1.77148,0.58176,0.576128,0.005632
+985,502.762,1.98901,0.60192,0.595968,0.005952
+986,368.81,2.71143,0.58288,0.577632,0.005248
+987,487.039,2.05322,0.289184,0.2832,0.005984
+988,574.474,1.74072,0.288768,0.284128,0.00464
+989,539.515,1.85352,0.289184,0.283488,0.005696
+990,644.532,1.55151,0.290208,0.284672,0.005536
+991,470.372,2.12598,0.288768,0.284,0.004768
+992,616.682,1.62158,0.288768,0.284352,0.004416
+993,553.065,1.80811,0.289248,0.283168,0.00608
+994,449.863,2.2229,0.288928,0.283904,0.005024
+995,367.124,2.72388,0.581984,0.576512,0.005472
+996,499.695,2.00122,0.582624,0.57648,0.006144
+997,427.825,2.3374,0.288704,0.282944,0.00576
+998,590.883,1.69238,0.290144,0.284672,0.005472
+999,616.311,1.62256,0.2888,0.284096,0.004704
+1000,632.099,1.58203,0.290048,0.284672,0.005376
+1001,431.521,2.31738,0.288896,0.284128,0.004768
+1002,582.812,1.71582,0.288768,0.284352,0.004416
+1003,625.153,1.59961,0.288768,0.28448,0.004288
+1004,615.292,1.62524,0.295072,0.290368,0.004704
+1005,459.708,2.17529,0.28912,0.284064,0.005056
+1006,575.119,1.73877,0.290208,0.284672,0.005536
+1007,673.02,1.48584,0.289056,0.283552,0.005504
+1008,500.122,1.99951,0.290016,0.284672,0.005344
+1009,434.543,2.30127,0.289312,0.2832,0.006112
+1010,690.725,1.44775,0.28992,0.284672,0.005248
+1011,627.547,1.59351,0.28896,0.284032,0.004928
+1012,503.565,1.98584,0.288768,0.284352,0.004416
+1013,586.567,1.70483,0.288928,0.284,0.004928
+1014,622.209,1.60718,0.289152,0.28416,0.004992
+1015,573.83,1.74268,0.289216,0.283584,0.005632
+1016,421.096,2.37476,0.288832,0.284,0.004832
+1017,490.892,2.03711,0.290144,0.284672,0.005472
+1018,661.499,1.51172,0.288832,0.284448,0.004384
+1019,602.53,1.65967,0.290016,0.284672,0.005344
+1020,530.983,1.8833,0.289056,0.28304,0.006016
+1021,634.744,1.57544,0.289344,0.28336,0.005984
+1022,633.565,1.57837,0.288768,0.284352,0.004416
+1023,633.174,1.57935,0.290144,0.284672,0.005472
+1024,538.593,1.85669,0.288896,0.284032,0.004864
+1025,566.764,1.7644,0.290336,0.284672,0.005664
+1026,660.645,1.51367,0.289984,0.284672,0.005312
+1027,661.392,1.51196,0.289792,0.28464,0.005152
+1028,446.82,2.23804,0.28928,0.283136,0.006144
+1029,576.171,1.7356,0.290816,0.284672,0.006144
+1030,656.831,1.52246,0.288864,0.28448,0.004384
+1031,644.633,1.55127,0.288992,0.284608,0.004384
+1032,581.818,1.71875,0.289152,0.283584,0.005568
+1033,463.611,2.15698,0.565248,0.560544,0.004704
+1034,605.022,1.65283,0.2888,0.284192,0.004608
+1035,644.735,1.55103,0.289888,0.28464,0.005248
+1036,558.571,1.79028,0.289216,0.283616,0.0056
+1037,487.155,2.05273,0.288704,0.283136,0.005568
+1038,681.304,1.46777,0.289056,0.283584,0.005472
+1039,648.204,1.54272,0.289216,0.283392,0.005824
+1040,527.291,1.89648,0.28912,0.282976,0.006144
+1041,590.712,1.69287,0.289184,0.283296,0.005888
+1042,644.836,1.55078,0.288864,0.284064,0.0048
+1043,599.181,1.66895,0.289952,0.284672,0.00528
+1044,548.62,1.82275,0.288768,0.284384,0.004384
+1045,491.363,2.03516,0.565248,0.560832,0.004416
+1046,580.499,1.72266,0.288864,0.283616,0.005248
+1047,681.304,1.46777,0.288768,0.284192,0.004576
+1048,534.726,1.87012,0.288768,0.284544,0.004224
+1049,602.442,1.65991,0.290016,0.284416,0.0056
+1050,713.962,1.40063,0.289248,0.2832,0.006048
+1051,607.715,1.64551,0.288992,0.283968,0.005024
+1052,626.587,1.59595,0.288768,0.284288,0.00448
+1053,476.889,2.09692,0.290144,0.284672,0.005472
+1054,593.451,1.68506,0.2888,0.284032,0.004768
+1055,638.503,1.56616,0.289248,0.283328,0.00592
+1056,688.288,1.45288,0.28896,0.2832,0.00576
+1057,619.012,1.61548,0.289184,0.283072,0.006112
+1058,533.889,1.87305,0.564992,0.55952,0.005472
+1059,552.617,1.80957,0.565536,0.559616,0.00592
+1060,617.146,1.62036,0.304832,0.299008,0.005824
+1061,618.451,1.61694,0.288768,0.28432,0.004448
+1062,649.54,1.53955,0.289216,0.283616,0.0056
+1063,652.541,1.53247,0.288768,0.284256,0.004512
+1064,654.209,1.52856,0.289184,0.283296,0.005888
+1065,548.253,1.82397,0.289792,0.284608,0.005184
+1066,499.086,2.00366,0.565248,0.561024,0.004224
+1067,660.006,1.51514,0.288896,0.283232,0.005664
+1068,716.209,1.39624,0.288864,0.284032,0.004832
+1069,557.886,1.79248,0.289984,0.284672,0.005312
+1070,696.717,1.4353,0.288992,0.284,0.004992
+1071,754.328,1.32568,0.29024,0.284672,0.005568
+1072,690.958,1.44727,0.289056,0.282912,0.006144
+1073,564.576,1.77124,0.288768,0.283776,0.004992
+1074,554.938,1.802,0.28944,0.284512,0.004928
+1075,544.102,1.83789,0.566176,0.56128,0.004896
+1076,563.954,1.77319,0.566336,0.561024,0.005312
+1077,543.308,1.84058,0.578656,0.573344,0.005312
+1078,539.515,1.85352,0.582144,0.577984,0.00416
+1079,526.072,1.90088,0.581632,0.576672,0.00496
+1080,649.026,1.54077,0.582272,0.57792,0.004352
+1081,542.517,1.84326,0.584064,0.57936,0.004704
+1082,469.456,2.13013,0.58496,0.579584,0.005376
+1083,542.804,1.84229,0.564832,0.559488,0.005344
+1084,529.062,1.89014,0.567008,0.561152,0.005856
+1085,525.196,1.90405,0.565696,0.559552,0.006144
+1086,580.17,1.72363,0.565248,0.5608,0.004448
+1087,588.844,1.69824,0.565248,0.559104,0.006144
+1088,679.947,1.4707,0.28912,0.282976,0.006144
+1089,492.782,2.0293,0.565536,0.560608,0.004928
+1090,537.533,1.86035,0.56528,0.559392,0.005888
+1091,450.952,2.21753,0.289824,0.28464,0.005184
+1092,577.389,1.73193,0.29024,0.284672,0.005568
+1093,653.374,1.53052,0.289024,0.284,0.005024
+1094,655.255,1.52612,0.289056,0.283968,0.005088
+1095,643.721,1.55347,0.288768,0.283872,0.004896
+1096,482.62,2.07202,0.567296,0.56288,0.004416
+1097,471.401,2.12134,0.28992,0.284672,0.005248
+1098,636.025,1.57227,0.28912,0.284032,0.005088
+1099,678.483,1.47388,0.29024,0.284672,0.005568
+1100,539.231,1.85449,0.289824,0.28464,0.005184
+1101,438.732,2.2793,0.288768,0.284256,0.004512
+1102,596.302,1.677,0.289824,0.284672,0.005152
+1103,659.581,1.51611,0.289056,0.283936,0.00512
+1104,677.809,1.47534,0.290048,0.284672,0.005376
+1105,684.263,1.46143,0.290272,0.284672,0.0056
+1106,623.155,1.60474,0.288768,0.284352,0.004416
+1107,634.154,1.5769,0.288768,0.284608,0.00416
+1108,460.639,2.1709,0.29968,0.293632,0.006048
+1109,460.639,2.1709,0.28912,0.284128,0.004992
+1110,632.685,1.58057,0.290144,0.284672,0.005472
+1111,589.183,1.69727,0.289824,0.284672,0.005152
+1112,635.433,1.57373,0.288768,0.284288,0.00448
+1113,580.746,1.72192,0.288736,0.282656,0.00608
+1114,543.813,1.83887,0.565408,0.560448,0.00496
+1115,531.879,1.88013,0.564736,0.559424,0.005312
+1116,490.951,2.03687,0.563808,0.559328,0.00448
+1117,388.21,2.57593,0.29008,0.284672,0.005408
+1118,622.966,1.60522,0.2904,0.284672,0.005728
+1119,653.895,1.5293,0.289056,0.284064,0.004992
+1120,619.667,1.61377,0.290144,0.284672,0.005472
+1121,548.033,1.82471,0.289024,0.284096,0.004928
+1122,590.287,1.69409,0.28912,0.283584,0.005536
+1123,558.342,1.79102,0.288832,0.284448,0.004384
+1124,513.283,1.94824,0.290048,0.284672,0.005376
+1125,377.094,2.65186,0.580416,0.574272,0.006144
+1126,666.884,1.49951,0.288928,0.283232,0.005696
+1127,576.739,1.73389,0.288768,0.284384,0.004384
+1128,575.604,1.7373,0.288896,0.284,0.004896
+1129,618.825,1.61597,0.288832,0.284032,0.0048
+1130,681.985,1.46631,0.288768,0.28416,0.004608
+1131,613.725,1.62939,0.288768,0.284096,0.004672
+1132,594.917,1.68091,0.29008,0.284672,0.005408
+1133,621.925,1.60791,0.288768,0.284416,0.004352
+1134,569.047,1.75732,0.289824,0.28464,0.005184
+1135,635.926,1.57251,0.288928,0.28416,0.004768
+1136,534.726,1.87012,0.288704,0.283456,0.005248
+1137,579.022,1.72705,0.288768,0.284416,0.004352
+1138,655.046,1.52661,0.28912,0.283456,0.005664
+1139,694.708,1.43945,0.289952,0.284672,0.00528
+1140,618.264,1.61743,0.288768,0.284352,0.004416
+1141,473.198,2.11328,0.289376,0.283616,0.00576
+1142,648.409,1.54224,0.289248,0.283264,0.005984
+1143,507.245,1.97144,0.289216,0.283072,0.006144
+1144,517.172,1.93359,0.289152,0.2832,0.005952
+1145,541.369,1.84717,0.288992,0.283072,0.00592
+1146,570.394,1.75317,0.290048,0.284672,0.005376
+1147,601.204,1.66333,0.289312,0.283168,0.006144
+1148,495.344,2.0188,0.28912,0.28352,0.0056
+1149,579.759,1.72485,0.288768,0.284576,0.004192
+1150,607.265,1.64673,0.289152,0.283584,0.005568
+1151,608.799,1.64258,0.290208,0.284672,0.005536
+1152,433.347,2.30762,0.288768,0.283968,0.0048
+1153,523.183,1.91138,0.289248,0.283552,0.005696
+1154,584.558,1.71069,0.289216,0.283328,0.005888
+1155,626.3,1.59668,0.289952,0.284352,0.0056
+1156,506.367,1.97485,0.289184,0.28304,0.006144
+1157,583.642,1.71338,0.290048,0.284672,0.005376
+1158,680.851,1.46875,0.288768,0.284352,0.004416
+1159,581.901,1.71851,0.29024,0.284672,0.005568
+1160,436.767,2.28955,0.288768,0.284,0.004768
+1161,660.645,1.51367,0.288768,0.284064,0.004704
+1162,603.952,1.65576,0.289248,0.283328,0.00592
+1163,576.983,1.73315,0.28896,0.28416,0.0048
+1164,544.753,1.83569,0.288768,0.284256,0.004512
+1165,578.613,1.72827,0.28928,0.283552,0.005728
+1166,671.255,1.48975,0.28912,0.2832,0.00592
+1167,680.06,1.47046,0.289248,0.283552,0.005696
+1168,477.222,2.09546,0.289184,0.28304,0.006144
+1169,401.687,2.4895,0.28992,0.284608,0.005312
+1170,646.057,1.54785,0.289152,0.283072,0.00608
+1171,510.978,1.95703,0.289184,0.283616,0.005568
+1172,468.543,2.13428,0.565248,0.559104,0.006144
+1173,538.664,1.85645,0.566688,0.561152,0.005536
+1174,554.113,1.80469,0.288768,0.28384,0.004928
+1175,457.347,2.18652,0.289024,0.28416,0.004864
+1176,621.737,1.6084,0.288768,0.284352,0.004416
+1177,605.112,1.65259,0.287392,0.282848,0.004544
+1178,372.465,2.68481,0.2888,0.284064,0.004736
+1179,438.356,2.28125,0.289856,0.284608,0.005248
+1180,741.357,1.34888,0.288832,0.284032,0.0048
+1181,625.534,1.59863,0.288768,0.284128,0.00464
+1182,561.25,1.78174,0.289216,0.283648,0.005568
+1183,533.125,1.87573,0.565248,0.560416,0.004832
+1184,571.429,1.75,0.565312,0.560512,0.0048
+1185,490.304,2.03955,0.565248,0.560416,0.004832
+1186,501.838,1.99268,0.288864,0.28448,0.004384
+1187,569.839,1.75488,0.288928,0.282784,0.006144
+1188,660.965,1.51294,0.2888,0.284256,0.004544
+1189,647.077,1.54541,0.28928,0.283328,0.005952
+1190,508.126,1.96802,0.28912,0.283104,0.006016
+1191,610.796,1.63721,0.288768,0.284384,0.004384
+1192,735.104,1.36035,0.289184,0.28336,0.005824
+1193,641.906,1.55786,0.288768,0.284512,0.004256
+1194,521.717,1.91675,0.288768,0.284512,0.004256
+1195,522.183,1.91504,0.56512,0.559712,0.005408
+1196,604.665,1.65381,0.290048,0.284672,0.005376
+1197,614.646,1.62695,0.289088,0.28352,0.005568
+1198,611.07,1.63647,0.288768,0.284448,0.00432
+1199,635.926,1.57251,0.28896,0.283424,0.005536
+1200,664.073,1.50586,0.290144,0.284576,0.005568
+1201,707.793,1.41284,0.289888,0.284672,0.005216
+1202,610.159,1.63892,0.289312,0.283328,0.005984
+1203,495.464,2.01831,0.28848,0.282688,0.005792
+1204,659.263,1.51685,0.288768,0.283872,0.004896
+1205,606.725,1.64819,0.288768,0.284416,0.004352
+1206,619.386,1.6145,0.288864,0.283968,0.004896
+1207,622.682,1.60596,0.28896,0.284576,0.004384
+1208,619.949,1.61304,0.289248,0.283328,0.00592
+1209,634.94,1.57495,0.288768,0.284256,0.004512
+1210,723.547,1.38208,0.289856,0.28464,0.005216
+1211,585.729,1.70728,0.288736,0.282624,0.006112
+1212,493.791,2.02515,0.565248,0.560352,0.004896
+1213,475.505,2.10303,0.568576,0.563232,0.005344
+1214,389.872,2.56494,0.288768,0.282688,0.00608
+1215,495.464,2.01831,0.288896,0.283968,0.004928
+1216,664.288,1.50537,0.288768,0.28416,0.004608
+1217,546.498,1.82983,0.288832,0.284448,0.004384
+1218,518.481,1.92871,0.28992,0.284,0.00592
+1219,637.708,1.56812,0.289824,0.28464,0.005184
+1220,669.062,1.49463,0.287776,0.283392,0.004384
+1221,630.542,1.58594,0.28928,0.283168,0.006112
+1222,578.123,1.72974,0.288768,0.284224,0.004544
+1223,536.688,1.86328,0.28992,0.284544,0.005376
+1224,604.397,1.65454,0.288896,0.284,0.004896
+1225,663.32,1.50757,0.289152,0.2832,0.005952
+1226,486.345,2.05615,0.289184,0.28304,0.006144
+1227,439.344,2.27612,0.29024,0.284672,0.005568
+1228,525.061,1.90454,0.289152,0.283008,0.006144
+1229,580.252,1.72339,0.288992,0.284,0.004992
+1230,383.054,2.6106,0.289056,0.284032,0.005024
+1231,552.99,1.80835,0.289152,0.28304,0.006112
+1232,626.587,1.59595,0.288768,0.284224,0.004544
+1233,452.247,2.21118,0.28992,0.284672,0.005248
+1234,505.554,1.97803,0.566432,0.561152,0.00528
+1235,557.431,1.79395,0.566336,0.561056,0.00528
+1236,539.586,1.85327,0.569696,0.564736,0.00496
+1237,480.469,2.0813,0.567296,0.562336,0.00496
+1238,538.027,1.85864,0.565248,0.560896,0.004352
+1239,536.758,1.86304,0.5648,0.559104,0.005696
+1240,544.102,1.83789,0.289184,0.283488,0.005696
+1241,517.041,1.93408,0.288768,0.284384,0.004384
+1242,659.051,1.51733,0.289824,0.28464,0.005184
+1243,631.611,1.58325,0.289184,0.283456,0.005728
+1244,642.409,1.55664,0.289056,0.284064,0.004992
+1245,549.872,1.8186,0.289152,0.283104,0.006048
+1246,669.5,1.49365,0.288992,0.284608,0.004384
+1247,659.051,1.51733,0.289152,0.283328,0.005824
+1248,629.573,1.58838,0.288768,0.284256,0.004512
+1249,440.241,2.27148,0.288768,0.284512,0.004256
+1250,724.443,1.38037,0.288768,0.284224,0.004544
+1251,629.283,1.58911,0.289888,0.284608,0.00528
+1252,581.901,1.71851,0.288768,0.284352,0.004416
+1253,574.958,1.73926,0.288768,0.284384,0.004384
+1254,502.022,1.99194,0.565152,0.559712,0.00544
+1255,510.66,1.95825,0.565632,0.55984,0.005792
+1256,300.955,3.32275,0.565248,0.56096,0.004288
+1257,566.215,1.76611,0.288768,0.284192,0.004576
+1258,552.841,1.80884,0.289408,0.28336,0.006048
+1259,588.76,1.69849,0.2888,0.284288,0.004512
+1260,529.131,1.88989,0.289056,0.284032,0.005024
+1261,599.268,1.6687,0.289376,0.283296,0.00608
+1262,639.201,1.56445,0.290144,0.284672,0.005472
+1263,617.053,1.62061,0.289824,0.284672,0.005152
+1264,466.515,2.14355,0.28928,0.28336,0.00592
+1265,502.084,1.9917,0.290272,0.284672,0.0056
+1266,612.898,1.63159,0.289152,0.283008,0.006144
+1267,552.767,1.80908,0.290016,0.284672,0.005344
+1268,619.855,1.61328,0.288768,0.28432,0.004448
+1269,578.368,1.729,0.289312,0.28336,0.005952
+1270,537.18,1.86157,0.290208,0.284672,0.005536
+1271,646.873,1.5459,0.290336,0.284672,0.005664
+1272,530.295,1.88574,0.289184,0.283648,0.005536
+1273,543.741,1.83911,0.288768,0.28416,0.004608
+1274,489.659,2.04224,0.28896,0.284,0.00496
+1275,525.196,1.90405,0.29024,0.284672,0.005568
+1276,468.007,2.13672,0.565248,0.559104,0.006144
+1277,683.692,1.46265,0.2888,0.282848,0.005952
+1278,647.691,1.54395,0.289248,0.283456,0.005792
+1279,477.501,2.09424,0.288768,0.284,0.004768
+1280,532.571,1.87769,0.565568,0.559968,0.0056
+1281,571.349,1.75024,0.565472,0.560736,0.004736
+1282,417.874,2.39307,0.56752,0.561856,0.005664
+1283,558.799,1.78955,0.2888,0.284224,0.004576
+1284,619.855,1.61328,0.290144,0.284672,0.005472
+1285,626.108,1.59717,0.2896,0.283456,0.006144
+1286,659.051,1.51733,0.288768,0.28432,0.004448
+1287,517.433,1.93262,0.290176,0.284672,0.005504
+1288,619.949,1.61304,0.289184,0.28304,0.006144
+1289,707.793,1.41284,0.288768,0.284064,0.004704
+1290,642.611,1.55615,0.29008,0.284192,0.005888
+1291,395.252,2.53003,0.288768,0.284448,0.00432
+1292,694.237,1.44043,0.289952,0.284672,0.00528
+1293,615.847,1.62378,0.289984,0.284672,0.005312
+1294,619.667,1.61377,0.288768,0.28416,0.004608
+1295,605.738,1.65088,0.28928,0.283552,0.005728
+1296,601.204,1.66333,0.289088,0.284096,0.004992
+1297,652.022,1.53369,0.289184,0.283552,0.005632
+1298,691.892,1.44531,0.289984,0.284672,0.005312
+1299,588.506,1.69922,0.28912,0.283264,0.005856
+1300,447.895,2.23267,0.564576,0.559264,0.005312
+1301,586.399,1.70532,0.290016,0.28464,0.005376
+1302,649.231,1.54028,0.288768,0.284352,0.004416
+1303,552.17,1.81104,0.2888,0.283968,0.004832
+1304,522.249,1.91479,0.565248,0.560576,0.004672
+1305,528.516,1.89209,0.565376,0.559712,0.005664
+1306,615.847,1.62378,0.289184,0.283168,0.006016
+1307,514.379,1.94409,0.56688,0.561568,0.005312
+1308,657.147,1.52173,0.290176,0.284672,0.005504
+1309,557.355,1.79419,0.288864,0.284032,0.004832
+1310,648.409,1.54224,0.288768,0.284352,0.004416
+1311,606.366,1.64917,0.288928,0.283072,0.005856
+1312,472.27,2.11743,0.565248,0.560672,0.004576
+1313,555.315,1.80078,0.564608,0.559264,0.005344
+1314,566.528,1.76514,0.565824,0.559776,0.006048
+1315,555.917,1.79883,0.289056,0.28304,0.006016
+1316,503.009,1.98804,0.565248,0.560416,0.004832
+1317,553.663,1.80615,0.565376,0.559392,0.005984
+1318,459.193,2.17773,0.288768,0.284,0.004768
+1319,532.294,1.87866,0.289152,0.283488,0.005664
+1320,619.855,1.61328,0.288992,0.284032,0.00496
+1321,662.998,1.5083,0.288768,0.284544,0.004224
+1322,624.295,1.60181,0.288992,0.284032,0.00496
+1323,475.781,2.10181,0.2888,0.284288,0.004512
+1324,695.298,1.43823,0.289152,0.284064,0.005088
+1325,676.801,1.47754,0.289888,0.284672,0.005216
+1326,598.218,1.67163,0.299488,0.29488,0.004608
+1327,487.329,2.052,0.288896,0.284512,0.004384
+1328,508,1.96851,0.288768,0.28432,0.004448
+1329,464.504,2.15283,0.289056,0.284096,0.00496
+1330,576.901,1.7334,0.288768,0.284224,0.004544
+1331,481.542,2.07666,0.565312,0.560288,0.005024
+1332,649.643,1.53931,0.288864,0.284032,0.004832
+1333,619.855,1.61328,0.28928,0.28352,0.00576
+1334,583.642,1.71338,0.28992,0.284672,0.005248
+1335,391.437,2.55469,0.565344,0.559552,0.005792
+1336,547.594,1.82617,0.289312,0.283168,0.006144
+1337,543.885,1.83862,0.290336,0.284672,0.005664
+1338,376.644,2.65503,0.288768,0.284064,0.004704
+1339,552.096,1.81128,0.289248,0.283104,0.006144
+1340,666.125,1.50122,0.288768,0.284576,0.004192
+1341,561.943,1.77954,0.289216,0.283392,0.005824
+1342,493.019,2.02832,0.564832,0.559392,0.00544
+1343,616.96,1.62085,0.290048,0.284672,0.005376
+1344,484.275,2.06494,0.288768,0.284352,0.004416
+1345,450.506,2.21973,0.29008,0.284672,0.005408
+1346,616.682,1.62158,0.289056,0.284032,0.005024
+1347,599.356,1.66846,0.288768,0.28432,0.004448
+1348,548.914,1.82178,0.289184,0.283488,0.005696
+1349,503.875,1.98462,0.29008,0.284672,0.005408
+1350,646.873,1.5459,0.289216,0.283072,0.006144
+1351,657.253,1.52148,0.2888,0.284416,0.004384
+1352,473.362,2.11255,0.289888,0.284672,0.005216
+1353,564.654,1.771,0.288768,0.284224,0.004544
+1354,592.079,1.68896,0.288928,0.284,0.004928
+1355,576.983,1.73315,0.289024,0.284096,0.004928
+1356,603.952,1.65576,0.289248,0.283424,0.005824
+1357,554.188,1.80444,0.289408,0.283616,0.005792
+1358,641.805,1.55811,0.288896,0.284096,0.0048
+1359,676.019,1.47925,0.2888,0.284224,0.004576
+1360,581.57,1.71948,0.289184,0.2832,0.005984
+1361,256.112,3.90454,0.288768,0.28416,0.004608
+1362,245.519,4.073,0.289184,0.283584,0.0056
+1363,253.199,3.94946,0.28896,0.284,0.00496
+1364,588.929,1.698,0.288768,0.284224,0.004544
+1365,411.782,2.42847,0.289056,0.284032,0.005024
+1366,516.65,1.93555,0.289792,0.284576,0.005216
+1367,593.968,1.68359,0.288768,0.284544,0.004224
+1368,591.053,1.69189,0.288768,0.284288,0.00448
+1369,474.349,2.10815,0.289248,0.284288,0.00496
+1370,622.398,1.60669,0.288768,0.284288,0.00448
+1371,637.907,1.56763,0.289216,0.284128,0.005088
+1372,557.431,1.79395,0.289312,0.283168,0.006144
+1373,595.609,1.67896,0.289888,0.284672,0.005216
+1374,602.176,1.66064,0.288896,0.284512,0.004384
+1375,467.42,2.1394,0.290112,0.284576,0.005536
+1376,295.165,3.38794,0.289888,0.284672,0.005216
+1377,518.744,1.92773,0.289024,0.284128,0.004896
+1378,508.82,1.96533,0.288992,0.283968,0.005024
+1379,421.096,2.37476,0.290368,0.284672,0.005696
+1380,551.798,1.81226,0.288928,0.284032,0.004896
+1381,362.703,2.75708,0.289248,0.283616,0.005632
+1382,281.919,3.54712,0.289856,0.284672,0.005184
+1383,413.07,2.4209,0.289312,0.283552,0.00576
+1384,316.611,3.15845,0.590688,0.584544,0.006144
+1385,423.753,2.35986,0.588192,0.581824,0.006368
+1386,464.136,2.15454,0.288768,0.284512,0.004256
+1387,441.379,2.26562,0.289184,0.283072,0.006112
+1388,191.796,5.21387,0.292,0.28672,0.00528
+1389,547.52,1.82642,0.28928,0.2832,0.00608
+1390,459.76,2.17505,0.289856,0.28464,0.005216
+1391,436.534,2.29077,0.288992,0.284096,0.004896
+1392,545.769,1.83228,0.29008,0.284672,0.005408
+1393,278.734,3.58765,0.288768,0.28432,0.004448
+1394,514.832,1.94238,0.586976,0.581408,0.005568
+1395,409.723,2.44067,0.587776,0.581568,0.006208
+1396,526.208,1.90039,0.288768,0.284,0.004768
+1397,562.715,1.7771,0.290144,0.284672,0.005472
+1398,557.052,1.79517,0.290016,0.284672,0.005344
+1399,480.751,2.08008,0.289248,0.283552,0.005696
+1400,386.816,2.58521,0.288768,0.284352,0.004416
+1401,304.966,3.27905,0.566432,0.56112,0.005312
+1402,503.937,1.98438,0.289248,0.283584,0.005664
+1403,582.895,1.71558,0.288768,0.284288,0.00448
+1404,527.427,1.896,0.289216,0.283104,0.006112
+1405,587.072,1.70337,0.28928,0.283168,0.006112
+1406,444.734,2.24854,0.289344,0.283424,0.00592
+1407,388.504,2.57397,0.28896,0.283968,0.004992
+1408,552.394,1.8103,0.28992,0.284608,0.005312
+1409,414.911,2.41016,0.289792,0.284608,0.005184
+1410,380.669,2.62695,0.29568,0.291008,0.004672
+1411,547.155,1.82764,0.289056,0.284096,0.00496
+1412,402.121,2.48682,0.288896,0.283968,0.004928
+1413,354.601,2.82007,0.290208,0.284672,0.005536
+1414,305.877,3.26929,0.569536,0.564192,0.005344
+1415,541.441,1.84692,0.289472,0.283648,0.005824
+1416,594.398,1.68237,0.290144,0.284672,0.005472
+1417,632.782,1.58032,0.28992,0.284672,0.005248
+1418,430.931,2.32056,0.288992,0.284096,0.004896
+1419,399.376,2.50391,0.28912,0.28416,0.00496
+1420,319.302,3.13184,0.288768,0.284448,0.00432
+1421,503.194,1.9873,0.288768,0.284288,0.00448
+1422,566.92,1.76392,0.290048,0.284672,0.005376
+1423,617.332,1.61987,0.289984,0.284672,0.005312
+1424,471.401,2.12134,0.288992,0.283968,0.005024
+1425,399.961,2.50024,0.290016,0.284672,0.005344
+1426,603.24,1.65771,0.288928,0.284544,0.004384
+1427,536.828,1.86279,0.289856,0.284672,0.005184
+1428,357.012,2.80103,0.288896,0.284,0.004896
+1429,405.826,2.46411,0.28928,0.283168,0.006112
+1430,397.67,2.51465,0.289088,0.284096,0.004992
+1431,318.507,3.13965,0.289856,0.284672,0.005184
+1432,552.096,1.81128,0.290432,0.284672,0.00576
+1433,543.164,1.84106,0.288896,0.284512,0.004384
+1434,325.363,3.07349,0.289088,0.283488,0.0056
+1435,490.421,2.03906,0.290144,0.284672,0.005472
+1436,397.438,2.51611,0.288768,0.284544,0.004224
+1437,166.234,6.01562,0.289312,0.283424,0.005888
+1438,572.147,1.7478,0.288768,0.28432,0.004448
+1439,587.83,1.70117,0.289312,0.283328,0.005984
+1440,572.307,1.74731,0.288704,0.283488,0.005216
+1441,590.798,1.69263,0.288768,0.284032,0.004736
+1442,483.418,2.0686,0.289984,0.284672,0.005312
+1443,409.682,2.44092,0.584384,0.57952,0.004864
+1444,334.067,2.99341,0.289216,0.283072,0.006144
+1445,435.282,2.29736,0.5656,0.559456,0.006144
+1446,491.894,2.03296,0.289216,0.283136,0.00608
+1447,489.835,2.0415,0.289984,0.284672,0.005312
+1448,467.687,2.13818,0.588544,0.582272,0.006272
+1449,530.57,1.88477,0.587392,0.581632,0.00576
+1450,458.936,2.17896,0.565728,0.560032,0.005696
+1451,591.309,1.69116,0.289024,0.283424,0.0056
+1452,576.414,1.73486,0.290048,0.284672,0.005376
+1453,560.942,1.78271,0.290304,0.284672,0.005632
+1454,600.851,1.66431,0.288832,0.284032,0.0048
+1455,531.396,1.88184,0.290112,0.284672,0.00544
+1456,482.62,2.07202,0.289664,0.28352,0.006144
+1457,551.576,1.81299,0.288768,0.28416,0.004608
+1458,572.947,1.74536,0.289088,0.284,0.005088
+1459,374.509,2.67017,0.290112,0.284672,0.00544
+1460,523.919,1.90869,0.289312,0.283616,0.005696
+1461,579.022,1.72705,0.290176,0.284672,0.005504
+1462,484.848,2.0625,0.290112,0.284672,0.00544
+1463,480.864,2.07959,0.289856,0.284672,0.005184
+1464,584.225,1.71167,0.289376,0.283296,0.00608
+1465,476.889,2.09692,0.290016,0.284672,0.005344
+1466,422.007,2.36963,0.289184,0.283328,0.005856
+1467,605.559,1.65137,0.288768,0.284192,0.004576
+1468,518.088,1.93018,0.29008,0.284672,0.005408
+1469,478.728,2.08887,0.288768,0.28416,0.004608
+1470,487.445,2.05151,0.28912,0.284032,0.005088
+1471,600.851,1.66431,0.288768,0.284192,0.004576
+1472,540.227,1.85107,0.289184,0.284096,0.005088
+1473,375.883,2.6604,0.289056,0.284128,0.004928
+1474,613.082,1.6311,0.289152,0.283616,0.005536
+1475,608.618,1.64307,0.288896,0.284544,0.004352
+1476,465.878,2.14648,0.288768,0.28448,0.004288
+1477,431.022,2.32007,0.2888,0.284064,0.004736
+1478,566.293,1.76587,0.288768,0.28432,0.004448
+1479,522.382,1.91431,0.288832,0.284448,0.004384
+1480,415.922,2.4043,0.2888,0.284416,0.004384
+1481,537.603,1.86011,0.29888,0.292864,0.006016
+1482,564.265,1.77222,0.294784,0.289344,0.00544
+1483,408.864,2.4458,0.290208,0.284576,0.005632
+1484,423.315,2.3623,0.289152,0.284032,0.00512
+1485,548.694,1.82251,0.288768,0.28416,0.004608
+1486,514.379,1.94409,0.2888,0.283968,0.004832
+1487,468.918,2.13257,0.28896,0.284,0.00496
+1488,546.789,1.82886,0.289184,0.28304,0.006144
+1489,566.842,1.76416,0.289088,0.284032,0.005056
+1490,388.063,2.5769,0.289024,0.28416,0.004864
+1491,558.799,1.78955,0.289248,0.283104,0.006144
+1492,549.356,1.82031,0.289344,0.283392,0.005952
+1493,475.892,2.10132,0.288768,0.284064,0.004704
+1494,467.1,2.14087,0.289184,0.284064,0.00512
+1495,562.869,1.77661,0.28928,0.2832,0.00608
+1496,562.715,1.7771,0.2888,0.284,0.0048
+1497,277,3.61011,0.288768,0.284096,0.004672
+1498,620.23,1.6123,0.289856,0.284672,0.005184
+1499,256.561,3.89771,0.290112,0.284672,0.00544
+1500,398.56,2.50903,0.288768,0.28384,0.004928
+1501,292.383,3.42017,0.28928,0.283328,0.005952
+1502,513.992,1.94556,0.289152,0.283552,0.0056
+1503,428.631,2.33301,0.29008,0.284672,0.005408
+1504,407.441,2.45435,0.288768,0.284512,0.004256
+1505,405.384,2.4668,0.28928,0.283136,0.006144
+1506,470.588,2.125,0.289152,0.283008,0.006144
+1507,318.408,3.14062,0.28992,0.284672,0.005248
+1508,521.451,1.91772,0.288768,0.284352,0.004416
+1509,574.071,1.74194,0.28912,0.284,0.00512
+1510,244.947,4.08252,0.28896,0.283904,0.005056
+1511,320.651,3.11865,0.290112,0.284672,0.00544
+1512,202.442,4.9397,0.28928,0.28352,0.00576
+1513,563.954,1.77319,0.288768,0.284096,0.004672
+1514,453.097,2.20703,0.289952,0.28416,0.005792
+1515,563.954,1.77319,0.289088,0.284096,0.004992
+1516,596.476,1.67651,0.290112,0.284672,0.00544
+1517,539.942,1.85205,0.289184,0.28352,0.005664
+1518,479.681,2.08472,0.304256,0.284224,0.020032
+1519,557.279,1.79443,0.289312,0.283168,0.006144
+1520,579.759,1.72485,0.288896,0.284,0.004896
+1521,572.307,1.74731,0.288896,0.284512,0.004384
+1522,332.36,3.00879,0.298816,0.284224,0.014592
+1523,413.487,2.41846,0.583744,0.577856,0.005888
+1524,482.564,2.07227,0.57056,0.565248,0.005312
+1525,667.318,1.49854,0.2904,0.284672,0.005728
+1526,736.558,1.35767,0.288768,0.283648,0.00512
+1527,629.186,1.58936,0.290304,0.284672,0.005632
+1528,563.489,1.77466,0.289216,0.283264,0.005952
+1529,593.279,1.68555,0.289312,0.283584,0.005728
+1530,522.049,1.91553,0.289344,0.283488,0.005856
+1531,514.121,1.94507,0.289152,0.283584,0.005568
+1532,476.834,2.09717,0.288768,0.284544,0.004224
+1533,693.649,1.44165,0.288992,0.284032,0.00496
+1534,745.134,1.34204,0.288992,0.283296,0.005696
+1535,656.41,1.52344,0.28896,0.284032,0.004928
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..66a8dac
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,524.977,1.98295,0.242965,0.00580259,0.195649,0.00544838,0.00487584,0.00546,0.0204437,0.00528481
+max_1024,781.232,4.03479,0.710688,0.009728,0.663744,0.020544,0.007424,0.02048,0.03696,0.014176
+min_1024,247.844,1.28003,0.173984,0.004096,0.126752,0.004064,0.004064,0.004256,0.018464,0.004192
+512,386.47,2.58752,0.27232,0.006176,0.225088,0.005536,0.004832,0.00528,0.019328,0.00608
+513,394.017,2.53796,0.189504,0.005952,0.141152,0.005504,0.005088,0.005568,0.02032,0.00592
+514,483.589,2.06787,0.187808,0.005952,0.141312,0.00432,0.005536,0.004672,0.02048,0.005536
+515,409.866,2.43982,0.282656,0.005888,0.235776,0.0056,0.00464,0.0056,0.020576,0.004576
+516,420.534,2.37793,0.206016,0.006144,0.158752,0.005088,0.005312,0.004928,0.02048,0.005312
+517,474.074,2.10938,0.211584,0.006752,0.163648,0.004544,0.005792,0.004448,0.02048,0.00592
+518,380.369,2.62903,0.653248,0.006144,0.605376,0.0048,0.006272,0.005312,0.019296,0.006048
+519,395.443,2.52881,0.440032,0.005856,0.39296,0.00464,0.005728,0.004512,0.02048,0.005856
+520,349.682,2.85974,0.28976,0.006272,0.242496,0.005536,0.004736,0.005408,0.020192,0.00512
+521,469.563,2.12964,0.192256,0.004864,0.145408,0.006112,0.004128,0.006048,0.020512,0.005184
+522,445.993,2.24219,0.18544,0.005824,0.138976,0.004736,0.004096,0.006144,0.020288,0.005376
+523,361.71,2.76465,0.229728,0.005024,0.183616,0.004832,0.005504,0.004704,0.02048,0.005568
+524,486.403,2.05591,0.203008,0.005664,0.156288,0.005536,0.004832,0.004288,0.02048,0.00592
+525,501.408,1.99438,0.192512,0.005792,0.14576,0.005952,0.004288,0.005856,0.02048,0.004384
+526,291.925,3.42554,0.253984,0.006144,0.206176,0.004768,0.00576,0.0056,0.01936,0.006176
+527,595.435,1.67944,0.23696,0.00576,0.18896,0.00608,0.005216,0.005088,0.02048,0.005376
+528,520.623,1.92078,0.187424,0.006144,0.140352,0.005056,0.00528,0.00496,0.020448,0.005184
+529,395.5,2.52844,0.271648,0.006144,0.212384,0.004704,0.005632,0.016896,0.02048,0.005408
+530,466.329,2.14441,0.449536,0.0064,0.401376,0.004896,0.006144,0.00528,0.019296,0.006144
+531,444.083,2.25183,0.43312,0.007136,0.384448,0.004672,0.005696,0.004544,0.02048,0.006144
+532,401.569,2.49023,0.585696,0.00832,0.536672,0.004448,0.005792,0.004448,0.02048,0.005536
+533,392.619,2.547,0.222464,0.006144,0.174112,0.006112,0.004096,0.006144,0.02048,0.005376
+534,506.21,1.97546,0.193568,0.00512,0.147456,0.005984,0.004256,0.005856,0.020064,0.004832
+535,472.897,2.11462,0.2376,0.005568,0.19056,0.004608,0.005856,0.004384,0.02048,0.006144
+536,388.504,2.57397,0.4608,0.005888,0.413792,0.005536,0.004832,0.00528,0.020576,0.004896
+537,566.059,1.7666,0.2048,0.006144,0.157728,0.00608,0.004128,0.006048,0.020224,0.004448
+538,403.289,2.47961,0.219328,0.005888,0.172512,0.005888,0.00432,0.005824,0.020192,0.004704
+539,410.174,2.43799,0.462816,0.00624,0.415072,0.004736,0.005632,0.004608,0.02048,0.006048
+540,333.659,2.99707,0.239456,0.005792,0.19248,0.005056,0.005312,0.004928,0.02048,0.005408
+541,402.397,2.48511,0.219616,0.004864,0.17344,0.004736,0.005472,0.004832,0.020416,0.005856
+542,518.415,1.92896,0.204064,0.006144,0.157184,0.004608,0.00512,0.00512,0.02048,0.005408
+543,460.354,2.17224,0.191776,0.006144,0.143392,0.006112,0.004096,0.006144,0.02048,0.005408
+544,468.302,2.13538,0.260704,0.004736,0.214848,0.005504,0.004832,0.00528,0.019392,0.006112
+545,446.431,2.23999,0.191872,0.006144,0.144512,0.004992,0.005376,0.004864,0.02048,0.005504
+546,487.851,2.0498,0.234912,0.007712,0.186144,0.0048,0.005664,0.004576,0.02048,0.005536
+547,247.844,4.03479,0.28032,0.006144,0.233088,0.005536,0.004832,0.004352,0.02048,0.005888
+548,465.613,2.14771,0.231072,0.004672,0.18432,0.006144,0.004096,0.006144,0.02032,0.005376
+549,295.388,3.38538,0.2456,0.005696,0.197536,0.006144,0.004096,0.006144,0.02048,0.005504
+550,560.328,1.78467,0.196672,0.005472,0.15024,0.005632,0.004608,0.005536,0.020192,0.004992
+551,429.35,2.3291,0.190016,0.006368,0.140608,0.0048,0.005568,0.004672,0.02048,0.00752
+552,429.463,2.32849,0.217888,0.004896,0.172032,0.00608,0.00416,0.00592,0.020288,0.004512
+553,318.284,3.14185,0.328736,0.00608,0.280576,0.006144,0.004096,0.006144,0.02048,0.005216
+554,480.272,2.08215,0.291648,0.004928,0.24576,0.005696,0.004544,0.005536,0.02048,0.004704
+555,397.13,2.51807,0.24032,0.005024,0.194016,0.00464,0.005728,0.004512,0.02048,0.00592
+556,356.468,2.8053,0.461408,0.008128,0.41232,0.0056,0.00464,0.005472,0.020288,0.00496
+557,493.286,2.02722,0.198368,0.006144,0.150912,0.004736,0.005728,0.004512,0.02048,0.005856
+558,485.279,2.06067,0.233536,0.005888,0.186368,0.005088,0.005408,0.004832,0.02048,0.005472
+559,281.87,3.54773,0.477024,0.006144,0.42976,0.004416,0.0056,0.00464,0.02048,0.005984
+560,524.456,1.90674,0.247808,0.0048,0.201664,0.005056,0.00528,0.004992,0.020448,0.005568
+561,428.676,2.33276,0.262176,0.005952,0.215232,0.005984,0.004256,0.005856,0.020224,0.004672
+562,351.543,2.8446,0.463712,0.007008,0.415424,0.005504,0.005056,0.00576,0.020512,0.004448
+563,405.645,2.46521,0.555104,0.007904,0.506176,0.005632,0.004576,0.005824,0.020608,0.004384
+564,536.547,1.86377,0.186368,0.006144,0.139264,0.005504,0.004736,0.005408,0.02032,0.004992
+565,464.979,2.15063,0.1904,0.0056,0.143488,0.004896,0.005472,0.004768,0.02048,0.005696
+566,349.116,2.86438,0.3072,0.006144,0.251904,0.005504,0.004736,0.005376,0.028704,0.004832
+567,368.976,2.71021,0.190464,0.006144,0.14336,0.005536,0.004704,0.005408,0.020352,0.00496
+568,465.746,2.14709,0.224544,0.006144,0.177248,0.005024,0.005312,0.004928,0.02048,0.005408
+569,356.143,2.80786,0.32224,0.0048,0.247744,0.020544,0.005568,0.004672,0.032768,0.006144
+570,507.527,1.97034,0.446528,0.00656,0.393248,0.00608,0.00528,0.005024,0.024576,0.00576
+571,405.786,2.46436,0.669248,0.006144,0.616448,0.006144,0.006144,0.007776,0.02064,0.005952
+572,399.337,2.50415,0.53968,0.008192,0.489472,0.005952,0.004288,0.00592,0.020448,0.005408
+573,404.663,2.47119,0.44032,0.005984,0.393344,0.005504,0.004768,0.005376,0.020544,0.0048
+574,515.707,1.93909,0.196192,0.006464,0.148576,0.004928,0.004192,0.006144,0.02048,0.005408
+575,408.355,2.44885,0.260512,0.00464,0.214624,0.005536,0.004832,0.004352,0.020416,0.006112
+576,423.973,2.35864,0.188416,0.006112,0.141344,0.006048,0.004192,0.00592,0.020288,0.004512
+577,483.76,2.06714,0.455168,0.006624,0.406976,0.00512,0.005248,0.004992,0.02048,0.005728
+578,346.957,2.8822,0.372032,0.006144,0.32512,0.004608,0.005248,0.004992,0.02048,0.00544
+579,442.285,2.26099,0.200544,0.004768,0.1536,0.006144,0.005216,0.005024,0.02048,0.005312
+580,510.437,1.95911,0.212992,0.006144,0.165024,0.00496,0.005824,0.004448,0.02048,0.006112
+581,436.93,2.2887,0.216096,0.006144,0.167936,0.006144,0.004096,0.006144,0.020448,0.005184
+582,455.668,2.19458,0.426944,0.007104,0.378848,0.005536,0.004768,0.006016,0.020448,0.004224
+583,416.218,2.40259,0.2048,0.007328,0.156384,0.005536,0.004832,0.00528,0.019296,0.006144
+584,437.116,2.28772,0.578912,0.008192,0.528384,0.006144,0.004096,0.006144,0.02048,0.005472
+585,406.168,2.46204,0.202304,0.006048,0.15504,0.0048,0.005568,0.004672,0.02048,0.005696
+586,458.936,2.17896,0.196896,0.005632,0.151616,0.004864,0.004064,0.006144,0.02032,0.004256
+587,508.315,1.96729,0.221184,0.006144,0.172032,0.006144,0.005152,0.005088,0.020416,0.006208
+588,368.876,2.71094,0.665504,0.006144,0.6144,0.006144,0.007424,0.0064,0.018944,0.006048
+589,407.461,2.45422,0.434176,0.008192,0.385024,0.005632,0.004608,0.005504,0.020288,0.004928
+590,429.485,2.32837,0.255456,0.006432,0.20688,0.00576,0.005504,0.005088,0.02048,0.005312
+591,334.34,2.99097,0.6536,0.005536,0.605056,0.006144,0.006144,0.005472,0.019104,0.006144
+592,504.651,1.98157,0.184,0.006112,0.136672,0.005024,0.00528,0.00496,0.02048,0.005472
+593,414.806,2.41077,0.240224,0.008,0.190432,0.004928,0.00544,0.0048,0.021664,0.00496
+594,455.389,2.19592,0.434592,0.007104,0.385024,0.006144,0.0056,0.00464,0.02048,0.0056
+595,467.153,2.14062,0.1896,0.006144,0.142336,0.00512,0.00528,0.00496,0.020352,0.005408
+596,465.534,2.14807,0.232832,0.006144,0.185376,0.005088,0.00528,0.00496,0.02048,0.005504
+597,497.51,2.01001,0.194112,0.005792,0.146976,0.004928,0.00544,0.0048,0.02048,0.005696
+598,478.896,2.08813,0.206848,0.006144,0.161216,0.004672,0.004096,0.006144,0.020096,0.00448
+599,400.548,2.49658,0.207872,0.005088,0.16144,0.005504,0.004832,0.005408,0.019456,0.006144
+600,337.453,2.96338,0.441376,0.008192,0.391168,0.006144,0.004096,0.005984,0.020608,0.005184
+601,576.901,1.7334,0.187968,0.007264,0.139456,0.004832,0.005504,0.004736,0.02048,0.005696
+602,370.578,2.69849,0.25632,0.00816,0.206912,0.00448,0.006144,0.00528,0.019296,0.006048
+603,393.034,2.54431,0.444064,0.009728,0.39168,0.006144,0.005376,0.004864,0.02048,0.005792
+604,459.141,2.17798,0.212992,0.008,0.163936,0.005504,0.004832,0.005344,0.019232,0.006144
+605,312.017,3.20496,0.208896,0.005632,0.162304,0.00576,0.00448,0.005664,0.020128,0.004928
+606,599.707,1.66748,0.178272,0.006048,0.132608,0.004704,0.004096,0.006144,0.020288,0.004384
+607,444.493,2.24976,0.45728,0.007072,0.407552,0.006144,0.004096,0.006144,0.02048,0.005792
+608,399.084,2.50574,0.260576,0.004768,0.214528,0.005504,0.004832,0.00432,0.02048,0.006144
+609,528.653,1.8916,0.188576,0.006272,0.141312,0.005664,0.004576,0.005568,0.020384,0.0048
+610,378.786,2.64001,0.474432,0.00944,0.422688,0.006016,0.005536,0.004832,0.02048,0.00544
+611,498.327,2.00671,0.24736,0.007488,0.198688,0.004896,0.005344,0.004896,0.02048,0.005568
+612,387.769,2.57886,0.427392,0.007296,0.37776,0.006144,0.004096,0.006144,0.02048,0.005472
+613,419.371,2.38452,0.468672,0.005824,0.420384,0.006112,0.005184,0.005056,0.02048,0.005632
+614,429.08,2.33057,0.529344,0.006656,0.48128,0.004544,0.006144,0.005664,0.020224,0.004832
+615,554.75,1.80261,0.186816,0.004544,0.141312,0.005824,0.004416,0.005696,0.02048,0.004544
+616,476.695,2.09778,0.439424,0.005984,0.391328,0.006112,0.004128,0.00608,0.020544,0.005248
+617,336.995,2.96741,0.217088,0.005888,0.169856,0.005536,0.004832,0.004352,0.021536,0.005088
+618,590.585,1.69324,0.19856,0.006144,0.151552,0.004128,0.005664,0.004544,0.02048,0.006048
+619,403.746,2.47681,0.239488,0.005568,0.192608,0.004992,0.005376,0.004864,0.02048,0.0056
+620,455.972,2.19312,0.260128,0.005696,0.21344,0.006048,0.004192,0.005952,0.020416,0.004384
+621,427.87,2.33716,0.446112,0.006144,0.397312,0.006144,0.00512,0.00512,0.02048,0.005792
+622,557.431,1.79395,0.194112,0.008,0.145472,0.004224,0.005568,0.004672,0.02048,0.005696
+623,458.987,2.17871,0.220704,0.006144,0.173248,0.004928,0.00544,0.0048,0.02048,0.005664
+624,397.477,2.51587,0.672672,0.005024,0.620256,0.007744,0.00624,0.006304,0.02096,0.006144
+625,475.395,2.10352,0.641024,0.006144,0.595872,0.004192,0.004096,0.005696,0.02048,0.004544
+626,334.231,2.99194,0.26656,0.0056,0.221216,0.004896,0.004096,0.006016,0.020096,0.00464
+627,482.962,2.07056,0.43408,0.00624,0.3864,0.004768,0.0056,0.00464,0.02048,0.005952
+628,436.441,2.29126,0.206848,0.00592,0.159968,0.006144,0.004096,0.006144,0.02016,0.004416
+629,415.205,2.40845,0.567264,0.007616,0.517088,0.006144,0.005216,0.005024,0.02048,0.005696
+630,465.296,2.14917,0.433856,0.006144,0.385024,0.006112,0.005536,0.004736,0.02048,0.005824
+631,402.674,2.4834,0.674208,0.005664,0.623456,0.006144,0.006144,0.006144,0.021696,0.00496
+632,349.966,2.85742,0.633504,0.008864,0.583456,0.005504,0.004832,0.005376,0.020384,0.005088
+633,392.488,2.54785,0.233888,0.005568,0.186656,0.0048,0.006144,0.005312,0.02032,0.005088
+634,386.124,2.58984,0.24176,0.0056,0.1952,0.005888,0.004352,0.005728,0.020512,0.00448
+635,409.6,2.44141,0.215552,0.004736,0.16976,0.005504,0.004832,0.00528,0.02048,0.00496
+636,503.999,1.98413,0.208992,0.005568,0.16224,0.004608,0.005728,0.004512,0.02048,0.005856
+637,449.665,2.22388,0.223232,0.005984,0.176288,0.005824,0.004416,0.005728,0.02048,0.004512
+638,262.178,3.81421,0.231424,0.005696,0.18608,0.004832,0.004096,0.006112,0.018464,0.006144
+639,573.911,1.74243,0.240128,0.004768,0.1944,0.005728,0.004512,0.005632,0.020544,0.004544
+640,365.453,2.73633,0.233536,0.005824,0.186752,0.005568,0.004672,0.005472,0.019104,0.006144
+641,431.976,2.31494,0.19056,0.006656,0.142816,0.004608,0.00576,0.00448,0.02048,0.00576
+642,439.91,2.27319,0.458304,0.007808,0.407968,0.006112,0.0056,0.00464,0.02048,0.005696
+643,404.623,2.47144,0.278912,0.005664,0.231936,0.005504,0.005024,0.00528,0.020448,0.005056
+644,418.857,2.38745,0.216192,0.005888,0.168192,0.00592,0.00432,0.006144,0.020448,0.00528
+645,454.959,2.198,0.264544,0.005664,0.217504,0.004704,0.005664,0.004576,0.02048,0.005952
+646,402.2,2.48633,0.227488,0.0056,0.180928,0.005504,0.004736,0.005504,0.020448,0.004768
+647,365.518,2.73584,0.438272,0.00768,0.389632,0.00592,0.00432,0.005824,0.020544,0.004352
+648,502.515,1.98999,0.450656,0.005536,0.40416,0.00576,0.00448,0.005632,0.020576,0.004512
+649,421.096,2.37476,0.485888,0.006656,0.437632,0.004736,0.0056,0.00464,0.02048,0.006144
+650,476.501,2.09863,0.198656,0.007872,0.149824,0.005888,0.004352,0.005728,0.019968,0.005024
+651,288.43,3.46704,0.200256,0.006144,0.152704,0.004992,0.005376,0.004864,0.02048,0.005696
+652,403.467,2.47852,0.194304,0.006144,0.14688,0.004672,0.005664,0.004576,0.02048,0.005888
+653,589.013,1.69775,0.19136,0.004992,0.145408,0.005696,0.004544,0.0056,0.020416,0.004704
+654,453.448,2.20532,0.4392,0.006432,0.391552,0.005536,0.00496,0.005824,0.020416,0.00448
+655,481.429,2.07715,0.601152,0.00784,0.551264,0.00608,0.00416,0.005952,0.02064,0.005216
+656,524.792,1.90552,0.188416,0.006144,0.141312,0.005696,0.004544,0.005568,0.020448,0.004704
+657,567.156,1.76318,0.179936,0.006144,0.131072,0.006144,0.004096,0.006144,0.02048,0.005856
+658,291.967,3.42505,0.518656,0.006656,0.470176,0.00496,0.00608,0.00544,0.020608,0.004736
+659,621.831,1.60815,0.200544,0.004768,0.153408,0.006144,0.004096,0.006144,0.020352,0.005632
+660,522.983,1.91211,0.186368,0.006144,0.139168,0.005536,0.0048,0.005312,0.02048,0.004928
+661,459.502,2.17627,0.211264,0.005792,0.164512,0.005792,0.004448,0.005696,0.02048,0.004544
+662,394.986,2.53174,0.20112,0.005632,0.154528,0.004096,0.00576,0.00448,0.02048,0.006144
+663,568.81,1.75806,0.1976,0.005088,0.151424,0.005536,0.004832,0.00528,0.020352,0.005088
+664,556.9,1.79565,0.21008,0.008192,0.160896,0.004992,0.005344,0.004896,0.020416,0.005344
+665,321.583,3.10962,0.567616,0.007776,0.51888,0.005824,0.004416,0.005728,0.020576,0.004416
+666,536.758,1.86304,0.227328,0.00608,0.181344,0.005088,0.004096,0.006048,0.020224,0.004448
+667,418.771,2.38794,0.211744,0.004896,0.165888,0.005952,0.004288,0.00592,0.020224,0.004576
+668,524.389,1.90698,0.253952,0.006144,0.206848,0.005792,0.004448,0.005696,0.020384,0.00464
+669,365.421,2.73657,0.654848,0.006048,0.606304,0.005888,0.004352,0.006144,0.02048,0.005632
+670,484.447,2.06421,0.440928,0.006944,0.391168,0.006144,0.005728,0.004512,0.02048,0.005952
+671,442.38,2.2605,0.524896,0.007072,0.476512,0.004768,0.005568,0.004672,0.02048,0.005824
+672,284.011,3.521,0.484992,0.007392,0.434976,0.006144,0.005408,0.004832,0.02048,0.00576
+673,553.289,1.80737,0.208928,0.006144,0.161792,0.005632,0.004608,0.005856,0.020128,0.004768
+674,466.568,2.14331,0.260096,0.0056,0.214688,0.004928,0.00416,0.005952,0.020096,0.004672
+675,399.649,2.5022,0.667296,0.005824,0.610624,0.00736,0.006976,0.007904,0.020768,0.00784
+676,403.865,2.47607,0.66368,0.005664,0.611968,0.007136,0.005824,0.006048,0.020896,0.006144
+677,539.16,1.85474,0.196416,0.006144,0.14912,0.005504,0.004864,0.004352,0.02048,0.005952
+678,482.507,2.07251,0.199232,0.0048,0.153472,0.005664,0.004576,0.005568,0.020256,0.004896
+679,378.979,2.63867,0.269632,0.006144,0.221184,0.006144,0.004096,0.006144,0.02048,0.00544
+680,416.091,2.40332,0.20624,0.005984,0.159328,0.004672,0.005664,0.004576,0.02048,0.005536
+681,499.512,2.00195,0.195936,0.005408,0.14848,0.006144,0.004096,0.006112,0.020384,0.005312
+682,445.75,2.24341,0.2048,0.006144,0.159104,0.004736,0.004096,0.006144,0.020192,0.004384
+683,316.636,3.1582,0.20528,0.007904,0.156352,0.005888,0.00432,0.006016,0.019872,0.004928
+684,570.315,1.75342,0.198784,0.005856,0.152,0.005728,0.00448,0.005632,0.02016,0.004928
+685,505.929,1.97656,0.210272,0.006144,0.162912,0.005024,0.00528,0.00496,0.02048,0.005472
+686,266.858,3.74731,0.227328,0.006176,0.180192,0.005856,0.004384,0.005728,0.020416,0.004576
+687,653.582,1.53003,0.1944,0.004928,0.147456,0.006112,0.005152,0.005088,0.020448,0.005216
+688,474.844,2.10596,0.193088,0.00816,0.143232,0.004832,0.005536,0.004704,0.02048,0.006144
+689,309.506,3.23096,0.215616,0.008,0.1664,0.004352,0.005792,0.004448,0.02048,0.006144
+690,649.643,1.53931,0.202272,0.0056,0.156256,0.00432,0.005504,0.004768,0.020448,0.005376
+691,456.837,2.18896,0.195232,0.004736,0.14928,0.005504,0.00496,0.005312,0.019264,0.006176
+692,418.728,2.38818,0.21504,0.006144,0.167936,0.005536,0.004704,0.005408,0.020384,0.004928
+693,412.072,2.42676,0.251008,0.005792,0.203168,0.006144,0.005152,0.005088,0.020448,0.005216
+694,592.507,1.68774,0.19456,0.006144,0.147456,0.005792,0.004448,0.005632,0.020192,0.004896
+695,392.45,2.5481,0.210816,0.0056,0.162784,0.006144,0.004096,0.006144,0.020416,0.005632
+696,457.807,2.18433,0.210944,0.006144,0.163872,0.006112,0.004096,0.006016,0.020192,0.004512
+697,522.782,1.91284,0.199328,0.004768,0.1536,0.005824,0.004416,0.005696,0.020448,0.004576
+698,381.414,2.62183,0.194976,0.0056,0.148416,0.004192,0.005632,0.004544,0.020448,0.006144
+699,477,2.09644,0.207072,0.004768,0.159712,0.006144,0.005216,0.005024,0.02048,0.005728
+700,405.424,2.46655,0.216992,0.004864,0.169984,0.006144,0.005344,0.004896,0.02048,0.00528
+701,438.638,2.27979,0.202144,0.006144,0.154624,0.00512,0.005248,0.004992,0.02048,0.005536
+702,577.552,1.73145,0.188096,0.0056,0.141984,0.004256,0.0056,0.00464,0.02048,0.005536
+703,338.233,2.95654,0.223232,0.005824,0.176,0.005632,0.005056,0.005344,0.019232,0.006144
+704,446.285,2.24072,0.201024,0.004672,0.154976,0.004768,0.0056,0.00464,0.02048,0.005888
+705,399.532,2.50293,0.243744,0.006144,0.196256,0.005536,0.004992,0.00528,0.02048,0.005056
+706,483.703,2.06738,0.202912,0.004768,0.15744,0.004256,0.005472,0.004768,0.02048,0.005728
+707,338.512,2.9541,0.239616,0.006176,0.192448,0.005504,0.004768,0.005376,0.020288,0.005056
+708,642.812,1.55566,0.204544,0.006144,0.157152,0.00464,0.005728,0.004512,0.02048,0.005888
+709,430.84,2.32104,0.208416,0.005792,0.161408,0.004864,0.00528,0.004928,0.02048,0.005664
+710,379.189,2.63721,0.201184,0.005664,0.155584,0.004768,0.004448,0.005792,0.020128,0.0048
+711,505.554,1.97803,0.212608,0.00608,0.165152,0.004896,0.005472,0.004768,0.02048,0.00576
+712,422.137,2.3689,0.210048,0.006112,0.161824,0.006144,0.004096,0.005984,0.02032,0.005568
+713,269.261,3.71387,0.489472,0.006144,0.442368,0.00592,0.00432,0.005824,0.020352,0.004544
+714,474.129,2.10913,0.633888,0.006144,0.587776,0.005376,0.004576,0.004384,0.020448,0.005184
+715,415.584,2.40625,0.507904,0.006144,0.460704,0.005504,0.004832,0.005312,0.020544,0.004864
+716,631.028,1.58472,0.25776,0.006144,0.197792,0.00496,0.005952,0.016576,0.02048,0.005856
+717,451.798,2.21338,0.192512,0.006144,0.145408,0.006144,0.004096,0.006048,0.020288,0.004384
+718,688.288,1.45288,0.207008,0.0056,0.160288,0.004576,0.0056,0.00464,0.02048,0.005824
+719,517.041,1.93408,0.190528,0.005632,0.143712,0.005536,0.004832,0.005312,0.01936,0.006144
+720,604.754,1.65356,0.188832,0.0056,0.142208,0.005984,0.004256,0.006144,0.020288,0.004352
+721,520.259,1.92212,0.18432,0.006144,0.137216,0.005824,0.004416,0.005696,0.020416,0.004608
+722,597.172,1.67456,0.196608,0.005792,0.149472,0.00448,0.005856,0.004384,0.02048,0.006144
+723,478.728,2.08887,0.19056,0.0056,0.143648,0.005504,0.004832,0.004352,0.02048,0.006144
+724,684.378,1.46118,0.188,0.005696,0.139712,0.005888,0.004416,0.00608,0.020288,0.00592
+725,510.151,1.96021,0.244576,0.00496,0.198656,0.005696,0.004544,0.005696,0.02016,0.004864
+726,452.797,2.2085,0.217088,0.005632,0.170592,0.005184,0.004832,0.00432,0.02048,0.006048
+727,539.231,1.85449,0.244192,0.00576,0.197248,0.005504,0.004832,0.005312,0.019424,0.006112
+728,554.938,1.802,0.402304,0.004864,0.356352,0.005984,0.004256,0.005856,0.020608,0.004384
+729,512.448,1.95142,0.446496,0.005344,0.400224,0.006112,0.004096,0.006144,0.020352,0.004224
+730,408.497,2.448,0.211072,0.0056,0.164512,0.005728,0.004512,0.0056,0.020128,0.004992
+731,691.658,1.4458,0.188448,0.005856,0.1416,0.005792,0.004448,0.005888,0.020192,0.004672
+732,685.638,1.4585,0.187008,0.004736,0.141088,0.005504,0.00496,0.005344,0.020448,0.004928
+733,437.233,2.28711,0.710688,0.005856,0.663744,0.005536,0.0048,0.005312,0.020352,0.005088
+734,334.613,2.98853,0.198912,0.0056,0.152384,0.00592,0.004288,0.005824,0.020512,0.004384
+735,671.696,1.48877,0.198976,0.004704,0.15312,0.004576,0.005792,0.004448,0.02048,0.005856
+736,663.427,1.50732,0.188416,0.00592,0.14128,0.005536,0.004832,0.005248,0.02048,0.00512
+737,384.096,2.60352,0.2536,0.00576,0.206752,0.004672,0.005664,0.004576,0.02048,0.005696
+738,514.832,1.94238,0.217088,0.006144,0.169984,0.005888,0.004352,0.00576,0.020192,0.004768
+739,633.076,1.57959,0.188704,0.005568,0.142176,0.005536,0.004704,0.00544,0.020352,0.004928
+740,583.642,1.71338,0.229376,0.006144,0.182272,0.005888,0.004352,0.005792,0.020448,0.00448
+741,404.903,2.46973,0.18768,0.005792,0.1408,0.00496,0.005408,0.004832,0.02048,0.005408
+742,516.78,1.93506,0.218784,0.006144,0.171584,0.004544,0.005504,0.004736,0.020512,0.00576
+743,613.725,1.62939,0.222112,0.005024,0.176128,0.005824,0.004416,0.005728,0.020224,0.004768
+744,549.356,1.82031,0.204768,0.005984,0.157856,0.005536,0.004704,0.005408,0.019168,0.006112
+745,526.884,1.89795,0.39808,0.004864,0.352256,0.005856,0.004384,0.00576,0.020512,0.004448
+746,541.727,1.84595,0.176288,0.005088,0.130976,0.004192,0.005568,0.004672,0.02048,0.005312
+747,728.178,1.37329,0.206848,0.006144,0.159744,0.005728,0.004512,0.005632,0.020224,0.004864
+748,551.576,1.81299,0.192736,0.005696,0.144352,0.005792,0.004448,0.006144,0.020384,0.00592
+749,421.659,2.37158,0.642944,0.005728,0.59584,0.00576,0.004608,0.004512,0.02048,0.006016
+750,634.744,1.57544,0.18128,0.006144,0.134464,0.0048,0.004096,0.006144,0.020416,0.005216
+751,500.366,1.99854,0.191328,0.00496,0.145408,0.005888,0.004352,0.00576,0.020352,0.004608
+752,628.221,1.5918,0.196608,0.006144,0.149504,0.006048,0.004192,0.006144,0.020128,0.004448
+753,672.688,1.48657,0.18096,0.00512,0.134592,0.004672,0.005664,0.004576,0.02048,0.005856
+754,546.498,1.82983,0.403456,0.00576,0.356448,0.005504,0.005024,0.005792,0.02048,0.004448
+755,504.123,1.98364,0.185632,0.006144,0.137216,0.006144,0.004096,0.006144,0.02048,0.005408
+756,598.83,1.66992,0.247744,0.006144,0.20064,0.00544,0.004832,0.00528,0.019328,0.00608
+757,538.239,1.85791,0.412768,0.006144,0.364576,0.006112,0.004096,0.006144,0.02048,0.005216
+758,575.685,1.73706,0.21504,0.006144,0.169504,0.004576,0.005152,0.005088,0.020224,0.004352
+759,608.257,1.64404,0.194592,0.006144,0.147456,0.0056,0.00464,0.005472,0.020576,0.004704
+760,398.444,2.50977,0.202752,0.006144,0.155648,0.006144,0.00512,0.00512,0.019744,0.004832
+761,686.327,1.45703,0.190464,0.006144,0.14336,0.005856,0.004384,0.005888,0.020576,0.004256
+762,640.701,1.56079,0.217184,0.006144,0.169984,0.00592,0.00432,0.006144,0.020416,0.004256
+763,582.149,1.71777,0.199136,0.004576,0.1536,0.006112,0.004128,0.005984,0.020096,0.00464
+764,552.99,1.80835,0.272544,0.005632,0.225984,0.005856,0.004352,0.005792,0.020512,0.004416
+765,550.982,1.81494,0.181056,0.004928,0.134912,0.005504,0.004832,0.00528,0.019456,0.006144
+766,690.376,1.44849,0.189056,0.00576,0.142336,0.00592,0.00432,0.005856,0.020064,0.0048
+767,494.447,2.02246,0.20544,0.004832,0.159264,0.004576,0.005792,0.005504,0.019424,0.006048
+768,505.554,1.97803,0.202048,0.005824,0.155392,0.004672,0.005664,0.004576,0.02048,0.00544
+769,584.976,1.70947,0.181184,0.005056,0.135104,0.005536,0.004768,0.005344,0.02048,0.004896
+770,703.78,1.4209,0.178752,0.005664,0.132096,0.006016,0.004224,0.00592,0.020448,0.004384
+771,601.91,1.66138,0.198336,0.006144,0.149504,0.006144,0.005216,0.005024,0.02048,0.005824
+772,494.806,2.021,0.249856,0.006144,0.202688,0.005504,0.0048,0.005376,0.020416,0.004928
+773,483.304,2.06909,0.413728,0.005344,0.368768,0.0048,0.004096,0.006144,0.020128,0.004448
+774,615.107,1.62573,0.181216,0.005088,0.135168,0.005952,0.004288,0.005856,0.02032,0.004544
+775,418.386,2.39014,0.194752,0.005824,0.147872,0.005504,0.004832,0.00528,0.020352,0.005088
+776,509.136,1.96411,0.186368,0.006176,0.139232,0.005504,0.004736,0.005376,0.0192,0.006144
+777,506.116,1.97583,0.188416,0.006144,0.141312,0.005664,0.004576,0.005568,0.020192,0.00496
+778,645.243,1.5498,0.216832,0.0056,0.170624,0.004256,0.0056,0.004608,0.02048,0.005664
+779,459.399,2.17676,0.196288,0.006144,0.148928,0.004672,0.005696,0.004544,0.02048,0.005824
+780,570.394,1.75317,0.188416,0.006016,0.14144,0.00592,0.00432,0.005856,0.020416,0.004448
+781,608.257,1.64404,0.190848,0.0048,0.144416,0.004992,0.005504,0.004736,0.02048,0.00592
+782,576.333,1.73511,0.196192,0.0056,0.15008,0.004064,0.005856,0.004384,0.02048,0.005728
+783,587.072,1.70337,0.264928,0.004832,0.219136,0.00576,0.00448,0.005632,0.02048,0.004608
+784,464.031,2.15503,0.196608,0.006144,0.149536,0.005952,0.004256,0.005856,0.020384,0.00448
+785,619.855,1.61328,0.191104,0.00496,0.145056,0.005504,0.004832,0.004352,0.020512,0.005888
+786,603.685,1.65649,0.191392,0.005024,0.146848,0.004736,0.004064,0.006144,0.020064,0.004512
+787,447.797,2.23315,0.250112,0.005632,0.203488,0.005536,0.004736,0.005408,0.02048,0.004832
+788,593.279,1.68555,0.194336,0.0056,0.147776,0.004576,0.00576,0.00448,0.02048,0.005664
+789,612.715,1.63208,0.185056,0.004832,0.138816,0.004544,0.005824,0.004416,0.020512,0.006112
+790,503.813,1.98486,0.282624,0.006144,0.235552,0.005504,0.004704,0.005408,0.02032,0.004992
+791,513.734,1.94653,0.413152,0.006144,0.364544,0.006144,0.00512,0.00512,0.02048,0.0056
+792,468.061,2.13647,0.4952,0.00784,0.445984,0.004928,0.005408,0.004864,0.020448,0.005728
+793,493.197,2.02759,0.227456,0.006144,0.180224,0.006144,0.004096,0.00608,0.020384,0.004384
+794,368.114,2.71655,0.219136,0.006144,0.172032,0.004096,0.005664,0.004608,0.020448,0.006144
+795,629.379,1.58887,0.190464,0.005856,0.143648,0.005568,0.004672,0.005472,0.020192,0.005056
+796,506.242,1.97534,0.21312,0.0056,0.16656,0.005728,0.004512,0.0056,0.020224,0.004896
+797,411.865,2.42798,0.205856,0.005632,0.158208,0.006144,0.005216,0.005024,0.020448,0.005184
+798,628.607,1.59082,0.224128,0.005088,0.17808,0.005696,0.004544,0.0056,0.020448,0.004672
+799,531.603,1.8811,0.198368,0.005792,0.151264,0.004736,0.005632,0.004608,0.02048,0.005856
+800,431.976,2.31494,0.230912,0.005792,0.183936,0.004992,0.005344,0.004896,0.02048,0.005472
+801,488.026,2.04907,0.191296,0.004928,0.145408,0.005824,0.004416,0.005728,0.020288,0.004704
+802,570.474,1.75293,0.206848,0.006144,0.159776,0.005376,0.0048,0.005344,0.02032,0.005088
+803,568.889,1.75781,0.19456,0.005792,0.147808,0.005952,0.004288,0.005856,0.020416,0.004448
+804,408.416,2.44849,0.229216,0.0056,0.1824,0.004896,0.005472,0.004768,0.02048,0.0056
+805,538.876,1.85571,0.198592,0.006144,0.15104,0.004608,0.005728,0.004512,0.02048,0.00608
+806,526.005,1.90112,0.19376,0.006144,0.147136,0.004416,0.005312,0.004928,0.02048,0.005344
+807,551.056,1.8147,0.210944,0.006144,0.16368,0.005664,0.004736,0.005408,0.020288,0.005024
+808,340.284,2.93872,0.223808,0.00464,0.178176,0.006144,0.004096,0.006048,0.02016,0.004544
+809,553.588,1.8064,0.192512,0.006144,0.14544,0.006048,0.00416,0.005984,0.020352,0.004384
+810,573.83,1.74268,0.207648,0.004896,0.161824,0.005888,0.00432,0.005824,0.020416,0.00448
+811,490.304,2.03955,0.200384,0.00464,0.154624,0.00512,0.005216,0.005024,0.02048,0.00528
+812,529.747,1.8877,0.213216,0.0056,0.166688,0.005664,0.004544,0.005632,0.020288,0.0048
+813,650.469,1.53735,0.187776,0.00608,0.140384,0.005088,0.005248,0.004992,0.02048,0.005504
+814,508.82,1.96533,0.223776,0.005664,0.177152,0.005472,0.004768,0.005312,0.019264,0.006144
+815,370.981,2.69556,0.225696,0.0056,0.179008,0.00544,0.0048,0.00528,0.019456,0.006112
+816,552.543,1.80981,0.219136,0.005952,0.172256,0.005952,0.004256,0.005888,0.020224,0.004608
+817,446.869,2.23779,0.271616,0.005984,0.212576,0.004672,0.005696,0.01616,0.020576,0.005952
+818,392.977,2.54468,0.347392,0.006016,0.300512,0.004768,0.005152,0.005088,0.02048,0.005376
+819,634.547,1.57593,0.199552,0.004992,0.153248,0.005536,0.004832,0.00432,0.02048,0.006144
+820,544.391,1.83691,0.2104,0.006144,0.163168,0.004768,0.005568,0.004672,0.02048,0.0056
+821,434.912,2.29932,0.212992,0.005984,0.166048,0.005536,0.004704,0.005376,0.020448,0.004896
+822,565.355,1.7688,0.188288,0.005568,0.142112,0.004128,0.005632,0.004608,0.02048,0.00576
+823,418.557,2.38916,0.21552,0.006016,0.168544,0.005504,0.004832,0.00528,0.01936,0.005984
+824,577.145,1.73267,0.205088,0.004928,0.159072,0.004768,0.0056,0.00464,0.02048,0.0056
+825,424.544,2.35547,0.183872,0.006112,0.136576,0.004768,0.005504,0.004736,0.02048,0.005696
+826,518.678,1.92798,0.225696,0.0056,0.179104,0.005344,0.004832,0.00528,0.020512,0.005024
+827,490.363,2.03931,0.212992,0.005728,0.166304,0.005824,0.004416,0.005856,0.020352,0.004512
+828,487.968,2.04932,0.20144,0.006272,0.154048,0.005504,0.0048,0.00592,0.02048,0.004416
+829,558.266,1.79126,0.226368,0.006144,0.178176,0.006144,0.004096,0.006144,0.020448,0.005216
+830,490.598,2.03833,0.186016,0.006144,0.139264,0.004096,0.00576,0.00448,0.02048,0.005792
+831,383.162,2.60986,0.288768,0.006016,0.241792,0.00592,0.00432,0.005856,0.02032,0.004544
+832,437.934,2.28345,0.285088,0.005568,0.226272,0.006144,0.005568,0.016512,0.020608,0.004416
+833,430.75,2.32153,0.191296,0.004928,0.145408,0.005888,0.004352,0.005792,0.020224,0.004704
+834,479.176,2.08691,0.245888,0.005632,0.200736,0.004608,0.004096,0.006144,0.020256,0.004416
+835,491.127,2.03613,0.296608,0.006144,0.239616,0.006144,0.004096,0.006144,0.020288,0.014176
+836,574.313,1.74121,0.1912,0.004928,0.145056,0.005536,0.004832,0.00432,0.02048,0.006048
+837,576.252,1.73535,0.196608,0.006144,0.149504,0.006144,0.005152,0.005088,0.019872,0.004704
+838,346.825,2.8833,0.20064,0.005664,0.15408,0.005248,0.004832,0.004256,0.02048,0.00608
+839,458.319,2.18188,0.276,0.005952,0.22752,0.006144,0.004096,0.006144,0.02048,0.005664
+840,489.952,2.04102,0.23312,0.005632,0.186208,0.005088,0.00528,0.00496,0.02048,0.005472
+841,329.022,3.03931,0.199744,0.005568,0.152192,0.00608,0.00416,0.005952,0.020512,0.00528
+842,655.255,1.52612,0.192576,0.0056,0.145344,0.004768,0.005504,0.004736,0.02048,0.006144
+843,591.993,1.68921,0.21584,0.004896,0.169856,0.005504,0.004832,0.00528,0.020416,0.005056
+844,430.659,2.32202,0.255584,0.006144,0.20848,0.004512,0.005856,0.004384,0.02048,0.005728
+845,579.595,1.72534,0.209408,0.004832,0.163616,0.005568,0.004672,0.00544,0.020416,0.004864
+846,449.123,2.22656,0.219136,0.006176,0.172,0.005824,0.004416,0.005728,0.020224,0.004768
+847,482.223,2.07373,0.222112,0.005024,0.176128,0.006144,0.004096,0.006048,0.020352,0.00432
+848,363.475,2.75122,0.214912,0.006144,0.16768,0.005504,0.004864,0.00528,0.019424,0.006016
+849,652.957,1.53149,0.183296,0.006144,0.1352,0.006112,0.004096,0.006144,0.020352,0.005248
+850,579.022,1.72705,0.196608,0.006176,0.149536,0.00608,0.005344,0.004896,0.020128,0.004448
+851,418.942,2.38696,0.199808,0.006144,0.152608,0.005088,0.00528,0.00496,0.02048,0.005248
+852,666.775,1.49976,0.180224,0.006144,0.13312,0.006144,0.004096,0.006144,0.02016,0.004416
+853,696.599,1.43555,0.178784,0.004832,0.132832,0.005536,0.004832,0.004256,0.02048,0.006016
+854,436.767,2.28955,0.220544,0.005664,0.172608,0.005952,0.004256,0.006144,0.02048,0.00544
+855,459.193,2.17773,0.200704,0.006144,0.1536,0.006112,0.004128,0.005952,0.02032,0.004448
+856,641.805,1.55811,0.177056,0.005056,0.131072,0.00576,0.004448,0.005728,0.020288,0.004704
+857,678.258,1.47437,0.187488,0.0056,0.139936,0.006048,0.005248,0.004992,0.020448,0.005216
+858,448.091,2.23169,0.232544,0.005696,0.186496,0.004416,0.005312,0.004928,0.02048,0.005216
+859,602.619,1.65942,0.179168,0.005056,0.13312,0.005952,0.004288,0.005856,0.020224,0.004672
+860,672.578,1.48682,0.184,0.004672,0.138304,0.005056,0.00528,0.00496,0.02048,0.005248
+861,657.358,1.52124,0.182272,0.007616,0.133696,0.006048,0.004192,0.00592,0.020288,0.004512
+862,486.692,2.05469,0.257216,0.005568,0.210976,0.004736,0.004096,0.006144,0.02048,0.005216
+863,466.249,2.14478,0.188448,0.006112,0.141344,0.005664,0.004576,0.005536,0.020352,0.004864
+864,664.396,1.50513,0.190464,0.006144,0.14336,0.005632,0.004608,0.005504,0.020224,0.004992
+865,673.131,1.4856,0.179872,0.00576,0.132992,0.004608,0.005728,0.004512,0.02048,0.005792
+866,513.541,1.94727,0.211104,0.005568,0.164544,0.00592,0.00432,0.005824,0.020128,0.0048
+867,533.611,1.87402,0.401728,0.004768,0.355584,0.004864,0.005504,0.004736,0.02048,0.005792
+868,558.342,1.79102,0.180224,0.006144,0.13312,0.00576,0.00448,0.005664,0.020128,0.004928
+869,657.569,1.52075,0.18896,0.00464,0.141312,0.00592,0.006368,0.005536,0.020128,0.005056
+870,519.863,1.92358,0.205664,0.00496,0.159744,0.005696,0.004544,0.005664,0.020096,0.00496
+871,461.625,2.16626,0.438208,0.00544,0.391584,0.005504,0.004832,0.004288,0.02048,0.00608
+872,508,1.96851,0.188224,0.005728,0.141248,0.004576,0.00576,0.00448,0.02048,0.005952
+873,527.495,1.89575,0.205216,0.0056,0.158656,0.006144,0.004096,0.00608,0.020224,0.004416
+874,459.553,2.17603,0.1896,0.006176,0.142976,0.004448,0.005312,0.004928,0.02048,0.00528
+875,639.002,1.56494,0.180096,0.0056,0.133152,0.005056,0.005312,0.004928,0.02048,0.005568
+876,685.638,1.4585,0.175936,0.006144,0.128736,0.005504,0.004832,0.004384,0.020384,0.005952
+877,522.183,1.91504,0.282656,0.0056,0.236064,0.0056,0.00464,0.005632,0.020288,0.004832
+878,505.866,1.97681,0.192192,0.0056,0.14608,0.005344,0.004832,0.00528,0.01936,0.005696
+879,427.424,2.3396,0.195296,0.004832,0.149504,0.00592,0.00432,0.00592,0.020256,0.004544
+880,428.811,2.33203,0.291008,0.006144,0.243712,0.005856,0.004384,0.006144,0.020384,0.004384
+881,428.542,2.3335,0.232768,0.006144,0.185536,0.004928,0.00544,0.0048,0.02048,0.00544
+882,493.316,2.0271,0.210944,0.006112,0.163872,0.005856,0.004384,0.005792,0.020192,0.004736
+883,577.308,1.73218,0.215392,0.0056,0.1688,0.006048,0.004192,0.005952,0.020192,0.004608
+884,467.633,2.13843,0.200736,0.006144,0.1536,0.006144,0.004096,0.006112,0.020128,0.004512
+885,616.682,1.62158,0.185984,0.006016,0.137984,0.006112,0.005152,0.005088,0.020416,0.005216
+886,555.842,1.79907,0.18672,0.005632,0.141376,0.004896,0.004096,0.006048,0.020128,0.004544
+887,564.654,1.771,0.211008,0.0056,0.164352,0.004544,0.00576,0.00448,0.020512,0.00576
+888,437.888,2.28369,0.19808,0.006144,0.151008,0.00464,0.005472,0.004768,0.02048,0.005568
+889,597.52,1.67358,0.221216,0.006144,0.174016,0.005504,0.0048,0.005376,0.02032,0.005056
+890,643.418,1.5542,0.182912,0.004768,0.137184,0.0056,0.00464,0.005504,0.02032,0.004896
+891,569.284,1.75659,0.20272,0.006144,0.155392,0.005376,0.004832,0.004384,0.02048,0.006112
+892,422.617,2.36621,0.192512,0.005792,0.14544,0.005536,0.004832,0.005472,0.020352,0.005088
+893,665.583,1.50244,0.178816,0.004768,0.134368,0.004864,0.005472,0.0048,0.020224,0.00432
+894,579.104,1.72681,0.189792,0.005728,0.14352,0.004352,0.005376,0.004864,0.02048,0.005472
+895,621.737,1.6084,0.221184,0.005696,0.174336,0.005504,0.004832,0.00528,0.019392,0.006144
+896,339.579,2.94482,0.20288,0.005632,0.156192,0.005504,0.004832,0.005312,0.020384,0.005024
+897,608.89,1.64233,0.19456,0.006176,0.147424,0.005856,0.004384,0.005728,0.020352,0.00464
+898,639.9,1.56274,0.217216,0.0056,0.170592,0.004256,0.005568,0.004672,0.020512,0.006016
+899,452.647,2.20923,0.213312,0.0056,0.166496,0.004544,0.005792,0.004384,0.02048,0.006016
+900,611.161,1.63623,0.198208,0.005728,0.151296,0.004768,0.0056,0.00464,0.02048,0.005696
+901,621.548,1.60889,0.19456,0.004992,0.147456,0.006144,0.005152,0.005088,0.020448,0.00528
+902,637.808,1.56787,0.196608,0.006016,0.14048,0.014624,0.004768,0.005792,0.020096,0.004832
+903,453.198,2.20654,0.239616,0.006176,0.192032,0.004544,0.005792,0.005696,0.02032,0.005056
+904,491.953,2.03271,0.197824,0.0056,0.151168,0.005024,0.005344,0.004896,0.02048,0.005312
+905,585.645,1.70752,0.182432,0.0056,0.13584,0.005536,0.004736,0.005376,0.0192,0.006144
+906,571.907,1.74854,0.219808,0.004768,0.17408,0.00576,0.00448,0.005664,0.020352,0.004704
+907,596.737,1.67578,0.236256,0.004832,0.190112,0.005504,0.004832,0.005888,0.02032,0.004768
+908,622.398,1.60669,0.18672,0.006368,0.129152,0.006144,0.004096,0.01536,0.020704,0.004896
+909,545.333,1.83374,0.408736,0.005664,0.36096,0.006112,0.004096,0.006144,0.02048,0.00528
+910,541.727,1.84595,0.195616,0.00576,0.149664,0.00432,0.005248,0.004992,0.020416,0.005216
+911,613.265,1.63062,0.239456,0.005856,0.1928,0.005792,0.004448,0.005632,0.018944,0.005984
+912,564.265,1.77222,0.204448,0.00576,0.157728,0.005024,0.005344,0.004896,0.02048,0.005216
+913,488.317,2.04785,0.204736,0.005888,0.157792,0.005504,0.004832,0.005312,0.019328,0.00608
+914,647.487,1.54443,0.1864,0.006144,0.141216,0.004192,0.005536,0.004704,0.020192,0.004416
+915,594.657,1.68164,0.266688,0.004832,0.220704,0.004576,0.00576,0.00448,0.02048,0.005856
+916,523.852,1.90894,0.19456,0.006144,0.147488,0.006112,0.004096,0.006144,0.020352,0.004224
+917,641.906,1.55786,0.220704,0.00608,0.173504,0.004736,0.005632,0.004608,0.02048,0.005664
+918,602.087,1.66089,0.192512,0.006144,0.145408,0.005536,0.004704,0.005984,0.020288,0.004448
+919,508.378,1.96704,0.200704,0.005952,0.153792,0.005984,0.004256,0.005856,0.020192,0.004672
+920,613.082,1.6311,0.188928,0.004736,0.1432,0.005984,0.004256,0.005856,0.02016,0.004736
+921,661.819,1.51099,0.183456,0.006144,0.135168,0.006144,0.005184,0.005056,0.02048,0.00528
+922,481.542,2.07666,0.214976,0.005568,0.168416,0.004288,0.00544,0.0048,0.02048,0.005984
+923,498.357,2.00659,0.18672,0.0056,0.140128,0.005536,0.004736,0.005504,0.020352,0.004864
+924,707.549,1.41333,0.231424,0.005952,0.184416,0.0056,0.004736,0.005472,0.020288,0.00496
+925,676.242,1.47876,0.180416,0.005568,0.133888,0.006016,0.004224,0.005888,0.020352,0.00448
+926,515.674,1.93921,0.220928,0.005728,0.174496,0.004256,0.005632,0.004448,0.02048,0.005888
+927,617.425,1.61963,0.207584,0.004832,0.1536,0.00576,0.00448,0.005632,0.028224,0.005056
+928,580.17,1.72363,0.188416,0.00576,0.141696,0.006016,0.004224,0.00592,0.020128,0.004672
+929,733.919,1.36255,0.18208,0.005824,0.135104,0.005504,0.004864,0.004352,0.02048,0.005952
+930,717.087,1.39453,0.181952,0.005632,0.135712,0.004096,0.00576,0.00448,0.02048,0.005792
+931,290.517,3.44214,0.344064,0.00592,0.297184,0.00576,0.00448,0.006016,0.020352,0.004352
+932,595.695,1.67871,0.206336,0.005664,0.159712,0.004608,0.00576,0.00448,0.02048,0.005632
+933,582.812,1.71582,0.181984,0.006144,0.134624,0.00464,0.005728,0.004512,0.02048,0.005856
+934,475.836,2.10156,0.219776,0.004736,0.173536,0.00464,0.005664,0.004576,0.02048,0.006144
+935,397.323,2.51685,0.421088,0.006144,0.372736,0.006144,0.005216,0.005024,0.02048,0.005344
+936,445.702,2.24365,0.208512,0.006144,0.161408,0.005504,0.004864,0.004352,0.02048,0.00576
+937,489.075,2.04468,0.209056,0.005088,0.162848,0.005088,0.005248,0.004992,0.02048,0.005312
+938,571.748,1.74902,0.196896,0.005632,0.150528,0.005248,0.004832,0.005312,0.019424,0.00592
+939,639.7,1.56323,0.190912,0.0048,0.144992,0.005536,0.004832,0.004384,0.02048,0.005888
+940,692.711,1.4436,0.176128,0.0056,0.129568,0.006144,0.004096,0.006144,0.020128,0.004448
+941,521.85,1.91626,0.190272,0.006144,0.142944,0.004512,0.005824,0.004416,0.02048,0.005952
+942,531.396,1.88184,0.403456,0.006144,0.356352,0.005568,0.004672,0.006112,0.020352,0.004256
+943,508.757,1.96558,0.40368,0.0048,0.357504,0.004992,0.005344,0.004896,0.02048,0.005664
+944,545.769,1.83228,0.404672,0.006144,0.356384,0.006112,0.004096,0.006144,0.02048,0.005312
+945,451.648,2.21411,0.221184,0.005632,0.176128,0.004608,0.005728,0.004512,0.020384,0.004192
+946,611.343,1.63574,0.182272,0.005664,0.136928,0.004864,0.004096,0.00608,0.020288,0.004352
+947,527.699,1.89502,0.188512,0.00624,0.141312,0.005952,0.004288,0.005824,0.02032,0.004576
+948,421.573,2.37207,0.2048,0.006144,0.157696,0.00576,0.00448,0.005728,0.020128,0.004864
+949,451.151,2.21655,0.195776,0.005728,0.148896,0.00512,0.005216,0.005024,0.02048,0.005312
+950,669.281,1.49414,0.180448,0.0056,0.133888,0.005312,0.004832,0.005312,0.01936,0.006144
+951,573.429,1.7439,0.188544,0.004448,0.1432,0.005536,0.0048,0.005312,0.019328,0.00592
+952,406.228,2.46167,0.26624,0.005632,0.219392,0.004864,0.005504,0.004736,0.02048,0.005632
+953,492.071,2.03223,0.182272,0.00576,0.135552,0.005728,0.004512,0.0056,0.020192,0.004928
+954,437.654,2.28491,0.186848,0.004768,0.14128,0.005216,0.004832,0.005312,0.019456,0.005984
+955,468.757,2.1333,0.229152,0.005792,0.182176,0.004544,0.005792,0.004448,0.02048,0.00592
+956,548.4,1.82349,0.194592,0.007968,0.145632,0.004704,0.005664,0.004576,0.02048,0.005568
+957,462.825,2.16064,0.241664,0.006144,0.19424,0.005536,0.004832,0.004288,0.02048,0.006144
+958,473.964,2.10986,0.21776,0.004992,0.172032,0.004224,0.005632,0.00448,0.02048,0.00592
+959,544.03,1.83813,0.248672,0.00496,0.20272,0.005536,0.004736,0.005376,0.020352,0.004992
+960,544.971,1.83496,0.412,0.005472,0.365344,0.005536,0.004832,0.005312,0.01936,0.006144
+961,626.587,1.59595,0.18048,0.006048,0.133472,0.00592,0.00432,0.005984,0.020352,0.004384
+962,294.021,3.40112,0.247808,0.005024,0.202144,0.004704,0.004096,0.006144,0.020448,0.005248
+963,562.02,1.7793,0.270528,0.004736,0.212608,0.005504,0.004864,0.016544,0.02048,0.005792
+964,400.979,2.4939,0.301344,0.0056,0.254784,0.005792,0.004448,0.005696,0.02016,0.004864
+965,518.612,1.92822,0.25776,0.006144,0.210592,0.005504,0.004608,0.004576,0.02048,0.005856
+966,496.906,2.01245,0.408192,0.004736,0.362496,0.004128,0.006112,0.005504,0.020384,0.004832
+967,553.364,1.80713,0.40336,0.004352,0.357664,0.004832,0.005504,0.004736,0.02048,0.005792
+968,481.939,2.07495,0.238944,0.006016,0.19168,0.005056,0.00528,0.00496,0.02048,0.005472
+969,377.686,2.64771,0.211776,0.005152,0.165024,0.004928,0.005408,0.004832,0.02048,0.005952
+970,699.215,1.43018,0.187648,0.00576,0.14112,0.004672,0.005216,0.005024,0.02048,0.005376
+971,583.227,1.7146,0.196608,0.006144,0.149248,0.005536,0.004832,0.00528,0.02048,0.005088
+972,527.427,1.896,0.280224,0.005824,0.233248,0.004768,0.0056,0.00464,0.02048,0.005664
+973,516.976,1.93433,0.404928,0.00432,0.3584,0.006144,0.005152,0.005088,0.02048,0.005344
+974,634.842,1.5752,0.19456,0.005792,0.148896,0.004992,0.00416,0.005984,0.020128,0.004608
+975,590.202,1.69434,0.193056,0.005056,0.146784,0.004768,0.005568,0.004672,0.02048,0.005728
+976,463.716,2.15649,0.191488,0.006144,0.14336,0.006144,0.004096,0.006144,0.020416,0.005184
+977,673.573,1.48462,0.179488,0.0056,0.13184,0.006144,0.004096,0.006144,0.02048,0.005184
+978,599.444,1.66821,0.190752,0.004768,0.144352,0.004896,0.004288,0.006144,0.02048,0.005824
+979,621.171,1.60986,0.192032,0.006144,0.14336,0.006144,0.004096,0.006144,0.02048,0.005664
+980,511.233,1.95605,0.20688,0.0056,0.160288,0.005664,0.004576,0.005536,0.020832,0.004384
+981,532.501,1.87793,0.429376,0.005536,0.381536,0.0056,0.00464,0.005472,0.021152,0.00544
+982,579.431,1.72583,0.185696,0.005696,0.137664,0.005632,0.004576,0.005312,0.020896,0.00592
+983,681.985,1.46631,0.18848,0.006144,0.141088,0.005504,0.0048,0.005312,0.021248,0.004384
+984,436.116,2.29297,0.37104,0.005056,0.323584,0.005984,0.004256,0.005888,0.020736,0.005536
+985,558.799,1.78955,0.187456,0.006048,0.13904,0.005536,0.004832,0.004384,0.022304,0.005312
+986,709.51,1.40942,0.18352,0.006144,0.135168,0.005856,0.004384,0.00576,0.020864,0.005344
+987,530.021,1.88672,0.421824,0.006144,0.372736,0.006016,0.004224,0.00592,0.020704,0.00608
+988,505.929,1.97656,0.241184,0.00576,0.192896,0.006144,0.004096,0.006144,0.02048,0.005664
+989,678.595,1.47363,0.182016,0.006112,0.133152,0.006144,0.004096,0.006144,0.02048,0.005888
+990,637.808,1.56787,0.183296,0.00512,0.137216,0.005408,0.004832,0.00544,0.020896,0.004384
+991,578.695,1.72803,0.204704,0.0056,0.156352,0.006144,0.004096,0.006112,0.020512,0.005888
+992,531.327,1.88208,0.19456,0.006144,0.146688,0.004864,0.0056,0.00464,0.022336,0.004288
+993,504.371,1.98267,0.264192,0.006144,0.215072,0.006016,0.004192,0.005952,0.020672,0.006144
+994,741.76,1.34814,0.19088,0.005696,0.142208,0.005984,0.004224,0.00592,0.020704,0.006144
+995,619.292,1.61475,0.181216,0.005088,0.133152,0.006112,0.004096,0.006144,0.021728,0.004896
+996,469.94,2.12793,0.25392,0.00576,0.205184,0.00592,0.00432,0.005824,0.0208,0.006112
+997,626.779,1.59546,0.192512,0.006144,0.144608,0.004896,0.00544,0.0048,0.022208,0.004416
+998,643.014,1.55518,0.183104,0.004928,0.1384,0.004896,0.00416,0.005984,0.020384,0.004352
+999,557.431,1.79395,0.208416,0.006016,0.16112,0.004896,0.00544,0.0048,0.02048,0.005664
+1000,449.024,2.22705,0.185216,0.004992,0.139264,0.005984,0.004256,0.00592,0.020352,0.004448
+1001,676.242,1.47876,0.176544,0.0056,0.131104,0.004992,0.005344,0.004896,0.020288,0.00432
+1002,619.761,1.61353,0.219136,0.006144,0.17136,0.0048,0.004064,0.006144,0.021568,0.005056
+1003,536.126,1.86523,0.237568,0.006144,0.189824,0.004736,0.0056,0.00464,0.02224,0.004384
+1004,498.782,2.00488,0.191904,0.006144,0.14336,0.005728,0.004512,0.005664,0.02096,0.005536
+1005,654.209,1.52856,0.184832,0.00496,0.137216,0.006016,0.004224,0.005888,0.020736,0.005792
+1006,596.997,1.67505,0.192992,0.004768,0.14656,0.0048,0.004096,0.006144,0.021568,0.005056
+1007,653.791,1.52954,0.190368,0.0056,0.142144,0.005536,0.004704,0.005632,0.020992,0.00576
+1008,522.983,1.91211,0.19168,0.005696,0.14336,0.004544,0.005952,0.005312,0.021472,0.005344
+1009,600.763,1.66455,0.194016,0.006176,0.144608,0.004864,0.005504,0.005888,0.021376,0.0056
+1010,640.5,1.56128,0.191264,0.004992,0.14336,0.005728,0.00448,0.0056,0.021024,0.00608
+1011,447.895,2.23267,0.19296,0.005056,0.145312,0.005504,0.004768,0.00528,0.021408,0.005632
+1012,399.766,2.50146,0.192512,0.006144,0.1448,0.004704,0.005664,0.004576,0.02176,0.004864
+1013,712.224,1.40405,0.184192,0.005952,0.136512,0.004992,0.005344,0.004896,0.02048,0.006016
+1014,684.149,1.46167,0.188416,0.005728,0.141728,0.005344,0.004832,0.005312,0.020768,0.004704
+1015,568.731,1.7583,0.217856,0.004864,0.169984,0.006144,0.005184,0.005056,0.02048,0.006144
+1016,446.577,2.23926,0.194176,0.0056,0.146112,0.005824,0.004416,0.005728,0.020896,0.0056
+1017,552.543,1.80981,0.188864,0.0056,0.14208,0.005504,0.004832,0.005312,0.020832,0.004704
+1018,641.002,1.56006,0.192256,0.005856,0.145216,0.004576,0.005344,0.004896,0.02048,0.005888
+1019,575.119,1.73877,0.233664,0.0056,0.1864,0.004992,0.005376,0.004864,0.02048,0.005952
+1020,454.455,2.20044,0.182304,0.00592,0.135264,0.005504,0.004832,0.00528,0.020608,0.004896
+1021,511.744,1.9541,0.217088,0.008192,0.167168,0.004864,0.005504,0.004736,0.021536,0.005088
+1022,697.904,1.43286,0.192576,0.0056,0.145184,0.004928,0.005344,0.004896,0.02048,0.006144
+1023,504.247,1.98315,0.223232,0.006144,0.176128,0.006016,0.004224,0.006016,0.02016,0.004544
+1024,600.675,1.66479,0.188288,0.006144,0.139264,0.006144,0.005184,0.005056,0.02048,0.006016
+1025,615.2,1.62549,0.185728,0.005568,0.137824,0.005824,0.004416,0.005952,0.020672,0.005472
+1026,590.117,1.69458,0.193888,0.006144,0.144736,0.004768,0.005184,0.005056,0.022528,0.005472
+1027,577.797,1.73071,0.24528,0.00592,0.196832,0.006144,0.004096,0.006144,0.02048,0.005664
+1028,462.459,2.16235,0.429184,0.006144,0.380928,0.005856,0.004384,0.005728,0.020896,0.005248
+1029,671.696,1.48877,0.180224,0.006144,0.13312,0.005536,0.004704,0.005472,0.02064,0.004608
+1030,445.072,2.24683,0.4096,0.006144,0.360448,0.006016,0.005536,0.004832,0.02048,0.006144
+1031,480.075,2.08301,0.1984,0.005632,0.149536,0.005088,0.00528,0.00496,0.022528,0.005376
+1032,678.37,1.47412,0.181376,0.005568,0.133216,0.004672,0.005696,0.004544,0.022496,0.005184
+1033,669.938,1.49268,0.2192,0.00592,0.171808,0.004544,0.005824,0.004416,0.022464,0.004224
+1034,498.661,2.00537,0.206336,0.006144,0.157664,0.005472,0.0048,0.005312,0.021312,0.005632
+1035,524.859,1.90527,0.184256,0.006144,0.135168,0.005888,0.004352,0.005792,0.020832,0.00608
+1036,685.294,1.45923,0.181536,0.005664,0.133408,0.005504,0.004832,0.004416,0.022464,0.005248
+1037,642.913,1.55542,0.202176,0.007488,0.150208,0.006144,0.005184,0.005056,0.022528,0.005568
+1038,632.294,1.58154,0.215424,0.00512,0.167936,0.005376,0.004832,0.00528,0.021376,0.005504
+1039,483.76,2.06714,0.19696,0.005664,0.14944,0.004992,0.005344,0.004896,0.02224,0.004384
+1040,779.745,1.28247,0.182272,0.006016,0.135296,0.005536,0.004704,0.00544,0.02096,0.00432
+1041,649.437,1.53979,0.183872,0.006048,0.1352,0.005504,0.0048,0.005376,0.021248,0.005696
+1042,543.452,1.84009,0.198656,0.006144,0.149504,0.006048,0.004192,0.00592,0.020704,0.006144
+1043,499.39,2.00244,0.211264,0.005696,0.16256,0.00592,0.00432,0.005824,0.0208,0.006144
+1044,547.301,1.82715,0.18592,0.005728,0.137664,0.005568,0.004672,0.005472,0.021152,0.005664
+1045,659.263,1.51685,0.18416,0.005664,0.135488,0.005536,0.004832,0.005312,0.021344,0.005984
+1046,430.569,2.32251,0.219712,0.004768,0.17376,0.004352,0.005376,0.004832,0.022048,0.004576
+1047,488.142,2.04858,0.184608,0.0056,0.137888,0.005536,0.004832,0.00528,0.021024,0.004448
+1048,535.215,1.86841,0.189824,0.006112,0.141344,0.006144,0.004096,0.006048,0.020576,0.005504
+1049,719.606,1.38965,0.195904,0.006144,0.147456,0.005728,0.004512,0.0056,0.02096,0.005504
+1050,586.399,1.70532,0.22784,0.005952,0.180928,0.005216,0.004896,0.00528,0.020768,0.0048
+1051,456.735,2.18945,0.206752,0.006144,0.157696,0.006144,0.004096,0.006144,0.02048,0.006048
+1052,575.281,1.73828,0.195808,0.006144,0.147488,0.005952,0.004256,0.005856,0.020768,0.005344
+1053,595.695,1.67871,0.186272,0.006144,0.137216,0.006016,0.004224,0.00592,0.020704,0.006048
+1054,543.813,1.83887,0.20512,0.004736,0.157696,0.005856,0.004384,0.005728,0.020896,0.005824
+1055,405.705,2.46484,0.19584,0.006144,0.146592,0.00496,0.00592,0.00544,0.021408,0.005376
+1056,561.711,1.78027,0.184672,0.0056,0.136128,0.006144,0.004096,0.00608,0.020544,0.00608
+1057,518.744,1.92773,0.218784,0.006144,0.169984,0.005984,0.004256,0.005856,0.020768,0.005792
+1058,458.268,2.18213,0.204704,0.005664,0.15728,0.004896,0.00432,0.00592,0.020704,0.00592
+1059,619.667,1.61377,0.186016,0.005632,0.137728,0.005792,0.004448,0.005696,0.020928,0.005792
+1060,618.638,1.61646,0.190464,0.006176,0.142432,0.004992,0.005376,0.004864,0.021856,0.004768
+1061,574.232,1.74146,0.219136,0.00592,0.171488,0.004864,0.005472,0.004768,0.022048,0.004576
+1062,438.591,2.28003,0.189792,0.006144,0.141312,0.005536,0.004704,0.00544,0.021184,0.005472
+1063,419.2,2.3855,0.212032,0.006144,0.16368,0.005536,0.004832,0.005312,0.021312,0.005216
+1064,548.62,1.82275,0.217728,0.004928,0.170016,0.006016,0.004192,0.006016,0.020608,0.005952
+1065,483.076,2.07007,0.239488,0.006144,0.190464,0.006144,0.005184,0.005056,0.020512,0.005984
+1066,646.261,1.54736,0.201248,0.005696,0.1544,0.004288,0.00544,0.0048,0.02048,0.006144
+1067,593.795,1.68408,0.204,0.006144,0.155648,0.0056,0.00464,0.005536,0.021088,0.005344
+1068,581.323,1.72021,0.219872,0.0048,0.173568,0.004608,0.005728,0.004512,0.02176,0.004896
+1069,444.782,2.24829,0.190912,0.005792,0.143872,0.005504,0.004832,0.005312,0.021024,0.004576
+1070,612.99,1.63135,0.190464,0.005664,0.143744,0.004192,0.005536,0.004704,0.021504,0.00512
+1071,523.986,1.90845,0.237568,0.006144,0.18992,0.00464,0.005696,0.004544,0.02176,0.004864
+1072,446.479,2.23975,0.237376,0.006144,0.18976,0.0048,0.005536,0.004704,0.02048,0.005952
+1073,325.959,3.06787,0.196736,0.005568,0.149312,0.005088,0.00528,0.00496,0.02048,0.006048
+1074,692.009,1.44507,0.188416,0.005856,0.1416,0.005472,0.004768,0.005344,0.020608,0.004768
+1075,558.19,1.7915,0.221184,0.006144,0.173408,0.004768,0.005568,0.004672,0.021664,0.00496
+1076,537.815,1.85938,0.188672,0.005632,0.141152,0.005088,0.005248,0.004992,0.02048,0.00608
+1077,415.711,2.40552,0.406912,0.005504,0.35904,0.005792,0.004448,0.005696,0.020928,0.005504
+1078,662.14,1.51025,0.205952,0.006016,0.159104,0.004864,0.004096,0.006144,0.02048,0.005248
+1079,369.342,2.70752,0.291904,0.006144,0.243712,0.005856,0.004384,0.006048,0.020544,0.005216
+1080,557.203,1.79468,0.198176,0.006176,0.150688,0.004928,0.00544,0.0048,0.02048,0.005664
+1081,664.504,1.50488,0.192512,0.006144,0.145216,0.005504,0.004864,0.005312,0.020576,0.004896
+1082,644.126,1.55249,0.187488,0.006144,0.140832,0.004576,0.005152,0.005088,0.02048,0.005216
+1083,450.506,2.21973,0.192512,0.006144,0.145248,0.005504,0.004832,0.00528,0.02064,0.004864
+1084,664.396,1.50513,0.188096,0.00576,0.140256,0.006144,0.004096,0.00608,0.02048,0.00528
+1085,704.628,1.41919,0.184416,0.004736,0.138272,0.005088,0.005312,0.004928,0.02048,0.0056
+1086,536.055,1.86548,0.414848,0.0056,0.36704,0.005504,0.004832,0.005984,0.02064,0.005248
+1087,566.45,1.76538,0.46512,0.006528,0.415744,0.006144,0.004096,0.006144,0.02048,0.005984
+1088,544.608,1.83618,0.4064,0.0048,0.360448,0.005728,0.004512,0.005568,0.020928,0.004416
+1089,570.633,1.75244,0.408096,0.00464,0.36176,0.004832,0.005536,0.005888,0.020832,0.004608
+1090,483.304,2.06909,0.44032,0.006144,0.39264,0.004672,0.006144,0.005504,0.020672,0.004544
+1091,460.018,2.17383,0.465024,0.007136,0.415744,0.005888,0.004352,0.005888,0.020736,0.00528
+1092,542.086,1.84473,0.19424,0.00576,0.147104,0.004832,0.005504,0.004736,0.02048,0.005824
+1093,525.87,1.90161,0.202048,0.0056,0.15424,0.006112,0.004096,0.006144,0.02048,0.005376
+1094,395.787,2.52661,0.193376,0.004928,0.147456,0.005696,0.004544,0.005664,0.020512,0.004576
+1095,612.532,1.63257,0.187296,0.005024,0.141312,0.005984,0.004256,0.005856,0.020608,0.004256
+1096,581.075,1.72095,0.334208,0.005664,0.287552,0.005536,0.004736,0.005408,0.020512,0.0048
+1097,643.317,1.55444,0.205088,0.005632,0.158336,0.005952,0.004256,0.005888,0.02064,0.004384
+1098,374.817,2.66797,0.246272,0.005632,0.19968,0.005952,0.004288,0.005792,0.020416,0.004512
+1099,609.796,1.63989,0.202752,0.006144,0.15552,0.005536,0.004832,0.005312,0.020512,0.004896
+1100,615.107,1.62573,0.21104,0.006144,0.16384,0.00608,0.00416,0.005952,0.02048,0.004384
+1101,550.39,1.81689,0.25264,0.004832,0.20672,0.005536,0.004832,0.005344,0.020544,0.004832
+1102,623.915,1.60278,0.180224,0.006144,0.133152,0.00544,0.004768,0.005376,0.0192,0.006144
+1103,577.878,1.73047,0.186368,0.006176,0.138272,0.005056,0.00528,0.00496,0.02048,0.006144
+1104,569.363,1.75635,0.190016,0.005536,0.143232,0.004896,0.005472,0.004768,0.02048,0.005632
+1105,457.756,2.18457,0.247808,0.005792,0.201056,0.005568,0.004672,0.005376,0.020416,0.004928
+1106,680.399,1.46973,0.186528,0.005824,0.140768,0.00512,0.00544,0.0048,0.020128,0.004448
+1107,542.445,1.84351,0.188384,0.005728,0.141376,0.005536,0.004832,0.00432,0.02048,0.006112
+1108,686.903,1.45581,0.180928,0.005888,0.134944,0.005088,0.005248,0.004992,0.020352,0.004416
+1109,514.702,1.94287,0.480672,0.00784,0.430464,0.006112,0.005184,0.005056,0.02048,0.005536
+1110,480.019,2.08325,0.195104,0.0048,0.14944,0.00416,0.005568,0.004672,0.02048,0.005984
+1111,623.155,1.60474,0.189888,0.005664,0.142976,0.00496,0.005408,0.004832,0.02048,0.005568
+1112,574.071,1.74194,0.20336,0.00672,0.15568,0.006144,0.004096,0.006112,0.020128,0.00448
+1113,439.391,2.27588,0.206848,0.006144,0.159744,0.005856,0.004384,0.00576,0.020416,0.004544
+1114,638.305,1.56665,0.190752,0.0056,0.144192,0.006144,0.004096,0.005984,0.018656,0.00608
+1115,580.088,1.72388,0.19184,0.006144,0.14336,0.006144,0.004096,0.006144,0.02048,0.005472
+1116,601.999,1.66113,0.200064,0.00592,0.152832,0.005088,0.00528,0.00496,0.02048,0.005504
+1117,502.7,1.98926,0.195616,0.006144,0.147456,0.006144,0.004096,0.006144,0.020416,0.005216
+1118,539.089,1.85498,0.190496,0.006144,0.14336,0.005664,0.004576,0.005536,0.020192,0.005024
+1119,622.209,1.60718,0.188224,0.004672,0.142432,0.005024,0.005344,0.004896,0.02048,0.005376
+1120,556.522,1.79688,0.21776,0.004768,0.171968,0.005536,0.004768,0.005312,0.020384,0.005024
+1121,418.728,2.38818,0.189728,0.005664,0.14192,0.006144,0.005184,0.005056,0.02048,0.00528
+1122,624.01,1.60254,0.198656,0.005952,0.152896,0.004992,0.004096,0.006016,0.019648,0.005056
+1123,580.499,1.72266,0.187872,0.005568,0.140224,0.006144,0.004096,0.006144,0.02048,0.005216
+1124,510.469,1.95898,0.327616,0.006144,0.28032,0.005536,0.0048,0.00528,0.019456,0.00608
+1125,476.39,2.09912,0.18432,0.006144,0.137216,0.005952,0.004288,0.00592,0.02016,0.00464
+1126,675.462,1.48047,0.195808,0.006144,0.149344,0.004256,0.005504,0.004736,0.02048,0.005344
+1127,497.389,2.0105,0.201504,0.004896,0.15568,0.005824,0.004384,0.00576,0.020352,0.004608
+1128,421.877,2.37036,0.293664,0.004896,0.237344,0.01632,0.004384,0.00576,0.02032,0.00464
+1129,491.717,2.03369,0.280576,0.006048,0.221312,0.006112,0.005408,0.015072,0.02048,0.006144
+1130,586.148,1.70605,0.208544,0.006144,0.161792,0.005408,0.0048,0.00528,0.019328,0.005792
+1131,514.702,1.94287,0.204896,0.0056,0.158336,0.004224,0.005664,0.004448,0.02048,0.006144
+1132,525.802,1.90186,0.18432,0.005536,0.137824,0.005792,0.004448,0.005696,0.020096,0.004928
+1133,693.649,1.44165,0.179552,0.006016,0.132416,0.004928,0.00544,0.0048,0.02048,0.005472
+1134,396.592,2.52148,0.39792,0.004768,0.35424,0.005152,0.004672,0.004512,0.020064,0.004512
+1135,297.631,3.35986,0.18432,0.006144,0.137216,0.006112,0.004128,0.006016,0.01872,0.005984
+1136,545.116,1.83447,0.182464,0.005664,0.135584,0.004576,0.005792,0.004448,0.02048,0.00592
+1137,649.334,1.54004,0.180128,0.00592,0.132992,0.005504,0.004832,0.004352,0.02048,0.006048
+1138,590.202,1.69434,0.235456,0.006144,0.188416,0.005344,0.004832,0.00528,0.01936,0.00608
+1139,482.677,2.07178,0.190464,0.006144,0.14336,0.0056,0.00464,0.006112,0.02032,0.004288
+1140,570.792,1.75195,0.182624,0.0056,0.136032,0.006144,0.004096,0.006112,0.020096,0.004544
+1141,735.368,1.35986,0.180768,0.005728,0.13408,0.005728,0.004512,0.005664,0.020288,0.004768
+1142,567.156,1.76318,0.230592,0.006144,0.182272,0.00592,0.00432,0.005856,0.020544,0.005536
+1143,456.786,2.18921,0.194944,0.006656,0.146848,0.004704,0.005632,0.004608,0.02048,0.006016
+1144,561.557,1.78076,0.402784,0.005344,0.355232,0.006112,0.004096,0.006144,0.02048,0.005376
+1145,526.343,1.8999,0.412544,0.005024,0.366336,0.005504,0.004832,0.00528,0.019456,0.006112
+1146,452.647,2.20923,0.192128,0.005856,0.145696,0.005184,0.004832,0.00432,0.02048,0.00576
+1147,719.227,1.39038,0.183488,0.006112,0.136352,0.004992,0.005376,0.004864,0.02048,0.005312
+1148,684.95,1.45996,0.184416,0.0056,0.137856,0.005728,0.004512,0.005568,0.020224,0.004928
+1149,730.515,1.3689,0.190464,0.00576,0.143584,0.005536,0.004832,0.005312,0.020384,0.005056
+1150,513.348,1.948,0.4608,0.006144,0.413408,0.005504,0.005024,0.005792,0.020544,0.004384
+1151,656.515,1.52319,0.18304,0.004864,0.137216,0.006144,0.004096,0.006144,0.020384,0.004192
+1152,501.469,1.99414,0.194752,0.0056,0.14816,0.005504,0.004768,0.005344,0.019232,0.006144
+1153,669.281,1.49414,0.206848,0.006144,0.141312,0.006144,0.004096,0.006048,0.03696,0.006144
+1154,463.926,2.15552,0.245824,0.0056,0.199296,0.00544,0.00464,0.004384,0.020352,0.006112
+1155,441.903,2.26294,0.400352,0.006112,0.353088,0.005504,0.004864,0.005312,0.020704,0.004768
+1156,645.039,1.55029,0.17504,0.005056,0.129056,0.005824,0.004384,0.005728,0.02032,0.004672
+1157,600.939,1.66406,0.190592,0.006144,0.14336,0.006144,0.004096,0.006144,0.02032,0.004384
+1158,529.815,1.88745,0.190688,0.005088,0.144864,0.00464,0.00544,0.0048,0.02048,0.005376
+1159,611.983,1.63403,0.180224,0.005664,0.133632,0.005888,0.00432,0.005824,0.020288,0.004608
+1160,504.496,1.98218,0.180224,0.00576,0.133504,0.00608,0.00416,0.005984,0.020192,0.004544
+1161,635.137,1.57446,0.213024,0.00592,0.166112,0.006144,0.004096,0.006112,0.02032,0.00432
+1162,623.63,1.60352,0.182976,0.0048,0.137216,0.005728,0.004512,0.005568,0.020416,0.004736
+1163,688.288,1.45288,0.18432,0.00752,0.135744,0.005536,0.0048,0.005312,0.019296,0.006112
+1164,710.618,1.40723,0.182912,0.006592,0.135168,0.006144,0.00512,0.00512,0.020384,0.004384
+1165,651.089,1.53589,0.177312,0.006144,0.129024,0.006144,0.005216,0.005024,0.02048,0.00528
+1166,647.077,1.54541,0.221184,0.006144,0.174112,0.005696,0.004512,0.005664,0.02032,0.004736
+1167,507.622,1.96997,0.630784,0.006016,0.583808,0.005856,0.004384,0.005888,0.020576,0.004256
+1168,664.504,1.50488,0.177792,0.005856,0.130912,0.004704,0.005632,0.004608,0.02048,0.0056
+1169,496.967,2.01221,0.401248,0.005728,0.354368,0.005504,0.004832,0.004352,0.02048,0.005984
+1170,375.092,2.66602,0.30944,0.006144,0.263552,0.004736,0.004096,0.006144,0.020384,0.004384
+1171,591.053,1.69189,0.397504,0.005664,0.35088,0.005984,0.004256,0.00592,0.020416,0.004384
+1172,559.563,1.78711,0.395072,0.004864,0.34816,0.006144,0.004096,0.006144,0.02048,0.005184
+1173,606.905,1.64771,0.184416,0.005696,0.137728,0.005504,0.004832,0.005312,0.019264,0.00608
+1174,593.968,1.68359,0.2072,0.006496,0.159744,0.005856,0.004384,0.00576,0.020256,0.004704
+1175,595.435,1.67944,0.176128,0.006144,0.129024,0.006144,0.004096,0.006112,0.020192,0.004416
+1176,620.324,1.61206,0.174624,0.006304,0.128512,0.004992,0.005376,0.004864,0.020032,0.004544
+1177,610.796,1.63721,0.182688,0.004608,0.136928,0.005504,0.004832,0.004288,0.02048,0.006048
+1178,294.995,3.38989,0.308768,0.007392,0.250816,0.00512,0.005088,0.005824,0.028864,0.005664
+1179,583.559,1.71362,0.214688,0.00576,0.16768,0.004736,0.005632,0.004608,0.02048,0.005792
+1180,591.139,1.69165,0.188192,0.005728,0.141408,0.004672,0.005696,0.004576,0.020448,0.005664
+1181,349.012,2.86523,0.236608,0.00512,0.190464,0.006112,0.004128,0.006016,0.020384,0.004384
+1182,722.144,1.38477,0.178176,0.006144,0.13216,0.004928,0.004224,0.006112,0.020128,0.00448
+1183,720.873,1.38721,0.174912,0.005024,0.128896,0.006144,0.004096,0.006048,0.020288,0.004416
+1184,613.449,1.63013,0.226272,0.005088,0.180224,0.00608,0.00416,0.005952,0.020288,0.00448
+1185,484.676,2.06323,0.242272,0.004896,0.19584,0.004864,0.005792,0.00448,0.020448,0.005952
+1186,410.298,2.43726,0.44912,0.004608,0.403328,0.005536,0.004832,0.005952,0.02048,0.004384
+1187,631.709,1.58301,0.218944,0.005824,0.172352,0.005568,0.004672,0.005472,0.019104,0.005952
+1188,517.956,1.93066,0.255968,0.006144,0.208736,0.005504,0.0048,0.005312,0.01936,0.006112
+1189,496.786,2.01294,0.630432,0.005856,0.583264,0.0048,0.005536,0.004704,0.02048,0.005792
+1190,566.059,1.7666,0.397376,0.005984,0.350368,0.005504,0.004736,0.006112,0.020288,0.004384
+1191,575.604,1.7373,0.415808,0.005376,0.369248,0.005536,0.004832,0.00528,0.020512,0.005024
+1192,515.869,1.93848,0.213792,0.004896,0.167936,0.0056,0.00464,0.005536,0.02016,0.005024
+1193,690.842,1.44751,0.173984,0.005856,0.126752,0.00464,0.005728,0.004512,0.02048,0.006016
+1194,615.94,1.62354,0.401152,0.005504,0.352896,0.006144,0.0056,0.00464,0.02048,0.005888
+1195,434.036,2.30396,0.202752,0.005696,0.156032,0.005504,0.0048,0.005472,0.02032,0.004928
+1196,477.334,2.09497,0.196544,0.006144,0.149408,0.005504,0.004832,0.005312,0.019264,0.00608
+1197,536.899,1.86255,0.188448,0.005568,0.141856,0.005504,0.0048,0.005408,0.020288,0.005024
+1198,555.616,1.7998,0.17984,0.005728,0.133504,0.005632,0.00464,0.005504,0.019104,0.005728
+1199,693.649,1.44165,0.202688,0.00608,0.155328,0.005536,0.004832,0.004352,0.02048,0.00608
+1200,607.085,1.64722,0.20272,0.006144,0.155424,0.005536,0.004832,0.00528,0.019392,0.006112
+1201,692.828,1.44336,0.178144,0.005728,0.131296,0.005504,0.004864,0.00528,0.019456,0.006016
+1202,610.705,1.63745,0.403456,0.006144,0.356032,0.005504,0.005056,0.00576,0.020512,0.004448
+1203,402.239,2.48608,0.48496,0.004512,0.440256,0.00416,0.005632,0.004608,0.02048,0.005312
+1204,538.168,1.85815,0.193408,0.004992,0.147456,0.005792,0.004448,0.005664,0.020192,0.004864
+1205,618.638,1.61646,0.190464,0.006144,0.143264,0.005504,0.004832,0.005312,0.02032,0.005088
+1206,546.498,1.82983,0.19312,0.004768,0.148544,0.004896,0.00416,0.006016,0.020128,0.004608
+1207,429.035,2.33081,0.260096,0.005728,0.199072,0.005536,0.004704,0.01984,0.020256,0.00496
+1208,493.494,2.02637,0.262688,0.0056,0.215776,0.005504,0.004864,0.00528,0.02128,0.004384
+1209,589.522,1.69629,0.19456,0.005792,0.147392,0.004512,0.005856,0.0056,0.019296,0.006112
+1210,562.792,1.77686,0.202272,0.006144,0.155648,0.004096,0.00576,0.00448,0.02048,0.005664
+1211,380.917,2.62524,0.649216,0.00736,0.600896,0.006016,0.004224,0.005952,0.020384,0.004384
+1212,572.227,1.74756,0.190464,0.00608,0.14336,0.005536,0.004768,0.005344,0.02032,0.005056
+1213,690.027,1.44922,0.206656,0.006144,0.158912,0.004928,0.00544,0.0048,0.02048,0.005952
+1214,628.028,1.59229,0.186592,0.0056,0.141248,0.004896,0.004128,0.005984,0.020288,0.004448
+1215,590.032,1.69482,0.221184,0.006144,0.17408,0.005856,0.004384,0.00576,0.020256,0.004704
+1216,458.012,2.18335,0.188416,0.006144,0.141344,0.006112,0.004096,0.006112,0.02,0.004608
+1217,703.297,1.42188,0.183872,0.00592,0.136736,0.0048,0.005568,0.004672,0.02048,0.005696
+1218,533.194,1.87549,0.240992,0.005952,0.194656,0.004192,0.005568,0.004672,0.02048,0.005472
+1219,455.111,2.19727,0.187808,0.005984,0.1408,0.004768,0.0056,0.00464,0.02048,0.005536
+1220,698.499,1.43164,0.182848,0.005696,0.135904,0.005504,0.004928,0.005312,0.01936,0.006144
+1221,542.373,1.84375,0.231424,0.005984,0.184416,0.005536,0.004768,0.005312,0.02032,0.005088
+1222,554.413,1.80371,0.242688,0.006144,0.195936,0.004768,0.004096,0.006144,0.020416,0.005184
+1223,484.104,2.06567,0.630912,0.004896,0.58368,0.006144,0.004096,0.006144,0.02048,0.005472
+1224,608.347,1.6438,0.401408,0.006144,0.354144,0.005536,0.004832,0.005312,0.020544,0.004896
+1225,502.022,1.99194,0.401024,0.004448,0.355392,0.005056,0.005312,0.004928,0.02048,0.005408
+1226,589.777,1.69556,0.240704,0.005824,0.194304,0.004704,0.004064,0.006144,0.020448,0.005216
+1227,665.8,1.50195,0.179072,0.00496,0.13312,0.005984,0.004256,0.005888,0.02032,0.004544
+1228,758.238,1.31885,0.179616,0.006144,0.132384,0.004832,0.005536,0.004704,0.02048,0.005536
+1229,484.562,2.06372,0.4,0.004736,0.353856,0.004544,0.005824,0.004416,0.02048,0.006144
+1230,516.976,1.93433,0.251904,0.004768,0.2064,0.004544,0.005344,0.004896,0.02048,0.005472
+1231,539.16,1.85474,0.403584,0.00496,0.356352,0.006144,0.005216,0.005024,0.02048,0.005408
+1232,643.317,1.55444,0.183136,0.00496,0.137216,0.006016,0.004224,0.00592,0.020288,0.004512
+1233,635.137,1.57446,0.198688,0.005728,0.13616,0.005984,0.004224,0.02048,0.02048,0.005632
+1234,466.621,2.14307,0.228832,0.005568,0.183008,0.004288,0.005536,0.004704,0.020448,0.00528
+1235,558.342,1.79102,0.18048,0.005664,0.133792,0.005536,0.004768,0.005408,0.020384,0.004928
+1236,665.8,1.50195,0.187584,0.005888,0.139648,0.006112,0.004096,0.006112,0.020512,0.005216
+1237,555.917,1.79883,0.223328,0.005984,0.17504,0.006144,0.004096,0.006144,0.02048,0.00544
+1238,360.786,2.77173,0.28672,0.0056,0.24016,0.005824,0.004416,0.005728,0.020096,0.004896
+1239,460.846,2.16992,0.199808,0.005024,0.1536,0.005952,0.004288,0.006144,0.020416,0.004384
+1240,650.882,1.53638,0.186592,0.0056,0.139904,0.006144,0.005152,0.005088,0.020288,0.004416
+1241,560.328,1.78467,0.204352,0.005696,0.1576,0.00464,0.005696,0.004544,0.02048,0.005696
+1242,487.677,2.05054,0.632832,0.006144,0.58368,0.006144,0.005824,0.00464,0.021344,0.005056
+1243,539.942,1.85205,0.179808,0.006176,0.132544,0.00464,0.005728,0.004512,0.02048,0.005728
+1244,533.472,1.87451,0.420704,0.00496,0.374368,0.004512,0.005856,0.004384,0.02048,0.006144
+1245,521.916,1.91602,0.243648,0.00528,0.195552,0.006144,0.005152,0.005088,0.02048,0.005952
+1246,482.905,2.0708,0.417792,0.005856,0.37088,0.005536,0.004832,0.005984,0.02048,0.004224
+1247,666.016,1.50146,0.18256,0.00624,0.13536,0.006144,0.004096,0.005984,0.020032,0.004704
+1248,584.391,1.71118,0.194464,0.00784,0.145376,0.005504,0.004832,0.004384,0.02048,0.006048
+1249,527.088,1.89722,0.234144,0.004768,0.188416,0.006144,0.004096,0.00608,0.020352,0.004288
+1250,544.608,1.83618,0.19456,0.007296,0.146304,0.005568,0.004672,0.005472,0.020448,0.0048
+1251,382.197,2.61646,0.27232,0.006144,0.22496,0.005504,0.0048,0.004352,0.02048,0.00608
+1252,552.468,1.81006,0.192512,0.006016,0.143488,0.006144,0.0056,0.00464,0.02048,0.006144
+1253,560.482,1.78418,0.404992,0.005472,0.358176,0.004992,0.005344,0.004928,0.020448,0.005632
+1254,543.308,1.84058,0.190464,0.005888,0.14352,0.004192,0.00608,0.00528,0.01936,0.006144
+1255,552.319,1.81055,0.217696,0.004704,0.172032,0.006048,0.004192,0.00592,0.02032,0.00448
+1256,460.07,2.17358,0.2048,0.006144,0.157728,0.005824,0.004384,0.005824,0.02032,0.004576
+1257,626.683,1.5957,0.198624,0.006144,0.15152,0.005504,0.004768,0.005344,0.019232,0.006112
+1258,644.633,1.55127,0.182336,0.005952,0.136704,0.0048,0.004096,0.006144,0.020256,0.004384
+1259,601.468,1.6626,0.189472,0.006144,0.142368,0.005088,0.005248,0.004992,0.020448,0.005184
+1260,382.768,2.61255,0.206496,0.005632,0.159872,0.004832,0.005536,0.004704,0.02048,0.00544
+1261,606.725,1.64819,0.218944,0.006144,0.171616,0.004512,0.005856,0.004384,0.02048,0.005952
+1262,651.192,1.53564,0.196896,0.005728,0.151296,0.004768,0.004096,0.006144,0.020384,0.00448
+1263,584.809,1.70996,0.212672,0.005696,0.165824,0.004896,0.005472,0.004768,0.02048,0.005536
+1264,475.229,2.10425,0.20896,0.005824,0.162112,0.006144,0.004096,0.006144,0.020224,0.004416
+1265,663.75,1.50659,0.198656,0.00608,0.151648,0.006048,0.00416,0.005952,0.020288,0.00448
+1266,612.99,1.63135,0.196,0.006112,0.149536,0.00512,0.004832,0.004384,0.02048,0.005536
+1267,561.789,1.78003,0.202816,0.0056,0.156256,0.005792,0.004416,0.005728,0.020352,0.004672
+1268,424.412,2.3562,0.220032,0.004992,0.17408,0.005856,0.004384,0.00576,0.020288,0.004672
+1269,627.451,1.59375,0.191072,0.004704,0.145408,0.005856,0.004384,0.00576,0.020288,0.004672
+1270,732.606,1.36499,0.179872,0.006176,0.13312,0.004224,0.0056,0.004512,0.02048,0.00576
+1271,556.219,1.79785,0.41104,0.005536,0.363168,0.006144,0.005152,0.005088,0.02048,0.005472
+1272,469.187,2.13135,0.637664,0.004864,0.591296,0.004672,0.005696,0.00464,0.020384,0.006112
+1273,577.145,1.73267,0.177952,0.004096,0.131072,0.006048,0.005376,0.00496,0.02048,0.00592
+1274,533.82,1.87329,0.411648,0.006144,0.362528,0.006112,0.005888,0.004352,0.02048,0.006144
+1275,451.898,2.21289,0.264192,0.006144,0.217088,0.005664,0.004576,0.005536,0.02016,0.005024
+1276,614.185,1.62817,0.18432,0.005696,0.137664,0.006144,0.004096,0.00608,0.02032,0.00432
+1277,488.084,2.04883,0.202752,0.006144,0.155392,0.005408,0.004832,0.004352,0.02048,0.006144
+1278,613.449,1.63013,0.196096,0.006144,0.149504,0.004096,0.005728,0.004512,0.02048,0.005632
+1279,420.793,2.37646,0.194752,0.005632,0.14816,0.00608,0.00416,0.006016,0.020256,0.004448
+1280,714.336,1.3999,0.178784,0.004704,0.13312,0.005952,0.004288,0.005856,0.020096,0.004768
+1281,510.469,1.95898,0.229312,0.006144,0.182144,0.005536,0.004832,0.00528,0.019296,0.00608
+1282,596.824,1.67554,0.221184,0.006144,0.17408,0.005792,0.004448,0.005696,0.020128,0.004896
+1283,493.791,2.02515,0.202496,0.006144,0.155232,0.004512,0.005856,0.004384,0.02048,0.005888
+1284,530.501,1.88501,0.201184,0.0056,0.154624,0.0056,0.00464,0.005504,0.020288,0.004928
+1285,481.203,2.07812,0.193248,0.004896,0.147392,0.006016,0.004224,0.005888,0.020288,0.004544
+1286,582.895,1.71558,0.199296,0.004992,0.152736,0.005984,0.004832,0.004384,0.02048,0.005888
+1287,530.158,1.88623,0.405696,0.005504,0.359232,0.006016,0.004224,0.005888,0.02048,0.004352
+1288,610.523,1.63794,0.181888,0.005632,0.135104,0.004672,0.005696,0.004544,0.02048,0.00576
+1289,547.96,1.82495,0.420992,0.00576,0.374304,0.00496,0.005184,0.005056,0.02048,0.005248
+1290,429.125,2.33032,0.212832,0.00608,0.165952,0.005408,0.004832,0.005344,0.019232,0.005984
+1291,556.522,1.79688,0.406112,0.006016,0.359136,0.005792,0.004448,0.005632,0.020512,0.004576
+1292,526.275,1.90015,0.243744,0.005792,0.19696,0.005824,0.004416,0.005728,0.020384,0.00464
+1293,346.825,2.8833,0.205696,0.004992,0.159776,0.005984,0.004224,0.00592,0.02032,0.00448
+1294,460.328,2.17236,0.209728,0.004928,0.16384,0.0056,0.00464,0.005472,0.020352,0.004896
+1295,781.232,1.28003,0.178528,0.005088,0.13232,0.004896,0.005472,0.004768,0.02048,0.005504
+1296,492.782,2.0293,0.454944,0.006272,0.406112,0.006144,0.005152,0.005088,0.02048,0.005696
+1297,407.846,2.4519,0.200832,0.0056,0.154272,0.005536,0.004704,0.005568,0.02032,0.004832
+1298,680.06,1.47046,0.182368,0.004928,0.136928,0.004384,0.005344,0.004896,0.02048,0.005408
+1299,569.68,1.75537,0.188,0.005792,0.141152,0.004608,0.005664,0.004576,0.02048,0.005728
+1300,397.94,2.51294,0.298912,0.0056,0.251936,0.004672,0.005664,0.004576,0.02048,0.005984
+1301,380.598,2.62744,0.19008,0.006144,0.14272,0.004736,0.005632,0.004608,0.02048,0.00576
+1302,628.028,1.59229,0.219136,0.005728,0.17248,0.005856,0.004352,0.005792,0.02032,0.004608
+1303,458.987,2.17871,0.221504,0.004992,0.17552,0.004704,0.00544,0.0048,0.02048,0.005568
+1304,448.582,2.22925,0.197344,0.0048,0.151584,0.006112,0.004096,0.006144,0.020224,0.004384
+1305,520.921,1.91968,0.200736,0.005888,0.153856,0.00592,0.00432,0.005696,0.020256,0.0048
+1306,638.006,1.56738,0.19104,0.004992,0.145408,0.005152,0.004832,0.004352,0.02048,0.005824
+1307,393.392,2.54199,0.245408,0.0056,0.198592,0.004992,0.005344,0.004896,0.02048,0.005504
+1308,510.851,1.95752,0.202656,0.004832,0.155616,0.006144,0.005216,0.005024,0.02048,0.005344
+1309,629.476,1.58862,0.20288,0.005632,0.156224,0.005536,0.004832,0.005312,0.019328,0.006016
+1310,579.431,1.72583,0.202816,0.005632,0.156224,0.005184,0.004864,0.005472,0.019296,0.006144
+1311,487.793,2.05005,0.256416,0.005888,0.209344,0.004672,0.005664,0.004576,0.02048,0.005792
+1312,515.869,1.93848,0.203424,0.004768,0.157696,0.005504,0.004736,0.00544,0.020288,0.004992
+1313,550.538,1.81641,0.185504,0.0056,0.137824,0.006144,0.005184,0.005056,0.02048,0.005216
+1314,563.954,1.77319,0.209472,0.004672,0.16384,0.005536,0.004704,0.005408,0.020352,0.00496
+1315,362.414,2.75928,0.230976,0.006112,0.183648,0.0048,0.005536,0.004704,0.02048,0.005696
+1316,555.239,1.80103,0.212736,0.006144,0.165568,0.005536,0.004832,0.004288,0.02048,0.005888
+1317,475.064,2.10498,0.202112,0.006144,0.154848,0.004896,0.005472,0.004768,0.02048,0.005504
+1318,470.642,2.12476,0.18896,0.00464,0.144416,0.005088,0.005536,0.004704,0.020192,0.004384
+1319,623.155,1.60474,0.184704,0.0056,0.137696,0.004544,0.006144,0.005376,0.020352,0.004992
+1320,645.649,1.54883,0.190464,0.006144,0.143232,0.005504,0.004832,0.005312,0.019296,0.006144
+1321,523.785,1.90918,0.206848,0.005792,0.160096,0.005856,0.004384,0.005728,0.020128,0.004864
+1322,531.465,1.88159,0.231424,0.006144,0.185376,0.004896,0.004288,0.005856,0.020288,0.004576
+1323,586.064,1.7063,0.188704,0.005568,0.142048,0.005536,0.004832,0.005312,0.019392,0.006016
+1324,486.808,2.0542,0.198688,0.006144,0.150208,0.006144,0.004096,0.006144,0.02048,0.005472
+1325,451.499,2.21484,0.248096,0.005792,0.200384,0.005056,0.005312,0.004928,0.02048,0.006144
+1326,680.738,1.46899,0.180544,0.0064,0.133472,0.00416,0.0056,0.004576,0.02048,0.005856
+1327,615.57,1.62451,0.1832,0.006368,0.135872,0.005952,0.004288,0.005792,0.020256,0.004672
+1328,588.252,1.69995,0.231424,0.006144,0.184256,0.005536,0.004768,0.005376,0.02032,0.005024
+1329,459.502,2.17627,0.189952,0.0056,0.14224,0.006144,0.005152,0.005088,0.02048,0.005248
+1330,558.723,1.78979,0.189024,0.004768,0.14464,0.0048,0.004096,0.006144,0.02032,0.004256
+1331,579.267,1.72632,0.186624,0.0056,0.140064,0.006144,0.004096,0.006112,0.02032,0.004288
+1332,585.394,1.70825,0.214016,0.00512,0.167936,0.006112,0.004128,0.005984,0.01984,0.004896
+1333,389.354,2.56836,0.200704,0.00608,0.153664,0.006016,0.004224,0.00592,0.020256,0.004544
+1334,624.295,1.60181,0.184064,0.004704,0.138624,0.004736,0.004096,0.006144,0.02048,0.00528
+1335,552.841,1.80884,0.188832,0.0056,0.142144,0.005856,0.004384,0.006144,0.02032,0.004384
+1336,637.014,1.56982,0.205216,0.005568,0.158496,0.005504,0.004832,0.00528,0.019392,0.006144
+1337,443.626,2.25415,0.204608,0.006016,0.15744,0.005536,0.0048,0.004384,0.02048,0.005952
+1338,666.016,1.50146,0.182272,0.006144,0.136544,0.0048,0.004064,0.006144,0.020192,0.004384
+1339,574.232,1.74146,0.188928,0.004608,0.1432,0.005504,0.004832,0.005312,0.01936,0.006112
+1340,470.48,2.12549,0.201536,0.004928,0.155648,0.005696,0.004544,0.0056,0.020384,0.004736
+1341,421.226,2.37402,0.190464,0.006112,0.1432,0.005536,0.004832,0.005312,0.020416,0.005056
+1342,728.048,1.37354,0.181728,0.00576,0.135584,0.004096,0.005664,0.004576,0.02048,0.005568
+1343,587.914,1.70093,0.182144,0.005408,0.135616,0.004576,0.00576,0.00448,0.02048,0.005824
+1344,464.189,2.1543,0.269792,0.006144,0.22256,0.004768,0.0056,0.00464,0.02048,0.0056
+1345,624.2,1.60205,0.186368,0.006144,0.139264,0.005728,0.004512,0.00576,0.020096,0.004864
+1346,572.467,1.74683,0.182272,0.0056,0.136832,0.00496,0.00416,0.00608,0.020288,0.004352
+1347,553.214,1.80762,0.200704,0.005952,0.153792,0.005856,0.004384,0.005696,0.02016,0.004864
+1348,454.455,2.20044,0.194784,0.005888,0.147488,0.004832,0.005504,0.004736,0.02048,0.005856
+1349,583.725,1.71313,0.205088,0.00576,0.158368,0.005952,0.004288,0.005952,0.020384,0.004384
+1350,637.808,1.56787,0.199392,0.0048,0.1536,0.005696,0.004544,0.0056,0.02032,0.004832
+1351,522.582,1.91357,0.187424,0.006016,0.140608,0.004928,0.004096,0.006144,0.02032,0.005312
+1352,532.986,1.87622,0.207712,0.00496,0.161792,0.006144,0.004096,0.00608,0.02032,0.00432
+1353,666.341,1.50073,0.196608,0.006144,0.149408,0.005504,0.004832,0.00528,0.019296,0.006144
+1354,658.733,1.51807,0.194144,0.006144,0.1472,0.004352,0.005376,0.004864,0.02048,0.005728
+1355,644.938,1.55054,0.224928,0.00592,0.177856,0.00464,0.005728,0.004512,0.02048,0.005792
+1356,555.315,1.80078,0.251904,0.006144,0.2048,0.006048,0.004192,0.00592,0.02032,0.00448
+1357,552.99,1.80835,0.184224,0.006144,0.13696,0.005504,0.004832,0.00528,0.019456,0.006048
+1358,504.247,1.98315,0.487424,0.006144,0.439808,0.004608,0.006144,0.0056,0.020352,0.004768
+1359,517.368,1.93286,0.21136,0.0056,0.1648,0.006144,0.004096,0.006144,0.02032,0.004256
+1360,425.117,2.35229,0.19456,0.006144,0.138496,0.004864,0.005472,0.004768,0.02976,0.005056
+1361,449.962,2.22241,0.192736,0.005632,0.146144,0.005888,0.004352,0.005856,0.020384,0.00448
+1362,637.808,1.56787,0.192512,0.006144,0.146912,0.00464,0.004096,0.006144,0.02016,0.004416
+1363,469.994,2.12769,0.247552,0.006144,0.198656,0.006144,0.005152,0.005088,0.02048,0.005888
+1364,588.929,1.698,0.186464,0.006112,0.139168,0.00464,0.005696,0.004544,0.02048,0.005824
+1365,521.319,1.91821,0.195232,0.004768,0.149504,0.006016,0.004224,0.00592,0.020224,0.004576
+1366,515.415,1.94019,0.234432,0.005056,0.188416,0.005312,0.004832,0.005504,0.02032,0.004992
+1367,417.193,2.39697,0.198336,0.006176,0.150912,0.004704,0.005664,0.004576,0.02048,0.005824
+1368,690.492,1.44824,0.18176,0.006112,0.1352,0.005312,0.004832,0.005312,0.01936,0.005632
+1369,451.798,2.21338,0.428032,0.00752,0.37936,0.005504,0.004864,0.005376,0.020384,0.005024
+1370,484.161,2.06543,0.282624,0.006144,0.23552,0.00576,0.00448,0.005632,0.020128,0.00496
+1371,581.818,1.71875,0.18432,0.005728,0.137536,0.005536,0.0048,0.005344,0.020352,0.005024
+1372,663.75,1.50659,0.1824,0.005056,0.136416,0.004896,0.00544,0.0048,0.02048,0.005312
+1373,564.498,1.77148,0.183744,0.00576,0.1368,0.00512,0.005248,0.004992,0.02048,0.005344
+1374,322.063,3.10498,0.33792,0.006016,0.290976,0.0056,0.004608,0.005536,0.02032,0.004864
+1375,691.541,1.44604,0.214176,0.006144,0.16592,0.006112,0.005184,0.005056,0.02048,0.00528
+1376,462.929,2.16016,0.228416,0.005792,0.181728,0.004992,0.005376,0.004864,0.020448,0.005216
+1377,353.591,2.82812,0.2048,0.006144,0.157696,0.00592,0.00432,0.005632,0.020096,0.004992
+1378,554.113,1.80469,0.204832,0.006144,0.157696,0.005472,0.004768,0.005344,0.020384,0.005024
+1379,467.794,2.1377,0.225472,0.005952,0.178368,0.006144,0.004096,0.006144,0.020384,0.004384
+1380,450.853,2.21802,0.253152,0.0056,0.20544,0.006144,0.005216,0.005024,0.02048,0.005248
+1381,414.449,2.41284,0.236128,0.005088,0.18992,0.00464,0.005728,0.004512,0.02048,0.00576
+1382,448.336,2.23047,0.202656,0.006176,0.15536,0.004352,0.005696,0.004544,0.02048,0.006048
+1383,412.986,2.42139,0.191616,0.005632,0.143904,0.006144,0.004096,0.006144,0.020352,0.005344
+1384,469.456,2.13013,0.207328,0.004864,0.161344,0.004544,0.005792,0.004448,0.02048,0.005856
+1385,498.418,2.00635,0.268288,0.006144,0.208896,0.0056,0.00464,0.017984,0.020128,0.004896
+1386,522.249,1.91479,0.249248,0.006144,0.202496,0.004352,0.005376,0.004864,0.02048,0.005536
+1387,587.156,1.70312,0.180832,0.006368,0.133504,0.00576,0.00448,0.005664,0.020256,0.0048
+1388,378.803,2.63989,0.26976,0.0056,0.222112,0.006144,0.004096,0.006144,0.020448,0.005216
+1389,742.029,1.34766,0.20688,0.006144,0.159744,0.006144,0.004096,0.006048,0.02032,0.004384
+1390,492.841,2.02905,0.190752,0.00464,0.14544,0.005216,0.004832,0.005312,0.019424,0.005888
+1391,608.257,1.64404,0.190464,0.00592,0.143584,0.006112,0.004128,0.005984,0.02032,0.004416
+1392,622.209,1.60718,0.186368,0.006048,0.139296,0.005536,0.004768,0.00544,0.020448,0.004832
+1393,563.256,1.77539,0.186368,0.006144,0.139232,0.005504,0.004768,0.005344,0.02032,0.005056
+1394,532.64,1.87744,0.256896,0.00496,0.210944,0.006144,0.004096,0.006144,0.019744,0.004864
+1395,612.532,1.63257,0.190464,0.00592,0.143584,0.0056,0.00464,0.005472,0.020384,0.004864
+1396,701.01,1.42651,0.177248,0.006144,0.129024,0.006144,0.004096,0.006144,0.02048,0.005216
+1397,339.213,2.948,0.479232,0.005504,0.43216,0.004704,0.005824,0.004416,0.02048,0.006144
+1398,439.815,2.27368,0.213248,0.005568,0.16672,0.005344,0.004832,0.00528,0.01936,0.006144
+1399,605.469,1.65161,0.1936,0.006048,0.145504,0.006144,0.004096,0.006144,0.020448,0.005216
+1400,540.369,1.85059,0.200576,0.005632,0.1536,0.004768,0.0056,0.00464,0.02048,0.005856
+1401,382.553,2.61401,0.188416,0.006112,0.141312,0.005504,0.004768,0.005344,0.020288,0.005088
+1402,600.851,1.66431,0.180224,0.006176,0.13312,0.00576,0.004448,0.005696,0.020288,0.004736
+1403,711.482,1.40552,0.17408,0.005376,0.127712,0.005504,0.004768,0.005376,0.020256,0.005088
+1404,556.219,1.79785,0.209984,0.006144,0.162848,0.005088,0.00528,0.00496,0.020448,0.005216
+1405,331.365,3.01782,0.260896,0.004896,0.21504,0.005728,0.004512,0.005696,0.020384,0.00464
+1406,543.813,1.83887,0.189472,0.005568,0.143456,0.004608,0.005184,0.005056,0.020352,0.005248
+1407,489.367,2.04346,0.237568,0.00608,0.190336,0.005504,0.004832,0.00528,0.019392,0.006144
+1408,397.323,2.51685,0.207328,0.005632,0.160736,0.005824,0.004416,0.005728,0.018848,0.006144
+1409,609.796,1.63989,0.182176,0.00496,0.135168,0.006144,0.004096,0.006144,0.020384,0.00528
+1410,582.314,1.71729,0.189792,0.006144,0.143296,0.00416,0.005568,0.004672,0.02048,0.005472
+1411,508.567,1.96631,0.251936,0.005632,0.205184,0.005536,0.004832,0.00528,0.019424,0.006048
+1412,383.162,2.60986,0.629184,0.005664,0.5824,0.005536,0.004832,0.005504,0.020608,0.00464
+1413,439.863,2.27344,0.215392,0.0056,0.168704,0.006144,0.004096,0.00608,0.020352,0.004416
+1414,572.867,1.74561,0.201984,0.005888,0.155392,0.004608,0.005152,0.005088,0.02048,0.005376
+1415,457.092,2.18774,0.194976,0.005024,0.148736,0.004864,0.005472,0.004768,0.02048,0.005632
+1416,659.051,1.51733,0.199168,0.004608,0.1536,0.006144,0.004096,0.006016,0.020256,0.004448
+1417,437.981,2.2832,0.191104,0.005088,0.144896,0.004608,0.005728,0.004512,0.02048,0.005792
+1418,653.791,1.52954,0.235072,0.005696,0.18864,0.004768,0.004096,0.006144,0.02048,0.005248
+1419,596.215,1.67725,0.182624,0.004768,0.136736,0.004576,0.005792,0.004448,0.02048,0.005824
+1420,507.307,1.97119,0.185856,0.006144,0.138624,0.004736,0.005632,0.004608,0.02048,0.005632
+1421,435.004,2.29883,0.219136,0.006144,0.172032,0.006144,0.004096,0.00608,0.02032,0.00432
+1422,480.131,2.08276,0.204736,0.005632,0.158432,0.004096,0.005792,0.004448,0.02048,0.005856
+1423,614.923,1.62622,0.184416,0.006144,0.137216,0.006112,0.004128,0.006048,0.020352,0.004416
+1424,725.855,1.37769,0.179104,0.004992,0.133056,0.005504,0.0048,0.005344,0.019232,0.006176
+1425,435.93,2.29395,0.261664,0.005728,0.213696,0.006144,0.004096,0.006112,0.020512,0.005376
+1426,602.796,1.65894,0.198656,0.00592,0.151776,0.00544,0.0048,0.005344,0.020576,0.0048
+1427,695.77,1.43726,0.182272,0.006144,0.13456,0.004704,0.006144,0.005312,0.020288,0.00512
+1428,649.952,1.53857,0.1792,0.00512,0.13312,0.005824,0.004416,0.005728,0.020224,0.004768
+1429,630.445,1.58618,0.200224,0.006144,0.152928,0.004768,0.0056,0.00464,0.02048,0.005664
+1430,394.111,2.53735,0.192512,0.00576,0.145824,0.005856,0.004352,0.005792,0.020128,0.0048
+1431,646.669,1.54639,0.194976,0.00496,0.148832,0.004768,0.0056,0.00464,0.02048,0.005696
+1432,649.952,1.53857,0.192512,0.006144,0.14544,0.006048,0.00416,0.005952,0.020384,0.004384
+1433,541.441,1.84692,0.195648,0.006144,0.147456,0.006144,0.004096,0.006144,0.020448,0.005216
+1434,462.72,2.16113,0.227328,0.006144,0.180224,0.005952,0.004288,0.005888,0.018688,0.006144
+1435,779.152,1.28345,0.19088,0.005696,0.14416,0.005504,0.0048,0.005312,0.020576,0.004832
+1436,646.567,1.54663,0.180416,0.0056,0.133696,0.005504,0.004832,0.00528,0.01936,0.006144
+1437,637.311,1.56909,0.202048,0.006144,0.1536,0.006144,0.004096,0.006176,0.020288,0.0056
+1438,506.179,1.97559,0.221024,0.00592,0.174304,0.004096,0.005696,0.004544,0.02048,0.005984
+1439,466.302,2.14453,0.219488,0.005664,0.172864,0.005728,0.004512,0.005696,0.020288,0.004736
+1440,660.006,1.51514,0.1904,0.006144,0.141312,0.006144,0.004096,0.006144,0.02048,0.00608
+1441,556.522,1.79688,0.209504,0.0048,0.16272,0.00512,0.005248,0.004992,0.02048,0.006144
+1442,561.711,1.78027,0.18928,0.00496,0.143136,0.00432,0.00576,0.00448,0.022112,0.004512
+1443,661.285,1.51221,0.188416,0.005856,0.141152,0.004544,0.005824,0.004416,0.021952,0.004672
+1444,493.97,2.02441,0.19728,0.0048,0.150976,0.00464,0.005728,0.004512,0.021888,0.004736
+1445,615.2,1.62549,0.21568,0.004768,0.169984,0.006016,0.004192,0.00592,0.02016,0.00464
+1446,561.327,1.78149,0.226496,0.005792,0.17856,0.005184,0.005024,0.005664,0.020352,0.00592
+1447,638.603,1.56592,0.180032,0.006272,0.13152,0.006144,0.00512,0.00512,0.020448,0.005408
+1448,404.623,2.47144,0.199136,0.0056,0.152544,0.005696,0.004544,0.0056,0.020352,0.0048
+1449,618.825,1.61597,0.218496,0.005952,0.171456,0.004864,0.005472,0.004768,0.02048,0.005504
+1450,498.418,2.00635,0.40512,0.004512,0.3584,0.005632,0.004608,0.006144,0.02048,0.005344
+1451,676.019,1.47925,0.186368,0.005856,0.139552,0.005952,0.004288,0.005856,0.020224,0.00464
+1452,503.132,1.98755,0.423392,0.00432,0.376832,0.006144,0.004096,0.00608,0.020544,0.005376
+1453,489.25,2.04395,0.231072,0.005632,0.184864,0.005344,0.004832,0.00528,0.019328,0.005792
+1454,630.251,1.58667,0.188288,0.004704,0.1432,0.004256,0.005472,0.004768,0.02048,0.005408
+1455,551.353,1.81372,0.189216,0.004864,0.14336,0.006048,0.004192,0.005952,0.020288,0.004512
+1456,319.426,3.13062,0.401568,0.0056,0.354528,0.004576,0.005856,0.004384,0.02048,0.006144
+1457,401.923,2.48804,0.268448,0.006144,0.221184,0.006144,0.004096,0.006144,0.020352,0.004384
+1458,457.858,2.18408,0.211328,0.00576,0.16432,0.004384,0.005888,0.005504,0.019328,0.006144
+1459,506.242,1.97534,0.231232,0.00576,0.184064,0.004736,0.0056,0.00464,0.02048,0.005952
+1460,464.557,2.15259,0.415936,0.006048,0.368736,0.006144,0.004096,0.006144,0.020384,0.004384
+1461,581.323,1.72021,0.188896,0.005632,0.142304,0.006144,0.004096,0.006048,0.020128,0.004544
+1462,525.196,1.90405,0.200704,0.004704,0.155136,0.004608,0.00528,0.00496,0.02048,0.005536
+1463,308.294,3.24365,0.230048,0.00496,0.184,0.005536,0.004832,0.004288,0.020512,0.00592
+1464,728.955,1.37183,0.212992,0.007296,0.164736,0.006144,0.004096,0.00608,0.02032,0.00432
+1465,508.441,1.9668,0.205248,0.005696,0.157888,0.004768,0.0056,0.00464,0.02048,0.006176
+1466,528.516,1.89209,0.209696,0.004896,0.16384,0.005856,0.004384,0.005728,0.02032,0.004672
+1467,523.384,1.91064,0.408736,0.00544,0.361312,0.006144,0.004096,0.006112,0.020448,0.005184
+1468,551.279,1.81396,0.19456,0.006144,0.147456,0.005856,0.004384,0.00576,0.020128,0.004832
+1469,565.59,1.76807,0.209408,0.004736,0.163712,0.006016,0.004224,0.005888,0.02032,0.004512
+1470,520.259,1.92212,0.2048,0.00608,0.15776,0.005536,0.004704,0.00544,0.020352,0.004928
+1471,474.899,2.10571,0.204736,0.005664,0.15776,0.004512,0.006016,0.00528,0.019424,0.00608
+1472,599.268,1.6687,0.202048,0.006144,0.154656,0.005088,0.00528,0.00496,0.02048,0.00544
+1473,564.576,1.77124,0.227744,0.0056,0.181184,0.005952,0.004288,0.00608,0.020384,0.004256
+1474,418.6,2.38892,0.197568,0.005056,0.152704,0.00496,0.004128,0.006016,0.02032,0.004384
+1475,596.997,1.67505,0.190496,0.0056,0.143712,0.005504,0.004832,0.00528,0.019424,0.006144
+1476,648.306,1.54248,0.189376,0.005056,0.143264,0.005504,0.004832,0.00592,0.02032,0.00448
+1477,498.479,2.0061,0.208128,0.006144,0.160928,0.00496,0.005376,0.004864,0.02048,0.005376
+1478,532.571,1.87769,0.205664,0.00512,0.159712,0.004128,0.0056,0.00464,0.020512,0.005952
+1479,385.578,2.59351,0.206752,0.006144,0.15968,0.005536,0.004768,0.005312,0.019264,0.006048
+1480,484.906,2.06226,0.215584,0.004736,0.16976,0.005504,0.004832,0.005312,0.019392,0.006048
+1481,468.65,2.13379,0.205056,0.0056,0.158496,0.005568,0.004672,0.00544,0.020288,0.004992
+1482,650.779,1.53662,0.182464,0.0056,0.135936,0.00528,0.004832,0.00528,0.019392,0.006144
+1483,554.038,1.80493,0.194368,0.0056,0.147648,0.004928,0.005408,0.004832,0.02048,0.005472
+1484,518.022,1.93042,0.211392,0.00592,0.16416,0.004608,0.00576,0.005568,0.019392,0.005984
+1485,415.922,2.4043,0.20416,0.005728,0.157504,0.004704,0.005632,0.004608,0.02048,0.005504
+1486,730.385,1.36914,0.182432,0.006144,0.1352,0.005824,0.004384,0.006144,0.02032,0.004416
+1487,542.948,1.8418,0.229568,0.006336,0.182272,0.0056,0.00464,0.005472,0.02032,0.004928
+1488,418.343,2.39038,0.241152,0.006144,0.193632,0.005024,0.005344,0.004896,0.02048,0.005632
+1489,567.942,1.76074,0.190464,0.006176,0.14336,0.005856,0.004352,0.00608,0.020192,0.004448
+1490,616.496,1.62207,0.186368,0.006144,0.139264,0.0056,0.00464,0.005536,0.020288,0.004896
+1491,511.808,1.95386,0.213472,0.004576,0.167936,0.006016,0.004224,0.005888,0.020288,0.004544
+1492,412.57,2.42383,0.190464,0.00592,0.143584,0.005728,0.004512,0.0056,0.020128,0.004992
+1493,667.971,1.49707,0.182208,0.006144,0.134848,0.005536,0.004832,0.005344,0.019424,0.00608
+1494,710.371,1.40771,0.186368,0.006144,0.14048,0.004896,0.004128,0.006016,0.020224,0.00448
+1495,368.412,2.71436,0.549216,0.007008,0.499712,0.006144,0.005184,0.005056,0.02048,0.005632
+1496,650.056,1.53833,0.182272,0.00736,0.133952,0.006144,0.004096,0.006112,0.020224,0.004384
+1497,510.341,1.95947,0.181792,0.007424,0.133472,0.004768,0.0056,0.00464,0.02048,0.005408
+1498,770.504,1.29785,0.205568,0.005024,0.159744,0.005312,0.004832,0.00528,0.019392,0.005984
+1499,443.53,2.25464,0.196608,0.005696,0.14992,0.005504,0.004768,0.005376,0.02032,0.005024
+1500,511.808,1.95386,0.187392,0.006144,0.139264,0.006144,0.004096,0.006144,0.020384,0.005216
+1501,418.173,2.39136,0.200416,0.0056,0.153568,0.00512,0.005216,0.005024,0.02048,0.005408
+1502,610.979,1.63672,0.211168,0.004896,0.165408,0.004576,0.005248,0.004992,0.02048,0.005568
+1503,401.018,2.49365,0.233472,0.006112,0.1864,0.006144,0.004096,0.006112,0.02032,0.004288
+1504,613.725,1.62939,0.191904,0.006144,0.144512,0.004992,0.005376,0.004864,0.02048,0.005536
+1505,452.747,2.20874,0.194016,0.00592,0.146912,0.004896,0.005472,0.004768,0.02048,0.005568
+1506,511.68,1.95435,0.214912,0.00496,0.169408,0.00464,0.005152,0.005088,0.020384,0.00528
+1507,580.746,1.72192,0.184992,0.006048,0.137984,0.005536,0.004704,0.005408,0.020544,0.004768
+1508,583.975,1.7124,0.19456,0.005984,0.147648,0.00576,0.004448,0.005664,0.020224,0.004832
+1509,428.497,2.33374,0.2512,0.006144,0.203808,0.005088,0.005408,0.004832,0.02048,0.00544
+1510,448.287,2.23071,0.198656,0.006144,0.151552,0.005536,0.004704,0.00544,0.019136,0.006144
+1511,430.84,2.32104,0.221376,0.005632,0.174464,0.005536,0.0048,0.00432,0.02048,0.006144
+1512,553.588,1.8064,0.238912,0.006048,0.191584,0.00512,0.005248,0.004992,0.02048,0.00544
+1513,368.876,2.71094,0.200704,0.006144,0.1536,0.005536,0.004704,0.005376,0.020576,0.004768
+1514,610.159,1.63892,0.2664,0.004832,0.220576,0.004704,0.004096,0.006144,0.02048,0.005568
+1515,590.117,1.69458,0.204576,0.006112,0.156928,0.004896,0.00544,0.0048,0.02048,0.00592
+1516,476.279,2.09961,0.192288,0.005632,0.145376,0.00496,0.005408,0.004832,0.02048,0.0056
+1517,477.501,2.09424,0.199424,0.004864,0.153152,0.004544,0.005792,0.004448,0.02048,0.006144
+1518,769.635,1.29932,0.198656,0.005728,0.152,0.006112,0.005184,0.005056,0.019776,0.0048
+1519,464.241,2.15405,0.272384,0.006144,0.224864,0.004512,0.00608,0.005312,0.019328,0.006144
+1520,388.799,2.57202,0.237088,0.004704,0.190176,0.005504,0.004832,0.005664,0.020384,0.005824
+1521,431.294,2.3186,0.223488,0.00576,0.176768,0.005536,0.004704,0.005408,0.020224,0.005088
+1522,588.675,1.69873,0.208128,0.006144,0.16128,0.004608,0.005152,0.005088,0.02048,0.005376
+1523,441.998,2.26245,0.19968,0.006144,0.151072,0.004576,0.006144,0.005536,0.020288,0.00592
+1524,561.327,1.78149,0.20432,0.005856,0.157312,0.004768,0.0056,0.00464,0.02048,0.005664
+1525,572.547,1.74658,0.186368,0.00576,0.139648,0.005856,0.004384,0.005728,0.020224,0.004768
+1526,384.529,2.60059,0.233472,0.006144,0.186368,0.006144,0.004096,0.006144,0.02,0.004576
+1527,450.357,2.22046,0.202848,0.005568,0.15632,0.005856,0.004384,0.005504,0.020288,0.004928
+1528,670.267,1.49194,0.190272,0.005856,0.143232,0.004608,0.00576,0.004384,0.02048,0.005952
+1529,558.114,1.79175,0.208576,0.004704,0.161792,0.006144,0.004096,0.006112,0.020512,0.005216
+1530,405.384,2.4668,0.212704,0.005632,0.166336,0.004288,0.00544,0.0048,0.02048,0.005728
+1531,650.675,1.53687,0.182272,0.006144,0.135168,0.0056,0.00464,0.005472,0.020288,0.00496
+1532,694.708,1.43945,0.178816,0.004832,0.133056,0.006112,0.004096,0.00608,0.020128,0.004512
+1533,558.571,1.79028,0.20896,0.008064,0.159936,0.006048,0.004192,0.005888,0.020256,0.004576
+1534,519.072,1.92651,0.219328,0.005568,0.174656,0.004192,0.005664,0.004544,0.02032,0.004384
+1535,493.078,2.02808,0.221024,0.006048,0.173696,0.004576,0.005792,0.004448,0.02048,0.005984
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..cc33223
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,394.966,2.57516,1.04884,0.0110306,0.244697,0.00566241,0.00547122,0.00725706,0.0134694,0.0146525,0.736867,0.00973128
+max_1024,504.123,6.01001,1.26566,0.028672,0.412672,0.02384,0.022912,0.020576,0.02912,0.031616,0.79872,0.024576
+min_1024,166.389,1.98364,0.96256,0.008832,0.22528,0.004096,0.004096,0.006144,0.012256,0.013024,0.66352,0.008224
+512,404.563,2.4718,0.977408,0.010752,0.239264,0.005664,0.004928,0.007616,0.012864,0.014336,0.671744,0.01024
+513,445.944,2.24243,0.964608,0.011648,0.230016,0.006112,0.005472,0.006848,0.012288,0.014336,0.667648,0.01024
+514,285.058,3.50806,0.988736,0.01056,0.24368,0.005696,0.004544,0.008128,0.013536,0.014432,0.678176,0.009984
+515,427.334,2.34009,0.98272,0.01152,0.24224,0.005632,0.0048,0.007744,0.012736,0.014336,0.673792,0.00992
+516,412.57,2.42383,0.982656,0.011456,0.23568,0.004768,0.005248,0.00704,0.014016,0.014464,0.669888,0.020096
+517,366.401,2.72925,1.03424,0.011648,0.293504,0.006144,0.005568,0.00672,0.01392,0.01456,0.671968,0.010208
+518,412.238,2.42578,0.995328,0.018432,0.24576,0.005888,0.00544,0.007072,0.01376,0.014432,0.674304,0.01024
+519,310.068,3.2251,0.974432,0.011616,0.239872,0.005728,0.004928,0.007584,0.012896,0.014336,0.667648,0.009824
+520,417.533,2.39502,0.977408,0.010784,0.23904,0.004832,0.005952,0.007296,0.013184,0.014336,0.673312,0.008672
+521,448.14,2.23145,0.989216,0.01024,0.237568,0.006144,0.005856,0.006432,0.013888,0.014656,0.685248,0.009184
+522,450.655,2.21899,0.98304,0.01024,0.243232,0.00592,0.0048,0.00768,0.0128,0.014336,0.673792,0.01024
+523,397.593,2.51514,0.976288,0.012288,0.23552,0.006176,0.005856,0.0064,0.014272,0.0144,0.671584,0.009792
+524,464.873,2.15112,0.978944,0.01168,0.231008,0.00512,0.005952,0.006336,0.01408,0.014528,0.68,0.01024
+525,426.223,2.34619,1.02413,0.0104,0.280544,0.006144,0.005824,0.006464,0.0136,0.014528,0.677472,0.009152
+526,426.667,2.34375,0.981056,0.010816,0.240992,0.004832,0.00608,0.007328,0.013184,0.014304,0.673792,0.009728
+527,459.553,2.17603,0.976256,0.010336,0.2368,0.004864,0.006144,0.006368,0.014112,0.014336,0.673792,0.009504
+528,425.957,2.34766,0.980672,0.010592,0.23552,0.005824,0.00544,0.007104,0.013824,0.014624,0.677888,0.009856
+529,402.042,2.4873,0.970688,0.010336,0.233472,0.005856,0.005472,0.007072,0.013312,0.014464,0.670592,0.010112
+530,462.25,2.16333,0.985088,0.011616,0.230048,0.006144,0.005856,0.006432,0.013984,0.014688,0.687168,0.009152
+531,425.073,2.35254,0.98464,0.011328,0.238528,0.005632,0.004608,0.008192,0.013536,0.01424,0.678784,0.009792
+532,426.045,2.34717,0.977056,0.0104,0.232864,0.004832,0.006016,0.007296,0.013184,0.014336,0.679232,0.008896
+533,350.835,2.85034,0.999424,0.011872,0.237888,0.006016,0.005472,0.00704,0.012288,0.015552,0.67872,0.024576
+534,359.267,2.78345,0.966944,0.010816,0.232448,0.005088,0.005984,0.006304,0.014176,0.014528,0.667616,0.009984
+535,454.303,2.20117,0.966144,0.01024,0.229344,0.005568,0.004704,0.007872,0.01264,0.014304,0.671744,0.009728
+536,447.65,2.23389,0.987168,0.010272,0.229376,0.005952,0.004288,0.007712,0.013824,0.0144,0.680384,0.02096
+537,397.902,2.51318,0.972768,0.01056,0.24064,0.00512,0.005952,0.006304,0.013728,0.014304,0.66624,0.00992
+538,456.531,2.19043,0.970528,0.010272,0.226496,0.004928,0.006112,0.006304,0.014176,0.014336,0.677888,0.010016
+539,390.542,2.56055,1.04243,0.01024,0.296768,0.00576,0.004672,0.007872,0.012608,0.014336,0.679936,0.01024
+540,328.363,3.04541,0.984384,0.010272,0.238752,0.004928,0.006144,0.007232,0.013248,0.014336,0.679872,0.0096
+541,457.092,2.18774,0.974912,0.010272,0.22736,0.006144,0.005472,0.006816,0.012288,0.014432,0.681888,0.01024
+542,470.48,2.12549,0.9832,0.010976,0.23552,0.006176,0.005664,0.006592,0.013696,0.014976,0.679328,0.010272
+543,364.445,2.7439,0.989472,0.01072,0.235136,0.005632,0.004992,0.007584,0.012896,0.014336,0.688128,0.010048
+544,476.778,2.09741,0.966688,0.010272,0.227296,0.005696,0.004544,0.008032,0.013728,0.014432,0.672416,0.010272
+545,323.028,3.0957,0.991904,0.010816,0.243808,0.006176,0.005536,0.00672,0.013536,0.014176,0.680896,0.01024
+546,413.403,2.41895,0.984512,0.01024,0.235232,0.005568,0.00496,0.007552,0.012928,0.014336,0.683968,0.009728
+547,435.93,2.29395,0.967552,0.011136,0.229376,0.006048,0.005472,0.006912,0.013376,0.014336,0.672,0.008896
+548,431.658,2.31665,0.99328,0.010272,0.255968,0.00592,0.00432,0.00768,0.0128,0.014336,0.671744,0.01024
+549,427.334,2.34009,0.96256,0.010272,0.23296,0.006016,0.004704,0.007808,0.012672,0.014368,0.66352,0.01024
+550,438.967,2.27808,0.973088,0.010528,0.228416,0.005088,0.006048,0.007232,0.013216,0.014432,0.677888,0.01024
+551,404.983,2.46924,1.02646,0.010656,0.296224,0.004832,0.006144,0.007168,0.013312,0.014336,0.663552,0.01024
+552,318.383,3.14087,0.976896,0.010272,0.241664,0.006112,0.005952,0.006336,0.014336,0.014336,0.66768,0.010208
+553,389.687,2.56616,0.985088,0.012192,0.245856,0.005504,0.004736,0.007808,0.012672,0.014336,0.673056,0.008928
+554,402.2,2.48633,0.98976,0.010816,0.237568,0.005888,0.005472,0.007072,0.013312,0.014656,0.684736,0.01024
+555,468.382,2.13501,0.980992,0.011328,0.230336,0.00608,0.005472,0.006912,0.013536,0.014208,0.68288,0.01024
+556,439.674,2.27441,0.970784,0.01024,0.229376,0.006016,0.005472,0.006944,0.013536,0.014208,0.67472,0.010272
+557,368.611,2.71289,0.985824,0.010976,0.237472,0.005664,0.004672,0.007968,0.012512,0.01552,0.6808,0.01024
+558,403.785,2.47656,1.04448,0.01184,0.293312,0.005984,0.005472,0.006976,0.0176,0.01312,0.681376,0.0088
+559,431.749,2.31616,0.974336,0.010304,0.239584,0.006112,0.005472,0.006848,0.013536,0.0144,0.668384,0.009696
+560,396.976,2.51904,0.975552,0.010944,0.234656,0.00496,0.006112,0.007456,0.013056,0.014336,0.674912,0.00912
+561,449.172,2.22632,0.988736,0.010432,0.229408,0.005792,0.00544,0.007136,0.01232,0.014336,0.694272,0.0096
+562,434.405,2.302,1.0199,0.011264,0.257024,0.006144,0.006048,0.00624,0.014176,0.02064,0.689312,0.009056
+563,387.439,2.58105,0.990624,0.01056,0.239616,0.005728,0.004512,0.008,0.01248,0.01552,0.684608,0.0096
+564,391.737,2.55273,0.985728,0.010912,0.231072,0.004416,0.005312,0.006976,0.013856,0.014368,0.688576,0.01024
+565,435.42,2.29663,0.991776,0.010784,0.255456,0.004832,0.005952,0.007456,0.013024,0.014336,0.669696,0.01024
+566,445.072,2.24683,0.97232,0.010688,0.23552,0.006176,0.0056,0.006656,0.01392,0.01424,0.669888,0.009632
+567,461.313,2.16772,0.967392,0.010528,0.23184,0.005728,0.004512,0.008,0.01248,0.015488,0.670112,0.008704
+568,435.282,2.29736,0.997408,0.010464,0.26528,0.004832,0.006144,0.006336,0.014016,0.014304,0.66576,0.010272
+569,397.284,2.51709,0.98304,0.011808,0.233952,0.006144,0.00592,0.0064,0.01376,0.0144,0.680416,0.01024
+570,476.834,2.09717,0.980992,0.012288,0.23056,0.00496,0.006112,0.006272,0.014048,0.014368,0.682176,0.010208
+571,400.861,2.49463,1.08352,0.020896,0.331072,0.004832,0.006112,0.007264,0.013216,0.014336,0.67584,0.009952
+572,421.92,2.37012,0.98688,0.010912,0.233472,0.005888,0.005472,0.007072,0.013504,0.01312,0.687808,0.009632
+573,442.667,2.25903,0.976992,0.010304,0.232832,0.004864,0.006016,0.007264,0.013088,0.014464,0.67952,0.00864
+574,458.833,2.17944,1.00838,0.011008,0.26832,0.005888,0.005472,0.00704,0.013408,0.014752,0.673824,0.008672
+575,451.947,2.21265,0.976896,0.011872,0.233632,0.0056,0.004896,0.007584,0.012896,0.014336,0.676896,0.009184
+576,461.105,2.1687,0.971296,0.01072,0.228736,0.004832,0.006112,0.007232,0.013248,0.014336,0.677024,0.009056
+577,439.155,2.2771,1.03725,0.011232,0.2744,0.015776,0.005888,0.007008,0.012288,0.015392,0.685024,0.01024
+578,351.92,2.84155,1.00531,0.010464,0.257056,0.005056,0.006112,0.006176,0.014336,0.014336,0.681952,0.009824
+579,353.347,2.83008,1.02122,0.010272,0.260064,0.005984,0.005472,0.006976,0.012288,0.014336,0.696128,0.009696
+580,360.849,2.77124,0.98608,0.0112,0.241696,0.005664,0.004576,0.007904,0.013952,0.014208,0.67664,0.01024
+581,444.348,2.25049,0.978752,0.010272,0.233248,0.0056,0.004832,0.007776,0.012704,0.014336,0.679968,0.010016
+582,433.027,2.30933,0.973952,0.010272,0.230656,0.004832,0.006144,0.007392,0.014272,0.015104,0.675712,0.009568
+583,392.676,2.54663,0.980992,0.010272,0.2368,0.004832,0.006144,0.007168,0.01328,0.014368,0.67904,0.009088
+584,317.864,3.146,1.04486,0.009152,0.28576,0.004864,0.004128,0.007936,0.013952,0.0144,0.694624,0.010048
+585,320.2,3.12305,1.02806,0.010976,0.284672,0.006144,0.005696,0.006592,0.01344,0.014752,0.676032,0.00976
+586,384.673,2.59961,1.00384,0.010592,0.246912,0.004992,0.006048,0.006208,0.014144,0.014528,0.691744,0.008672
+587,403.547,2.47803,0.989184,0.011744,0.239904,0.0056,0.004896,0.00768,0.0128,0.014336,0.683392,0.008832
+588,301.82,3.31323,0.99824,0.01072,0.248224,0.006112,0.006144,0.006272,0.014208,0.014336,0.683424,0.0088
+589,383.736,2.60596,0.995456,0.011712,0.243744,0.0048,0.005984,0.007392,0.012832,0.014592,0.685568,0.008832
+590,353.622,2.82788,1.09568,0.010272,0.341632,0.005952,0.00464,0.007904,0.012576,0.014336,0.689664,0.008704
+591,393.96,2.53833,1.02621,0.010368,0.262144,0.005792,0.005472,0.007104,0.013504,0.014592,0.698144,0.009088
+592,433.944,2.30444,0.991296,0.010304,0.235136,0.006016,0.004608,0.007936,0.013632,0.014272,0.690528,0.008864
+593,344.781,2.90039,0.997696,0.01056,0.24496,0.004896,0.006144,0.006336,0.014112,0.0144,0.687424,0.008864
+594,436.767,2.28955,0.978944,0.011616,0.236192,0.005856,0.005472,0.007104,0.013408,0.014304,0.674752,0.01024
+595,431.658,2.31665,1.00544,0.012256,0.25104,0.004992,0.00608,0.006304,0.014112,0.0144,0.686176,0.01008
+596,322.85,3.09741,1.05341,0.010752,0.27888,0.0056,0.004704,0.00768,0.022496,0.014336,0.698912,0.010048
+597,420.62,2.37744,0.997376,0.01024,0.239616,0.006144,0.0056,0.006688,0.014016,0.014656,0.690176,0.01024
+598,399.376,2.50391,1.00352,0.010272,0.25392,0.006144,0.005792,0.006496,0.013824,0.014112,0.68272,0.01024
+599,275.417,3.63086,0.988224,0.01184,0.240064,0.006176,0.005792,0.006464,0.014272,0.0144,0.67968,0.009536
+600,237.243,4.21509,0.999776,0.010624,0.249824,0.006144,0.005472,0.006816,0.013632,0.014368,0.682656,0.01024
+601,324.256,3.08398,0.996416,0.011872,0.239872,0.005632,0.004768,0.007904,0.012576,0.014336,0.68976,0.009696
+602,439.721,2.27417,0.993248,0.010336,0.241696,0.006048,0.005504,0.006848,0.013568,0.014176,0.68496,0.010112
+603,405.625,2.46533,0.978944,0.011808,0.233056,0.004992,0.006144,0.006144,0.013888,0.014816,0.679136,0.00896
+604,491.54,2.03442,0.977184,0.009792,0.229664,0.0056,0.005088,0.007488,0.012992,0.014336,0.683168,0.009056
+605,430.207,2.32446,1.00112,0.011904,0.249472,0.004896,0.006112,0.007488,0.012992,0.014336,0.684032,0.009888
+606,379.505,2.63501,1.00134,0.010528,0.236832,0.004864,0.006112,0.007168,0.013312,0.014368,0.698336,0.009824
+607,403.626,2.47754,1.09571,0.012128,0.336,0.005632,0.00464,0.014368,0.014272,0.014368,0.685536,0.008768
+608,425.647,2.34937,1.02682,0.011008,0.271968,0.0056,0.005056,0.015648,0.014048,0.014624,0.678624,0.01024
+609,386.16,2.5896,0.987616,0.01072,0.233472,0.005728,0.004512,0.008064,0.012448,0.015712,0.68672,0.01024
+610,464.399,2.15332,0.991104,0.009152,0.229344,0.006048,0.00544,0.006912,0.01376,0.014496,0.69632,0.009632
+611,435.977,2.2937,1.06022,0.011584,0.278624,0.004832,0.006016,0.018432,0.013952,0.014528,0.702656,0.0096
+612,390.43,2.56128,0.98912,0.010784,0.234848,0.004992,0.006048,0.00624,0.014336,0.014304,0.688064,0.009504
+613,329.87,3.03149,0.99328,0.009792,0.227776,0.006176,0.005504,0.006784,0.01328,0.013312,0.701952,0.008704
+614,388.21,2.57593,1.08134,0.010272,0.330944,0.004896,0.006144,0.006144,0.014336,0.014336,0.685536,0.008736
+615,434.866,2.29956,0.999424,0.01024,0.23664,0.005024,0.006016,0.006272,0.013984,0.014656,0.696352,0.01024
+616,408.009,2.45093,0.985088,0.01024,0.241056,0.004832,0.006016,0.007296,0.013184,0.014336,0.679072,0.009056
+617,397.709,2.5144,0.991232,0.012032,0.237312,0.006048,0.004704,0.007936,0.012544,0.014336,0.68608,0.01024
+618,444.348,2.25049,0.992448,0.011776,0.231744,0.005632,0.0048,0.007776,0.013984,0.014272,0.69296,0.009504
+619,463.086,2.15942,0.984224,0.010112,0.229504,0.00608,0.00544,0.006944,0.013408,0.014944,0.688128,0.009664
+620,293.62,3.40576,1.00662,0.010656,0.24368,0.004832,0.006016,0.007264,0.013248,0.014304,0.697824,0.0088
+621,462.25,2.16333,0.995168,0.008832,0.233472,0.005728,0.004512,0.008128,0.012352,0.01552,0.696768,0.009856
+622,415.163,2.40869,1.02042,0.010592,0.262304,0.006144,0.005728,0.00656,0.014112,0.014464,0.690272,0.01024
+623,434.266,2.30273,0.984288,0.012192,0.2336,0.00592,0.005472,0.007008,0.012352,0.01536,0.682848,0.009536
+624,475.064,2.10498,0.98864,0.010016,0.227552,0.006144,0.005792,0.006496,0.014112,0.0144,0.694432,0.009696
+625,418.215,2.39111,1.00976,0.01024,0.253376,0.004832,0.005984,0.007264,0.013216,0.01424,0.691808,0.0088
+626,339.213,2.948,1.068,0.01104,0.284544,0.00544,0.022912,0.006784,0.013472,0.0144,0.699168,0.01024
+627,425.382,2.35083,0.987872,0.010688,0.235232,0.00576,0.004928,0.007648,0.012832,0.014368,0.687648,0.008768
+628,433.118,2.30884,1.04246,0.012,0.28624,0.004864,0.006144,0.006144,0.014336,0.014272,0.689696,0.008768
+629,457.245,2.18701,0.99328,0.01024,0.233472,0.006144,0.005472,0.006816,0.0136,0.014432,0.69408,0.009024
+630,430.297,2.32397,1.00352,0.010624,0.231424,0.006144,0.005856,0.006464,0.013952,0.014528,0.704672,0.009856
+631,423.753,2.35986,1.04246,0.010272,0.280576,0.006144,0.005472,0.006816,0.013632,0.014464,0.696256,0.008832
+632,465.931,2.14624,0.995488,0.01056,0.231744,0.005792,0.004448,0.007456,0.013024,0.01552,0.697184,0.00976
+633,320.15,3.12354,1.00202,0.01072,0.243072,0.004832,0.006112,0.007168,0.013344,0.014304,0.692224,0.01024
+634,364.154,2.74609,0.99328,0.011616,0.237664,0.004832,0.005984,0.007296,0.013184,0.014336,0.688128,0.01024
+635,449.369,2.22534,0.977792,0.01072,0.23184,0.005824,0.00544,0.007104,0.01344,0.01456,0.680032,0.008832
+636,438.356,2.28125,0.984736,0.010272,0.23344,0.005952,0.005472,0.007008,0.013728,0.014432,0.684544,0.009888
+637,413.32,2.41943,0.98496,0.01056,0.232576,0.00512,0.005952,0.006304,0.014208,0.014496,0.686048,0.009696
+638,490.187,2.04004,0.979328,0.01056,0.233536,0.005408,0.004832,0.007648,0.012832,0.014336,0.681408,0.008768
+639,380.952,2.625,1.09981,0.01024,0.320608,0.005024,0.006048,0.020576,0.01408,0.014592,0.699904,0.008736
+640,411.617,2.42944,0.999424,0.01024,0.235232,0.0056,0.004928,0.007744,0.012736,0.014336,0.698368,0.01024
+641,460.898,2.16968,0.989088,0.008832,0.23472,0.004896,0.006144,0.006176,0.014112,0.014528,0.690176,0.009504
+642,377.372,2.6499,1.03402,0.011456,0.260992,0.006144,0.005664,0.006624,0.013632,0.022432,0.69712,0.009952
+643,323.897,3.0874,1.00371,0.010464,0.237536,0.006144,0.005696,0.006592,0.0136,0.014528,0.700288,0.008864
+644,419.285,2.38501,1.03222,0.01024,0.258048,0.005984,0.005472,0.006976,0.01392,0.014368,0.706976,0.01024
+645,351.347,2.84619,1.18426,0.01072,0.396928,0.005696,0.00496,0.008192,0.012288,0.015488,0.720896,0.009088
+646,385.687,2.59277,0.991968,0.010784,0.235328,0.005696,0.004736,0.007744,0.012768,0.014304,0.691776,0.008832
+647,430.342,2.32373,1.00765,0.01024,0.236864,0.004832,0.006112,0.007232,0.013088,0.014496,0.706016,0.008768
+648,337.508,2.96289,0.999904,0.010688,0.249792,0.0056,0.004704,0.00784,0.012768,0.01552,0.684224,0.008768
+649,464.768,2.15161,0.989184,0.01184,0.23168,0.005664,0.004768,0.00784,0.01264,0.014336,0.690176,0.01024
+650,454.152,2.2019,0.999744,0.011904,0.236192,0.005632,0.00464,0.007872,0.012608,0.014336,0.697536,0.009024
+651,366.172,2.73096,1.09811,0.01072,0.331744,0.005792,0.005472,0.019232,0.013728,0.014624,0.686624,0.010176
+652,432.844,2.3103,0.980352,0.011648,0.229984,0.0056,0.004672,0.007936,0.012544,0.014336,0.684,0.009632
+653,413.821,2.4165,0.999136,0.010368,0.245088,0.004832,0.005952,0.007328,0.012832,0.014336,0.688448,0.009952
+654,401.333,2.4917,1.00038,0.009152,0.23344,0.005952,0.005472,0.007008,0.013728,0.01456,0.702272,0.0088
+655,320.551,3.11963,0.995072,0.01024,0.226976,0.005568,0.005024,0.00752,0.012992,0.014304,0.702464,0.009984
+656,379.505,2.63501,1.06682,0.01024,0.294752,0.005568,0.004832,0.00768,0.0128,0.014336,0.70656,0.010048
+657,428.094,2.33594,0.999904,0.01072,0.232864,0.004832,0.006016,0.007296,0.012928,0.01424,0.700768,0.01024
+658,395.711,2.5271,1.00336,0.010656,0.237568,0.006144,0.00576,0.006528,0.014336,0.014336,0.698368,0.009664
+659,384.024,2.604,0.992512,0.010304,0.233504,0.006112,0.0056,0.006688,0.013728,0.014464,0.692448,0.009664
+660,401.097,2.49316,0.996992,0.010336,0.2368,0.004832,0.006144,0.006336,0.014144,0.014304,0.694304,0.009792
+661,324.59,3.08081,1.00557,0.011616,0.24784,0.004832,0.006048,0.007328,0.013152,0.014336,0.690176,0.01024
+662,317.667,3.14795,1.03424,0.011296,0.273376,0.005504,0.004736,0.007904,0.012576,0.014336,0.695424,0.009088
+663,424.017,2.3584,1.00253,0.011552,0.234208,0.006144,0.005696,0.006592,0.013856,0.014432,0.70032,0.009728
+664,360.405,2.77466,1.01846,0.010752,0.23808,0.006112,0.005696,0.006592,0.013728,0.014752,0.712896,0.009856
+665,457.756,2.18457,0.995264,0.010944,0.233472,0.005696,0.004544,0.007968,0.012512,0.014336,0.696,0.009792
+666,399.649,2.5022,1.0104,0.027232,0.235616,0.006144,0.0056,0.006688,0.013824,0.014848,0.690176,0.010272
+667,351.046,2.84863,1.0961,0.010656,0.317376,0.005696,0.004608,0.017984,0.012896,0.015232,0.70288,0.008768
+668,419.543,2.38354,1.02461,0.01088,0.251456,0.0056,0.005056,0.007456,0.014752,0.014272,0.70608,0.009056
+669,370.009,2.70264,0.9968,0.012064,0.241536,0.00576,0.004832,0.007712,0.012768,0.014336,0.688128,0.009664
+670,340.822,2.93408,1.01581,0.011296,0.240608,0.006144,0.0056,0.006688,0.013984,0.014336,0.706912,0.01024
+671,405.705,2.46484,0.996608,0.01024,0.234944,0.0048,0.006016,0.007296,0.013184,0.014368,0.695744,0.010016
+672,371.452,2.69214,1.00762,0.010272,0.23904,0.004832,0.005952,0.007392,0.013088,0.014336,0.703776,0.008928
+673,398.715,2.50806,1.01053,0.01072,0.24128,0.004864,0.006144,0.006144,0.014336,0.014336,0.702464,0.01024
+674,414.156,2.41455,1.024,0.011744,0.244256,0.006112,0.005472,0.006848,0.01392,0.01424,0.711168,0.01024
+675,340.199,2.93945,1.00314,0.011712,0.240192,0.005696,0.004544,0.008,0.01248,0.014336,0.69632,0.009856
+676,437.327,2.28662,1.02013,0.010496,0.234656,0.004928,0.004128,0.007936,0.012512,0.014336,0.722016,0.00912
+677,406.632,2.45923,1.06906,0.011648,0.278368,0.004896,0.006144,0.006272,0.013824,0.014432,0.723264,0.010208
+678,415.458,2.40698,0.9984,0.010752,0.233984,0.005632,0.004608,0.007936,0.01376,0.014368,0.697184,0.010176
+679,353.53,2.82861,1.0321,0.011488,0.269088,0.006144,0.006144,0.006272,0.014112,0.014432,0.694272,0.010144
+680,356.05,2.80859,1.00912,0.011552,0.239808,0.00576,0.005024,0.007552,0.012928,0.014336,0.702464,0.009696
+681,432.204,2.31372,1.00557,0.011392,0.238336,0.0056,0.004768,0.007776,0.013728,0.014784,0.70016,0.009024
+682,404.024,2.4751,1.03427,0.01024,0.278528,0.005728,0.004512,0.007968,0.013664,0.014208,0.689152,0.010272
+683,413.821,2.4165,0.991424,0.010432,0.23552,0.00592,0.005472,0.007008,0.012288,0.01552,0.689056,0.010208
+684,470.588,2.125,1.0039,0.010272,0.232256,0.006112,0.005696,0.006592,0.014048,0.014368,0.704768,0.009792
+685,423.578,2.36084,0.99728,0.01024,0.229024,0.0056,0.004992,0.007552,0.012928,0.014336,0.702464,0.010144
+686,403.825,2.47632,1.0055,0.012032,0.23568,0.0056,0.004736,0.007776,0.012704,0.015456,0.701344,0.010176
+687,330.749,3.02344,0.999552,0.010272,0.23344,0.006144,0.005888,0.0064,0.013728,0.014304,0.700576,0.0088
+688,357.917,2.79395,1.03811,0.01088,0.249856,0.006144,0.005952,0.006368,0.014304,0.014336,0.720736,0.009536
+689,368.478,2.71387,1.00915,0.010432,0.237568,0.005568,0.004672,0.007904,0.012576,0.014336,0.704512,0.011584
+690,457.551,2.18555,0.99328,0.01024,0.232768,0.004832,0.006112,0.006144,0.014336,0.014336,0.694272,0.01024
+691,411.039,2.43286,1.00602,0.01072,0.241632,0.006144,0.005792,0.006496,0.01376,0.014304,0.698144,0.009024
+692,456.379,2.19116,1.01469,0.010656,0.233568,0.005696,0.00496,0.007648,0.012832,0.014336,0.714752,0.01024
+693,445.847,2.24292,1.00598,0.010528,0.228992,0.004992,0.006144,0.007488,0.013024,0.014304,0.710432,0.01008
+694,303.475,3.29517,1.01546,0.011648,0.2464,0.005888,0.005472,0.00704,0.013568,0.0144,0.701152,0.009888
+695,434.635,2.30078,0.994432,0.01024,0.233472,0.006112,0.005472,0.006848,0.012288,0.015808,0.694496,0.009696
+696,418.771,2.38794,1.00598,0.010656,0.23552,0.006144,0.005536,0.006752,0.013568,0.014592,0.704288,0.008928
+697,350.775,2.85083,0.999808,0.010624,0.237056,0.005632,0.00512,0.007744,0.012736,0.014336,0.697536,0.009024
+698,482.166,2.07397,1.00147,0.01024,0.233472,0.005888,0.005472,0.007072,0.014048,0.0144,0.70176,0.00912
+699,423.534,2.36108,1.02906,0.009248,0.238848,0.004864,0.006048,0.007968,0.012512,0.014368,0.726336,0.008864
+700,323.309,3.09302,1.0415,0.0264,0.25152,0.005856,0.004992,0.007424,0.013056,0.014336,0.708384,0.009536
+701,383.234,2.60938,1.00598,0.011232,0.241696,0.006112,0.005856,0.006432,0.01376,0.014912,0.69632,0.009664
+702,368.71,2.71216,1.02096,0.01184,0.250304,0.006144,0.005856,0.006432,0.014304,0.0144,0.70224,0.00944
+703,442.094,2.26196,1.01334,0.010688,0.233504,0.006048,0.005472,0.006912,0.013376,0.014464,0.713088,0.009792
+704,428.317,2.33472,1.01171,0.01024,0.237216,0.005696,0.004896,0.00768,0.0128,0.015584,0.70736,0.01024
+705,316.025,3.16431,1.04099,0.01072,0.262272,0.005984,0.005472,0.006976,0.013632,0.0144,0.711296,0.01024
+706,359.078,2.78491,1.00627,0.010528,0.237984,0.00592,0.00544,0.007072,0.013472,0.0144,0.701216,0.01024
+707,435.884,2.29419,1.05267,0.01024,0.282624,0.005984,0.005472,0.006976,0.012448,0.014176,0.70576,0.008992
+708,429.575,2.32788,1.0129,0.011616,0.236192,0.006016,0.00544,0.006976,0.013696,0.014368,0.70896,0.009632
+709,401.687,2.4895,1.01571,0.010272,0.24128,0.005632,0.00496,0.007552,0.012928,0.014464,0.70848,0.010144
+710,381.627,2.62036,1.09568,0.01136,0.32208,0.005888,0.004736,0.007936,0.012544,0.015424,0.706656,0.009056
+711,426.267,2.34595,0.998816,0.009984,0.231936,0.006144,0.005728,0.006528,0.013568,0.014368,0.701088,0.009472
+712,417.065,2.39771,1.02637,0.010624,0.25248,0.005824,0.004384,0.007648,0.014144,0.014112,0.70752,0.009632
+713,384.854,2.59839,1.01904,0.011552,0.243904,0.004832,0.005952,0.00736,0.013024,0.014464,0.708384,0.009568
+714,441.951,2.2627,1.00941,0.011552,0.233344,0.00496,0.006112,0.006272,0.014208,0.014208,0.708768,0.009984
+715,409.887,2.4397,0.997376,0.011264,0.228352,0.005792,0.004448,0.007488,0.013024,0.014304,0.702464,0.01024
+716,369.842,2.70386,1.01715,0.01168,0.248448,0.006112,0.00576,0.006528,0.014176,0.014496,0.700416,0.009536
+717,439.626,2.27466,0.995328,0.01152,0.228128,0.006112,0.005888,0.0064,0.013728,0.014368,0.698944,0.01024
+718,285.058,3.50806,1.01347,0.012032,0.233504,0.004832,0.00608,0.0072,0.01328,0.014368,0.71264,0.009536
+719,390.914,2.55811,1.01344,0.010528,0.24576,0.005696,0.004544,0.00816,0.01232,0.015424,0.701376,0.009632
+720,416.133,2.40308,1.01149,0.01024,0.234752,0.004864,0.006144,0.007168,0.013312,0.014336,0.710656,0.010016
+721,397.824,2.51367,1.0223,0.010624,0.2472,0.004832,0.006016,0.007424,0.013056,0.014368,0.708576,0.010208
+722,436.767,2.28955,1.00826,0.01088,0.235552,0.006112,0.0056,0.006688,0.013504,0.0144,0.70528,0.01024
+723,410.874,2.43384,1.01107,0.011424,0.232256,0.004128,0.005664,0.006624,0.013888,0.014464,0.713024,0.0096
+724,366.762,2.72656,1.02493,0.011136,0.234592,0.005056,0.006144,0.0072,0.01328,0.014336,0.724096,0.009088
+725,421.312,2.37354,1.02854,0.01232,0.240032,0.005824,0.005504,0.007104,0.012288,0.014336,0.722272,0.008864
+726,371.823,2.68945,1.01786,0.011456,0.24,0.005632,0.005056,0.007584,0.012928,0.014304,0.711712,0.009184
+727,419.586,2.3833,1.00787,0.010336,0.231584,0.006048,0.005472,0.006912,0.013312,0.014464,0.709504,0.01024
+728,425.868,2.34814,0.9984,0.01152,0.229312,0.004928,0.004096,0.007808,0.012672,0.014336,0.70416,0.009568
+729,420.404,2.37866,1.00038,0.011168,0.233504,0.006144,0.005632,0.006656,0.013504,0.014208,0.699328,0.01024
+730,438.685,2.27954,1.01235,0.01072,0.233632,0.006144,0.005632,0.006656,0.01392,0.014624,0.71184,0.009184
+731,361.359,2.76733,1.00413,0.010368,0.229632,0.005568,0.004896,0.007456,0.013024,0.01424,0.710048,0.008896
+732,364.705,2.74194,1.04038,0.012128,0.25808,0.005664,0.004704,0.007904,0.012576,0.014336,0.714752,0.01024
+733,447.846,2.23291,1.02998,0.011872,0.231744,0.005568,0.004768,0.007808,0.012672,0.014336,0.731136,0.01008
+734,414.575,2.41211,1.01504,0.011552,0.230112,0.006144,0.005472,0.006816,0.013728,0.014496,0.717184,0.009536
+735,402.318,2.4856,1.03834,0.012288,0.264192,0.006144,0.005888,0.0064,0.01392,0.014208,0.706432,0.008864
+736,424.368,2.35645,0.996128,0.011008,0.229216,0.004256,0.00576,0.006528,0.014176,0.014528,0.701888,0.008768
+737,453.951,2.20288,1.02182,0.010688,0.233504,0.006016,0.00544,0.006976,0.012384,0.014272,0.72288,0.009664
+738,278.621,3.58911,1.01379,0.010272,0.241664,0.006048,0.005472,0.006912,0.013376,0.013248,0.707584,0.009216
+739,433.623,2.30615,1.0063,0.010976,0.229376,0.005152,0.004832,0.0064,0.013952,0.014112,0.712512,0.008992
+740,425.824,2.34839,1.04038,0.011808,0.24832,0.005824,0.005472,0.006848,0.012544,0.014464,0.726016,0.009088
+741,394.529,2.53467,1.00787,0.010592,0.233472,0.005728,0.004512,0.008,0.01248,0.014464,0.70848,0.010144
+742,426.045,2.34717,1.00966,0.01024,0.229376,0.005664,0.004576,0.007904,0.01376,0.01456,0.714432,0.009152
+743,435.698,2.29517,1.01171,0.010496,0.235488,0.006144,0.005728,0.00656,0.013728,0.01456,0.708992,0.010016
+744,239.113,4.18213,1.01923,0.01024,0.24576,0.005856,0.005472,0.007104,0.013888,0.014592,0.706752,0.009568
+745,386.16,2.5896,1.02669,0.01088,0.241504,0.005696,0.004704,0.007872,0.012608,0.014336,0.712704,0.016384
+746,397.207,2.51758,1.01379,0.012256,0.237536,0.0056,0.004704,0.007808,0.012672,0.014336,0.709888,0.008992
+747,429.08,2.33057,1.01376,0.01024,0.232608,0.00496,0.006112,0.006208,0.014176,0.014464,0.71632,0.008672
+748,397.477,2.51587,1.02051,0.01008,0.23424,0.006176,0.005504,0.006752,0.013952,0.014272,0.72064,0.008896
+749,337.397,2.96387,1.01187,0.0104,0.237248,0.0056,0.00496,0.00768,0.0128,0.014336,0.708608,0.01024
+750,360.659,2.77271,1.01232,0.010656,0.245664,0.005632,0.004704,0.007584,0.012896,0.014336,0.702016,0.008832
+751,300.492,3.32788,1.03696,0.010912,0.249856,0.006144,0.0056,0.00672,0.0136,0.014816,0.720256,0.009056
+752,415.711,2.40552,1.02733,0.012288,0.242912,0.004896,0.006144,0.007296,0.013184,0.014336,0.71664,0.009632
+753,414.743,2.41113,1.03773,0.011584,0.258752,0.006144,0.005504,0.006784,0.013408,0.0152,0.71072,0.009632
+754,391.662,2.55322,1.01376,0.01024,0.239616,0.005664,0.004576,0.008064,0.013472,0.01328,0.709824,0.009024
+755,385.578,2.59351,1.05472,0.010272,0.2744,0.006144,0.005536,0.006752,0.013376,0.014624,0.714656,0.00896
+756,341.561,2.92773,1.06736,0.011776,0.29088,0.004896,0.006144,0.0072,0.01328,0.014368,0.708576,0.01024
+757,402.753,2.48291,1.02394,0.011776,0.240128,0.005792,0.005472,0.007104,0.012352,0.014336,0.7168,0.010176
+758,403.825,2.47632,1.02403,0.01136,0.251872,0.005056,0.006112,0.006272,0.013984,0.014592,0.70608,0.008704
+759,372.94,2.6814,1.02451,0.010688,0.241728,0.0056,0.004992,0.007552,0.012928,0.014336,0.7168,0.009888
+760,410.956,2.43335,1.01091,0.011424,0.232288,0.006144,0.005664,0.006624,0.013984,0.014624,0.710528,0.009632
+761,370.143,2.70166,1.07315,0.012096,0.295104,0.00608,0.00544,0.006912,0.013728,0.014464,0.710464,0.008864
+762,351.347,2.84619,1.02304,0.011552,0.236288,0.005984,0.005472,0.006944,0.013664,0.01424,0.719296,0.0096
+763,440.052,2.27246,1.02582,0.010304,0.242272,0.005824,0.005472,0.007072,0.013504,0.01456,0.717056,0.00976
+764,412.778,2.42261,1.07725,0.01024,0.299008,0.006112,0.005472,0.00688,0.013888,0.014272,0.712288,0.009088
+765,425.691,2.34912,1.01395,0.0104,0.23552,0.006144,0.005504,0.006816,0.012256,0.015712,0.711328,0.010272
+766,426.8,2.34302,1.01613,0.010048,0.22832,0.006144,0.005888,0.0064,0.014208,0.0144,0.72096,0.00976
+767,321.255,3.11279,1.01293,0.012288,0.241664,0.006144,0.005696,0.006592,0.013856,0.014464,0.702688,0.009536
+768,396.477,2.52222,1.02854,0.010688,0.23552,0.005664,0.004576,0.007968,0.012672,0.015296,0.72592,0.01024
+769,421.009,2.37524,1.01648,0.009984,0.23776,0.004832,0.006112,0.007424,0.013056,0.014336,0.713792,0.009184
+770,402.714,2.48315,1.01802,0.011872,0.237088,0.004992,0.00608,0.006208,0.014368,0.014304,0.714304,0.0088
+771,453.951,2.20288,1.0193,0.01024,0.229376,0.006144,0.005888,0.0064,0.013984,0.014528,0.723104,0.009632
+772,423.228,2.36279,1.01014,0.01072,0.232544,0.005056,0.006112,0.006176,0.014304,0.014336,0.711808,0.009088
+773,270.756,3.69336,1.03219,0.01136,0.23616,0.0056,0.004928,0.00768,0.0128,0.014336,0.730464,0.008864
+774,411.245,2.43164,1.03152,0.010624,0.237184,0.005664,0.004928,0.007584,0.012896,0.014336,0.728704,0.0096
+775,375.504,2.66309,1.01331,0.011296,0.234464,0.006144,0.005792,0.006496,0.013504,0.014208,0.711616,0.009792
+776,468.061,2.13647,1.03018,0.010464,0.231392,0.006016,0.005472,0.006944,0.013696,0.014752,0.73136,0.01008
+777,407.968,2.45117,1.02605,0.010304,0.245696,0.005856,0.005472,0.00704,0.013472,0.014496,0.71472,0.008992
+778,416.811,2.39917,1.024,0.011712,0.232,0.006144,0.005824,0.006464,0.013984,0.0144,0.723232,0.01024
+779,454.858,2.19849,1.03152,0.01024,0.237248,0.005632,0.004928,0.007584,0.012896,0.014368,0.728736,0.009888
+780,277.544,3.60303,1.0239,0.012288,0.24576,0.005664,0.004576,0.007936,0.012544,0.014336,0.710656,0.010144
+781,453.8,2.20361,1.00941,0.011488,0.231552,0.004832,0.00608,0.007232,0.013216,0.014368,0.710656,0.009984
+782,461.781,2.16553,1.01619,0.010624,0.231424,0.006144,0.005568,0.00672,0.014112,0.0144,0.71696,0.01024
+783,400.861,2.49463,1.05062,0.011648,0.252544,0.006144,0.005824,0.006464,0.013664,0.014624,0.730688,0.009024
+784,448.729,2.22852,1.02365,0.010496,0.23264,0.004928,0.006112,0.006304,0.014112,0.014464,0.72496,0.009632
+785,447.015,2.23706,1.00656,0.011072,0.229184,0.0056,0.004864,0.007712,0.012768,0.014336,0.712256,0.008768
+786,364.64,2.74243,1.08682,0.022336,0.286944,0.006112,0.005984,0.006336,0.014112,0.014528,0.720768,0.009696
+787,456.481,2.19067,1.01158,0.01216,0.231584,0.006112,0.0056,0.006688,0.013472,0.01456,0.711296,0.010112
+788,394.225,2.53662,1.01597,0.010368,0.231232,0.0056,0.004832,0.007712,0.012768,0.014336,0.719936,0.009184
+789,391.138,2.55664,1.03837,0.01072,0.240832,0.004928,0.006112,0.006144,0.014336,0.014336,0.731136,0.009824
+790,415.838,2.40479,1.02381,0.012128,0.227488,0.006144,0.005824,0.006464,0.014112,0.014592,0.727008,0.010048
+791,408.864,2.4458,1.01178,0.010656,0.232896,0.004832,0.005984,0.007392,0.01312,0.014304,0.712704,0.009888
+792,359.898,2.77856,1.12435,0.01184,0.3384,0.005728,0.00448,0.008,0.01248,0.014496,0.718688,0.01024
+793,467.687,2.13818,1.01786,0.01024,0.230432,0.005088,0.00608,0.006208,0.014016,0.014368,0.721184,0.01024
+794,382.732,2.61279,1.03754,0.010336,0.23552,0.005952,0.005472,0.007008,0.013344,0.014656,0.735552,0.009696
+795,392.488,2.54785,1.00691,0.011904,0.233856,0.005184,0.004896,0.006304,0.014112,0.014144,0.70496,0.011552
+796,399.104,2.50562,1.01725,0.012064,0.2272,0.004448,0.005344,0.006976,0.01376,0.014432,0.723392,0.009632
+797,442.572,2.25952,1.04186,0.010272,0.247808,0.006144,0.0056,0.006688,0.0136,0.014784,0.727328,0.009632
+798,301.088,3.32129,1.01917,0.011712,0.233792,0.005664,0.004832,0.007744,0.012736,0.015488,0.717568,0.009632
+799,468.328,2.13525,1.04803,0.011648,0.235616,0.004832,0.005952,0.007328,0.013184,0.01552,0.744288,0.009664
+800,376.54,2.65576,1.10624,0.010592,0.294208,0.004832,0.00608,0.007232,0.013248,0.014336,0.746656,0.009056
+801,429.035,2.33081,1.03638,0.010496,0.231392,0.006144,0.00592,0.006368,0.01376,0.014368,0.737664,0.010272
+802,443.05,2.25708,1.02032,0.010208,0.229696,0.005696,0.004544,0.00816,0.013472,0.01424,0.725472,0.008832
+803,341.761,2.92603,1.02464,0.010912,0.237536,0.006176,0.005696,0.00656,0.013792,0.014464,0.720288,0.009216
+804,447.406,2.23511,1.01808,0.009888,0.228224,0.0056,0.004672,0.008096,0.012384,0.014336,0.724992,0.009888
+805,186.657,5.35742,1.04794,0.01152,0.251872,0.00592,0.00512,0.007424,0.013088,0.014304,0.729088,0.0096
+806,339.045,2.94946,1.03635,0.010464,0.243008,0.004416,0.00448,0.006176,0.013856,0.014688,0.729184,0.01008
+807,353.286,2.83057,1.09984,0.011232,0.298336,0.004832,0.00608,0.007424,0.012896,0.014528,0.73504,0.009472
+808,456.99,2.18823,1.02195,0.010208,0.235392,0.005568,0.004832,0.007776,0.012832,0.014336,0.722272,0.008736
+809,328.679,3.04248,1.02339,0.011456,0.232256,0.0056,0.00464,0.007744,0.012736,0.015616,0.723616,0.009728
+810,386.963,2.58423,1.02522,0.011744,0.235136,0.005024,0.00608,0.00624,0.014304,0.014336,0.722816,0.009536
+811,430.659,2.32202,1.03222,0.01088,0.22896,0.0056,0.005056,0.00752,0.01296,0.014336,0.73728,0.009632
+812,415.289,2.40796,1.03933,0.010976,0.252032,0.005632,0.004736,0.007808,0.012672,0.014336,0.722208,0.008928
+813,382.125,2.61694,1.03424,0.01024,0.2328,0.004832,0.00608,0.007232,0.013248,0.014272,0.735296,0.01024
+814,420.836,2.37622,1.02083,0.0112,0.23136,0.00416,0.005632,0.006656,0.013856,0.014112,0.723648,0.010208
+815,315.587,3.1687,1.03626,0.010912,0.242944,0.004864,0.006144,0.006304,0.014208,0.014304,0.726848,0.009728
+816,353.683,2.82739,1.02605,0.011328,0.23856,0.006112,0.005888,0.0064,0.014336,0.014368,0.72048,0.008576
+817,397.053,2.51855,1.04189,0.01024,0.255072,0.005024,0.00608,0.00624,0.01376,0.014528,0.721248,0.009696
+818,426.756,2.34326,1.02912,0.01184,0.238016,0.005952,0.005472,0.007008,0.013344,0.014336,0.72368,0.009472
+819,434.589,2.30103,1.03075,0.010848,0.233472,0.006144,0.005952,0.006336,0.013792,0.014528,0.730944,0.008736
+820,374.201,2.67236,1.03344,0.011424,0.232288,0.005408,0.004832,0.006336,0.014144,0.014368,0.734976,0.009664
+821,301.243,3.31958,1.02202,0.010912,0.2352,0.0056,0.00496,0.007552,0.012928,0.014272,0.72096,0.009632
+822,362.799,2.75635,1.1057,0.011488,0.289376,0.005632,0.016384,0.006848,0.014208,0.014464,0.73728,0.010016
+823,350.955,2.84937,1.02195,0.01216,0.236928,0.004864,0.005824,0.006496,0.013856,0.014208,0.718624,0.008992
+824,412.197,2.42603,1.03427,0.011488,0.228128,0.005728,0.004512,0.007424,0.013056,0.014368,0.739296,0.010272
+825,388.394,2.57471,1.02416,0.0112,0.245632,0.005632,0.004736,0.007936,0.012576,0.014368,0.71264,0.00944
+826,391.325,2.55542,1.03843,0.010432,0.235168,0.00496,0.006144,0.006144,0.014336,0.014336,0.73728,0.009632
+827,297.999,3.35571,1.02214,0.0104,0.233472,0.004096,0.00576,0.006528,0.013888,0.0144,0.724576,0.009024
+828,377.199,2.65112,1.06234,0.010496,0.273504,0.006176,0.004896,0.007648,0.012832,0.015488,0.721632,0.009664
+829,443.146,2.25659,1.0257,0.010496,0.241664,0.006176,0.005504,0.006752,0.013312,0.014656,0.717504,0.009632
+830,380.174,2.63037,1.08509,0.012096,0.282816,0.006048,0.005472,0.006912,0.014016,0.01424,0.7336,0.009888
+831,368.511,2.71362,1.03021,0.011008,0.23904,0.004832,0.005984,0.007328,0.013152,0.014368,0.72496,0.009536
+832,451.002,2.21729,1.03014,0.01024,0.23552,0.006176,0.005536,0.00672,0.013696,0.01424,0.728864,0.009152
+833,346.854,2.88306,1.1305,0.01152,0.303744,0.0056,0.016704,0.006496,0.02368,0.015232,0.738944,0.008576
+834,322.596,3.09985,1.0607,0.012064,0.258272,0.00576,0.00448,0.008032,0.012448,0.015616,0.733952,0.01008
+835,408.293,2.44922,1.03526,0.0112,0.235424,0.005632,0.004768,0.007808,0.012672,0.014336,0.733184,0.01024
+836,328.732,3.04199,1.04221,0.010368,0.24128,0.005568,0.004928,0.00768,0.0128,0.014368,0.7352,0.010016
+837,448.877,2.22778,1.03795,0.010272,0.231008,0.004992,0.006144,0.007424,0.013088,0.014432,0.740992,0.0096
+838,391.176,2.5564,1.0368,0.010272,0.2416,0.004832,0.005984,0.007424,0.013056,0.014336,0.729088,0.010208
+839,311.223,3.21313,1.06189,0.011104,0.273952,0.004832,0.006048,0.007392,0.013088,0.013984,0.723168,0.00832
+840,412.031,2.427,1.04771,0.010272,0.24368,0.006144,0.005536,0.006752,0.014016,0.014272,0.737408,0.009632
+841,400.94,2.49414,1.09552,0.01024,0.284672,0.006176,0.0056,0.006656,0.013376,0.014688,0.744032,0.01008
+842,443.146,2.25659,1.02605,0.011456,0.2336,0.005888,0.005056,0.007424,0.013056,0.014336,0.726016,0.009216
+843,424.94,2.35327,1.01587,0.009888,0.229472,0.005632,0.004928,0.00768,0.0128,0.014336,0.722528,0.008608
+844,412.031,2.427,1.04858,0.011936,0.244096,0.006112,0.0056,0.006688,0.01408,0.014272,0.735552,0.01024
+845,411.782,2.42847,1.10595,0.010688,0.307584,0.0056,0.004768,0.007744,0.012736,0.024576,0.722464,0.009792
+846,409.723,2.44067,1.02605,0.01024,0.233472,0.005856,0.005504,0.007072,0.01344,0.014272,0.725952,0.01024
+847,364.607,2.74268,1.04038,0.011936,0.23744,0.005888,0.004832,0.007744,0.012736,0.014336,0.736576,0.008896
+848,441.665,2.26416,1.03654,0.010528,0.231264,0.004256,0.005504,0.006784,0.013856,0.014528,0.739616,0.010208
+849,424.324,2.35669,1.0168,0.010176,0.234496,0.006176,0.005728,0.006528,0.013536,0.0144,0.71696,0.0088
+850,402.042,2.4873,1.04979,0.011776,0.236032,0.006144,0.005664,0.006624,0.013888,0.014592,0.7456,0.009472
+851,306.954,3.25781,1.0289,0.01024,0.232192,0.005696,0.004544,0.007968,0.012512,0.014336,0.731136,0.010272
+852,391.4,2.55493,1.07318,0.010464,0.280064,0.005632,0.00512,0.007424,0.013056,0.014336,0.72704,0.010048
+853,448.189,2.2312,1.01926,0.011488,0.231744,0.005664,0.005056,0.007552,0.012928,0.014336,0.720896,0.0096
+854,449.024,2.22705,1.0225,0.010784,0.231424,0.006144,0.005472,0.006816,0.013792,0.014592,0.7248,0.008672
+855,407.441,2.45435,1.08538,0.011936,0.285024,0.006144,0.00576,0.006528,0.013888,0.014496,0.731424,0.010176
+856,445.75,2.24341,1.02262,0.010464,0.22992,0.0056,0.004832,0.00784,0.0128,0.015488,0.725728,0.009952
+857,433.852,2.30493,1.01584,0.01152,0.232192,0.005792,0.004448,0.008096,0.013536,0.01456,0.716672,0.009024
+858,284.484,3.51514,1.04426,0.010688,0.243424,0.005632,0.004896,0.007616,0.012864,0.014336,0.73488,0.00992
+859,423.315,2.3623,1.0433,0.011104,0.228672,0.004832,0.006112,0.007328,0.013152,0.014336,0.74752,0.01024
+860,457.041,2.18799,1.02317,0.010272,0.235008,0.004576,0.005184,0.007072,0.01344,0.014656,0.723424,0.009536
+861,390.802,2.55884,1.03459,0.010592,0.233344,0.0056,0.004768,0.007808,0.012672,0.014336,0.736384,0.009088
+862,437.934,2.28345,1.01699,0.011936,0.229728,0.006176,0.005568,0.00672,0.014016,0.014624,0.718592,0.009632
+863,407.117,2.4563,1.04464,0.010464,0.243744,0.005664,0.004544,0.008096,0.012384,0.01536,0.734208,0.010176
+864,312.863,3.19629,1.0384,0.010336,0.241664,0.006112,0.005792,0.006496,0.014112,0.014432,0.729216,0.01024
+865,421.964,2.36987,1.01834,0.010016,0.229568,0.006016,0.004736,0.00784,0.01264,0.014336,0.724,0.009184
+866,381.059,2.62427,1.08749,0.011456,0.299648,0.005664,0.004768,0.007712,0.012768,0.015424,0.721088,0.00896
+867,416.302,2.4021,1.04243,0.011968,0.231424,0.004416,0.005344,0.006944,0.013856,0.014464,0.744864,0.009152
+868,388.136,2.57642,1.01776,0.011136,0.227296,0.005408,0.004832,0.006304,0.014208,0.014304,0.72464,0.009632
+869,355.772,2.81079,1.03187,0.010432,0.236672,0.004832,0.006112,0.007232,0.013216,0.014368,0.729088,0.00992
+870,350.955,2.84937,1.03795,0.010848,0.239168,0.0056,0.005088,0.007456,0.013024,0.014336,0.733056,0.009376
+871,393.657,2.54028,1.0641,0.011392,0.271232,0.005792,0.005472,0.007104,0.012352,0.014336,0.726656,0.00976
+872,440.052,2.27246,1.03251,0.010592,0.23344,0.005824,0.005472,0.00704,0.013408,0.014496,0.733632,0.008608
+873,450.754,2.21851,1.01789,0.01024,0.227328,0.006144,0.005952,0.006368,0.013664,0.014656,0.724736,0.0088
+874,408.987,2.44507,1.05504,0.010592,0.260064,0.006144,0.005856,0.006432,0.013984,0.014336,0.727424,0.010208
+875,440.335,2.271,1.0281,0.011776,0.231232,0.004832,0.006112,0.0072,0.013152,0.014464,0.73024,0.009088
+876,371.115,2.69458,1.0281,0.010272,0.228384,0.005056,0.006048,0.006304,0.014272,0.014336,0.734304,0.00912
+877,407.684,2.45288,1.07642,0.01184,0.276224,0.0048,0.006112,0.006176,0.01408,0.01456,0.733024,0.0096
+878,465.666,2.14746,1.02826,0.0104,0.235104,0.0056,0.005056,0.00752,0.01296,0.014336,0.728096,0.009184
+879,461.157,2.16846,1.03018,0.010624,0.2312,0.0056,0.005088,0.007488,0.013024,0.014304,0.733184,0.009664
+880,396.17,2.52417,1.07523,0.012192,0.276224,0.005664,0.004928,0.007552,0.012928,0.014336,0.731136,0.010272
+881,426.223,2.34619,1.04,0.01024,0.234848,0.005888,0.005024,0.00768,0.0128,0.014368,0.739296,0.009856
+882,415.289,2.40796,1.02656,0.010624,0.231168,0.0056,0.004896,0.007616,0.012864,0.014336,0.730752,0.008704
+883,263.171,3.7998,1.04653,0.010528,0.249664,0.0056,0.0048,0.007808,0.012704,0.014464,0.730976,0.009984
+884,435.467,2.29639,1.02333,0.011904,0.233056,0.004896,0.006144,0.00736,0.013152,0.014336,0.722816,0.009664
+885,420.275,2.37939,1.05517,0.010272,0.246176,0.006112,0.005472,0.006848,0.013472,0.014752,0.741824,0.01024
+886,407.4,2.45459,1.02256,0.010848,0.233472,0.006016,0.005472,0.006944,0.013888,0.014368,0.722688,0.008864
+887,445.847,2.24292,1.02381,0.010272,0.232096,0.0056,0.004672,0.00768,0.0128,0.014336,0.726784,0.009568
+888,304.875,3.28003,1.03443,0.010656,0.23952,0.005984,0.005472,0.007072,0.014336,0.014336,0.72704,0.010016
+889,433.669,2.30591,1.01517,0.010528,0.23456,0.005056,0.005984,0.006304,0.013856,0.014816,0.714272,0.009792
+890,358.512,2.78931,1.03062,0.011168,0.233472,0.005856,0.005472,0.007104,0.014112,0.01456,0.729088,0.009792
+891,383.557,2.60718,1.0279,0.010752,0.231712,0.006112,0.005472,0.00688,0.013824,0.0144,0.729216,0.009536
+892,412.114,2.42651,1.02605,0.010272,0.230848,0.004832,0.005952,0.007392,0.013088,0.014368,0.729056,0.01024
+893,467.74,2.13794,1.03568,0.01136,0.23792,0.004832,0.005984,0.008032,0.012448,0.015552,0.72992,0.009632
+894,365.355,2.73706,1.15117,0.0104,0.310464,0.00512,0.005984,0.015776,0.013056,0.03072,0.749568,0.01008
+895,426.667,2.34375,1.02342,0.01024,0.23328,0.0056,0.004832,0.007744,0.012736,0.014528,0.7248,0.009664
+896,406.632,2.45923,1.0713,0.009824,0.260896,0.006048,0.005472,0.00688,0.013824,0.014624,0.737504,0.016224
+897,381.201,2.62329,1.04243,0.01024,0.23552,0.006176,0.005824,0.006432,0.013792,0.01408,0.740128,0.01024
+898,416.599,2.40039,1.03629,0.012032,0.239808,0.00416,0.005568,0.00672,0.0136,0.014368,0.731104,0.008928
+899,399.532,2.50293,1.0568,0.011488,0.254752,0.006144,0.005472,0.006816,0.01376,0.014656,0.734464,0.009248
+900,371.755,2.68994,1.06701,0.011968,0.248128,0.02384,0.004832,0.007744,0.020928,0.014336,0.724992,0.01024
+901,415.079,2.40918,1.02298,0.012288,0.233472,0.006144,0.00592,0.006368,0.013856,0.014592,0.720736,0.0096
+902,327.366,3.05469,1.04634,0.011936,0.249184,0.00512,0.006016,0.006304,0.014016,0.014304,0.729408,0.010048
+903,457.143,2.1875,1.02605,0.010272,0.22912,0.0056,0.004864,0.007648,0.012832,0.014336,0.731136,0.01024
+904,415.838,2.40479,1.04448,0.011776,0.231936,0.005984,0.005472,0.006976,0.013504,0.01472,0.74496,0.009152
+905,406.067,2.46265,1.02838,0.010976,0.237856,0.0056,0.00464,0.007904,0.012576,0.014336,0.724864,0.009632
+906,425.293,2.35132,1.03322,0.011936,0.231648,0.005664,0.004704,0.007808,0.012704,0.01552,0.733504,0.009728
+907,396.861,2.51978,1.02813,0.011456,0.23408,0.005568,0.004896,0.00768,0.0128,0.015744,0.725632,0.010272
+908,285.674,3.50049,1.02912,0.01024,0.236768,0.004896,0.005984,0.006304,0.014368,0.014304,0.726208,0.010048
+909,393.279,2.54272,1.036,0.011584,0.246464,0.006144,0.006144,0.006176,0.01408,0.01456,0.720896,0.009952
+910,337.814,2.96021,1.04128,0.011072,0.241824,0.005952,0.00544,0.00704,0.013504,0.014496,0.731808,0.010144
+911,457.603,2.1853,1.04266,0.010432,0.236576,0.005088,0.005984,0.007456,0.013184,0.014336,0.7408,0.0088
+912,385.397,2.59473,1.03168,0.010272,0.237536,0.006144,0.005632,0.006656,0.01408,0.01456,0.727072,0.009728
+913,348.507,2.86938,1.03974,0.01056,0.241152,0.004832,0.00592,0.00736,0.012864,0.014592,0.73216,0.010304
+914,318.309,3.1416,1.03834,0.012192,0.237664,0.005984,0.005472,0.006976,0.013376,0.014624,0.73344,0.008608
+915,342.991,2.91553,1.1415,0.010688,0.339936,0.005664,0.004928,0.007648,0.012832,0.014336,0.736352,0.00912
+916,437.654,2.28491,1.03485,0.01056,0.231712,0.006112,0.005472,0.006848,0.013888,0.014528,0.736608,0.00912
+917,431.476,2.31763,1.03834,0.01136,0.242592,0.00592,0.00544,0.007072,0.013472,0.0152,0.728224,0.009056
+918,383.736,2.60596,1.04054,0.010272,0.237536,0.006144,0.005664,0.006656,0.01392,0.01472,0.736832,0.0088
+919,442.954,2.25757,1.04243,0.010272,0.231392,0.0056,0.00464,0.007872,0.012608,0.014336,0.74672,0.008992
+920,365.16,2.73853,1.07533,0.011456,0.270464,0.004928,0.006144,0.006336,0.014144,0.01536,0.726016,0.02048
+921,336.123,2.9751,1.05165,0.011296,0.250624,0.005696,0.004768,0.007808,0.012672,0.014336,0.734912,0.009536
+922,416.853,2.39893,1.04102,0.010688,0.235488,0.005824,0.00464,0.007904,0.012576,0.014336,0.740608,0.00896
+923,395.024,2.53149,1.05725,0.01072,0.251936,0.006112,0.005728,0.00656,0.014048,0.014496,0.73904,0.008608
+924,435.282,2.29736,1.02848,0.010656,0.235488,0.005536,0.004704,0.007328,0.013152,0.014336,0.72816,0.00912
+925,421.877,2.37036,1.02435,0.010016,0.22816,0.006144,0.005472,0.006816,0.01344,0.014432,0.729888,0.009984
+926,326.453,3.06323,1.06096,0.010336,0.253952,0.005888,0.005472,0.007072,0.013344,0.01328,0.741376,0.01024
+927,416.345,2.40186,1.03421,0.010752,0.231488,0.006112,0.005888,0.0064,0.013856,0.014784,0.7352,0.009728
+928,418.087,2.39185,1.03629,0.010272,0.236832,0.004864,0.00608,0.007232,0.014304,0.014592,0.731872,0.01024
+929,383.772,2.60571,1.05514,0.010688,0.237536,0.005568,0.004672,0.008192,0.012384,0.01536,0.751744,0.008992
+930,446.918,2.23755,1.03242,0.010464,0.233216,0.0056,0.004864,0.007648,0.012864,0.014304,0.734592,0.008864
+931,428.945,2.3313,1.03424,0.010272,0.237536,0.006176,0.005504,0.006752,0.013696,0.014432,0.729632,0.01024
+932,346.268,2.88794,1.04304,0.010848,0.237376,0.005632,0.0048,0.008096,0.013728,0.014656,0.737664,0.01024
+933,401.49,2.49072,1.03149,0.010272,0.234592,0.004992,0.00608,0.006272,0.01408,0.014176,0.731392,0.009632
+934,423.797,2.35962,1.06733,0.01216,0.251744,0.004832,0.006112,0.007296,0.013184,0.014368,0.747488,0.010144
+935,449.123,2.22656,1.02595,0.011648,0.231328,0.004832,0.006144,0.007168,0.013344,0.014304,0.72704,0.010144
+936,388.799,2.57202,1.03219,0.01136,0.228256,0.005824,0.004416,0.007776,0.012704,0.014336,0.73728,0.01024
+937,408.619,2.44727,1.06758,0.011136,0.268192,0.0056,0.004832,0.007712,0.0128,0.014304,0.733184,0.009824
+938,416.599,2.40039,1.05789,0.010336,0.236544,0.004928,0.004288,0.007584,0.012896,0.014432,0.757504,0.009376
+939,308.109,3.24561,1.04557,0.011584,0.25024,0.0056,0.00496,0.007616,0.012896,0.014304,0.72896,0.009408
+940,399.571,2.50269,1.04118,0.010848,0.23552,0.006144,0.005632,0.006656,0.013952,0.014112,0.739552,0.008768
+941,475.009,2.10522,1.03526,0.011264,0.233472,0.006144,0.005568,0.00672,0.013504,0.014592,0.73376,0.01024
+942,382.268,2.61597,1.03424,0.011264,0.236544,0.005664,0.004576,0.00736,0.01312,0.014336,0.732672,0.008704
+943,399.805,2.50122,1.02611,0.010784,0.231072,0.005664,0.004928,0.00768,0.0128,0.014336,0.729088,0.00976
+944,482.109,2.07422,1.02253,0.010848,0.231104,0.0048,0.006112,0.007264,0.013216,0.014304,0.725024,0.009856
+945,367.684,2.71973,1.23683,0.011264,0.412672,0.005504,0.004736,0.01824,0.01248,0.015456,0.7464,0.01008
+946,375.126,2.66577,1.04589,0.010272,0.23552,0.00592,0.005472,0.007008,0.01344,0.014336,0.744256,0.009664
+947,400.039,2.49976,1.03069,0.01008,0.23008,0.006144,0.005504,0.006784,0.0136,0.014624,0.733664,0.010208
+948,398.87,2.50708,1.08176,0.010144,0.285152,0.0056,0.004672,0.007872,0.01264,0.014304,0.731168,0.010208
+949,451.4,2.21533,1.02771,0.01024,0.228672,0.004832,0.006112,0.007264,0.013088,0.014464,0.733184,0.009856
+950,473.69,2.11108,1.02403,0.011328,0.228288,0.005984,0.005472,0.006976,0.013504,0.013312,0.730272,0.008896
+951,338.289,2.95605,1.08995,0.010592,0.282656,0.006144,0.00576,0.00656,0.013632,0.01424,0.74016,0.010208
+952,462.72,2.16113,1.03235,0.01072,0.233248,0.005568,0.005024,0.007648,0.012832,0.014368,0.733152,0.009792
+953,417.363,2.396,1.04221,0.010656,0.231424,0.006144,0.006144,0.006176,0.014336,0.014304,0.743168,0.009856
+954,346.18,2.88867,1.0537,0.01088,0.239968,0.0056,0.00464,0.007936,0.012544,0.01552,0.746336,0.010272
+955,475.009,2.10522,1.02266,0.01056,0.22976,0.006144,0.005824,0.006464,0.013696,0.014272,0.727104,0.008832
+956,419.2,2.3855,1.03846,0.010368,0.233472,0.006144,0.005536,0.006784,0.014048,0.0144,0.738912,0.0088
+957,255.409,3.91528,1.03251,0.0112,0.2328,0.004832,0.006048,0.007264,0.013152,0.014336,0.733152,0.009728
+958,471.781,2.11963,1.02061,0.010784,0.232928,0.004832,0.006112,0.0072,0.01328,0.014336,0.722016,0.00912
+959,366.762,2.72656,1.05078,0.01024,0.24544,0.005632,0.004928,0.00768,0.0128,0.014336,0.740896,0.008832
+960,435.884,2.29419,1.03424,0.011712,0.229088,0.004928,0.004128,0.007776,0.012704,0.014336,0.740672,0.008896
+961,450.853,2.21802,1.02618,0.011776,0.22592,0.006144,0.005696,0.006592,0.013408,0.014912,0.732544,0.009184
+962,377.79,2.64697,1.04858,0.011744,0.244,0.0056,0.004896,0.007584,0.012896,0.014336,0.738336,0.009184
+963,337.675,2.96143,1.02006,0.009984,0.22752,0.0056,0.004832,0.007712,0.012768,0.014336,0.729024,0.008288
+964,422.137,2.3689,1.02851,0.010688,0.23344,0.006144,0.005824,0.006464,0.01408,0.014592,0.72704,0.01024
+965,401.018,2.49365,1.02422,0.010464,0.234784,0.004864,0.006112,0.006432,0.013568,0.014432,0.724384,0.009184
+966,449.962,2.22241,1.02029,0.010656,0.230528,0.00496,0.006112,0.006208,0.014304,0.014336,0.722944,0.01024
+967,435.606,2.29565,1.03043,0.010496,0.233472,0.006048,0.005472,0.006944,0.013568,0.01456,0.730848,0.009024
+968,375.745,2.66138,1.05194,0.01024,0.237568,0.00592,0.005472,0.00704,0.013504,0.014432,0.74816,0.0096
+969,453.951,2.20288,1.03424,0.011616,0.229472,0.004832,0.005984,0.007296,0.012992,0.0144,0.73872,0.008928
+970,336.096,2.97534,1.14096,0.010528,0.33376,0.006144,0.005728,0.00656,0.013696,0.01424,0.740064,0.01024
+971,336.538,2.97144,1.03018,0.010304,0.2408,0.004928,0.006144,0.006176,0.013888,0.014592,0.724576,0.008768
+972,424.06,2.35815,1.024,0.010272,0.232608,0.004928,0.005504,0.008064,0.014208,0.01472,0.723456,0.01024
+973,327.575,3.05273,1.06086,0.011936,0.24816,0.006144,0.00576,0.006528,0.013952,0.022944,0.736288,0.009152
+974,402.753,2.48291,1.06256,0.010752,0.260096,0.006144,0.00592,0.006368,0.014336,0.014336,0.734976,0.009632
+975,311.91,3.20605,1.08483,0.010464,0.271744,0.005952,0.004928,0.007584,0.012896,0.014336,0.747008,0.00992
+976,360.436,2.77441,1.03453,0.010336,0.239616,0.006144,0.005664,0.006624,0.013888,0.014176,0.72928,0.0088
+977,446.966,2.2373,1.03866,0.010144,0.240032,0.006144,0.006144,0.007872,0.012608,0.014336,0.731136,0.01024
+978,365.551,2.7356,1.04051,0.01184,0.235168,0.004896,0.006144,0.006304,0.014048,0.013984,0.739328,0.0088
+979,469.509,2.12988,1.03014,0.01024,0.245536,0.0056,0.004864,0.007776,0.012704,0.014336,0.72,0.009088
+980,408.742,2.44653,1.04464,0.010944,0.235264,0.004832,0.00592,0.00736,0.01312,0.014336,0.742464,0.0104
+981,403.15,2.48047,1.03632,0.011616,0.231264,0.004928,0.006144,0.006144,0.01408,0.014304,0.738784,0.009056
+982,355.401,2.81372,1.03546,0.012096,0.2328,0.00496,0.006112,0.006208,0.014176,0.0144,0.735008,0.009696
+983,422.966,2.36426,1.06614,0.011744,0.264736,0.006144,0.005632,0.006656,0.013728,0.014816,0.732992,0.009696
+984,393.203,2.54321,1.04448,0.010368,0.234944,0.005568,0.00512,0.006144,0.014336,0.014336,0.743424,0.01024
+985,438.169,2.28223,1.03926,0.00912,0.227136,0.005568,0.004864,0.007744,0.012736,0.015712,0.746144,0.01024
+986,413.028,2.42114,1.07114,0.011968,0.272704,0.006016,0.005472,0.006944,0.013632,0.014496,0.730912,0.008992
+987,421.226,2.37402,1.03072,0.010848,0.232448,0.005088,0.006144,0.007232,0.013216,0.014368,0.731136,0.01024
+988,371.486,2.69189,1.14106,0.01104,0.339936,0.004128,0.005824,0.006432,0.014336,0.015712,0.733536,0.010112
+989,326.687,3.06104,1.10384,0.0104,0.313312,0.006176,0.005888,0.0064,0.013952,0.014592,0.72304,0.01008
+990,402.081,2.48706,1.05686,0.010688,0.235488,0.006144,0.005888,0.0064,0.014208,0.014496,0.753632,0.00992
+991,401.884,2.48828,1.05149,0.011104,0.237664,0.005792,0.004512,0.008,0.01248,0.014432,0.747424,0.01008
+992,377.268,2.65063,1.03917,0.011168,0.237504,0.00416,0.005728,0.00656,0.014048,0.01424,0.735616,0.010144
+993,422.181,2.36865,1.03629,0.01024,0.231424,0.005952,0.005472,0.007008,0.013376,0.01472,0.737856,0.01024
+994,374.406,2.6709,1.13459,0.028672,0.301056,0.006144,0.005856,0.014656,0.0136,0.021184,0.734496,0.008928
+995,319.551,3.12939,1.0479,0.011616,0.258304,0.005984,0.004672,0.007904,0.012576,0.015616,0.721536,0.009696
+996,400.352,2.4978,1.04688,0.010592,0.24288,0.004896,0.005216,0.007072,0.013568,0.014496,0.738944,0.009216
+997,351.89,2.8418,1.03894,0.01088,0.245216,0.004832,0.00592,0.007392,0.013056,0.014368,0.72704,0.01024
+998,390.17,2.56299,1.03952,0.011904,0.231168,0.005856,0.005024,0.007264,0.013216,0.014336,0.740448,0.010304
+999,404.783,2.47046,1.05139,0.01104,0.260064,0.005376,0.004864,0.006144,0.01392,0.01424,0.725504,0.01024
+1000,301.576,3.31592,1.06685,0.010528,0.262144,0.005696,0.004544,0.007968,0.012512,0.014528,0.739136,0.009792
+1001,412.155,2.42627,1.03014,0.011712,0.231072,0.005056,0.006016,0.006272,0.014048,0.014624,0.731104,0.01024
+1002,359.993,2.77783,1.04022,0.010272,0.237536,0.006144,0.005568,0.00672,0.013728,0.014528,0.735648,0.01008
+1003,438.591,2.28003,1.02755,0.01024,0.229056,0.0056,0.00496,0.007584,0.012896,0.014432,0.733088,0.009696
+1004,391.213,2.55615,1.12598,0.01024,0.311296,0.006176,0.005856,0.019776,0.013248,0.015488,0.73408,0.009824
+1005,397.053,2.51855,1.04653,0.0104,0.231392,0.006144,0.005568,0.00672,0.013568,0.014592,0.748032,0.010112
+1006,373.076,2.68042,1.05478,0.01072,0.245888,0.006144,0.005728,0.00656,0.01408,0.014464,0.741504,0.009696
+1007,353.317,2.83032,1.04861,0.010272,0.253984,0.006112,0.005632,0.006688,0.013792,0.01456,0.728448,0.00912
+1008,393.43,2.54175,1.02605,0.010272,0.23344,0.00608,0.005472,0.00688,0.013696,0.014272,0.727232,0.008704
+1009,418.173,2.39136,1.03232,0.010368,0.232992,0.004832,0.005888,0.007456,0.013024,0.014336,0.7344,0.009024
+1010,397.94,2.51294,1.04656,0.01168,0.246368,0.005856,0.005472,0.00704,0.013536,0.014464,0.733472,0.008672
+1011,452.697,2.20898,1.0321,0.01024,0.229376,0.005952,0.005472,0.007008,0.013408,0.014784,0.735712,0.010144
+1012,375.849,2.66064,1.04451,0.010272,0.235488,0.006144,0.005568,0.00672,0.013952,0.0144,0.741728,0.01024
+1013,337.508,2.96289,1.04275,0.01072,0.237568,0.00608,0.005472,0.00688,0.013696,0.014624,0.737632,0.01008
+1014,438.685,2.27954,1.03142,0.01024,0.233024,0.0056,0.005088,0.007456,0.013024,0.014336,0.732576,0.01008
+1015,425.603,2.34961,1.0264,0.01056,0.233472,0.00592,0.00544,0.007072,0.012288,0.015392,0.727552,0.008704
+1016,376.921,2.65308,1.04413,0.011744,0.237376,0.004832,0.006144,0.007168,0.013152,0.014432,0.739392,0.009888
+1017,449.418,2.2251,1.02339,0.010272,0.233408,0.005632,0.00464,0.008192,0.013472,0.014752,0.723296,0.009728
+1018,388.984,2.5708,1.0951,0.0104,0.301056,0.006144,0.005568,0.00672,0.013952,0.014112,0.727488,0.009664
+1019,376.921,2.65308,1.06086,0.01024,0.238784,0.004928,0.006112,0.006176,0.01376,0.014528,0.756096,0.01024
+1020,424.368,2.35645,1.03014,0.010272,0.232992,0.005632,0.005056,0.007648,0.012832,0.014336,0.732512,0.008864
+1021,434.82,2.2998,1.04266,0.012064,0.243616,0.004832,0.005952,0.007392,0.013088,0.01424,0.731232,0.01024
+1022,408.579,2.44751,1.04176,0.011424,0.234272,0.005824,0.00448,0.00816,0.013344,0.013312,0.741344,0.0096
+1023,419.5,2.38379,1.03203,0.01056,0.229824,0.0056,0.004672,0.007904,0.012576,0.01552,0.736,0.009376
+1024,292.071,3.42383,1.0903,0.010976,0.28672,0.006016,0.005472,0.006944,0.013536,0.014528,0.73584,0.010272
+1025,422.312,2.36792,1.0281,0.011936,0.235904,0.00576,0.005472,0.007072,0.012384,0.014336,0.726048,0.009184
+1026,400.078,2.49951,1.05472,0.01024,0.236576,0.00512,0.006112,0.007424,0.014208,0.014336,0.751584,0.00912
+1027,408.823,2.44604,1.02499,0.010624,0.23408,0.006176,0.006112,0.006144,0.014336,0.014368,0.724032,0.00912
+1028,421.79,2.37085,1.01843,0.010816,0.228768,0.004832,0.006016,0.007296,0.013184,0.014336,0.722944,0.01024
+1029,389.872,2.56494,1.02701,0.011168,0.238656,0.004896,0.004256,0.007744,0.012736,0.014368,0.724192,0.008992
+1030,273.852,3.65161,1.04243,0.011552,0.23424,0.006016,0.005472,0.006912,0.013504,0.014336,0.731968,0.018432
+1031,402.16,2.48657,1.03635,0.010304,0.242976,0.004832,0.00544,0.006848,0.013344,0.01328,0.731104,0.008224
+1032,379.189,2.63721,1.02256,0.010944,0.233504,0.0056,0.004224,0.006592,0.012256,0.015776,0.723552,0.010112
+1033,450.605,2.21924,1.02454,0.01072,0.234944,0.004832,0.006048,0.00736,0.01296,0.014496,0.722944,0.01024
+1034,415.247,2.4082,1.04755,0.01088,0.242048,0.006112,0.005632,0.006656,0.013696,0.014464,0.737792,0.010272
+1035,373.484,2.67749,1.04038,0.010336,0.235168,0.005664,0.004832,0.007872,0.01264,0.015328,0.738304,0.01024
+1036,448.778,2.22827,1.02195,0.011584,0.227392,0.004832,0.006048,0.006144,0.014336,0.014336,0.728736,0.008544
+1037,436.302,2.29199,1.03238,0.0104,0.23888,0.004864,0.00608,0.007296,0.013184,0.014336,0.728576,0.008768
+1038,381.272,2.6228,1.03018,0.010048,0.23488,0.00496,0.006144,0.006272,0.014208,0.014336,0.729088,0.01024
+1039,468.328,2.13525,1.024,0.01024,0.2304,0.00512,0.005952,0.006336,0.01392,0.014528,0.727264,0.01024
+1040,277.356,3.60547,1.05094,0.010592,0.237344,0.005568,0.004864,0.007712,0.012768,0.014336,0.74752,0.01024
+1041,403.269,2.47974,1.04202,0.011616,0.23824,0.006144,0.00576,0.006528,0.013632,0.014944,0.735136,0.010016
+1042,395.634,2.52759,1.05238,0.010016,0.241312,0.005888,0.005024,0.007488,0.012992,0.014336,0.745472,0.009856
+1043,379.54,2.63477,1.05062,0.011552,0.238048,0.00576,0.004736,0.00784,0.01264,0.014336,0.745472,0.01024
+1044,447.699,2.23364,1.02595,0.010304,0.228864,0.0048,0.00592,0.007424,0.013056,0.014336,0.731136,0.010112
+1045,424.852,2.35376,1.03296,0.010816,0.230912,0.004832,0.00608,0.007264,0.013216,0.014336,0.736256,0.009248
+1046,381.094,2.62402,1.03834,0.011552,0.237376,0.005056,0.006048,0.00736,0.013184,0.014336,0.733184,0.01024
+1047,311.081,3.2146,1.04653,0.011552,0.240384,0.006112,0.005568,0.00672,0.012448,0.0152,0.738304,0.01024
+1048,367.42,2.72168,1.06288,0.011968,0.244032,0.006112,0.005472,0.006848,0.013696,0.014976,0.749568,0.010208
+1049,442.907,2.25781,1.03728,0.010528,0.231296,0.00496,0.00608,0.006272,0.013984,0.014368,0.7408,0.008992
+1050,397.979,2.5127,1.02944,0.010304,0.229376,0.006144,0.00576,0.006528,0.014016,0.014432,0.733344,0.009536
+1051,380.316,2.62939,1.04653,0.011712,0.233632,0.0056,0.005056,0.007552,0.012928,0.014336,0.745472,0.01024
+1052,460.07,2.17358,1.03846,0.0104,0.231296,0.005728,0.004608,0.007616,0.012864,0.014336,0.742592,0.009024
+1053,238.848,4.18677,1.03322,0.010944,0.231744,0.006144,0.005696,0.006592,0.013504,0.014368,0.733984,0.01024
+1054,447.748,2.2334,1.05459,0.01024,0.237568,0.005984,0.005472,0.006976,0.013792,0.0144,0.750048,0.010112
+1055,376.956,2.65283,1.04995,0.01024,0.23552,0.006144,0.005632,0.006656,0.01392,0.014752,0.747488,0.0096
+1056,365.616,2.73511,1.05674,0.012,0.248096,0.006144,0.005504,0.006816,0.013568,0.013024,0.741376,0.010208
+1057,438.591,2.28003,1.04746,0.010336,0.232224,0.005856,0.005472,0.007072,0.012288,0.015712,0.749728,0.008768
+1058,449.221,2.22607,1.03629,0.010144,0.241536,0.005632,0.004832,0.007744,0.012768,0.014304,0.729088,0.01024
+1059,399.142,2.50537,1.0448,0.010336,0.235744,0.00576,0.00448,0.008064,0.014272,0.014432,0.741472,0.01024
+1060,375.263,2.66479,1.04858,0.011904,0.237952,0.005952,0.005472,0.007008,0.013504,0.014496,0.743072,0.009216
+1061,409.232,2.4436,1.06854,0.010688,0.240896,0.004864,0.006112,0.007168,0.01296,0.021984,0.754432,0.00944
+1062,394.795,2.53296,1.03072,0.010784,0.233664,0.006144,0.005664,0.006624,0.013984,0.014272,0.729504,0.01008
+1063,445.508,2.24463,1.03424,0.012288,0.229376,0.00592,0.005472,0.00704,0.013312,0.014688,0.736992,0.009152
+1064,427.245,2.34058,1.05062,0.01152,0.24448,0.006048,0.005504,0.00688,0.01408,0.014624,0.737248,0.01024
+1065,372.262,2.68628,1.05472,0.01168,0.23408,0.006144,0.0056,0.006688,0.013568,0.014272,0.752672,0.010016
+1066,378.733,2.64038,1.08938,0.012,0.293088,0.004288,0.006016,0.007392,0.01312,0.014304,0.729088,0.01008
+1067,394.301,2.53613,1.09069,0.011552,0.279264,0.006016,0.005472,0.006944,0.012384,0.0144,0.745088,0.009568
+1068,454.253,2.20142,1.03098,0.01008,0.22832,0.006176,0.005536,0.00672,0.014176,0.014368,0.73536,0.01024
+1069,382.304,2.61572,1.03824,0.012224,0.226432,0.005056,0.006016,0.006272,0.013952,0.014496,0.743648,0.010144
+1070,376.852,2.65356,1.04224,0.011392,0.238048,0.005664,0.004992,0.007744,0.0128,0.014272,0.73728,0.010048
+1071,453.8,2.20361,1.0352,0.010816,0.22976,0.005632,0.004608,0.007904,0.012576,0.015392,0.73984,0.008672
+1072,274.918,3.63745,1.06198,0.011904,0.228928,0.004928,0.006144,0.007296,0.013184,0.014144,0.764096,0.01136
+1073,359.93,2.77832,1.06474,0.010272,0.259232,0.004928,0.006144,0.006144,0.01408,0.0144,0.739232,0.010304
+1074,429.891,2.32617,1.04083,0.010688,0.23312,0.006208,0.005472,0.007136,0.013728,0.014784,0.740704,0.008992
+1075,390.281,2.56226,1.04109,0.010944,0.241664,0.005568,0.004672,0.007904,0.012576,0.014336,0.734336,0.009088
+1076,407.481,2.4541,1.05267,0.011904,0.233856,0.006144,0.0056,0.00672,0.013728,0.014656,0.749824,0.01024
+1077,424.5,2.35571,1.04173,0.0104,0.229376,0.006144,0.005824,0.007776,0.013056,0.014304,0.745376,0.009472
+1078,354.816,2.81836,1.13459,0.011296,0.325664,0.005056,0.006048,0.00624,0.01408,0.01456,0.742528,0.00912
+1079,367.783,2.71899,1.05882,0.01024,0.251104,0.004928,0.006112,0.006304,0.014112,0.01424,0.742848,0.008928
+1080,377.442,2.64941,1.0544,0.011968,0.244032,0.005888,0.005472,0.007072,0.013952,0.014656,0.74144,0.00992
+1081,391.4,2.55493,1.04806,0.011456,0.234304,0.005856,0.005472,0.00704,0.012352,0.014336,0.74752,0.009728
+1082,423.578,2.36084,1.0592,0.010656,0.235168,0.0056,0.00496,0.00768,0.0128,0.014336,0.75776,0.01024
+1083,397.824,2.51367,1.08506,0.010656,0.27024,0.0056,0.004736,0.007744,0.012736,0.015872,0.748032,0.00944
+1084,393.468,2.5415,1.0816,0.010528,0.263136,0.00512,0.006144,0.007424,0.013056,0.025792,0.741536,0.008864
+1085,428.811,2.33203,1.03453,0.010656,0.231392,0.006144,0.005504,0.006784,0.013824,0.01456,0.73552,0.010144
+1086,355.772,2.81079,1.05062,0.012,0.23584,0.006112,0.005472,0.006816,0.013824,0.014656,0.745664,0.01024
+1087,436.86,2.28906,1.03424,0.011392,0.228,0.005632,0.004832,0.007744,0.012736,0.014336,0.74064,0.008928
+1088,405.103,2.46851,1.03946,0.011808,0.232992,0.005056,0.00608,0.006208,0.014336,0.014336,0.738912,0.009728
+1089,374.92,2.66724,1.04995,0.011616,0.233984,0.0056,0.0048,0.007712,0.012768,0.015744,0.748032,0.009696
+1090,330.323,3.02734,1.05066,0.010528,0.2288,0.00512,0.005856,0.0064,0.014208,0.014464,0.755264,0.010016
+1091,339.382,2.94653,1.12675,0.010592,0.310624,0.004864,0.006048,0.007648,0.012832,0.014336,0.750784,0.009024
+1092,448.484,2.22974,1.0416,0.01024,0.23504,0.0056,0.00512,0.007424,0.014112,0.014336,0.740192,0.009536
+1093,395.329,2.52954,1.08486,0.011648,0.248512,0.016384,0.005888,0.0064,0.014016,0.01456,0.757856,0.0096
+1094,346.209,2.88843,1.05472,0.01024,0.239616,0.006144,0.005504,0.006784,0.013472,0.0144,0.74992,0.00864
+1095,434.036,2.30396,1.03834,0.010272,0.231072,0.0056,0.00496,0.007712,0.012768,0.014304,0.74272,0.008928
+1096,291.157,3.43457,1.05341,0.010976,0.23552,0.005664,0.004576,0.007936,0.012672,0.015232,0.751712,0.00912
+1097,408.823,2.44604,1.05574,0.012,0.246048,0.005696,0.004544,0.008032,0.01248,0.014304,0.743168,0.009472
+1098,447.748,2.2334,1.04858,0.01024,0.232576,0.004992,0.00608,0.006304,0.01408,0.014432,0.750976,0.008896
+1099,411.162,2.43213,1.10387,0.010272,0.282592,0.00592,0.005472,0.00704,0.013504,0.014688,0.754144,0.01024
+1100,392.638,2.54688,1.03834,0.012096,0.231616,0.006144,0.005664,0.006624,0.01424,0.014336,0.738464,0.009152
+1101,468.114,2.13623,1.04282,0.01024,0.231808,0.006144,0.005504,0.006784,0.013408,0.014528,0.745344,0.009056
+1102,334.285,2.99146,1.06595,0.010656,0.244128,0.0056,0.0048,0.007712,0.012768,0.015872,0.754176,0.01024
+1103,401.569,2.49023,1.05014,0.01056,0.237568,0.005568,0.004672,0.007872,0.012608,0.014336,0.74736,0.0096
+1104,408.293,2.44922,1.05126,0.010656,0.235808,0.006176,0.005856,0.006432,0.014176,0.014464,0.74752,0.010176
+1105,410.544,2.43579,1.04243,0.011584,0.234176,0.005792,0.005504,0.007008,0.012448,0.014304,0.741376,0.01024
+1106,468.382,2.13501,1.05014,0.011392,0.234048,0.005664,0.004896,0.007648,0.012864,0.014432,0.74944,0.00976
+1107,433.944,2.30444,1.03382,0.01024,0.233472,0.006144,0.005824,0.006464,0.01376,0.01424,0.733856,0.009824
+1108,396.592,2.52148,1.0593,0.010944,0.234944,0.004832,0.005984,0.007328,0.013152,0.014336,0.75776,0.010016
+1109,349.548,2.86084,1.05885,0.010272,0.231392,0.006144,0.005536,0.006752,0.013344,0.01344,0.763136,0.008832
+1110,376.229,2.65796,1.06701,0.01024,0.264192,0.006112,0.005472,0.006848,0.013952,0.014176,0.736832,0.009184
+1111,452.897,2.20801,1.05722,0.010208,0.233472,0.0056,0.005056,0.00752,0.01296,0.014336,0.759328,0.008736
+1112,412.986,2.42139,1.04448,0.01024,0.231424,0.006144,0.00592,0.006368,0.014336,0.014272,0.746624,0.009152
+1113,402.753,2.48291,1.07664,0.01024,0.258048,0.006144,0.005504,0.006784,0.013824,0.014464,0.752,0.009632
+1114,433.347,2.30762,1.05142,0.00912,0.23104,0.005664,0.00496,0.007712,0.014048,0.0144,0.754368,0.010112
+1115,398.366,2.51025,1.04,0.01072,0.229344,0.006144,0.006144,0.007232,0.013088,0.014528,0.743264,0.009536
+1116,265.405,3.76782,1.05606,0.010528,0.239616,0.006144,0.005728,0.00656,0.013728,0.014016,0.750176,0.009568
+1117,464.136,2.15454,1.05338,0.010688,0.229088,0.004864,0.00592,0.00736,0.01312,0.014336,0.757792,0.010208
+1118,419.5,2.38379,1.04806,0.01024,0.241664,0.006144,0.005888,0.0064,0.013792,0.01424,0.739968,0.009728
+1119,392.412,2.54834,1.05318,0.010336,0.23184,0.005536,0.004704,0.007328,0.013152,0.01552,0.755904,0.008864
+1120,455.719,2.19434,1.04672,0.010432,0.227328,0.006144,0.005568,0.00672,0.01392,0.014272,0.752096,0.01024
+1121,422.704,2.36572,1.07725,0.011296,0.244704,0.005728,0.004512,0.008,0.026848,0.014304,0.7528,0.009056
+1122,286.754,3.4873,1.05542,0.011104,0.237568,0.005888,0.005472,0.007072,0.01344,0.014432,0.750368,0.01008
+1123,387.109,2.58325,1.04042,0.01136,0.230304,0.005888,0.005472,0.007072,0.012288,0.016384,0.74288,0.008768
+1124,361.55,2.76587,1.06429,0.012032,0.237376,0.005568,0.00512,0.007424,0.013056,0.014336,0.759808,0.009568
+1125,470.913,2.12354,1.03699,0.010496,0.227776,0.006016,0.005472,0.006944,0.012288,0.014336,0.743424,0.01024
+1126,382.875,2.61182,1.05955,0.011168,0.234816,0.006048,0.004896,0.007616,0.012864,0.014464,0.757632,0.010048
+1127,331.204,3.01929,1.05062,0.011968,0.235648,0.005632,0.0048,0.00784,0.01264,0.014336,0.748576,0.009184
+1128,386.89,2.58472,1.05472,0.010912,0.233728,0.00608,0.005472,0.00688,0.013728,0.01488,0.753536,0.009504
+1129,436.395,2.2915,1.09206,0.012032,0.275168,0.006144,0.005536,0.006752,0.013984,0.014688,0.748768,0.008992
+1130,436.534,2.29077,1.05229,0.011392,0.235392,0.00512,0.005952,0.006336,0.014368,0.014336,0.749536,0.009856
+1131,430.931,2.32056,1.04666,0.0104,0.229344,0.006144,0.00592,0.006368,0.014336,0.014368,0.75104,0.008736
+1132,399.532,2.50293,1.09597,0.012192,0.273312,0.006144,0.005504,0.006784,0.013664,0.014208,0.754464,0.009696
+1133,432.113,2.31421,1.04858,0.011712,0.231776,0.0056,0.004896,0.007648,0.0128,0.014336,0.751168,0.00864
+1134,382.625,2.61353,1.05062,0.011712,0.239712,0.004832,0.005888,0.007424,0.013056,0.014336,0.743424,0.01024
+1135,353.836,2.82617,1.04861,0.012256,0.235136,0.0056,0.005056,0.007456,0.013056,0.014304,0.746912,0.008832
+1136,453.8,2.20361,1.0447,0.010208,0.231584,0.004704,0.004096,0.008064,0.013792,0.014688,0.74784,0.009728
+1137,410.874,2.43384,1.04022,0.012064,0.231648,0.006144,0.005888,0.006432,0.013824,0.014464,0.73968,0.01008
+1138,394.833,2.53271,1.05062,0.01024,0.231424,0.0056,0.00464,0.007968,0.012512,0.015424,0.753856,0.00896
+1139,407.36,2.45483,1.04765,0.011968,0.229696,0.005984,0.005472,0.006976,0.012288,0.014336,0.751072,0.009856
+1140,353.225,2.83105,1.09475,0.011616,0.27056,0.005632,0.005056,0.014336,0.013824,0.014144,0.750048,0.009536
+1141,376.678,2.65479,1.04371,0.01168,0.232032,0.005984,0.005472,0.006976,0.013504,0.014592,0.744,0.009472
+1142,477.278,2.09521,1.0545,0.01136,0.236448,0.006144,0.0056,0.00672,0.013696,0.0144,0.750112,0.010016
+1143,372.194,2.68677,1.12624,0.011904,0.293248,0.005696,0.004544,0.007456,0.013024,0.014336,0.765952,0.01008
+1144,414.03,2.41528,1.0711,0.011648,0.23312,0.005088,0.006144,0.007168,0.013312,0.014336,0.770048,0.01024
+1145,441.522,2.26489,1.0423,0.010304,0.230752,0.004768,0.00416,0.007904,0.012512,0.015648,0.746208,0.010048
+1146,306.725,3.26025,1.11002,0.010272,0.272352,0.005952,0.004288,0.007712,0.015968,0.031616,0.751648,0.010208
+1147,426.8,2.34302,1.06,0.01024,0.233408,0.005952,0.005472,0.00704,0.01232,0.014336,0.761824,0.009408
+1148,386.379,2.58813,1.05933,0.01088,0.2448,0.005024,0.00608,0.006208,0.014336,0.014368,0.747488,0.010144
+1149,343.365,2.91235,1.07216,0.010304,0.239232,0.0056,0.004992,0.00752,0.012992,0.014304,0.767616,0.0096
+1150,420.663,2.3772,1.05466,0.011776,0.231936,0.006144,0.005728,0.00656,0.013888,0.0144,0.754048,0.010176
+1151,438.215,2.28198,1.07542,0.010464,0.251232,0.004832,0.00608,0.00752,0.01296,0.014336,0.75776,0.01024
+1152,356.732,2.80322,1.06294,0.011744,0.235552,0.005696,0.005056,0.007552,0.012928,0.015392,0.760256,0.008768
+1153,361.104,2.76929,1.07974,0.011136,0.247104,0.004832,0.006112,0.007296,0.013184,0.014368,0.76592,0.009792
+1154,348.744,2.86743,1.07315,0.011264,0.248672,0.0056,0.0048,0.00784,0.01264,0.014336,0.75776,0.01024
+1155,422.181,2.36865,1.05411,0.010272,0.232896,0.004832,0.005952,0.007456,0.013024,0.014368,0.755488,0.009824
+1156,361.965,2.7627,1.0921,0.010816,0.257024,0.005152,0.005984,0.006272,0.014336,0.014336,0.768,0.010176
+1157,369.408,2.70703,1.0592,0.010464,0.240672,0.005088,0.005984,0.006336,0.014048,0.01456,0.753248,0.0088
+1158,350.625,2.85205,1.10387,0.010272,0.280224,0.0056,0.00496,0.007584,0.012928,0.014304,0.75776,0.01024
+1159,360.945,2.77051,1.12003,0.01104,0.288224,0.004832,0.005952,0.007328,0.013184,0.014304,0.765088,0.01008
+1160,441.522,2.26489,1.06726,0.010496,0.23536,0.005632,0.004736,0.007808,0.012704,0.014304,0.767296,0.008928
+1161,393.09,2.54395,1.06387,0.010944,0.23296,0.00624,0.004736,0.008224,0.013888,0.014752,0.761856,0.010272
+1162,322.901,3.09692,1.08544,0.011616,0.236192,0.006112,0.005472,0.006848,0.013664,0.01408,0.782624,0.008832
+1163,422.704,2.36572,1.06496,0.011904,0.233856,0.006144,0.005664,0.006624,0.013696,0.014656,0.76336,0.009056
+1164,309.179,3.23438,1.12598,0.02048,0.282368,0.0056,0.016224,0.007072,0.013664,0.014624,0.756128,0.009824
+1165,331.579,3.01587,1.0752,0.01136,0.24608,0.004832,0.006016,0.007328,0.01312,0.0144,0.763296,0.008768
+1166,375.711,2.66162,1.09626,0.010816,0.269472,0.004992,0.006112,0.007232,0.013248,0.014368,0.759776,0.01024
+1167,350.355,2.85425,1.05142,0.011168,0.233568,0.005952,0.005472,0.007008,0.012352,0.014272,0.751616,0.010016
+1168,460.691,2.17065,1.04586,0.010048,0.229504,0.006016,0.00432,0.008032,0.012448,0.014336,0.751616,0.009536
+1169,251.412,3.97754,1.13626,0.010496,0.301024,0.006144,0.005696,0.006592,0.013568,0.014176,0.768928,0.009632
+1170,414.911,2.41016,1.07798,0.011136,0.239328,0.0056,0.004928,0.007648,0.012832,0.014336,0.772096,0.01008
+1171,393.543,2.54102,1.07114,0.011488,0.244416,0.005632,0.004704,0.007968,0.012512,0.015456,0.759936,0.009024
+1172,401.569,2.49023,1.07891,0.010304,0.239552,0.005856,0.00544,0.007104,0.013376,0.014432,0.772992,0.009856
+1173,444.252,2.25098,1.04733,0.010592,0.22928,0.004864,0.00592,0.007392,0.013088,0.014336,0.753024,0.008832
+1174,381.84,2.6189,1.08262,0.01024,0.261856,0.0056,0.004928,0.007904,0.012576,0.014336,0.75568,0.009504
+1175,348.804,2.86694,1.06291,0.01152,0.235392,0.004992,0.006112,0.006176,0.013984,0.014624,0.761632,0.00848
+1176,414.785,2.41089,1.06291,0.011456,0.234272,0.0056,0.004672,0.00784,0.014048,0.014496,0.760288,0.01024
+1177,379.54,2.63477,1.06906,0.011712,0.238144,0.006176,0.0056,0.006656,0.013408,0.014624,0.762496,0.01024
+1178,401.569,2.49023,1.06694,0.01152,0.2296,0.005664,0.00512,0.007456,0.013024,0.014336,0.770048,0.010176
+1179,378.418,2.64258,1.05942,0.010816,0.231424,0.005568,0.004672,0.007328,0.013184,0.014304,0.761856,0.010272
+1180,432.844,2.3103,1.05914,0.010624,0.233472,0.006112,0.005472,0.006848,0.013824,0.01472,0.757888,0.010176
+1181,321.558,3.10986,1.06736,0.010624,0.231392,0.005856,0.005472,0.007104,0.013344,0.014592,0.768736,0.01024
+1182,404.184,2.47412,1.09024,0.010752,0.258112,0.005632,0.004736,0.007808,0.012704,0.014304,0.767104,0.009088
+1183,428.049,2.33618,1.06323,0.01088,0.231424,0.005888,0.005472,0.007072,0.01344,0.014496,0.76464,0.00992
+1184,403.15,2.48047,1.07206,0.011168,0.230624,0.004896,0.006144,0.006272,0.014208,0.014336,0.775456,0.00896
+1185,377.164,2.65137,1.09952,0.011648,0.266304,0.004992,0.00608,0.006208,0.014016,0.014464,0.766112,0.009696
+1186,423.053,2.36377,1.06243,0.01184,0.23152,0.0056,0.004992,0.007584,0.012896,0.014368,0.763616,0.010016
+1187,302.065,3.31055,1.06278,0.011104,0.23072,0.004832,0.006112,0.0072,0.01312,0.014496,0.765568,0.009632
+1188,389.91,2.5647,1.06704,0.010272,0.235552,0.00592,0.005344,0.007136,0.013792,0.014496,0.765824,0.008704
+1189,465.719,2.14722,1.05587,0.009952,0.229664,0.005952,0.005472,0.007008,0.013408,0.015008,0.759712,0.009696
+1190,419.629,2.38306,1.08358,0.0104,0.251296,0.004832,0.006016,0.007456,0.013056,0.015648,0.765824,0.009056
+1191,416.811,2.39917,1.06259,0.01184,0.231872,0.006016,0.005472,0.006944,0.012448,0.016192,0.761888,0.00992
+1192,462.773,2.16089,1.06918,0.010368,0.233472,0.005888,0.005472,0.007072,0.012288,0.015552,0.77008,0.008992
+1193,398.211,2.51123,1.06976,0.010944,0.240832,0.004928,0.006144,0.006144,0.014112,0.014528,0.763296,0.008832
+1194,166.389,6.01001,1.09184,0.010528,0.249696,0.005664,0.004704,0.007904,0.012576,0.01552,0.775008,0.01024
+1195,329.977,3.03052,1.06458,0.010464,0.247584,0.005888,0.00544,0.00704,0.012352,0.014336,0.751616,0.009856
+1196,379.014,2.63843,1.08362,0.010752,0.24528,0.0056,0.00512,0.00752,0.01296,0.014336,0.772096,0.009952
+1197,382.054,2.61743,1.07174,0.01088,0.241312,0.006112,0.00448,0.008,0.01248,0.016128,0.762112,0.01024
+1198,336.013,2.97607,1.08896,0.010336,0.234752,0.004832,0.006144,0.007232,0.013152,0.014016,0.788896,0.0096
+1199,393.43,2.54175,1.06666,0.010432,0.239136,0.005696,0.004992,0.007552,0.012928,0.014336,0.76176,0.009824
+1200,337.286,2.96484,1.07181,0.010944,0.237568,0.006144,0.005568,0.00672,0.013952,0.014432,0.767264,0.009216
+1201,444.3,2.25073,1.06003,0.01024,0.229408,0.006112,0.005568,0.00672,0.013888,0.014432,0.76384,0.009824
+1202,414.114,2.41479,1.05901,0.010432,0.235072,0.0056,0.005088,0.007456,0.013024,0.014336,0.75776,0.01024
+1203,392.224,2.54956,1.07235,0.010272,0.235168,0.0056,0.00496,0.007584,0.012896,0.014336,0.771744,0.009792
+1204,386.087,2.59009,1.06192,0.010272,0.229344,0.005664,0.004576,0.008224,0.013664,0.014784,0.755904,0.019488
+1205,420.534,2.37793,1.08678,0.01168,0.242176,0.005472,0.004864,0.00768,0.02912,0.0144,0.761856,0.009536
+1206,388.984,2.5708,1.07293,0.01024,0.237568,0.005952,0.005504,0.006976,0.013728,0.01424,0.768704,0.010016
+1207,404.783,2.47046,1.05718,0.010688,0.229344,0.005856,0.005472,0.00704,0.012352,0.015424,0.762144,0.008864
+1208,356.298,2.80664,1.13069,0.010464,0.298304,0.004832,0.00608,0.007232,0.013248,0.014336,0.765952,0.01024
+1209,428.228,2.33521,1.07485,0.010272,0.229856,0.006144,0.005792,0.006496,0.014144,0.01456,0.777664,0.00992
+1210,287.681,3.47607,1.06496,0.01168,0.227744,0.005568,0.004864,0.007712,0.012768,0.014336,0.770048,0.01024
+1211,339.579,2.94482,1.0793,0.01152,0.237632,0.004832,0.006112,0.006208,0.014048,0.014208,0.775936,0.0088
+1212,399.61,2.50244,1.06518,0.011136,0.23248,0.005056,0.006048,0.006272,0.014304,0.014336,0.765728,0.009824
+1213,392.939,2.54492,1.09376,0.010816,0.25088,0.00512,0.005952,0.006368,0.013856,0.014592,0.776384,0.009792
+1214,393.846,2.53906,1.06896,0.011648,0.232064,0.00608,0.005472,0.00688,0.013376,0.01472,0.768576,0.010144
+1215,396.707,2.52075,1.06707,0.01072,0.231296,0.005536,0.0048,0.006144,0.01424,0.014464,0.770016,0.009856
+1216,380.492,2.62817,1.08374,0.010848,0.251264,0.005024,0.00608,0.00624,0.014304,0.014336,0.765952,0.009696
+1217,451.25,2.21606,1.06902,0.010272,0.235488,0.005696,0.004544,0.008032,0.012448,0.014336,0.768,0.010208
+1218,411.245,2.43164,1.07187,0.01088,0.235648,0.006016,0.005504,0.006912,0.013664,0.014304,0.769824,0.00912
+1219,417.065,2.39771,1.06928,0.010656,0.2336,0.005984,0.005504,0.006944,0.013472,0.014528,0.768672,0.00992
+1220,468.489,2.13452,1.0745,0.011744,0.22992,0.00608,0.005472,0.00688,0.013824,0.014496,0.776352,0.009728
+1221,411.7,2.42896,1.07126,0.010432,0.232928,0.006016,0.004736,0.007776,0.012704,0.014336,0.772096,0.01024
+1222,404.983,2.46924,1.06182,0.010624,0.232,0.00608,0.005472,0.00688,0.013568,0.014496,0.763776,0.008928
+1223,312.148,3.20361,1.06915,0.010304,0.245632,0.0056,0.004768,0.007776,0.012704,0.01536,0.7584,0.008608
+1224,389.947,2.56445,1.10538,0.012064,0.264288,0.0056,0.0048,0.00784,0.01264,0.014336,0.773952,0.009856
+1225,444.879,2.2478,1.06906,0.011488,0.230176,0.006144,0.005504,0.006784,0.013344,0.014432,0.772256,0.008928
+1226,414.575,2.41211,1.08339,0.010272,0.231424,0.006048,0.005472,0.00688,0.013568,0.014144,0.786592,0.008992
+1227,348.003,2.87354,1.07901,0.010528,0.236512,0.00512,0.006144,0.006144,0.014368,0.014304,0.776192,0.009696
+1228,359.172,2.78418,1.06291,0.011904,0.227232,0.004576,0.005184,0.007072,0.013856,0.014336,0.768512,0.01024
+1229,251.381,3.97803,1.13459,0.012288,0.271776,0.004832,0.006016,0.016384,0.013696,0.022784,0.776576,0.01024
+1230,418.942,2.38696,1.06627,0.010496,0.239552,0.005568,0.004736,0.007808,0.012672,0.014336,0.761568,0.009536
+1231,406.188,2.46191,1.06502,0.01152,0.228096,0.006144,0.005504,0.006784,0.013824,0.014784,0.769568,0.0088
+1232,304.785,3.28101,1.10544,0.010688,0.239648,0.006112,0.006144,0.007328,0.013152,0.014336,0.798336,0.009696
+1233,440.857,2.26831,1.07523,0.011392,0.231968,0.005632,0.00496,0.00752,0.01296,0.014336,0.776224,0.01024
+1234,319.6,3.12891,1.10896,0.010464,0.256768,0.006176,0.005504,0.006752,0.013472,0.014336,0.786496,0.008992
+1235,347.915,2.87427,1.08477,0.01168,0.250464,0.006016,0.005472,0.006944,0.012288,0.015872,0.766336,0.009696
+1236,422.529,2.3667,1.06509,0.0104,0.234048,0.005664,0.004576,0.007968,0.012512,0.016384,0.763776,0.00976
+1237,328.626,3.04297,1.09696,0.011552,0.235648,0.004832,0.006016,0.007296,0.013152,0.014368,0.794592,0.009504
+1238,468.596,2.13403,1.0776,0.010368,0.235616,0.005664,0.004736,0.007904,0.012576,0.015456,0.775072,0.010208
+1239,410.256,2.4375,1.08282,0.010272,0.23456,0.005024,0.006048,0.006272,0.013888,0.014496,0.782592,0.009664
+1240,303.25,3.29761,1.08544,0.011552,0.246496,0.005856,0.005472,0.007072,0.013504,0.014496,0.772256,0.008736
+1241,398.832,2.50732,1.09283,0.011968,0.244032,0.005888,0.005472,0.00704,0.01232,0.014336,0.782304,0.009472
+1242,317.052,3.15405,1.08134,0.011584,0.244032,0.00576,0.004864,0.00768,0.0128,0.014336,0.771616,0.008672
+1243,417.065,2.39771,1.06086,0.010656,0.234752,0.004864,0.006144,0.006336,0.01392,0.01456,0.759808,0.009824
+1244,403.15,2.48047,1.08518,0.010752,0.24976,0.0056,0.004768,0.007744,0.013952,0.014368,0.768768,0.009472
+1245,344.028,2.90674,1.08314,0.010656,0.239616,0.005632,0.004608,0.008,0.012512,0.014304,0.778208,0.0096
+1246,420.491,2.37817,1.07123,0.010368,0.23552,0.005984,0.005472,0.006976,0.013888,0.014368,0.768416,0.01024
+1247,361.869,2.76343,1.16122,0.012,0.3152,0.0056,0.00512,0.007488,0.012992,0.014336,0.779264,0.009216
+1248,430.795,2.32129,1.072,0.010816,0.233792,0.006176,0.00592,0.006368,0.014304,0.014336,0.771296,0.008992
+1249,389.428,2.56787,1.07939,0.010464,0.233344,0.006144,0.005888,0.0064,0.01392,0.014592,0.779616,0.009024
+1250,356.236,2.80713,1.0856,0.0104,0.245568,0.0056,0.004832,0.007712,0.012768,0.014336,0.774176,0.010208
+1251,299.459,3.33936,1.07549,0.010528,0.239648,0.006112,0.005568,0.00672,0.013536,0.015072,0.769216,0.009088
+1252,445.072,2.24683,1.06896,0.010272,0.239584,0.006144,0.0056,0.006688,0.01376,0.014368,0.762432,0.010112
+1253,399.22,2.50488,1.0752,0.012032,0.237824,0.005888,0.005472,0.007072,0.012288,0.014336,0.770048,0.01024
+1254,384.348,2.60181,1.07197,0.010656,0.233312,0.004832,0.005984,0.007424,0.013056,0.014336,0.773248,0.00912
+1255,408.742,2.44653,1.09946,0.010848,0.2656,0.004832,0.006016,0.007264,0.013216,0.014368,0.767552,0.00976
+1256,374.166,2.67261,1.07574,0.011104,0.241664,0.005888,0.005472,0.00704,0.013344,0.014336,0.766976,0.00992
+1257,323.999,3.08643,1.06752,0.01072,0.231424,0.00592,0.005472,0.00704,0.012288,0.015584,0.77008,0.008992
+1258,339.045,2.94946,1.08906,0.01072,0.241664,0.006016,0.005472,0.006944,0.0136,0.014432,0.780736,0.009472
+1259,439.768,2.27393,1.06688,0.01088,0.233536,0.005856,0.00544,0.007072,0.01248,0.015904,0.766048,0.009664
+1260,387.475,2.58081,1.0993,0.011616,0.265888,0.00512,0.006144,0.006272,0.014176,0.014368,0.765952,0.00976
+1261,402.2,2.48633,1.08134,0.011552,0.236256,0.00576,0.00448,0.00752,0.01296,0.01536,0.778592,0.008864
+1262,368.312,2.71509,1.08963,0.010304,0.22528,0.006176,0.005888,0.0064,0.014368,0.026368,0.784608,0.01024
+1263,399.805,2.50122,1.09158,0.01168,0.260704,0.006144,0.005728,0.00656,0.013696,0.014336,0.763552,0.009184
+1264,409.15,2.44409,1.0751,0.01024,0.235552,0.00576,0.005472,0.007072,0.013504,0.014624,0.772736,0.010144
+1265,351.709,2.84326,1.10979,0.011936,0.242016,0.005856,0.005472,0.019392,0.01424,0.024704,0.77616,0.010016
+1266,403.348,2.47925,1.07533,0.011808,0.238048,0.005888,0.005472,0.007072,0.01392,0.014144,0.770176,0.0088
+1267,433.21,2.30835,1.06496,0.010272,0.234912,0.004832,0.005984,0.007456,0.013024,0.014336,0.765056,0.009088
+1268,318.161,3.14307,1.09363,0.011328,0.254944,0.006112,0.00592,0.0064,0.014016,0.01456,0.771264,0.009088
+1269,457.398,2.18628,1.06499,0.011808,0.235808,0.005792,0.00464,0.007968,0.012512,0.014336,0.76336,0.008768
+1270,398.599,2.50879,1.07638,0.01168,0.241952,0.005568,0.004992,0.00752,0.01296,0.014368,0.767744,0.0096
+1271,345.829,2.8916,1.14278,0.011616,0.303168,0.004864,0.005984,0.007392,0.012928,0.0144,0.772192,0.01024
+1272,462.825,2.16064,1.07066,0.010688,0.237536,0.005696,0.004544,0.008,0.01248,0.014336,0.767584,0.009792
+1273,428.407,2.33423,1.06902,0.010272,0.234752,0.004864,0.006144,0.006144,0.014112,0.01456,0.768,0.010176
+1274,366.369,2.72949,1.08525,0.01136,0.242592,0.006144,0.005792,0.006496,0.013728,0.014624,0.774464,0.010048
+1275,263.595,3.7937,1.09146,0.01024,0.239616,0.006144,0.005792,0.006496,0.013632,0.014464,0.780288,0.014784
+1276,434.589,2.30103,1.07619,0.010848,0.247232,0.005056,0.006016,0.006272,0.014304,0.014368,0.76304,0.009056
+1277,364.705,2.74194,1.07952,0.010688,0.24336,0.005664,0.004928,0.007616,0.012864,0.014336,0.770048,0.010016
+1278,475.505,2.10303,1.0679,0.011008,0.235648,0.006144,0.005952,0.006368,0.014304,0.014336,0.763904,0.01024
+1279,342.475,2.91992,1.07696,0.010496,0.247776,0.005664,0.004576,0.008032,0.012448,0.014432,0.763808,0.009728
+1280,417.065,2.39771,1.0688,0.011584,0.234176,0.00576,0.00448,0.008032,0.013696,0.014656,0.766432,0.009984
+1281,279.324,3.58008,1.07114,0.01024,0.237568,0.005696,0.004544,0.007552,0.012928,0.014336,0.769696,0.008576
+1282,504.123,1.98364,1.08339,0.010272,0.244736,0.005088,0.005952,0.006336,0.014272,0.0144,0.772096,0.01024
+1283,429.305,2.32935,1.07523,0.010528,0.239616,0.005728,0.004512,0.007776,0.012704,0.014336,0.77008,0.009952
+1284,333.768,2.99609,1.0792,0.01024,0.24576,0.005888,0.005472,0.006784,0.012768,0.0152,0.766944,0.010144
+1285,489.075,2.04468,1.07072,0.01152,0.238272,0.0056,0.004704,0.007872,0.012608,0.014336,0.765952,0.009856
+1286,408.701,2.44678,1.08237,0.01088,0.237248,0.004864,0.00608,0.007232,0.013248,0.014336,0.779328,0.009152
+1287,340.454,2.93726,1.12854,0.01088,0.302816,0.0056,0.004928,0.007616,0.012864,0.014336,0.759808,0.009696
+1288,455.769,2.19409,1.08749,0.011936,0.237056,0.00496,0.006112,0.006304,0.014208,0.014336,0.782336,0.01024
+1289,426.134,2.34668,1.07309,0.010912,0.233632,0.005856,0.00544,0.007072,0.012608,0.015136,0.772864,0.009568
+1290,290.291,3.44482,1.07923,0.011296,0.2488,0.006144,0.005824,0.006464,0.013824,0.014688,0.762016,0.010176
+1291,367.816,2.71875,1.08067,0.010304,0.24896,0.00496,0.006112,0.006208,0.013952,0.014624,0.765824,0.009728
+1292,339.157,2.94849,1.13862,0.01088,0.303136,0.006112,0.005952,0.006336,0.014336,0.014368,0.767872,0.009632
+1293,421.183,2.37427,1.0793,0.011296,0.238016,0.004832,0.005952,0.007328,0.013088,0.0144,0.775776,0.008608
+1294,428.273,2.33496,1.06944,0.01056,0.236992,0.00592,0.004864,0.008192,0.013472,0.014272,0.766624,0.008544
+1295,349.757,2.85913,1.0641,0.011808,0.2352,0.004896,0.006144,0.006304,0.013888,0.014496,0.761536,0.009824
+1296,396.285,2.52344,1.06771,0.0104,0.242208,0.00608,0.005472,0.00688,0.013728,0.014624,0.75952,0.0088
+1297,379.224,2.63696,1.09654,0.011104,0.264192,0.0056,0.00464,0.008,0.012512,0.015424,0.766176,0.008896
+1298,366.532,2.72827,1.07632,0.011744,0.238112,0.006144,0.005952,0.006336,0.014304,0.014272,0.769824,0.009632
+1299,335.93,2.97681,1.06714,0.011296,0.232416,0.00592,0.005472,0.00704,0.013376,0.0144,0.768736,0.00848
+1300,450.555,2.21948,1.11002,0.010368,0.277856,0.006048,0.004864,0.00768,0.012832,0.014304,0.765952,0.010112
+1301,435.837,2.29443,1.06906,0.010592,0.232768,0.004832,0.00608,0.007392,0.01312,0.014304,0.770048,0.00992
+1302,371.351,2.69287,1.06614,0.010176,0.241024,0.004864,0.006112,0.007328,0.013152,0.014336,0.759712,0.00944
+1303,338.261,2.9563,1.09568,0.010272,0.241184,0.0056,0.005088,0.007488,0.012992,0.014368,0.789536,0.009152
+1304,437.513,2.28564,1.09539,0.010112,0.231296,0.0056,0.004896,0.007648,0.012832,0.014336,0.79872,0.009952
+1305,265.01,3.77344,1.06086,0.01024,0.232608,0.00496,0.006144,0.006176,0.013856,0.014784,0.761856,0.01024
+1306,369.275,2.70801,1.10874,0.011008,0.270048,0.0056,0.004928,0.007744,0.012736,0.014336,0.77344,0.008896
+1307,354.264,2.82275,1.08342,0.01168,0.240224,0.006112,0.005472,0.006848,0.013536,0.015136,0.775552,0.008864
+1308,376.817,2.65381,1.06605,0.011744,0.231968,0.006144,0.005536,0.006752,0.014016,0.014368,0.76592,0.0096
+1309,452.847,2.20825,1.07174,0.010784,0.235136,0.004832,0.006048,0.007264,0.013184,0.0144,0.770016,0.01008
+1310,414.239,2.41406,1.0793,0.01024,0.237568,0.006144,0.005824,0.006464,0.013888,0.014272,0.774656,0.01024
+1311,321.81,3.10742,1.14579,0.010752,0.28512,0.006144,0.005696,0.006592,0.013344,0.014656,0.782496,0.020992
+1312,376.056,2.65918,1.09568,0.010272,0.263296,0.004992,0.006048,0.00624,0.014304,0.014336,0.767328,0.008864
+1313,337.23,2.96533,1.14339,0.01088,0.290784,0.006176,0.005664,0.006592,0.013472,0.014528,0.785056,0.01024
+1314,426.4,2.34521,1.06701,0.01024,0.237568,0.006176,0.005664,0.006592,0.013888,0.014208,0.762432,0.01024
+1315,373.11,2.68018,1.08986,0.010784,0.247776,0.005632,0.00464,0.008064,0.012448,0.014304,0.776192,0.010016
+1316,370.009,2.70264,1.07085,0.010272,0.235488,0.006144,0.005824,0.006464,0.014368,0.014304,0.768,0.009984
+1317,365.976,2.73242,1.08534,0.011392,0.26304,0.006144,0.00576,0.006528,0.013504,0.0144,0.754432,0.010144
+1318,342.704,2.91797,1.23443,0.010272,0.388928,0.005632,0.004768,0.007744,0.012736,0.015872,0.778752,0.009728
+1319,384.601,2.6001,1.0705,0.011424,0.236384,0.005568,0.004672,0.00784,0.01264,0.014336,0.767968,0.009664
+1320,381.449,2.62158,1.08861,0.011744,0.242208,0.005728,0.004512,0.008064,0.013536,0.01424,0.778752,0.009824
+1321,366.828,2.72607,1.07389,0.010944,0.237568,0.006144,0.005856,0.006432,0.0136,0.014112,0.76896,0.010272
+1322,434.543,2.30127,1.0673,0.01056,0.235488,0.005984,0.00544,0.007008,0.014176,0.014272,0.764128,0.01024
+1323,294.634,3.39404,1.07286,0.01088,0.239616,0.006144,0.005856,0.006432,0.013632,0.014496,0.766432,0.009376
+1324,456.939,2.18848,1.07059,0.012128,0.237344,0.005664,0.004864,0.006272,0.014272,0.0144,0.76592,0.009728
+1325,427.201,2.34082,1.07725,0.01024,0.244864,0.004992,0.006048,0.006272,0.014016,0.0144,0.767616,0.0088
+1326,390.84,2.55859,1.11405,0.011616,0.285344,0.006144,0.005568,0.00672,0.013632,0.014432,0.760416,0.010176
+1327,416.938,2.39844,1.06307,0.010848,0.230944,0.005632,0.005088,0.007456,0.013024,0.014336,0.765952,0.009792
+1328,424.984,2.35303,1.05072,0.010016,0.227904,0.005952,0.005504,0.006976,0.013472,0.013152,0.75776,0.009984
+1329,289.593,3.45312,1.06701,0.011264,0.242176,0.004832,0.00592,0.007744,0.012768,0.014304,0.75776,0.01024
+1330,415.5,2.40674,1.06067,0.01024,0.231424,0.006144,0.005504,0.006784,0.013568,0.014432,0.762528,0.010048
+1331,409.682,2.44092,1.10128,0.011456,0.273216,0.005728,0.004512,0.008096,0.012384,0.015488,0.760704,0.009696
+1332,437.327,2.28662,1.06256,0.01024,0.230432,0.005088,0.006048,0.00624,0.014336,0.014336,0.765952,0.009888
+1333,436.302,2.29199,1.07107,0.010272,0.234656,0.004928,0.006144,0.006144,0.014304,0.014368,0.770048,0.010208
+1334,406.995,2.45703,1.07379,0.010848,0.244,0.00608,0.005472,0.00688,0.013632,0.01424,0.762656,0.009984
+1335,396.438,2.52246,1.11616,0.010304,0.290144,0.004832,0.006016,0.007296,0.013184,0.016192,0.757952,0.01024
+1336,388.689,2.57275,1.06147,0.010688,0.229312,0.005664,0.00464,0.007904,0.013952,0.014464,0.766016,0.008832
+1337,361.263,2.76807,1.08339,0.011392,0.244192,0.0056,0.005056,0.007456,0.012992,0.014368,0.773408,0.008928
+1338,424.104,2.35791,1.0639,0.01056,0.230048,0.005664,0.004576,0.00816,0.013376,0.014432,0.768256,0.008832
+1339,411.08,2.43262,1.06576,0.010976,0.227392,0.006112,0.005888,0.0064,0.013792,0.014656,0.771296,0.009248
+1340,368.147,2.71631,1.05843,0.010336,0.23296,0.00512,0.005984,0.006304,0.01408,0.01424,0.759872,0.009536
+1341,387.219,2.58252,1.1288,0.00976,0.26096,0.006112,0.005504,0.006784,0.020448,0.029984,0.780288,0.00896
+1342,408.701,2.44678,1.08214,0.010912,0.24384,0.006144,0.005984,0.007392,0.013248,0.014336,0.771136,0.009152
+1343,371.62,2.69092,1.07216,0.011712,0.233152,0.004992,0.006112,0.006304,0.013984,0.014464,0.771776,0.009664
+1344,416.26,2.40234,1.07542,0.010432,0.229792,0.0056,0.004992,0.007584,0.012896,0.014368,0.78016,0.0096
+1345,443.674,2.25391,1.11837,0.010432,0.280544,0.005824,0.005472,0.007072,0.012352,0.015808,0.770688,0.010176
+1346,417.108,2.39746,1.06906,0.01024,0.233472,0.006144,0.005696,0.006592,0.014016,0.014656,0.768,0.01024
+1347,280.933,3.55957,1.06413,0.011392,0.226208,0.005824,0.005472,0.007072,0.01232,0.014336,0.771968,0.009536
+1348,355.864,2.81006,1.07197,0.010944,0.238944,0.00496,0.006048,0.00624,0.014336,0.014336,0.765952,0.010208
+1349,460.432,2.17188,1.06557,0.010496,0.239168,0.004928,0.006112,0.006272,0.014208,0.014336,0.759904,0.010144
+1350,391.587,2.55371,1.07498,0.011328,0.234432,0.006144,0.0056,0.00672,0.013824,0.014432,0.77248,0.010016
+1351,416.684,2.3999,1.07315,0.010272,0.237536,0.00592,0.00544,0.007072,0.013376,0.014496,0.7688,0.01024
+1352,449.517,2.22461,1.06019,0.01024,0.23136,0.005632,0.004672,0.007968,0.014112,0.014688,0.761888,0.009632
+1353,307.093,3.25635,1.0689,0.010368,0.233472,0.006144,0.00592,0.006368,0.014048,0.014272,0.768352,0.009952
+1354,431.067,2.31982,1.07904,0.01024,0.237504,0.0056,0.004704,0.00784,0.01264,0.014336,0.776192,0.009984
+1355,445.993,2.24219,1.06518,0.009792,0.2304,0.006112,0.005472,0.006848,0.013536,0.014304,0.768832,0.009888
+1356,401.647,2.48975,1.0753,0.010688,0.244864,0.004992,0.00608,0.006272,0.014144,0.014464,0.763904,0.009888
+1357,418.472,2.38965,1.05334,0.01088,0.230848,0.004832,0.005984,0.006144,0.014112,0.014464,0.755808,0.010272
+1358,362.478,2.75879,1.07446,0.010464,0.233344,0.005952,0.005472,0.007008,0.013408,0.014304,0.774976,0.009536
+1359,304.898,3.27979,1.08861,0.011808,0.235392,0.004832,0.006016,0.007296,0.013184,0.014336,0.785568,0.010176
+1360,394.681,2.53369,1.08544,0.011392,0.238496,0.006144,0.005536,0.006752,0.014336,0.014368,0.778208,0.010208
+1361,422.268,2.36816,1.07299,0.010368,0.247808,0.006144,0.005664,0.006624,0.013376,0.014304,0.758752,0.009952
+1362,419.071,2.38623,1.06464,0.010592,0.231232,0.004288,0.005472,0.006816,0.013952,0.014144,0.768352,0.009792
+1363,390.393,2.56152,1.06637,0.011616,0.233856,0.0056,0.004928,0.007616,0.012864,0.014336,0.765952,0.0096
+1364,405.224,2.46777,1.07366,0.010688,0.23872,0.005056,0.006048,0.006272,0.014336,0.014304,0.769216,0.009024
+1365,303.003,3.30029,1.06253,0.010592,0.227328,0.004096,0.00576,0.006528,0.013824,0.014752,0.770048,0.0096
+1366,421.746,2.37109,1.07907,0.010272,0.240832,0.004896,0.006144,0.006176,0.014112,0.01424,0.772384,0.010016
+1367,356.484,2.80518,1.06845,0.010624,0.235488,0.006144,0.005504,0.006784,0.0136,0.014592,0.76576,0.009952
+1368,441.855,2.26318,1.06963,0.010848,0.228896,0.005696,0.004992,0.007552,0.012928,0.014336,0.775264,0.00912
+1369,390.989,2.55762,1.07725,0.011424,0.238432,0.005952,0.005472,0.007008,0.012288,0.015456,0.770976,0.01024
+1370,401.963,2.48779,1.06637,0.010336,0.233504,0.006112,0.006144,0.007296,0.013184,0.014336,0.765664,0.009792
+1371,427.915,2.33691,1.05043,0.01088,0.225312,0.006144,0.00576,0.006528,0.013568,0.015104,0.75744,0.009696
+1372,326.479,3.06299,1.26566,0.026048,0.38912,0.004736,0.00608,0.007456,0.023264,0.014112,0.785696,0.009152
+1373,382.161,2.6167,1.07901,0.011264,0.250016,0.004992,0.006112,0.006272,0.014048,0.014272,0.76208,0.009952
+1374,387.439,2.58105,1.07933,0.01024,0.239328,0.005632,0.004896,0.007648,0.012832,0.014336,0.775648,0.008768
+1375,350.325,2.85449,1.09542,0.011296,0.256768,0.005632,0.004832,0.007872,0.012608,0.018368,0.768064,0.009984
+1376,322.215,3.10352,1.13328,0.011232,0.284672,0.018432,0.006144,0.007712,0.012768,0.014336,0.768,0.009984
+1377,387.146,2.58301,1.09181,0.010304,0.2616,0.005696,0.005056,0.00752,0.01296,0.014336,0.765536,0.0088
+1378,430.071,2.3252,1.08954,0.011264,0.252928,0.00608,0.005472,0.00688,0.01392,0.014336,0.769952,0.008704
+1379,435.004,2.29883,1.07002,0.010496,0.23568,0.0048,0.005984,0.007328,0.013088,0.0144,0.768,0.01024
+1380,358.105,2.79248,1.06701,0.010272,0.241632,0.006176,0.0056,0.006656,0.014144,0.014496,0.758816,0.009216
+1381,429.891,2.32617,1.07398,0.011008,0.237248,0.0056,0.005024,0.007488,0.012928,0.0144,0.771456,0.008832
+1382,294.719,3.39307,1.07786,0.010848,0.241664,0.005856,0.00544,0.007104,0.013504,0.014752,0.768448,0.01024
+1383,412.986,2.42139,1.07162,0.010752,0.241632,0.005984,0.005472,0.006976,0.012352,0.014272,0.7656,0.008576
+1384,401.884,2.48828,1.08749,0.011936,0.254304,0.005824,0.005472,0.007008,0.012416,0.014432,0.765856,0.01024
+1385,389.428,2.56787,1.14131,0.012864,0.294016,0.004992,0.00608,0.007552,0.013024,0.014304,0.77824,0.01024
+1386,412.654,2.42334,1.0743,0.01168,0.239648,0.004832,0.005984,0.007328,0.013152,0.014336,0.767296,0.010048
+1387,423.841,2.35938,1.07315,0.01024,0.234944,0.004704,0.006112,0.0072,0.013056,0.014496,0.773696,0.008704
+1388,341.504,2.92822,1.08544,0.012064,0.238944,0.004992,0.00608,0.006272,0.014272,0.014336,0.779328,0.009152
+1389,341.276,2.93018,1.0847,0.012,0.258336,0.005664,0.004576,0.008096,0.01344,0.014336,0.758752,0.009504
+1390,370.813,2.69678,1.12499,0.01088,0.292896,0.005888,0.005472,0.00704,0.013536,0.01456,0.766016,0.008704
+1391,325.389,3.07324,1.0711,0.012032,0.237824,0.006144,0.005664,0.006624,0.013504,0.014432,0.76464,0.01024
+1392,387.512,2.58057,1.07069,0.010272,0.233408,0.0056,0.004672,0.007808,0.014048,0.0144,0.770656,0.009824
+1393,306.541,3.26221,1.0713,0.010432,0.240896,0.004864,0.006144,0.006176,0.013952,0.014464,0.76528,0.009088
+1394,319.75,3.12744,1.09398,0.010624,0.251872,0.005824,0.005472,0.007072,0.013504,0.014272,0.775104,0.01024
+1395,369.742,2.70459,1.13488,0.010528,0.301056,0.005888,0.005472,0.007072,0.01344,0.014944,0.76624,0.01024
+1396,445.411,2.24512,1.06864,0.011904,0.235936,0.006112,0.00576,0.006528,0.014048,0.014432,0.764096,0.009824
+1397,417.959,2.39258,1.09606,0.01072,0.250144,0.005728,0.004512,0.008192,0.013312,0.014528,0.779072,0.009856
+1398,361.837,2.76367,1.06902,0.010848,0.239744,0.006144,0.0056,0.006656,0.013504,0.014432,0.762496,0.0096
+1399,367.486,2.72119,1.05283,0.010848,0.231264,0.005536,0.005024,0.00752,0.01296,0.014336,0.755712,0.009632
+1400,274.936,3.63721,1.14483,0.01024,0.314688,0.004832,0.006112,0.007328,0.013152,0.014336,0.763936,0.010208
+1401,337.731,2.96094,1.09568,0.011296,0.252896,0.005728,0.004512,0.008032,0.012448,0.014336,0.776192,0.01024
+1402,350.085,2.85645,1.17613,0.010848,0.344032,0.005984,0.005472,0.006976,0.014144,0.014464,0.763968,0.01024
+1403,312.624,3.19873,1.08544,0.011712,0.256576,0.00576,0.00448,0.00816,0.01232,0.014336,0.762944,0.009152
+1404,352.011,2.84082,1.07725,0.012256,0.251328,0.004864,0.005984,0.007296,0.013216,0.014304,0.759104,0.008896
+1405,276.495,3.6167,1.18784,0.012288,0.344096,0.006112,0.005888,0.007616,0.013152,0.014304,0.775328,0.009056
+1406,324.153,3.08496,1.09571,0.011968,0.262272,0.0056,0.004832,0.007904,0.012576,0.01552,0.764768,0.010272
+1407,354.325,2.82227,1.0833,0.01104,0.241344,0.0056,0.00496,0.007584,0.012928,0.014304,0.775872,0.009664
+1408,429.891,2.32617,1.06995,0.01024,0.231808,0.005792,0.00496,0.007712,0.0128,0.014304,0.773696,0.00864
+1409,412.57,2.42383,1.08576,0.010752,0.247712,0.005728,0.004992,0.00752,0.01296,0.014336,0.772096,0.009664
+1410,395.443,2.52881,1.06544,0.010752,0.236672,0.004992,0.006112,0.006208,0.014112,0.014528,0.761856,0.010208
+1411,422.268,2.36816,1.05882,0.01024,0.23552,0.00608,0.005472,0.00688,0.013344,0.0144,0.757792,0.009088
+1412,404.344,2.47314,1.07491,0.010528,0.249568,0.004832,0.006048,0.007264,0.013216,0.014336,0.759488,0.009632
+1413,387.732,2.5791,1.0696,0.011008,0.2328,0.004832,0.00608,0.007232,0.012896,0.014496,0.77024,0.010016
+1414,374.543,2.66992,1.11142,0.018112,0.274752,0.005792,0.004448,0.008096,0.0136,0.0144,0.7624,0.009824
+1415,324.359,3.08301,1.14483,0.011904,0.307584,0.006144,0.005888,0.0064,0.013696,0.014496,0.769664,0.009056
+1416,382.589,2.61377,1.0848,0.01024,0.253536,0.005632,0.005024,0.007936,0.014208,0.014624,0.763904,0.009696
+1417,354.141,2.82373,1.09878,0.010304,0.2536,0.005728,0.0048,0.007872,0.01264,0.014304,0.780128,0.009408
+1418,396.208,2.52393,1.06269,0.010912,0.238976,0.004832,0.006048,0.0072,0.01328,0.014336,0.75744,0.009664
+1419,447.162,2.23633,1.05472,0.010272,0.230816,0.004832,0.005984,0.007328,0.013152,0.014336,0.757824,0.010176
+1420,387.072,2.5835,1.08064,0.012096,0.243808,0.005632,0.004704,0.007808,0.012672,0.014336,0.769856,0.009728
+1421,353.591,2.82812,1.0775,0.010688,0.235552,0.005632,0.005024,0.00752,0.01296,0.015424,0.775008,0.009696
+1422,442.237,2.26123,1.08074,0.011392,0.244608,0.006144,0.005632,0.006656,0.013824,0.014496,0.768288,0.009696
+1423,425.073,2.35254,1.11123,0.012288,0.27648,0.006144,0.005504,0.006784,0.0136,0.014432,0.766432,0.009568
+1424,412.903,2.42188,1.08774,0.010528,0.256,0.006016,0.005472,0.006944,0.013536,0.014496,0.764544,0.010208
+1425,411.493,2.43018,1.06291,0.011712,0.236096,0.005888,0.005472,0.00704,0.012512,0.014144,0.761056,0.008992
+1426,420.88,2.37598,1.06189,0.011264,0.241696,0.005888,0.005472,0.007008,0.013472,0.01424,0.752608,0.01024
+1427,383.377,2.6084,1.0769,0.010848,0.229376,0.006144,0.005856,0.006432,0.013568,0.014208,0.78064,0.009824
+1428,421.833,2.37061,1.05677,0.011456,0.234336,0.00576,0.005472,0.007136,0.013664,0.01312,0.75664,0.009184
+1429,379.329,2.63623,1.05882,0.01024,0.23552,0.006144,0.005728,0.00656,0.0136,0.014304,0.757888,0.008832
+1430,405.786,2.46436,1.11046,0.01072,0.280288,0.005728,0.0048,0.007712,0.0128,0.014336,0.763872,0.010208
+1431,381.733,2.61963,1.0752,0.011744,0.239968,0.0056,0.004832,0.007712,0.012768,0.014336,0.768,0.01024
+1432,412.82,2.42236,1.06003,0.01024,0.234944,0.004832,0.005984,0.007392,0.013088,0.014336,0.759552,0.009664
+1433,400.156,2.49902,1.06374,0.01104,0.231424,0.005984,0.004256,0.007904,0.012576,0.014336,0.765952,0.010272
+1434,373.859,2.6748,1.08854,0.011712,0.246112,0.0056,0.004864,0.007712,0.0128,0.014304,0.775776,0.009664
+1435,427.379,2.33984,1.06291,0.011392,0.234336,0.005632,0.00464,0.007904,0.012576,0.015616,0.761824,0.008992
+1436,462.511,2.16211,1.06506,0.01024,0.233472,0.005632,0.004608,0.007296,0.013184,0.014336,0.767776,0.008512
+1437,397.979,2.5127,1.07091,0.010464,0.237568,0.006144,0.005824,0.006464,0.013792,0.014496,0.766336,0.009824
+1438,427.112,2.34131,1.07107,0.010624,0.229344,0.006144,0.005888,0.0064,0.013952,0.014048,0.774816,0.009856
+1439,423.841,2.35938,1.0607,0.01216,0.23152,0.0056,0.004672,0.007872,0.012608,0.014336,0.761856,0.01008
+1440,396.976,2.51904,1.10858,0.010816,0.267808,0.005696,0.005024,0.00752,0.01296,0.01424,0.775712,0.0088
+1441,413.236,2.41992,1.07091,0.012288,0.232864,0.004832,0.006016,0.007264,0.013056,0.014464,0.77008,0.010048
+1442,451.002,2.21729,1.04931,0.010592,0.233824,0.005888,0.00544,0.007072,0.013664,0.014496,0.748064,0.010272
+1443,388.91,2.57129,1.08163,0.010688,0.23376,0.006144,0.006016,0.006272,0.013856,0.0144,0.780704,0.009792
+1444,406.188,2.46191,1.0711,0.011712,0.229952,0.005664,0.004576,0.007968,0.013568,0.014496,0.774112,0.009056
+1445,384.457,2.60107,1.06461,0.024576,0.228928,0.0056,0.005088,0.007392,0.01312,0.014304,0.755712,0.009888
+1446,296.941,3.36768,1.18374,0.024288,0.329856,0.0056,0.0048,0.014336,0.013568,0.01456,0.767616,0.00912
+1447,423.578,2.36084,1.06858,0.01152,0.231968,0.005664,0.0048,0.007712,0.012768,0.014336,0.770048,0.00976
+1448,393.846,2.53906,1.0993,0.01024,0.266176,0.00576,0.004544,0.008032,0.012448,0.014336,0.768,0.00976
+1449,387.439,2.58105,1.06547,0.010816,0.233472,0.00608,0.005472,0.00688,0.013632,0.014336,0.76464,0.010144
+1450,417.278,2.39648,1.05232,0.0104,0.229056,0.0056,0.0048,0.007808,0.013728,0.01328,0.75776,0.009888
+1451,382.161,2.6167,1.08896,0.01024,0.24576,0.006144,0.00592,0.0064,0.013792,0.014496,0.776448,0.00976
+1452,398.444,2.50977,1.17146,0.01136,0.32656,0.005728,0.004512,0.008064,0.020608,0.014336,0.771168,0.00912
+1453,412.57,2.42383,1.0711,0.01024,0.231072,0.005632,0.00496,0.007552,0.01296,0.014304,0.774144,0.01024
+1454,347.236,2.87988,1.07283,0.011328,0.238528,0.006144,0.005536,0.006752,0.013504,0.014368,0.766752,0.00992
+1455,411.41,2.43066,1.07194,0.011072,0.228384,0.005088,0.005984,0.006304,0.014336,0.014336,0.77616,0.010272
+1456,402.358,2.48535,1.0769,0.010624,0.244832,0.004896,0.004192,0.007744,0.012736,0.014336,0.767616,0.00992
+1457,397.516,2.51562,1.0615,0.010912,0.23344,0.005632,0.004608,0.008,0.01248,0.015712,0.761824,0.008896
+1458,382.947,2.61133,1.06291,0.012128,0.229568,0.005632,0.004576,0.007328,0.013152,0.014336,0.767072,0.00912
+1459,430.252,2.32422,1.07376,0.010848,0.238656,0.005056,0.006016,0.006272,0.013888,0.0144,0.769664,0.00896
+1460,400.548,2.49658,1.07475,0.012128,0.232928,0.004832,0.006112,0.007296,0.013184,0.014368,0.774112,0.009792
+1461,397.516,2.51562,1.05485,0.011008,0.228352,0.00512,0.006016,0.006272,0.014112,0.014368,0.76,0.0096
+1462,406.188,2.46191,1.10205,0.01168,0.279104,0.005664,0.004832,0.007776,0.012736,0.015392,0.755904,0.00896
+1463,393.468,2.5415,1.06422,0.01136,0.235424,0.004896,0.00432,0.007616,0.012864,0.014368,0.763872,0.009504
+1464,279.514,3.57764,1.07962,0.01056,0.229376,0.005984,0.005536,0.006912,0.014368,0.014304,0.782336,0.01024
+1465,385.978,2.59082,1.06298,0.010496,0.239712,0.005856,0.005472,0.00704,0.012352,0.014336,0.75776,0.009952
+1466,383.664,2.60645,1.0711,0.01168,0.23392,0.005536,0.004864,0.006336,0.014176,0.014304,0.771424,0.008864
+1467,369.542,2.70605,1.10195,0.010624,0.286112,0.004672,0.004288,0.007872,0.012416,0.015776,0.750176,0.010016
+1468,443.194,2.25635,1.04387,0.010272,0.231232,0.0056,0.0048,0.007776,0.012704,0.014336,0.74752,0.009632
+1469,408.946,2.44531,1.06083,0.011424,0.232288,0.006144,0.005696,0.006592,0.013408,0.014496,0.760576,0.010208
+1470,267.993,3.73145,1.12794,0.010624,0.286688,0.005632,0.004608,0.008032,0.013536,0.014432,0.77472,0.009664
+1471,427.468,2.33936,1.0825,0.010368,0.249856,0.006144,0.006048,0.007296,0.013056,0.01456,0.765504,0.009664
+1472,298.76,3.34717,1.09037,0.01088,0.247264,0.004832,0.006144,0.007488,0.012992,0.014336,0.77776,0.008672
+1473,419.414,2.38428,1.06013,0.011776,0.236064,0.00592,0.005472,0.007008,0.012288,0.014336,0.757664,0.0096
+1474,402.991,2.48145,1.05238,0.01024,0.230464,0.005056,0.006016,0.006272,0.014016,0.01456,0.755808,0.009952
+1475,294.168,3.39941,1.08544,0.01024,0.253952,0.006016,0.005472,0.006944,0.012288,0.015392,0.76608,0.009056
+1476,381.378,2.62207,1.08218,0.011072,0.245184,0.004832,0.005984,0.007392,0.013088,0.014336,0.771072,0.009216
+1477,412.155,2.42627,1.07459,0.0104,0.253696,0.0056,0.004736,0.007776,0.012704,0.014336,0.755712,0.009632
+1478,439.674,2.27441,1.06848,0.01024,0.237568,0.005728,0.004512,0.008032,0.012576,0.015392,0.764768,0.009664
+1479,384.096,2.60352,1.06346,0.010784,0.228992,0.005664,0.00496,0.007584,0.012896,0.01568,0.76816,0.008736
+1480,390.691,2.55957,1.06291,0.011872,0.239968,0.005568,0.004736,0.008064,0.013856,0.014528,0.755264,0.009056
+1481,392.337,2.54883,1.06925,0.010432,0.235072,0.0056,0.005088,0.007488,0.013024,0.014336,0.767968,0.01024
+1482,415.079,2.40918,1.06976,0.010144,0.24656,0.006176,0.005664,0.006592,0.013984,0.014656,0.756992,0.008992
+1483,379.611,2.63428,1.06835,0.01152,0.233728,0.004832,0.00592,0.007392,0.013056,0.014368,0.768,0.009536
+1484,436.767,2.28955,1.07776,0.010752,0.229376,0.006144,0.0056,0.006688,0.025632,0.014944,0.768384,0.01024
+1485,449.517,2.22461,1.04954,0.010528,0.232096,0.006176,0.00576,0.006496,0.013984,0.014464,0.749792,0.01024
+1486,393.241,2.54297,1.06285,0.011616,0.234144,0.006144,0.00592,0.006368,0.01392,0.0144,0.76016,0.010176
+1487,390.095,2.56348,1.14154,0.010688,0.285024,0.005888,0.005472,0.00704,0.024352,0.014592,0.77824,0.01024
+1488,371.149,2.69434,1.06963,0.010848,0.243712,0.005664,0.004576,0.007936,0.013728,0.014368,0.758592,0.010208
+1489,415.5,2.40674,1.04861,0.012128,0.231584,0.006144,0.005792,0.006496,0.013696,0.014336,0.749824,0.008608
+1490,471.889,2.11914,1.05082,0.010208,0.23088,0.004928,0.006144,0.00624,0.014176,0.014432,0.753632,0.010176
+1491,423.228,2.36279,1.07107,0.010784,0.241632,0.005984,0.00544,0.007008,0.012288,0.014336,0.763904,0.009696
+1492,435.282,2.29736,1.05267,0.01024,0.228352,0.004896,0.00432,0.007616,0.012864,0.014336,0.759808,0.01024
+1493,369.342,2.70752,1.14474,0.010784,0.31536,0.005696,0.004544,0.008032,0.012448,0.026592,0.751616,0.009664
+1494,385.615,2.59326,1.12512,0.01104,0.291936,0.006112,0.005024,0.007488,0.012992,0.014336,0.766976,0.009216
+1495,411.824,2.42822,1.06061,0.01056,0.230848,0.00464,0.00512,0.007168,0.012288,0.014464,0.765824,0.009696
+1496,385.978,2.59082,1.05014,0.010336,0.23072,0.004832,0.00608,0.007232,0.013248,0.014336,0.753664,0.009696
+1497,388.467,2.57422,1.05971,0.01088,0.233728,0.005664,0.004576,0.007904,0.012576,0.014336,0.760864,0.009184
+1498,431.34,2.31836,1.04813,0.012128,0.229216,0.0056,0.00496,0.007616,0.012864,0.014336,0.751616,0.009792
+1499,299.547,3.33838,1.05091,0.010528,0.229344,0.006144,0.0056,0.006688,0.013536,0.01424,0.756256,0.008576
+1500,423.141,2.36328,1.06086,0.01024,0.24576,0.005696,0.004544,0.007968,0.012512,0.014368,0.749536,0.01024
+1501,411.41,2.43066,1.06198,0.011616,0.228,0.0056,0.00464,0.007904,0.012576,0.014336,0.76768,0.009632
+1502,409.436,2.44238,1.06442,0.012032,0.245632,0.00448,0.005504,0.006784,0.013664,0.014368,0.75216,0.009792
+1503,413.905,2.41602,1.06138,0.010784,0.233408,0.005632,0.00464,0.007904,0.012576,0.014336,0.762976,0.00912
+1504,453.298,2.20605,1.05498,0.01072,0.237568,0.00592,0.005472,0.00704,0.013472,0.013152,0.751616,0.010016
+1505,328.574,3.04346,1.06291,0.01152,0.237696,0.004832,0.006048,0.007168,0.013056,0.014624,0.757728,0.01024
+1506,398.289,2.51074,1.05658,0.010592,0.234816,0.004832,0.00608,0.007328,0.013152,0.014336,0.75568,0.00976
+1507,394.149,2.53711,1.05261,0.010272,0.231296,0.0056,0.004736,0.007904,0.012576,0.014336,0.755712,0.010176
+1508,425.691,2.34912,1.05677,0.011456,0.231776,0.004832,0.005888,0.007648,0.012864,0.014368,0.757696,0.01024
+1509,435.652,2.29541,1.05139,0.010368,0.227296,0.004896,0.006112,0.006304,0.014176,0.014336,0.75776,0.010144
+1510,443.674,2.25391,1.06086,0.010272,0.2304,0.005088,0.006016,0.006304,0.013984,0.0144,0.765568,0.008832
+1511,430.705,2.32178,1.07117,0.010496,0.231136,0.005664,0.004896,0.007616,0.012864,0.014336,0.774144,0.010016
+1512,389.206,2.56934,1.07267,0.011648,0.239968,0.0056,0.004928,0.007584,0.012896,0.014336,0.765952,0.00976
+1513,411.08,2.43262,1.05738,0.01056,0.235808,0.006144,0.005472,0.006816,0.013728,0.014848,0.75376,0.01024
+1514,435.559,2.2959,1.05472,0.01024,0.233472,0.005632,0.004608,0.008064,0.013856,0.014368,0.755808,0.008672
+1515,423.315,2.3623,1.0471,0.009792,0.2304,0.005856,0.005472,0.007104,0.012288,0.01536,0.750592,0.01024
+1516,411.576,2.42969,1.06365,0.010976,0.232448,0.00512,0.005952,0.006336,0.014112,0.014176,0.765632,0.008896
+1517,454.001,2.20264,1.04858,0.01024,0.231424,0.005984,0.005472,0.007008,0.013344,0.014432,0.75168,0.008992
+1518,439.296,2.27637,1.15696,0.010368,0.304448,0.01696,0.006144,0.007616,0.021088,0.0256,0.754656,0.01008
+1519,400.626,2.49609,1.05366,0.010656,0.236,0.006016,0.005472,0.006944,0.012416,0.01552,0.751872,0.008768
+1520,446.674,2.23877,1.05584,0.010272,0.23248,0.005056,0.006016,0.006272,0.014368,0.014336,0.75728,0.00976
+1521,471.346,2.12158,1.04698,0.010688,0.229344,0.005856,0.005472,0.007008,0.012416,0.014336,0.753408,0.008448
+1522,415.838,2.40479,1.0608,0.01024,0.23552,0.005952,0.005472,0.007008,0.01344,0.014208,0.758784,0.010176
+1523,418.13,2.3916,1.05222,0.010272,0.23488,0.004832,0.006016,0.00736,0.013152,0.014304,0.751616,0.009792
+1524,351.83,2.84229,1.05882,0.010112,0.229216,0.0056,0.004928,0.007744,0.012736,0.014336,0.763904,0.01024
+1525,402.753,2.48291,1.11043,0.01072,0.282688,0.005568,0.004832,0.007712,0.0128,0.014304,0.761856,0.009952
+1526,425.249,2.35156,1.06694,0.010272,0.2328,0.004864,0.006016,0.007264,0.013216,0.014336,0.768,0.010176
+1527,440.146,2.27197,1.04451,0.010272,0.229376,0.005632,0.004608,0.008,0.01248,0.014336,0.751136,0.008672
+1528,415.922,2.4043,1.08954,0.011904,0.244096,0.005984,0.005472,0.006976,0.013888,0.014784,0.776192,0.01024
+1529,428.901,2.33154,1.04141,0.010656,0.232032,0.005792,0.005472,0.007072,0.012384,0.014464,0.743296,0.01024
+1530,405.705,2.46484,1.04448,0.01024,0.229376,0.00608,0.005472,0.00688,0.0136,0.014272,0.749824,0.008736
+1531,285.994,3.49658,1.07725,0.011936,0.25024,0.00576,0.004448,0.008032,0.012448,0.014336,0.761088,0.00896
+1532,424.192,2.35742,1.06518,0.010816,0.229376,0.005504,0.004736,0.007168,0.013152,0.014336,0.770208,0.009888
+1533,399.142,2.50537,1.06157,0.010912,0.23536,0.005792,0.004608,0.007936,0.012544,0.014368,0.761056,0.008992
+1534,405.786,2.46436,1.06499,0.010272,0.255008,0.00512,0.005952,0.006304,0.014304,0.014368,0.743424,0.01024
+1535,426.223,2.34619,1.05949,0.010944,0.231392,0.006048,0.00544,0.006944,0.013344,0.014592,0.760544,0.01024
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..1aa2fd7
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_100000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,346.53,2.92138,1.3472,0.0110664,0.249584,0.00507469,0.00558628,0.00727044,1.0582,0.0104166
+max_1024,423.228,5.88037,1.71782,0.028128,0.608128,0.020576,0.022304,0.024544,1.16941,0.026944
+min_1024,170.057,2.36279,1.23142,0.009088,0.223936,0.004064,0.004544,0.006112,0.960512,0.00912
+512,369.675,2.70508,1.25808,0.01088,0.237568,0.005568,0.004704,0.007872,0.98112,0.010368
+513,348.952,2.86572,1.29411,0.01152,0.281088,0.004352,0.006144,0.006272,0.974528,0.010208
+514,315.222,3.17236,1.24016,0.010336,0.241216,0.004576,0.005824,0.006432,0.960512,0.011264
+515,380.386,2.62891,1.23142,0.010816,0.22896,0.004512,0.00592,0.006368,0.964608,0.01024
+516,392.638,2.54688,1.27443,0.010752,0.25712,0.004928,0.00544,0.007008,0.978944,0.01024
+517,394.225,2.53662,1.23984,0.010432,0.229984,0.005888,0.00544,0.007104,0.970752,0.01024
+518,371.823,2.68945,1.2329,0.010368,0.22848,0.004864,0.005504,0.006816,0.966592,0.010272
+519,309.834,3.22754,1.27802,0.010624,0.23664,0.004928,0.005472,0.00688,1.00349,0.009984
+520,372.635,2.68359,1.24314,0.011936,0.231808,0.005504,0.004704,0.007936,0.971008,0.01024
+521,364.802,2.74121,1.24512,0.011808,0.235296,0.0048,0.005664,0.006624,0.970688,0.01024
+522,381.485,2.62134,1.24224,0.011392,0.230304,0.005408,0.0048,0.007712,0.972416,0.010208
+523,382.161,2.6167,1.2649,0.01168,0.228992,0.004992,0.005536,0.006848,0.996544,0.010304
+524,340.086,2.94043,1.25542,0.01024,0.231424,0.005216,0.005024,0.007648,0.985632,0.01024
+525,353.927,2.82544,1.2736,0.011488,0.244512,0.00592,0.005504,0.007008,0.988896,0.010272
+526,342.962,2.91577,1.26634,0.010944,0.253952,0.005824,0.005472,0.007104,0.972832,0.010208
+527,380.386,2.62891,1.24906,0.011296,0.239712,0.004992,0.005792,0.006496,0.9704,0.010368
+528,384.926,2.5979,1.2439,0.010944,0.239776,0.005568,0.00576,0.007104,0.964448,0.010304
+529,303.071,3.29956,1.28205,0.010432,0.245568,0.004096,0.006176,0.007232,0.998304,0.01024
+530,352.102,2.84009,1.25949,0.010368,0.23728,0.004704,0.005728,0.00656,0.984672,0.010176
+531,335.38,2.98169,1.26157,0.011776,0.24832,0.00608,0.005952,0.0064,0.9728,0.01024
+532,347.737,2.87573,1.26362,0.01024,0.243712,0.005376,0.004864,0.00784,0.981344,0.01024
+533,365.453,2.73633,1.25354,0.0104,0.243744,0.00528,0.00496,0.007584,0.971328,0.01024
+534,323.922,3.08716,1.25584,0.011008,0.238656,0.005056,0.005824,0.006464,0.978528,0.010304
+535,317.077,3.15381,1.2719,0.010336,0.247552,0.004352,0.00608,0.007328,0.985984,0.010272
+536,289.123,3.45874,1.28509,0.010784,0.250336,0.005856,0.005536,0.007008,0.995328,0.01024
+537,352.799,2.83447,1.26208,0.01072,0.241664,0.005152,0.00512,0.007488,0.981664,0.010272
+538,324.23,3.08423,1.42086,0.01024,0.395264,0.005408,0.004832,0.007712,0.98704,0.010368
+539,340.086,2.94043,1.27782,0.011584,0.2624,0.004544,0.00608,0.00784,0.974784,0.010592
+540,268.661,3.72217,1.32237,0.011296,0.27936,0.004256,0.006144,0.00736,1.00368,0.010272
+541,357.636,2.79614,1.26362,0.011264,0.25248,0.004544,0.005952,0.006336,0.9728,0.01024
+542,349.697,2.85962,1.27014,0.010752,0.250976,0.00496,0.0056,0.006752,0.980672,0.010432
+543,325.622,3.07104,1.27488,0.01072,0.246272,0.004096,0.006144,0.00752,0.989856,0.010272
+544,367.025,2.72461,1.26029,0.01104,0.247776,0.004096,0.006144,0.00752,0.973472,0.01024
+545,267.747,3.73486,1.25542,0.011392,0.248704,0.005376,0.004864,0.00768,0.967168,0.01024
+546,354.939,2.81738,1.26202,0.010688,0.258048,0.005376,0.004864,0.007712,0.965088,0.01024
+547,326.661,3.06128,1.36058,0.010976,0.323552,0.006016,0.005536,0.00688,0.997376,0.01024
+548,382.661,2.61328,1.24272,0.010752,0.23552,0.00592,0.005856,0.007808,0.966688,0.010176
+549,356.546,2.80469,1.26886,0.01136,0.243904,0.004832,0.005824,0.006464,0.985088,0.011392
+550,311.578,3.20947,1.2823,0.010496,0.243424,0.004384,0.006144,0.007808,0.999808,0.01024
+551,335.655,2.97925,1.30458,0.011584,0.28128,0.004256,0.005984,0.007968,0.983264,0.01024
+552,306.449,3.26318,1.26813,0.010656,0.249728,0.004224,0.006144,0.0072,0.979936,0.01024
+553,372.431,2.68506,1.26157,0.010752,0.24784,0.005824,0.005504,0.00704,0.974336,0.010272
+554,338.764,2.9519,1.26362,0.01152,0.242432,0.004192,0.006048,0.007552,0.981632,0.01024
+555,363.121,2.75391,1.25792,0.010048,0.238208,0.00512,0.005152,0.00816,0.980992,0.01024
+556,339.382,2.94653,1.26938,0.010656,0.260032,0.004128,0.006144,0.007648,0.970368,0.0104
+557,296.79,3.36938,1.28787,0.01024,0.256,0.005376,0.004864,0.007648,0.993504,0.01024
+558,367.948,2.71777,1.24899,0.0104,0.239616,0.004256,0.005984,0.007392,0.97104,0.010304
+559,287.984,3.47241,1.26566,0.011328,0.25184,0.00512,0.0056,0.006688,0.974848,0.01024
+560,366.861,2.72583,1.25091,0.011712,0.238144,0.005376,0.004864,0.007712,0.973024,0.01008
+561,307.3,3.25415,1.25498,0.010688,0.24112,0.00464,0.005856,0.006432,0.975968,0.010272
+562,314.038,3.18433,1.26909,0.010592,0.24896,0.004928,0.005472,0.006912,0.981056,0.011168
+563,332.981,3.00317,1.25891,0.011456,0.240544,0.005472,0.005856,0.007104,0.978272,0.010208
+564,377.546,2.64868,1.25677,0.01056,0.24496,0.004864,0.005536,0.006752,0.9728,0.011296
+565,371.082,2.69482,1.27184,0.01232,0.237792,0.004384,0.006016,0.00752,0.993312,0.010496
+566,267.765,3.73462,1.2687,0.011008,0.248032,0.005664,0.004672,0.008032,0.981056,0.01024
+567,368.081,2.7168,1.25782,0.010592,0.244992,0.004896,0.005632,0.006624,0.974848,0.01024
+568,292.279,3.42139,1.27706,0.011424,0.254816,0.005248,0.004992,0.007584,0.982688,0.010304
+569,343.509,2.91113,1.26982,0.011232,0.245728,0.004128,0.006144,0.007712,0.984896,0.009984
+570,334.996,2.98511,1.29843,0.01024,0.257888,0.004256,0.006144,0.007168,1.0025,0.01024
+571,294.464,3.396,1.26774,0.01168,0.249472,0.00496,0.005696,0.00672,0.978976,0.01024
+572,268.01,3.7312,1.33418,0.011168,0.313344,0.005376,0.004864,0.008128,0.981056,0.01024
+573,348.863,2.86646,1.26771,0.011808,0.245408,0.00496,0.005504,0.006752,0.98304,0.01024
+574,317.151,3.15308,1.33354,0.010528,0.291872,0.005056,0.005856,0.006496,1.00349,0.01024
+575,297.329,3.36328,1.27408,0.010496,0.251456,0.00448,0.006016,0.006272,0.985088,0.010272
+576,312.672,3.19824,1.2512,0.010432,0.239616,0.0056,0.004704,0.008064,0.972704,0.01008
+577,296.125,3.37695,1.27549,0.011584,0.272608,0.004576,0.00592,0.006368,0.964032,0.0104
+578,336.096,2.97534,1.26634,0.010912,0.253952,0.00528,0.00496,0.007616,0.973376,0.01024
+579,288.593,3.46509,1.26362,0.01152,0.250528,0.004192,0.006144,0.0072,0.973792,0.01024
+580,358.105,2.79248,1.25539,0.01024,0.245792,0.005728,0.005504,0.007136,0.97056,0.010432
+581,296.232,3.37573,1.3745,0.010528,0.356096,0.004352,0.006176,0.00768,0.979424,0.01024
+582,369.375,2.70728,1.2551,0.010592,0.241696,0.005536,0.004704,0.007936,0.97424,0.0104
+583,316.293,3.16162,1.29395,0.01136,0.256928,0.005536,0.004704,0.008,0.997024,0.0104
+584,357.698,2.79565,1.26416,0.010752,0.241184,0.004608,0.005856,0.006432,0.985088,0.01024
+585,361.199,2.76855,1.25674,0.011456,0.236352,0.005792,0.005504,0.007104,0.980352,0.010176
+586,291.655,3.42871,1.27171,0.01184,0.249504,0.004896,0.005472,0.006816,0.982912,0.010272
+587,350.715,2.85132,1.2615,0.010464,0.24784,0.005952,0.005472,0.006848,0.974656,0.010272
+588,322.799,3.0979,1.28006,0.010336,0.24368,0.005376,0.004864,0.00768,0.997888,0.01024
+589,356.36,2.80615,1.27834,0.011168,0.24576,0.005504,0.004768,0.00784,0.992608,0.010688
+590,332.306,3.00928,1.29437,0.011328,0.263104,0.005184,0.005056,0.007968,0.991456,0.010272
+591,310.939,3.21606,1.27011,0.010784,0.243712,0.005664,0.004704,0.007968,0.986944,0.010336
+592,333.225,3.00098,1.28755,0.012224,0.2592,0.004928,0.0056,0.006816,0.988544,0.01024
+593,311.934,3.20581,1.26102,0.011616,0.248192,0.004384,0.00608,0.006208,0.97424,0.010304
+594,377.477,2.64917,1.25578,0.010848,0.235488,0.005824,0.005568,0.00704,0.980832,0.010176
+595,290.703,3.43994,1.26154,0.010944,0.249856,0.005248,0.004992,0.007648,0.972608,0.01024
+596,379.505,2.63501,1.28755,0.01024,0.237376,0.004288,0.00608,0.006272,1.01328,0.010016
+597,289.675,3.45215,1.38051,0.0104,0.329152,0.004672,0.005856,0.006432,1.01354,0.010464
+598,340.284,2.93872,1.27603,0.010368,0.248928,0.004928,0.00576,0.006624,0.989184,0.01024
+599,356.857,2.80225,1.28355,0.012448,0.247264,0.00464,0.006176,0.007648,0.9952,0.010176
+600,323.36,3.09253,1.25747,0.011936,0.242016,0.005312,0.004928,0.007712,0.975424,0.010144
+601,336.676,2.97021,1.25952,0.011712,0.244256,0.004192,0.00608,0.007232,0.975808,0.01024
+602,278.129,3.59546,1.27069,0.010944,0.239008,0.0048,0.005632,0.006656,0.99328,0.010368
+603,360.088,2.7771,1.30016,0.010272,0.238848,0.004864,0.005792,0.006464,1.02362,0.010304
+604,291.116,3.43506,1.28614,0.011872,0.247616,0.004704,0.005792,0.006528,0.999392,0.01024
+605,379.365,2.63599,1.25795,0.01072,0.23552,0.005184,0.005056,0.00736,0.983872,0.01024
+606,339.129,2.94873,1.31405,0.011872,0.28848,0.0048,0.00576,0.006528,0.985088,0.01152
+607,292.237,3.42188,1.30426,0.011648,0.26048,0.004352,0.006144,0.007296,1.00413,0.010208
+608,355.062,2.81641,1.2657,0.010272,0.2496,0.004352,0.006048,0.006272,0.978912,0.01024
+609,314.448,3.18018,1.27808,0.0112,0.239616,0.005408,0.004832,0.007808,0.998912,0.010304
+610,330.509,3.02563,1.2609,0.010368,0.243584,0.006144,0.006048,0.007392,0.976992,0.010368
+611,317.224,3.15234,1.27565,0.010272,0.245728,0.005152,0.005088,0.007616,0.991584,0.010208
+612,327.68,3.05176,1.31168,0.011232,0.26576,0.004576,0.005856,0.006432,0.992384,0.02544
+613,269.279,3.71362,1.27814,0.0104,0.249856,0.005472,0.004768,0.007776,0.9896,0.010272
+614,379.049,2.63818,1.26141,0.01056,0.241664,0.00592,0.005952,0.00656,0.980512,0.01024
+615,328.205,3.04688,1.28531,0.01136,0.252832,0.004192,0.00608,0.007296,0.993344,0.010208
+616,318.136,3.14331,1.27334,0.011904,0.247616,0.004672,0.005728,0.00656,0.986464,0.0104
+617,339.72,2.9436,1.35168,0.012288,0.325152,0.004576,0.006144,0.007424,0.985856,0.01024
+618,330.03,3.03003,1.25312,0.011616,0.240128,0.004352,0.006048,0.006272,0.974528,0.010176
+619,322.089,3.10474,1.29725,0.011136,0.245568,0.005696,0.004704,0.00784,1.01184,0.010464
+620,307.461,3.25244,1.27098,0.011872,0.248224,0.004128,0.006112,0.007552,0.981632,0.011456
+621,343.942,2.90747,1.30253,0.012288,0.239008,0.004704,0.00544,0.006848,1.02512,0.00912
+622,280.318,3.56738,1.36829,0.010432,0.357632,0.004864,0.005952,0.006336,0.9728,0.010272
+623,343.567,2.91064,1.2863,0.010336,0.243296,0.004544,0.005856,0.0064,1.00557,0.010304
+624,321.305,3.1123,1.36477,0.011232,0.31952,0.005312,0.004928,0.007648,1.00586,0.010272
+625,306.862,3.25879,1.30944,0.011008,0.264192,0.005408,0.004832,0.007968,1.00579,0.01024
+626,323.105,3.09497,1.30445,0.010336,0.277888,0.004736,0.005632,0.006656,0.989024,0.010176
+627,278.45,3.59131,1.28205,0.011808,0.25648,0.004096,0.006144,0.007712,0.986592,0.009216
+628,324.128,3.08521,1.37402,0.011904,0.321504,0.004512,0.00592,0.018656,1.00109,0.010432
+629,296.425,3.37354,1.27376,0.010464,0.253792,0.005152,0.005088,0.007552,0.981408,0.010304
+630,337.369,2.96411,1.25946,0.010272,0.247776,0.004128,0.006144,0.007648,0.973248,0.01024
+631,302.981,3.30054,1.27181,0.01216,0.245056,0.004928,0.005696,0.006592,0.987136,0.01024
+632,263.646,3.79297,1.2823,0.010528,0.262112,0.005472,0.005984,0.006976,0.980992,0.01024
+633,334.613,2.98853,1.28512,0.010944,0.24608,0.004288,0.005952,0.007968,0.999648,0.01024
+634,341.049,2.93213,1.28211,0.010784,0.249504,0.004448,0.005984,0.006336,0.994784,0.010272
+635,267.206,3.74243,1.27539,0.01024,0.251104,0.004896,0.005632,0.006656,0.98672,0.010144
+636,273.322,3.65869,1.28016,0.0104,0.245408,0.004448,0.005984,0.006304,0.997376,0.01024
+637,248.831,4.0188,1.36659,0.020672,0.315552,0.016128,0.005632,0.007072,0.991296,0.01024
+638,328.047,3.04834,1.27699,0.01024,0.26336,0.004928,0.005632,0.006656,0.976064,0.010112
+639,278.943,3.58496,1.28202,0.01136,0.263072,0.005536,0.004704,0.00784,0.979136,0.010368
+640,313.629,3.18848,1.30867,0.011488,0.284544,0.004928,0.005952,0.006464,0.984928,0.010368
+641,205.55,4.86499,1.33098,0.010784,0.31104,0.004384,0.0056,0.006688,0.982112,0.010368
+642,302.087,3.3103,1.36592,0.010336,0.34816,0.005408,0.004832,0.018432,0.968416,0.010336
+643,245.431,4.07446,1.30458,0.012256,0.292768,0.004224,0.006144,0.007168,0.971776,0.01024
+644,297.178,3.36499,1.32515,0.011136,0.280544,0.004352,0.005888,0.007456,1.00544,0.010336
+645,225.625,4.43213,1.3463,0.011008,0.31696,0.004544,0.005856,0.006432,0.99088,0.010624
+646,255.696,3.91089,1.33629,0.011168,0.309312,0.005952,0.00544,0.00704,0.987136,0.01024
+647,310.68,3.21875,1.29181,0.011808,0.254432,0.005792,0.004704,0.007872,0.996896,0.010304
+648,297.329,3.36328,1.32666,0.011616,0.257952,0.004864,0.005536,0.006752,1.02954,0.0104
+649,288.126,3.4707,1.3183,0.01024,0.296,0.004992,0.00576,0.006592,0.984384,0.010336
+650,285.495,3.50269,1.30042,0.011968,0.27248,0.00432,0.00608,0.006272,0.988896,0.0104
+651,352.799,2.83447,1.28803,0.01056,0.251904,0.006144,0.005792,0.006496,0.996832,0.010304
+652,301.776,3.31372,1.31277,0.012064,0.264416,0.005408,0.004864,0.007744,1.00803,0.01024
+653,288.207,3.46973,1.28576,0.0104,0.26624,0.005504,0.004832,0.008096,0.980352,0.010336
+654,227.051,4.4043,1.30147,0.0112,0.286784,0.005376,0.004864,0.007744,0.975104,0.0104
+655,342.418,2.92041,1.29638,0.011712,0.270304,0.004704,0.00576,0.006528,0.987136,0.01024
+656,302.065,3.31055,1.36448,0.010688,0.342304,0.00528,0.004992,0.007744,0.9832,0.010272
+657,336.676,2.97021,1.26595,0.011104,0.24576,0.005728,0.005728,0.007008,0.980352,0.010272
+658,251.829,3.97095,1.32573,0.010912,0.290816,0.005824,0.005984,0.006624,0.995328,0.01024
+659,321.255,3.11279,1.31478,0.011296,0.256032,0.005024,0.00576,0.006592,1.01984,0.01024
+660,335.903,2.97705,1.29011,0.012064,0.26208,0.004384,0.006048,0.00624,0.989152,0.010144
+661,285.914,3.49756,1.30486,0.010528,0.253952,0.005888,0.005472,0.007104,1.01168,0.01024
+662,339.635,2.94434,1.29565,0.012128,0.252096,0.005184,0.005056,0.007712,1.0033,0.010176
+663,274.292,3.64575,1.34854,0.011232,0.309248,0.005824,0.005568,0.00704,0.98848,0.021152
+664,347.207,2.88013,1.31075,0.01024,0.274432,0.00544,0.006048,0.006944,0.997376,0.010272
+665,310.021,3.22559,1.28,0.011328,0.25488,0.00416,0.006112,0.007424,0.985888,0.010208
+666,364.51,2.74341,1.3032,0.010016,0.271168,0.004128,0.006144,0.007232,0.99424,0.010272
+667,332.657,3.0061,1.30454,0.01104,0.25728,0.004928,0.005472,0.006848,1.00874,0.01024
+668,398.211,2.51123,1.25933,0.010368,0.234592,0.004928,0.005472,0.006944,0.986784,0.01024
+669,345.101,2.89771,1.30662,0.012064,0.25552,0.0048,0.005856,0.006432,1.01171,0.01024
+670,399.415,2.50366,1.26771,0.01024,0.24736,0.004544,0.006144,0.007616,0.981568,0.01024
+671,380.174,2.63037,1.26285,0.01136,0.236448,0.005984,0.005472,0.006976,0.986368,0.01024
+672,367.75,2.71924,1.30662,0.011424,0.254816,0.005312,0.004928,0.007744,1.01216,0.01024
+673,394.149,2.53711,1.28682,0.010912,0.235808,0.00528,0.00496,0.00752,1.0121,0.01024
+674,347.03,2.88159,1.29434,0.011808,0.247808,0.004576,0.005856,0.006432,1.00762,0.01024
+675,382.696,2.61304,1.27392,0.010304,0.237568,0.004096,0.006144,0.00736,0.998208,0.01024
+676,387.475,2.58081,1.27798,0.011584,0.23616,0.00416,0.006144,0.007328,1.00234,0.010272
+677,375.711,2.66162,1.28,0.01024,0.249376,0.004608,0.005824,0.006464,0.993248,0.01024
+678,383.269,2.60913,1.27757,0.011296,0.234464,0.005728,0.004704,0.007808,1.00323,0.010336
+679,337.814,2.96021,1.27606,0.0104,0.23552,0.005952,0.005472,0.007008,1.00147,0.01024
+680,340.567,2.93628,1.2759,0.011264,0.239776,0.004928,0.005472,0.006848,0.997376,0.01024
+681,392.187,2.5498,1.26797,0.010656,0.236096,0.005184,0.005056,0.00752,0.993216,0.01024
+682,365.062,2.73926,1.27379,0.01056,0.248,0.005856,0.005504,0.007072,0.986624,0.010176
+683,387.916,2.57788,1.25984,0.01008,0.23584,0.004768,0.00576,0.006528,0.986688,0.010176
+684,366.631,2.72754,1.26205,0.01072,0.231456,0.005248,0.00496,0.007648,0.991776,0.01024
+685,324.693,3.07983,1.27805,0.011904,0.241792,0.004352,0.006176,0.006112,0.997376,0.010336
+686,358.199,2.79175,1.27542,0.010752,0.239168,0.004544,0.005856,0.006464,0.997344,0.011296
+687,382.161,2.6167,1.28992,0.01168,0.245888,0.004576,0.006144,0.006304,1.00525,0.01008
+688,357.573,2.79663,1.30771,0.011424,0.242528,0.004128,0.006144,0.007264,1.02493,0.011296
+689,385.942,2.59106,1.27168,0.011392,0.23232,0.005792,0.004544,0.007936,0.999136,0.01056
+690,345.596,2.89355,1.2863,0.0112,0.237568,0.005824,0.005536,0.007072,1.00762,0.011488
+691,351.981,2.84106,1.28637,0.010656,0.237088,0.004576,0.005888,0.0064,1.01158,0.010176
+692,321.331,3.11206,1.35683,0.01168,0.288608,0.004864,0.005536,0.006752,1.02806,0.011328
+693,349.488,2.86133,1.2824,0.010432,0.234784,0.004832,0.005536,0.006752,1.00966,0.0104
+694,378.348,2.64307,1.27181,0.011616,0.236192,0.0056,0.004704,0.007904,0.995552,0.01024
+695,348.625,2.86841,1.28611,0.011552,0.238304,0.005856,0.005472,0.00704,1.00762,0.010272
+696,388.91,2.57129,1.27632,0.01056,0.232128,0.00512,0.00512,0.007488,1.00563,0.010272
+697,350.145,2.85596,1.28736,0.011648,0.257984,0.004832,0.00528,0.006976,0.990336,0.010304
+698,337.203,2.96558,1.27866,0.010912,0.237088,0.004576,0.005856,0.006432,1.00352,0.010272
+699,392.6,2.54712,1.26874,0.01024,0.233472,0.005312,0.004928,0.00784,0.996864,0.01008
+700,327.654,3.052,1.2857,0.011456,0.243904,0.004768,0.005632,0.006624,1.0032,0.010112
+701,375.78,2.66113,1.26784,0.01136,0.231776,0.004672,0.00608,0.00624,0.997344,0.010368
+702,358.669,2.78809,1.29843,0.01024,0.24576,0.004224,0.006016,0.007616,1.01434,0.01024
+703,336.87,2.96851,1.31085,0.010592,0.26352,0.004768,0.00576,0.006528,1.00934,0.010336
+704,333.632,2.99731,1.29901,0.010816,0.25536,0.004736,0.006144,0.006144,1.00557,0.01024
+705,393.241,2.54297,1.29843,0.01024,0.237568,0.00528,0.00496,0.00768,1.02246,0.01024
+706,333.225,3.00098,1.34349,0.011744,0.259776,0.00496,0.005472,0.006848,1.04445,0.01024
+707,278.374,3.59229,1.28614,0.011456,0.240448,0.005856,0.005504,0.007072,1.00557,0.01024
+708,371.014,2.69531,1.28173,0.010272,0.23344,0.005632,0.004672,0.007904,1.0096,0.010208
+709,304.332,3.28589,1.34448,0.011232,0.303072,0.004192,0.00608,0.007264,1.0024,0.01024
+710,368.776,2.71167,1.29949,0.011584,0.23776,0.004608,0.005792,0.006496,1.02314,0.010112
+711,344.868,2.89966,1.3271,0.011936,0.233024,0.004896,0.005536,0.006752,1.04214,0.022816
+712,308.527,3.24121,1.28653,0.010624,0.235168,0.005504,0.005088,0.007616,1.01229,0.01024
+713,374.03,2.67358,1.2841,0.01024,0.239616,0.005472,0.004768,0.007808,1.00595,0.01024
+714,264.599,3.7793,1.32301,0.01024,0.275968,0.004608,0.006144,0.006176,1.00963,0.01024
+715,340.284,2.93872,1.29664,0.010752,0.241728,0.005632,0.004704,0.008,1.01558,0.01024
+716,357.199,2.79956,1.30253,0.011872,0.241184,0.004928,0.005632,0.00672,1.02195,0.01024
+717,385.76,2.59229,1.28614,0.010208,0.231456,0.005696,0.004704,0.00784,1.016,0.01024
+718,333.659,2.99707,1.32464,0.009792,0.262624,0.005824,0.005536,0.00704,1.02342,0.0104
+719,385.978,2.59082,1.31357,0.010176,0.260576,0.00448,0.006112,0.006304,1.01565,0.010272
+720,381.307,2.62256,1.28397,0.01024,0.233376,0.004192,0.006144,0.006144,1.0135,0.010368
+721,375.573,2.6626,1.34554,0.012288,0.298272,0.004832,0.006016,0.006272,1.00762,0.01024
+722,380.174,2.63037,1.28096,0.010592,0.240224,0.004096,0.006144,0.00736,1.0023,0.01024
+723,356.826,2.80249,1.28826,0.010304,0.233472,0.004096,0.006144,0.00736,1.01664,0.01024
+724,225.092,4.44263,1.30458,0.011776,0.239648,0.004576,0.005952,0.006336,1.02605,0.01024
+725,369.708,2.70483,1.29389,0.010816,0.235488,0.005632,0.005856,0.006944,1.01891,0.01024
+726,362.831,2.7561,1.28413,0.011264,0.236544,0.004096,0.006144,0.007456,1.00835,0.010272
+727,383.664,2.60645,1.28381,0.01024,0.245472,0.004384,0.00608,0.006272,1.00115,0.010208
+728,354.019,2.82471,1.29238,0.010816,0.246176,0.004128,0.006144,0.007264,1.00768,0.010176
+729,362.382,2.75952,1.30486,0.010464,0.233472,0.00592,0.005472,0.00704,1.03219,0.010304
+730,311.554,3.20972,1.36749,0.022528,0.279936,0.004736,0.005664,0.006624,1.03763,0.010368
+731,329.95,3.03076,1.27994,0.01024,0.24096,0.0048,0.00576,0.006528,1.00131,0.010336
+732,373.11,2.68018,1.29229,0.011936,0.227712,0.005888,0.00544,0.007072,1.024,0.01024
+733,350.265,2.85498,1.29229,0.011552,0.240352,0.005504,0.004736,0.007808,1.0119,0.010432
+734,388.799,2.57202,1.27981,0.01216,0.230656,0.004704,0.005472,0.007072,1.00941,0.010336
+735,321.431,3.11108,1.29914,0.010976,0.233184,0.005664,0.004832,0.008096,1.02614,0.01024
+736,343.567,2.91064,1.30336,0.011072,0.238752,0.004928,0.0056,0.006688,1.02605,0.010272
+737,379.259,2.63672,1.27811,0.0104,0.231424,0.005632,0.004672,0.007808,1.00794,0.01024
+738,332.711,3.00562,1.29405,0.011392,0.238464,0.005664,0.0056,0.007136,1.01539,0.0104
+739,363.895,2.74805,1.29056,0.011008,0.233472,0.00576,0.004672,0.007872,1.01757,0.010208
+740,356.081,2.80835,1.30442,0.010272,0.24368,0.005344,0.004928,0.007648,1.0223,0.01024
+741,303.138,3.29883,1.28304,0.011232,0.2376,0.0056,0.004704,0.00784,1.00582,0.01024
+742,323.13,3.09473,1.31277,0.01024,0.237568,0.005568,0.004704,0.007872,1.03658,0.01024
+743,344.144,2.90576,1.30829,0.010496,0.236896,0.004768,0.00592,0.006368,1.03373,0.010112
+744,401.884,2.48828,1.29069,0.010208,0.231904,0.005344,0.004896,0.007648,1.02045,0.01024
+745,312.219,3.20288,1.30371,0.01152,0.24416,0.004416,0.006144,0.00768,1.01949,0.010304
+746,305.717,3.271,1.32592,0.011104,0.275904,0.004672,0.005696,0.006592,1.01168,0.010272
+747,336.206,2.97437,1.3353,0.011776,0.272896,0.004096,0.006144,0.007488,1.02266,0.01024
+748,274.31,3.64551,1.37667,0.010688,0.313408,0.018336,0.00656,0.007264,1.00998,0.010432
+749,357.573,2.79663,1.27978,0.011008,0.241632,0.005856,0.005504,0.007072,0.997376,0.011328
+750,378.558,2.6416,1.2801,0.009216,0.230944,0.004512,0.006144,0.007264,1.01174,0.010272
+751,347.59,2.87695,1.32915,0.01024,0.257984,0.004192,0.006112,0.016384,1.024,0.01024
+752,283.951,3.52173,1.28397,0.011552,0.235584,0.004768,0.005568,0.00672,1.00963,0.010144
+753,368.943,2.71045,1.28298,0.010784,0.235904,0.005856,0.005472,0.007072,1.00746,0.010432
+754,351.588,2.84424,1.41322,0.010368,0.339936,0.005856,0.005536,0.015232,1.02605,0.01024
+755,329.738,3.03271,1.29914,0.010432,0.237088,0.004928,0.005504,0.006944,1.024,0.01024
+756,282.756,3.53662,1.3175,0.01072,0.268448,0.004096,0.006144,0.00736,1.0105,0.01024
+757,352.708,2.83521,1.31072,0.011264,0.244128,0.004704,0.005568,0.00672,1.0281,0.01024
+758,363.378,2.75195,1.30806,0.011584,0.234176,0.00544,0.0048,0.007808,1.03418,0.01008
+759,320.025,3.12476,1.2841,0.01056,0.241344,0.0056,0.004672,0.007904,1.00378,0.01024
+760,354.448,2.82129,1.29027,0.01056,0.234688,0.004896,0.005504,0.006816,1.01754,0.010272
+761,278.166,3.59497,1.33565,0.010592,0.290208,0.004704,0.005792,0.006496,1.00762,0.01024
+762,371.048,2.69507,1.30867,0.010848,0.234784,0.004896,0.005504,0.006816,1.03568,0.010144
+763,333.442,2.99902,1.31891,0.011968,0.260352,0.00416,0.006144,0.007328,1.01872,0.01024
+764,359.708,2.78003,1.30934,0.00992,0.234272,0.004288,0.006144,0.007392,1.03709,0.01024
+765,372.736,2.68286,1.31565,0.010912,0.233632,0.00512,0.005152,0.007488,1.04314,0.010208
+766,253.607,3.94312,1.30624,0.011296,0.23856,0.00608,0.00544,0.006912,1.02762,0.010336
+767,382.304,2.61572,1.29434,0.011456,0.235744,0.004704,0.005824,0.006464,1.0199,0.01024
+768,328.021,3.04858,1.30186,0.01024,0.23552,0.005568,0.004672,0.007872,1.02768,0.010304
+769,369.375,2.70728,1.30032,0.010272,0.237536,0.005632,0.004704,0.007936,1.02406,0.010176
+770,321.861,3.10693,1.29843,0.011712,0.240032,0.004256,0.006176,0.007232,1.01878,0.01024
+771,384.024,2.604,1.31619,0.01024,0.237568,0.00608,0.005504,0.006848,1.03955,0.0104
+772,299.262,3.34155,1.43392,0.01056,0.372288,0.004544,0.005824,0.006464,1.02397,0.010272
+773,314.086,3.18384,1.3345,0.011488,0.260896,0.005216,0.005056,0.024544,1.01693,0.010368
+774,331.15,3.01978,1.29146,0.010368,0.236576,0.005024,0.005504,0.00688,1.01578,0.011328
+775,278.545,3.59009,1.31693,0.010336,0.241664,0.005152,0.005088,0.007616,1.03683,0.01024
+776,327.811,3.05054,1.31664,0.010272,0.230656,0.004864,0.005536,0.006752,1.04819,0.010368
+777,232.49,4.30127,1.3177,0.010944,0.270464,0.005216,0.005024,0.007552,1.00826,0.01024
+778,361.518,2.76611,1.3312,0.012096,0.266112,0.004416,0.006048,0.007776,1.02451,0.01024
+779,307.877,3.24805,1.31053,0.010944,0.25808,0.005696,0.004704,0.00784,1.01296,0.010304
+780,394.491,2.53491,1.29693,0.010688,0.23552,0.004192,0.006176,0.007168,1.02294,0.01024
+781,341.078,2.93188,1.33296,0.01024,0.264192,0.005568,0.004704,0.007904,1.02941,0.010944
+782,289.941,3.44897,1.32714,0.010336,0.238656,0.004832,0.00544,0.007008,1.05062,0.01024
+783,358.23,2.7915,1.30058,0.011648,0.24352,0.004928,0.005536,0.006752,1.01786,0.010336
+784,348.655,2.86816,1.30461,0.010432,0.247072,0.004928,0.005536,0.006912,1.01942,0.010304
+785,356.608,2.8042,1.29638,0.011648,0.23616,0.005568,0.004704,0.007872,1.02019,0.01024
+786,358.261,2.79126,1.30253,0.011904,0.243424,0.004768,0.005696,0.006592,1.0199,0.01024
+787,336.925,2.96802,1.30944,0.01072,0.24576,0.004384,0.006016,0.006272,1.02605,0.01024
+788,367.124,2.72388,1.33194,0.010784,0.241856,0.005952,0.005536,0.006944,1.05066,0.010208
+789,391.699,2.55298,1.29994,0.01024,0.237568,0.005728,0.004704,0.00784,1.02368,0.010176
+790,365.225,2.73804,1.31686,0.010176,0.231488,0.005824,0.005504,0.007104,1.04653,0.01024
+791,366.861,2.72583,1.35776,0.011104,0.292576,0.004288,0.006144,0.006272,1.02717,0.010208
+792,389.132,2.56982,1.28704,0.010848,0.229664,0.005856,0.005472,0.007104,1.01786,0.01024
+793,316.979,3.15479,1.34554,0.011648,0.264128,0.0048,0.005728,0.006592,1.0424,0.01024
+794,365.518,2.73584,1.2999,0.011616,0.23568,0.004608,0.005824,0.006464,1.02538,0.010336
+795,386.269,2.58887,1.29981,0.010144,0.229248,0.004416,0.006048,0.006272,1.03344,0.01024
+796,339.663,2.94409,1.31763,0.010976,0.239616,0.005664,0.004672,0.007936,1.03955,0.009216
+797,380.492,2.62817,1.3072,0.010656,0.22928,0.004352,0.00608,0.006272,1.04032,0.01024
+798,330.349,3.0271,1.3127,0.011456,0.242112,0.004576,0.005824,0.006464,1.03219,0.01008
+799,266.84,3.74756,1.3367,0.01152,0.246528,0.005824,0.005504,0.007104,1.04995,0.010272
+800,363.992,2.74731,1.31162,0.010944,0.231616,0.005184,0.005056,0.008128,1.03987,0.010816
+801,316.318,3.16138,1.31834,0.011904,0.235904,0.005312,0.004928,0.007552,1.04253,0.010208
+802,320.852,3.1167,1.33018,0.012256,0.255456,0.004672,0.005696,0.006592,1.03424,0.011264
+803,304.467,3.28442,1.31686,0.011392,0.241728,0.004928,0.005536,0.006752,1.03629,0.01024
+804,354.05,2.82446,1.3088,0.010368,0.236768,0.004896,0.005472,0.006816,1.03424,0.01024
+805,349.012,2.86523,1.36362,0.011904,0.295296,0.00544,0.0048,0.007744,1.02819,0.01024
+806,359.803,2.7793,1.3271,0.01024,0.260096,0.00576,0.005536,0.007136,1.0281,0.01024
+807,355.957,2.80933,1.32461,0.009792,0.231488,0.004832,0.0056,0.006688,1.05597,0.01024
+808,329.234,3.03735,1.29866,0.011168,0.239392,0.004384,0.006048,0.006272,1.02115,0.01024
+809,351.799,2.84253,1.35178,0.010752,0.277664,0.004928,0.00544,0.00688,1.03574,0.010368
+810,292.634,3.41724,1.31277,0.01152,0.240224,0.004256,0.006144,0.006304,1.03408,0.01024
+811,379.998,2.63159,1.30253,0.01024,0.237568,0.004096,0.006144,0.007712,1.02653,0.01024
+812,336.898,2.96826,1.31482,0.01024,0.24576,0.00528,0.00496,0.007648,1.03072,0.010208
+813,385.76,2.59229,1.29968,0.011712,0.236096,0.005632,0.004672,0.007936,1.02346,0.010176
+814,315.295,3.17163,1.30058,0.010336,0.23552,0.005536,0.004736,0.008096,1.02611,0.01024
+815,318.854,3.13623,1.32755,0.010688,0.239424,0.004288,0.006112,0.006272,1.05053,0.01024
+816,376.332,2.65723,1.3105,0.01024,0.233472,0.005728,0.005792,0.006912,1.03821,0.010144
+817,337.397,2.96387,1.32198,0.011264,0.249536,0.004416,0.006048,0.00624,1.03424,0.01024
+818,372.838,2.68213,1.30877,0.01024,0.234816,0.0048,0.005632,0.006656,1.03629,0.010336
+819,279.438,3.57861,1.3271,0.010272,0.245728,0.005408,0.004832,0.00784,1.04278,0.01024
+820,316.001,3.16455,1.31901,0.010752,0.24496,0.004896,0.005536,0.006752,1.03574,0.010368
+821,330.936,3.02173,1.31277,0.011488,0.235456,0.004928,0.005472,0.006848,1.03834,0.01024
+822,347.089,2.8811,1.31622,0.011296,0.232416,0.005184,0.005056,0.00752,1.04451,0.01024
+823,355.494,2.81299,1.29456,0.010464,0.233472,0.004096,0.006176,0.007328,1.02278,0.01024
+824,237.546,4.20972,1.37414,0.012288,0.290816,0.004096,0.006144,0.007328,1.04326,0.010208
+825,358.073,2.79272,1.30867,0.011392,0.232352,0.005472,0.004736,0.007936,1.03574,0.01104
+826,344.346,2.90405,1.37686,0.010816,0.294944,0.005664,0.004672,0.007904,1.04262,0.01024
+827,374.817,2.66797,1.31072,0.01168,0.234112,0.005408,0.0048,0.00784,1.03664,0.01024
+828,370.176,2.70142,1.29024,0.01024,0.229408,0.005888,0.005472,0.00704,1.02195,0.01024
+829,315.15,3.1731,1.30906,0.010656,0.240608,0.004928,0.00544,0.00704,1.03014,0.01024
+830,343.164,2.91406,1.32944,0.01104,0.243712,0.005632,0.004704,0.00784,1.0463,0.010208
+831,343.942,2.90747,1.31382,0.011136,0.2376,0.005088,0.00512,0.007584,1.0369,0.0104
+832,377.93,2.646,1.3048,0.010496,0.23344,0.004256,0.005984,0.007552,1.03283,0.01024
+833,352.587,2.83618,1.31891,0.01024,0.24576,0.004192,0.006048,0.00752,1.03491,0.01024
+834,370.545,2.69873,1.29386,0.01024,0.231424,0.004096,0.006144,0.007296,1.02442,0.01024
+835,357.324,2.79858,1.30867,0.01024,0.237248,0.004416,0.006144,0.007264,1.03312,0.01024
+836,295.997,3.37842,1.29891,0.010688,0.237536,0.005632,0.004704,0.007904,1.02214,0.010304
+837,387.146,2.58301,1.31235,0.01024,0.231232,0.004288,0.00608,0.006208,1.04426,0.010048
+838,362.992,2.75488,1.36563,0.0104,0.3072,0.005344,0.004928,0.00768,1.01968,0.0104
+839,357.355,2.79834,1.30099,0.010752,0.23472,0.004896,0.005632,0.006656,1.0281,0.01024
+840,323.079,3.09521,1.32752,0.010688,0.234528,0.004928,0.005504,0.006912,1.05472,0.01024
+841,219.86,4.54834,1.40288,0.01024,0.325632,0.00544,0.0048,0.007776,1.03875,0.01024
+842,358.481,2.78955,1.3375,0.010688,0.251872,0.005568,0.004704,0.007936,1.04646,0.010272
+843,372.465,2.68481,1.31718,0.010496,0.234816,0.0048,0.0056,0.006688,1.04454,0.01024
+844,363.056,2.75439,1.30179,0.011616,0.225952,0.005824,0.005472,0.007072,1.03536,0.010496
+845,334.258,2.9917,1.32976,0.010848,0.2392,0.004512,0.006016,0.006272,1.0417,0.021216
+846,367.025,2.72461,1.3001,0.010752,0.227296,0.00576,0.004704,0.007936,1.03373,0.00992
+847,346.18,2.88867,1.40253,0.011776,0.3016,0.005472,0.004736,0.008,1.06054,0.0104
+848,307.415,3.25293,1.35203,0.010592,0.241696,0.00528,0.00496,0.007584,1.07168,0.01024
+849,362.67,2.75732,1.30637,0.010496,0.23344,0.005504,0.004736,0.007808,1.03421,0.010176
+850,383.234,2.60938,1.30835,0.01024,0.233472,0.005728,0.004704,0.007904,1.03594,0.010368
+851,388.799,2.57202,1.30768,0.010272,0.249856,0.005472,0.004768,0.007776,1.01936,0.010176
+852,375.092,2.66602,1.30006,0.010496,0.231712,0.004096,0.006144,0.007456,1.02883,0.011328
+853,387.842,2.57837,1.29475,0.010688,0.229376,0.0056,0.004672,0.007936,1.02624,0.01024
+854,374.03,2.67358,1.29904,0.010368,0.227808,0.005152,0.005088,0.007648,1.03274,0.01024
+855,347.089,2.8811,1.32538,0.010976,0.243008,0.004928,0.005472,0.006848,1.04374,0.0104
+856,390.355,2.56177,1.2984,0.009952,0.225568,0.004224,0.006016,0.007296,1.03517,0.010176
+857,331.418,3.01733,1.37168,0.010784,0.28464,0.005216,0.005088,0.007456,1.0473,0.0112
+858,391.363,2.55518,1.31424,0.011648,0.230048,0.00512,0.00512,0.00752,1.0447,0.01008
+859,364.9,2.74048,1.30592,0.01024,0.229376,0.004096,0.006144,0.007424,1.03859,0.010048
+860,381.84,2.6189,1.31686,0.012288,0.241664,0.005152,0.005088,0.007456,1.03498,0.01024
+861,385.035,2.59717,1.31533,0.01024,0.225824,0.00544,0.0048,0.007744,1.05098,0.010304
+862,402.912,2.48193,1.30979,0.011424,0.227264,0.004896,0.00544,0.006976,1.04365,0.010144
+863,358.763,2.78735,1.33238,0.010272,0.247776,0.005184,0.005056,0.016416,1.0376,0.01008
+864,410.832,2.43408,1.29258,0.01008,0.225728,0.006144,0.005728,0.00656,1.0281,0.01024
+865,374.474,2.67041,1.304,0.010272,0.233248,0.004288,0.006144,0.006144,1.03354,0.010368
+866,377.025,2.65234,1.30474,0.009824,0.227904,0.005344,0.004896,0.007648,1.03888,0.01024
+867,371.284,2.69336,1.3128,0.011584,0.223936,0.005472,0.004768,0.007744,1.04877,0.010528
+868,374.337,2.67139,1.29498,0.010688,0.233664,0.005248,0.005024,0.007616,1.0225,0.01024
+869,353.073,2.83228,1.36362,0.028128,0.270496,0.00448,0.005984,0.006304,1.03789,0.010336
+870,357.386,2.7981,1.32339,0.010528,0.237408,0.004576,0.005824,0.006496,1.04816,0.0104
+871,404.064,2.47485,1.30854,0.010304,0.237504,0.00592,0.005472,0.00704,1.0321,0.010208
+872,377.546,2.64868,1.30554,0.009152,0.227328,0.004192,0.006048,0.00736,1.04122,0.01024
+873,376.125,2.65869,1.34189,0.01072,0.26976,0.00464,0.005728,0.00656,1.03424,0.01024
+874,367.915,2.71802,1.31123,0.010752,0.224864,0.004512,0.006176,0.00816,1.04653,0.01024
+875,310.986,3.21558,1.31123,0.010752,0.237504,0.00416,0.006176,0.007168,1.03523,0.01024
+876,375.918,2.66016,1.31059,0.01152,0.226048,0.005792,0.004704,0.00784,1.04454,0.010144
+877,388.467,2.57422,1.3271,0.01216,0.22496,0.004544,0.005888,0.0064,1.06291,0.01024
+878,369.475,2.70654,1.31722,0.010592,0.239648,0.005696,0.004704,0.007904,1.03837,0.010304
+879,368.71,2.71216,1.3177,0.011104,0.227296,0.005632,0.004704,0.007936,1.05078,0.01024
+880,350.685,2.85156,1.29405,0.011744,0.225824,0.005472,0.004768,0.008192,1.02771,0.010336
+881,362.414,2.75928,1.32915,0.012288,0.234912,0.004704,0.005696,0.006592,1.05472,0.01024
+882,352.496,2.83691,1.36045,0.011072,0.229152,0.004288,0.00608,0.006208,1.09347,0.010176
+883,357.636,2.79614,1.32928,0.010592,0.243712,0.0056,0.004704,0.007872,1.04653,0.010272
+884,362.67,2.75732,1.32102,0.010304,0.230752,0.004768,0.0056,0.00672,1.05264,0.01024
+885,343.394,2.91211,1.352,0.011104,0.245344,0.004512,0.005856,0.006432,1.06832,0.010432
+886,356.484,2.80518,1.33046,0.012288,0.24768,0.004224,0.006144,0.006144,1.04387,0.010112
+887,375.608,2.66235,1.34144,0.01024,0.251904,0.005792,0.004672,0.007904,1.05069,0.01024
+888,344.607,2.90186,1.37312,0.011168,0.292864,0.004096,0.006176,0.007488,1.04106,0.010272
+889,343.365,2.91235,1.34058,0.010336,0.2376,0.00576,0.004672,0.007872,1.06413,0.010208
+890,333.442,2.99902,1.31555,0.010048,0.24464,0.005888,0.005472,0.007072,1.03219,0.01024
+891,281.686,3.55005,1.31213,0.010272,0.231392,0.006016,0.005504,0.006912,1.04166,0.010368
+892,383.916,2.60474,1.31277,0.01024,0.2376,0.00544,0.004768,0.007648,1.03683,0.01024
+893,306.495,3.2627,1.3271,0.011744,0.242208,0.004096,0.006144,0.007328,1.04534,0.01024
+894,371.992,2.68823,1.31674,0.00976,0.23584,0.004704,0.005728,0.00656,1.04387,0.010272
+895,337.369,2.96411,1.39034,0.010816,0.31744,0.00512,0.00512,0.007552,1.03405,0.01024
+896,326.817,3.05981,1.31802,0.012192,0.237088,0.004672,0.00576,0.006528,1.04154,0.01024
+897,330.429,3.02637,1.30714,0.010784,0.239584,0.005696,0.0056,0.007072,1.02816,0.01024
+898,364.413,2.74414,1.31686,0.01168,0.233792,0.004384,0.006016,0.006272,1.04448,0.01024
+899,352.011,2.84082,1.32602,0.01024,0.226144,0.004192,0.006144,0.0072,1.06186,0.01024
+900,359.677,2.78027,1.33405,0.010752,0.229664,0.005664,0.004704,0.007808,1.06522,0.01024
+901,338.456,2.95459,1.32362,0.010848,0.228992,0.00448,0.005888,0.0064,1.05677,0.01024
+902,349.518,2.86108,1.36397,0.01024,0.284672,0.004096,0.006144,0.00736,1.04122,0.01024
+903,335.325,2.98218,1.33763,0.010976,0.235136,0.004576,0.005824,0.006496,1.06429,0.010336
+904,347.06,2.88135,1.35734,0.011968,0.239232,0.004832,0.005632,0.006624,1.07875,0.010304
+905,321.886,3.10669,1.32506,0.01184,0.237504,0.004608,0.005792,0.006496,1.04858,0.01024
+906,389.91,2.5647,1.30518,0.010496,0.229728,0.005536,0.004736,0.00784,1.03661,0.01024
+907,311.957,3.20557,1.3279,0.010848,0.251232,0.00496,0.005504,0.006784,1.03834,0.01024
+908,284.583,3.51392,1.31782,0.011072,0.237088,0.004704,0.005696,0.006592,1.04243,0.01024
+909,360.405,2.77466,1.35987,0.010272,0.270272,0.004192,0.006112,0.007264,1.05152,0.01024
+910,371.654,2.69067,1.34461,0.011776,0.266752,0.00592,0.005504,0.007008,1.03629,0.01136
+911,344.115,2.90601,1.33328,0.01216,0.2336,0.0056,0.004704,0.00784,1.0591,0.010272
+912,339.045,2.94946,1.32733,0.010848,0.235136,0.004896,0.005632,0.006688,1.05421,0.00992
+913,332.252,3.00977,1.36474,0.011008,0.267552,0.004832,0.005792,0.006496,1.05882,0.01024
+914,320.752,3.11768,1.37216,0.01024,0.280096,0.004576,0.006048,0.00624,1.05472,0.01024
+915,367.058,2.72437,1.30762,0.011264,0.233216,0.00432,0.00608,0.006272,1.03622,0.01024
+916,339.72,2.9436,1.34666,0.012032,0.2624,0.005408,0.004832,0.007744,1.0439,0.010336
+917,374.509,2.67017,1.3304,0.011424,0.237632,0.004896,0.006112,0.006176,1.05392,0.01024
+918,322.19,3.10376,1.3129,0.010368,0.233376,0.004192,0.006176,0.006304,1.04224,0.01024
+919,267.66,3.73608,1.3783,0.011808,0.282432,0.004768,0.005664,0.006624,1.05677,0.01024
+920,348.952,2.86572,1.32554,0.01072,0.24576,0.005376,0.004864,0.007808,1.04077,0.01024
+921,333.578,2.9978,1.32301,0.012096,0.25008,0.00528,0.004928,0.008192,1.03219,0.01024
+922,316.709,3.15747,1.33939,0.012096,0.23776,0.005984,0.00576,0.006688,1.06086,0.01024
+923,276.495,3.6167,1.34134,0.01136,0.24464,0.005248,0.004992,0.007552,1.05683,0.01072
+924,382.482,2.6145,1.33357,0.010368,0.241504,0.004448,0.00592,0.006368,1.05472,0.01024
+925,375.608,2.66235,1.33267,0.01024,0.249824,0.004128,0.006176,0.00784,1.04413,0.010336
+926,354.479,2.82104,1.34163,0.010432,0.237536,0.006144,0.00576,0.006528,1.06496,0.010272
+927,368.976,2.71021,1.30726,0.01088,0.232896,0.004672,0.005792,0.006528,1.03626,0.01024
+928,343.394,2.91211,1.33587,0.010816,0.241632,0.004096,0.006144,0.007296,1.05562,0.010272
+929,342.704,2.91797,1.32522,0.0104,0.239136,0.004576,0.005984,0.006304,1.04858,0.01024
+930,367.321,2.72241,1.34026,0.010944,0.23744,0.004224,0.006176,0.007168,1.0639,0.0104
+931,360.088,2.7771,1.35347,0.01024,0.261632,0.004608,0.006016,0.006272,1.05443,0.010272
+932,365.095,2.73901,1.31277,0.01024,0.231424,0.005184,0.005056,0.00752,1.0431,0.01024
+933,325.493,3.07227,1.39011,0.010464,0.288768,0.006112,0.020512,0.007904,1.04611,0.01024
+934,297.113,3.36572,1.33408,0.011072,0.233472,0.005696,0.004704,0.007968,1.0609,0.010272
+935,358.073,2.79272,1.34118,0.011488,0.248608,0.004288,0.005984,0.007424,1.05322,0.010176
+936,386.051,2.59033,1.32714,0.010272,0.237536,0.006016,0.005472,0.006976,1.05059,0.010272
+937,348.685,2.86792,1.34144,0.01024,0.238784,0.004928,0.005568,0.00672,1.06496,0.01024
+938,364.64,2.74243,1.3457,0.010464,0.239616,0.004096,0.006144,0.007296,1.06787,0.010208
+939,367.882,2.71826,1.30915,0.010368,0.234144,0.005952,0.005472,0.007008,1.03578,0.010432
+940,344.81,2.90015,1.36333,0.011904,0.261664,0.004928,0.005472,0.006848,1.06214,0.010368
+941,381.165,2.62354,1.32909,0.01072,0.233952,0.00608,0.00544,0.00688,1.05472,0.011296
+942,362.735,2.75684,1.31674,0.011328,0.231936,0.004544,0.005952,0.006336,1.04627,0.010368
+943,320.3,3.12207,1.33286,0.011552,0.238304,0.005856,0.005472,0.007104,1.05424,0.010336
+944,386.269,2.58887,1.31197,0.010336,0.235552,0.005312,0.004928,0.007648,1.03683,0.01136
+945,335.683,2.979,1.35626,0.01088,0.27648,0.005152,0.005088,0.007552,1.0407,0.0104
+946,333.008,3.00293,1.32179,0.011072,0.243712,0.005792,0.004672,0.00784,1.03846,0.01024
+947,330.243,3.02808,1.35162,0.010464,0.255232,0.004832,0.005632,0.006656,1.05846,0.010336
+948,389.169,2.56958,1.33126,0.010016,0.236448,0.00416,0.006144,0.00736,1.05661,0.010528
+949,381.698,2.61987,1.32096,0.01184,0.239296,0.004864,0.005536,0.006784,1.0424,0.01024
+950,353.103,2.83203,1.39469,0.011424,0.297824,0.005472,0.0048,0.007712,1.05722,0.01024
+951,347.472,2.87793,1.31894,0.010304,0.243072,0.004704,0.00576,0.00656,1.0383,0.01024
+952,339.101,2.94897,1.33152,0.01056,0.247008,0.004896,0.005504,0.006784,1.04653,0.01024
+953,360.659,2.77271,1.3249,0.010624,0.23552,0.005632,0.005824,0.006976,1.05008,0.01024
+954,351.317,2.84644,1.37904,0.02272,0.25568,0.004928,0.005472,0.019136,1.06086,0.01024
+955,306.358,3.26416,1.36787,0.012032,0.25984,0.020576,0.005888,0.006816,1.05248,0.01024
+956,378.979,2.63867,1.33734,0.011616,0.232096,0.005376,0.004864,0.00768,1.06547,0.01024
+957,372.025,2.68799,1.32714,0.010336,0.24688,0.004928,0.005504,0.006784,1.04243,0.010272
+958,359.551,2.78125,1.31958,0.010784,0.23952,0.004448,0.005952,0.006336,1.04227,0.010272
+959,375.539,2.66284,1.3271,0.011456,0.236352,0.005888,0.005472,0.007072,1.05062,0.01024
+960,325.183,3.0752,1.3337,0.010752,0.243936,0.004256,0.006144,0.006304,1.05187,0.010432
+961,373.689,2.67603,1.31603,0.011616,0.24192,0.004544,0.005856,0.0064,1.03536,0.010336
+962,323.692,3.08936,1.34554,0.011936,0.257536,0.004928,0.00544,0.00688,1.04858,0.01024
+963,388.799,2.57202,1.32173,0.011008,0.237248,0.005504,0.005024,0.00752,1.04515,0.010272
+964,375.023,2.6665,1.31408,0.011296,0.234496,0.005376,0.004832,0.007712,1.04003,0.010336
+965,340.058,2.94067,1.32234,0.0104,0.239584,0.005248,0.004992,0.007616,1.04435,0.010144
+966,381.094,2.62402,1.31072,0.010272,0.234816,0.004768,0.005632,0.006656,1.03834,0.01024
+967,322.723,3.09863,1.3271,0.011584,0.248512,0.005952,0.005504,0.006976,1.03821,0.010368
+968,407.319,2.45508,1.32509,0.011456,0.235712,0.004864,0.005536,0.006784,1.0504,0.010336
+969,404.743,2.4707,1.30666,0.009952,0.231008,0.004832,0.005664,0.006624,1.03834,0.01024
+970,307.369,3.25342,1.33936,0.01024,0.245792,0.00544,0.004768,0.00784,1.05507,0.010208
+971,379.505,2.63501,1.31514,0.01056,0.23552,0.005312,0.004928,0.00768,1.0409,0.01024
+972,373.076,2.68042,1.35987,0.011616,0.247712,0.004864,0.0056,0.006688,1.07315,0.01024
+973,341.163,2.93115,1.37728,0.01024,0.29696,0.004096,0.006144,0.007328,1.04125,0.011264
+974,371.857,2.68921,1.32051,0.011584,0.23968,0.004736,0.005728,0.00656,1.04189,0.010336
+975,324.538,3.0813,1.31872,0.01056,0.241664,0.005472,0.004768,0.00784,1.03789,0.010528
+976,358.011,2.79321,1.3353,0.011168,0.2408,0.004928,0.005856,0.006464,1.05587,0.010208
+977,346.707,2.88428,1.36806,0.011296,0.28976,0.00512,0.00512,0.007456,1.03907,0.01024
+978,352.769,2.83472,1.3289,0.010784,0.238624,0.004992,0.005504,0.00688,1.05062,0.011488
+979,355.278,2.8147,1.32941,0.0104,0.239936,0.005792,0.005664,0.006976,1.0503,0.010336
+980,344.462,2.90308,1.33286,0.011392,0.238464,0.005216,0.005024,0.007584,1.05475,0.010432
+981,392.977,2.54468,1.33795,0.010688,0.229504,0.005568,0.004704,0.00784,1.06938,0.010272
+982,371.115,2.69458,1.41926,0.011424,0.293728,0.005216,0.005024,0.007552,1.08605,0.010272
+983,379.365,2.63599,1.35312,0.011776,0.232032,0.004384,0.00608,0.006304,1.08125,0.011296
+984,351.046,2.84863,1.31395,0.01024,0.225248,0.004128,0.006144,0.007232,1.05059,0.010368
+985,315.903,3.16553,1.35069,0.0112,0.271584,0.00496,0.005536,0.006752,1.04038,0.010272
+986,346.678,2.88452,1.3335,0.010848,0.23344,0.004192,0.00608,0.007232,1.06147,0.01024
+987,365.878,2.73315,1.38285,0.011104,0.302624,0.004608,0.005792,0.006496,1.04189,0.010336
+988,378.453,2.64233,1.33632,0.011328,0.23424,0.004288,0.006112,0.006176,1.0641,0.01008
+989,354.019,2.82471,1.32832,0.011296,0.242656,0.004128,0.006112,0.006144,1.04653,0.011456
+990,320.175,3.12329,1.35552,0.010528,0.264192,0.00592,0.005664,0.006848,1.05222,0.010144
+991,364.575,2.74292,1.32157,0.010784,0.242976,0.004864,0.005568,0.006752,1.04035,0.010272
+992,344.462,2.90308,1.34349,0.01216,0.24384,0.005216,0.005056,0.00768,1.05933,0.010208
+993,390.355,2.56177,1.30851,0.010112,0.227424,0.004864,0.0056,0.006688,1.04362,0.010208
+994,391.4,2.55493,1.34656,0.009248,0.251296,0.004672,0.005728,0.00656,1.05882,0.01024
+995,347.767,2.87549,1.3225,0.010304,0.232448,0.004992,0.005472,0.00688,1.05222,0.010176
+996,341.932,2.92456,1.3393,0.0104,0.23904,0.004512,0.005728,0.00656,1.06259,0.010464
+997,348.952,2.86572,1.36154,0.01168,0.2768,0.004384,0.006144,0.0072,1.0448,0.010528
+998,362.35,2.75977,1.35485,0.01024,0.259648,0.004544,0.005888,0.0064,1.05786,0.010272
+999,348.21,2.87183,1.33939,0.011776,0.237984,0.004192,0.006144,0.007264,1.06179,0.01024
+1000,364.802,2.74121,1.3336,0.011104,0.233152,0.004416,0.005952,0.006336,1.0625,0.010144
+1001,359.109,2.78467,1.33968,0.010912,0.239232,0.004448,0.006048,0.006272,1.06262,0.010144
+1002,312.935,3.19556,1.32698,0.01024,0.236608,0.004928,0.005536,0.00688,1.05248,0.010304
+1003,382.875,2.61182,1.32099,0.011424,0.233984,0.004448,0.006176,0.007168,1.04752,0.010272
+1004,351.799,2.84253,1.3409,0.010304,0.241664,0.005216,0.005024,0.007552,1.06086,0.010272
+1005,373.246,2.6792,1.32669,0.011648,0.230016,0.005728,0.004672,0.00784,1.05654,0.01024
+1006,369.675,2.70508,1.31917,0.010528,0.2304,0.00512,0.005536,0.00672,1.05062,0.01024
+1007,322.748,3.09839,1.32301,0.011808,0.237376,0.004768,0.005664,0.006624,1.04653,0.01024
+1008,387.842,2.57837,1.3271,0.01232,0.227296,0.005568,0.004704,0.00784,1.05914,0.01024
+1009,356.391,2.80591,1.36115,0.011296,0.27664,0.004928,0.005504,0.006784,1.04566,0.010336
+1010,369.675,2.70508,1.3295,0.010592,0.240704,0.004896,0.005472,0.006976,1.05062,0.01024
+1011,396.438,2.52246,1.3353,0.01024,0.229408,0.005792,0.005792,0.006816,1.06701,0.01024
+1012,312.648,3.19849,1.34074,0.010432,0.249216,0.004544,0.006048,0.006304,1.05382,0.010368
+1013,363.669,2.74976,1.33405,0.010656,0.231808,0.004096,0.006176,0.006272,1.0648,0.01024
+1014,355.803,2.81055,1.3649,0.010592,0.238208,0.004256,0.005984,0.00736,1.08826,0.01024
+1015,392.676,2.54663,1.3296,0.010688,0.232448,0.005056,0.0056,0.006784,1.05882,0.010208
+1016,362.286,2.76025,1.3271,0.010112,0.227456,0.004096,0.006144,0.007328,1.06173,0.01024
+1017,294.74,3.39282,1.33158,0.01104,0.23344,0.004224,0.006016,0.007424,1.05939,0.010048
+1018,385.107,2.59668,1.33325,0.01024,0.237568,0.005376,0.004864,0.007744,1.05722,0.01024
+1019,358.042,2.79297,1.33718,0.01168,0.240224,0.00592,0.005472,0.00704,1.05654,0.010304
+1020,363.701,2.74951,1.36032,0.01072,0.233088,0.004448,0.01792,0.006656,1.07725,0.01024
+1021,348.181,2.87207,1.33862,0.012256,0.229408,0.005664,0.004672,0.007936,1.06842,0.010272
+1022,344.926,2.89917,1.33123,0.01024,0.233472,0.005248,0.005024,0.00752,1.05946,0.010272
+1023,345.917,2.89087,1.33738,0.01136,0.238528,0.005632,0.004704,0.008096,1.05882,0.01024
+1024,367.255,2.7229,1.3824,0.010432,0.277696,0.004736,0.005632,0.006656,1.06803,0.009216
+1025,394.986,2.53174,1.32918,0.010368,0.231104,0.004928,0.005472,0.006816,1.0601,0.0104
+1026,328.153,3.04736,1.34579,0.010496,0.231232,0.004288,0.006112,0.006208,1.07722,0.01024
+1027,371.89,2.68896,1.33702,0.0104,0.23936,0.004192,0.006176,0.007168,1.05939,0.010336
+1028,290.641,3.44067,1.3504,0.011008,0.229376,0.0056,0.004704,0.008032,1.08144,0.01024
+1029,318.111,3.14355,1.35168,0.010272,0.2632,0.004992,0.005472,0.00688,1.05062,0.01024
+1030,363.798,2.74878,1.33024,0.012224,0.230464,0.004928,0.005472,0.007008,1.05997,0.010176
+1031,348.774,2.86719,1.3599,0.01088,0.247296,0.004576,0.022304,0.0064,1.05814,0.010304
+1032,379.928,2.63208,1.32128,0.010368,0.225696,0.00544,0.0048,0.007776,1.0569,0.010304
+1033,349.101,2.8645,1.34912,0.011264,0.230304,0.004192,0.006144,0.007168,1.0631,0.026944
+1034,307.831,3.24854,1.39834,0.011872,0.27824,0.0048,0.005696,0.014816,1.07261,0.010304
+1035,384.565,2.60034,1.33968,0.012352,0.22976,0.005568,0.004704,0.007872,1.06902,0.0104
+1036,357.886,2.79419,1.41126,0.010528,0.300704,0.004448,0.00608,0.006304,1.07306,0.010144
+1037,379.259,2.63672,1.32963,0.01072,0.233504,0.005792,0.00544,0.007072,1.05686,0.01024
+1038,350.805,2.85059,1.36566,0.010592,0.253344,0.0048,0.005568,0.014592,1.06666,0.010112
+1039,331.284,3.01855,1.35907,0.010272,0.253248,0.004768,0.00576,0.006528,1.06704,0.011456
+1040,365.453,2.73633,1.34691,0.010464,0.239616,0.005568,0.004672,0.007936,1.06848,0.010176
+1041,374.064,2.67334,1.38653,0.012288,0.273568,0.00496,0.00544,0.006848,1.07318,0.01024
+1042,382.768,2.61255,1.34118,0.011712,0.235456,0.004736,0.00576,0.006528,1.06659,0.0104
+1043,379.365,2.63599,1.34845,0.010144,0.230176,0.005824,0.005472,0.007136,1.0793,0.0104
+1044,339.889,2.94214,1.33878,0.010528,0.231456,0.005152,0.005056,0.007648,1.06877,0.010176
+1045,341.447,2.92871,1.40902,0.021792,0.299744,0.005248,0.004992,0.007712,1.0593,0.01024
+1046,351.347,2.84619,1.38045,0.010368,0.264,0.004256,0.006144,0.006272,1.07917,0.01024
+1047,379.505,2.63501,1.35168,0.010272,0.230816,0.004672,0.006144,0.007264,1.08227,0.01024
+1048,335.93,2.97681,1.36528,0.010272,0.237344,0.004288,0.006112,0.007232,1.07619,0.02384
+1049,329.658,3.03345,1.32915,0.01184,0.233472,0.004544,0.005856,0.006432,1.05677,0.01024
+1050,350.355,2.85425,1.32365,0.010016,0.228128,0.00416,0.006144,0.0072,1.05776,0.01024
+1051,352.405,2.83765,1.35296,0.01024,0.24576,0.005696,0.004672,0.008064,1.06826,0.010272
+1052,376.229,2.65796,1.3303,0.010272,0.230368,0.004928,0.005472,0.007008,1.06208,0.010176
+1053,376.367,2.65698,1.33734,0.010272,0.229344,0.005536,0.004704,0.007968,1.06928,0.01024
+1054,334.996,2.98511,1.32979,0.010656,0.235456,0.004384,0.006144,0.006304,1.05661,0.01024
+1055,389.984,2.56421,1.3393,0.010912,0.232832,0.004768,0.00592,0.006368,1.06829,0.010208
+1056,324.461,3.08203,1.71782,0.012288,0.608128,0.005568,0.0048,0.019648,1.05722,0.010176
+1057,380.528,2.62793,1.33757,0.010464,0.235488,0.004256,0.005984,0.007424,1.06368,0.010272
+1058,360.627,2.77295,1.34784,0.010336,0.237568,0.00432,0.006144,0.007456,1.07184,0.010176
+1059,389.428,2.56787,1.33325,0.01024,0.231232,0.005696,0.004736,0.00784,1.0633,0.010208
+1060,371.351,2.69287,1.34432,0.010624,0.229184,0.004704,0.005664,0.006624,1.07725,0.010272
+1061,365.193,2.73828,1.39059,0.013632,0.285088,0.004416,0.005984,0.006272,1.06496,0.01024
+1062,302.288,3.30811,1.35824,0.010656,0.257632,0.004512,0.005888,0.006432,1.06288,0.01024
+1063,357.292,2.79883,1.36563,0.010592,0.24784,0.00576,0.0056,0.00704,1.07888,0.00992
+1064,374.303,2.67163,1.32813,0.010688,0.229376,0.004672,0.005792,0.006496,1.06086,0.01024
+1065,379.822,2.63281,1.35581,0.010272,0.245088,0.004736,0.005792,0.006496,1.07315,0.010272
+1066,337.536,2.96265,1.36208,0.010368,0.247392,0.004512,0.00592,0.0064,1.07722,0.010272
+1067,358.732,2.7876,1.3169,0.01024,0.231424,0.0056,0.004704,0.007936,1.04672,0.010272
+1068,350.655,2.85181,1.35782,0.010272,0.237056,0.004576,0.005856,0.006464,1.08336,0.01024
+1069,367.816,2.71875,1.3337,0.010688,0.234848,0.004768,0.005632,0.006688,1.06083,0.01024
+1070,379.857,2.63257,1.32915,0.01024,0.227328,0.004096,0.006144,0.007392,1.06371,0.01024
+1071,368.412,2.71436,1.37014,0.012288,0.25296,0.004896,0.005472,0.007008,1.07725,0.010272
+1072,370.545,2.69873,1.33334,0.010368,0.232768,0.004768,0.005632,0.006656,1.06291,0.01024
+1073,295.89,3.37964,1.3991,0.010976,0.266336,0.004096,0.006144,0.007392,1.09376,0.0104
+1074,359.235,2.78369,1.36966,0.01184,0.238016,0.005312,0.004928,0.007744,1.09146,0.010368
+1075,360.69,2.77246,1.34349,0.011424,0.232,0.004416,0.006112,0.0072,1.0721,0.01024
+1076,330.163,3.02881,1.3441,0.010752,0.231904,0.0056,0.004672,0.007872,1.07283,0.010464
+1077,385.325,2.59521,1.33955,0.01072,0.230528,0.004896,0.005824,0.007808,1.06499,0.014784
+1078,341.39,2.9292,1.37328,0.01024,0.270336,0.005888,0.005504,0.00704,1.06397,0.010304
+1079,353.53,2.82861,1.36192,0.01024,0.23488,0.004736,0.005696,0.006592,1.08954,0.01024
+1080,352.982,2.83301,1.33034,0.010368,0.233152,0.004416,0.006176,0.007552,1.05738,0.011296
+1081,343.942,2.90747,1.34291,0.011552,0.236224,0.004192,0.00608,0.007392,1.06717,0.010304
+1082,368.047,2.71704,1.34208,0.01088,0.231232,0.004288,0.006112,0.006272,1.07309,0.010208
+1083,340.936,2.93311,1.3944,0.01088,0.284096,0.004672,0.00576,0.006528,1.07219,0.010272
+1084,323.105,3.09497,1.34474,0.010272,0.238656,0.004928,0.005472,0.006912,1.06826,0.01024
+1085,337.092,2.96655,1.35373,0.011552,0.238336,0.005312,0.004896,0.007616,1.07578,0.01024
+1086,383.772,2.60571,1.34122,0.01072,0.232928,0.00464,0.005792,0.006496,1.0703,0.010336
+1087,356.422,2.80566,1.35168,0.012224,0.232736,0.004896,0.005504,0.006784,1.0793,0.01024
+1088,341.476,2.92847,1.37645,0.011168,0.241344,0.004512,0.006016,0.006304,1.0968,0.010304
+1089,301.088,3.32129,1.38483,0.011264,0.268288,0.0056,0.004672,0.007936,1.0769,0.010176
+1090,337.731,2.96094,1.39264,0.011392,0.269184,0.005568,0.004704,0.00784,1.08477,0.009184
+1091,335.243,2.98291,1.36288,0.011072,0.249696,0.004384,0.00608,0.006272,1.07514,0.01024
+1092,377.233,2.65088,1.33286,0.01024,0.237568,0.004096,0.006144,0.007328,1.05757,0.00992
+1093,361.614,2.76538,1.35178,0.011488,0.238368,0.004224,0.006016,0.007456,1.07389,0.010336
+1094,340.03,2.94092,1.33939,0.010368,0.233824,0.004576,0.005888,0.0064,1.06701,0.011328
+1095,368.81,2.71143,1.38605,0.01024,0.257184,0.0048,0.005504,0.006976,1.09107,0.010272
+1096,371.958,2.68848,1.35677,0.010752,0.233568,0.00448,0.005888,0.006432,1.08541,0.01024
+1097,360.849,2.77124,1.34554,0.01024,0.235168,0.004448,0.005984,0.006304,1.07418,0.009216
+1098,365.323,2.7373,1.35021,0.01072,0.247296,0.004832,0.0056,0.006688,1.06474,0.010336
+1099,372.262,2.68628,1.33549,0.010432,0.23504,0.004608,0.005824,0.006432,1.06291,0.01024
+1100,342.16,2.92261,1.35987,0.012,0.248128,0.004064,0.006144,0.007808,1.07149,0.01024
+1101,396.553,2.52173,1.33846,0.011328,0.233632,0.004896,0.005472,0.006816,1.06605,0.010272
+1102,371.789,2.6897,1.34502,0.01024,0.2376,0.005312,0.004896,0.007648,1.06912,0.010208
+1103,349.727,2.85938,1.35392,0.010432,0.23552,0.005408,0.004832,0.007744,1.07974,0.01024
+1104,370.009,2.70264,1.33805,0.01024,0.228096,0.005248,0.004992,0.007584,1.07158,0.010304
+1105,379.716,2.63354,1.36806,0.010272,0.251872,0.005472,0.004768,0.007712,1.07773,0.01024
+1106,347.678,2.87622,1.34256,0.011968,0.24608,0.004096,0.006144,0.007776,1.05514,0.01136
+1107,369.742,2.70459,1.33821,0.010144,0.234176,0.004352,0.006016,0.006272,1.06701,0.01024
+1108,319.9,3.12598,1.3681,0.011328,0.238528,0.005344,0.004896,0.007712,1.08989,0.0104
+1109,382.911,2.61157,1.35987,0.011584,0.23008,0.005856,0.005472,0.00704,1.0896,0.01024
+1110,358.293,2.79102,1.37795,0.01024,0.257184,0.00496,0.005472,0.006816,1.08314,0.010144
+1111,330.829,3.02271,1.38202,0.011648,0.23536,0.004896,0.005472,0.006816,1.10749,0.010336
+1112,354.571,2.82031,1.3865,0.01024,0.23552,0.005824,0.005472,0.007104,1.1121,0.01024
+1113,355.062,2.81641,1.35555,0.010304,0.235488,0.0056,0.004672,0.007968,1.08154,0.009984
+1114,367.849,2.71851,1.36893,0.009184,0.232768,0.004768,0.0056,0.006688,1.09965,0.010272
+1115,350.685,2.85156,1.38342,0.010848,0.250272,0.005696,0.004704,0.007936,1.09373,0.01024
+1116,398.056,2.51221,1.34963,0.01024,0.231424,0.004096,0.006144,0.007232,1.08026,0.01024
+1117,310.045,3.22534,1.43603,0.010656,0.273632,0.004896,0.005472,0.006816,1.12419,0.010368
+1118,370.243,2.70093,1.35802,0.010272,0.23744,0.004224,0.006144,0.006304,1.08323,0.0104
+1119,376.194,2.6582,1.35424,0.010752,0.230592,0.004928,0.005536,0.006784,1.08541,0.01024
+1120,335.435,2.9812,1.40419,0.012032,0.29664,0.004672,0.005824,0.006464,1.06806,0.010496
+1121,358.105,2.79248,1.35782,0.010272,0.23552,0.005536,0.004704,0.007904,1.08365,0.01024
+1122,287.156,3.48242,1.37216,0.011392,0.240512,0.01552,0.00512,0.007904,1.08147,0.01024
+1123,328.153,3.04736,1.3919,0.010304,0.276,0.004576,0.005856,0.006464,1.0784,0.010304
+1124,324.719,3.07959,1.34803,0.010688,0.237568,0.00592,0.005536,0.006976,1.0711,0.01024
+1125,364.283,2.74512,1.38614,0.010528,0.241664,0.005536,0.004736,0.007744,1.10429,0.011648
+1126,331.284,3.01855,1.35846,0.010912,0.247776,0.005152,0.005088,0.007584,1.07171,0.01024
+1127,330.083,3.02954,1.44819,0.010496,0.325632,0.005216,0.005024,0.007616,1.08499,0.009216
+1128,352.193,2.83936,1.3847,0.010528,0.263328,0.004928,0.005504,0.006784,1.08339,0.01024
+1129,331.526,3.01636,1.37869,0.0112,0.266272,0.005184,0.005056,0.007488,1.07322,0.010272
+1130,355.001,2.81689,1.36653,0.010752,0.242848,0.004992,0.005824,0.006464,1.08541,0.01024
+1131,345.975,2.89038,1.42128,0.01152,0.278496,0.004896,0.005632,0.006688,1.10387,0.010176
+1132,276.439,3.61743,1.40701,0.010272,0.258048,0.005408,0.004832,0.007808,1.1104,0.01024
+1133,348.566,2.8689,1.37786,0.010336,0.249536,0.00432,0.006144,0.006144,1.09104,0.010336
+1134,286.233,3.49365,1.38611,0.01024,0.251136,0.004896,0.005536,0.00672,1.09731,0.010272
+1135,340.85,2.93384,1.40096,0.0104,0.262112,0.005824,0.005472,0.007136,1.09978,0.01024
+1136,346.326,2.88745,1.37264,0.01072,0.258048,0.004096,0.006176,0.00752,1.07514,0.010944
+1137,257.594,3.88208,1.39021,0.011488,0.26704,0.005632,0.004704,0.007936,1.08333,0.01008
+1138,316.44,3.16016,1.44179,0.01024,0.30656,0.004736,0.005632,0.006656,1.09773,0.01024
+1139,341.704,2.92651,1.37789,0.01024,0.256,0.0056,0.004704,0.007872,1.08342,0.010048
+1140,320.626,3.1189,1.38666,0.010656,0.26128,0.00496,0.005504,0.006784,1.08714,0.010336
+1141,351.166,2.84766,1.41008,0.011424,0.273248,0.005216,0.005024,0.007648,1.09747,0.010048
+1142,307.046,3.25684,1.42317,0.010592,0.28416,0.004608,0.005888,0.0064,1.10122,0.010304
+1143,288.309,3.46851,1.40493,0.010272,0.272128,0.00432,0.006144,0.006272,1.09555,0.01024
+1144,324.051,3.08594,1.4072,0.010432,0.278528,0.005664,0.005888,0.00688,1.08954,0.010272
+1145,254.284,3.93262,1.41206,0.010848,0.282816,0.004288,0.006112,0.006304,1.09146,0.01024
+1146,307.646,3.25049,1.40698,0.012032,0.27584,0.00496,0.005472,0.006848,1.09158,0.01024
+1147,246.154,4.0625,1.42525,0.01024,0.303104,0.004288,0.005984,0.007328,1.08406,0.01024
+1148,314.207,3.18262,1.43206,0.010752,0.284672,0.005632,0.004672,0.007872,1.10822,0.01024
+1149,287.358,3.47998,1.40781,0.011136,0.263808,0.004608,0.005856,0.006432,1.1057,0.010272
+1150,321.532,3.11011,1.38867,0.01024,0.261664,0.004576,0.005856,0.006432,1.08954,0.010368
+1151,268.961,3.71802,1.42954,0.012,0.294688,0.004608,0.005824,0.006464,1.09568,0.010272
+1152,331.204,3.01929,1.3952,0.010784,0.265632,0.004672,0.00576,0.006528,1.09264,0.009184
+1153,293.326,3.40918,1.41162,0.010816,0.298976,0.0056,0.004672,0.007872,1.07344,0.01024
+1154,254.442,3.93018,1.41738,0.0104,0.262144,0.005824,0.00544,0.007104,1.11622,0.01024
+1155,300.823,3.32422,1.45971,0.010688,0.32688,0.004896,0.005824,0.006464,1.09482,0.010144
+1156,331.982,3.01221,1.41917,0.011136,0.282016,0.004704,0.00576,0.006528,1.09875,0.010272
+1157,355.679,2.81152,1.37757,0.011936,0.252256,0.005216,0.005024,0.007552,1.08534,0.01024
+1158,376.748,2.6543,1.3751,0.011168,0.241632,0.004096,0.006144,0.00736,1.09446,0.01024
+1159,308.086,3.24585,1.41459,0.010592,0.27392,0.004608,0.005952,0.007648,1.1016,0.010272
+1160,348.27,2.87134,1.42944,0.01024,0.251936,0.005376,0.004864,0.00816,1.13856,0.010304
+1161,272.141,3.67456,1.41469,0.010336,0.282528,0.00544,0.0048,0.007744,1.0935,0.010336
+1162,344.984,2.89868,1.4472,0.010432,0.284704,0.005248,0.00496,0.007552,1.12419,0.010112
+1163,315.392,3.17065,1.39232,0.011296,0.252544,0.00448,0.00592,0.006368,1.10166,0.010048
+1164,338.121,2.95752,1.42784,0.010656,0.294112,0.004896,0.00576,0.00656,1.09558,0.010272
+1165,328.996,3.03955,1.40432,0.01024,0.270336,0.005184,0.005056,0.00752,1.09565,0.010336
+1166,291.572,3.42969,1.43837,0.010912,0.299008,0.005472,0.004768,0.008192,1.09978,0.01024
+1167,340.426,2.9375,1.42336,0.010688,0.262144,0.00592,0.005472,0.00704,1.12186,0.01024
+1168,303.228,3.29785,1.44806,0.0104,0.278528,0.006144,0.005792,0.006496,1.1303,0.0104
+1169,352.799,2.83447,1.41053,0.0104,0.253824,0.005728,0.004672,0.007904,1.11773,0.010272
+1170,301.309,3.31885,1.38013,0.01056,0.241632,0.005728,0.004704,0.007872,1.0993,0.010336
+1171,329.578,3.03418,1.42902,0.012128,0.288928,0.005632,0.004672,0.008032,1.09933,0.010304
+1172,321.356,3.11182,1.40336,0.01088,0.257472,0.004672,0.005728,0.00656,1.10794,0.010112
+1173,331.177,3.01953,1.38854,0.01024,0.258048,0.005408,0.004832,0.007968,1.09181,0.01024
+1174,348.003,2.87354,1.39888,0.011008,0.253952,0.004192,0.00608,0.007328,1.10621,0.010112
+1175,346.707,2.88428,1.39878,0.011904,0.254336,0.005536,0.004704,0.007872,1.10429,0.010144
+1176,324.925,3.07764,1.38448,0.012064,0.249376,0.0048,0.0056,0.006688,1.09568,0.010272
+1177,310.021,3.22559,1.42086,0.011296,0.273376,0.005248,0.004992,0.007712,1.10803,0.010208
+1178,355.556,2.8125,1.44224,0.011136,0.25392,0.005792,0.004768,0.007808,1.14806,0.010752
+1179,333.986,2.99414,1.39741,0.010816,0.237024,0.004736,0.005696,0.006592,1.1223,0.01024
+1180,334.805,2.98682,1.40496,0.011584,0.251648,0.004928,0.005504,0.006944,1.11408,0.010272
+1181,337.564,2.9624,1.37046,0.010624,0.251136,0.004832,0.005632,0.006656,1.08134,0.01024
+1182,330.429,3.02637,1.41722,0.011968,0.274752,0.005312,0.004928,0.007648,1.10237,0.01024
+1183,326.687,3.06104,1.41731,0.010816,0.273856,0.004672,0.005824,0.006464,1.10541,0.010272
+1184,294.168,3.39941,1.43536,0.011872,0.283648,0.004224,0.006016,0.007488,1.11194,0.010176
+1185,332.468,3.00781,1.41437,0.01024,0.262144,0.005504,0.004736,0.00784,1.1135,0.0104
+1186,255.171,3.91895,1.4177,0.010688,0.270368,0.004096,0.006144,0.007264,1.1089,0.01024
+1187,339.466,2.9458,1.42131,0.011616,0.264768,0.004192,0.006144,0.006176,1.11818,0.01024
+1188,285.078,3.50781,1.39674,0.012,0.26448,0.005888,0.005536,0.007008,1.09158,0.01024
+1189,355.37,2.81396,1.41302,0.01024,0.283968,0.0048,0.0056,0.006688,1.09149,0.01024
+1190,359.109,2.78467,1.4111,0.01024,0.247328,0.004576,0.005792,0.006496,1.1264,0.010272
+1191,344.665,2.90137,1.39802,0.01152,0.25472,0.004288,0.005952,0.007584,1.10368,0.010272
+1192,369.675,2.70508,1.39267,0.010272,0.24576,0.005184,0.005056,0.007552,1.10861,0.01024
+1193,351.709,2.84326,1.37846,0.012224,0.247872,0.005952,0.005504,0.006976,1.08954,0.0104
+1194,393.166,2.54346,1.37046,0.010624,0.2368,0.004832,0.006144,0.007296,1.09453,0.01024
+1195,353.469,2.8291,1.38765,0.011584,0.24032,0.00608,0.005568,0.006784,1.10714,0.010176
+1196,362.735,2.75684,1.42704,0.010688,0.294048,0.00496,0.00544,0.00688,1.09466,0.010368
+1197,373.45,2.67773,1.3911,0.010752,0.249248,0.004704,0.00576,0.006528,1.10387,0.01024
+1198,325.752,3.06982,1.38838,0.01056,0.265888,0.004448,0.006016,0.006272,1.0848,0.0104
+1199,383.88,2.60498,1.40493,0.011904,0.231808,0.004096,0.006176,0.007296,1.13341,0.01024
+1200,376.263,2.65771,1.37219,0.01024,0.231424,0.0056,0.004672,0.007904,1.10208,0.010272
+1201,343.049,2.91504,1.46061,0.010944,0.296928,0.006144,0.005696,0.006592,1.12426,0.010048
+1202,339.973,2.94141,1.41725,0.011552,0.230112,0.006144,0.005664,0.006624,1.14688,0.010272
+1203,330.003,3.03027,1.39744,0.010976,0.257792,0.00432,0.006144,0.0072,1.10077,0.01024
+1204,381.023,2.62451,1.37299,0.010752,0.235872,0.00592,0.005536,0.007008,1.09754,0.010368
+1205,341.276,2.93018,1.36678,0.010912,0.23472,0.004992,0.005568,0.00672,1.09363,0.01024
+1206,356.484,2.80518,1.40179,0.011232,0.264192,0.005376,0.004832,0.007904,1.09802,0.01024
+1207,389.502,2.56738,1.37888,0.010688,0.237568,0.004096,0.006144,0.007648,1.10237,0.010368
+1208,265.01,3.77344,1.45011,0.010368,0.243264,0.004544,0.005888,0.0064,1.16941,0.01024
+1209,366.894,2.72559,1.41219,0.011328,0.248672,0.004192,0.006176,0.007232,1.12451,0.01008
+1210,285.595,3.50146,1.41104,0.01056,0.266208,0.005376,0.004864,0.00768,1.10608,0.010272
+1211,394.225,2.53662,1.38038,0.010464,0.235168,0.004416,0.006048,0.006272,1.10768,0.010336
+1212,350.085,2.85645,1.37594,0.011488,0.231488,0.004832,0.005536,0.006752,1.10566,0.010176
+1213,336.731,2.96973,1.39242,0.011616,0.240288,0.005728,0.004704,0.007872,1.11149,0.01072
+1214,377.93,2.646,1.39885,0.011712,0.233696,0.004448,0.005952,0.007552,1.12518,0.010304
+1215,368.544,2.71338,1.40614,0.011648,0.2464,0.004096,0.006144,0.007456,1.12019,0.010208
+1216,385.76,2.59229,1.37926,0.01088,0.241152,0.004928,0.005504,0.006784,1.09978,0.01024
+1217,380.811,2.62598,1.368,0.01184,0.229824,0.005216,0.005024,0.007904,1.09792,0.010272
+1218,364.997,2.73975,1.42138,0.010976,0.250016,0.005568,0.004704,0.008,1.13178,0.010336
+1219,370.344,2.7002,1.38854,0.010272,0.25392,0.005376,0.004864,0.007904,1.09597,0.01024
+1220,311.957,3.20557,1.42829,0.010528,0.257632,0.00496,0.005504,0.00688,1.13254,0.01024
+1221,388.615,2.57324,1.37789,0.010432,0.234496,0.004928,0.005472,0.006816,1.1055,0.01024
+1222,364.802,2.74121,1.37626,0.010496,0.239136,0.00432,0.006144,0.0072,1.09872,0.01024
+1223,362.157,2.76123,1.3943,0.01072,0.24368,0.004288,0.006144,0.00736,1.11085,0.011264
+1224,401.805,2.48877,1.37686,0.010848,0.231424,0.00576,0.005504,0.007104,1.10595,0.010272
+1225,320.15,3.12354,1.42899,0.011616,0.281248,0.005696,0.004704,0.007808,1.10755,0.010368
+1226,395.367,2.5293,1.39878,0.011296,0.234496,0.005376,0.004832,0.007712,1.12483,0.01024
+1227,384.312,2.60205,1.37005,0.010272,0.229344,0.005856,0.005536,0.00704,1.10182,0.010176
+1228,353.469,2.8291,1.4312,0.011776,0.273216,0.005184,0.005024,0.008192,1.1176,0.010208
+1229,397.13,2.51807,1.36365,0.011744,0.227872,0.005504,0.004736,0.00784,1.09581,0.010144
+1230,329.419,3.03564,1.37638,0.010368,0.230464,0.004928,0.005472,0.006944,1.10797,0.01024
+1231,383.234,2.60938,1.38189,0.011616,0.234176,0.005856,0.0056,0.006944,1.10742,0.010272
+1232,286.353,3.49219,1.3808,0.010848,0.229344,0.00528,0.00496,0.00768,1.11245,0.01024
+1233,378.139,2.64453,1.37674,0.010336,0.239488,0.004608,0.005824,0.006464,1.09978,0.01024
+1234,377.93,2.646,1.37446,0.010496,0.23552,0.005856,0.005472,0.007104,1.09968,0.010336
+1235,349.071,2.86475,1.38854,0.010432,0.241472,0.005952,0.005504,0.007008,1.10765,0.010528
+1236,389.502,2.56738,1.3783,0.011296,0.236512,0.005472,0.004768,0.007808,1.10221,0.01024
+1237,370.545,2.69873,1.38829,0.01024,0.239616,0.005824,0.005568,0.00704,1.1096,0.0104
+1238,349.906,2.85791,1.48195,0.011872,0.344512,0.005696,0.005536,0.007072,1.09696,0.010304
+1239,366.434,2.729,1.37216,0.012288,0.23104,0.00448,0.005952,0.006336,1.10182,0.01024
+1240,321.659,3.10889,1.39459,0.010272,0.237184,0.004448,0.005952,0.006336,1.1201,0.010304
+1241,393.241,2.54297,1.38899,0.010688,0.229376,0.004192,0.006048,0.007328,1.12112,0.01024
+1242,375.435,2.66357,1.38035,0.01024,0.229376,0.005824,0.005472,0.007136,1.11206,0.01024
+1243,170.057,5.88037,1.39878,0.012288,0.25104,0.00496,0.005504,0.006784,1.10797,0.01024
+1244,371.149,2.69434,1.39034,0.01024,0.243168,0.00464,0.00576,0.006528,1.10966,0.010336
+1245,401.333,2.4917,1.37046,0.010912,0.231328,0.004192,0.006176,0.007168,1.1,0.010688
+1246,349.667,2.85986,1.39059,0.01024,0.2408,0.004992,0.005472,0.006784,1.11206,0.01024
+1247,369.275,2.70801,1.41098,0.012,0.256288,0.004128,0.006112,0.007648,1.11443,0.010368
+1248,346.649,2.88477,1.38858,0.01024,0.228672,0.0048,0.005568,0.00672,1.10778,0.0248
+1249,342.36,2.9209,1.39242,0.012288,0.239616,0.005568,0.004704,0.007904,1.11136,0.010976
+1250,389.428,2.56787,1.37613,0.010464,0.23728,0.004384,0.006144,0.007488,1.1001,0.010272
+1251,381.52,2.62109,1.38083,0.010592,0.2336,0.00528,0.00496,0.00752,1.10864,0.01024
+1252,340.765,2.93457,1.47293,0.010656,0.333824,0.005248,0.004992,0.007968,1.1,0.01024
+1253,391.213,2.55615,1.37376,0.010432,0.229216,0.005408,0.004832,0.007776,1.10582,0.010272
+1254,310.397,3.22168,1.44794,0.011936,0.288224,0.004928,0.00544,0.006912,1.12026,0.01024
+1255,381.662,2.62012,1.3831,0.010976,0.23344,0.005856,0.005504,0.007072,1.11002,0.01024
+1256,354.08,2.82422,1.39574,0.01024,0.231456,0.005504,0.004704,0.00816,1.12438,0.011296
+1257,364.348,2.74463,1.42416,0.011072,0.290336,0.004544,0.00592,0.006368,1.09568,0.01024
+1258,383.952,2.60449,1.37011,0.010272,0.23344,0.005152,0.00512,0.007488,1.0984,0.01024
+1259,259.339,3.85596,1.41088,0.010432,0.243008,0.004768,0.02048,0.008,1.11408,0.010112
+1260,391.887,2.55176,1.38832,0.01072,0.23536,0.004256,0.006144,0.006176,1.11523,0.010432
+1261,326.115,3.06641,1.39882,0.011872,0.233888,0.005568,0.004704,0.007936,1.12458,0.010272
+1262,388.32,2.5752,1.37834,0.011552,0.234208,0.005152,0.005088,0.00768,1.10438,0.010272
+1263,400,2.5,1.37056,0.010688,0.232928,0.00464,0.005728,0.007808,1.09853,0.01024
+1264,257.254,3.88721,1.39594,0.011904,0.25024,0.005888,0.00544,0.007136,1.10502,0.010304
+1265,364.154,2.74609,1.4232,0.01184,0.2544,0.005472,0.004768,0.007936,1.12848,0.010304
+1266,339.635,2.94434,1.39072,0.011648,0.240256,0.005888,0.005472,0.007072,1.11002,0.010368
+1267,379.963,2.63184,1.3952,0.01072,0.233472,0.005664,0.004704,0.00784,1.12253,0.010272
+1268,352.435,2.8374,1.38886,0.01056,0.229568,0.004096,0.006144,0.00736,1.12086,0.010272
+1269,362.414,2.75928,1.37939,0.01184,0.239872,0.004288,0.006112,0.006208,1.10086,0.010208
+1270,339.073,2.94922,1.44806,0.0104,0.308416,0.004896,0.0056,0.006688,1.10182,0.01024
+1271,353.713,2.82715,1.40278,0.010784,0.24576,0.005888,0.005504,0.00704,1.1175,0.010304
+1272,393.619,2.54053,1.42634,0.010944,0.231776,0.005152,0.005088,0.007488,1.15562,0.010272
+1273,340.03,2.94092,1.39878,0.0104,0.23536,0.0056,0.004704,0.007808,1.12467,0.01024
+1274,367.223,2.72314,1.40467,0.011552,0.236256,0.005824,0.005504,0.007072,1.12826,0.010208
+1275,307,3.25732,1.39661,0.011808,0.232992,0.00496,0.005472,0.006912,1.1241,0.010368
+1276,282.561,3.53906,1.42534,0.010336,0.272384,0.005888,0.005472,0.007072,1.11392,0.010272
+1277,389.354,2.56836,1.38464,0.010464,0.237248,0.004384,0.006048,0.00752,1.10874,0.01024
+1278,327.157,3.05664,1.40083,0.011424,0.252768,0.00576,0.004704,0.007936,1.108,0.01024
+1279,370.88,2.69629,1.42288,0.010336,0.235488,0.00592,0.005504,0.007008,1.14842,0.010208
+1280,369.009,2.70996,1.37453,0.01056,0.230912,0.004608,0.005792,0.006496,1.10592,0.01024
+1281,290.208,3.4458,1.51965,0.023808,0.346912,0.005216,0.004992,0.007616,1.12083,0.010272
+1282,337.119,2.96631,1.40227,0.011488,0.253792,0.004928,0.005536,0.00688,1.10941,0.01024
+1283,351.89,2.8418,1.38502,0.010816,0.247712,0.004224,0.006144,0.0072,1.09869,0.01024
+1284,396.592,2.52148,1.38202,0.01024,0.233248,0.00432,0.006144,0.00624,1.10992,0.011904
+1285,309.834,3.22754,1.38474,0.010496,0.236896,0.004768,0.005696,0.006592,1.11002,0.010272
+1286,368.876,2.71094,1.44589,0.022464,0.275584,0.004928,0.005856,0.00656,1.12026,0.01024
+1287,356.298,2.80664,1.36816,0.010336,0.23328,0.004288,0.006144,0.006272,1.0976,0.01024
+1288,357.479,2.79736,1.45306,0.011776,0.317952,0.004096,0.006144,0.007424,1.0944,0.011264
+1289,403.07,2.48096,1.36973,0.0104,0.229344,0.004096,0.006144,0.007296,1.10214,0.010304
+1290,333.225,3.00098,1.3816,0.010272,0.231328,0.00416,0.006144,0.007232,1.1121,0.010368
+1291,326.687,3.06104,1.4072,0.010464,0.237568,0.005376,0.004896,0.007584,1.13107,0.01024
+1292,347.295,2.87939,1.39619,0.01184,0.239968,0.004192,0.006144,0.006304,1.11744,0.010304
+1293,333.442,2.99902,1.42784,0.010656,0.278496,0.005568,0.004704,0.008,1.11014,0.010272
+1294,341.049,2.93213,1.40208,0.012128,0.24592,0.004096,0.006176,0.007296,1.11619,0.010272
+1295,337.564,2.9624,1.41722,0.011456,0.250528,0.004256,0.006144,0.007616,1.12698,0.01024
+1296,384.312,2.60205,1.3783,0.010272,0.23488,0.004704,0.005792,0.006496,1.10582,0.010336
+1297,277.808,3.59961,1.4129,0.01024,0.249856,0.005376,0.004864,0.007936,1.12442,0.010208
+1298,357.23,2.79932,1.39222,0.010272,0.247616,0.004256,0.006144,0.00752,1.10624,0.010176
+1299,336.123,2.9751,1.40093,0.010336,0.245088,0.004768,0.005696,0.006592,1.11821,0.01024
+1300,346.004,2.89014,1.42586,0.011232,0.278528,0.00576,0.005504,0.007072,1.10739,0.010368
+1301,385.107,2.59668,1.38464,0.011104,0.235424,0.00416,0.006176,0.007168,1.11043,0.010176
+1302,305.034,3.27832,1.38016,0.011392,0.232352,0.005376,0.004832,0.008,1.10778,0.010432
+1303,362.221,2.76074,1.38653,0.01168,0.238176,0.004192,0.006048,0.007424,1.10874,0.010272
+1304,318.755,3.13721,1.39168,0.0104,0.24304,0.004608,0.005792,0.006528,1.11002,0.011296
+1305,239.785,4.17041,1.39059,0.011552,0.236256,0.006144,0.005472,0.006816,1.11411,0.01024
+1306,309.927,3.22656,1.37728,0.011552,0.235232,0.004928,0.005472,0.00704,1.10179,0.011264
+1307,378.558,2.6416,1.4439,0.010304,0.288768,0.005632,0.004704,0.008096,1.11619,0.010208
+1308,381.236,2.62305,1.3801,0.010784,0.232576,0.004896,0.005504,0.00688,1.10909,0.010368
+1309,354.019,2.82471,1.4567,0.010816,0.321536,0.005152,0.00512,0.00752,1.09632,0.01024
+1310,394.605,2.53418,1.38762,0.012256,0.230624,0.00496,0.005472,0.006784,1.11731,0.010208
+1311,323.743,3.08887,1.36954,0.01024,0.234496,0.005024,0.005568,0.006848,1.09706,0.010304
+1312,291.281,3.43311,1.3968,0.027072,0.231712,0.0056,0.004704,0.00784,1.1096,0.010272
+1313,315.417,3.17041,1.38982,0.011776,0.23552,0.004608,0.005792,0.006496,1.11539,0.01024
+1314,384.601,2.6001,1.37603,0.010784,0.23552,0.005888,0.005472,0.00704,1.10096,0.010368
+1315,377.86,2.64648,1.3865,0.01024,0.23552,0.005216,0.005024,0.007488,1.11277,0.01024
+1316,361.327,2.76758,1.39443,0.010784,0.235584,0.005376,0.004896,0.007648,1.11987,0.010272
+1317,398.599,2.50879,1.38384,0.0104,0.230624,0.004864,0.005504,0.006784,1.11536,0.010304
+1318,305.991,3.26807,1.37952,0.011552,0.24864,0.00576,0.005568,0.007104,1.09078,0.010112
+1319,360.69,2.77246,1.44384,0.011808,0.270816,0.004096,0.006144,0.007296,1.13347,0.010208
+1320,381.236,2.62305,1.3879,0.010496,0.231424,0.00528,0.00496,0.007648,1.11782,0.010272
+1321,350.565,2.85254,1.40288,0.01168,0.259744,0.00496,0.005472,0.006912,1.10387,0.01024
+1322,399.065,2.50586,1.37002,0.011936,0.23328,0.00464,0.005856,0.006432,1.0975,0.010368
+1323,258.978,3.86133,1.37834,0.01056,0.2296,0.005248,0.00496,0.007744,1.10995,0.010272
+1324,357.168,2.7998,1.40493,0.011488,0.262592,0.004448,0.005984,0.006304,1.1039,0.010208
+1325,390.318,2.56201,1.36397,0.01024,0.231424,0.005248,0.004992,0.007584,1.09418,0.010304
+1326,376.056,2.65918,1.43302,0.01024,0.27648,0.005664,0.004704,0.007936,1.11763,0.010368
+1327,386.926,2.58447,1.40083,0.011872,0.23744,0.004672,0.00576,0.006528,1.12432,0.01024
+1328,325.131,3.07568,1.38166,0.01024,0.230944,0.004576,0.006048,0.00624,1.11334,0.010272
+1329,381.307,2.62256,1.42131,0.011744,0.289312,0.005472,0.004768,0.007776,1.092,0.01024
+1330,364.607,2.74268,1.36605,0.011776,0.233984,0.004096,0.006176,0.007264,1.09251,0.01024
+1331,376.748,2.6543,1.38765,0.011008,0.243968,0.004256,0.005984,0.007424,1.10464,0.010368
+1332,375.642,2.66211,1.3687,0.010848,0.232768,0.004928,0.00544,0.006944,1.09763,0.010144
+1333,332.738,3.00537,1.43222,0.010912,0.28592,0.004896,0.015904,0.006688,1.09766,0.01024
+1334,312.863,3.19629,1.37594,0.011296,0.232448,0.00544,0.004768,0.007968,1.10349,0.010528
+1335,332.144,3.01074,1.40291,0.011872,0.241408,0.004768,0.005984,0.006304,1.1223,0.010272
+1336,339.073,2.94922,1.37184,0.010528,0.241664,0.005536,0.004704,0.007968,1.09114,0.010304
+1337,394.301,2.53613,1.3865,0.011456,0.234304,0.005536,0.005952,0.00688,1.1121,0.010272
+1338,350.565,2.85254,1.3911,0.010656,0.237536,0.005312,0.004928,0.007776,1.11453,0.010368
+1339,352.617,2.83594,1.38077,0.010656,0.23552,0.005312,0.004928,0.007776,1.10634,0.01024
+1340,351.106,2.84814,1.38653,0.010304,0.233472,0.00528,0.00496,0.008064,1.11421,0.01024
+1341,365.91,2.73291,1.3791,0.01104,0.236864,0.0048,0.005728,0.006592,1.10384,0.01024
+1342,386.926,2.58447,1.38822,0.010272,0.235328,0.004256,0.006144,0.007424,1.11453,0.010272
+1343,365.127,2.73877,1.3824,0.01136,0.235488,0.004928,0.005472,0.006944,1.10797,0.01024
+1344,411.741,2.42871,1.37075,0.010528,0.231776,0.00544,0.0048,0.007872,1.1001,0.01024
+1345,357.979,2.79346,1.40922,0.010432,0.2376,0.005472,0.004736,0.007904,1.13392,0.009152
+1346,296.082,3.37744,1.55302,0.010816,0.3976,0.005216,0.005024,0.02016,1.10413,0.01008
+1347,368.943,2.71045,1.41251,0.010368,0.249184,0.004768,0.005696,0.006592,1.12563,0.010272
+1348,327.732,3.05127,1.43469,0.010272,0.28672,0.005792,0.00544,0.007104,1.10918,0.010176
+1349,393.166,2.54346,1.38349,0.010112,0.229504,0.005504,0.004736,0.007904,1.11546,0.010272
+1350,348.714,2.86768,1.37856,0.01008,0.231648,0.004288,0.00608,0.006304,1.10992,0.01024
+1351,281.977,3.54639,1.39571,0.011168,0.249952,0.005696,0.004704,0.007904,1.10605,0.01024
+1352,344.781,2.90039,1.38355,0.012,0.239936,0.005536,0.004704,0.008,1.10198,0.011392
+1353,366.762,2.72656,1.43155,0.01024,0.280128,0.004544,0.005984,0.006304,1.11411,0.01024
+1354,386.051,2.59033,1.38032,0.011616,0.233664,0.004576,0.0056,0.006688,1.10778,0.0104
+1355,325.441,3.07275,1.44221,0.010656,0.280576,0.005792,0.005536,0.019392,1.11002,0.01024
+1356,316.685,3.15771,1.38416,0.01024,0.233472,0.005152,0.005088,0.007488,1.11245,0.010272
+1357,300.911,3.32324,1.38262,0.010464,0.23664,0.004928,0.005504,0.006912,1.10794,0.01024
+1358,405.464,2.46631,1.39062,0.011616,0.232096,0.004096,0.006144,0.007296,1.1191,0.010272
+1359,411.824,2.42822,1.36416,0.009856,0.225856,0.005472,0.004768,0.007776,1.10019,0.01024
+1360,309.974,3.22607,1.45408,0.010272,0.30464,0.004576,0.005984,0.006336,1.11203,0.01024
+1361,400.94,2.49414,1.36006,0.01104,0.228704,0.004832,0.005568,0.00672,1.0929,0.010304
+1362,315.708,3.16748,1.41814,0.01088,0.267936,0.004736,0.00608,0.006208,1.11206,0.01024
+1363,368.876,2.71094,1.37981,0.011904,0.235904,0.004288,0.005952,0.00752,1.104,0.01024
+1364,394.377,2.53564,1.3847,0.01088,0.239616,0.005472,0.004768,0.008032,1.1056,0.010336
+1365,365.976,2.73242,1.40288,0.010368,0.249536,0.004288,0.006112,0.006272,1.11606,0.01024
+1366,342.189,2.92236,1.39622,0.011584,0.242368,0.005568,0.004704,0.008,1.11376,0.01024
+1367,261.692,3.82129,1.38832,0.010432,0.23696,0.004704,0.00576,0.006528,1.11366,0.010272
+1368,390.989,2.55762,1.37853,0.010464,0.23552,0.0056,0.004704,0.007872,1.10413,0.01024
+1369,331.714,3.01465,1.42419,0.010752,0.270752,0.006144,0.005856,0.006432,1.11408,0.010176
+1370,366.894,2.72559,1.39482,0.012288,0.239616,0.00544,0.0048,0.007808,1.1145,0.010368
+1371,402.832,2.48242,1.3865,0.0104,0.230784,0.004576,0.005952,0.006336,1.11821,0.01024
+1372,353.713,2.82715,1.42006,0.023328,0.246944,0.004896,0.00544,0.006848,1.1223,0.010304
+1373,376.332,2.65723,1.46922,0.010784,0.323168,0.004768,0.005696,0.006624,1.10794,0.01024
+1374,396.438,2.52246,1.39558,0.009088,0.247808,0.004256,0.005984,0.007744,1.11046,0.01024
+1375,350.325,2.85449,1.43341,0.010816,0.286688,0.00416,0.00608,0.007456,1.1079,0.010304
+1376,406.43,2.46045,1.36858,0.010912,0.22848,0.00496,0.005472,0.006816,1.10173,0.010208
+1377,337.397,2.96387,1.37584,0.01024,0.231424,0.004096,0.006144,0.007328,1.10634,0.010272
+1378,390.84,2.55859,1.37834,0.010432,0.23856,0.004992,0.006112,0.007328,1.10064,0.010272
+1379,375.504,2.66309,1.39725,0.010752,0.231424,0.005312,0.004928,0.007552,1.12704,0.01024
+1380,371.351,2.69287,1.39466,0.011008,0.253216,0.004896,0.005472,0.006912,1.10182,0.011328
+1381,358.983,2.78564,1.38477,0.010656,0.237664,0.004256,0.006176,0.006112,1.10976,0.010144
+1382,318.111,3.14355,1.37619,0.010784,0.233824,0.004096,0.006144,0.007392,1.10365,0.010304
+1383,384.24,2.60254,1.41635,0.011328,0.23168,0.0048,0.005632,0.006656,1.14598,0.010272
+1384,376.471,2.65625,1.38035,0.01024,0.241664,0.005408,0.004832,0.007744,1.10003,0.010432
+1385,321.76,3.10791,1.41517,0.011744,0.277024,0.004096,0.006144,0.007712,1.09821,0.01024
+1386,392.713,2.54639,1.37219,0.01152,0.230144,0.005952,0.00544,0.00704,1.10182,0.010272
+1387,296.039,3.37793,1.38038,0.0104,0.23536,0.005888,0.005472,0.007072,1.10592,0.010272
+1388,378.558,2.6416,1.36742,0.012032,0.229632,0.005472,0.0048,0.00816,1.09702,0.010304
+1389,387.805,2.57861,1.37405,0.010432,0.231264,0.005856,0.0056,0.006944,1.10368,0.010272
+1390,260.064,3.84521,1.46227,0.012288,0.296512,0.004544,0.00608,0.006272,1.12141,0.015168
+1391,367.091,2.72412,1.3783,0.011488,0.228128,0.00528,0.00496,0.007616,1.11059,0.01024
+1392,384.096,2.60352,1.40438,0.01024,0.231456,0.005696,0.004704,0.007968,1.13414,0.010176
+1393,372.77,2.68262,1.38058,0.010752,0.235744,0.005856,0.005472,0.00704,1.10563,0.01008
+1394,358.858,2.78662,1.38374,0.01024,0.231456,0.005408,0.0048,0.007808,1.1137,0.010336
+1395,372.431,2.68506,1.38198,0.012096,0.235712,0.004096,0.006144,0.007328,1.10474,0.011872
+1396,320.2,3.12305,1.4608,0.010784,0.31504,0.00576,0.004864,0.007936,1.10618,0.01024
+1397,373.314,2.67871,1.42291,0.01136,0.250784,0.005184,0.005056,0.007744,1.13248,0.010304
+1398,403.388,2.479,1.38416,0.010464,0.231392,0.005472,0.004768,0.007808,1.11414,0.010112
+1399,333.008,3.00293,1.38755,0.01024,0.2408,0.004928,0.005472,0.006848,1.10902,0.01024
+1400,382.518,2.61426,1.37763,0.01024,0.241152,0.004608,0.00592,0.006368,1.09882,0.010528
+1401,329.791,3.03223,1.43798,0.01856,0.282496,0.004224,0.006144,0.006336,1.10995,0.010272
+1402,353.774,2.82666,1.39469,0.010176,0.255968,0.004192,0.006144,0.007904,1.10006,0.01024
+1403,381.236,2.62305,1.37101,0.01104,0.233536,0.004128,0.006144,0.0072,1.09872,0.01024
+1404,341.22,2.93066,1.39331,0.010208,0.229888,0.004256,0.006144,0.007648,1.12592,0.009248
+1405,366.631,2.72754,1.38445,0.01024,0.23552,0.005792,0.005472,0.007072,1.11011,0.01024
+1406,378.139,2.64453,1.38854,0.011328,0.233824,0.004704,0.005664,0.006624,1.11616,0.01024
+1407,364.283,2.74512,1.38854,0.010368,0.241536,0.005504,0.004736,0.007808,1.10835,0.01024
+1408,367.025,2.72461,1.38522,0.010752,0.235072,0.00496,0.005472,0.006848,1.11171,0.0104
+1409,363.121,2.75391,1.35203,0.010592,0.227328,0.005856,0.005504,0.007072,1.08544,0.01024
+1410,372.567,2.68408,1.37421,0.011808,0.236032,0.005216,0.005024,0.007584,1.0983,0.01024
+1411,386.561,2.58691,1.3783,0.01024,0.235168,0.004448,0.005984,0.006304,1.10592,0.01024
+1412,260.726,3.83545,1.36566,0.011328,0.232384,0.005408,0.004832,0.007776,1.09325,0.010688
+1413,395.367,2.5293,1.3783,0.011968,0.229696,0.005664,0.004704,0.00784,1.1081,0.010336
+1414,304.264,3.28662,1.37024,0.010368,0.23552,0.005824,0.005472,0.007072,1.09574,0.01024
+1415,409.354,2.44287,1.39091,0.010464,0.2328,0.0048,0.005568,0.00672,1.12035,0.010208
+1416,381.023,2.62451,1.35578,0.011296,0.227424,0.00496,0.0056,0.00672,1.08947,0.010304
+1417,274.789,3.63916,1.39075,0.010432,0.260064,0.00576,0.005536,0.007072,1.09165,0.01024
+1418,392.713,2.54639,1.36192,0.011552,0.234208,0.00544,0.0048,0.007808,1.08787,0.01024
+1419,369.342,2.70752,1.36397,0.011392,0.232192,0.004224,0.006144,0.007424,1.09235,0.01024
+1420,393.09,2.54395,1.36614,0.010624,0.235584,0.005856,0.005472,0.007104,1.09123,0.010272
+1421,395.596,2.52783,1.3697,0.010656,0.230752,0.004896,0.005472,0.006848,1.10122,0.009856
+1422,392.488,2.54785,1.38445,0.012288,0.241536,0.004224,0.006144,0.0072,1.10282,0.01024
+1423,257.675,3.88086,1.39226,0.01136,0.232352,0.005408,0.004832,0.007744,1.11987,0.010688
+1424,310.774,3.21777,1.38909,0.010816,0.261152,0.005056,0.005472,0.006816,1.08954,0.01024
+1425,389.206,2.56934,1.38854,0.011904,0.249824,0.004512,0.006176,0.007264,1.09862,0.01024
+1426,278.11,3.5957,1.3783,0.01024,0.235392,0.004224,0.006144,0.007168,1.1049,0.01024
+1427,388.615,2.57324,1.36886,0.010912,0.235072,0.004832,0.005536,0.006752,1.09542,0.010336
+1428,259.866,3.84814,1.38198,0.01136,0.226208,0.005344,0.004896,0.007776,1.10019,0.026208
+1429,337.898,2.95947,1.3912,0.010848,0.257408,0.004704,0.005792,0.006496,1.09558,0.010368
+1430,363.185,2.75342,1.37152,0.01184,0.240064,0.005152,0.005088,0.007648,1.09139,0.010336
+1431,380.74,2.62646,1.3824,0.011616,0.232096,0.004096,0.006144,0.007328,1.11088,0.01024
+1432,355.432,2.81348,1.38035,0.010336,0.245024,0.004736,0.005696,0.006624,1.0977,0.01024
+1433,226.074,4.42334,1.38826,0.011616,0.232096,0.005248,0.004992,0.00784,1.11616,0.010304
+1434,335.243,2.98291,1.42269,0.011872,0.29328,0.006048,0.005472,0.006912,1.0887,0.0104
+1435,301.576,3.31592,1.41315,0.012288,0.278528,0.005664,0.004704,0.007936,1.09344,0.010592
+1436,341.846,2.92529,1.34675,0.012288,0.23472,0.004896,0.005472,0.006816,1.0711,0.011456
+1437,321.911,3.10645,1.37002,0.011264,0.24064,0.005248,0.004992,0.007872,1.08986,0.010144
+1438,340.03,2.94092,1.40931,0.011104,0.267872,0.004512,0.005888,0.0064,1.10336,0.010176
+1439,363.572,2.75049,1.35194,0.010464,0.234112,0.005344,0.004896,0.00768,1.0792,0.01024
+1440,368.544,2.71338,1.42038,0.01024,0.292256,0.004704,0.005824,0.006464,1.08954,0.01136
+1441,350.385,2.854,1.37626,0.011936,0.235872,0.005792,0.005472,0.007168,1.09978,0.01024
+1442,324.461,3.08203,1.41722,0.012032,0.284928,0.02048,0.006144,0.007776,1.07562,0.01024
+1443,349.012,2.86523,1.36285,0.010752,0.233632,0.004352,0.006048,0.006272,1.09155,0.01024
+1444,320.953,3.11572,1.40131,0.010752,0.249216,0.004704,0.005728,0.00656,1.11414,0.010208
+1445,360.373,2.7749,1.37626,0.010496,0.249824,0.005728,0.004704,0.00784,1.08733,0.010336
+1446,383.952,2.60449,1.37136,0.010464,0.2376,0.005696,0.005824,0.00688,1.09475,0.010144
+1447,297.761,3.3584,1.41357,0.010688,0.26624,0.005888,0.005472,0.007104,1.10794,0.01024
+1448,367.157,2.72363,1.42218,0.018688,0.2928,0.0048,0.00576,0.006496,1.08339,0.01024
+1449,314.448,3.18018,1.37011,0.01024,0.249856,0.005888,0.005504,0.00704,1.08131,0.010272
+1450,353.591,2.82812,1.4193,0.01024,0.284672,0.004192,0.006048,0.016064,1.08781,0.010272
+1451,365.518,2.73584,1.39427,0.010528,0.24576,0.005312,0.004928,0.008192,1.10915,0.0104
+1452,360.183,2.77637,1.43123,0.011968,0.309568,0.005152,0.005088,0.007488,1.08179,0.010176
+1453,339.017,2.94971,1.38803,0.01072,0.257216,0.004896,0.005472,0.006848,1.09158,0.011296
+1454,313.918,3.18555,1.41725,0.011072,0.262112,0.005408,0.004832,0.007744,1.11578,0.010304
+1455,362.35,2.75977,1.37638,0.011744,0.24016,0.005888,0.005472,0.007072,1.09568,0.010368
+1456,306.22,3.26562,1.37485,0.010752,0.248192,0.0056,0.004704,0.007904,1.08742,0.010272
+1457,366.762,2.72656,1.3681,0.012096,0.241792,0.00416,0.006144,0.006368,1.08726,0.010272
+1458,371.486,2.69189,1.37453,0.01056,0.240832,0.004928,0.005984,0.006336,1.09565,0.01024
+1459,309.834,3.22754,1.37962,0.011648,0.25664,0.005344,0.004896,0.00768,1.0833,0.010112
+1460,374.269,2.67188,1.39674,0.011456,0.266592,0.004576,0.006112,0.0072,1.09059,0.010208
+1461,314.448,3.18018,1.3712,0.010272,0.255104,0.004928,0.005504,0.006816,1.0783,0.010272
+1462,365.518,2.73584,1.35968,0.012128,0.23568,0.005728,0.004704,0.007872,1.0833,0.010272
+1463,365.584,2.73535,1.39264,0.012128,0.263936,0.004512,0.00592,0.006368,1.08954,0.01024
+1464,370.277,2.70068,1.40288,0.01024,0.29696,0.005632,0.004672,0.007872,1.06726,0.01024
+1465,265.422,3.76758,1.37216,0.011872,0.23904,0.005088,0.005824,0.006464,1.09363,0.01024
+1466,358.983,2.78564,1.41517,0.010272,0.296928,0.004096,0.006144,0.007616,1.07987,0.01024
+1467,391.812,2.55225,1.35773,0.0104,0.233472,0.00576,0.004704,0.007872,1.08528,0.01024
+1468,323.641,3.08984,1.35216,0.010592,0.233984,0.00608,0.005568,0.006784,1.07872,0.010432
+1469,386.415,2.58789,1.38038,0.01024,0.237088,0.004576,0.005792,0.006528,1.10589,0.010272
+1470,351.83,2.84229,1.36074,0.01072,0.231808,0.004192,0.00608,0.007296,1.09043,0.010208
+1471,373.927,2.67432,1.38259,0.010464,0.26416,0.005312,0.004928,0.007648,1.07984,0.01024
+1472,414.911,2.41016,1.37466,0.010848,0.231712,0.00592,0.00544,0.007072,1.10326,0.0104
+1473,336.179,2.97461,1.34112,0.0104,0.228928,0.004544,0.00592,0.006368,1.07462,0.010336
+1474,408.131,2.4502,1.34557,0.010304,0.23552,0.005856,0.005504,0.00704,1.0711,0.01024
+1475,421.746,2.37109,1.35789,0.010016,0.229952,0.004352,0.006112,0.006272,1.0911,0.01008
+1476,295.441,3.38477,1.34512,0.010336,0.227264,0.005792,0.005504,0.007136,1.07869,0.0104
+1477,399.142,2.50537,1.38019,0.011616,0.233664,0.004576,0.00592,0.007456,1.10666,0.010304
+1478,383.521,2.60742,1.35987,0.01024,0.229408,0.005248,0.004992,0.00752,1.09222,0.01024
+1479,403.706,2.47705,1.35872,0.011008,0.235296,0.004416,0.006016,0.006272,1.08544,0.010272
+1480,405.545,2.46582,1.35021,0.010784,0.233376,0.004192,0.006144,0.00752,1.07792,0.010272
+1481,355.432,2.81348,1.364,0.010368,0.227008,0.004288,0.00608,0.006208,1.09978,0.010272
+1482,389.058,2.57031,1.36624,0.010496,0.24368,0.004288,0.005952,0.007456,1.08413,0.01024
+1483,389.724,2.56592,1.34349,0.011456,0.231424,0.004928,0.005536,0.006752,1.07315,0.01024
+1484,375.918,2.66016,1.3824,0.011584,0.256544,0.004256,0.006144,0.006144,1.08752,0.010208
+1485,417.874,2.39307,1.34963,0.01024,0.232864,0.004704,0.006144,0.006336,1.0791,0.01024
+1486,373.927,2.67432,1.36192,0.01152,0.232192,0.005728,0.004736,0.007904,1.0896,0.01024
+1487,373.246,2.6792,1.42355,0.010432,0.299008,0.015424,0.00512,0.007936,1.07539,0.01024
+1488,383.234,2.60938,1.35824,0.010752,0.229568,0.00544,0.0048,0.007776,1.0897,0.010208
+1489,357.417,2.79785,1.37162,0.01152,0.240384,0.00576,0.004704,0.007872,1.09107,0.010304
+1490,423.228,2.36279,1.34099,0.010656,0.231424,0.005184,0.005024,0.00752,1.06973,0.011456
+1491,383.736,2.60596,1.34736,0.010688,0.231232,0.004288,0.00608,0.006208,1.07856,0.010304
+1492,351.769,2.84277,1.41686,0.010464,0.298304,0.004768,0.005792,0.006496,1.08077,0.010272
+1493,414.323,2.41357,1.34762,0.010272,0.229344,0.005824,0.005472,0.007136,1.07926,0.010304
+1494,334.422,2.99023,1.34883,0.01024,0.229376,0.005632,0.004704,0.007808,1.08083,0.01024
+1495,324.976,3.07715,1.3905,0.010432,0.263616,0.004672,0.005792,0.006496,1.08925,0.01024
+1496,362.414,2.75928,1.34163,0.010432,0.239616,0.0056,0.004704,0.007808,1.06323,0.01024
+1497,363.249,2.75293,1.35763,0.011424,0.246528,0.004224,0.006112,0.007168,1.07194,0.01024
+1498,348.536,2.86914,1.38099,0.010944,0.24544,0.004416,0.006016,0.006272,1.09763,0.010272
+1499,263.85,3.79004,1.35613,0.010592,0.235552,0.005376,0.004832,0.007744,1.08179,0.01024
+1500,361.837,2.76367,1.3855,0.011936,0.256384,0.005664,0.005632,0.007104,1.08749,0.011296
+1501,303.452,3.29541,1.40538,0.01072,0.257376,0.004736,0.005664,0.006624,1.11002,0.01024
+1502,358.167,2.79199,1.36563,0.01072,0.238592,0.004928,0.005472,0.007008,1.08867,0.01024
+1503,344.202,2.90527,1.34816,0.01072,0.238112,0.00544,0.0048,0.007904,1.07082,0.010368
+1504,324.41,3.08252,1.39267,0.010272,0.278496,0.004192,0.006048,0.007392,1.076,0.010272
+1505,385.615,2.59326,1.35782,0.01184,0.24208,0.005152,0.00512,0.00752,1.07587,0.01024
+1506,340.143,2.93994,1.34422,0.010688,0.245536,0.004608,0.005856,0.006432,1.06086,0.01024
+1507,355.679,2.81152,1.37261,0.01072,0.243712,0.00576,0.005504,0.007136,1.08954,0.01024
+1508,337.842,2.95996,1.37174,0.01024,0.241664,0.005152,0.005088,0.007456,1.09184,0.010304
+1509,370.947,2.6958,1.41242,0.012,0.28672,0.004384,0.006144,0.007168,1.08586,0.010144
+1510,354.448,2.82129,1.35578,0.011328,0.237696,0.004896,0.005472,0.006848,1.07933,0.010208
+1511,335.298,2.98242,1.38304,0.01072,0.255808,0.004448,0.006016,0.006304,1.09056,0.009184
+1512,376.401,2.65674,1.36806,0.011648,0.234144,0.005504,0.004704,0.007904,1.09392,0.01024
+1513,331.07,3.02051,1.38451,0.010624,0.245728,0.004096,0.006144,0.00736,1.10029,0.010272
+1514,347.177,2.88037,1.35984,0.01056,0.243712,0.005664,0.004704,0.00784,1.07706,0.010304
+1515,344.839,2.8999,1.35987,0.011392,0.239584,0.004928,0.005536,0.006848,1.08134,0.01024
+1516,322.57,3.1001,1.37331,0.011552,0.2568,0.005856,0.005472,0.00704,1.0767,0.009888
+1517,388.467,2.57422,1.35517,0.012192,0.24176,0.004096,0.006144,0.007296,1.0735,0.010176
+1518,332.63,3.00635,1.35638,0.010752,0.23568,0.005696,0.004704,0.007904,1.08128,0.010368
+1519,361.263,2.76807,1.37216,0.02384,0.240352,0.00576,0.006016,0.006656,1.0793,0.01024
+1520,378.698,2.64062,1.34125,0.011712,0.233632,0.004512,0.005888,0.0064,1.0689,0.010208
+1521,344.781,2.90039,1.38352,0.012192,0.251936,0.00416,0.006144,0.007584,1.0912,0.010304
+1522,369.142,2.70898,1.36294,0.01088,0.239584,0.004512,0.00592,0.006368,1.08544,0.01024
+1523,325.079,3.07617,1.3353,0.011776,0.2336,0.00448,0.006176,0.007328,1.0617,0.01024
+1524,384.962,2.59766,1.35168,0.011744,0.232032,0.006112,0.0056,0.006656,1.0793,0.01024
+1525,367.75,2.71924,1.34163,0.010336,0.237056,0.004928,0.005472,0.00688,1.06678,0.010176
+1526,335.738,2.97852,1.3615,0.01024,0.241664,0.005664,0.005824,0.006944,1.08086,0.010304
+1527,375.298,2.66455,1.38442,0.010816,0.246944,0.00496,0.006144,0.007168,1.09824,0.010144
+1528,338.065,2.95801,1.35974,0.010784,0.239744,0.00592,0.005472,0.00704,1.08054,0.01024
+1529,383.88,2.60498,1.34144,0.01024,0.23728,0.004384,0.006016,0.006304,1.06698,0.01024
+1530,383.521,2.60742,1.3408,0.01024,0.233472,0.005856,0.005536,0.00704,1.06845,0.010208
+1531,350.925,2.84961,1.36602,0.011488,0.25808,0.004864,0.005536,0.006752,1.06906,0.01024
+1532,374.68,2.66895,1.34912,0.011328,0.240608,0.005312,0.004928,0.00768,1.06893,0.010336
+1533,312.433,3.20068,1.37014,0.011072,0.239392,0.00432,0.006144,0.007232,1.09178,0.010208
+1534,371.89,2.68896,1.35894,0.011296,0.240608,0.005152,0.005088,0.007648,1.07885,0.010304
+1535,366.107,2.73145,1.36301,0.01184,0.239584,0.004576,0.005792,0.006496,1.08349,0.011232
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..4146625
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,32.6632,30.6616,27.9301,0.0693853,0.844911,0.00738134,0.00549875,0.0284303,0.0953341,0.0975015,26.6679,0.113789
+max_1024,33.7909,81.8301,29.1652,0.247296,2.10547,0.024672,0.022752,0.04512,0.11968,0.115744,26.8852,0.13632
+min_1024,12.2204,29.5938,27.7233,0.067584,0.760064,0.006144,0.004064,0.02688,0.092832,0.096032,26.4749,0.111552
+512,32.3948,30.8691,28.0129,0.068416,0.837248,0.006528,0.005632,0.027136,0.095584,0.096928,26.7612,0.114208
+513,32.5141,30.7559,28.1764,0.06944,0.97504,0.007296,0.004992,0.028096,0.094784,0.097472,26.7858,0.113472
+514,32.9578,30.3418,28.0719,0.068192,0.847264,0.006752,0.00544,0.027328,0.095808,0.09776,26.8093,0.114048
+515,31.97,31.2793,27.9852,0.06944,0.81328,0.007744,0.004512,0.02864,0.094304,0.097792,26.7556,0.113888
+516,32.034,31.2168,27.9224,0.069632,0.765792,0.006304,0.005952,0.027904,0.094976,0.097664,26.7411,0.113152
+517,31.0303,32.2266,28.2273,0.068672,0.938944,0.00752,0.004768,0.04464,0.096544,0.096384,26.8554,0.1144
+518,33.0088,30.2949,28.0803,0.068832,0.817984,0.00624,0.005888,0.028352,0.094784,0.096416,26.8489,0.112832
+519,32.6927,30.5879,28.0616,0.068864,0.824096,0.007392,0.004896,0.028256,0.094624,0.09776,26.8212,0.11456
+520,32.9748,30.3262,28.0248,0.080576,0.80688,0.007616,0.004672,0.028416,0.094464,0.098208,26.79,0.113984
+521,32.4235,30.8418,28.0595,0.069632,0.83152,0.007808,0.004448,0.028544,0.095936,0.096704,26.8104,0.11456
+522,32.7911,30.4961,28.001,0.068256,0.80896,0.008,0.004288,0.028672,0.09424,0.0976,26.7781,0.112832
+523,33.2813,30.0469,28.0423,0.067584,0.839552,0.006272,0.005984,0.027904,0.094784,0.097632,26.7889,0.11376
+524,30.5982,32.6816,28.0884,0.068352,0.882688,0.01792,0.004608,0.028672,0.094208,0.098304,26.7796,0.113984
+525,32.8732,30.4199,28.0364,0.069632,0.815104,0.007744,0.004544,0.028704,0.094176,0.09776,26.8048,0.113952
+526,33.1671,30.1504,28.037,0.069632,0.82864,0.006976,0.005344,0.027392,0.098336,0.09728,26.79,0.113408
+527,32.5513,30.7207,28.0558,0.067968,0.830784,0.00672,0.005472,0.027296,0.095968,0.096544,26.8118,0.113248
+528,33.3225,30.0098,28.0041,0.068864,0.779008,0.007904,0.004384,0.028672,0.09424,0.097792,26.8101,0.113088
+529,33.1628,30.1543,28.0294,0.068032,0.806912,0.007456,0.004832,0.02816,0.095872,0.097152,26.8063,0.114688
+530,31.8924,31.3555,28.127,0.069408,0.8768,0.007968,0.004288,0.028672,0.094208,0.098336,26.8341,0.113216
+531,32.028,31.2227,28.121,0.069568,0.901184,0.008128,0.00416,0.028672,0.095328,0.097184,26.8022,0.114624
+532,32.1851,31.0703,27.9402,0.06944,0.792768,0.007648,0.00464,0.028352,0.094528,0.0976,26.7312,0.114016
+533,32.7219,30.5605,28.0608,0.067584,0.786432,0.007456,0.004832,0.028256,0.094624,0.0976,26.8377,0.13632
+534,32.7512,30.5332,28.0772,0.069088,0.83824,0.00784,0.004416,0.028672,0.094208,0.0976,26.8234,0.113792
+535,32.8943,30.4004,28.0289,0.069632,0.8376,0.006208,0.00592,0.028,0.095104,0.09776,26.7752,0.113536
+536,32.7827,30.5039,28.1457,0.069376,0.993536,0.007616,0.004672,0.028448,0.094432,0.097344,26.7366,0.113664
+537,32.8584,30.4336,28.176,0.06944,0.95456,0.0072,0.005088,0.028,0.09488,0.097696,26.8048,0.114336
+538,32.81,30.4785,28.2418,0.068704,1.0024,0.00752,0.004768,0.028672,0.094336,0.098176,26.8244,0.112768
+539,32.2378,31.0195,28.1237,0.06816,0.872128,0.006464,0.005696,0.028064,0.094848,0.096416,26.8393,0.11264
+540,32.183,31.0723,28.0393,0.069568,0.857664,0.006688,0.005504,0.027232,0.095776,0.096736,26.7674,0.112736
+541,32.9727,30.3281,28.1047,0.068704,0.881568,0.008,0.004288,0.028672,0.09552,0.09648,26.8068,0.114688
+542,32.8374,30.4531,28.0494,0.069184,0.801216,0.007552,0.004736,0.028672,0.094208,0.097696,26.8335,0.112672
+543,33.0578,30.25,28.0392,0.067584,0.825344,0.007616,0.004672,0.028608,0.094272,0.097504,26.8005,0.113024
+544,32.7911,30.4961,28.0096,0.069344,0.803104,0.007648,0.00464,0.028704,0.094176,0.098304,26.7899,0.11376
+545,32.9706,30.3301,28.0783,0.067808,0.874496,0.007776,0.004512,0.028608,0.095328,0.097248,26.7895,0.113024
+546,32.9791,30.3223,28.1122,0.06896,0.848032,0.006656,0.005536,0.027232,0.095744,0.096768,26.8493,0.113952
+547,32.8331,30.457,28.0048,0.068064,0.77824,0.007616,0.004672,0.02832,0.09456,0.097472,26.8128,0.11312
+548,32.7659,30.5195,28.0781,0.069568,0.821312,0.007296,0.004992,0.028032,0.094816,0.096288,26.8426,0.113216
+549,32.8079,30.4805,27.9969,0.068256,0.781984,0.006496,0.005728,0.028672,0.094624,0.097344,26.8004,0.113408
+550,33.0514,30.2559,28.0863,0.06944,0.847904,0.006336,0.005824,0.028064,0.09504,0.09632,26.8206,0.116704
+551,32.3907,30.873,28.056,0.068416,0.862208,0.007264,0.005024,0.027872,0.1032,0.098336,26.7694,0.114304
+552,33.0067,30.2969,28.0032,0.068448,0.798496,0.006368,0.005792,0.028256,0.094848,0.0976,26.7907,0.112704
+553,33.1757,30.1426,28.0565,0.06848,0.886816,0.007296,0.004992,0.028224,0.094656,0.096416,26.7564,0.113248
+554,32.2906,30.9688,28.1168,0.069312,0.893248,0.007936,0.004352,0.04512,0.095456,0.096608,26.7904,0.114336
+555,31.9561,31.293,27.9794,0.069024,0.776064,0.00688,0.005248,0.02752,0.09616,0.096352,26.7876,0.114528
+556,31.7185,31.5273,28.1068,0.069248,0.92608,0.008064,0.016512,0.028672,0.094208,0.096352,26.7551,0.112512
+557,32.9049,30.3906,28.1001,0.069184,0.87216,0.00688,0.016384,0.02832,0.094592,0.096224,26.8022,0.114176
+558,32.0641,31.1875,28.1027,0.06944,0.878784,0.008192,0.005312,0.027456,0.094208,0.097824,26.8087,0.112736
+559,32.012,31.2383,28.0896,0.08192,0.872448,0.007872,0.004416,0.028672,0.095328,0.09712,26.7877,0.114048
+560,32.6239,30.6523,28.0412,0.069216,0.83984,0.0064,0.00576,0.027168,0.09568,0.096672,26.7868,0.113664
+561,32.8121,30.4766,28.0206,0.06896,0.803296,0.006336,0.00592,0.02816,0.094944,0.097536,26.8009,0.114528
+562,32.7157,30.5664,28.0288,0.068064,0.781792,0.006688,0.005472,0.027296,0.095808,0.096704,26.834,0.112992
+563,32.9324,30.3652,28.1383,0.068448,0.938016,0.007904,0.004352,0.028704,0.095456,0.096608,26.7859,0.112992
+564,32.5845,30.6895,28.0433,0.067616,0.794656,0.00816,0.005152,0.027616,0.09424,0.09728,26.8349,0.113632
+565,32.8964,30.3984,27.98,0.067808,0.78032,0.007872,0.004384,0.028672,0.095424,0.097088,26.785,0.113408
+566,32.7073,30.5742,28.2139,0.068224,0.962528,0.007872,0.004416,0.028672,0.094208,0.096256,26.839,0.11264
+567,33.107,30.2051,27.9982,0.068672,0.783328,0.007328,0.004928,0.028224,0.094688,0.097568,26.7988,0.11472
+568,31.4053,31.8418,28.1067,0.067744,0.798464,0.006432,0.00576,0.026976,0.095936,0.106848,26.8852,0.11328
+569,32.4626,30.8047,28.0568,0.0688,0.821728,0.00656,0.005632,0.041472,0.095904,0.10496,26.7979,0.113856
+570,33.1392,30.1758,28.1816,0.074816,0.961536,0.020064,0.004512,0.028672,0.095328,0.097184,26.7858,0.113728
+571,33.0621,30.2461,28.0487,0.069632,0.792576,0.008,0.004288,0.028672,0.096256,0.097408,26.8377,0.114176
+572,31.068,32.1875,28.1259,0.068448,0.876512,0.007328,0.00496,0.027968,0.094912,0.096256,26.8349,0.114592
+573,32.6385,30.6387,28.1881,0.067936,0.966656,0.006304,0.00592,0.028096,0.096224,0.096704,26.8063,0.113984
+574,32.9091,30.3867,28.115,0.068896,0.899808,0.007264,0.016608,0.027328,0.094208,0.09792,26.7903,0.112672
+575,32.2094,31.0469,28.3419,0.069568,1.08141,0.008064,0.004224,0.028672,0.094208,0.097824,26.8436,0.114272
+576,31.75,31.4961,27.9843,0.068576,0.785856,0.00672,0.00544,0.027328,0.096032,0.096512,26.7837,0.114144
+577,31.3687,31.8789,27.9685,0.068576,0.774144,0.007968,0.00432,0.028672,0.095264,0.09664,26.7757,0.117248
+578,33.0621,30.2461,27.9695,0.06928,0.774496,0.0072,0.005088,0.027872,0.094432,0.096832,26.7817,0.11264
+579,32.9897,30.3125,27.9941,0.068768,0.805728,0.00624,0.005952,0.028096,0.09488,0.096288,26.7746,0.113632
+580,33.0899,30.2207,28.0993,0.068288,0.822432,0.007008,0.005152,0.027616,0.094208,0.097696,26.8637,0.113184
+581,32.7115,30.5703,28.1932,0.068064,1.00986,0.00784,0.004224,0.028672,0.095776,0.09664,26.7675,0.114656
+582,32.7785,30.5078,27.9463,0.069344,0.783936,0.00688,0.005952,0.02816,0.094848,0.097472,26.7457,0.113952
+583,32.3151,30.9453,27.9548,0.068992,0.780288,0.006848,0.005344,0.027424,0.095456,0.097056,26.7592,0.114272
+584,32.0862,31.166,28.0105,0.069664,0.815072,0.007328,0.00496,0.028352,0.094336,0.096448,26.7814,0.11296
+585,33.0451,30.2617,27.988,0.067584,0.80896,0.007936,0.004352,0.028672,0.095872,0.096448,26.7645,0.113632
+586,33.4335,29.9102,27.9657,0.069056,0.79952,0.007712,0.004576,0.028576,0.095776,0.096864,26.7508,0.112768
+587,33.107,30.2051,28.0028,0.069408,0.832032,0.006304,0.005888,0.028064,0.095072,0.096256,26.7563,0.113472
+588,32.6427,30.6348,27.9896,0.069664,0.8104,0.00672,0.005472,0.027296,0.094208,0.097856,26.7637,0.11424
+589,32.57,30.7031,28.2237,0.068896,0.967488,0.007904,0.004288,0.028672,0.095872,0.09664,26.841,0.112928
+590,32.943,30.3555,27.9867,0.068384,0.831488,0.008064,0.004224,0.028672,0.094208,0.097792,26.7409,0.11296
+591,32.9748,30.3262,28.0671,0.06896,0.874464,0.006848,0.005344,0.027424,0.095936,0.096576,26.7773,0.114208
+592,33.1113,30.2012,27.9547,0.06896,0.80128,0.006304,0.005984,0.027808,0.094784,0.096736,26.7387,0.114176
+593,33.122,30.1914,27.9783,0.068096,0.810944,0.006208,0.005952,0.027904,0.09504,0.09744,26.7539,0.112768
+594,33.2727,30.0547,28.0105,0.069472,0.83984,0.007168,0.005088,0.028128,0.094784,0.09728,26.7557,0.113056
+595,32.6593,30.6191,28.0315,0.06816,0.835584,0.007232,0.005024,0.028128,0.094752,0.096288,26.7836,0.112736
+596,32.701,30.5801,28.0365,0.06768,0.822368,0.006976,0.005216,0.027552,0.096032,0.09648,26.8001,0.114112
+597,31.6714,31.5742,29.0661,0.068448,1.86086,0.006528,0.00448,0.028672,0.095712,0.096832,26.7899,0.11472
+598,33.1585,30.1582,27.9705,0.068512,0.810816,0.006336,0.005824,0.028064,0.0944,0.096992,26.7466,0.112896
+599,32.7827,30.5039,28.0468,0.069632,0.82944,0.007968,0.00432,0.028672,0.096256,0.096288,26.8001,0.11408
+600,33.1886,30.1309,27.9654,0.069312,0.788544,0.0064,0.00576,0.027136,0.09568,0.096704,26.7633,0.11264
+601,32.8669,30.4258,28.0823,0.067744,0.847904,0.0072,0.005056,0.028224,0.094656,0.096256,26.8206,0.114688
+602,32.4256,30.8398,28.116,0.069632,0.874208,0.006432,0.00576,0.028064,0.094656,0.096832,26.8267,0.113696
+603,32.477,30.791,28.0678,0.069216,0.817568,0.00752,0.004768,0.028384,0.094496,0.097728,26.8335,0.114688
+604,32.4852,30.7832,28.0177,0.076512,0.788736,0.007264,0.00496,0.028224,0.09472,0.097696,26.8069,0.112672
+605,32.3682,30.8945,28.2127,0.069216,0.953088,0.007232,0.016736,0.028544,0.094816,0.096384,26.8329,0.113824
+606,32.6219,30.6543,28.1021,0.067744,0.891904,0.007072,0.018368,0.027776,0.094368,0.097152,26.7747,0.123008
+607,32.9049,30.3906,28.1777,0.068896,0.94208,0.00688,0.005312,0.037696,0.096256,0.097568,26.8091,0.113952
+608,32.9642,30.3359,28.1101,0.069664,0.90112,0.016352,0.006144,0.028128,0.094752,0.098304,26.7817,0.113952
+609,33.3659,29.9707,27.956,0.072192,0.813344,0.007168,0.01696,0.028416,0.094848,0.09632,26.7131,0.113632
+610,33.1606,30.1562,28.0105,0.06912,0.806976,0.006592,0.0056,0.0272,0.095584,0.09696,26.7894,0.113056
+611,33.0963,30.2148,27.9917,0.068288,0.826656,0.006912,0.005248,0.02752,0.095744,0.097824,26.7494,0.114112
+612,33.0963,30.2148,27.978,0.06816,0.789792,0.00688,0.00528,0.027488,0.094208,0.096416,26.7769,0.112928
+613,33.092,30.2188,27.9391,0.068192,0.800288,0.006656,0.005504,0.028928,0.09456,0.096256,26.7244,0.114336
+614,33.0152,30.2891,27.95,0.068576,0.814176,0.007072,0.004096,0.028672,0.095904,0.096608,26.7223,0.11264
+615,33.1929,30.127,27.9654,0.069408,0.807136,0.007712,0.004576,0.028608,0.094272,0.098304,26.7419,0.113504
+616,31.2309,32.0195,27.9904,0.068192,0.842656,0.007072,0.004096,0.028672,0.094208,0.096256,26.7366,0.11264
+617,33.0237,30.2812,28.031,0.068544,0.85808,0.007712,0.004576,0.028512,0.094368,0.096288,26.7588,0.11408
+618,32.9451,30.3535,28.0026,0.067904,0.844,0.007808,0.004256,0.028672,0.094208,0.097984,26.7445,0.113312
+619,32.8479,30.4434,27.986,0.068128,0.811008,0.007936,0.004352,0.028704,0.094176,0.096288,26.7612,0.114208
+620,32.2886,30.9707,28.1246,0.069632,0.935424,0.006656,0.005536,0.027232,0.095616,0.096896,26.7735,0.11408
+621,32.7219,30.5605,28.0465,0.069408,0.887008,0.007488,0.0048,0.028448,0.094432,0.096256,26.7448,0.113824
+622,32.8416,30.4492,27.9678,0.067936,0.818432,0.006912,0.005312,0.027456,0.095936,0.096576,26.7366,0.11264
+623,32.7953,30.4922,27.9737,0.06928,0.809312,0.007808,0.00448,0.028544,0.094336,0.097696,26.7485,0.113696
+624,32.6427,30.6348,27.9265,0.069536,0.800864,0.007712,0.004576,0.028352,0.094496,0.09776,26.7102,0.112992
+625,31.5154,31.7305,27.9573,0.068672,0.840672,0.007968,0.00432,0.028672,0.094208,0.09808,26.7011,0.1136
+626,32.1932,31.0625,27.9224,0.069632,0.779648,0.006816,0.005312,0.027424,0.095776,0.096864,26.7283,0.11264
+627,32.6697,30.6094,27.9263,0.068768,0.78448,0.006912,0.005248,0.02752,0.095968,0.09776,26.7252,0.114432
+628,31.9302,31.3184,27.9889,0.06848,0.8352,0.00656,0.005632,0.027104,0.096256,0.096352,26.7405,0.112736
+629,32.599,30.6758,27.9836,0.06896,0.793312,0.007648,0.00464,0.028416,0.094464,0.0976,26.7682,0.120288
+630,32.358,30.9043,28.0257,0.068416,0.86016,0.006336,0.005888,0.028128,0.094816,0.09744,26.7518,0.112672
+631,32.9049,30.3906,28.1822,0.069632,1.0097,0.024544,0.005696,0.027072,0.095904,0.096608,26.7387,0.114368
+632,30.1691,33.1465,28.0104,0.06944,0.8112,0.007904,0.004384,0.028704,0.094176,0.098272,26.7833,0.113056
+633,32.8058,30.4824,27.9935,0.069056,0.82608,0.007968,0.00432,0.028672,0.094272,0.097824,26.7512,0.114048
+634,32.9112,30.3848,27.9788,0.069152,0.856544,0.017984,0.006112,0.027104,0.095424,0.09712,26.6956,0.113664
+635,32.5327,30.7383,28.1502,0.068096,1.00925,0.00656,0.005632,0.02816,0.095232,0.09744,26.7252,0.11456
+636,33.2943,30.0352,27.9196,0.069632,0.800256,0.006688,0.005504,0.027232,0.096032,0.09648,26.7039,0.113856
+637,32.9961,30.3066,27.9695,0.069344,0.854304,0.007648,0.00464,0.028576,0.094528,0.096032,26.7009,0.113536
+638,32.36,30.9023,28.0453,0.069632,0.897024,0.007776,0.004512,0.034816,0.095264,0.097248,26.7262,0.112832
+639,33.4597,29.8867,27.9532,0.069504,0.802784,0.007392,0.005056,0.027936,0.094944,0.097632,26.7344,0.113472
+640,33.1113,30.2012,27.9777,0.069248,0.809344,0.0072,0.005088,0.028096,0.094784,0.09728,26.7539,0.1128
+641,32.8901,30.4043,27.9676,0.068224,0.835552,0.007872,0.004416,0.028672,0.095296,0.09712,26.7163,0.114176
+642,32.7995,30.4883,28.0086,0.069632,0.906656,0.006752,0.005504,0.027264,0.095488,0.096576,26.6879,0.1128
+643,32.7115,30.5703,28.0218,0.068864,0.835776,0.00672,0.005472,0.027296,0.09552,0.096992,26.7708,0.1144
+644,32.8416,30.4492,28.0556,0.068864,0.876384,0.007072,0.004096,0.028672,0.09424,0.09824,26.7645,0.113472
+645,32.9897,30.3125,27.9777,0.069536,0.807008,0.007424,0.004864,0.028544,0.095424,0.108608,26.743,0.11328
+646,33.2403,30.084,28.0443,0.068608,0.841312,0.00656,0.0056,0.027168,0.095264,0.097248,26.7878,0.114688
+647,32.1729,31.082,27.986,0.067616,0.782336,0.007584,0.004704,0.028704,0.095584,0.096832,26.7893,0.113248
+648,32.4852,30.7832,28.033,0.069152,0.913728,0.006336,0.005824,0.028192,0.094848,0.096384,26.7039,0.114688
+649,32.5286,30.7422,28.0787,0.068512,0.855712,0.006496,0.005664,0.027104,0.096256,0.096256,26.8083,0.114336
+650,32.9472,30.3516,27.9737,0.068896,0.83632,0.007648,0.00464,0.028448,0.094112,0.096576,26.7244,0.112672
+651,32.4523,30.8145,28.049,0.073728,0.909312,0.007904,0.004384,0.028672,0.095424,0.097088,26.7182,0.114272
+652,32.9091,30.3867,27.962,0.068288,0.796352,0.006464,0.005728,0.02704,0.095392,0.09712,26.7522,0.113504
+653,32.8795,30.4141,27.9811,0.06928,0.854368,0.00784,0.004448,0.028544,0.094368,0.098272,26.71,0.114016
+654,33.2101,30.1113,28.0228,0.069088,0.907808,0.007232,0.005056,0.028128,0.094752,0.096256,26.7015,0.11296
+655,33.0046,30.2988,28.0633,0.069088,0.878944,0.006336,0.005824,0.028512,0.094688,0.0976,26.7681,0.114208
+656,32.7261,30.5566,28.0003,0.069312,0.858432,0.007488,0.0048,0.02816,0.094432,0.096544,26.7284,0.11264
+657,32.8711,30.4219,27.9981,0.068928,0.824,0.00736,0.004928,0.028192,0.096,0.096576,26.7575,0.11456
+658,32.888,30.4062,28.0221,0.072768,0.815776,0.006432,0.006144,0.028,0.096576,0.096608,26.7871,0.112704
+659,33.011,30.293,28.015,0.068064,0.843744,0.007712,0.004576,0.028352,0.09456,0.096224,26.7584,0.113408
+660,33.0003,30.3027,28.0737,0.069632,0.887808,0.007072,0.004192,0.028672,0.095296,0.096736,26.771,0.11328
+661,32.7995,30.4883,28.0474,0.069024,0.885344,0.007712,0.004576,0.02848,0.095488,0.096608,26.7468,0.113312
+662,33.0408,30.2656,28.0333,0.068384,0.829024,0.006528,0.005152,0.027648,0.094208,0.098336,26.7899,0.114144
+663,32.6115,30.6641,28.0433,0.069664,0.832704,0.006944,0.005216,0.027552,0.095744,0.096672,26.7957,0.113088
+664,32.7827,30.5039,28.1271,0.07856,0.913408,0.018368,0.00416,0.028672,0.094208,0.097376,26.7785,0.113856
+665,32.6489,30.6289,28.1247,0.0688,0.940896,0.0072,0.015392,0.028576,0.097312,0.097248,26.7551,0.114176
+666,32.6239,30.6523,28.0084,0.069216,0.874208,0.006848,0.00528,0.027488,0.095616,0.096896,26.7203,0.11264
+667,32.032,31.2188,28.1211,0.068416,0.869472,0.007072,0.00512,0.027648,0.094208,0.097696,26.8376,0.113888
+668,32.8542,30.4375,27.9184,0.069216,0.770464,0.007776,0.004512,0.028544,0.094112,0.098272,26.7328,0.112672
+669,31.7067,31.5391,27.9856,0.068064,0.825376,0.00736,0.004896,0.028096,0.096032,0.097056,26.7446,0.114112
+670,32.9176,30.3789,27.98,0.069504,0.860544,0.007424,0.004864,0.028128,0.094368,0.09664,26.7052,0.113344
+671,32.3396,30.9219,28.1641,0.068704,0.97168,0.007776,0.004512,0.028512,0.094368,0.108576,26.7653,0.114688
+672,33.3616,29.9746,28.0128,0.068576,0.834752,0.006976,0.005216,0.027552,0.094208,0.09792,26.7637,0.113952
+673,32.0983,31.1543,27.9893,0.069312,0.822656,0.007072,0.004128,0.028672,0.09616,0.09616,26.7512,0.113952
+674,33.0237,30.2812,27.9402,0.069376,0.780832,0.007456,0.004832,0.028416,0.094464,0.097856,26.7432,0.113824
+675,32.3273,30.9336,27.9753,0.069632,0.78608,0.006496,0.005664,0.028192,0.095168,0.09744,26.7723,0.114336
+676,31.3457,31.9023,28.0556,0.06864,0.84928,0.006752,0.00544,0.028672,0.09488,0.096288,26.7919,0.113728
+677,32.1225,31.1309,28.2402,0.069312,1.05754,0.00624,0.005952,0.027936,0.094816,0.096736,26.7672,0.114432
+678,31.8467,31.4004,28.0454,0.086112,0.843776,0.023776,0.004896,0.04064,0.09456,0.097632,26.7412,0.1128
+679,32.9621,30.3379,27.9409,0.069536,0.790624,0.007296,0.004992,0.02864,0.09424,0.096256,26.7346,0.114688
+680,32.2033,31.0527,27.9949,0.069664,0.813824,0.007584,0.004672,0.028448,0.0944,0.097344,26.766,0.112992
+681,33.0963,30.2148,27.9235,0.069664,0.780256,0.007584,0.004704,0.028288,0.095744,0.096704,26.7265,0.11408
+682,32.1265,31.127,27.9377,0.068512,0.810848,0.006464,0.005856,0.027872,0.094816,0.096576,26.7121,0.114688
+683,32.5596,30.7129,27.9573,0.067648,0.878592,0.007648,0.00464,0.02848,0.0944,0.097792,26.6634,0.114688
+684,32.4997,30.7695,27.9661,0.068256,0.804,0.00704,0.00512,0.027616,0.095776,0.096736,26.7488,0.112768
+685,32.6614,30.6172,28.0618,0.068352,0.828448,0.007104,0.005152,0.027616,0.09568,0.096832,26.8186,0.114048
+686,32.8331,30.457,28.1559,0.069632,1.02947,0.006816,0.005376,0.027392,0.095552,0.096992,26.712,0.112672
+687,33.0046,30.2988,28.0261,0.06912,0.901664,0.00752,0.01616,0.028608,0.095136,0.097696,26.6963,0.113888
+688,32.7554,30.5293,27.9545,0.069024,0.813696,0.007296,0.00496,0.028192,0.094592,0.096384,26.7264,0.114016
+689,33.4204,29.9219,27.9685,0.0696,0.802016,0.006976,0.005408,0.02736,0.096224,0.09632,26.7501,0.114496
+690,33.2922,30.0371,27.9827,0.068384,0.83728,0.00656,0.00592,0.02816,0.09456,0.09664,26.7325,0.11264
+691,32.7136,30.5684,27.9717,0.067712,0.845088,0.00688,0.005152,0.028736,0.095136,0.096256,26.7121,0.114688
+692,32.2053,31.0508,27.9464,0.069312,0.796608,0.006528,0.005632,0.027136,0.095392,0.105344,26.7275,0.113024
+693,33.3833,29.9551,27.9695,0.067616,0.799776,0.00704,0.00416,0.028672,0.095424,0.101024,26.7523,0.113568
+694,32.1689,31.0859,28.0375,0.068224,0.900832,0.006304,0.005728,0.027232,0.09568,0.09664,26.7223,0.114592
+695,33.303,30.0273,27.9429,0.067808,0.81904,0.007456,0.004832,0.028352,0.094528,0.098016,26.7083,0.114624
+696,33.1156,30.1973,27.9231,0.068192,0.77824,0.008064,0.004224,0.028672,0.094304,0.098208,26.7276,0.115616
+697,33.1327,30.1816,28.0659,0.06944,0.848,0.006208,0.005952,0.028256,0.094816,0.096256,26.8033,0.113696
+698,33.0707,30.2383,27.9482,0.069632,0.794624,0.0072,0.005088,0.028,0.094912,0.097568,26.7373,0.113888
+699,33.0344,30.2715,27.955,0.068032,0.804832,0.007328,0.00496,0.02832,0.09456,0.098176,26.7347,0.114048
+700,32.4873,30.7812,27.9869,0.068512,0.813088,0.007616,0.00464,0.028192,0.094688,0.097984,26.7595,0.112704
+701,32.5121,30.7578,27.9572,0.069184,0.79696,0.006304,0.005856,0.028352,0.094816,0.0976,26.7448,0.113408
+702,33.2058,30.1152,27.9953,0.0696,0.788416,0.00624,0.005856,0.027936,0.09456,0.096928,26.7916,0.114176
+703,32.9112,30.3848,28.0084,0.068864,0.887552,0.00752,0.004768,0.028288,0.094624,0.097728,26.7061,0.113024
+704,32.5617,30.7109,27.9922,0.069312,0.8336,0.0064,0.005856,0.028032,0.094848,0.096544,26.7448,0.1128
+705,32.44,30.8262,27.9846,0.068256,0.833504,0.006208,0.005952,0.027968,0.095104,0.09744,26.7369,0.113216
+706,33.028,30.2773,28.0208,0.068352,0.878592,0.007872,0.004416,0.028672,0.094208,0.097952,26.7268,0.113952
+707,33.1092,30.2031,28.0145,0.06784,0.833376,0.007616,0.004672,0.028416,0.095936,0.096864,26.7653,0.114496
+708,33.1113,30.2012,27.978,0.067776,0.822752,0.006688,0.005504,0.027264,0.095392,0.09712,26.7424,0.113056
+709,33.2273,30.0957,27.9521,0.068576,0.792544,0.007264,0.005024,0.027936,0.094944,0.097664,26.7446,0.113568
+710,30.8899,32.373,27.922,0.069632,0.79872,0.007936,0.004352,0.028672,0.094208,0.098176,26.7075,0.112832
+711,33.122,30.1914,27.9679,0.068032,0.806912,0.007456,0.0048,0.028256,0.094656,0.09776,26.7467,0.113408
+712,31.6049,31.6406,27.9327,0.069312,0.790752,0.006272,0.005888,0.030432,0.094752,0.097344,26.7248,0.113152
+713,33.2144,30.1074,27.9545,0.069056,0.811584,0.007936,0.004352,0.028672,0.095616,0.096928,26.7264,0.113952
+714,29.7536,33.6094,27.9307,0.069408,0.788704,0.008064,0.004224,0.028672,0.094208,0.097408,26.727,0.112992
+715,33.2338,30.0898,27.9169,0.068416,0.804192,0.006816,0.005344,0.027424,0.095648,0.096864,26.6977,0.114496
+716,31.9321,31.3164,27.9444,0.069664,0.804864,0.0072,0.005056,0.027936,0.094976,0.0976,26.723,0.11408
+717,31.978,31.2715,27.8483,0.06928,0.775968,0.00672,0.00544,0.027328,0.096192,0.096352,26.6567,0.114272
+718,32.7073,30.5742,28.076,0.069664,0.91952,0.008032,0.004256,0.028672,0.09424,0.097792,26.7392,0.114688
+719,32.2927,30.9668,27.9648,0.068864,0.796992,0.006592,0.005536,0.027232,0.095776,0.096768,26.7529,0.114208
+720,31.992,31.2578,28.0121,0.06816,0.802816,0.007264,0.005024,0.028256,0.094624,0.098144,26.7941,0.113696
+721,32.5928,30.6816,27.9429,0.068832,0.827808,0.006528,0.005632,0.027136,0.095744,0.096768,26.7015,0.11296
+722,32.2378,31.0195,28.1646,0.068096,0.96576,0.00704,0.005216,0.027552,0.09424,0.105952,26.7781,0.11264
+723,33.2727,30.0547,27.9183,0.06928,0.809312,0.007456,0.004832,0.02832,0.09456,0.097536,26.6924,0.114688
+724,32.8521,30.4395,27.993,0.068544,0.817152,0.00768,0.004608,0.028448,0.094432,0.096256,26.7633,0.11264
+725,33.1585,30.1582,27.9722,0.068256,0.866272,0.00784,0.0056,0.02752,0.095776,0.096768,26.6911,0.113056
+726,32.3518,30.9102,27.994,0.06944,0.841728,0.006336,0.005824,0.028064,0.09472,0.096704,26.7366,0.114592
+727,32.4605,30.8066,28.1559,0.067584,0.978976,0.00736,0.015136,0.036576,0.095648,0.09696,26.7443,0.113408
+728,32.4461,30.8203,28.2482,0.069568,1.0631,0.006144,0.004096,0.029856,0.095104,0.098112,26.7696,0.112672
+729,32.1749,31.0801,27.9678,0.067872,0.820224,0.007072,0.004192,0.028672,0.095648,0.096896,26.7338,0.113472
+730,32.7953,30.4922,27.9667,0.069632,0.788192,0.006432,0.005728,0.02704,0.095488,0.097024,26.7633,0.11392
+731,33.1392,30.1758,28.0286,0.06768,0.825312,0.007808,0.00448,0.028672,0.095712,0.096832,26.7878,0.114304
+732,32.1709,31.084,27.9656,0.067712,0.816864,0.006432,0.005952,0.028192,0.094592,0.09776,26.7353,0.112768
+733,32.8079,30.4805,27.8877,0.06768,0.794624,0.007488,0.0048,0.028544,0.095488,0.097024,26.6786,0.11344
+734,33.1714,30.1465,27.9545,0.06944,0.774336,0.008,0.004288,0.028672,0.094208,0.097696,26.7639,0.113984
+735,32.5575,30.7148,27.9367,0.069344,0.778144,0.006528,0.00576,0.028128,0.095072,0.09632,26.7428,0.114592
+736,32.6385,30.6387,28.0914,0.068608,0.929056,0.00688,0.005312,0.027456,0.09424,0.097984,26.7486,0.11328
+737,30.9291,32.332,27.8793,0.0696,0.7712,0.007072,0.004096,0.028672,0.095808,0.096672,26.6916,0.114528
+738,33.3616,29.9746,27.8714,0.075712,0.777824,0.006752,0.005408,0.027456,0.095872,0.097632,26.6721,0.11264
+739,33.1134,30.1992,28.0154,0.068544,0.828672,0.006912,0.00544,0.027328,0.09568,0.096672,26.7716,0.114496
+740,33.0985,30.2129,27.9327,0.069632,0.813088,0.007552,0.004704,0.028256,0.094528,0.096352,26.7058,0.112832
+741,32.6885,30.5918,27.9864,0.068576,0.84992,0.00784,0.004448,0.028608,0.094272,0.098304,26.7203,0.114208
+742,32.6697,30.6094,28.5515,0.067904,1.38854,0.0072,0.005088,0.028448,0.094432,0.096256,26.7508,0.112864
+743,32.4626,30.8047,28.0781,0.069024,0.876992,0.006304,0.005856,0.028256,0.094912,0.096256,26.7872,0.11328
+744,31.7087,31.5371,28.0597,0.081856,0.85168,0.006496,0.005728,0.027168,0.095808,0.11296,26.7651,0.112896
+745,32.034,31.2168,28.0187,0.06944,0.899008,0.0064,0.00576,0.027008,0.096096,0.096416,26.7039,0.114688
+746,33.2252,30.0977,27.9596,0.06864,0.768,0.007392,0.004864,0.02816,0.09472,0.096288,26.7789,0.11264
+747,32.9918,30.3105,27.961,0.068992,0.827296,0.00688,0.005664,0.028128,0.095232,0.096256,26.7182,0.114304
+748,33.2058,30.1152,27.8741,0.068384,0.775808,0.006528,0.005664,0.027168,0.09584,0.096576,26.6834,0.114688
+749,33.1327,30.1816,27.9286,0.068864,0.76832,0.006624,0.005536,0.027328,0.096096,0.09632,26.7468,0.11264
+750,32.9897,30.3125,27.9121,0.069664,0.765952,0.007968,0.004288,0.028672,0.094208,0.09824,26.7241,0.11904
+751,32.2459,31.0117,28.1477,0.06816,1.01376,0.00736,0.015136,0.03072,0.094208,0.098336,26.7059,0.114112
+752,33.2684,30.0586,27.947,0.069632,0.773376,0.006912,0.005344,0.027456,0.095616,0.096864,26.7441,0.12768
+753,32.5575,30.7148,28.0576,0.0688,0.91408,0.006304,0.005888,0.028032,0.095104,0.097504,26.7272,0.114656
+754,33.2511,30.0742,27.8697,0.069248,0.787328,0.007264,0.005024,0.028064,0.093824,0.09728,26.669,0.112672
+755,33.4466,29.8984,27.9245,0.068032,0.770592,0.00816,0.004128,0.028672,0.09424,0.098304,26.7386,0.113792
+756,33.122,30.1914,27.9574,0.069568,0.796064,0.006944,0.005216,0.027552,0.095296,0.097216,26.7469,0.11264
+757,33.392,29.9473,27.899,0.069664,0.780256,0.007744,0.004544,0.028672,0.094208,0.098304,26.7016,0.11408
+758,33.3225,30.0098,27.9036,0.068896,0.768736,0.00768,0.004608,0.028448,0.094432,0.097472,26.7203,0.113024
+759,33.2575,30.0684,27.9831,0.069792,0.823328,0.007296,0.004992,0.028256,0.094624,0.098144,26.7429,0.11376
+760,31.4438,31.8027,27.9196,0.069632,0.810176,0.006976,0.005184,0.027584,0.09552,0.096992,26.6948,0.112736
+761,32.3069,30.9531,28.1069,0.068576,0.945856,0.006528,0.005632,0.027104,0.09584,0.096672,26.7468,0.113856
+762,33.5496,29.8066,27.9327,0.069472,0.781952,0.006688,0.005824,0.028128,0.094912,0.096416,26.7357,0.1136
+763,33.1778,30.1406,27.8745,0.067648,0.772096,0.006144,0.005952,0.028,0.095072,0.097344,26.6884,0.11376
+764,33.3333,30,27.8955,0.069152,0.771584,0.007136,0.005152,0.027616,0.094208,0.098208,26.7081,0.114336
+765,32.8964,30.3984,27.8949,0.06896,0.768672,0.006208,0.006048,0.02816,0.094784,0.09776,26.7104,0.11392
+766,32.6115,30.6641,27.89,0.068576,0.772128,0.007424,0.004864,0.028064,0.094848,0.097536,26.7036,0.11296
+767,31.7539,31.4922,28.1669,0.06832,1.02518,0.007008,0.005152,0.027616,0.094208,0.097952,26.7283,0.113184
+768,32.7345,30.5488,27.9584,0.068736,0.877088,0.006528,0.005696,0.02816,0.095168,0.096288,26.667,0.11376
+769,31.8566,31.3906,27.9348,0.068416,0.790528,0.007456,0.004832,0.028128,0.094752,0.096288,26.7305,0.113984
+770,32.6135,30.6621,27.9494,0.067904,0.77824,0.007328,0.00496,0.028,0.0944,0.096768,26.7591,0.112672
+771,31.6773,31.5684,27.8862,0.08048,0.774144,0.007488,0.0048,0.028288,0.094592,0.096256,26.6868,0.113312
+772,30.875,32.3887,27.9356,0.06848,0.821248,0.00624,0.005984,0.027968,0.094976,0.097568,26.7005,0.11264
+773,32.7785,30.5078,27.9144,0.067712,0.804832,0.006208,0.005952,0.028032,0.095008,0.096256,26.6969,0.11344
+774,32.5679,30.7051,27.8856,0.069632,0.77392,0.006368,0.005856,0.027936,0.094848,0.09776,26.696,0.113216
+775,31.4207,31.8262,27.9851,0.068928,0.802752,0.006912,0.005248,0.02752,0.095744,0.097856,26.7662,0.113888
+776,33.2943,30.0352,27.8972,0.069632,0.77824,0.00736,0.004928,0.028192,0.094688,0.097568,26.7026,0.11408
+777,32.0862,31.166,27.945,0.067584,0.851968,0.008064,0.004224,0.028672,0.094368,0.098112,26.6785,0.113472
+778,32.9769,30.3242,27.9613,0.069632,0.814752,0.006496,0.005664,0.027168,0.095552,0.096896,26.7319,0.113248
+779,33.0792,30.2305,27.9893,0.068704,0.801696,0.0072,0.005088,0.028416,0.094464,0.097696,26.7721,0.113984
+780,32.1144,31.1387,28.0249,0.069536,0.913504,0.008192,0.004096,0.028672,0.09584,0.096672,26.6957,0.112672
+781,32.6052,30.6699,27.8954,0.067584,0.786432,0.007776,0.004512,0.02848,0.096,0.096704,26.6936,0.114272
+782,32.3314,30.9297,28.3602,0.069216,1.30522,0.007936,0.004352,0.032,0.094976,0.097568,26.635,0.113952
+783,32.6572,30.6211,27.8611,0.067712,0.772128,0.007552,0.004704,0.028256,0.094656,0.097856,26.6754,0.112832
+784,32.4133,30.8516,28.1429,0.069632,0.970752,0.007616,0.021056,0.028032,0.094848,0.096288,26.7346,0.12016
+785,31.2328,32.0176,28.0409,0.068832,0.895776,0.00768,0.004608,0.028608,0.094272,0.097856,26.7289,0.114368
+786,31.564,31.6816,28.0016,0.068736,0.884672,0.007072,0.004128,0.028672,0.094208,0.09808,26.7031,0.112928
+787,32.831,30.459,27.8424,0.06784,0.794496,0.00624,0.005952,0.027872,0.0952,0.097504,26.633,0.114272
+788,32.2743,30.9844,27.9589,0.069248,0.811328,0.006304,0.005952,0.028096,0.09488,0.096288,26.7325,0.114272
+789,33.0643,30.2441,27.9613,0.068832,0.77248,0.00656,0.0056,0.027168,0.095936,0.096608,26.7735,0.114624
+790,32.9939,30.3086,27.8671,0.0696,0.78,0.006464,0.005664,0.027168,0.095872,0.097664,26.6713,0.11344
+791,32.8331,30.457,27.8828,0.068704,0.780704,0.00672,0.00544,0.027328,0.095808,0.096704,26.6875,0.11392
+792,32.9748,30.3262,27.9327,0.069024,0.76656,0.007328,0.00496,0.028288,0.094592,0.097888,26.7514,0.11264
+793,33.0963,30.2148,27.945,0.067584,0.851968,0.007264,0.005024,0.028384,0.095904,0.096896,26.6786,0.11344
+794,33.06,30.248,27.8998,0.06944,0.771296,0.007072,0.00416,0.028672,0.095776,0.096736,26.7132,0.113472
+795,33.4138,29.9277,27.8529,0.068832,0.760064,0.006688,0.005504,0.027264,0.096,0.096512,26.6793,0.112704
+796,32.358,30.9043,27.874,0.068288,0.82032,0.007072,0.005408,0.02736,0.094208,0.09792,26.6408,0.11264
+797,33.1306,30.1836,27.8426,0.069632,0.768,0.007936,0.004352,0.028672,0.0944,0.097952,26.659,0.11264
+798,32.9706,30.3301,27.8958,0.068704,0.799648,0.00768,0.004608,0.028416,0.095552,0.097216,26.6812,0.112864
+799,32.7953,30.4922,28.0208,0.0688,0.911808,0.006528,0.005632,0.027136,0.096256,0.097632,26.6939,0.113056
+800,32.358,30.9043,28.0076,0.069024,0.822976,0.00704,0.004128,0.028704,0.094176,0.112352,26.7554,0.113888
+801,33.3008,30.0293,27.9117,0.069248,0.78272,0.008032,0.004256,0.028704,0.111776,0.097056,26.6957,0.114208
+802,32.1305,31.123,28.2242,0.068256,1.12778,0.006816,0.016128,0.028288,0.096736,0.097568,26.6691,0.113472
+803,33.3833,29.9551,28.0182,0.067936,0.887744,0.007072,0.005824,0.028128,0.096288,0.098528,26.7122,0.114464
+804,32.4256,30.8398,27.9233,0.068448,0.782336,0.007232,0.005056,0.028096,0.094784,0.097792,26.7266,0.11296
+805,32.2988,30.9609,28.0045,0.068448,0.866272,0.006336,0.00592,0.027936,0.094976,0.096256,26.7242,0.11424
+806,32.6094,30.666,27.8979,0.069504,0.770176,0.007488,0.0048,0.028512,0.093856,0.096768,26.714,0.1128
+807,32.7722,30.5137,28.1918,0.06896,0.993952,0.007424,0.004864,0.038912,0.096,0.112928,26.755,0.113696
+808,32.5493,30.7227,27.9064,0.067904,0.818784,0.00656,0.005504,0.027264,0.09552,0.097024,26.6742,0.1136
+809,32.4523,30.8145,27.9099,0.067936,0.794624,0.007712,0.004576,0.028672,0.09424,0.097664,26.7004,0.114048
+810,32.5741,30.6992,27.939,0.068992,0.81168,0.006336,0.005824,0.028128,0.095072,0.096288,26.714,0.112672
+811,32.4791,30.7891,27.9572,0.069344,0.821568,0.007392,0.004864,0.02816,0.095872,0.097152,26.7197,0.113184
+812,32.5493,30.7227,27.9842,0.069056,0.79488,0.006752,0.005376,0.028672,0.094784,0.0976,26.774,0.112992
+813,32.7429,30.541,27.9348,0.068896,0.768512,0.0064,0.00576,0.028128,0.094976,0.096384,26.751,0.11472
+814,32.3294,30.9316,27.9319,0.069216,0.846272,0.007872,0.004384,0.028608,0.094272,0.096288,26.6711,0.113856
+815,32.676,30.6035,27.9128,0.068128,0.802816,0.007488,0.0048,0.028384,0.094528,0.097344,26.6956,0.113664
+816,32.1245,31.1289,28.016,0.069376,0.915712,0.007584,0.004704,0.028544,0.094336,0.097888,26.6838,0.114048
+817,32.0401,31.2109,27.9613,0.06864,0.834368,0.006336,0.005824,0.028288,0.09488,0.097408,26.7109,0.114688
+818,32.5886,30.6855,28.0166,0.069344,0.870112,0.00672,0.005856,0.02816,0.094816,0.096448,26.7325,0.11264
+819,31.6871,31.5586,28.0617,0.06944,0.915648,0.007232,0.005056,0.028672,0.095744,0.0968,26.73,0.11312
+820,32.9578,30.3418,27.9434,0.068064,0.843552,0.006368,0.005824,0.028288,0.094336,0.096832,26.6854,0.114688
+821,32.6531,30.625,27.9593,0.068672,0.873408,0.007712,0.004576,0.028448,0.094464,0.09728,26.6717,0.113024
+822,30.5854,32.6953,28.0945,0.069632,0.999456,0.007648,0.004608,0.028672,0.095456,0.097056,26.6793,0.11264
+823,32.5928,30.6816,27.9135,0.06768,0.847872,0.006208,0.005952,0.028192,0.094816,0.096256,26.6527,0.113824
+824,32.9282,30.3691,27.9594,0.068352,0.847872,0.007648,0.00464,0.028608,0.094272,0.097824,26.6975,0.112672
+825,32.6447,30.6328,27.9086,0.068064,0.808032,0.00704,0.004128,0.028672,0.096256,0.096256,26.6868,0.113376
+826,33.3464,29.9883,27.8791,0.068928,0.767968,0.00704,0.005152,0.027616,0.095872,0.09664,26.697,0.112864
+827,33.0195,30.2852,27.9009,0.068544,0.8232,0.00624,0.005984,0.028096,0.096224,0.096384,26.663,0.113152
+828,33.1757,30.1426,27.8958,0.069152,0.766432,0.00752,0.004768,0.028448,0.094464,0.096288,26.7156,0.113088
+829,31.411,31.8359,27.9934,0.069184,0.883136,0.007872,0.004416,0.028672,0.09424,0.101856,26.69,0.114016
+830,32.7764,30.5098,27.9166,0.068992,0.77472,0.006624,0.005536,0.0272,0.094208,0.098304,26.7277,0.113312
+831,33.4378,29.9062,27.8997,0.068128,0.77792,0.006464,0.005728,0.028128,0.095168,0.097376,26.7062,0.11456
+832,32.7722,30.5137,27.9918,0.0696,0.847904,0.007488,0.0048,0.02848,0.0944,0.104448,26.7203,0.114464
+833,31.8349,31.4121,27.9087,0.06816,0.802272,0.006656,0.005536,0.027296,0.095872,0.096576,26.6933,0.113024
+834,30.7933,32.4746,27.9218,0.068672,0.838176,0.006592,0.0056,0.027168,0.107808,0.096992,26.6568,0.114016
+835,33.2015,30.1191,27.8757,0.068,0.810496,0.006688,0.005632,0.028544,0.094816,0.097312,26.6496,0.114688
+836,33.0387,30.2676,27.8467,0.079872,0.778112,0.006272,0.005888,0.028096,0.094656,0.09664,26.644,0.113152
+837,33.4269,29.916,27.8648,0.068128,0.767296,0.006752,0.005408,0.02736,0.095872,0.09664,26.6834,0.11392
+838,33.1413,30.1738,27.8956,0.069408,0.821472,0.007456,0.004832,0.028192,0.094688,0.097472,26.6576,0.114464
+839,32.7596,30.5254,27.9205,0.077984,0.804288,0.00672,0.00512,0.027648,0.095968,0.102688,26.6773,0.122848
+840,33.0621,30.2461,27.9204,0.069632,0.8272,0.006336,0.005824,0.02816,0.09504,0.098208,26.6764,0.113632
+841,32.6198,30.6562,28.0159,0.068704,0.891904,0.007904,0.004384,0.028672,0.094208,0.09808,26.7082,0.113856
+842,32.309,30.9512,28.0457,0.06928,0.948,0.007072,0.005184,0.027584,0.095648,0.096736,26.6828,0.113408
+843,32.9642,30.3359,27.8568,0.068032,0.790496,0.00624,0.005952,0.028128,0.094848,0.100288,26.6486,0.114176
+844,33.264,30.0625,27.9391,0.06896,0.8304,0.007712,0.004576,0.02864,0.09424,0.098336,26.6929,0.113376
+845,32.3049,30.9551,27.8798,0.067936,0.792448,0.006272,0.005888,0.028096,0.10528,0.096352,26.6644,0.11312
+846,33.0451,30.2617,27.9241,0.069472,0.866496,0.007872,0.004384,0.028672,0.09424,0.097472,26.6412,0.114272
+847,32.9706,30.3301,27.9613,0.069632,0.849184,0.00688,0.00528,0.027488,0.095776,0.096736,26.6971,0.11328
+848,33.1499,30.166,27.8795,0.069632,0.837504,0.006304,0.005888,0.028032,0.0944,0.096928,26.6281,0.112672
+849,32.7848,30.502,27.8691,0.069632,0.79872,0.00768,0.004608,0.028448,0.094432,0.09824,26.6527,0.114592
+850,32.3375,30.9238,27.9015,0.06928,0.81648,0.007072,0.005568,0.027296,0.095744,0.0968,26.669,0.114272
+851,33.3464,29.9883,27.8508,0.069664,0.77616,0.0072,0.005088,0.028032,0.09488,0.097696,26.6589,0.113152
+852,32.6447,30.6328,28.1412,0.07168,0.99328,0.008096,0.004192,0.028672,0.09424,0.097728,26.729,0.114304
+853,32.8205,30.4688,27.9655,0.069632,0.843008,0.006912,0.022528,0.040032,0.095136,0.097568,26.6772,0.113472
+854,33.2252,30.0977,27.8376,0.068768,0.769024,0.007488,0.0048,0.028256,0.094624,0.096256,26.6547,0.113696
+855,32.9854,30.3164,27.9382,0.069184,0.7912,0.007392,0.004896,0.028096,0.094784,0.097728,26.7311,0.113856
+856,32.96,30.3398,27.9261,0.069088,0.796928,0.006432,0.005728,0.028224,0.09488,0.09648,26.7141,0.11424
+857,33.2878,30.041,27.9244,0.068864,0.784512,0.006784,0.005728,0.027168,0.106368,0.098304,26.7121,0.11456
+858,32.9876,30.3145,27.8511,0.068032,0.804128,0.006816,0.005504,0.027264,0.094208,0.098304,26.634,0.112928
+859,33.0707,30.2383,27.8999,0.069664,0.800736,0.007456,0.004832,0.028384,0.094528,0.097632,26.6835,0.113216
+860,32.4791,30.7891,27.9267,0.069376,0.809216,0.007712,0.004576,0.028416,0.094464,0.096256,26.7039,0.112768
+861,31.8785,31.3691,27.9142,0.069184,0.792128,0.00704,0.00416,0.028608,0.095904,0.096352,26.7078,0.113088
+862,31.5621,31.6836,27.903,0.068608,0.86016,0.007808,0.00448,0.028672,0.094208,0.098016,26.6281,0.112896
+863,32.7282,30.5547,28.0514,0.0872,0.901984,0.007424,0.004864,0.02848,0.094432,0.098112,26.7156,0.113344
+864,32.9748,30.3262,27.9797,0.069632,0.894976,0.0072,0.005088,0.027904,0.0944,0.096832,26.6706,0.113088
+865,32.6177,30.6582,28.1308,0.0688,1.0063,0.02448,0.004288,0.028672,0.095584,0.096928,26.6916,0.114112
+866,33.2381,30.0859,27.9416,0.06832,0.81888,0.006464,0.005696,0.027136,0.094144,0.098304,26.7098,0.112896
+867,33.2166,30.1055,27.9804,0.068224,0.85952,0.006752,0.0056,0.027168,0.095776,0.096832,26.7074,0.113152
+868,30.4472,32.8438,27.8359,0.068096,0.780128,0.006304,0.005888,0.028832,0.094304,0.096256,26.6424,0.113664
+869,32.9366,30.3613,27.9706,0.068416,0.889024,0.007648,0.00464,0.028416,0.094528,0.097984,26.6673,0.11264
+870,33.2338,30.0898,27.9403,0.069376,0.796192,0.00688,0.005312,0.027456,0.09424,0.09728,26.7294,0.114144
+871,32.7785,30.5078,27.9368,0.069056,0.817536,0.006336,0.005824,0.028064,0.095168,0.096224,26.7054,0.113152
+872,32.7554,30.5293,28.1189,0.067936,0.933888,0.007456,0.016896,0.03504,0.095744,0.098752,26.749,0.114176
+873,32.4153,30.8496,27.9127,0.068096,0.804,0.007008,0.005184,0.027584,0.095296,0.098368,26.6925,0.114688
+874,33.1306,30.1836,27.944,0.068608,0.84992,0.006304,0.005952,0.028224,0.093984,0.09696,26.6813,0.112704
+875,32.4051,30.8594,27.9859,0.069632,0.787776,0.006848,0.005376,0.027424,0.096224,0.096256,26.7832,0.113216
+876,32.6864,30.5938,27.9453,0.068384,0.9008,0.006464,0.005696,0.02816,0.094592,0.096352,26.6306,0.114208
+877,32.5245,30.7461,27.8522,0.069536,0.788576,0.007296,0.004992,0.028064,0.095936,0.096992,26.6467,0.114112
+878,32.1064,31.1465,27.9087,0.06816,0.86016,0.007744,0.004544,0.02864,0.095328,0.096896,26.6342,0.112992
+879,32.6989,30.582,27.9478,0.068512,0.829408,0.006336,0.005888,0.028192,0.094752,0.096256,26.7039,0.114624
+880,32.008,31.2422,27.9007,0.068416,0.796384,0.006432,0.005728,0.02832,0.094656,0.09792,26.6902,0.11264
+881,31.6675,31.5781,27.8676,0.06816,0.806912,0.007488,0.0048,0.028448,0.094464,0.097504,26.6452,0.114528
+882,31.7441,31.502,27.8383,0.0696,0.767136,0.00704,0.005152,0.027616,0.094208,0.0976,26.6567,0.113184
+883,31.2024,32.0488,28.0114,0.068512,0.93184,0.007456,0.015072,0.028672,0.095616,0.096736,26.6549,0.11264
+884,33.316,30.0156,27.8215,0.068992,0.770144,0.006688,0.005472,0.027296,0.095424,0.097088,26.6363,0.114144
+885,33.3051,30.0254,27.8857,0.067584,0.786432,0.007584,0.004704,0.02832,0.09456,0.098304,26.6854,0.112768
+886,32.7701,30.5156,28.0274,0.069312,0.968704,0.006976,0.005184,0.043552,0.097856,0.097088,26.626,0.11264
+887,33.3724,29.9648,27.8622,0.067904,0.799904,0.00688,0.005312,0.027424,0.096224,0.096288,26.6486,0.113696
+888,32.3682,30.8945,28.0064,0.069472,0.945536,0.006944,0.00528,0.027488,0.09536,0.097152,26.6465,0.112736
+889,32.3682,30.8945,27.8978,0.069056,0.800928,0.00656,0.00528,0.027488,0.095712,0.0968,26.6824,0.1136
+890,32.7512,30.5332,28.1718,0.069632,1.05635,0.006592,0.0056,0.028192,0.094528,0.096928,26.6998,0.114208
+891,29.5407,33.8516,27.9917,0.068768,0.842592,0.007872,0.004416,0.028512,0.095392,0.096544,26.7333,0.114304
+892,32.1992,31.0566,28.098,0.068,0.943776,0.006464,0.017536,0.02752,0.094208,0.098304,26.7286,0.113568
+893,31.5776,31.668,27.9526,0.068608,0.873504,0.007552,0.004704,0.028544,0.094368,0.097312,26.6636,0.114464
+894,32.4482,30.8184,28.0059,0.068,0.850944,0.007072,0.00416,0.028704,0.095392,0.097088,26.7407,0.113824
+895,31.4961,31.75,28.0085,0.068704,0.893376,0.006624,0.005536,0.027232,0.096256,0.096288,26.701,0.113504
+896,32.6198,30.6562,27.8569,0.06896,0.817824,0.006272,0.006016,0.027904,0.094464,0.0968,26.626,0.112672
+897,31.9103,31.3379,27.8884,0.068384,0.788448,0.007424,0.004864,0.028576,0.094304,0.097952,26.6789,0.119552
+898,32.3907,30.873,27.99,0.069216,0.859648,0.007072,0.00416,0.028608,0.094208,0.097984,26.7165,0.112672
+899,33.011,30.293,27.863,0.06928,0.780512,0.006272,0.005888,0.028032,0.095104,0.097408,26.6659,0.114624
+900,32.5949,30.6797,28.0412,0.0688,0.91808,0.018688,0.005152,0.027616,0.110592,0.097856,26.6817,0.112736
+901,30.7268,32.5449,27.9599,0.06832,0.845024,0.006944,0.005248,0.02752,0.096256,0.096352,26.6997,0.11456
+902,33.2166,30.1055,27.9684,0.072256,0.856384,0.007712,0.004576,0.028672,0.09424,0.098272,26.6936,0.11264
+903,32.5431,30.7285,27.9003,0.067936,0.794624,0.007648,0.00464,0.028352,0.094528,0.098048,26.6898,0.114688
+904,31.7993,31.4473,27.9306,0.069088,0.843296,0.007072,0.004192,0.028672,0.094208,0.096256,26.6747,0.11312
+905,31.411,31.8359,27.8917,0.068832,0.795392,0.006176,0.006016,0.028,0.095008,0.097856,26.6797,0.114688
+906,32.401,30.8633,27.8748,0.069472,0.794784,0.007296,0.004992,0.028,0.092832,0.098112,26.6652,0.114112
+907,32.8226,30.4668,27.8957,0.069312,0.823616,0.007232,0.005056,0.028192,0.094816,0.097792,26.6551,0.114624
+908,33.1542,30.1621,27.8626,0.069024,0.777952,0.00704,0.005152,0.027616,0.09536,0.096384,26.6649,0.119232
+909,27.2326,36.7207,27.8917,0.075232,0.836096,0.006432,0.005728,0.02704,0.096256,0.096416,26.6341,0.1144
+910,33.0259,30.2793,27.9313,0.068576,0.872448,0.007584,0.004704,0.028512,0.0944,0.096384,26.6455,0.113184
+911,32.9218,30.375,27.9975,0.06944,0.8656,0.00704,0.005152,0.027616,0.1024,0.097312,26.709,0.113984
+912,32.9642,30.3359,27.8774,0.069632,0.786432,0.007424,0.004864,0.028608,0.094272,0.096256,26.6772,0.11264
+913,33.521,29.832,27.8633,0.067936,0.790432,0.00624,0.00592,0.028,0.095104,0.102144,26.6529,0.114592
+914,33.3333,30,27.8401,0.069632,0.77824,0.00784,0.004448,0.028672,0.09424,0.097664,26.6451,0.11424
+915,33.1649,30.1523,27.9676,0.069088,0.803456,0.007456,0.004832,0.028544,0.094432,0.097856,26.7485,0.11344
+916,33.2943,30.0352,27.9149,0.068288,0.775168,0.007168,0.005408,0.03552,0.09424,0.098016,26.7082,0.12288
+917,33.2878,30.041,27.8774,0.069632,0.782048,0.006432,0.00544,0.027392,0.095968,0.096512,26.6808,0.11312
+918,32.9007,30.3945,27.8622,0.068896,0.791264,0.00736,0.004928,0.02848,0.094336,0.096384,26.6565,0.114016
+919,31.6675,31.5781,27.9228,0.067936,0.793984,0.006784,0.005728,0.027008,0.095808,0.096704,26.7155,0.11328
+920,32.7617,30.5234,27.8838,0.069024,0.78928,0.00736,0.005056,0.028064,0.094048,0.096704,26.6817,0.11264
+921,33.0792,30.2305,27.9394,0.068128,0.792064,0.006656,0.005504,0.027264,0.095712,0.096672,26.734,0.11344
+922,31.9601,31.2891,27.8958,0.069664,0.8376,0.007456,0.004832,0.028384,0.094336,0.096448,26.6444,0.11264
+923,31.9541,31.2949,27.8794,0.06928,0.779808,0.006976,0.005184,0.027584,0.095584,0.09696,26.6865,0.111552
+924,33.3116,30.0195,27.9122,0.068704,0.811872,0.007712,0.00464,0.02848,0.0944,0.097664,26.6857,0.113056
+925,33.06,30.248,27.8949,0.06944,0.837248,0.00672,0.005408,0.02736,0.09552,0.096992,26.6424,0.113824
+926,33.0749,30.2344,27.986,0.069664,0.896832,0.006304,0.005952,0.027968,0.095136,0.098112,26.6733,0.112672
+927,33.1456,30.1699,27.9142,0.069632,0.827392,0.00624,0.005984,0.028096,0.094848,0.096256,26.6731,0.112704
+928,32.4811,30.7871,28.0003,0.069344,0.88912,0.006208,0.006016,0.027808,0.09456,0.096832,26.6957,0.114688
+929,32.8563,30.4355,28.0744,0.068448,0.904608,0.006752,0.0056,0.027296,0.096128,0.097728,26.7533,0.114528
+930,32.8416,30.4492,27.9611,0.069248,0.85968,0.007008,0.005152,0.027616,0.094208,0.097504,26.6862,0.114464
+931,32.7031,30.5781,28.0099,0.067712,0.872448,0.007488,0.0048,0.02848,0.0944,0.097824,26.7228,0.11392
+932,32.8247,30.4648,27.9593,0.069056,0.916032,0.008192,0.005184,0.027584,0.095648,0.0968,26.6282,0.11264
+933,33.0387,30.2676,28.0697,0.069248,0.948,0.006752,0.0056,0.027328,0.096096,0.107648,26.6945,0.114528
+934,33.092,30.2188,28.0532,0.06784,0.881888,0.006976,0.004064,0.028672,0.095264,0.097184,26.7572,0.11408
+935,33.416,29.9258,27.9224,0.069536,0.853984,0.006304,0.005856,0.028256,0.0944,0.096736,26.6542,0.11312
+936,32.9324,30.3652,28.108,0.069664,0.952288,0.007328,0.00496,0.02832,0.098656,0.11264,26.7203,0.113856
+937,33.0088,30.2949,27.8582,0.069152,0.813568,0.007456,0.0048,0.02832,0.09456,0.106528,26.619,0.114752
+938,33.3464,29.9883,27.8867,0.06896,0.767968,0.006848,0.005376,0.027392,0.095648,0.105056,26.6957,0.11376
+939,32.7512,30.5332,27.9197,0.069632,0.765952,0.007776,0.004512,0.028544,0.095936,0.096704,26.7366,0.114016
+940,31.964,31.2852,28.0023,0.0688,0.91632,0.007808,0.004448,0.038304,0.09472,0.097824,26.6611,0.11296
+941,32.7596,30.5254,27.9368,0.069312,0.789984,0.007008,0.005152,0.027616,0.095232,0.096608,26.7327,0.113152
+942,33.5826,29.7773,27.8487,0.069664,0.775904,0.006432,0.005728,0.02816,0.094592,0.096768,26.658,0.11344
+943,33.0195,30.2852,27.9524,0.069184,0.880864,0.006656,0.005536,0.027232,0.09552,0.100416,26.6533,0.113696
+944,33.0813,30.2285,27.8165,0.072256,0.781568,0.006944,0.005248,0.027488,0.094208,0.09792,26.6176,0.113248
+945,32.4051,30.8594,27.8897,0.069632,0.784416,0.007456,0.0048,0.028256,0.094624,0.097888,26.689,0.113632
+946,32.0983,31.1543,28.0189,0.069088,0.871168,0.007264,0.005024,0.027968,0.094144,0.097024,26.7325,0.114688
+947,32.0441,31.207,27.9197,0.069664,0.818528,0.006816,0.005344,0.027392,0.096256,0.09632,26.6854,0.113984
+948,32.8669,30.4258,27.8898,0.068736,0.809504,0.006528,0.0056,0.027168,0.095904,0.09664,26.667,0.112768
+949,32.254,31.0039,27.9215,0.067584,0.800768,0.007456,0.004832,0.028384,0.096544,0.096256,26.7055,0.114176
+950,33.1156,30.1973,27.9021,0.069216,0.80768,0.00736,0.004928,0.028192,0.094016,0.096928,26.6806,0.113216
+951,33.3986,29.9414,27.9452,0.069568,0.824672,0.007104,0.00512,0.027648,0.09552,0.096992,26.7039,0.114656
+952,33.1585,30.1582,27.9289,0.069056,0.844192,0.006624,0.005568,0.0272,0.095392,0.097056,26.6712,0.11264
+953,32.5348,30.7363,27.9265,0.069632,0.864256,0.007712,0.004576,0.02864,0.094304,0.09824,26.6445,0.114656
+954,33.4903,29.8594,27.8562,0.069408,0.807136,0.007296,0.004992,0.028,0.09488,0.096288,26.6342,0.113984
+955,32.2438,31.0137,27.9102,0.083968,0.79872,0.007392,0.004896,0.028128,0.094752,0.096352,26.6825,0.113472
+956,33.1413,30.1738,27.8835,0.069664,0.802304,0.006624,0.005536,0.027232,0.09424,0.09824,26.667,0.11264
+957,12.2204,81.8301,27.9634,0.069408,0.835808,0.007968,0.016576,0.027968,0.094944,0.097312,26.7,0.113376
+958,32.8774,30.416,27.9859,0.069152,0.956896,0.007168,0.00512,0.027936,0.105056,0.106656,26.5944,0.113504
+959,31.4149,31.832,28.0491,0.068928,0.915488,0.016448,0.004992,0.045056,0.095904,0.09664,26.6916,0.114048
+960,32.4297,30.8359,27.929,0.068224,0.83968,0.007264,0.005024,0.02816,0.094368,0.096608,26.6765,0.113216
+961,32.6802,30.5996,28.1112,0.068224,1.01776,0.00624,0.006016,0.028096,0.094912,0.09632,26.679,0.11456
+962,32.7366,30.5469,27.9368,0.069088,0.877088,0.0072,0.005088,0.027936,0.094752,0.09648,26.6464,0.112704
+963,33.1113,30.2012,27.9121,0.069024,0.830016,0.006208,0.005984,0.028096,0.094912,0.098112,26.6652,0.114464
+964,33.011,30.293,27.9858,0.069312,0.860512,0.007392,0.004864,0.028384,0.098144,0.108352,26.6958,0.113024
+965,32.9197,30.377,28.1168,0.068864,1.02477,0.00768,0.020288,0.028768,0.100992,0.096224,26.6547,0.114496
+966,32.9345,30.3633,27.883,0.069632,0.80416,0.006848,0.005632,0.027136,0.09552,0.096992,26.664,0.113088
+967,32.6864,30.5938,27.8648,0.069184,0.80736,0.008064,0.004224,0.028672,0.095328,0.097056,26.6416,0.113344
+968,32.6447,30.6328,27.9306,0.069312,0.858432,0.007232,0.005056,0.028032,0.094848,0.09824,26.6563,0.113152
+969,33.0792,30.2305,28.0671,0.0696,0.951936,0.006496,0.00416,0.028704,0.09536,0.09712,26.6998,0.113952
+970,33.2511,30.0742,27.9224,0.068992,0.838272,0.007552,0.004736,0.028544,0.094368,0.098272,26.667,0.114656
+971,32.7198,30.5625,28.0052,0.068448,1.00272,0.006944,0.005248,0.02752,0.095808,0.096704,26.5892,0.11264
+972,32.8795,30.4141,28.0537,0.068928,0.967616,0.007776,0.004512,0.028672,0.094208,0.097664,26.6715,0.112832
+973,33.107,30.2051,27.812,0.067744,0.814688,0.006528,0.0056,0.0272,0.095936,0.096544,26.5848,0.112928
+974,32.2175,31.0391,27.9593,0.06944,0.906816,0.006784,0.005376,0.027392,0.095456,0.097088,26.6379,0.113056
+975,32.5451,30.7266,27.9001,0.067776,0.835584,0.00736,0.004928,0.028256,0.094624,0.097696,26.6506,0.11328
+976,33.1778,30.1406,27.8323,0.068864,0.782656,0.006592,0.005632,0.027136,0.095424,0.097024,26.6356,0.113408
+977,33.3659,29.9707,27.8634,0.068352,0.787712,0.00688,0.00528,0.027488,0.096032,0.09648,26.6609,0.114304
+978,32.7764,30.5098,27.982,0.069632,0.904832,0.006528,0.005664,0.027104,0.095776,0.096736,26.6629,0.112832
+979,33.092,30.2188,27.9636,0.068544,0.892864,0.018272,0.00432,0.028672,0.095776,0.096736,26.6445,0.113984
+980,31.8171,31.4297,27.8949,0.068736,0.772,0.00704,0.004192,0.028672,0.095904,0.09664,26.7079,0.113824
+981,32.5638,30.709,27.9862,0.067936,0.882656,0.00736,0.004928,0.028256,0.095936,0.096992,26.6889,0.11328
+982,33.0216,30.2832,28.0647,0.068544,0.997376,0.007168,0.005088,0.032832,0.095232,0.102784,26.6427,0.112992
+983,33.0835,30.2266,27.9462,0.069312,0.831232,0.00672,0.005568,0.028224,0.095232,0.096288,26.6997,0.11392
+984,32.7303,30.5527,27.9281,0.075616,0.86032,0.008064,0.004224,0.028672,0.094208,0.098304,26.6445,0.114176
+985,33.0173,30.2871,28.0904,0.069632,0.943424,0.006848,0.005344,0.027424,0.095968,0.096544,26.7317,0.11344
+986,33.2835,30.0449,27.9586,0.069632,0.898112,0.007104,0.005152,0.027616,0.095424,0.097088,26.6445,0.113952
+987,33.0685,30.2402,27.928,0.069536,0.790624,0.007648,0.00464,0.028512,0.094368,0.09728,26.7209,0.114464
+988,33.2532,30.0723,27.9067,0.068224,0.861664,0.006688,0.005472,0.027296,0.096256,0.09728,26.6312,0.11264
+989,33.1199,30.1934,27.8774,0.069664,0.815072,0.00624,0.005952,0.027936,0.09504,0.096288,26.6479,0.113248
+990,33.4138,29.9277,27.8812,0.068096,0.806048,0.007008,0.005216,0.027552,0.094208,0.096256,26.6629,0.113856
+991,32.6239,30.6523,27.8773,0.069152,0.858592,0.006272,0.005952,0.028128,0.094816,0.096288,26.6036,0.114496
+992,32.943,30.3555,27.8016,0.069664,0.77824,0.007232,0.005024,0.027872,0.095008,0.09776,26.6082,0.112672
+993,33.2813,30.0469,27.9555,0.068352,0.890848,0.008192,0.005312,0.027456,0.096096,0.096448,26.6485,0.11424
+994,32.7953,30.4922,27.9625,0.069632,0.897024,0.007744,0.004544,0.028672,0.094208,0.098304,26.6486,0.113824
+995,32.7198,30.5625,27.9265,0.068672,0.844736,0.008,0.004288,0.028672,0.095264,0.097152,26.6662,0.113568
+996,33.2922,30.0371,27.8204,0.068384,0.80896,0.007264,0.005024,0.028032,0.094816,0.09632,26.5973,0.11424
+997,33.1692,30.1484,27.9456,0.06816,0.848896,0.007136,0.00416,0.02864,0.094208,0.097984,26.683,0.113408
+998,32.9727,30.3281,27.795,0.069056,0.809568,0.007456,0.0048,0.028384,0.094528,0.097696,26.5708,0.1128
+999,32.8859,30.4082,27.8876,0.068992,0.8504,0.006304,0.005824,0.028128,0.095072,0.09792,26.6216,0.113344
+1000,33.0237,30.2812,27.8375,0.069312,0.803136,0.00768,0.004608,0.02848,0.0944,0.097856,26.6183,0.113728
+1001,33.277,30.0508,27.8774,0.068832,0.807392,0.006464,0.005664,0.028192,0.095168,0.097504,26.6554,0.112832
+1002,32.7491,30.5352,27.8759,0.068224,0.849344,0.00672,0.005504,0.027264,0.095712,0.0968,26.6135,0.112832
+1003,32.4215,30.8438,27.8494,0.06944,0.813984,0.007296,0.00496,0.027968,0.094912,0.097504,26.62,0.113344
+1004,33.1671,30.1504,27.8999,0.068928,0.81168,0.006176,0.005952,0.028256,0.094432,0.09664,26.6752,0.11264
+1005,33.4509,29.8945,27.9464,0.069536,0.883872,0.007104,0.005408,0.02736,0.096064,0.096448,26.6465,0.11408
+1006,32.8142,30.4746,27.9037,0.069632,0.830624,0.00704,0.00512,0.027648,0.095328,0.097152,26.658,0.113152
+1007,32.6323,30.6445,27.902,0.06944,0.84096,0.007072,0.004128,0.040224,0.095008,0.097664,26.6328,0.114688
+1008,33.5276,29.8262,27.8639,0.068416,0.813056,0.00768,0.004608,0.028608,0.094272,0.098208,26.636,0.113056
+1009,33.236,30.0879,27.9331,0.067968,0.817184,0.007456,0.0048,0.028672,0.09584,0.096672,26.7016,0.112864
+1010,32.8943,30.4004,27.9452,0.069632,0.811008,0.006272,0.005952,0.028128,0.0944,0.096704,26.7203,0.1128
+1011,32.7911,30.4961,27.829,0.06816,0.833088,0.006592,0.005568,0.0272,0.095648,0.096864,26.5828,0.11312
+1012,31.3341,31.9141,27.9716,0.069632,0.876576,0.007872,0.004384,0.028576,0.095392,0.096704,26.6795,0.112928
+1013,32.676,30.6035,27.8819,0.068032,0.81824,0.00704,0.004128,0.028672,0.095584,0.096928,26.6498,0.113472
+1014,32.8859,30.4082,27.9199,0.069632,0.831488,0.007456,0.01712,0.028,0.09488,0.097728,26.6608,0.112736
+1015,32.181,31.0742,27.9361,0.069632,0.845824,0.007296,0.004992,0.028192,0.094688,0.096256,26.675,0.114144
+1016,32.5224,30.748,27.974,0.067968,0.90704,0.006368,0.005792,0.028,0.09472,0.096672,26.6548,0.11264
+1017,32.477,30.791,28.0044,0.069088,0.93376,0.006816,0.005472,0.027296,0.096256,0.098304,26.654,0.113344
+1018,32.028,31.2227,27.812,0.06928,0.776416,0.006272,0.005952,0.028256,0.094656,0.096416,26.622,0.112832
+1019,32.8226,30.4668,27.9654,0.069632,0.884,0.00688,0.00528,0.027488,0.096064,0.096448,26.6568,0.12288
+1020,31.7894,31.457,27.9828,0.06864,0.917376,0.008096,0.004192,0.028672,0.094208,0.098016,26.6507,0.112864
+1021,32.9748,30.3262,28.0089,0.069696,0.942816,0.006272,0.005952,0.028,0.094976,0.097536,26.6493,0.114304
+1022,32.8964,30.3984,27.9558,0.06832,0.8784,0.00624,0.005856,0.028224,0.094976,0.09744,26.6636,0.1128
+1023,33.1778,30.1406,27.8364,0.069376,0.790368,0.00656,0.0056,0.028832,0.094624,0.097792,26.6297,0.113536
+1024,32.4461,30.8203,27.8835,0.068512,0.814432,0.00672,0.005472,0.027296,0.095808,0.096704,26.6547,0.113888
+1025,33.1542,30.1621,27.9469,0.06848,0.808928,0.007936,0.004352,0.028704,0.09536,0.096896,26.7225,0.113696
+1026,32.0561,31.1953,27.9982,0.0696,0.854016,0.006208,0.005984,0.028032,0.095008,0.098048,26.7287,0.112672
+1027,32.2845,30.9746,27.8868,0.06928,0.855552,0.007008,0.005248,0.02752,0.09616,0.09744,26.6147,0.113856
+1028,33.2727,30.0547,27.9532,0.069408,0.876768,0.007872,0.015776,0.027552,0.096256,0.09824,26.6482,0.113088
+1029,33.0173,30.2871,27.859,0.067584,0.80896,0.007488,0.0048,0.028352,0.09456,0.097824,26.636,0.113408
+1030,32.4215,30.8438,27.9962,0.069408,0.939776,0.006624,0.005536,0.038816,0.101056,0.097728,26.6242,0.113024
+1031,32.4338,30.832,27.9858,0.08192,0.8704,0.007232,0.005056,0.028384,0.094528,0.0976,26.6861,0.114528
+1032,33.1113,30.2012,27.986,0.069216,0.937376,0.007072,0.004192,0.028672,0.09424,0.096224,26.6361,0.112896
+1033,33.1434,30.1719,27.941,0.068608,0.845824,0.00736,0.004896,0.028352,0.094528,0.098304,26.6793,0.113792
+1034,33.2295,30.0938,27.8266,0.068288,0.791584,0.007104,0.004128,0.028672,0.094304,0.098176,26.6211,0.113216
+1035,32.6406,30.6367,27.9502,0.06912,0.868896,0.007296,0.00496,0.028352,0.09456,0.097312,26.6659,0.113824
+1036,32.7911,30.4961,27.8609,0.069408,0.819424,0.007264,0.005024,0.028,0.09488,0.096288,26.6277,0.112864
+1037,33.4509,29.8945,27.8342,0.069344,0.792864,0.007712,0.004576,0.02864,0.095296,0.096736,26.6245,0.114496
+1038,33.0067,30.2969,27.8876,0.069632,0.883872,0.007008,0.004096,0.028672,0.094272,0.09824,26.5885,0.11328
+1039,32.6073,30.668,27.8831,0.068128,0.868352,0.007776,0.004512,0.028512,0.095456,0.096992,26.5996,0.113728
+1040,33.29,30.0391,27.8672,0.069632,0.800768,0.007584,0.004704,0.028416,0.094528,0.098144,26.6507,0.112672
+1041,33.152,30.1641,27.8973,0.067936,0.83872,0.007072,0.005152,0.027616,0.095328,0.097184,26.6444,0.11392
+1042,32.8289,30.4609,27.9477,0.068512,0.9072,0.006208,0.005984,0.028,0.094304,0.097024,26.6273,0.113216
+1043,33.2338,30.0898,27.8653,0.067808,0.84336,0.00656,0.005728,0.028192,0.095104,0.096256,26.609,0.113344
+1044,33.2468,30.0781,27.8753,0.069632,0.786464,0.00768,0.004576,0.028608,0.094272,0.097632,26.6738,0.112672
+1045,32.2784,30.9805,27.8674,0.067872,0.802272,0.00672,0.005088,0.027648,0.09536,0.096672,26.6511,0.114656
+1046,33.1306,30.1836,27.8442,0.068768,0.79088,0.006752,0.00544,0.027328,0.095648,0.096864,26.6383,0.114208
+1047,33.195,30.125,27.8944,0.068192,0.847872,0.007264,0.005024,0.028192,0.094688,0.097312,26.6322,0.113632
+1048,32.8205,30.4688,27.8586,0.069312,0.786496,0.0064,0.005792,0.028224,0.095008,0.098272,26.6564,0.11264
+1049,32.8163,30.4727,27.9305,0.069184,0.837856,0.006368,0.006048,0.028032,0.094976,0.098144,26.6753,0.114592
+1050,32.7282,30.5547,28.0972,0.068256,0.929824,0.00736,0.022752,0.035328,0.094272,0.096256,26.7301,0.113024
+1051,33.0749,30.2344,27.8842,0.068288,0.845856,0.007232,0.005024,0.028,0.09488,0.097568,26.6244,0.112928
+1052,32.9515,30.3477,27.8979,0.069248,0.848032,0.006368,0.00576,0.02816,0.094336,0.097024,26.6363,0.11264
+1053,33.2986,30.0312,27.892,0.069216,0.831744,0.00656,0.005632,0.028192,0.0952,0.097472,26.6451,0.112864
+1054,33.264,30.0625,27.9569,0.068832,0.856,0.007008,0.00544,0.027328,0.09552,0.096928,26.6866,0.113248
+1055,33.3333,30,27.7914,0.069152,0.774624,0.007904,0.004384,0.028672,0.09424,0.097984,26.6013,0.11312
+1056,32.1325,31.1211,27.8772,0.069568,0.807392,0.007648,0.00464,0.028608,0.09424,0.097408,26.6536,0.114144
+1057,33.1907,30.1289,27.9429,0.068928,0.853728,0.007072,0.00416,0.028672,0.095392,0.096736,26.6751,0.11312
+1058,32.8247,30.4648,27.8717,0.068128,0.7864,0.00752,0.004768,0.028256,0.094624,0.097536,26.6714,0.113152
+1059,33.2857,30.043,27.862,0.069568,0.829504,0.006272,0.005952,0.027904,0.09504,0.096608,26.6171,0.114144
+1060,32.6531,30.625,28.2258,0.078112,1.12234,0.007936,0.00432,0.028704,0.096192,0.096288,26.6793,0.11264
+1061,33.1349,30.1797,27.8517,0.068512,0.829408,0.007904,0.005568,0.027488,0.095328,0.096448,26.6075,0.113536
+1062,33.1134,30.1992,27.9837,0.068,0.940032,0.007808,0.00448,0.028672,0.094208,0.100352,26.6252,0.114944
+1063,32.3887,30.875,27.9058,0.069472,0.79888,0.00784,0.004448,0.028608,0.095488,0.096768,26.6912,0.113088
+1064,33.6223,29.7422,27.8097,0.068992,0.772064,0.006912,0.005216,0.027584,0.094176,0.098176,26.6235,0.11312
+1065,33.011,30.293,28.0056,0.067776,0.900576,0.006496,0.005728,0.02704,0.095968,0.096544,26.6915,0.113984
+1066,33.2468,30.0781,27.9118,0.0696,0.8336,0.007552,0.004704,0.02832,0.09456,0.097408,26.6618,0.114336
+1067,33.0493,30.2578,27.9707,0.069632,0.8008,0.007584,0.004672,0.02864,0.094336,0.097856,26.7532,0.113952
+1068,32.8626,30.4297,27.9292,0.068576,0.829248,0.006304,0.005856,0.028,0.094528,0.096896,26.6868,0.11296
+1069,33.1134,30.1992,27.8436,0.068992,0.805536,0.006176,0.005952,0.028096,0.094912,0.096288,26.6233,0.1144
+1070,33.2424,30.082,27.8848,0.06944,0.80416,0.00704,0.005184,0.027584,0.09424,0.097792,26.6654,0.11392
+1071,32.9176,30.3789,27.8799,0.068032,0.782304,0.006208,0.005952,0.02816,0.09488,0.096256,26.6834,0.114688
+1072,31.6127,31.6328,27.978,0.067872,0.871424,0.007072,0.00416,0.028672,0.094208,0.098336,26.693,0.113216
+1073,33.2166,30.1055,27.9256,0.069184,0.8176,0.008032,0.004256,0.028704,0.095232,0.097024,26.6915,0.114048
+1074,33.152,30.1641,27.8714,0.073888,0.825312,0.007584,0.004704,0.028448,0.105792,0.097184,26.6158,0.11264
+1075,33.4991,29.8516,27.8955,0.067712,0.786304,0.007392,0.004896,0.028,0.09488,0.097472,26.6945,0.1144
+1076,32.9091,30.3867,28.0018,0.069472,0.92176,0.007552,0.004736,0.028416,0.094464,0.096256,26.6664,0.112704
+1077,33.152,30.1641,28.0801,0.069376,0.987136,0.024672,0.004256,0.037984,0.09504,0.097792,26.6492,0.114688
+1078,32.7115,30.5703,27.9534,0.06816,0.880544,0.00624,0.00592,0.027936,0.094784,0.096672,26.6588,0.114336
+1079,32.5866,30.6875,27.8446,0.068672,0.798848,0.006976,0.005184,0.027584,0.095776,0.096736,26.6313,0.1136
+1080,33.1735,30.1445,27.9798,0.06912,0.860288,0.020864,0.005696,0.027168,0.09424,0.098208,26.6916,0.11264
+1081,32.9897,30.3125,27.8916,0.068128,0.860128,0.007392,0.004896,0.028224,0.094688,0.097952,26.6161,0.11408
+1082,32.2459,31.0117,27.9065,0.078784,0.787904,0.00672,0.005504,0.027264,0.09552,0.097024,26.6947,0.11312
+1083,33.416,29.9258,27.9163,0.067616,0.79872,0.007968,0.00432,0.028672,0.095456,0.097056,26.7018,0.114688
+1084,32.7743,30.5117,27.8501,0.068832,0.860032,0.007072,0.004096,0.028672,0.09424,0.097696,26.5754,0.114016
+1085,32.8711,30.4219,28.0184,0.06896,0.907168,0.006944,0.005216,0.02752,0.095616,0.096928,26.6956,0.114432
+1086,32.7617,30.5234,27.9075,0.067936,0.872448,0.007648,0.00464,0.044672,0.094464,0.09776,26.6042,0.113696
+1087,32.0441,31.207,27.9488,0.068224,0.935936,0.00768,0.014112,0.028448,0.094912,0.096512,26.5891,0.113824
+1088,32.8542,30.4375,27.9272,0.068192,0.833568,0.007168,0.005088,0.02816,0.094752,0.097568,26.6793,0.113376
+1089,32.888,30.4062,27.8708,0.0688,0.820064,0.008032,0.004224,0.028672,0.095712,0.0968,26.6342,0.114208
+1090,32.7449,30.5391,27.9674,0.06832,0.905184,0.006208,0.005952,0.027936,0.11968,0.097888,26.6224,0.113824
+1091,32.7869,30.5,28.1175,0.082208,1.00816,0.007488,0.004768,0.028256,0.094624,0.096256,26.6813,0.114368
+1092,32.0681,31.1836,27.9928,0.068352,0.920608,0.017344,0.005664,0.028576,0.094784,0.105984,26.6388,0.11264
+1093,32.6822,30.5977,27.8708,0.06912,0.819328,0.006528,0.005632,0.027136,0.09616,0.096352,26.6363,0.114208
+1094,33.355,29.9805,27.8934,0.06784,0.826688,0.006848,0.005344,0.027424,0.09424,0.098144,26.653,0.113888
+1095,32.9812,30.3203,27.9513,0.068,0.880512,0.006272,0.005888,0.028384,0.09472,0.096288,26.6568,0.114432
+1096,33.0749,30.2344,27.8873,0.068928,0.863232,0.007328,0.00496,0.028224,0.094496,0.097504,26.6086,0.114016
+1097,33.0621,30.2461,27.949,0.068992,0.799296,0.006208,0.005952,0.027904,0.095168,0.09744,26.7334,0.114624
+1098,33.1134,30.1992,28.0191,0.068192,0.917184,0.006464,0.005696,0.027072,0.094304,0.09808,26.689,0.11312
+1099,33.1735,30.1445,27.8755,0.068,0.815136,0.00768,0.004576,0.028576,0.095552,0.09648,26.6451,0.114464
+1100,33.0237,30.2812,27.8218,0.069056,0.772832,0.006432,0.005728,0.027072,0.095264,0.097216,26.6342,0.113984
+1101,33.3507,29.9844,27.8358,0.069632,0.772096,0.007616,0.004672,0.028256,0.094656,0.097504,26.6473,0.114112
+1102,32.3723,30.8906,27.8142,0.068608,0.7864,0.007584,0.004736,0.028384,0.094528,0.098112,26.6119,0.114016
+1103,32.7617,30.5234,27.8233,0.06896,0.785056,0.007616,0.004672,0.02864,0.095744,0.0968,26.6219,0.11392
+1104,33.2381,30.0859,27.8556,0.068416,0.792576,0.006176,0.005984,0.028,0.094208,0.096992,26.65,0.11328
+1105,32.9133,30.3828,27.9103,0.068256,0.845664,0.006304,0.005888,0.028096,0.094592,0.096704,26.6506,0.114144
+1106,33.3507,29.9844,27.942,0.069504,0.874624,0.007328,0.00496,0.027968,0.094944,0.09776,26.6511,0.11376
+1107,32.7157,30.5664,27.9306,0.0696,0.84176,0.007424,0.004864,0.028384,0.095744,0.097088,26.6726,0.113152
+1108,32.9982,30.3047,27.8991,0.06864,0.835456,0.00624,0.005888,0.02816,0.094752,0.096512,26.6506,0.112832
+1109,33.2943,30.0352,27.9138,0.068096,0.81696,0.006336,0.005856,0.026912,0.096256,0.097312,26.6821,0.113952
+1110,33.3464,29.9883,27.8221,0.068928,0.778944,0.007456,0.004832,0.028352,0.094272,0.096544,26.63,0.1128
+1111,32.6822,30.5977,27.9968,0.068416,0.88464,0.006304,0.00576,0.027008,0.096288,0.096224,26.6978,0.114368
+1112,33.1864,30.1328,27.8227,0.068192,0.784128,0.0064,0.005824,0.0392,0.096256,0.097312,26.612,0.113312
+1113,33.2295,30.0938,27.9428,0.069152,0.82752,0.006496,0.00576,0.027008,0.095488,0.097024,26.6998,0.114528
+1114,32.4174,30.8477,28.0884,0.083776,0.974368,0.006912,0.005312,0.039264,0.094688,0.09632,26.6749,0.112896
+1115,31.7067,31.5391,27.8365,0.068256,0.794592,0.007776,0.00448,0.028672,0.095712,0.096288,26.6266,0.114176
+1116,32.7073,30.5742,27.7943,0.068416,0.780256,0.006208,0.005984,0.028128,0.094464,0.096704,26.6013,0.112832
+1117,32.3314,30.9297,27.7797,0.068192,0.788032,0.006592,0.005568,0.028288,0.095168,0.097504,26.5771,0.113248
+1118,33.0493,30.2578,27.9654,0.069376,0.862464,0.007488,0.0048,0.028128,0.094752,0.097824,26.6873,0.113344
+1119,33.3899,29.9492,27.9391,0.068064,0.79664,0.008,0.004288,0.028672,0.095776,0.096768,26.7264,0.11456
+1120,31.6206,31.625,27.9302,0.069184,0.848672,0.007232,0.005056,0.028288,0.09424,0.096096,26.6675,0.11392
+1121,33.1477,30.168,27.8741,0.068416,0.810176,0.006944,0.005248,0.02752,0.094464,0.097888,26.6504,0.112992
+1122,33.543,29.8125,27.8275,0.069248,0.770432,0.00752,0.004768,0.028288,0.094496,0.096352,26.6424,0.113952
+1123,31.4961,31.75,27.9306,0.069536,0.85408,0.007296,0.004992,0.02816,0.09472,0.097472,26.6612,0.113152
+1124,32.7701,30.5156,27.8766,0.069632,0.77936,0.007072,0.004096,0.028672,0.094208,0.097888,26.6818,0.11392
+1125,31.3303,31.918,28.0064,0.068736,0.951168,0.008032,0.004256,0.028672,0.096128,0.096384,26.6397,0.113312
+1126,32.9133,30.3828,27.9196,0.069248,0.876928,0.007872,0.004416,0.028704,0.094208,0.096256,26.6281,0.113856
+1127,33.4641,29.8828,27.8716,0.074176,0.802912,0.007392,0.004864,0.028256,0.094624,0.100352,26.6445,0.114496
+1128,32.6198,30.6562,27.808,0.069376,0.766816,0.007904,0.004384,0.028672,0.094208,0.096288,26.6271,0.113312
+1129,33.2252,30.0977,27.9234,0.06864,0.866144,0.007712,0.004704,0.028448,0.096032,0.096736,26.6404,0.114656
+1130,32.57,30.7031,27.8279,0.069312,0.816576,0.00704,0.004096,0.028672,0.094208,0.097952,26.5957,0.114336
+1131,32.6989,30.582,27.9859,0.069632,0.95984,0.006816,0.005408,0.02736,0.096064,0.096448,26.6097,0.114688
+1132,30.8063,32.4609,28.162,0.06928,1.06326,0.006272,0.016256,0.02864,0.09536,0.097184,26.6726,0.113184
+1133,33.3681,29.9688,27.8241,0.069024,0.774752,0.00736,0.004928,0.028,0.09488,0.096256,26.6342,0.114688
+1134,32.2499,31.0078,27.8757,0.067936,0.786432,0.008064,0.004224,0.028672,0.094208,0.098208,26.6749,0.112992
+1135,31.7736,31.4727,27.9536,0.06912,0.84272,0.007456,0.004832,0.02816,0.095904,0.097024,26.6952,0.113184
+1136,30.944,32.3164,27.8321,0.069312,0.775904,0.006752,0.005632,0.0272,0.096032,0.097504,26.6393,0.114464
+1137,31.4342,31.8125,27.925,0.068064,0.80624,0.006816,0.005376,0.027392,0.096096,0.096416,26.7039,0.114688
+1138,31.6479,31.5977,28.1129,0.068736,0.961408,0.018432,0.005344,0.027424,0.095552,0.097024,26.7255,0.113504
+1139,31.6597,31.5859,27.9224,0.069632,0.787648,0.006976,0.005216,0.027552,0.095744,0.096768,26.7196,0.11328
+1140,33.1434,30.1719,27.8845,0.068512,0.774144,0.007264,0.005024,0.02816,0.094464,0.096512,26.6977,0.112736
+1141,31.0755,32.1797,27.8548,0.068896,0.793088,0.006368,0.00576,0.028256,0.095008,0.0976,26.6462,0.113632
+1142,31.7224,31.5234,27.7583,0.06912,0.781824,0.007136,0.004128,0.028672,0.094208,0.098048,26.5622,0.112928
+1143,30.8174,32.4492,27.8518,0.069632,0.77744,0.006944,0.005312,0.027456,0.096032,0.096512,26.6568,0.115712
+1144,31.5971,31.6484,27.9453,0.067968,0.833056,0.006624,0.022016,0.028192,0.103392,0.097696,26.6736,0.112768
+1145,32.8247,30.4648,27.9392,0.068448,0.827392,0.007968,0.00432,0.028672,0.096,0.096256,26.6959,0.114208
+1146,32.2865,30.9727,27.8621,0.069088,0.810784,0.006912,0.005248,0.02752,0.095264,0.097184,26.6364,0.113792
+1147,30.9515,32.3086,27.8241,0.068288,0.814112,0.007072,0.00416,0.028672,0.094208,0.098304,26.5953,0.113952
+1148,32.9176,30.3789,27.8246,0.068288,0.775488,0.006848,0.005312,0.027456,0.094208,0.098048,26.636,0.11296
+1149,32.1608,31.0938,27.8958,0.06912,0.810496,0.00656,0.004704,0.02832,0.094592,0.09744,26.6709,0.113696
+1150,30.2994,33.0039,27.9919,0.0696,0.886816,0.007616,0.004672,0.028416,0.094464,0.097312,26.69,0.113088
+1151,32.6614,30.6172,28.0174,0.068224,0.98944,0.00768,0.004608,0.027968,0.094912,0.107616,26.6024,0.114528
+1152,33.0878,30.2227,27.8586,0.068192,0.810976,0.007488,0.0048,0.02848,0.0944,0.097664,26.6328,0.113728
+1153,32.4256,30.8398,27.9774,0.069024,0.852576,0.007488,0.0048,0.028352,0.094528,0.097696,26.7086,0.114336
+1154,32.5286,30.7422,27.9386,0.068928,0.817472,0.006528,0.005728,0.031136,0.094208,0.098208,26.7019,0.114432
+1155,33.2079,30.1133,27.8815,0.069056,0.799296,0.007392,0.004896,0.028128,0.094752,0.097312,26.6672,0.11344
+1156,32.9642,30.3359,27.99,0.0696,0.907296,0.007936,0.004352,0.028672,0.094208,0.096288,26.667,0.114656
+1157,32.2703,30.9883,27.9967,0.068352,0.93184,0.007328,0.00496,0.02832,0.09456,0.097376,26.6452,0.11872
+1158,32.2296,31.0273,27.8856,0.069632,0.802336,0.006624,0.005568,0.02736,0.096096,0.096288,26.669,0.112672
+1159,32.6323,30.6445,27.8832,0.069408,0.807136,0.007392,0.004896,0.028096,0.094784,0.097888,26.6592,0.114336
+1160,33.0237,30.2812,27.8221,0.069056,0.806624,0.00704,0.00512,0.027616,0.095488,0.097056,26.6014,0.11264
+1161,31.9282,31.3203,27.8405,0.06864,0.807904,0.007776,0.004512,0.028672,0.095616,0.09664,26.6176,0.113184
+1162,31.601,31.6445,27.869,0.069632,0.779488,0.006944,0.005216,0.027552,0.09568,0.096832,26.6746,0.113024
+1163,31.8448,31.4023,27.9471,0.068864,0.852864,0.007744,0.004512,0.028672,0.09424,0.097344,26.6795,0.113376
+1164,30.7729,32.4961,27.8294,0.069632,0.776,0.006336,0.005792,0.026976,0.095808,0.096704,26.6383,0.113824
+1165,31.5387,31.707,27.8262,0.07696,0.792992,0.006624,0.005568,0.027168,0.104448,0.09776,26.6012,0.113536
+1166,31.7736,31.4727,27.8377,0.068736,0.799616,0.00768,0.004608,0.028672,0.09424,0.097664,26.6237,0.112736
+1167,31.3112,31.9375,27.815,0.06912,0.784704,0.006336,0.005856,0.02704,0.096128,0.097408,26.6142,0.114176
+1168,32.0561,31.1953,27.9065,0.068064,0.845824,0.00784,0.004448,0.028608,0.094272,0.09792,26.6467,0.112768
+1169,33.2468,30.0781,27.7707,0.068608,0.795424,0.0064,0.00576,0.028096,0.095136,0.097312,26.5595,0.114496
+1170,32.0521,31.1992,27.8183,0.067936,0.79216,0.00656,0.005696,0.027072,0.095712,0.0968,26.6133,0.113056
+1171,29.7674,33.5938,27.8364,0.069152,0.784896,0.007264,0.004992,0.028192,0.09472,0.097824,26.6363,0.113088
+1172,32.1487,31.1055,27.8824,0.068544,0.802816,0.007648,0.004608,0.028544,0.094336,0.097984,26.6652,0.112736
+1173,31.3956,31.8516,27.8866,0.068448,0.828608,0.007072,0.00416,0.028672,0.095392,0.09712,26.6438,0.11328
+1174,31.6245,31.6211,27.8303,0.069376,0.839968,0.006272,0.005952,0.028064,0.094112,0.097024,26.5769,0.112608
+1175,32.3151,30.9453,27.9379,0.067584,0.876544,0.007968,0.00432,0.028672,0.095584,0.096896,26.6463,0.113984
+1176,32.6447,30.6328,27.9491,0.069344,0.827008,0.006816,0.00544,0.027328,0.095264,0.097248,26.7071,0.113472
+1177,32.541,30.7305,27.8876,0.069664,0.839648,0.007456,0.004832,0.028352,0.094528,0.09728,26.6324,0.113472
+1178,32.2013,31.0547,27.8835,0.069184,0.824064,0.007872,0.004384,0.028672,0.094208,0.098176,26.6441,0.112864
+1179,33.3681,29.9688,27.8768,0.069664,0.767232,0.00688,0.005312,0.027456,0.095872,0.09664,26.6895,0.11824
+1180,31.1208,32.1328,27.8528,0.069504,0.80832,0.006912,0.005216,0.027552,0.095392,0.097216,26.6295,0.113184
+1181,31.7697,31.4766,27.8445,0.068448,0.76592,0.007296,0.004992,0.028064,0.100864,0.096384,26.6586,0.113888
+1182,32.5451,30.7266,27.8482,0.069312,0.780512,0.00624,0.00592,0.028,0.095104,0.0976,26.6349,0.13056
+1183,31.9202,31.3281,27.9961,0.068736,0.924416,0.006272,0.006144,0.028288,0.094592,0.097568,26.6555,0.114624
+1184,32.3805,30.8828,27.9206,0.069088,0.789248,0.007808,0.00448,0.02864,0.09536,0.097184,26.7155,0.113312
+1185,31.9122,31.3359,27.8422,0.067776,0.81712,0.00784,0.004448,0.028672,0.094208,0.097696,26.6103,0.114144
+1186,31.996,31.2539,27.9279,0.069632,0.852,0.007744,0.004512,0.028672,0.094208,0.097952,26.6592,0.113984
+1187,32.6781,30.6016,27.8295,0.069344,0.79696,0.007392,0.004896,0.028096,0.094816,0.096256,26.6178,0.113952
+1188,31.6401,31.6055,27.8176,0.06816,0.763904,0.00624,0.006016,0.027776,0.094912,0.098368,26.6385,0.113728
+1189,31.75,31.4961,28.2442,0.06832,1.16941,0.007648,0.00464,0.02832,0.094592,0.097696,26.6553,0.118272
+1190,32.9176,30.3789,27.8876,0.069248,0.815488,0.007904,0.004384,0.028672,0.094208,0.097568,26.6566,0.113536
+1191,31.8448,31.4023,27.8637,0.068288,0.770016,0.0072,0.005088,0.028704,0.095328,0.096896,26.6792,0.112992
+1192,31.4612,31.7852,27.8385,0.069248,0.788,0.007008,0.005184,0.027584,0.09424,0.097792,26.6368,0.11264
+1193,31.5621,31.6836,27.8939,0.067712,0.810592,0.00656,0.005824,0.02816,0.09504,0.096256,26.6706,0.113152
+1194,33.1563,30.1602,27.8897,0.069536,0.839936,0.006784,0.005632,0.027168,0.095712,0.096832,26.6353,0.112832
+1195,31.9202,31.3281,27.8445,0.067744,0.806592,0.006464,0.005696,0.027072,0.09616,0.097536,26.6228,0.114432
+1196,31.9083,31.3398,27.8446,0.069056,0.76448,0.007456,0.004832,0.028224,0.094688,0.097888,26.6652,0.112864
+1197,32.4873,30.7812,27.8936,0.069664,0.817056,0.00624,0.005952,0.027904,0.095072,0.09632,26.6609,0.114496
+1198,33.1606,30.1562,27.9183,0.069568,0.886592,0.018688,0.005536,0.027232,0.095264,0.097248,26.6056,0.11264
+1199,31.4188,31.8281,27.88,0.068192,0.792064,0.006656,0.005504,0.027328,0.100224,0.097856,26.6692,0.113024
+1200,33.0664,30.2422,27.9859,0.069664,0.985088,0.022496,0.006048,0.028032,0.094752,0.09648,26.5705,0.112864
+1201,32.3764,30.8867,27.8631,0.06864,0.879488,0.00624,0.005952,0.028032,0.095072,0.096224,26.5703,0.113152
+1202,33.011,30.293,27.7997,0.068288,0.77968,0.006752,0.005376,0.027424,0.09552,0.09696,26.6056,0.114176
+1203,32.9854,30.3164,27.8695,0.067872,0.833184,0.006496,0.005696,0.027072,0.095904,0.096608,26.624,0.11264
+1204,32.2175,31.0391,27.9572,0.068896,0.849696,0.015296,0.006144,0.027936,0.104256,0.097184,26.6748,0.113056
+1205,32.1003,31.1523,27.9204,0.069408,0.807168,0.007936,0.005568,0.027424,0.11264,0.115744,26.6598,0.114688
+1206,33.1092,30.2031,27.818,0.069184,0.834016,0.007648,0.00464,0.02864,0.09424,0.097952,26.5685,0.113152
+1207,31.8725,31.375,27.7996,0.06928,0.769824,0.00672,0.00544,0.027328,0.095936,0.096576,26.6138,0.114688
+1208,33.0365,30.2695,27.861,0.069184,0.80704,0.006496,0.005696,0.028224,0.106624,0.097152,26.6276,0.112928
+1209,31.1625,32.0898,27.8611,0.06896,0.783072,0.007584,0.004704,0.028512,0.0944,0.097472,26.6634,0.112992
+1210,31.8487,31.3984,27.7833,0.06896,0.778272,0.006976,0.005184,0.027552,0.096192,0.0976,26.5896,0.11296
+1211,31.4883,31.7578,27.8938,0.067584,0.825344,0.0072,0.005088,0.027904,0.094976,0.096256,26.6547,0.114688
+1212,31.8725,31.375,27.8819,0.069184,0.835744,0.00688,0.00528,0.027488,0.095264,0.097248,26.6319,0.112896
+1213,33.2122,30.1094,27.7844,0.068832,0.789344,0.007744,0.004512,0.028608,0.094336,0.097568,26.5793,0.11408
+1214,33.0578,30.25,27.9608,0.068768,0.961408,0.007744,0.004544,0.028512,0.094368,0.09744,26.585,0.113024
+1215,32.1851,31.0703,27.8467,0.069632,0.852,0.007392,0.004864,0.028384,0.094528,0.097696,26.5792,0.11296
+1216,33.6179,29.7461,27.7715,0.068544,0.790144,0.006528,0.005664,0.02816,0.095136,0.097408,26.5656,0.114368
+1217,30.3425,32.957,27.947,0.0688,0.887488,0.006272,0.005952,0.028,0.095072,0.096256,26.6446,0.11456
+1218,33.1563,30.1602,27.8979,0.069312,0.825664,0.007328,0.00496,0.028128,0.094752,0.096416,26.6584,0.112864
+1219,32.9897,30.3125,27.7964,0.068544,0.79872,0.007424,0.004864,0.028352,0.094528,0.108256,26.5724,0.113376
+1220,32.016,31.2344,27.9794,0.074144,0.896256,0.006912,0.005248,0.02752,0.094208,0.098336,26.6629,0.113856
+1221,32.2053,31.0508,27.8569,0.069504,0.822816,0.006752,0.005568,0.0272,0.096256,0.096256,26.6179,0.114656
+1222,33.4597,29.8867,27.8419,0.069568,0.789728,0.007008,0.00512,0.027648,0.096,0.097728,26.6351,0.114048
+1223,32.2175,31.0391,27.9651,0.068832,0.893216,0.006656,0.005536,0.02736,0.100256,0.09792,26.651,0.114368
+1224,32.8795,30.4141,27.9183,0.069632,0.831296,0.007424,0.005056,0.027936,0.094464,0.0968,26.6728,0.112928
+1225,33.3507,29.9844,27.9327,0.069408,0.907136,0.006496,0.005696,0.027136,0.095712,0.096768,26.6096,0.11472
+1226,33.092,30.2188,27.7873,0.069632,0.78032,0.008192,0.005792,0.026944,0.096224,0.096288,26.5907,0.113216
+1227,33.1477,30.168,27.8712,0.069056,0.784896,0.00624,0.005952,0.028448,0.094592,0.097696,26.6697,0.114624
+1228,32.3723,30.8906,27.9098,0.068032,0.8488,0.007136,0.004096,0.028704,0.095456,0.097024,26.6465,0.113984
+1229,33.2166,30.1055,27.8446,0.068992,0.827968,0.006208,0.005984,0.028448,0.09872,0.097568,26.596,0.114656
+1230,32.9472,30.3516,27.9896,0.069632,0.931872,0.007488,0.004768,0.028448,0.110816,0.11264,26.6108,0.11312
+1231,33.2252,30.0977,27.8837,0.068864,0.87344,0.008064,0.016416,0.028416,0.09456,0.096256,26.5847,0.113024
+1232,32.9727,30.3281,27.8772,0.068224,0.823296,0.006272,0.006016,0.045024,0.095968,0.096576,26.622,0.113888
+1233,33.4597,29.8867,27.854,0.069216,0.807328,0.008096,0.0184,0.028064,0.105184,0.097728,26.6061,0.113856
+1234,33.4247,29.918,27.8198,0.068096,0.7944,0.006272,0.00592,0.028096,0.094304,0.09696,26.6117,0.114016
+1235,32.6822,30.5977,28.0822,0.068672,1.06346,0.00656,0.0056,0.027168,0.095424,0.096864,26.6051,0.113344
+1236,32.2947,30.9648,27.8917,0.06832,0.88416,0.00672,0.00544,0.031424,0.094208,0.098304,26.5892,0.113984
+1237,33.329,30.0039,27.9019,0.068736,0.807808,0.008192,0.005216,0.027552,0.096224,0.096288,26.6772,0.114624
+1238,33.1692,30.1484,27.9707,0.069472,0.8808,0.0072,0.005088,0.028032,0.094688,0.096416,26.6752,0.113792
+1239,33.1477,30.168,27.8362,0.068992,0.815424,0.006464,0.005696,0.027072,0.095936,0.096576,26.6056,0.114496
+1240,32.9091,30.3867,27.7838,0.068256,0.790144,0.00656,0.0056,0.02816,0.095232,0.096256,26.581,0.11264
+1241,32.0963,31.1562,27.8876,0.068576,0.8656,0.006848,0.005504,0.027264,0.095744,0.096768,26.6076,0.113728
+1242,33.5035,29.8477,27.8255,0.069024,0.775872,0.00704,0.00416,0.028672,0.095808,0.09776,26.6332,0.114016
+1243,33.303,30.0273,27.842,0.069312,0.794944,0.006144,0.00608,0.028064,0.09488,0.098144,26.6302,0.114208
+1244,32.5783,30.6953,27.888,0.067968,0.862176,0.00736,0.004928,0.02832,0.094528,0.097536,26.6125,0.11264
+1245,31.988,31.2617,27.8472,0.068256,0.81104,0.008032,0.004224,0.028704,0.094208,0.098144,26.62,0.11456
+1246,32.9303,30.3672,27.7299,0.069568,0.764,0.008032,0.004224,0.028672,0.095264,0.097248,26.5501,0.112768
+1247,32.7701,30.5156,27.8242,0.069248,0.829312,0.006688,0.005472,0.027264,0.096128,0.09744,26.5796,0.113024
+1248,30.888,32.375,28.7048,0.069504,1.66726,0.0072,0.005088,0.028,0.094656,0.09648,26.624,0.112672
+1249,33.1864,30.1328,27.8406,0.068064,0.774144,0.007552,0.004736,0.028288,0.094624,0.096352,26.6526,0.114272
+1250,32.3559,30.9062,27.9647,0.075136,0.929856,0.006752,0.016352,0.034272,0.094016,0.096992,26.5974,0.113984
+1251,32.3192,30.9414,27.8616,0.068192,0.795616,0.007072,0.004192,0.028672,0.095552,0.096896,26.6507,0.11472
+1252,33.3073,30.0234,27.9101,0.067584,0.837632,0.007712,0.004576,0.028448,0.094432,0.09808,26.659,0.112704
+1253,32.2337,31.0234,28.0228,0.0688,0.981824,0.00768,0.004608,0.028448,0.09584,0.096896,26.6252,0.113472
+1254,32.9854,30.3164,27.9893,0.069632,0.919456,0.00624,0.00592,0.028,0.095008,0.096352,26.6547,0.114016
+1255,33.1649,30.1523,27.8494,0.06832,0.806944,0.007648,0.004608,0.028576,0.09536,0.097024,26.6281,0.112896
+1256,33.0024,30.3008,27.8381,0.069664,0.816864,0.0064,0.005856,0.026912,0.096256,0.097344,26.6045,0.114368
+1257,33.0195,30.2852,27.8878,0.068992,0.8584,0.006496,0.005664,0.027104,0.095872,0.096672,26.6158,0.1128
+1258,33.028,30.2773,27.8262,0.068,0.776192,0.007776,0.004512,0.028672,0.094208,0.097376,26.6352,0.114272
+1259,33.0707,30.2383,27.7777,0.068384,0.794624,0.007488,0.0048,0.02832,0.09456,0.09744,26.5675,0.114592
+1260,33.0237,30.2812,27.8814,0.06912,0.850464,0.006208,0.005952,0.028064,0.094912,0.096256,26.6158,0.114592
+1261,33.152,30.1641,27.8119,0.068544,0.774176,0.007424,0.004832,0.02816,0.09472,0.096256,26.624,0.113792
+1262,32.599,30.6758,27.8377,0.069088,0.79696,0.006432,0.00544,0.027328,0.095584,0.109216,26.6149,0.112704
+1263,32.4461,30.8203,27.8079,0.067776,0.81664,0.007744,0.005056,0.027936,0.09488,0.09632,26.5769,0.114624
+1264,32.6239,30.6523,27.803,0.067776,0.792576,0.006272,0.005952,0.028032,0.094912,0.101952,26.5931,0.112448
+1265,33.3768,29.9609,27.7989,0.067968,0.786432,0.007264,0.005024,0.027968,0.094912,0.097312,26.5979,0.114176
+1266,33.3507,29.9844,27.7943,0.06848,0.777824,0.006592,0.005568,0.027168,0.095968,0.09792,26.6021,0.112704
+1267,33.5562,29.8008,27.7787,0.068832,0.805312,0.006496,0.005664,0.027104,0.09568,0.096832,26.5585,0.114272
+1268,32.8374,30.4531,27.8619,0.068512,0.790592,0.007968,0.004224,0.028672,0.095584,0.096672,26.6563,0.113344
+1269,33.0451,30.2617,27.9476,0.068128,0.853056,0.007104,0.005152,0.027648,0.095488,0.096736,26.6813,0.112896
+1270,33.1864,30.1328,27.8092,0.068928,0.774752,0.006272,0.00592,0.028128,0.094976,0.097632,26.6185,0.114144
+1271,32.7575,30.5273,27.8317,0.06896,0.80144,0.007616,0.004672,0.028448,0.095808,0.09696,26.6138,0.114048
+1272,31.9282,31.3203,27.8098,0.069632,0.767552,0.006592,0.005536,0.027232,0.095584,0.096928,26.6276,0.113152
+1273,33.4116,29.9297,27.8487,0.069472,0.783808,0.00688,0.005312,0.027456,0.095648,0.096864,26.6499,0.113408
+1274,31.8091,31.4375,27.8918,0.069632,0.837632,0.007392,0.004896,0.02832,0.09456,0.097472,26.6392,0.112736
+1275,33.3116,30.0195,27.7255,0.068224,0.7896,0.00704,0.005216,0.027552,0.095776,0.096736,26.5213,0.114016
+1276,33.3203,30.0117,27.8275,0.069152,0.791008,0.007744,0.004544,0.028576,0.094304,0.096256,26.622,0.113984
+1277,32.9515,30.3477,28.0125,0.069152,0.967136,0.007904,0.004384,0.028672,0.095712,0.096608,26.6283,0.114688
+1278,32.2175,31.0391,27.8495,0.068384,0.829472,0.007744,0.004512,0.028544,0.094368,0.098208,26.6051,0.113216
+1279,33.3203,30.0117,27.7852,0.068448,0.794688,0.008096,0.004192,0.028672,0.095808,0.096704,26.5748,0.113792
+1280,33.0878,30.2227,27.8825,0.069664,0.884448,0.0064,0.016384,0.028704,0.095232,0.0968,26.5712,0.113696
+1281,30.8174,32.4492,29.1652,0.069504,2.10547,0.007712,0.004576,0.02848,0.095488,0.096832,26.6428,0.114368
+1282,32.5162,30.7539,27.824,0.069504,0.776896,0.007584,0.004704,0.028544,0.094336,0.098048,26.6304,0.114016
+1283,32.4626,30.8047,28.1082,0.086016,1.00147,0.007648,0.00464,0.02848,0.094432,0.11376,26.6577,0.11408
+1284,32.8753,30.418,27.8631,0.069664,0.884704,0.007424,0.004864,0.028416,0.094464,0.09808,26.5623,0.11312
+1285,32.6614,30.6172,27.8242,0.081952,0.841728,0.007584,0.004704,0.028512,0.0944,0.097472,26.5531,0.114688
+1286,32.9684,30.332,27.8173,0.069088,0.801184,0.006272,0.005888,0.02688,0.095424,0.097088,26.6015,0.114016
+1287,32.9897,30.3125,27.8261,0.068544,0.772064,0.00624,0.005952,0.02832,0.094592,0.09632,26.6403,0.113792
+1288,33.2424,30.082,27.9057,0.069312,0.879488,0.007744,0.004544,0.028672,0.094208,0.098304,26.6097,0.113792
+1289,32.2499,31.0078,27.7686,0.068,0.795808,0.007008,0.005184,0.027584,0.095968,0.096544,26.5585,0.114048
+1290,33.1993,30.1211,27.8134,0.069248,0.835968,0.007456,0.004832,0.028416,0.094464,0.0976,26.5625,0.112928
+1291,32.8205,30.4688,28.0677,0.067936,0.9728,0.007232,0.005056,0.028128,0.094784,0.096448,26.6811,0.114176
+1292,33.0664,30.2422,27.9122,0.069632,0.86224,0.007712,0.004544,0.028672,0.094208,0.098304,26.6342,0.11264
+1293,33.0365,30.2695,27.8613,0.067904,0.873472,0.007072,0.004192,0.038912,0.095776,0.096736,26.564,0.11328
+1294,33.1092,30.2031,27.8787,0.0696,0.849664,0.00672,0.005408,0.02736,0.095744,0.096768,26.6138,0.113664
+1295,32.9982,30.3047,27.7817,0.068192,0.771264,0.006944,0.005376,0.027392,0.095744,0.096672,26.5972,0.112928
+1296,33.4291,29.9141,27.8291,0.06848,0.776,0.006336,0.005792,0.027168,0.096064,0.097376,26.639,0.112928
+1297,32.8247,30.4648,27.9696,0.069216,0.944576,0.007296,0.004992,0.028064,0.094816,0.097888,26.608,0.114688
+1298,33.0578,30.25,27.8364,0.06944,0.827584,0.00736,0.004928,0.028256,0.094368,0.096512,26.595,0.112928
+1299,33.4335,29.9102,27.816,0.06944,0.792736,0.00688,0.005312,0.027424,0.095904,0.096608,26.6076,0.114112
+1300,33.0067,30.2969,27.91,0.068128,0.84752,0.006496,0.005664,0.027104,0.095584,0.09792,26.6486,0.113024
+1301,33.0451,30.2617,27.7975,0.075456,0.778432,0.006336,0.005824,0.02704,0.096128,0.097472,26.5974,0.113472
+1302,33.2424,30.082,27.9167,0.068,0.818464,0.00688,0.016384,0.02992,0.09296,0.09808,26.673,0.112992
+1303,30.4653,32.8242,27.7974,0.06816,0.782304,0.007392,0.004896,0.028128,0.094784,0.097792,26.5999,0.114048
+1304,31.9043,31.3438,27.7833,0.067936,0.814848,0.0064,0.005888,0.027968,0.095072,0.096352,26.5556,0.113248
+1305,33.2122,30.1094,27.8153,0.069376,0.801024,0.007872,0.004416,0.028672,0.095264,0.097248,26.5974,0.114016
+1306,32.7911,30.4961,27.8511,0.069632,0.786752,0.007296,0.004992,0.027968,0.094848,0.096352,26.6503,0.112928
+1307,32.6948,30.5859,28.008,0.069248,0.907328,0.006464,0.005248,0.02752,0.095744,0.096768,26.6853,0.114336
+1308,33.2036,30.1172,27.8955,0.069472,0.826976,0.01696,0.005888,0.027968,0.095168,0.097408,26.6413,0.114336
+1309,32.8964,30.3984,27.7975,0.067584,0.837056,0.00672,0.00544,0.027328,0.095968,0.096544,26.5479,0.112928
+1310,32.57,30.7031,27.8234,0.067712,0.774144,0.007328,0.00496,0.028288,0.094592,0.097632,26.6344,0.114304
+1311,33.3464,29.9883,27.8304,0.068288,0.812608,0.00656,0.0056,0.028288,0.094656,0.096736,26.6035,0.114176
+1312,31.7578,31.4883,27.7801,0.067776,0.808384,0.00656,0.0056,0.027168,0.095904,0.096608,26.5585,0.113664
+1313,29.7674,33.5938,27.8326,0.06784,0.772096,0.007296,0.004992,0.027936,0.094848,0.096448,26.6475,0.1136
+1314,32.8542,30.4375,27.7726,0.0696,0.79056,0.007808,0.00448,0.028672,0.094208,0.098304,26.5646,0.114368
+1315,33.342,29.9922,27.8487,0.06944,0.802816,0.007712,0.004768,0.02832,0.09456,0.098304,26.6295,0.113312
+1316,33.1434,30.1719,27.8068,0.069632,0.820288,0.007072,0.004128,0.028672,0.09536,0.097184,26.5706,0.113888
+1317,33.0493,30.2578,27.8351,0.068416,0.819328,0.008192,0.00544,0.027328,0.096256,0.096288,26.5993,0.114592
+1318,32.4297,30.8359,27.8398,0.069376,0.876832,0.007392,0.004864,0.028256,0.094624,0.096256,26.5482,0.113984
+1319,33.3986,29.9414,27.7975,0.068672,0.815584,0.006624,0.005536,0.027232,0.095808,0.096704,26.568,0.113344
+1320,33.277,30.0508,27.8759,0.068512,0.811072,0.007552,0.004736,0.034848,0.095776,0.096704,26.6424,0.11424
+1321,32.7408,30.543,27.904,0.069152,0.898528,0.007104,0.00416,0.02976,0.095168,0.097696,26.5889,0.113568
+1322,33.4073,29.9336,27.8025,0.068512,0.828672,0.006912,0.005248,0.02752,0.094208,0.097408,26.5614,0.11264
+1323,33.5386,29.8164,27.7816,0.068128,0.78848,0.007744,0.004544,0.028512,0.094368,0.09824,26.577,0.114592
+1324,33.3377,29.9961,27.8485,0.069088,0.848704,0.007456,0.004832,0.028288,0.094592,0.096288,26.5862,0.11312
+1325,33.122,30.1914,27.734,0.069312,0.786752,0.007392,0.004896,0.02816,0.09472,0.097824,26.5316,0.113376
+1326,33.3073,30.0234,27.8142,0.068576,0.792576,0.007968,0.00432,0.028672,0.095296,0.0968,26.606,0.114048
+1327,33.3942,29.9453,27.7643,0.067904,0.80896,0.006336,0.00592,0.028064,0.094688,0.096416,26.5421,0.113888
+1328,32.9303,30.3672,27.8563,0.067872,0.855712,0.006528,0.005696,0.028096,0.094976,0.097696,26.5859,0.11376
+1329,33.5518,29.8047,27.7443,0.067616,0.767936,0.006208,0.005984,0.027968,0.095072,0.097984,26.5627,0.112832
+1330,33.3247,30.0078,27.8656,0.069504,0.8792,0.00736,0.004928,0.028224,0.094688,0.097536,26.5712,0.11296
+1331,33.1477,30.168,27.7647,0.069248,0.779776,0.00704,0.00512,0.027648,0.095616,0.09808,26.5675,0.114688
+1332,33.3594,29.9766,27.7796,0.068064,0.783648,0.00688,0.005408,0.027488,0.095712,0.096704,26.583,0.112672
+1333,33.0067,30.2969,27.9041,0.085472,0.839808,0.006624,0.005504,0.027264,0.095808,0.09776,26.6311,0.114688
+1334,33.4378,29.9062,27.7339,0.068704,0.78128,0.007808,0.00448,0.028672,0.095488,0.097024,26.5371,0.113344
+1335,33.1263,30.1875,27.8016,0.067584,0.79872,0.007232,0.017344,0.028384,0.095552,0.09696,26.571,0.118784
+1336,32.8458,30.4453,27.9238,0.068896,0.920288,0.007456,0.004832,0.028224,0.094656,0.09744,26.588,0.113984
+1337,33.1349,30.1797,27.7852,0.067712,0.803008,0.007808,0.004288,0.038912,0.097344,0.097216,26.5556,0.113248
+1338,33.1735,30.1445,27.8088,0.069632,0.827392,0.007712,0.004576,0.028672,0.094208,0.098016,26.5649,0.113728
+1339,32.7366,30.5469,27.8057,0.068704,0.8304,0.008032,0.004256,0.028672,0.096128,0.096384,26.5585,0.114624
+1340,33.3247,30.0078,27.795,0.069408,0.771712,0.006752,0.005408,0.02736,0.09616,0.096384,26.6087,0.113152
+1341,33.4466,29.8984,27.8487,0.068032,0.83152,0.007744,0.004512,0.028608,0.095296,0.103424,26.5953,0.11424
+1342,32.7198,30.5625,27.8728,0.069088,0.899328,0.006464,0.005664,0.02816,0.095168,0.09744,26.5573,0.114176
+1343,32.7659,30.5195,27.7949,0.06784,0.780192,0.006208,0.005792,0.028544,0.094688,0.09824,26.5993,0.114048
+1344,33.3811,29.957,27.8098,0.068992,0.805504,0.007616,0.004672,0.028576,0.094304,0.098304,26.5884,0.113376
+1345,33.416,29.9258,27.8325,0.068928,0.79296,0.006592,0.0056,0.027168,0.095776,0.096736,26.6251,0.1136
+1346,33.1092,30.2031,27.7725,0.067904,0.806912,0.007392,0.004896,0.028224,0.094688,0.09776,26.5519,0.112896
+1347,33.3637,29.9727,27.816,0.067616,0.773344,0.006912,0.00528,0.027488,0.095872,0.09664,26.6281,0.11472
+1348,33.1477,30.168,27.8605,0.069664,0.88032,0.006432,0.005696,0.028288,0.094912,0.097984,26.563,0.114208
+1349,32.6906,30.5898,27.8892,0.067712,0.847744,0.007328,0.00496,0.028288,0.094592,0.097472,26.6264,0.114688
+1350,33.2036,30.1172,27.8997,0.069632,0.907264,0.007392,0.004896,0.028192,0.09456,0.098432,26.5762,0.113216
+1351,31.4961,31.75,27.8325,0.068032,0.809504,0.007392,0.004896,0.028192,0.094816,0.09776,26.608,0.113888
+1352,32.8922,30.4023,28.0248,0.068992,0.99392,0.007488,0.0048,0.028672,0.094208,0.098336,26.6158,0.11264
+1353,32.004,31.2461,28.0495,0.069024,0.951008,0.024576,0.005216,0.039136,0.109248,0.09792,26.6398,0.113568
+1354,33.342,29.9922,27.8241,0.069408,0.82352,0.007904,0.004384,0.028672,0.094272,0.098208,26.5842,0.113568
+1355,33.5035,29.8477,27.8382,0.069536,0.78016,0.006368,0.005792,0.028128,0.094816,0.096544,26.6424,0.114464
+1356,33.3724,29.9648,27.8175,0.068,0.813024,0.007488,0.0048,0.02832,0.09456,0.096256,26.5912,0.113856
+1357,33.4816,29.8672,27.778,0.068544,0.82736,0.007168,0.00512,0.027936,0.094944,0.097984,26.5342,0.114688
+1358,33.2857,30.043,27.7769,0.069632,0.792576,0.006176,0.005952,0.027904,0.095136,0.098016,26.567,0.114464
+1359,32.6115,30.6641,27.8895,0.068288,0.834976,0.00672,0.00544,0.027328,0.096064,0.096448,26.6397,0.114496
+1360,33.0493,30.2578,27.8673,0.068064,0.838784,0.007008,0.005312,0.027456,0.095872,0.097824,26.6136,0.113376
+1361,33.3768,29.9609,27.8366,0.067808,0.83968,0.007904,0.004384,0.028672,0.09424,0.09792,26.5813,0.114656
+1362,33.1864,30.1328,27.8013,0.069216,0.786816,0.006208,0.005952,0.028128,0.0944,0.096704,26.6006,0.113312
+1363,33.3724,29.9648,27.7706,0.068896,0.79744,0.00752,0.004736,0.02848,0.094432,0.098048,26.5566,0.114432
+1364,33.4553,29.8906,27.8135,0.06928,0.79088,0.007968,0.00432,0.028672,0.094208,0.098304,26.607,0.112832
+1365,33.29,30.0391,27.8247,0.068192,0.777696,0.006688,0.00544,0.027328,0.095904,0.096608,26.6322,0.114656
+1366,33.011,30.293,27.8052,0.06944,0.800288,0.006816,0.005344,0.027424,0.09568,0.096832,26.5892,0.114208
+1367,33.028,30.2773,27.8338,0.069568,0.81312,0.007584,0.004704,0.02848,0.0944,0.096256,26.6056,0.114144
+1368,33.0536,30.2539,27.8237,0.0696,0.792,0.006752,0.005408,0.02736,0.095232,0.09728,26.6169,0.113152
+1369,32.5451,30.7266,27.7869,0.068928,0.792736,0.006688,0.005536,0.027232,0.095776,0.096736,26.5789,0.114304
+1370,33.1134,30.1992,27.8426,0.068768,0.833888,0.006656,0.005504,0.027296,0.095808,0.096672,26.5953,0.112704
+1371,32.8289,30.4609,27.8159,0.068288,0.770048,0.006272,0.005984,0.027968,0.094944,0.096256,26.6322,0.113952
+1372,32.9133,30.3828,27.8103,0.068256,0.79872,0.007648,0.00464,0.028608,0.094272,0.097344,26.5977,0.11312
+1373,33.2597,30.0664,27.7852,0.069536,0.82544,0.007296,0.004992,0.028384,0.106432,0.09664,26.532,0.11456
+1374,32.5824,30.6914,28.0617,0.069632,1.07498,0.016608,0.006144,0.027936,0.094496,0.096704,26.5626,0.11264
+1375,33.2122,30.1094,27.9223,0.068224,0.910816,0.006656,0.005472,0.027296,0.096256,0.097312,26.5955,0.114784
+1376,33.1049,30.207,27.7995,0.073728,0.806112,0.006944,0.005248,0.02752,0.094208,0.097856,26.5748,0.113056
+1377,33.6488,29.7188,27.7524,0.067584,0.77584,0.006496,0.005696,0.027072,0.096256,0.096256,26.5636,0.113536
+1378,33.342,29.9922,27.82,0.068128,0.810656,0.006464,0.005696,0.027232,0.096096,0.096256,26.5964,0.113088
+1379,33.0878,30.2227,27.8472,0.068128,0.791904,0.006784,0.005408,0.02736,0.096064,0.096448,26.6417,0.113344
+1380,33.0963,30.2148,27.8229,0.068448,0.82496,0.006528,0.0056,0.027168,0.096,0.096512,26.5851,0.112608
+1381,33.4466,29.8984,27.8568,0.06912,0.793088,0.007744,0.004544,0.028448,0.094464,0.097952,26.6468,0.114624
+1382,33.303,30.0273,27.8378,0.069632,0.832544,0.007072,0.00416,0.028672,0.094208,0.097888,26.5896,0.113984
+1383,33.2684,30.0586,27.806,0.068384,0.804832,0.007328,0.00496,0.028256,0.094624,0.09776,26.5856,0.114208
+1384,33.3507,29.9844,27.8917,0.0696,0.879712,0.007104,0.005216,0.027552,0.09424,0.097952,26.5977,0.11264
+1385,33.4422,29.9023,27.8548,0.069024,0.864608,0.0064,0.005792,0.028192,0.096832,0.096544,26.5742,0.113248
+1386,32.6864,30.5938,27.8999,0.067936,0.886496,0.006432,0.005728,0.02816,0.094752,0.09664,26.6004,0.11328
+1387,33.0578,30.25,27.8916,0.06832,0.86224,0.007616,0.00464,0.032672,0.095456,0.096832,26.61,0.113824
+1388,32.96,30.3398,27.773,0.069248,0.801184,0.007264,0.005024,0.027936,0.094944,0.097632,26.5564,0.113312
+1389,32.9133,30.3828,27.8159,0.069568,0.830528,0.007072,0.004192,0.028672,0.094208,0.098336,26.57,0.113376
+1390,33.5914,29.7695,27.818,0.069472,0.833568,0.006272,0.005696,0.028128,0.093152,0.098304,26.5687,0.11472
+1391,32.5907,30.6836,27.8531,0.069248,0.834176,0.007776,0.004512,0.028672,0.096224,0.09632,26.6031,0.113088
+1392,32.7282,30.5547,27.824,0.069024,0.854336,0.006432,0.005728,0.028096,0.09456,0.096928,26.5555,0.113408
+1393,33.4684,29.8789,27.8179,0.068672,0.791488,0.007744,0.004544,0.028448,0.094464,0.097792,26.6101,0.114624
+1394,33.1049,30.207,27.7497,0.067936,0.784384,0.00752,0.004768,0.028416,0.094464,0.098144,26.5504,0.113664
+1395,32.6239,30.6523,27.7856,0.069088,0.809856,0.007712,0.004576,0.028672,0.094208,0.098304,26.5597,0.11344
+1396,32.5534,30.7188,27.9326,0.069632,0.902848,0.006464,0.005728,0.02816,0.094272,0.09712,26.6158,0.112608
+1397,32.9388,30.3594,27.8711,0.069216,0.790944,0.007296,0.004992,0.028064,0.094752,0.096352,26.6652,0.114336
+1398,32.96,30.3398,27.8506,0.068864,0.860256,0.006816,0.005344,0.027424,0.09552,0.096768,26.5766,0.112992
+1399,32.3846,30.8789,27.9244,0.068928,0.90768,0.006432,0.00576,0.028096,0.095008,0.096416,26.6015,0.114624
+1400,33.264,30.0625,27.9425,0.069696,0.897568,0.006272,0.005952,0.028032,0.09472,0.096448,26.6301,0.113696
+1401,32.36,30.9023,27.8589,0.069632,0.841344,0.006528,0.005696,0.028224,0.095008,0.096384,26.6028,0.11328
+1402,32.8626,30.4297,27.8159,0.068896,0.834272,0.007296,0.004992,0.02816,0.094176,0.0968,26.5687,0.11264
+1403,33.2424,30.082,27.8856,0.069152,0.861696,0.007072,0.00416,0.028672,0.095232,0.09728,26.6092,0.113088
+1404,32.8542,30.4375,27.9183,0.069376,0.864192,0.006464,0.00576,0.027168,0.095776,0.096352,26.6404,0.112832
+1405,33.1177,30.1953,27.9061,0.069664,0.802816,0.007744,0.004512,0.028672,0.0944,0.097504,26.6875,0.113312
+1406,33.4903,29.8594,27.7683,0.0696,0.796704,0.007232,0.005056,0.028192,0.094688,0.096256,26.5576,0.112928
+1407,32.4873,30.7812,27.8708,0.069632,0.779808,0.006624,0.005536,0.027264,0.095296,0.09696,26.6754,0.114304
+1408,33.0536,30.2539,27.9469,0.067616,0.875968,0.006752,0.005504,0.043616,0.09424,0.106464,26.6335,0.113248
+1409,32.8163,30.4727,27.9527,0.069472,0.886944,0.008032,0.004256,0.028672,0.095584,0.096864,26.6486,0.11424
+1410,33.1735,30.1445,27.8465,0.068032,0.814528,0.00672,0.00544,0.027328,0.095552,0.096832,26.618,0.114112
+1411,33.1434,30.1719,27.9077,0.067712,0.901088,0.007328,0.00496,0.027968,0.094944,0.097472,26.592,0.114208
+1412,32.9684,30.332,27.8666,0.069216,0.880896,0.006304,0.005888,0.02688,0.09536,0.097152,26.5708,0.114112
+1413,32.7324,30.5508,28.4155,0.068032,1.42746,0.007584,0.004704,0.028352,0.094528,0.097472,26.5716,0.115744
+1414,32.6323,30.6445,27.9488,0.069472,0.95248,0.008,0.004288,0.028672,0.094208,0.097344,26.5818,0.112544
+1415,33.1092,30.2031,27.8118,0.069664,0.808864,0.006208,0.005984,0.02784,0.0952,0.096256,26.5871,0.114624
+1416,30.622,32.6562,27.8241,0.069056,0.791136,0.007872,0.004384,0.028672,0.094208,0.098304,26.6158,0.114688
+1417,33.2338,30.0898,27.8533,0.068096,0.804,0.007008,0.005184,0.027584,0.095616,0.096896,26.6354,0.113536
+1418,33.3986,29.9414,27.749,0.068256,0.771104,0.006496,0.004704,0.028256,0.094528,0.097504,26.5654,0.112736
+1419,33.1907,30.1289,27.8579,0.068,0.8176,0.006272,0.005984,0.02832,0.094688,0.096256,26.6275,0.11328
+1420,33.152,30.1641,27.9109,0.068384,0.866304,0.008032,0.004256,0.028672,0.094208,0.097792,26.6303,0.113024
+1421,33.3116,30.0195,27.7927,0.069344,0.804896,0.0064,0.005792,0.026976,0.096192,0.09648,26.5726,0.113984
+1422,33.1177,30.1953,27.8589,0.069664,0.849184,0.006848,0.005344,0.027424,0.095264,0.097024,26.5948,0.113408
+1423,33.0323,30.2734,27.8583,0.069536,0.83568,0.00624,0.005984,0.028096,0.094848,0.096288,26.6074,0.11424
+1424,33.2597,30.0664,27.8645,0.068736,0.824192,0.007648,0.00464,0.028384,0.094528,0.098272,26.624,0.114112
+1425,33.3768,29.9609,27.8651,0.068896,0.813792,0.007264,0.005024,0.028192,0.094784,0.097568,26.6349,0.114688
+1426,32.9303,30.3672,27.932,0.069504,0.915232,0.006528,0.005664,0.027104,0.095232,0.097248,26.6015,0.113984
+1427,33.5079,29.8438,27.7934,0.06896,0.78096,0.007392,0.004896,0.028288,0.1064,0.096736,26.5871,0.112672
+1428,33.2684,30.0586,27.8687,0.069632,0.846912,0.007072,0.004128,0.028672,0.094208,0.097472,26.6075,0.113056
+1429,32.9303,30.3672,27.8671,0.067584,0.824928,0.00656,0.0056,0.027168,0.096256,0.097536,26.6268,0.114688
+1430,33.0878,30.2227,27.8706,0.068896,0.84464,0.007168,0.00512,0.02816,0.09472,0.09632,26.6132,0.112352
+1431,33.1306,30.1836,27.8449,0.06896,0.842496,0.006336,0.005824,0.027968,0.095008,0.096512,26.5889,0.11296
+1432,32.5824,30.6914,27.8633,0.06848,0.811008,0.006304,0.005952,0.027968,0.094816,0.097696,26.637,0.11408
+1433,33.2036,30.1172,27.8159,0.069664,0.839648,0.007328,0.00496,0.028224,0.094656,0.09824,26.56,0.113248
+1434,32.7701,30.5156,27.9614,0.069632,0.940032,0.00624,0.005952,0.027968,0.095008,0.097632,26.6059,0.113056
+1435,32.7324,30.5508,27.847,0.080256,0.859296,0.007008,0.005248,0.02752,0.095808,0.096704,26.5607,0.114496
+1436,32.0441,31.207,27.8445,0.068448,0.80896,0.007872,0.004416,0.028704,0.094176,0.097632,26.6206,0.113696
+1437,32.8795,30.4141,27.8424,0.068416,0.784256,0.006272,0.00592,0.028,0.094784,0.096544,26.6443,0.113888
+1438,31.6714,31.5742,27.9879,0.080096,0.958464,0.007584,0.016832,0.028224,0.094816,0.096416,26.5921,0.113408
+1439,33.2252,30.0977,27.795,0.069632,0.821248,0.0072,0.005088,0.028,0.09488,0.097888,26.5568,0.114272
+1440,32.8163,30.4727,27.777,0.068864,0.846592,0.007488,0.0048,0.028256,0.094624,0.098304,26.5147,0.113408
+1441,32.5907,30.6836,27.8584,0.069344,0.845472,0.006784,0.005408,0.02736,0.096256,0.097824,26.5958,0.114112
+1442,32.9303,30.3672,28.0863,0.068864,1.03674,0.006464,0.005728,0.02704,0.095296,0.107456,26.6255,0.113184
+1443,32.943,30.3555,27.8683,0.067712,0.882656,0.00736,0.004928,0.028096,0.094784,0.097856,26.5711,0.113792
+1444,32.8458,30.4453,27.7783,0.069664,0.819168,0.007808,0.00448,0.028704,0.094176,0.096288,26.5441,0.11392
+1445,33.1993,30.1211,27.9711,0.247296,0.784832,0.006688,0.005472,0.027296,0.09552,0.096992,26.5931,0.113888
+1446,33.3464,29.9883,27.8426,0.068224,0.854016,0.00736,0.004928,0.028288,0.094592,0.096256,26.5748,0.114048
+1447,33.329,30.0039,27.859,0.069632,0.847488,0.006528,0.005696,0.027072,0.095936,0.098272,26.5955,0.112928
+1448,32.9982,30.3047,27.8972,0.06944,0.85216,0.007552,0.004736,0.028672,0.095328,0.097088,26.6282,0.114048
+1449,33.2079,30.1133,27.8991,0.069664,0.90256,0.00672,0.005504,0.027264,0.095648,0.096864,26.581,0.113856
+1450,32.8247,30.4648,28.0226,0.068224,0.980576,0.00656,0.005504,0.027264,0.09536,0.097024,26.6282,0.113824
+1451,33.2079,30.1133,27.8334,0.069568,0.852064,0.00784,0.004416,0.028672,0.094208,0.098112,26.5648,0.113696
+1452,33.2036,30.1172,27.7873,0.068864,0.827424,0.00688,0.00528,0.027488,0.094208,0.097376,26.5469,0.112864
+1453,32.7995,30.4883,27.7886,0.068768,0.799584,0.007456,0.004832,0.028384,0.094528,0.096288,26.5745,0.114336
+1454,33.5474,29.8086,27.8296,0.069632,0.77312,0.007072,0.004192,0.028672,0.094208,0.097856,26.6422,0.112672
+1455,33.4116,29.9297,27.7824,0.069152,0.784864,0.00768,0.004608,0.028608,0.094336,0.09824,26.581,0.113952
+1456,32.3437,30.918,27.8398,0.069152,0.834176,0.008096,0.004192,0.034816,0.094208,0.096288,26.5851,0.113856
+1457,32.4585,30.8086,27.9591,0.069376,0.980256,0.007168,0.00512,0.027616,0.096256,0.096288,26.5625,0.114496
+1458,32.02,31.2305,28.2071,0.069536,1.2207,0.007456,0.004832,0.02832,0.094592,0.097856,26.5704,0.113376
+1459,33.2554,30.0703,27.8282,0.069088,0.812832,0.006912,0.00528,0.027488,0.096192,0.097824,26.5979,0.114688
+1460,32.7491,30.5352,27.8419,0.069632,0.844992,0.006976,0.005184,0.027584,0.095424,0.097088,26.581,0.114048
+1461,32.4708,30.7969,27.8201,0.06768,0.826944,0.006624,0.005568,0.02736,0.096064,0.0976,26.5787,0.113632
+1462,33.011,30.293,27.9063,0.068576,0.944128,0.007392,0.004896,0.028352,0.094528,0.096288,26.5482,0.11392
+1463,32.9049,30.3906,27.8234,0.069152,0.813536,0.00752,0.004768,0.028352,0.094528,0.098304,26.5933,0.113952
+1464,33.2943,30.0352,27.7708,0.068256,0.802016,0.006944,0.005216,0.02752,0.095264,0.097248,26.5544,0.114016
+1465,32.9303,30.3672,27.8938,0.069088,0.877088,0.007328,0.00496,0.028224,0.095936,0.097056,26.5994,0.11472
+1466,33.5166,29.8359,27.7791,0.069504,0.812736,0.006592,0.0056,0.027328,0.096096,0.097344,26.5512,0.11264
+1467,33.329,30.0039,27.8283,0.069088,0.821792,0.00752,0.004768,0.028352,0.09456,0.097312,26.5917,0.113184
+1468,33.4684,29.8789,27.7656,0.068512,0.808416,0.006688,0.005344,0.027424,0.09568,0.096832,26.5421,0.114592
+1469,32.7324,30.5508,27.8931,0.068896,0.858848,0.008192,0.004096,0.028672,0.095616,0.096896,26.6179,0.113984
+1470,33.2813,30.0469,27.8288,0.068224,0.794592,0.007584,0.004704,0.028544,0.094656,0.097984,26.6199,0.11264
+1471,33.152,30.1641,27.8652,0.067776,0.810912,0.007808,0.004448,0.028672,0.09424,0.097984,26.6404,0.112864
+1472,32.5327,30.7383,27.8812,0.069632,0.859136,0.007072,0.004192,0.028672,0.09568,0.096864,26.6055,0.114432
+1473,32.6781,30.6016,27.9044,0.067968,0.9048,0.00656,0.0056,0.027168,0.096256,0.097472,26.5857,0.112896
+1474,33.3377,29.9961,27.8287,0.068288,0.859808,0.006496,0.005664,0.0272,0.096192,0.097632,26.554,0.113408
+1475,33.3637,29.9727,27.818,0.069536,0.862304,0.007392,0.004896,0.028384,0.094496,0.098304,26.54,0.11264
+1476,33.4378,29.9062,27.8057,0.080992,0.803744,0.007328,0.00496,0.028192,0.094688,0.097312,26.5738,0.114688
+1477,33.3464,29.9883,27.8951,0.069632,0.937984,0.00816,0.004128,0.028672,0.095776,0.096704,26.54,0.114016
+1478,33.2122,30.1094,27.8612,0.067808,0.843104,0.006816,0.005376,0.027392,0.09616,0.096352,26.6035,0.114688
+1479,33.2295,30.0938,27.9081,0.069664,0.924736,0.00704,0.004128,0.028672,0.095392,0.097152,26.5678,0.113536
+1480,33.0664,30.2422,27.9194,0.068384,0.941856,0.006592,0.017632,0.033568,0.112032,0.096864,26.5297,0.112736
+1481,31.5854,31.6602,27.7963,0.067968,0.819584,0.007456,0.004832,0.028128,0.094752,0.098304,26.5626,0.112672
+1482,31.4844,31.7617,27.9163,0.069184,0.798208,0.00704,0.00416,0.028704,0.094176,0.098336,26.7035,0.112992
+1483,33.6621,29.707,27.7764,0.068736,0.781184,0.007648,0.00464,0.028352,0.09456,0.098272,26.5789,0.114112
+1484,32.1568,31.0977,27.907,0.069664,0.902016,0.0072,0.005088,0.027936,0.094336,0.096864,26.5892,0.114688
+1485,32.7491,30.5352,27.8441,0.069632,0.814592,0.006656,0.005504,0.027392,0.095424,0.09696,26.6138,0.114208
+1486,32.6531,30.625,27.8958,0.068928,0.860864,0.00784,0.004448,0.028672,0.095424,0.096768,26.6182,0.114656
+1487,32.6281,30.6484,27.9286,0.06944,0.87264,0.007552,0.004736,0.028544,0.095424,0.09696,26.6404,0.112864
+1488,32.4749,30.793,27.8914,0.06944,0.869568,0.007136,0.004128,0.028672,0.095424,0.096864,26.6058,0.114336
+1489,31.0793,32.1758,27.9629,0.067712,0.974272,0.006592,0.018112,0.028544,0.09616,0.0968,26.5603,0.114368
+1490,31.7028,31.543,27.8097,0.069632,0.820864,0.006528,0.00544,0.028736,0.094816,0.096288,26.5742,0.113248
+1491,31.7697,31.4766,27.9306,0.069376,0.902816,0.006752,0.00544,0.027328,0.095552,0.096608,26.6121,0.114688
+1492,33.0536,30.2539,27.7817,0.068288,0.840832,0.00704,0.005376,0.027392,0.09424,0.098272,26.527,0.113216
+1493,31.3841,31.8633,27.8623,0.069216,0.881056,0.00784,0.004448,0.028672,0.095488,0.097056,26.5645,0.114016
+1494,30.9665,32.293,28.0228,0.069632,1.024,0.022528,0.005824,0.027072,0.095968,0.096416,26.5684,0.112896
+1495,31.0755,32.1797,27.7975,0.069664,0.804832,0.007552,0.004736,0.02848,0.094464,0.09792,26.5752,0.114688
+1496,31.0378,32.2188,28.0298,0.06848,1.03424,0.007808,0.004448,0.02864,0.09424,0.098208,26.5805,0.113184
+1497,32.6115,30.6641,27.9368,0.068768,0.91008,0.016544,0.005792,0.026976,0.096256,0.097472,26.6018,0.113152
+1498,32.9303,30.3672,27.9266,0.06928,0.954464,0.0064,0.005952,0.028064,0.094624,0.096672,26.5579,0.113184
+1499,33.1263,30.1875,27.8697,0.068448,0.82256,0.006944,0.005248,0.02752,0.09536,0.097152,26.6322,0.114272
+1500,32.8331,30.457,27.8258,0.069088,0.823424,0.00672,0.005472,0.027296,0.09584,0.098048,26.5858,0.114176
+1501,33.1907,30.1289,27.9347,0.069472,0.886944,0.007232,0.005056,0.027968,0.094912,0.097824,26.6319,0.11344
+1502,32.9133,30.3828,27.8269,0.068352,0.77568,0.006624,0.0056,0.027168,0.094432,0.09808,26.6383,0.112672
+1503,32.7031,30.5781,27.8543,0.069088,0.821312,0.006624,0.005536,0.027424,0.096064,0.097376,26.6167,0.114176
+1504,33.2684,30.0586,27.8937,0.06832,0.861472,0.00688,0.00528,0.027488,0.096032,0.09648,26.6179,0.11392
+1505,31.9401,31.3086,27.8816,0.068864,0.815104,0.007008,0.005184,0.027584,0.096096,0.09632,26.6523,0.113088
+1506,33.4772,29.8711,27.8212,0.069376,0.833792,0.006208,0.005952,0.028224,0.094816,0.096256,26.5728,0.11376
+1507,33.1134,30.1992,27.81,0.06784,0.821248,0.007936,0.004352,0.028544,0.095424,0.097184,26.5728,0.114592
+1508,32.9472,30.3516,27.8127,0.068544,0.829472,0.00768,0.004576,0.028416,0.094464,0.097888,26.5688,0.112864
+1509,31.8804,31.3672,27.7629,0.067872,0.813024,0.007168,0.00512,0.028256,0.094624,0.097344,26.5348,0.114656
+1510,25.4423,39.3047,27.888,0.06912,0.89376,0.006336,0.00592,0.028192,0.09472,0.09824,26.579,0.112704
+1511,32.8711,30.4219,27.8874,0.068928,0.86048,0.006528,0.005536,0.027232,0.095808,0.096704,26.6117,0.114496
+1512,32.5534,30.7188,27.7589,0.06896,0.816128,0.007616,0.004672,0.028384,0.094496,0.097664,26.5276,0.113408
+1513,33.7909,29.5938,27.8333,0.068544,0.8392,0.006656,0.005504,0.027264,0.09584,0.096672,26.5801,0.113504
+1514,33.1092,30.2031,27.7647,0.06864,0.799712,0.008064,0.004224,0.028672,0.09424,0.098272,26.5503,0.11264
+1515,32.9007,30.3945,27.8103,0.06848,0.808448,0.006656,0.005632,0.027136,0.096256,0.096256,26.5871,0.114336
+1516,31.6871,31.5586,27.8189,0.068544,0.783904,0.006624,0.005696,0.028192,0.094688,0.096736,26.6218,0.1128
+1517,32.8584,30.4336,27.7952,0.06944,0.778432,0.007584,0.004704,0.028352,0.095584,0.096992,26.5997,0.114432
+1518,31.4806,31.7656,28.0117,0.07312,0.969568,0.007872,0.004192,0.036864,0.096,0.096544,26.6137,0.113856
+1519,32.7366,30.5469,27.8221,0.067584,0.81856,0.006784,0.005376,0.027392,0.096256,0.097632,26.5892,0.113312
+1520,32.0521,31.1992,27.8304,0.069216,0.860992,0.007168,0.00512,0.028096,0.094784,0.098112,26.5537,0.113216
+1521,31.3457,31.9023,27.7852,0.069152,0.793056,0.007456,0.004832,0.031808,0.09488,0.098368,26.571,0.114688
+1522,32.7533,30.5312,27.8958,0.069408,0.898432,0.007008,0.005152,0.027616,0.095488,0.09664,26.5828,0.113344
+1523,32.3314,30.9297,27.8159,0.069344,0.873888,0.00704,0.005248,0.02752,0.095488,0.0968,26.5279,0.112672
+1524,32.0401,31.2109,27.9122,0.069632,0.974848,0.007776,0.004512,0.028672,0.09424,0.098048,26.5215,0.112992
+1525,31.0717,32.1836,27.7827,0.069472,0.798784,0.00624,0.00592,0.02816,0.094016,0.096832,26.5691,0.114208
+1526,32.8964,30.3984,27.8087,0.06848,0.919552,0.007392,0.004896,0.028224,0.094656,0.097856,26.4749,0.112672
+1527,32.6906,30.5898,27.7394,0.069472,0.782496,0.007712,0.004576,0.034112,0.094912,0.096256,26.5359,0.114016
+1528,32.254,31.0039,27.7504,0.069632,0.782336,0.007936,0.004352,0.028672,0.09424,0.098272,26.5522,0.1128
+1529,32.028,31.2227,27.8176,0.069056,0.846368,0.006208,0.005984,0.028128,0.09488,0.097888,26.5404,0.128672
+1530,32.6822,30.5977,27.7233,0.069504,0.781568,0.00704,0.005152,0.027616,0.094208,0.098304,26.527,0.112896
+1531,32.1648,31.0898,27.7812,0.068288,0.798048,0.007072,0.004096,0.028672,0.096192,0.09632,26.5687,0.113824
+1532,30.8397,32.4258,27.9536,0.069184,1.00851,0.008128,0.004128,0.028672,0.09424,0.097568,26.5305,0.11264
+1533,33.0408,30.2656,27.8123,0.068,0.772096,0.007552,0.004736,0.028224,0.094656,0.098336,26.6256,0.113056
+1534,31.9003,31.3477,27.7956,0.06768,0.7864,0.006208,0.00592,0.028864,0.094208,0.096448,26.5952,0.114592
+1535,31.3764,31.8711,27.8159,0.06896,0.875424,0.006208,0.005952,0.027936,0.095104,0.09808,26.5239,0.114336
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..ede183f
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,17.267,57.9425,55.136,0.0689833,0.833857,0.00852722,0.00574209,0.0284857,54.0756,0.114821
+max_1024,17.6211,106.527,56.5845,0.085888,2.43098,0.025536,0.020992,0.045568,54.5389,0.131136
+min_1024,9.38726,56.75,54.636,0.066048,0.743392,0.006144,0.004064,0.02672,53.6422,0.11264
+512,16.7962,59.5371,56.5845,0.06784,2.43098,0.008096,0.004192,0.028672,53.93,0.11472
+513,17.4536,57.2949,54.9715,0.0696,0.841024,0.008032,0.004992,0.028672,53.9046,0.11456
+514,17.4108,57.4355,55.0994,0.069024,0.793088,0.008096,0.004288,0.028672,54.0817,0.114592
+515,17.3595,57.6055,55.1658,0.066464,0.784288,0.008192,0.005696,0.027072,54.1605,0.113536
+516,17.224,58.0586,55.1444,0.069504,0.811104,0.008064,0.004256,0.02864,54.1082,0.114688
+517,17.0781,58.5547,54.7614,0.067616,0.777696,0.008064,0.004768,0.02864,53.76,0.114592
+518,17.3736,57.5586,54.7646,0.069408,0.767232,0.008352,0.004864,0.028032,53.772,0.114656
+519,17.3707,57.5684,55.1465,0.068864,0.89296,0.008352,0.004704,0.032416,54.0245,0.114688
+520,17.3377,57.6777,55.392,0.068864,0.881408,0.00816,0.005408,0.027392,54.2863,0.1144
+521,17.5079,57.1172,54.7927,0.068256,0.770048,0.008192,0.005824,0.028128,53.7977,0.114528
+522,17.2304,58.0371,55.054,0.069312,0.864032,0.006688,0.005824,0.028224,53.9656,0.1144
+523,17.1754,58.2227,55.3429,0.069632,1.1056,0.008096,0.015808,0.027616,54.0017,0.114464
+524,17.3707,57.5684,54.8762,0.069632,0.879776,0.008064,0.005024,0.028064,53.7723,0.113312
+525,17.288,57.8438,55.3185,0.069088,0.850464,0.008192,0.005792,0.028416,54.2419,0.114688
+526,17.316,57.75,54.9253,0.06896,0.885152,0.008064,0.00448,0.028288,53.8157,0.114688
+527,17.4649,57.2578,54.9551,0.067584,0.796352,0.016704,0.006144,0.028672,53.925,0.11472
+528,17.3495,57.6387,54.8742,0.067616,0.780384,0.008096,0.005792,0.028064,53.8707,0.113536
+529,17.3695,57.5723,55.2501,0.067584,0.760896,0.008608,0.00464,0.028672,54.2638,0.115872
+530,17.469,57.2441,54.8788,0.066048,0.761856,0.008192,0.004096,0.028672,53.8952,0.11472
+531,17.2891,57.8398,54.9586,0.069248,0.844576,0.008192,0.005728,0.028096,53.8891,0.113664
+532,17.2304,58.0371,55.124,0.077216,0.922208,0.008192,0.017568,0.027488,53.9581,0.113152
+533,17.4339,57.3594,55.0712,0.068416,0.849568,0.008064,0.004576,0.028672,53.9968,0.115136
+534,17.3008,57.8008,55.1752,0.06928,0.962944,0.00816,0.00416,0.028608,53.9874,0.114624
+535,17.45,57.3066,55.0155,0.069664,0.851936,0.008192,0.006144,0.028032,53.9381,0.11344
+536,17.3712,57.5664,55.0749,0.067296,0.81952,0.008096,0.004192,0.028672,54.0336,0.113504
+537,17.4583,57.2793,55.0748,0.069312,0.83344,0.008608,0.005504,0.027264,54.016,0.114688
+538,17.475,57.2246,54.9315,0.06896,0.78096,0.008192,0.0056,0.027168,53.927,0.1136
+539,17.4393,57.3418,54.8707,0.06624,0.774112,0.008192,0.005504,0.027264,53.8764,0.112992
+540,17.4102,57.4375,55.1332,0.069312,0.895296,0.008192,0.005536,0.027232,54.0129,0.114752
+541,17.3318,57.6973,55.117,0.069632,0.786432,0.008096,0.005504,0.02736,54.1057,0.11424
+542,17.478,57.2148,54.8982,0.067584,0.770048,0.008192,0.005408,0.02736,53.9052,0.114464
+543,17.1014,58.4746,54.9944,0.06768,0.837248,0.008064,0.004608,0.028672,53.9331,0.11504
+544,17.0803,58.5469,54.657,0.06944,0.776384,0.008192,0.005344,0.027424,53.6556,0.114624
+545,17.4595,57.2754,55.0087,0.067584,0.770048,0.008192,0.005728,0.027136,54.0154,0.114624
+546,17.3154,57.752,55.1878,0.068,0.825312,0.008192,0.004096,0.028672,54.1389,0.114688
+547,17.3055,57.7852,54.9555,0.069344,0.780576,0.008192,0.005792,0.028032,53.9494,0.114144
+548,17.2915,57.832,54.8085,0.06944,0.823008,0.008096,0.004672,0.028256,53.7604,0.114624
+549,17.4595,57.2754,54.9311,0.069184,0.801216,0.008192,0.005792,0.026976,53.9047,0.115008
+550,17.285,57.8535,54.986,0.068928,0.868064,0.007136,0.005824,0.028224,53.8939,0.113984
+551,17.1112,58.4414,54.9131,0.073088,0.78096,0.00816,0.006144,0.028,53.902,0.11472
+552,17.2932,57.8262,54.984,0.06912,0.887296,0.008192,0.005184,0.027584,53.8723,0.114336
+553,17.4339,57.3594,55.2169,0.06832,0.86784,0.008064,0.004704,0.02864,54.1246,0.11472
+554,17.4613,57.2695,54.8803,0.068672,0.78944,0.008192,0.005376,0.027392,53.8665,0.114688
+555,17.4209,57.4023,55.1572,0.067968,0.796672,0.008192,0.005984,0.027904,54.1358,0.114656
+556,17.478,57.2148,54.9219,0.068032,0.792512,0.008064,0.00448,0.028416,53.907,0.113408
+557,17.4221,57.3984,55.1065,0.069664,0.782528,0.008064,0.004928,0.028672,54.0979,0.11472
+558,17.2402,58.0039,54.9403,0.06816,0.75776,0.008192,0.005728,0.02704,53.9587,0.11472
+559,17.6211,56.75,54.929,0.068064,0.786432,0.008192,0.005792,0.026976,53.9189,0.114624
+560,16.9795,58.8945,54.9186,0.06864,0.786464,0.007104,0.005856,0.028,53.9082,0.114368
+561,17.3807,57.5352,55.025,0.068736,0.801664,0.00816,0.005504,0.027328,53.9991,0.114528
+562,17.4589,57.2773,54.8639,0.067616,0.855712,0.008096,0.0056,0.027584,53.7846,0.114688
+563,17.2705,57.9023,54.8135,0.068384,0.804288,0.00672,0.006144,0.027904,53.7853,0.114688
+564,17.4375,57.3477,54.9786,0.067584,0.918912,0.006784,0.006144,0.02816,53.8379,0.113088
+565,17.3901,57.5039,55.1058,0.067872,0.79456,0.008192,0.005504,0.027264,54.0891,0.113248
+566,17.4506,57.3047,54.9836,0.068512,0.8008,0.00816,0.005696,0.028128,53.9576,0.114688
+567,17.4399,57.3398,54.8924,0.06944,0.869088,0.00816,0.00592,0.028,53.7957,0.116032
+568,17.2437,57.9922,54.9534,0.069056,0.806848,0.008064,0.004896,0.027968,53.9205,0.116128
+569,17.3736,57.5586,55.0113,0.068928,0.784064,0.007168,0.006144,0.028608,54.0017,0.114656
+570,17.118,58.418,54.8368,0.069632,0.833056,0.008064,0.004736,0.02816,53.7781,0.11504
+571,17.527,57.0547,55.0507,0.068064,0.782336,0.008192,0.005856,0.028032,54.0436,0.114688
+572,17.3795,57.5391,55.036,0.068768,0.788608,0.008064,0.004864,0.028192,54.0228,0.114688
+573,17.2938,57.8242,55.1943,0.079584,0.940384,0.008064,0.004832,0.028672,54.0193,0.113472
+574,17.3878,57.5117,55.113,0.069344,0.861888,0.008128,0.004768,0.028256,54.0264,0.114208
+575,9.38726,106.527,55.2076,0.069632,0.776192,0.008192,0.005696,0.027072,54.2058,0.11504
+576,17.428,57.3789,54.9499,0.069632,0.835584,0.008192,0.005536,0.027232,53.889,0.114656
+577,17.4696,57.2422,54.999,0.067584,0.864256,0.008192,0.005952,0.028,53.9121,0.11296
+578,17.376,57.5508,54.8765,0.067616,0.780512,0.007904,0.004416,0.02848,53.8728,0.11472
+579,17.5559,56.9609,54.7435,0.068032,0.780288,0.00816,0.005952,0.026816,53.7406,0.113568
+580,17.4173,57.4141,55.0309,0.068896,0.821952,0.008032,0.004288,0.028608,53.9853,0.113792
+581,17.4983,57.1484,54.9765,0.069344,0.825664,0.00816,0.005632,0.027136,53.9259,0.114688
+582,17.4268,57.3828,54.9597,0.067584,0.775456,0.008032,0.004864,0.027904,53.9617,0.114176
+583,17.302,57.7969,54.9569,0.068448,0.84992,0.00816,0.005504,0.027296,53.8844,0.113248
+584,17.5824,56.875,54.8279,0.068288,0.776352,0.008192,0.004288,0.02848,53.8276,0.114688
+585,17.1043,58.4648,55.3593,0.06768,1.03424,0.008192,0.016224,0.028608,54.0893,0.11504
+586,17.202,58.1328,54.9889,0.069632,0.943968,0.008224,0.004224,0.028608,53.8209,0.113344
+587,17.3453,57.6523,54.9864,0.068,0.899072,0.008192,0.006144,0.028224,53.8624,0.114368
+588,17.295,57.8203,55.3288,0.068896,1.00957,0.00816,0.004928,0.038944,54.0836,0.114688
+589,17.3266,57.7148,55.1122,0.084352,0.955456,0.008128,0.00512,0.02832,53.916,0.114784
+590,17.4339,57.3594,55.0933,0.067584,0.880608,0.008032,0.004288,0.028544,53.9905,0.113696
+591,17.323,57.7266,55.1857,0.067872,0.91264,0.008032,0.005024,0.028448,54.049,0.11472
+592,17.4292,57.375,55.0147,0.067296,0.882976,0.008192,0.005376,0.027392,53.9092,0.114304
+593,17.5055,57.125,54.8235,0.068096,0.785632,0.008032,0.005056,0.028544,53.8134,0.11472
+594,16.8388,59.3867,55.1235,0.067616,0.870304,0.008096,0.0056,0.02736,54.0283,0.116256
+595,17.2066,58.1172,55.3389,0.068224,0.819232,0.008192,0.006144,0.028288,54.2947,0.114176
+596,17.3783,57.543,55.1015,0.06864,0.992256,0.00816,0.005792,0.028736,53.8848,0.11312
+597,17.3548,57.6211,54.9763,0.069728,0.854208,0.008032,0.005504,0.027488,53.8967,0.11456
+598,17.3172,57.7461,55.2999,0.068256,1.10518,0.008096,0.015136,0.034464,53.9549,0.113856
+599,17.415,57.4219,55.0681,0.069248,0.821632,0.008192,0.005504,0.027264,54.0218,0.114432
+600,17.2728,57.8945,55.4294,0.067904,0.900736,0.008064,0.004576,0.02832,54.3051,0.114688
+601,17.5246,57.0625,54.8759,0.067584,0.802816,0.008192,0.0056,0.027168,53.8499,0.114656
+602,17.4162,57.418,55.0538,0.068736,0.811296,0.008096,0.0048,0.028352,54.0179,0.114656
+603,17.5079,57.1172,54.9602,0.06768,0.815104,0.008192,0.006144,0.028256,53.9195,0.11536
+604,17.4197,57.4062,55.1235,0.069632,0.876512,0.008096,0.004224,0.028672,54.022,0.114304
+605,17.3571,57.6133,55.0901,0.068576,0.915456,0.008192,0.006144,0.028096,53.949,0.114688
+606,17.4173,57.4141,55.106,0.068448,0.806368,0.008032,0.0048,0.027968,54.0761,0.114272
+607,17.4589,57.2773,55.0579,0.068864,0.819232,0.008288,0.004736,0.028672,54.014,0.114112
+608,17.5222,57.0703,54.8476,0.067072,0.768576,0.008192,0.005184,0.027584,53.8563,0.114688
+609,17.4947,57.1602,55.0067,0.069376,0.79488,0.008192,0.005536,0.027232,53.9873,0.114176
+610,17.4221,57.3984,54.995,0.067936,0.799904,0.008064,0.005088,0.028448,53.9712,0.114432
+611,17.4935,57.1641,54.7287,0.069312,0.7704,0.00816,0.006144,0.028192,53.7318,0.114688
+612,17.5415,57.0078,54.6864,0.066208,0.813088,0.00816,0.005632,0.027168,53.6527,0.11344
+613,17.3395,57.6719,55.3877,0.068704,0.879616,0.008192,0.006112,0.028,54.2827,0.114368
+614,17.4839,57.1953,54.9348,0.067488,0.767584,0.008096,0.004768,0.028672,53.9438,0.114368
+615,17.2055,58.1211,55.355,0.067584,1.01171,0.008192,0.016384,0.028672,54.1072,0.115264
+616,17.4209,57.4023,55.2155,0.0672,0.910048,0.00816,0.004128,0.028512,54.0836,0.113824
+617,17.4138,57.4258,55.0298,0.067584,0.933888,0.018432,0.006144,0.028096,53.8609,0.114688
+618,17.3771,57.5469,55.1841,0.068288,0.87552,0.007168,0.00576,0.028064,54.0858,0.113504
+619,17.2705,57.9023,55.0954,0.067808,0.763904,0.008192,0.00592,0.026848,54.1075,0.115296
+620,17.4983,57.1484,54.9216,0.067968,0.759808,0.008192,0.004256,0.028544,53.9378,0.115008
+621,17.3242,57.7227,55.0786,0.068928,0.799488,0.008064,0.005472,0.027424,54.0542,0.115008
+622,17.447,57.3164,55.1162,0.068,0.917504,0.00816,0.005504,0.027264,53.975,0.114688
+623,17.2798,57.8711,55.122,0.069088,0.831808,0.008032,0.005504,0.027648,54.0664,0.113504
+624,16.7244,59.793,55.0395,0.06784,0.827424,0.00816,0.005792,0.028128,53.9879,0.114208
+625,17.4494,57.3086,54.9576,0.0688,0.783296,0.008192,0.006144,0.028256,53.9488,0.114048
+626,17.3512,57.6328,55.3288,0.0688,0.942336,0.008032,0.004832,0.034816,54.1566,0.113376
+627,17.3289,57.707,55.1813,0.068896,0.922016,0.00784,0.004768,0.028384,54.0366,0.1128
+628,17.3807,57.5352,55.1096,0.06928,0.854368,0.008192,0.004192,0.028576,54.0303,0.114688
+629,16.9447,59.0156,55.2034,0.066048,0.806912,0.00752,0.004768,0.028672,54.1751,0.1144
+630,17.4899,57.1758,54.8147,0.067584,0.779616,0.008032,0.004864,0.027936,53.812,0.114688
+631,17.1157,58.4258,55.2014,0.068896,1.06365,0.008192,0.006144,0.028256,53.9114,0.114816
+632,16.8255,59.4336,55.028,0.068512,0.788352,0.008192,0.0056,0.027168,54.0154,0.114784
+633,17.2182,58.0781,55.1488,0.069344,0.79104,0.00816,0.0056,0.027168,54.1327,0.11472
+634,17.6163,56.7656,54.8851,0.068352,0.759104,0.008032,0.004864,0.028,53.9032,0.1136
+635,17.3842,57.5234,54.8578,0.067488,0.747648,0.00816,0.005728,0.02704,53.8886,0.113152
+636,16.6623,60.0156,55.3004,0.06912,1.00656,0.008192,0.00432,0.028448,54.0691,0.11472
+637,17.3724,57.5625,55.2185,0.068192,0.745536,0.00816,0.006144,0.028352,54.2477,0.1144
+638,17.2915,57.832,55.0088,0.067168,0.759968,0.008032,0.004704,0.028224,54.0267,0.114016
+639,16.546,60.4375,55.2048,0.068544,0.774144,0.008192,0.005504,0.027264,54.2065,0.114688
+640,17.3618,57.5977,55.0973,0.068896,0.870592,0.008096,0.004736,0.028352,54.002,0.114688
+641,17.3067,57.7812,55.1035,0.068608,0.814944,0.008032,0.005504,0.027584,54.0631,0.115712
+642,17.2124,58.0977,55.1565,0.069632,0.782336,0.008192,0.00576,0.027008,54.1488,0.114816
+643,16.8932,59.1953,55.4293,0.068352,1.15507,0.008192,0.006144,0.028352,54.0481,0.115104
+644,17.4244,57.3906,54.9236,0.067968,0.858112,0.008096,0.004192,0.028512,53.842,0.114816
+645,16.8654,59.293,54.9032,0.067168,0.762144,0.007904,0.004928,0.028672,53.9176,0.114816
+646,17.3583,57.6094,54.9155,0.068512,0.749568,0.008192,0.005248,0.02752,53.942,0.114528
+647,17.3913,57.5,55.0464,0.067872,0.966624,0.024576,0.006144,0.028416,53.8381,0.114656
+648,16.6602,60.0234,55.1629,0.06944,0.825568,0.00816,0.005312,0.027456,54.0958,0.131136
+649,17.3972,57.4805,55.1838,0.068,0.83968,0.008192,0.006144,0.028064,54.119,0.114688
+650,17.5366,57.0234,54.8843,0.06752,0.794688,0.008192,0.00416,0.028608,53.8665,0.114656
+651,17.3689,57.5742,54.832,0.068544,0.774176,0.00816,0.006144,0.028256,53.8321,0.114592
+652,17.0383,58.6914,54.9724,0.06864,0.768448,0.008032,0.0048,0.028192,53.9808,0.113536
+653,16.799,59.5273,55.0625,0.068832,0.840128,0.008032,0.004608,0.028672,53.9976,0.114688
+654,17.1444,58.3281,55.0912,0.075776,0.896352,0.008128,0.016384,0.027392,53.9525,0.114688
+655,17.3996,57.4727,55.1395,0.068608,0.808128,0.006976,0.005952,0.027936,54.1083,0.113536
+656,17.3889,57.5078,55.0714,0.066208,0.864256,0.008192,0.005184,0.027584,53.9867,0.113344
+657,16.8078,59.4961,55.3087,0.068,0.864256,0.008192,0.015584,0.027424,54.2106,0.114688
+658,17.3889,57.5078,55.0277,0.06816,0.877696,0.00704,0.00592,0.028064,53.9267,0.114112
+659,17.0701,58.582,55.1334,0.075776,0.872448,0.008192,0.005536,0.031328,54.0258,0.114304
+660,17.0383,58.6914,55.0836,0.066208,0.774112,0.008192,0.005792,0.026976,54.0877,0.114688
+661,17.478,57.2148,55.0029,0.069408,0.776416,0.006144,0.006048,0.02672,54.0035,0.114656
+662,17.3559,57.6172,54.9489,0.08016,0.762592,0.00816,0.005664,0.028288,53.9493,0.11472
+663,16.975,58.9102,54.9804,0.067872,0.814144,0.007104,0.006144,0.028192,53.9428,0.114176
+664,17.2055,58.1211,55.0564,0.067584,0.759808,0.008192,0.00512,0.027648,54.0733,0.114688
+665,17.3866,57.5156,55.1772,0.068928,0.7728,0.008192,0.006144,0.028032,54.1784,0.114688
+666,16.0542,62.2891,55.1223,0.068448,0.866304,0.00816,0.004128,0.028672,54.0314,0.1152
+667,17.2066,58.1172,55.0862,0.06944,0.812576,0.008064,0.004896,0.028448,54.0489,0.11392
+668,17.0997,58.4805,55.636,0.0688,0.965408,0.008096,0.004224,0.02848,54.4463,0.114688
+669,17.224,58.0586,55.0968,0.074176,0.77408,0.008192,0.005632,0.027168,54.0928,0.114784
+670,17.2356,58.0195,55.0433,0.067584,0.747712,0.008192,0.00528,0.027488,54.0726,0.114432
+671,17.336,57.6836,55.5444,0.069952,0.890656,0.008128,0.005024,0.028576,54.4276,0.114368
+672,17.3889,57.5078,55.0262,0.07344,0.803808,0.00816,0.004128,0.02864,53.9935,0.114496
+673,17.4458,57.3203,54.9915,0.067904,0.75328,0.008096,0.00496,0.028384,54.0141,0.114816
+674,17.4292,57.375,54.9767,0.068064,0.79872,0.008192,0.00512,0.027648,53.9546,0.1144
+675,16.9638,58.9492,55.3597,0.068864,0.994272,0.008192,0.005632,0.027136,54.1409,0.114688
+676,17.4268,57.3828,55.0701,0.068704,0.768992,0.008192,0.004128,0.02864,54.0774,0.113984
+677,17.2798,57.8711,55.1995,0.068992,0.868992,0.021504,0.00512,0.028704,54.0917,0.114432
+678,17.3736,57.5586,55.1106,0.068416,0.780416,0.008096,0.004192,0.040864,54.0953,0.113312
+679,17.5234,57.0664,54.8204,0.072928,0.74848,0.008192,0.006144,0.028128,53.8425,0.114016
+680,17.2751,57.8867,55.4199,0.06656,0.760864,0.007136,0.005792,0.026976,54.4379,0.114688
+681,17.3642,57.5898,54.8943,0.068224,0.783712,0.008032,0.004928,0.028672,53.8706,0.130112
+682,17.224,58.0586,55.0091,0.069632,0.80896,0.008192,0.004096,0.028672,53.975,0.114464
+683,17.309,57.7734,55.2613,0.069472,0.9832,0.018432,0.006144,0.028096,54.0425,0.113472
+684,17.1306,58.375,55.0922,0.068608,0.856096,0.00816,0.005728,0.028064,54.0109,0.114688
+685,17.4114,57.4336,54.964,0.079072,0.758368,0.007616,0.004864,0.028672,53.9705,0.114848
+686,16.9863,58.8711,55.2811,0.06944,0.948384,0.018464,0.005664,0.027104,54.0974,0.114624
+687,17.3901,57.5039,55.0152,0.069024,0.750176,0.008192,0.005664,0.027104,54.0406,0.114464
+688,17.1651,58.2578,55.2264,0.069312,0.77856,0.008064,0.004224,0.028672,54.2228,0.114688
+689,16.9469,59.0078,55.2591,0.0712,0.926176,0.008192,0.006144,0.028704,54.104,0.114688
+690,17.4971,57.1523,55.0411,0.069248,0.774528,0.008192,0.00544,0.027328,54.0416,0.114688
+691,17.3266,57.7148,54.9873,0.068128,0.751584,0.008192,0.005664,0.027104,54.0119,0.114688
+692,17.1513,58.3047,55.2211,0.068448,0.863264,0.007136,0.005824,0.028,54.1352,0.113216
+693,16.7386,59.7422,55.2284,0.068992,0.887424,0.007616,0.004672,0.028672,54.1162,0.114816
+694,17.4482,57.3125,55.0206,0.067584,0.868128,0.008128,0.01632,0.026976,53.9188,0.114656
+695,17.3984,57.4766,55.1096,0.069376,0.782592,0.008192,0.006144,0.027904,54.1024,0.113056
+696,17.1112,58.4414,55.5106,0.067616,0.965888,0.008064,0.004928,0.030784,54.3191,0.114208
+697,17.3913,57.5,55.2023,0.067968,0.887776,0.007168,0.006144,0.028672,54.0911,0.113504
+698,17.4804,57.207,54.9511,0.069632,0.840832,0.007136,0.005792,0.027904,53.8857,0.114112
+699,17.3477,57.6445,55.0502,0.069664,0.772064,0.008192,0.005504,0.027264,54.0527,0.114816
+700,16.8821,59.2344,55.4444,0.068544,0.92096,0.008064,0.004864,0.028288,54.2847,0.129024
+701,17.2751,57.8867,55.0541,0.06928,0.809312,0.008192,0.005952,0.02864,54.0183,0.114464
+702,16.9167,59.1133,55.1361,0.068864,0.940704,0.008096,0.016384,0.03296,53.9541,0.114976
+703,17.1927,58.1641,55.0461,0.069632,0.934976,0.007104,0.016384,0.028192,53.8763,0.1136
+704,17.3219,57.7305,55.1956,0.069152,0.784864,0.008192,0.005216,0.027552,54.186,0.114688
+705,17.4019,57.4648,55.0723,0.069056,0.782912,0.008192,0.006144,0.028,54.0628,0.115136
+706,17.3736,57.5586,55.172,0.068512,0.939616,0.008032,0.014816,0.028512,53.9992,0.113344
+707,17.4292,57.375,55.0408,0.070368,0.800736,0.008096,0.005472,0.02752,54.0136,0.115072
+708,17.309,57.7734,55.2948,0.067968,0.778848,0.008192,0.005824,0.026944,54.2922,0.114752
+709,17.3336,57.6914,55.0769,0.079872,0.82288,0.008064,0.00464,0.028672,54.0192,0.1136
+710,16.9178,59.1094,55.126,0.069344,0.839968,0.008192,0.005664,0.027104,54.0611,0.114688
+711,17.2251,58.0547,55.2077,0.069632,0.771456,0.008224,0.004704,0.028672,54.2106,0.114464
+712,17.0134,58.7773,55.1652,0.068864,0.886976,0.008064,0.004864,0.028,54.0537,0.11472
+713,16.1892,61.7695,55.3065,0.069952,0.99328,0.008192,0.005728,0.028096,54.0866,0.114624
+714,16.9683,58.9336,55.1342,0.069376,0.764192,0.008192,0.005216,0.027552,54.145,0.114688
+715,16.7935,59.5469,55.2677,0.082272,1.03952,0.008032,0.01536,0.030304,53.9775,0.11472
+716,17.3842,57.5234,55.0851,0.067744,0.776032,0.008192,0.004096,0.028672,54.0856,0.114688
+717,17.1112,58.4414,54.9987,0.069056,0.762752,0.008192,0.006112,0.028064,54.0103,0.114176
+718,16.881,59.2383,55.2694,0.069088,1.00314,0.008192,0.00496,0.028128,54.0422,0.113632
+719,17.409,57.4414,54.9631,0.06848,0.74752,0.008192,0.006144,0.028032,53.99,0.114688
+720,17.274,57.8906,55.1548,0.069536,0.99312,0.008096,0.016832,0.032768,53.9209,0.1136
+721,17.3148,57.7539,55.0973,0.069344,0.792352,0.008064,0.004736,0.028704,54.0805,0.113664
+722,17.3113,57.7656,55.014,0.069728,0.768704,0.008192,0.005248,0.02752,54.0201,0.114464
+723,17.3783,57.543,54.8616,0.069216,0.81696,0.008192,0.0048,0.028672,53.8173,0.116416
+724,17.4792,57.2109,54.9054,0.068384,0.78784,0.008064,0.004864,0.02816,53.8936,0.114432
+725,16.957,58.9727,55.2961,0.067648,0.866304,0.008192,0.005728,0.02704,54.2065,0.114656
+726,17.4541,57.293,55.1221,0.068192,0.811008,0.007904,0.004384,0.028544,54.0872,0.11488
+727,17.0974,58.4883,55.0984,0.068608,0.787584,0.008096,0.005088,0.028384,54.0858,0.114784
+728,17.1777,58.2148,55.1252,0.068832,0.7744,0.006688,0.005792,0.028096,54.1273,0.114144
+729,17.4375,57.3477,54.8864,0.069664,0.81712,0.008192,0.005664,0.027104,53.844,0.114656
+730,17.2391,58.0078,55.3964,0.067616,0.937952,0.008192,0.014336,0.04096,54.2137,0.1136
+731,17.3571,57.6133,55.1296,0.067584,0.815136,0.00816,0.006144,0.028288,54.0901,0.11424
+732,17.4589,57.2773,54.9006,0.0672,0.790912,0.008192,0.005696,0.027072,53.887,0.114528
+733,17.5186,57.082,54.7349,0.069664,0.788352,0.008064,0.005504,0.02752,53.7221,0.113696
+734,17.1043,58.4648,54.9559,0.069024,0.791136,0.008192,0.00544,0.028352,53.939,0.114752
+735,17.4625,57.2656,55.23,0.06912,0.878144,0.025536,0.005824,0.037184,54.095,0.119136
+736,17.1295,58.3789,54.8493,0.068896,0.784544,0.008064,0.0048,0.02816,53.8404,0.114432
+737,17.5354,57.0273,54.9538,0.068704,0.759968,0.008704,0.005504,0.02752,53.9688,0.11456
+738,17.4744,57.2266,54.9335,0.069632,0.777504,0.008064,0.004864,0.028064,53.9307,0.114688
+739,17.4339,57.3594,54.8634,0.067616,0.782336,0.00816,0.00592,0.02816,53.857,0.114176
+740,17.5139,57.0977,54.7888,0.067392,0.793504,0.008192,0.005568,0.028288,53.7726,0.113312
+741,17.3277,57.7109,55.0731,0.068064,0.798752,0.00816,0.005664,0.027136,54.0506,0.11472
+742,17.3701,57.5703,55.1396,0.069088,0.90544,0.008128,0.00448,0.02848,54.01,0.11392
+743,17.4221,57.3984,55.1062,0.068096,0.870912,0.008192,0.00592,0.028,54.0108,0.114368
+744,17.4553,57.2891,55.042,0.066912,0.763616,0.007104,0.005888,0.027968,54.0559,0.114592
+745,17.4482,57.3125,55.0839,0.068256,0.829088,0.00816,0.004704,0.028672,54.0303,0.11472
+746,17.396,57.4844,55.155,0.06784,0.908992,0.008064,0.004544,0.028576,54.0233,0.113696
+747,17.1547,58.293,55.3165,0.069504,0.954528,0.00816,0.005664,0.028128,54.1356,0.114944
+748,17.2891,57.8398,55.1904,0.068512,0.806816,0.008064,0.00432,0.02864,54.1592,0.114816
+749,17.376,57.5508,55.0602,0.069408,0.773856,0.008096,0.004704,0.028672,54.0611,0.1144
+750,17.4518,57.3008,54.842,0.068256,0.789664,0.008032,0.004928,0.027936,53.8285,0.114688
+751,16.9716,58.9219,54.95,0.068512,0.77616,0.008192,0.006144,0.027776,53.9486,0.114656
+752,17.5704,56.9141,54.8051,0.068192,0.821248,0.008192,0.005248,0.02752,53.76,0.114688
+753,17.3512,57.6328,55.0183,0.085856,0.863136,0.008192,0.005696,0.027072,53.9136,0.11472
+754,17.3783,57.543,54.997,0.067584,0.763712,0.008064,0.004416,0.028704,54.0098,0.114688
+755,17.4971,57.1523,54.8864,0.069632,0.763104,0.008032,0.005056,0.02848,53.8974,0.114688
+756,17.5234,57.0664,54.8925,0.069216,0.78816,0.008064,0.004896,0.027872,53.8796,0.114688
+757,17.2205,58.0703,55.2688,0.067552,0.886656,0.008032,0.005504,0.027584,54.1594,0.114112
+758,17.5487,56.9844,54.8584,0.06848,0.82944,0.008192,0.004128,0.02864,53.8048,0.114688
+759,17.3195,57.7383,55.1875,0.068704,0.961376,0.008032,0.005504,0.027488,54.0031,0.113248
+760,17.2693,57.9062,54.9623,0.068096,0.843776,0.008192,0.005312,0.027456,53.8952,0.114336
+761,17.3937,57.4922,55.1954,0.067744,0.806464,0.008128,0.004608,0.028672,54.1655,0.114272
+762,17.4458,57.3203,55.1021,0.06624,0.777632,0.008416,0.00448,0.028448,54.1041,0.1128
+763,17.4482,57.3125,54.9445,0.068192,0.831392,0.008064,0.005504,0.027488,53.8903,0.113536
+764,17.3219,57.7305,54.9745,0.069472,0.814368,0.008064,0.004864,0.028832,53.9342,0.114688
+765,17.3371,57.6797,54.7863,0.068512,0.802784,0.008224,0.005568,0.027296,53.7593,0.114592
+766,17.3102,57.7695,55.1363,0.077888,0.859328,0.008064,0.005056,0.028192,54.0431,0.114656
+767,17.4019,57.4648,55.1791,0.069408,0.814912,0.008064,0.00464,0.028672,54.1389,0.11456
+768,17.3606,57.6016,55.2755,0.067584,0.761632,0.008064,0.004448,0.028416,54.2907,0.114688
+769,17.2542,57.957,54.9219,0.068256,0.843648,0.008064,0.005504,0.02752,53.8541,0.114816
+770,17.3925,57.4961,55.1506,0.067584,0.921632,0.00816,0.015808,0.02832,53.9944,0.114688
+771,17.4102,57.4375,54.95,0.069184,0.817696,0.008192,0.006144,0.028096,53.9073,0.113344
+772,17.447,57.3164,55.1401,0.068736,0.81376,0.008064,0.004416,0.028384,54.1022,0.11456
+773,17.4197,57.4062,55.169,0.067584,0.808896,0.008064,0.005504,0.027456,54.137,0.11456
+774,17.3348,57.6875,55.2411,0.068,0.884544,0.008096,0.004384,0.028672,54.1323,0.115104
+775,17.3195,57.7383,54.9069,0.06912,0.798368,0.007008,0.006016,0.028128,53.8852,0.113024
+776,17.3524,57.6289,55.333,0.068992,0.790816,0.008096,0.004704,0.028352,54.3173,0.11472
+777,17.288,57.8438,55.339,0.069568,0.821312,0.008192,0.006144,0.028128,54.2922,0.113504
+778,17.3724,57.5625,55.126,0.068896,0.844512,0.008192,0.005408,0.02736,54.057,0.114624
+779,17.376,57.5508,55.2079,0.067648,0.800704,0.008192,0.005632,0.0272,54.1851,0.11344
+780,17.2507,57.9688,55.0851,0.068864,0.778816,0.008032,0.004448,0.028448,54.0818,0.114688
+781,17.2124,58.0977,55.2499,0.068736,0.811904,0.00816,0.005472,0.027328,54.2138,0.11456
+782,17.2356,58.0195,55.0871,0.068416,1.06189,0.007168,0.005824,0.028192,53.8017,0.113952
+783,17.521,57.0742,54.9315,0.079872,0.784384,0.008192,0.005696,0.02816,53.9105,0.114688
+784,17.3642,57.5898,55.2314,0.068512,0.916992,0.008096,0.004704,0.02816,54.0914,0.113568
+785,17.415,57.4219,54.7984,0.069344,0.835456,0.00656,0.006144,0.028448,53.7391,0.113312
+786,17.2635,57.9258,55.2607,0.068832,0.792384,0.007136,0.005792,0.02816,54.2442,0.11424
+787,17.3937,57.4922,55.2422,0.06896,0.87136,0.008128,0.005504,0.027328,54.1464,0.114496
+788,17.3606,57.6016,55.2332,0.06832,0.796832,0.008224,0.005312,0.027456,54.2126,0.114464
+789,17.5655,56.9297,54.894,0.069408,0.774048,0.008064,0.004704,0.028672,53.8948,0.114272
+790,17.5607,56.9453,54.7288,0.068736,0.791456,0.00816,0.00528,0.027488,53.7143,0.113376
+791,16.9447,59.0156,54.8715,0.067584,0.796672,0.008192,0.005632,0.027136,53.8515,0.11472
+792,17.0701,58.582,55.0162,0.068288,0.799968,0.008064,0.004864,0.028032,53.9937,0.11328
+793,17.5342,57.0312,54.9622,0.06768,0.78944,0.007136,0.006144,0.028416,53.9499,0.113472
+794,17.1364,58.3555,55.2809,0.069376,0.962816,0.008192,0.01552,0.028576,54.0821,0.114336
+795,17.0508,58.6484,55.0998,0.068032,0.800768,0.008192,0.005984,0.027872,54.0762,0.112832
+796,17.053,58.6406,55.0733,0.068096,0.877952,0.008096,0.004832,0.028352,53.9725,0.11344
+797,17.3996,57.4727,55.001,0.068256,0.776192,0.008192,0.00576,0.028288,53.9996,0.114752
+798,17.4328,57.3633,54.9832,0.072288,0.761696,0.008064,0.004352,0.028544,53.9936,0.114688
+799,17.3277,57.7109,55.3332,0.068128,0.866304,0.008192,0.005536,0.027232,54.2428,0.114944
+800,17.3996,57.4727,55.0912,0.068896,0.770208,0.008064,0.0048,0.027968,54.0966,0.114688
+801,17.3207,57.7344,55.0057,0.068224,0.749824,0.00816,0.005984,0.02816,54.0308,0.11456
+802,17.1985,58.1445,55.1561,0.068992,0.845984,0.008032,0.004768,0.028448,54.0859,0.114016
+803,17.2891,57.8398,54.8202,0.069632,0.884736,0.008192,0.005952,0.028128,53.7088,0.114688
+804,17.4446,57.3242,54.966,0.068768,0.788736,0.008032,0.004864,0.027872,53.9533,0.114432
+805,17.336,57.6836,55.1997,0.069536,0.93808,0.008192,0.017664,0.02848,54.0226,0.115232
+806,17.2147,58.0898,55.3498,0.067936,0.95232,0.008192,0.005504,0.027392,54.1736,0.114848
+807,17.4482,57.3125,55.0158,0.067872,0.78784,0.008128,0.0048,0.028672,54.0049,0.1136
+808,17.253,57.9609,55.2878,0.069056,0.791072,0.008128,0.004192,0.028672,54.272,0.114688
+809,17.2961,57.8164,55.0695,0.068064,0.806464,0.007072,0.006144,0.028512,54.0384,0.114816
+810,17.3866,57.5156,55.0249,0.069632,0.84112,0.008032,0.004864,0.028192,53.9591,0.113888
+811,17.4482,57.3125,54.636,0.067136,0.770496,0.008192,0.006048,0.027744,53.6422,0.114144
+812,17.2728,57.8945,54.9252,0.068096,0.879008,0.008192,0.014336,0.028672,53.8131,0.113856
+813,17.5366,57.0234,54.8679,0.069184,0.805728,0.008192,0.005792,0.028032,53.8364,0.114624
+814,17.478,57.2148,54.817,0.068192,0.845632,0.007552,0.004864,0.027904,53.7482,0.114656
+815,17.3913,57.5,55.2079,0.069664,0.88064,0.00816,0.006144,0.028,54.1019,0.113472
+816,17.1893,58.1758,55.4268,0.067584,0.925728,0.00816,0.005632,0.027136,54.278,0.114528
+817,17.4696,57.2422,54.9484,0.068416,0.82944,0.008192,0.006144,0.028224,53.8915,0.116512
+818,17.274,57.8906,54.8068,0.06688,0.79312,0.008032,0.00464,0.028384,53.791,0.114656
+819,17.4971,57.1523,54.7923,0.067776,0.833536,0.008192,0.005824,0.028128,53.7342,0.114592
+820,17.2484,57.9766,55.2065,0.06816,0.858112,0.008192,0.004128,0.02864,54.1245,0.114688
+821,17.4055,57.4531,54.9833,0.068288,0.818176,0.007136,0.006144,0.028224,53.9419,0.113472
+822,17.3477,57.6445,55.0059,0.067808,0.777024,0.00816,0.00544,0.027328,54.0054,0.114688
+823,17.4553,57.2891,54.7084,0.06816,0.800512,0.008064,0.00448,0.028672,53.68,0.11856
+824,17.4446,57.3242,54.9083,0.0672,0.779936,0.008064,0.004864,0.02784,53.9056,0.11472
+825,17.3795,57.5391,55.0029,0.067776,0.811008,0.008192,0.006144,0.028032,53.967,0.114688
+826,17.4067,57.4492,55.07,0.068704,1.07818,0.008192,0.004224,0.028544,53.7682,0.114016
+827,17.3878,57.5117,54.9757,0.069408,0.802528,0.008032,0.004768,0.028576,53.9483,0.114144
+828,16.9514,58.9922,55.0288,0.069632,0.862208,0.008192,0.005312,0.027456,53.9416,0.1144
+829,17.4446,57.3242,55.2673,0.069344,0.819488,0.008192,0.005824,0.02704,54.224,0.11344
+830,17.4434,57.3281,54.9588,0.068,0.822752,0.008096,0.004928,0.027968,53.9123,0.114752
+831,17.1272,58.3867,55.0024,0.067584,0.806336,0.008032,0.004864,0.02848,53.9732,0.113952
+832,17.1743,58.2266,55.286,0.068448,0.794336,0.008096,0.004448,0.028576,54.2675,0.114592
+833,17.4292,57.375,54.9621,0.069376,0.784512,0.008064,0.005472,0.027552,53.952,0.115072
+834,17.4482,57.3125,54.9704,0.067328,0.813312,0.008192,0.005856,0.028096,53.9342,0.11344
+835,17.376,57.5508,55.1217,0.069568,0.825408,0.008192,0.006144,0.028032,54.0697,0.11472
+836,17.3465,57.6484,55.3382,0.069632,0.823296,0.008192,0.005408,0.02736,54.2899,0.114464
+837,17.1731,58.2305,54.8209,0.069376,0.780544,0.008192,0.006144,0.028128,53.8138,0.114688
+838,17.0405,58.6836,55.0844,0.06784,0.782336,0.008192,0.005472,0.028352,54.0775,0.114656
+839,17.2309,58.0352,55.0279,0.067968,0.784192,0.008064,0.005504,0.027584,54.0194,0.115168
+840,17.4197,57.4062,55.1465,0.067616,0.77584,0.008096,0.004512,0.02832,54.1474,0.114688
+841,17.4649,57.2578,55.0666,0.067584,0.782304,0.008128,0.005536,0.027328,54.0621,0.113664
+842,17.2193,58.0742,55.1587,0.067776,0.978944,0.008192,0.016,0.033152,53.9397,0.114944
+843,17.4851,57.1914,54.9757,0.068832,0.794784,0.008064,0.004864,0.028608,53.9565,0.114048
+844,17.2043,58.125,55.0482,0.066368,0.79872,0.009632,0.004736,0.02848,54.0255,0.114784
+845,17.0269,58.7305,55.1343,0.068032,0.847872,0.008192,0.00576,0.028096,54.062,0.114368
+846,17.5246,57.0625,54.6695,0.067808,0.763904,0.008192,0.004192,0.028576,53.6822,0.114688
+847,17.3242,57.7227,55.0707,0.069152,0.800224,0.007168,0.006144,0.02832,54.045,0.114688
+848,17.1628,58.2656,55.4713,0.068896,0.972576,0.007104,0.016384,0.028128,54.2641,0.11408
+849,17.0009,58.8203,55.2591,0.068832,0.83024,0.0184,0.005952,0.041184,54.1819,0.11264
+850,17.5559,56.9609,55.0326,0.077536,0.758464,0.008096,0.004288,0.028672,54.0406,0.114976
+851,16.7836,59.582,55.4097,0.068608,0.85808,0.008192,0.006016,0.02816,54.3276,0.113088
+852,17.2833,57.8594,55.0792,0.067904,0.771616,0.008064,0.004704,0.028192,54.0852,0.113536
+853,17.1674,58.25,55.2678,0.069568,0.968576,0.008064,0.004832,0.028672,54.0752,0.112832
+854,17.295,57.8203,55.1174,0.069088,0.78464,0.008128,0.004448,0.028512,54.1077,0.11488
+855,16.6515,60.0547,54.9321,0.068288,0.77376,0.008032,0.00464,0.028672,53.9341,0.114624
+856,17.157,58.2852,55.0953,0.069408,0.782048,0.008064,0.004736,0.028064,54.0883,0.114656
+857,17.1754,58.2227,55.1081,0.068128,0.896512,0.008032,0.004768,0.02864,53.9869,0.115168
+858,17.4316,57.3672,55.2698,0.068064,0.855904,0.008096,0.00432,0.028576,54.1902,0.114688
+859,17.2495,57.9727,55.2882,0.06944,0.904,0.020192,0.005504,0.027584,54.1471,0.114368
+860,17.2333,58.0273,55.1918,0.066432,0.753664,0.008192,0.005632,0.027168,54.2164,0.114272
+861,17.1112,58.4414,54.935,0.067616,0.773408,0.00864,0.005472,0.027552,53.9382,0.114176
+862,16.929,59.0703,54.9458,0.067616,0.759776,0.008192,0.005376,0.027392,53.9628,0.114688
+863,17.1066,58.457,55.142,0.06912,0.77616,0.008032,0.0048,0.028672,54.1409,0.114336
+864,17.2078,58.1133,55.0061,0.076384,0.844128,0.008192,0.004224,0.028544,53.9317,0.112928
+865,17.0111,58.7852,55.3783,0.068,0.795968,0.008064,0.004928,0.028512,54.3595,0.113376
+866,16.9402,59.0312,54.8898,0.069184,0.769632,0.008064,0.005024,0.02816,53.8955,0.114272
+867,17.0405,58.6836,54.9694,0.067584,0.798752,0.00816,0.005952,0.028032,53.947,0.113888
+868,17.3219,57.7305,55.1955,0.069312,0.878208,0.008032,0.004832,0.028064,54.0925,0.114496
+869,17.4577,57.2812,54.9735,0.067904,0.743392,0.008288,0.004672,0.028672,54.0074,0.113152
+870,17.3583,57.6094,55.0953,0.067712,0.766048,0.008192,0.005952,0.027968,54.1041,0.115328
+871,17.0269,58.7305,55.4031,0.068224,1.01821,0.00816,0.005504,0.027296,54.1612,0.114496
+872,17.4233,57.3945,55.1584,0.067968,0.80384,0.019456,0.0056,0.027168,54.1204,0.114016
+873,17.4518,57.3008,55.1001,0.06864,0.86832,0.008192,0.016096,0.02816,53.9962,0.114464
+874,16.81,59.4883,55.2593,0.06928,0.7808,0.008128,0.00416,0.028704,54.2551,0.113184
+875,17.3102,57.7695,55.0177,0.068832,0.797664,0.008224,0.005632,0.027104,53.997,0.113248
+876,17.323,57.7266,55.1547,0.075648,0.884864,0.008192,0.004096,0.028704,54.0384,0.114784
+877,17.0929,58.5039,54.8579,0.068416,0.876512,0.008192,0.014336,0.028576,53.7478,0.114048
+878,17.2915,57.832,55.1004,0.068576,0.82944,0.00816,0.004128,0.028704,54.0483,0.11312
+879,16.7627,59.6562,55.1879,0.068512,0.908736,0.008416,0.005472,0.027616,54.0549,0.11424
+880,17.3184,57.7422,55.3083,0.07072,0.86112,0.018432,0.006144,0.028064,54.2091,0.114688
+881,16.6504,60.0586,55.3036,0.069632,0.907264,0.008192,0.005504,0.027264,54.1706,0.115104
+882,17.1192,58.4141,55.0359,0.069504,0.77632,0.008192,0.004256,0.028512,54.0344,0.114688
+883,17.2786,57.875,55.2334,0.068544,0.871712,0.00816,0.016928,0.027936,54.1255,0.114688
+884,17.4839,57.1953,55.0296,0.067872,0.751616,0.00816,0.004096,0.028672,54.0549,0.11424
+885,16.684,59.9375,55.1712,0.068768,0.779104,0.008192,0.006144,0.028128,54.1672,0.113632
+886,17.3055,57.7852,55.037,0.069536,0.801952,0.007104,0.005824,0.028096,54.0098,0.114624
+887,17.3442,57.6562,55.1322,0.068896,0.75232,0.008064,0.005504,0.027424,54.1553,0.114688
+888,17.1123,58.4375,55.0167,0.068704,0.773024,0.008192,0.004256,0.028512,54.016,0.118048
+889,17.224,58.0586,54.8372,0.06944,0.78976,0.007104,0.006144,0.028576,53.8215,0.114688
+890,17.1916,58.168,55.2194,0.067584,0.870176,0.00816,0.004352,0.02864,54.1263,0.114144
+891,17.343,57.6602,55.0309,0.068544,0.847872,0.008192,0.016384,0.028416,53.9466,0.114848
+892,17.2298,58.0391,55.1711,0.068576,0.755712,0.008192,0.005408,0.02736,54.1901,0.115776
+893,17.2089,58.1094,55.1936,0.069312,0.84544,0.008064,0.004928,0.028544,54.1226,0.114688
+894,17.4102,57.4375,55.0365,0.072256,0.85152,0.00816,0.004608,0.028672,53.9566,0.114688
+895,17.4067,57.4492,55.1038,0.06704,0.75456,0.00816,0.005952,0.028,54.1272,0.112864
+896,17.1112,58.4414,55.2155,0.068992,0.76832,0.008128,0.004672,0.028128,54.2227,0.114592
+897,17.4875,57.1836,55.1556,0.068384,0.764,0.008192,0.006112,0.028416,54.1658,0.11472
+898,17.2903,57.8359,55.1261,0.069056,1.02653,0.00816,0.004256,0.028512,53.8764,0.113216
+899,16.9492,59,55.272,0.070368,0.815232,0.018464,0.006144,0.028672,54.2186,0.114528
+900,17.3571,57.6133,54.9765,0.069632,0.81408,0.008224,0.004832,0.028192,53.9384,0.113152
+901,17.4008,57.4688,54.9626,0.06992,0.891008,0.00816,0.005504,0.027296,53.8472,0.113536
+902,17.4816,57.2031,55.1363,0.068832,0.794816,0.008096,0.0048,0.027968,54.1184,0.113344
+903,17.4887,57.1797,54.8885,0.069632,0.816768,0.008064,0.004608,0.028672,53.846,0.11472
+904,17.336,57.6836,55.065,0.06784,0.773248,0.008384,0.0048,0.028064,54.0678,0.114848
+905,17.1801,58.207,55.1916,0.066528,0.767968,0.008064,0.005504,0.027392,54.2018,0.114336
+906,17.4197,57.4062,54.937,0.06944,0.83568,0.019904,0.004768,0.028,53.8651,0.11408
+907,17.2751,57.8867,55.3209,0.067968,0.925536,0.02192,0.006528,0.028128,54.1575,0.113312
+908,17.2611,57.9336,54.9315,0.066976,0.746272,0.008192,0.005248,0.02752,53.9494,0.127808
+909,17.157,58.2852,55.1178,0.069664,0.84544,0.020736,0.005472,0.027392,54.0359,0.113216
+910,17.295,57.8203,55.2922,0.067872,0.867936,0.008064,0.00464,0.028256,54.202,0.113376
+911,17.4209,57.4023,55.0102,0.06768,0.756544,0.008192,0.005888,0.0288,54.0284,0.114688
+912,17.3137,57.7578,55.038,0.068256,0.779328,0.007104,0.005888,0.028224,54.0348,0.114368
+913,17.2286,58.043,55.4598,0.068992,0.92576,0.008032,0.004864,0.028608,54.3089,0.114656
+914,17.5378,57.0195,54.7081,0.067584,0.776192,0.008192,0.005856,0.028128,53.7076,0.114528
+915,17.2961,57.8164,55.2858,0.06768,0.9072,0.007872,0.005472,0.027584,54.1553,0.114688
+916,17.0066,58.8008,55.2117,0.069376,0.767456,0.008064,0.004928,0.028096,54.2193,0.114464
+917,17.415,57.4219,55.1404,0.068768,0.81392,0.02048,0.005984,0.028064,54.0884,0.11472
+918,17.2658,57.918,55.0698,0.06864,0.78048,0.008032,0.004928,0.028032,54.0656,0.114016
+919,17.1032,58.4688,55.1977,0.067616,0.853504,0.006624,0.018048,0.028128,54.1091,0.114688
+920,17.3008,57.8008,55.1746,0.069664,0.800256,0.008064,0.004704,0.028128,54.1494,0.114368
+921,17.0781,58.5547,55.4008,0.067936,0.851968,0.007616,0.004672,0.028672,54.3266,0.113376
+922,17.4446,57.3242,54.7491,0.068704,0.777056,0.008064,0.004288,0.028576,53.7478,0.114624
+923,17.3465,57.6484,55.179,0.067584,0.759808,0.008192,0.006144,0.028096,54.1948,0.1144
+924,17.3289,57.707,55.4783,0.067616,0.825184,0.008064,0.005472,0.027552,54.4297,0.114688
+925,17.2961,57.8164,55.0257,0.07072,0.778624,0.008064,0.0048,0.028672,54.0201,0.11472
+926,16.8821,59.2344,55.2755,0.06944,0.939616,0.016992,0.005312,0.027456,54.1032,0.113536
+927,17.2973,57.8125,55.1937,0.070912,0.771904,0.007104,0.006144,0.028704,54.1941,0.114784
+928,17.3807,57.5352,54.9827,0.069248,0.852352,0.008192,0.004128,0.028608,53.9054,0.114688
+929,17.4411,57.3359,54.8721,0.067104,0.770528,0.008192,0.005856,0.028128,53.8776,0.11472
+930,17.3465,57.6484,55.1857,0.068512,0.77824,0.008192,0.004096,0.028672,54.1833,0.114624
+931,17.2856,57.8516,55.0105,0.067584,0.787744,0.008032,0.004992,0.028544,53.9993,0.114368
+932,17.3665,57.582,55.3189,0.067392,0.846304,0.008064,0.004352,0.028352,54.2498,0.114656
+933,17.4696,57.2422,54.9575,0.067776,0.8184,0.008096,0.005024,0.028544,53.9157,0.113984
+934,17.3125,57.7617,55.121,0.068928,0.965312,0.008192,0.015648,0.02736,53.9198,0.115808
+935,17.323,57.7266,55.2741,0.068192,0.779712,0.008064,0.0048,0.028672,54.27,0.114688
+936,17.5151,57.0938,54.9295,0.06896,0.76976,0.008224,0.004864,0.028,53.9359,0.113728
+937,17.1318,58.3711,55.0351,0.067584,0.790368,0.008064,0.00448,0.028672,54.0201,0.11584
+938,17.428,57.3789,55.0236,0.068224,0.7944,0.008064,0.004448,0.028672,54.0058,0.114048
+939,17.3665,57.582,54.9806,0.069632,0.796672,0.008192,0.005984,0.028032,53.9574,0.114688
+940,17.172,58.2344,55.0598,0.075232,0.760032,0.008064,0.004544,0.029984,54.0677,0.11424
+941,17.1927,58.1641,55.4021,0.069504,0.880576,0.008096,0.005504,0.027552,54.2962,0.114656
+942,17.5523,56.9727,54.7436,0.06816,0.768,0.008128,0.004192,0.02864,53.7518,0.114688
+943,17.3842,57.5234,55.1646,0.069184,0.774496,0.008032,0.005504,0.02752,54.1655,0.1144
+944,17.3571,57.6133,55.1176,0.069344,0.831776,0.008096,0.004192,0.028576,54.0612,0.114464
+945,17.1974,58.1484,55.0718,0.068832,0.8016,0.008192,0.005504,0.027264,54.0447,0.115744
+946,17.4518,57.3008,55.0218,0.07984,0.765248,0.007104,0.005856,0.027968,54.0211,0.114688
+947,17.3795,57.5391,55.1991,0.069632,0.872352,0.00816,0.005472,0.027424,54.1016,0.114464
+948,17.2089,58.1094,55.2633,0.069568,0.886272,0.008064,0.004832,0.028384,54.1514,0.11472
+949,17.3571,57.6133,55.0081,0.067488,0.823648,0.008064,0.004864,0.02864,53.9607,0.114688
+950,17.5186,57.082,54.8393,0.068896,0.805632,0.008192,0.005344,0.027424,53.8105,0.113376
+951,17.4233,57.3945,55.1168,0.068384,0.833152,0.008096,0.0048,0.028608,54.0591,0.114688
+952,17.5246,57.0625,54.8348,0.069632,0.802368,0.008064,0.004672,0.028288,53.8075,0.114304
+953,17.4292,57.375,55.1147,0.068448,0.764032,0.008192,0.005664,0.027232,54.1265,0.114688
+954,17.4328,57.3633,54.9908,0.067584,0.845376,0.008096,0.00464,0.02832,53.9221,0.114592
+955,17.3783,57.543,55.1035,0.069632,0.845824,0.008192,0.005568,0.0272,54.0337,0.113376
+956,17.217,58.082,55.3283,0.067584,0.770016,0.008032,0.004288,0.028672,54.3334,0.116256
+957,17.0303,58.7188,55.0871,0.069152,0.81936,0.007648,0.004992,0.028384,54.0429,0.114688
+958,17.2751,57.8867,55.0329,0.06928,0.856096,0.008032,0.004576,0.02848,53.9518,0.114624
+959,17.126,58.3906,54.9765,0.069504,0.790656,0.018432,0.006048,0.028096,53.9508,0.113024
+960,17.3689,57.5742,55.3411,0.069632,0.862208,0.008192,0.005536,0.027232,54.2536,0.114688
+961,17.3067,57.7812,55.2653,0.069184,0.805184,0.00816,0.005504,0.027424,54.2349,0.11488
+962,17.5139,57.0977,54.9581,0.067584,0.765952,0.008192,0.004192,0.028576,53.9689,0.114656
+963,17.428,57.3789,55.044,0.068,0.780288,0.008192,0.005856,0.026944,54.0401,0.114624
+964,17.3595,57.6055,54.9422,0.06736,0.765984,0.008064,0.004864,0.028096,53.9545,0.11328
+965,17.3878,57.5117,55.1076,0.067584,0.830944,0.00816,0.004672,0.028672,54.0527,0.11488
+966,17.217,58.082,55.4387,0.069664,0.96048,0.00816,0.004128,0.028672,54.2526,0.11504
+967,17.4696,57.2422,54.9221,0.067872,0.788096,0.007136,0.006144,0.02864,53.9111,0.11312
+968,17.0519,58.6445,55.3247,0.069632,0.845088,0.008256,0.004768,0.02816,54.2555,0.113312
+969,17.3524,57.6289,55.183,0.068704,0.955168,0.008032,0.005504,0.027584,54.0037,0.114336
+970,17.4792,57.2109,55.0038,0.067776,0.788992,0.008192,0.004096,0.028672,53.9913,0.114816
+971,17.4649,57.2578,54.9624,0.067808,0.804864,0.008192,0.006144,0.028352,53.9324,0.114688
+972,17.1524,58.3008,54.9827,0.067584,0.843776,0.008192,0.005408,0.02736,53.9157,0.114624
+973,17.5007,57.1406,54.8571,0.069056,0.789056,0.008192,0.0056,0.027168,53.8419,0.116064
+974,17.336,57.6836,55.2528,0.06896,0.866688,0.008128,0.004448,0.028352,54.1614,0.114784
+975,17.2263,58.0508,55.0587,0.067904,0.820896,0.00816,0.005472,0.027648,54.014,0.114688
+976,17.3137,57.7578,55.0218,0.06784,0.92736,0.020064,0.004928,0.028448,53.8585,0.114688
+977,17.2611,57.9336,55.1758,0.068224,0.878592,0.008192,0.006144,0.027872,54.0721,0.114688
+978,17.5282,57.0508,54.7144,0.069632,0.82944,0.008096,0.004192,0.028672,53.6596,0.114688
+979,17.4851,57.1914,54.9053,0.068224,0.798528,0.008192,0.006144,0.028096,53.8814,0.114688
+980,17.309,57.7734,54.9414,0.06816,0.773408,0.008032,0.004928,0.02784,53.9432,0.115808
+981,17.3795,57.5391,55.0809,0.068544,0.826368,0.008384,0.004896,0.028672,54.0284,0.11568
+982,17.5163,57.0898,54.9803,0.06944,0.765472,0.008064,0.004896,0.028384,53.9897,0.1144
+983,17.3489,57.6406,55.4107,0.067616,0.761824,0.008192,0.006144,0.02832,54.4254,0.113184
+984,17.3889,57.5078,54.997,0.068832,0.893728,0.008192,0.004256,0.028512,53.88,0.113472
+985,17.4423,57.332,55.0981,0.068192,0.824704,0.008064,0.005056,0.028672,54.0485,0.114944
+986,17.224,58.0586,55.2387,0.067424,0.807072,0.008192,0.005312,0.027456,54.2081,0.115072
+987,17.3406,57.668,55.1439,0.068768,0.830336,0.00816,0.006144,0.028128,54.0873,0.115104
+988,17.3324,57.6953,55.0707,0.069056,0.798304,0.007136,0.005792,0.026976,54.0488,0.114688
+989,17.472,57.2344,54.8886,0.078464,0.763936,0.00816,0.00608,0.027968,53.8894,0.114592
+990,17.4458,57.3203,54.7983,0.067584,0.811008,0.008192,0.005504,0.027264,53.7641,0.114688
+991,17.4708,57.2383,55.1485,0.067584,0.761856,0.008192,0.006016,0.028384,54.1618,0.114688
+992,17.3008,57.8008,55.3451,0.067936,0.805472,0.008192,0.005664,0.028192,54.3149,0.11472
+993,17.2938,57.8242,55.0156,0.067744,0.806912,0.008192,0.006112,0.02784,53.9857,0.11312
+994,17.4875,57.1836,55.2044,0.06816,0.779488,0.008032,0.004864,0.028192,54.201,0.11472
+995,17.4114,57.4336,55.0641,0.069504,0.81728,0.008192,0.005696,0.027264,54.0216,0.11456
+996,17.4185,57.4102,54.9745,0.069408,0.790144,0.00864,0.004288,0.028608,53.9589,0.114496
+997,17.1754,58.2227,55.3656,0.068064,0.944128,0.00816,0.005504,0.027488,54.1979,0.114368
+998,17.3948,57.4883,55.2171,0.068512,0.84992,0.008192,0.00528,0.027488,54.143,0.114688
+999,17.0021,58.8164,55.0413,0.068832,0.79952,0.008192,0.006144,0.028192,54.0159,0.114496
+1000,17.4244,57.3906,55.2467,0.069184,0.772224,0.008096,0.004512,0.028352,54.2497,0.114624
+1001,17.3313,57.6992,55.3385,0.067744,0.923072,0.008064,0.0048,0.028672,54.1912,0.11488
+1002,17.3055,57.7852,54.9368,0.075776,0.872448,0.008192,0.0056,0.027168,53.8317,0.115936
+1003,17.3783,57.543,55.0743,0.067296,0.770336,0.008192,0.005632,0.028256,54.0799,0.114656
+1004,17.5139,57.0977,55.0197,0.067776,0.822656,0.008064,0.004768,0.028224,53.975,0.113216
+1005,17.2507,57.9688,55.2207,0.068096,0.88064,0.007712,0.004576,0.028672,54.1174,0.113632
+1006,17.5019,57.1367,55.0298,0.068928,0.836288,0.008192,0.004096,0.028672,53.9689,0.114688
+1007,17.2856,57.8516,55.4329,0.067584,0.876544,0.008192,0.005664,0.027104,54.3334,0.1144
+1008,17.4899,57.1758,54.9236,0.067968,0.798688,0.008192,0.005376,0.027392,53.9013,0.114688
+1009,17.3795,57.5391,54.9809,0.06912,0.797408,0.008192,0.006144,0.028384,53.9569,0.11472
+1010,16.9987,58.8281,55.3882,0.069344,0.885024,0.008192,0.0056,0.027168,54.2797,0.113088
+1011,17.3654,57.5859,55.1786,0.067968,0.827424,0.00816,0.00592,0.028256,54.1265,0.114432
+1012,17.4506,57.3047,55.0687,0.069472,0.779872,0.008032,0.004832,0.028064,54.0637,0.114688
+1013,17.5091,57.1133,54.9665,0.0672,0.79536,0.008192,0.006144,0.028128,53.9469,0.114528
+1014,17.4851,57.1914,54.9942,0.0696,0.794624,0.008224,0.004096,0.028672,53.973,0.115968
+1015,17.2321,58.0312,55.2965,0.068096,0.786464,0.008192,0.006144,0.027968,54.285,0.114656
+1016,17.2565,57.9492,55.1793,0.069632,0.80432,0.008064,0.004768,0.028032,54.1511,0.113312
+1017,17.2159,58.0859,55.253,0.0696,0.839712,0.008192,0.005472,0.027424,54.1879,0.114688
+1018,17.3689,57.5742,55.2707,0.069056,0.782944,0.00816,0.005344,0.027424,54.2638,0.11392
+1019,17.2553,57.9531,55.0068,0.06608,0.765024,0.007072,0.006144,0.028224,54.0197,0.114528
+1020,17.3771,57.5469,55.2444,0.068928,0.819904,0.008224,0.005312,0.027456,54.2002,0.114432
+1021,17.4162,57.418,55.0082,0.068032,0.7992,0.008192,0.006144,0.028,53.9839,0.114688
+1022,17.3748,57.5547,55.3206,0.067584,0.875712,0.008064,0.004928,0.027968,54.2216,0.114688
+1023,17.3972,57.4805,55.0924,0.069632,0.83552,0.008096,0.005472,0.027488,54.0318,0.114432
+1024,17.3654,57.5859,55.1919,0.067936,0.811008,0.00816,0.004128,0.02864,54.1591,0.11296
+1025,17.0929,58.5039,55.2944,0.068416,0.798624,0.008288,0.005632,0.028256,54.2709,0.11424
+1026,17.0883,58.5195,54.9704,0.069376,0.8232,0.008064,0.004576,0.028352,53.9221,0.11472
+1027,17.376,57.5508,55.124,0.068864,0.823264,0.007968,0.00512,0.02816,54.0759,0.114656
+1028,17.3336,57.6914,55.2698,0.068064,0.86752,0.008096,0.004992,0.028384,54.1781,0.114688
+1029,17.0803,58.5469,55.0425,0.068032,0.78832,0.008064,0.005504,0.027552,54.0304,0.114656
+1030,17.0974,58.4883,55.3611,0.068896,0.96496,0.006528,0.005728,0.031136,54.1695,0.1144
+1031,17.3595,57.6055,55.2904,0.06816,0.804864,0.008192,0.006144,0.028064,54.2603,0.114624
+1032,17.3313,57.6992,55.3529,0.068704,0.87488,0.008064,0.0048,0.028128,54.2539,0.114464
+1033,17.4446,57.3242,55.049,0.067456,0.816064,0.008192,0.005792,0.026976,54.0096,0.114912
+1034,16.9346,59.0508,55.4929,0.068192,0.86832,0.008192,0.004128,0.02864,54.4007,0.114688
+1035,17.4411,57.3359,55.1109,0.068608,0.826368,0.008192,0.005536,0.027232,54.0604,0.114528
+1036,17.3866,57.5156,55.1249,0.068544,0.837632,0.008192,0.0056,0.027168,54.0631,0.114688
+1037,17.5415,57.0078,54.8326,0.06944,0.813248,0.008192,0.005664,0.027104,53.7948,0.114144
+1038,17.3842,57.5234,55.0236,0.069632,0.890432,0.008096,0.00464,0.028096,53.9091,0.1136
+1039,17.1997,58.1406,55.0483,0.06896,0.778976,0.008192,0.006144,0.028,54.0433,0.114688
+1040,17.1824,58.1992,55.2934,0.06944,0.9136,0.008192,0.005728,0.028064,54.1541,0.114304
+1041,17.3277,57.7109,55.3595,0.068832,0.820032,0.00816,0.006144,0.028064,54.3153,0.11296
+1042,17.3113,57.7656,55.4588,0.069248,0.86672,0.00816,0.004224,0.028544,54.3679,0.11408
+1043,17.2891,57.8398,55.3395,0.068064,0.840992,0.008128,0.004896,0.028672,54.2753,0.11344
+1044,17.3548,57.6211,55.3001,0.068608,0.77472,0.008064,0.004672,0.028544,54.3026,0.112896
+1045,17.2182,58.0781,55.0057,0.068064,0.770048,0.008064,0.005504,0.027392,54.0119,0.114688
+1046,17.1421,58.3359,55.2509,0.069632,0.798272,0.008064,0.004672,0.02832,54.2273,0.114656
+1047,17.11,58.4453,55.1766,0.067584,0.874048,0.008032,0.004704,0.02864,54.0793,0.114272
+1048,17.3925,57.4961,55.259,0.06784,0.784384,0.008192,0.005504,0.027264,54.2515,0.114336
+1049,16.7309,59.7695,55.3841,0.068832,0.924448,0.008192,0.006144,0.030752,54.231,0.114688
+1050,17.4756,57.2227,55.1039,0.068032,0.822624,0.008064,0.004864,0.028096,54.0575,0.114688
+1051,17.3771,57.5469,55.0236,0.069632,0.908544,0.008128,0.004928,0.028512,53.8886,0.115232
+1052,16.8521,59.3398,55.1979,0.068,0.774144,0.008192,0.004224,0.028544,54.2003,0.114496
+1053,17.2891,57.8398,54.8774,0.069632,0.76992,0.008096,0.005504,0.027488,53.8808,0.115904
+1054,17.343,57.6602,55.0989,0.069536,0.834752,0.007072,0.005984,0.026784,54.0405,0.11424
+1055,17.3289,57.707,55.0464,0.06784,0.794624,0.00816,0.005504,0.027296,54.0283,0.114688
+1056,17.4162,57.418,55.081,0.069632,0.876544,0.008192,0.005248,0.02752,53.9806,0.113248
+1057,17.3195,57.7383,55.3326,0.069376,0.930144,0.00816,0.00592,0.026848,54.1778,0.114304
+1058,17.2495,57.9727,55.2346,0.069632,0.916736,0.008128,0.004864,0.027936,54.0926,0.114688
+1059,16.871,59.2734,55.445,0.069632,1.09357,0.009728,0.016256,0.027328,54.1143,0.114176
+1060,17.2309,58.0352,55.0755,0.06848,0.784384,0.008192,0.005664,0.027264,54.067,0.114496
+1061,17.2286,58.043,55.146,0.069632,0.875808,0.008064,0.00512,0.028416,54.0446,0.114336
+1062,17.3595,57.6055,55.1528,0.067744,0.81264,0.00848,0.004224,0.028544,54.1178,0.113376
+1063,17.1123,58.4375,55.4028,0.067904,1.02397,0.008064,0.016544,0.034112,54.1375,0.114688
+1064,16.9335,59.0547,55.1117,0.069664,0.865664,0.008096,0.0048,0.038752,54.0113,0.113472
+1065,17.2693,57.9062,55.0482,0.069632,0.825248,0.008064,0.005472,0.02752,53.9976,0.114688
+1066,16.7309,59.7695,54.981,0.068032,0.796608,0.008192,0.00576,0.027008,53.9587,0.116768
+1067,17.1032,58.4688,55.1649,0.069632,0.794176,0.008032,0.004736,0.02864,54.1462,0.113536
+1068,17.202,58.1328,55.401,0.068256,0.8408,0.01936,0.00608,0.028032,54.3239,0.11456
+1069,16.6949,59.8984,55.1035,0.069728,0.972192,0.008352,0.005472,0.027648,53.9054,0.114688
+1070,17.2623,57.9297,55.2678,0.068256,0.843392,0.008032,0.004672,0.02832,54.2007,0.114464
+1071,16.7441,59.7227,55.0239,0.06784,0.759808,0.008256,0.00608,0.028,54.0392,0.114688
+1072,17.3771,57.5469,55.1076,0.069536,0.7984,0.008608,0.01552,0.028576,54.0723,0.114688
+1073,17.1157,58.4258,55.3124,0.069024,0.760448,0.008096,0.005504,0.027456,54.3273,0.114624
+1074,17.0337,58.707,54.7826,0.068192,0.794624,0.008192,0.004096,0.028672,53.7654,0.113408
+1075,17.0009,58.8203,55.01,0.068288,0.859616,0.008032,0.004768,0.028672,53.9259,0.114688
+1076,17.1593,58.2773,55.0549,0.068352,0.789728,0.008032,0.005024,0.02816,54.0411,0.114496
+1077,17.0769,58.5586,55.1297,0.069312,0.802752,0.008096,0.004576,0.028672,54.1012,0.115104
+1078,17.2716,57.8984,55.0712,0.06848,0.863456,0.008032,0.005024,0.028288,53.9836,0.114336
+1079,17.3654,57.5859,55.0485,0.068096,0.800672,0.007936,0.004544,0.028672,54.0239,0.114624
+1080,16.9908,58.8555,55.2448,0.067584,0.77168,0.008096,0.004608,0.028224,54.2499,0.11472
+1081,17.3477,57.6445,55.5194,0.067744,0.978752,0.008096,0.005504,0.027552,54.3171,0.11472
+1082,17.1249,58.3945,55.3404,0.06864,0.88944,0.008096,0.004576,0.028288,54.2267,0.114624
+1083,17.2309,58.0352,55.1977,0.067584,0.753664,0.008128,0.005472,0.02736,54.2207,0.114752
+1084,17.0542,58.6367,54.9801,0.0696,0.779744,0.008128,0.004736,0.028128,53.975,0.11472
+1085,17.3172,57.7461,55.1588,0.0688,0.752448,0.008192,0.005824,0.028096,54.1807,0.11472
+1086,17.019,58.7578,54.968,0.068992,0.834208,0.008192,0.005632,0.027136,53.909,0.114816
+1087,17.1708,58.2383,55.175,0.069664,0.813024,0.008192,0.005824,0.028128,54.1352,0.114912
+1088,17.2484,57.9766,55.0051,0.079872,0.77744,0.008096,0.00496,0.028224,53.9919,0.114624
+1089,17.533,57.0352,55.0021,0.085184,0.768288,0.008064,0.004768,0.028672,53.9929,0.11424
+1090,16.7353,59.7539,55.0524,0.069024,0.82112,0.007104,0.005824,0.026944,54.0076,0.114816
+1091,17.3442,57.6562,55.0522,0.0696,0.881856,0.008064,0.01664,0.031456,53.93,0.114624
+1092,17.0826,58.5391,55.4598,0.068864,0.985856,0.008192,0.005696,0.027072,54.2495,0.114688
+1093,17.396,57.4844,54.7727,0.06848,0.79872,0.008192,0.0056,0.028224,53.7501,0.113344
+1094,16.7759,59.6094,55.1225,0.082272,0.87904,0.017568,0.004928,0.040896,53.9833,0.114528
+1095,17.2798,57.8711,55.2026,0.068448,0.821216,0.00816,0.005504,0.027296,54.1573,0.114688
+1096,17.4055,57.4531,55.0889,0.069664,0.757728,0.008192,0.005696,0.028704,54.1045,0.1144
+1097,17.2938,57.8242,55.2406,0.069088,0.770016,0.008128,0.004736,0.028544,54.2455,0.11456
+1098,17.3324,57.6953,54.8803,0.068352,0.856064,0.008192,0.004224,0.038784,53.79,0.114752
+1099,17.4351,57.3555,54.9462,0.067168,0.748416,0.00816,0.005696,0.028096,53.974,0.114688
+1100,17.118,58.418,55.0199,0.067072,0.835648,0.008128,0.004992,0.028672,53.9607,0.114688
+1101,17.2705,57.9023,54.8474,0.069504,0.753792,0.008192,0.005856,0.028064,53.8674,0.114624
+1102,17.2542,57.957,55.0769,0.069024,0.829888,0.008064,0.004384,0.028352,54.0237,0.113504
+1103,17.2263,58.0508,55.1199,0.069248,0.806688,0.008032,0.004864,0.028416,54.0891,0.113536
+1104,17.3866,57.5156,55.0568,0.066976,0.75264,0.007808,0.00448,0.02832,54.0819,0.11472
+1105,17.019,58.7578,55.2483,0.06864,0.869376,0.00816,0.006144,0.028128,54.153,0.114784
+1106,17.2542,57.957,54.8762,0.067808,0.771168,0.008032,0.00496,0.02816,53.8815,0.11456
+1107,17.0621,58.6094,55.0265,0.067456,0.757728,0.007104,0.006144,0.028512,54.0448,0.11472
+1108,17.4244,57.3906,54.8691,0.068704,0.82016,0.00816,0.004096,0.028672,53.8235,0.115776
+1109,17.4446,57.3242,54.9581,0.071328,0.768352,0.008192,0.006144,0.027968,53.9614,0.114688
+1110,17.0043,58.8086,55.1432,0.068384,0.786144,0.008064,0.004512,0.028,54.1332,0.114848
+1111,17.5306,57.043,54.974,0.067584,0.843776,0.008192,0.005632,0.045568,53.889,0.114208
+1112,17.309,57.7734,55.2646,0.069664,0.843776,0.00816,0.005856,0.027968,54.1947,0.114496
+1113,17.3301,57.7031,55.1671,0.06912,0.778912,0.008192,0.006016,0.028032,54.1622,0.114688
+1114,17.2251,58.0547,55.2353,0.068384,0.957664,0.017152,0.004128,0.02864,54.0457,0.113632
+1115,17.1444,58.3281,55.2881,0.067872,0.910432,0.007072,0.006144,0.028384,54.1535,0.114688
+1116,17.3783,57.543,55.2919,0.069344,0.800256,0.008064,0.00496,0.028384,54.2662,0.11472
+1117,17.4316,57.3672,55.0237,0.067392,0.75936,0.008,0.005024,0.028448,54.0419,0.1136
+1118,17.0689,58.5859,55.2854,0.06832,0.956384,0.008192,0.005152,0.027616,54.1041,0.115712
+1119,17.0349,58.7031,55.4186,0.073216,0.930304,0.008192,0.016384,0.028672,54.2471,0.11472
+1120,17.3418,57.6641,55.1916,0.069632,0.80896,0.008192,0.005248,0.02752,54.1583,0.113664
+1121,17.1032,58.4688,55.1388,0.069536,0.852096,0.008032,0.004768,0.028672,54.0611,0.114688
+1122,17.3324,57.6953,55.0605,0.068864,0.753696,0.008032,0.004928,0.028064,54.0837,0.113184
+1123,17.4268,57.3828,55.1841,0.068352,0.843744,0.008064,0.005504,0.027424,54.1164,0.114688
+1124,17.2391,58.0078,55.04,0.067584,0.781984,0.008032,0.004608,0.028416,54.0347,0.114688
+1125,17.2344,58.0234,55.0307,0.068256,0.759744,0.008064,0.004512,0.028672,54.0467,0.114688
+1126,17.2763,57.8828,55.1775,0.067936,0.782368,0.00816,0.004192,0.028576,54.1714,0.114816
+1127,17.3842,57.5234,55.0892,0.069344,0.815392,0.008192,0.006144,0.028064,54.0484,0.113568
+1128,17.3889,57.5078,55.1877,0.068864,0.774144,0.008192,0.004928,0.028064,54.1899,0.113632
+1129,17.2182,58.0781,54.937,0.067968,0.81488,0.008064,0.005504,0.027584,53.8972,0.115744
+1130,17.4387,57.3438,55.0344,0.068096,0.772096,0.00832,0.00576,0.028064,54.0373,0.114688
+1131,17.126,58.3906,55.0075,0.068448,0.841632,0.008096,0.005472,0.027488,53.9419,0.114528
+1132,17.3937,57.4922,55.1817,0.067936,0.77824,0.008288,0.005728,0.026944,54.1798,0.114688
+1133,17.3184,57.7422,55.124,0.067712,0.87408,0.008064,0.004512,0.028672,54.0276,0.113376
+1134,17.172,58.2344,54.8453,0.067488,0.755712,0.008192,0.005632,0.027168,53.8665,0.114688
+1135,17.3559,57.6172,55.3533,0.067648,0.782272,0.008448,0.005728,0.028288,54.3465,0.114368
+1136,17.4221,57.3984,55.0628,0.067808,0.78352,0.007008,0.005376,0.027392,54.0582,0.113408
+1137,17.3819,57.5312,54.9359,0.074112,0.806912,0.00816,0.005504,0.027296,53.8993,0.114688
+1138,17.4553,57.2891,54.8374,0.067168,0.791136,0.00816,0.005152,0.027648,53.8235,0.114688
+1139,17.202,58.1328,55.2933,0.06912,0.829216,0.008032,0.004992,0.028352,54.2388,0.114752
+1140,17.3937,57.4922,55.2477,0.06848,0.765184,0.008064,0.004864,0.027968,54.2584,0.114784
+1141,17.288,57.8438,55.1899,0.068032,0.794656,0.00816,0.006016,0.02816,54.1702,0.114592
+1142,17.2623,57.9297,55.1377,0.069632,0.800768,0.009216,0.00496,0.028032,54.1103,0.114752
+1143,17.246,57.9844,55.0298,0.079072,0.74832,0.008192,0.006144,0.02816,54.0452,0.11472
+1144,17.4173,57.4141,55.1928,0.069312,0.79904,0.009376,0.004896,0.02816,54.1661,0.115904
+1145,16.9716,58.9219,54.9756,0.06768,0.789568,0.007104,0.006144,0.028576,53.9624,0.114176
+1146,17.4079,57.4453,55.0974,0.069664,0.86128,0.00816,0.004896,0.027808,54.0108,0.11472
+1147,17.302,57.7969,55.0502,0.06944,0.798912,0.008192,0.005664,0.027104,54.0262,0.114656
+1148,17.3654,57.5859,55.3329,0.067488,0.89856,0.008096,0.0048,0.027936,54.2113,0.114688
+1149,17.2391,58.0078,55.0502,0.067456,0.757888,0.008192,0.00592,0.02816,54.0676,0.11504
+1150,17.1927,58.1641,54.8062,0.069408,0.79728,0.008032,0.004288,0.028384,53.7849,0.113952
+1151,17.4268,57.3828,55.0211,0.06928,0.784192,0.008064,0.005056,0.028704,54.0118,0.113984
+1152,17.0621,58.6094,55.2596,0.068448,0.763648,0.008096,0.004448,0.02848,54.2716,0.11488
+1153,17.453,57.2969,55.0769,0.067392,0.77168,0.008096,0.004832,0.028608,54.0816,0.114688
+1154,17.267,57.9141,55.2381,0.069184,0.872128,0.008064,0.005024,0.028064,54.1415,0.114112
+1155,17.3465,57.6484,55.2714,0.06928,0.754016,0.008192,0.00592,0.028128,54.2912,0.114656
+1156,17.3819,57.5312,55.1793,0.069152,0.84016,0.008192,0.005248,0.02752,54.1156,0.113376
+1157,17.3465,57.6484,55.1014,0.069504,0.878528,0.008096,0.005472,0.027584,53.9976,0.114688
+1158,17.3348,57.6875,55.2248,0.068032,0.888032,0.008032,0.004928,0.028032,54.1143,0.113408
+1159,17.3418,57.6641,55.3483,0.067584,0.784384,0.008192,0.006144,0.027936,54.3396,0.114464
+1160,17.4339,57.3594,55.097,0.069632,0.96256,0.008192,0.005312,0.027456,53.9087,0.115168
+1161,17.4055,57.4531,55.1844,0.066528,0.787872,0.008064,0.004832,0.028704,54.1735,0.114848
+1162,17.4339,57.3594,55.0871,0.067616,0.777824,0.008064,0.00464,0.028352,54.086,0.114688
+1163,17.253,57.9609,55.1478,0.069632,0.827168,0.008064,0.005472,0.027648,54.0956,0.114272
+1164,17.2856,57.8516,55.3097,0.06768,0.84592,0.008096,0.004256,0.02864,54.2405,0.114624
+1165,17.3371,57.6797,55.1937,0.069632,0.78192,0.008064,0.00464,0.028672,54.186,0.114784
+1166,17.274,57.8906,55.2182,0.069152,0.980608,0.008128,0.005024,0.04464,53.996,0.114656
+1167,17.3324,57.6953,55.2444,0.068928,0.831456,0.008224,0.016576,0.028608,54.1756,0.11504
+1168,17.4363,57.3516,55.1363,0.068928,0.870912,0.006336,0.006144,0.027808,54.0415,0.114656
+1169,17.3512,57.6328,55.2366,0.067712,0.866528,0.008192,0.005856,0.027968,54.146,0.114336
+1170,17.3819,57.5312,54.9462,0.068448,0.75104,0.008096,0.004832,0.028128,53.971,0.114656
+1171,17.172,58.2344,55.0228,0.067616,0.810976,0.008192,0.005472,0.027296,53.9891,0.114208
+1172,17.4506,57.3047,55.0981,0.068384,0.782336,0.008192,0.005696,0.027072,54.093,0.113472
+1173,17.3442,57.6562,55.1977,0.073728,1.00083,0.008096,0.004832,0.028064,53.9675,0.11472
+1174,17.3677,57.5781,55.1178,0.06896,0.937952,0.008064,0.014912,0.035104,53.9381,0.114688
+1175,17.4553,57.2891,55.004,0.06768,0.85072,0.00784,0.005504,0.027584,53.93,0.11472
+1176,17.3913,57.5,55.2424,0.06736,0.858624,0.008192,0.014336,0.028672,54.1512,0.114016
+1177,17.2833,57.8594,55.2885,0.068256,0.843776,0.008032,0.005504,0.027424,54.2208,0.114688
+1178,17.2321,58.0312,55.1261,0.067872,0.87568,0.007008,0.005856,0.028,54.0272,0.114496
+1179,17.4031,57.4609,55.2248,0.067968,0.782752,0.008192,0.005504,0.027264,54.2186,0.114528
+1180,17.0621,58.6094,55.2832,0.069216,0.801184,0.008192,0.00576,0.028192,54.2565,0.114208
+1181,17.3324,57.6953,55.088,0.068512,0.788448,0.008192,0.005632,0.028224,54.0743,0.114688
+1182,17.527,57.0547,54.9348,0.079872,0.792576,0.008192,0.005312,0.027456,53.9069,0.114432
+1183,17.4008,57.4688,54.8476,0.068416,0.874432,0.008064,0.005504,0.02752,53.7498,0.113952
+1184,17.2973,57.8125,55.2223,0.069632,1.04758,0.007136,0.005216,0.027552,53.9505,0.11472
+1185,17.3984,57.4766,55.38,0.06752,0.763904,0.008192,0.005504,0.027328,54.3928,0.114688
+1186,17.2856,57.8516,55.2569,0.067648,0.78368,0.008064,0.004896,0.028,54.2502,0.1144
+1187,17.3748,57.5547,54.834,0.068448,0.862048,0.008128,0.005504,0.027456,53.7477,0.114688
+1188,17.3937,57.4922,55.2308,0.066528,0.784192,0.008096,0.004384,0.028672,54.2228,0.116128
+1189,17.3724,57.5625,55.3061,0.06912,0.801696,0.00816,0.006144,0.028,54.2778,0.115168
+1190,17.2275,58.0469,55.3036,0.068864,0.898944,0.008096,0.004928,0.027968,54.1804,0.114368
+1191,17.4601,57.2734,54.9929,0.068768,0.82416,0.008192,0.00608,0.028096,53.9449,0.112672
+1192,17.4126,57.4297,55.0298,0.069024,0.782944,0.008192,0.004096,0.028704,54.0221,0.11472
+1193,17.2275,58.0469,55.3937,0.069632,0.876576,0.00816,0.00576,0.028032,54.2912,0.114336
+1194,17.316,57.75,55.2735,0.069632,0.80896,0.008192,0.00544,0.027328,54.2392,0.114688
+1195,17.1352,58.3594,55.1547,0.069344,0.872768,0.00816,0.005664,0.028128,54.0559,0.114688
+1196,17.4577,57.2812,54.984,0.069056,0.7768,0.008192,0.005344,0.027424,53.9827,0.114496
+1197,17.4363,57.3516,54.9462,0.06736,0.835648,0.008064,0.004992,0.02864,53.887,0.114496
+1198,17.4268,57.3828,55.2094,0.067584,0.7896,0.008192,0.004864,0.028416,54.1946,0.116192
+1199,17.472,57.2344,55.0461,0.068832,0.831456,0.00816,0.004992,0.028672,53.9873,0.11664
+1200,17.3395,57.6719,55.3446,0.068896,0.875328,0.008192,0.004096,0.028672,54.2433,0.116064
+1201,17.4055,57.4531,55.0366,0.06832,0.838816,0.008256,0.004864,0.028704,53.9727,0.114976
+1202,17.3442,57.6562,55.1178,0.069312,0.928064,0.008224,0.005824,0.02848,53.9632,0.114688
+1203,17.0145,58.7734,54.967,0.068224,0.759936,0.008192,0.005984,0.028288,53.9812,0.115264
+1204,17.3913,57.5,55.1043,0.068384,0.858112,0.018432,0.005696,0.028384,54.0106,0.11472
+1205,17.3489,57.6406,55.0297,0.072864,0.823424,0.008736,0.005568,0.02736,53.9771,0.114688
+1206,17.302,57.7969,55.4086,0.067584,1.11821,0.008192,0.016192,0.038848,54.0449,0.114688
+1207,17.2367,58.0156,55.2817,0.068992,0.795264,0.008192,0.005632,0.02832,54.2603,0.114944
+1208,17.3842,57.5234,54.7615,0.067552,0.761888,0.008288,0.00576,0.028256,53.7742,0.115488
+1209,17.1467,58.3203,55.088,0.068512,0.835616,0.00944,0.004864,0.03072,54.0236,0.115232
+1210,17.1169,58.4219,55.3595,0.069184,0.944576,0.008192,0.005216,0.027552,54.1901,0.114688
+1211,17.415,57.4219,55.0209,0.068992,0.832128,0.008192,0.006144,0.028576,53.9608,0.116032
+1212,17.4244,57.3906,55.1035,0.067616,0.78032,0.009152,0.004896,0.028416,54.0984,0.114688
+1213,17.1283,58.3828,55.0999,0.068224,0.831328,0.008192,0.006144,0.02864,54.0437,0.1136
+1214,17.4126,57.4297,55.2332,0.068224,0.771744,0.00816,0.00448,0.028608,54.2368,0.115168
+1215,17.4434,57.3281,55.0174,0.067552,0.790432,0.00816,0.005568,0.027328,54.0037,0.114688
+1216,17.1628,58.2656,55.0812,0.067776,0.9216,0.008192,0.005376,0.027456,53.9361,0.114688
+1217,17.3489,57.6406,55.2146,0.06912,0.783008,0.00816,0.005568,0.027584,54.2058,0.11536
+1218,17.3512,57.6328,55.3713,0.067584,0.777376,0.00816,0.004896,0.02832,54.3701,0.114848
+1219,17.3536,57.625,55.2794,0.068416,0.927712,0.008192,0.006144,0.028704,54.126,0.114304
+1220,17.295,57.8203,55.2313,0.068416,0.826912,0.008672,0.004096,0.028672,54.1809,0.1136
+1221,17.4197,57.4062,55.1506,0.068992,0.772768,0.00816,0.006112,0.028416,54.1506,0.115552
+1222,17.3277,57.7109,55.2325,0.068672,0.865216,0.008192,0.005472,0.027328,54.1423,0.115264
+1223,17.2786,57.875,55.2254,0.067584,0.83968,0.008192,0.005632,0.028288,54.1613,0.11472
+1224,17.3937,57.4922,55.0216,0.069216,0.767616,0.008128,0.004928,0.028608,54.0283,0.114784
+1225,17.3889,57.5078,55.1441,0.069344,0.809248,0.008192,0.006144,0.028608,54.1062,0.11632
+1226,17.4102,57.4375,55.0185,0.068608,0.823136,0.008352,0.005344,0.027424,53.9722,0.113408
+1227,16.9424,59.0234,55.055,0.068224,0.778208,0.00816,0.005536,0.027328,54.0523,0.115264
+1228,17.4935,57.1641,55.0092,0.069472,0.777504,0.00816,0.004928,0.02848,54.006,0.114688
+1229,17.4672,57.25,54.9806,0.067584,0.782368,0.009728,0.004576,0.028672,53.974,0.113696
+1230,17.3137,57.7578,55.3401,0.067584,0.81312,0.008128,0.005888,0.028192,54.3014,0.115744
+1231,17.295,57.8203,55.346,0.068512,0.836704,0.00816,0.005024,0.028704,54.2843,0.114688
+1232,17.3559,57.6172,55.1539,0.067168,0.806944,0.00816,0.004672,0.028672,54.1225,0.115776
+1233,17.1674,58.25,55.1363,0.0696,0.91136,0.008192,0.005792,0.028256,53.9983,0.11472
+1234,17.1398,58.3438,55.4033,0.068352,0.905216,0.008192,0.005216,0.027552,54.274,0.114688
+1235,17.3795,57.5391,55.0469,0.068352,0.954368,0.008192,0.005728,0.02848,53.8671,0.11472
+1236,17.149,58.3125,55.4915,0.068512,0.8744,0.00816,0.004224,0.028704,54.3928,0.114688
+1237,17.0439,58.6719,55.1457,0.0696,0.888032,0.00816,0.004928,0.028672,54.0322,0.11408
+1238,17.2066,58.1172,55.2531,0.068992,0.815456,0.00816,0.00448,0.028672,54.2126,0.114688
+1239,17.309,57.7734,55.1014,0.067552,0.769344,0.00816,0.004832,0.028704,54.1076,0.115264
+1240,17.396,57.4844,55.0945,0.069312,0.77856,0.008192,0.00608,0.028384,54.0881,0.115936
+1241,17.3113,57.7656,55.1896,0.069184,0.815744,0.008192,0.005536,0.027232,54.1471,0.116672
+1242,17.1306,58.375,55.4097,0.075808,1.10794,0.008192,0.014432,0.028704,54.0589,0.115744
+1243,17.3606,57.6016,55.3823,0.06768,0.929408,0.008128,0.005024,0.028672,54.2281,0.115296
+1244,17.4268,57.3828,54.9599,0.069056,0.805792,0.008192,0.00528,0.029088,53.9277,0.114752
+1245,17.4055,57.4531,55.2942,0.06944,0.821696,0.006592,0.006144,0.028608,54.2465,0.1152
+1246,17.396,57.4844,55.0461,0.0696,0.814464,0.00816,0.0048,0.028416,54.005,0.115712
+1247,17.4126,57.4297,55.1921,0.068288,0.790336,0.008192,0.005824,0.02832,54.1763,0.114848
+1248,17.3606,57.6016,55.0424,0.06912,0.883008,0.00816,0.004704,0.028704,53.934,0.114688
+1249,17.2716,57.8984,54.9274,0.06896,0.78096,0.008192,0.006144,0.028512,53.919,0.115552
+1250,17.4983,57.1484,55.1017,0.069504,0.816704,0.00816,0.004896,0.028352,54.0594,0.11472
+1251,17.316,57.75,55.1492,0.068224,0.88416,0.00816,0.004672,0.028672,54.0406,0.114688
+1252,17.3395,57.6719,55.1049,0.069664,0.847872,0.00816,0.00544,0.028352,54.0306,0.114784
+1253,17.4434,57.3281,54.9854,0.068384,0.802976,0.008192,0.005952,0.028448,53.9567,0.114752
+1254,17.5366,57.0234,54.9014,0.067552,0.795328,0.008192,0.004096,0.028672,53.8829,0.114656
+1255,17.2507,57.9688,55.0704,0.067616,0.79664,0.008192,0.005632,0.028224,54.049,0.115136
+1256,17.2414,58,55.0087,0.069216,0.776992,0.008192,0.005408,0.02848,54.006,0.114432
+1257,17.3677,57.5781,55.2958,0.068928,0.879296,0.00816,0.006144,0.028608,54.1892,0.115392
+1258,17.1306,58.375,55.061,0.068096,0.84496,0.00816,0.004896,0.028256,53.9919,0.114752
+1259,17.4221,57.3984,55.1846,0.069664,0.763872,0.008192,0.006144,0.028256,54.1937,0.114752
+1260,17.1329,58.3672,55.2174,0.069632,0.851968,0.008192,0.004096,0.028672,54.1389,0.115968
+1261,17.1352,58.3594,55.1683,0.069632,0.794496,0.008192,0.005568,0.028352,54.146,0.116
+1262,16.9987,58.8281,55.0707,0.06768,0.757856,0.00816,0.004704,0.028416,54.0875,0.116384
+1263,17.3371,57.6797,55.1627,0.068128,0.794592,0.008192,0.0056,0.028192,54.142,0.116032
+1264,17.0326,58.7109,55.3937,0.069408,0.88496,0.008192,0.004096,0.028672,54.2837,0.114656
+1265,17.1146,58.4297,55.3391,0.06768,0.846976,0.01936,0.006112,0.02864,54.2554,0.114944
+1266,17.4792,57.2109,55.0378,0.069664,0.753408,0.008288,0.004224,0.028672,54.0583,0.115264
+1267,17.0621,58.6094,55.3043,0.06928,0.812928,0.00816,0.020992,0.036064,54.2421,0.114784
+1268,17.363,57.5938,55.1522,0.06784,0.900352,0.017152,0.005728,0.02832,54.0168,0.116032
+1269,17.0986,58.4844,55.3591,0.068192,0.792032,0.008128,0.004704,0.028672,54.3416,0.115712
+1270,17.2716,57.8984,55.1502,0.0696,0.835584,0.008192,0.005536,0.028384,54.0877,0.115232
+1271,17.453,57.2969,54.7654,0.069632,0.776224,0.00816,0.006144,0.028672,53.7618,0.114752
+1272,17.3771,57.5469,55.1424,0.069536,0.806976,0.008192,0.00416,0.028672,54.11,0.114912
+1273,17.1306,58.375,55.0934,0.068864,0.774752,0.00816,0.005536,0.027616,54.0938,0.114688
+1274,17.3324,57.6953,55.0306,0.067872,0.786976,0.008192,0.005664,0.044928,54.0021,0.114816
+1275,17.0553,58.6328,55.2632,0.085888,0.829344,0.008224,0.005568,0.027392,54.1921,0.114688
+1276,17.2646,57.9219,55.0971,0.0696,0.841536,0.008192,0.00432,0.028672,54.0283,0.116512
+1277,17.3254,57.7188,55.2831,0.07536,0.801216,0.00816,0.005568,0.027488,54.2495,0.115872
+1278,17.172,58.2344,55.2336,0.069632,0.851968,0.008192,0.005856,0.028384,54.1555,0.114112
+1279,17.0462,58.6641,54.9548,0.068416,0.815008,0.008256,0.005824,0.028768,53.9138,0.114688
+1280,17.0849,58.5312,55.2785,0.068448,0.857984,0.020032,0.004704,0.02864,54.1778,0.120864
+1281,17.0872,58.5234,55.121,0.069504,0.755616,0.00816,0.005536,0.027456,54.1389,0.115808
+1282,16.9649,58.9453,55.253,0.069472,0.910496,0.017376,0.005888,0.028416,54.1066,0.114752
+1283,17.2066,58.1172,55.4043,0.067616,0.75536,0.00816,0.005536,0.027616,54.4247,0.11536
+1284,17.0621,58.6094,55.4614,0.085888,1.12448,0.018432,0.006144,0.028704,54.0827,0.115072
+1285,17.4601,57.2734,55.118,0.06752,0.808448,0.008128,0.00496,0.028704,54.0848,0.115456
+1286,17.3113,57.7656,55.079,0.06768,0.771808,0.008192,0.004352,0.028672,54.0832,0.115104
+1287,17.3418,57.6641,55.2579,0.067616,0.778656,0.008192,0.005536,0.027584,54.2551,0.115136
+1288,16.7474,59.7109,55.3644,0.068448,1.19398,0.008192,0.005568,0.028512,53.9451,0.114688
+1289,17.1123,58.4375,55.2758,0.067648,0.778464,0.008192,0.005568,0.028512,54.2722,0.1152
+1290,16.7058,59.8594,55.2673,0.068768,0.856928,0.008192,0.005504,0.028384,54.1846,0.114944
+1291,17.2136,58.0938,55.0286,0.068512,0.780192,0.008256,0.005536,0.02848,54.0126,0.124992
+1292,17.3984,57.4766,55.1011,0.069152,0.790848,0.008224,0.004544,0.028672,54.0836,0.116032
+1293,17.4102,57.4375,55.1035,0.0696,0.798528,0.008064,0.005568,0.02752,54.0795,0.114688
+1294,16.6949,59.8984,55.1732,0.068544,0.862176,0.01808,0.004448,0.028672,54.0754,0.115936
+1295,17.2066,58.1172,55.1116,0.0696,0.948,0.00816,0.016224,0.036736,53.9182,0.114688
+1296,17.0077,58.7969,55.052,0.069472,0.805024,0.024576,0.004288,0.02848,54.0054,0.114752
+1297,17.2159,58.0859,55.2857,0.068256,0.767648,0.007936,0.004672,0.028672,54.2925,0.116
+1298,17.0168,58.7656,55.0444,0.068416,0.75344,0.00816,0.004352,0.028672,54.0665,0.114912
+1299,17.1215,58.4062,55.5297,0.06784,1.16278,0.00816,0.004608,0.028704,54.1429,0.114656
+1300,17.2833,57.8594,55.3349,0.067584,0.851424,0.00816,0.004672,0.028672,54.2597,0.114688
+1301,17.2763,57.8828,55.1076,0.068672,0.754176,0.00816,0.004608,0.028672,54.1281,0.115168
+1302,17.2414,58,55.3695,0.067552,0.9704,0.00816,0.00448,0.04304,54.1605,0.11536
+1303,17.0621,58.6094,55.1588,0.069632,0.790208,0.008128,0.005568,0.027616,54.1409,0.116736
+1304,17.453,57.2969,54.957,0.068352,0.792,0.00816,0.004896,0.02848,53.9384,0.116736
+1305,17.0712,58.5781,55.1421,0.069024,0.868736,0.00816,0.005568,0.027456,54.0467,0.116448
+1306,17.281,57.8672,55.3697,0.069248,0.792992,0.00816,0.005792,0.028384,54.3503,0.114816
+1307,17.0895,58.5156,55.086,0.068608,0.841696,0.008192,0.006144,0.028608,54.0181,0.114688
+1308,17.2321,58.0312,55.324,0.068832,0.782272,0.007168,0.005728,0.028416,54.3167,0.114848
+1309,17.2321,58.0312,55.087,0.069632,0.795872,0.008128,0.004992,0.028672,54.0645,0.115168
+1310,17.2228,58.0625,55.1692,0.068832,1.01651,0.008288,0.004352,0.02864,53.9279,0.114688
+1311,17.5439,57,54.8823,0.066272,0.748544,0.008256,0.005056,0.028672,53.9095,0.116032
+1312,16.9044,59.1562,55.3126,0.069024,0.803584,0.008224,0.00416,0.028672,54.2842,0.114784
+1313,17.0032,58.8125,55.2202,0.06928,0.909632,0.008192,0.005696,0.028352,54.0844,0.114688
+1314,17.415,57.4219,54.9162,0.0696,0.759808,0.008192,0.004096,0.028672,53.9316,0.114144
+1315,17.3583,57.6094,54.9987,0.067328,0.838464,0.008192,0.006144,0.028288,53.9345,0.11584
+1316,17.1352,58.3594,55.4636,0.068256,1.03421,0.008192,0.014336,0.028672,54.1942,0.115776
+1317,17.26,57.9375,55.4035,0.067936,0.764192,0.00816,0.005536,0.027616,54.4072,0.12288
+1318,17.3395,57.6719,55.2889,0.06928,0.880064,0.00816,0.004896,0.028288,54.1824,0.115744
+1319,17.2507,57.9688,55.4644,0.06768,0.872032,0.007168,0.006144,0.028704,54.3676,0.11504
+1320,17.3512,57.6328,55.2591,0.069376,0.812544,0.0192,0.006144,0.036256,54.2007,0.114944
+1321,17.1146,58.4297,55.2297,0.067232,0.82912,0.00816,0.004928,0.028704,54.1757,0.115904
+1322,17.3913,57.5,55.1186,0.06848,1.04784,0.008832,0.004192,0.028672,53.8459,0.114752
+1323,17.4173,57.4141,55.2719,0.068064,0.75776,0.008192,0.00592,0.028384,54.2887,0.114912
+1324,17.1904,58.1719,55.3144,0.069216,0.990752,0.008192,0.015232,0.028672,54.0875,0.114848
+1325,17.3606,57.6016,55.3807,0.068448,0.800352,0.008416,0.005568,0.028576,54.3527,0.116576
+1326,17.3583,57.6094,55.2609,0.067488,0.794208,0.008192,0.004768,0.028384,54.2428,0.115072
+1327,17.316,57.75,55.1962,0.068192,0.816384,0.00816,0.004864,0.028672,54.1546,0.115328
+1328,17.2344,58.0234,55.2247,0.06736,0.913216,0.00816,0.004768,0.028448,54.0879,0.114848
+1329,17.3184,57.7422,55.3619,0.067968,0.808576,0.00816,0.005568,0.027648,54.3292,0.114848
+1330,17.2414,58,55.379,0.069632,1.10387,0.02048,0.006144,0.028256,54.0363,0.114368
+1331,17.3324,57.6953,55.1692,0.068832,0.837664,0.008128,0.005088,0.028672,54.1061,0.114688
+1332,17.2136,58.0938,55.3562,0.068192,0.84592,0.008192,0.004224,0.028704,54.2863,0.114688
+1333,17.1352,58.3594,55.2735,0.069664,0.927648,0.00816,0.005568,0.028352,54.1194,0.11472
+1334,17.2066,58.1172,55.2714,0.069664,0.829408,0.00816,0.00416,0.02864,54.2166,0.114784
+1335,17.2321,58.0312,55.1301,0.069248,0.778624,0.008192,0.005888,0.028896,54.124,0.115296
+1336,17.0872,58.5234,55.2689,0.06784,0.995232,0.008192,0.004192,0.028704,54.0487,0.116
+1337,17.3842,57.5234,55.1671,0.06784,0.765952,0.00816,0.006144,0.028672,54.1756,0.114752
+1338,16.9022,59.1641,55.3923,0.069664,0.849888,0.008192,0.004096,0.028704,54.317,0.11472
+1339,17.2298,58.0391,55.3818,0.068864,0.824192,0.008192,0.00608,0.02832,54.3318,0.114304
+1340,17.2903,57.8359,55.2592,0.069376,0.765696,0.008192,0.004576,0.02848,54.2681,0.114784
+1341,17.3606,57.6016,55.2736,0.067936,0.946208,0.008192,0.005632,0.028608,54.102,0.11504
+1342,17.2903,57.8359,55.0885,0.069312,0.856384,0.01984,0.004736,0.02848,53.9937,0.116064
+1343,17.3866,57.5156,55.2854,0.067616,0.776192,0.008192,0.006144,0.028352,54.2826,0.116352
+1344,17.2926,57.8281,55.4922,0.067744,0.988768,0.008288,0.014656,0.029824,54.2686,0.114304
+1345,17.3489,57.6406,55.0917,0.068448,0.910688,0.006816,0.006112,0.02832,53.956,0.115264
+1346,17.1444,58.3281,55.2501,0.067456,0.768128,0.008224,0.005824,0.028288,54.2563,0.115904
+1347,17.3842,57.5234,55.1931,0.069504,0.77744,0.00848,0.004704,0.028672,54.188,0.116224
+1348,17.281,57.8672,55.3328,0.069568,0.82752,0.008192,0.005728,0.028352,54.2782,0.115232
+1349,17.3277,57.7109,55.2465,0.068,0.796608,0.008256,0.005568,0.028352,54.2249,0.114784
+1350,17.1674,58.25,54.8987,0.067296,0.76624,0.008192,0.005312,0.027456,53.9092,0.114944
+1351,17.4959,57.1562,54.9358,0.06784,0.825344,0.009504,0.004832,0.028672,53.8849,0.114688
+1352,17.3067,57.7812,55.0724,0.067744,0.841728,0.008192,0.00544,0.02736,54.0057,0.116256
+1353,17.3418,57.6641,55.1506,0.06864,0.766976,0.008192,0.006144,0.028416,54.1576,0.114688
+1354,16.8865,59.2188,55.2673,0.067648,0.870336,0.008192,0.005312,0.027456,54.1737,0.114688
+1355,17.2786,57.875,55.2247,0.068256,0.786432,0.008224,0.00592,0.028256,54.2124,0.1152
+1356,17.1974,58.1484,55.3504,0.068608,0.784416,0.00816,0.00496,0.028512,54.3409,0.114848
+1357,17.267,57.9141,55.1942,0.068224,0.778176,0.00816,0.005568,0.028416,54.1904,0.115264
+1358,17.3606,57.6016,55.0134,0.067584,0.772096,0.008096,0.004192,0.028672,54.018,0.11472
+1359,17.0644,58.6016,55.1271,0.069632,0.83904,0.008192,0.004736,0.028704,54.0606,0.11616
+1360,17.0598,58.6172,55.3286,0.068192,0.905184,0.008192,0.004096,0.028672,54.1983,0.116032
+1361,17.1444,58.3281,55.5956,0.069312,0.830336,0.00816,0.00592,0.028192,54.5389,0.114752
+1362,17.2159,58.0859,55.3771,0.06928,0.825792,0.008224,0.004064,0.028672,54.3252,0.11584
+1363,17.3701,57.5703,55.0054,0.06912,0.799488,0.008192,0.006016,0.02832,53.9796,0.114688
+1364,17.3677,57.5781,55.1518,0.069312,0.803136,0.008192,0.005312,0.027488,54.1225,0.115904
+1365,17.1352,58.3594,55.5617,0.069536,0.875808,0.008192,0.004928,0.028672,54.4584,0.116224
+1366,17.302,57.7969,55.4086,0.0696,0.869792,0.00816,0.004768,0.02864,54.3126,0.115072
+1367,17.2646,57.9219,55.5108,0.069408,0.87472,0.008192,0.006048,0.028288,54.4091,0.11504
+1368,17.274,57.8906,55.4284,0.067584,0.83968,0.008192,0.005216,0.027552,54.3654,0.114752
+1369,17.3418,57.6641,55.2038,0.067584,0.786144,0.008192,0.005568,0.027488,54.1942,0.114688
+1370,17.3395,57.6719,55.1035,0.067616,0.790304,0.008256,0.004224,0.028704,54.0897,0.11472
+1371,16.8156,59.4688,55.4065,0.068416,0.794656,0.00816,0.006048,0.028192,54.3852,0.115808
+1372,17.3067,57.7812,55.2735,0.068768,0.895456,0.008384,0.004288,0.02864,54.1532,0.11472
+1373,17.126,58.3906,55.2532,0.068128,0.81264,0.008224,0.015776,0.033344,54.1987,0.116352
+1374,17.1375,58.3516,54.9808,0.069216,0.828128,0.008192,0.005696,0.02848,53.9265,0.114592
+1375,17.2321,58.0312,55.3576,0.06752,0.77568,0.008128,0.004992,0.028704,54.3579,0.114752
+1376,17.4649,57.2578,55.1874,0.067584,0.78848,0.008192,0.005856,0.028416,54.1733,0.115552
+1377,17.3536,57.625,55.3362,0.073504,0.992544,0.017312,0.006016,0.028384,54.1044,0.114016
+1378,17.4126,57.4297,55.1915,0.067552,0.784384,0.008192,0.005216,0.027584,54.1839,0.114688
+1379,17.3465,57.6484,55.2031,0.067616,0.941792,0.008288,0.014496,0.028832,54.0275,0.114592
+1380,17.2484,57.9766,55.1404,0.06768,0.831328,0.008224,0.004224,0.028704,54.0852,0.115104
+1381,17.3654,57.5859,55.1694,0.08576,0.785024,0.008192,0.006016,0.028352,54.1404,0.115616
+1382,17.2786,57.875,55.0913,0.068832,0.996256,0.008192,0.005184,0.027616,53.8701,0.115168
+1383,17.2391,58.0078,55.2792,0.067968,0.78576,0.008128,0.0048,0.028672,54.2676,0.116224
+1384,17.3913,57.5,55.1659,0.068032,0.788992,0.008192,0.005344,0.028448,54.1522,0.114688
+1385,17.3371,57.6797,55.4108,0.068896,0.8056,0.00816,0.005568,0.028448,54.3792,0.11488
+1386,17.3348,57.6875,55.3542,0.068416,0.876576,0.00816,0.005664,0.02912,54.2527,0.113504
+1387,17.4268,57.3828,55.0938,0.068384,0.772096,0.008192,0.00576,0.028224,54.0962,0.114912
+1388,17.316,57.75,55.1361,0.068416,0.79248,0.008192,0.004192,0.04096,54.1074,0.114528
+1389,17.2763,57.8828,55.4291,0.069184,0.8688,0.008192,0.00592,0.02832,54.3336,0.115072
+1390,17.4031,57.4609,55.0967,0.068832,0.774496,0.008224,0.004512,0.028672,54.0957,0.116288
+1391,17.1628,58.2656,55.314,0.06912,0.8256,0.007456,0.005088,0.028704,54.2618,0.116192
+1392,17.274,57.8906,55.4132,0.068256,0.841344,0.008192,0.00448,0.028704,54.3475,0.114752
+1393,17.4316,57.3672,55.2035,0.069248,0.82368,0.008192,0.006016,0.02864,54.1524,0.115264
+1394,17.4197,57.4062,55.1138,0.067936,0.811008,0.008192,0.0056,0.02832,54.0765,0.116288
+1395,17.396,57.4844,55.2804,0.06832,0.788032,0.00816,0.0048,0.028672,54.2659,0.116512
+1396,17.2833,57.8594,55.3018,0.068992,0.780096,0.008192,0.004896,0.028448,54.2964,0.114816
+1397,17.2484,57.9766,55.3221,0.068032,0.774176,0.00816,0.006016,0.028448,54.3227,0.114624
+1398,17.396,57.4844,55.339,0.067584,0.808992,0.00928,0.004928,0.028448,54.305,0.114816
+1399,16.9492,59,55.2209,0.068288,0.824672,0.006784,0.005568,0.029056,54.1718,0.114688
+1400,17.0917,58.5078,55.3337,0.069472,0.811488,0.00816,0.004608,0.028704,54.296,0.115264
+1401,17.4625,57.2656,55.318,0.067808,0.792576,0.008192,0.006144,0.028672,54.2986,0.116032
+1402,17.3984,57.4766,55.2243,0.067328,0.772352,0.008192,0.005792,0.028416,54.2274,0.114816
+1403,17.3559,57.6172,55.2429,0.067552,0.79328,0.008192,0.005728,0.028416,54.2235,0.116256
+1404,16.8576,59.3203,55.1863,0.080544,0.82352,0.00816,0.0056,0.028256,54.1255,0.114688
+1405,17.4506,57.3047,55.1055,0.067616,0.82448,0.008,0.00512,0.028672,54.0566,0.114976
+1406,17.415,57.4219,55.0994,0.069344,0.868608,0.008192,0.005568,0.028384,54.0046,0.114688
+1407,17.3677,57.5781,55.1055,0.068992,0.819104,0.00816,0.004864,0.028672,54.061,0.114784
+1408,17.5079,57.1172,54.9112,0.067776,0.786432,0.008192,0.004192,0.028608,53.9013,0.114688
+1409,17.3324,57.6953,55.1988,0.069344,0.895072,0.00832,0.005536,0.028448,54.0763,0.115744
+1410,17.3442,57.6562,55.2714,0.067584,0.808352,0.008224,0.004672,0.028672,54.2392,0.114688
+1411,17.253,57.9609,55.3577,0.0696,0.894784,0.008192,0.005568,0.027456,54.2372,0.114976
+1412,17.0077,58.7969,55.4751,0.068512,1.00323,0.008192,0.004384,0.028672,54.2454,0.116704
+1413,17.302,57.7969,55.4394,0.069312,0.888736,0.00816,0.004544,0.028672,54.3252,0.114688
+1414,17.253,57.9609,55.3368,0.06928,0.844128,0.008192,0.004096,0.028704,54.2675,0.114912
+1415,17.3654,57.5859,55.2654,0.070112,0.840032,0.00816,0.006176,0.028288,54.1981,0.114528
+1416,16.8377,59.3906,55.5526,0.067904,0.905536,0.008192,0.005408,0.02848,54.422,0.115136
+1417,17.3842,57.5234,55.045,0.068512,0.780256,0.008192,0.00416,0.02864,54.0405,0.114688
+1418,17.1582,58.2812,55.1674,0.06912,0.81744,0.00816,0.004736,0.028544,54.1094,0.129984
+1419,17.3348,57.6875,55.2918,0.068928,0.823648,0.007808,0.004832,0.028704,54.2306,0.127296
+1420,17.323,57.7266,55.3404,0.067552,0.966656,0.024512,0.005312,0.02752,54.1327,0.11616
+1421,17.1237,58.3984,55.4931,0.068064,0.91664,0.00816,0.005024,0.02864,54.3513,0.115264
+1422,17.1352,58.3594,55.4455,0.0696,0.776224,0.008192,0.00576,0.028416,54.4425,0.114848
+1423,17.1306,58.375,55.1969,0.067584,0.78176,0.00816,0.004704,0.028672,54.1901,0.115936
+1424,17.1513,58.3047,55.2529,0.069632,0.900832,0.00816,0.004416,0.028672,54.126,0.115168
+1425,17.4506,57.3047,55.1563,0.067616,0.782304,0.008192,0.006112,0.02832,54.1475,0.116256
+1426,17.453,57.2969,54.9732,0.066368,0.802272,0.008256,0.004576,0.028672,53.9341,0.129024
+1427,17.3512,57.6328,55.3223,0.068992,0.813344,0.006496,0.005952,0.02832,54.2828,0.116416
+1428,17.2926,57.8281,55.3144,0.06896,0.827168,0.008128,0.004896,0.028416,54.2619,0.115008
+1429,17.3701,57.5703,55.2788,0.06944,0.792032,0.00816,0.004896,0.02864,54.2597,0.115968
+1430,17.3654,57.5859,55.16,0.0696,0.827392,0.008192,0.00576,0.028224,54.106,0.11488
+1431,17.3067,57.7812,55.2401,0.067552,0.786464,0.00816,0.006112,0.028288,54.2286,0.114944
+1432,17.4244,57.3906,55.1866,0.068608,0.83248,0.008192,0.0056,0.02864,54.1272,0.115872
+1433,17.246,57.9844,55.3493,0.068416,0.8784,0.008192,0.00576,0.02816,54.2442,0.116192
+1434,17.3184,57.7422,55.1444,0.067616,0.851104,0.00816,0.004896,0.028352,54.0696,0.114688
+1435,17.1835,58.1953,55.2615,0.06848,0.831456,0.008192,0.005984,0.02832,54.2044,0.114688
+1436,17.0872,58.5234,55.3052,0.068576,0.81904,0.00816,0.004288,0.028704,54.2617,0.114688
+1437,17.2159,58.0859,55.1455,0.068608,0.841696,0.008192,0.005984,0.028224,54.0774,0.115328
+1438,17.4744,57.2266,54.9523,0.06832,0.780288,0.00816,0.004096,0.028704,53.9482,0.114464
+1439,17.3701,57.5703,54.9744,0.069248,0.788576,0.008128,0.005568,0.02752,53.9601,0.115328
+1440,17.2437,57.9922,55.0605,0.069632,0.817184,0.00816,0.005216,0.027552,54.0171,0.115648
+1441,17.4031,57.4609,55.0005,0.069152,0.774304,0.008192,0.005536,0.02752,53.9996,0.116224
+1442,16.9022,59.1641,55.19,0.068128,0.771424,0.008192,0.004736,0.04096,54.1811,0.115488
+1443,17.3606,57.6016,55.1914,0.069248,0.809344,0.008224,0.00592,0.028256,54.1559,0.11456
+1444,16.9559,58.9766,55.1465,0.069632,0.79872,0.008192,0.004096,0.028704,54.122,0.115104
+1445,17.2136,58.0938,55.3472,0.083936,0.991168,0.008192,0.016448,0.040128,54.0926,0.114688
+1446,17.3701,57.5703,55.3194,0.068448,0.852,0.00816,0.00576,0.036384,54.2331,0.11552
+1447,17.3866,57.5156,55.2345,0.06912,0.784864,0.008192,0.00592,0.02848,54.2232,0.11472
+1448,17.4553,57.2891,55.1073,0.069216,0.862624,0.008192,0.004096,0.028672,54.0192,0.115296
+1449,17.2507,57.9688,55.4715,0.067616,0.941984,0.008224,0.005568,0.028352,54.3036,0.116064
+1450,17.3489,57.6406,55.2956,0.067552,0.78848,0.008192,0.005664,0.028416,54.2821,0.1152
+1451,17.4363,57.3516,55.1103,0.068288,0.776192,0.008192,0.005952,0.028384,54.1085,0.114816
+1452,17.2553,57.9531,55.544,0.067936,0.909312,0.008192,0.005632,0.02832,54.4093,0.115264
+1453,17.4221,57.3984,55.188,0.068384,0.823296,0.008192,0.006144,0.02848,54.137,0.11648
+1454,17.4031,57.4609,55.2122,0.068928,0.830144,0.008192,0.004096,0.028672,54.1584,0.113728
+1455,17.3583,57.6094,55.2232,0.067744,0.918304,0.00816,0.005984,0.028288,54.08,0.114688
+1456,17.3371,57.6797,55.2454,0.067296,0.787328,0.00816,0.005376,0.027424,54.2351,0.114688
+1457,17.3043,57.7891,55.255,0.068864,0.772864,0.0096,0.004736,0.028672,54.2556,0.114688
+1458,17.3842,57.5234,55.3333,0.066144,0.777472,0.00816,0.004864,0.028384,54.3338,0.11456
+1459,17.0054,58.8047,55.4433,0.067616,0.872448,0.008192,0.00608,0.028416,54.346,0.114528
+1460,17.3937,57.4922,55.167,0.068576,0.776192,0.008192,0.005248,0.02752,54.1655,0.115744
+1461,17.295,57.8203,54.9582,0.068,0.76176,0.008,0.005568,0.027488,53.9724,0.115072
+1462,17.4458,57.3203,55.0627,0.069056,0.864384,0.00816,0.015008,0.028704,53.962,0.11536
+1463,17.2159,58.0859,55.2812,0.067584,0.800768,0.008192,0.00592,0.02816,54.2543,0.116288
+1464,17.4031,57.4609,54.9729,0.067712,0.786592,0.008192,0.004256,0.028672,53.9623,0.115136
+1465,17.2623,57.9297,55.0624,0.067584,0.782336,0.008192,0.006144,0.02832,54.055,0.114784
+1466,17.1974,58.1484,55.138,0.06944,0.797504,0.008192,0.005312,0.027456,54.1143,0.115808
+1467,17.2043,58.125,55.4836,0.075808,0.964192,0.007712,0.00496,0.028672,54.2863,0.115872
+1468,17.1444,58.3281,55.576,0.068928,0.928544,0.008192,0.005888,0.028288,54.4212,0.114976
+1469,17.1927,58.1641,55.3554,0.069632,0.89008,0.008128,0.00496,0.028672,54.2392,0.11472
+1470,16.7167,59.8203,55.2992,0.068768,0.932704,0.008192,0.005184,0.027616,54.1365,0.120256
+1471,17.0872,58.5234,55.0592,0.068416,0.778144,0.008256,0.0056,0.028352,54.0558,0.114688
+1472,17.1674,58.25,55.2976,0.069024,0.839584,0.008256,0.004736,0.028512,54.2324,0.11504
+1473,17.3842,57.5234,55.1137,0.075776,0.814464,0.00816,0.004768,0.028672,54.0664,0.115456
+1474,16.9469,59.0078,55.0125,0.06928,0.757184,0.00816,0.004896,0.028416,54.0301,0.114432
+1475,16.9671,58.9375,55.5187,0.068064,0.7864,0.008192,0.006144,0.028672,54.5055,0.115744
+1476,17.0077,58.7969,55.5724,0.069088,0.93392,0.00816,0.004672,0.02864,54.4124,0.115424
+1477,16.8001,59.5234,55.255,0.069472,0.864384,0.008192,0.005472,0.028512,54.1643,0.114688
+1478,16.9851,58.875,55.4972,0.06944,0.78032,0.008192,0.005024,0.028256,54.4916,0.114432
+1479,17.1904,58.1719,55.3599,0.068,0.81264,0.008128,0.005568,0.027648,54.3232,0.114688
+1480,17.0917,58.5078,55.4368,0.067584,0.886816,0.009376,0.004896,0.028448,54.3249,0.114784
+1481,17.3184,57.7422,55.2079,0.071392,0.893216,0.020064,0.005568,0.027616,54.075,0.11504
+1482,17.1329,58.3672,55.2393,0.069472,0.764448,0.008192,0.004384,0.028704,54.2486,0.11552
+1483,17.2856,57.8516,55.3861,0.069632,0.907264,0.008192,0.016384,0.028672,54.241,0.115008
+1484,17.1881,58.1797,55.2243,0.069504,0.82096,0.008192,0.004512,0.028704,54.1778,0.114688
+1485,17.3536,57.625,55.233,0.068352,0.861856,0.008192,0.005568,0.027552,54.1463,0.115136
+1486,17.094,58.5,55.2851,0.068992,0.778368,0.00816,0.00464,0.02864,54.2803,0.116
+1487,17.2693,57.9062,55.1856,0.06864,0.901024,0.00816,0.005568,0.038912,54.0484,0.114912
+1488,17.0781,58.5547,55.3975,0.069632,0.861504,0.00816,0.004832,0.028256,54.2966,0.128448
+1489,17.1674,58.25,55.425,0.067872,0.774144,0.008192,0.00576,0.028352,54.4253,0.11536
+1490,17.1215,58.4062,55.3635,0.069504,0.99344,0.00816,0.004096,0.028672,54.1449,0.11472
+1491,17.253,57.9609,55.296,0.06912,0.903168,0.00816,0.00464,0.028704,54.1675,0.11472
+1492,17.0508,58.6484,55.122,0.073728,0.826656,0.01632,0.004896,0.028576,54.0568,0.114976
+1493,17.1582,58.2812,55.5336,0.069632,0.9912,0.008192,0.005536,0.039264,54.3051,0.11472
+1494,17.1743,58.2266,55.243,0.06784,0.931072,0.00816,0.004896,0.028512,54.0876,0.11488
+1495,16.3495,61.1641,55.2592,0.06912,0.911968,0.008192,0.0056,0.028416,54.1065,0.129344
+1496,17.2693,57.9062,55.0968,0.06816,0.955488,0.008096,0.004448,0.039424,53.9054,0.115776
+1497,16.6732,59.9766,55.1764,0.069248,0.752,0.008192,0.006144,0.028448,54.1977,0.114656
+1498,17.1881,58.1797,55.5093,0.068032,0.77536,0.00816,0.004864,0.02832,54.5099,0.114688
+1499,17.1997,58.1406,55.165,0.069088,0.928064,0.008224,0.005536,0.028672,54.0105,0.11488
+1500,17.3701,57.5703,55.2772,0.067616,0.79184,0.00832,0.004672,0.02864,54.2616,0.114432
+1501,17.019,58.7578,55.4314,0.06928,0.936448,0.00752,0.004992,0.028672,54.2691,0.11536
+1502,17.26,57.9375,55.1972,0.069408,0.778432,0.008192,0.00528,0.028544,54.1911,0.116256
+1503,16.8465,59.3594,55.4267,0.067136,0.77696,0.008192,0.005696,0.02848,54.4242,0.116032
+1504,17.1077,58.4531,55.3338,0.067552,0.756704,0.008192,0.005696,0.028192,54.3528,0.114688
+1505,17.2066,58.1172,55.1195,0.06912,0.909824,0.00816,0.005856,0.02832,53.9832,0.115008
+1506,17.0258,58.7344,55.3943,0.069184,0.856512,0.008192,0.016416,0.029824,54.2993,0.114912
+1507,17.4458,57.3203,54.9949,0.069632,0.751232,0.00816,0.005568,0.027648,54.018,0.114688
+1508,17.2275,58.0469,55.199,0.067776,0.788128,0.00816,0.00448,0.02864,54.1872,0.114656
+1509,17.1766,58.2188,55.1671,0.06848,0.788224,0.00816,0.005568,0.02752,54.1532,0.115968
+1510,17.0735,58.5703,55.4525,0.06848,0.752672,0.00816,0.004768,0.028512,54.4732,0.116704
+1511,16.9694,58.9297,55.3636,0.072736,0.87136,0.008192,0.005696,0.028448,54.2615,0.115584
+1512,17.1651,58.2578,55.313,0.06816,0.888832,0.008192,0.005312,0.027488,54.2003,0.114688
+1513,17.1951,58.1562,55.3099,0.067936,0.91952,0.008192,0.005856,0.02832,54.1653,0.11472
+1514,17.396,57.4844,55.0902,0.067456,0.7968,0.007872,0.004416,0.028704,54.0692,0.115776
+1515,17.2903,57.8359,55.1363,0.067584,0.749568,0.008192,0.006144,0.02848,54.1616,0.114688
+1516,17.1835,58.1953,55.1834,0.069056,0.770624,0.008192,0.005664,0.028384,54.1868,0.114688
+1517,17.1974,58.1484,55.2449,0.0696,0.843104,0.008192,0.015008,0.028672,54.1655,0.114784
+1518,17.3559,57.6172,55.4096,0.066528,0.785536,0.00816,0.004864,0.028224,54.4016,0.114688
+1519,17.0576,58.625,55.2087,0.068064,0.829056,0.00816,0.004768,0.028672,54.1553,0.114688
+1520,17.0758,58.5625,55.1506,0.072896,0.765824,0.008192,0.00496,0.028256,54.1558,0.114688
+1521,17.0326,58.7109,55.1506,0.069504,0.788192,0.008192,0.005568,0.027648,54.1359,0.115552
+1522,17.2553,57.9531,55.0944,0.06864,0.795616,0.008192,0.005216,0.027552,54.0744,0.114752
+1523,17.2159,58.0859,55.414,0.079968,0.819168,0.00816,0.0056,0.028256,54.357,0.115904
+1524,16.9987,58.8281,55.3033,0.067584,0.974432,0.008192,0.004512,0.028704,54.1055,0.114432
+1525,17.3866,57.5156,55.2489,0.069632,0.749536,0.008192,0.006112,0.028448,54.2723,0.114688
+1526,17.3724,57.5625,55.3278,0.081952,0.831488,0.008192,0.004096,0.028672,54.2577,0.115744
+1527,17.0667,58.5938,55.1146,0.06848,0.87856,0.008192,0.006144,0.02864,54.0099,0.114688
+1528,17.0439,58.6719,55.2049,0.06928,0.912736,0.019264,0.004288,0.028672,54.0549,0.115744
+1529,17.0326,58.7109,55.2324,0.06816,0.945632,0.008192,0.00464,0.028672,54.0611,0.116096
+1530,17.01,58.7891,54.9853,0.06816,0.765696,0.008128,0.004384,0.028704,53.9955,0.11472
+1531,17.5439,57,54.9316,0.068256,0.75696,0.00816,0.004896,0.028672,53.9499,0.114688
+1532,17.3207,57.7344,54.8292,0.069152,0.83712,0.008128,0.004896,0.028544,53.7665,0.11488
+1533,17.0598,58.6172,55.4004,0.0696,0.88272,0.008192,0.0056,0.028224,54.2914,0.114688
+1534,17.472,57.2344,55.2402,0.069312,0.86048,0.008192,0.004096,0.028672,54.1547,0.114752
+1535,17.3606,57.6016,55.3164,0.067744,0.815136,0.00816,0.005984,0.028704,54.2757,0.115008
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..7c3bc5a
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,293.697,3.43736,1.65863,0.0164937,0.389491,0.00701684,0.00536913,0.00805366,0.0175922,0.0193732,1.17936,0.015885
+max_1024,350.655,6.4812,2.56051,0.02928,1.27658,0.022496,0.021216,0.02,0.045056,0.038016,1.22512,0.030816
+min_1024,154.292,2.85181,1.54842,0.014336,0.337728,0.006112,0.004064,0.006848,0.016384,0.0184,1.10797,0.0144
+512,265.819,3.76196,1.58195,0.01632,0.360512,0.007008,0.005536,0.007936,0.01728,0.02016,1.13082,0.016384
+513,322.799,3.0979,1.57894,0.016352,0.360512,0.006752,0.00416,0.008128,0.018048,0.018816,1.1303,0.015872
+514,304.173,3.2876,1.59334,0.016384,0.356256,0.00624,0.006144,0.007968,0.016608,0.020128,1.14851,0.015104
+515,332.063,3.01147,1.58675,0.015872,0.352544,0.006368,0.005984,0.007968,0.016768,0.019936,1.14538,0.015936
+516,277.375,3.60522,1.5801,0.016384,0.353568,0.00688,0.00592,0.007968,0.01808,0.019264,1.13603,0.016
+517,331.606,3.01562,1.56435,0.016384,0.337728,0.006336,0.005376,0.007968,0.017184,0.019936,1.13738,0.016064
+518,259.388,3.85522,1.62237,0.016576,0.396032,0.007488,0.0048,0.008192,0.018432,0.01968,1.13523,0.015936
+519,300.933,3.323,1.58774,0.016352,0.360992,0.007424,0.004864,0.008,0.016576,0.019712,1.12899,0.024832
+520,254.742,3.92554,1.58298,0.016736,0.354528,0.007136,0.004832,0.007936,0.016928,0.019904,1.13914,0.01584
+521,237.215,4.21558,1.59251,0.016416,0.364512,0.00752,0.0048,0.00816,0.017664,0.0192,1.13869,0.015552
+522,297.307,3.36353,1.58723,0.0176,0.35216,0.006976,0.004192,0.008192,0.018272,0.018592,1.14483,0.016416
+523,323.283,3.09326,1.57594,0.01536,0.346112,0.007584,0.004704,0.008096,0.017632,0.019168,1.1409,0.016384
+524,322.494,3.10083,1.59251,0.016384,0.362048,0.006592,0.005152,0.007136,0.017952,0.018912,1.14256,0.015776
+525,316.734,3.15723,1.57504,0.016,0.346944,0.007392,0.004896,0.008192,0.018016,0.018848,1.13869,0.016064
+526,261.125,3.82959,1.676,0.01648,0.449152,0.007968,0.005504,0.007008,0.018432,0.018496,1.13661,0.016352
+527,301.687,3.3147,1.61715,0.01648,0.400896,0.006656,0.00512,0.007168,0.018208,0.018656,1.12845,0.01552
+528,290.311,3.44458,1.57718,0.016512,0.368512,0.006336,0.006016,0.007968,0.016736,0.01952,1.12054,0.01504
+529,311.672,3.2085,1.56912,0.016544,0.347392,0.006848,0.005504,0.007008,0.018432,0.018592,1.13344,0.01536
+530,308.039,3.24634,1.59642,0.016384,0.370112,0.00672,0.005632,0.008512,0.016576,0.02016,1.13629,0.016032
+531,254.948,3.92236,1.65581,0.017184,0.4256,0.006752,0.00416,0.008128,0.018336,0.018624,1.14202,0.015008
+532,266.233,3.7561,1.65043,0.016384,0.417792,0.007424,0.004896,0.00816,0.017984,0.01888,1.14253,0.016384
+533,319.351,3.13135,1.61008,0.016352,0.364928,0.007968,0.005536,0.006976,0.018432,0.019808,1.14346,0.026624
+534,268.063,3.73047,1.59606,0.016544,0.3712,0.007904,0.005504,0.007072,0.018016,0.018752,1.13469,0.016384
+535,312.267,3.20239,1.60182,0.01632,0.36224,0.006752,0.004192,0.008096,0.018368,0.032128,1.13869,0.01504
+536,238.82,4.18726,1.61123,0.016416,0.382944,0.007584,0.004704,0.009312,0.01712,0.018624,1.13856,0.015968
+537,271.007,3.68994,1.59747,0.016416,0.372736,0.007552,0.004736,0.008192,0.018048,0.018848,1.13565,0.015296
+538,324.719,3.07959,1.58816,0.016448,0.36736,0.006272,0.005472,0.007968,0.017152,0.01856,1.13254,0.016384
+539,258.406,3.86987,1.7081,0.016416,0.477216,0.00736,0.004928,0.014368,0.018336,0.018496,1.13459,0.016384
+540,276.309,3.61914,1.5895,0.016256,0.364544,0.006496,0.005888,0.007936,0.016896,0.019808,1.13667,0.015008
+541,315.247,3.17212,1.60157,0.016352,0.373472,0.007392,0.004896,0.008192,0.01792,0.018976,1.13866,0.015712
+542,319.6,3.12891,1.59136,0.01648,0.367104,0.006304,0.005984,0.008192,0.016384,0.02016,1.13475,0.016
+543,327.026,3.05786,1.56586,0.016384,0.347264,0.006976,0.00416,0.008192,0.018368,0.018496,1.1304,0.015616
+544,226.348,4.41797,1.80672,0.016768,0.572416,0.00704,0.004224,0.008192,0.017888,0.029216,1.13606,0.014912
+545,286.975,3.48462,1.59949,0.016416,0.376448,0.006496,0.00528,0.00704,0.0184,0.019552,1.13347,0.016384
+546,332.144,3.01074,1.59043,0.016384,0.371872,0.006848,0.005504,0.007968,0.017216,0.018816,1.12982,0.016
+547,320.15,3.12354,1.56512,0.016,0.346368,0.00672,0.005632,0.008,0.017088,0.020096,1.1303,0.014912
+548,285.714,3.5,1.58416,0.016384,0.359744,0.006848,0.005568,0.008128,0.017056,0.019584,1.13517,0.01568
+549,311.767,3.20752,1.58275,0.016352,0.367008,0.007456,0.004832,0.008192,0.018432,0.019904,1.12493,0.015648
+550,295.165,3.38794,1.58925,0.016384,0.362144,0.006496,0.006144,0.008192,0.01792,0.018944,1.13664,0.016384
+551,321.28,3.11255,1.5695,0.015328,0.352096,0.007488,0.0048,0.008192,0.018144,0.01872,1.12845,0.016288
+552,311.246,3.21289,1.69053,0.01632,0.461792,0.007648,0.004608,0.008192,0.016384,0.02,1.14026,0.015328
+553,282.035,3.54565,1.57066,0.016384,0.34816,0.006144,0.006144,0.00816,0.017632,0.019296,1.13251,0.016224
+554,273.048,3.66235,1.59507,0.016288,0.37008,0.006848,0.00592,0.008416,0.01792,0.018976,1.13453,0.016096
+555,327.052,3.05762,1.57933,0.016448,0.35616,0.006592,0.00432,0.007968,0.018432,0.01952,1.1353,0.014592
+556,341.647,2.927,1.57382,0.016576,0.350976,0.007776,0.004512,0.008192,0.018208,0.018656,1.13254,0.016384
+557,337.731,2.96094,1.56262,0.016384,0.348192,0.007744,0.004544,0.00816,0.016384,0.02032,1.12605,0.014848
+558,243.679,4.10376,1.57542,0.01648,0.35472,0.007488,0.0048,0.008192,0.018432,0.019872,1.13011,0.015328
+559,323.718,3.08911,1.57987,0.01664,0.352864,0.006144,0.006144,0.008096,0.01648,0.020192,1.13805,0.015264
+560,309.249,3.23364,1.57965,0.016448,0.371232,0.006176,0.006144,0.008032,0.016544,0.019616,1.11907,0.016384
+561,326.063,3.06689,1.57661,0.016384,0.3584,0.007264,0.005024,0.008192,0.017696,0.019168,1.12845,0.016032
+562,329.155,3.03809,1.5648,0.015648,0.344928,0.00768,0.004608,0.008192,0.01792,0.018912,1.13053,0.016384
+563,238.945,4.18506,1.5904,0.016416,0.370656,0.00736,0.004864,0.008,0.01664,0.020064,1.13072,0.01568
+564,304.513,3.28394,1.56861,0.016384,0.355904,0.006592,0.005856,0.007936,0.016928,0.018432,1.12435,0.016224
+565,350.325,2.85449,1.56467,0.016384,0.351808,0.006592,0.005792,0.008,0.01696,0.020288,1.12422,0.014624
+566,310.421,3.22144,1.58339,0.016352,0.351648,0.007008,0.005504,0.007968,0.017312,0.018464,1.14275,0.016384
+567,243.129,4.11304,1.5927,0.016384,0.36032,0.006304,0.006112,0.008064,0.016512,0.020416,1.14285,0.015744
+568,313.006,3.19482,1.57046,0.016384,0.35632,0.006208,0.006112,0.008064,0.016512,0.02016,1.12445,0.016256
+569,304.264,3.28662,1.56435,0.016416,0.355936,0.006528,0.005376,0.007968,0.017376,0.019936,1.11875,0.016064
+570,325.57,3.07153,1.57171,0.015232,0.352256,0.006144,0.006144,0.008192,0.016448,0.020032,1.13088,0.016384
+571,299.437,3.3396,1.58243,0.016384,0.356352,0.007392,0.004896,0.008192,0.017952,0.018912,1.13664,0.015712
+572,306.06,3.26733,1.56672,0.016384,0.354304,0.007488,0.0048,0.008192,0.018368,0.018528,1.12336,0.015296
+573,287.056,3.48364,1.58925,0.016416,0.36864,0.007136,0.004928,0.007968,0.0168,0.019936,1.13206,0.01536
+574,336.898,2.96826,1.55821,0.016384,0.344064,0.006144,0.006016,0.008,0.017952,0.019232,1.12435,0.016064
+575,319.975,3.12524,1.62202,0.016384,0.41168,0.007296,0.004928,0.007968,0.017728,0.019264,1.12157,0.0152
+576,330.91,3.02197,1.55379,0.016256,0.35072,0.00736,0.004928,0.008192,0.018432,0.018432,1.11363,0.01584
+577,309.015,3.23608,1.66707,0.016384,0.429248,0.006848,0.004224,0.008192,0.026656,0.019648,1.14112,0.014752
+578,322.038,3.10522,1.56605,0.016608,0.352352,0.007648,0.00464,0.008192,0.016384,0.02016,1.12262,0.01744
+579,311.672,3.2085,1.56131,0.015072,0.344064,0.007584,0.004704,0.008192,0.018144,0.01872,1.12989,0.014944
+580,346.561,2.8855,1.55446,0.016416,0.345728,0.006496,0.005888,0.007968,0.016864,0.018432,1.12166,0.015008
+581,321.079,3.1145,1.57251,0.016064,0.348544,0.007392,0.004896,0.008192,0.01744,0.019424,1.13459,0.015968
+582,272.105,3.67505,1.7496,0.016544,0.539072,0.006144,0.006144,0.008192,0.017408,0.019072,1.12067,0.016352
+583,316.123,3.16333,1.56672,0.016384,0.352256,0.007744,0.004544,0.008192,0.017504,0.019072,1.12621,0.014816
+584,290.476,3.44263,1.58022,0.016416,0.368896,0.006848,0.005504,0.008512,0.016736,0.020128,1.12208,0.015104
+585,309.389,3.23218,1.55242,0.016416,0.347488,0.006464,0.005504,0.007104,0.018432,0.018432,1.11776,0.014816
+586,316.954,3.15503,1.56883,0.016256,0.360224,0.006528,0.005152,0.007136,0.01824,0.01872,1.12141,0.015168
+587,225.228,4.43994,1.70896,0.025504,0.474272,0.006848,0.016544,0.008192,0.01792,0.018944,1.12435,0.016384
+588,290.538,3.44189,1.57366,0.016512,0.375456,0.007872,0.005504,0.007104,0.018336,0.018528,1.10797,0.016384
+589,336.482,2.97192,1.56288,0.01632,0.346304,0.006272,0.005504,0.007968,0.017248,0.019808,1.12838,0.015072
+590,234.472,4.26489,1.57466,0.016384,0.360032,0.00656,0.005824,0.00848,0.016416,0.020064,1.12477,0.016128
+591,282.892,3.53491,1.69837,0.016448,0.488992,0.006976,0.005504,0.007968,0.01744,0.019424,1.12061,0.015008
+592,283.774,3.52393,1.59693,0.016512,0.381216,0.007904,0.004384,0.008192,0.018336,0.018528,1.12605,0.015808
+593,325.596,3.07129,1.56864,0.016384,0.353664,0.006784,0.00544,0.008,0.017312,0.01952,1.12528,0.016256
+594,270.042,3.70312,1.58086,0.016384,0.354112,0.006368,0.005888,0.008,0.0168,0.01984,1.13728,0.016192
+595,308.457,3.24194,1.55299,0.015072,0.341856,0.007712,0.004576,0.008192,0.018464,0.019584,1.12256,0.014976
+596,211.385,4.73071,1.59248,0.016544,0.378624,0.0064,0.005824,0.008,0.016896,0.018432,1.12582,0.015936
+597,320.626,3.1189,1.62704,0.016448,0.399648,0.006688,0.004256,0.008032,0.018048,0.018816,1.1401,0.015008
+598,335.93,2.97681,1.60566,0.016416,0.38576,0.007296,0.00496,0.008192,0.017792,0.019072,1.13021,0.015968
+599,315.635,3.16821,1.55354,0.016384,0.34816,0.007328,0.004864,0.008,0.0168,0.019968,1.11651,0.01552
+600,268.485,3.72461,1.68346,0.016416,0.4704,0.006752,0.005472,0.007936,0.01712,0.018624,1.12435,0.016384
+601,314.641,3.17822,1.5799,0.016384,0.360544,0.006944,0.005504,0.008,0.017248,0.0184,1.13213,0.014752
+602,293.683,3.40503,1.56877,0.016384,0.354304,0.00736,0.004928,0.008192,0.0176,0.019168,1.12445,0.016384
+603,335.188,2.9834,1.5585,0.016224,0.346176,0.0064,0.005344,0.008,0.017376,0.020096,1.12269,0.016192
+604,292.927,3.41382,1.5768,0.016416,0.350016,0.006304,0.00608,0.007936,0.016704,0.019616,1.1375,0.016224
+605,249.3,4.01123,1.58301,0.016352,0.369536,0.007392,0.004896,0.008224,0.0184,0.018464,1.12397,0.015776
+606,281.667,3.55029,1.57917,0.016512,0.355872,0.006656,0.006112,0.007936,0.016672,0.02,1.13421,0.0152
+607,312.243,3.20264,1.54842,0.014464,0.339712,0.0064,0.005312,0.006976,0.018432,0.018528,1.12333,0.015264
+608,290.27,3.44507,1.55894,0.016576,0.35248,0.006144,0.006144,0.008192,0.017504,0.019232,1.11741,0.015264
+609,312.696,3.198,1.57021,0.016384,0.354304,0.007744,0.004544,0.008192,0.018112,0.018752,1.1264,0.015776
+610,292.092,3.42358,1.58646,0.016384,0.36864,0.00736,0.004928,0.008192,0.017792,0.018912,1.12838,0.015872
+611,329.711,3.03296,1.56269,0.016384,0.348192,0.007712,0.004544,0.008192,0.017568,0.019296,1.12608,0.01472
+612,328.495,3.04419,1.58515,0.016384,0.36832,0.006496,0.005952,0.007936,0.016832,0.019712,1.12822,0.015296
+613,327.392,3.05444,1.55821,0.016416,0.345248,0.006848,0.004224,0.008192,0.018176,0.018688,1.12435,0.016064
+614,285.754,3.49951,1.88461,0.016032,0.65616,0.007232,0.019392,0.008192,0.018464,0.019776,1.12298,0.016384
+615,323.181,3.09424,1.57152,0.016384,0.363072,0.006272,0.005472,0.008,0.017248,0.02048,1.11939,0.0152
+616,330.189,3.02856,1.55459,0.016416,0.350176,0.007456,0.004832,0.008,0.016576,0.019648,1.11638,0.015104
+617,318.26,3.14209,1.55632,0.016384,0.35168,0.00672,0.004096,0.008192,0.018144,0.018752,1.11613,0.016224
+618,315.733,3.16724,1.5625,0.016384,0.346112,0.007424,0.004864,0.008,0.017888,0.018976,1.12659,0.016256
+619,290.909,3.4375,1.5961,0.016416,0.375616,0.006272,0.006112,0.008,0.017664,0.019424,1.1305,0.016096
+620,327.916,3.04956,1.57226,0.016384,0.364544,0.008192,0.005696,0.008,0.017024,0.01984,1.11645,0.016128
+621,282.932,3.53442,1.57626,0.016416,0.349856,0.006464,0.005632,0.007968,0.01712,0.02,1.13712,0.01568
+622,322.063,3.10498,1.55968,0.016416,0.339616,0.006496,0.00592,0.007968,0.0168,0.018432,1.13174,0.016288
+623,261.158,3.8291,1.59066,0.016384,0.36816,0.006624,0.00576,0.008064,0.016896,0.019616,1.13341,0.015744
+624,231.23,4.32471,1.5769,0.016384,0.363936,0.006752,0.004096,0.008192,0.01776,0.019104,1.12435,0.01632
+625,333.578,2.9978,1.60358,0.016416,0.380896,0.006208,0.005792,0.007968,0.016896,0.02032,1.13395,0.015136
+626,321.255,3.11279,1.58138,0.016192,0.352096,0.006816,0.005568,0.008,0.01696,0.019776,1.14083,0.015136
+627,282.932,3.53442,1.57712,0.016224,0.359936,0.00688,0.00416,0.008192,0.018208,0.018688,1.12947,0.01536
+628,290.496,3.44238,1.75923,0.016384,0.507904,0.016416,0.006112,0.008192,0.01648,0.034752,1.13661,0.016384
+629,268.238,3.72803,1.57613,0.016384,0.359584,0.00688,0.004224,0.008192,0.01792,0.018944,1.12819,0.015808
+630,319.625,3.12866,1.5609,0.016352,0.348192,0.006592,0.005888,0.008448,0.016384,0.019712,1.12307,0.016256
+631,315.635,3.16821,1.58506,0.016384,0.352256,0.007776,0.004512,0.008192,0.01776,0.019072,1.14282,0.016288
+632,332.819,3.00464,1.57696,0.01632,0.354368,0.006144,0.006144,0.008192,0.016384,0.020416,1.13261,0.016384
+633,235.429,4.24756,1.61178,0.016416,0.378848,0.006208,0.00608,0.008192,0.017504,0.01936,1.14278,0.016384
+634,319.8,3.12695,1.56512,0.01648,0.344608,0.007552,0.004768,0.00816,0.018016,0.01888,1.13046,0.016192
+635,296.855,3.36865,1.58109,0.016384,0.36864,0.007744,0.004544,0.008192,0.016384,0.02016,1.12419,0.014848
+636,343.884,2.90796,1.56189,0.016384,0.346112,0.007776,0.004512,0.008192,0.017984,0.01888,1.12598,0.016064
+637,269.616,3.70898,1.65069,0.016384,0.427552,0.006624,0.00576,0.008,0.01696,0.019648,1.13459,0.015168
+638,308.55,3.24097,1.5791,0.016448,0.36048,0.00784,0.005504,0.007136,0.018144,0.01872,1.12845,0.016384
+639,322.393,3.10181,1.58925,0.016512,0.36432,0.00624,0.006144,0.008128,0.017664,0.019296,1.13619,0.014752
+640,346.385,2.88696,1.58659,0.017504,0.34704,0.007264,0.005024,0.008128,0.0176,0.0192,1.1487,0.016128
+641,319.003,3.13477,1.59366,0.016448,0.368896,0.006144,0.005728,0.007968,0.017024,0.01984,1.13523,0.016384
+642,337.731,2.96094,1.56672,0.016384,0.350208,0.007232,0.004864,0.007968,0.0168,0.019584,1.1273,0.016384
+643,320.451,3.12061,1.58355,0.015936,0.350208,0.006848,0.005376,0.007104,0.018432,0.01968,1.14358,0.016384
+644,278.924,3.58521,1.56877,0.016416,0.348128,0.007968,0.005504,0.007008,0.018368,0.018496,1.13171,0.015168
+645,337.536,2.96265,1.56813,0.016384,0.349728,0.006624,0.005216,0.007072,0.018464,0.01952,1.12928,0.01584
+646,288.715,3.46362,1.56656,0.016384,0.352256,0.00768,0.004608,0.008192,0.017696,0.018912,1.12461,0.016224
+647,279.076,3.58325,1.58288,0.016416,0.341984,0.006176,0.005312,0.008,0.017376,0.020128,1.13667,0.030816
+648,251.427,3.97729,1.70166,0.016384,0.47696,0.006368,0.005376,0.008,0.017344,0.018432,1.13654,0.016256
+649,320.426,3.12085,1.5872,0.016416,0.358368,0.007872,0.005504,0.007104,0.018432,0.018464,1.13866,0.016384
+650,263.765,3.79126,1.58106,0.016384,0.36832,0.006464,0.005312,0.006976,0.018304,0.019968,1.12294,0.016384
+651,193.035,5.18042,1.57642,0.016416,0.3424,0.007872,0.005504,0.007104,0.01824,0.019744,1.14365,0.015488
+652,293.158,3.41113,1.62832,0.01648,0.397376,0.007552,0.004736,0.008192,0.018016,0.018848,1.14195,0.015168
+653,297.415,3.3623,1.64378,0.016416,0.430048,0.007808,0.005504,0.007168,0.018464,0.019424,1.1232,0.015744
+654,313.15,3.19336,1.5663,0.01648,0.354656,0.007552,0.004736,0.008192,0.017728,0.019008,1.12205,0.015904
+655,330.509,3.02563,1.56307,0.015168,0.349888,0.006432,0.005568,0.007936,0.017216,0.019904,1.12493,0.016032
+656,215.149,4.64795,1.78397,0.01648,0.571008,0.00656,0.00528,0.007008,0.018112,0.018752,1.12435,0.016416
+657,218.955,4.56714,1.96794,0.025376,0.716768,0.007392,0.015072,0.008256,0.017856,0.01904,1.14275,0.015424
+658,269.651,3.7085,1.5785,0.016448,0.357504,0.007008,0.005536,0.007968,0.017248,0.018432,1.13238,0.015968
+659,260.245,3.84253,1.59539,0.016384,0.38016,0.006848,0.00416,0.008192,0.01808,0.018816,1.12774,0.015008
+660,292.822,3.41504,1.62406,0.016416,0.391136,0.007936,0.005536,0.007008,0.018432,0.018432,1.14278,0.016384
+661,290.93,3.43726,1.60227,0.01648,0.375392,0.007296,0.00496,0.007744,0.016864,0.019712,1.1393,0.014528
+662,285.794,3.49902,1.5713,0.016576,0.352544,0.00624,0.006048,0.008192,0.016384,0.02,1.13011,0.0152
+663,250.551,3.99121,1.63923,0.016544,0.419968,0.006688,0.005184,0.007104,0.018304,0.01856,1.13162,0.015264
+664,229.019,4.36646,1.94256,0.016384,0.691616,0.006752,0.005728,0.018624,0.026688,0.018592,1.1321,0.02608
+665,304.196,3.28735,1.61382,0.016384,0.391136,0.006176,0.005504,0.008,0.017248,0.02016,1.13283,0.016384
+666,326.687,3.06104,1.60086,0.017728,0.352992,0.007744,0.004512,0.008192,0.01792,0.018944,1.15658,0.016256
+667,346.707,2.88428,1.58976,0.01536,0.35824,0.006272,0.006112,0.007936,0.016736,0.02016,1.14304,0.015904
+668,286.875,3.48584,1.69168,0.016416,0.447488,0.006944,0.005536,0.006976,0.0184,0.018464,1.15514,0.01632
+669,290.579,3.44141,1.66048,0.016608,0.432448,0.007424,0.004864,0.008192,0.018208,0.018656,1.13824,0.01584
+670,284.682,3.5127,1.65014,0.017472,0.418752,0.007904,0.005504,0.007072,0.018336,0.018528,1.14061,0.015968
+671,271.925,3.67749,1.73379,0.016384,0.481312,0.022496,0.005344,0.006976,0.028672,0.020448,1.13654,0.015616
+672,260.576,3.83765,1.68045,0.016416,0.446432,0.00736,0.004896,0.008,0.018016,0.019008,1.14438,0.015936
+673,287.418,3.47925,1.62829,0.016416,0.393984,0.0072,0.005088,0.008192,0.018368,0.018496,1.14483,0.015712
+674,311.696,3.20825,1.6417,0.016384,0.411072,0.00672,0.004192,0.008096,0.017888,0.018976,1.1423,0.016064
+675,314.472,3.17993,1.58765,0.016352,0.352736,0.006144,0.006144,0.008192,0.018112,0.018752,1.14483,0.016384
+676,293.011,3.41284,1.5913,0.016384,0.361824,0.006816,0.005632,0.007968,0.017152,0.0184,1.14074,0.016384
+677,276.085,3.62207,1.63814,0.01648,0.407552,0.006784,0.00416,0.008128,0.0184,0.019936,1.14093,0.015776
+678,309.412,3.23193,1.60326,0.016448,0.364608,0.006336,0.006112,0.007968,0.016608,0.020096,1.14922,0.015872
+679,319.501,3.12988,1.59523,0.016448,0.368672,0.007776,0.004512,0.008192,0.017664,0.0192,1.13664,0.016128
+680,350.655,2.85181,1.59485,0.017504,0.365472,0.007552,0.004736,0.008128,0.016448,0.01968,1.1393,0.016032
+681,283.617,3.52588,1.59933,0.016384,0.366592,0.007424,0.004864,0.007968,0.016608,0.02,1.14326,0.016224
+682,336.344,2.97314,1.59104,0.016416,0.362688,0.007328,0.00496,0.008192,0.016384,0.019776,1.13939,0.015904
+683,299.81,3.33545,1.64214,0.016416,0.414912,0.00688,0.004192,0.00816,0.01808,0.018784,1.13869,0.016032
+684,311.791,3.20728,1.6656,0.016544,0.430496,0.006144,0.006144,0.008064,0.016512,0.02016,1.14515,0.016384
+685,293.515,3.40698,1.62938,0.016416,0.393184,0.006144,0.005888,0.007968,0.016864,0.01984,1.14742,0.015648
+686,300.381,3.3291,1.78166,0.016384,0.512,0.007584,0.021088,0.008192,0.0176,0.031552,1.14893,0.018336
+687,304.513,3.28394,1.62451,0.016704,0.385376,0.007392,0.004864,0.008192,0.017856,0.019008,1.14893,0.016192
+688,328.653,3.04272,1.61014,0.016384,0.371232,0.006432,0.005984,0.007968,0.016736,0.01968,1.14973,0.016
+689,311.981,3.20532,1.59334,0.016384,0.356384,0.007232,0.005024,0.008192,0.018144,0.01872,1.14877,0.014496
+690,327.837,3.05029,1.59894,0.016384,0.354336,0.007328,0.00496,0.00816,0.017536,0.019328,1.15504,0.015872
+691,270.899,3.69141,1.71933,0.026624,0.4792,0.006176,0.0056,0.007968,0.017152,0.02048,1.14054,0.015584
+692,315.271,3.17188,1.65686,0.016384,0.4096,0.007808,0.005504,0.007168,0.018208,0.018656,1.15712,0.016416
+693,302.645,3.3042,1.59539,0.016384,0.36352,0.007008,0.004288,0.00816,0.017664,0.0192,1.14419,0.014976
+694,319.476,3.13013,1.59686,0.016384,0.360448,0.00784,0.005536,0.007104,0.01824,0.018624,1.14672,0.015968
+695,220.452,4.53613,1.59315,0.016384,0.350208,0.007584,0.004704,0.008192,0.01808,0.018784,1.15302,0.016192
+696,298.891,3.3457,1.63507,0.016544,0.383552,0.007616,0.004672,0.008192,0.018176,0.01872,1.16118,0.016416
+697,316.489,3.15967,1.59949,0.016288,0.350304,0.007712,0.004608,0.00816,0.018432,0.018432,1.15917,0.016384
+698,327.13,3.05688,1.5984,0.017152,0.35856,0.007872,0.004416,0.008192,0.01808,0.018784,1.15002,0.015328
+699,320.275,3.12231,1.60522,0.016384,0.352256,0.0072,0.005088,0.008192,0.017824,0.019072,1.16326,0.015936
+700,230.592,4.33667,1.60563,0.016384,0.368608,0.006176,0.006144,0.007968,0.016608,0.019968,1.14742,0.016352
+701,322.291,3.10278,1.60563,0.017664,0.367008,0.006496,0.00592,0.008,0.0168,0.02048,1.1479,0.01536
+702,297.891,3.35693,1.60538,0.016384,0.360256,0.006336,0.006112,0.007936,0.016672,0.01968,1.15587,0.016128
+703,327.418,3.0542,1.58106,0.016384,0.346112,0.00752,0.0048,0.008032,0.016512,0.020192,1.14618,0.015328
+704,284.208,3.51855,1.64998,0.016416,0.415264,0.006592,0.005312,0.006976,0.018336,0.018528,1.14637,0.016192
+705,315.125,3.17334,1.59338,0.017504,0.361184,0.006336,0.005376,0.008096,0.017248,0.019712,1.14301,0.014912
+706,274.035,3.64917,1.62406,0.016384,0.376736,0.00624,0.005472,0.008128,0.01712,0.018432,1.15917,0.016384
+707,300.602,3.32666,1.59914,0.016544,0.349472,0.006848,0.005536,0.007968,0.01728,0.019648,1.16,0.01584
+708,221.405,4.5166,1.6288,0.01664,0.375488,0.00784,0.005504,0.007136,0.017888,0.018976,1.16326,0.016064
+709,262.53,3.80908,1.71622,0.016384,0.454656,0.02048,0.006144,0.008128,0.017888,0.023168,1.15299,0.016384
+710,309.202,3.23413,1.61738,0.016384,0.366432,0.006304,0.006112,0.008032,0.016576,0.019744,1.16195,0.01584
+711,309.904,3.22681,1.60429,0.01632,0.365152,0.006304,0.006144,0.008128,0.016448,0.02048,1.14893,0.016384
+712,335.133,2.98389,1.60566,0.016352,0.354336,0.007808,0.004512,0.00816,0.017632,0.019264,1.16118,0.016416
+713,220.452,4.53613,1.60387,0.016352,0.35568,0.006848,0.005504,0.008096,0.01744,0.020448,1.15712,0.016384
+714,264.258,3.78418,1.63597,0.016288,0.388928,0.006816,0.005504,0.00848,0.016768,0.019744,1.15728,0.01616
+715,324.847,3.07837,1.64406,0.016416,0.401696,0.006144,0.005728,0.008,0.016992,0.020384,1.15312,0.015584
+716,303.812,3.2915,1.63386,0.016448,0.383136,0.0072,0.004832,0.007968,0.016864,0.019584,1.16211,0.015712
+717,281.319,3.55469,1.64733,0.016448,0.39392,0.007392,0.015104,0.008192,0.018432,0.019776,1.15168,0.016384
+718,298.021,3.35547,1.63686,0.016576,0.3792,0.00768,0.00464,0.00816,0.016384,0.01968,1.16816,0.016384
+719,313.318,3.19165,1.59942,0.016512,0.348352,0.0064,0.005344,0.006976,0.018368,0.018464,1.16301,0.016
+720,311.341,3.21191,1.60787,0.016256,0.3608,0.007328,0.004928,0.008192,0.0176,0.019136,1.15843,0.0152
+721,294.507,3.39551,1.59456,0.016384,0.339968,0.007744,0.004544,0.008192,0.017856,0.01904,1.16528,0.015552
+722,273.139,3.66113,1.61792,0.016384,0.38064,0.006432,0.005952,0.007936,0.016832,0.018432,1.14995,0.01536
+723,273.962,3.65015,1.60963,0.015264,0.363744,0.006944,0.004096,0.008192,0.018432,0.019584,1.15792,0.015456
+724,292.551,3.41821,1.6088,0.01792,0.371232,0.007744,0.004512,0.008192,0.01776,0.019104,1.14627,0.016064
+725,312.219,3.20288,1.59338,0.016384,0.354176,0.006272,0.00544,0.007936,0.017344,0.018432,1.15203,0.01536
+726,272.196,3.67383,1.63133,0.016384,0.370688,0.006144,0.006144,0.008064,0.016512,0.019712,1.17181,0.015872
+727,297.566,3.3606,1.62387,0.016384,0.357888,0.006656,0.004256,0.008032,0.018304,0.01856,1.1776,0.016192
+728,330.669,3.02417,1.59539,0.016384,0.35776,0.006432,0.005504,0.007136,0.017952,0.018944,1.1489,0.016384
+729,322.977,3.09619,1.59389,0.016352,0.346688,0.006144,0.00608,0.008032,0.017632,0.019264,1.15834,0.01536
+730,272.957,3.66357,1.61069,0.01536,0.362496,0.00624,0.006048,0.008192,0.017792,0.019072,1.1592,0.016288
+731,325.752,3.06982,1.60781,0.01648,0.366176,0.006592,0.00576,0.007936,0.017024,0.020032,1.15264,0.015168
+732,279.171,3.58203,1.62208,0.016384,0.376832,0.007232,0.005056,0.008192,0.017792,0.019072,1.15645,0.015072
+733,324.025,3.08618,1.59952,0.01648,0.351552,0.006816,0.004352,0.008192,0.017984,0.020192,1.15786,0.016096
+734,304.49,3.28418,1.70515,0.016416,0.456704,0.0072,0.005056,0.008192,0.017728,0.019072,1.1591,0.01568
+735,316.538,3.15918,1.63811,0.016384,0.385024,0.018432,0.005792,0.008032,0.016896,0.020224,1.15123,0.016096
+736,313.294,3.19189,1.61469,0.016288,0.3696,0.007168,0.00512,0.008192,0.01744,0.019424,1.15632,0.015136
+737,321.23,3.11304,1.60077,0.016384,0.35008,0.006272,0.00608,0.008,0.01664,0.020096,1.1616,0.015616
+738,316.123,3.16333,1.60528,0.01632,0.358976,0.006144,0.006144,0.008192,0.016384,0.01984,1.15741,0.015872
+739,334.613,2.98853,1.60154,0.016416,0.357984,0.00768,0.004992,0.008192,0.018144,0.019936,1.15296,0.015232
+740,223.556,4.47314,2.44918,0.016256,1.14774,0.018048,0.005504,0.007168,0.045056,0.034464,1.15878,0.01616
+741,302.735,3.30322,1.62746,0.016384,0.376096,0.006848,0.0056,0.007968,0.017184,0.018432,1.16326,0.01568
+742,332.819,3.00464,1.59123,0.016384,0.346112,0.008128,0.005504,0.007968,0.017312,0.018432,1.15507,0.01632
+743,338.261,2.9563,1.61181,0.016384,0.352032,0.006368,0.006016,0.007968,0.0168,0.020352,1.17098,0.014912
+744,298.151,3.354,1.61542,0.016352,0.356256,0.006432,0.005952,0.008096,0.016672,0.019744,1.17005,0.015872
+745,232.582,4.29956,1.70893,0.016352,0.44704,0.016736,0.006144,0.008192,0.0176,0.0192,1.1625,0.015168
+746,304.649,3.28247,1.63731,0.016448,0.381824,0.007264,0.005024,0.008192,0.017632,0.019232,1.16531,0.016384
+747,340.369,2.93799,1.59744,0.016128,0.356608,0.007296,0.004992,0.008192,0.017824,0.01904,1.15245,0.014912
+748,320.35,3.12158,1.62202,0.01616,0.356192,0.00656,0.005888,0.007936,0.016864,0.02,1.17706,0.01536
+749,263.29,3.7981,1.88419,0.016416,0.636928,0.006144,0.005728,0.008128,0.022528,0.018912,1.15446,0.014944
+750,270.882,3.69165,1.62202,0.016384,0.376864,0.007744,0.004512,0.008192,0.017824,0.01904,1.15632,0.015136
+751,333.469,2.99878,1.61792,0.016352,0.354336,0.006144,0.0056,0.007936,0.017344,0.02,1.17485,0.01536
+752,309.225,3.23389,1.5904,0.016384,0.350208,0.007968,0.005504,0.00704,0.018208,0.018624,1.15037,0.016096
+753,277.113,3.60864,1.61229,0.016416,0.36704,0.007584,0.004704,0.008192,0.017888,0.018976,1.15629,0.0152
+754,299.59,3.33789,1.62528,0.017792,0.36928,0.007488,0.0048,0.008192,0.017728,0.019136,1.16493,0.015936
+755,273.431,3.65723,1.63021,0.016384,0.365984,0.006752,0.005696,0.007968,0.017056,0.019808,1.17552,0.01504
+756,329.552,3.03442,1.61158,0.016224,0.362816,0.006656,0.004256,0.008032,0.018304,0.01856,1.16067,0.016064
+757,276.869,3.61182,1.63075,0.016384,0.369376,0.006208,0.0056,0.008032,0.017088,0.019584,1.17235,0.016128
+758,307.392,3.25317,1.66995,0.016544,0.406176,0.006144,0.005792,0.007968,0.01696,0.018432,1.17568,0.016256
+759,296.898,3.36816,1.63638,0.016384,0.38496,0.006208,0.005664,0.008,0.018304,0.019232,1.16288,0.014752
+760,328.6,3.04321,1.60704,0.015616,0.347136,0.007552,0.004736,0.008192,0.017824,0.01904,1.17101,0.015936
+761,279.019,3.58398,1.6753,0.016384,0.41488,0.006912,0.005504,0.008,0.017312,0.020064,1.1713,0.014944
+762,259.405,3.85498,1.62077,0.016672,0.364128,0.006944,0.005504,0.008,0.017344,0.0184,1.16861,0.015168
+763,301.199,3.32007,1.64173,0.016384,0.380064,0.006816,0.0056,0.008032,0.017312,0.020448,1.17146,0.015616
+764,335.38,2.98169,1.6119,0.016576,0.354624,0.0072,0.004864,0.007968,0.0168,0.019712,1.16813,0.016032
+765,290.558,3.44165,1.70163,0.016352,0.4512,0.006208,0.006144,0.008,0.016672,0.020384,1.16112,0.015552
+766,332.792,3.00488,1.59603,0.015072,0.354048,0.006304,0.006048,0.008,0.016672,0.01984,1.15366,0.016384
+767,285.575,3.50171,1.91075,0.016384,0.644224,0.01728,0.005408,0.007968,0.017376,0.020448,1.16531,0.016352
+768,283.735,3.52441,1.72445,0.026656,0.444384,0.016384,0.005344,0.006976,0.018336,0.018496,1.17146,0.016416
+769,301.664,3.31494,1.66298,0.016384,0.417792,0.007328,0.004864,0.007968,0.01776,0.019296,1.1567,0.01488
+770,324.847,3.07837,1.60374,0.016224,0.349088,0.007488,0.004832,0.00816,0.017888,0.018976,1.16515,0.015936
+771,323.999,3.08643,1.59789,0.016128,0.356672,0.006784,0.004128,0.00816,0.018176,0.018688,1.15302,0.016128
+772,280.856,3.56055,1.6792,0.016096,0.409504,0.00688,0.00432,0.008192,0.017728,0.019136,1.17146,0.025888
+773,268.59,3.72314,1.67834,0.016384,0.431968,0.006304,0.005536,0.007968,0.017216,0.018464,1.15885,0.015648
+774,311.128,3.21411,1.63635,0.017504,0.369248,0.006464,0.005952,0.007904,0.016864,0.019616,1.17642,0.016384
+775,298.281,3.35254,1.60973,0.016384,0.3584,0.007872,0.004416,0.008192,0.018016,0.018848,1.16237,0.015232
+776,299.218,3.34204,1.65683,0.016384,0.403072,0.006528,0.005856,0.007968,0.016896,0.01984,1.1639,0.016384
+777,298.542,3.34961,1.65654,0.016416,0.39568,0.006208,0.006144,0.008,0.016704,0.020096,1.17171,0.015584
+778,296.984,3.36719,1.64131,0.016416,0.369472,0.007616,0.004672,0.008192,0.01808,0.018784,1.1817,0.016384
+779,321.558,3.10986,1.62067,0.016384,0.346624,0.006336,0.006144,0.008064,0.017824,0.019168,1.1849,0.015232
+780,295.037,3.3894,1.60976,0.016384,0.354304,0.0072,0.005088,0.008192,0.017568,0.0192,1.16541,0.016416
+781,313.126,3.1936,1.61251,0.016288,0.353088,0.007776,0.004512,0.008192,0.018112,0.018784,1.16938,0.016384
+782,263.087,3.80103,1.65498,0.016544,0.382816,0.006912,0.005536,0.007968,0.017152,0.018624,1.18333,0.016096
+783,154.292,6.4812,1.61587,0.016416,0.360352,0.006208,0.00608,0.007968,0.016672,0.019904,1.16733,0.014944
+784,266.962,3.74585,1.7105,0.01648,0.446784,0.018432,0.005632,0.007936,0.017152,0.01952,1.16384,0.01472
+785,250.597,3.99048,1.65126,0.016448,0.392864,0.006816,0.004288,0.008192,0.018432,0.019904,1.16794,0.016384
+786,294.782,3.39233,1.63318,0.01648,0.365376,0.0072,0.004832,0.007936,0.016896,0.019744,1.17834,0.016384
+787,295.868,3.37988,1.61485,0.01648,0.36544,0.00784,0.005504,0.007136,0.018336,0.018528,1.16054,0.01504
+788,321.079,3.1145,1.62042,0.015904,0.353184,0.007392,0.004864,0.007968,0.01664,0.019904,1.17818,0.016384
+789,253.638,3.94263,1.63242,0.016448,0.370784,0.007296,0.004992,0.008192,0.01744,0.019104,1.17178,0.016384
+790,339.494,2.94556,1.60534,0.017824,0.342624,0.0072,0.00512,0.008,0.016544,0.019968,1.17197,0.016096
+791,279.076,3.58325,1.62819,0.016352,0.369568,0.006208,0.005536,0.008,0.017184,0.02016,1.16966,0.01552
+792,325.752,3.06982,1.61334,0.016384,0.35568,0.006368,0.004544,0.008192,0.018368,0.018496,1.16922,0.016096
+793,287.661,3.47632,1.71139,0.016384,0.456256,0.006592,0.005728,0.007968,0.017024,0.01952,1.16627,0.015648
+794,302.355,3.30737,1.63133,0.016416,0.367712,0.00688,0.005536,0.007936,0.017312,0.018528,1.17514,0.015872
+795,277.601,3.60229,1.64413,0.016416,0.382688,0.0064,0.005376,0.008064,0.01728,0.019552,1.17238,0.015968
+796,343.538,2.91089,1.60358,0.016384,0.350208,0.007328,0.004864,0.008032,0.01664,0.01952,1.16422,0.016384
+797,223.948,4.46533,1.6681,0.016416,0.409568,0.007712,0.004576,0.008192,0.018432,0.018432,1.16918,0.015584
+798,317.421,3.15039,1.62611,0.016448,0.373888,0.006848,0.004224,0.008192,0.017856,0.01904,1.16442,0.0152
+799,282.035,3.54565,1.61587,0.016384,0.364544,0.006336,0.005952,0.008192,0.018048,0.018816,1.16266,0.014944
+800,312.815,3.19678,1.60768,0.016384,0.350144,0.006208,0.005504,0.007968,0.01728,0.019616,1.16819,0.016384
+801,295.633,3.38257,1.63622,0.01632,0.370592,0.006464,0.005888,0.007936,0.016896,0.02048,1.17558,0.016064
+802,302.444,3.3064,1.63552,0.016384,0.367616,0.00704,0.005504,0.008,0.01728,0.018528,1.17933,0.01584
+803,218.139,4.58423,1.68365,0.016448,0.410016,0.006176,0.006112,0.008192,0.0176,0.019296,1.17347,0.026336
+804,283.441,3.52808,1.63635,0.016384,0.376128,0.006848,0.004288,0.008,0.018112,0.018752,1.17146,0.016384
+805,323.539,3.09082,1.64253,0.016384,0.378208,0.006816,0.005536,0.007968,0.017216,0.019904,1.17539,0.015104
+806,260.03,3.8457,1.8113,0.016512,0.525024,0.006144,0.016384,0.008192,0.018304,0.018592,1.18576,0.016384
+807,278.829,3.58643,1.64406,0.016384,0.376832,0.006144,0.006144,0.008192,0.018016,0.01888,1.17757,0.015904
+808,285.356,3.50439,1.63472,0.016416,0.373088,0.007584,0.004704,0.008192,0.018144,0.01872,1.17312,0.014752
+809,284.247,3.51807,1.65139,0.015008,0.378048,0.006848,0.004224,0.008192,0.018144,0.01872,1.18717,0.01504
+810,280.548,3.56445,1.73875,0.016384,0.477184,0.007712,0.004576,0.008192,0.018304,0.019872,1.1713,0.015232
+811,304.309,3.28613,1.61181,0.016384,0.3584,0.007808,0.00448,0.008192,0.01776,0.019104,1.16448,0.0152
+812,264.993,3.77368,1.69667,0.016512,0.43616,0.007008,0.005504,0.007968,0.017216,0.018432,1.17283,0.01504
+813,295.101,3.38867,1.63853,0.016384,0.376928,0.00688,0.005536,0.008032,0.017248,0.019584,1.17235,0.015584
+814,273.742,3.65308,1.64365,0.016416,0.36656,0.007648,0.00464,0.008192,0.018208,0.018752,1.18736,0.015872
+815,284.168,3.51904,1.68758,0.016416,0.425376,0.00672,0.005664,0.007968,0.017088,0.02,1.17312,0.015232
+816,276.738,3.61353,1.77773,0.016384,0.5032,0.006848,0.004096,0.008192,0.02048,0.01968,1.1825,0.016352
+817,284.188,3.5188,1.65715,0.016384,0.389952,0.006208,0.005504,0.007968,0.017248,0.020192,1.17789,0.015808
+818,220.523,4.53467,1.76816,0.016512,0.486016,0.007232,0.005024,0.008192,0.01744,0.029696,1.17715,0.020896
+819,309.553,3.23047,1.65504,0.01632,0.396032,0.00768,0.004608,0.008192,0.018432,0.019744,1.1681,0.015936
+820,310.986,3.21558,1.66896,0.016192,0.413824,0.006624,0.004128,0.008192,0.017792,0.019072,1.1672,0.015936
+821,290.538,3.44189,1.63834,0.016416,0.372704,0.006144,0.005792,0.007968,0.017024,0.020096,1.17587,0.01632
+822,295.954,3.37891,1.66947,0.01648,0.401664,0.00784,0.004448,0.008192,0.017408,0.019072,1.17798,0.016384
+823,291.925,3.42554,1.64291,0.016512,0.376608,0.006848,0.004224,0.008192,0.01824,0.018624,1.1776,0.016064
+824,287.944,3.4729,1.69165,0.017536,0.414304,0.006432,0.00592,0.007936,0.016864,0.019616,1.18666,0.016384
+825,314.956,3.17505,1.63898,0.016448,0.375264,0.007328,0.004928,0.007936,0.016672,0.02048,1.17462,0.015296
+826,310.327,3.22241,1.70413,0.016448,0.434176,0.007424,0.004864,0.008192,0.017984,0.018816,1.18118,0.01504
+827,270.613,3.69531,1.61594,0.016448,0.365856,0.006624,0.004352,0.008224,0.017728,0.019136,1.16227,0.015296
+828,301.199,3.32007,1.65478,0.017504,0.392064,0.006176,0.00512,0.007168,0.018144,0.01872,1.1735,0.016384
+829,325.674,3.07056,1.62717,0.016384,0.363584,0.007072,0.005472,0.008,0.01728,0.01968,1.17408,0.015616
+830,285.615,3.50122,1.6849,0.016512,0.402912,0.006752,0.0056,0.008,0.01712,0.019872,1.1921,0.016032
+831,305.558,3.27271,1.68739,0.016384,0.417792,0.00752,0.004768,0.008192,0.018048,0.018816,1.17965,0.016224
+832,299.306,3.34106,1.67309,0.016448,0.415776,0.006304,0.005984,0.008192,0.01744,0.019168,1.16762,0.01616
+833,230.54,4.33765,1.69334,0.016384,0.434176,0.007712,0.004576,0.008192,0.018464,0.019616,1.16819,0.016032
+834,297.437,3.36206,1.68218,0.01648,0.410272,0.007584,0.004704,0.008192,0.017888,0.018976,1.1817,0.016384
+835,293.095,3.41187,1.62835,0.016384,0.369024,0.007584,0.004704,0.00816,0.016416,0.020128,1.16976,0.016192
+836,242.496,4.12378,1.88413,0.01648,0.616544,0.006208,0.006144,0.007936,0.017824,0.019328,1.17757,0.016096
+837,295.997,3.37842,1.66502,0.01648,0.395168,0.006144,0.006144,0.008096,0.017568,0.019424,1.1809,0.015104
+838,306.22,3.26562,1.66096,0.01744,0.386016,0.007584,0.004704,0.008192,0.01776,0.019104,1.18374,0.016416
+839,299.109,3.34326,1.6712,0.016384,0.404512,0.006816,0.004416,0.008192,0.018176,0.018688,1.17891,0.015104
+840,278.337,3.59277,1.68534,0.015936,0.41968,0.006848,0.005504,0.008,0.017216,0.018432,1.1776,0.016128
+841,330.776,3.02319,1.63482,0.015904,0.361408,0.006144,0.006144,0.008192,0.017824,0.01904,1.18486,0.015296
+842,287.156,3.48242,1.6777,0.016736,0.397632,0.008064,0.004224,0.008192,0.01744,0.019424,1.1897,0.016288
+843,324.538,3.0813,1.63869,0.016448,0.374976,0.00752,0.004768,0.008064,0.016512,0.020224,1.17542,0.014752
+844,288.248,3.46924,1.63731,0.015296,0.364512,0.006176,0.006144,0.00816,0.016416,0.019808,1.18442,0.016384
+845,277.733,3.60059,1.70816,0.016448,0.4416,0.006912,0.005504,0.007968,0.017312,0.019968,1.17606,0.016384
+846,290.476,3.44263,1.63027,0.016416,0.364576,0.00768,0.004608,0.008192,0.016384,0.019968,1.17616,0.016288
+847,321.255,3.11279,1.64291,0.016512,0.385376,0.006656,0.004096,0.008192,0.01808,0.018784,1.16941,0.015808
+848,319.526,3.12964,1.64864,0.016384,0.384288,0.00688,0.004096,0.008192,0.018336,0.018528,1.17706,0.01488
+849,261.025,3.83105,1.64867,0.016384,0.38032,0.006752,0.00416,0.008128,0.018432,0.019744,1.18003,0.01472
+850,308.62,3.24023,1.64582,0.016384,0.37616,0.006816,0.005568,0.008,0.017152,0.018592,1.18106,0.016096
+851,271.258,3.68652,1.68694,0.016416,0.409568,0.006144,0.005824,0.007936,0.01696,0.020192,1.18813,0.015776
+852,299,3.34448,1.64986,0.016416,0.376288,0.006656,0.005216,0.007072,0.018464,0.019584,1.18419,0.015968
+853,290.62,3.44092,1.67018,0.016384,0.378912,0.006112,0.005728,0.007936,0.018176,0.01936,1.20186,0.015712
+854,305.307,3.27539,1.65114,0.016352,0.3896,0.007552,0.004736,0.008096,0.01648,0.02048,1.17251,0.015328
+855,274.604,3.6416,1.65299,0.016448,0.39136,0.007168,0.004864,0.007936,0.016928,0.019488,1.17405,0.014752
+856,328.785,3.0415,1.64454,0.016384,0.37296,0.006208,0.00608,0.008192,0.017408,0.0192,1.18195,0.01616
+857,269.882,3.70532,1.66093,0.016384,0.388384,0.006816,0.00416,0.008192,0.017856,0.019008,1.18493,0.0152
+858,325.596,3.07129,1.64698,0.016384,0.369088,0.006272,0.006016,0.008192,0.017696,0.01888,1.18813,0.01632
+859,261.191,3.82861,1.6351,0.01632,0.379744,0.007584,0.004704,0.007872,0.0168,0.02032,1.16701,0.014752
+860,264.805,3.77637,1.68454,0.01632,0.424032,0.0072,0.004832,0.007968,0.016832,0.01856,1.1728,0.016
+861,301.265,3.31934,1.6343,0.017408,0.367616,0.006144,0.0056,0.008032,0.017088,0.019584,1.1777,0.015136
+862,233.297,4.28638,1.63606,0.016416,0.354784,0.00736,0.004864,0.007968,0.016672,0.02048,1.19133,0.016192
+863,276.085,3.62207,1.66707,0.016384,0.38624,0.006848,0.005504,0.008032,0.017312,0.02,1.19037,0.016384
+864,318.854,3.13623,1.62048,0.01632,0.355968,0.006944,0.005504,0.007968,0.017408,0.019616,1.17437,0.016384
+865,327.89,3.0498,1.63488,0.016416,0.354848,0.007392,0.004832,0.007968,0.016672,0.020096,1.19133,0.015328
+866,313.437,3.19043,1.65178,0.016416,0.37248,0.006368,0.006048,0.007968,0.016704,0.019744,1.19021,0.01584
+867,276.178,3.62085,1.64048,0.018208,0.370912,0.006144,0.005856,0.008,0.016864,0.019584,1.17955,0.01536
+868,317.569,3.14893,1.63619,0.016416,0.354304,0.006272,0.006016,0.008192,0.016384,0.01984,1.19258,0.016192
+869,265.577,3.76538,1.70419,0.016608,0.421728,0.006336,0.005408,0.008,0.017312,0.018432,1.19398,0.016384
+870,306.564,3.26196,1.62963,0.0176,0.357184,0.0072,0.005088,0.008192,0.0176,0.019072,1.18189,0.015808
+871,269.049,3.7168,1.65654,0.016384,0.374784,0.0072,0.005088,0.008192,0.017536,0.019232,1.19203,0.016096
+872,308.852,3.23779,1.6727,0.016544,0.399616,0.007264,0.005024,0.008192,0.01776,0.019136,1.18307,0.016096
+873,278.602,3.58936,1.66211,0.016384,0.379936,0.006848,0.004384,0.008192,0.017856,0.019008,1.19389,0.015616
+874,320.2,3.12305,1.64864,0.016384,0.368672,0.007712,0.004544,0.008192,0.01808,0.018784,1.18989,0.016384
+875,253.669,3.94214,1.68301,0.016384,0.40256,0.006848,0.005536,0.008,0.017376,0.018432,1.19194,0.015936
+876,324.59,3.08081,1.64051,0.016576,0.360608,0.006432,0.005952,0.007968,0.016768,0.019872,1.1903,0.016032
+877,295.271,3.38672,1.62915,0.015328,0.352256,0.008192,0.005536,0.007936,0.017248,0.019616,1.18819,0.014848
+878,324.719,3.07959,1.62829,0.016256,0.352256,0.006368,0.006048,0.007968,0.016704,0.019872,1.18765,0.015168
+879,283.225,3.53076,1.78176,0.016384,0.505856,0.007904,0.004384,0.008192,0.018176,0.018752,1.18746,0.014656
+880,285.774,3.49927,1.64253,0.016384,0.360448,0.0072,0.005088,0.008192,0.017984,0.01888,1.19194,0.016416
+881,265.337,3.7688,1.67027,0.016384,0.391168,0.006144,0.006144,0.008192,0.017888,0.018976,1.1897,0.01568
+882,325.002,3.0769,1.62851,0.016064,0.352928,0.007264,0.005024,0.008192,0.016384,0.019904,1.18637,0.016384
+883,305.946,3.26855,1.69725,0.016224,0.429248,0.006848,0.004384,0.008192,0.01824,0.018624,1.17965,0.01584
+884,304.128,3.28809,1.66912,0.016384,0.392928,0.006432,0.00592,0.007968,0.016832,0.020288,1.18598,0.016384
+885,278.355,3.59253,1.6425,0.016384,0.37584,0.006848,0.004384,0.008192,0.018048,0.018816,1.17926,0.01472
+886,339.213,2.948,1.65482,0.016384,0.37888,0.006144,0.006144,0.008192,0.017472,0.01904,1.18746,0.015104
+887,302.288,3.30811,1.71766,0.016544,0.448736,0.007488,0.0048,0.008192,0.018432,0.019552,1.17837,0.015552
+888,325.933,3.06812,1.6488,0.016576,0.367264,0.007776,0.004512,0.009504,0.01712,0.018432,1.19146,0.01616
+889,285.396,3.50391,1.65734,0.016416,0.37328,0.006176,0.006144,0.008192,0.017472,0.019392,1.19398,0.016288
+890,317.273,3.15186,1.64246,0.016384,0.384576,0.006592,0.005856,0.007968,0.016896,0.01952,1.16832,0.016352
+891,307.739,3.24951,1.64662,0.016384,0.380928,0.007808,0.005504,0.007168,0.018272,0.018592,1.17686,0.015104
+892,323.641,3.08984,1.63933,0.016448,0.369056,0.006592,0.005152,0.007136,0.018432,0.01856,1.18298,0.014976
+893,277.846,3.59912,1.64342,0.01648,0.373568,0.007328,0.00496,0.008192,0.017632,0.019104,1.17981,0.016352
+894,276.514,3.61646,1.79533,0.016384,0.52224,0.0072,0.004832,0.008,0.016832,0.019456,1.18413,0.016256
+895,266.719,3.74927,1.74106,0.016416,0.468352,0.006848,0.005504,0.007968,0.017376,0.019488,1.18413,0.014976
+896,315.562,3.16895,1.67523,0.016384,0.393248,0.007776,0.005504,0.007168,0.01808,0.018784,1.19194,0.016352
+897,282.463,3.54028,1.65107,0.016576,0.370752,0.00624,0.005632,0.007968,0.01696,0.019808,1.1919,0.015232
+898,332.225,3.01001,1.67325,0.016384,0.386752,0.006464,0.00592,0.007968,0.016832,0.02048,1.19603,0.016416
+899,283.696,3.5249,1.66301,0.016416,0.388928,0.006304,0.005472,0.008,0.017248,0.020288,1.18397,0.016384
+900,294.846,3.3916,1.6465,0.016384,0.370688,0.00784,0.004448,0.008192,0.018368,0.018496,1.18579,0.016288
+901,306.472,3.26294,1.64278,0.016224,0.36896,0.007712,0.004576,0.008192,0.01744,0.01936,1.18534,0.014976
+902,240.46,4.15869,1.69574,0.016416,0.428,0.007552,0.004736,0.008064,0.016512,0.019712,1.17837,0.016384
+903,280.202,3.56885,1.66298,0.016384,0.395264,0.0072,0.005088,0.008192,0.017888,0.018976,1.17891,0.015072
+904,302.243,3.30859,1.67334,0.016512,0.377088,0.007328,0.00496,0.008192,0.01744,0.01936,1.20634,0.016128
+905,279.839,3.57349,1.65872,0.016384,0.373888,0.006816,0.005536,0.006976,0.018432,0.019904,1.19456,0.016224
+906,314.593,3.17871,1.66707,0.016384,0.398848,0.006592,0.005504,0.007936,0.01712,0.018656,1.17965,0.016384
+907,316.881,3.15576,1.65683,0.016416,0.384,0.006944,0.005536,0.007008,0.018112,0.019712,1.18272,0.016384
+908,291.863,3.42627,1.65936,0.016608,0.383328,0.006144,0.0056,0.007968,0.017152,0.019808,1.18646,0.016288
+909,297.545,3.36084,1.65126,0.015456,0.376704,0.007456,0.004864,0.00816,0.01808,0.018784,1.18579,0.015968
+910,269.014,3.71729,1.6671,0.016384,0.376288,0.006688,0.005664,0.007968,0.017088,0.018432,1.20349,0.015104
+911,315.66,3.16797,1.64675,0.016384,0.36864,0.007488,0.0048,0.008192,0.0184,0.01856,1.18954,0.014752
+912,284.682,3.5127,1.64906,0.01616,0.383168,0.006848,0.005536,0.007968,0.017248,0.0184,1.1776,0.016128
+913,334.258,2.9917,1.63757,0.016416,0.362464,0.00736,0.004928,0.008032,0.016544,0.020096,1.18618,0.015552
+914,272.939,3.66382,1.67731,0.017472,0.39808,0.006336,0.006016,0.007968,0.016768,0.019808,1.1897,0.015168
+915,326.323,3.06445,1.6687,0.016416,0.380448,0.006592,0.00528,0.00704,0.0184,0.020064,1.1985,0.015968
+916,236.49,4.22852,1.72397,0.016384,0.4336,0.00672,0.004128,0.00816,0.018304,0.01856,1.20218,0.015936
+917,307.924,3.24756,1.66083,0.016384,0.374368,0.00656,0.005824,0.008,0.016896,0.02048,1.19603,0.016288
+918,274.035,3.64917,1.6648,0.016416,0.388192,0.006848,0.005504,0.006976,0.018432,0.019808,1.18646,0.01616
+919,326.791,3.06006,1.64816,0.016384,0.361696,0.006848,0.005536,0.008512,0.016768,0.02048,1.19603,0.015904
+920,270.703,3.69409,1.72442,0.016384,0.431136,0.006912,0.005504,0.007008,0.018464,0.020416,1.20221,0.016384
+921,316.001,3.16455,1.67869,0.015968,0.39776,0.006304,0.005472,0.007936,0.017312,0.02016,1.19226,0.01552
+922,314.496,3.17969,1.6473,0.016672,0.37712,0.006336,0.005312,0.008,0.017408,0.018432,1.1817,0.01632
+923,319.227,3.13257,1.64794,0.016384,0.3584,0.007872,0.005536,0.007072,0.018208,0.020032,1.19875,0.01568
+924,312.29,3.20215,1.72698,0.01616,0.437184,0.006144,0.005792,0.007968,0.01696,0.01968,1.20093,0.01616
+925,325.157,3.07544,1.63859,0.016448,0.37328,0.00768,0.004608,0.008192,0.017888,0.018976,1.17555,0.015968
+926,299.525,3.33862,1.72688,0.016096,0.438976,0.00784,0.005504,0.007136,0.018048,0.018816,1.19808,0.016384
+927,294.697,3.39331,1.64454,0.016384,0.359552,0.006976,0.005504,0.00832,0.01696,0.01952,1.19603,0.015296
+928,327.68,3.05176,1.64374,0.016384,0.355648,0.006848,0.005664,0.007968,0.017088,0.018432,1.19981,0.015904
+929,255.425,3.91504,1.67686,0.016384,0.364128,0.00656,0.00528,0.008512,0.016928,0.01952,1.22362,0.015936
+930,312.696,3.198,1.68006,0.016384,0.399328,0.006848,0.005504,0.008,0.017248,0.018432,1.19354,0.014784
+931,317.815,3.14648,1.63482,0.016032,0.361312,0.006144,0.005824,0.007968,0.016928,0.02032,1.18538,0.014912
+932,271.798,3.6792,1.69949,0.016384,0.413696,0.006144,0.016384,0.00928,0.017216,0.018592,1.18576,0.016032
+933,304.151,3.28784,1.63862,0.01648,0.35104,0.00752,0.004768,0.008032,0.016736,0.019648,1.19872,0.01568
+934,276.365,3.61841,1.74694,0.01632,0.46032,0.006688,0.004096,0.008192,0.01792,0.018976,1.19805,0.016384
+935,295.847,3.38013,1.70022,0.016128,0.426624,0.007776,0.004512,0.008192,0.017856,0.019008,1.1848,0.015328
+936,272.34,3.67188,1.74032,0.01648,0.45008,0.01696,0.005792,0.007968,0.01696,0.028672,1.18134,0.016064
+937,329.977,3.03052,1.63661,0.016416,0.357856,0.006912,0.004064,0.008192,0.018048,0.018816,1.19149,0.014816
+938,289.327,3.4563,1.78451,0.01648,0.49648,0.007712,0.005632,0.007136,0.018112,0.018752,1.19808,0.016128
+939,271.564,3.68237,1.66054,0.016384,0.38912,0.006144,0.005632,0.008,0.017088,0.018432,1.18374,0.016
+940,308.992,3.23633,1.64269,0.016448,0.363968,0.006816,0.004096,0.008224,0.01808,0.018752,1.18989,0.016416
+941,318.557,3.13916,1.69792,0.016256,0.399264,0.006464,0.005888,0.007968,0.018432,0.018912,1.2097,0.01504
+942,269.545,3.70996,1.62426,0.016928,0.352256,0.006144,0.005664,0.007872,0.017184,0.018432,1.18374,0.016032
+943,285.754,3.49951,1.65482,0.016384,0.374784,0.006144,0.005664,0.007968,0.017088,0.019584,1.19242,0.014784
+944,289.675,3.45215,1.64477,0.016352,0.366464,0.006528,0.005856,0.007968,0.016864,0.019712,1.18861,0.016416
+945,295.932,3.37915,1.65018,0.016384,0.374784,0.007296,0.004992,0.008192,0.017792,0.019104,1.18576,0.015872
+946,326.505,3.06274,1.64045,0.016512,0.362368,0.00736,0.004928,0.008192,0.017984,0.01888,1.1889,0.015328
+947,251.042,3.9834,1.69629,0.016448,0.417888,0.006784,0.00416,0.008128,0.018208,0.018656,1.18989,0.016128
+948,284.208,3.51855,1.63696,0.016512,0.36272,0.006368,0.00592,0.007968,0.018208,0.018976,1.1839,0.016384
+949,313.389,3.19092,1.66691,0.016384,0.374496,0.006432,0.005952,0.008,0.016768,0.020128,1.20253,0.016224
+950,301.887,3.3125,1.66752,0.016384,0.387008,0.006624,0.005952,0.008384,0.01776,0.019104,1.19139,0.014912
+951,292.676,3.41675,1.65478,0.016384,0.370688,0.007552,0.004768,0.008096,0.017792,0.019168,1.19574,0.014592
+952,326.817,3.05981,1.66602,0.01648,0.383872,0.007456,0.004832,0.008192,0.017536,0.018976,1.19229,0.016384
+953,271.582,3.68213,1.67389,0.016224,0.380832,0.006944,0.004224,0.008192,0.01824,0.01872,1.20573,0.014784
+954,321.205,3.11328,1.65542,0.016384,0.362528,0.007008,0.005504,0.007936,0.01728,0.02016,1.2025,0.016128
+955,289.941,3.44897,1.6937,0.016384,0.396608,0.006848,0.004096,0.008192,0.018176,0.018688,1.21002,0.014688
+956,265.664,3.76416,1.74006,0.016416,0.452288,0.006432,0.00592,0.008064,0.016736,0.018432,1.19978,0.016
+957,272.105,3.67505,1.67072,0.016384,0.382976,0.007296,0.004864,0.00832,0.018208,0.020384,1.19635,0.015936
+958,307.531,3.25171,1.66074,0.016384,0.364544,0.006144,0.006144,0.007968,0.016608,0.019712,1.20704,0.016192
+959,255.76,3.90991,1.69165,0.016384,0.405504,0.007488,0.0048,0.008,0.016576,0.02,1.19776,0.015136
+960,281.28,3.55518,1.75923,0.017408,0.472064,0.00816,0.005504,0.007968,0.017248,0.018528,1.19597,0.016384
+961,260.676,3.83618,1.68678,0.016416,0.388352,0.006848,0.005504,0.007968,0.017088,0.018656,1.21037,0.015584
+962,280.759,3.56177,1.6815,0.01632,0.38976,0.006528,0.005888,0.008448,0.01792,0.018944,1.20166,0.016032
+963,287.64,3.47656,1.66902,0.016256,0.37984,0.007488,0.0048,0.008192,0.017952,0.018912,1.19997,0.015616
+964,270.47,3.69727,1.69411,0.016544,0.413984,0.007808,0.005504,0.007168,0.0184,0.019456,1.19014,0.015104
+965,272.83,3.66528,1.75888,0.016416,0.456672,0.007552,0.004736,0.008192,0.018208,0.018656,1.21242,0.016032
+966,288.796,3.46265,1.68755,0.016416,0.407552,0.007872,0.005504,0.007072,0.018432,0.019936,1.18835,0.016416
+967,329.631,3.03369,1.66176,0.016448,0.37264,0.007008,0.005504,0.007968,0.017248,0.019872,1.20058,0.014496
+968,255.489,3.91406,1.79501,0.016416,0.516992,0.006176,0.006112,0.008192,0.017536,0.01936,1.18899,0.015232
+969,290.476,3.44263,1.68797,0.016416,0.381056,0.006848,0.004192,0.008192,0.018432,0.020192,1.2168,0.01584
+970,272.848,3.66504,1.81341,0.016256,0.510976,0.00736,0.004864,0.014432,0.018336,0.01984,1.20493,0.016416
+971,295.655,3.38232,1.6751,0.016576,0.381568,0.00784,0.00448,0.00816,0.017728,0.019168,1.2041,0.015488
+972,282.191,3.5437,1.68512,0.016416,0.387008,0.006752,0.004192,0.008096,0.018112,0.018752,1.20976,0.016032
+973,307.993,3.24683,1.65683,0.016384,0.376832,0.007616,0.004672,0.008192,0.018208,0.018656,1.19114,0.015136
+974,297.372,3.36279,1.66707,0.01648,0.382304,0.006816,0.004128,0.00816,0.018176,0.018688,1.19603,0.016288
+975,329.738,3.03271,1.65069,0.016384,0.3744,0.006528,0.005184,0.007136,0.018208,0.018656,1.18979,0.0144
+976,332.252,3.00977,1.64784,0.016384,0.36432,0.0064,0.006016,0.007936,0.017984,0.019232,1.1935,0.016064
+977,243.505,4.10669,1.77322,0.016832,0.485376,0.007552,0.004768,0.00816,0.018368,0.019584,1.19494,0.017632
+978,265.922,3.7605,1.6688,0.016384,0.389568,0.007424,0.004864,0.008192,0.017824,0.021088,1.18752,0.015936
+979,309.74,3.22852,1.67069,0.01648,0.387328,0.007744,0.004544,0.009472,0.017152,0.019776,1.19261,0.015584
+980,286.293,3.49292,1.67405,0.016672,0.375296,0.006176,0.005632,0.008,0.017088,0.020224,1.20858,0.016384
+981,295.186,3.3877,1.67616,0.016384,0.375584,0.00624,0.006144,0.008,0.017856,0.01904,1.21203,0.01488
+982,289.429,3.45508,1.69389,0.01632,0.393472,0.007776,0.004512,0.008192,0.017568,0.019296,1.21149,0.015264
+983,313.533,3.18945,1.69165,0.016384,0.391168,0.007552,0.004736,0.008192,0.018432,0.01952,1.2103,0.01536
+984,273.285,3.65918,1.67392,0.016544,0.383232,0.006528,0.005824,0.008,0.016896,0.019488,1.20112,0.016288
+985,311.01,3.21533,1.68467,0.016384,0.380288,0.006784,0.005568,0.008032,0.01712,0.019552,1.21539,0.015552
+986,262.396,3.81104,1.69165,0.016416,0.388928,0.006304,0.00608,0.007936,0.016704,0.019584,1.21334,0.016352
+987,298.913,3.34546,1.68992,0.016384,0.395936,0.006144,0.006144,0.008192,0.017824,0.01904,1.20422,0.016032
+988,295.591,3.38306,1.65734,0.016512,0.371072,0.007296,0.004992,0.007968,0.016608,0.018432,1.19808,0.016384
+989,309.857,3.22729,1.6856,0.01648,0.384928,0.007424,0.004864,0.008192,0.01808,0.018784,1.2121,0.014752
+990,303.318,3.29688,1.74368,0.01648,0.443104,0.007552,0.004736,0.008192,0.018016,0.018848,1.21037,0.016384
+991,293.41,3.4082,1.66829,0.016384,0.382976,0.007712,0.004576,0.008192,0.018304,0.01856,1.19594,0.015648
+992,310.868,3.2168,1.69136,0.016384,0.413152,0.006688,0.005696,0.007936,0.01712,0.01968,1.18861,0.016096
+993,272.558,3.66895,1.65907,0.01648,0.37424,0.006752,0.004192,0.008096,0.018304,0.019648,1.19677,0.014592
+994,320.35,3.12158,1.66896,0.016512,0.370944,0.007648,0.00464,0.008192,0.01776,0.019104,1.208,0.01616
+995,251.674,3.97339,1.69661,0.016288,0.401984,0.006528,0.005344,0.008,0.017376,0.03072,1.19507,0.015296
+996,300.933,3.323,1.66253,0.016672,0.380384,0.006848,0.005536,0.007936,0.017344,0.018432,1.19318,0.016192
+997,293.999,3.40137,1.65008,0.016384,0.36448,0.006208,0.005568,0.007968,0.017184,0.019936,1.19658,0.015776
+998,317.864,3.146,1.65043,0.01632,0.371296,0.006144,0.005824,0.007968,0.016928,0.020352,1.18986,0.015744
+999,254.536,3.92871,1.6687,0.016384,0.382176,0.006848,0.005504,0.008,0.017312,0.019712,1.1968,0.015968
+1000,309.085,3.23535,1.65318,0.016448,0.368,0.006944,0.005504,0.00848,0.01696,0.019648,1.19613,0.015072
+1001,255.202,3.91846,1.7256,0.016256,0.432064,0.006432,0.005984,0.008032,0.01776,0.019424,1.20403,0.015616
+1002,283.029,3.5332,1.70362,0.016384,0.407552,0.0072,0.005088,0.008192,0.01648,0.020128,1.20653,0.016064
+1003,300.337,3.32959,1.67568,0.01632,0.372352,0.006848,0.00432,0.008192,0.018144,0.018752,1.21443,0.01632
+1004,310.444,3.22119,1.67037,0.017472,0.377792,0.007936,0.004352,0.008192,0.017408,0.019456,1.20195,0.015808
+1005,281.473,3.55273,1.65962,0.016192,0.369536,0.00736,0.004928,0.008192,0.017664,0.019072,1.2016,0.015072
+1006,314.255,3.18213,1.6385,0.016224,0.357888,0.006912,0.00416,0.008128,0.018176,0.018688,1.19194,0.016384
+1007,262.463,3.81006,1.66912,0.016416,0.380896,0.006144,0.005792,0.007936,0.016992,0.019936,1.20006,0.014944
+1008,234.593,4.2627,1.77363,0.016352,0.458848,0.00624,0.006048,0.008192,0.017696,0.018752,1.22512,0.016384
+1009,319.551,3.12939,1.67875,0.016416,0.3704,0.0064,0.005952,0.007936,0.016832,0.019712,1.21933,0.015776
+1010,302.377,3.30713,1.67235,0.016384,0.376,0.00688,0.005504,0.007968,0.01728,0.018496,1.20784,0.016
+1011,293.957,3.40186,1.67718,0.016512,0.38512,0.007712,0.004608,0.00816,0.018048,0.018816,1.20218,0.016032
+1012,330.536,3.02539,1.66925,0.01648,0.36672,0.006336,0.00608,0.007968,0.016672,0.019648,1.21318,0.01616
+1013,266.216,3.75635,1.68906,0.016352,0.391424,0.007968,0.005504,0.007008,0.018432,0.020064,1.20669,0.015616
+1014,327.89,3.0498,1.64346,0.016384,0.357152,0.006272,0.005472,0.006848,0.0184,0.018432,1.19917,0.015328
+1015,294.761,3.39258,1.71827,0.016384,0.436224,0.006144,0.006144,0.00816,0.01648,0.019968,1.19376,0.015008
+1016,317.028,3.1543,1.68698,0.016416,0.388352,0.006848,0.005504,0.007936,0.017312,0.018432,1.21037,0.015808
+1017,293.789,3.40381,1.86778,0.016384,0.59392,0.006144,0.005888,0.007776,0.017056,0.020128,1.1841,0.016384
+1018,306.541,3.26221,1.69898,0.016384,0.416992,0.00688,0.005536,0.007936,0.017184,0.01856,1.19363,0.015872
+1019,290.455,3.44287,1.67117,0.016384,0.392736,0.006624,0.004288,0.008,0.018176,0.018688,1.19181,0.014464
+1020,333.986,2.99414,1.64659,0.016416,0.35168,0.006688,0.00592,0.007968,0.016832,0.020352,1.20442,0.01632
+1021,320.401,3.12109,1.67526,0.014336,0.387072,0.007776,0.004512,0.008224,0.018048,0.018816,1.2001,0.016384
+1022,299.371,3.34033,1.66381,0.016544,0.373408,0.006144,0.006144,0.008192,0.017536,0.018976,1.20173,0.015136
+1023,265.182,3.771,1.73494,0.01648,0.441536,0.006848,0.004416,0.008192,0.018304,0.019712,1.20458,0.01488
+1024,297.674,3.35938,1.7015,0.016416,0.415712,0.007616,0.004672,0.008192,0.017984,0.018592,1.19632,0.016
+1025,295.441,3.38477,1.73261,0.016384,0.452288,0.006464,0.00592,0.008416,0.01808,0.018784,1.1912,0.015072
+1026,329.844,3.03174,1.65632,0.016384,0.372736,0.0072,0.005088,0.008192,0.0184,0.018464,1.19376,0.016096
+1027,307.785,3.24902,1.66723,0.016352,0.378048,0.006848,0.004416,0.008192,0.018144,0.01872,1.20166,0.014848
+1028,314.014,3.18457,1.67322,0.016384,0.382624,0.006496,0.005888,0.007936,0.016896,0.019584,1.20102,0.016384
+1029,321.81,3.10742,1.65478,0.016416,0.369248,0.00624,0.006112,0.008064,0.016576,0.020352,1.19606,0.015712
+1030,295.655,3.38232,1.6617,0.01648,0.368736,0.00672,0.00608,0.007968,0.016672,0.01984,1.20282,0.016384
+1031,305.034,3.27832,1.66298,0.016384,0.370688,0.007232,0.005056,0.008192,0.017888,0.018976,1.20218,0.016384
+1032,282.951,3.53418,1.66528,0.016448,0.369376,0.006368,0.006016,0.007968,0.016704,0.020128,1.2063,0.015968
+1033,302.556,3.30518,1.65322,0.016352,0.355904,0.006848,0.00432,0.008192,0.018016,0.01888,1.20982,0.01488
+1034,262.06,3.81592,1.7248,0.016512,0.424608,0.007328,0.004928,0.008192,0.017952,0.018912,1.21037,0.016
+1035,305.58,3.27246,1.69229,0.016416,0.410208,0.006144,0.006144,0.00816,0.018016,0.018912,1.19194,0.016352
+1036,279.133,3.58252,1.668,0.016576,0.381056,0.006752,0.004288,0.008,0.018432,0.018432,1.19808,0.016384
+1037,311.957,3.20557,1.66118,0.01648,0.364768,0.007808,0.00448,0.008192,0.017728,0.019136,1.2063,0.016288
+1038,275.528,3.62939,1.67526,0.017568,0.381792,0.007904,0.005504,0.007072,0.017888,0.018976,1.20355,0.015008
+1039,304.671,3.28223,1.6528,0.01616,0.35424,0.006848,0.004128,0.008192,0.018432,0.019616,1.20918,0.016
+1040,270.542,3.69629,1.67546,0.01632,0.385216,0.006144,0.006144,0.00816,0.016416,0.019904,1.20198,0.015168
+1041,313.87,3.18604,1.65891,0.016384,0.371712,0.006848,0.005504,0.007104,0.018464,0.020064,1.1975,0.015328
+1042,275.158,3.63428,1.65315,0.016512,0.35616,0.006848,0.005568,0.007968,0.017088,0.018528,1.20832,0.01616
+1043,297.199,3.36475,1.66515,0.016416,0.372768,0.007744,0.004512,0.008192,0.017664,0.01888,1.20435,0.014624
+1044,208.151,4.8042,1.67571,0.016448,0.389216,0.006432,0.00528,0.008512,0.016928,0.018432,1.1991,0.01536
+1045,290.167,3.44629,1.67738,0.016416,0.386624,0.006592,0.005824,0.007968,0.01696,0.019744,1.20214,0.015104
+1046,293.032,3.4126,1.71834,0.016384,0.422432,0.007776,0.004512,0.008192,0.018112,0.018752,1.20627,0.015904
+1047,265.079,3.77246,1.71722,0.01648,0.428864,0.006208,0.005472,0.014688,0.016704,0.019776,1.19264,0.016384
+1048,277.62,3.60205,1.67322,0.016384,0.376832,0.007744,0.004544,0.009504,0.01712,0.018432,1.2073,0.01536
+1049,294.846,3.3916,1.71994,0.016384,0.42176,0.006272,0.005568,0.007936,0.017216,0.019712,1.20909,0.016
+1050,306.129,3.2666,1.69232,0.016448,0.39584,0.006144,0.006144,0.008192,0.017568,0.019104,1.20765,0.015232
+1051,293.578,3.40625,1.69027,0.016416,0.405984,0.006304,0.004096,0.008192,0.01808,0.018784,1.19709,0.015328
+1052,320.702,3.11816,1.67571,0.016416,0.389152,0.006496,0.005216,0.007072,0.01824,0.018656,1.1991,0.01536
+1053,300.867,3.32373,1.65616,0.016416,0.360416,0.00624,0.006048,0.008192,0.017408,0.019456,1.20624,0.015744
+1054,312.243,3.20264,1.68182,0.01648,0.381088,0.00672,0.005696,0.007936,0.017088,0.02,1.21085,0.015968
+1055,277.695,3.60107,1.66502,0.016384,0.382976,0.006144,0.006144,0.00816,0.01744,0.019168,1.19222,0.016384
+1056,287.237,3.48145,1.65501,0.016416,0.37088,0.006112,0.006144,0.008192,0.016384,0.020032,1.19552,0.015328
+1057,283.343,3.5293,1.67523,0.016384,0.374752,0.006176,0.006144,0.008,0.016576,0.020096,1.21075,0.016352
+1058,312.815,3.19678,1.6855,0.016384,0.392448,0.006464,0.004544,0.008192,0.017824,0.01904,1.20422,0.016384
+1059,302.243,3.30859,1.67565,0.016416,0.386848,0.006688,0.004224,0.008064,0.018208,0.018656,1.20144,0.015104
+1060,280.586,3.56396,1.66016,0.016416,0.372704,0.007616,0.004672,0.008192,0.017856,0.019008,1.19792,0.015776
+1061,306.816,3.25928,1.66883,0.016384,0.374368,0.00656,0.00512,0.0072,0.018272,0.01856,1.20627,0.016096
+1062,272.268,3.67285,1.66502,0.016384,0.378656,0.006368,0.005344,0.006944,0.018304,0.01856,1.19808,0.016384
+1063,305.489,3.27344,1.68816,0.016256,0.387776,0.006144,0.006144,0.008192,0.017792,0.019008,1.21197,0.01488
+1064,263.171,3.7998,1.676,0.016544,0.387712,0.007456,0.004832,0.008192,0.018176,0.018688,1.19808,0.01632
+1065,295.783,3.38086,1.6896,0.016416,0.406688,0.006848,0.004224,0.008192,0.018112,0.018752,1.1952,0.015168
+1066,283.499,3.52734,1.67514,0.016416,0.391136,0.006176,0.006144,0.008128,0.016512,0.019616,1.19478,0.016224
+1067,285.794,3.49902,1.68086,0.016384,0.394592,0.006816,0.00416,0.008128,0.017696,0.019168,1.19795,0.015968
+1068,293.032,3.4126,1.67814,0.016544,0.386944,0.006848,0.004192,0.008192,0.0176,0.018944,1.2025,0.016384
+1069,307.646,3.25049,1.66784,0.016416,0.37552,0.006144,0.0056,0.007936,0.017184,0.019456,1.2047,0.01488
+1070,268.449,3.7251,1.69562,0.016608,0.40752,0.00624,0.006048,0.008192,0.017472,0.018912,1.19856,0.016064
+1071,318.606,3.13867,1.66438,0.016416,0.374368,0.006528,0.005216,0.007072,0.018432,0.018432,1.20218,0.015744
+1072,293.536,3.40674,1.65683,0.016384,0.370112,0.00672,0.00576,0.007968,0.016992,0.019744,1.19629,0.016864
+1073,311.862,3.20654,1.64829,0.016352,0.360416,0.00624,0.00544,0.008,0.01728,0.020064,1.1985,0.016
+1074,222.899,4.48633,2.56051,0.016256,1.27658,0.007584,0.004672,0.008192,0.018016,0.018848,1.19402,0.016352
+1075,287.56,3.47754,1.6609,0.016,0.369024,0.00736,0.00432,0.007968,0.017216,0.018624,1.20403,0.016352
+1076,263.85,3.79004,1.73008,0.016544,0.438304,0.007328,0.004832,0.008,0.016704,0.019616,1.20304,0.015712
+1077,286.073,3.49561,1.6937,0.016384,0.38816,0.006848,0.004352,0.008192,0.017888,0.018976,1.21754,0.01536
+1078,306.358,3.26416,1.78739,0.016384,0.48304,0.006496,0.005216,0.007264,0.01824,0.018432,1.21651,0.015808
+1079,254.442,3.93018,1.74227,0.016352,0.454688,0.006592,0.00512,0.007168,0.018112,0.018752,1.19994,0.015552
+1080,304.128,3.28809,1.68445,0.016448,0.394016,0.006272,0.006048,0.008032,0.01664,0.018464,1.20214,0.016384
+1081,310.538,3.22021,1.6527,0.016416,0.364512,0.007296,0.004992,0.008192,0.018368,0.018496,1.19808,0.016352
+1082,306.495,3.2627,1.6553,0.016384,0.370464,0.006848,0.00608,0.008032,0.017888,0.01904,1.19414,0.016416
+1083,308.946,3.23682,1.68726,0.016352,0.39376,0.007648,0.00464,0.008192,0.017664,0.019072,1.20435,0.015584
+1084,272.087,3.67529,1.66582,0.016512,0.377504,0.007296,0.004896,0.008,0.018304,0.018848,1.19939,0.015072
+1085,298.151,3.354,1.672,0.016416,0.38912,0.006816,0.005504,0.008,0.01728,0.018496,1.19568,0.014688
+1086,249.058,4.01514,1.68141,0.01744,0.38192,0.007808,0.005504,0.007168,0.018336,0.018528,1.20832,0.016384
+1087,311.436,3.21094,1.66931,0.016416,0.387616,0.006144,0.005632,0.007968,0.01712,0.019648,1.19254,0.016224
+1088,300.029,3.33301,1.66682,0.016384,0.37824,0.006784,0.004128,0.00816,0.017696,0.019136,1.20016,0.016128
+1089,294.591,3.39453,1.66096,0.016416,0.376064,0.006848,0.005504,0.008,0.017248,0.019456,1.19638,0.01504
+1090,300.69,3.32568,1.67155,0.016512,0.38256,0.006848,0.004384,0.008192,0.01744,0.018944,1.20061,0.016064
+1091,247.224,4.04492,1.67734,0.016416,0.389088,0.006176,0.006112,0.008192,0.01776,0.020384,1.1984,0.014816
+1092,335.298,2.98242,1.66067,0.016384,0.360448,0.00784,0.005504,0.007136,0.017984,0.01888,1.21037,0.016128
+1093,325.648,3.0708,1.63747,0.01584,0.347744,0.006848,0.004352,0.008192,0.017792,0.019072,1.20189,0.015744
+1094,295.058,3.38916,1.66342,0.016448,0.379776,0.006144,0.005824,0.007968,0.016928,0.019584,1.19488,0.015872
+1095,328.626,3.04297,1.64522,0.01648,0.364544,0.006688,0.005696,0.007968,0.017088,0.019424,1.19251,0.014816
+1096,293.789,3.40381,1.77978,0.015232,0.479008,0.006368,0.005536,0.007968,0.017216,0.019936,1.21251,0.016
+1097,326.323,3.06445,1.64032,0.016384,0.355744,0.006752,0.005696,0.007968,0.017056,0.019968,1.1945,0.016256
+1098,293.368,3.40869,1.71078,0.01648,0.420416,0.006176,0.006144,0.008032,0.017952,0.018688,1.20182,0.015072
+1099,322.165,3.104,1.67526,0.016384,0.3784,0.006624,0.005728,0.007968,0.01808,0.019424,1.20627,0.016384
+1100,318.012,3.14453,1.70819,0.016256,0.422112,0.00672,0.005696,0.007968,0.017056,0.019776,1.19654,0.016064
+1101,304.943,3.2793,1.664,0.01664,0.366624,0.00688,0.005664,0.007968,0.017088,0.019872,1.20819,0.015072
+1102,316.001,3.16455,1.65174,0.016576,0.3608,0.006464,0.005568,0.008,0.017152,0.018432,1.20365,0.015104
+1103,317.421,3.15039,1.66237,0.016416,0.370656,0.007712,0.004608,0.00816,0.017632,0.019232,1.20218,0.015776
+1104,306.266,3.26514,1.66576,0.016512,0.373312,0.006176,0.005536,0.008,0.017056,0.01856,1.20547,0.015136
+1105,299.197,3.34229,1.68563,0.016448,0.391488,0.006208,0.006144,0.008,0.016736,0.019776,1.20477,0.016064
+1106,275.306,3.63232,1.64874,0.016448,0.358848,0.006144,0.005728,0.008,0.016992,0.019456,1.20115,0.015968
+1107,311.104,3.21436,1.67146,0.01648,0.370208,0.006784,0.005568,0.008,0.017152,0.020032,1.21251,0.01472
+1108,305.034,3.27832,1.65664,0.015584,0.364576,0.006848,0.005504,0.007936,0.017376,0.019968,1.20269,0.01616
+1109,289.716,3.45166,1.68573,0.016544,0.38864,0.006688,0.005696,0.007968,0.017056,0.019712,1.20704,0.016384
+1110,263.374,3.79688,1.67117,0.016416,0.386784,0.0064,0.006048,0.008,0.016672,0.019968,1.1945,0.016384
+1111,305.307,3.27539,1.66563,0.01648,0.383104,0.006528,0.005888,0.007968,0.016864,0.019968,1.19405,0.014784
+1112,284.761,3.51172,1.68739,0.016384,0.387072,0.006144,0.005632,0.007968,0.01712,0.019712,1.21114,0.016224
+1113,276.682,3.61426,1.66483,0.016384,0.380832,0.006272,0.006112,0.007968,0.017952,0.019136,1.19398,0.016192
+1114,306.725,3.26025,1.65072,0.016384,0.361984,0.006656,0.005696,0.007968,0.017056,0.019744,1.20003,0.0152
+1115,290.703,3.43994,1.6751,0.016384,0.380192,0.006848,0.005504,0.008032,0.017216,0.018432,1.20627,0.016224
+1116,284.444,3.51562,1.67731,0.017664,0.387616,0.006368,0.005504,0.007968,0.017248,0.018464,1.2001,0.016384
+1117,272.123,3.6748,1.66298,0.016384,0.37072,0.0072,0.004928,0.008,0.017856,0.01936,1.20214,0.016384
+1118,226.724,4.41064,1.6832,0.01664,0.399072,0.006816,0.004096,0.008192,0.017728,0.019168,1.19549,0.016
+1119,324.873,3.07812,1.66685,0.016384,0.372736,0.006144,0.005664,0.007968,0.017088,0.018432,1.20627,0.01616
+1120,331.499,3.0166,1.64621,0.016064,0.352576,0.007488,0.0048,0.008032,0.016544,0.02,1.2047,0.016
+1121,315.077,3.17383,1.66179,0.016384,0.371552,0.007904,0.005408,0.007168,0.018432,0.019712,1.20003,0.0152
+1122,304.898,3.27979,1.65888,0.016448,0.372544,0.006272,0.005472,0.007968,0.017248,0.018464,1.19821,0.016256
+1123,295.101,3.38867,1.7272,0.016416,0.433984,0.006944,0.005376,0.007008,0.0184,0.019712,1.20435,0.015008
+1124,319.8,3.12695,1.66144,0.016544,0.374976,0.006304,0.005408,0.007936,0.017408,0.018528,1.19734,0.016992
+1125,269.864,3.70557,1.66912,0.016416,0.378848,0.007296,0.004992,0.008192,0.01808,0.018848,1.20195,0.014496
+1126,333.388,2.99951,1.6337,0.014464,0.352256,0.006144,0.006144,0.008192,0.016384,0.020064,1.19421,0.01584
+1127,260.991,3.83154,1.66912,0.016416,0.384896,0.00624,0.006144,0.008,0.016576,0.019872,1.19632,0.014656
+1128,308.666,3.23975,1.65565,0.016608,0.368992,0.0064,0.005984,0.008,0.016736,0.020192,1.19795,0.014784
+1129,284.011,3.521,1.6671,0.016384,0.374016,0.00688,0.005504,0.007968,0.01728,0.02,1.20432,0.014752
+1130,294.634,3.39404,1.66013,0.016384,0.364544,0.00752,0.004768,0.008192,0.01776,0.019104,1.20582,0.016032
+1131,265.974,3.75977,1.68099,0.016448,0.384896,0.00624,0.006112,0.007968,0.018016,0.019072,1.20627,0.015968
+1132,292.404,3.41992,1.65594,0.016384,0.367968,0.006848,0.004064,0.008192,0.01792,0.018848,1.19818,0.017536
+1133,267.677,3.73584,1.67597,0.016288,0.375424,0.006208,0.006144,0.008032,0.01776,0.019264,1.21213,0.01472
+1134,320,3.125,1.6425,0.016384,0.35584,0.006656,0.004256,0.008032,0.01808,0.018784,1.19805,0.016416
+1135,296.296,3.375,1.67117,0.016384,0.376832,0.00624,0.006048,0.008192,0.017792,0.019104,1.20538,0.0152
+1136,300.867,3.32373,1.68714,0.016384,0.393312,0.007264,0.005024,0.008192,0.017568,0.019072,1.20435,0.015968
+1137,279.019,3.58398,1.66717,0.016224,0.388,0.007584,0.004704,0.008192,0.018432,0.019552,1.18877,0.015712
+1138,322.927,3.09668,1.64979,0.016416,0.358368,0.006176,0.006112,0.008192,0.016448,0.019968,1.20202,0.016096
+1139,298.891,3.3457,1.71075,0.016448,0.424544,0.007296,0.004992,0.008192,0.017536,0.019072,1.19779,0.01488
+1140,235.348,4.24902,1.66784,0.016992,0.37888,0.007328,0.00496,0.008192,0.017632,0.0192,1.19942,0.015232
+1141,240.828,4.15234,1.7087,0.016384,0.418464,0.00736,0.004864,0.007968,0.017888,0.019168,1.20179,0.014816
+1142,279.629,3.57617,1.68698,0.017536,0.385664,0.0064,0.005952,0.007968,0.0168,0.018432,1.21242,0.015808
+1143,303.318,3.29688,1.66189,0.015456,0.374624,0.007744,0.004544,0.008192,0.01776,0.019072,1.19811,0.016384
+1144,307,3.25732,1.64822,0.016384,0.362496,0.006144,0.00576,0.007968,0.016992,0.02,1.19651,0.015968
+1145,279.438,3.57861,1.66806,0.015328,0.382272,0.006848,0.005536,0.008,0.017184,0.01952,1.19699,0.016384
+1146,302.065,3.31055,1.6704,0.016384,0.387072,0.006144,0.005856,0.007968,0.016896,0.020032,1.19405,0.016
+1147,256.128,3.9043,1.68483,0.016384,0.395104,0.006304,0.006048,0.007968,0.016704,0.020448,1.20016,0.015712
+1148,283.186,3.53125,1.71117,0.016384,0.4096,0.007232,0.004864,0.008064,0.018112,0.019072,1.21181,0.016032
+1149,277.507,3.60352,1.66662,0.016416,0.378144,0.006848,0.004096,0.008192,0.018048,0.018816,1.20013,0.015936
+1150,294.337,3.39746,1.65683,0.016384,0.370208,0.006624,0.004096,0.008224,0.018432,0.01952,1.19661,0.016736
+1151,316.049,3.16406,1.66618,0.016416,0.374752,0.00752,0.004768,0.008064,0.018016,0.018976,1.20192,0.015744
+1152,292.363,3.42041,1.69014,0.016576,0.391008,0.006656,0.005184,0.007104,0.018272,0.018592,1.21037,0.016384
+1153,297.978,3.35596,1.66019,0.01744,0.369216,0.00656,0.005952,0.007936,0.016832,0.019744,1.20061,0.015904
+1154,276.906,3.61133,1.67366,0.016608,0.388992,0.00672,0.005696,0.008,0.017024,0.018432,1.19603,0.01616
+1155,294.422,3.39648,1.66365,0.01536,0.378848,0.00768,0.004608,0.00944,0.017184,0.019616,1.19485,0.016064
+1156,306.587,3.26172,1.64832,0.016416,0.364096,0.00656,0.005792,0.008,0.016928,0.018432,1.19603,0.016064
+1157,266.806,3.74805,1.67197,0.016384,0.383776,0.0072,0.005088,0.008192,0.017792,0.019072,1.19914,0.015328
+1158,295.228,3.38721,1.64045,0.016384,0.356288,0.006208,0.005504,0.015008,0.017792,0.01904,1.18784,0.016384
+1159,285.874,3.49805,1.65782,0.016544,0.375584,0.007232,0.005056,0.008192,0.017792,0.019072,1.1935,0.014848
+1160,300.117,3.33203,1.64454,0.016384,0.366592,0.007424,0.004864,0.008032,0.016544,0.020064,1.18982,0.014816
+1161,275.565,3.62891,1.66925,0.016416,0.386336,0.006848,0.005536,0.008,0.017216,0.018496,1.19542,0.014976
+1162,295.228,3.38721,1.71827,0.016384,0.413696,0.006144,0.006144,0.008,0.016576,0.019744,1.2152,0.016384
+1163,285.555,3.50195,1.65552,0.016448,0.381184,0.006656,0.005696,0.007968,0.017056,0.019808,1.18442,0.016288
+1164,326.427,3.06348,1.64506,0.016512,0.371072,0.006144,0.005856,0.008,0.016864,0.018592,1.18563,0.016384
+1165,280.702,3.5625,1.6839,0.016384,0.393664,0.006208,0.005504,0.007936,0.01728,0.020352,1.20029,0.016288
+1166,266.216,3.75635,1.66278,0.016384,0.376704,0.006272,0.00544,0.008288,0.016992,0.019584,1.19693,0.016192
+1167,281.01,3.55859,1.66451,0.016224,0.378368,0.006848,0.004096,0.008192,0.01792,0.018944,1.19808,0.01584
+1168,330.963,3.02148,1.63635,0.016384,0.350208,0.00784,0.005504,0.007136,0.018368,0.018496,1.19738,0.01504
+1169,262.161,3.81445,1.68144,0.016384,0.401024,0.006528,0.005536,0.007936,0.01728,0.0184,1.19357,0.014784
+1170,314.4,3.18066,1.6496,0.016416,0.366688,0.006848,0.004192,0.008192,0.017856,0.019008,1.19504,0.01536
+1171,258.717,3.86523,1.68141,0.016384,0.391168,0.007904,0.005504,0.007072,0.018272,0.018592,1.20141,0.015104
+1172,293.578,3.40625,1.65818,0.016448,0.372672,0.006144,0.005632,0.007968,0.01712,0.018432,1.19773,0.016032
+1173,293.578,3.40625,1.67571,0.016288,0.397824,0.007712,0.004576,0.008192,0.017856,0.019008,1.18931,0.014944
+1174,323.743,3.08887,1.6425,0.016384,0.366496,0.00624,0.006144,0.007968,0.017696,0.019264,1.18595,0.016352
+1175,283.46,3.52783,1.69229,0.016512,0.407488,0.006848,0.005184,0.007104,0.018272,0.018592,1.19603,0.016256
+1176,327.418,3.0542,1.67117,0.016416,0.362464,0.007584,0.004704,0.008192,0.01808,0.018784,1.21856,0.016384
+1177,273.833,3.65186,1.67731,0.016544,0.379328,0.006144,0.006144,0.008064,0.016512,0.02032,1.20848,0.015776
+1178,322.825,3.09766,1.65274,0.016384,0.368352,0.006432,0.005312,0.006976,0.017888,0.018976,1.19747,0.014944
+1179,260.262,3.84229,1.69648,0.016384,0.405952,0.006432,0.00528,0.007008,0.018432,0.019648,1.20291,0.014432
+1180,301.176,3.32031,1.67962,0.016384,0.39552,0.007488,0.004832,0.00816,0.017888,0.018976,1.19398,0.016384
+1181,250.214,3.99658,1.88909,0.016608,0.60624,0.006688,0.005664,0.008096,0.01696,0.018432,1.19558,0.014816
+1182,295.997,3.37842,1.67235,0.016384,0.385024,0.00736,0.004928,0.008064,0.016512,0.019456,1.1983,0.01632
+1183,247.792,4.03564,1.66342,0.016416,0.375424,0.007872,0.004416,0.008192,0.017632,0.0192,1.19811,0.01616
+1184,289.757,3.45117,1.67613,0.016448,0.387872,0.007264,0.004864,0.008,0.016736,0.019808,1.19875,0.016384
+1185,310.115,3.22461,1.65693,0.01632,0.373952,0.006976,0.005504,0.006944,0.01824,0.018624,1.19504,0.015328
+1186,314.352,3.18115,1.66298,0.017504,0.371136,0.006624,0.005184,0.007136,0.018048,0.018816,1.20214,0.016384
+1187,259.438,3.85449,1.66902,0.016256,0.379904,0.007744,0.004544,0.008192,0.018464,0.01968,1.19869,0.015552
+1188,270.506,3.69678,1.67738,0.016448,0.384736,0.006432,0.005248,0.00704,0.01792,0.018944,1.20541,0.0152
+1189,311.72,3.20801,1.65443,0.016416,0.369184,0.007168,0.005088,0.008192,0.01744,0.019264,1.19606,0.015616
+1190,308.852,3.23779,1.66502,0.016384,0.382144,0.00688,0.005504,0.007968,0.017216,0.01856,1.19398,0.016384
+1191,277.019,3.60986,1.66515,0.016384,0.382688,0.006432,0.005984,0.007968,0.017792,0.019424,1.19402,0.014464
+1192,323.13,3.09473,1.64669,0.016416,0.359808,0.006848,0.004288,0.008192,0.017696,0.018752,1.1985,0.016192
+1193,260.262,3.84229,1.68496,0.01632,0.389536,0.006144,0.006144,0.00816,0.017472,0.019424,1.20605,0.015712
+1194,327.575,3.05273,1.64915,0.016576,0.366336,0.006752,0.005632,0.007968,0.016992,0.01856,1.19398,0.016352
+1195,272.776,3.66602,1.66512,0.016384,0.374368,0.00656,0.005824,0.008,0.016896,0.01952,1.20298,0.014592
+1196,287.681,3.47607,1.64832,0.016256,0.356416,0.006208,0.006144,0.008032,0.016544,0.020224,1.20243,0.016064
+1197,258.325,3.87109,1.66963,0.016384,0.391072,0.006752,0.005792,0.007968,0.018048,0.019296,1.18925,0.015072
+1198,286.594,3.48926,1.68979,0.016576,0.385216,0.0064,0.005984,0.007968,0.016768,0.020128,1.21482,0.015936
+1199,252.715,3.95703,1.69539,0.016416,0.408544,0.00704,0.005504,0.007968,0.01728,0.018528,1.19808,0.016032
+1200,288.939,3.46094,1.67427,0.016416,0.386816,0.006368,0.006048,0.008,0.018016,0.019136,1.19766,0.015808
+1201,253.559,3.94385,1.71603,0.016384,0.425984,0.007648,0.00464,0.008192,0.01792,0.018944,1.20013,0.016192
+1202,267.782,3.73438,1.6697,0.016416,0.396096,0.007488,0.0048,0.008192,0.01792,0.018976,1.18362,0.016192
+1203,283.46,3.52783,1.70099,0.016384,0.414784,0.006848,0.005504,0.007072,0.018336,0.02016,1.19635,0.015552
+1204,276.719,3.61377,1.7608,0.016384,0.474912,0.006368,0.005824,0.008,0.016896,0.019488,1.19702,0.015904
+1205,277.356,3.60547,1.70138,0.016384,0.4128,0.006912,0.005504,0.008,0.017344,0.019552,1.19901,0.015872
+1206,292.112,3.42334,1.71261,0.015872,0.420352,0.006624,0.00432,0.008,0.018272,0.01856,1.20422,0.016384
+1207,321.205,3.11328,1.66618,0.024608,0.369792,0.006848,0.004256,0.008192,0.018016,0.018848,1.19981,0.015808
+1208,284.129,3.51953,1.72333,0.016448,0.441184,0.007968,0.005536,0.006976,0.01808,0.018784,1.19194,0.016416
+1209,284.405,3.51611,1.71693,0.016352,0.426688,0.0072,0.005088,0.008192,0.017536,0.019328,1.20147,0.015072
+1210,287.964,3.47266,1.69674,0.016384,0.408192,0.006496,0.005248,0.007072,0.0184,0.018464,1.20013,0.016352
+1211,267.293,3.74121,1.72032,0.016384,0.429824,0.0064,0.005984,0.007936,0.017888,0.019328,1.20019,0.016384
+1212,277.056,3.60938,1.76883,0.016608,0.472416,0.006592,0.005216,0.008512,0.016992,0.019456,1.2071,0.015936
+1213,244.888,4.0835,1.63226,0.016384,0.35776,0.006784,0.00416,0.008128,0.018464,0.0184,1.18704,0.015136
+1214,284.919,3.50977,1.792,0.016416,0.501728,0.00752,0.004768,0.008192,0.017664,0.0192,1.20013,0.016384
+1215,277.62,3.60205,1.65888,0.016416,0.380896,0.006144,0.00608,0.008,0.01664,0.01984,1.19018,0.014688
+1216,242.654,4.12109,1.66835,0.016384,0.386912,0.006336,0.006112,0.008,0.016576,0.019712,1.19226,0.016064
+1217,275.269,3.63281,1.67158,0.016448,0.383328,0.006144,0.006144,0.008192,0.017504,0.019392,1.19984,0.014592
+1218,262.497,3.80957,1.71213,0.016384,0.41984,0.007264,0.005024,0.008192,0.017664,0.019232,1.20346,0.015072
+1219,270.756,3.69336,1.65475,0.016384,0.356352,0.007264,0.005056,0.00816,0.018112,0.018752,1.20835,0.01632
+1220,301.976,3.31152,1.65667,0.016384,0.373984,0.00688,0.00544,0.008096,0.017248,0.018432,1.19398,0.016224
+1221,233.337,4.28564,1.64048,0.016416,0.34816,0.00736,0.00496,0.00816,0.01776,0.019072,1.20221,0.016384
+1222,324.616,3.08057,1.66336,0.01648,0.379104,0.006208,0.006144,0.008,0.016576,0.019616,1.19485,0.016384
+1223,277.094,3.60889,1.72675,0.016608,0.426464,0.006144,0.006144,0.008192,0.017664,0.018944,1.21062,0.015968
+1224,324.976,3.07715,1.6664,0.017856,0.37488,0.006624,0.00576,0.007968,0.018112,0.018848,1.20048,0.015872
+1225,299.547,3.33838,1.65389,0.016384,0.36848,0.006304,0.006112,0.008,0.016608,0.020064,1.19606,0.015872
+1226,318.804,3.13672,1.74154,0.016384,0.442464,0.006752,0.004096,0.008192,0.018432,0.018432,1.20013,0.026656
+1227,250.183,3.99707,1.65696,0.016576,0.372096,0.006848,0.005504,0.007008,0.018432,0.018432,1.19603,0.016032
+1228,337.675,2.96143,1.65142,0.016384,0.368608,0.006848,0.005504,0.008,0.01712,0.018592,1.19398,0.016384
+1229,310.303,3.22266,1.63142,0.016128,0.34848,0.007648,0.004608,0.008192,0.017728,0.018944,1.19418,0.01552
+1230,282.717,3.53711,1.65123,0.016576,0.368992,0.007648,0.00464,0.008192,0.016384,0.01968,1.19274,0.016384
+1231,292.237,3.42188,1.64995,0.01648,0.362592,0.007648,0.00464,0.008192,0.01648,0.01984,1.19853,0.015552
+1232,275.974,3.62354,1.67533,0.016416,0.383008,0.007904,0.005504,0.007072,0.018176,0.018656,1.20349,0.015104
+1233,309.039,3.23584,1.64301,0.016416,0.354784,0.00768,0.004608,0.008192,0.017952,0.018912,1.19965,0.014816
+1234,287.64,3.47656,1.66298,0.016416,0.369952,0.006848,0.004096,0.008192,0.018016,0.018848,1.20422,0.016384
+1235,307.554,3.25146,1.81043,0.016384,0.514048,0.006144,0.006144,0.02,0.018048,0.019296,1.1951,0.015264
+1236,268.273,3.72754,1.6631,0.01632,0.368896,0.006816,0.004128,0.00816,0.018048,0.018816,1.2057,0.016224
+1237,329.578,3.03418,1.6425,0.01632,0.347424,0.006944,0.004096,0.008192,0.017824,0.01904,1.20778,0.01488
+1238,272.304,3.67236,1.65274,0.016448,0.37504,0.006784,0.005632,0.008128,0.01696,0.018432,1.18938,0.015936
+1239,331.392,3.01758,1.64499,0.016416,0.358784,0.006144,0.005696,0.007904,0.01712,0.019936,1.19773,0.015264
+1240,232.226,4.30615,1.65638,0.016416,0.3768,0.007232,0.004864,0.008,0.016768,0.019968,1.1904,0.015936
+1241,330.91,3.02197,1.63853,0.016448,0.35376,0.006752,0.005632,0.008,0.017088,0.019872,1.19619,0.014784
+1242,271.907,3.67773,1.66038,0.016384,0.372736,0.006144,0.005856,0.007744,0.01712,0.01952,1.19888,0.016
+1243,323.641,3.08984,1.62838,0.01648,0.34832,0.00736,0.004896,0.008192,0.0184,0.01856,1.19152,0.014656
+1244,232.41,4.30273,1.73114,0.016448,0.45312,0.00752,0.004768,0.008192,0.016384,0.019904,1.18973,0.015072
+1245,268.766,3.7207,1.6855,0.01744,0.39216,0.006144,0.00576,0.00848,0.017504,0.019424,1.20371,0.01488
+1246,325.648,3.0708,1.6537,0.015456,0.37056,0.006144,0.006144,0.00816,0.016416,0.019968,1.1945,0.016352
+1247,305.58,3.27246,1.65555,0.015328,0.361856,0.006528,0.005824,0.008064,0.017888,0.019264,1.20573,0.015072
+1248,275.899,3.62451,1.66861,0.016384,0.376832,0.006144,0.005792,0.007968,0.01696,0.018432,1.20358,0.016512
+1249,328.785,3.0415,1.6425,0.016384,0.3656,0.00688,0.005504,0.00704,0.018304,0.01856,1.18784,0.016384
+1250,278.867,3.58594,1.64445,0.016448,0.358496,0.006176,0.005568,0.008,0.017184,0.0184,1.19808,0.016096
+1251,311.199,3.21338,1.65571,0.015264,0.368672,0.00752,0.004736,0.008192,0.018368,0.018496,1.19974,0.01472
+1252,290.661,3.44043,1.64022,0.016384,0.349536,0.006816,0.004096,0.008192,0.017568,0.019008,1.20246,0.01616
+1253,281.396,3.55371,1.65926,0.016448,0.375424,0.007904,0.005504,0.007072,0.018464,0.019776,1.19261,0.016064
+1254,265.698,3.76367,1.66707,0.016384,0.36656,0.006176,0.0056,0.008,0.017024,0.018528,1.21248,0.01632
+1255,305.535,3.27295,1.64038,0.015936,0.350336,0.006464,0.005344,0.008,0.017376,0.019456,1.20115,0.01632
+1256,279.552,3.57715,1.66438,0.016416,0.376416,0.006528,0.005216,0.008192,0.017312,0.018592,1.19958,0.016128
+1257,299.284,3.34131,1.67059,0.016384,0.380768,0.006528,0.005856,0.007968,0.016896,0.019872,1.20067,0.015648
+1258,290.249,3.44531,1.65069,0.017536,0.375488,0.006336,0.005344,0.008,0.017312,0.018496,1.1872,0.014976
+1259,322.57,3.1001,1.64586,0.016416,0.355904,0.006624,0.00576,0.008,0.01696,0.018432,1.20218,0.015584
+1260,279.247,3.58105,1.67731,0.016384,0.385024,0.007552,0.004736,0.008032,0.0176,0.019072,1.20355,0.01536
+1261,314.69,3.17773,1.63091,0.016352,0.350912,0.007584,0.004704,0.008192,0.018208,0.018656,1.19181,0.014496
+1262,215.579,4.63867,1.71018,0.016416,0.419904,0.007296,0.004992,0.008192,0.016416,0.038016,1.18256,0.016384
+1263,308.527,3.24121,1.64326,0.01632,0.37152,0.006144,0.005856,0.007936,0.01696,0.01952,1.18368,0.015328
+1264,282.99,3.53369,1.64262,0.016512,0.36448,0.006848,0.005536,0.007968,0.017152,0.018496,1.18982,0.015808
+1265,308.387,3.24268,1.63539,0.016384,0.346144,0.006112,0.006144,0.008192,0.016416,0.02,1.20035,0.015648
+1266,203.275,4.91943,1.72096,0.016512,0.429792,0.006816,0.005568,0.008224,0.016896,0.019712,1.20214,0.015296
+1267,285.954,3.49707,1.70477,0.016448,0.426784,0.00784,0.005504,0.007104,0.018144,0.01872,1.18934,0.01488
+1268,321.507,3.11035,1.66096,0.016352,0.372832,0.007392,0.004864,0.008192,0.018048,0.018816,1.19776,0.016704
+1269,298.281,3.35254,1.67123,0.016416,0.372768,0.007296,0.00496,0.008192,0.01824,0.018624,1.21021,0.014528
+1270,299.503,3.33887,1.71949,0.016512,0.440352,0.0072,0.005088,0.008192,0.016384,0.019904,1.18989,0.015968
+1271,257.61,3.88184,1.80778,0.017888,0.520736,0.007584,0.004704,0.018432,0.017792,0.018752,1.18611,0.015776
+1272,292.822,3.41504,1.70509,0.016384,0.421888,0.007584,0.004736,0.00816,0.017952,0.018912,1.19357,0.015904
+1273,303.632,3.29346,1.70922,0.016,0.421888,0.006624,0.005824,0.007968,0.016928,0.01984,1.19856,0.015584
+1274,323.59,3.09033,1.66259,0.016384,0.38256,0.00656,0.005184,0.007104,0.018112,0.018752,1.19194,0.016
+1275,289.716,3.45166,1.67117,0.016128,0.362752,0.007776,0.004512,0.008192,0.018432,0.01952,1.20307,0.030784
+1276,287.762,3.4751,1.652,0.016416,0.3768,0.007776,0.005568,0.007136,0.017632,0.019264,1.18554,0.015872
+1277,297.415,3.3623,1.65478,0.016384,0.357472,0.006816,0.005504,0.007072,0.018432,0.0184,1.20998,0.01472
+1278,323.539,3.09082,1.64656,0.016384,0.358112,0.006432,0.005792,0.007968,0.01696,0.018432,1.20013,0.016352
+1279,248.815,4.01904,1.64918,0.016448,0.362592,0.006912,0.005504,0.007968,0.017216,0.018464,1.19808,0.016
+1280,294.168,3.39941,1.70806,0.016416,0.411232,0.00656,0.005824,0.008032,0.018912,0.031872,1.19386,0.01536
+1281,287.036,3.48389,1.65091,0.016384,0.366784,0.006144,0.006144,0.008032,0.0176,0.01904,1.19626,0.014528
+1282,292.488,3.41895,1.63277,0.016224,0.358208,0.006944,0.005504,0.006976,0.018432,0.018464,1.18576,0.016256
+1283,295.826,3.38037,1.78858,0.016448,0.514144,0.006688,0.005728,0.007936,0.017024,0.019936,1.18531,0.01536
+1284,292.822,3.41504,1.65274,0.016384,0.372736,0.007872,0.004416,0.008192,0.017696,0.019168,1.18989,0.016384
+1285,334.367,2.99072,1.65574,0.016416,0.367488,0.006144,0.005664,0.007744,0.017312,0.018432,1.20179,0.014752
+1286,278.299,3.59326,1.66035,0.016384,0.37472,0.006208,0.005472,0.008032,0.017216,0.01984,1.19638,0.016096
+1287,230.605,4.33643,1.64458,0.016352,0.360416,0.006208,0.006144,0.008,0.017664,0.019392,1.19514,0.015264
+1288,310.868,3.2168,1.66298,0.016384,0.376832,0.007616,0.004672,0.008192,0.017984,0.01888,1.19597,0.016448
+1289,287.479,3.47852,1.656,0.01648,0.371744,0.006944,0.004192,0.008192,0.018112,0.018752,1.19603,0.015552
+1290,317.569,3.14893,1.64419,0.017408,0.35936,0.006208,0.006144,0.008,0.016576,0.019552,1.19475,0.016192
+1291,277.507,3.60352,1.65075,0.016384,0.365376,0.006272,0.006112,0.008,0.016608,0.02048,1.196,0.01552
+1292,213.311,4.68799,1.7457,0.016512,0.462752,0.006688,0.004288,0.008,0.01792,0.018944,1.1952,0.015392
+1293,300.69,3.32568,1.71933,0.016384,0.440096,0.006368,0.006048,0.007904,0.016768,0.019552,1.19078,0.015424
+1294,288.167,3.47021,1.69984,0.016384,0.407552,0.007392,0.004896,0.008192,0.017984,0.018912,1.20333,0.0152
+1295,282.171,3.54395,1.75622,0.016384,0.464352,0.006688,0.004224,0.008064,0.018432,0.018432,1.20394,0.015712
+1296,246.154,4.0625,1.70598,0.016384,0.436224,0.007968,0.00432,0.008192,0.017408,0.018912,1.18147,0.015104
+1297,278.374,3.59229,1.67347,0.016224,0.39568,0.007488,0.0048,0.008128,0.01648,0.020256,1.18979,0.014624
+1298,289.798,3.45068,1.70854,0.016544,0.42448,0.00784,0.005504,0.007104,0.018112,0.018752,1.19398,0.016224
+1299,288.573,3.46533,1.71213,0.016384,0.434176,0.00752,0.004768,0.008192,0.018432,0.019872,1.18806,0.01472
+1300,313.246,3.19238,1.66266,0.016512,0.380288,0.006656,0.00432,0.007968,0.018208,0.018656,1.19398,0.016064
+1301,308.016,3.24658,1.69786,0.016288,0.404224,0.006176,0.006144,0.008064,0.01776,0.018784,1.20467,0.015744
+1302,310.585,3.21973,1.65408,0.016448,0.36864,0.007456,0.004864,0.007968,0.016576,0.019552,1.19651,0.016064
+1303,312.72,3.19775,1.65469,0.016384,0.370688,0.007296,0.004896,0.007968,0.016704,0.02,1.19446,0.016288
+1304,337.175,2.96582,1.65331,0.016416,0.371264,0.007424,0.004864,0.00816,0.01808,0.018784,1.19315,0.015168
+1305,264.976,3.77393,1.69354,0.016416,0.416032,0.007456,0.004832,0.008192,0.018432,0.019712,1.18656,0.015904
+1306,312.386,3.20117,1.64739,0.016512,0.36112,0.007552,0.004736,0.008192,0.017888,0.018976,1.19738,0.01504
+1307,297.848,3.35742,1.66621,0.016416,0.38704,0.007616,0.004672,0.008192,0.017888,0.019008,1.18982,0.015552
+1308,306.495,3.2627,1.67338,0.01648,0.392,0.007456,0.0048,0.008192,0.01744,0.019104,1.1921,0.015808
+1309,323.488,3.09131,1.63971,0.016384,0.362496,0.006144,0.006144,0.00816,0.017664,0.019232,1.18784,0.015648
+1310,242.539,4.12305,1.65862,0.016416,0.380768,0.006272,0.005504,0.008736,0.01648,0.020032,1.18829,0.016128
+1311,276.197,3.62061,1.6656,0.01648,0.387584,0.007392,0.004864,0.008192,0.018016,0.019904,1.18781,0.01536
+1312,301.132,3.3208,1.66301,0.016384,0.384224,0.006848,0.004192,0.008192,0.018176,0.018688,1.19101,0.015296
+1313,302.154,3.30957,1.63626,0.016384,0.360416,0.006176,0.006144,0.008,0.017632,0.019104,1.18611,0.016288
+1314,273.797,3.65234,1.6713,0.01632,0.393696,0.007552,0.004736,0.008192,0.018048,0.018816,1.18784,0.016096
+1315,301.798,3.31348,1.67318,0.016096,0.377568,0.007776,0.004512,0.008192,0.018464,0.019744,1.20493,0.015904
+1316,289.757,3.45117,1.65888,0.016416,0.378848,0.007776,0.004512,0.008192,0.0176,0.01904,1.1919,0.014592
+1317,244.421,4.09131,1.72499,0.016384,0.437984,0.006848,0.005504,0.00896,0.018432,0.020128,1.19434,0.016416
+1318,299.065,3.34375,1.78998,0.016416,0.511264,0.006752,0.004192,0.008192,0.01776,0.019008,1.1919,0.014496
+1319,311.246,3.21289,1.6552,0.016288,0.375456,0.007776,0.004544,0.00816,0.0184,0.018464,1.18989,0.016224
+1320,296.898,3.36816,1.68918,0.016416,0.411616,0.006144,0.005248,0.00704,0.018432,0.018528,1.18982,0.015936
+1321,272.63,3.66797,1.6631,0.016384,0.374752,0.007136,0.005728,0.007968,0.017024,0.019584,1.19898,0.015552
+1322,308.434,3.24219,1.66294,0.016448,0.38128,0.007872,0.004416,0.008192,0.016512,0.019904,1.19238,0.015936
+1323,267.014,3.74512,1.68963,0.016384,0.417824,0.007872,0.005504,0.007072,0.018336,0.018528,1.18301,0.015104
+1324,280.51,3.56494,1.66451,0.01648,0.380928,0.007648,0.004672,0.00816,0.016544,0.02,1.19408,0.016
+1325,276.832,3.6123,1.65478,0.016416,0.380928,0.007712,0.004544,0.008192,0.018272,0.018592,1.1848,0.015328
+1326,275.751,3.62646,1.69184,0.016672,0.40752,0.006496,0.005248,0.007072,0.018304,0.018528,1.19578,0.016224
+1327,281.396,3.55371,1.6897,0.016288,0.40976,0.006144,0.005664,0.007968,0.017088,0.019488,1.192,0.015296
+1328,322.621,3.09961,1.64109,0.01648,0.365248,0.006336,0.005952,0.008192,0.017888,0.018976,1.18579,0.016224
+1329,301.664,3.31494,1.64525,0.016256,0.364736,0.00688,0.005536,0.007968,0.017216,0.01856,1.19184,0.016256
+1330,289.184,3.45801,1.67526,0.016384,0.3912,0.007488,0.0048,0.00816,0.017568,0.018816,1.19446,0.016384
+1331,299.24,3.3418,1.65658,0.01632,0.378688,0.006752,0.005632,0.007968,0.01712,0.019712,1.18861,0.015776
+1332,305.171,3.27686,1.68118,0.016352,0.387584,0.00736,0.004928,0.008192,0.01776,0.019104,1.20381,0.016096
+1333,336.787,2.96924,1.65315,0.016288,0.375104,0.006272,0.00608,0.007936,0.016704,0.019744,1.19053,0.014496
+1334,280.817,3.56104,1.66243,0.016384,0.382016,0.006976,0.004224,0.008192,0.017568,0.019136,1.19197,0.015968
+1335,273.103,3.66162,1.65494,0.016064,0.369408,0.006144,0.005824,0.007744,0.017152,0.01952,1.19699,0.016096
+1336,243,4.11523,1.6937,0.016384,0.421888,0.007232,0.004928,0.008,0.016704,0.019712,1.18246,0.016384
+1337,270.399,3.69824,1.67117,0.016384,0.38912,0.007264,0.00496,0.007968,0.016672,0.020352,1.19382,0.014624
+1338,284.919,3.50977,1.6735,0.016448,0.389344,0.007392,0.004864,0.007968,0.01664,0.019712,1.19475,0.016384
+1339,254.063,3.93604,1.75046,0.017568,0.461696,0.007232,0.005024,0.008192,0.018432,0.018432,1.18576,0.028128
+1340,318.161,3.14307,1.65056,0.016384,0.372736,0.007424,0.004896,0.00816,0.017824,0.019072,1.18781,0.016256
+1341,303.138,3.29883,1.69597,0.016064,0.41216,0.006144,0.006144,0.008192,0.017824,0.01904,1.19398,0.016416
+1342,312.052,3.20459,1.65216,0.016416,0.3768,0.006144,0.0056,0.007968,0.017152,0.018432,1.18784,0.015808
+1343,275.158,3.63428,1.63946,0.01744,0.354432,0.006848,0.004288,0.00816,0.018432,0.020416,1.19379,0.015648
+1344,264.088,3.78662,1.69002,0.016416,0.413888,0.006784,0.004096,0.008192,0.017792,0.019072,1.18784,0.015936
+1345,303.767,3.29199,1.69165,0.016384,0.40704,0.006656,0.005728,0.007968,0.017024,0.019744,1.19597,0.015136
+1346,328.574,3.04346,1.66816,0.016384,0.392896,0.006464,0.00608,0.007936,0.016704,0.018432,1.18704,0.016224
+1347,297.804,3.35791,1.67757,0.016288,0.398848,0.006848,0.005504,0.007968,0.017408,0.018432,1.19126,0.015008
+1348,229.493,4.35742,1.63792,0.016416,0.360896,0.007456,0.004832,0.008192,0.017568,0.019232,1.18752,0.015808
+1349,276.048,3.62256,1.73434,0.016384,0.446464,0.007264,0.005024,0.008192,0.017984,0.018912,1.19805,0.016064
+1350,312.052,3.20459,1.64685,0.016448,0.376992,0.00784,0.004448,0.008192,0.0176,0.019264,1.17965,0.016416
+1351,298.847,3.34619,1.70346,0.016384,0.428032,0.006144,0.006144,0.008192,0.017984,0.01888,1.18579,0.015904
+1352,331.553,3.01611,1.65117,0.016352,0.363008,0.007648,0.00464,0.008192,0.016384,0.020256,1.1983,0.016384
+1353,278.261,3.59375,1.6895,0.028672,0.397152,0.006304,0.006144,0.008032,0.016544,0.019616,1.19075,0.016288
+1354,319.75,3.12744,1.64054,0.016448,0.363072,0.007552,0.004736,0.008128,0.017632,0.0192,1.18771,0.016064
+1355,272.232,3.67334,1.65235,0.016192,0.367136,0.006272,0.006016,0.008192,0.018112,0.018752,1.19398,0.017696
+1356,295.527,3.38379,1.69382,0.016448,0.409664,0.007456,0.004832,0.008192,0.017824,0.01904,1.19398,0.016384
+1357,262.396,3.81104,1.77152,0.016384,0.482656,0.006528,0.005504,0.007072,0.028672,0.019904,1.18842,0.016384
+1358,297.718,3.35889,1.65728,0.016448,0.382848,0.007008,0.00416,0.008192,0.018112,0.018784,1.18576,0.015968
+1359,272.812,3.66553,1.71187,0.016448,0.434784,0.008192,0.004096,0.009536,0.017088,0.018432,1.18771,0.015584
+1360,311.767,3.20752,1.66304,0.016416,0.384992,0.006144,0.005824,0.008096,0.0168,0.01968,1.18998,0.015104
+1361,230.501,4.33838,1.66826,0.016384,0.385024,0.007616,0.004672,0.008192,0.03024,0.018912,1.1815,0.015712
+1362,193.39,5.1709,1.69587,0.016448,0.42032,0.006304,0.005536,0.007968,0.017248,0.018432,1.18749,0.016128
+1363,227.733,4.39111,1.7697,0.01632,0.493408,0.006624,0.00576,0.008,0.01696,0.02032,1.18595,0.016352
+1364,300.117,3.33203,1.65942,0.016608,0.376864,0.0064,0.006144,0.00816,0.016416,0.019808,1.19261,0.016416
+1365,294.591,3.39453,1.70566,0.016384,0.42384,0.006816,0.005536,0.007968,0.017248,0.0184,1.19389,0.015584
+1366,327.104,3.05713,1.64045,0.016384,0.364544,0.007776,0.004512,0.008192,0.01824,0.018656,1.18563,0.016512
+1367,290.826,3.43848,1.66525,0.016384,0.37728,0.006464,0.005504,0.008032,0.017248,0.018432,1.20013,0.015776
+1368,301.265,3.31934,1.67587,0.016576,0.380736,0.006752,0.00416,0.008128,0.018016,0.018848,1.20752,0.015136
+1369,258.13,3.87402,1.6616,0.016416,0.380928,0.006752,0.005632,0.007968,0.01712,0.018432,1.19357,0.014784
+1370,304.535,3.28369,1.65584,0.016384,0.37792,0.00688,0.005504,0.00704,0.018304,0.018528,1.18934,0.015936
+1371,274.641,3.64111,1.66502,0.016416,0.382944,0.00784,0.005504,0.007136,0.018464,0.019488,1.19197,0.015264
+1372,324.667,3.08008,1.65219,0.016384,0.362144,0.006496,0.005184,0.008512,0.017024,0.018432,1.20198,0.016032
+1373,300.646,3.32617,1.63056,0.01616,0.356928,0.007328,0.00496,0.008192,0.017856,0.019008,1.18483,0.015296
+1374,309.179,3.23438,1.69357,0.016384,0.415744,0.00624,0.005664,0.007968,0.016896,0.01856,1.18986,0.016256
+1375,299.197,3.34229,1.68221,0.016576,0.404064,0.007744,0.004544,0.008192,0.017952,0.018944,1.18925,0.014944
+1376,326.063,3.06689,1.66093,0.016384,0.370688,0.007424,0.004864,0.007968,0.016608,0.019552,1.20106,0.016384
+1377,307.093,3.25635,1.65274,0.016384,0.376832,0.007712,0.004576,0.008192,0.018016,0.018848,1.1872,0.014976
+1378,278.981,3.58447,1.64864,0.016384,0.365632,0.00688,0.005504,0.00704,0.018048,0.018784,1.19398,0.016384
+1379,298.195,3.35352,1.67731,0.016416,0.391136,0.006144,0.006144,0.00816,0.016416,0.020352,1.19616,0.016384
+1380,314.593,3.17871,1.65536,0.01648,0.372576,0.006976,0.005504,0.006944,0.01824,0.018624,1.19398,0.016032
+1381,309.506,3.23096,1.69904,0.016384,0.40864,0.006848,0.004352,0.008192,0.017952,0.018912,1.20202,0.015744
+1382,323.846,3.08789,1.65766,0.016512,0.376896,0.006784,0.005536,0.008,0.017216,0.018656,1.19302,0.01504
+1383,277.319,3.60596,1.732,0.016416,0.450528,0.007232,0.005056,0.008192,0.016384,0.020128,1.19229,0.015776
+1384,301.088,3.32129,1.69165,0.016384,0.41984,0.007776,0.004512,0.008192,0.016416,0.020096,1.18326,0.015168
+1385,321.053,3.11475,1.70182,0.016384,0.42144,0.006624,0.005792,0.007968,0.01696,0.0184,1.19194,0.01632
+1386,303.677,3.29297,1.67085,0.016576,0.390592,0.006752,0.006048,0.007968,0.016704,0.01968,1.19043,0.016096
+1387,277.808,3.59961,1.64221,0.016448,0.35808,0.00688,0.005536,0.006944,0.018432,0.018432,1.196,0.015456
+1388,276.383,3.61816,1.71718,0.016352,0.434208,0.006848,0.004352,0.008192,0.017952,0.018944,1.19398,0.016352
+1389,250.061,3.99902,1.74128,0.016384,0.455104,0.00768,0.00464,0.00816,0.018144,0.018752,1.19709,0.015328
+1390,306.174,3.26611,1.66419,0.016384,0.384096,0.00688,0.005504,0.008,0.01712,0.018688,1.19152,0.016
+1391,311.294,3.2124,1.68294,0.016384,0.40288,0.00672,0.004288,0.008,0.018272,0.018592,1.19184,0.015968
+1392,273.614,3.65479,1.65946,0.01648,0.37936,0.007456,0.004832,0.008192,0.01648,0.019776,1.1905,0.016384
+1393,283.617,3.52588,1.67722,0.016384,0.404672,0.006976,0.005536,0.007936,0.017248,0.018432,1.18374,0.016288
+1394,305.672,3.27148,1.64256,0.016448,0.365856,0.00688,0.005504,0.007936,0.017184,0.018528,1.18784,0.016384
+1395,237.891,4.20361,1.76352,0.018624,0.486656,0.006848,0.005504,0.008,0.01728,0.02048,1.18499,0.015136
+1396,281.435,3.55322,1.64234,0.016416,0.364672,0.006304,0.005408,0.007968,0.017344,0.018432,1.18982,0.015968
+1397,260.991,3.83154,1.856,0.016512,0.5528,0.006688,0.016384,0.008192,0.024576,0.020288,1.19526,0.015296
+1398,263.714,3.79199,1.8473,0.02928,0.545856,0.006848,0.014592,0.008192,0.018464,0.019744,1.18854,0.015776
+1399,270.935,3.69092,1.67526,0.016608,0.388736,0.006784,0.005568,0.008,0.017152,0.019488,1.19702,0.015904
+1400,311.436,3.21094,1.66301,0.016384,0.376128,0.006848,0.005664,0.007968,0.016992,0.020192,1.1961,0.016736
+1401,289.021,3.45996,1.7537,0.016544,0.475168,0.00656,0.005856,0.007936,0.017984,0.019008,1.18941,0.015232
+1402,329.684,3.0332,1.64045,0.016384,0.360448,0.008192,0.006048,0.008,0.01776,0.01904,1.18819,0.016384
+1403,321.104,3.11426,1.66138,0.016448,0.375488,0.007712,0.004544,0.008192,0.018208,0.018656,1.19603,0.016096
+1404,298.281,3.35254,1.65885,0.016416,0.371424,0.007808,0.00448,0.008192,0.018432,0.018464,1.196,0.017632
+1405,315.854,3.16602,1.69021,0.016256,0.413408,0.00688,0.005504,0.00704,0.018304,0.01856,1.18954,0.01472
+1406,324.976,3.07715,1.6545,0.016384,0.36864,0.006144,0.006144,0.008192,0.016384,0.019936,1.19658,0.016096
+1407,296.039,3.37793,1.65715,0.016448,0.3704,0.006656,0.005728,0.008288,0.018016,0.019168,1.1959,0.016544
+1408,325.803,3.06934,1.64048,0.016416,0.364512,0.006144,0.005568,0.008,0.017184,0.019584,1.18816,0.014912
+1409,316.44,3.16016,1.63843,0.016384,0.35616,0.006336,0.00608,0.007968,0.016672,0.019744,1.19414,0.014944
+1410,269.367,3.7124,1.67322,0.016448,0.391104,0.008,0.005536,0.006944,0.018464,0.019584,1.19075,0.016384
+1411,322.52,3.10059,1.6463,0.01632,0.3648,0.007744,0.004544,0.008192,0.018208,0.018656,1.19194,0.015904
+1412,290.126,3.44678,1.65517,0.01664,0.376256,0.006848,0.005536,0.008,0.017056,0.01856,1.18989,0.016384
+1413,266.563,3.75146,1.66464,0.016384,0.378208,0.006816,0.004192,0.008096,0.018336,0.018528,1.19808,0.016
+1414,300.293,3.33008,1.65907,0.01648,0.376896,0.006144,0.005728,0.008,0.016992,0.018432,1.19398,0.016416
+1415,308.852,3.23779,1.63645,0.016352,0.360544,0.006144,0.006144,0.008192,0.018112,0.018752,1.18701,0.0152
+1416,263.782,3.79102,1.70656,0.01632,0.428672,0.007456,0.004832,0.008032,0.016544,0.019872,1.18845,0.016384
+1417,305.489,3.27344,1.6488,0.016416,0.36464,0.00752,0.004768,0.008192,0.018368,0.018624,1.1951,0.015168
+1418,264.02,3.7876,1.67885,0.016416,0.382944,0.007776,0.004512,0.008192,0.017984,0.01888,1.20611,0.016032
+1419,311.53,3.20996,1.64659,0.016416,0.362016,0.006592,0.005792,0.008,0.016928,0.019904,1.19571,0.015232
+1420,279.896,3.57275,1.64461,0.01648,0.370432,0.006752,0.004096,0.008192,0.017856,0.019008,1.18579,0.016
+1421,330.323,3.02734,1.64864,0.016384,0.354304,0.00768,0.004608,0.008192,0.018336,0.018528,1.20547,0.015136
+1422,249.573,4.00684,1.73638,0.016384,0.441824,0.006688,0.005728,0.008,0.016992,0.018432,1.20627,0.016064
+1423,306.954,3.25781,1.68058,0.016384,0.388576,0.006688,0.005376,0.008,0.017344,0.018432,1.20419,0.015584
+1424,277.695,3.60107,1.64659,0.016384,0.376832,0.007616,0.004672,0.00816,0.016416,0.01952,1.18061,0.016384
+1425,302.02,3.31104,1.64048,0.016416,0.36432,0.006336,0.006144,0.007968,0.016608,0.020288,1.18746,0.014944
+1426,247.552,4.03955,1.66323,0.016256,0.37312,0.006208,0.005888,0.008,0.016768,0.019872,1.20179,0.015328
+1427,295.569,3.3833,1.66304,0.016384,0.375904,0.00704,0.005504,0.007968,0.017248,0.018592,1.19942,0.014976
+1428,325.7,3.07031,1.65341,0.016512,0.37328,0.007296,0.004992,0.008192,0.016384,0.019616,1.19197,0.015168
+1429,316.001,3.16455,1.65987,0.015296,0.380928,0.007712,0.004576,0.008064,0.016512,0.020032,1.19171,0.01504
+1430,281.01,3.55859,1.64429,0.016448,0.354976,0.00784,0.005504,0.007136,0.018016,0.018848,1.19962,0.015904
+1431,291.863,3.42627,1.69402,0.016576,0.423136,0.006816,0.004288,0.008192,0.01744,0.019136,1.18362,0.014816
+1432,279.019,3.58398,1.66352,0.016576,0.37888,0.006464,0.005952,0.007968,0.0168,0.019968,1.1945,0.016416
+1433,330.056,3.02979,1.64083,0.016768,0.356352,0.007328,0.004832,0.007968,0.016768,0.019552,1.19504,0.016224
+1434,288.288,3.46875,1.6513,0.016416,0.376384,0.007168,0.005184,0.007104,0.01792,0.018944,1.18579,0.016384
+1435,310.585,3.21973,1.63712,0.016512,0.352768,0.006272,0.006112,0.008032,0.016544,0.020096,1.19546,0.015328
+1436,304.445,3.28467,1.74662,0.016224,0.463104,0.00752,0.004768,0.008192,0.017568,0.01888,1.19424,0.016128
+1437,325.028,3.07666,1.65888,0.016416,0.361632,0.00688,0.004224,0.00816,0.017952,0.018912,1.20973,0.014976
+1438,292.655,3.41699,1.68179,0.016448,0.389408,0.007264,0.005024,0.008192,0.016384,0.020128,1.20253,0.016416
+1439,337.842,2.95996,1.6503,0.016384,0.361664,0.006976,0.005536,0.008,0.017184,0.01856,1.2,0.016
+1440,276.495,3.6167,2.04659,0.016352,0.768736,0.006144,0.005632,0.008,0.017088,0.019584,1.18874,0.01632
+1441,309.74,3.22852,1.64048,0.016384,0.364352,0.006336,0.005344,0.00848,0.016896,0.019584,1.18842,0.014688
+1442,299.81,3.33545,1.63382,0.01632,0.357824,0.006848,0.004128,0.00816,0.017536,0.019008,1.18806,0.015936
+1443,297.718,3.35889,1.66733,0.016448,0.389696,0.006464,0.005952,0.008,0.017824,0.019328,1.1879,0.015712
+1444,317.716,3.14746,1.66464,0.016096,0.393408,0.00624,0.006144,0.007968,0.016608,0.02,1.18218,0.016
+1445,330.003,3.03027,1.6871,0.027008,0.399232,0.006272,0.00608,0.008032,0.017664,0.0192,1.18781,0.015808
+1446,268.133,3.72949,1.668,0.015264,0.395264,0.007264,0.004864,0.008,0.016736,0.018432,1.18579,0.016384
+1447,278.526,3.59033,1.68909,0.016384,0.397312,0.007584,0.004704,0.00816,0.016416,0.01856,1.2041,0.015872
+1448,292.781,3.41553,1.6487,0.016512,0.36736,0.007392,0.004864,0.007968,0.01664,0.019552,1.19245,0.015968
+1449,308.063,3.24609,1.64454,0.016416,0.374016,0.00688,0.005504,0.007936,0.01728,0.019648,1.18221,0.014656
+1450,287.318,3.48047,1.68448,0.016608,0.389056,0.006944,0.005504,0.008,0.01728,0.018432,1.20749,0.015168
+1451,315.319,3.17139,1.64218,0.016512,0.363072,0.006112,0.006144,0.008192,0.01792,0.018912,1.18976,0.015552
+1452,277.695,3.60107,1.66432,0.016384,0.383008,0.006112,0.006144,0.008192,0.016416,0.020384,1.19155,0.016128
+1453,257.513,3.8833,1.69171,0.015264,0.4232,0.00688,0.004128,0.00816,0.018208,0.018656,1.1816,0.015616
+1454,290.826,3.43848,1.64506,0.016416,0.381408,0.007488,0.0048,0.008,0.016576,0.019488,1.176,0.01488
+1455,302.109,3.31006,1.66707,0.016384,0.382432,0.006688,0.005696,0.007968,0.017056,0.018432,1.19603,0.016384
+1456,286.955,3.48486,1.65418,0.016416,0.370656,0.008096,0.005504,0.007968,0.017376,0.02032,1.19197,0.015872
+1457,305.854,3.26953,1.63024,0.016416,0.359776,0.006784,0.0056,0.007936,0.017184,0.01856,1.18301,0.014976
+1458,301.088,3.32129,1.64864,0.016384,0.374656,0.006272,0.006144,0.008128,0.016448,0.019808,1.18442,0.016384
+1459,269.829,3.70605,1.65091,0.016512,0.366848,0.006624,0.00576,0.007936,0.016992,0.019616,1.19485,0.015776
+1460,311.436,3.21094,1.63331,0.0152,0.354336,0.00736,0.004896,0.008192,0.018048,0.018592,1.19149,0.0152
+1461,287.56,3.47754,1.65283,0.016512,0.372736,0.006304,0.005984,0.008192,0.017472,0.018752,1.19053,0.016352
+1462,229.314,4.36084,1.6343,0.016384,0.356352,0.007904,0.005536,0.007072,0.017888,0.018976,1.18915,0.01504
+1463,315.708,3.16748,1.6383,0.01648,0.366464,0.00688,0.004288,0.008192,0.017824,0.01904,1.18365,0.015488
+1464,314.255,3.18213,1.6425,0.017632,0.363296,0.006144,0.005632,0.007936,0.017184,0.019776,1.18992,0.014976
+1465,300.514,3.32764,1.6784,0.016416,0.378816,0.006176,0.006144,0.008032,0.017728,0.018944,1.21046,0.01568
+1466,330.323,3.02734,1.63021,0.016384,0.356352,0.00768,0.004608,0.008192,0.016384,0.019872,1.18538,0.01536
+1467,230.553,4.3374,1.65024,0.01744,0.377824,0.0072,0.005088,0.008192,0.017504,0.018912,1.18214,0.015936
+1468,317.077,3.15381,1.63635,0.016384,0.366592,0.007616,0.004672,0.008192,0.01776,0.01872,1.18112,0.015296
+1469,268.766,3.7207,1.65517,0.016416,0.377184,0.00736,0.004864,0.008032,0.017696,0.019264,1.18934,0.015008
+1470,263.85,3.79004,1.70282,0.01648,0.430048,0.006944,0.005472,0.008,0.01728,0.018464,1.18374,0.016384
+1471,310.491,3.2207,1.66864,0.016416,0.382112,0.006848,0.004224,0.008192,0.017632,0.018976,1.19837,0.015872
+1472,300.69,3.32568,1.66096,0.01744,0.375424,0.006496,0.005472,0.008,0.017248,0.018432,1.19715,0.015296
+1473,286.634,3.48877,1.70259,0.01648,0.43808,0.006944,0.005504,0.007936,0.017152,0.01856,1.1769,0.01504
+1474,309.272,3.2334,1.63414,0.016384,0.358432,0.007264,0.00496,0.008,0.016608,0.020064,1.18621,0.016224
+1475,305.08,3.27783,1.63251,0.016416,0.35632,0.00736,0.004928,0.008192,0.01792,0.018944,1.18762,0.014816
+1476,303.362,3.29639,1.6401,0.01648,0.373184,0.007744,0.004544,0.008192,0.017632,0.019168,1.17728,0.015872
+1477,269.049,3.7168,1.65341,0.01648,0.377408,0.006144,0.006144,0.008192,0.017696,0.019168,1.18685,0.015328
+1478,320.551,3.11963,1.6383,0.016,0.354656,0.006592,0.005792,0.008,0.016928,0.018432,1.1959,0.016
+1479,289.634,3.45264,1.6433,0.016416,0.371392,0.006336,0.006016,0.008,0.01792,0.019008,1.18195,0.016256
+1480,317.716,3.14746,1.62246,0.01664,0.3528,0.006336,0.006144,0.007968,0.016608,0.020256,1.17984,0.015872
+1481,222.198,4.50049,1.67526,0.016416,0.405472,0.006144,0.006144,0.008128,0.016448,0.02032,1.18138,0.014816
+1482,267.014,3.74512,1.71386,0.016384,0.442368,0.006208,0.00608,0.008192,0.01648,0.019776,1.18224,0.016128
+1483,312.72,3.19775,1.6367,0.016512,0.372064,0.006944,0.005504,0.007968,0.017376,0.0184,1.17555,0.016384
+1484,294.211,3.39893,1.65488,0.016384,0.387168,0.006144,0.005856,0.007968,0.016896,0.01856,1.1807,0.0152
+1485,296.769,3.36963,1.66979,0.016384,0.391936,0.006144,0.00576,0.007968,0.016992,0.019712,1.18861,0.016288
+1486,297.501,3.36133,1.68416,0.016448,0.373344,0.007648,0.00464,0.008192,0.017792,0.019072,1.22061,0.016416
+1487,285.356,3.50439,1.66253,0.016416,0.372992,0.007424,0.004896,0.00816,0.017664,0.0192,1.20013,0.015648
+1488,335.573,2.97998,1.63776,0.016384,0.356352,0.007296,0.004992,0.008192,0.01776,0.018752,1.19194,0.016096
+1489,266.181,3.75684,1.66662,0.016384,0.394784,0.006688,0.005632,0.008,0.017088,0.01984,1.18234,0.015872
+1490,310.209,3.22363,1.6343,0.016384,0.370528,0.006304,0.005728,0.00816,0.016832,0.019872,1.17542,0.015072
+1491,280.049,3.5708,1.64659,0.016384,0.382144,0.006848,0.005504,0.007968,0.017376,0.018464,1.17661,0.015296
+1492,318.358,3.14111,1.63226,0.016416,0.359616,0.006848,0.005504,0.007968,0.017216,0.01856,1.18374,0.016384
+1493,283.147,3.53174,1.65478,0.016384,0.378912,0.00752,0.004736,0.008192,0.018112,0.018752,1.18698,0.0152
+1494,338.792,2.95166,1.6464,0.016384,0.372512,0.006368,0.006112,0.008224,0.016384,0.019968,1.18426,0.016192
+1495,321.255,3.11279,1.74483,0.016416,0.47088,0.006272,0.005408,0.008,0.017312,0.018432,1.18579,0.01632
+1496,331.714,3.01465,1.64838,0.016384,0.374784,0.006208,0.00608,0.008192,0.016384,0.01984,1.18438,0.016128
+1497,295.484,3.38428,1.76742,0.016384,0.501792,0.007328,0.004928,0.008192,0.01792,0.018944,1.17706,0.01488
+1498,320.401,3.12109,1.63776,0.016416,0.360096,0.006464,0.005312,0.006976,0.018176,0.018688,1.18957,0.016064
+1499,335.408,2.98145,1.63744,0.016384,0.376416,0.006592,0.00576,0.007968,0.01696,0.018432,1.17322,0.015712
+1500,302.824,3.30225,1.63779,0.016384,0.364576,0.007232,0.004832,0.008,0.016768,0.018432,1.18547,0.016096
+1501,314.835,3.17627,1.64864,0.016384,0.372736,0.007648,0.00464,0.00816,0.017536,0.018848,1.188,0.014688
+1502,311.057,3.21484,1.63459,0.016352,0.365152,0.00752,0.004736,0.008192,0.017984,0.018912,1.17962,0.016128
+1503,287.924,3.47314,1.85549,0.016384,0.5632,0.007456,0.021216,0.008192,0.017792,0.029312,1.17555,0.016384
+1504,311.815,3.20703,1.63085,0.01712,0.360608,0.007712,0.004576,0.008192,0.017984,0.01888,1.17965,0.016128
+1505,290.414,3.44336,1.64794,0.01632,0.370816,0.00736,0.004928,0.008192,0.01776,0.019104,1.18765,0.015808
+1506,297.545,3.36084,1.65027,0.016416,0.381152,0.00768,0.004608,0.008192,0.017856,0.019008,1.17946,0.015904
+1507,275.528,3.62939,1.62307,0.01648,0.366528,0.007168,0.004864,0.007936,0.016864,0.019808,1.16784,0.015584
+1508,230.164,4.34473,1.68211,0.016448,0.412288,0.006144,0.006144,0.008192,0.01744,0.0192,1.17987,0.016384
+1509,284.405,3.51611,1.7632,0.016416,0.501728,0.007424,0.004832,0.007968,0.01664,0.019712,1.17222,0.016256
+1510,307.831,3.24854,1.6384,0.016384,0.374176,0.006752,0.0056,0.008096,0.016928,0.018528,1.17555,0.016384
+1511,281.822,3.54834,1.62835,0.016384,0.3568,0.006144,0.00576,0.007936,0.017024,0.018432,1.18374,0.016128
+1512,274.347,3.64502,1.68963,0.016608,0.409472,0.006272,0.005472,0.007968,0.01728,0.018432,1.19194,0.016192
+1513,256.385,3.90039,1.71136,0.016352,0.44608,0.006624,0.005728,0.007936,0.017056,0.018432,1.1776,0.015552
+1514,316.196,3.1626,1.64454,0.016384,0.380928,0.007264,0.005024,0.008192,0.017664,0.019008,1.1737,0.016384
+1515,302.243,3.30859,1.64835,0.016288,0.376576,0.006848,0.005504,0.007968,0.017152,0.018624,1.18374,0.015648
+1516,274.604,3.6416,1.64477,0.016704,0.366688,0.007264,0.00496,0.007968,0.016672,0.020448,1.18787,0.016192
+1517,310.538,3.22021,1.6696,0.016192,0.400224,0.007392,0.004864,0.007968,0.01664,0.019744,1.18038,0.016192
+1518,316.685,3.15771,1.65946,0.016448,0.393376,0.006496,0.00544,0.008,0.017312,0.0184,1.17882,0.015168
+1519,294.888,3.39111,1.62768,0.01632,0.3624,0.006432,0.00592,0.007968,0.0168,0.020096,1.17594,0.015808
+1520,278.45,3.59131,1.65152,0.016288,0.37712,0.006784,0.004096,0.008192,0.017888,0.018752,1.18602,0.016384
+1521,269.935,3.70459,1.6529,0.016544,0.390464,0.006848,0.004096,0.008192,0.018176,0.018688,1.17475,0.015136
+1522,321.003,3.11523,1.63974,0.016416,0.36432,0.006624,0.006144,0.007968,0.016608,0.018432,1.18707,0.01616
+1523,313.581,3.18896,1.64246,0.016384,0.384736,0.006432,0.00592,0.008032,0.016768,0.018464,1.16941,0.01632
+1524,285.674,3.50049,1.64282,0.01648,0.377024,0.007616,0.004672,0.008192,0.01744,0.01904,1.17594,0.016416
+1525,315.271,3.17188,1.65613,0.016384,0.394368,0.00688,0.005472,0.00704,0.018336,0.018528,1.1735,0.015616
+1526,276.048,3.62256,1.66912,0.016416,0.394912,0.006464,0.00528,0.007232,0.018016,0.018624,1.18579,0.016384
+1527,321.053,3.11475,1.63398,0.016384,0.368384,0.0064,0.005344,0.006976,0.018368,0.018464,1.1776,0.016064
+1528,276.048,3.62256,1.66067,0.016416,0.39584,0.006144,0.005536,0.008,0.01712,0.018496,1.17696,0.01616
+1529,308.852,3.23779,1.64243,0.016352,0.365024,0.006304,0.005952,0.008192,0.017728,0.019168,1.18781,0.015904
+1530,276.122,3.62158,1.67731,0.01744,0.41264,0.00768,0.00464,0.00816,0.017888,0.01888,1.1736,0.016384
+1531,313.629,3.18848,1.63654,0.016416,0.35856,0.007456,0.004832,0.008192,0.018368,0.018528,1.18781,0.016384
+1532,263.171,3.7998,1.66557,0.016384,0.387616,0.00768,0.00464,0.00816,0.017952,0.018656,1.1881,0.016384
+1533,324.564,3.08105,1.64064,0.01632,0.374528,0.00688,0.004128,0.00816,0.01824,0.019648,1.17658,0.01616
+1534,255.648,3.91162,1.65478,0.016384,0.389056,0.006208,0.005504,0.008512,0.016704,0.01952,1.17757,0.015328
+1535,334.969,2.98535,1.62598,0.016384,0.36048,0.007328,0.00496,0.00816,0.018048,0.018816,1.17555,0.016256
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..4837ea7
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_150000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,254.538,3.9523,2.16397,0.0165253,0.394233,0.00699706,0.00496341,0.00810416,1.71633,0.0168215
+max_1024,298.151,5.38477,3.55478,0.03328,1.76333,0.024576,0.0184,0.019968,1.81667,0.0312
+min_1024,185.709,3.354,2.00906,0.014784,0.3376,0.006144,0.004064,0.006624,1.59731,0.016224
+512,274.992,3.63647,2.05139,0.016384,0.358208,0.006336,0.004096,0.008192,1.64147,0.016704
+513,261.491,3.82422,2.06282,0.016448,0.38912,0.00688,0.00416,0.008192,1.62109,0.016928
+514,271.852,3.67847,2.05136,0.016384,0.3584,0.007648,0.00464,0.008192,1.6384,0.017696
+515,253.544,3.94409,2.04582,0.016384,0.35536,0.006912,0.00432,0.008192,1.63779,0.016864
+516,235.146,4.25269,2.06234,0.016384,0.3768,0.006176,0.005824,0.008,1.63277,0.016384
+517,265.957,3.76001,2.0439,0.016384,0.36864,0.007296,0.004864,0.008,1.62208,0.01664
+518,289.184,3.45801,2.044,0.01536,0.352256,0.00736,0.004864,0.008032,1.63866,0.017472
+519,288.086,3.47119,2.04224,0.01616,0.362368,0.006912,0.004064,0.008192,1.62781,0.016736
+520,287.177,3.48218,2.03846,0.016256,0.35472,0.00816,0.00608,0.008096,1.62877,0.016384
+521,243.722,4.10303,2.46989,0.016384,0.782048,0.007552,0.004864,0.007968,1.6343,0.016768
+522,282.912,3.53467,2.05421,0.016576,0.376832,0.006144,0.005632,0.008,1.62461,0.016416
+523,286.935,3.48511,2.03162,0.016384,0.363552,0.00704,0.004192,0.008192,1.61558,0.016672
+524,283.264,3.53027,2.03014,0.016416,0.368352,0.006912,0.004192,0.008192,1.6095,0.016576
+525,280.337,3.56714,2.03782,0.016928,0.354432,0.007712,0.004576,0.008192,1.62934,0.01664
+526,282.756,3.53662,2.03386,0.016352,0.364928,0.006784,0.004096,0.008192,1.6159,0.0176
+527,295.548,3.38354,2.03206,0.014784,0.358368,0.006176,0.005696,0.008032,1.62262,0.016384
+528,278.602,3.58936,2.04368,0.016384,0.370688,0.007808,0.00448,0.008192,1.61958,0.016544
+529,249.589,4.00659,2.03702,0.016416,0.366592,0.00736,0.004864,0.008,1.6161,0.017696
+530,254.711,3.92603,2.1185,0.016544,0.447168,0.007904,0.004384,0.008192,1.61792,0.016384
+531,282.171,3.54395,2.04989,0.016384,0.354304,0.007616,0.004672,0.008192,1.64224,0.01648
+532,243.751,4.10254,2.07398,0.016384,0.38912,0.006144,0.0056,0.008,1.63219,0.016544
+533,252.98,3.95288,2.03859,0.015296,0.352,0.006272,0.0056,0.008,1.63485,0.016576
+534,262.278,3.81274,2.07466,0.016416,0.3584,0.007584,0.004704,0.008192,1.66298,0.016384
+535,272.25,3.6731,2.048,0.016384,0.385024,0.00752,0.004768,0.008096,1.60982,0.016384
+536,280.394,3.56641,2.03306,0.016064,0.352576,0.007776,0.004512,0.008192,1.62739,0.016544
+537,260.925,3.83252,2.05811,0.016256,0.391392,0.006272,0.005504,0.007968,1.61421,0.016512
+538,267.923,3.73242,2.08691,0.016384,0.405536,0.007712,0.004544,0.008192,1.62816,0.016384
+539,263.324,3.79761,2.05907,0.016384,0.375168,0.006624,0.005184,0.007072,1.63226,0.016384
+540,277.733,3.60059,2.04342,0.016384,0.374304,0.006656,0.005184,0.008544,1.61581,0.016544
+541,268.89,3.71899,2.12582,0.016544,0.441984,0.006368,0.005376,0.007968,1.6312,0.016384
+542,271.672,3.68091,2.03069,0.016384,0.3584,0.007904,0.004384,0.015968,1.61014,0.017504
+543,240.249,4.16235,2.05043,0.016416,0.395616,0.00752,0.004768,0.008192,1.60154,0.016384
+544,246.361,4.05908,2.02957,0.016384,0.3584,0.007264,0.004864,0.008192,1.61798,0.01648
+545,271.168,3.68774,2.03622,0.01664,0.36048,0.0064,0.005376,0.007968,1.62275,0.016608
+546,243.086,4.11377,2.03395,0.016352,0.354624,0.007616,0.004672,0.008192,1.62592,0.016576
+547,250.046,3.99927,2.0951,0.016416,0.413664,0.006208,0.005664,0.008,1.62867,0.01648
+548,273.76,3.65283,2.07245,0.01648,0.387232,0.006528,0.0056,0.008032,1.63088,0.017696
+549,273.449,3.65698,2.04186,0.016416,0.384224,0.00688,0.00416,0.00816,1.60563,0.016384
+550,259.635,3.85156,2.06515,0.016224,0.379296,0.006656,0.005152,0.007136,1.6343,0.016384
+551,267.049,3.74463,2.03366,0.016384,0.368416,0.006368,0.005408,0.008064,1.61245,0.016576
+552,217.838,4.59058,2.0937,0.016512,0.430592,0.007808,0.00448,0.008192,1.60973,0.016384
+553,271.348,3.6853,2.0176,0.016256,0.355936,0.006976,0.004128,0.008192,1.60973,0.016384
+554,277.582,3.60254,2.04534,0.016384,0.376192,0.006784,0.005632,0.008032,1.61584,0.01648
+555,254.98,3.92188,2.09056,0.016384,0.4096,0.007648,0.00464,0.008192,1.62752,0.016576
+556,270.792,3.69287,2.0367,0.016448,0.35888,0.006592,0.005184,0.007136,1.62608,0.016384
+557,282.892,3.53491,2.06816,0.017568,0.38768,0.006336,0.005408,0.007968,1.62666,0.016544
+558,250.919,3.98535,2.06451,0.016512,0.372768,0.007648,0.004608,0.008192,1.6384,0.016384
+559,276.253,3.61987,2.05482,0.016416,0.37088,0.006624,0.005792,0.008128,1.63018,0.0168
+560,280.875,3.5603,2.04243,0.016384,0.36448,0.006784,0.004096,0.008192,1.61792,0.024576
+561,246.539,4.05615,2.15043,0.016288,0.479232,0.006592,0.005184,0.007104,1.61939,0.01664
+562,234.876,4.25757,2.02806,0.01648,0.348736,0.006144,0.005728,0.008,1.6144,0.028576
+563,234.285,4.26831,2.04397,0.016544,0.349344,0.00688,0.004288,0.008192,1.64202,0.016704
+564,265.457,3.76709,2.07914,0.016288,0.397184,0.00688,0.004224,0.008192,1.62986,0.016512
+565,298.151,3.354,2.02784,0.016416,0.356576,0.007584,0.004704,0.00816,1.61795,0.016448
+566,254.079,3.93579,2.06579,0.016384,0.382976,0.0072,0.004864,0.008032,1.62966,0.016672
+567,268.696,3.72168,2.03472,0.01744,0.362816,0.006816,0.004096,0.008192,1.61795,0.017408
+568,273.504,3.65625,2.05053,0.016448,0.383264,0.007552,0.004864,0.008,1.61402,0.016384
+569,274.752,3.63965,2.03018,0.016608,0.356672,0.006208,0.005568,0.008032,1.6207,0.016384
+570,206.181,4.8501,2.03146,0.016576,0.369088,0.006368,0.005536,0.008032,1.60845,0.017408
+571,275.065,3.6355,2.02422,0.016416,0.356928,0.006368,0.005408,0.007968,1.61478,0.016352
+572,281.609,3.55103,2.02403,0.016448,0.352832,0.006208,0.005696,0.008032,1.61802,0.0168
+573,255.569,3.91284,2.04618,0.016384,0.354528,0.007456,0.004832,0.008032,1.63856,0.016384
+574,227.328,4.39893,2.03187,0.01648,0.36464,0.006208,0.005536,0.008032,1.61418,0.0168
+575,275.806,3.62573,2.06438,0.017728,0.38368,0.007296,0.004864,0.008032,1.6264,0.016384
+576,293.179,3.41089,2.01936,0.016416,0.357344,0.007136,0.004128,0.008192,1.60941,0.016736
+577,256.69,3.89575,2.05005,0.016416,0.3824,0.006688,0.004128,0.00816,1.61587,0.016384
+578,273.907,3.65088,2.03162,0.017696,0.364736,0.006688,0.005152,0.007136,1.61382,0.016384
+579,220.357,4.53809,2.08282,0.016416,0.42528,0.006816,0.004128,0.00816,1.60563,0.016384
+580,257.626,3.88159,2.05578,0.016384,0.396992,0.006464,0.00528,0.007008,1.60691,0.016736
+581,270.953,3.69067,2.03757,0.016064,0.359936,0.00688,0.004192,0.008192,1.6256,0.016704
+582,195.756,5.1084,2.04218,0.016512,0.374976,0.007232,0.004896,0.007968,1.61395,0.01664
+583,277.469,3.604,2.0521,0.01744,0.366912,0.006816,0.004096,0.008192,1.63142,0.017216
+584,273.925,3.65063,2.06298,0.01632,0.402112,0.00784,0.004448,0.008192,1.60768,0.016384
+585,268.379,3.72607,2.03094,0.016416,0.352032,0.006336,0.005408,0.007968,1.62515,0.017632
+586,218.768,4.57104,2.06682,0.016384,0.37264,0.006624,0.005152,0.007136,1.62768,0.0312
+587,276.514,3.61646,2.02957,0.016416,0.362464,0.00624,0.005696,0.007744,1.61462,0.016384
+588,283.617,3.52588,2.02998,0.01648,0.364896,0.007488,0.004768,0.008192,1.61178,0.016384
+589,256.176,3.90356,2.02957,0.016544,0.360288,0.007808,0.00448,0.008192,1.61587,0.016384
+590,215.988,4.62988,2.00906,0.016448,0.344768,0.008,0.004288,0.008192,1.60976,0.0176
+591,238.403,4.19458,2.12787,0.016384,0.472928,0.006304,0.005472,0.008,1.6024,0.016384
+592,250.52,3.9917,2.07462,0.016384,0.413472,0.006368,0.00544,0.008032,1.60854,0.016384
+593,236.326,4.23145,2.04714,0.016384,0.374784,0.006144,0.005696,0.008,1.61856,0.017568
+594,225.887,4.427,2.17379,0.016512,0.497568,0.006912,0.00416,0.008192,1.62406,0.016384
+595,258.341,3.87085,2.08086,0.01648,0.38912,0.007712,0.004576,0.008192,1.6384,0.016384
+596,247.343,4.04297,2.10125,0.016384,0.44832,0.006336,0.0056,0.008,1.60022,0.016384
+597,251.597,3.97461,2.10083,0.016384,0.45056,0.006272,0.005728,0.008,1.59731,0.016576
+598,236.203,4.23364,2.04445,0.016544,0.38512,0.0064,0.0056,0.008,1.60637,0.016416
+599,268.943,3.71826,2.03571,0.016416,0.372704,0.006144,0.005728,0.007968,1.61021,0.016544
+600,223.764,4.46899,2.13443,0.016416,0.466464,0.006944,0.00528,0.007072,1.61562,0.01664
+601,249.65,4.00562,2.1463,0.016384,0.455936,0.00688,0.004128,0.008192,1.63827,0.016512
+602,261.191,3.82861,2.04096,0.01744,0.365568,0.008,0.004256,0.008192,1.62099,0.016512
+603,246.806,4.05176,2.34618,0.016416,0.67376,0.007456,0.004832,0.008064,1.61805,0.0176
+604,275.714,3.62695,2.05139,0.016384,0.37888,0.007712,0.004576,0.00816,1.61904,0.01664
+605,241.509,4.14062,2.05994,0.016224,0.39552,0.006304,0.005696,0.008,1.61158,0.016608
+606,261.274,3.82739,2.08691,0.016416,0.41776,0.007456,0.004832,0.008032,1.61603,0.016384
+607,288.674,3.46411,2.04362,0.016416,0.374752,0.007424,0.004832,0.008096,1.6152,0.016896
+608,270.185,3.70117,2.08467,0.016384,0.421248,0.006816,0.004064,0.008192,1.61142,0.016544
+609,262.497,3.80957,2.08096,0.016384,0.401408,0.007296,0.004864,0.00832,1.62611,0.016576
+610,242.482,4.12402,2.10598,0.016096,0.446464,0.00688,0.00432,0.008192,1.60726,0.016768
+611,278.015,3.59692,2.03366,0.016384,0.374784,0.006144,0.005696,0.008032,1.60624,0.016384
+612,260.942,3.83228,2.06589,0.016416,0.400416,0.006944,0.004256,0.008192,1.61299,0.016672
+613,283.676,3.52515,2.05414,0.017664,0.381696,0.007648,0.00464,0.008192,1.61773,0.016576
+614,210.343,4.75415,2.08022,0.016416,0.388256,0.006944,0.004128,0.008192,1.63974,0.016544
+615,256.208,3.90308,2.06643,0.016416,0.389088,0.007488,0.0048,0.008032,1.62422,0.016384
+616,266.58,3.75122,2.04298,0.016416,0.370656,0.00624,0.006048,0.008192,1.61792,0.017504
+617,279.801,3.57397,2.06029,0.017568,0.3832,0.006784,0.004096,0.008192,1.62406,0.016384
+618,266.997,3.74536,2.0297,0.016512,0.366176,0.006656,0.005216,0.007104,1.6113,0.016736
+619,211.352,4.73145,2.18403,0.016416,0.50464,0.006144,0.005664,0.008,1.62678,0.016384
+620,270.756,3.69336,2.04598,0.016288,0.373952,0.006944,0.004256,0.008192,1.6199,0.016448
+621,228.904,4.36865,2.07062,0.016384,0.399456,0.007584,0.004704,0.00816,1.61795,0.016384
+622,261.041,3.83081,2.03814,0.016448,0.364256,0.006784,0.004096,0.008192,1.62163,0.016736
+623,281.609,3.55103,2.06032,0.016736,0.376576,0.006912,0.00416,0.008192,1.63021,0.017536
+624,271.492,3.68335,2.06643,0.016416,0.411104,0.006656,0.004096,0.008192,1.60358,0.016384
+625,280.971,3.55908,2.02064,0.016416,0.366176,0.00656,0.005216,0.00704,1.60154,0.017696
+626,263.697,3.79224,2.0664,0.016384,0.378912,0.007808,0.004448,0.008192,1.63395,0.016704
+627,253.074,3.95142,2.06234,0.016384,0.385024,0.007424,0.004864,0.008032,1.62403,0.016576
+628,273.012,3.66284,2.09907,0.016384,0.42576,0.006944,0.00416,0.008192,1.61997,0.017664
+629,278.355,3.59253,2.0376,0.016512,0.3648,0.007744,0.004544,0.008192,1.61894,0.016864
+630,262.027,3.81641,2.12173,0.016416,0.453664,0.006912,0.004288,0.008192,1.61568,0.016576
+631,256.369,3.90063,2.0463,0.01664,0.390528,0.00688,0.004096,0.008192,1.60358,0.016384
+632,245.416,4.07471,2.06195,0.016384,0.386304,0.006912,0.004096,0.008192,1.62304,0.017024
+633,252,3.96826,2.06118,0.016416,0.389632,0.006528,0.005248,0.007008,1.61997,0.016384
+634,294.38,3.39697,2.04931,0.024352,0.366112,0.006912,0.004224,0.008192,1.62202,0.017504
+635,258.309,3.87134,2.12192,0.01648,0.457344,0.006336,0.00512,0.007168,1.61178,0.017696
+636,263.408,3.79639,2.06006,0.016384,0.386848,0.006368,0.005344,0.008032,1.62003,0.017056
+637,266.233,3.7561,2.05619,0.016384,0.394944,0.006496,0.00528,0.007008,1.6097,0.016384
+638,283.932,3.52197,2.06982,0.016416,0.374752,0.00624,0.005728,0.008,1.64099,0.017696
+639,234.459,4.26514,2.46787,0.016384,0.790528,0.007616,0.004672,0.008192,1.62406,0.016416
+640,270.506,3.69678,2.06832,0.016384,0.382304,0.006816,0.004096,0.008192,1.63379,0.016736
+641,223.678,4.4707,2.06058,0.016544,0.383424,0.007552,0.004736,0.008192,1.6233,0.016832
+642,257.805,3.87891,2.0639,0.016384,0.386528,0.006688,0.005216,0.007104,1.62531,0.016672
+643,259.388,3.85522,2.07757,0.016256,0.401952,0.006624,0.005184,0.007136,1.62403,0.016384
+644,266.91,3.74658,2.14416,0.016224,0.46112,0.006688,0.005152,0.007136,1.63126,0.016576
+645,245.314,4.07642,2.08371,0.016384,0.402304,0.007744,0.004544,0.008192,1.62816,0.016384
+646,250.919,3.98535,2.08077,0.016384,0.397152,0.006304,0.0056,0.008,1.63094,0.016384
+647,221.274,4.51929,2.13296,0.016512,0.459264,0.006496,0.00528,0.007008,1.62202,0.016384
+648,237.312,4.21387,2.11322,0.016416,0.396832,0.006592,0.005184,0.007104,1.66435,0.016736
+649,281.357,3.5542,2.05104,0.016448,0.373664,0.007264,0.004928,0.007936,1.62422,0.016576
+650,276.122,3.62158,2.05213,0.016416,0.35968,0.00688,0.004096,0.008192,1.64045,0.016416
+651,221.681,4.51099,2.25066,0.016416,0.563136,0.006208,0.00576,0.008,1.63386,0.01728
+652,286.875,3.48584,2.06442,0.016384,0.372736,0.006144,0.0056,0.008032,1.6391,0.016416
+653,257.853,3.87817,2.05747,0.016384,0.380416,0.006656,0.005216,0.007072,1.62406,0.017664
+654,261.008,3.8313,2.10534,0.016384,0.396608,0.00688,0.004064,0.008192,1.65683,0.016384
+655,203.366,4.91724,2.04925,0.01648,0.365856,0.006912,0.004128,0.008192,1.63021,0.017472
+656,268.326,3.72681,2.05606,0.016384,0.384672,0.006496,0.005376,0.008,1.6185,0.01664
+657,275.25,3.63306,2.08691,0.016384,0.372,0.00688,0.004096,0.008192,1.66298,0.016384
+658,286.534,3.48999,2.07552,0.016416,0.385728,0.007584,0.004864,0.008032,1.63638,0.016512
+659,266.355,3.75439,2.03478,0.016416,0.364096,0.00656,0.005792,0.008,1.61645,0.017472
+660,271.115,3.68848,2.10112,0.01648,0.40816,0.007264,0.004864,0.008032,1.63872,0.0176
+661,287.964,3.47266,2.03571,0.016352,0.365568,0.006272,0.00576,0.008,1.61632,0.01744
+662,282.288,3.54248,2.07734,0.016288,0.38112,0.00672,0.004096,0.019904,1.6328,0.016416
+663,264.105,3.78638,2.12406,0.016448,0.440128,0.006464,0.00528,0.007008,1.63229,0.016448
+664,284.84,3.51074,2.05971,0.016352,0.37696,0.00768,0.004608,0.008192,1.62816,0.01776
+665,271.079,3.68896,2.03981,0.016416,0.353504,0.006912,0.004096,0.008192,1.6343,0.016384
+666,244.086,4.09692,2.1488,0.016288,0.475584,0.006336,0.005632,0.008,1.62032,0.01664
+667,267.45,3.73901,2.06246,0.01648,0.362496,0.007712,0.004576,0.008192,1.64605,0.01696
+668,234.782,4.25928,2.0367,0.016512,0.35264,0.006656,0.005088,0.0072,1.63222,0.016384
+669,245.755,4.06909,2.13606,0.016384,0.446464,0.007776,0.004512,0.008192,1.63635,0.016384
+670,280.51,3.56494,2.02938,0.016416,0.34944,0.00688,0.004096,0.008192,1.62762,0.016736
+671,290.517,3.44214,2.07933,0.016288,0.364576,0.006848,0.005504,0.008,1.66154,0.016576
+672,273.98,3.6499,2.06438,0.016384,0.364576,0.006176,0.005696,0.008064,1.64691,0.016576
+673,263.646,3.79297,2.0721,0.016096,0.389472,0.006496,0.005312,0.008032,1.62915,0.017536
+674,278.829,3.58643,2.05619,0.016256,0.376064,0.006976,0.00416,0.008192,1.62816,0.016384
+675,254.568,3.92822,2.1033,0.016384,0.425984,0.007584,0.004704,0.008192,1.62406,0.016384
+676,271.907,3.67773,2.06899,0.016128,0.375296,0.0064,0.005312,0.008256,1.64096,0.01664
+677,255.696,3.91089,2.08013,0.016384,0.38704,0.006176,0.0056,0.008,1.64029,0.01664
+678,269.173,3.71509,2.06224,0.016384,0.363808,0.00688,0.004096,0.008192,1.64624,0.01664
+679,239.813,4.16992,2.11149,0.016384,0.375808,0.006944,0.00432,0.008192,1.68346,0.016384
+680,265.319,3.76904,2.07693,0.016032,0.385536,0.006176,0.005792,0.008032,1.63891,0.016448
+681,265.251,3.77002,2.08074,0.016384,0.388768,0.006496,0.005248,0.007072,1.64003,0.016736
+682,278.867,3.58594,2.07382,0.016416,0.380768,0.006272,0.005536,0.008,1.6392,0.017632
+683,269.616,3.70898,2.07882,0.016384,0.362496,0.006208,0.005728,0.008,1.66352,0.01648
+684,246.866,4.05078,2.13619,0.016608,0.457152,0.007488,0.0048,0.008128,1.62538,0.01664
+685,285.376,3.50415,2.10762,0.016576,0.395296,0.00736,0.004896,0.007968,1.65914,0.016384
+686,267.975,3.73169,2.08064,0.016384,0.380928,0.007328,0.004896,0.008,1.6464,0.016704
+687,270.935,3.69092,2.07834,0.020576,0.376192,0.006688,0.00512,0.007168,1.64598,0.016608
+688,242.985,4.11548,2.13827,0.016288,0.430656,0.007648,0.004608,0.008192,1.65421,0.016672
+689,275.51,3.62964,2.06192,0.016512,0.362592,0.00784,0.004352,0.008192,1.64586,0.016576
+690,228.495,4.37646,2.06,0.017472,0.375776,0.007392,0.004864,0.008,1.62973,0.016768
+691,276.495,3.6167,2.07837,0.016416,0.3688,0.007744,0.004512,0.008192,1.65594,0.016768
+692,256,3.90625,2.08774,0.016672,0.369184,0.008192,0.004096,0.008192,1.66506,0.016352
+693,266.754,3.74878,2.11078,0.016384,0.397312,0.00752,0.004768,0.008128,1.65907,0.0176
+694,283.108,3.53223,2.08896,0.01632,0.369792,0.006912,0.004288,0.008192,1.66682,0.01664
+695,278.791,3.58691,2.09875,0.016384,0.37888,0.007584,0.004704,0.008128,1.66634,0.016736
+696,259.882,3.8479,2.15859,0.016384,0.446336,0.006272,0.005472,0.008,1.65949,0.01664
+697,271.726,3.68018,2.08102,0.016384,0.387168,0.006496,0.005248,0.00704,1.64202,0.016672
+698,284.188,3.5188,2.08083,0.016448,0.385024,0.007904,0.004384,0.008192,1.6424,0.01648
+699,252.357,3.96265,2.07901,0.01664,0.383008,0.007168,0.004928,0.008032,1.64259,0.01664
+700,271.348,3.6853,2.07664,0.016384,0.37072,0.007328,0.004896,0.008,1.65238,0.016928
+701,231.216,4.32495,2.09984,0.016384,0.38688,0.006912,0.00416,0.008192,1.6608,0.016512
+702,250.719,3.98853,2.05824,0.016384,0.3584,0.006144,0.005696,0.008064,1.64691,0.01664
+703,276.607,3.61523,2.06138,0.016384,0.362336,0.006336,0.005632,0.007968,1.64525,0.017472
+704,268.273,3.72754,2.10333,0.016384,0.390176,0.00688,0.004352,0.008192,1.66051,0.016832
+705,247.627,4.03833,2.11405,0.016576,0.392608,0.006912,0.004256,0.008192,1.66912,0.016384
+706,254.536,3.92871,2.1041,0.016448,0.3816,0.006208,0.005536,0.008032,1.66989,0.016384
+707,261.96,3.81738,2.08896,0.016384,0.360448,0.006144,0.005728,0.008032,1.67584,0.016384
+708,259.767,3.84961,2.23133,0.016384,0.526336,0.007488,0.0048,0.008192,1.65069,0.01744
+709,277.338,3.60571,2.08771,0.016256,0.365088,0.00656,0.005248,0.00704,1.67114,0.016384
+710,236.026,4.23682,2.08394,0.016416,0.369664,0.006624,0.004608,0.008192,1.66202,0.016416
+711,254.568,3.92822,2.08848,0.016416,0.374176,0.006752,0.004096,0.009632,1.66077,0.01664
+712,262.53,3.80908,2.09104,0.016384,0.374816,0.006144,0.005728,0.007968,1.6633,0.016704
+713,256.754,3.89478,2.12102,0.016384,0.403456,0.007616,0.004672,0.008192,1.664,0.016704
+714,269.775,3.70679,2.11149,0.016384,0.391168,0.00624,0.005696,0.008032,1.66758,0.016384
+715,274.347,3.64502,2.11184,0.016512,0.390624,0.006912,0.004096,0.008192,1.66912,0.016384
+716,259.553,3.85278,2.09078,0.016384,0.355936,0.00656,0.005184,0.007104,1.68256,0.017056
+717,237.449,4.21143,2.09869,0.016384,0.385024,0.007776,0.004512,0.008192,1.66022,0.016576
+718,256.401,3.90015,2.06557,0.017632,0.361248,0.00736,0.004864,0.008,1.6489,0.017568
+719,284.306,3.51733,2.07814,0.016384,0.36864,0.007776,0.004512,0.008192,1.656,0.01664
+720,242.023,4.13184,2.09242,0.016384,0.36864,0.007776,0.004512,0.008192,1.67053,0.016384
+721,283.499,3.52734,2.08448,0.016416,0.364512,0.007424,0.004864,0.008064,1.6665,0.016704
+722,274.531,3.64258,2.15206,0.016416,0.425888,0.006208,0.005568,0.008032,1.67318,0.016768
+723,279.285,3.58057,2.08493,0.016416,0.36048,0.006208,0.005824,0.00816,1.67146,0.016384
+724,270.345,3.69897,2.10259,0.016448,0.378912,0.007712,0.004544,0.008192,1.66912,0.017664
+725,258.913,3.8623,2.08691,0.016384,0.366592,0.007712,0.004576,0.008192,1.66707,0.016384
+726,256.465,3.89917,2.13245,0.016448,0.405376,0.00688,0.00432,0.008192,1.67466,0.016576
+727,284.721,3.51221,2.08099,0.016448,0.37648,0.006912,0.004128,0.008192,1.65219,0.01664
+728,262.851,3.80444,2.13984,0.016384,0.429728,0.006496,0.005344,0.008,1.65709,0.0168
+729,235.186,4.25195,2.20979,0.016416,0.485344,0.007776,0.004512,0.008192,1.67117,0.016384
+730,253.371,3.94678,2.08118,0.016288,0.356864,0.006272,0.005696,0.008,1.67146,0.016608
+731,270.327,3.69922,2.07856,0.015904,0.35664,0.006336,0.005344,0.008032,1.66963,0.016672
+732,279.438,3.57861,2.10627,0.015296,0.366592,0.007232,0.004896,0.008,1.68762,0.01664
+733,246.702,4.05347,2.14221,0.018432,0.43008,0.007872,0.004416,0.008192,1.65629,0.016928
+734,269.58,3.70947,2.0945,0.016384,0.367904,0.00688,0.004096,0.008192,1.6745,0.016544
+735,271.007,3.68994,2.196,0.03328,0.461856,0.006912,0.016544,0.008256,1.65267,0.01648
+736,289.041,3.45972,2.06643,0.016416,0.367584,0.006944,0.00432,0.008192,1.64659,0.016384
+737,224.833,4.44775,2.12992,0.016384,0.417696,0.00624,0.005504,0.008,1.65974,0.016352
+738,276.738,3.61353,2.09286,0.016384,0.376864,0.007712,0.004544,0.008192,1.66237,0.0168
+739,228.024,4.3855,2.15306,0.016416,0.434528,0.006368,0.005408,0.00688,1.66707,0.016384
+740,265.681,3.76392,2.11763,0.016416,0.38208,0.00688,0.004224,0.008192,1.68346,0.016384
+741,232.173,4.30713,2.09424,0.016384,0.36224,0.0064,0.005312,0.006976,1.67936,0.017568
+742,267.52,3.73804,2.12576,0.016416,0.39728,0.007776,0.004512,0.008192,1.67491,0.016672
+743,280.03,3.57104,2.06298,0.016736,0.344384,0.007584,0.004672,0.008192,1.66502,0.016384
+744,264.856,3.77563,2.13206,0.016096,0.417536,0.007136,0.004096,0.008192,1.6623,0.016704
+745,295.292,3.38647,2.08077,0.016384,0.357536,0.006912,0.004192,0.008192,1.67117,0.016384
+746,269.491,3.71069,2.10371,0.016192,0.377792,0.008192,0.004096,0.008192,1.67245,0.0168
+747,281.88,3.54761,2.048,0.016384,0.339968,0.007456,0.004832,0.008096,1.65488,0.016384
+748,271.961,3.677,2.0768,0.015424,0.36848,0.007424,0.004864,0.008192,1.65478,0.017632
+749,266.06,3.75854,2.08931,0.01648,0.350976,0.016544,0.005696,0.008064,1.67482,0.016736
+750,227.986,4.38623,2.07933,0.016256,0.363232,0.006144,0.005632,0.008032,1.66365,0.016384
+751,271.672,3.68091,2.12582,0.016416,0.395232,0.007424,0.004832,0.008192,1.67738,0.016352
+752,274.31,3.64551,2.12173,0.016384,0.395264,0.0072,0.004896,0.008,1.6736,0.016384
+753,268.819,3.71997,2.13206,0.016,0.405984,0.006304,0.00576,0.008,1.67363,0.016384
+754,235.402,4.24805,2.15808,0.01744,0.435168,0.007456,0.004768,0.008128,1.66858,0.016544
+755,266.164,3.75708,2.11802,0.015904,0.382944,0.007008,0.00416,0.008192,1.68307,0.016736
+756,278.261,3.59375,2.08899,0.016416,0.366304,0.0064,0.005408,0.008,1.67005,0.016416
+757,272.123,3.6748,2.11338,0.016352,0.394016,0.007296,0.004864,0.008,1.66534,0.017504
+758,247.253,4.04443,2.18659,0.016384,0.442368,0.007648,0.00464,0.008192,1.69078,0.016576
+759,234.862,4.25781,2.12774,0.016512,0.390784,0.00656,0.005216,0.007072,1.68509,0.016512
+760,258.978,3.86133,2.11354,0.016096,0.364832,0.006144,0.005696,0.008032,1.69635,0.016384
+761,265.268,3.76978,2.12163,0.016416,0.368608,0.007808,0.00448,0.008192,1.69968,0.016448
+762,243.129,4.11304,2.10909,0.016384,0.38704,0.006208,0.005568,0.008064,1.66912,0.016704
+763,286.373,3.49194,2.08138,0.016384,0.356224,0.00688,0.005664,0.007968,1.67142,0.016832
+764,270.185,3.70117,2.17088,0.016416,0.4176,0.006336,0.005408,0.008032,1.7007,0.016384
+765,257.659,3.8811,2.07456,0.016384,0.360448,0.007712,0.004576,0.008192,1.66058,0.016672
+766,259.701,3.85059,2.27158,0.021856,0.533024,0.006592,0.005184,0.007104,1.68141,0.016416
+767,263.901,3.78931,2.07878,0.016448,0.35744,0.00688,0.00432,0.008192,1.66899,0.016512
+768,241.396,4.14258,2.12006,0.016448,0.375136,0.007488,0.004768,0.008128,1.69171,0.016384
+769,273.158,3.66089,2.08714,0.015744,0.351072,0.007648,0.00464,0.008192,1.68346,0.016384
+770,247.537,4.03979,2.16,0.016384,0.421888,0.00784,0.004448,0.008192,1.68355,0.017696
+771,275.324,3.63208,2.12307,0.016384,0.374784,0.006176,0.005728,0.008064,1.69546,0.01648
+772,283.401,3.52856,2.08941,0.016672,0.359136,0.00752,0.004768,0.008096,1.67658,0.01664
+773,266.06,3.75854,2.09728,0.016416,0.368736,0.007456,0.004832,0.008064,1.67539,0.016384
+774,252.684,3.95752,2.13242,0.016416,0.408,0.007744,0.004512,0.008192,1.6711,0.016448
+775,249.118,4.01416,2.11763,0.016384,0.36864,0.007712,0.004576,0.008192,1.69574,0.016384
+776,249.513,4.00781,2.21389,0.016384,0.448512,0.006144,0.005248,0.016288,1.70474,0.016576
+777,243.839,4.10107,2.08768,0.015552,0.365504,0.006944,0.004128,0.008192,1.67066,0.016704
+778,242.841,4.11792,2.25853,0.016384,0.493568,0.024576,0.005376,0.014656,1.68598,0.017984
+779,241.709,4.13721,2.11786,0.016448,0.376992,0.006368,0.005664,0.007968,1.68787,0.016544
+780,261.742,3.82056,2.08896,0.016384,0.363968,0.00672,0.005472,0.008032,1.67152,0.016864
+781,275.676,3.62744,2.0928,0.016224,0.373152,0.007744,0.004544,0.008192,1.66637,0.016576
+782,240.023,4.16626,2.41661,0.016384,0.655392,0.007264,0.004864,0.01856,1.69763,0.016512
+783,276.832,3.6123,2.12688,0.016416,0.35536,0.006912,0.004288,0.008192,1.71827,0.01744
+784,266.858,3.74731,2.08077,0.016416,0.350176,0.006144,0.005792,0.007776,1.67786,0.016608
+785,255.409,3.91528,2.0951,0.016384,0.350208,0.007648,0.00464,0.008192,1.69155,0.01648
+786,218.582,4.57495,2.27149,0.016448,0.561056,0.00688,0.004288,0.008192,1.65798,0.01664
+787,257.724,3.88013,2.10538,0.016384,0.382752,0.0064,0.005376,0.008,1.67005,0.016416
+788,264.377,3.78247,2.14032,0.016256,0.393504,0.007648,0.00464,0.008192,1.6937,0.016384
+789,237.615,4.2085,2.21261,0.025376,0.450528,0.007712,0.004576,0.008192,1.69981,0.016416
+790,208.554,4.79492,2.18294,0.016672,0.425792,0.006656,0.005824,0.008032,1.70362,0.016352
+791,212.724,4.70093,2.16966,0.016576,0.43264,0.006272,0.005504,0.008032,1.68426,0.016384
+792,265.646,3.7644,2.14221,0.016384,0.4096,0.006176,0.0056,0.007968,1.6801,0.016384
+793,212.25,4.71143,2.11968,0.016384,0.372736,0.006208,0.005728,0.008,1.68195,0.028672
+794,240.192,4.16333,2.11437,0.015168,0.391168,0.006144,0.005696,0.008,1.67181,0.016384
+795,273.468,3.65674,2.08912,0.016192,0.360576,0.006336,0.005472,0.007968,1.67587,0.016704
+796,284.662,3.51294,2.10285,0.016384,0.359712,0.00688,0.004096,0.008192,1.69088,0.016704
+797,230.644,4.33569,2.17917,0.01648,0.436896,0.00736,0.004896,0.008,1.68902,0.016512
+798,264.617,3.77905,2.09101,0.016384,0.363968,0.006752,0.00512,0.007136,1.6751,0.016544
+799,276.701,3.61401,2.12173,0.016416,0.3928,0.006528,0.005216,0.007072,1.67731,0.016384
+800,260.892,3.83301,2.1065,0.016416,0.363328,0.00624,0.005568,0.008032,1.69034,0.016576
+801,258.7,3.86548,2.18931,0.017472,0.428992,0.006304,0.005696,0.008224,1.70624,0.016384
+802,259.898,3.84766,2.08627,0.016384,0.355392,0.006944,0.004256,0.008192,1.67846,0.01664
+803,219.284,4.5603,2.14762,0.016384,0.405216,0.006464,0.0184,0.007968,1.67654,0.01664
+804,278.412,3.5918,2.1103,0.01648,0.344832,0.006272,0.005696,0.008,1.71242,0.016608
+805,257.513,3.8833,2.11085,0.016384,0.357664,0.00688,0.004096,0.008192,1.69062,0.027008
+806,226.248,4.41992,2.31014,0.016384,0.54848,0.006528,0.005216,0.01872,1.68589,0.028928
+807,281.396,3.55371,2.08691,0.016416,0.35632,0.00736,0.004832,0.008,1.67741,0.016576
+808,232.055,4.30933,2.16269,0.017888,0.401952,0.006176,0.005728,0.008032,1.70653,0.016384
+809,238.098,4.19995,2.15552,0.015456,0.411552,0.007872,0.004416,0.008192,1.69123,0.0168
+810,220.144,4.54248,2.17677,0.016416,0.401376,0.007296,0.004896,0.008,1.72214,0.01664
+811,247.717,4.03687,2.12998,0.016448,0.39936,0.006144,0.005696,0.007936,1.67802,0.016384
+812,257.416,3.88477,2.11382,0.016544,0.38288,0.006464,0.00528,0.008032,1.67776,0.016864
+813,211.145,4.73608,2.24246,0.016416,0.502144,0.008,0.004288,0.008192,1.68688,0.016544
+814,243.505,4.10669,2.14221,0.016384,0.393216,0.007616,0.004672,0.008192,1.69574,0.016384
+815,217.467,4.59839,2.14224,0.016384,0.407264,0.006432,0.005312,0.008032,1.6824,0.016416
+816,249.589,4.00659,2.14221,0.01744,0.406528,0.007392,0.004864,0.008,1.6816,0.016384
+817,255.075,3.92041,2.12582,0.016384,0.370624,0.00624,0.005536,0.007744,1.70288,0.016416
+818,191.778,5.21436,2.14643,0.01648,0.415776,0.007328,0.004896,0.008,1.67757,0.016384
+819,270.703,3.69409,2.11523,0.016384,0.37696,0.007392,0.004832,0.008096,1.68502,0.016544
+820,271.348,3.6853,2.12147,0.016288,0.369504,0.00768,0.004608,0.008192,1.69779,0.017408
+821,239.127,4.18188,2.28614,0.016608,0.544704,0.00656,0.005344,0.008,1.68854,0.016384
+822,270.595,3.69556,2.12666,0.01648,0.379392,0.007584,0.004896,0.008032,1.69379,0.01648
+823,241.937,4.1333,2.10752,0.016384,0.380928,0.007584,0.004704,0.00816,1.67325,0.016512
+824,228.865,4.36938,2.27584,0.025088,0.537696,0.006912,0.015808,0.008416,1.66554,0.016384
+825,272.123,3.6748,2.12691,0.017472,0.374944,0.006944,0.004096,0.008192,1.69782,0.01744
+826,281.203,3.55615,2.09437,0.016384,0.36592,0.006816,0.004096,0.008192,1.67536,0.0176
+827,268.943,3.71826,2.16269,0.016384,0.39728,0.006208,0.005536,0.008352,1.71254,0.016384
+828,258.195,3.87305,2.11587,0.01648,0.384768,0.006592,0.005184,0.007104,1.67933,0.016416
+829,278.242,3.59399,2.11222,0.016096,0.3792,0.006848,0.004096,0.008256,1.68134,0.016384
+830,257.109,3.8894,2.1385,0.01648,0.421888,0.006752,0.004096,0.008192,1.66432,0.016768
+831,271.636,3.6814,2.10714,0.016416,0.36896,0.0064,0.0056,0.008,1.68419,0.017568
+832,248.393,4.02588,2.2177,0.016384,0.497696,0.007776,0.00448,0.008192,1.66662,0.016544
+833,269.279,3.71362,2.11174,0.01664,0.378496,0.006528,0.005312,0.007072,1.68131,0.016384
+834,240.009,4.1665,2.13238,0.016448,0.390656,0.00688,0.004224,0.008192,1.6896,0.016384
+835,261.658,3.82178,2.1057,0.016384,0.377184,0.007584,0.004704,0.008192,1.67526,0.016384
+836,266.563,3.75146,2.13197,0.016384,0.37888,0.007296,0.004896,0.008064,1.70006,0.016384
+837,278.545,3.59009,2.14176,0.016416,0.392256,0.00688,0.004288,0.008192,1.69686,0.016864
+838,283.814,3.52344,2.12003,0.016448,0.372928,0.006464,0.00528,0.008,1.69405,0.016864
+839,268.168,3.729,2.14016,0.016384,0.409248,0.006496,0.005248,0.00704,1.67936,0.016384
+840,246.792,4.052,2.11773,0.016384,0.378208,0.006944,0.005504,0.008032,1.68598,0.016672
+841,256.064,3.90527,2.14362,0.016384,0.395264,0.00752,0.004768,0.008064,1.69491,0.016704
+842,261.775,3.82007,2.13606,0.016416,0.394528,0.006848,0.004096,0.008192,1.6896,0.016384
+843,238.375,4.19507,2.14566,0.016416,0.38704,0.006144,0.00576,0.008,1.70554,0.016768
+844,243.274,4.1106,2.12378,0.016224,0.372096,0.006912,0.004128,0.008192,1.69971,0.016512
+845,266.181,3.75684,2.12173,0.016384,0.382848,0.006272,0.005472,0.008,1.68624,0.016512
+846,273.285,3.65918,2.11747,0.016384,0.38288,0.00624,0.005536,0.008,1.68176,0.016672
+847,283.46,3.52783,2.10122,0.016512,0.361024,0.007968,0.004288,0.008192,1.6855,0.017728
+848,215.194,4.64697,2.11795,0.016608,0.376928,0.006144,0.005696,0.008,1.68819,0.016384
+849,220.952,4.52588,2.16595,0.016352,0.374816,0.006176,0.005728,0.008,1.73728,0.0176
+850,227.556,4.39453,2.15542,0.017056,0.417984,0.007264,0.004896,0.008,1.68374,0.01648
+851,263.782,3.79102,2.16397,0.016384,0.382752,0.006464,0.00528,0.008032,1.72749,0.017568
+852,280.894,3.56006,2.10778,0.016032,0.357088,0.007776,0.004512,0.008192,1.69757,0.016608
+853,265.045,3.77295,2.13987,0.016384,0.387104,0.007776,0.00448,0.008192,1.69917,0.016768
+854,263.986,3.78809,2.0993,0.016448,0.358144,0.006816,0.004096,0.008192,1.6889,0.016704
+855,268.203,3.72852,2.13811,0.016416,0.384096,0.00688,0.004256,0.008192,1.70163,0.01664
+856,258.586,3.86719,2.13795,0.016416,0.368608,0.00736,0.004864,0.008,1.71587,0.016832
+857,223.997,4.46436,2.27974,0.016672,0.542784,0.007232,0.004896,0.008032,1.68374,0.016384
+858,249.695,4.00488,2.09715,0.016384,0.360416,0.006176,0.0056,0.007744,1.68406,0.016768
+859,261.458,3.82471,2.13811,0.016384,0.379904,0.006912,0.004352,0.008192,1.70538,0.016992
+860,234.218,4.26953,2.14259,0.016256,0.424448,0.006144,0.005632,0.008032,1.6657,0.016384
+861,236.9,4.22119,2.15654,0.016416,0.408832,0.00688,0.004096,0.008192,1.69574,0.016384
+862,221.813,4.5083,2.332,0.01664,0.575424,0.006208,0.0056,0.008032,1.70259,0.017504
+863,220.571,4.53369,2.21997,0.016384,0.480416,0.007008,0.005728,0.008032,1.68566,0.016736
+864,237.284,4.21436,2.12816,0.016032,0.383808,0.006272,0.005696,0.008,1.69184,0.016512
+865,242.942,4.11621,2.16397,0.016384,0.380928,0.007392,0.004864,0.007936,1.72234,0.024128
+866,257.416,3.88477,2.15898,0.016768,0.396832,0.006624,0.005824,0.008,1.70848,0.016448
+867,205.416,4.86816,2.10931,0.01648,0.36592,0.006848,0.004096,0.008192,1.69107,0.016704
+868,253.559,3.94385,2.15862,0.01648,0.397472,0.007744,0.004544,0.008192,1.70752,0.016672
+869,270.042,3.70312,2.12595,0.016384,0.386592,0.006752,0.004096,0.008192,1.68688,0.017056
+870,271.654,3.68115,2.17994,0.0168,0.39776,0.00752,0.004768,0.008064,1.72858,0.016448
+871,268.379,3.72607,2.14445,0.016224,0.369376,0.00736,0.004864,0.008,1.72198,0.01664
+872,268.731,3.72119,2.1681,0.017536,0.414592,0.00768,0.004608,0.008192,1.69782,0.017664
+873,286.634,3.48877,2.12285,0.016384,0.36624,0.006496,0.005344,0.008032,1.70285,0.017504
+874,253.183,3.94971,2.14486,0.016416,0.391392,0.006496,0.005408,0.008032,1.70074,0.016384
+875,253.622,3.94287,2.13766,0.01632,0.380992,0.006144,0.005632,0.007968,1.70378,0.016832
+876,242.971,4.11572,2.1223,0.016512,0.366848,0.0064,0.005344,0.008,1.70256,0.01664
+877,279.171,3.58203,2.13152,0.016384,0.358304,0.00624,0.005536,0.00816,1.72019,0.016704
+878,264.02,3.7876,2.12173,0.016384,0.36992,0.006912,0.004096,0.008192,1.69984,0.016384
+879,266.285,3.75537,2.14835,0.01616,0.381056,0.006656,0.005248,0.00704,1.71555,0.01664
+880,269.616,3.70898,2.12787,0.016384,0.383008,0.007552,0.004704,0.008192,1.69165,0.016384
+881,264.258,3.78418,2.15702,0.016448,0.383648,0.007392,0.004896,0.008064,1.71994,0.01664
+882,276.944,3.61084,2.12787,0.016416,0.362464,0.006176,0.005728,0.008,1.71254,0.016544
+883,274.494,3.64307,2.15574,0.016384,0.407456,0.00624,0.006144,0.008,1.69389,0.017632
+884,242.482,4.12402,2.10534,0.016384,0.36192,0.00672,0.004096,0.008288,1.69155,0.016384
+885,244.129,4.09619,2.1304,0.016512,0.3744,0.006912,0.004128,0.008192,1.70368,0.016576
+886,250.428,3.99316,2.17898,0.016224,0.41824,0.007744,0.004544,0.008192,1.70746,0.016576
+887,243,4.11523,2.1305,0.01632,0.38496,0.006816,0.004096,0.008224,1.69366,0.016416
+888,263.578,3.79395,2.21184,0.016384,0.427232,0.006304,0.004736,0.008192,1.73261,0.016384
+889,245.534,4.07275,2.13334,0.016416,0.382944,0.007232,0.004832,0.008,1.69734,0.016576
+890,250.459,3.99268,2.15242,0.016416,0.395264,0.00784,0.004448,0.008192,1.70352,0.016736
+891,279.705,3.5752,2.11414,0.016608,0.348544,0.007456,0.004832,0.008032,1.71229,0.016384
+892,248.815,4.01904,2.15472,0.016544,0.397504,0.00752,0.004768,0.008128,1.70362,0.01664
+893,223.142,4.48145,2.11066,0.016384,0.362496,0.007488,0.0048,0.008096,1.69485,0.016544
+894,243.926,4.09961,2.12349,0.016416,0.356032,0.006432,0.005312,0.008,1.71469,0.016608
+895,256.738,3.89502,2.14426,0.016384,0.362464,0.006176,0.005696,0.012736,1.72442,0.016384
+896,223.874,4.4668,2.29402,0.01632,0.536928,0.007968,0.004288,0.008192,1.70394,0.016384
+897,252.777,3.95605,2.14659,0.016608,0.37488,0.007616,0.004672,0.008192,1.71814,0.01648
+898,289.021,3.45996,2.10019,0.016448,0.344992,0.00736,0.004896,0.008,1.70195,0.016544
+899,216.422,4.62061,2.13738,0.016416,0.393184,0.007904,0.004384,0.008192,1.6896,0.017696
+900,239.001,4.18408,2.20707,0.016384,0.450272,0.006432,0.0056,0.008032,1.70384,0.016512
+901,270.542,3.69629,2.11763,0.016384,0.3584,0.007392,0.004864,0.008,1.70621,0.016384
+902,252.777,3.95605,2.27952,0.016608,0.493664,0.006368,0.005408,0.01488,1.72595,0.01664
+903,253.34,3.94727,2.11766,0.016416,0.372032,0.006848,0.004096,0.008192,1.6936,0.01648
+904,216.88,4.61084,2.16048,0.016512,0.419392,0.006592,0.005216,0.007072,1.68896,0.016736
+905,232.939,4.29297,2.13606,0.016448,0.376096,0.006816,0.004096,0.008192,1.70803,0.016384
+906,282.561,3.53906,2.12102,0.016416,0.354208,0.0064,0.005344,0.008,1.71312,0.017536
+907,230.761,4.3335,2.10941,0.016384,0.364544,0.007296,0.004864,0.007968,1.69165,0.016704
+908,225.849,4.42773,2.17907,0.016384,0.417664,0.006272,0.005472,0.008032,1.70886,0.016384
+909,229.674,4.354,2.12173,0.016384,0.364256,0.006432,0.005312,0.006976,1.70598,0.016384
+910,266.806,3.74805,2.11558,0.016416,0.354272,0.007264,0.004864,0.008032,1.70832,0.016416
+911,254.821,3.92432,2.15658,0.016256,0.40752,0.006304,0.00544,0.008032,1.69661,0.016416
+912,246.036,4.06445,2.24867,0.016608,0.481344,0.006848,0.016384,0.008192,1.70189,0.017408
+913,252.559,3.95947,2.1463,0.016384,0.37008,0.006752,0.004096,0.008192,1.72442,0.016384
+914,239.113,4.18213,2.30406,0.01632,0.507456,0.006912,0.004224,0.008192,1.74419,0.016768
+915,270.756,3.69336,2.10515,0.016128,0.350592,0.007616,0.004672,0.008128,1.70141,0.016608
+916,242.884,4.11719,2.12483,0.016384,0.36864,0.006336,0.005696,0.008,1.70234,0.01744
+917,244.8,4.08496,2.11539,0.016544,0.354816,0.007744,0.004544,0.008192,1.70598,0.017568
+918,286.835,3.48633,2.11338,0.016288,0.349728,0.006944,0.004096,0.008192,1.71146,0.016672
+919,240.658,4.15527,2.1713,0.01648,0.424256,0.006144,0.005696,0.008032,1.69418,0.016512
+920,271.474,3.68359,2.12426,0.016704,0.37328,0.00784,0.004448,0.008192,1.69718,0.016608
+921,264.497,3.78076,2.16067,0.016384,0.385056,0.007424,0.004832,0.008,1.72256,0.016416
+922,275.38,3.63135,2.13258,0.015168,0.355392,0.006912,0.004288,0.008192,1.72595,0.016672
+923,221.789,4.50879,2.25603,0.016384,0.482848,0.006656,0.005152,0.007104,1.72144,0.016448
+924,264.599,3.7793,2.14931,0.016512,0.35888,0.006496,0.00528,0.00704,1.73872,0.016384
+925,290.249,3.44531,2.12451,0.016448,0.354496,0.006912,0.004096,0.008192,1.7175,0.016864
+926,258.782,3.86426,2.12992,0.015456,0.349088,0.007232,0.004864,0.008032,1.72838,0.016864
+927,259.109,3.85938,2.11536,0.016384,0.351776,0.006624,0.005152,0.007136,1.71155,0.016736
+928,269.758,3.70703,2.11162,0.016384,0.361888,0.006752,0.005504,0.008096,1.69651,0.01648
+929,258.553,3.86768,2.12237,0.016512,0.37056,0.006624,0.00512,0.007168,1.69987,0.016512
+930,241.168,4.14648,2.21382,0.016512,0.44992,0.006976,0.004128,0.008192,1.71136,0.016736
+931,258.88,3.86279,2.16269,0.016384,0.380928,0.007776,0.004512,0.008192,1.72851,0.016384
+932,223.801,4.46826,2.24874,0.016448,0.479872,0.006176,0.005632,0.008,1.71606,0.016544
+933,243.751,4.10254,2.12374,0.016384,0.356192,0.006304,0.005216,0.007072,1.71581,0.016768
+934,285.316,3.50488,2.15232,0.01648,0.381024,0.006816,0.004096,0.008192,1.71827,0.01744
+935,251.876,3.97021,2.12208,0.016448,0.351744,0.00688,0.00416,0.008192,1.71827,0.016384
+936,275.528,3.62939,2.15082,0.016352,0.367584,0.007648,0.00464,0.008192,1.72982,0.016576
+937,276.011,3.62305,2.17088,0.016384,0.387072,0.00816,0.004128,0.008192,1.73056,0.016384
+938,271.043,3.68945,2.16854,0.016416,0.36864,0.007808,0.004448,0.008192,1.7464,0.01664
+939,259.011,3.86084,2.19174,0.016512,0.411712,0.0064,0.005344,0.008,1.72717,0.016608
+940,278.715,3.58789,2.1375,0.016448,0.355552,0.00688,0.004384,0.008192,1.72851,0.017536
+941,262.194,3.81396,2.16118,0.016416,0.397184,0.006784,0.004096,0.008192,1.71213,0.016384
+942,273.907,3.65088,2.13293,0.016416,0.366752,0.00688,0.004128,0.008192,1.71418,0.016384
+943,219.319,4.55957,2.20899,0.016384,0.431488,0.014976,0.00576,0.007968,1.71478,0.017632
+944,210.895,4.7417,2.18701,0.01648,0.430016,0.007872,0.004384,0.008192,1.70333,0.016736
+945,262.194,3.81396,2.14835,0.016384,0.374048,0.00688,0.004096,0.008192,1.72237,0.016384
+946,231.047,4.32812,2.37568,0.016384,0.595968,0.006272,0.016256,0.009408,1.71501,0.016384
+947,239.7,4.17188,2.15046,0.016512,0.382624,0.006496,0.00528,0.00816,1.71472,0.016672
+948,253.121,3.95068,2.16269,0.016224,0.377088,0.006304,0.005856,0.008032,1.7327,0.01648
+949,249.604,4.00635,2.17718,0.016416,0.41104,0.00672,0.004096,0.008192,1.71421,0.016512
+950,259.438,3.85449,2.15974,0.016384,0.380928,0.007392,0.004864,0.008,1.72464,0.017536
+951,231.832,4.31348,2.19146,0.016416,0.395328,0.007968,0.00432,0.008192,1.74275,0.01648
+952,267.049,3.74463,2.16726,0.016416,0.37728,0.006144,0.005824,0.008,1.73722,0.016384
+953,257.383,3.88525,2.21834,0.016352,0.444576,0.006912,0.004096,0.008192,1.72147,0.016736
+954,263.341,3.79736,2.15245,0.016416,0.365984,0.00672,0.004096,0.008192,1.73466,0.016384
+955,245.888,4.06689,2.12736,0.01648,0.363744,0.00704,0.004128,0.00816,1.71014,0.017664
+956,264.736,3.77734,2.14426,0.016384,0.376768,0.006208,0.005536,0.008032,1.71494,0.016384
+957,278.602,3.58936,2.14925,0.016512,0.362656,0.006752,0.004096,0.008192,1.7345,0.016544
+958,276.346,3.61865,2.18067,0.016416,0.393312,0.00736,0.004896,0.008,1.73283,0.017856
+959,250.52,3.9917,2.18317,0.016384,0.390144,0.006912,0.004352,0.008192,1.7408,0.016384
+960,255.744,3.91016,2.1745,0.016608,0.405728,0.006144,0.0056,0.008576,1.71434,0.017504
+961,269.403,3.71191,2.13811,0.016416,0.374752,0.00784,0.004448,0.008192,1.71011,0.016352
+962,230.683,4.33496,2.21792,0.015264,0.429824,0.0064,0.005568,0.008032,1.73539,0.01744
+963,256.385,3.90039,2.12787,0.016384,0.363584,0.006944,0.004256,0.008192,1.71181,0.016704
+964,283.696,3.5249,2.144,0.016384,0.350208,0.00736,0.004928,0.008192,1.74022,0.016704
+965,256,3.90625,2.14371,0.016384,0.346112,0.006144,0.005728,0.008032,1.74464,0.016672
+966,248.906,4.01758,2.1167,0.017664,0.35712,0.006144,0.005632,0.008032,1.70474,0.017376
+967,275.38,3.63135,2.15053,0.015488,0.377888,0.007552,0.004704,0.00816,1.72026,0.01648
+968,285.396,3.50391,2.12189,0.016512,0.363648,0.00688,0.004288,0.008192,1.70598,0.016384
+969,251.103,3.98242,2.1504,0.016064,0.384544,0.006912,0.004128,0.008192,1.71398,0.016576
+970,267.363,3.74023,2.18259,0.016384,0.401216,0.006336,0.005408,0.008032,1.72874,0.01648
+971,265.732,3.76318,2.18016,0.016384,0.411648,0.007936,0.004352,0.008192,1.71418,0.017472
+972,258.847,3.86328,2.13827,0.016384,0.368096,0.006688,0.004096,0.008192,1.71827,0.016544
+973,218.687,4.57275,2.17763,0.016416,0.393824,0.0072,0.004864,0.007968,1.73082,0.016544
+974,248.846,4.01855,2.16416,0.016416,0.350176,0.007456,0.004832,0.008064,1.75936,0.017856
+975,289.143,3.4585,2.12598,0.016448,0.360288,0.006496,0.005344,0.007968,1.71267,0.016768
+976,274.053,3.64893,2.17162,0.015104,0.399008,0.006464,0.00528,0.007008,1.72237,0.016384
+977,249.817,4.00293,2.13811,0.016448,0.345376,0.006816,0.004096,0.008192,1.74048,0.016704
+978,271.043,3.68945,2.13606,0.016384,0.356352,0.007808,0.00448,0.008192,1.7264,0.016448
+979,289.88,3.44971,2.1216,0.01584,0.352352,0.006592,0.005344,0.007968,1.7167,0.0168
+980,272.087,3.67529,2.1696,0.01632,0.382912,0.006848,0.004096,0.008192,1.73466,0.016576
+981,282.795,3.53613,2.13197,0.016384,0.352256,0.00624,0.005728,0.007968,1.72701,0.016384
+982,211.877,4.71973,2.14221,0.016384,0.362496,0.007488,0.0048,0.008096,1.72643,0.016512
+983,262.867,3.8042,2.132,0.016256,0.350272,0.006208,0.0056,0.008,1.72918,0.01648
+984,250.827,3.98682,2.13216,0.016416,0.356992,0.007424,0.004864,0.008,1.72186,0.016608
+985,235.159,4.25244,2.11837,0.016448,0.3376,0.006912,0.00432,0.009536,1.72717,0.016384
+986,266.771,3.74854,2.14093,0.016352,0.362592,0.006848,0.004096,0.008192,1.72237,0.02048
+987,267.852,3.7334,2.21322,0.016384,0.43008,0.007456,0.004832,0.008064,1.72982,0.016576
+988,274.752,3.63965,2.1295,0.016288,0.343936,0.006368,0.005376,0.006944,1.73398,0.016608
+989,225.228,4.43994,2.27328,0.016384,0.475136,0.0072,0.004896,0.008,1.74515,0.016512
+990,255.298,3.91699,2.13034,0.016448,0.364288,0.006976,0.004096,0.008192,1.71322,0.01712
+991,282.756,3.53662,2.1456,0.016384,0.354304,0.007712,0.004576,0.008192,1.73792,0.016512
+992,260.858,3.8335,2.13994,0.015904,0.35456,0.0064,0.005408,0.008032,1.73264,0.016992
+993,233.417,4.28418,2.13667,0.014944,0.362496,0.007488,0.0048,0.008096,1.72246,0.016384
+994,268.731,3.72119,2.16115,0.01664,0.360576,0.006272,0.005696,0.008064,1.74752,0.016384
+995,246.836,4.05127,2.13827,0.016448,0.361792,0.006912,0.004128,0.008192,1.72422,0.016576
+996,255.33,3.9165,2.13949,0.016384,0.352256,0.006304,0.005792,0.008,1.73299,0.01776
+997,253.685,3.94189,2.16957,0.01616,0.389344,0.006784,0.004096,0.019968,1.71677,0.016448
+998,222.924,4.48584,2.16883,0.01744,0.391264,0.00704,0.004096,0.008192,1.72435,0.016448
+999,260.792,3.83447,2.16678,0.01744,0.377216,0.006752,0.004096,0.008192,1.7367,0.016384
+1000,273.176,3.66064,2.16448,0.01648,0.368928,0.006176,0.005568,0.008,1.74272,0.016608
+1001,240.178,4.16357,2.23728,0.016448,0.423712,0.006944,0.00432,0.008192,1.76128,0.016384
+1002,259.569,3.85254,2.18522,0.016384,0.382144,0.006816,0.004256,0.008192,1.75101,0.016416
+1003,259.273,3.85693,2.20429,0.016512,0.410112,0.006208,0.005696,0.007776,1.7416,0.016384
+1004,268.203,3.72852,2.16883,0.016384,0.368064,0.00672,0.00512,0.007168,1.74899,0.016384
+1005,233.603,4.28076,2.14016,0.016416,0.364512,0.007168,0.004864,0.008064,1.72275,0.016384
+1006,257.125,3.88916,2.15882,0.016416,0.373632,0.007552,0.004736,0.00816,1.73059,0.017728
+1007,249.027,4.01562,2.19789,0.016448,0.393792,0.007584,0.004704,0.00816,1.7505,0.016704
+1008,254.536,3.92871,2.26922,0.01744,0.439296,0.007616,0.01488,0.008192,1.75722,0.024576
+1009,242.367,4.12598,2.19606,0.01648,0.408064,0.00736,0.004928,0.008032,1.73462,0.016576
+1010,244.771,4.08545,2.40746,0.015552,0.632448,0.006336,0.005408,0.007968,1.72333,0.016416
+1011,264.463,3.78125,2.17942,0.016256,0.38352,0.006272,0.005696,0.008,1.74301,0.016672
+1012,241.253,4.14502,2.1583,0.016416,0.383648,0.007296,0.004896,0.008288,1.72032,0.01744
+1013,231.989,4.31055,2.16957,0.01632,0.379488,0.006496,0.005312,0.008032,1.73725,0.016672
+1014,271.186,3.6875,2.16042,0.016416,0.382944,0.007584,0.004704,0.008192,1.72384,0.016736
+1015,277.695,3.60107,2.21792,0.016608,0.428256,0.007296,0.004864,0.007872,1.73635,0.016672
+1016,257.902,3.87744,2.2487,0.016384,0.46448,0.00656,0.005184,0.008288,1.73142,0.016384
+1017,259.011,3.86084,2.19402,0.016416,0.38928,0.016704,0.005312,0.008128,1.74141,0.016768
+1018,230.943,4.33008,2.22618,0.016384,0.425984,0.006144,0.00576,0.008,1.74752,0.016384
+1019,222.924,4.48584,2.18477,0.017568,0.385888,0.007744,0.004544,0.008192,1.74426,0.016576
+1020,277.883,3.59863,2.16746,0.016352,0.362112,0.006912,0.004352,0.008192,1.75309,0.016448
+1021,263.544,3.79443,2.16048,0.01744,0.354336,0.00688,0.00432,0.008192,1.75283,0.01648
+1022,278.147,3.59521,2.14656,0.016448,0.368096,0.00688,0.004096,0.008192,1.72627,0.016576
+1023,256.513,3.89844,2.28352,0.016384,0.503648,0.006304,0.01568,0.008448,1.71667,0.016384
+1024,256.16,3.90381,2.18669,0.016384,0.397088,0.006368,0.005472,0.008256,1.73648,0.01664
+1025,231.753,4.31494,2.18163,0.016352,0.391712,0.007872,0.004416,0.008192,1.7367,0.016384
+1026,247.343,4.04297,2.17501,0.016384,0.37888,0.007744,0.004544,0.008192,1.74285,0.016416
+1027,236.408,4.22998,2.27005,0.016576,0.47696,0.006976,0.00416,0.008192,1.74054,0.01664
+1028,247.463,4.04102,2.17616,0.028384,0.373056,0.00624,0.005664,0.008,1.73725,0.017568
+1029,261.625,3.82227,2.19706,0.015872,0.410592,0.007328,0.004864,0.007968,1.73293,0.017504
+1030,272.522,3.66943,2.18022,0.016416,0.374752,0.007776,0.004512,0.008192,1.75104,0.017536
+1031,249.878,4.00195,2.22051,0.016704,0.407712,0.008064,0.004224,0.008192,1.75923,0.016384
+1032,258.292,3.87158,2.16822,0.016416,0.38704,0.007744,0.004544,0.008192,1.72765,0.01664
+1033,218.733,4.57178,2.17242,0.016384,0.364288,0.0064,0.005376,0.007968,1.7553,0.016704
+1034,260.262,3.84229,2.17853,0.016416,0.3768,0.006304,0.005728,0.008096,1.74851,0.016672
+1035,282.483,3.54004,2.15069,0.016672,0.350368,0.006176,0.005696,0.008,1.74662,0.017152
+1036,267.642,3.73633,2.14762,0.016384,0.372096,0.006784,0.004096,0.008192,1.72253,0.017536
+1037,256.032,3.90576,2.17504,0.016384,0.376832,0.007648,0.00464,0.008192,1.7449,0.016448
+1038,256.513,3.89844,2.20746,0.016416,0.419808,0.00768,0.004608,0.008192,1.73405,0.016704
+1039,272.34,3.67188,2.17072,0.016576,0.36096,0.007648,0.00464,0.008192,1.75514,0.017568
+1040,249.817,4.00293,2.35725,0.016384,0.558688,0.00656,0.005184,0.007104,1.74672,0.016608
+1041,261.025,3.83105,2.18093,0.016544,0.395776,0.008032,0.004256,0.008192,1.73162,0.016512
+1042,225.824,4.42822,2.19306,0.016608,0.382176,0.006912,0.00416,0.008192,1.75862,0.016384
+1043,240.941,4.15039,2.2016,0.016384,0.395264,0.008192,0.004096,0.008224,1.75306,0.016384
+1044,254.79,3.9248,2.14832,0.016416,0.37408,0.006816,0.004096,0.008192,1.72202,0.016704
+1045,255.872,3.9082,2.20022,0.01648,0.415808,0.006912,0.004192,0.008192,1.73168,0.01696
+1046,239.7,4.17188,2.15277,0.016288,0.37232,0.006912,0.00416,0.008192,1.72822,0.016672
+1047,240.771,4.15332,2.19216,0.017184,0.372736,0.007488,0.0048,0.00816,1.76541,0.016384
+1048,251.907,3.96973,2.14112,0.015264,0.36032,0.006304,0.00544,0.008,1.72925,0.016544
+1049,249.573,4.00684,2.24461,0.016384,0.446464,0.006144,0.00608,0.008,1.74515,0.016384
+1050,272.703,3.66699,2.17133,0.016,0.392,0.007712,0.004576,0.008192,1.7264,0.016448
+1051,276.421,3.61768,2.17702,0.016096,0.375072,0.007616,0.004672,0.00816,1.7488,0.016608
+1052,260.958,3.83203,2.20096,0.016512,0.417184,0.006912,0.004096,0.008192,1.73056,0.017504
+1053,265.148,3.77148,2.17107,0.016576,0.375264,0.007808,0.00448,0.008192,1.74224,0.016512
+1054,259.833,3.84863,2.20432,0.01664,0.393632,0.006272,0.00576,0.008,1.75763,0.016384
+1055,252.84,3.95508,2.19955,0.016384,0.396512,0.006912,0.004128,0.008192,1.75085,0.016576
+1056,228.571,4.375,2.15654,0.017472,0.360416,0.006848,0.004384,0.008192,1.74285,0.016384
+1057,259.438,3.85449,2.17498,0.016384,0.36832,0.006464,0.00528,0.00704,1.7551,0.016384
+1058,263.002,3.80225,2.17322,0.016512,0.381024,0.006304,0.005472,0.008032,1.73926,0.016608
+1059,259.931,3.84717,2.20534,0.017568,0.412224,0.006432,0.005344,0.007968,1.73926,0.016544
+1060,260.958,3.83203,2.16474,0.016384,0.380672,0.006432,0.005344,0.006912,1.73261,0.016384
+1061,256.32,3.90137,2.21238,0.016352,0.395648,0.006304,0.005536,0.008064,1.76406,0.016416
+1062,265.251,3.77002,2.18589,0.016352,0.379584,0.007872,0.004416,0.008192,1.75309,0.016384
+1063,233.39,4.28467,2.17914,0.016576,0.3784,0.006912,0.004096,0.008192,1.74829,0.016672
+1064,250.98,3.98438,2.19459,0.016384,0.392512,0.006848,0.004096,0.008192,1.74899,0.017568
+1065,251.319,3.979,2.184,0.016416,0.37744,0.006336,0.005408,0.008,1.75402,0.016384
+1066,267.607,3.73682,2.21232,0.0168,0.403744,0.0072,0.004896,0.008032,1.75498,0.016672
+1067,257.254,3.88721,2.17843,0.016576,0.372768,0.00624,0.005504,0.008,1.75187,0.017472
+1068,267.958,3.73193,2.21389,0.016416,0.400992,0.006528,0.00528,0.008064,1.76022,0.016384
+1069,253.717,3.94141,2.17824,0.016448,0.366528,0.006336,0.005696,0.008,1.75763,0.0176
+1070,246.42,4.05811,2.23866,0.016448,0.433824,0.006624,0.005248,0.008032,1.75162,0.016864
+1071,279.552,3.57715,2.1505,0.01632,0.365152,0.007616,0.004672,0.008192,1.73181,0.016736
+1072,242.884,4.11719,2.16678,0.016384,0.37424,0.006688,0.004096,0.008192,1.7408,0.016384
+1073,246.302,4.06006,2.17549,0.016576,0.371008,0.007456,0.004864,0.00816,1.75104,0.016384
+1074,241.966,4.13281,2.20429,0.01664,0.40128,0.006816,0.004096,0.008192,1.75066,0.016608
+1075,260.328,3.84131,2.25926,0.016256,0.448576,0.007552,0.004864,0.008,1.75763,0.016384
+1076,242.712,4.12012,2.17834,0.016384,0.382976,0.007552,0.004736,0.00816,1.74195,0.016576
+1077,238.778,4.18799,2.28384,0.016416,0.471872,0.007744,0.004544,0.008192,1.75853,0.016544
+1078,243.028,4.11475,2.17293,0.01744,0.369664,0.007648,0.004608,0.008192,1.74858,0.0168
+1079,244.129,4.09619,2.20678,0.016384,0.399392,0.007808,0.004448,0.008192,1.75309,0.017472
+1080,264.634,3.77881,2.21392,0.016384,0.411648,0.007488,0.0048,0.008096,1.74909,0.016416
+1081,247.433,4.0415,2.21798,0.016384,0.417792,0.006176,0.005696,0.007968,1.74758,0.016384
+1082,241.995,4.13232,2.2057,0.016416,0.395232,0.006176,0.005632,0.008032,1.75782,0.016384
+1083,258.88,3.86279,2.18947,0.016384,0.37904,0.007168,0.004864,0.008,1.75763,0.016384
+1084,237.312,4.21387,2.17709,0.016288,0.374464,0.00688,0.004128,0.008192,1.75037,0.016768
+1085,221.119,4.52246,2.24666,0.016384,0.44352,0.00704,0.004096,0.009248,1.74998,0.016384
+1086,261.025,3.83105,2.17306,0.01648,0.360832,0.007168,0.00512,0.008032,1.75901,0.016416
+1087,254.758,3.92529,2.20102,0.016416,0.380544,0.006496,0.005248,0.00704,1.76877,0.016512
+1088,226.298,4.41895,2.30432,0.016352,0.485728,0.007712,0.004576,0.008192,1.76538,0.016384
+1089,227.91,4.3877,2.18333,0.016384,0.390912,0.0064,0.005408,0.008,1.73968,0.016544
+1090,268.52,3.72412,2.16803,0.016384,0.372416,0.006464,0.005408,0.008032,1.7417,0.017632
+1091,267.363,3.74023,2.17936,0.016512,0.374656,0.006432,0.005344,0.008,1.75203,0.016384
+1092,255.489,3.91406,2.18998,0.016448,0.372608,0.006848,0.004096,0.008192,1.76499,0.0168
+1093,260.593,3.8374,2.1871,0.016352,0.387232,0.007328,0.004864,0.008,1.74669,0.01664
+1094,241.168,4.14648,2.23798,0.016416,0.419808,0.007648,0.00464,0.008192,1.76464,0.01664
+1095,266.32,3.75488,2.17664,0.016384,0.362464,0.0064,0.005376,0.008,1.76154,0.01648
+1096,215.058,4.6499,2.19126,0.016352,0.394016,0.00624,0.005536,0.007968,1.74368,0.017472
+1097,239.113,4.18213,2.23674,0.016512,0.427936,0.006432,0.005344,0.008,1.75613,0.016384
+1098,251.35,3.97852,2.19302,0.016384,0.387104,0.00752,0.004736,0.008096,1.75229,0.016896
+1099,254.063,3.93604,2.20301,0.01744,0.410368,0.006368,0.005408,0.007968,1.73766,0.017792
+1100,228.699,4.37256,2.31219,0.016384,0.517408,0.00688,0.004096,0.008192,1.74246,0.016768
+1101,219.719,4.55127,2.1785,0.016416,0.380896,0.007552,0.004288,0.006624,1.74589,0.016832
+1102,235.105,4.25342,2.23517,0.016352,0.420672,0.00624,0.00576,0.00848,1.76128,0.016384
+1103,244.713,4.08643,2.26509,0.016384,0.456608,0.00624,0.005504,0.008,1.75587,0.01648
+1104,185.709,5.38477,2.16691,0.01632,0.37296,0.007488,0.004768,0.008096,1.7409,0.016384
+1105,244.596,4.08838,2.25075,0.019712,0.422688,0.006304,0.005664,0.007936,1.77206,0.016384
+1106,234.513,4.26416,2.24461,0.016384,0.446048,0.00656,0.005248,0.00704,1.74694,0.016384
+1107,242.971,4.11572,2.21795,0.016608,0.395872,0.007232,0.004832,0.007968,1.76787,0.017568
+1108,237.835,4.20459,2.20022,0.016384,0.389824,0.007392,0.004864,0.008096,1.75728,0.016384
+1109,219.813,4.54932,2.25232,0.016384,0.41984,0.007904,0.004384,0.008192,1.77894,0.016672
+1110,261.058,3.83057,2.20566,0.016512,0.3936,0.007456,0.004832,0.008032,1.75869,0.016544
+1111,215.738,4.63525,2.3265,0.016384,0.505856,0.006144,0.005664,0.008,1.76774,0.016704
+1112,204.228,4.89648,2.2481,0.01664,0.435872,0.006496,0.00528,0.00704,1.7592,0.017568
+1113,251.628,3.97412,2.16883,0.016384,0.364288,0.0064,0.005344,0.008,1.75203,0.016384
+1114,252.559,3.95947,2.18723,0.016384,0.393216,0.0072,0.004864,0.008032,1.74099,0.016544
+1115,217.064,4.60693,2.34106,0.01616,0.50752,0.006944,0.005504,0.008064,1.78019,0.016672
+1116,245.005,4.08154,2.17776,0.016416,0.37344,0.007392,0.004864,0.008,1.75126,0.016384
+1117,241.966,4.13281,2.19056,0.016384,0.374208,0.00672,0.004096,0.008192,1.76333,0.017632
+1118,231.727,4.31543,2.17293,0.01744,0.364768,0.00688,0.004128,0.008192,1.75517,0.016352
+1119,263.171,3.7998,2.22477,0.016416,0.401888,0.00624,0.005472,0.007968,1.77027,0.016512
+1120,247.224,4.04492,2.20774,0.016384,0.393248,0.008096,0.00416,0.008192,1.76128,0.016384
+1121,263.578,3.79395,2.19136,0.016384,0.372736,0.00784,0.004448,0.008192,1.76541,0.016352
+1122,202.192,4.9458,2.21152,0.016448,0.409024,0.006848,0.00432,0.008192,1.74899,0.017696
+1123,245.24,4.07764,2.18899,0.016384,0.374784,0.007328,0.00496,0.008192,1.7607,0.01664
+1124,248.423,4.02539,2.19341,0.01648,0.392512,0.006752,0.004096,0.008192,1.74899,0.016384
+1125,243.664,4.104,2.23549,0.016384,0.419872,0.007424,0.004832,0.007968,1.7615,0.017504
+1126,230.009,4.34766,2.25075,0.016384,0.419776,0.006208,0.005568,0.008,1.77843,0.016384
+1127,231.674,4.31641,2.21926,0.016352,0.395296,0.007264,0.004896,0.00784,1.77107,0.016544
+1128,259.536,3.85303,2.19904,0.016384,0.376832,0.006304,0.005696,0.008,1.76915,0.016672
+1129,253.654,3.94238,2.19776,0.016576,0.368704,0.007776,0.00448,0.008192,1.77555,0.01648
+1130,238.001,4.20166,2.26528,0.016384,0.434112,0.00624,0.005504,0.008032,1.77843,0.016576
+1131,273.98,3.6499,2.18931,0.016384,0.368256,0.00656,0.005536,0.008,1.76819,0.016384
+1132,266.424,3.75342,2.19955,0.017536,0.37568,0.007424,0.004864,0.008192,1.76947,0.016384
+1133,250.98,3.98438,2.19414,0.015104,0.370656,0.006144,0.005728,0.008,1.77213,0.016384
+1134,251.783,3.97168,2.27299,0.01632,0.453248,0.006272,0.005472,0.008,1.76624,0.01744
+1135,255.044,3.9209,2.20547,0.016416,0.376768,0.006368,0.005408,0.007968,1.77603,0.016512
+1136,267.049,3.74463,2.18995,0.014976,0.383008,0.007424,0.004832,0.008032,1.7552,0.01648
+1137,251.845,3.9707,2.23437,0.016384,0.40272,0.00688,0.004096,0.008192,1.77971,0.016384
+1138,270.577,3.6958,2.18618,0.016576,0.366656,0.006848,0.004096,0.008192,1.76742,0.016384
+1139,266.112,3.75781,2.22397,0.016384,0.401088,0.006464,0.005152,0.007136,1.77082,0.016928
+1140,261.391,3.82568,2.2016,0.016384,0.374656,0.006304,0.00544,0.007968,1.77446,0.016384
+1141,263.374,3.79688,2.30112,0.016224,0.465056,0.007616,0.004672,0.008192,1.78285,0.016512
+1142,258.749,3.86475,2.22822,0.016384,0.38912,0.007488,0.0048,0.008064,1.78592,0.016448
+1143,192.789,5.18701,2.22621,0.016384,0.382048,0.00688,0.004288,0.008192,1.792,0.016416
+1144,250.98,3.98438,2.1975,0.01632,0.381632,0.007616,0.004672,0.008192,1.76246,0.016608
+1145,273.943,3.65039,2.2016,0.017472,0.373696,0.007584,0.004704,0.008064,1.7737,0.016384
+1146,270.542,3.69629,2.21798,0.016384,0.400736,0.006848,0.004064,0.008192,1.76538,0.016384
+1147,263.273,3.79834,2.19632,0.016512,0.373344,0.006272,0.006112,0.008,1.76938,0.016704
+1148,249.27,4.01172,2.21824,0.016576,0.380448,0.006976,0.004256,0.008192,1.78515,0.01664
+1149,252.465,3.96094,2.20838,0.016448,0.371008,0.006688,0.004096,0.008192,1.78518,0.016768
+1150,247.313,4.04346,2.17363,0.016352,0.366784,0.006688,0.004096,0.008192,1.75507,0.016448
+1151,251.258,3.97998,2.20771,0.016416,0.372736,0.0064,0.005632,0.007968,1.78192,0.01664
+1152,274.899,3.6377,2.20861,0.016512,0.369216,0.006304,0.00544,0.008,1.78675,0.016384
+1153,276.682,3.61426,2.18291,0.015424,0.363488,0.007296,0.004832,0.008032,1.76717,0.016672
+1154,253.905,3.93848,2.18963,0.01632,0.3744,0.007072,0.004096,0.008192,1.76288,0.016672
+1155,250.52,3.9917,2.19581,0.016,0.369248,0.006272,0.005504,0.008,1.7744,0.016384
+1156,253.497,3.94482,2.21763,0.016384,0.3744,0.006528,0.005184,0.007104,1.79142,0.016608
+1157,221.405,4.5166,2.18762,0.01664,0.371232,0.0064,0.005344,0.008064,1.7633,0.01664
+1158,260.792,3.83447,2.19629,0.01648,0.364448,0.00688,0.004192,0.008192,1.77955,0.016544
+1159,271.798,3.6792,2.16304,0.01632,0.355232,0.007392,0.004896,0.008,1.7545,0.016704
+1160,258.097,3.87451,2.20272,0.016384,0.401408,0.0072,0.004864,0.008032,1.7471,0.017728
+1161,271.798,3.6792,2.17347,0.016128,0.363296,0.008192,0.004096,0.008192,1.75718,0.016384
+1162,264.976,3.77393,2.23859,0.016288,0.385408,0.006752,0.004096,0.008192,1.80019,0.017664
+1163,250.919,3.98535,2.16227,0.016384,0.35568,0.006816,0.004096,0.008192,1.75446,0.01664
+1164,251.721,3.97266,2.25206,0.016384,0.45392,0.00688,0.004096,0.008192,1.74499,0.0176
+1165,260.262,3.84229,2.21178,0.017504,0.365472,0.008192,0.004096,0.008192,1.79174,0.016576
+1166,222.778,4.48877,2.24179,0.016384,0.407072,0.006624,0.005184,0.007104,1.78176,0.017664
+1167,256.803,3.89404,2.15638,0.01616,0.362848,0.007552,0.004736,0.00816,1.74029,0.01664
+1168,241.937,4.1333,2.23987,0.016416,0.427712,0.006464,0.005312,0.008128,1.75808,0.01776
+1169,248.846,4.01855,2.29443,0.022944,0.449088,0.007904,0.004384,0.008192,1.78541,0.016512
+1170,257.222,3.8877,2.19965,0.0176,0.366624,0.006848,0.004192,0.008192,1.77971,0.01648
+1171,222.343,4.49756,2.18317,0.016384,0.386752,0.006464,0.005408,0.008032,1.74374,0.016384
+1172,231.674,4.31641,2.25949,0.016416,0.426592,0.0072,0.004864,0.008256,1.77926,0.016896
+1173,249.604,4.00635,2.19238,0.016544,0.365312,0.0072,0.004896,0.00832,1.77363,0.01648
+1174,275.714,3.62695,2.18112,0.016384,0.376832,0.007648,0.00464,0.008192,1.75104,0.016384
+1175,231.517,4.31934,2.33482,0.016448,0.500896,0.021216,0.005376,0.007072,1.76739,0.016416
+1176,252.403,3.96191,2.24864,0.016384,0.436064,0.006336,0.00544,0.008,1.75981,0.016608
+1177,268.098,3.72998,2.17613,0.016416,0.364512,0.006208,0.005728,0.007968,1.75786,0.01744
+1178,207.813,4.81201,2.2999,0.016416,0.46896,0.006144,0.016384,0.008192,1.76742,0.016384
+1179,232.463,4.30176,2.23642,0.016384,0.415776,0.007872,0.004384,0.008192,1.76739,0.016416
+1180,280.126,3.56982,2.18848,0.016416,0.370656,0.00752,0.004768,0.00816,1.76336,0.0176
+1181,229.571,4.35596,2.28099,0.016448,0.460512,0.006528,0.00528,0.006976,1.76864,0.016608
+1182,198.951,5.02637,2.21274,0.016416,0.373152,0.00656,0.005216,0.007072,1.7879,0.016416
+1183,278.677,3.58838,2.208,0.016448,0.384224,0.00688,0.004352,0.008192,1.77142,0.01648
+1184,266.285,3.75537,2.19251,0.016384,0.374784,0.007808,0.00448,0.008192,1.76336,0.017504
+1185,278.261,3.59375,2.20979,0.016384,0.372736,0.007616,0.004672,0.008192,1.78378,0.016416
+1186,240.347,4.16064,2.21184,0.016384,0.386784,0.006432,0.004096,0.008192,1.77357,0.016384
+1187,263.782,3.79102,2.18989,0.016384,0.384864,0.006912,0.004096,0.008192,1.75251,0.016928
+1188,254.885,3.92334,2.2207,0.016544,0.387232,0.006464,0.00528,0.007008,1.78176,0.016416
+1189,261.592,3.82275,2.19955,0.016384,0.360448,0.006144,0.005664,0.007968,1.78656,0.016384
+1190,235.646,4.24365,2.23235,0.016416,0.38448,0.006656,0.005408,0.008064,1.79491,0.016416
+1191,273.614,3.65479,2.18112,0.016064,0.351808,0.00688,0.004128,0.008192,1.77766,0.016384
+1192,279.973,3.57178,2.1888,0.016384,0.360448,0.006208,0.005696,0.008,1.77526,0.0168
+1193,264.531,3.78027,2.21462,0.016288,0.387616,0.006432,0.005312,0.007968,1.77459,0.016416
+1194,278.677,3.58838,2.21142,0.016448,0.364736,0.006336,0.005536,0.008,1.7928,0.017568
+1195,242.453,4.12451,2.21997,0.01696,0.3872,0.006208,0.005536,0.007968,1.7785,0.0176
+1196,259.833,3.84863,2.21184,0.016384,0.382336,0.006784,0.004096,0.008192,1.77766,0.016384
+1197,242.827,4.11816,2.21069,0.016448,0.391584,0.00656,0.005152,0.007136,1.76746,0.016352
+1198,207.708,4.81445,2.2121,0.016288,0.387424,0.006176,0.005696,0.008384,1.77174,0.016384
+1199,259.997,3.84619,2.19955,0.016384,0.385024,0.006144,0.005632,0.008,1.76198,0.016384
+1200,268.978,3.71777,2.24304,0.016448,0.410144,0.006144,0.0056,0.008,1.78019,0.016512
+1201,267.293,3.74121,2.20381,0.015392,0.366528,0.007552,0.004736,0.008096,1.7839,0.0176
+1202,253.528,3.94434,2.20899,0.016416,0.396416,0.00688,0.004224,0.008192,1.75923,0.017632
+1203,264.088,3.78662,2.17706,0.016416,0.373984,0.006944,0.004096,0.008192,1.75011,0.017312
+1204,227.834,4.38916,2.19501,0.016384,0.376832,0.0072,0.004896,0.008032,1.76518,0.01648
+1205,255.553,3.91309,2.19309,0.016416,0.372704,0.006304,0.005696,0.007936,1.76746,0.016576
+1206,269.687,3.70801,2.17546,0.016544,0.356512,0.006336,0.00544,0.008032,1.76624,0.016352
+1207,264.702,3.77783,2.21059,0.015296,0.382976,0.007424,0.004864,0.008096,1.77501,0.016928
+1208,261.692,3.82129,2.23235,0.016448,0.379328,0.007488,0.0048,0.008192,1.79952,0.016576
+1209,249.908,4.00146,2.24867,0.016416,0.414208,0.006144,0.005664,0.007968,1.78166,0.016608
+1210,261.993,3.81689,2.18381,0.016576,0.364096,0.00704,0.005408,0.008,1.7663,0.016384
+1211,224.119,4.46191,2.22208,0.016384,0.402976,0.006624,0.005152,0.007136,1.76742,0.016384
+1212,250.183,3.99707,2.20733,0.016448,0.376864,0.007904,0.004384,0.008192,1.77696,0.016576
+1213,260.097,3.84473,2.2032,0.016352,0.379264,0.006368,0.005408,0.008,1.7704,0.017408
+1214,250.336,3.99463,2.22618,0.016416,0.389088,0.007872,0.004416,0.008192,1.78381,0.016384
+1215,271.258,3.68652,2.17824,0.016384,0.356352,0.006144,0.005728,0.00832,1.76771,0.0176
+1216,268.168,3.729,2.24643,0.016384,0.405344,0.00672,0.004096,0.008192,1.78912,0.016576
+1217,249.969,4.00049,2.22346,0.016384,0.410912,0.006912,0.004064,0.008192,1.76032,0.016672
+1218,235.945,4.23828,2.2296,0.016608,0.39936,0.00784,0.004448,0.008192,1.77562,0.017536
+1219,249.604,4.00635,2.18992,0.01648,0.376864,0.006656,0.00528,0.007072,1.76118,0.016384
+1220,226.774,4.40967,2.22304,0.016448,0.402304,0.007648,0.00464,0.008192,1.76714,0.016672
+1221,255.808,3.90918,2.24461,0.0176,0.41808,0.006688,0.004096,0.008192,1.77354,0.016416
+1222,251.319,3.979,2.18931,0.016384,0.3704,0.006432,0.005312,0.008,1.7664,0.016384
+1223,242.942,4.11621,2.23846,0.016416,0.411616,0.006144,0.005696,0.008,1.77421,0.016384
+1224,267.084,3.74414,2.23232,0.017472,0.4016,0.00688,0.004128,0.008192,1.77738,0.016672
+1225,226.024,4.42432,2.22003,0.016256,0.370368,0.006592,0.005184,0.007104,1.79798,0.016544
+1226,236.408,4.22998,2.26512,0.016384,0.440224,0.00624,0.005504,0.008,1.77219,0.016576
+1227,258.488,3.86865,2.20035,0.016384,0.375584,0.007424,0.004864,0.007968,1.77174,0.016384
+1228,255.234,3.91797,2.25722,0.016512,0.430272,0.006144,0.005664,0.008,1.77424,0.016384
+1229,257.448,3.88428,2.21389,0.016384,0.384128,0.00688,0.004256,0.008192,1.77766,0.016384
+1230,228.827,4.37012,2.22934,0.016384,0.413696,0.007296,0.004864,0.008,1.7616,0.017504
+1231,260.593,3.8374,2.20365,0.016384,0.37392,0.006976,0.004128,0.008192,1.77766,0.016384
+1232,237.449,4.21143,2.19245,0.016384,0.378816,0.006208,0.0056,0.007968,1.76003,0.01744
+1233,246.154,4.0625,2.26717,0.017472,0.39584,0.007584,0.004864,0.008,1.81667,0.016736
+1234,237.587,4.20898,2.23437,0.016384,0.40048,0.00688,0.004288,0.008192,1.78176,0.016384
+1235,210.202,4.75732,2.20877,0.016512,0.395808,0.006432,0.00416,0.008192,1.76122,0.016448
+1236,243.028,4.11475,2.19478,0.016384,0.380768,0.006304,0.0056,0.008032,1.75994,0.01776
+1237,250.336,3.99463,2.22838,0.016544,0.385024,0.007744,0.004544,0.008192,1.78995,0.016384
+1238,252.652,3.95801,2.23725,0.016576,0.426048,0.00672,0.00512,0.007168,1.75923,0.016384
+1239,272.304,3.67236,2.20707,0.016384,0.36864,0.007296,0.004864,0.008,1.78525,0.01664
+1240,272.667,3.66748,2.18547,0.016448,0.383296,0.006144,0.005664,0.008096,1.74918,0.01664
+1241,261.158,3.8291,2.20147,0.016384,0.383008,0.007744,0.004512,0.008192,1.7649,0.016736
+1242,243.375,4.10889,2.27661,0.016448,0.460704,0.006336,0.005408,0.008,1.76218,0.017536
+1243,261.725,3.8208,2.18726,0.016384,0.382976,0.007616,0.004672,0.00816,1.75043,0.017024
+1244,233.125,4.28955,2.18307,0.016448,0.372736,0.007584,0.004704,0.008192,1.75635,0.017056
+1245,248.242,4.02832,2.18502,0.016384,0.365728,0.007008,0.005664,0.007968,1.76544,0.016832
+1246,244.042,4.09766,2.21101,0.016384,0.3912,0.006176,0.00608,0.008192,1.76538,0.0176
+1247,234.459,4.26514,2.2688,0.016384,0.437728,0.006688,0.005184,0.007104,1.77904,0.016672
+1248,256.996,3.89111,2.21421,0.016448,0.3952,0.006496,0.00528,0.007008,1.7671,0.016672
+1249,221.909,4.50635,2.18317,0.016384,0.373792,0.007008,0.004224,0.008192,1.75718,0.016384
+1250,253.748,3.94092,2.26509,0.016384,0.455872,0.006848,0.004224,0.008192,1.75718,0.016384
+1251,264.976,3.77393,2.20189,0.016544,0.37616,0.006944,0.004096,0.008192,1.77357,0.016384
+1252,262.295,3.8125,2.20864,0.016544,0.399232,0.00688,0.004096,0.008192,1.75718,0.016512
+1253,266.84,3.74756,2.20771,0.01648,0.385024,0.007872,0.004416,0.008192,1.76928,0.016448
+1254,241.14,4.14697,2.26915,0.016384,0.463904,0.006912,0.00432,0.008192,1.7529,0.016544
+1255,264.565,3.77979,2.21978,0.016416,0.369984,0.006816,0.005184,0.007104,1.79763,0.01664
+1256,226.148,4.42188,2.1943,0.01632,0.375264,0.006624,0.004096,0.00832,1.76694,0.016736
+1257,255.744,3.91016,2.20099,0.026656,0.366336,0.006368,0.005376,0.007968,1.77158,0.016704
+1258,266.91,3.74658,2.2215,0.016416,0.393184,0.006208,0.005728,0.008,1.77549,0.01648
+1259,235.402,4.24805,2.31843,0.01648,0.485664,0.006368,0.005536,0.008,1.77974,0.01664
+1260,251.597,3.97461,2.16432,0.017504,0.352896,0.006432,0.005184,0.007104,1.75843,0.016768
+1261,229.932,4.34912,2.23142,0.016448,0.39504,0.006304,0.005408,0.008,1.78269,0.017536
+1262,244.683,4.08691,2.26006,0.016384,0.40256,0.006944,0.004192,0.008192,1.80429,0.017504
+1263,253.058,3.95166,2.20675,0.017504,0.383328,0.00672,0.004096,0.008224,1.76944,0.01744
+1264,252.403,3.96191,2.19322,0.016352,0.372224,0.006688,0.004096,0.008192,1.76918,0.01648
+1265,234.298,4.26807,2.29699,0.016416,0.46624,0.006816,0.004096,0.008192,1.77766,0.017568
+1266,217.202,4.604,2.21674,0.016544,0.402048,0.007392,0.004896,0.008,1.76147,0.016384
+1267,223.459,4.4751,2.21734,0.016512,0.397376,0.00752,0.004736,0.008128,1.76544,0.017632
+1268,238.75,4.18848,2.27533,0.016416,0.444224,0.006304,0.005472,0.008,1.77827,0.01664
+1269,251.535,3.97559,2.23888,0.016096,0.408256,0.007744,0.004544,0.008192,1.77766,0.016384
+1270,231.177,4.32568,2.20355,0.016384,0.384928,0.006528,0.0056,0.008,1.7657,0.016416
+1271,215.081,4.64941,2.22614,0.016384,0.403456,0.007744,0.004544,0.008192,1.76867,0.017152
+1272,250,4,2.24675,0.01648,0.434176,0.007232,0.004896,0.008032,1.75955,0.016384
+1273,252.621,3.9585,2.22422,0.016352,0.404288,0.007616,0.004672,0.008192,1.7664,0.016704
+1274,246.866,4.05078,2.20413,0.016384,0.404192,0.007392,0.004864,0.008,1.74672,0.016576
+1275,261.525,3.82373,2.19616,0.016512,0.380896,0.006912,0.004256,0.008192,1.76272,0.016672
+1276,216.88,4.61084,2.26304,0.016384,0.435232,0.00688,0.004352,0.008192,1.77562,0.016384
+1277,240.856,4.15186,2.19946,0.016288,0.385248,0.00816,0.004128,0.008192,1.76074,0.016704
+1278,261.425,3.8252,2.20144,0.016384,0.372736,0.007232,0.004896,0.008352,1.77498,0.016864
+1279,247.134,4.04639,2.22419,0.01616,0.4056,0.006592,0.005376,0.008032,1.76566,0.016768
+1280,228.062,4.38477,2.29962,0.016416,0.479232,0.00736,0.004864,0.008224,1.76701,0.016512
+1281,219.295,4.56006,2.21235,0.016448,0.401856,0.0072,0.004864,0.008,1.75731,0.016672
+1282,237.367,4.21289,2.2999,0.017824,0.445024,0.007808,0.00448,0.008192,1.79958,0.016992
+1283,220.737,4.53027,2.25866,0.016384,0.436192,0.006336,0.00544,0.008,1.76954,0.016768
+1284,242.31,4.12695,2.23978,0.016384,0.42752,0.006656,0.005152,0.008512,1.75894,0.016608
+1285,242.166,4.12939,2.22442,0.027936,0.392192,0.00768,0.004608,0.008192,1.76742,0.016384
+1286,232.121,4.30811,2.19955,0.016384,0.395264,0.007744,0.004544,0.008192,1.75043,0.016992
+1287,244.508,4.08984,2.24483,0.016576,0.440352,0.007424,0.004864,0.008,1.75123,0.016384
+1288,258.553,3.86768,2.21622,0.016256,0.383392,0.007712,0.004576,0.008192,1.77952,0.016576
+1289,227.001,4.40527,2.23133,0.016416,0.402816,0.006752,0.004096,0.009248,1.77456,0.01744
+1290,266.806,3.74805,2.22208,0.016384,0.369824,0.00688,0.004224,0.008192,1.80006,0.016512
+1291,202.292,4.94336,2.29114,0.016384,0.468992,0.007776,0.004512,0.008192,1.76867,0.016608
+1292,247.134,4.04639,2.24454,0.016384,0.42352,0.006592,0.005152,0.007136,1.76931,0.016448
+1293,274.053,3.64893,2.17789,0.016256,0.36544,0.00624,0.005504,0.007968,1.7601,0.016384
+1294,246.213,4.06152,2.25904,0.016416,0.450624,0.00752,0.004768,0.00816,1.75517,0.016384
+1295,231.177,4.32568,2.21747,0.016384,0.380928,0.007232,0.004896,0.007968,1.78214,0.01792
+1296,250.581,3.99072,2.16064,0.016384,0.34816,0.006144,0.005632,0.007968,1.75997,0.016384
+1297,270.828,3.69238,2.13434,0.015168,0.339264,0.006848,0.004096,0.008192,1.74422,0.016544
+1298,263.002,3.80225,2.17446,0.016384,0.36048,0.007232,0.004896,0.008288,1.76051,0.016672
+1299,231.963,4.31104,2.21654,0.01616,0.410464,0.007712,0.004544,0.008192,1.75309,0.016384
+1300,271.834,3.67871,2.15632,0.016128,0.346368,0.00752,0.004768,0.008064,1.75693,0.016544
+1301,256.674,3.896,2.27763,0.015136,0.459936,0.006944,0.00416,0.008192,1.76646,0.0168
+1302,262.598,3.80811,2.15398,0.016384,0.34992,0.006432,0.005344,0.008,1.75114,0.016768
+1303,267.888,3.73291,2.15248,0.016416,0.351808,0.00656,0.005216,0.007072,1.74838,0.017024
+1304,270.899,3.69141,2.17702,0.016384,0.357664,0.00688,0.004096,0.008192,1.76742,0.016384
+1305,243.81,4.10156,2.19296,0.016352,0.362912,0.007328,0.004864,0.008128,1.77578,0.0176
+1306,256,3.90625,2.14848,0.016288,0.34224,0.007264,0.005024,0.008192,1.75286,0.016608
+1307,262.598,3.80811,2.16074,0.016416,0.350048,0.006304,0.005696,0.008,1.75782,0.016448
+1308,278.299,3.59326,2.16502,0.016544,0.35984,0.00688,0.004096,0.008192,1.75309,0.016384
+1309,275.565,3.62891,2.15718,0.015168,0.344064,0.00624,0.005696,0.008,1.76134,0.016672
+1310,253.497,3.94482,2.29286,0.016416,0.470272,0.00688,0.004096,0.008192,1.76947,0.017536
+1311,256.577,3.89746,2.15965,0.016096,0.347904,0.00672,0.004096,0.008192,1.75923,0.017408
+1312,262.564,3.80859,2.15338,0.016448,0.351072,0.007488,0.0048,0.008192,1.74899,0.016384
+1313,267.677,3.73584,2.15859,0.016384,0.350208,0.007616,0.004672,0.008192,1.75514,0.016384
+1314,255.362,3.91602,2.15434,0.01648,0.348416,0.006528,0.005248,0.00704,1.75309,0.017536
+1315,237.918,4.20312,2.17197,0.016384,0.346144,0.007136,0.005056,0.007968,1.77181,0.017472
+1316,243.086,4.11377,2.20576,0.016384,0.393248,0.007904,0.004384,0.008192,1.75907,0.016576
+1317,263.544,3.79443,2.17293,0.015232,0.374784,0.007712,0.004576,0.008192,1.7449,0.017536
+1318,277.319,3.60596,2.16474,0.016352,0.361888,0.006784,0.004096,0.008192,1.75104,0.016384
+1319,261.458,3.82471,2.21674,0.016576,0.40816,0.007168,0.00496,0.008,1.75549,0.016384
+1320,264.976,3.77393,2.17498,0.016416,0.356256,0.006208,0.005536,0.008032,1.76614,0.016384
+1321,222.174,4.50098,2.20682,0.016384,0.37888,0.006144,0.005696,0.008,1.77421,0.017504
+1322,252.528,3.95996,2.17347,0.0152,0.365664,0.00688,0.004288,0.008192,1.75648,0.016768
+1323,263.952,3.78857,2.16902,0.016224,0.36288,0.007264,0.004864,0.008064,1.75334,0.016384
+1324,252.777,3.95605,2.19968,0.016512,0.387104,0.007776,0.00448,0.008192,1.75872,0.016896
+1325,266.043,3.75879,2.15414,0.016384,0.354304,0.006176,0.005568,0.007968,1.74691,0.016832
+1326,269.935,3.70459,2.18973,0.016416,0.39104,0.006496,0.005344,0.008,1.74589,0.016544
+1327,262.396,3.81104,2.17923,0.016416,0.36992,0.006944,0.004192,0.008192,1.75706,0.016512
+1328,204.718,4.88477,2.26714,0.016544,0.474208,0.006912,0.004096,0.008192,1.74074,0.016448
+1329,260.097,3.84473,2.17267,0.016384,0.361504,0.006976,0.004256,0.008192,1.75843,0.016928
+1330,272.739,3.6665,2.17299,0.016576,0.373504,0.00736,0.004864,0.007968,1.74518,0.017536
+1331,234.782,4.25928,2.20582,0.016448,0.3816,0.006144,0.005664,0.007968,1.7712,0.0168
+1332,275.38,3.63135,2.17568,0.016416,0.379008,0.00688,0.004224,0.008192,1.74422,0.016736
+1333,249.118,4.01416,2.25504,0.016448,0.448448,0.006848,0.00416,0.008192,1.75421,0.016736
+1334,250.827,3.98682,2.17126,0.016448,0.367264,0.007776,0.004512,0.008192,1.7504,0.016672
+1335,255.171,3.91895,2.17251,0.01648,0.368832,0.006432,0.005344,0.008032,1.74995,0.01744
+1336,256.867,3.89307,2.26714,0.018432,0.466944,0.006144,0.005856,0.007968,1.74531,0.01648
+1337,227.682,4.39209,2.1631,0.016512,0.360736,0.00784,0.004448,0.008192,1.74902,0.016352
+1338,271.546,3.68262,2.17146,0.016928,0.372288,0.006592,0.005184,0.007104,1.74694,0.016416
+1339,246.985,4.04883,2.30605,0.016384,0.488576,0.00688,0.004256,0.008192,1.76512,0.01664
+1340,253.152,3.9502,2.19491,0.01648,0.38848,0.00688,0.004224,0.008192,1.75312,0.017536
+1341,270.971,3.69043,2.1767,0.016,0.37472,0.006816,0.004096,0.008192,1.75014,0.016736
+1342,228.622,4.37402,2.17837,0.017472,0.375616,0.006272,0.005472,0.007968,1.74784,0.017728
+1343,218.407,4.57861,2.23558,0.016384,0.413696,0.007648,0.00464,0.008192,1.76755,0.017472
+1344,274.053,3.64893,2.16474,0.016416,0.360416,0.007776,0.004512,0.008192,1.75104,0.016384
+1345,248.695,4.021,2.22582,0.016416,0.423232,0.006816,0.004096,0.008192,1.7504,0.016672
+1346,262.362,3.81152,2.16269,0.016384,0.370688,0.007776,0.004512,0.008192,1.73875,0.016384
+1347,187.58,5.33105,3.55478,0.016384,1.76333,0.007296,0.004832,0.008,1.73821,0.016736
+1348,234.03,4.27295,2.25459,0.01632,0.452544,0.006208,0.005536,0.008,1.74954,0.016448
+1349,261.692,3.82129,2.18064,0.016384,0.382816,0.006304,0.005728,0.008,1.74346,0.017952
+1350,260.527,3.83838,2.19056,0.016384,0.382976,0.007552,0.004736,0.00816,1.75418,0.016576
+1351,267.398,3.73975,2.1871,0.016224,0.383136,0.007776,0.004512,0.008192,1.75037,0.016896
+1352,242.568,4.12256,2.28573,0.016544,0.464864,0.00656,0.005184,0.007136,1.76883,0.016608
+1353,276.085,3.62207,2.14442,0.016128,0.353952,0.006848,0.004096,0.008192,1.73875,0.016448
+1354,226.624,4.4126,2.22342,0.016416,0.409728,0.007872,0.004416,0.008192,1.75923,0.017568
+1355,250.52,3.9917,2.24106,0.016352,0.424512,0.007488,0.0048,0.008064,1.76346,0.016384
+1356,271.151,3.68799,2.19011,0.016288,0.373344,0.006432,0.005152,0.007136,1.76538,0.016384
+1357,271.115,3.68848,2.19088,0.016384,0.391168,0.007904,0.004384,0.008192,1.74621,0.01664
+1358,254.663,3.92676,2.19446,0.016384,0.388128,0.00688,0.004352,0.008192,1.75309,0.01744
+1359,234.057,4.27246,2.19341,0.016416,0.383648,0.006432,0.005312,0.008,1.75616,0.01744
+1360,260.792,3.83447,2.17501,0.016384,0.36864,0.007648,0.00464,0.008192,1.75283,0.016672
+1361,230.268,4.34277,2.1737,0.016448,0.381184,0.006592,0.005152,0.007136,1.74083,0.016352
+1362,252.372,3.9624,2.16678,0.016384,0.36864,0.006144,0.005664,0.008032,1.74554,0.016384
+1363,279.324,3.58008,2.16214,0.016384,0.368192,0.006592,0.005152,0.007136,1.7408,0.017888
+1364,259.438,3.85449,2.2201,0.016512,0.389056,0.006208,0.005504,0.008,1.77837,0.016448
+1365,281.203,3.55615,2.17907,0.016384,0.36352,0.00688,0.004384,0.008192,1.76323,0.01648
+1366,260.394,3.84033,2.2233,0.016416,0.4096,0.006144,0.005632,0.008544,1.75949,0.017472
+1367,247.403,4.04199,2.19133,0.016512,0.388896,0.006944,0.004224,0.008192,1.74877,0.017792
+1368,239.56,4.17432,2.20349,0.016416,0.401376,0.007776,0.004512,0.008192,1.74861,0.016608
+1369,239.169,4.18115,2.19546,0.016416,0.382912,0.006176,0.005664,0.008,1.7599,0.016384
+1370,244.654,4.0874,2.17613,0.016384,0.374784,0.00736,0.004896,0.008,1.74717,0.017536
+1371,262.733,3.80615,2.19613,0.016896,0.393376,0.00784,0.004448,0.008192,1.74829,0.017088
+1372,241.509,4.14062,2.20042,0.01648,0.385728,0.006208,0.005536,0.008,1.76208,0.016384
+1373,244.742,4.08594,2.21389,0.017472,0.396224,0.007808,0.00448,0.008192,1.7633,0.016416
+1374,246.48,4.05713,2.20147,0.016384,0.378912,0.0072,0.004896,0.008,1.75549,0.030592
+1375,223.727,4.46973,2.20592,0.01632,0.401696,0.007232,0.004864,0.008032,1.75139,0.016384
+1376,248.002,4.03223,2.2487,0.016416,0.440288,0.007616,0.004672,0.00816,1.75485,0.016704
+1377,273.322,3.65869,2.16883,0.0176,0.37152,0.007392,0.004864,0.008,1.74307,0.016384
+1378,234.325,4.26758,2.34554,0.016384,0.543296,0.007232,0.005056,0.008192,1.74915,0.016224
+1379,251.597,3.97461,2.22845,0.016384,0.416768,0.00688,0.004384,0.008192,1.75923,0.016608
+1380,237.394,4.2124,2.19658,0.016384,0.393024,0.006336,0.005408,0.008032,1.74992,0.017472
+1381,260.196,3.84326,2.17088,0.016384,0.362496,0.006144,0.005664,0.008,1.75571,0.01648
+1382,220.476,4.53564,2.23306,0.016384,0.429824,0.00688,0.004352,0.008192,1.75104,0.016384
+1383,259.044,3.86035,2.25136,0.016352,0.420384,0.008192,0.00528,0.00704,1.77763,0.01648
+1384,270.506,3.69678,2.17907,0.016384,0.380352,0.00672,0.004096,0.008192,1.74698,0.016352
+1385,208.512,4.7959,2.27651,0.016384,0.47712,0.00624,0.005696,0.008,1.7455,0.017568
+1386,256.192,3.90332,2.17498,0.016384,0.37888,0.006144,0.005664,0.007968,1.74355,0.016384
+1387,276.682,3.61426,2.16435,0.014976,0.366592,0.007648,0.00464,0.008192,1.7449,0.017408
+1388,268.555,3.72363,2.17165,0.016448,0.367264,0.006176,0.005632,0.007968,1.75178,0.016384
+1389,278.526,3.59033,2.16138,0.016512,0.356,0.006912,0.004288,0.008192,1.75299,0.01648
+1390,238.778,4.18799,2.21616,0.016448,0.413184,0.00688,0.004128,0.008192,1.75075,0.016576
+1391,251.876,3.97021,2.2185,0.016416,0.389088,0.006656,0.004096,0.008192,1.7776,0.016448
+1392,244.537,4.08936,2.28557,0.016384,0.486784,0.006784,0.004096,0.008192,1.74694,0.016384
+1393,236.353,4.23096,2.17238,0.016384,0.366624,0.007232,0.004864,0.008,1.75254,0.016736
+1394,223.288,4.47852,2.19037,0.016384,0.378016,0.006912,0.004192,0.008192,1.75923,0.01744
+1395,274.936,3.63721,2.17302,0.015968,0.373184,0.007648,0.004608,0.008192,1.74694,0.01648
+1396,277.996,3.59717,2.19546,0.016416,0.363584,0.006976,0.004192,0.008192,1.77971,0.016384
+1397,241.367,4.14307,2.21485,0.016448,0.408448,0.007552,0.004704,0.008192,1.75309,0.016416
+1398,253.058,3.95166,2.17821,0.016384,0.366592,0.007712,0.004576,0.008192,1.75738,0.017376
+1399,236.244,4.23291,2.18502,0.016384,0.376608,0.006368,0.005408,0.008,1.75558,0.016672
+1400,264.599,3.7793,2.15261,0.0152,0.358272,0.008128,0.00416,0.008192,1.74198,0.016672
+1401,247.972,4.03271,2.1831,0.016544,0.369376,0.006144,0.0056,0.008,1.75997,0.017472
+1402,272.812,3.66553,2.18566,0.016384,0.373184,0.007776,0.004512,0.008192,1.75923,0.016384
+1403,275.639,3.62793,2.18845,0.016384,0.380896,0.007264,0.004896,0.007968,1.75347,0.017568
+1404,268.766,3.7207,2.21558,0.016416,0.40352,0.006176,0.005696,0.008,1.75907,0.016704
+1405,270.756,3.69336,2.1872,0.016384,0.366592,0.007488,0.0048,0.00784,1.76742,0.016672
+1406,242.367,4.12598,2.23923,0.016544,0.44912,0.006144,0.005632,0.007968,1.73744,0.016384
+1407,268.943,3.71826,2.22298,0.015232,0.382656,0.006464,0.005248,0.00704,1.78979,0.016544
+1408,231.308,4.32324,2.20365,0.017472,0.3792,0.006784,0.004096,0.008192,1.77149,0.016416
+1409,248.876,4.01807,2.23846,0.016384,0.406784,0.00688,0.005472,0.007968,1.77859,0.016384
+1410,233.577,4.28125,2.2167,0.016448,0.403392,0.006912,0.004096,0.008192,1.76099,0.016672
+1411,268.449,3.7251,2.18912,0.016416,0.372704,0.00784,0.004448,0.008192,1.76259,0.016928
+1412,258.26,3.87207,2.18,0.01648,0.378912,0.006816,0.004096,0.008192,1.74902,0.01648
+1413,266.181,3.75684,2.2057,0.016384,0.403456,0.00624,0.00576,0.008064,1.74902,0.016768
+1414,253.559,3.94385,2.26918,0.016256,0.466656,0.00656,0.005184,0.007104,1.75082,0.016608
+1415,232.2,4.30664,2.19955,0.016384,0.38912,0.0072,0.004864,0.008032,1.75757,0.016384
+1416,251.721,3.97266,2.18531,0.016384,0.3776,0.006272,0.005504,0.008512,1.75341,0.017632
+1417,262.497,3.80957,2.1801,0.016448,0.366496,0.00688,0.004256,0.008192,1.76128,0.016544
+1418,256.128,3.9043,2.26662,0.016384,0.46416,0.00688,0.004096,0.008192,1.7488,0.018112
+1419,263.918,3.78906,2.18784,0.016416,0.371648,0.006144,0.00576,0.008,1.76301,0.016864
+1420,255.808,3.90918,2.26186,0.01648,0.451264,0.00736,0.004864,0.008,1.75744,0.016448
+1421,263.442,3.7959,2.19014,0.016384,0.359232,0.007808,0.00448,0.008192,1.77766,0.016384
+1422,261.125,3.82959,2.22883,0.016608,0.416128,0.007552,0.004736,0.008128,1.7593,0.016384
+1423,261.592,3.82275,2.2079,0.015296,0.370688,0.007712,0.004576,0.008192,1.78381,0.017632
+1424,226.599,4.41309,2.19546,0.016384,0.374272,0.006656,0.004096,0.008192,1.76947,0.016384
+1425,276.346,3.61865,2.16013,0.01744,0.352992,0.0064,0.005408,0.008,1.75309,0.0168
+1426,260.925,3.83252,2.28966,0.016416,0.468224,0.00688,0.004096,0.008192,1.76947,0.016384
+1427,237.78,4.20557,2.29117,0.016448,0.477184,0.008192,0.004096,0.008256,1.76029,0.016704
+1428,270.649,3.69482,2.16474,0.016416,0.36656,0.007488,0.0048,0.007872,1.74496,0.01664
+1429,269.226,3.71436,2.18675,0.017472,0.365504,0.007712,0.015872,0.008448,1.75488,0.016864
+1430,261.993,3.81689,2.20774,0.016416,0.407296,0.006368,0.005344,0.008,1.74794,0.016384
+1431,242.971,4.11572,2.30451,0.01648,0.479648,0.007808,0.00448,0.008192,1.77152,0.016384
+1432,263.85,3.79004,2.1545,0.016384,0.346144,0.007872,0.004384,0.008192,1.75498,0.016544
+1433,229.006,4.3667,2.17088,0.016416,0.363616,0.00688,0.004256,0.008192,1.75514,0.016384
+1434,256.738,3.89502,2.25914,0.01664,0.44912,0.00752,0.004768,0.008064,1.75645,0.016576
+1435,251.969,3.96875,2.18397,0.016416,0.379648,0.007744,0.004544,0.008192,1.75104,0.016384
+1436,243.839,4.10107,2.1935,0.016352,0.410048,0.00752,0.004768,0.00816,1.72989,0.016768
+1437,259.241,3.85742,2.20979,0.016384,0.36864,0.007712,0.004576,0.008192,1.7879,0.016384
+1438,214.608,4.65967,2.2065,0.016608,0.385824,0.007424,0.004864,0.008032,1.76717,0.016576
+1439,231.203,4.3252,2.24051,0.016384,0.425984,0.007712,0.004576,0.008192,1.76128,0.016384
+1440,275.528,3.62939,2.1711,0.016864,0.367648,0.00688,0.004352,0.008192,1.75046,0.016704
+1441,229.88,4.3501,2.20995,0.01536,0.407616,0.00784,0.004384,0.008192,1.74899,0.017568
+1442,259.931,3.84717,2.1783,0.016448,0.37888,0.007424,0.004864,0.008,1.74509,0.0176
+1443,232.49,4.30127,2.20746,0.016384,0.385024,0.006144,0.00544,0.007968,1.76992,0.016576
+1444,246.302,4.06006,2.19386,0.016448,0.378816,0.006592,0.005696,0.008032,1.76189,0.016384
+1445,251.969,3.96875,2.20282,0.016416,0.382944,0.007712,0.004576,0.008192,1.76538,0.0176
+1446,248.273,4.02783,2.25642,0.016384,0.4336,0.006752,0.005664,0.007968,1.76941,0.01664
+1447,254.758,3.92529,2.20979,0.016384,0.394848,0.00656,0.005216,0.007072,1.76272,0.016992
+1448,242.109,4.13037,2.23078,0.016416,0.419904,0.00656,0.00512,0.0072,1.7592,0.016384
+1449,245.181,4.07861,2.18522,0.016384,0.392768,0.006592,0.00528,0.007008,1.74058,0.016608
+1450,237.147,4.2168,2.21392,0.017504,0.387072,0.007104,0.005216,0.00704,1.77357,0.016416
+1451,259.964,3.84668,2.21798,0.016384,0.408256,0.006176,0.005696,0.008,1.7569,0.016576
+1452,264.088,3.78662,2.18998,0.016416,0.376864,0.006784,0.00512,0.007136,1.76128,0.016384
+1453,245.77,4.06885,2.26771,0.016608,0.45264,0.006464,0.005952,0.008,1.76166,0.016384
+1454,243.23,4.11133,2.20518,0.016384,0.391168,0.006432,0.005312,0.008544,1.75971,0.017632
+1455,213.98,4.67334,2.20784,0.016384,0.382592,0.006912,0.00416,0.008192,1.7729,0.016704
+1456,262.497,3.80957,2.1656,0.01632,0.353088,0.006272,0.005536,0.007968,1.75926,0.017152
+1457,248.453,4.0249,2.2503,0.016608,0.431712,0.00672,0.004064,0.008192,1.76643,0.016576
+1458,261.324,3.82666,2.22362,0.016384,0.404544,0.006944,0.004256,0.008192,1.76669,0.016608
+1459,265.939,3.76025,2.19482,0.01744,0.381216,0.006848,0.004096,0.008192,1.76042,0.016608
+1460,249.27,4.01172,2.22026,0.016416,0.430304,0.0072,0.004864,0.007968,1.73712,0.016384
+1461,268.625,3.72266,2.19862,0.016416,0.36656,0.007552,0.004736,0.00816,1.7777,0.017504
+1462,222.488,4.49463,2.18726,0.016384,0.373984,0.006912,0.004128,0.008192,1.76096,0.016704
+1463,242.568,4.12256,2.19178,0.016448,0.368992,0.006144,0.005664,0.008,1.77014,0.016384
+1464,279.858,3.57324,2.17715,0.016512,0.376416,0.006592,0.005216,0.007072,1.74858,0.016768
+1465,230.112,4.3457,2.29581,0.016384,0.49152,0.007904,0.004384,0.008192,1.75104,0.016384
+1466,244.013,4.09814,2.19798,0.016544,0.38736,0.006176,0.0056,0.008,1.75792,0.016384
+1467,253.748,3.94092,2.26099,0.016384,0.4608,0.007392,0.004896,0.007776,1.74701,0.016736
+1468,251.412,3.97754,2.18355,0.01648,0.358592,0.006688,0.004064,0.008192,1.77261,0.016928
+1469,219.601,4.55371,2.24256,0.016416,0.432096,0.007328,0.004864,0.008,1.75747,0.016384
+1470,266.597,3.75098,2.21389,0.016384,0.36864,0.006304,0.005728,0.008,1.79245,0.016384
+1471,285.396,3.50391,2.15635,0.016416,0.354112,0.006304,0.005472,0.008032,1.74938,0.01664
+1472,271.618,3.68164,2.20365,0.016384,0.408704,0.006976,0.00416,0.008192,1.74288,0.016352
+1473,242.023,4.13184,2.18765,0.016768,0.38864,0.006656,0.005088,0.007168,1.74694,0.016384
+1474,250,4,2.17498,0.016384,0.370688,0.007488,0.0048,0.008064,1.75091,0.01664
+1475,269.332,3.71289,2.16269,0.016224,0.355712,0.006816,0.004224,0.008192,1.7551,0.016416
+1476,237.284,4.21436,2.16883,0.016384,0.370208,0.006656,0.005088,0.007168,1.74694,0.016384
+1477,248.664,4.02148,2.20003,0.016384,0.387936,0.007456,0.0048,0.008128,1.75869,0.01664
+1478,261.191,3.82861,2.18374,0.016544,0.36256,0.006496,0.005312,0.008,1.76842,0.016416
+1479,269.438,3.71143,2.19798,0.016352,0.382976,0.006656,0.004096,0.008192,1.76333,0.016384
+1480,277.62,3.60205,2.16269,0.016416,0.360416,0.007584,0.004704,0.00816,1.74902,0.016384
+1481,220.286,4.53955,2.31318,0.016832,0.48592,0.006272,0.005728,0.008,1.77405,0.016384
+1482,275.269,3.63281,2.19021,0.015456,0.372544,0.00736,0.004864,0.008,1.76541,0.016576
+1483,229.622,4.35498,2.16186,0.016096,0.358688,0.007264,0.004864,0.008,1.74934,0.0176
+1484,229.134,4.36426,2.1665,0.016416,0.354752,0.007776,0.004512,0.008192,1.75731,0.017536
+1485,260.692,3.83594,2.18902,0.017632,0.387808,0.006208,0.005568,0.008,1.7471,0.016704
+1486,264.156,3.78564,2.18602,0.016288,0.383872,0.007776,0.004512,0.008192,1.74877,0.016608
+1487,273.87,3.65137,2.17312,0.01648,0.366688,0.007232,0.004864,0.008032,1.75334,0.01648
+1488,272.123,3.6748,2.15747,0.016416,0.371584,0.007744,0.004544,0.008192,1.73261,0.016384
+1489,235.755,4.2417,2.18726,0.016384,0.380928,0.007328,0.004896,0.008,1.75334,0.016384
+1490,220.809,4.52881,2.18218,0.016384,0.371904,0.00688,0.004192,0.008192,1.75718,0.01744
+1491,273.431,3.65723,2.18147,0.016704,0.363744,0.00688,0.00416,0.008192,1.76538,0.016416
+1492,240.094,4.16504,2.14554,0.01744,0.3512,0.006144,0.005504,0.007968,1.73962,0.017664
+1493,270.22,3.70068,2.22925,0.023776,0.389248,0.006816,0.004096,0.008192,1.77971,0.017408
+1494,281.977,3.54639,2.18454,0.016384,0.366016,0.00672,0.004096,0.008192,1.7665,0.01664
+1495,274.752,3.63965,2.19251,0.016128,0.381184,0.007648,0.00464,0.008192,1.75718,0.017536
+1496,243.722,4.10303,2.1809,0.016416,0.378784,0.006208,0.005536,0.007968,1.74918,0.0168
+1497,231.596,4.31787,2.27245,0.016384,0.45392,0.006528,0.004448,0.008192,1.76538,0.0176
+1498,255.84,3.90869,2.16029,0.016384,0.354304,0.00624,0.005728,0.007968,1.7529,0.016768
+1499,253.748,3.94092,2.20035,0.01632,0.372928,0.006816,0.004096,0.008192,1.77565,0.016352
+1500,230.969,4.32959,2.22179,0.016224,0.406208,0.007712,0.004576,0.008192,1.76237,0.016512
+1501,265.905,3.76074,2.18118,0.016448,0.360448,0.007808,0.00448,0.008192,1.76742,0.016384
+1502,275.047,3.63574,2.16064,0.016384,0.370112,0.00672,0.004096,0.008192,1.73875,0.016384
+1503,275.417,3.63086,2.16266,0.01632,0.352544,0.006304,0.005472,0.008064,1.75734,0.016608
+1504,261.191,3.82861,2.25142,0.016096,0.463584,0.006368,0.005504,0.007968,1.73552,0.016384
+1505,244.771,4.08545,2.24461,0.016384,0.443872,0.006688,0.004096,0.008192,1.74899,0.016384
+1506,243.404,4.1084,2.16499,0.016512,0.360576,0.00768,0.004576,0.008192,1.75069,0.016768
+1507,267.958,3.73193,2.14275,0.015168,0.34816,0.007552,0.004736,0.008192,1.74211,0.016832
+1508,272.413,3.6709,2.17376,0.015168,0.36976,0.006976,0.004192,0.008192,1.75277,0.016704
+1509,256.899,3.89258,2.2487,0.016384,0.462848,0.00768,0.004608,0.008192,1.73219,0.0168
+1510,274.862,3.63818,2.16032,0.017472,0.355296,0.007168,0.004896,0.008192,1.7447,0.022592
+1511,236.326,4.23145,2.25075,0.016384,0.403456,0.00624,0.005696,0.008,1.79459,0.016384
+1512,270.363,3.69873,2.16621,0.016416,0.368384,0.0064,0.005376,0.007968,1.74515,0.016512
+1513,249.969,4.00049,2.16317,0.016576,0.368928,0.00768,0.004608,0.008192,1.7408,0.016384
+1514,265.905,3.76074,2.17558,0.016576,0.35824,0.006912,0.004128,0.008192,1.7649,0.01664
+1515,244.013,4.09814,2.17498,0.016384,0.372448,0.006432,0.005344,0.008,1.74998,0.016384
+1516,266.563,3.75146,2.17274,0.01632,0.368864,0.007296,0.004992,0.008032,1.7504,0.016832
+1517,252.341,3.96289,2.17632,0.016576,0.364352,0.006176,0.005696,0.008032,1.75894,0.016544
+1518,244.713,4.08643,2.24493,0.016288,0.444416,0.00656,0.005216,0.007072,1.74899,0.016384
+1519,281.203,3.55615,2.13843,0.015968,0.348896,0.007264,0.004864,0.008,1.73699,0.016448
+1520,270.864,3.69189,2.14653,0.016416,0.368608,0.0064,0.005344,0.008,1.72538,0.016384
+1521,244.246,4.09424,2.14563,0.016384,0.347456,0.006848,0.004096,0.008192,1.73443,0.028224
+1522,224.488,4.45459,2.17498,0.016384,0.385024,0.006176,0.006112,0.008192,1.73648,0.016608
+1523,255.075,3.92041,2.19571,0.016576,0.392544,0.00688,0.004096,0.008192,1.75091,0.016512
+1524,275.195,3.63379,2.1545,0.016384,0.361856,0.006816,0.004064,0.008192,1.7408,0.016384
+1525,245.211,4.07812,2.22509,0.016544,0.406304,0.007392,0.004864,0.008,1.76554,0.016448
+1526,245.093,4.08008,2.17296,0.016416,0.377984,0.00688,0.004256,0.008192,1.74285,0.016384
+1527,262.228,3.81348,2.20134,0.01648,0.39136,0.007872,0.004384,0.008192,1.75661,0.016448
+1528,267.154,3.74316,2.17981,0.016544,0.371008,0.006368,0.005344,0.008,1.75613,0.016416
+1529,207.518,4.81885,2.27142,0.016416,0.465952,0.00688,0.00432,0.008192,1.75309,0.016576
+1530,276.458,3.61719,2.15654,0.016384,0.372704,0.006176,0.005536,0.008,1.73136,0.016384
+1531,282.834,3.53564,2.20736,0.016416,0.3784,0.006592,0.005184,0.007104,1.77562,0.018048
+1532,248.212,4.02881,2.20979,0.016416,0.415456,0.0064,0.00544,0.008,1.74157,0.016512
+1533,259.109,3.85938,2.15859,0.016416,0.360416,0.007296,0.004896,0.008096,1.74509,0.016384
+1534,245.593,4.07178,2.26445,0.016384,0.46272,0.006304,0.005472,0.008,1.74762,0.017952
+1535,193.044,5.18018,2.18189,0.016384,0.398176,0.007616,0.004672,0.008192,1.73011,0.016736
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..a75c856
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,580.733,1.78292,0.42602,0.00682234,0.25557,0.00509353,0.0051695,0.00572306,0.00735219,0.00781547,0.126268,0.00620609
+max_1024,763.894,4.01855,0.899392,0.022944,0.723616,0.022496,0.022304,0.0248,0.024192,0.024512,0.156256,0.023616
+min_1024,248.846,1.30908,0.372704,0.00592,0.219168,0.004064,0.004096,0.004416,0.006144,0.006176,0.1024,0.004992
+512,683.293,1.4635,0.387072,0.006144,0.23552,0.005216,0.004864,0.005568,0.006784,0.007552,0.10928,0.006144
+513,725.02,1.37927,0.378496,0.006144,0.22528,0.004096,0.00576,0.00448,0.007808,0.007776,0.11104,0.006112
+514,524.322,1.90723,0.384928,0.007936,0.233216,0.004512,0.005312,0.004928,0.007424,0.006912,0.108544,0.006144
+515,546.498,1.82983,0.389408,0.006464,0.237888,0.005888,0.004352,0.005984,0.006304,0.008064,0.108416,0.006048
+516,549.283,1.82056,0.376832,0.006144,0.227072,0.004352,0.005472,0.004768,0.007584,0.006752,0.108544,0.006144
+517,595.695,1.67871,0.38976,0.006464,0.237152,0.004704,0.004096,0.006144,0.007296,0.00704,0.111712,0.005152
+518,604.933,1.65308,0.391072,0.00624,0.239616,0.004096,0.00576,0.005824,0.006784,0.007328,0.109376,0.006048
+519,616.867,1.62109,0.387072,0.007264,0.232352,0.005312,0.004864,0.005472,0.00688,0.00752,0.111264,0.006144
+520,601.91,1.66138,0.382912,0.007616,0.22912,0.004928,0.004096,0.006144,0.006144,0.00816,0.110624,0.00608
+521,683.293,1.4635,0.385024,0.006144,0.231424,0.004096,0.005792,0.005472,0.006816,0.007552,0.111584,0.006144
+522,682.667,1.46484,0.376832,0.007648,0.223776,0.005504,0.004736,0.0056,0.006688,0.007744,0.108992,0.006144
+523,556.862,1.79578,0.391168,0.007264,0.2344,0.005472,0.004768,0.005728,0.006592,0.007808,0.112992,0.006144
+524,537.921,1.85901,0.649376,0.006336,0.49008,0.00608,0.0056,0.004704,0.00816,0.00752,0.114848,0.006048
+525,736.36,1.35803,0.390496,0.006144,0.235136,0.00448,0.005344,0.004896,0.007392,0.006976,0.114048,0.00608
+526,455.998,2.19299,0.380928,0.006304,0.229312,0.005824,0.00432,0.006048,0.006272,0.007872,0.109952,0.005024
+527,579.145,1.72668,0.455488,0.006592,0.300768,0.00464,0.005184,0.005088,0.008032,0.007648,0.112352,0.005184
+528,683.008,1.46411,0.380192,0.00624,0.226656,0.004768,0.004096,0.006144,0.006144,0.008192,0.110592,0.00736
+529,645.599,1.54895,0.382976,0.006144,0.227328,0.0056,0.00464,0.005664,0.006624,0.008192,0.11264,0.006144
+530,676.019,1.47925,0.383616,0.006592,0.2312,0.004544,0.00528,0.00496,0.007648,0.00672,0.11056,0.006112
+531,649.952,1.53857,0.387744,0.00656,0.234976,0.004896,0.004096,0.006144,0.007392,0.006944,0.110592,0.006144
+532,572.827,1.74573,0.428032,0.007232,0.260672,0.00448,0.005312,0.004928,0.007424,0.006912,0.124928,0.006144
+533,647.538,1.54431,0.380928,0.007232,0.232128,0.004352,0.005472,0.004768,0.007424,0.006912,0.107584,0.005056
+534,683.749,1.46252,0.375552,0.006176,0.225984,0.00592,0.00432,0.006144,0.006176,0.00816,0.106496,0.006176
+535,534.272,1.8717,0.3936,0.0064,0.245888,0.005248,0.004864,0.005504,0.00688,0.007776,0.104864,0.006176
+536,391.812,2.55225,0.456704,0.006208,0.307136,0.005408,0.004832,0.005504,0.006784,0.008032,0.106656,0.006144
+537,670.651,1.49109,0.393888,0.0064,0.239168,0.00496,0.004096,0.006112,0.007264,0.007104,0.11264,0.006144
+538,652.333,1.53296,0.382976,0.00624,0.230624,0.0048,0.005152,0.005088,0.007264,0.007072,0.110592,0.006144
+539,600.939,1.66406,0.397312,0.00736,0.243648,0.004928,0.00416,0.006144,0.007296,0.00704,0.110592,0.006144
+540,612.669,1.6322,0.38304,0.006208,0.233472,0.004096,0.005888,0.005472,0.006752,0.007776,0.107232,0.006144
+541,648.512,1.54199,0.38256,0.007296,0.227744,0.004576,0.005216,0.005056,0.007456,0.006848,0.112352,0.006016
+542,636.074,1.57214,0.38464,0.006272,0.23104,0.00448,0.005344,0.004896,0.007456,0.006976,0.11216,0.006016
+543,566.059,1.7666,0.385632,0.006432,0.233504,0.004384,0.00544,0.0048,0.007808,0.007584,0.109536,0.006144
+544,554.675,1.80286,0.448416,0.006144,0.27648,0.004096,0.00608,0.005472,0.00688,0.007936,0.112224,0.023104
+545,417.448,2.39551,0.68608,0.007648,0.526912,0.006112,0.005568,0.004672,0.008192,0.007904,0.112928,0.006144
+546,707.549,1.41333,0.38368,0.006592,0.227584,0.005696,0.004544,0.005792,0.006496,0.007776,0.113056,0.006144
+547,554.6,1.8031,0.409152,0.0064,0.251904,0.004096,0.005824,0.00544,0.006912,0.007648,0.11488,0.006048
+548,618.404,1.61707,0.390336,0.006176,0.241632,0.005344,0.004864,0.005504,0.006816,0.007488,0.106464,0.006048
+549,712.72,1.40308,0.376864,0.007552,0.22592,0.00528,0.004864,0.00544,0.006944,0.007872,0.106816,0.006176
+550,644.836,1.55078,0.382304,0.00736,0.230208,0.004096,0.00608,0.005472,0.006848,0.007616,0.108608,0.006016
+551,579.924,1.72437,0.401408,0.006144,0.255904,0.004192,0.0056,0.00464,0.007936,0.00752,0.103328,0.006144
+552,597.956,1.67236,0.38672,0.006144,0.239072,0.00464,0.005344,0.004896,0.007456,0.00688,0.106304,0.005984
+553,690.783,1.44763,0.39152,0.006688,0.243328,0.004544,0.00528,0.00496,0.007744,0.007872,0.10496,0.006144
+554,615.57,1.62451,0.392736,0.006176,0.243712,0.005856,0.004384,0.005984,0.006304,0.008096,0.10624,0.005984
+555,675.517,1.48035,0.378976,0.00624,0.231424,0.005248,0.004864,0.005472,0.006848,0.007488,0.105248,0.006144
+556,536.442,1.86414,0.392928,0.00624,0.240832,0.004896,0.00512,0.00512,0.007904,0.006432,0.110432,0.005952
+557,590.329,1.69397,0.433824,0.006272,0.27648,0.005952,0.014528,0.006144,0.0072,0.007136,0.104064,0.006048
+558,726.563,1.37634,0.39888,0.007328,0.25008,0.004736,0.004096,0.006144,0.007264,0.007072,0.10608,0.00608
+559,645.802,1.54846,0.382304,0.007872,0.228736,0.00496,0.004192,0.006144,0.006176,0.00816,0.109984,0.00608
+560,493.732,2.02539,0.428992,0.006496,0.26848,0.00448,0.005312,0.017088,0.006432,0.008032,0.106496,0.006176
+561,600.542,1.66516,0.385056,0.006144,0.240896,0.004864,0.004096,0.006176,0.007168,0.007136,0.1024,0.006176
+562,612.257,1.6333,0.39376,0.006496,0.227328,0.004288,0.005472,0.004768,0.007616,0.00672,0.124928,0.006144
+563,581.694,1.71912,0.387648,0.006656,0.235584,0.005824,0.004416,0.005888,0.0064,0.008,0.108736,0.006144
+564,565.941,1.76697,0.383712,0.006464,0.23184,0.005248,0.004896,0.005504,0.00688,0.007392,0.109344,0.006144
+565,553.663,1.80615,0.397312,0.006144,0.247392,0.004512,0.005408,0.004832,0.007392,0.006944,0.108544,0.006144
+566,641.855,1.55798,0.382976,0.006144,0.231424,0.005152,0.004896,0.005472,0.006976,0.007424,0.109344,0.006144
+567,656.673,1.52283,0.375776,0.006656,0.225696,0.00416,0.005664,0.004576,0.007712,0.006656,0.108512,0.006144
+568,623.108,1.60486,0.40144,0.007264,0.242592,0.005728,0.004512,0.00608,0.006208,0.008192,0.114688,0.006176
+569,554.713,1.80273,0.432256,0.008672,0.272384,0.005152,0.005088,0.005536,0.006752,0.007616,0.114944,0.006112
+570,495.075,2.0199,0.647168,0.006144,0.491136,0.0056,0.005024,0.006048,0.00736,0.007072,0.11264,0.006144
+571,703.478,1.42151,0.380288,0.006272,0.225152,0.00544,0.0048,0.005568,0.00672,0.007744,0.112608,0.005984
+572,331.633,3.01538,0.378528,0.0064,0.227328,0.005216,0.004896,0.005472,0.006656,0.007616,0.108928,0.006016
+573,552.208,1.81091,0.466336,0.006144,0.301056,0.005376,0.015104,0.006144,0.006144,0.008192,0.112128,0.006048
+574,626.683,1.5957,0.37856,0.006144,0.231296,0.004224,0.0056,0.00464,0.00752,0.006816,0.10624,0.00608
+575,655.308,1.526,0.381728,0.006656,0.229664,0.005632,0.004608,0.00576,0.006528,0.008224,0.108512,0.006144
+576,491.569,2.0343,0.436224,0.022528,0.26992,0.004512,0.005312,0.004928,0.007552,0.006784,0.108576,0.006112
+577,508.788,1.96545,0.637216,0.006368,0.487488,0.005984,0.005568,0.004832,0.007872,0.00768,0.10528,0.006144
+578,654.993,1.52673,0.372704,0.006528,0.224928,0.004448,0.005408,0.004832,0.007552,0.006816,0.106208,0.005984
+579,519.962,1.92322,0.387072,0.018432,0.227424,0.005888,0.004256,0.00608,0.00624,0.008128,0.10448,0.006144
+580,389.502,2.56738,0.465504,0.018464,0.30688,0.00496,0.004192,0.006112,0.006176,0.008192,0.104448,0.00608
+581,625.917,1.59766,0.383872,0.006528,0.236064,0.00576,0.004448,0.005952,0.006336,0.008192,0.104448,0.006144
+582,647.999,1.54321,0.38448,0.00752,0.230048,0.00592,0.00432,0.005984,0.006304,0.008,0.1104,0.005984
+583,549.909,1.81848,0.403264,0.006464,0.247072,0.00496,0.004192,0.006144,0.007424,0.006944,0.114016,0.006048
+584,630.785,1.58533,0.382976,0.006304,0.231296,0.00512,0.004864,0.005472,0.006976,0.007328,0.109344,0.006272
+585,621.689,1.60852,0.387232,0.007328,0.228352,0.005408,0.004832,0.005504,0.006784,0.008192,0.114688,0.006144
+586,681.417,1.46753,0.384832,0.006464,0.231776,0.004224,0.0056,0.00464,0.007936,0.0064,0.111776,0.006016
+587,640.701,1.56079,0.383232,0.0064,0.229376,0.00576,0.00448,0.005888,0.0064,0.007968,0.110816,0.006144
+588,512.096,1.95276,0.444352,0.008192,0.291936,0.00496,0.00416,0.006144,0.006144,0.008192,0.108544,0.00608
+589,658.68,1.51819,0.399872,0.006464,0.2296,0.005376,0.004832,0.005536,0.006752,0.022208,0.11296,0.006144
+590,331.298,3.01843,0.461184,0.008032,0.305696,0.005888,0.004352,0.005952,0.006336,0.008032,0.110752,0.006144
+591,444.372,2.25037,0.423936,0.007232,0.274432,0.004928,0.004224,0.006112,0.006176,0.008192,0.106496,0.006144
+592,624.867,1.60034,0.396064,0.006656,0.245728,0.004416,0.005408,0.004832,0.007488,0.006848,0.108544,0.006144
+593,667.373,1.49841,0.386592,0.00752,0.234144,0.00528,0.004864,0.005472,0.006816,0.007424,0.108896,0.006176
+594,673.02,1.48584,0.381376,0.006464,0.227456,0.005824,0.004416,0.00592,0.006368,0.007808,0.110976,0.006144
+595,556.824,1.7959,0.405504,0.006144,0.24944,0.004512,0.005376,0.004864,0.007808,0.007808,0.113408,0.006144
+596,577.145,1.73267,0.397088,0.00624,0.239552,0.005792,0.004416,0.00592,0.0064,0.007872,0.11488,0.006016
+597,702.995,1.42249,0.379264,0.006432,0.226976,0.004512,0.005312,0.004928,0.007488,0.006848,0.110592,0.006176
+598,504.9,1.98059,0.387104,0.007392,0.229248,0.004928,0.004192,0.006144,0.006144,0.008064,0.114816,0.006176
+599,383.431,2.60803,0.4664,0.00752,0.30896,0.004928,0.004224,0.006112,0.007808,0.006688,0.114016,0.006144
+600,646.006,1.54797,0.39936,0.007392,0.245664,0.004928,0.00416,0.006144,0.006144,0.008128,0.110656,0.006144
+601,644.278,1.55212,0.380928,0.0072,0.229792,0.004672,0.004096,0.006144,0.007392,0.006944,0.108544,0.006144
+602,570.235,1.75366,0.387136,0.006208,0.234624,0.004992,0.004096,0.006144,0.006144,0.008224,0.11056,0.006144
+603,578.245,1.72937,0.385024,0.006144,0.231328,0.004192,0.005632,0.004608,0.007648,0.00672,0.112608,0.006144
+604,517.4,1.93274,0.645504,0.006336,0.491712,0.00592,0.005568,0.004896,0.007776,0.00656,0.110592,0.006144
+605,633.467,1.57861,0.382336,0.006176,0.228672,0.004768,0.004096,0.006144,0.007232,0.007104,0.112032,0.006112
+606,629.766,1.58789,0.423136,0.006304,0.267328,0.00496,0.004192,0.006112,0.006176,0.007872,0.114048,0.006144
+607,341.362,2.92944,0.435808,0.007552,0.283264,0.00544,0.0048,0.005536,0.006752,0.007968,0.108416,0.00608
+608,609.252,1.64136,0.40144,0.00752,0.244192,0.004288,0.005536,0.004704,0.008064,0.007328,0.113632,0.006176
+609,704.87,1.4187,0.385024,0.007296,0.230272,0.004096,0.005888,0.005472,0.00688,0.007552,0.111424,0.006144
+610,584.809,1.70996,0.397312,0.006144,0.238976,0.004736,0.004096,0.006144,0.007264,0.007072,0.116736,0.006144
+611,588.337,1.69971,0.427968,0.006464,0.276864,0.004128,0.005696,0.004544,0.00784,0.006688,0.109632,0.006112
+612,702.573,1.42334,0.386944,0.008128,0.22944,0.00592,0.00432,0.005984,0.006304,0.00768,0.113152,0.006016
+613,659.794,1.51562,0.382816,0.0064,0.229408,0.004096,0.005856,0.005504,0.006976,0.007488,0.11104,0.006048
+614,608.347,1.6438,0.415968,0.006336,0.247808,0.005344,0.004864,0.005472,0.006816,0.020512,0.11264,0.006176
+615,572.067,1.74805,0.421888,0.006144,0.270272,0.00416,0.005664,0.004576,0.007872,0.007552,0.110528,0.00512
+616,404.703,2.47095,0.385024,0.006144,0.230912,0.004608,0.005216,0.005024,0.007392,0.006944,0.11264,0.006144
+617,567.352,1.76257,0.4008,0.007296,0.244256,0.004448,0.005376,0.004864,0.007584,0.006784,0.114112,0.00608
+618,610.796,1.63721,0.388128,0.006496,0.236032,0.005664,0.004544,0.005824,0.006496,0.007744,0.110144,0.005184
+619,568.77,1.75818,0.389952,0.006432,0.23712,0.004928,0.004256,0.00608,0.006208,0.008192,0.110592,0.006144
+620,618.731,1.61621,0.38304,0.00624,0.23072,0.004768,0.004096,0.006144,0.007872,0.006464,0.110592,0.006144
+621,705.113,1.41821,0.380928,0.006144,0.229376,0.004096,0.005696,0.004544,0.008128,0.007616,0.109184,0.006144
+622,666.179,1.5011,0.39712,0.006144,0.239616,0.005408,0.004832,0.005504,0.006784,0.00752,0.115264,0.006048
+623,576.171,1.7356,0.432128,0.006144,0.280576,0.005184,0.004864,0.005472,0.006912,0.00784,0.108992,0.006144
+624,580.334,1.72314,0.432128,0.008192,0.268128,0.005472,0.01312,0.006144,0.007872,0.00752,0.109536,0.006144
+625,485.193,2.06104,0.460896,0.00624,0.29616,0.004896,0.004096,0.006144,0.006304,0.020192,0.11072,0.006144
+626,518.711,1.92786,0.391168,0.006144,0.238784,0.004928,0.004096,0.006144,0.006144,0.008096,0.110688,0.006144
+627,573.87,1.74255,0.409824,0.006368,0.253952,0.005504,0.004736,0.005824,0.006496,0.007872,0.112928,0.006144
+628,687.768,1.45398,0.378816,0.006464,0.225344,0.005248,0.0048,0.005472,0.006912,0.007264,0.111296,0.006016
+629,622.54,1.60632,0.38672,0.007712,0.230976,0.004928,0.005472,0.004864,0.007456,0.006976,0.112256,0.00608
+630,629.379,1.58887,0.388544,0.006144,0.231424,0.005568,0.004672,0.005664,0.006624,0.00784,0.11456,0.006048
+631,602.486,1.65979,0.426816,0.0064,0.272832,0.004224,0.005696,0.004544,0.007936,0.00784,0.1112,0.006144
+632,589.268,1.69702,0.396,0.00688,0.238976,0.004736,0.004096,0.006144,0.007168,0.007168,0.114688,0.006144
+633,629.573,1.58838,0.399744,0.006432,0.229952,0.005408,0.004832,0.005504,0.006784,0.007872,0.11296,0.02
+634,555.014,1.80176,0.406912,0.006144,0.251904,0.005568,0.004672,0.005696,0.006592,0.007904,0.112416,0.006016
+635,551.724,1.8125,0.423936,0.02048,0.249856,0.005472,0.004768,0.0056,0.006688,0.007648,0.11728,0.006144
+636,515.642,1.93933,0.680896,0.00656,0.518688,0.006144,0.005696,0.004544,0.008192,0.008192,0.116736,0.006144
+637,720.556,1.38782,0.39984,0.006784,0.241056,0.004704,0.004096,0.006144,0.007328,0.00704,0.116608,0.00608
+638,596.215,1.67725,0.385024,0.006144,0.227328,0.005824,0.004416,0.00592,0.007552,0.00704,0.114656,0.006144
+639,435.861,2.29431,0.405664,0.006432,0.249888,0.004608,0.00528,0.00496,0.007712,0.006688,0.114048,0.006048
+640,502.484,1.99011,0.430304,0.006432,0.273728,0.00496,0.004256,0.006048,0.00624,0.008192,0.114432,0.006016
+641,582.978,1.71533,0.39968,0.0064,0.242912,0.004896,0.00416,0.006144,0.007712,0.006688,0.114656,0.006112
+642,418.75,2.38806,0.393216,0.006144,0.237568,0.00592,0.00432,0.005984,0.006336,0.00816,0.11264,0.006144
+643,568.77,1.75818,0.397344,0.006144,0.243744,0.005888,0.00432,0.006016,0.006304,0.008096,0.110656,0.006176
+644,622.587,1.6062,0.403936,0.006464,0.249504,0.004608,0.005248,0.004992,0.007808,0.007712,0.111456,0.006144
+645,649.54,1.53955,0.387072,0.006144,0.231424,0.005312,0.004896,0.005504,0.006816,0.007936,0.112896,0.006144
+646,615.292,1.62524,0.396864,0.0072,0.232416,0.005632,0.004608,0.005728,0.006592,0.00784,0.120832,0.006016
+647,544.066,1.83801,0.420224,0.00656,0.256,0.005888,0.004352,0.006016,0.006272,0.008192,0.120832,0.006112
+648,655.15,1.52637,0.395264,0.006144,0.23296,0.004608,0.005216,0.005024,0.007424,0.006912,0.120864,0.006112
+649,666.287,1.50085,0.392,0.006432,0.230912,0.004928,0.004288,0.006112,0.006176,0.008192,0.118784,0.006176
+650,652.281,1.53308,0.393056,0.006752,0.233216,0.005472,0.004896,0.005472,0.00688,0.007392,0.116896,0.00608
+651,537.145,1.86169,0.430144,0.006144,0.27648,0.004096,0.005792,0.00448,0.00784,0.00752,0.112608,0.005184
+652,600.631,1.66492,0.393248,0.007712,0.233408,0.00464,0.005376,0.004864,0.007712,0.006688,0.116672,0.006176
+653,673.131,1.4856,0.395168,0.006496,0.22336,0.019776,0.0048,0.006016,0.006336,0.008128,0.114208,0.006048
+654,634.056,1.57715,0.385056,0.006464,0.223712,0.005632,0.004608,0.005696,0.006592,0.007776,0.11856,0.006016
+655,519.039,1.92664,0.446656,0.006336,0.284672,0.00512,0.004896,0.005472,0.006944,0.007968,0.119104,0.006144
+656,493.464,2.02649,0.677888,0.006144,0.515232,0.00496,0.006144,0.005568,0.00672,0.00784,0.119168,0.006112
+657,666.125,1.50122,0.421344,0.006176,0.24928,0.00464,0.015776,0.005888,0.00688,0.007488,0.119104,0.006112
+658,514.089,1.94519,0.395168,0.00624,0.227232,0.00544,0.0048,0.005536,0.006752,0.00768,0.12544,0.006048
+659,554.75,1.80261,0.448096,0.006144,0.285824,0.004928,0.00416,0.006144,0.006144,0.008192,0.120512,0.006048
+660,392.262,2.54932,0.474208,0.00736,0.296864,0.004928,0.004192,0.006144,0.018432,0.00752,0.12256,0.006208
+661,578.409,1.72888,0.399776,0.006592,0.233472,0.005376,0.004864,0.005472,0.006816,0.007648,0.123392,0.006144
+662,597.694,1.6731,0.413184,0.006144,0.251072,0.004928,0.004096,0.006144,0.006144,0.008128,0.12048,0.006048
+663,620.888,1.6106,0.411168,0.006144,0.233376,0.004192,0.005888,0.014592,0.008192,0.007936,0.124768,0.00608
+664,623.061,1.60498,0.391264,0.006144,0.2272,0.004224,0.005568,0.004672,0.007744,0.006592,0.124128,0.004992
+665,658.045,1.51965,0.392864,0.006368,0.231232,0.004448,0.005408,0.004832,0.007488,0.006848,0.12016,0.00608
+666,574.474,1.74072,0.396192,0.00672,0.232864,0.004896,0.004256,0.00592,0.006368,0.00784,0.121184,0.006144
+667,542.158,1.84448,0.436256,0.006944,0.277696,0.004928,0.004096,0.006144,0.00624,0.008096,0.116,0.006112
+668,635.827,1.57275,0.396608,0.006144,0.233472,0.004096,0.005856,0.00544,0.006912,0.006368,0.122304,0.006016
+669,592.807,1.68689,0.436352,0.006336,0.275552,0.005024,0.005728,0.004512,0.007904,0.007616,0.1176,0.00608
+670,552.878,1.80872,0.401408,0.006144,0.23952,0.004192,0.005728,0.004512,0.007776,0.00656,0.120832,0.006144
+671,563.256,1.77539,0.432224,0.00624,0.261376,0.004864,0.004096,0.006144,0.007872,0.00768,0.113472,0.02048
+672,682.496,1.46521,0.382976,0.006144,0.22736,0.005728,0.00448,0.005696,0.006592,0.007904,0.112928,0.006144
+673,674.85,1.48181,0.389952,0.007168,0.2272,0.004224,0.005632,0.004608,0.00784,0.007552,0.11968,0.006048
+674,560.75,1.78333,0.382304,0.006144,0.22528,0.00544,0.0048,0.005792,0.006496,0.008192,0.114176,0.005984
+675,582.19,1.71765,0.426464,0.006528,0.269376,0.005056,0.00528,0.00496,0.007488,0.006848,0.115744,0.005184
+676,479.85,2.08398,0.643296,0.006336,0.486848,0.004704,0.006144,0.005728,0.006592,0.00816,0.11264,0.006144
+677,651.451,1.53503,0.403392,0.007584,0.246368,0.004096,0.005696,0.004544,0.007904,0.00768,0.11344,0.00608
+678,519.171,1.92615,0.450592,0.022528,0.2704,0.006016,0.00416,0.006144,0.007168,0.007168,0.120832,0.006176
+679,534.063,1.87244,0.394784,0.006144,0.237408,0.004256,0.005536,0.004704,0.007776,0.00768,0.115232,0.006048
+680,666.667,1.5,0.393312,0.007488,0.238272,0.004096,0.005728,0.004512,0.007904,0.006432,0.113728,0.005152
+681,715.271,1.39807,0.382976,0.007648,0.223776,0.005568,0.004672,0.005664,0.00768,0.007136,0.114688,0.006144
+682,642.057,1.5575,0.38064,0.007712,0.227072,0.004832,0.004096,0.006144,0.006144,0.008192,0.110464,0.005984
+683,570.792,1.75195,0.40288,0.006592,0.239616,0.006144,0.005152,0.005088,0.007424,0.006912,0.119904,0.006048
+684,554.826,1.80237,0.651296,0.006208,0.491104,0.0056,0.005024,0.005984,0.0064,0.008128,0.116544,0.006304
+685,642.359,1.55676,0.383424,0.006848,0.227328,0.005376,0.004864,0.005504,0.006784,0.007616,0.11312,0.005984
+686,665.043,1.50366,0.389408,0.006432,0.231424,0.005632,0.004608,0.005696,0.006624,0.008192,0.114656,0.006144
+687,376.609,2.65527,0.510688,0.021216,0.322816,0.004864,0.004096,0.018208,0.006528,0.008064,0.118752,0.006144
+688,532.744,1.87708,0.393184,0.007296,0.232064,0.004352,0.005472,0.004768,0.00784,0.007712,0.117568,0.006112
+689,679.439,1.4718,0.386368,0.006464,0.2304,0.004992,0.004224,0.006112,0.006176,0.008,0.11392,0.00608
+690,665.854,1.50183,0.393248,0.007872,0.235872,0.005792,0.004416,0.005952,0.006336,0.008096,0.112736,0.006176
+691,557.734,1.79297,0.429536,0.006176,0.272352,0.005856,0.004384,0.005984,0.006304,0.008224,0.113952,0.006304
+692,668.844,1.49512,0.391168,0.006304,0.231296,0.005376,0.004832,0.005504,0.006784,0.007584,0.117344,0.006144
+693,716.71,1.39526,0.382688,0.006176,0.227232,0.004192,0.0056,0.00464,0.007936,0.007552,0.113312,0.006048
+694,634.203,1.57678,0.386336,0.007648,0.225824,0.005568,0.004672,0.005664,0.006624,0.007584,0.116704,0.006048
+695,630.445,1.58618,0.428096,0.006624,0.26032,0.004384,0.00544,0.0048,0.007616,0.00672,0.126176,0.006016
+696,598.743,1.67017,0.415328,0.006144,0.245568,0.020672,0.005728,0.004512,0.007968,0.006368,0.11232,0.006048
+697,637.163,1.56946,0.38528,0.0064,0.227328,0.005344,0.004864,0.005472,0.006848,0.008192,0.11472,0.006112
+698,664.881,1.50403,0.38896,0.0064,0.231584,0.0056,0.004608,0.005728,0.006592,0.007712,0.114752,0.005984
+699,569.086,1.7572,0.390464,0.007264,0.231328,0.004928,0.004288,0.006144,0.007456,0.00688,0.116128,0.006048
+700,565.629,1.76794,0.415744,0.007328,0.2608,0.004256,0.005568,0.004672,0.00752,0.006816,0.112256,0.006528
+701,653.478,1.53027,0.389184,0.006432,0.231936,0.004096,0.006112,0.005472,0.006848,0.00768,0.114496,0.006112
+702,709.571,1.4093,0.382688,0.00768,0.225088,0.0048,0.004096,0.006144,0.00624,0.008096,0.114464,0.00608
+703,635.679,1.57312,0.387072,0.006144,0.228704,0.004768,0.005216,0.005024,0.007424,0.006944,0.116736,0.006112
+704,573.469,1.74377,0.428032,0.006144,0.2696,0.004832,0.004096,0.006176,0.007296,0.007008,0.116736,0.006144
+705,551.65,1.81274,0.652928,0.006656,0.487552,0.006112,0.005824,0.005472,0.008192,0.007168,0.119936,0.006016
+706,520.888,1.9198,0.47792,0.00704,0.302624,0.004576,0.005216,0.005024,0.00736,0.006976,0.13312,0.005984
+707,570.831,1.75183,0.389312,0.006304,0.229376,0.006144,0.004096,0.006144,0.007232,0.007136,0.116704,0.006176
+708,605.246,1.65222,0.425984,0.006176,0.26416,0.005408,0.004832,0.005472,0.006816,0.007488,0.119488,0.006144
+709,720.619,1.3877,0.381408,0.006592,0.22528,0.004096,0.005824,0.005472,0.007104,0.00768,0.113184,0.006176
+710,670.102,1.49231,0.382432,0.007584,0.22928,0.0048,0.004096,0.006144,0.006144,0.008192,0.110208,0.005984
+711,554.375,1.80383,0.38912,0.006144,0.23248,0.004928,0.004256,0.006144,0.007232,0.007104,0.114688,0.006144
+712,641.805,1.55811,0.394368,0.006144,0.237568,0.00576,0.00448,0.005856,0.006464,0.007808,0.114272,0.006016
+713,588.59,1.69897,0.401024,0.006592,0.241056,0.004704,0.004096,0.006144,0.007424,0.006912,0.11808,0.006016
+714,669.39,1.4939,0.385088,0.006144,0.229376,0.005792,0.004448,0.00592,0.006368,0.008064,0.113824,0.005152
+715,397.265,2.51721,0.475008,0.007584,0.309856,0.00512,0.004896,0.005472,0.00704,0.007552,0.120992,0.006496
+716,322.609,3.09973,0.481696,0.006432,0.31904,0.004672,0.005312,0.004928,0.007232,0.007104,0.120832,0.006144
+717,594.398,1.68237,0.427424,0.0064,0.272032,0.004576,0.005248,0.004992,0.00736,0.007008,0.11376,0.006048
+718,678.427,1.474,0.385504,0.006272,0.227968,0.005728,0.004512,0.005824,0.006464,0.007552,0.115168,0.006016
+719,510.914,1.95728,0.401664,0.0064,0.241664,0.004096,0.005824,0.00544,0.006848,0.008096,0.116896,0.0064
+720,586.777,1.70422,0.394048,0.006496,0.239904,0.004288,0.005536,0.004704,0.007616,0.00672,0.11264,0.006144
+721,713.465,1.40161,0.390208,0.007232,0.227872,0.004512,0.005312,0.004928,0.007456,0.00688,0.119968,0.006048
+722,664.557,1.50476,0.389472,0.006528,0.229344,0.005888,0.004352,0.005984,0.0064,0.008096,0.116768,0.006112
+723,570.434,1.75305,0.395264,0.006144,0.237504,0.00416,0.005664,0.004576,0.007936,0.00752,0.115616,0.006144
+724,617.938,1.61829,0.391264,0.007328,0.232288,0.005184,0.004864,0.005472,0.006784,0.007488,0.116672,0.005184
+725,604.888,1.6532,0.388096,0.006144,0.229376,0.00416,0.005856,0.005376,0.006848,0.007616,0.116736,0.005984
+726,679.214,1.47229,0.387584,0.006432,0.230944,0.0048,0.004096,0.006144,0.006144,0.008192,0.114688,0.006144
+727,336.524,2.97156,0.423936,0.006144,0.263872,0.004416,0.005408,0.004832,0.007648,0.006688,0.118784,0.006144
+728,447.65,2.23389,0.440224,0.007456,0.27312,0.005248,0.004768,0.005504,0.006848,0.007488,0.123744,0.006048
+729,549.651,1.81934,0.4448,0.006528,0.275872,0.004704,0.004096,0.006144,0.016416,0.00816,0.116736,0.006144
+730,498.176,2.00732,0.408416,0.006592,0.236,0.005824,0.004416,0.007456,0.00688,0.008,0.117984,0.015264
+731,393.279,2.54272,0.549376,0.006464,0.389312,0.005952,0.004288,0.006144,0.006176,0.00816,0.116736,0.006144
+732,518.776,1.92761,0.42,0.006304,0.260096,0.005408,0.004832,0.005504,0.006784,0.007584,0.117344,0.006144
+733,488.113,2.04871,0.393216,0.007424,0.231648,0.00464,0.005216,0.005024,0.007456,0.006912,0.118752,0.006144
+734,541.226,1.84766,0.403456,0.00768,0.244256,0.0056,0.004608,0.005888,0.0064,0.007776,0.115104,0.006144
+735,540.227,1.85107,0.393344,0.006272,0.236544,0.004928,0.004288,0.00608,0.006208,0.008192,0.114688,0.006144
+736,578.613,1.72827,0.406592,0.007424,0.244192,0.004384,0.005536,0.006048,0.006848,0.007712,0.118368,0.00608
+737,508.315,1.96729,0.4096,0.007264,0.248736,0.004096,0.00576,0.00448,0.007936,0.007584,0.1176,0.006144
+738,566.764,1.7644,0.416992,0.007328,0.256864,0.00544,0.0048,0.005568,0.00672,0.007584,0.116608,0.00608
+739,504.371,1.98267,0.393312,0.006432,0.232544,0.004928,0.004256,0.00608,0.00624,0.008128,0.118624,0.00608
+740,643.317,1.55444,0.40272,0.006144,0.247808,0.005728,0.004512,0.00592,0.006368,0.008192,0.112032,0.006016
+741,546.279,1.83057,0.409664,0.007744,0.25024,0.00416,0.005632,0.004608,0.007936,0.007712,0.116448,0.005184
+742,452.997,2.20752,0.475072,0.006144,0.301056,0.004096,0.005888,0.005472,0.00688,0.022432,0.117024,0.00608
+743,484.218,2.06519,0.43008,0.006272,0.272256,0.004096,0.005856,0.005504,0.007072,0.008224,0.114656,0.006144
+744,472.652,2.11572,0.399392,0.006144,0.243072,0.004736,0.004096,0.006144,0.006304,0.008032,0.114688,0.006176
+745,456.277,2.19165,0.525824,0.006144,0.368608,0.004128,0.005696,0.004544,0.007904,0.00752,0.115232,0.006048
+746,519.863,1.92358,0.395264,0.007488,0.236224,0.00592,0.00432,0.005984,0.006304,0.00784,0.11504,0.006144
+747,655.046,1.52661,0.385248,0.006432,0.229792,0.005312,0.004896,0.005536,0.006784,0.007616,0.112736,0.006144
+748,551.427,1.81348,0.395968,0.00672,0.2416,0.004288,0.005536,0.004704,0.007712,0.008224,0.111072,0.006112
+749,554.713,1.80273,0.456704,0.006144,0.29808,0.004928,0.004192,0.006144,0.006144,0.008192,0.116768,0.006112
+750,626.108,1.59717,0.387072,0.007392,0.232224,0.004096,0.005792,0.005472,0.006944,0.007392,0.111616,0.006144
+751,528.653,1.8916,0.401408,0.007168,0.240416,0.00432,0.005504,0.004736,0.00768,0.00672,0.11872,0.006144
+752,561.019,1.78247,0.394656,0.006496,0.23936,0.004352,0.005472,0.004768,0.007584,0.006752,0.113792,0.00608
+753,612.532,1.63257,0.39936,0.0072,0.23648,0.004128,0.005696,0.004544,0.007904,0.00752,0.119776,0.006112
+754,649.334,1.54004,0.389152,0.006144,0.233056,0.004512,0.00528,0.00496,0.007968,0.006432,0.114624,0.006176
+755,531.603,1.8811,0.391072,0.0072,0.232416,0.00528,0.004896,0.005472,0.00688,0.007872,0.114976,0.00608
+756,495.164,2.01953,0.393344,0.00656,0.23776,0.005632,0.004608,0.00576,0.006528,0.007744,0.112608,0.006144
+757,605.648,1.65112,0.396544,0.007264,0.232384,0.00576,0.004448,0.00592,0.006368,0.008192,0.120128,0.00608
+758,683.122,1.46387,0.391008,0.006144,0.231424,0.005728,0.004512,0.005824,0.006464,0.007776,0.117152,0.005984
+759,698.857,1.43091,0.38672,0.006752,0.225344,0.005856,0.004352,0.006016,0.006272,0.008224,0.117888,0.006016
+760,619.012,1.61548,0.39328,0.006752,0.2296,0.005792,0.004448,0.006144,0.006144,0.008192,0.120128,0.00608
+761,555.842,1.79907,0.438976,0.006432,0.27872,0.004448,0.005344,0.004896,0.00768,0.00784,0.117536,0.00608
+762,704.022,1.42041,0.39024,0.006144,0.226592,0.004832,0.004096,0.006144,0.007168,0.007168,0.122144,0.005952
+763,650.572,1.53711,0.387328,0.0064,0.227328,0.005248,0.004864,0.005472,0.006944,0.007744,0.117184,0.006144
+764,589.098,1.69751,0.395776,0.006464,0.233472,0.004288,0.0056,0.00464,0.008192,0.008192,0.118784,0.006144
+765,503.937,1.98438,0.425408,0.006336,0.268288,0.004096,0.005792,0.004448,0.008128,0.007648,0.11456,0.006112
+766,424.104,2.35791,0.40592,0.006496,0.2472,0.004896,0.004096,0.006144,0.006144,0.008192,0.116736,0.006016
+767,644.228,1.55225,0.389152,0.006176,0.231424,0.004096,0.005728,0.004512,0.007968,0.007392,0.115712,0.006144
+768,645.751,1.54858,0.412032,0.006528,0.253952,0.005152,0.004864,0.005504,0.006912,0.007584,0.115392,0.006144
+769,583.559,1.71362,0.43728,0.007776,0.276896,0.00592,0.00432,0.005984,0.006304,0.00816,0.115776,0.006144
+770,615.847,1.62378,0.389792,0.006752,0.231488,0.00544,0.0048,0.005856,0.006432,0.007648,0.115232,0.006144
+771,673.684,1.48438,0.391168,0.006144,0.231296,0.004224,0.006144,0.005504,0.006784,0.007872,0.11808,0.00512
+772,698.618,1.4314,0.386784,0.006784,0.22528,0.005472,0.004768,0.005696,0.006592,0.007584,0.118624,0.005984
+773,358.92,2.78613,0.41616,0.006432,0.245376,0.004608,0.005216,0.005024,0.007424,0.0192,0.116736,0.006144
+774,628.703,1.59058,0.404928,0.007552,0.245568,0.004928,0.004096,0.006144,0.006144,0.008192,0.116352,0.005952
+775,718.596,1.3916,0.387072,0.006144,0.229376,0.004096,0.005728,0.004512,0.008128,0.007648,0.115296,0.006144
+776,603.596,1.65674,0.397504,0.006336,0.237568,0.005184,0.004864,0.005472,0.007008,0.00752,0.117408,0.006144
+777,581.818,1.71875,0.431264,0.006144,0.274112,0.004416,0.005408,0.004832,0.007488,0.006848,0.115936,0.00608
+778,532.986,1.87622,0.647168,0.006144,0.487424,0.006112,0.0056,0.004672,0.008096,0.007328,0.115648,0.006144
+779,555.089,1.80151,0.391424,0.0064,0.230688,0.004928,0.004224,0.006112,0.006176,0.008192,0.118688,0.006016
+780,647.896,1.54346,0.389472,0.006496,0.229376,0.005792,0.004448,0.005856,0.006432,0.00784,0.117088,0.006144
+781,611.07,1.63647,0.429696,0.007392,0.26704,0.005504,0.004736,0.0056,0.00672,0.007936,0.118688,0.00608
+782,407.846,2.4519,0.724544,0.006144,0.534144,0.0056,0.005024,0.016224,0.007904,0.022976,0.12048,0.006048
+783,659.051,1.51733,0.393216,0.006144,0.233472,0.00576,0.00448,0.005888,0.0064,0.008128,0.117888,0.005056
+784,659.581,1.51611,0.409216,0.006144,0.253344,0.004704,0.004096,0.006144,0.007456,0.00688,0.114304,0.006144
+785,577.064,1.73291,0.440096,0.006752,0.284672,0.005344,0.004896,0.005472,0.006784,0.007232,0.112864,0.00608
+786,650.779,1.53662,0.38912,0.006016,0.231552,0.004096,0.00576,0.00448,0.008192,0.007712,0.115168,0.006144
+787,686.327,1.45703,0.385024,0.0072,0.22576,0.004608,0.005184,0.005056,0.007424,0.006912,0.116736,0.006144
+788,724.443,1.38037,0.383424,0.006496,0.223648,0.004096,0.005728,0.004544,0.00784,0.007648,0.117376,0.006048
+789,585.226,1.70874,0.396704,0.006272,0.23888,0.004832,0.004096,0.006144,0.007744,0.007616,0.115008,0.006112
+790,586.399,1.70532,0.432192,0.006272,0.273984,0.004416,0.005376,0.004864,0.007808,0.007904,0.116384,0.005184
+791,705.477,1.41748,0.38912,0.006144,0.229248,0.004224,0.005568,0.004672,0.007776,0.007648,0.117696,0.006144
+792,476.501,2.09863,0.41168,0.006144,0.245152,0.004704,0.00416,0.00608,0.014336,0.008192,0.11776,0.005152
+793,575.281,1.73828,0.403616,0.00672,0.241792,0.005952,0.004288,0.006144,0.00624,0.008096,0.118336,0.006048
+794,489.542,2.04272,0.404032,0.00672,0.237568,0.005952,0.005472,0.00496,0.007552,0.006784,0.12288,0.006144
+795,619.855,1.61328,0.395264,0.007456,0.230112,0.005696,0.004544,0.006144,0.006144,0.008192,0.120832,0.006144
+796,673.241,1.48535,0.391168,0.006176,0.231392,0.005184,0.004864,0.00544,0.00704,0.007808,0.11712,0.006144
+797,625.917,1.59766,0.38912,0.007328,0.231968,0.004416,0.00544,0.0048,0.007936,0.007712,0.113376,0.006144
+798,564.888,1.77026,0.39504,0.00768,0.234496,0.00592,0.004288,0.00608,0.007232,0.007168,0.11616,0.006016
+799,653.374,1.53052,0.389568,0.006592,0.233056,0.004512,0.005152,0.005088,0.007488,0.006848,0.11472,0.006112
+800,705.477,1.41748,0.388448,0.006144,0.231424,0.004096,0.00576,0.00448,0.007936,0.007616,0.114944,0.006048
+801,602.353,1.66016,0.425568,0.006304,0.259712,0.00448,0.005312,0.004928,0.007648,0.006688,0.12448,0.006016
+802,464.926,2.15088,0.528576,0.006496,0.36288,0.005312,0.004864,0.005504,0.006816,0.007424,0.123296,0.005984
+803,626.491,1.59619,0.395264,0.007232,0.23136,0.004928,0.004288,0.00608,0.006208,0.008192,0.120832,0.006144
+804,709.018,1.4104,0.387296,0.006368,0.227328,0.005536,0.004704,0.005632,0.006656,0.007744,0.117184,0.006144
+805,692.711,1.4436,0.388768,0.006464,0.226432,0.004928,0.00416,0.006144,0.006208,0.008128,0.120224,0.00608
+806,599.093,1.66919,0.40704,0.006624,0.247808,0.004096,0.005856,0.005472,0.006944,0.007456,0.116704,0.00608
+807,514.444,1.94385,0.655776,0.006336,0.493792,0.006144,0.005952,0.005856,0.00672,0.008096,0.116736,0.006144
+808,637.411,1.56885,0.388352,0.006144,0.226976,0.004448,0.005408,0.004832,0.007264,0.00704,0.120224,0.006016
+809,715.959,1.39673,0.382496,0.007264,0.22416,0.005696,0.004544,0.005824,0.006496,0.008032,0.1144,0.00608
+810,584.225,1.71167,0.414752,0.007264,0.250784,0.005952,0.004288,0.006016,0.006272,0.00784,0.120352,0.005984
+811,410.915,2.43359,0.509952,0.007328,0.330592,0.00528,0.004928,0.014368,0.007712,0.006624,0.116736,0.016384
+812,667.645,1.4978,0.393216,0.007488,0.228032,0.005248,0.004832,0.00544,0.006912,0.007392,0.121728,0.006144
+813,611.708,1.63477,0.391264,0.007648,0.22992,0.005792,0.004448,0.00592,0.006368,0.008192,0.117824,0.005152
+814,571.508,1.74976,0.39392,0.006592,0.235872,0.0056,0.00464,0.005728,0.00656,0.007904,0.114976,0.006048
+815,545.551,1.83301,0.651648,0.006464,0.49008,0.006144,0.005824,0.005472,0.007136,0.007648,0.116704,0.006176
+816,644.025,1.55273,0.38832,0.006144,0.229376,0.004096,0.00576,0.00448,0.008192,0.007552,0.116672,0.006048
+817,638.703,1.56567,0.393216,0.006144,0.235552,0.005216,0.004896,0.005472,0.006912,0.007712,0.115168,0.006144
+818,643.216,1.55469,0.392544,0.006144,0.232832,0.004736,0.004096,0.006144,0.007168,0.007168,0.118016,0.00624
+819,618.451,1.61694,0.395264,0.007264,0.236448,0.005408,0.004832,0.005536,0.006752,0.007584,0.115296,0.006144
+820,466.781,2.14233,0.38448,0.006144,0.22688,0.004544,0.005312,0.004928,0.00752,0.006816,0.11632,0.006016
+821,593.279,1.68555,0.397056,0.006144,0.236896,0.004768,0.005344,0.004896,0.007552,0.006784,0.118592,0.00608
+822,550.612,1.81616,0.41376,0.006464,0.249984,0.005696,0.004544,0.005792,0.006496,0.008,0.12048,0.006304
+823,512.32,1.9519,0.659264,0.007488,0.49344,0.004928,0.006144,0.0056,0.006688,0.008192,0.120736,0.006048
+824,679.496,1.47168,0.391936,0.006848,0.228896,0.00464,0.005184,0.005056,0.007232,0.007104,0.120832,0.006144
+825,707.304,1.41382,0.38832,0.006336,0.22528,0.005536,0.004704,0.006144,0.00624,0.008128,0.119872,0.00608
+826,542.373,1.84375,0.401408,0.007616,0.23808,0.00416,0.005664,0.004576,0.00784,0.006592,0.120736,0.006144
+827,616.96,1.62085,0.404064,0.006432,0.237888,0.005728,0.004512,0.005824,0.006464,0.008,0.123072,0.006144
+828,731.951,1.36621,0.389952,0.006752,0.225504,0.005152,0.004864,0.005472,0.006944,0.00752,0.121696,0.006048
+829,644.228,1.55225,0.397312,0.007648,0.226944,0.004928,0.004192,0.006144,0.006144,0.008192,0.126976,0.006144
+830,373.927,2.67432,0.42288,0.007136,0.252992,0.00496,0.004192,0.006144,0.01536,0.0072,0.118784,0.006112
+831,389.835,2.56519,0.442048,0.006144,0.269664,0.004768,0.015392,0.005088,0.007712,0.006656,0.120576,0.006048
+832,504.061,1.98389,0.420288,0.006464,0.258112,0.005536,0.004704,0.005664,0.006624,0.007968,0.120064,0.005152
+833,462.564,2.16187,0.412896,0.006144,0.249856,0.005408,0.004832,0.005568,0.00672,0.007744,0.120576,0.006048
+834,557.886,1.79248,0.399808,0.006592,0.235424,0.004192,0.005824,0.005472,0.007008,0.00752,0.121632,0.006144
+835,475.505,2.10303,0.447808,0.007392,0.281376,0.005504,0.004736,0.0056,0.00672,0.008128,0.122272,0.00608
+836,541.083,1.84814,0.394112,0.006496,0.231136,0.004928,0.004096,0.006144,0.006176,0.008192,0.1208,0.006144
+837,537.674,1.85986,0.445152,0.0064,0.284192,0.00496,0.004192,0.006144,0.006176,0.00816,0.118784,0.006144
+838,642.107,1.55737,0.395264,0.006144,0.23248,0.004928,0.004256,0.006112,0.006176,0.008096,0.120928,0.006144
+839,643.721,1.55347,0.399392,0.007232,0.231808,0.004672,0.005152,0.005088,0.007264,0.008224,0.123776,0.006176
+840,569.047,1.75732,0.38848,0.006144,0.22528,0.004096,0.005824,0.00544,0.006912,0.0064,0.122368,0.006016
+841,386.452,2.58765,0.47328,0.006336,0.29696,0.004096,0.005696,0.004544,0.018048,0.007552,0.123904,0.006144
+842,477.111,2.09595,0.419456,0.006144,0.257056,0.004928,0.004256,0.006048,0.00624,0.008192,0.120288,0.006304
+843,570.474,1.75293,0.400192,0.006464,0.237376,0.0048,0.004096,0.006144,0.007296,0.007072,0.1208,0.006144
+844,562.406,1.77808,0.411392,0.006144,0.241664,0.005888,0.004352,0.006016,0.006272,0.008064,0.126912,0.00608
+845,561.789,1.78003,0.401216,0.006592,0.241056,0.004704,0.004192,0.006048,0.007392,0.006944,0.118144,0.006144
+846,634.252,1.57666,0.39168,0.006464,0.235712,0.005248,0.004896,0.005504,0.006848,0.007552,0.113312,0.006144
+847,698.023,1.43262,0.39376,0.006688,0.228608,0.004864,0.00528,0.00496,0.007488,0.007968,0.12176,0.006144
+848,248.846,4.01855,0.397344,0.007712,0.238048,0.004096,0.005824,0.005536,0.007072,0.007488,0.115392,0.006176
+849,426.045,2.34717,0.483424,0.006432,0.322016,0.004096,0.005792,0.005472,0.007072,0.007552,0.118976,0.006016
+850,427.647,2.33838,0.386752,0.00656,0.231392,0.004128,0.005632,0.004608,0.007456,0.006624,0.114656,0.005696
+851,578.204,1.72949,0.39936,0.006144,0.237568,0.005696,0.004544,0.005792,0.006496,0.008096,0.11888,0.006144
+852,579.267,1.72632,0.398176,0.006528,0.23392,0.005952,0.004288,0.006016,0.006272,0.008192,0.120832,0.006176
+853,516.585,1.93579,0.404224,0.006464,0.23824,0.0056,0.00464,0.005568,0.00672,0.008192,0.122752,0.006048
+854,476.334,2.09937,0.407552,0.007424,0.24384,0.004736,0.005216,0.005024,0.007296,0.007072,0.1208,0.006144
+855,632.294,1.58154,0.397312,0.006144,0.233472,0.00592,0.00432,0.006112,0.006176,0.00816,0.12192,0.005088
+856,656.726,1.52271,0.396576,0.006368,0.231392,0.0056,0.00464,0.00576,0.006528,0.008192,0.12208,0.006016
+857,731.951,1.36621,0.39088,0.006144,0.2272,0.004224,0.005568,0.004672,0.007712,0.006656,0.122624,0.00608
+858,535.915,1.86597,0.414176,0.006816,0.251904,0.005952,0.00544,0.004992,0.00736,0.006976,0.118688,0.006048
+859,579.759,1.72485,0.46816,0.0072,0.3,0.004096,0.00592,0.005472,0.006944,0.007744,0.124672,0.006112
+860,645.853,1.54834,0.391808,0.006464,0.229568,0.004384,0.00544,0.0048,0.007616,0.00672,0.120032,0.006784
+861,757.396,1.32031,0.390912,0.00752,0.223904,0.004096,0.00576,0.00448,0.007808,0.008192,0.123072,0.00608
+862,605.38,1.65186,0.389504,0.006464,0.22736,0.005568,0.004672,0.005696,0.006592,0.007776,0.1192,0.006176
+863,606.905,1.64771,0.438464,0.007968,0.266688,0.005728,0.004512,0.005856,0.006432,0.007968,0.1272,0.006112
+864,561.25,1.78174,0.652896,0.006144,0.488576,0.004992,0.006144,0.005696,0.006688,0.008096,0.120544,0.006016
+865,747.036,1.33862,0.391744,0.006976,0.224832,0.004544,0.005248,0.004992,0.007296,0.00704,0.124768,0.006048
+866,667.318,1.49854,0.3928,0.006208,0.228896,0.004512,0.005856,0.005472,0.00688,0.006368,0.122592,0.006016
+867,688.056,1.45337,0.396928,0.006304,0.229408,0.005536,0.004672,0.005696,0.006592,0.008,0.12464,0.00608
+868,655.57,1.52539,0.411648,0.007712,0.248096,0.004288,0.005536,0.004704,0.00752,0.006848,0.1208,0.006144
+869,697.785,1.43311,0.390016,0.006176,0.22512,0.004928,0.004256,0.006112,0.007296,0.007072,0.12288,0.006176
+870,754.606,1.3252,0.38512,0.00624,0.22528,0.005376,0.004864,0.005504,0.006784,0.007456,0.117472,0.006144
+871,734.84,1.36084,0.384256,0.006144,0.224864,0.004512,0.005312,0.004928,0.00752,0.006816,0.118112,0.006048
+872,692.828,1.44336,0.411072,0.006144,0.250944,0.004928,0.005472,0.004896,0.00768,0.006752,0.118144,0.006112
+873,535.845,1.86621,0.491424,0.006336,0.299424,0.005728,0.004512,0.01616,0.006432,0.024512,0.12224,0.00608
+874,718.596,1.3916,0.393152,0.007392,0.228128,0.004096,0.005792,0.00448,0.007936,0.006368,0.12288,0.00608
+875,735.632,1.35938,0.389152,0.007584,0.225888,0.004096,0.005824,0.005472,0.007008,0.007648,0.119456,0.006176
+876,679.158,1.47241,0.41984,0.007744,0.255904,0.00464,0.005184,0.005056,0.007296,0.007072,0.1208,0.006144
+877,669.609,1.49341,0.397632,0.006464,0.233472,0.00544,0.0048,0.005536,0.006752,0.007936,0.121088,0.006144
+878,747.445,1.33789,0.386784,0.007392,0.224032,0.00528,0.004896,0.005472,0.00688,0.007584,0.1192,0.006048
+879,755.302,1.32397,0.3896,0.00592,0.223776,0.004256,0.005568,0.004672,0.007616,0.00672,0.124928,0.006144
+880,722.399,1.38428,0.38656,0.006144,0.224832,0.004544,0.00528,0.00496,0.007424,0.006912,0.120416,0.006048
+881,678.033,1.47485,0.415488,0.006368,0.247808,0.005824,0.004416,0.006112,0.006176,0.008192,0.124192,0.0064
+882,663.75,1.50659,0.397056,0.007616,0.231424,0.004672,0.005184,0.005056,0.007232,0.007136,0.122688,0.006048
+883,390.058,2.56372,0.39328,0.006208,0.223232,0.005888,0.004352,0.005952,0.006336,0.008064,0.127104,0.006144
+884,704.143,1.42017,0.393216,0.007488,0.227296,0.004832,0.004096,0.006144,0.007168,0.007168,0.122912,0.006112
+885,664.827,1.50415,0.397024,0.006528,0.227296,0.005696,0.004544,0.00576,0.006528,0.007872,0.126784,0.006016
+886,681.985,1.46631,0.398656,0.006144,0.2352,0.004416,0.005408,0.004832,0.007488,0.006848,0.122272,0.006048
+887,743.241,1.34546,0.392608,0.006368,0.22528,0.004096,0.005792,0.004448,0.007872,0.00784,0.124832,0.00608
+888,726.757,1.37598,0.390432,0.006304,0.224352,0.004864,0.004096,0.006144,0.006144,0.008224,0.122848,0.007456
+889,763.894,1.30908,0.38416,0.006144,0.223264,0.005472,0.004736,0.005632,0.006688,0.007968,0.118176,0.00608
+890,631.417,1.58374,0.3984,0.008192,0.23552,0.005216,0.004896,0.005472,0.006816,0.00768,0.11856,0.006048
+891,692.009,1.44507,0.395616,0.006496,0.231328,0.004192,0.005632,0.004608,0.00784,0.007712,0.121664,0.006144
+892,745.812,1.34082,0.38928,0.006464,0.223232,0.005504,0.004704,0.005664,0.006624,0.00784,0.123136,0.006112
+893,540.655,1.84961,0.386144,0.006144,0.223104,0.004224,0.005888,0.00544,0.006976,0.00752,0.1208,0.006048
+894,692.594,1.44385,0.394368,0.006144,0.228544,0.004928,0.004096,0.006144,0.006144,0.008224,0.124064,0.00608
+895,680.851,1.46875,0.41984,0.006144,0.25184,0.00416,0.005664,0.004576,0.00784,0.006496,0.126976,0.006144
+896,698.618,1.4314,0.391296,0.006752,0.229376,0.005152,0.004896,0.005472,0.006848,0.007456,0.119264,0.00608
+897,739.484,1.35229,0.388448,0.006144,0.221184,0.00592,0.00432,0.006016,0.006272,0.008128,0.124384,0.00608
+898,762.614,1.31128,0.3912,0.007232,0.224192,0.004096,0.00576,0.00448,0.007776,0.00656,0.124928,0.006176
+899,720.619,1.3877,0.38912,0.006144,0.223232,0.00544,0.0048,0.005536,0.006752,0.007392,0.12368,0.006144
+900,674.794,1.48193,0.425984,0.0072,0.25904,0.004096,0.005824,0.005472,0.006848,0.006464,0.124896,0.006144
+901,670.267,1.49194,0.39936,0.007392,0.231264,0.004928,0.004224,0.00608,0.006208,0.008096,0.125024,0.006144
+902,753.634,1.3269,0.387072,0.006176,0.2232,0.005664,0.004576,0.00576,0.006528,0.007488,0.121536,0.006144
+903,738.817,1.35352,0.387168,0.006112,0.223936,0.004288,0.005504,0.004736,0.007584,0.006752,0.122208,0.006048
+904,522.649,1.91333,0.388384,0.006304,0.2232,0.00576,0.00448,0.005888,0.0064,0.007776,0.12256,0.006016
+905,601.292,1.66309,0.45056,0.006144,0.285696,0.00496,0.004256,0.006144,0.006144,0.008224,0.122848,0.006144
+906,704.264,1.41992,0.391168,0.006144,0.227328,0.00592,0.00432,0.006048,0.00624,0.008128,0.120896,0.006144
+907,745.541,1.34131,0.3928,0.006208,0.223232,0.005664,0.004576,0.00576,0.006528,0.007712,0.127008,0.006112
+908,751.974,1.32983,0.389376,0.006816,0.223296,0.004096,0.005824,0.004416,0.00768,0.006656,0.124544,0.006048
+909,582.563,1.71655,0.401408,0.008192,0.22848,0.00496,0.004128,0.006144,0.007296,0.00704,0.129024,0.006144
+910,698.023,1.43262,0.409888,0.005984,0.242432,0.00544,0.0048,0.005536,0.006752,0.007328,0.12544,0.006176
+911,761.905,1.3125,0.389216,0.00704,0.223232,0.00528,0.004896,0.00544,0.006816,0.008192,0.12224,0.00608
+912,720.366,1.38818,0.385024,0.006144,0.223136,0.004192,0.005664,0.004576,0.007872,0.006464,0.120832,0.006144
+913,763.609,1.30957,0.395264,0.006144,0.2248,0.004576,0.005248,0.004992,0.007488,0.006848,0.129024,0.006144
+914,594.657,1.68164,0.399392,0.006784,0.227328,0.005184,0.004896,0.005472,0.006944,0.007392,0.129312,0.00608
+915,440.193,2.27173,0.432096,0.006144,0.264416,0.00448,0.005312,0.004928,0.00736,0.006976,0.126496,0.005984
+916,712.224,1.40405,0.394976,0.006368,0.228512,0.004896,0.00416,0.006144,0.006144,0.008064,0.12464,0.006048
+917,724.699,1.37988,0.393216,0.006144,0.22528,0.005344,0.004864,0.00544,0.006912,0.007616,0.125472,0.006144
+918,612.166,1.63354,0.39328,0.006144,0.22688,0.004544,0.005248,0.004992,0.00736,0.006976,0.125984,0.005152
+919,697.548,1.43359,0.403456,0.008096,0.229312,0.004256,0.006144,0.005504,0.006784,0.007904,0.129312,0.006144
+920,750.733,1.33203,0.390208,0.006144,0.222528,0.0048,0.004096,0.006144,0.007456,0.006912,0.126112,0.006016
+921,726.499,1.37646,0.398272,0.006976,0.231552,0.005696,0.004544,0.005792,0.007776,0.006944,0.122848,0.006144
+922,756.977,1.32104,0.389664,0.006688,0.223232,0.005728,0.004512,0.005856,0.006432,0.008096,0.122976,0.006144
+923,628.125,1.59204,0.394624,0.008192,0.227328,0.005376,0.004864,0.005472,0.006816,0.007616,0.122912,0.006048
+924,660.858,1.51318,0.39952,0.008608,0.231072,0.004448,0.005376,0.004864,0.00752,0.006816,0.124768,0.006048
+925,605.738,1.65088,0.391136,0.007264,0.223904,0.004352,0.0056,0.00464,0.007872,0.006464,0.124928,0.006112
+926,543.236,1.84082,0.47728,0.006624,0.2992,0.005216,0.004896,0.00544,0.019008,0.00784,0.123008,0.006048
+927,608.709,1.64282,0.394784,0.00624,0.229376,0.00544,0.0048,0.005536,0.006752,0.007584,0.123008,0.006048
+928,669.39,1.4939,0.395264,0.006176,0.23344,0.005248,0.004864,0.005728,0.00672,0.00816,0.118784,0.006144
+929,721.762,1.3855,0.39536,0.006208,0.224448,0.004928,0.004096,0.006144,0.007168,0.0072,0.129056,0.006112
+930,737.354,1.3562,0.39072,0.006176,0.223456,0.00432,0.005472,0.004768,0.007584,0.006752,0.12608,0.006112
+931,734.708,1.36108,0.405312,0.006464,0.231776,0.005696,0.004544,0.00576,0.006528,0.007968,0.130528,0.006048
+932,644.025,1.55273,0.400608,0.006144,0.229376,0.005376,0.004864,0.005376,0.006848,0.007488,0.129088,0.006048
+933,669.172,1.49438,0.398272,0.007008,0.229152,0.004416,0.005408,0.004832,0.007456,0.00688,0.12704,0.00608
+934,620.324,1.61206,0.396768,0.007456,0.22912,0.004928,0.004256,0.006112,0.006176,0.007936,0.1248,0.005984
+935,401.923,2.48804,0.4792,0.007328,0.282688,0.004896,0.005472,0.020768,0.006528,0.008224,0.137152,0.006144
+936,606.725,1.64819,0.403264,0.006432,0.236768,0.004896,0.005504,0.004736,0.007712,0.007648,0.123584,0.005984
+937,679.834,1.47095,0.399008,0.006304,0.228384,0.004928,0.004256,0.006048,0.00624,0.008192,0.126976,0.00768
+938,669.5,1.49365,0.392832,0.006272,0.227328,0.005664,0.004576,0.005792,0.006496,0.00768,0.122976,0.006048
+939,665.367,1.50293,0.403296,0.006432,0.232736,0.00496,0.004192,0.006144,0.006144,0.008192,0.12848,0.006016
+940,661.072,1.5127,0.397152,0.007776,0.225696,0.004096,0.005824,0.00544,0.006784,0.006528,0.128928,0.00608
+941,570.156,1.75391,0.438944,0.006752,0.266496,0.005152,0.004864,0.005472,0.006976,0.007488,0.129728,0.006016
+942,617.798,1.61865,0.399392,0.006144,0.237344,0.00432,0.005472,0.004768,0.008192,0.007456,0.11952,0.006176
+943,704.506,1.41943,0.395264,0.006144,0.22528,0.005952,0.004288,0.006112,0.006176,0.008096,0.127072,0.006144
+944,295.037,3.3894,0.499072,0.006144,0.335328,0.00464,0.005184,0.005056,0.007296,0.00704,0.122208,0.006176
+945,597.172,1.67456,0.426656,0.006432,0.25376,0.004672,0.005152,0.005088,0.008,0.00752,0.12992,0.006112
+946,703.78,1.4209,0.399392,0.006144,0.227328,0.00544,0.0048,0.0056,0.00672,0.007712,0.129472,0.006176
+947,599.532,1.66797,0.405504,0.006144,0.227264,0.00416,0.005664,0.004608,0.007552,0.006752,0.137216,0.006144
+948,570.474,1.75293,0.44,0.016384,0.258048,0.005248,0.004864,0.005472,0.006944,0.007232,0.12976,0.006048
+949,607.085,1.64722,0.410112,0.006624,0.234528,0.00496,0.004256,0.006048,0.00624,0.008192,0.13312,0.006144
+950,655.57,1.52539,0.405504,0.0072,0.230368,0.004096,0.005728,0.004544,0.008128,0.007424,0.131872,0.006144
+951,690.842,1.44751,0.40448,0.006144,0.228896,0.004576,0.005248,0.004992,0.007328,0.007008,0.13424,0.006048
+952,642.913,1.55542,0.403456,0.007456,0.223968,0.005856,0.004384,0.005952,0.006368,0.008192,0.135136,0.006144
+953,328.442,3.04468,0.548096,0.0064,0.345888,0.00432,0.005472,0.004768,0.007872,0.007616,0.148352,0.017408
+954,659.369,1.5166,0.412896,0.00736,0.236,0.004448,0.005344,0.004896,0.007744,0.006592,0.134528,0.005984
+955,732.082,1.36597,0.402688,0.007328,0.224096,0.005792,0.004448,0.005856,0.006432,0.007968,0.134656,0.006112
+956,506.868,1.9729,0.448544,0.006144,0.272096,0.004384,0.00544,0.0048,0.00752,0.006816,0.135168,0.006176
+957,563.566,1.77441,0.472096,0.006144,0.29696,0.005376,0.004864,0.00544,0.006848,0.007776,0.13264,0.006048
+958,716.71,1.39526,0.394944,0.006464,0.224864,0.004864,0.004096,0.006144,0.006208,0.008128,0.12816,0.006016
+959,632.392,1.5813,0.40976,0.006144,0.229088,0.004384,0.00544,0.0048,0.007872,0.007872,0.138976,0.005184
+960,500.366,1.99854,0.432128,0.006144,0.25312,0.004928,0.014336,0.006144,0.006144,0.008192,0.126976,0.006144
+961,611.252,1.63599,0.405984,0.006624,0.229376,0.00576,0.00448,0.005888,0.0064,0.007776,0.133536,0.006144
+962,344.665,2.90137,0.532832,0.006496,0.356352,0.004096,0.005824,0.005472,0.007008,0.007648,0.133792,0.006144
+963,271.925,3.67749,0.446464,0.006144,0.255168,0.004928,0.022304,0.005472,0.007008,0.007488,0.131232,0.00672
+964,615.57,1.62451,0.421504,0.006432,0.253184,0.0048,0.004384,0.005984,0.006304,0.007936,0.125184,0.007296
+965,699.932,1.42871,0.401408,0.006144,0.227328,0.005344,0.004896,0.00544,0.006752,0.007424,0.131936,0.006144
+966,599.971,1.66675,0.407232,0.006176,0.231168,0.004352,0.005632,0.004608,0.007744,0.006592,0.134976,0.005984
+967,505.554,1.97803,0.43472,0.006816,0.2576,0.004544,0.005248,0.004992,0.007392,0.006944,0.135072,0.006112
+968,600.675,1.66479,0.414208,0.006592,0.23968,0.005376,0.004864,0.00608,0.006208,0.008192,0.131072,0.006144
+969,731.951,1.36621,0.396512,0.006144,0.227232,0.004192,0.005568,0.004672,0.007776,0.007776,0.126848,0.006304
+970,524.322,1.90723,0.403712,0.0064,0.229376,0.005536,0.004704,0.005664,0.006624,0.007808,0.131456,0.006144
+971,540.655,1.84961,0.481664,0.006464,0.292896,0.005472,0.004768,0.00544,0.018432,0.006848,0.135168,0.006176
+972,647.691,1.54395,0.40048,0.006144,0.231424,0.004096,0.005888,0.00544,0.00688,0.006368,0.128256,0.005984
+973,668.298,1.49634,0.400736,0.0072,0.226272,0.004096,0.005728,0.004512,0.007968,0.007424,0.13152,0.006016
+974,688.519,1.45239,0.399008,0.00656,0.228384,0.004928,0.004224,0.006144,0.006144,0.008192,0.128448,0.005984
+975,318.656,3.13818,0.511232,0.006368,0.319488,0.004096,0.005792,0.004448,0.019904,0.008224,0.136864,0.006048
+976,345.829,2.8916,0.630304,0.007488,0.45088,0.01472,0.005792,0.004544,0.007808,0.006432,0.126624,0.006016
+977,481.996,2.07471,0.53248,0.006144,0.356352,0.005856,0.004384,0.005984,0.006304,0.008192,0.13312,0.006144
+978,430.886,2.3208,0.413536,0.0072,0.244416,0.004384,0.00544,0.0048,0.007648,0.006688,0.126976,0.005984
+979,561.25,1.78174,0.4128,0.007232,0.238048,0.004576,0.00528,0.00496,0.008128,0.007648,0.130784,0.006144
+980,642.208,1.55713,0.407168,0.006144,0.23552,0.005888,0.004352,0.006016,0.006272,0.008032,0.128928,0.006016
+981,603.685,1.65649,0.412448,0.006656,0.239904,0.005728,0.004512,0.005824,0.006464,0.007872,0.129376,0.006112
+982,568.652,1.75854,0.401728,0.006464,0.23904,0.004672,0.005152,0.005088,0.007232,0.007136,0.120672,0.006272
+983,640.801,1.56055,0.403808,0.006656,0.229184,0.004288,0.005568,0.004672,0.00784,0.00752,0.131264,0.006816
+984,681.191,1.46802,0.391136,0.00624,0.227328,0.005312,0.004896,0.00544,0.006848,0.007264,0.121792,0.006016
+985,455.263,2.19653,0.391168,0.007168,0.222208,0.006144,0.004096,0.006144,0.0072,0.007136,0.124928,0.006144
+986,526.275,1.90015,0.505856,0.006144,0.329728,0.005632,0.014848,0.006144,0.007456,0.00688,0.12288,0.006144
+987,654.941,1.52686,0.40944,0.007648,0.234048,0.00528,0.004864,0.006048,0.006304,0.008192,0.130816,0.00624
+988,732.475,1.36523,0.389632,0.006496,0.225152,0.004352,0.00544,0.0048,0.007616,0.00672,0.12288,0.006176
+989,308.132,3.24536,0.397888,0.006688,0.227392,0.00576,0.004448,0.005888,0.0064,0.00768,0.12752,0.006112
+990,608.166,1.64429,0.44384,0.006144,0.270368,0.00512,0.01328,0.006144,0.00752,0.006816,0.122368,0.00608
+991,703.78,1.4209,0.399136,0.006368,0.226112,0.004928,0.004256,0.006112,0.006176,0.00816,0.131008,0.006016
+992,516.064,1.93774,0.393536,0.006752,0.227424,0.005312,0.004896,0.005472,0.006848,0.00736,0.123456,0.006016
+993,480.413,2.08154,0.492032,0.006464,0.31936,0.004832,0.004096,0.006144,0.007168,0.007168,0.130752,0.006048
+994,621.548,1.60889,0.391488,0.006464,0.226592,0.004832,0.004096,0.006144,0.007168,0.007104,0.122944,0.006144
+995,598.743,1.67017,0.398944,0.006176,0.227328,0.005664,0.004576,0.00576,0.006528,0.008224,0.128672,0.006016
+996,627.836,1.59277,0.395296,0.006176,0.23104,0.004448,0.005728,0.004512,0.008096,0.007392,0.121728,0.006176
+997,559.945,1.78589,0.425504,0.006144,0.26,0.004192,0.0056,0.00464,0.00784,0.007712,0.123392,0.005984
+998,496.967,2.01221,0.655808,0.006528,0.491552,0.0056,0.004672,0.006144,0.007712,0.006624,0.120832,0.006144
+999,674.905,1.48169,0.395392,0.007168,0.228352,0.004096,0.00576,0.00448,0.008064,0.007584,0.124736,0.005152
+1000,654.836,1.5271,0.390752,0.007584,0.22384,0.0056,0.00464,0.006144,0.006144,0.008192,0.122528,0.00608
+1001,544.174,1.83765,0.432416,0.006656,0.264288,0.004096,0.005856,0.005472,0.006976,0.007552,0.125504,0.006016
+1002,445.605,2.24414,0.4424,0.007296,0.274976,0.004448,0.005376,0.004864,0.00752,0.007904,0.124864,0.005152
+1003,665.908,1.50171,0.395968,0.006624,0.2296,0.005632,0.004608,0.005728,0.00656,0.007968,0.123104,0.006144
+1004,545.116,1.83447,0.393792,0.006784,0.227648,0.0056,0.00464,0.005696,0.006592,0.007648,0.12304,0.006144
+1005,564.187,1.77246,0.465344,0.006432,0.300288,0.004928,0.004192,0.006144,0.007424,0.006944,0.122848,0.006144
+1006,689.446,1.45044,0.396256,0.009056,0.227232,0.00432,0.005504,0.004736,0.00768,0.006656,0.124928,0.006144
+1007,613.449,1.63013,0.39792,0.006592,0.227488,0.005632,0.004608,0.00592,0.0064,0.00816,0.126976,0.006144
+1008,656.515,1.52319,0.401664,0.0064,0.229376,0.005184,0.004864,0.005472,0.00688,0.007648,0.129696,0.006144
+1009,663.965,1.5061,0.40144,0.007584,0.229984,0.005888,0.004352,0.006016,0.006272,0.008192,0.126976,0.006176
+1010,577.145,1.73267,0.421888,0.007648,0.246272,0.004128,0.005664,0.004576,0.007904,0.006432,0.13312,0.006144
+1011,530.914,1.88354,0.405504,0.006176,0.230752,0.004736,0.004096,0.006144,0.007456,0.00688,0.13312,0.006144
+1012,663.535,1.50708,0.40208,0.006432,0.229728,0.005792,0.004448,0.00592,0.006368,0.008128,0.129088,0.006176
+1013,616.403,1.62231,0.408992,0.007552,0.236192,0.00592,0.004288,0.006048,0.00624,0.008224,0.128448,0.00608
+1014,585.477,1.70801,0.414944,0.006176,0.243424,0.005472,0.004896,0.005472,0.006848,0.00784,0.128768,0.006048
+1015,626.971,1.59497,0.40336,0.007648,0.22992,0.005504,0.004736,0.005632,0.006656,0.007968,0.129248,0.006048
+1016,701.851,1.4248,0.397312,0.007328,0.226144,0.005568,0.004672,0.005696,0.006592,0.007744,0.127424,0.006144
+1017,645.344,1.54956,0.396,0.006656,0.22768,0.005184,0.004896,0.005472,0.006944,0.007456,0.125664,0.006048
+1018,576.495,1.73462,0.455904,0.006272,0.28672,0.005216,0.004896,0.005472,0.006752,0.00752,0.127008,0.006048
+1019,588.929,1.698,0.406368,0.006432,0.236128,0.005824,0.004384,0.005952,0.006336,0.008192,0.126976,0.006144
+1020,703.176,1.42212,0.399072,0.006144,0.2304,0.004928,0.004288,0.00592,0.006368,0.008128,0.12688,0.006016
+1021,412.031,2.427,0.409952,0.006368,0.237536,0.005152,0.004896,0.00544,0.00704,0.00784,0.130496,0.005184
+1022,476.667,2.0979,0.441984,0.006528,0.270432,0.004096,0.005728,0.004512,0.007808,0.006688,0.128864,0.007328
+1023,681.758,1.4668,0.397792,0.006624,0.228768,0.004704,0.004096,0.006144,0.00752,0.006848,0.126944,0.006144
+1024,703.538,1.42139,0.391104,0.006272,0.225312,0.005312,0.004896,0.005472,0.006816,0.007808,0.122848,0.006368
+1025,480.921,2.07935,0.499232,0.007424,0.31616,0.005536,0.004704,0.0056,0.006688,0.017984,0.129088,0.006048
+1026,605.38,1.65186,0.411552,0.006144,0.239616,0.004096,0.00576,0.00448,0.008064,0.008032,0.129312,0.006048
+1027,712.596,1.40332,0.40064,0.007232,0.22784,0.004544,0.005248,0.004992,0.007424,0.006944,0.130336,0.00608
+1028,646.261,1.54736,0.401152,0.007552,0.230016,0.005504,0.004736,0.005632,0.006656,0.007744,0.127296,0.006016
+1029,365.421,2.73657,0.403456,0.006176,0.229376,0.004096,0.005824,0.004448,0.00784,0.00752,0.132064,0.006112
+1030,594.571,1.68188,0.42096,0.006144,0.251424,0.004576,0.005248,0.004992,0.007456,0.00688,0.128064,0.006176
+1031,595.695,1.67871,0.401376,0.006688,0.229568,0.005184,0.004896,0.005472,0.006816,0.008288,0.128416,0.006048
+1032,653.478,1.53027,0.401088,0.007392,0.230176,0.005536,0.004704,0.005664,0.006624,0.008,0.126944,0.006048
+1033,617.705,1.6189,0.397344,0.006592,0.229376,0.005536,0.004704,0.005632,0.006656,0.007936,0.124832,0.00608
+1034,573.188,1.74463,0.43008,0.007456,0.260832,0.004096,0.005824,0.00544,0.006944,0.006368,0.126976,0.006144
+1035,661.606,1.51147,0.402848,0.006272,0.2304,0.004768,0.004448,0.005856,0.006432,0.008032,0.130592,0.006048
+1036,705.113,1.41821,0.39936,0.006144,0.22704,0.004384,0.00544,0.0048,0.00752,0.006816,0.131072,0.006144
+1037,676.354,1.47852,0.400064,0.006656,0.223424,0.005888,0.004352,0.006016,0.006304,0.00816,0.13312,0.006144
+1038,335.051,2.98462,0.899392,0.006464,0.718816,0.005536,0.004704,0.006144,0.014336,0.008224,0.128992,0.006176
+1039,648.306,1.54248,0.419648,0.007424,0.24448,0.005472,0.004768,0.005568,0.00672,0.00736,0.131808,0.006048
+1040,686.212,1.45728,0.393856,0.00672,0.225344,0.005728,0.004512,0.006176,0.0072,0.007104,0.124928,0.006144
+1041,535.565,1.86719,0.404992,0.007616,0.231648,0.004448,0.005504,0.004736,0.007744,0.006592,0.13056,0.006144
+1042,594.226,1.68286,0.444416,0.00752,0.275104,0.00576,0.00448,0.00592,0.006368,0.007936,0.125184,0.006144
+1043,674.461,1.48267,0.400928,0.006144,0.229376,0.004096,0.00576,0.00448,0.008032,0.007648,0.129472,0.00592
+1044,657.358,1.52124,0.398336,0.006144,0.229376,0.00528,0.004896,0.005472,0.006752,0.0064,0.127968,0.006048
+1045,585.729,1.70728,0.403392,0.006144,0.229376,0.00528,0.004896,0.005504,0.006848,0.007904,0.13136,0.00608
+1046,385.796,2.59204,0.44256,0.006144,0.274432,0.005408,0.004832,0.005504,0.006784,0.007712,0.12656,0.005184
+1047,484.447,2.06421,0.450336,0.006176,0.2744,0.005184,0.004896,0.005472,0.006944,0.007712,0.133504,0.006048
+1048,592.936,1.68652,0.40752,0.006144,0.235552,0.005568,0.00464,0.005696,0.00784,0.006944,0.129024,0.006112
+1049,535.285,1.86816,0.425984,0.006176,0.255968,0.004096,0.005856,0.005472,0.006912,0.006336,0.129024,0.006144
+1050,414.449,2.41284,0.414144,0.006528,0.245184,0.004832,0.004096,0.006144,0.00624,0.008096,0.126976,0.006048
+1051,604.041,1.65552,0.417728,0.006144,0.24336,0.004448,0.005344,0.004896,0.007648,0.006688,0.13312,0.00608
+1052,628.414,1.59131,0.421696,0.0064,0.249088,0.004864,0.004096,0.006144,0.007392,0.006944,0.130816,0.005952
+1053,568.415,1.75928,0.457664,0.00672,0.286752,0.00448,0.005312,0.00608,0.00704,0.007616,0.127552,0.006112
+1054,376.125,2.65869,0.667936,0.006368,0.500096,0.005888,0.005568,0.004928,0.008032,0.0064,0.124608,0.006048
+1055,638.802,1.56543,0.399552,0.0064,0.233152,0.004704,0.004096,0.006144,0.00736,0.007008,0.124576,0.006112
+1056,568.021,1.7605,0.397184,0.006144,0.229376,0.005504,0.004736,0.005632,0.006656,0.00768,0.125376,0.00608
+1057,562.56,1.77759,0.406432,0.006464,0.23824,0.005696,0.004544,0.00576,0.006528,0.008064,0.125056,0.00608
+1058,676.689,1.47778,0.397024,0.006432,0.229056,0.004544,0.00528,0.00496,0.007264,0.007072,0.1264,0.006016
+1059,706.816,1.41479,0.395808,0.006656,0.226464,0.004928,0.004128,0.006144,0.006144,0.008192,0.126976,0.006176
+1060,658.203,1.51929,0.400512,0.006144,0.227328,0.005856,0.004384,0.006112,0.006208,0.008128,0.130336,0.006016
+1061,558.723,1.78979,0.436992,0.00672,0.26848,0.005152,0.004864,0.005504,0.006976,0.00736,0.125792,0.006144
+1062,488.608,2.04663,0.667136,0.006208,0.495808,0.006048,0.0056,0.004736,0.008128,0.007552,0.126656,0.0064
+1063,717.589,1.39355,0.416768,0.006144,0.24704,0.004864,0.004096,0.006144,0.006176,0.00816,0.128096,0.006048
+1064,393.015,2.54443,0.525504,0.007296,0.340032,0.004928,0.0056,0.004672,0.007744,0.01808,0.130976,0.006176
+1065,534.516,1.87085,0.436384,0.006304,0.25504,0.00496,0.004192,0.006112,0.007392,0.006976,0.13904,0.006368
+1066,498.843,2.00464,0.689472,0.007232,0.517088,0.005984,0.005568,0.0048,0.008224,0.007552,0.126944,0.00608
+1067,630.154,1.58691,0.413568,0.006176,0.225024,0.00432,0.018432,0.006144,0.007456,0.00688,0.133088,0.006048
+1068,620.7,1.61108,0.411648,0.006176,0.24368,0.004096,0.00592,0.00544,0.006976,0.007616,0.1256,0.006144
+1069,557.658,1.79321,0.445824,0.006144,0.268224,0.00416,0.005664,0.004576,0.007712,0.016864,0.1264,0.00608
+1070,643.924,1.55298,0.434176,0.006144,0.253952,0.005824,0.016704,0.005888,0.0064,0.007904,0.125216,0.006144
+1071,687.133,1.45532,0.39328,0.006208,0.22528,0.005152,0.004896,0.005472,0.007008,0.007648,0.125472,0.006144
+1072,357.979,2.79346,0.456704,0.007264,0.284992,0.004704,0.004096,0.006144,0.007296,0.00704,0.129024,0.006144
+1073,558.647,1.79004,0.468672,0.006368,0.279584,0.004928,0.004256,0.016384,0.006144,0.016384,0.128544,0.00608
+1074,651.607,1.53467,0.39936,0.00736,0.231488,0.004864,0.004096,0.006144,0.006272,0.008064,0.12496,0.006112
+1075,676.354,1.47852,0.405184,0.006368,0.234528,0.00496,0.004224,0.00608,0.006208,0.00816,0.128672,0.005984
+1076,489.016,2.04492,0.448512,0.006144,0.280288,0.004384,0.00544,0.0048,0.007552,0.006784,0.126976,0.006144
+1077,518.941,1.927,0.68224,0.006464,0.511552,0.005024,0.006112,0.005472,0.006848,0.008128,0.126624,0.006016
+1078,696.243,1.43628,0.391904,0.006816,0.223424,0.005152,0.004896,0.00544,0.006912,0.00752,0.125696,0.006048
+1079,599.619,1.66772,0.433344,0.006144,0.264192,0.005248,0.004896,0.00544,0.006944,0.00752,0.127008,0.005952
+1080,293.284,3.40967,0.430784,0.006432,0.264,0.004704,0.004096,0.006144,0.0072,0.007136,0.126016,0.005056
+1081,422.835,2.36499,0.436224,0.007232,0.265152,0.005408,0.004832,0.005536,0.006752,0.008128,0.12704,0.006144
+1082,469.24,2.1311,0.411488,0.006144,0.242944,0.004864,0.004096,0.006144,0.006144,0.008192,0.126944,0.006016
+1083,543.524,1.83984,0.41072,0.007488,0.236224,0.00576,0.00448,0.005824,0.006464,0.008192,0.13024,0.006048
+1084,685.867,1.45801,0.396992,0.006464,0.22768,0.005344,0.004896,0.00544,0.006848,0.007776,0.12656,0.005984
+1085,726.112,1.3772,0.407552,0.006144,0.227104,0.00432,0.016384,0.006144,0.007232,0.007104,0.126976,0.006144
+1086,310.209,3.22363,0.393632,0.006528,0.230496,0.004928,0.004192,0.006144,0.006144,0.008192,0.120832,0.006176
+1087,456.837,2.18896,0.449184,0.00672,0.278176,0.004544,0.005248,0.004992,0.007456,0.00688,0.129024,0.006144
+1088,566.293,1.76587,0.41616,0.006496,0.247872,0.00576,0.00448,0.005888,0.0064,0.008128,0.124992,0.006144
+1089,436.813,2.28931,0.41984,0.006144,0.251424,0.004576,0.005248,0.004992,0.00784,0.007584,0.125888,0.006144
+1090,479.289,2.08643,0.471584,0.006432,0.302912,0.004512,0.005312,0.004928,0.007456,0.00688,0.126976,0.006176
+1091,466.834,2.14209,0.413696,0.006144,0.24512,0.004736,0.005152,0.005088,0.007488,0.006976,0.126848,0.006144
+1092,487.619,2.05078,0.408128,0.006496,0.235712,0.00592,0.00432,0.006112,0.006176,0.00816,0.129056,0.006176
+1093,530.776,1.88403,0.450816,0.006432,0.286688,0.004352,0.005472,0.004768,0.007712,0.007648,0.121696,0.006048
+1094,657.675,1.52051,0.404768,0.006144,0.23552,0.005216,0.004896,0.005504,0.006912,0.007456,0.127168,0.005952
+1095,592.593,1.6875,0.400032,0.006592,0.235296,0.004576,0.005216,0.005024,0.007232,0.007136,0.122848,0.006112
+1096,553.963,1.80518,0.407232,0.006144,0.237248,0.004416,0.008192,0.0072,0.006816,0.008224,0.122912,0.00608
+1097,566.059,1.7666,0.447232,0.006624,0.278336,0.004544,0.00528,0.00496,0.00752,0.006816,0.128,0.005152
+1098,483.418,2.0686,0.661664,0.006304,0.49712,0.00464,0.006144,0.005856,0.006432,0.008224,0.120832,0.006112
+1099,647.384,1.54468,0.397312,0.006144,0.231456,0.0056,0.004608,0.005728,0.00656,0.007808,0.123264,0.006144
+1100,495.944,2.01636,0.39936,0.006144,0.236672,0.00496,0.004128,0.006144,0.006144,0.008192,0.120832,0.006144
+1101,563.489,1.77466,0.397856,0.0064,0.23584,0.005088,0.004896,0.005472,0.006816,0.00752,0.11968,0.006144
+1102,622.682,1.60596,0.39312,0.007328,0.227456,0.004832,0.005248,0.004992,0.00752,0.006816,0.122752,0.006176
+1103,513.541,1.94727,0.3904,0.00624,0.227328,0.005632,0.004608,0.00576,0.006528,0.007904,0.120352,0.006048
+1104,551.947,1.81177,0.413216,0.006272,0.245664,0.005728,0.00448,0.006144,0.007168,0.007168,0.124608,0.005984
+1105,562.715,1.7771,0.442112,0.007616,0.266624,0.004288,0.005536,0.004704,0.017504,0.007072,0.12272,0.006048
+1106,659.157,1.51709,0.434944,0.006464,0.262592,0.005248,0.004928,0.005504,0.01504,0.008192,0.120864,0.006112
+1107,713.713,1.40112,0.401376,0.006336,0.235552,0.005184,0.004864,0.005472,0.006752,0.007616,0.123552,0.006048
+1108,441.284,2.26611,0.396544,0.006176,0.22864,0.004832,0.004096,0.006144,0.006144,0.008192,0.126048,0.006272
+1109,484.104,2.06567,0.434432,0.006432,0.267616,0.004736,0.004096,0.006144,0.006144,0.008192,0.124928,0.006144
+1110,637.311,1.56909,0.395008,0.006464,0.22944,0.004096,0.005888,0.005472,0.00688,0.007616,0.123168,0.005984
+1111,699.932,1.42871,0.393056,0.006144,0.226336,0.004928,0.004256,0.006112,0.006176,0.008192,0.124736,0.006176
+1112,500.244,1.99902,0.395264,0.007232,0.228288,0.00528,0.004864,0.005504,0.00688,0.007488,0.123584,0.006144
+1113,597.085,1.6748,0.406848,0.006144,0.239616,0.005568,0.004672,0.005664,0.006624,0.007872,0.124672,0.006016
+1114,659.475,1.51636,0.396672,0.006144,0.227328,0.005728,0.004512,0.006144,0.006144,0.008192,0.124928,0.007552
+1115,696.599,1.43555,0.395488,0.006464,0.225376,0.004096,0.00576,0.00448,0.007968,0.00784,0.127392,0.006112
+1116,565.355,1.7688,0.393216,0.006144,0.226336,0.004928,0.004256,0.006112,0.006176,0.008096,0.125024,0.006144
+1117,549.062,1.82129,0.448736,0.006112,0.281248,0.005888,0.004352,0.006048,0.00624,0.008128,0.124608,0.006112
+1118,471.021,2.12305,0.896448,0.00752,0.723616,0.005632,0.006656,0.006144,0.00736,0.006976,0.126528,0.006016
+1119,610.705,1.63745,0.411744,0.020576,0.228608,0.004864,0.004096,0.006144,0.006272,0.008064,0.126976,0.006144
+1120,499.39,2.00244,0.395776,0.006656,0.229248,0.004224,0.0056,0.00464,0.00784,0.007552,0.123872,0.006144
+1121,365.878,2.73315,0.4128,0.0072,0.23808,0.004576,0.004096,0.006144,0.007264,0.007072,0.132128,0.00624
+1122,647.896,1.54346,0.399392,0.006176,0.232512,0.004928,0.004224,0.006144,0.006144,0.008192,0.124928,0.006144
+1123,668.626,1.49561,0.409344,0.006528,0.22528,0.005184,0.004864,0.020672,0.009984,0.007776,0.122944,0.006112
+1124,520.061,1.92285,0.454656,0.007744,0.289216,0.005472,0.004768,0.005568,0.00672,0.007744,0.12128,0.006144
+1125,517.629,1.93188,0.679904,0.0064,0.49488,0.004832,0.006144,0.005664,0.006624,0.008192,0.140864,0.006304
+1126,676.242,1.47876,0.38384,0.006816,0.219168,0.00432,0.004096,0.006144,0.006208,0.00816,0.122848,0.00608
+1127,505.429,1.97852,0.403296,0.006144,0.229376,0.005472,0.004768,0.005696,0.006592,0.00784,0.130912,0.006496
+1128,558.342,1.79102,0.477184,0.006144,0.298304,0.0048,0.004096,0.006144,0.019616,0.007008,0.124928,0.006144
+1129,475.947,2.10107,0.394112,0.00608,0.224192,0.005984,0.004256,0.00608,0.00624,0.008064,0.127072,0.006144
+1130,606.276,1.64941,0.399616,0.006368,0.230656,0.004864,0.004096,0.006144,0.007168,0.0072,0.126944,0.006176
+1131,501.285,1.99487,0.465856,0.00672,0.28304,0.022496,0.004096,0.006144,0.006144,0.008192,0.122528,0.006496
+1132,606.186,1.64966,0.42608,0.006368,0.260704,0.00512,0.004896,0.005472,0.006944,0.007296,0.123264,0.006016
+1133,568.81,1.75806,0.421952,0.006304,0.252512,0.005792,0.004448,0.00592,0.006368,0.007872,0.12672,0.006016
+1134,639.9,1.56274,0.403456,0.006144,0.2328,0.004768,0.00544,0.0048,0.007456,0.00688,0.129056,0.006112
+1135,536.547,1.86377,0.40144,0.0064,0.229376,0.004096,0.00576,0.00448,0.00784,0.006496,0.130944,0.006048
+1136,543.524,1.83984,0.454112,0.006176,0.272352,0.004096,0.005696,0.004544,0.007904,0.00752,0.139392,0.006432
+1137,482.962,2.07056,0.415744,0.00752,0.244384,0.00512,0.004864,0.00544,0.006976,0.00784,0.127456,0.006144
+1138,594.226,1.68286,0.404352,0.006464,0.233184,0.004768,0.004288,0.00608,0.006208,0.008,0.129216,0.006144
+1139,629.283,1.58911,0.401984,0.006432,0.228928,0.004832,0.005728,0.004512,0.008,0.007584,0.129824,0.006144
+1140,559.028,1.78882,0.423232,0.006144,0.235168,0.004448,0.005408,0.004832,0.020064,0.007744,0.133472,0.005952
+1141,628.028,1.59229,0.417824,0.006144,0.247808,0.0056,0.00464,0.005728,0.00656,0.007808,0.12736,0.006176
+1142,688.403,1.45264,0.391584,0.006464,0.22336,0.00576,0.004448,0.00592,0.006368,0.007808,0.125312,0.006144
+1143,583.559,1.71362,0.393248,0.006144,0.22528,0.0056,0.00464,0.005728,0.00656,0.00816,0.12496,0.006176
+1144,534.307,1.87158,0.450624,0.006176,0.282048,0.004672,0.004096,0.006144,0.00736,0.007008,0.126944,0.006176
+1145,650.572,1.53711,0.3952,0.006144,0.227328,0.004096,0.005824,0.00544,0.007072,0.00752,0.125696,0.00608
+1146,533.959,1.8728,0.397056,0.007456,0.227456,0.004704,0.004096,0.006144,0.007296,0.00704,0.126848,0.006016
+1147,503.07,1.98779,0.39808,0.006432,0.231584,0.004544,0.00528,0.00496,0.007296,0.00704,0.124864,0.00608
+1148,542.086,1.84473,0.491552,0.0064,0.299328,0.005888,0.004352,0.015712,0.006816,0.018368,0.128672,0.006016
+1149,673.241,1.48535,0.397344,0.007616,0.225856,0.004096,0.005888,0.00544,0.00704,0.007552,0.12768,0.006176
+1150,673.463,1.48486,0.39408,0.006496,0.225056,0.004832,0.004096,0.006144,0.007264,0.007072,0.126976,0.006144
+1151,612.349,1.63306,0.392576,0.007264,0.22624,0.006112,0.004096,0.006144,0.0072,0.007168,0.122272,0.00608
+1152,536.688,1.86328,0.44032,0.007584,0.262432,0.004416,0.005376,0.004864,0.007488,0.006848,0.135168,0.006144
+1153,515.22,1.94092,0.685056,0.006272,0.51888,0.0056,0.004768,0.006144,0.007712,0.006656,0.122848,0.006176
+1154,659.157,1.51709,0.390176,0.007264,0.222112,0.005504,0.004736,0.005632,0.006656,0.007552,0.124736,0.005984
+1155,326.453,3.06323,0.561152,0.007296,0.364576,0.004928,0.020512,0.006112,0.006176,0.008192,0.137216,0.006144
+1156,507.936,1.96875,0.462848,0.006144,0.284544,0.004224,0.0056,0.00464,0.018432,0.00784,0.12528,0.006144
+1157,655.046,1.52661,0.398624,0.00736,0.230208,0.004096,0.005888,0.005472,0.00704,0.007648,0.124832,0.00608
+1158,605.469,1.65161,0.392832,0.006592,0.223104,0.004224,0.005824,0.006464,0.008192,0.008192,0.124256,0.005984
+1159,531.327,1.88208,0.4312,0.018432,0.251904,0.00576,0.00448,0.005888,0.0064,0.008096,0.12416,0.00608
+1160,499.512,2.00195,0.669792,0.006144,0.499264,0.0056,0.005088,0.005952,0.00752,0.007008,0.128032,0.005184
+1161,697.548,1.43359,0.413536,0.006432,0.24768,0.004608,0.005216,0.005024,0.00752,0.006816,0.124224,0.006016
+1162,468.704,2.13354,0.401152,0.006848,0.233472,0.004096,0.005728,0.004512,0.008032,0.00784,0.124576,0.006048
+1163,330.963,3.02148,0.44016,0.006144,0.26832,0.005632,0.004576,0.00576,0.006528,0.00784,0.129312,0.006048
+1164,680.851,1.46875,0.395136,0.006528,0.227424,0.004512,0.005312,0.004928,0.007424,0.006944,0.12608,0.005984
+1165,571.588,1.74951,0.397312,0.0072,0.230144,0.00432,0.005856,0.005472,0.007136,0.007552,0.123488,0.006144
+1166,528.653,1.8916,0.429056,0.00656,0.260704,0.005472,0.004768,0.005632,0.006656,0.008064,0.125056,0.006144
+1167,531.603,1.8811,0.679744,0.006208,0.505888,0.006144,0.00592,0.005472,0.00704,0.008,0.129056,0.006016
+1168,643.721,1.55347,0.402272,0.006432,0.22896,0.005056,0.004096,0.006144,0.006176,0.00816,0.131072,0.006176
+1169,513.412,1.94775,0.399552,0.006368,0.226336,0.004928,0.004224,0.006144,0.007424,0.007008,0.130976,0.006144
+1170,572.787,1.74585,0.446464,0.007488,0.272288,0.004896,0.004096,0.006144,0.006144,0.007872,0.131392,0.006144
+1171,434.681,2.30054,0.4448,0.006304,0.266464,0.005792,0.004448,0.016192,0.007456,0.007072,0.125056,0.006016
+1172,588.844,1.69824,0.40048,0.00736,0.230208,0.005728,0.004512,0.005824,0.006464,0.00768,0.126688,0.006016
+1173,557.431,1.79395,0.401344,0.006176,0.229344,0.005792,0.004448,0.00592,0.006368,0.008064,0.129152,0.00608
+1174,552.319,1.81055,0.473216,0.006144,0.29904,0.005824,0.004384,0.005952,0.006336,0.007936,0.132416,0.005184
+1175,625.917,1.59766,0.39808,0.006464,0.227776,0.00528,0.004864,0.005472,0.006912,0.007776,0.127392,0.006144
+1176,637.609,1.56836,0.395232,0.006624,0.22528,0.005344,0.004864,0.005472,0.006848,0.008096,0.126592,0.006112
+1177,506.868,1.9729,0.413696,0.006144,0.234784,0.004832,0.004096,0.006144,0.021856,0.006816,0.12288,0.006144
+1178,565.043,1.76978,0.499232,0.0064,0.321312,0.00432,0.005504,0.004736,0.007552,0.018176,0.125216,0.006016
+1179,467.687,2.13818,0.397696,0.006528,0.226304,0.004928,0.004288,0.00608,0.006208,0.008192,0.129056,0.006112
+1180,577.227,1.73242,0.404864,0.0072,0.234464,0.005184,0.004864,0.00544,0.006912,0.007584,0.1272,0.006016
+1181,578.286,1.72925,0.417792,0.01952,0.236416,0.00416,0.005664,0.004576,0.007904,0.007488,0.12592,0.006144
+1182,608.98,1.64209,0.405504,0.006144,0.231424,0.004096,0.005696,0.004544,0.00784,0.006496,0.13312,0.006144
+1183,652.749,1.53198,0.39488,0.00624,0.22928,0.005792,0.004448,0.006048,0.00624,0.008192,0.12256,0.00608
+1184,651.089,1.53589,0.401632,0.006464,0.228,0.005536,0.004704,0.005664,0.006656,0.007744,0.13072,0.006144
+1185,549.43,1.82007,0.413696,0.006144,0.243712,0.00576,0.00448,0.005824,0.006464,0.008096,0.127072,0.006144
+1186,578.286,1.72925,0.426176,0.006336,0.23552,0.00592,0.005504,0.00496,0.007328,0.023424,0.13104,0.006144
+1187,625.534,1.59863,0.39552,0.0064,0.22528,0.005696,0.004544,0.005824,0.006464,0.008032,0.127136,0.006144
+1188,697.785,1.43311,0.4096,0.006144,0.23552,0.005632,0.004608,0.005792,0.006496,0.007776,0.131168,0.006464
+1189,356.608,2.8042,0.495648,0.006144,0.290368,0.0184,0.004576,0.006144,0.006144,0.021888,0.135808,0.006176
+1190,553.813,1.80566,0.440192,0.006144,0.270336,0.004096,0.005728,0.004512,0.007872,0.006464,0.128992,0.006048
+1191,649.849,1.53882,0.414048,0.006592,0.243712,0.004096,0.00576,0.006048,0.006624,0.008192,0.12688,0.006144
+1192,626.395,1.59644,0.397312,0.007296,0.224128,0.005728,0.004512,0.006144,0.006304,0.008032,0.129024,0.006144
+1193,633.467,1.57861,0.401824,0.0064,0.230688,0.004928,0.00416,0.006144,0.007264,0.007104,0.128992,0.006144
+1194,556.219,1.79785,0.45104,0.006624,0.274464,0.0056,0.004608,0.005824,0.006464,0.008192,0.13312,0.006144
+1195,633.958,1.57739,0.403136,0.006144,0.231424,0.005728,0.004512,0.005888,0.006432,0.00816,0.128768,0.00608
+1196,722.144,1.38477,0.3968,0.006144,0.224864,0.004512,0.00528,0.004992,0.007328,0.006976,0.130624,0.00608
+1197,365.584,2.73535,0.423744,0.006144,0.251904,0.005824,0.004416,0.005952,0.006336,0.008192,0.128928,0.006048
+1198,399.961,2.50024,0.54272,0.016288,0.32368,0.016384,0.006016,0.00544,0.02064,0.006816,0.129024,0.018432
+1199,611.07,1.63647,0.41136,0.006432,0.239328,0.004384,0.005376,0.004864,0.007552,0.006784,0.130592,0.006048
+1200,500.366,1.99854,0.412768,0.0072,0.237952,0.004704,0.005152,0.005088,0.006144,0.008096,0.132352,0.00608
+1201,526.343,1.8999,0.419104,0.006144,0.248832,0.004928,0.004288,0.00608,0.006208,0.008192,0.128384,0.006048
+1202,546.935,1.82837,0.403456,0.006144,0.232928,0.00464,0.005184,0.005056,0.0072,0.007136,0.129024,0.006144
+1203,392.525,2.54761,0.409056,0.006304,0.239616,0.005472,0.004768,0.005568,0.00672,0.007616,0.126944,0.006048
+1204,276.234,3.62012,0.433632,0.00768,0.260608,0.005184,0.004896,0.00544,0.00688,0.00736,0.129504,0.00608
+1205,566.137,1.76636,0.436224,0.006144,0.264192,0.005184,0.004896,0.005504,0.006912,0.007744,0.129504,0.006144
+1206,443.29,2.25586,0.427232,0.006144,0.256032,0.005888,0.00432,0.006016,0.006304,0.007968,0.128576,0.005984
+1207,528.789,1.89111,0.41968,0.0064,0.2496,0.004928,0.004096,0.006144,0.006336,0.008,0.128096,0.00608
+1208,664.288,1.50537,0.40592,0.006432,0.229952,0.005824,0.004416,0.00592,0.006368,0.00816,0.132768,0.00608
+1209,640,1.5625,0.401408,0.006144,0.228832,0.00464,0.005184,0.005056,0.007296,0.007072,0.13104,0.006144
+1210,458.268,2.18213,0.421888,0.006144,0.2448,0.004928,0.004224,0.006144,0.00736,0.006976,0.135168,0.006144
+1211,595.955,1.67798,0.427936,0.007232,0.242624,0.005696,0.004544,0.006144,0.0072,0.007168,0.141184,0.006144
+1212,586.399,1.70532,0.423744,0.006464,0.24176,0.005824,0.004416,0.005888,0.0064,0.008192,0.138784,0.006016
+1213,601.292,1.66309,0.41984,0.00752,0.234144,0.00592,0.00432,0.00608,0.006208,0.008192,0.141312,0.006144
+1214,622.492,1.60645,0.419008,0.007392,0.235808,0.004608,0.005344,0.004896,0.007584,0.006752,0.14064,0.005984
+1215,631.709,1.58301,0.433568,0.006304,0.251552,0.004448,0.005408,0.004832,0.007776,0.00768,0.139488,0.00608
+1216,615.2,1.62549,0.42192,0.008192,0.2352,0.004416,0.005408,0.004832,0.007584,0.006752,0.14336,0.006176
+1217,636.124,1.57202,0.408448,0.0064,0.225952,0.005728,0.00448,0.005952,0.006336,0.008064,0.140448,0.005088
+1218,607.175,1.64697,0.441344,0.006496,0.255776,0.004864,0.004096,0.006144,0.018176,0.0064,0.134144,0.005248
+1219,602.707,1.65918,0.442368,0.006144,0.26624,0.0056,0.00464,0.005696,0.006592,0.007968,0.133344,0.006144
+1220,485.366,2.0603,0.671392,0.006144,0.491296,0.005568,0.004896,0.006144,0.007392,0.006944,0.136896,0.006112
+1221,356.888,2.802,0.40064,0.006144,0.229088,0.004384,0.00544,0.0048,0.007488,0.006848,0.130432,0.006016
+1222,477.501,2.09424,0.485376,0.006144,0.301056,0.005664,0.014816,0.006144,0.007424,0.006944,0.13104,0.006144
+1223,635.433,1.57373,0.401952,0.0064,0.229696,0.0056,0.004608,0.00576,0.006528,0.008192,0.129024,0.006144
+1224,673.02,1.48584,0.425472,0.007232,0.248416,0.004448,0.005376,0.004864,0.007744,0.007808,0.133472,0.006112
+1225,579.677,1.7251,0.395616,0.006464,0.223104,0.004224,0.005568,0.004672,0.008096,0.00768,0.129632,0.006176
+1226,510.978,1.95703,0.505856,0.006144,0.319488,0.00576,0.00448,0.005824,0.015744,0.007104,0.1352,0.006112
+1227,567.785,1.76123,0.405184,0.0072,0.235488,0.004928,0.004288,0.005952,0.006336,0.008192,0.126784,0.006016
+1228,691.425,1.44629,0.418816,0.006784,0.223648,0.005408,0.0048,0.005504,0.022656,0.008,0.135872,0.006144
+1229,581.818,1.71875,0.397408,0.006816,0.227296,0.004352,0.005472,0.006048,0.006816,0.007488,0.127008,0.006112
+1230,293.957,3.40186,0.509952,0.00736,0.323744,0.004768,0.005184,0.005056,0.00736,0.019264,0.131072,0.006144
+1231,602.619,1.65942,0.415872,0.007552,0.242304,0.005312,0.004928,0.005632,0.006656,0.008192,0.130112,0.005184
+1232,564.576,1.77124,0.409728,0.007712,0.231904,0.005408,0.004832,0.005504,0.006784,0.007456,0.134944,0.005184
+1233,477.891,2.09253,0.411264,0.006432,0.239584,0.004256,0.005536,0.004704,0.007744,0.007648,0.12928,0.00608
+1234,586.148,1.70605,0.434688,0.006496,0.250016,0.005664,0.015936,0.005024,0.00784,0.006496,0.131072,0.006144
+1235,607.175,1.64697,0.421888,0.007296,0.233984,0.00448,0.006112,0.0056,0.00672,0.008,0.143552,0.006144
+1236,526.614,1.89893,0.41376,0.006528,0.233984,0.004192,0.005632,0.004608,0.00768,0.006656,0.138464,0.006016
+1237,563.954,1.77319,0.416864,0.006144,0.239392,0.00432,0.005472,0.004768,0.00752,0.00848,0.134752,0.006016
+1238,471.781,2.11963,0.520512,0.006688,0.329824,0.005376,0.0048,0.005472,0.014752,0.007552,0.140064,0.005984
+1239,603.685,1.65649,0.40144,0.006176,0.227296,0.005312,0.004896,0.005504,0.006784,0.007904,0.13152,0.006048
+1240,554.713,1.80273,0.444416,0.008096,0.26592,0.004512,0.005152,0.005088,0.007328,0.007008,0.1352,0.006112
+1241,595.089,1.68042,0.4504,0.006144,0.270336,0.005376,0.004864,0.005696,0.006592,0.007872,0.13744,0.00608
+1242,586.315,1.70557,0.411648,0.007552,0.232064,0.00528,0.004864,0.00544,0.006848,0.00752,0.135936,0.006144
+1243,623.061,1.60498,0.417504,0.006496,0.231712,0.005216,0.005024,0.005632,0.006656,0.007904,0.142784,0.00608
+1244,601.91,1.66138,0.420576,0.006784,0.23968,0.005184,0.004864,0.00544,0.00688,0.00768,0.137888,0.006176
+1245,537.956,1.85889,0.425984,0.022144,0.235648,0.004352,0.005472,0.004768,0.007584,0.006752,0.13312,0.006144
+1246,556.068,1.79834,0.417376,0.006272,0.237568,0.005376,0.004864,0.005504,0.006816,0.007744,0.137216,0.006016
+1247,426.667,2.34375,0.442304,0.0072,0.250848,0.005408,0.004832,0.005504,0.006784,0.008192,0.147072,0.006464
+1248,454.858,2.19849,0.444,0.006144,0.26624,0.005216,0.004928,0.005472,0.006912,0.007424,0.135296,0.006368
+1249,600.322,1.66577,0.418144,0.0064,0.237664,0.00592,0.00432,0.006048,0.00624,0.008192,0.137216,0.006144
+1250,676.019,1.47925,0.4096,0.007424,0.229856,0.004384,0.00544,0.0048,0.00752,0.006976,0.137056,0.006144
+1251,609.705,1.64014,0.411968,0.006592,0.231456,0.004192,0.005632,0.004608,0.007744,0.006624,0.139072,0.006048
+1252,503.503,1.98608,0.476384,0.007264,0.268352,0.004928,0.016416,0.005568,0.024192,0.008224,0.135296,0.006144
+1253,620.418,1.61182,0.411488,0.006176,0.233504,0.005632,0.004576,0.005792,0.006496,0.007904,0.135264,0.006144
+1254,564.966,1.77002,0.413696,0.007712,0.23184,0.00416,0.005696,0.0056,0.00688,0.00752,0.138144,0.006144
+1255,503.565,1.98584,0.437696,0.006144,0.26624,0.005312,0.004896,0.00544,0.00688,0.00752,0.129248,0.006016
+1256,445.072,2.24683,0.418048,0.0064,0.245376,0.00448,0.00544,0.0048,0.00752,0.006816,0.131072,0.006144
+1257,523.785,1.90918,0.45696,0.020832,0.263776,0.004512,0.005888,0.005472,0.007072,0.00768,0.13568,0.006048
+1258,574.716,1.73999,0.436704,0.006496,0.258176,0.005408,0.004832,0.005504,0.006816,0.007616,0.135712,0.006144
+1259,623.915,1.60278,0.421408,0.006144,0.247808,0.005248,0.004896,0.005472,0.006912,0.007456,0.131456,0.006016
+1260,555.315,1.80078,0.423968,0.006144,0.249344,0.004608,0.005216,0.005024,0.007232,0.007104,0.13312,0.006176
+1261,458.576,2.18066,0.681984,0.007424,0.5064,0.005504,0.004992,0.006048,0.00736,0.007072,0.13104,0.006144
+1262,639.5,1.56372,0.418816,0.007264,0.236032,0.004512,0.005888,0.00544,0.007104,0.007456,0.139072,0.006048
+1263,581.405,1.71997,0.401024,0.00768,0.227072,0.004864,0.004096,0.006144,0.007264,0.007072,0.13072,0.006112
+1264,360.849,2.77124,0.568128,0.006496,0.376832,0.004576,0.014336,0.006144,0.0072,0.007136,0.139296,0.006112
+1265,563.489,1.77466,0.41504,0.00736,0.239616,0.004928,0.004096,0.006144,0.007232,0.007136,0.132576,0.005952
+1266,632.196,1.58179,0.411392,0.006144,0.23296,0.004608,0.005216,0.005024,0.008096,0.007552,0.135776,0.006016
+1267,586.148,1.70605,0.415616,0.00624,0.23952,0.005728,0.004512,0.006144,0.006144,0.008192,0.133088,0.006048
+1268,531.948,1.87988,0.430336,0.0064,0.24576,0.005728,0.004512,0.00592,0.006368,0.008,0.141504,0.006144
+1269,618.357,1.61719,0.411744,0.00624,0.231424,0.005888,0.004352,0.006048,0.00624,0.008128,0.13728,0.006144
+1270,671.365,1.4895,0.411872,0.0064,0.225248,0.005376,0.004864,0.005472,0.006816,0.007488,0.144064,0.006144
+1271,650.985,1.53613,0.426528,0.006656,0.235232,0.004384,0.00544,0.0048,0.007552,0.023168,0.13312,0.006176
+1272,385.615,2.59326,0.522688,0.006592,0.329792,0.005888,0.004288,0.014336,0.008096,0.007488,0.140064,0.006144
+1273,618.078,1.61792,0.397632,0.006432,0.227072,0.004384,0.00544,0.0048,0.007712,0.007776,0.127872,0.006144
+1274,584.809,1.70996,0.407232,0.006144,0.230944,0.004576,0.005216,0.005024,0.007232,0.007104,0.134944,0.006048
+1275,606.186,1.64966,0.405504,0.006144,0.233024,0.004544,0.00528,0.00496,0.007328,0.007008,0.131072,0.006144
+1276,509.01,1.9646,0.676992,0.007232,0.49376,0.004896,0.006112,0.005696,0.006592,0.008096,0.13856,0.006048
+1277,664.827,1.50415,0.407552,0.006144,0.229376,0.005184,0.004864,0.005472,0.006784,0.006368,0.137216,0.006144
+1278,688.519,1.45239,0.401568,0.006304,0.228768,0.004704,0.00512,0.00512,0.007232,0.007104,0.131104,0.006112
+1279,555.993,1.79858,0.434144,0.006144,0.23552,0.005152,0.004864,0.0248,0.00768,0.006688,0.137184,0.006112
+1280,584.058,1.71216,0.42512,0.006144,0.249856,0.005728,0.004512,0.005824,0.006464,0.007936,0.132672,0.005984
+1281,332.198,3.01025,0.443456,0.006144,0.255904,0.005536,0.005888,0.005056,0.00816,0.00768,0.141856,0.007232
+1282,501.899,1.99243,0.447616,0.006304,0.275776,0.00464,0.005184,0.005056,0.007232,0.007136,0.130272,0.006016
+1283,576.495,1.73462,0.40592,0.006432,0.235136,0.004608,0.005184,0.005056,0.007584,0.008224,0.127552,0.006144
+1284,704.264,1.41992,0.398912,0.006144,0.22736,0.005696,0.004512,0.005824,0.006464,0.007616,0.129248,0.006048
+1285,662.14,1.51025,0.40416,0.006528,0.231328,0.004512,0.005312,0.004928,0.00736,0.007008,0.13104,0.006144
+1286,555.54,1.80005,0.409792,0.00624,0.233472,0.005152,0.004896,0.005472,0.006848,0.007584,0.134944,0.005184
+1287,611.617,1.63501,0.403616,0.006304,0.230752,0.004768,0.004096,0.006144,0.007232,0.007104,0.131072,0.006144
+1288,646.873,1.5459,0.406144,0.006176,0.230208,0.004096,0.005856,0.005504,0.006976,0.007456,0.133888,0.005984
+1289,660.965,1.51294,0.39904,0.006528,0.227328,0.004096,0.005728,0.004512,0.008,0.007584,0.129152,0.006112
+1290,330.536,3.02539,0.457344,0.006464,0.282944,0.00576,0.00448,0.005888,0.0064,0.007776,0.131488,0.006144
+1291,524.456,1.90674,0.456992,0.00656,0.270336,0.004096,0.005728,0.0168,0.008192,0.008192,0.131072,0.006016
+1292,647.18,1.54517,0.404608,0.006464,0.230048,0.005728,0.004512,0.005824,0.006464,0.008096,0.132288,0.005184
+1293,698.142,1.43237,0.397504,0.006176,0.22528,0.004096,0.005792,0.004448,0.008128,0.007552,0.130848,0.005184
+1294,603.685,1.65649,0.413888,0.006656,0.237472,0.005472,0.004864,0.005472,0.006752,0.007456,0.133728,0.006016
+1295,590.457,1.6936,0.412512,0.0064,0.236128,0.004096,0.006144,0.00576,0.006528,0.008192,0.13312,0.006144
+1296,695.652,1.4375,0.413664,0.007744,0.227776,0.005344,0.004864,0.00544,0.006912,0.00816,0.14112,0.006304
+1297,651.089,1.53589,0.407552,0.006144,0.231424,0.004096,0.00576,0.00448,0.008192,0.008192,0.13312,0.006144
+1298,581.653,1.71924,0.420064,0.006368,0.239616,0.005568,0.004672,0.00576,0.006528,0.007936,0.137472,0.006144
+1299,449.221,2.22607,0.59296,0.00752,0.401344,0.004832,0.004096,0.006144,0.006144,0.008192,0.131072,0.023616
+1300,627.547,1.59351,0.413856,0.006144,0.231424,0.005216,0.005024,0.005568,0.00672,0.00768,0.140896,0.005184
+1301,631.125,1.58447,0.41088,0.006144,0.231424,0.005408,0.004832,0.005536,0.006752,0.008032,0.136704,0.006048
+1302,584.141,1.71191,0.414528,0.006976,0.229376,0.006144,0.004096,0.006144,0.00736,0.006976,0.141312,0.006144
+1303,544.03,1.83813,0.451616,0.007584,0.270944,0.005632,0.004608,0.00576,0.00656,0.008064,0.136384,0.00608
+1304,658.945,1.51758,0.414976,0.008192,0.232512,0.004928,0.004224,0.006144,0.007392,0.006976,0.138592,0.006016
+1305,708.038,1.41235,0.40448,0.00688,0.223424,0.005792,0.004416,0.005952,0.006368,0.00816,0.138336,0.005152
+1306,540.369,1.85059,0.414496,0.006784,0.229408,0.004224,0.005568,0.004672,0.007712,0.006624,0.14336,0.006144
+1307,581.901,1.71851,0.416256,0.006432,0.237504,0.004384,0.005408,0.004832,0.00768,0.006656,0.137216,0.006144
+1308,490.245,2.03979,0.411296,0.007488,0.228032,0.005408,0.004832,0.005504,0.006784,0.007488,0.139744,0.006016
+1309,621.737,1.6084,0.421568,0.006368,0.243008,0.004928,0.004096,0.006144,0.006272,0.008096,0.136576,0.00608
+1310,561.173,1.78198,0.438304,0.007776,0.250272,0.005536,0.004704,0.005664,0.006624,0.007712,0.14384,0.006176
+1311,571.827,1.74878,0.438656,0.006432,0.25664,0.005216,0.004896,0.005472,0.006944,0.008032,0.138976,0.006048
+1312,628.317,1.59155,0.409728,0.006528,0.229376,0.005408,0.004832,0.005504,0.006784,0.007712,0.137504,0.00608
+1313,682.212,1.46582,0.40688,0.007296,0.228224,0.006144,0.005152,0.005088,0.007392,0.006944,0.134496,0.006144
+1314,676.577,1.47803,0.409248,0.006208,0.2272,0.004224,0.005568,0.004672,0.007552,0.006784,0.139264,0.007776
+1315,575.2,1.73853,0.432128,0.007584,0.252512,0.005888,0.004352,0.00608,0.006208,0.008192,0.135168,0.006144
+1316,601.999,1.66113,0.423264,0.007168,0.238592,0.005888,0.004352,0.006144,0.006144,0.008192,0.140576,0.006208
+1317,388.762,2.57227,0.402336,0.006656,0.229536,0.005472,0.004864,0.005696,0.006752,0.008096,0.12912,0.006144
+1318,373.927,2.67432,0.456864,0.006144,0.28448,0.004288,0.005504,0.004736,0.00752,0.006816,0.132192,0.005184
+1319,573.429,1.7439,0.4152,0.006144,0.237472,0.004192,0.0056,0.00464,0.007712,0.006624,0.136768,0.006048
+1320,641.002,1.56006,0.404064,0.006464,0.230784,0.00496,0.00416,0.006144,0.006144,0.008224,0.13104,0.006144
+1321,585.477,1.70801,0.413664,0.006688,0.229696,0.004096,0.005984,0.00544,0.007008,0.007776,0.140864,0.006112
+1322,504.496,1.98218,0.506336,0.006432,0.321152,0.004672,0.005152,0.005088,0.015648,0.007968,0.13408,0.006144
+1323,633.565,1.57837,0.41584,0.006208,0.23552,0.004096,0.005856,0.005504,0.007008,0.00752,0.137952,0.006176
+1324,635.926,1.57251,0.409632,0.00752,0.230048,0.004096,0.00592,0.00544,0.006912,0.007552,0.135968,0.006176
+1325,311.578,3.20947,0.463456,0.006592,0.28928,0.004064,0.005632,0.004608,0.008032,0.007456,0.131744,0.006048
+1326,471.346,2.12158,0.470688,0.007296,0.295808,0.005376,0.004864,0.005664,0.006624,0.007648,0.131296,0.006112
+1327,516.715,1.9353,0.420416,0.0064,0.245312,0.004928,0.004096,0.006144,0.007424,0.006912,0.13312,0.00608
+1328,532.363,1.87842,0.412768,0.006144,0.237568,0.005472,0.004768,0.005536,0.006752,0.007904,0.132672,0.005952
+1329,501.285,1.99487,0.452928,0.0064,0.276544,0.005504,0.004736,0.0056,0.00672,0.007776,0.133536,0.006112
+1330,463.506,2.15747,0.680448,0.006176,0.504672,0.005632,0.004608,0.006144,0.007712,0.006656,0.132832,0.006016
+1331,637.51,1.5686,0.415744,0.006272,0.232768,0.004672,0.005376,0.004864,0.00768,0.007744,0.140224,0.006144
+1332,295.101,3.38867,0.466528,0.006432,0.29216,0.0048,0.004096,0.006144,0.006144,0.008192,0.132544,0.006016
+1333,477.946,2.09229,0.44816,0.007424,0.264992,0.005248,0.004896,0.005472,0.00688,0.007904,0.139264,0.00608
+1334,584.058,1.71216,0.415744,0.006432,0.242912,0.004928,0.004256,0.00608,0.006208,0.008192,0.130688,0.006048
+1335,546.279,1.83057,0.422496,0.006688,0.23968,0.00544,0.0048,0.005568,0.006752,0.008096,0.139328,0.006144
+1336,522.782,1.91284,0.452,0.007328,0.27328,0.00576,0.004448,0.00592,0.006368,0.007872,0.134976,0.006048
+1337,550.242,1.81738,0.415232,0.007584,0.236128,0.005728,0.004512,0.005856,0.006432,0.007904,0.13504,0.006048
+1338,670.706,1.49097,0.417184,0.00624,0.237568,0.005632,0.004608,0.00576,0.006528,0.007712,0.136928,0.006208
+1339,416.811,2.39917,0.52848,0.00656,0.31744,0.006144,0.01952,0.005056,0.007648,0.00672,0.14128,0.018112
+1340,482.45,2.07275,0.445152,0.006496,0.27072,0.005408,0.004832,0.005504,0.006784,0.00736,0.131904,0.006144
+1341,573.911,1.74243,0.430304,0.006368,0.251904,0.005856,0.004384,0.005984,0.00736,0.007136,0.135168,0.006144
+1342,500.978,1.99609,0.416288,0.006496,0.241216,0.004736,0.004096,0.006144,0.007584,0.006752,0.13312,0.006144
+1343,461.365,2.16748,0.48064,0.006496,0.301056,0.004096,0.005792,0.005536,0.007008,0.007648,0.136896,0.006112
+1344,513.476,1.94751,0.428032,0.00752,0.2496,0.00496,0.00416,0.006144,0.006144,0.008128,0.135232,0.006144
+1345,491.422,2.03491,0.43008,0.006368,0.247584,0.005504,0.004736,0.005632,0.006656,0.007744,0.139712,0.006144
+1346,387.219,2.58252,0.440416,0.007296,0.264128,0.00496,0.004192,0.006112,0.006176,0.008192,0.134176,0.005184
+1347,377.303,2.65039,0.529184,0.006432,0.346624,0.005312,0.004736,0.00544,0.006944,0.007456,0.140096,0.006144
+1348,509.96,1.96094,0.426304,0.006464,0.24544,0.004416,0.00544,0.0048,0.007456,0.00688,0.139264,0.006144
+1349,452.647,2.20923,0.45568,0.006176,0.276448,0.004096,0.00592,0.00544,0.006336,0.006912,0.138368,0.005984
+1350,531.879,1.88013,0.418656,0.006944,0.243776,0.004096,0.005728,0.004512,0.007872,0.006464,0.13312,0.006144
+1351,579.924,1.72437,0.426336,0.006432,0.24,0.004256,0.005568,0.006048,0.006816,0.00784,0.14336,0.006016
+1352,415.205,2.40845,0.4376,0.006176,0.258048,0.005408,0.0048,0.005536,0.006752,0.008032,0.1368,0.006048
+1353,542.588,1.84302,0.438592,0.006464,0.256,0.005184,0.004896,0.005472,0.006976,0.00752,0.14,0.00608
+1354,538.735,1.8562,0.423936,0.006304,0.24576,0.004096,0.00576,0.00448,0.007808,0.006688,0.136928,0.006112
+1355,502.7,1.98926,0.423936,0.006144,0.237568,0.005344,0.004896,0.005504,0.006784,0.008096,0.14336,0.00624
+1356,509.01,1.9646,0.476032,0.006464,0.286816,0.004576,0.005248,0.004992,0.007392,0.019232,0.1352,0.006112
+1357,487.329,2.052,0.49936,0.006144,0.303104,0.005504,0.004736,0.005632,0.018624,0.008064,0.141504,0.006048
+1358,517.172,1.93359,0.428256,0.006368,0.247808,0.005632,0.004608,0.00576,0.006528,0.007744,0.137664,0.006144
+1359,442.572,2.25952,0.499712,0.006144,0.303104,0.004096,0.005792,0.004448,0.018016,0.007968,0.144192,0.005952
+1360,529.062,1.89014,0.429952,0.006688,0.24304,0.004832,0.004096,0.006144,0.007264,0.007072,0.144768,0.006048
+1361,417.023,2.39795,0.422912,0.00736,0.232256,0.005536,0.004704,0.005824,0.006464,0.008128,0.14656,0.00608
+1362,493.553,2.02612,0.430784,0.006496,0.247712,0.004544,0.005248,0.004992,0.007296,0.00704,0.141312,0.006144
+1363,584.141,1.71191,0.425984,0.006144,0.241024,0.004736,0.004096,0.006144,0.007296,0.00704,0.14336,0.006144
+1364,672.137,1.48779,0.405792,0.006528,0.227776,0.005472,0.004768,0.005568,0.00672,0.008096,0.134848,0.006016
+1365,638.603,1.56592,0.417728,0.006656,0.23376,0.005728,0.004512,0.005824,0.006464,0.008192,0.140544,0.006048
+1366,585.394,1.70825,0.405472,0.006144,0.231424,0.005344,0.004864,0.005504,0.006816,0.007936,0.131328,0.006112
+1367,508.441,1.9668,0.437312,0.006208,0.257728,0.004352,0.005472,0.004768,0.00752,0.006816,0.1384,0.006048
+1368,531.12,1.88281,0.407936,0.006464,0.234528,0.004928,0.004288,0.00608,0.00752,0.006912,0.131136,0.00608
+1369,603.596,1.65674,0.447584,0.006144,0.265888,0.004448,0.005376,0.004864,0.007712,0.006656,0.140416,0.00608
+1370,533.681,1.87378,0.424288,0.006464,0.245248,0.00464,0.005472,0.004768,0.007584,0.006752,0.137216,0.006144
+1371,552.617,1.80957,0.450944,0.006432,0.266272,0.00416,0.005664,0.004576,0.007936,0.007808,0.141952,0.006144
+1372,599.444,1.66821,0.415744,0.007424,0.237376,0.004896,0.004256,0.006112,0.006176,0.008064,0.135296,0.006144
+1373,604.308,1.65479,0.412416,0.0064,0.233952,0.005664,0.004576,0.00576,0.006528,0.007936,0.135424,0.006176
+1374,621.265,1.60962,0.40688,0.006144,0.233472,0.005376,0.004864,0.00608,0.006208,0.008192,0.130336,0.006208
+1375,515.804,1.93872,0.504352,0.0064,0.317728,0.005792,0.004448,0.00592,0.006368,0.008192,0.14336,0.006144
+1376,579.022,1.72705,0.413696,0.006144,0.232896,0.004672,0.005152,0.005088,0.007296,0.00704,0.139264,0.006144
+1377,663.965,1.5061,0.416512,0.006624,0.233088,0.004736,0.004096,0.006144,0.007296,0.007072,0.14128,0.006176
+1378,513.219,1.94849,0.423488,0.006624,0.24576,0.005408,0.004832,0.005504,0.006784,0.007584,0.134976,0.006016
+1379,570.156,1.75391,0.423904,0.006144,0.243712,0.004096,0.005792,0.004448,0.007968,0.007776,0.137856,0.006112
+1380,706.572,1.41528,0.404992,0.006432,0.229408,0.004096,0.005792,0.004544,0.00784,0.0064,0.134464,0.006016
+1381,642.51,1.5564,0.415968,0.006656,0.231744,0.00528,0.004704,0.005472,0.00704,0.007712,0.14128,0.00608
+1382,628.993,1.58984,0.41168,0.00624,0.231392,0.004096,0.005632,0.004608,0.00768,0.006656,0.139264,0.006112
+1383,588.844,1.69824,0.438272,0.007616,0.253568,0.004928,0.004224,0.006144,0.006144,0.008192,0.141312,0.006144
+1384,484.39,2.06445,0.877344,0.006464,0.6968,0.00608,0.0056,0.005792,0.007104,0.008192,0.135168,0.006144
+1385,591.053,1.69189,0.417792,0.00768,0.225536,0.004352,0.005472,0.004768,0.007616,0.00672,0.149504,0.006144
+1386,608.89,1.64233,0.407584,0.006144,0.225248,0.004128,0.005696,0.004544,0.007616,0.00672,0.141344,0.006144
+1387,321.205,3.11328,0.474016,0.006656,0.285088,0.005472,0.004768,0.005632,0.006656,0.007456,0.146144,0.006144
+1388,547.009,1.82812,0.534304,0.006144,0.327104,0.004672,0.00512,0.01536,0.007328,0.01728,0.145152,0.006144
+1389,690.958,1.44727,0.41984,0.006176,0.226496,0.004896,0.004096,0.006144,0.0072,0.007136,0.151552,0.006144
+1390,499.269,2.00293,0.499712,0.0072,0.302048,0.005888,0.004352,0.014336,0.008192,0.007584,0.143968,0.006144
+1391,568.336,1.75952,0.462848,0.007264,0.277408,0.005376,0.004864,0.005472,0.006816,0.008096,0.141408,0.006144
+1392,686.097,1.45752,0.428416,0.006592,0.243232,0.004576,0.005248,0.004992,0.007296,0.007072,0.143296,0.006112
+1393,564.498,1.77148,0.408096,0.006624,0.228704,0.004768,0.00432,0.006048,0.00624,0.008192,0.136672,0.006528
+1394,536.758,1.86304,0.49632,0.006496,0.292768,0.00464,0.015648,0.004832,0.007392,0.006976,0.1512,0.006368
+1395,546.935,1.82837,0.427008,0.006144,0.243712,0.005568,0.004672,0.005664,0.006624,0.008032,0.14048,0.006112
+1396,433.347,2.30762,0.526432,0.00624,0.32768,0.005728,0.004512,0.016384,0.008128,0.00736,0.144256,0.006144
+1397,402.2,2.48633,0.518176,0.006432,0.305888,0.005504,0.004736,0.0056,0.021024,0.00816,0.153632,0.0072
+1398,582.895,1.71558,0.419296,0.006144,0.241664,0.005792,0.004448,0.005952,0.006368,0.008096,0.134816,0.006016
+1399,626.683,1.5957,0.411648,0.007296,0.231904,0.004512,0.00528,0.00496,0.00752,0.006816,0.137216,0.006144
+1400,643.115,1.55493,0.411968,0.006304,0.2312,0.00432,0.005504,0.004736,0.007552,0.006784,0.140416,0.005152
+1401,627.836,1.59277,0.414368,0.006656,0.231232,0.004448,0.005376,0.004864,0.007616,0.008224,0.139808,0.006144
+1402,550.612,1.81616,0.466976,0.007872,0.284864,0.004224,0.005696,0.004544,0.00784,0.006496,0.139264,0.006176
+1403,568.889,1.75781,0.413184,0.006144,0.231424,0.005568,0.004672,0.005664,0.006656,0.008,0.138976,0.00608
+1404,654.941,1.52686,0.411648,0.007328,0.229344,0.004928,0.00416,0.006144,0.006144,0.008064,0.139392,0.006144
+1405,416.641,2.40015,0.428224,0.006496,0.243712,0.005824,0.004416,0.005952,0.006336,0.008192,0.141184,0.006112
+1406,263.578,3.79395,0.471808,0.006912,0.292896,0.005504,0.004704,0.005664,0.006624,0.007648,0.135712,0.006144
+1407,595.522,1.6792,0.433248,0.006144,0.251904,0.005824,0.004416,0.005952,0.006336,0.008192,0.138432,0.006048
+1408,475.174,2.10449,0.423584,0.006144,0.241664,0.005376,0.004736,0.005696,0.006624,0.007392,0.13968,0.006272
+1409,530.983,1.8833,0.423968,0.007392,0.24192,0.00464,0.004096,0.006144,0.007296,0.00704,0.139264,0.006176
+1410,544.174,1.83765,0.416608,0.006432,0.23616,0.004096,0.005792,0.005472,0.006912,0.007616,0.138048,0.00608
+1411,455.263,2.19653,0.426336,0.006464,0.247808,0.00576,0.00448,0.005856,0.006432,0.008064,0.135296,0.006176
+1412,581.323,1.72021,0.42816,0.006272,0.249408,0.004544,0.005792,0.004448,0.007744,0.006688,0.13712,0.006144
+1413,683.35,1.46338,0.407552,0.006656,0.2312,0.004704,0.00512,0.00512,0.0072,0.007168,0.134304,0.00608
+1414,648.614,1.54175,0.405056,0.00752,0.228,0.0056,0.00464,0.005728,0.00656,0.00784,0.133056,0.006112
+1415,611.343,1.63574,0.408608,0.006208,0.231136,0.00432,0.005504,0.004736,0.00768,0.007808,0.135168,0.006048
+1416,588.337,1.69971,0.446688,0.006368,0.272224,0.004256,0.005568,0.004672,0.00768,0.006656,0.133184,0.00608
+1417,599.444,1.66821,0.410944,0.008192,0.230976,0.004544,0.00528,0.00496,0.007712,0.006624,0.136544,0.006112
+1418,662.998,1.5083,0.428832,0.006496,0.24832,0.00576,0.00448,0.00592,0.0064,0.007648,0.137728,0.00608
+1419,443.818,2.25317,0.406848,0.00624,0.227008,0.00432,0.005504,0.004736,0.007744,0.006592,0.138816,0.005888
+1420,541.226,1.84766,0.485344,0.006464,0.287968,0.00496,0.004128,0.006144,0.007168,0.007168,0.155328,0.006016
+1421,651.296,1.5354,0.409856,0.006432,0.230624,0.004864,0.004096,0.006144,0.007264,0.007072,0.136672,0.006688
+1422,679.947,1.4707,0.414496,0.00656,0.229344,0.004544,0.00528,0.00608,0.007008,0.007392,0.142176,0.006112
+1423,577.552,1.73145,0.41056,0.00672,0.22752,0.004288,0.005536,0.004704,0.007648,0.006688,0.141312,0.006144
+1424,519.27,1.92578,0.4504,0.006144,0.270336,0.005472,0.004768,0.005568,0.006752,0.007616,0.137696,0.006048
+1425,522.316,1.91455,0.684224,0.006272,0.496032,0.005568,0.004704,0.006144,0.007808,0.007552,0.14368,0.006464
+1426,631.904,1.58252,0.414144,0.006592,0.230816,0.004704,0.004096,0.006144,0.00736,0.006976,0.141312,0.006144
+1427,600.234,1.66602,0.411648,0.007392,0.22608,0.00576,0.00448,0.005888,0.0064,0.008128,0.141376,0.006144
+1428,323.232,3.09375,0.534528,0.007168,0.338624,0.004416,0.005408,0.004832,0.015904,0.008128,0.143904,0.006144
+1429,442.954,2.25757,0.434944,0.006624,0.250144,0.00576,0.00448,0.005856,0.006432,0.008192,0.141312,0.006144
+1430,530.707,1.88428,0.43008,0.007424,0.242432,0.006144,0.005344,0.004896,0.007552,0.006784,0.14336,0.006144
+1431,561.866,1.77979,0.427392,0.006144,0.241664,0.004096,0.0056,0.00464,0.007936,0.00768,0.14352,0.006112
+1432,625.344,1.59912,0.415744,0.006144,0.231136,0.004384,0.005408,0.004832,0.007552,0.006816,0.143328,0.006144
+1433,645.548,1.54907,0.416608,0.006432,0.231264,0.004832,0.004096,0.006144,0.007456,0.00688,0.14336,0.006144
+1434,593.795,1.68408,0.411584,0.006144,0.228768,0.004704,0.004192,0.006048,0.006144,0.008224,0.140992,0.006368
+1435,482.564,2.07227,0.41728,0.007552,0.233664,0.004544,0.00528,0.00496,0.007456,0.00688,0.140672,0.006272
+1436,602.796,1.65894,0.419264,0.006592,0.23552,0.005888,0.004352,0.006016,0.006272,0.007936,0.140672,0.006016
+1437,701.971,1.42456,0.411264,0.006592,0.226848,0.004576,0.00528,0.00496,0.007584,0.00784,0.141504,0.00608
+1438,293.158,3.41113,0.414176,0.006624,0.229376,0.005216,0.004896,0.005472,0.006944,0.007776,0.14176,0.006112
+1439,545.043,1.83472,0.452736,0.006272,0.272064,0.004416,0.005408,0.006336,0.006688,0.008128,0.13728,0.006144
+1440,584.308,1.71143,0.41984,0.006464,0.239072,0.00496,0.004128,0.006144,0.007648,0.006688,0.13872,0.006016
+1441,487.909,2.04956,0.422752,0.006432,0.246176,0.004256,0.005568,0.004672,0.00784,0.007872,0.133792,0.006144
+1442,546.935,1.82837,0.483936,0.006528,0.303296,0.004128,0.006048,0.00544,0.00688,0.007392,0.13808,0.006144
+1443,673.241,1.48535,0.407104,0.006528,0.230592,0.004896,0.004128,0.006144,0.006144,0.00816,0.134464,0.006048
+1444,629.766,1.58789,0.40784,0.006848,0.230848,0.004672,0.00512,0.00512,0.007424,0.006912,0.13488,0.006016
+1445,466.462,2.1438,0.407552,0.007232,0.23408,0.004448,0.005376,0.006048,0.006976,0.00768,0.129568,0.006144
+1446,598.918,1.66968,0.428064,0.00656,0.247808,0.005696,0.004544,0.005824,0.006464,0.00816,0.136992,0.006016
+1447,632.489,1.58105,0.40544,0.006144,0.231424,0.00592,0.00432,0.00592,0.006368,0.008192,0.131072,0.00608
+1448,648.614,1.54175,0.407776,0.006336,0.232896,0.004672,0.00528,0.00496,0.007488,0.00688,0.13312,0.006144
+1449,475.671,2.10229,0.401408,0.0072,0.224224,0.004096,0.005728,0.004512,0.008064,0.007616,0.133824,0.006144
+1450,523.183,1.91138,0.469728,0.006592,0.2952,0.00592,0.00432,0.006144,0.007168,0.0072,0.13104,0.006144
+1451,545.624,1.83276,0.403968,0.006624,0.2288,0.004704,0.004096,0.006144,0.006144,0.008192,0.13312,0.006144
+1452,690.26,1.44873,0.401408,0.006144,0.2288,0.004672,0.005152,0.005088,0.007328,0.007008,0.131072,0.006144
+1453,511.744,1.9541,0.440704,0.006528,0.257152,0.004928,0.00416,0.006144,0.006144,0.018432,0.131072,0.006144
+1454,556.597,1.79663,0.476768,0.00752,0.298976,0.0048,0.004096,0.006144,0.007232,0.007104,0.134656,0.00624
+1455,703.417,1.42163,0.399456,0.006144,0.227136,0.004288,0.005536,0.004704,0.007776,0.006688,0.132,0.005184
+1456,600.41,1.66553,0.427744,0.006496,0.245792,0.005696,0.004512,0.005824,0.006464,0.008128,0.138688,0.006144
+1457,295.42,3.38501,0.417344,0.007488,0.23008,0.004096,0.005824,0.005472,0.007136,0.008,0.14272,0.006528
+1458,653.478,1.53027,0.41888,0.007488,0.24032,0.005376,0.004864,0.006048,0.00624,0.008192,0.134336,0.006016
+1459,610.614,1.6377,0.401408,0.006144,0.227328,0.005728,0.004512,0.005856,0.006432,0.008,0.131264,0.006144
+1460,495.404,2.01855,0.47888,0.006144,0.303104,0.005792,0.004448,0.005888,0.0064,0.008,0.133152,0.005952
+1461,591.139,1.69165,0.45056,0.006208,0.273824,0.00464,0.005184,0.005056,0.007712,0.006688,0.135104,0.006144
+1462,478.281,2.09082,0.673632,0.006368,0.49152,0.00608,0.0056,0.004704,0.008192,0.008192,0.13696,0.006016
+1463,660.219,1.51465,0.418144,0.006496,0.241696,0.0056,0.004608,0.005856,0.006432,0.008192,0.13312,0.006144
+1464,591.908,1.68945,0.40416,0.006496,0.225632,0.004096,0.005856,0.006208,0.007584,0.008576,0.133568,0.006144
+1465,502.269,1.99097,0.45712,0.00656,0.282112,0.004608,0.004096,0.006144,0.006144,0.008192,0.13312,0.006144
+1466,654.731,1.52734,0.405888,0.006464,0.22736,0.005792,0.004448,0.00608,0.006208,0.008224,0.135136,0.006176
+1467,693.063,1.44287,0.401408,0.006144,0.227328,0.004096,0.005728,0.004512,0.007744,0.006688,0.133024,0.006144
+1468,665.043,1.50366,0.40288,0.006336,0.226368,0.004928,0.004224,0.006144,0.006144,0.008192,0.134496,0.006048
+1469,333.388,2.99951,0.413696,0.007264,0.23776,0.004832,0.004096,0.006144,0.007232,0.007104,0.13312,0.006144
+1470,578.695,1.72803,0.456128,0.006144,0.269888,0.004544,0.015616,0.004864,0.008192,0.007744,0.133056,0.00608
+1471,675.462,1.48047,0.403264,0.00624,0.227328,0.005472,0.004768,0.005568,0.00672,0.007712,0.133376,0.00608
+1472,439.344,2.27612,0.427168,0.007552,0.244352,0.005728,0.004512,0.005888,0.0064,0.008192,0.13856,0.005984
+1473,555.616,1.7998,0.458944,0.006336,0.26768,0.004704,0.004096,0.018304,0.007392,0.007104,0.137184,0.006144
+1474,718.723,1.39136,0.415744,0.006144,0.241696,0.005664,0.004544,0.005856,0.006432,0.007808,0.131456,0.006144
+1475,625.344,1.59912,0.408864,0.007712,0.229056,0.004896,0.004096,0.006144,0.0072,0.007136,0.136544,0.00608
+1476,508.567,1.96631,0.417856,0.006208,0.229056,0.004416,0.005408,0.004832,0.007616,0.00672,0.136928,0.016672
+1477,479.625,2.08496,0.4392,0.006464,0.26064,0.005408,0.0048,0.005568,0.00672,0.007968,0.135392,0.00624
+1478,559.869,1.78613,0.417792,0.006336,0.24128,0.004288,0.005568,0.004672,0.007808,0.006528,0.135168,0.006144
+1479,635.334,1.57397,0.405728,0.006368,0.229408,0.005728,0.00448,0.005856,0.006432,0.008096,0.133216,0.006144
+1480,582.232,1.71753,0.433664,0.006528,0.241728,0.00576,0.00448,0.005888,0.017824,0.008288,0.13712,0.006048
+1481,578.613,1.72827,0.412352,0.006656,0.235744,0.004128,0.005696,0.004544,0.007936,0.007648,0.133888,0.006112
+1482,605.648,1.65112,0.416864,0.006144,0.226592,0.004832,0.004096,0.006144,0.019808,0.007936,0.135296,0.006016
+1483,541.083,1.84814,0.417792,0.006208,0.240672,0.00496,0.005472,0.004864,0.007584,0.00672,0.135168,0.006144
+1484,546.279,1.83057,0.416416,0.006496,0.23376,0.004096,0.005824,0.005472,0.00688,0.0064,0.141312,0.006176
+1485,542.732,1.84253,0.49664,0.006432,0.301792,0.0056,0.012832,0.006144,0.007872,0.01632,0.13456,0.005088
+1486,664.827,1.50415,0.410368,0.006432,0.223712,0.00592,0.00432,0.006016,0.006272,0.008192,0.14336,0.006144
+1487,579.841,1.72461,0.427328,0.006144,0.245344,0.004512,0.005472,0.004768,0.007616,0.00672,0.140672,0.00608
+1488,601.204,1.66333,0.432544,0.006624,0.237664,0.004096,0.005952,0.014144,0.006528,0.008192,0.143264,0.00608
+1489,560.942,1.78271,0.447648,0.006144,0.264192,0.005408,0.004832,0.005472,0.006816,0.00768,0.14112,0.005984
+1490,652.333,1.53296,0.422912,0.006688,0.229856,0.005824,0.004416,0.005952,0.006336,0.008064,0.149664,0.006112
+1491,661.178,1.51245,0.412256,0.006688,0.225312,0.00544,0.0048,0.005536,0.006752,0.007712,0.14384,0.006176
+1492,583.642,1.71338,0.419648,0.006528,0.227328,0.005696,0.004544,0.005824,0.006464,0.00784,0.149376,0.006048
+1493,565.59,1.76807,0.441856,0.006368,0.25568,0.004416,0.005408,0.004832,0.007424,0.006912,0.1448,0.006016
+1494,616.867,1.62109,0.415776,0.006208,0.227296,0.005952,0.005472,0.00496,0.007552,0.006784,0.145408,0.006144
+1495,698.618,1.4314,0.448096,0.006144,0.261696,0.004576,0.005376,0.004832,0.007488,0.008192,0.143648,0.006144
+1496,311.981,3.20532,0.511424,0.019808,0.293536,0.005184,0.004896,0.020576,0.006208,0.017888,0.137312,0.006016
+1497,602.087,1.66089,0.433312,0.007296,0.248192,0.004608,0.005184,0.005056,0.007296,0.008128,0.141376,0.006176
+1498,667.862,1.49731,0.411296,0.006496,0.227552,0.00512,0.004896,0.005472,0.006976,0.006176,0.142592,0.006016
+1499,611.435,1.6355,0.404032,0.00656,0.224704,0.0048,0.004096,0.006144,0.006144,0.008192,0.137216,0.006176
+1500,578.776,1.72778,0.434528,0.006784,0.235552,0.005312,0.004896,0.00544,0.00688,0.007424,0.156256,0.005984
+1501,581.24,1.72046,0.417376,0.006176,0.239104,0.004576,0.005344,0.004896,0.00736,0.007008,0.136832,0.00608
+1502,713.092,1.40234,0.409376,0.006432,0.229664,0.004096,0.00576,0.005536,0.006848,0.006432,0.138624,0.005984
+1503,613.449,1.63013,0.411232,0.006144,0.229376,0.004096,0.005728,0.004512,0.007936,0.007872,0.13936,0.006208
+1504,327,3.05811,0.505568,0.006144,0.315424,0.005472,0.004736,0.006144,0.015456,0.007072,0.139072,0.006048
+1505,678.595,1.47363,0.412672,0.007168,0.228352,0.005696,0.004544,0.00576,0.006528,0.007744,0.140864,0.006016
+1506,602.974,1.65845,0.417184,0.00784,0.227264,0.004512,0.005312,0.004928,0.007424,0.006944,0.146944,0.006016
+1507,533.194,1.87549,0.417024,0.007424,0.22928,0.004928,0.004128,0.006144,0.007264,0.007072,0.144704,0.00608
+1508,590.798,1.69263,0.456704,0.006176,0.270304,0.00576,0.00448,0.005888,0.0064,0.007904,0.143648,0.006144
+1509,640.2,1.56201,0.411232,0.006432,0.229152,0.00432,0.005504,0.004736,0.007488,0.006848,0.14064,0.006112
+1510,632.685,1.58057,0.413824,0.006272,0.233088,0.00448,0.005344,0.004896,0.007456,0.00688,0.139264,0.006144
+1511,663.427,1.50732,0.404224,0.00656,0.227072,0.004704,0.00512,0.00512,0.007296,0.007072,0.135168,0.006112
+1512,459.863,2.17456,0.488896,0.022944,0.290784,0.005344,0.004896,0.005472,0.006816,0.007968,0.138624,0.006048
+1513,364.867,2.74072,0.823232,0.006304,0.62336,0.006144,0.005696,0.004576,0.0184,0.00816,0.144544,0.006048
+1514,673.573,1.48462,0.409376,0.006144,0.229376,0.005504,0.004736,0.005632,0.006656,0.007584,0.137632,0.006112
+1515,487.271,2.05225,0.410112,0.006624,0.233504,0.00576,0.004448,0.005888,0.006432,0.00816,0.13312,0.006176
+1516,601.204,1.66333,0.43072,0.017184,0.237376,0.005248,0.004896,0.00544,0.006816,0.006368,0.141216,0.006176
+1517,705.72,1.41699,0.407552,0.007264,0.226208,0.004096,0.005824,0.00544,0.006976,0.007584,0.138016,0.006144
+1518,613.449,1.63013,0.446336,0.006752,0.241792,0.005792,0.004448,0.005952,0.006336,0.02048,0.148672,0.006112
+1519,541.512,1.84668,0.442368,0.006144,0.263776,0.004512,0.00528,0.00496,0.00752,0.006816,0.137216,0.006144
+1520,604.13,1.65527,0.424352,0.0064,0.244032,0.005856,0.004384,0.005952,0.006336,0.008192,0.137184,0.006016
+1521,472.652,2.11572,0.424576,0.006624,0.247968,0.005632,0.004608,0.005728,0.006592,0.007904,0.133376,0.006144
+1522,526.208,1.90039,0.4176,0.006144,0.237568,0.004096,0.005728,0.004512,0.00784,0.006496,0.1392,0.006016
+1523,604.397,1.65454,0.448992,0.006464,0.270272,0.00432,0.005472,0.004768,0.00752,0.006944,0.137088,0.006144
+1524,587.577,1.7019,0.417792,0.006176,0.237216,0.004416,0.005504,0.004736,0.007712,0.006656,0.139232,0.006144
+1525,606.096,1.6499,0.40624,0.006624,0.225504,0.004128,0.005696,0.004576,0.00784,0.007776,0.137952,0.006144
+1526,688.403,1.45264,0.424736,0.005984,0.235776,0.0048,0.004096,0.006144,0.0072,0.007136,0.147456,0.006144
+1527,596.215,1.67725,0.409696,0.006432,0.229376,0.00512,0.004896,0.00544,0.006848,0.007456,0.138048,0.00608
+1528,508.82,1.96533,0.492416,0.00704,0.294912,0.00544,0.01504,0.006144,0.006176,0.008192,0.143328,0.006144
+1529,584.225,1.71167,0.4096,0.00768,0.227584,0.004352,0.005472,0.004768,0.00752,0.007904,0.138176,0.006144
+1530,309.109,3.23511,0.444544,0.006464,0.246368,0.02048,0.006144,0.005504,0.006816,0.00736,0.139456,0.005952
+1531,593.795,1.68408,0.41584,0.006176,0.239264,0.004416,0.005408,0.004832,0.007456,0.006912,0.136192,0.005184
+1532,636.025,1.57227,0.413952,0.006752,0.229664,0.005472,0.004768,0.005696,0.006592,0.007872,0.14112,0.006016
+1533,622.114,1.60742,0.417568,0.006144,0.233472,0.005856,0.004384,0.005888,0.0064,0.00816,0.141184,0.00608
+1534,636.025,1.57227,0.422912,0.007232,0.229728,0.004704,0.004096,0.006144,0.02,0.007744,0.137216,0.006048
+1535,559.486,1.78735,0.411648,0.007776,0.233504,0.00448,0.005344,0.004896,0.00752,0.006816,0.135168,0.006144
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..1f03464
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,125.295,7.9985,6.30922,6.30306,0.00615747
+max_1024,135.611,12.0449,6.3304,6.31834,0.022528
+min_1024,83.0225,7.37402,6.3015,6.29552,0.004768
+512,126.147,7.92725,6.3113,6.30531,0.005984
+513,122.159,8.18604,6.30374,6.2976,0.006144
+514,125.375,7.97607,6.31037,6.30422,0.006144
+515,128.595,7.77637,6.30634,6.30019,0.006144
+516,128.538,7.77979,6.31203,6.30589,0.006144
+517,125.429,7.97266,6.30579,6.29965,0.006144
+518,129.407,7.72754,6.31466,6.30851,0.006144
+519,123.672,8.08594,6.30534,6.29936,0.005984
+520,114.695,8.71875,6.31002,6.30406,0.005952
+521,126.396,7.91162,6.30579,6.29968,0.006112
+522,130.131,7.68457,6.31363,6.30707,0.00656
+523,130.804,7.64502,6.30499,6.29904,0.005952
+524,131.164,7.62402,6.30989,6.30374,0.006144
+525,126.521,7.90381,6.30509,6.29907,0.006016
+526,130.421,7.66748,6.31405,6.30803,0.006016
+527,120.947,8.26807,6.30403,6.29789,0.006144
+528,129.162,7.74219,6.30989,6.30374,0.006144
+529,126.678,7.89404,6.3073,6.30128,0.006016
+530,122.437,8.16748,6.31005,6.3039,0.006144
+531,129.604,7.71582,6.30381,6.29776,0.006048
+532,125.153,7.99023,6.31027,6.30413,0.006144
+533,113.513,8.80957,6.31408,6.29805,0.016032
+534,123.077,8.125,6.31043,6.30547,0.00496
+535,114.772,8.71289,6.30381,6.29786,0.005952
+536,123.604,8.09033,6.30989,6.30387,0.006016
+537,130.296,7.6748,6.30598,6.30003,0.005952
+538,130.604,7.65674,6.3119,6.30534,0.00656
+539,129.285,7.73486,6.30374,6.2976,0.006144
+540,128.643,7.77344,6.31296,6.30698,0.005984
+541,122.459,8.16602,6.30557,6.29946,0.006112
+542,125.237,7.98486,6.31213,6.30605,0.00608
+543,128.176,7.80176,6.30253,6.29638,0.006144
+544,130.696,7.65137,6.30992,6.30378,0.006144
+545,124.87,8.0083,6.31597,6.29555,0.020416
+546,125.352,7.97754,6.31194,6.30579,0.006144
+547,118.615,8.43066,6.30602,6.29997,0.006048
+548,127.84,7.82227,6.31293,6.30678,0.006144
+549,125.613,7.96094,6.30272,6.29658,0.006144
+550,130.205,7.68018,6.30989,6.30374,0.006144
+551,119.633,8.35889,6.30531,6.29933,0.005984
+552,129.908,7.69775,6.31194,6.30579,0.006144
+553,119.07,8.39844,6.30381,6.29786,0.005952
+554,113.892,8.78027,6.31139,6.30544,0.005952
+555,128.854,7.76074,6.3015,6.29552,0.005984
+556,124.567,8.02783,6.31411,6.30816,0.005952
+557,124.673,8.021,6.31366,6.30755,0.006112
+558,127.26,7.85791,6.3135,6.30749,0.006016
+559,107.546,9.29834,6.30624,6.30026,0.005984
+560,128.813,7.76318,6.31194,6.30579,0.006144
+561,130.321,7.67334,6.304,6.29786,0.006144
+562,132.471,7.54883,6.3103,6.30432,0.005984
+563,128.789,7.76465,6.3064,6.30035,0.006048
+564,128.603,7.77588,6.31395,6.308,0.005952
+565,131.215,7.62109,6.30579,6.29965,0.006144
+566,131.392,7.61084,6.31142,6.30544,0.005984
+567,129.293,7.73438,6.30579,6.29981,0.005984
+568,126.132,7.92822,6.3105,6.30448,0.006016
+569,128.064,7.80859,6.30573,6.29965,0.00608
+570,129.187,7.74072,6.31443,6.30845,0.005984
+571,128.168,7.80225,6.30618,6.30006,0.006112
+572,129.752,7.70703,6.31149,6.30554,0.005952
+573,129.277,7.73535,6.3017,6.29661,0.005088
+574,129.399,7.72803,6.31235,6.30621,0.006144
+575,122.079,8.19141,6.30378,6.2976,0.006176
+576,128.603,7.77588,6.31267,6.30653,0.006144
+577,129.53,7.72021,6.30438,6.29824,0.006144
+578,130.846,7.64258,6.31014,6.304,0.006144
+579,127.134,7.86572,6.30493,6.29894,0.005984
+580,125.853,7.9458,6.31024,6.30429,0.005952
+581,115.563,8.65332,6.30598,6.29984,0.006144
+582,126.67,7.89453,6.31174,6.30579,0.005952
+583,121.572,8.22559,6.30493,6.29894,0.005984
+584,125.483,7.96924,6.31152,6.30554,0.005984
+585,126.443,7.90869,6.30374,6.2976,0.006144
+586,131.349,7.61328,6.31158,6.3056,0.005984
+587,128.91,7.75732,6.30605,6.29994,0.006112
+588,128.184,7.80127,6.31184,6.30582,0.006016
+589,128.522,7.78076,6.3024,6.29642,0.005984
+590,115.263,8.67578,6.31232,6.30634,0.005984
+591,122.261,8.1792,6.30749,6.30154,0.005952
+592,126.35,7.91455,6.31808,6.31194,0.006144
+593,125.946,7.93994,6.30784,6.3017,0.006144
+594,127.729,7.8291,6.30976,6.30374,0.006016
+595,128.289,7.79492,6.30621,6.30022,0.005984
+596,107.152,9.33252,6.31194,6.30691,0.005024
+597,128.919,7.75684,6.30374,6.2976,0.006144
+598,131.307,7.61572,6.31101,6.30509,0.00592
+599,129.752,7.70703,6.3049,6.29894,0.005952
+600,129,7.75195,6.31398,6.30784,0.006144
+601,129.686,7.71094,6.30688,6.3009,0.005984
+602,116.529,8.58154,6.31379,6.30781,0.005984
+603,126.451,7.9082,6.304,6.29901,0.004992
+604,128.659,7.77246,6.31213,6.30598,0.006144
+605,125.145,7.99072,6.30442,6.29827,0.006144
+606,126.225,7.92236,6.31056,6.30442,0.006144
+607,125.977,7.93799,6.30374,6.2976,0.006144
+608,125.275,7.98242,6.31267,6.30672,0.005952
+609,127.673,7.83252,6.30531,6.29933,0.005984
+610,116.675,8.5708,6.31325,6.3073,0.005952
+611,120.287,8.31348,6.30285,6.29686,0.005984
+612,126.78,7.8877,6.31194,6.30579,0.006144
+613,126.984,7.875,6.30515,6.29914,0.006016
+614,127.633,7.83496,6.3119,6.30579,0.006112
+615,125.49,7.96875,6.3055,6.29949,0.006016
+616,122.167,8.18555,6.3119,6.30579,0.006112
+617,129.817,7.70312,6.31206,6.30592,0.006144
+618,131.316,7.61523,6.30976,6.30374,0.006016
+619,125.444,7.97168,6.30374,6.2976,0.006144
+620,124.931,8.00439,6.3119,6.30595,0.005952
+621,123.986,8.06543,6.30467,6.29853,0.006144
+622,125.076,7.99512,6.30986,6.30378,0.00608
+623,119.354,8.37842,6.30579,6.30074,0.005056
+624,127.118,7.8667,6.31194,6.30579,0.006144
+625,121.126,8.25586,6.31056,6.30458,0.005984
+626,127.087,7.86865,6.3121,6.30611,0.005984
+627,121.205,8.25049,6.3072,6.30122,0.005984
+628,123.025,8.12842,6.30989,6.30374,0.006144
+629,115.419,8.66406,6.30595,6.29981,0.006144
+630,128.935,7.75586,6.31242,6.3063,0.006112
+631,121.601,8.22363,6.304,6.29888,0.00512
+632,118.553,8.43506,6.31533,6.30934,0.005984
+633,124.031,8.0625,6.30531,6.2993,0.006016
+634,110.386,9.05908,6.31194,6.30579,0.006144
+635,109.343,9.14551,6.30554,6.29952,0.006016
+636,125.26,7.9834,6.3113,6.30531,0.005984
+637,129.933,7.69629,6.30378,6.29782,0.005952
+638,123.672,8.08594,6.31043,6.30448,0.005952
+639,116.483,8.58496,6.30579,6.3008,0.004992
+640,124.726,8.01758,6.312,6.30605,0.005952
+641,121.471,8.23242,6.30186,6.29571,0.006144
+642,125.884,7.94385,6.31088,6.30474,0.006144
+643,122.547,8.16016,6.3039,6.29789,0.006016
+644,125.845,7.94629,6.31222,6.30605,0.006176
+645,112.769,8.86768,6.30579,6.29965,0.006144
+646,127.126,7.86621,6.31194,6.30579,0.006144
+647,126.717,7.8916,6.30381,6.29782,0.005984
+648,130.504,7.6626,6.31302,6.30707,0.005952
+649,128.805,7.76367,6.30454,6.29837,0.006176
+650,122.547,8.16016,6.31136,6.30538,0.005984
+651,121.963,8.19922,6.30406,6.29792,0.006144
+652,121.421,8.23584,6.31194,6.30579,0.006144
+653,123.567,8.09277,6.30576,6.29978,0.005984
+654,122.914,8.13574,6.31434,6.30835,0.005984
+655,130.156,7.68311,6.30886,6.30278,0.00608
+656,126.945,7.87744,6.31398,6.30784,0.006144
+657,123.597,8.09082,6.30579,6.29965,0.006144
+658,124.817,8.01172,6.31283,6.30669,0.006144
+659,127.92,7.81738,6.30378,6.29776,0.006016
+660,133.099,7.51318,6.31194,6.30579,0.006144
+661,101.547,9.84766,6.31158,6.3056,0.005984
+662,123.694,8.08447,6.31194,6.30579,0.006144
+663,124.688,8.02002,6.30582,6.29981,0.006016
+664,132.694,7.53613,6.31264,6.3065,0.006144
+665,127.158,7.86426,6.31482,6.3017,0.01312
+666,124.741,8.0166,6.31398,6.30784,0.006144
+667,135.182,7.39746,6.30579,6.29965,0.006144
+668,121.738,8.21436,6.3136,6.30758,0.006016
+669,133.498,7.49072,6.30579,6.29965,0.006144
+670,124.521,8.03076,6.31318,6.30723,0.005952
+671,115.199,8.68066,6.30429,6.29814,0.006144
+672,128.474,7.78369,6.31194,6.30579,0.006144
+673,126.498,7.90527,6.30579,6.29965,0.006144
+674,109.548,9.12842,6.31373,6.30778,0.005952
+675,126.85,7.8833,6.30374,6.2976,0.006144
+676,114.26,8.75195,6.31066,6.30451,0.006144
+677,126.592,7.89941,6.30304,6.29706,0.005984
+678,127.427,7.84766,6.31194,6.30579,0.006144
+679,129.735,7.70801,6.30266,6.29648,0.006176
+680,125.015,7.99902,6.31194,6.30579,0.006144
+681,126.78,7.8877,6.3103,6.30416,0.006144
+682,120.04,8.33057,6.31178,6.30576,0.006016
+683,123.582,8.0918,6.3023,6.29722,0.005088
+684,121.262,8.24658,6.30925,6.30326,0.005984
+685,116.582,8.57764,6.30522,6.2992,0.006016
+686,128.748,7.76709,6.30982,6.30381,0.006016
+687,127.625,7.83545,6.30586,6.29971,0.006144
+688,124.129,8.05615,6.31398,6.3089,0.005088
+689,123.359,8.10645,6.30413,6.2991,0.005024
+690,131.408,7.60986,6.31101,6.30502,0.005984
+691,127.824,7.82324,6.30438,6.29824,0.006144
+692,124.212,8.05078,6.30989,6.30374,0.006144
+693,130.712,7.65039,6.30493,6.29894,0.005984
+694,130.779,7.64648,6.3135,6.30755,0.005952
+695,126.116,7.9292,6.30397,6.29782,0.006144
+696,121.449,8.23389,6.31024,6.3041,0.006144
+697,127.514,7.84229,6.30579,6.29965,0.006144
+698,125.298,7.98096,6.31274,6.30666,0.00608
+699,126.662,7.89502,6.30243,6.29629,0.006144
+700,126.373,7.91309,6.31194,6.30579,0.006144
+701,130.487,7.66357,6.30374,6.2976,0.006144
+702,126.607,7.89844,6.31194,6.30579,0.006144
+703,120.612,8.29102,6.30534,6.29878,0.00656
+704,126.279,7.91895,6.31194,6.30579,0.006144
+705,129.678,7.71143,6.3056,6.29958,0.006016
+706,132.189,7.56494,6.31398,6.30784,0.006144
+707,129.875,7.69971,6.30733,6.30131,0.006016
+708,127.976,7.81396,6.31235,6.3072,0.005152
+709,133.446,7.49365,6.3111,6.30506,0.006048
+710,128.16,7.80273,6.30989,6.30374,0.006144
+711,129.122,7.74463,6.30749,6.3015,0.005984
+712,126.108,7.92969,6.31277,6.30662,0.006144
+713,125.122,7.99219,6.30554,6.29955,0.005984
+714,131.976,7.57715,6.31162,6.30563,0.005984
+715,128.886,7.75879,6.30624,6.3001,0.006144
+716,131.148,7.625,6.31293,6.30675,0.006176
+717,127.395,7.84961,6.30438,6.29824,0.006144
+718,126.913,7.87939,6.31312,6.30714,0.005984
+719,118.546,8.43555,6.30579,6.29968,0.006112
+720,130.838,7.64307,6.31408,6.3081,0.005984
+721,126.701,7.89258,6.30784,6.3015,0.006336
+722,128.635,7.77393,6.31184,6.30579,0.006048
+723,120.556,8.29492,6.31437,6.30794,0.006432
+724,129.719,7.70898,6.31325,6.30723,0.006016
+725,128.2,7.80029,6.30301,6.29699,0.006016
+726,118.849,8.41406,6.31136,6.30534,0.006016
+727,128.417,7.78711,6.30573,6.29965,0.00608
+728,125.229,7.98535,6.31162,6.30557,0.006048
+729,127.872,7.82031,6.30515,6.2992,0.005952
+730,126.209,7.92334,6.31194,6.30682,0.00512
+731,129.008,7.75146,6.30704,6.30099,0.006048
+732,111.583,8.96191,6.31069,6.30454,0.006144
+733,123.642,8.08789,6.30429,6.2983,0.005984
+734,131.4,7.61035,6.31344,6.30749,0.005952
+735,120.23,8.31738,6.30381,6.2977,0.006112
+736,117.966,8.47705,6.31056,6.30442,0.006144
+737,128.756,7.7666,6.31229,6.30614,0.006144
+738,124.87,8.0083,6.31418,6.30803,0.006144
+739,123.018,8.12891,6.30595,6.29994,0.006016
+740,127.118,7.8667,6.30989,6.30374,0.006144
+741,127.3,7.85547,6.30541,6.29952,0.005888
+742,128.048,7.80957,6.31168,6.30566,0.006016
+743,126.031,7.93457,6.30579,6.30074,0.005056
+744,130.571,7.65869,6.3119,6.30586,0.006048
+745,122.649,8.15332,6.30579,6.30102,0.004768
+746,124.37,8.04053,6.31293,6.30678,0.006144
+747,128.522,7.78076,6.3047,6.29856,0.006144
+748,130.671,7.65283,6.30941,6.30326,0.006144
+749,130.098,7.68652,6.30784,6.3017,0.006144
+750,127.92,7.81738,6.31194,6.30682,0.00512
+751,128.265,7.79639,6.30579,6.29965,0.006144
+752,117.485,8.51172,6.31347,6.30579,0.00768
+753,108.809,9.19043,6.31123,6.30525,0.005984
+754,129.448,7.7251,6.31216,6.30618,0.005984
+755,127.538,7.84082,6.30794,6.30179,0.006144
+756,129.596,7.71631,6.31027,6.30413,0.006144
+757,130.172,7.68213,6.30506,6.29907,0.005984
+758,130.379,7.66992,6.31075,6.30461,0.006144
+759,128.096,7.80664,6.30598,6.29984,0.006144
+760,120.691,8.28564,6.31123,6.30525,0.005984
+761,131.122,7.62646,6.30368,6.2977,0.005984
+762,127.458,7.8457,6.31165,6.30566,0.005984
+763,132.574,7.54297,6.30326,6.29728,0.005984
+764,126.42,7.91016,6.31194,6.30595,0.005984
+765,132.634,7.53955,6.30374,6.2976,0.006144
+766,129.966,7.69434,6.31194,6.30579,0.006144
+767,121.644,8.2207,6.30563,6.29958,0.006048
+768,121.941,8.20068,6.31091,6.30582,0.005088
+769,130.662,7.65332,6.30621,6.30003,0.006176
+770,127.379,7.85059,6.31066,6.3057,0.00496
+771,132.728,7.53418,6.30282,6.2968,0.006016
+772,127.11,7.86719,6.31194,6.30579,0.006144
+773,130.33,7.67285,6.3041,6.29795,0.006144
+774,129.049,7.74902,6.31219,6.30611,0.00608
+775,123.956,8.06738,6.30378,6.29872,0.005056
+776,121.811,8.20947,6.31194,6.30579,0.006144
+777,127.498,7.84326,6.30579,6.29965,0.006144
+778,128.538,7.77979,6.31219,6.30605,0.006144
+779,126.701,7.89258,6.30515,6.2992,0.005952
+780,128.935,7.75586,6.31123,6.30522,0.006016
+781,119.864,8.34277,6.30778,6.30176,0.006016
+782,118.773,8.41943,6.31104,6.30506,0.005984
+783,126.545,7.90234,6.30614,6.3,0.006144
+784,128.935,7.75586,6.31242,6.30627,0.006144
+785,119.264,8.38477,6.30525,6.2991,0.006144
+786,126.529,7.90332,6.31517,6.30922,0.005952
+787,119.584,8.3623,6.30784,6.3017,0.006144
+788,114.76,8.71387,6.31194,6.3057,0.00624
+789,131.08,7.62891,6.30579,6.29965,0.006144
+790,129.04,7.74951,6.31322,6.30726,0.005952
+791,123.948,8.06787,6.30288,6.29686,0.006016
+792,124.939,8.00391,6.31168,6.3057,0.005984
+793,124.901,8.00635,6.30467,6.29853,0.006144
+794,120.854,8.27441,6.32387,6.30768,0.016192
+795,126.592,7.89941,6.30397,6.29782,0.006144
+796,131.055,7.63037,6.3119,6.30579,0.006112
+797,128.619,7.7749,6.30214,6.29712,0.005024
+798,112.719,8.87158,6.31398,6.30784,0.006144
+799,128.16,7.80273,6.3055,6.29971,0.005792
+800,128.846,7.76123,6.31194,6.30579,0.006144
+801,119.682,8.35547,6.30886,6.30285,0.006016
+802,125.652,7.9585,6.30851,6.30237,0.006144
+803,123.232,8.11475,6.30582,6.30077,0.005056
+804,129.195,7.74023,6.31222,6.30624,0.005984
+805,126.584,7.8999,6.30915,6.30304,0.006112
+806,126.443,7.90869,6.31344,6.30746,0.005984
+807,122.393,8.17041,6.3103,6.30416,0.006144
+808,114.369,8.74365,6.31392,6.30784,0.00608
+809,127.689,7.83154,6.31194,6.30579,0.006144
+810,123.709,8.0835,6.31318,6.30742,0.00576
+811,133.091,7.51367,6.30512,6.29914,0.005984
+812,117.911,8.48096,6.31165,6.30566,0.005984
+813,116.383,8.59229,6.30384,6.2977,0.006144
+814,118.987,8.4043,6.31194,6.30595,0.005984
+815,125.191,7.98779,6.30403,6.29795,0.00608
+816,129.875,7.69971,6.31034,6.30419,0.006144
+817,126.678,7.89404,6.30477,6.29878,0.005984
+818,123.567,8.09277,6.30989,6.30374,0.006144
+819,120.869,8.27344,6.30576,6.29968,0.00608
+820,99.0329,10.0977,6.31382,6.30781,0.006016
+821,127.126,7.86621,6.31075,6.30461,0.006144
+822,125.421,7.97314,6.31194,6.30579,0.006144
+823,121.905,8.20312,6.30589,6.29834,0.007552
+824,109.53,9.12988,6.31386,6.30787,0.005984
+825,130.454,7.66553,6.3056,6.29955,0.006048
+826,124.734,8.01709,6.31363,6.30752,0.006112
+827,116.377,8.59277,6.30378,6.2976,0.006176
+828,125.969,7.93848,6.31194,6.30685,0.005088
+829,117.6,8.50342,6.31962,6.29901,0.020608
+830,119.091,8.39697,6.3121,6.30595,0.006144
+831,112.521,8.88721,6.30595,6.2999,0.006048
+832,117.681,8.49756,6.31226,6.30627,0.005984
+833,124.544,8.0293,6.30304,6.29709,0.005952
+834,123.129,8.12158,6.31194,6.30579,0.006144
+835,117.85,8.48535,6.30384,6.2977,0.006144
+836,125.329,7.979,6.31107,6.30506,0.006016
+837,129.211,7.73926,6.30566,6.29965,0.006016
+838,127.657,7.8335,6.31101,6.30506,0.005952
+839,124.506,8.03174,6.31194,6.30579,0.006144
+840,118.56,8.43457,6.31398,6.30784,0.006144
+841,131.24,7.61963,6.30531,6.29933,0.005984
+842,116.383,8.59229,6.31194,6.30685,0.005088
+843,122.797,8.14355,6.30352,6.29747,0.006048
+844,126.389,7.91211,6.31331,6.30582,0.007488
+845,120.471,8.30078,6.30419,6.29805,0.006144
+846,124.34,8.04248,6.31194,6.30579,0.006144
+847,124.054,8.06104,6.3048,6.29878,0.006016
+848,119.57,8.36328,6.31158,6.30563,0.005952
+849,122.922,8.13525,6.30662,6.30048,0.006144
+850,127.442,7.84668,6.31299,6.30704,0.005952
+851,118.088,8.46826,6.30336,6.29734,0.006016
+852,109.977,9.09277,6.3104,6.30442,0.005984
+853,128.579,7.77734,6.30611,6.29997,0.006144
+854,131.476,7.60596,6.31168,6.3057,0.005984
+855,126.194,7.92432,6.3056,6.29965,0.005952
+856,128.16,7.80273,6.3121,6.30714,0.00496
+857,129.809,7.70361,6.30374,6.2976,0.006144
+858,113.595,8.80322,6.31331,6.30726,0.006048
+859,124.521,8.03076,6.31104,6.30506,0.005984
+860,120.308,8.31201,6.30989,6.30374,0.006144
+861,114.638,8.72314,6.3071,6.30106,0.006048
+862,130.454,7.66553,6.31213,6.30698,0.005152
+863,114.618,8.72461,6.30598,6.29984,0.006144
+864,123.144,8.12061,6.31002,6.30387,0.006144
+865,126.334,7.91553,6.30573,6.29971,0.006016
+866,120.634,8.28955,6.31334,6.30614,0.0072
+867,124.703,8.01904,6.30602,6.29994,0.00608
+868,121.934,8.20117,6.30995,6.30381,0.006144
+869,120.89,8.27197,6.3057,6.29971,0.005984
+870,129.326,7.73242,6.31184,6.30589,0.005952
+871,130.796,7.64551,6.30579,6.29965,0.006144
+872,118.876,8.41211,6.30989,6.30374,0.006144
+873,125.822,7.94775,6.30739,6.30138,0.006016
+874,109.695,9.11621,6.31136,6.30387,0.007488
+875,121.069,8.25977,6.31306,6.30707,0.005984
+876,129.252,7.73682,6.31357,6.30758,0.005984
+877,123.136,8.12109,6.3063,6.30016,0.006144
+878,123.232,8.11475,6.31059,6.30445,0.006144
+879,130.612,7.65625,6.30579,6.29971,0.00608
+880,119.417,8.37402,6.31187,6.30579,0.00608
+881,116.357,8.59424,6.30589,6.29971,0.006176
+882,128.74,7.76758,6.31024,6.30413,0.006112
+883,124.863,8.00879,6.30541,6.29936,0.006048
+884,126.85,7.8833,6.31194,6.30579,0.006144
+885,128.248,7.79736,6.30989,6.30374,0.006144
+886,117.904,8.48145,6.31002,6.30387,0.006144
+887,119.808,8.34668,6.30566,6.29955,0.006112
+888,130.313,7.67383,6.3119,6.30592,0.005984
+889,131.476,7.60596,6.30579,6.29965,0.006144
+890,128.498,7.78223,6.31062,6.30448,0.006144
+891,132.129,7.56836,6.30294,6.29699,0.005952
+892,130.429,7.66699,6.31062,6.30448,0.006144
+893,125.521,7.9668,6.30502,6.29904,0.005984
+894,121.478,8.23193,6.30982,6.30384,0.005984
+895,119.049,8.3999,6.30358,6.29744,0.006144
+896,104.357,9.58252,6.31194,6.30579,0.006144
+897,128.635,7.77393,6.30582,6.29965,0.006176
+898,128,7.8125,6.31376,6.30778,0.005984
+899,115.341,8.66992,6.30579,6.29965,0.006144
+900,130.429,7.66699,6.31146,6.30547,0.005984
+901,128.337,7.79199,6.3055,6.29949,0.006016
+902,125.337,7.97852,6.3121,6.30595,0.006144
+903,132.858,7.52686,6.30266,6.29651,0.006144
+904,127.008,7.87354,6.30326,6.29766,0.0056
+905,93.6528,10.6777,6.30602,6.29997,0.006048
+906,129.309,7.7334,6.31194,6.30694,0.004992
+907,130.496,7.66309,6.30659,6.30048,0.006112
+908,127.016,7.87305,6.31194,6.30579,0.006144
+909,132.815,7.5293,6.30682,6.3008,0.006016
+910,128.643,7.77344,6.30355,6.29776,0.005792
+911,124.023,8.06299,6.30528,6.2993,0.005984
+912,128.216,7.79932,6.3119,6.30589,0.006016
+913,129.081,7.74707,6.30605,6.30003,0.006016
+914,125.768,7.95117,6.3119,6.30579,0.006112
+915,128.821,7.7627,6.30685,6.30083,0.006016
+916,129.081,7.74707,6.31187,6.30579,0.00608
+917,129.44,7.72559,6.30621,6.30006,0.006144
+918,131.594,7.59912,6.31194,6.30685,0.005088
+919,121.054,8.26074,6.31389,6.30746,0.006432
+920,123.292,8.11084,6.31414,6.30813,0.006016
+921,128.611,7.77539,6.30326,6.29718,0.00608
+922,132.18,7.56543,6.31197,6.3071,0.004864
+923,120.62,8.29053,6.30806,6.30179,0.006272
+924,125.899,7.94287,6.31325,6.30733,0.00592
+925,130.955,7.63623,6.30666,6.30051,0.006144
+926,112.158,8.91602,6.31274,6.30762,0.00512
+927,131.434,7.6084,6.3063,6.30016,0.006144
+928,116.298,8.59863,6.31194,6.30579,0.006144
+929,129.669,7.71191,6.30387,6.29773,0.006144
+930,117.149,8.53613,6.31171,6.3057,0.006016
+931,118.149,8.46387,6.30582,6.29965,0.006176
+932,117.728,8.49414,6.31373,6.30768,0.006048
+933,126.482,7.90625,6.30787,6.3017,0.006176
+934,127.252,7.8584,6.3121,6.30595,0.006144
+935,128.562,7.77832,6.30634,6.30019,0.006144
+936,129.13,7.74414,6.31194,6.30579,0.006144
+937,123.329,8.1084,6.30518,6.2992,0.005984
+938,118.19,8.46094,6.31024,6.30525,0.004992
+939,119.991,8.33398,6.30518,6.2992,0.005984
+940,123.806,8.07715,6.31194,6.30579,0.006144
+941,130.429,7.66699,6.30378,6.2976,0.006176
+942,128.724,7.76855,6.31382,6.30781,0.006016
+943,129.228,7.73828,6.30579,6.29965,0.006144
+944,124.287,8.0459,6.31194,6.30579,0.006144
+945,118.464,8.44141,6.30413,6.29795,0.006176
+946,128.24,7.79785,6.31398,6.30784,0.006144
+947,124.787,8.01367,6.30544,6.29942,0.006016
+948,128.064,7.80859,6.3103,6.30413,0.006176
+949,129.179,7.74121,6.3072,6.30122,0.005984
+950,124.635,8.02344,6.3143,6.30813,0.006176
+951,113.639,8.7998,6.30682,6.3008,0.006016
+952,126.217,7.92285,6.31216,6.30602,0.006144
+953,126.311,7.91699,6.30784,6.3017,0.006144
+954,125,8,6.31011,6.30397,0.006144
+955,126.124,7.92871,6.31139,6.30538,0.006016
+956,124.985,8.00098,6.31155,6.30554,0.006016
+957,126.404,7.91113,6.31213,6.30598,0.006144
+958,118.835,8.41504,6.31373,6.30774,0.005984
+959,125.475,7.96973,6.30563,6.29962,0.006016
+960,125.199,7.9873,6.31258,6.30659,0.005984
+961,124.909,8.00586,6.30608,6.29997,0.006112
+962,126.639,7.89648,6.31379,6.30778,0.006016
+963,125.829,7.94727,6.30573,6.29965,0.00608
+964,118.027,8.47266,6.31357,6.30758,0.005984
+965,127.332,7.85352,6.30579,6.29965,0.006144
+966,124.924,8.00488,6.31414,6.30816,0.005984
+967,131.316,7.61523,6.30646,6.30029,0.006176
+968,130.23,7.67871,6.31258,6.3064,0.006176
+969,129.982,7.69336,6.30554,6.29952,0.006016
+970,130.015,7.69141,6.31229,6.30614,0.006144
+971,127.697,7.83105,6.30579,6.29965,0.006144
+972,124.741,8.0166,6.31005,6.3039,0.006144
+973,126.108,7.92969,6.30566,6.29965,0.006016
+974,128.482,7.7832,6.31066,6.3057,0.00496
+975,130.181,7.68164,6.30608,6.30003,0.006048
+976,127.713,7.83008,6.31194,6.30592,0.006016
+977,126.827,7.88477,6.30582,6.29965,0.006176
+978,125.521,7.9668,6.31085,6.3047,0.006144
+979,119.836,8.34473,6.30566,6.29962,0.006048
+980,127.142,7.86523,6.31194,6.30579,0.006144
+981,130.946,7.63672,6.30426,6.29811,0.006144
+982,129.669,7.71191,6.31069,6.30458,0.006112
+983,127.617,7.83594,6.30531,6.2991,0.006208
+984,129.211,7.73926,6.30918,6.3032,0.005984
+985,130.829,7.64355,6.30461,6.29952,0.005088
+986,120.641,8.28906,6.31194,6.30579,0.006144
+987,127.442,7.84668,6.30358,6.29763,0.005952
+988,123.107,8.12305,6.31184,6.30579,0.006048
+989,121.485,8.23145,6.30378,6.2976,0.006176
+990,128.24,7.79785,6.3135,6.30736,0.006144
+991,124.939,8.00391,6.30774,6.3017,0.006048
+992,120.655,8.28809,6.31126,6.30531,0.005952
+993,117.769,8.49121,6.30518,6.29901,0.006176
+994,129,7.75195,6.31213,6.30608,0.006048
+995,131.908,7.58105,6.3057,6.29962,0.00608
+996,127.76,7.82715,6.31366,6.30765,0.006016
+997,120.442,8.30273,6.30438,6.29821,0.006176
+998,129.407,7.72754,6.30803,6.30301,0.005024
+999,111.135,8.99805,6.30442,6.29827,0.006144
+1000,115.51,8.65723,6.31398,6.30784,0.006144
+1001,131.704,7.59277,6.30387,6.29773,0.006144
+1002,122.327,8.1748,6.31949,6.31328,0.006208
+1003,119.626,8.35938,6.30582,6.29965,0.006176
+1004,125.721,7.9541,6.31194,6.30579,0.006144
+1005,123.463,8.09961,6.30835,6.30227,0.00608
+1006,125.969,7.93848,6.31411,6.3081,0.006016
+1007,130.379,7.66992,6.30384,6.29779,0.006048
+1008,122.561,8.15918,6.31402,6.30797,0.006048
+1009,124.756,8.01562,6.30582,6.29965,0.006176
+1010,126.171,7.92578,6.31398,6.30784,0.006144
+1011,120.329,8.31055,6.30496,6.29898,0.005984
+1012,128.144,7.80371,6.31194,6.30579,0.006144
+1013,125.168,7.98926,6.30467,6.2985,0.006176
+1014,123.716,8.08301,6.31402,6.30784,0.006176
+1015,129.407,7.72754,6.30784,6.3017,0.006144
+1016,126.811,7.88574,6.31158,6.3056,0.005984
+1017,118.081,8.46875,6.30474,6.29859,0.006144
+1018,114.708,8.71777,6.31398,6.30755,0.006432
+1019,127.221,7.86035,6.30518,6.29917,0.006016
+1020,127.506,7.84277,6.31123,6.30522,0.006016
+1021,129.538,7.71973,6.30566,6.29962,0.006048
+1022,123.181,8.11816,6.31197,6.30579,0.006176
+1023,125.076,7.99512,6.31251,6.30637,0.006144
+1024,121.529,8.22852,6.31398,6.30784,0.006144
+1025,124.121,8.05664,6.30454,6.2984,0.006144
+1026,128.935,7.75586,6.31194,6.30579,0.006144
+1027,128.919,7.75684,6.30374,6.2976,0.006144
+1028,128.048,7.80957,6.31306,6.30707,0.005984
+1029,124.423,8.03711,6.3063,6.30016,0.006144
+1030,129.817,7.70312,6.31152,6.30544,0.00608
+1031,128.935,7.75586,6.31286,6.30787,0.004992
+1032,114.311,8.74805,6.31085,6.30576,0.005088
+1033,113.337,8.82324,6.31194,6.30579,0.006144
+1034,125.829,7.94727,6.31008,6.3041,0.005984
+1035,116.589,8.57715,6.30589,6.29974,0.006144
+1036,126.124,7.92871,6.31226,6.30627,0.005984
+1037,121.083,8.25879,6.30394,6.29776,0.006176
+1038,127.569,7.83887,6.31165,6.30566,0.005984
+1039,131.501,7.60449,6.30506,6.29904,0.006016
+1040,130.596,7.65723,6.31392,6.3079,0.006016
+1041,128.176,7.80176,6.31162,6.3056,0.006016
+1042,130.562,7.65918,6.31229,6.3063,0.005984
+1043,124.954,8.00293,6.30186,6.29571,0.006144
+1044,119.57,8.36328,6.31549,6.30931,0.006176
+1045,122.605,8.15625,6.30579,6.3007,0.005088
+1046,125.876,7.94434,6.31408,6.30794,0.006144
+1047,129.653,7.71289,6.30544,6.29939,0.006048
+1048,128.45,7.78516,6.31309,6.30707,0.006016
+1049,130.413,7.66797,6.31174,6.30573,0.006016
+1050,123.181,8.11816,6.31194,6.30579,0.006144
+1051,121.514,8.22949,6.30554,6.29955,0.005984
+1052,130.846,7.64258,6.3112,6.30518,0.006016
+1053,125.567,7.96387,6.30627,6.30013,0.006144
+1054,129.702,7.70996,6.31411,6.30797,0.006144
+1055,129.719,7.70898,6.30378,6.29872,0.005056
+1056,121.212,8.25,6.31469,6.30963,0.005056
+1057,127.617,7.83594,6.30445,6.29818,0.006272
+1058,120.258,8.31543,6.31245,6.30637,0.00608
+1059,122.723,8.14844,6.31306,6.30707,0.005984
+1060,129.9,7.69824,6.31021,6.30426,0.005952
+1061,130.413,7.66797,6.30403,6.29789,0.006144
+1062,121.413,8.23633,6.31341,6.30742,0.005984
+1063,130.93,7.6377,6.30614,6.3,0.006144
+1064,126.326,7.91602,6.31194,6.30595,0.005984
+1065,125.413,7.97363,6.30618,6.3001,0.00608
+1066,129.933,7.69629,6.31194,6.3055,0.006432
+1067,129.326,7.73242,6.30602,6.29987,0.006144
+1068,123.911,8.07031,6.31181,6.30576,0.006048
+1069,130.762,7.64746,6.30579,6.29965,0.006144
+1070,127.84,7.82227,6.31405,6.30746,0.006592
+1071,116.536,8.58105,6.30579,6.29965,0.006144
+1072,114.158,8.75977,6.31034,6.30419,0.006144
+1073,125.799,7.94922,6.30928,6.30326,0.006016
+1074,119.668,8.35645,6.31178,6.30573,0.006048
+1075,127.76,7.82715,6.3064,6.30026,0.006144
+1076,116.922,8.55273,6.3168,6.31066,0.006144
+1077,122.065,8.19238,6.30461,6.29846,0.006144
+1078,128.128,7.80469,6.30998,6.30384,0.006144
+1079,126,7.93652,6.30579,6.29965,0.006144
+1080,124.969,8.00195,6.31197,6.30579,0.006176
+1081,123.642,8.08789,6.3049,6.29891,0.005984
+1082,128.984,7.75293,6.31178,6.30576,0.006016
+1083,127.173,7.86328,6.30499,6.29894,0.006048
+1084,119.626,8.35938,6.31101,6.30499,0.006016
+1085,128.369,7.79004,6.3057,6.29965,0.006048
+1086,128.854,7.76074,6.31171,6.30573,0.005984
+1087,126.811,7.88574,6.30384,6.29782,0.006016
+1088,124.408,8.03809,6.31283,6.30669,0.006144
+1089,121.789,8.21094,6.30419,6.29805,0.006144
+1090,122.959,8.13281,6.31219,6.30621,0.005984
+1091,124.756,8.01562,6.30784,6.30272,0.00512
+1092,129.26,7.73633,6.3127,6.30662,0.00608
+1093,131.586,7.59961,6.30608,6.30003,0.006048
+1094,124.574,8.02734,6.31123,6.30522,0.006016
+1095,128.821,7.7627,6.30374,6.2976,0.006144
+1096,129.032,7.75,6.31379,6.30781,0.005984
+1097,105.916,9.44141,6.30784,6.3017,0.006144
+1098,127.395,7.84961,6.31222,6.30624,0.005984
+1099,131.636,7.59668,6.30582,6.29965,0.006176
+1100,130.646,7.6543,6.31194,6.30579,0.006144
+1101,124.848,8.00977,6.30374,6.2976,0.006144
+1102,130.479,7.66406,6.31398,6.30886,0.00512
+1103,130.032,7.69043,6.30493,6.29894,0.005984
+1104,121.212,8.25,6.31072,6.30458,0.006144
+1105,122.065,8.19238,6.31565,6.29786,0.017792
+1106,126.279,7.91895,6.30989,6.30483,0.005056
+1107,124.665,8.02148,6.30576,6.29965,0.006112
+1108,127.984,7.81348,6.31354,6.30755,0.005984
+1109,129.801,7.7041,6.30522,6.2992,0.006016
+1110,129.016,7.75098,6.31197,6.30579,0.006176
+1111,125.721,7.9541,6.30579,6.29978,0.006016
+1112,119.584,8.3623,6.31194,6.30579,0.006144
+1113,123.448,8.10059,6.30698,6.30099,0.005984
+1114,127.968,7.81445,6.31302,6.30579,0.007232
+1115,127.031,7.87207,6.30493,6.29885,0.00608
+1116,124.106,8.05762,6.31283,6.30666,0.006176
+1117,121.977,8.19824,6.31555,6.30954,0.006016
+1118,120.783,8.2793,6.31139,6.30541,0.005984
+1119,125.845,7.94629,6.30579,6.30077,0.005024
+1120,129.834,7.70215,6.31181,6.30563,0.006176
+1121,122.123,8.18848,6.30746,6.30141,0.006048
+1122,123.716,8.08301,6.31376,6.30781,0.005952
+1123,126.874,7.88184,6.30563,6.29962,0.006016
+1124,124.016,8.06348,6.31242,6.30627,0.006144
+1125,122.488,8.16406,6.30534,6.29933,0.006016
+1126,127.3,7.85547,6.31398,6.30784,0.006144
+1127,132.608,7.54102,6.30771,6.30166,0.006048
+1128,127.569,7.83887,6.31136,6.30538,0.005984
+1129,114.516,8.73242,6.30403,6.29805,0.005984
+1130,123.299,8.11035,6.31194,6.30579,0.006144
+1131,125.506,7.96777,6.30589,6.29968,0.006208
+1132,130.197,7.68066,6.31136,6.30541,0.005952
+1133,121.37,8.23926,6.33037,6.30784,0.022528
+1134,129.162,7.74219,6.31194,6.30688,0.005056
+1135,129.26,7.73633,6.30742,6.30138,0.006048
+1136,129.081,7.74707,6.31424,6.30806,0.006176
+1137,117.728,8.49414,6.30906,6.30288,0.006176
+1138,126.233,7.92188,6.31398,6.30886,0.00512
+1139,130.496,7.66309,6.30467,6.29853,0.006144
+1140,127.729,7.8291,6.31197,6.30579,0.006176
+1141,123.478,8.09863,6.30582,6.29965,0.006176
+1142,128.724,7.76855,6.31366,6.30765,0.006016
+1143,123.522,8.0957,6.30666,6.30051,0.006144
+1144,129.049,7.74902,6.31149,6.30547,0.006016
+1145,116.152,8.60938,6.31584,6.30982,0.006016
+1146,124.393,8.03906,6.31379,6.30781,0.005984
+1147,120.005,8.33301,6.31296,6.30685,0.006112
+1148,127.617,7.83594,6.31162,6.3056,0.006016
+1149,125.168,7.98926,6.3055,6.29933,0.006176
+1150,115.589,8.65137,6.31258,6.3064,0.006176
+1151,119.836,8.34473,6.30762,6.30157,0.006048
+1152,130.646,7.6543,6.31398,6.30784,0.006144
+1153,129.244,7.7373,6.30627,6.30016,0.006112
+1154,123.746,8.08105,6.31194,6.30579,0.006144
+1155,122.988,8.13086,6.30586,6.29968,0.006176
+1156,118.711,8.42383,6.31194,6.30579,0.006144
+1157,123.971,8.06641,6.30477,6.29862,0.006144
+1158,125.829,7.94727,6.31254,6.3064,0.006144
+1159,131.417,7.60938,6.30582,6.29968,0.006144
+1160,131.383,7.61133,6.3119,6.30579,0.006112
+1161,131.484,7.60547,6.30637,6.30022,0.006144
+1162,129.801,7.7041,6.31168,6.3056,0.00608
+1163,129.949,7.69531,6.30579,6.30093,0.004864
+1164,127.984,7.81348,6.31296,6.30682,0.006144
+1165,120.386,8.30664,6.30435,6.29821,0.006144
+1166,131.535,7.60254,6.31178,6.30573,0.006048
+1167,131.687,7.59375,6.30614,6.30019,0.005952
+1168,129.179,7.74121,6.31398,6.30784,0.006144
+1169,131.993,7.57617,6.30794,6.30192,0.006016
+1170,129,7.75195,6.312,6.30586,0.006144
+1171,129.768,7.70605,6.30419,6.29907,0.00512
+1172,131.501,7.60449,6.31222,6.30624,0.005984
+1173,125.66,7.95801,6.30579,6.29965,0.006144
+1174,125.413,7.97363,6.31197,6.30579,0.006176
+1175,131.349,7.61328,6.30378,6.2976,0.006176
+1176,125.953,7.93945,6.31194,6.30579,0.006144
+1177,132.385,7.55371,6.30579,6.29965,0.006144
+1178,131.316,7.61523,6.31322,6.30723,0.005984
+1179,130.913,7.63867,6.30678,6.30064,0.006144
+1180,130.629,7.65527,6.31197,6.30579,0.006176
+1181,129.375,7.72949,6.30931,6.3017,0.007616
+1182,118.436,8.44336,6.3127,6.30656,0.006144
+1183,128.417,7.78711,6.30582,6.29965,0.006176
+1184,132.163,7.56641,6.31398,6.30784,0.006144
+1185,127.713,7.83008,6.30378,6.2976,0.006176
+1186,130.446,7.66602,6.31197,6.30579,0.006176
+1187,127,7.87402,6.30643,6.30048,0.005952
+1188,127.808,7.82422,6.31328,6.30723,0.006048
+1189,130.646,7.6543,6.30598,6.29987,0.006112
+1190,121.442,8.23438,6.31446,6.30829,0.006176
+1191,123.448,8.10059,6.30486,6.29891,0.005952
+1192,131.114,7.62695,6.31165,6.30557,0.00608
+1193,125.199,7.9873,6.30522,6.2992,0.006016
+1194,128.128,7.80469,6.3113,6.30531,0.005984
+1195,124.378,8.04004,6.30426,6.29811,0.006144
+1196,114.196,8.75684,6.31194,6.30579,0.006144
+1197,125.153,7.99023,6.30403,6.29786,0.006176
+1198,125.459,7.9707,6.31194,6.30579,0.006144
+1199,129.999,7.69238,6.30563,6.29962,0.006016
+1200,129.081,7.74707,6.31171,6.30554,0.006176
+1201,126.639,7.89648,6.30579,6.29965,0.006144
+1202,129.702,7.70996,6.31133,6.30531,0.006016
+1203,126.748,7.88965,6.30525,6.29926,0.005984
+1204,117.042,8.54395,6.31146,6.30499,0.006464
+1205,129.375,7.72949,6.30685,6.3009,0.005952
+1206,122.811,8.14258,6.31094,6.3049,0.006048
+1207,132.317,7.55762,6.30579,6.29965,0.006144
+1208,131.215,7.62109,6.31398,6.30784,0.006144
+1209,131.552,7.60156,6.30509,6.2991,0.005984
+1210,128.708,7.76953,6.31402,6.30784,0.006176
+1211,130.913,7.63867,6.30726,6.30128,0.005984
+1212,121.543,8.22754,6.31344,6.30746,0.005984
+1213,127.952,7.81543,6.30579,6.29978,0.006016
+1214,128.096,7.80664,6.31194,6.30579,0.006144
+1215,128.257,7.79688,6.30573,6.29971,0.006016
+1216,106.522,9.3877,6.31258,6.30643,0.006144
+1217,128,7.8125,6.30429,6.29814,0.006144
+1218,124.408,8.03809,6.3127,6.30656,0.006144
+1219,127.158,7.86426,6.30387,6.29782,0.006048
+1220,127.284,7.85645,6.31142,6.30541,0.006016
+1221,132.471,7.54883,6.30378,6.2976,0.006176
+1222,131.603,7.59863,6.31427,6.30832,0.005952
+1223,129.999,7.69238,6.30579,6.29981,0.005984
+1224,132.061,7.57227,6.3129,6.30675,0.006144
+1225,129.44,7.72559,6.30784,6.3017,0.006144
+1226,117.216,8.53125,6.31027,6.30413,0.006144
+1227,135.611,7.37402,6.30784,6.3017,0.006144
+1228,128.128,7.80469,6.31187,6.30582,0.006048
+1229,127.952,7.81543,6.30362,6.2976,0.006016
+1230,122.371,8.17188,6.3097,6.30374,0.005952
+1231,126.373,7.91309,6.30746,6.30147,0.005984
+1232,126.874,7.88184,6.31296,6.30701,0.005952
+1233,125.475,7.96973,6.30694,6.3009,0.006048
+1234,128.756,7.7666,6.31194,6.30579,0.006144
+1235,117.216,8.53125,6.30512,6.2991,0.006016
+1236,128.112,7.80566,6.31219,6.30624,0.005952
+1237,121.687,8.21777,6.30778,6.3017,0.00608
+1238,127.569,7.83887,6.31398,6.30784,0.006144
+1239,123.776,8.0791,6.30352,6.29738,0.006144
+1240,121.298,8.24414,6.3119,6.30579,0.006112
+1241,125.799,7.94922,6.30611,6.29997,0.006144
+1242,126.764,7.88867,6.31398,6.30784,0.006144
+1243,130.081,7.6875,6.30394,6.29779,0.006144
+1244,129.065,7.74805,6.31142,6.30547,0.005952
+1245,130.462,7.66504,6.30547,6.29946,0.006016
+1246,130.796,7.64551,6.31386,6.30784,0.006016
+1247,125.245,7.98438,6.30512,6.29917,0.005952
+1248,123.597,8.09082,6.31443,6.30829,0.006144
+1249,126.686,7.89355,6.30582,6.29965,0.006176
+1250,132.918,7.52344,6.31027,6.3041,0.006176
+1251,119.57,8.36328,6.30714,6.30112,0.006016
+1252,123.971,8.06641,6.31056,6.30554,0.005024
+1253,123.642,8.08789,6.30528,6.29923,0.006048
+1254,115.134,8.68555,6.31277,6.30672,0.006048
+1255,123.821,8.07617,6.30762,6.30163,0.005984
+1256,126.67,7.89453,6.31197,6.30579,0.006176
+1257,129.817,7.70312,6.30989,6.30374,0.006144
+1258,127.904,7.81836,6.31171,6.30576,0.005952
+1259,83.0225,12.0449,6.3039,6.29776,0.006144
+1260,101.507,9.85156,6.31184,6.30586,0.005984
+1261,113.475,8.8125,6.30643,6.30045,0.005984
+1262,129.768,7.70605,6.31021,6.30403,0.006176
+1263,129.391,7.72852,6.30499,6.29894,0.006048
+1264,128.676,7.77148,6.31194,6.30605,0.005888
+1265,131.383,7.61133,6.30624,6.30022,0.006016
+1266,131.013,7.63281,6.31306,6.30707,0.005984
+1267,131.013,7.63281,6.30474,6.29862,0.006112
+1268,128.773,7.76562,6.30989,6.30374,0.006144
+1269,124.605,8.02539,6.30582,6.29965,0.006176
+1270,129.456,7.72461,6.31142,6.30534,0.00608
+1271,133.073,7.51465,6.30355,6.29757,0.005984
+1272,130.313,7.67383,6.31181,6.30579,0.006016
+1273,128.289,7.79492,6.30378,6.2976,0.006176
+1274,133.039,7.5166,6.30989,6.30483,0.005056
+1275,130.579,7.6582,6.30582,6.29965,0.006176
+1276,131.806,7.58691,6.30989,6.30374,0.006144
+1277,130.662,7.65332,6.30378,6.29763,0.006144
+1278,125.69,7.95605,6.31194,6.30579,0.006144
+1279,121.948,8.2002,6.30726,6.30122,0.006048
+1280,131.08,7.62891,6.31213,6.30618,0.005952
+1281,129.686,7.71094,6.31242,6.30624,0.006176
+1282,127.888,7.81934,6.31261,6.30646,0.006144
+1283,128.756,7.7666,6.30394,6.29795,0.005984
+1284,128.24,7.79785,6.31146,6.30547,0.005984
+1285,127.872,7.82031,6.30419,6.29805,0.006144
+1286,117.796,8.48926,6.31222,6.30618,0.006048
+1287,122.225,8.18164,6.30374,6.2976,0.006144
+1288,126.905,7.87988,6.3041,6.29795,0.006144
+1289,127.856,7.82129,6.30579,6.30077,0.005024
+1290,131.299,7.61621,6.3137,6.30774,0.005952
+1291,129.653,7.71289,6.30266,6.29651,0.006144
+1292,126.264,7.91992,6.31373,6.30774,0.005984
+1293,124.802,8.0127,6.30202,6.29587,0.006144
+1294,119.85,8.34375,6.31382,6.30784,0.005984
+1295,127.936,7.81641,6.30582,6.29965,0.006176
+1296,129.933,7.69629,6.31264,6.30646,0.006176
+1297,124.741,8.0166,6.30582,6.29965,0.006176
+1298,119.963,8.33594,6.31187,6.30579,0.00608
+1299,124.787,8.01367,6.3056,6.29946,0.006144
+1300,124.151,8.05469,6.31398,6.30784,0.006144
+1301,131.08,7.62891,6.30374,6.2976,0.006144
+1302,128.74,7.76758,6.3119,6.30589,0.006016
+1303,125.845,7.94629,6.31008,6.30394,0.006144
+1304,132.027,7.57422,6.31357,6.30755,0.006016
+1305,130.863,7.6416,6.30659,6.30045,0.006144
+1306,123.806,8.07715,6.31309,6.3071,0.005984
+1307,117.162,8.53516,6.30355,6.29757,0.005984
+1308,128.417,7.78711,6.31402,6.30784,0.006176
+1309,121.861,8.20605,6.3065,6.30042,0.00608
+1310,125.031,7.99805,6.31398,6.30784,0.006144
+1311,126.046,7.93359,6.30554,6.29949,0.006048
+1312,130.247,7.67773,6.31194,6.30579,0.006144
+1313,126.279,7.91895,6.31062,6.30448,0.006144
+1314,119.417,8.37402,6.31206,6.30605,0.006016
+1315,118.56,8.43457,6.30374,6.29862,0.00512
+1316,130.496,7.66309,6.31101,6.30506,0.005952
+1317,128.466,7.78418,6.30579,6.29965,0.006144
+1318,127.729,7.8291,6.31402,6.30784,0.006176
+1319,125.413,7.97363,6.30448,6.29843,0.006048
+1320,119.487,8.36914,6.31206,6.30605,0.006016
+1321,126.498,7.90527,6.30579,6.29968,0.006112
+1322,128.321,7.79297,6.31062,6.30554,0.005088
+1323,126.373,7.91309,6.30506,6.29907,0.005984
+1324,128.692,7.77051,6.31334,6.3073,0.006048
+1325,123.284,8.11133,6.30381,6.29869,0.00512
+1326,131.653,7.5957,6.31104,6.30506,0.005984
+1327,113.037,8.84668,6.30586,6.30077,0.005088
+1328,130.93,7.6377,6.31216,6.30618,0.005984
+1329,125.922,7.94141,6.30374,6.2976,0.006144
+1330,123.299,8.11035,6.31194,6.30579,0.006144
+1331,127.601,7.83691,6.30624,6.30022,0.006016
+1332,122.767,8.14551,6.31357,6.30758,0.005984
+1333,121.313,8.24316,6.30637,6.30019,0.006176
+1334,122.752,8.14648,6.31056,6.30454,0.006016
+1335,123.716,8.08301,6.30429,6.29814,0.006144
+1336,125.521,7.9668,6.31283,6.30669,0.006144
+1337,127.585,7.83789,6.30758,6.30154,0.006048
+1338,128.257,7.79688,6.31181,6.30576,0.006048
+1339,117.755,8.49219,6.31139,6.30534,0.006048
+1340,98.1783,10.1855,6.31152,6.3055,0.006016
+1341,124.772,8.01465,6.31059,6.30445,0.006144
+1342,122.429,8.16797,6.31146,6.30544,0.006016
+1343,126.843,7.88379,6.30518,6.29795,0.007232
+1344,111.208,8.99219,6.31261,6.30646,0.006144
+1345,122.503,8.16309,6.30547,6.29949,0.005984
+1346,127.745,7.82812,6.3121,6.30592,0.006176
+1347,124.347,8.04199,6.30374,6.2976,0.006144
+1348,120.74,8.28223,6.31267,6.30771,0.00496
+1349,109.168,9.16016,6.31027,6.30413,0.006144
+1350,113.312,8.8252,6.31472,6.30874,0.005984
+1351,119.084,8.39746,6.30698,6.3009,0.00608
+1352,125.922,7.94141,6.31216,6.30602,0.006144
+1353,124.227,8.0498,6.30653,6.30038,0.006144
+1354,115.263,8.67578,6.3137,6.30771,0.005984
+1355,124.227,8.0498,6.30419,6.29818,0.006016
+1356,124.665,8.02148,6.31021,6.30403,0.006176
+1357,124.787,8.01367,6.30723,6.30106,0.006176
+1358,122.429,8.16797,6.3112,6.30522,0.005984
+1359,125.737,7.95312,6.30374,6.2976,0.006144
+1360,117.728,8.49414,6.31152,6.3055,0.006016
+1361,119.948,8.33691,6.30509,6.2991,0.005984
+1362,125.229,7.98535,6.31603,6.30989,0.006144
+1363,115.589,8.65137,6.30419,6.2991,0.005088
+1364,110.907,9.0166,6.31363,6.30755,0.00608
+1365,116.908,8.55371,6.30432,6.29818,0.006144
+1366,123.107,8.12305,6.30995,6.304,0.005952
+1367,126.639,7.89648,6.30595,6.2999,0.006048
+1368,123.791,8.07812,6.31402,6.30784,0.006176
+1369,111.232,8.99023,6.30435,6.29818,0.006176
+1370,123.493,8.09766,6.31254,6.3064,0.006144
+1371,128.401,7.78809,6.30579,6.30077,0.005024
+1372,119.948,8.33691,6.31187,6.30589,0.005984
+1373,125.046,7.99707,6.31389,6.30781,0.00608
+1374,130.098,7.68652,6.31389,6.30784,0.006048
+1375,121.212,8.25,6.30653,6.30035,0.006176
+1376,126.811,7.88574,6.31402,6.30784,0.006176
+1377,128.886,7.75879,6.30394,6.29779,0.006144
+1378,128.401,7.78809,6.31331,6.3073,0.006016
+1379,129.653,7.71289,6.30589,6.29971,0.006176
+1380,130.346,7.67188,6.31181,6.30438,0.007424
+1381,129.375,7.72949,6.31194,6.30579,0.006144
+1382,130.913,7.63867,6.31168,6.3056,0.00608
+1383,121.356,8.24023,6.30714,6.30134,0.005792
+1384,122.855,8.13965,6.31392,6.3079,0.006016
+1385,114.503,8.7334,6.30627,6.30045,0.005824
+1386,128.579,7.77734,6.31072,6.30576,0.00496
+1387,128.514,7.78125,6.30579,6.29965,0.006144
+1388,123.881,8.07227,6.31194,6.30579,0.006144
+1389,111.668,8.95508,6.30378,6.2976,0.006176
+1390,116.152,8.60938,6.31283,6.30666,0.006176
+1391,132.368,7.55469,6.30374,6.29872,0.005024
+1392,126.858,7.88281,6.31331,6.3073,0.006016
+1393,126.764,7.88867,6.30554,6.29946,0.00608
+1394,131.721,7.5918,6.31194,6.30688,0.005056
+1395,125,8,6.30445,6.2983,0.006144
+1396,122.9,8.13672,6.31302,6.30579,0.007232
+1397,128.112,7.80566,6.30496,6.29894,0.006016
+1398,131.552,7.60156,6.31248,6.30646,0.006016
+1399,127.92,7.81738,6.30374,6.2976,0.006144
+1400,131.013,7.63281,6.31142,6.30547,0.005952
+1401,127,7.87402,6.30726,6.30118,0.00608
+1402,124.802,8.0127,6.30989,6.3048,0.005088
+1403,114.824,8.70898,6.32013,6.30125,0.01888
+1404,123.24,8.11426,6.31194,6.30579,0.006144
+1405,120.684,8.28613,6.30374,6.29862,0.00512
+1406,130.33,7.67285,6.31178,6.30576,0.006016
+1407,130.796,7.64551,6.30576,6.29974,0.006016
+1408,125.768,7.95117,6.31405,6.30806,0.005984
+1409,119.57,8.36328,6.30544,6.29946,0.005984
+1410,132.317,7.55762,6.31142,6.30544,0.005984
+1411,130.596,7.65723,6.30579,6.29965,0.006144
+1412,129,7.75195,6.31194,6.30579,0.006144
+1413,130.779,7.64648,6.30717,6.30115,0.006016
+1414,126.623,7.89746,6.31194,6.30579,0.006144
+1415,131.064,7.62988,6.3055,6.29946,0.006048
+1416,130.048,7.68945,6.31194,6.30694,0.004992
+1417,113.212,8.83301,6.30765,6.30157,0.00608
+1418,129.768,7.70605,6.31274,6.30765,0.005088
+1419,130.746,7.64844,6.30394,6.29782,0.006112
+1420,127.079,7.86914,6.31414,6.30813,0.006016
+1421,126.592,7.89941,6.3055,6.29933,0.006176
+1422,124.212,8.05078,6.31197,6.30579,0.006176
+1423,127.11,7.86719,6.30374,6.2976,0.006144
+1424,119.85,8.34375,6.31226,6.30611,0.006144
+1425,127.713,7.83008,6.30544,6.29949,0.005952
+1426,125.583,7.96289,6.31088,6.30474,0.006144
+1427,129.016,7.75098,6.30666,6.30051,0.006144
+1428,130.479,7.66406,6.31194,6.30579,0.006144
+1429,128.208,7.7998,6.3017,6.29661,0.005088
+1430,125.352,7.97754,6.30989,6.30374,0.006144
+1431,114.12,8.7627,6.30579,6.29936,0.006432
+1432,129.244,7.7373,6.30982,6.30384,0.005984
+1433,126.357,7.91406,6.30698,6.30093,0.006048
+1434,132.694,7.53613,6.31392,6.3079,0.006016
+1435,123.24,8.11426,6.30461,6.29843,0.006176
+1436,129.834,7.70215,6.31341,6.30739,0.006016
+1437,118.573,8.43359,6.32554,6.31821,0.007328
+1438,120.826,8.27637,6.31254,6.30755,0.004992
+1439,121.934,8.20117,6.31568,6.29965,0.016032
+1440,123.181,8.11816,6.32448,6.31834,0.006144
+1441,116.655,8.57227,6.30576,6.29965,0.006112
+1442,121.471,8.23242,6.31194,6.30579,0.006144
+1443,122.679,8.15137,6.30496,6.29894,0.006016
+1444,126.576,7.90039,6.3145,6.30832,0.006176
+1445,131.4,7.61035,6.31382,6.30774,0.00608
+1446,129.244,7.7373,6.31366,6.30765,0.006016
+1447,127.316,7.85449,6.30643,6.30042,0.006016
+1448,125.69,7.95605,6.32323,6.30707,0.01616
+1449,128.064,7.80859,6.3032,6.29722,0.005984
+1450,120.57,8.29395,6.31149,6.30547,0.006016
+1451,129.424,7.72656,6.30394,6.29792,0.006016
+1452,129.883,7.69922,6.31293,6.30678,0.006144
+1453,130.181,7.68164,6.3079,6.30304,0.004864
+1454,132.163,7.56641,6.31194,6.30582,0.006112
+1455,132.591,7.54199,6.30394,6.29789,0.006048
+1456,127.395,7.84961,6.31398,6.30899,0.004992
+1457,130.779,7.64648,6.30374,6.29872,0.005024
+1458,126.373,7.91309,6.31424,6.30816,0.00608
+1459,120.386,8.30664,6.31194,6.30579,0.006144
+1460,130.612,7.65625,6.31216,6.30618,0.005984
+1461,130.93,7.6377,6.30534,6.29933,0.006016
+1462,128.595,7.77637,6.31402,6.30784,0.006176
+1463,133.229,7.50586,6.30378,6.2976,0.006176
+1464,129.768,7.70605,6.31194,6.30579,0.006144
+1465,128.756,7.7666,6.3072,6.30122,0.005984
+1466,127.729,7.8291,6.31382,6.30784,0.005984
+1467,120.954,8.26758,6.30374,6.2976,0.006144
+1468,115.85,8.63184,6.31242,6.30627,0.006144
+1469,128.273,7.7959,6.30387,6.29789,0.005984
+1470,124.605,8.02539,6.31069,6.30566,0.005024
+1471,130.363,7.6709,6.30454,6.29853,0.006016
+1472,126.326,7.91602,6.31386,6.30787,0.005984
+1473,123.806,8.07715,6.30582,6.29965,0.006176
+1474,120.343,8.30957,6.31286,6.30787,0.004992
+1475,128.176,7.80176,6.31075,6.30461,0.006144
+1476,131.976,7.57715,6.31261,6.30646,0.006144
+1477,130.346,7.67188,6.30701,6.30099,0.006016
+1478,128.837,7.76172,6.30928,6.3033,0.005984
+1479,129.097,7.74609,6.30685,6.30083,0.006016
+1480,128.805,7.76367,6.30989,6.30374,0.006144
+1481,115.134,8.68555,6.30602,6.2999,0.006112
+1482,125.953,7.93945,6.31398,6.30784,0.006144
+1483,128.08,7.80762,6.30784,6.30275,0.005088
+1484,129.065,7.74805,6.31194,6.30579,0.006144
+1485,126.326,7.91602,6.30493,6.29888,0.006048
+1486,130.679,7.65234,6.31469,6.30864,0.006048
+1487,128.466,7.78418,6.30758,6.3016,0.005984
+1488,128.305,7.79395,6.31082,6.30467,0.006144
+1489,124.136,8.05566,6.30781,6.30173,0.00608
+1490,129.326,7.73242,6.3137,6.30771,0.005984
+1491,129.686,7.71094,6.30704,6.30096,0.00608
+1492,126.843,7.88379,6.31392,6.30784,0.00608
+1493,127.016,7.87305,6.31283,6.30778,0.005056
+1494,132.078,7.57129,6.31578,6.30979,0.005984
+1495,130.015,7.69141,6.30659,6.30054,0.006048
+1496,125.245,7.98438,6.3119,6.30579,0.006112
+1497,117.701,8.49609,6.30579,6.30067,0.00512
+1498,122.312,8.17578,6.31248,6.30634,0.006144
+1499,129.44,7.72559,6.31344,6.30742,0.006016
+1500,128.273,7.7959,6.30989,6.30374,0.006144
+1501,124.287,8.0459,6.30378,6.2976,0.006176
+1502,118.67,8.42676,6.32003,6.3064,0.013632
+1503,101.286,9.87305,6.31462,6.30848,0.006144
+1504,127.458,7.8457,6.31328,6.30726,0.006016
+1505,122.959,8.13281,6.3065,6.30042,0.00608
+1506,130.779,7.64648,6.31194,6.30579,0.006144
+1507,123.956,8.06738,6.30659,6.30045,0.006144
+1508,121.457,8.2334,6.31165,6.30566,0.005984
+1509,121.702,8.2168,6.30435,6.29776,0.006592
+1510,121.876,8.20508,6.31136,6.30534,0.006016
+1511,126.984,7.875,6.30352,6.29741,0.006112
+1512,130.015,7.69141,6.31062,6.30451,0.006112
+1513,127.952,7.81543,6.30518,6.29936,0.005824
+1514,122.21,8.18262,6.31226,6.30611,0.006144
+1515,122.108,8.18945,6.3041,6.29811,0.005984
+1516,119.864,8.34277,6.3304,6.30979,0.020608
+1517,121.905,8.20312,6.3041,6.29811,0.005984
+1518,126.701,7.89258,6.30992,6.30374,0.006176
+1519,120.826,8.27637,6.30666,6.30048,0.006176
+1520,120.641,8.28906,6.31194,6.30685,0.005088
+1521,127.808,7.82422,6.30749,6.3015,0.005984
+1522,125.413,7.97363,6.31046,6.30432,0.006144
+1523,128.24,7.79785,6.30269,6.29658,0.006112
+1524,130.015,7.69141,6.3119,6.30586,0.006048
+1525,128.74,7.76758,6.30582,6.29965,0.006176
+1526,125.015,7.99902,6.3121,6.30611,0.005984
+1527,115.471,8.66016,6.31382,6.30774,0.00608
+1528,128.305,7.79395,6.31219,6.30621,0.005984
+1529,129.309,7.7334,6.31322,6.3072,0.006016
+1530,129.538,7.71973,6.31187,6.30586,0.006016
+1531,129.522,7.7207,6.3064,6.30026,0.006144
+1532,130.496,7.66309,6.31363,6.30762,0.006016
+1533,129.85,7.70117,6.30579,6.29965,0.006144
+1534,127.379,7.85059,6.31168,6.30566,0.006016
+1535,122.444,8.16699,6.30858,6.30243,0.006144
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..1f72f57
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_20000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,509.04,2.03004,0.498364,0.00664019,0.251513,0.00527263,0.00499025,0.00555938,0.218278,0.00611038
+max_1024,677.921,6.3645,0.845728,0.024576,0.591872,0.01568,0.02048,0.020896,0.249312,0.021536
+min_1024,157.121,1.4751,0.438528,0.004768,0.219136,0.004096,0.004064,0.004288,0.186368,0.004928
+512,569.363,1.75635,0.456096,0.007488,0.233472,0.0048,0.0056,0.00464,0.19408,0.006016
+513,515.609,1.93945,0.44704,0.00656,0.229056,0.004896,0.004096,0.006144,0.190208,0.00608
+514,586.862,1.70398,0.47104,0.007552,0.22736,0.004704,0.005696,0.004544,0.21504,0.006144
+515,629.041,1.58972,0.454592,0.00816,0.223264,0.004256,0.005632,0.004544,0.202656,0.00608
+516,591.822,1.6897,0.45472,0.006208,0.22528,0.006144,0.004096,0.006144,0.200704,0.006144
+517,582.936,1.71545,0.454656,0.006144,0.227328,0.005728,0.004512,0.005824,0.198976,0.006144
+518,593.494,1.68494,0.465984,0.007296,0.2336,0.004864,0.005536,0.004704,0.204032,0.005952
+519,621.925,1.60791,0.444416,0.006432,0.22528,0.005248,0.004864,0.005472,0.191104,0.006016
+520,481.486,2.0769,0.475136,0.007488,0.24768,0.004928,0.005504,0.004736,0.198656,0.006144
+521,586.357,1.70544,0.465536,0.006368,0.22944,0.004448,0.005344,0.004896,0.208768,0.006272
+522,453.7,2.2041,0.446336,0.007232,0.225504,0.004832,0.0056,0.00464,0.192448,0.00608
+523,558.838,1.78943,0.438528,0.006048,0.225216,0.004512,0.005312,0.004928,0.187392,0.00512
+524,489.425,2.04321,0.475136,0.006144,0.251264,0.004736,0.005696,0.004544,0.196576,0.006176
+525,596.78,1.67566,0.45392,0.007264,0.228128,0.004224,0.005632,0.005728,0.196576,0.006368
+526,616.542,1.62195,0.448512,0.007168,0.228352,0.006144,0.005248,0.004992,0.190464,0.006144
+527,619.527,1.61414,0.450176,0.00736,0.222016,0.00528,0.004896,0.00544,0.199072,0.006112
+528,467.127,2.14075,0.494144,0.006688,0.268128,0.005536,0.004864,0.005472,0.197312,0.006144
+529,583.725,1.71313,0.452608,0.006144,0.227328,0.005376,0.004864,0.00544,0.197312,0.006144
+530,442.619,2.25928,0.449184,0.006688,0.224896,0.004608,0.005824,0.004416,0.196608,0.006144
+531,460.225,2.17285,0.458016,0.00624,0.239616,0.00576,0.00448,0.005728,0.190176,0.006016
+532,637.311,1.56909,0.45056,0.007168,0.22768,0.004768,0.005664,0.004576,0.194656,0.006048
+533,618.031,1.61804,0.45328,0.0064,0.227744,0.005856,0.004384,0.00592,0.196832,0.006144
+534,637.659,1.56824,0.451104,0.006528,0.223392,0.006144,0.004096,0.006144,0.198656,0.006144
+535,518.612,1.92822,0.483328,0.006144,0.264192,0.005216,0.004896,0.005536,0.1912,0.006144
+536,545.588,1.83289,0.447424,0.006432,0.229952,0.005568,0.004768,0.005536,0.189024,0.006144
+537,602.264,1.6604,0.463296,0.006368,0.23824,0.005376,0.004864,0.005472,0.197152,0.005824
+538,624.152,1.60217,0.442848,0.006656,0.22544,0.006144,0.004096,0.006144,0.18832,0.006048
+539,378.506,2.64197,0.45072,0.006592,0.227296,0.004128,0.005664,0.004576,0.196352,0.006112
+540,577.674,1.73108,0.460768,0.007552,0.242208,0.005568,0.004768,0.0056,0.18896,0.006112
+541,612.211,1.63342,0.442976,0.006656,0.225664,0.004192,0.005664,0.004576,0.190176,0.006048
+542,609.071,1.64185,0.454688,0.006144,0.233472,0.005888,0.004352,0.00576,0.193952,0.00512
+543,493.613,2.02588,0.458752,0.00736,0.240448,0.006144,0.004096,0.006144,0.188416,0.006144
+544,592.25,1.68848,0.440736,0.006432,0.226848,0.004704,0.005728,0.004512,0.186368,0.006144
+545,571.708,1.74915,0.442848,0.006592,0.225312,0.00576,0.00448,0.005856,0.188704,0.006144
+546,629.912,1.58752,0.447008,0.006592,0.225408,0.00576,0.00448,0.005856,0.1928,0.006112
+547,553.775,1.80579,0.454688,0.006176,0.235392,0.004192,0.005728,0.004512,0.192512,0.006176
+548,421.551,2.37219,0.494016,0.006624,0.272704,0.005536,0.004864,0.005472,0.192768,0.006048
+549,593.924,1.68372,0.456576,0.0064,0.225632,0.005216,0.004864,0.004288,0.204032,0.006144
+550,589.48,1.69641,0.458336,0.007232,0.223776,0.005536,0.00512,0.00576,0.204736,0.006176
+551,568.968,1.75757,0.454688,0.006144,0.237024,0.00464,0.005248,0.004992,0.190624,0.006016
+552,575.281,1.73828,0.459968,0.006208,0.227232,0.005536,0.0048,0.005504,0.204704,0.005984
+553,606.68,1.64832,0.45728,0.006656,0.226752,0.004736,0.004096,0.006144,0.202752,0.006144
+554,609.978,1.6394,0.448,0.006304,0.222816,0.005568,0.004864,0.005472,0.195456,0.00752
+555,513.155,1.94873,0.485344,0.0064,0.269024,0.005696,0.004544,0.005792,0.187776,0.006112
+556,409.436,2.44238,0.460928,0.006848,0.234912,0.004704,0.005728,0.004512,0.198208,0.006016
+557,424.126,2.35779,0.48736,0.006144,0.27024,0.004192,0.0056,0.00464,0.190464,0.00608
+558,423.819,2.3595,0.477984,0.00656,0.250272,0.005472,0.004736,0.005568,0.199232,0.006144
+559,615.57,1.62451,0.4616,0.0064,0.233536,0.004576,0.00528,0.00496,0.200704,0.006144
+560,619.855,1.61328,0.45344,0.006656,0.225792,0.006144,0.00528,0.00496,0.198368,0.00624
+561,524.355,1.9071,0.452128,0.007648,0.22928,0.004736,0.005152,0.005088,0.194112,0.006112
+562,533.542,1.87427,0.455776,0.007232,0.234176,0.005568,0.004864,0.00528,0.192672,0.005984
+563,515.253,1.9408,0.710656,0.006176,0.490752,0.004832,0.006144,0.0056,0.191008,0.006144
+564,406.995,2.45703,0.453024,0.00672,0.229504,0.006144,0.004096,0.006144,0.194432,0.005984
+565,347.428,2.8783,0.483616,0.006432,0.262144,0.006016,0.004224,0.006112,0.192544,0.006144
+566,608.754,1.6427,0.45584,0.006144,0.23536,0.005568,0.004832,0.00544,0.192512,0.005984
+567,602.132,1.66077,0.446528,0.006208,0.229376,0.005792,0.004448,0.005888,0.188672,0.006144
+568,557.431,1.79395,0.458176,0.006432,0.235264,0.005536,0.00496,0.005696,0.194272,0.006016
+569,539.444,1.85376,0.48592,0.006592,0.262432,0.00592,0.00432,0.006016,0.19456,0.00608
+570,546.972,1.82825,0.455104,0.006432,0.231136,0.004704,0.004096,0.006144,0.196608,0.005984
+571,600.983,1.66394,0.459232,0.00656,0.235392,0.00464,0.005184,0.005056,0.196352,0.006048
+572,343.567,2.91064,0.501824,0.00672,0.28224,0.004768,0.0056,0.004608,0.191872,0.006016
+573,453.122,2.20691,0.490816,0.006272,0.263168,0.004992,0.004224,0.006144,0.199872,0.006144
+574,598,1.67224,0.46064,0.006144,0.237568,0.005952,0.004288,0.006048,0.194656,0.005984
+575,487.648,2.05066,0.473216,0.006272,0.233152,0.004416,0.00544,0.0048,0.212992,0.006144
+576,494.835,2.02087,0.50592,0.006208,0.280192,0.005568,0.005024,0.0056,0.197184,0.006144
+577,556.446,1.79712,0.505856,0.006144,0.273664,0.004864,0.004096,0.006144,0.2048,0.006144
+578,616.125,1.62305,0.450272,0.006208,0.22848,0.004928,0.005504,0.004736,0.1944,0.006016
+579,300.403,3.32886,0.495072,0.006464,0.270272,0.00416,0.005696,0.004544,0.197824,0.006112
+580,475.56,2.10278,0.531104,0.006432,0.306752,0.00496,0.005472,0.004736,0.196608,0.006144
+581,566.176,1.76624,0.452224,0.00752,0.228,0.005568,0.004672,0.005632,0.194784,0.006048
+582,447.895,2.23267,0.538624,0.006144,0.29696,0.0056,0.01488,0.006144,0.202752,0.006144
+583,524.859,1.90527,0.477184,0.007328,0.25648,0.00448,0.005344,0.004896,0.19248,0.006176
+584,588.168,1.7002,0.454432,0.006144,0.229376,0.006144,0.004096,0.006144,0.196608,0.00592
+585,424.324,2.35669,0.483296,0.006208,0.269536,0.004896,0.004096,0.006144,0.186368,0.006048
+586,555.427,1.80042,0.44992,0.006144,0.23344,0.005568,0.004704,0.005632,0.188448,0.005984
+587,470.399,2.12585,0.520096,0.006656,0.30112,0.00528,0.004864,0.00544,0.19072,0.006016
+588,521.02,1.91931,0.448128,0.006176,0.2288,0.004672,0.005728,0.00448,0.192288,0.005984
+589,537.745,1.85962,0.46864,0.00752,0.237888,0.004448,0.005376,0.004864,0.202496,0.006048
+590,569.601,1.75562,0.459456,0.0064,0.233408,0.004608,0.005792,0.004448,0.198656,0.006144
+591,569.007,1.75745,0.448032,0.006144,0.23072,0.0048,0.004096,0.006144,0.190016,0.006112
+592,578.572,1.72839,0.456544,0.006592,0.233312,0.005568,0.004832,0.00544,0.193216,0.007584
+593,493.108,2.02795,0.507904,0.006144,0.281984,0.004736,0.005152,0.005088,0.198656,0.006144
+594,582.397,1.71704,0.468064,0.006144,0.233472,0.006144,0.005216,0.005024,0.205952,0.006112
+595,254.964,3.92212,0.476704,0.006432,0.244928,0.00496,0.004064,0.006144,0.204096,0.00608
+596,410.771,2.43445,0.520864,0.006816,0.290816,0.006144,0.005216,0.005024,0.200704,0.006144
+597,415.142,2.40881,0.522912,0.019104,0.277824,0.0048,0.004096,0.006144,0.2048,0.006144
+598,362.446,2.75903,0.48848,0.006144,0.253312,0.004736,0.005696,0.004544,0.208096,0.005952
+599,547.045,1.828,0.4672,0.0064,0.231424,0.005376,0.004864,0.005984,0.208064,0.005088
+600,390.448,2.56116,0.544768,0.006144,0.299008,0.005568,0.016096,0.00496,0.207904,0.005088
+601,331.298,3.01843,0.480448,0.006304,0.233472,0.004224,0.005664,0.016672,0.208032,0.00608
+602,516.292,1.93689,0.470016,0.006432,0.247808,0.004832,0.0056,0.00464,0.19456,0.006144
+603,591.651,1.69019,0.462848,0.006144,0.229408,0.0056,0.004608,0.005888,0.205056,0.006144
+604,537.639,1.85999,0.483328,0.007168,0.250112,0.004864,0.005536,0.004704,0.2048,0.006144
+605,529.473,1.88867,0.492288,0.0064,0.27008,0.00496,0.004096,0.006144,0.194496,0.006112
+606,584.058,1.71216,0.456704,0.006144,0.231456,0.006112,0.005248,0.004992,0.196608,0.006144
+607,600.322,1.66577,0.45664,0.006208,0.229376,0.005696,0.004544,0.005824,0.198912,0.00608
+608,503.689,1.98535,0.459328,0.006656,0.233024,0.004544,0.005856,0.00544,0.198688,0.00512
+609,398.773,2.50769,0.53232,0.006496,0.292896,0.00544,0.0048,0.005504,0.197248,0.019936
+610,548.878,1.8219,0.477184,0.006144,0.251904,0.005696,0.004544,0.005792,0.19696,0.006144
+611,548.327,1.82373,0.448032,0.006432,0.22528,0.00592,0.00432,0.006144,0.193728,0.006208
+612,522.316,1.91455,0.503808,0.006144,0.27856,0.005984,0.004224,0.006112,0.196256,0.006528
+613,433.073,2.30908,0.718272,0.006176,0.490656,0.004928,0.006144,0.005504,0.198848,0.006016
+614,547.447,1.82666,0.450272,0.00624,0.226752,0.004672,0.005728,0.004512,0.19632,0.006048
+615,464.926,2.15088,0.462848,0.006144,0.241632,0.00416,0.005664,0.004544,0.19456,0.006144
+616,351.648,2.84375,0.473312,0.006368,0.249312,0.00464,0.005792,0.004448,0.196608,0.006144
+617,501.807,1.9928,0.55296,0.007616,0.31392,0.005504,0.004736,0.016384,0.199712,0.005088
+618,432.798,2.31055,0.474528,0.00624,0.247808,0.00576,0.00448,0.005888,0.198304,0.006048
+619,505.991,1.97632,0.465664,0.0064,0.243712,0.004608,0.005216,0.005024,0.19456,0.006144
+620,561.557,1.78076,0.473088,0.006144,0.24576,0.006016,0.004224,0.006112,0.198688,0.006144
+621,557.772,1.79285,0.455424,0.0064,0.22928,0.004704,0.004096,0.006144,0.198656,0.006144
+622,504.34,1.98279,0.49152,0.006144,0.253856,0.005568,0.004768,0.005536,0.209504,0.006144
+623,512.192,1.95239,0.489472,0.007904,0.253536,0.0048,0.004096,0.006144,0.20688,0.006112
+624,381.449,2.62158,0.479232,0.007552,0.249792,0.0048,0.0056,0.00464,0.200704,0.006144
+625,401.293,2.49194,0.505856,0.006144,0.271776,0.004736,0.005088,0.00512,0.206848,0.006144
+626,585.477,1.70801,0.463648,0.006592,0.237408,0.004608,0.005824,0.005984,0.197088,0.006144
+627,602.707,1.65918,0.464288,0.006496,0.233472,0.004256,0.005664,0.00544,0.202944,0.006016
+628,456.531,2.19043,0.475136,0.007392,0.248576,0.004128,0.00576,0.005536,0.1976,0.006144
+629,524.994,1.90479,0.479936,0.0064,0.248,0.004352,0.005568,0.004672,0.2048,0.006144
+630,593.623,1.68457,0.461824,0.006656,0.228864,0.00512,0.005344,0.004896,0.2048,0.006144
+631,564.187,1.77246,0.478592,0.006144,0.244992,0.004864,0.005472,0.004768,0.20624,0.006112
+632,336.013,2.97607,0.617056,0.006816,0.387296,0.006144,0.005248,0.004992,0.200544,0.006016
+633,609.161,1.6416,0.456512,0.0064,0.229888,0.005216,0.004864,0.00544,0.19872,0.005984
+634,471.889,2.11914,0.464224,0.006144,0.225312,0.00576,0.004448,0.005856,0.210656,0.006048
+635,503.07,1.98779,0.476512,0.007456,0.2424,0.005856,0.004384,0.005984,0.204224,0.006208
+636,510.024,1.96069,0.484416,0.006144,0.251328,0.004672,0.00576,0.00448,0.206016,0.006016
+637,537.039,1.86206,0.468992,0.006144,0.229376,0.005792,0.004448,0.006112,0.210976,0.006144
+638,498.539,2.00586,0.464064,0.006144,0.234976,0.00464,0.00576,0.00448,0.202048,0.006016
+639,353.347,2.83008,0.4608,0.006144,0.235552,0.005824,0.004384,0.005952,0.1968,0.006144
+640,569.839,1.75488,0.465504,0.006368,0.235904,0.006048,0.004192,0.006144,0.200704,0.006144
+641,642.006,1.55762,0.454048,0.006144,0.224672,0.004704,0.004096,0.006144,0.202208,0.00608
+642,395.329,2.52954,0.455136,0.006656,0.233408,0.005536,0.004864,0.00544,0.193248,0.005984
+643,571.03,1.75122,0.454304,0.006144,0.233088,0.00448,0.005344,0.004896,0.194336,0.006016
+644,642.409,1.55664,0.456352,0.006144,0.227328,0.006048,0.004192,0.006112,0.200512,0.006016
+645,604.754,1.65356,0.469248,0.0064,0.235136,0.00448,0.005344,0.004896,0.206848,0.006144
+646,450.308,2.2207,0.488992,0.006144,0.261792,0.005568,0.004864,0.00544,0.1992,0.005984
+647,477.723,2.09326,0.466912,0.0072,0.233632,0.004928,0.004096,0.006144,0.2048,0.006112
+648,610.979,1.63672,0.465248,0.006496,0.230816,0.004704,0.005696,0.004544,0.206976,0.006016
+649,603.596,1.65674,0.469664,0.006624,0.235104,0.004704,0.00512,0.00512,0.206848,0.006144
+650,502.577,1.98975,0.497664,0.006144,0.272256,0.005568,0.0048,0.005504,0.197248,0.006144
+651,576.739,1.73389,0.45456,0.006432,0.22976,0.005536,0.004704,0.005632,0.19616,0.006336
+652,610.887,1.63696,0.450656,0.00624,0.229312,0.005568,0.004736,0.005568,0.193088,0.006144
+653,579.104,1.72681,0.468224,0.006144,0.24576,0.00416,0.005632,0.004544,0.195904,0.00608
+654,565.121,1.76953,0.483008,0.006144,0.249856,0.00608,0.00416,0.006112,0.204672,0.005984
+655,541.083,1.84814,0.460576,0.006144,0.231168,0.004352,0.00544,0.0048,0.202624,0.006048
+656,311.27,3.21265,0.46592,0.006848,0.229728,0.005952,0.004256,0.00608,0.206912,0.006144
+657,400.508,2.49683,0.659488,0.007264,0.40848,0.005952,0.004288,0.02048,0.206848,0.006176
+658,459.915,2.17432,0.472032,0.006624,0.233984,0.005984,0.004256,0.006048,0.208992,0.006144
+659,508.693,1.96582,0.472736,0.006144,0.23552,0.005408,0.004832,0.005504,0.209312,0.006016
+660,520.921,1.91968,0.505568,0.008096,0.263264,0.00512,0.005312,0.005984,0.211168,0.006624
+661,420.793,2.37646,0.737568,0.006656,0.500096,0.005664,0.004576,0.006144,0.208416,0.006016
+662,438.262,2.28174,0.462464,0.00736,0.23024,0.005824,0.004384,0.005952,0.202688,0.006016
+663,368.743,2.71191,0.493568,0.006144,0.270336,0.005504,0.004736,0.0056,0.195104,0.006144
+664,483.475,2.06836,0.508064,0.006304,0.272384,0.006144,0.00512,0.00512,0.206304,0.006688
+665,477.612,2.09375,0.50912,0.006144,0.274432,0.005312,0.004864,0.005472,0.206784,0.006112
+666,331.526,3.01636,0.485792,0.006432,0.249984,0.005696,0.004544,0.00576,0.207232,0.006144
+667,522.983,1.91211,0.501664,0.0064,0.265728,0.004608,0.005312,0.004928,0.208576,0.006112
+668,550.612,1.81616,0.485152,0.007424,0.235392,0.004992,0.005408,0.004832,0.22112,0.005984
+669,370.712,2.69751,0.49136,0.006144,0.251904,0.005792,0.004448,0.005888,0.211136,0.006048
+670,607.175,1.64697,0.47104,0.0072,0.229792,0.004672,0.00576,0.00448,0.212992,0.006144
+671,658.098,1.51953,0.468576,0.007456,0.2424,0.0056,0.00464,0.005664,0.19664,0.006176
+672,551.798,1.81226,0.458752,0.0072,0.227904,0.005536,0.004896,0.00544,0.201632,0.006144
+673,481.373,2.07739,0.53312,0.00656,0.295072,0.00416,0.005632,0.004608,0.210944,0.006144
+674,589.353,1.69678,0.468992,0.006144,0.23296,0.004608,0.005792,0.00448,0.208864,0.006144
+675,629.186,1.58936,0.464896,0.0072,0.228352,0.005408,0.0048,0.005536,0.207456,0.006144
+676,413.445,2.4187,0.458112,0.006272,0.22528,0.006144,0.004096,0.006144,0.204096,0.00608
+677,467.633,2.13843,0.468992,0.006144,0.237312,0.004352,0.005472,0.004768,0.2048,0.006144
+678,603.062,1.6582,0.478336,0.006176,0.237184,0.005536,0.004896,0.00544,0.213088,0.006016
+679,649.026,1.54077,0.455872,0.006336,0.22704,0.004384,0.00544,0.0048,0.201856,0.006016
+680,515.674,1.93921,0.47104,0.007392,0.234272,0.005952,0.004288,0.006016,0.206976,0.006144
+681,566.293,1.76587,0.470432,0.006144,0.239008,0.004704,0.004096,0.006144,0.204288,0.006048
+682,604.933,1.65308,0.470976,0.006336,0.238752,0.00496,0.005472,0.004768,0.204608,0.00608
+683,567.706,1.76147,0.4608,0.006144,0.23136,0.00416,0.005856,0.005472,0.201664,0.006144
+684,385.869,2.59155,0.506176,0.006464,0.271712,0.004768,0.005664,0.004576,0.207936,0.005056
+685,592.507,1.68774,0.459904,0.006144,0.23552,0.005376,0.004864,0.005472,0.19632,0.006208
+686,587.072,1.70337,0.457728,0.006432,0.228064,0.006144,0.005184,0.005056,0.200704,0.006144
+687,570.871,1.75171,0.460672,0.007552,0.231616,0.004544,0.00528,0.00496,0.20064,0.00608
+688,529.609,1.88818,0.50928,0.006304,0.280576,0.005792,0.004448,0.006144,0.199936,0.00608
+689,585.477,1.70801,0.454752,0.006336,0.228896,0.004576,0.004096,0.006144,0.198624,0.00608
+690,610.432,1.63818,0.45536,0.006432,0.23392,0.006112,0.005248,0.004992,0.192512,0.006144
+691,634.744,1.57544,0.449216,0.006688,0.22496,0.004576,0.005376,0.005984,0.195488,0.006144
+692,519.599,1.92456,0.49568,0.006208,0.262144,0.006144,0.005152,0.005088,0.2048,0.006144
+693,501.715,1.99316,0.501504,0.007712,0.260032,0.00464,0.005184,0.005056,0.21264,0.00624
+694,621.359,1.60938,0.469088,0.006432,0.22752,0.005536,0.004864,0.005472,0.213248,0.006016
+695,489.894,2.04126,0.471648,0.006592,0.231584,0.006144,0.005408,0.004832,0.212,0.005088
+696,573.83,1.74268,0.463936,0.006144,0.237568,0.005632,0.004608,0.005696,0.198272,0.006016
+697,647.999,1.54321,0.4608,0.006624,0.223712,0.005888,0.004352,0.005952,0.207136,0.007136
+698,586.904,1.70386,0.46512,0.006176,0.231328,0.005568,0.004736,0.005568,0.20656,0.005184
+699,524.792,1.90552,0.471584,0.006592,0.235616,0.005632,0.004608,0.005728,0.207264,0.006144
+700,516.976,1.93433,0.470272,0.007456,0.231872,0.005568,0.004864,0.00544,0.209088,0.005984
+701,589.607,1.69604,0.466208,0.006304,0.229376,0.005216,0.004928,0.005472,0.208832,0.00608
+702,487.213,2.05249,0.485984,0.0064,0.246016,0.00576,0.00448,0.005856,0.212416,0.005056
+703,519.138,1.92627,0.483264,0.006368,0.243872,0.005504,0.004736,0.0056,0.210944,0.00624
+704,464.399,2.15332,0.479232,0.006144,0.249856,0.00576,0.00448,0.006112,0.200736,0.006144
+705,538.239,1.85791,0.479232,0.006144,0.253984,0.005184,0.004864,0.005472,0.19744,0.006144
+706,608.166,1.64429,0.454656,0.006144,0.229344,0.005568,0.004704,0.005568,0.197184,0.006144
+707,515.026,1.94165,0.49168,0.006432,0.264192,0.0056,0.00464,0.005696,0.199072,0.006048
+708,526.681,1.89868,0.475136,0.007776,0.233888,0.00592,0.00432,0.005888,0.2112,0.006144
+709,611.891,1.63428,0.47104,0.006144,0.232672,0.004928,0.004064,0.006144,0.210944,0.006144
+710,444.686,2.24878,0.569984,0.006656,0.329344,0.004896,0.005504,0.004736,0.212736,0.006112
+711,557.582,1.79346,0.4712,0.006304,0.236928,0.004736,0.004096,0.006144,0.206848,0.006144
+712,572.467,1.74683,0.462848,0.007424,0.230176,0.006112,0.005248,0.004992,0.202752,0.006144
+713,583.06,1.71509,0.4752,0.006208,0.234592,0.004992,0.004128,0.005952,0.213184,0.006144
+714,520.524,1.92114,0.500032,0.006624,0.24624,0.006144,0.005184,0.005056,0.224512,0.006272
+715,508.189,1.96777,0.488736,0.006144,0.2376,0.005408,0.0048,0.005536,0.222912,0.006336
+716,557.658,1.79321,0.485472,0.00624,0.233376,0.005568,0.004768,0.005504,0.223872,0.006144
+717,575.604,1.7373,0.47712,0.006208,0.224736,0.00464,0.005184,0.005056,0.225184,0.006112
+718,464.294,2.15381,0.517408,0.006144,0.270336,0.006112,0.004128,0.006144,0.218592,0.005952
+719,463.139,2.15918,0.524128,0.006208,0.270336,0.005824,0.004416,0.00592,0.22544,0.005984
+720,602.885,1.65869,0.469152,0.005984,0.2256,0.006144,0.004096,0.006144,0.21504,0.006144
+721,486.403,2.05591,0.473536,0.006592,0.237568,0.005568,0.004672,0.005664,0.207328,0.006144
+722,537.745,1.85962,0.462848,0.006144,0.2376,0.006112,0.004128,0.006112,0.196608,0.006144
+723,622.114,1.60742,0.462304,0.006368,0.228992,0.00448,0.005376,0.004864,0.206144,0.00608
+724,581.405,1.71997,0.464896,0.007392,0.231616,0.004704,0.005696,0.004576,0.204768,0.006144
+725,560.712,1.78345,0.466784,0.006144,0.239264,0.004448,0.005376,0.004864,0.200064,0.006624
+726,529.541,1.88843,0.503808,0.006144,0.276256,0.005568,0.004832,0.005472,0.199392,0.006144
+727,452.297,2.21094,0.458816,0.006208,0.22864,0.004832,0.004096,0.006144,0.202752,0.006144
+728,598.131,1.67188,0.468736,0.006144,0.237344,0.005536,0.004896,0.005472,0.203328,0.006016
+729,549.799,1.81885,0.472352,0.007392,0.23632,0.00576,0.00448,0.005856,0.206592,0.005952
+730,518.678,1.92798,0.464896,0.006144,0.23344,0.005568,0.004704,0.005824,0.203072,0.006144
+731,614.185,1.62817,0.469888,0.006592,0.234016,0.005696,0.004544,0.005824,0.207168,0.006048
+732,596.389,1.67676,0.464064,0.006144,0.228544,0.004928,0.005312,0.004928,0.208256,0.005952
+733,503.38,1.98657,0.524288,0.006144,0.286752,0.005248,0.004864,0.005472,0.209664,0.006144
+734,587.24,1.70288,0.474688,0.007232,0.23648,0.00576,0.00448,0.005856,0.208256,0.006624
+735,673.906,1.48389,0.459616,0.006656,0.221536,0.005696,0.004544,0.005792,0.209248,0.006144
+736,497.389,2.0105,0.478912,0.006272,0.228864,0.004608,0.005824,0.005472,0.221856,0.006016
+737,555.315,1.80078,0.49152,0.007648,0.24192,0.004384,0.005472,0.004768,0.221184,0.006144
+738,520.855,1.91992,0.736704,0.006144,0.485376,0.006144,0.004096,0.006144,0.222784,0.006016
+739,618.357,1.61719,0.475136,0.006144,0.227328,0.005536,0.004704,0.005632,0.21968,0.006112
+740,623.25,1.60449,0.47712,0.007424,0.228096,0.006144,0.004096,0.006144,0.219136,0.00608
+741,578.286,1.72925,0.485376,0.006144,0.235488,0.00416,0.005664,0.004544,0.223232,0.006144
+742,447.308,2.2356,0.74496,0.006336,0.49152,0.005984,0.004256,0.006112,0.224768,0.005984
+743,592.079,1.68896,0.467424,0.006752,0.230624,0.004896,0.004096,0.006144,0.20864,0.006272
+744,340.143,2.93994,0.514048,0.007424,0.260128,0.004832,0.0056,0.00464,0.22528,0.006144
+745,540.441,1.85034,0.485216,0.006144,0.24112,0.00464,0.005152,0.005088,0.216864,0.006208
+746,567.942,1.76074,0.481504,0.006624,0.229536,0.006112,0.004096,0.006144,0.223008,0.005984
+747,541.226,1.84766,0.471168,0.006272,0.227328,0.005504,0.004736,0.0056,0.215712,0.006016
+748,518.219,1.92969,0.476384,0.006144,0.231424,0.006144,0.004096,0.006144,0.216352,0.00608
+749,473.034,2.11401,0.734272,0.006144,0.485376,0.006016,0.005536,0.004832,0.220256,0.006112
+750,606.635,1.64844,0.466272,0.00624,0.22528,0.005632,0.004608,0.005696,0.212896,0.00592
+751,448.729,2.22852,0.492992,0.00656,0.253952,0.004192,0.005664,0.005568,0.210944,0.006112
+752,419.586,2.3833,0.512928,0.006432,0.280896,0.005568,0.004864,0.005472,0.203552,0.006144
+753,609.342,1.64111,0.464832,0.006656,0.229376,0.005664,0.004576,0.005824,0.206656,0.00608
+754,541.942,1.84521,0.465024,0.006144,0.231392,0.005536,0.004736,0.005568,0.20656,0.005088
+755,548.18,1.82422,0.499616,0.006624,0.255616,0.004896,0.00512,0.005088,0.21616,0.006112
+756,487.039,2.05322,0.73984,0.006592,0.493248,0.004928,0.005504,0.004736,0.218848,0.005984
+757,564.81,1.77051,0.475168,0.006304,0.233152,0.004416,0.005408,0.004832,0.215008,0.006048
+758,485.366,2.0603,0.4856,0.006432,0.2376,0.006144,0.00528,0.00496,0.219136,0.006048
+759,552.022,1.81152,0.467104,0.006432,0.235424,0.004416,0.005408,0.004832,0.204512,0.00608
+760,495.524,2.01807,0.462848,0.007456,0.228064,0.006144,0.005152,0.005088,0.2048,0.006144
+761,595.695,1.67871,0.463904,0.006144,0.231488,0.005952,0.004224,0.006112,0.203936,0.006048
+762,544.826,1.83545,0.466944,0.007232,0.236032,0.004608,0.005824,0.00544,0.201664,0.006144
+763,483.76,2.06714,0.497792,0.006368,0.26736,0.004896,0.004224,0.006112,0.202752,0.00608
+764,551.279,1.81396,0.479232,0.006144,0.229376,0.006144,0.005216,0.005024,0.221184,0.006144
+765,561.019,1.78247,0.483104,0.007232,0.232384,0.005632,0.004608,0.006144,0.221024,0.00608
+766,417.746,2.3938,0.482912,0.007808,0.23376,0.005568,0.004768,0.005568,0.21936,0.00608
+767,552.022,1.81152,0.481632,0.006368,0.237696,0.00592,0.00432,0.006016,0.215168,0.006144
+768,422.66,2.36597,0.47264,0.007264,0.222176,0.00608,0.005312,0.004928,0.22096,0.00592
+769,337.536,2.96265,0.540672,0.007232,0.291776,0.00528,0.004864,0.005472,0.219904,0.006144
+770,565.433,1.76855,0.503808,0.007456,0.25424,0.005568,0.004864,0.00544,0.220096,0.006144
+771,600.851,1.66431,0.476064,0.0064,0.225984,0.005792,0.004416,0.00592,0.221408,0.006144
+772,370.444,2.69946,0.481664,0.0064,0.231552,0.005632,0.004608,0.005696,0.221632,0.006144
+773,484.562,2.06372,0.49104,0.006368,0.254112,0.00544,0.0048,0.005536,0.208736,0.006048
+774,601.027,1.66382,0.462912,0.006208,0.225312,0.005824,0.004384,0.006144,0.208896,0.006144
+775,336.87,2.96851,0.466944,0.007328,0.228192,0.0056,0.00464,0.005728,0.209312,0.006144
+776,411.41,2.43066,0.530432,0.006144,0.290656,0.005568,0.004832,0.005472,0.211616,0.006144
+777,476.002,2.10083,0.479104,0.0064,0.240128,0.005184,0.004832,0.005472,0.211072,0.006016
+778,343.192,2.91382,0.493664,0.0064,0.258752,0.006112,0.004128,0.006144,0.206112,0.006016
+779,409.887,2.4397,0.532512,0.006176,0.301056,0.0056,0.00464,0.005728,0.204256,0.005056
+780,472.543,2.11621,0.518848,0.006432,0.26576,0.004992,0.005408,0.004832,0.224736,0.006688
+781,433.027,2.30933,0.490976,0.006144,0.253696,0.004352,0.00544,0.0048,0.210432,0.006112
+782,471.401,2.12134,0.50384,0.007808,0.268672,0.005984,0.004256,0.006048,0.204896,0.006176
+783,612.623,1.63232,0.462496,0.006144,0.229152,0.00432,0.005472,0.004768,0.206592,0.006048
+784,447.699,2.23364,0.488576,0.006144,0.249856,0.006144,0.005248,0.004992,0.210208,0.005984
+785,481.146,2.07837,0.542624,0.006432,0.305152,0.004096,0.005728,0.004512,0.210592,0.006112
+786,619.012,1.61548,0.471072,0.006144,0.232992,0.004576,0.005824,0.005984,0.209376,0.006176
+787,473.8,2.1106,0.463552,0.006624,0.230688,0.00496,0.004192,0.006144,0.2048,0.006144
+788,439.768,2.27393,0.509792,0.0064,0.256416,0.01568,0.004864,0.005856,0.21328,0.007296
+789,595.435,1.67944,0.468736,0.0072,0.228352,0.00528,0.004928,0.005984,0.210912,0.00608
+790,445.266,2.24585,0.546816,0.007616,0.295456,0.005568,0.004704,0.005632,0.221696,0.006144
+791,548.694,1.82251,0.471296,0.0064,0.233472,0.00416,0.005664,0.004512,0.210944,0.006144
+792,532.778,1.87695,0.50352,0.006272,0.264192,0.005632,0.004608,0.005728,0.211136,0.005952
+793,609.342,1.64111,0.463456,0.006624,0.229504,0.005536,0.004704,0.005664,0.20528,0.006144
+794,606.276,1.64941,0.461824,0.00656,0.225888,0.00576,0.00448,0.005856,0.207136,0.006144
+795,535.285,1.86816,0.479936,0.006688,0.240864,0.005056,0.004096,0.006144,0.210944,0.006144
+796,536.758,1.86304,0.501248,0.006496,0.251808,0.005568,0.004768,0.00576,0.2208,0.006048
+797,564.343,1.77197,0.483328,0.006144,0.233024,0.004544,0.00544,0.0048,0.223232,0.006144
+798,381.343,2.62231,0.481216,0.006688,0.237792,0.005344,0.004864,0.005728,0.214816,0.005984
+799,515.026,1.94165,0.491584,0.006176,0.247808,0.005696,0.004544,0.005984,0.2152,0.006176
+800,407.927,2.45142,0.74752,0.007232,0.498624,0.006144,0.005248,0.004992,0.219136,0.006144
+801,564.654,1.771,0.474624,0.006464,0.235264,0.004352,0.00544,0.0048,0.212256,0.006048
+802,544.971,1.83496,0.471072,0.006176,0.233472,0.006144,0.005184,0.005056,0.208896,0.006144
+803,405.705,2.46484,0.497536,0.006304,0.25936,0.004832,0.004096,0.006144,0.210784,0.006016
+804,563.954,1.77319,0.483328,0.007296,0.236416,0.006112,0.004128,0.006144,0.217088,0.006144
+805,405.224,2.46777,0.466944,0.006144,0.229216,0.004256,0.005856,0.00544,0.209888,0.006144
+806,475.395,2.10352,0.477184,0.007264,0.240544,0.006144,0.004096,0.006144,0.206848,0.006144
+807,568.258,1.75977,0.487392,0.007392,0.244544,0.00528,0.004896,0.00544,0.213728,0.006112
+808,544.608,1.83618,0.47104,0.006144,0.231424,0.006144,0.005152,0.005088,0.210944,0.006144
+809,412.529,2.42407,0.483296,0.00624,0.24736,0.004576,0.005248,0.00496,0.2088,0.006112
+810,577.064,1.73291,0.490272,0.006528,0.245376,0.004896,0.005536,0.004704,0.217088,0.006144
+811,594.14,1.68311,0.469568,0.006624,0.227424,0.00576,0.00448,0.005888,0.213248,0.006144
+812,377.303,2.65039,0.479264,0.006624,0.235776,0.006144,0.004096,0.006144,0.214464,0.006016
+813,513.155,1.94873,0.544992,0.006368,0.310656,0.004736,0.005152,0.005088,0.206848,0.006144
+814,591.053,1.69189,0.47136,0.006496,0.228992,0.005568,0.004864,0.005472,0.213856,0.006112
+815,500.183,1.99927,0.48704,0.007488,0.23952,0.004896,0.005504,0.004736,0.218816,0.00608
+816,478.784,2.08862,0.510912,0.006752,0.266592,0.005632,0.004608,0.005728,0.215456,0.006144
+817,394.491,2.53491,0.751744,0.006304,0.503776,0.006144,0.005792,0.005984,0.2176,0.006144
+818,533.056,1.87598,0.47776,0.006432,0.237856,0.00592,0.00432,0.006016,0.211072,0.006144
+819,400.391,2.49756,0.526048,0.00736,0.274976,0.004416,0.005408,0.0048,0.222976,0.006112
+820,567.156,1.76318,0.47776,0.006368,0.231936,0.006144,0.004096,0.006144,0.217024,0.006048
+821,544.826,1.83545,0.485376,0.006144,0.237568,0.005344,0.004864,0.005408,0.219904,0.006144
+822,455.212,2.19678,0.494432,0.0064,0.25216,0.005568,0.004864,0.006016,0.213376,0.006048
+823,508.126,1.96802,0.483328,0.006144,0.239616,0.005536,0.004704,0.005664,0.21552,0.006144
+824,529.062,1.89014,0.476256,0.006144,0.24144,0.005568,0.004864,0.005472,0.206816,0.005952
+825,538.947,1.85547,0.487392,0.006432,0.241856,0.005856,0.004384,0.005952,0.21632,0.006592
+826,456.633,2.18994,0.475904,0.006656,0.235808,0.006144,0.004096,0.006144,0.210944,0.006112
+827,412.114,2.42651,0.479232,0.006144,0.24496,0.004896,0.004096,0.006144,0.206848,0.006144
+828,519.929,1.92334,0.516736,0.006592,0.27664,0.00576,0.00448,0.005856,0.211232,0.006176
+829,486.403,2.05591,0.48736,0.00656,0.239616,0.00576,0.00448,0.005792,0.219104,0.006048
+830,473.91,2.11011,0.478048,0.006624,0.242048,0.005696,0.004544,0.005792,0.207264,0.00608
+831,548.841,1.82202,0.484064,0.0064,0.236032,0.005216,0.004896,0.00544,0.219936,0.006144
+832,525.398,1.90332,0.479136,0.0064,0.229952,0.005952,0.004288,0.006048,0.220512,0.005984
+833,464.715,2.15186,0.561088,0.006144,0.311296,0.004096,0.00576,0.00448,0.223232,0.00608
+834,541.799,1.8457,0.4936,0.007168,0.245856,0.005024,0.005408,0.004832,0.220192,0.00512
+835,474.404,2.10791,0.464896,0.006144,0.231456,0.0056,0.004608,0.005728,0.205216,0.006144
+836,442.189,2.26147,0.489472,0.007712,0.255744,0.004832,0.005568,0.004672,0.2048,0.006144
+837,528.039,1.8938,0.468992,0.006144,0.242848,0.004928,0.004128,0.006144,0.198656,0.006144
+838,572.627,1.74634,0.466272,0.007424,0.23424,0.005664,0.004576,0.005536,0.202752,0.00608
+839,440.999,2.26758,0.480096,0.006944,0.237696,0.00544,0.0048,0.006048,0.212992,0.006176
+840,485.136,2.06128,0.496288,0.00672,0.251936,0.005568,0.0048,0.005888,0.215296,0.00608
+841,556.597,1.79663,0.469376,0.0064,0.231808,0.006176,0.004064,0.006112,0.2088,0.006016
+842,524.725,1.90576,0.477184,0.007296,0.236416,0.006144,0.005472,0.004768,0.210944,0.006144
+843,450.308,2.2207,0.524096,0.006144,0.292,0.00496,0.005408,0.004832,0.204672,0.00608
+844,511.616,1.95459,0.472864,0.007328,0.237952,0.004576,0.005824,0.005472,0.205632,0.00608
+845,524.322,1.90723,0.481312,0.00768,0.240128,0.004096,0.00576,0.00448,0.212992,0.006176
+846,524.59,1.90625,0.490048,0.006368,0.254272,0.006144,0.004096,0.006144,0.206848,0.006176
+847,482.905,2.0708,0.52016,0.006496,0.284672,0.005312,0.004832,0.005536,0.207232,0.00608
+848,506.242,1.97534,0.485024,0.006528,0.243232,0.004832,0.0056,0.00464,0.214176,0.006016
+849,553.813,1.80566,0.49248,0.006432,0.246464,0.005568,0.00464,0.00592,0.217312,0.006144
+850,344.288,2.90454,0.483424,0.00624,0.24576,0.0056,0.00464,0.005696,0.209344,0.006144
+851,507.056,1.97217,0.493568,0.007328,0.254816,0.005568,0.004672,0.005664,0.209376,0.006144
+852,543.308,1.84058,0.479232,0.006144,0.23552,0.006144,0.005184,0.005056,0.21504,0.006144
+853,476.445,2.09888,0.496672,0.006176,0.251488,0.00448,0.005344,0.004896,0.21824,0.006048
+854,465.507,2.14819,0.50208,0.006336,0.247104,0.0048,0.005664,0.004736,0.228256,0.005184
+855,554.638,1.80298,0.485376,0.006144,0.239616,0.00544,0.0048,0.005568,0.217664,0.006144
+856,551.427,1.81348,0.47104,0.006144,0.232864,0.004704,0.005728,0.004512,0.210944,0.006144
+857,477.167,2.0957,0.493472,0.006208,0.257024,0.005024,0.004192,0.006144,0.208768,0.006112
+858,420.923,2.37573,0.477376,0.00656,0.23584,0.005824,0.004416,0.00592,0.212832,0.005984
+859,554.413,1.80371,0.477184,0.006144,0.241056,0.004704,0.005216,0.005024,0.208896,0.006144
+860,426.8,2.34302,0.493824,0.0064,0.258048,0.005696,0.004544,0.00576,0.207232,0.006144
+861,529.199,1.88965,0.489632,0.006304,0.24528,0.004576,0.005248,0.005024,0.218112,0.005088
+862,583.559,1.71362,0.480416,0.006144,0.23056,0.00496,0.006016,0.005472,0.221216,0.006048
+863,481.373,2.07739,0.485376,0.006144,0.237568,0.005888,0.004352,0.005984,0.219296,0.006144
+864,498.176,2.00732,0.548864,0.006144,0.311296,0.005472,0.004768,0.005536,0.209536,0.006112
+865,573.429,1.7439,0.479232,0.006144,0.233408,0.00416,0.005856,0.00544,0.21808,0.006144
+866,425.735,2.34888,0.479232,0.006144,0.243712,0.005632,0.004608,0.005696,0.207296,0.006144
+867,419.5,2.38379,0.496,0.0064,0.253408,0.004832,0.004064,0.006144,0.214976,0.006176
+868,564.966,1.77002,0.479936,0.0064,0.235968,0.006144,0.004096,0.006144,0.21504,0.006144
+869,591.395,1.69092,0.47104,0.007584,0.227936,0.005824,0.004416,0.005888,0.213248,0.006144
+870,546.206,1.83081,0.475136,0.006144,0.231456,0.005888,0.00432,0.007296,0.213888,0.006144
+871,506.054,1.97607,0.524416,0.006272,0.284672,0.006016,0.004224,0.006112,0.212032,0.005088
+872,545.842,1.83203,0.479328,0.006144,0.23504,0.004576,0.00592,0.005472,0.217088,0.005088
+873,589.777,1.69556,0.483392,0.0064,0.23168,0.006048,0.004192,0.006144,0.22288,0.006048
+874,364.575,2.74292,0.475904,0.006432,0.231168,0.004832,0.005664,0.004576,0.217088,0.006144
+875,452.247,2.21118,0.516672,0.006432,0.274752,0.004256,0.005696,0.004384,0.215008,0.006144
+876,547.082,1.82788,0.495616,0.006144,0.249856,0.005632,0.004608,0.005728,0.217504,0.006144
+877,418.044,2.39209,0.483488,0.006432,0.23712,0.00464,0.00528,0.00496,0.21904,0.006016
+878,519.797,1.92383,0.47712,0.006432,0.232864,0.004768,0.005664,0.004576,0.216768,0.006048
+879,574.555,1.74048,0.484576,0.006144,0.237568,0.005312,0.004864,0.00544,0.219168,0.00608
+880,540.797,1.84912,0.466464,0.007296,0.227328,0.004992,0.00544,0.0048,0.21056,0.006048
+881,325.002,3.0769,0.4952,0.006144,0.245248,0.004608,0.005728,0.004512,0.222912,0.006048
+882,467.633,2.13843,0.5056,0.006144,0.264192,0.00576,0.00448,0.005856,0.21312,0.006048
+883,498.965,2.00415,0.511392,0.006144,0.265856,0.00448,0.005344,0.004896,0.218464,0.006208
+884,372.296,2.68604,0.503008,0.006144,0.264224,0.005728,0.00448,0.006048,0.210304,0.00608
+885,507.245,1.97144,0.49344,0.006144,0.24496,0.004896,0.004096,0.006144,0.221152,0.006048
+886,512.384,1.95166,0.483328,0.007456,0.23744,0.00496,0.005472,0.004768,0.217088,0.006144
+887,371.857,2.68921,0.525536,0.006144,0.282624,0.004096,0.005696,0.004544,0.216192,0.00624
+888,376.956,2.65283,0.501504,0.007584,0.248416,0.00608,0.00416,0.006144,0.223136,0.005984
+889,471.238,2.12207,0.510432,0.0064,0.268032,0.004576,0.005248,0.004992,0.21504,0.006144
+890,312.982,3.19507,0.523136,0.0064,0.285312,0.006016,0.004224,0.006144,0.208896,0.006144
+891,559.028,1.78882,0.486912,0.006144,0.253632,0.004416,0.00544,0.0048,0.206272,0.006208
+892,468.382,2.13501,0.468512,0.006144,0.23136,0.005568,0.004736,0.0056,0.209024,0.00608
+893,453.499,2.20508,0.553248,0.0064,0.31456,0.00496,0.004096,0.006144,0.210976,0.006112
+894,536.336,1.8645,0.487744,0.006464,0.241696,0.006112,0.004096,0.006144,0.217088,0.006144
+895,451.25,2.21606,0.526368,0.006176,0.27648,0.005888,0.004352,0.005984,0.221344,0.006144
+896,386.342,2.58838,0.493568,0.006144,0.246848,0.005056,0.005376,0.004864,0.220224,0.005056
+897,519.138,1.92627,0.488192,0.006432,0.241472,0.004768,0.004096,0.006144,0.219136,0.006144
+898,600.234,1.66602,0.485824,0.006464,0.239392,0.004768,0.005696,0.004544,0.218944,0.006016
+899,441.237,2.26636,0.487424,0.007584,0.243616,0.0048,0.004096,0.006144,0.21504,0.006144
+900,520.127,1.92261,0.489472,0.007168,0.244768,0.00608,0.004128,0.006144,0.21504,0.006144
+901,602.796,1.65894,0.473408,0.0064,0.22944,0.005952,0.004288,0.006016,0.215168,0.006144
+902,375.435,2.66357,0.481824,0.006656,0.236896,0.004768,0.005664,0.005952,0.215712,0.006176
+903,453.248,2.2063,0.4976,0.006144,0.256,0.005152,0.004864,0.00544,0.21376,0.00624
+904,530.364,1.8855,0.475136,0.006144,0.228832,0.00464,0.005792,0.005472,0.218112,0.006144
+905,490.421,2.03906,0.4872,0.006144,0.243168,0.00464,0.005152,0.005088,0.217024,0.005984
+906,395.52,2.52832,0.520192,0.006144,0.274272,0.005568,0.004832,0.005472,0.21776,0.006144
+907,579.267,1.72632,0.474656,0.006272,0.231264,0.004256,0.005536,0.004704,0.216576,0.006048
+908,539.871,1.85229,0.482816,0.006144,0.237568,0.005856,0.004384,0.005952,0.217024,0.005888
+909,421.486,2.37256,0.5,0.006432,0.24912,0.004832,0.004096,0.006144,0.22432,0.005056
+910,464.979,2.15063,0.529472,0.006176,0.28672,0.005984,0.004256,0.006048,0.214112,0.006176
+911,520.457,1.92139,0.485376,0.006144,0.23552,0.005248,0.004864,0.00544,0.222016,0.006144
+912,531.189,1.88257,0.49152,0.006144,0.237568,0.006144,0.00512,0.00512,0.22528,0.006144
+913,556.219,1.79785,0.489952,0.006848,0.247584,0.00432,0.005504,0.004736,0.21488,0.00608
+914,416.429,2.40137,0.7568,0.007584,0.51056,0.005568,0.004672,0.005664,0.216896,0.005856
+915,570.633,1.75244,0.474112,0.006432,0.234208,0.005184,0.004832,0.005984,0.211328,0.006144
+916,426.09,2.34692,0.49808,0.006624,0.256096,0.00608,0.00416,0.006144,0.212928,0.006048
+917,415.627,2.40601,0.489408,0.006432,0.242176,0.00544,0.0048,0.005504,0.219072,0.005984
+918,540.441,1.85034,0.528416,0.006144,0.290816,0.006144,0.005184,0.005056,0.209952,0.00512
+919,513.992,1.94556,0.479968,0.006432,0.23328,0.004736,0.004096,0.006144,0.219136,0.006144
+920,458.833,2.17944,0.52864,0.0064,0.276416,0.005568,0.004736,0.005632,0.2232,0.006688
+921,578.613,1.72827,0.48448,0.006144,0.23552,0.005312,0.004896,0.00544,0.221024,0.006144
+922,586.988,1.70361,0.477216,0.006144,0.227328,0.005984,0.004256,0.006112,0.222304,0.005088
+923,436.813,2.28931,0.494176,0.006432,0.240096,0.00576,0.00448,0.005792,0.2256,0.006016
+924,517.891,1.93091,0.497696,0.007424,0.24192,0.004608,0.005856,0.005472,0.22624,0.006176
+925,601.822,1.66162,0.486272,0.006432,0.232032,0.005632,0.004576,0.005728,0.225696,0.006176
+926,499.573,2.00171,0.486144,0.006496,0.22976,0.006144,0.004096,0.006144,0.228576,0.004928
+927,346.678,2.88452,0.5544,0.007328,0.285536,0.005216,0.004896,0.00544,0.239904,0.00608
+928,494.925,2.02051,0.488352,0.0064,0.238272,0.006144,0.005248,0.004992,0.221184,0.006112
+929,509.96,1.96094,0.4832,0.006144,0.235488,0.005376,0.004864,0.005472,0.219776,0.00608
+930,475.395,2.10352,0.549952,0.006144,0.305152,0.005888,0.004352,0.005984,0.216384,0.006048
+931,550.612,1.81616,0.489472,0.006144,0.239616,0.0056,0.00464,0.005696,0.222656,0.00512
+932,502.577,1.98975,0.481344,0.00736,0.232256,0.005696,0.004544,0.005792,0.220576,0.00512
+933,422.05,2.36938,0.505664,0.006176,0.25392,0.005632,0.004608,0.005696,0.223616,0.006016
+934,381.698,2.61987,0.499712,0.006144,0.243712,0.006144,0.004096,0.006144,0.227328,0.006144
+935,517.629,1.93188,0.493216,0.006144,0.24096,0.0048,0.004096,0.006144,0.22496,0.006112
+936,362.767,2.75659,0.495712,0.0064,0.246304,0.00608,0.00416,0.006144,0.220544,0.00608
+937,581.24,1.72046,0.496736,0.006144,0.242912,0.004896,0.004096,0.006144,0.2264,0.006144
+938,536.055,1.86548,0.483328,0.0072,0.234464,0.005824,0.004416,0.00592,0.21936,0.006144
+939,546.716,1.8291,0.479584,0.0064,0.24176,0.005952,0.004288,0.005984,0.209056,0.006144
+940,511.233,1.95605,0.534528,0.006144,0.294912,0.006144,0.004096,0.006144,0.210944,0.006144
+941,519.072,1.92651,0.486688,0.007328,0.243808,0.004864,0.00528,0.00496,0.214432,0.006016
+942,510.723,1.95801,0.528224,0.006144,0.28624,0.004576,0.005824,0.005472,0.21392,0.006048
+943,413.487,2.41846,0.496704,0.006144,0.253088,0.00496,0.004096,0.006144,0.216224,0.006048
+944,523.785,1.90918,0.497824,0.006432,0.251552,0.004672,0.00576,0.00448,0.21888,0.006048
+945,588.083,1.70044,0.47024,0.006208,0.228896,0.004576,0.005216,0.005024,0.214272,0.006048
+946,520.325,1.92188,0.46832,0.006496,0.226464,0.00496,0.005472,0.004768,0.214144,0.006016
+947,453.549,2.20483,0.567168,0.006368,0.323616,0.0056,0.004608,0.005696,0.215232,0.006048
+948,570.951,1.75146,0.489888,0.006656,0.24384,0.005568,0.004864,0.00544,0.217632,0.005888
+949,479.232,2.08667,0.475488,0.006528,0.229664,0.005632,0.004608,0.005728,0.21728,0.006048
+950,383.808,2.60547,0.499712,0.006144,0.241536,0.005568,0.018336,0.004896,0.217088,0.006144
+951,567.392,1.76245,0.486848,0.006144,0.247552,0.004352,0.00544,0.0048,0.212544,0.006016
+952,534.586,1.87061,0.482144,0.006368,0.235456,0.004768,0.005664,0.004576,0.219136,0.006176
+953,419.5,2.38379,0.50896,0.006144,0.2632,0.005024,0.00416,0.006144,0.218272,0.006016
+954,515.35,1.94043,0.487424,0.0072,0.246336,0.005536,0.004896,0.005472,0.21184,0.006144
+955,563.256,1.77539,0.475328,0.006304,0.23248,0.00496,0.004224,0.006144,0.21504,0.006176
+956,490.774,2.0376,0.480032,0.006624,0.233792,0.0056,0.00464,0.005728,0.217504,0.006144
+957,522.316,1.91455,0.505696,0.006144,0.268288,0.00576,0.00448,0.005824,0.20912,0.00608
+958,298.586,3.34912,0.729728,0.006208,0.488,0.005984,0.004256,0.006144,0.212992,0.006144
+959,464.504,2.15283,0.50176,0.006144,0.25536,0.006784,0.007584,0.005888,0.213856,0.006144
+960,411.824,2.42822,0.610304,0.006144,0.353568,0.004832,0.016352,0.005888,0.218464,0.005056
+961,563.334,1.77515,0.473024,0.006592,0.231456,0.005376,0.004832,0.005504,0.213248,0.006016
+962,491.363,2.03516,0.48672,0.007488,0.234176,0.005792,0.004448,0.005888,0.222944,0.005984
+963,474.844,2.10596,0.494912,0.007744,0.245728,0.004576,0.005248,0.004992,0.220512,0.006112
+964,534.516,1.87085,0.484224,0.006432,0.235712,0.005536,0.004864,0.00544,0.220096,0.006144
+965,431.385,2.31812,0.481984,0.006752,0.23552,0.004192,0.005632,0.004608,0.219136,0.006144
+966,452.447,2.21021,0.514048,0.006144,0.263776,0.005568,0.004864,0.005472,0.22208,0.006144
+967,503.256,1.98706,0.493376,0.007264,0.246688,0.005184,0.005056,0.005792,0.217376,0.006016
+968,570.712,1.7522,0.473088,0.0072,0.230368,0.005888,0.004352,0.005824,0.213312,0.006144
+969,589.183,1.69727,0.475744,0.006624,0.231616,0.00544,0.0048,0.005504,0.21568,0.00608
+970,535.145,1.86865,0.50384,0.006144,0.268032,0.005536,0.004896,0.005472,0.207584,0.006176
+971,462.668,2.16138,0.738048,0.006336,0.493888,0.005536,0.00496,0.006048,0.216224,0.005056
+972,587.156,1.70312,0.483328,0.006144,0.22896,0.005568,0.004864,0.005472,0.226176,0.006144
+973,307.231,3.25488,0.514176,0.006432,0.266432,0.005696,0.004704,0.005632,0.218976,0.006304
+974,378.803,2.63989,0.577728,0.006464,0.334336,0.006112,0.004096,0.006144,0.214496,0.00608
+975,592.936,1.68652,0.466528,0.006464,0.229376,0.00544,0.0048,0.005472,0.208928,0.006048
+976,500.55,1.9978,0.490144,0.006656,0.252096,0.005888,0.00432,0.006016,0.209024,0.006144
+977,450.803,2.21826,0.5184,0.00656,0.270592,0.005664,0.004576,0.005728,0.219264,0.006016
+978,504.185,1.9834,0.480608,0.006144,0.241536,0.005568,0.0048,0.005504,0.21104,0.006016
+979,427.424,2.3396,0.505856,0.006144,0.260096,0.005472,0.004768,0.005504,0.217728,0.006144
+980,354.571,2.82031,0.539648,0.006464,0.289504,0.006112,0.005216,0.005024,0.221184,0.006144
+981,492.782,2.0293,0.505856,0.006144,0.253952,0.005312,0.004896,0.00544,0.223968,0.006144
+982,327.261,3.05566,0.509376,0.008192,0.260128,0.006016,0.004192,0.006144,0.218624,0.00608
+983,590.883,1.69238,0.481792,0.006624,0.237088,0.004608,0.005184,0.005056,0.217088,0.006144
+984,604.933,1.65308,0.469088,0.006592,0.225792,0.006112,0.004096,0.006144,0.2144,0.005952
+985,471.401,2.12134,0.491584,0.006752,0.241952,0.005312,0.004864,0.00544,0.221184,0.00608
+986,418.429,2.38989,0.52672,0.0064,0.276608,0.005792,0.005664,0.004928,0.221184,0.006144
+987,469.725,2.12891,0.48544,0.007264,0.230176,0.004224,0.005664,0.004576,0.227328,0.006208
+988,472.761,2.11523,0.48912,0.006144,0.24272,0.005088,0.005344,0.004896,0.218912,0.006016
+989,358.795,2.78711,0.542624,0.0072,0.285504,0.004288,0.00608,0.005472,0.228032,0.006048
+990,589.607,1.69604,0.483392,0.006208,0.230976,0.004544,0.005888,0.00544,0.223744,0.006592
+991,467.527,2.13892,0.487968,0.006432,0.23712,0.004832,0.004064,0.006144,0.223232,0.006144
+992,402.121,2.48682,0.499648,0.006208,0.247808,0.005568,0.004672,0.005664,0.223712,0.006016
+993,594.744,1.6814,0.482016,0.006432,0.233248,0.004896,0.004096,0.006144,0.221184,0.006016
+994,459.141,2.17798,0.485088,0.007456,0.233664,0.00464,0.00576,0.00448,0.223072,0.006016
+995,405.987,2.46313,0.51632,0.006368,0.258048,0.00592,0.00432,0.006144,0.229376,0.006144
+996,571.269,1.75049,0.493568,0.00736,0.23632,0.005536,0.004736,0.005696,0.227776,0.006144
+997,479.681,2.08472,0.478976,0.0064,0.231008,0.004608,0.005184,0.005056,0.220768,0.005952
+998,537.956,1.85889,0.487296,0.007168,0.240256,0.005568,0.005056,0.005952,0.21728,0.006016
+999,527.767,1.89478,0.520256,0.00624,0.26992,0.004512,0.005824,0.004416,0.2232,0.006144
+1000,554.638,1.80298,0.486176,0.006816,0.2352,0.004544,0.005888,0.00544,0.222144,0.006144
+1001,559.563,1.78711,0.493568,0.006144,0.24784,0.005856,0.004352,0.00592,0.2184,0.005056
+1002,360.817,2.77148,0.49296,0.007264,0.239648,0.004992,0.005408,0.004832,0.223232,0.007584
+1003,510.341,1.95947,0.508608,0.006528,0.255488,0.004896,0.004096,0.006144,0.22528,0.006176
+1004,557.734,1.79297,0.49408,0.006656,0.24576,0.006144,0.004096,0.006144,0.219136,0.006144
+1005,444.734,2.24854,0.477184,0.007328,0.227936,0.004352,0.0056,0.00464,0.221152,0.006176
+1006,479.794,2.08423,0.504224,0.006432,0.249888,0.005536,0.0048,0.005536,0.225888,0.006144
+1007,582.48,1.7168,0.48736,0.006208,0.23552,0.006112,0.004128,0.006144,0.223168,0.00608
+1008,570.235,1.75366,0.4888,0.007648,0.236064,0.006144,0.004096,0.006144,0.222688,0.006016
+1009,400.117,2.49927,0.492,0.006464,0.24176,0.005472,0.004768,0.005536,0.222912,0.005088
+1010,518.35,1.9292,0.500896,0.008128,0.24992,0.00576,0.00448,0.005888,0.22048,0.00624
+1011,585.896,1.70679,0.478144,0.006624,0.229728,0.004256,0.0056,0.004608,0.221184,0.006144
+1012,441.808,2.26343,0.500544,0.006656,0.244032,0.006144,0.005216,0.006688,0.225664,0.006144
+1013,448.14,2.23145,0.493568,0.0072,0.246752,0.004192,0.005664,0.00448,0.219136,0.006144
+1014,551.353,1.81372,0.48128,0.006144,0.236832,0.004832,0.0056,0.00464,0.217088,0.006144
+1015,489.601,2.04248,0.48704,0.007616,0.2352,0.00496,0.004128,0.006144,0.222944,0.006048
+1016,416.684,2.3999,0.49328,0.006144,0.241664,0.006144,0.004096,0.006144,0.22304,0.006048
+1017,367.486,2.72119,0.493568,0.006176,0.239584,0.005536,0.004704,0.0056,0.2256,0.006368
+1018,519.599,1.92456,0.496352,0.006656,0.239136,0.0048,0.005632,0.004608,0.229408,0.006112
+1019,518.022,1.93042,0.539008,0.006432,0.28432,0.004736,0.004096,0.006144,0.227136,0.006144
+1020,515.934,1.93823,0.490496,0.006144,0.2376,0.006112,0.005184,0.005056,0.224448,0.005952
+1021,517.956,1.93066,0.496064,0.006624,0.24192,0.005408,0.0048,0.00608,0.225184,0.006048
+1022,405.384,2.4668,0.491936,0.006624,0.2376,0.005536,0.004736,0.005632,0.225696,0.006112
+1023,550.094,1.81787,0.512192,0.0064,0.253728,0.004512,0.005312,0.004928,0.231264,0.006048
+1024,600.322,1.66577,0.49152,0.007232,0.230336,0.005536,0.004704,0.005824,0.231744,0.006144
+1025,392.939,2.54492,0.499744,0.006208,0.24912,0.0048,0.004096,0.006144,0.224256,0.00512
+1026,522.582,1.91357,0.50592,0.00656,0.264384,0.006048,0.004192,0.006144,0.212576,0.006016
+1027,589.013,1.69775,0.4792,0.006144,0.230944,0.004608,0.005248,0.00496,0.221184,0.006112
+1028,552.319,1.81055,0.474016,0.006592,0.23312,0.004928,0.005504,0.004736,0.214016,0.00512
+1029,392.902,2.54517,0.508608,0.006432,0.264544,0.00416,0.005696,0.004544,0.217088,0.006144
+1030,520.259,1.92212,0.489472,0.0072,0.245984,0.004864,0.0056,0.00464,0.21504,0.006144
+1031,572.627,1.74634,0.4832,0.007424,0.232192,0.005792,0.004448,0.006016,0.22128,0.006048
+1032,558.723,1.78979,0.482208,0.006624,0.235968,0.006144,0.004096,0.006144,0.217088,0.006144
+1033,388.762,2.57227,0.564928,0.007584,0.305152,0.004704,0.005248,0.004992,0.231424,0.005824
+1034,565.902,1.76709,0.511488,0.0072,0.25408,0.00496,0.005472,0.004768,0.228992,0.006016
+1035,613.082,1.6311,0.479136,0.00656,0.230464,0.00496,0.004192,0.006112,0.2208,0.006048
+1036,523.919,1.90869,0.483328,0.006144,0.231072,0.005568,0.004864,0.005472,0.224064,0.006144
+1037,514.832,1.94238,0.505856,0.007456,0.250432,0.004256,0.005568,0.004672,0.227328,0.006144
+1038,644.126,1.55249,0.482432,0.007392,0.228128,0.00608,0.00416,0.006144,0.223232,0.007296
+1039,622.776,1.60571,0.478976,0.007264,0.225536,0.004864,0.004096,0.006144,0.224704,0.006368
+1040,502.762,1.98901,0.479232,0.006144,0.233472,0.006144,0.005248,0.004992,0.217088,0.006144
+1041,359.078,2.78491,0.48832,0.0064,0.24416,0.004256,0.0056,0.00464,0.218144,0.00512
+1042,614.923,1.62622,0.476384,0.006144,0.2304,0.00512,0.004096,0.006144,0.218496,0.005984
+1043,575.2,1.73853,0.468832,0.006592,0.227712,0.004192,0.005664,0.005984,0.211488,0.0072
+1044,569.601,1.75562,0.50752,0.007264,0.258784,0.005568,0.004864,0.005984,0.219072,0.005984
+1045,619.949,1.61304,0.47488,0.006656,0.2248,0.0048,0.004096,0.006144,0.222304,0.00608
+1046,591.395,1.69092,0.476864,0.007328,0.234336,0.005856,0.004384,0.005984,0.212992,0.005984
+1047,627.643,1.59326,0.470816,0.006464,0.225376,0.005312,0.004928,0.005536,0.217152,0.006048
+1048,604.308,1.65479,0.497056,0.006144,0.249856,0.005728,0.004512,0.005824,0.218944,0.006048
+1049,654.627,1.52759,0.481344,0.006208,0.226496,0.004928,0.004096,0.006144,0.227328,0.006144
+1050,492.604,2.03003,0.475424,0.006432,0.22528,0.005952,0.004288,0.006048,0.22128,0.006144
+1051,577.797,1.73071,0.481216,0.007328,0.232288,0.004096,0.005824,0.00544,0.22016,0.00608
+1052,537.745,1.85962,0.556896,0.00736,0.305056,0.005024,0.005408,0.004832,0.222976,0.00624
+1053,603.507,1.65698,0.4744,0.007584,0.232032,0.00416,0.005664,0.004512,0.2144,0.006048
+1054,613.817,1.62915,0.475264,0.006656,0.229856,0.00592,0.004288,0.006016,0.216544,0.005984
+1055,533.264,1.87524,0.483328,0.006144,0.237568,0.005312,0.004832,0.00544,0.217888,0.006144
+1056,544.391,1.83691,0.489728,0.0064,0.239648,0.005952,0.004256,0.006144,0.221184,0.006144
+1057,626.971,1.59497,0.487488,0.006208,0.240832,0.00496,0.004064,0.006144,0.219136,0.006144
+1058,620.606,1.61133,0.477184,0.006144,0.22736,0.006112,0.004096,0.006144,0.221184,0.006144
+1059,467.42,2.1394,0.509888,0.006624,0.262272,0.00592,0.00432,0.006016,0.21872,0.006016
+1060,515.609,1.93945,0.497696,0.006432,0.243584,0.004576,0.005824,0.005472,0.225728,0.00608
+1061,593.881,1.68384,0.477184,0.006144,0.229216,0.004256,0.005824,0.005472,0.220128,0.006144
+1062,592.421,1.68799,0.480256,0.006624,0.233152,0.00496,0.005472,0.004768,0.220192,0.005088
+1063,429.305,2.32935,0.474944,0.006272,0.231424,0.005312,0.004864,0.00544,0.215552,0.00608
+1064,546.716,1.8291,0.485888,0.006432,0.232768,0.005024,0.005408,0.004832,0.224416,0.007008
+1065,637.708,1.56812,0.472864,0.006304,0.22528,0.005664,0.004576,0.005728,0.219264,0.006048
+1066,616.032,1.62329,0.471552,0.006624,0.229408,0.0056,0.00464,0.005664,0.213472,0.006144
+1067,397.169,2.51782,0.481952,0.006592,0.235744,0.005504,0.004736,0.005664,0.217568,0.006144
+1068,560.558,1.78394,0.489472,0.006144,0.237088,0.004576,0.005856,0.005472,0.224192,0.006144
+1069,615.292,1.62524,0.481664,0.006368,0.230944,0.004608,0.005248,0.00496,0.224288,0.005248
+1070,590.117,1.69458,0.475456,0.006464,0.22528,0.00576,0.00448,0.006112,0.221216,0.006144
+1071,541.155,1.8479,0.5328,0.006432,0.290816,0.004096,0.005824,0.00544,0.214016,0.006176
+1072,521.12,1.91895,0.468992,0.006176,0.227296,0.006144,0.004096,0.006144,0.212992,0.006144
+1073,601.38,1.66284,0.471776,0.00656,0.229696,0.005568,0.004672,0.0056,0.213536,0.006144
+1074,578.041,1.72998,0.477088,0.006528,0.232544,0.005024,0.005216,0.005024,0.216768,0.005984
+1075,546.061,1.8313,0.542656,0.006432,0.29696,0.005312,0.004896,0.005472,0.217536,0.006048
+1076,465.349,2.14893,0.503808,0.006144,0.250944,0.005056,0.005408,0.004832,0.22528,0.006144
+1077,544.102,1.83789,0.489472,0.006144,0.234816,0.0048,0.004096,0.006144,0.227328,0.006144
+1078,473.362,2.11255,0.488,0.00688,0.237312,0.005568,0.004928,0.00544,0.22192,0.005952
+1079,610.705,1.63745,0.46896,0.006144,0.230624,0.004896,0.004096,0.006016,0.211072,0.006112
+1080,600.234,1.66602,0.483936,0.006624,0.228768,0.004832,0.0056,0.00464,0.227328,0.006144
+1081,548.253,1.82397,0.483264,0.00656,0.229088,0.004384,0.005408,0.004832,0.226912,0.00608
+1082,492.604,2.03003,0.495712,0.006368,0.242848,0.005088,0.005344,0.004896,0.224576,0.006592
+1083,601.468,1.6626,0.487424,0.006144,0.233056,0.004512,0.005312,0.004928,0.22736,0.006112
+1084,611.983,1.63403,0.477632,0.00656,0.229344,0.005568,0.004736,0.005568,0.219872,0.005984
+1085,388.615,2.57324,0.560704,0.007296,0.301088,0.004928,0.004128,0.006144,0.231072,0.006048
+1086,421.443,2.3728,0.504192,0.006528,0.249472,0.005568,0.004896,0.00544,0.226176,0.006112
+1087,586.399,1.70532,0.498336,0.0064,0.237888,0.004224,0.0056,0.004608,0.233472,0.006144
+1088,621.453,1.60913,0.477344,0.006688,0.22352,0.005984,0.004256,0.006144,0.224704,0.006048
+1089,365.453,2.73633,0.497376,0.006144,0.23728,0.004384,0.00544,0.0048,0.233024,0.006304
+1090,635.236,1.57422,0.481056,0.007168,0.224256,0.006144,0.004096,0.006144,0.227168,0.00608
+1091,611.891,1.63428,0.487424,0.007584,0.227264,0.004768,0.005376,0.004864,0.231424,0.006144
+1092,549.577,1.81958,0.483648,0.006464,0.22928,0.005536,0.004768,0.00544,0.226048,0.006112
+1093,205.149,4.87451,0.548128,0.006144,0.301088,0.005856,0.004352,0.006144,0.218432,0.006112
+1094,440.146,2.27197,0.490656,0.007296,0.246656,0.006144,0.004096,0.006144,0.21424,0.00608
+1095,319.975,3.12524,0.507552,0.006144,0.255424,0.005696,0.005024,0.005248,0.224224,0.005792
+1096,472.379,2.11694,0.50176,0.007424,0.25472,0.005888,0.004352,0.005984,0.217248,0.006144
+1097,413.195,2.42017,0.526592,0.006432,0.260704,0.004224,0.020352,0.006144,0.222528,0.006208
+1098,255.904,3.90771,0.53712,0.006688,0.280576,0.006112,0.004128,0.006144,0.227328,0.006144
+1099,488.317,2.04785,0.48128,0.006144,0.241536,0.004224,0.005792,0.004448,0.212992,0.006144
+1100,449.32,2.22559,0.487456,0.006144,0.243712,0.006144,0.00528,0.00496,0.21504,0.006176
+1101,616.218,1.6228,0.471808,0.006432,0.22784,0.005472,0.004736,0.0056,0.215584,0.006144
+1102,496.064,2.01587,0.471776,0.006656,0.227552,0.005664,0.004576,0.00576,0.215424,0.006144
+1103,565.355,1.7688,0.482144,0.006528,0.231296,0.004704,0.004096,0.006144,0.223232,0.006144
+1104,552.096,1.81128,0.482976,0.006272,0.231424,0.006144,0.004096,0.006144,0.22288,0.006016
+1105,454.505,2.2002,0.481184,0.006144,0.232544,0.00496,0.00416,0.006144,0.221184,0.006048
+1106,515.285,1.94067,0.486656,0.006208,0.239616,0.005568,0.004672,0.005632,0.21888,0.00608
+1107,423.097,2.36353,0.490496,0.006144,0.247808,0.005408,0.004832,0.005504,0.213632,0.007168
+1108,584.809,1.70996,0.494144,0.006592,0.232992,0.004736,0.005696,0.004576,0.23344,0.006112
+1109,609.161,1.6416,0.47104,0.0072,0.226112,0.004288,0.005536,0.004672,0.217088,0.006144
+1110,474.294,2.1084,0.476832,0.0064,0.228608,0.004864,0.005568,0.004672,0.220672,0.006048
+1111,547.667,1.82593,0.546816,0.006144,0.29696,0.005344,0.004864,0.00544,0.22192,0.006144
+1112,585.812,1.70703,0.468992,0.006144,0.232992,0.004576,0.005984,0.00544,0.207712,0.006144
+1113,367.321,2.72241,0.474048,0.006688,0.229792,0.00432,0.005664,0.005472,0.215968,0.006144
+1114,375.263,2.66479,0.497248,0.006272,0.247808,0.005856,0.004384,0.005952,0.220896,0.00608
+1115,584.725,1.71021,0.48128,0.00736,0.234304,0.004096,0.005888,0.00544,0.218048,0.006144
+1116,596.65,1.67603,0.471296,0.0064,0.227968,0.00576,0.00448,0.005856,0.214848,0.005984
+1117,563.179,1.77563,0.477184,0.00752,0.225952,0.00576,0.00448,0.005888,0.22144,0.006144
+1118,382.197,2.61646,0.562816,0.006592,0.30848,0.004864,0.005568,0.004672,0.226592,0.006048
+1119,619.855,1.61328,0.475488,0.006464,0.229408,0.005504,0.004736,0.005632,0.2176,0.006144
+1120,597.956,1.67236,0.477792,0.006656,0.223104,0.005536,0.004896,0.005472,0.226048,0.00608
+1121,396.362,2.52295,0.5712,0.006592,0.325088,0.004896,0.004096,0.006144,0.218336,0.006048
+1122,527.291,1.89648,0.48352,0.006336,0.234752,0.004864,0.005568,0.004672,0.221184,0.006144
+1123,595.782,1.67847,0.479872,0.006656,0.22944,0.004192,0.00576,0.00544,0.223264,0.00512
+1124,608.166,1.64429,0.484,0.006816,0.226624,0.0048,0.005632,0.004608,0.229376,0.006144
+1125,593.279,1.68555,0.487584,0.006816,0.23776,0.005504,0.004736,0.005568,0.22112,0.00608
+1126,422.66,2.36597,0.7392,0.006144,0.490848,0.004768,0.005664,0.004576,0.221152,0.006048
+1127,645.853,1.54834,0.485376,0.007232,0.233504,0.004992,0.004128,0.006144,0.223232,0.006144
+1128,509.833,1.96143,0.487168,0.006496,0.232928,0.00464,0.00576,0.00448,0.22688,0.005984
+1129,442.763,2.25854,0.485184,0.006432,0.237888,0.00512,0.004864,0.005504,0.219296,0.00608
+1130,623.63,1.60352,0.479232,0.006144,0.230656,0.004864,0.005568,0.004672,0.221088,0.00624
+1131,598.044,1.67212,0.473664,0.006624,0.229056,0.004512,0.005312,0.004928,0.217088,0.006144
+1132,437.888,2.28369,0.489312,0.006144,0.23552,0.006144,0.004096,0.006144,0.22528,0.005984
+1133,638.902,1.56519,0.483072,0.006432,0.227488,0.005632,0.004608,0.005696,0.227232,0.005984
+1134,677.921,1.4751,0.477184,0.0072,0.222176,0.005824,0.004416,0.00592,0.225504,0.006144
+1135,511.233,1.95605,0.471328,0.006624,0.223136,0.004352,0.00544,0.0048,0.220864,0.006112
+1136,519.204,1.92603,0.486784,0.006208,0.239552,0.005632,0.004608,0.005504,0.2192,0.00608
+1137,598.83,1.66992,0.47104,0.0072,0.226304,0.005728,0.00448,0.005856,0.215328,0.006144
+1138,511.297,1.95581,0.487616,0.006336,0.243712,0.006144,0.005152,0.005088,0.216064,0.00512
+1139,608.709,1.64282,0.475104,0.006592,0.229856,0.005888,0.004352,0.005952,0.215232,0.007232
+1140,550.538,1.81641,0.475136,0.007264,0.229632,0.004768,0.005664,0.004576,0.217088,0.006144
+1141,467.1,2.14087,0.7536,0.006336,0.495872,0.005824,0.005536,0.005024,0.22896,0.006048
+1142,586.232,1.70581,0.477184,0.007392,0.23152,0.0048,0.005632,0.004608,0.217088,0.006144
+1143,564.888,1.77026,0.494816,0.00752,0.244384,0.005472,0.004768,0.005568,0.221056,0.006048
+1144,438.826,2.27881,0.653408,0.006816,0.398528,0.004928,0.005504,0.004736,0.226784,0.006112
+1145,634.35,1.57642,0.484096,0.006528,0.227296,0.0048,0.00576,0.004448,0.229216,0.006048
+1146,398.56,2.50903,0.469376,0.006688,0.221216,0.005568,0.004896,0.005472,0.219488,0.006048
+1147,500.428,1.99829,0.492288,0.006432,0.250368,0.005536,0.004672,0.005632,0.213504,0.006144
+1148,500.183,1.99927,0.498976,0.007392,0.247808,0.004896,0.005568,0.004672,0.222656,0.005984
+1149,584.725,1.71021,0.475136,0.007264,0.226208,0.005792,0.004448,0.005792,0.219488,0.006144
+1150,584.475,1.71094,0.472032,0.006656,0.221664,0.005632,0.004608,0.005728,0.2216,0.006144
+1151,591.566,1.69043,0.495616,0.007328,0.247744,0.00496,0.00416,0.006144,0.219168,0.006112
+1152,408.742,2.44653,0.743424,0.006144,0.494816,0.004896,0.005568,0.004672,0.221184,0.006144
+1153,677.921,1.4751,0.475136,0.006144,0.225312,0.005664,0.004544,0.005824,0.221504,0.006144
+1154,290.393,3.4436,0.527136,0.008896,0.280128,0.00464,0.005792,0.005472,0.216064,0.006144
+1155,622.209,1.60718,0.479232,0.006336,0.232736,0.00464,0.005152,0.005088,0.219136,0.006144
+1156,610.341,1.63843,0.476064,0.006624,0.228864,0.005024,0.005408,0.004832,0.219232,0.00608
+1157,495.344,2.0188,0.489536,0.006208,0.231424,0.004224,0.005632,0.00448,0.231136,0.006432
+1158,566.685,1.76465,0.487744,0.006368,0.235584,0.004576,0.005856,0.005472,0.223552,0.006336
+1159,674.128,1.4834,0.475136,0.00752,0.226976,0.00496,0.004256,0.006048,0.219232,0.006144
+1160,499.634,2.00146,0.485888,0.006112,0.225824,0.005856,0.004384,0.005952,0.23264,0.00512
+1161,456.735,2.18945,0.491296,0.006432,0.236,0.004224,0.005696,0.00544,0.227456,0.006048
+1162,524.053,1.9082,0.557088,0.007328,0.305792,0.005536,0.004896,0.00544,0.22192,0.006176
+1163,521.651,1.91699,0.487616,0.006336,0.234752,0.004864,0.005184,0.005056,0.224576,0.006848
+1164,496.967,2.01221,0.481696,0.0064,0.229312,0.005536,0.004864,0.00544,0.224,0.006144
+1165,486.519,2.05542,0.54496,0.006432,0.2872,0.004224,0.005696,0.004544,0.230752,0.006112
+1166,607.445,1.64624,0.49152,0.007264,0.230208,0.005568,0.004768,0.005824,0.231744,0.006144
+1167,663.75,1.50659,0.468768,0.007424,0.225952,0.004224,0.005408,0.0048,0.214912,0.006048
+1168,552.692,1.80933,0.478784,0.007552,0.22528,0.004736,0.005696,0.004544,0.224864,0.006112
+1169,494.328,2.02295,0.55072,0.006176,0.303072,0.005536,0.004704,0.00544,0.219712,0.00608
+1170,421.096,2.37476,0.48128,0.006144,0.22736,0.006112,0.004096,0.006144,0.22528,0.006144
+1171,590.968,1.69214,0.488448,0.006304,0.232416,0.004992,0.004096,0.006144,0.228416,0.00608
+1172,527.767,1.89478,0.507872,0.006848,0.25632,0.006112,0.004096,0.006144,0.222368,0.005984
+1173,488.258,2.0481,0.504832,0.024576,0.23712,0.004544,0.005248,0.004992,0.222304,0.006048
+1174,630.833,1.58521,0.480672,0.006304,0.227008,0.005536,0.004864,0.005504,0.225376,0.00608
+1175,677.137,1.47681,0.481056,0.006208,0.222432,0.004896,0.004096,0.006144,0.2312,0.00608
+1176,487.851,2.0498,0.496224,0.022592,0.229888,0.005568,0.004704,0.0056,0.222816,0.005056
+1177,476.667,2.0979,0.52336,0.006144,0.268288,0.004096,0.005888,0.00544,0.227424,0.00608
+1178,442.524,2.25977,0.471104,0.006208,0.228544,0.004928,0.005504,0.004736,0.21504,0.006144
+1179,470.588,2.125,0.49152,0.006144,0.247808,0.005376,0.004864,0.00544,0.215744,0.006144
+1180,592.593,1.6875,0.475104,0.006144,0.229248,0.005568,0.0048,0.005632,0.2176,0.006112
+1181,495.944,2.01636,0.472672,0.006368,0.22528,0.005728,0.004512,0.005792,0.218912,0.00608
+1182,648.923,1.54102,0.479232,0.0072,0.224224,0.006144,0.005344,0.004896,0.22528,0.006144
+1183,598.918,1.66968,0.488832,0.006496,0.22528,0.005312,0.004928,0.0056,0.21968,0.021536
+1184,510.087,1.96045,0.52224,0.007584,0.277088,0.005568,0.004672,0.005984,0.2152,0.006144
+1185,638.503,1.56616,0.473088,0.006144,0.227296,0.00416,0.005664,0.004576,0.219104,0.006144
+1186,604.933,1.65308,0.490176,0.006688,0.22896,0.004576,0.005856,0.005472,0.233504,0.00512
+1187,272.431,3.67065,0.536736,0.006304,0.286624,0.004192,0.005696,0.004544,0.223232,0.006144
+1188,425.78,2.34863,0.600608,0.006592,0.346208,0.005824,0.004416,0.00592,0.225504,0.006144
+1189,445.46,2.24487,0.485376,0.006432,0.235808,0.004448,0.005408,0.004832,0.222432,0.006016
+1190,439.532,2.27515,0.553184,0.006848,0.300128,0.005056,0.005376,0.004864,0.2248,0.006112
+1191,607.355,1.64648,0.482816,0.007264,0.228256,0.005824,0.004416,0.00592,0.224992,0.006144
+1192,621.737,1.6084,0.47104,0.007168,0.22608,0.005536,0.004928,0.0056,0.215584,0.006144
+1193,348.863,2.86646,0.509792,0.007648,0.255936,0.004704,0.005152,0.005088,0.225184,0.00608
+1194,491.068,2.03638,0.518144,0.006144,0.264224,0.006112,0.005184,0.005056,0.22528,0.006144
+1195,529.747,1.8877,0.48336,0.006144,0.239008,0.004704,0.004096,0.006144,0.217088,0.006176
+1196,460.639,2.1709,0.494272,0.006464,0.251424,0.00496,0.005472,0.004768,0.21504,0.006144
+1197,426.223,2.34619,0.560992,0.00736,0.317536,0.004832,0.004096,0.006144,0.215008,0.006016
+1198,562.869,1.77661,0.48416,0.006176,0.235296,0.00512,0.005312,0.004928,0.221184,0.006144
+1199,508,1.96851,0.487424,0.006144,0.231456,0.005696,0.004512,0.005792,0.22768,0.006144
+1200,525.532,1.90283,0.531488,0.006624,0.278656,0.005568,0.004864,0.005664,0.223936,0.006176
+1201,394.453,2.53516,0.80816,0.007968,0.546816,0.005568,0.004896,0.006112,0.230688,0.006112
+1202,555.616,1.7998,0.491808,0.006432,0.232768,0.0048,0.005408,0.004832,0.231424,0.006144
+1203,534.377,1.87134,0.485408,0.006144,0.231424,0.005632,0.004608,0.005728,0.225696,0.006176
+1204,525.33,1.90356,0.495616,0.006144,0.23888,0.004832,0.0056,0.00464,0.229376,0.006144
+1205,583.06,1.71509,0.5072,0.007424,0.250464,0.004256,0.005568,0.004736,0.22864,0.006112
+1206,531.672,1.88086,0.488576,0.006144,0.241664,0.006144,0.00512,0.00512,0.218272,0.006112
+1207,557.734,1.79297,0.528288,0.006144,0.27616,0.004416,0.005376,0.004864,0.225248,0.00608
+1208,613.541,1.62988,0.478272,0.006144,0.22656,0.004864,0.005568,0.004672,0.223232,0.007232
+1209,554.488,1.80347,0.512,0.008096,0.249952,0.004096,0.005664,0.005632,0.232416,0.006144
+1210,552.022,1.81152,0.489696,0.006592,0.224832,0.005568,0.004864,0.005472,0.236352,0.006016
+1211,537.603,1.86011,0.515584,0.007616,0.26272,0.005344,0.004864,0.00544,0.223584,0.006016
+1212,636.42,1.57129,0.476064,0.006656,0.225216,0.004576,0.005824,0.005472,0.222176,0.006144
+1213,607.625,1.64575,0.493408,0.007264,0.226208,0.005952,0.004288,0.005984,0.237632,0.00608
+1214,489.542,2.04272,0.503808,0.006336,0.231168,0.005568,0.004736,0.005568,0.244288,0.006144
+1215,539.657,1.85303,0.542336,0.007424,0.281344,0.005856,0.004384,0.005952,0.231264,0.006112
+1216,578.695,1.72803,0.475232,0.006144,0.22528,0.006048,0.004192,0.006112,0.222336,0.00512
+1217,593.193,1.68579,0.489792,0.006784,0.233568,0.004288,0.005664,0.00544,0.227904,0.006144
+1218,341.675,2.92676,0.647968,0.006592,0.373088,0.006144,0.005696,0.020896,0.230464,0.005088
+1219,507.119,1.97192,0.533184,0.0192,0.26992,0.004512,0.005312,0.004928,0.223136,0.006176
+1220,614.646,1.62695,0.476416,0.006272,0.227328,0.005728,0.004512,0.005824,0.220704,0.006048
+1221,504.62,1.98169,0.481088,0.006496,0.230688,0.004832,0.00512,0.00512,0.222816,0.006016
+1222,487.213,2.05249,0.56256,0.00624,0.302976,0.005568,0.004704,0.005632,0.231424,0.006016
+1223,586.819,1.7041,0.474592,0.006592,0.22736,0.005728,0.00448,0.005856,0.218496,0.00608
+1224,558.419,1.79077,0.485824,0.006688,0.227424,0.006144,0.004096,0.006144,0.22928,0.006048
+1225,324.102,3.08545,0.483904,0.006688,0.231392,0.00416,0.005696,0.004544,0.22528,0.006144
+1226,499.512,2.00195,0.496448,0.006464,0.246304,0.005952,0.004256,0.00592,0.221408,0.006144
+1227,582.563,1.71655,0.485376,0.007456,0.231136,0.004992,0.004224,0.00608,0.223296,0.008192
+1228,471.563,2.12061,0.499232,0.006144,0.23552,0.006144,0.005152,0.005088,0.235104,0.00608
+1229,477.668,2.09351,0.522208,0.006144,0.25104,0.00496,0.004096,0.006144,0.243712,0.006112
+1230,600.586,1.66504,0.5032,0.006144,0.232928,0.00464,0.005792,0.004448,0.243168,0.00608
+1231,614.554,1.6272,0.493504,0.00768,0.229568,0.004416,0.005408,0.004832,0.235488,0.006112
+1232,563.256,1.77539,0.4992,0.006144,0.230688,0.004832,0.005568,0.004672,0.240672,0.006624
+1233,445.75,2.24341,0.50176,0.006144,0.237472,0.004224,0.005568,0.00464,0.237568,0.006144
+1234,529.815,1.88745,0.506528,0.006816,0.237056,0.004608,0.006016,0.00544,0.240448,0.006144
+1235,540.797,1.84912,0.503136,0.006144,0.233472,0.005216,0.004832,0.005408,0.241984,0.00608
+1236,505.118,1.97974,0.57408,0.0064,0.302688,0.004896,0.005504,0.004736,0.243712,0.006144
+1237,591.139,1.69165,0.498688,0.006144,0.229376,0.004256,0.005632,0.004448,0.242752,0.00608
+1238,554.563,1.80322,0.483328,0.006144,0.227328,0.005792,0.004448,0.005856,0.228768,0.004992
+1239,559.028,1.78882,0.485376,0.007232,0.224192,0.005376,0.004864,0.005504,0.231648,0.00656
+1240,560.712,1.78345,0.480992,0.007264,0.228256,0.006112,0.004128,0.006144,0.223072,0.006016
+1241,642.611,1.55615,0.48608,0.006752,0.225088,0.004448,0.005376,0.004864,0.233472,0.00608
+1242,411.245,2.43164,0.509696,0.006144,0.25504,0.005056,0.005376,0.004864,0.22688,0.006336
+1243,477.946,2.09229,0.487744,0.006432,0.231456,0.004224,0.005632,0.00448,0.229376,0.006144
+1244,564.343,1.77197,0.483328,0.006144,0.230432,0.005088,0.005184,0.005056,0.22528,0.006144
+1245,585.059,1.70923,0.501344,0.006304,0.247424,0.00448,0.005344,0.004896,0.226848,0.006048
+1246,606.995,1.64746,0.477472,0.006784,0.223232,0.006048,0.004192,0.006144,0.224576,0.006496
+1247,533.194,1.87549,0.509056,0.006144,0.255168,0.004928,0.004096,0.006144,0.226368,0.006208
+1248,518.744,1.92773,0.485376,0.007296,0.226176,0.005984,0.004256,0.00592,0.230752,0.004992
+1249,569.205,1.75684,0.510848,0.006432,0.24432,0.005824,0.004416,0.005952,0.23776,0.006144
+1250,360.69,2.77246,0.511776,0.006144,0.243648,0.005568,0.004736,0.005568,0.240128,0.005984
+1251,475.45,2.10327,0.501376,0.006144,0.232512,0.00496,0.004192,0.006112,0.24144,0.006016
+1252,610.25,1.63867,0.491296,0.006144,0.221184,0.00608,0.00416,0.006144,0.241472,0.006112
+1253,631.709,1.58301,0.493664,0.00672,0.222464,0.00496,0.004096,0.006144,0.243264,0.006016
+1254,552.394,1.8103,0.49296,0.006144,0.234944,0.004672,0.00576,0.004512,0.230912,0.006016
+1255,569.839,1.75488,0.4848,0.006144,0.227328,0.005568,0.004672,0.005664,0.229376,0.006048
+1256,656.41,1.52344,0.483776,0.006432,0.223648,0.005856,0.004384,0.005792,0.231648,0.006016
+1257,667.753,1.49756,0.48208,0.004896,0.222912,0.004448,0.005344,0.004864,0.233504,0.006112
+1258,342.819,2.91699,0.526976,0.004768,0.263648,0.00464,0.005792,0.004448,0.2376,0.00608
+1259,355.988,2.80908,0.526432,0.006464,0.26256,0.004288,0.005536,0.016544,0.224992,0.006048
+1260,604.219,1.65503,0.483712,0.006432,0.231168,0.005536,0.004864,0.005472,0.223232,0.007008
+1261,485.653,2.05908,0.498688,0.006144,0.249856,0.005472,0.004768,0.005536,0.220896,0.006016
+1262,598.48,1.6709,0.483904,0.0064,0.23408,0.00592,0.00432,0.006016,0.221088,0.00608
+1263,518.875,1.92725,0.477216,0.006144,0.223232,0.005984,0.004256,0.006048,0.225376,0.006176
+1264,500.061,1.99976,0.482688,0.006336,0.229184,0.005824,0.004416,0.00592,0.223456,0.007552
+1265,523.785,1.90918,0.524352,0.006208,0.281856,0.004864,0.00512,0.00512,0.21504,0.006144
+1266,528.243,1.89307,0.484608,0.00816,0.233504,0.00576,0.00448,0.005856,0.220864,0.005984
+1267,281.203,3.55615,0.556704,0.006496,0.311136,0.004256,0.005536,0.004704,0.21856,0.006016
+1268,372.736,2.68286,0.55504,0.006144,0.306336,0.00496,0.005344,0.004896,0.222208,0.005152
+1269,520.855,1.91992,0.49152,0.007232,0.233696,0.004832,0.004096,0.006144,0.229376,0.006144
+1270,415.795,2.40503,0.509952,0.006144,0.251488,0.005568,0.004864,0.00544,0.230304,0.006144
+1271,482.393,2.073,0.577216,0.007552,0.317632,0.004544,0.005472,0.004768,0.231168,0.00608
+1272,573.589,1.74341,0.487712,0.006432,0.227328,0.006144,0.005248,0.004992,0.231424,0.006144
+1273,403.467,2.47852,0.4856,0.0064,0.230784,0.004928,0.00416,0.006144,0.227072,0.006112
+1274,366.565,2.72803,0.528672,0.0064,0.276352,0.005568,0.004832,0.005536,0.223872,0.006112
+1275,484.218,2.06519,0.573728,0.006432,0.32624,0.005312,0.004672,0.00544,0.219584,0.006048
+1276,512.577,1.95093,0.491392,0.006464,0.235584,0.004608,0.005792,0.004448,0.227328,0.007168
+1277,353.897,2.82568,0.489792,0.0064,0.240352,0.005408,0.004832,0.005504,0.221216,0.00608
+1278,503.441,1.98633,0.512928,0.006432,0.23616,0.006144,0.02048,0.006048,0.23152,0.006144
+1279,576.009,1.73608,0.49152,0.007488,0.235328,0.004992,0.004096,0.006144,0.227328,0.006144
+1280,310.186,3.22388,0.579584,0.006144,0.323584,0.006144,0.004096,0.006144,0.227328,0.006144
+1281,485.423,2.06006,0.512416,0.0064,0.264,0.004448,0.005504,0.004736,0.221184,0.006144
+1282,582.895,1.71558,0.48816,0.006464,0.235936,0.005184,0.004896,0.00544,0.224096,0.006144
+1283,493.435,2.02661,0.495936,0.006368,0.241664,0.005312,0.004896,0.005984,0.225472,0.00624
+1284,441.379,2.26562,0.526336,0.007424,0.270976,0.005568,0.0048,0.0056,0.225824,0.006144
+1285,505.866,1.97681,0.492768,0.006144,0.24576,0.005824,0.004416,0.00592,0.218528,0.006176
+1286,472.761,2.11523,0.4976,0.006144,0.241664,0.006144,0.004096,0.006144,0.227328,0.00608
+1287,419.801,2.38208,0.497344,0.007392,0.242464,0.005344,0.004864,0.005472,0.225728,0.00608
+1288,517.302,1.93311,0.492128,0.006656,0.233568,0.005728,0.004512,0.005792,0.229728,0.006144
+1289,520.722,1.92041,0.49776,0.006592,0.244096,0.004224,0.0056,0.00464,0.226432,0.006176
+1290,426.8,2.34302,0.50032,0.0064,0.245408,0.004928,0.005504,0.004736,0.227328,0.006016
+1291,565.043,1.76978,0.491552,0.006144,0.237568,0.005216,0.004864,0.00544,0.226144,0.006176
+1292,466.409,2.14404,0.503616,0.006144,0.247808,0.006144,0.004096,0.006144,0.227296,0.005984
+1293,404.783,2.47046,0.543584,0.006432,0.288832,0.004608,0.005344,0.004896,0.227328,0.006144
+1294,582.646,1.71631,0.491552,0.006144,0.237568,0.005888,0.004352,0.005952,0.225472,0.006176
+1295,420.189,2.37988,0.514464,0.00656,0.261568,0.004704,0.005216,0.005024,0.22528,0.006112
+1296,316.123,3.16333,0.518816,0.006432,0.264576,0.006144,0.005248,0.004992,0.22528,0.006144
+1297,546.133,1.83105,0.484128,0.006432,0.239328,0.004896,0.005696,0.004544,0.217088,0.006144
+1298,562.251,1.77856,0.48208,0.00656,0.233856,0.005504,0.004736,0.005568,0.219712,0.006144
+1299,320.576,3.11938,0.503808,0.006144,0.255072,0.00496,0.00416,0.006144,0.221184,0.006144
+1300,369.076,2.70947,0.845728,0.006144,0.591872,0.0056,0.00464,0.005696,0.225728,0.006048
+1301,380.351,2.62915,0.509792,0.006144,0.258048,0.004096,0.005792,0.004448,0.224704,0.00656
+1302,308.783,3.23853,0.528288,0.0064,0.267904,0.005024,0.005376,0.004864,0.232704,0.006016
+1303,456.379,2.19116,0.517632,0.00736,0.26224,0.004832,0.004096,0.006144,0.226752,0.006208
+1304,400.117,2.49927,0.53248,0.006144,0.27184,0.00464,0.005792,0.004448,0.233472,0.006144
+1305,427.156,2.34106,0.567296,0.007264,0.305728,0.004448,0.005376,0.005952,0.232384,0.006144
+1306,453.7,2.2041,0.50176,0.007392,0.242368,0.005568,0.004768,0.0056,0.22992,0.006144
+1307,309.225,3.23389,0.512,0.007616,0.259968,0.0048,0.005536,0.004704,0.223232,0.006144
+1308,462.825,2.16064,0.514496,0.00656,0.254528,0.005568,0.004704,0.0056,0.23152,0.006016
+1309,397.246,2.51733,0.548544,0.006144,0.290848,0.00592,0.004288,0.006144,0.229152,0.006048
+1310,346.063,2.88965,0.526496,0.00656,0.27648,0.005824,0.004416,0.00592,0.221184,0.006112
+1311,566.685,1.76465,0.48128,0.006208,0.236608,0.00496,0.004128,0.006144,0.217088,0.006144
+1312,419.414,2.38428,0.516096,0.006144,0.266144,0.005536,0.0048,0.005536,0.221792,0.006144
+1313,341.732,2.92627,0.567584,0.006336,0.313216,0.004224,0.005536,0.004704,0.228512,0.005056
+1314,542.373,1.84375,0.494688,0.006144,0.241056,0.004704,0.005728,0.004512,0.226432,0.006112
+1315,408.009,2.45093,0.517344,0.00736,0.260416,0.004608,0.005408,0.004832,0.228704,0.006016
+1316,394.263,2.53638,0.532512,0.007584,0.262752,0.006144,0.00512,0.00512,0.240704,0.005088
+1317,559.563,1.78711,0.497664,0.006144,0.235552,0.005312,0.004864,0.005472,0.234176,0.006144
+1318,446.139,2.24146,0.53936,0.006432,0.2728,0.005632,0.004608,0.005696,0.239168,0.005024
+1319,372.77,2.68262,0.541088,0.0064,0.274592,0.005344,0.004864,0.005472,0.238272,0.006144
+1320,473.307,2.11279,0.49568,0.006464,0.231712,0.005728,0.004512,0.005824,0.2352,0.00624
+1321,473.198,2.11328,0.507776,0.006432,0.25008,0.005344,0.004896,0.005472,0.229504,0.006048
+1322,338.065,2.95801,0.52224,0.006144,0.264192,0.005568,0.004672,0.0056,0.22992,0.006144
+1323,571.827,1.74878,0.49152,0.006144,0.235552,0.005824,0.004384,0.005952,0.22752,0.006144
+1324,489.191,2.04419,0.50176,0.006144,0.239616,0.006144,0.005152,0.005088,0.233472,0.006144
+1325,458.576,2.18066,0.504256,0.006368,0.248448,0.00592,0.00432,0.005984,0.227136,0.00608
+1326,484.161,2.06543,0.50032,0.0064,0.246112,0.006144,0.004096,0.006144,0.22528,0.006144
+1327,459.966,2.17407,0.489472,0.007328,0.236288,0.004192,0.005632,0.004608,0.22528,0.006144
+1328,400.313,2.49805,0.52672,0.006464,0.272448,0.005664,0.004576,0.005856,0.225568,0.006144
+1329,509.389,1.96313,0.503808,0.007264,0.235488,0.005056,0.004096,0.006144,0.239616,0.006144
+1330,549.356,1.82031,0.506976,0.006144,0.236768,0.004896,0.005536,0.004704,0.242912,0.006016
+1331,507.37,1.97095,0.505344,0.006144,0.23472,0.004896,0.004096,0.00608,0.243424,0.005984
+1332,479.232,2.08667,0.556928,0.006208,0.290624,0.005568,0.004864,0.005504,0.238208,0.005952
+1333,536.688,1.86328,0.495616,0.007392,0.232224,0.005536,0.004704,0.005664,0.233952,0.006144
+1334,532.709,1.8772,0.4976,0.007328,0.236032,0.005536,0.004864,0.005472,0.232256,0.006112
+1335,353.317,2.83032,0.51632,0.0064,0.251488,0.004672,0.00512,0.00512,0.23744,0.00608
+1336,589.013,1.69775,0.483328,0.006144,0.23136,0.005568,0.004736,0.0056,0.223776,0.006144
+1337,549.283,1.82056,0.487584,0.006464,0.232832,0.004768,0.004064,0.006144,0.227264,0.006048
+1338,499.573,2.00171,0.512576,0.006432,0.256288,0.006144,0.004096,0.006144,0.228448,0.005024
+1339,536.055,1.86548,0.488992,0.006368,0.239616,0.004256,0.005664,0.00544,0.221536,0.006112
+1340,567.156,1.76318,0.485632,0.0064,0.233472,0.005728,0.004512,0.005792,0.223584,0.006144
+1341,584.475,1.71094,0.500448,0.006432,0.23392,0.005248,0.004864,0.00544,0.2384,0.006144
+1342,482.052,2.07446,0.507904,0.006144,0.240832,0.004928,0.005504,0.004736,0.239616,0.006144
+1343,436.023,2.29346,0.512512,0.006496,0.241856,0.005632,0.004576,0.005792,0.242016,0.006144
+1344,554.863,1.80225,0.511488,0.006144,0.237568,0.006144,0.004096,0.006144,0.245152,0.00624
+1345,548.474,1.82324,0.485504,0.006592,0.227296,0.00432,0.005504,0.004736,0.230944,0.006112
+1346,523.317,1.91089,0.510304,0.006592,0.2536,0.005536,0.004896,0.005472,0.228128,0.00608
+1347,450.903,2.21777,0.766528,0.00672,0.50176,0.006144,0.00592,0.005472,0.234048,0.006464
+1348,588.083,1.70044,0.49184,0.006464,0.229376,0.005952,0.004288,0.006048,0.233568,0.006144
+1349,495.944,2.01636,0.490336,0.006624,0.231744,0.004192,0.005824,0.005472,0.230336,0.006144
+1350,478.561,2.0896,0.514176,0.006144,0.253952,0.00544,0.0048,0.00576,0.232992,0.005088
+1351,462.302,2.16309,0.5464,0.006208,0.28672,0.004096,0.005792,0.005696,0.23184,0.006048
+1352,420.62,2.37744,0.509216,0.008032,0.247968,0.005792,0.004448,0.00592,0.231104,0.005952
+1353,459.915,2.17432,0.547232,0.006368,0.29008,0.004928,0.004096,0.006144,0.229376,0.00624
+1354,532.986,1.87622,0.499712,0.007296,0.238464,0.00608,0.00416,0.006144,0.231424,0.006144
+1355,589.268,1.69702,0.495776,0.006304,0.239616,0.004192,0.005632,0.004512,0.229408,0.006112
+1356,518.088,1.93018,0.48912,0.006272,0.237376,0.005568,0.004832,0.005472,0.223616,0.005984
+1357,499.39,2.00244,0.495616,0.006144,0.239136,0.004576,0.005248,0.004992,0.229376,0.006144
+1358,554.338,1.80396,0.500736,0.006432,0.2424,0.005824,0.004416,0.006112,0.229408,0.006144
+1359,500.489,1.99805,0.50864,0.006848,0.251424,0.004608,0.005696,0.004544,0.229376,0.006144
+1360,472.925,2.1145,0.575904,0.006432,0.316896,0.004864,0.005568,0.004672,0.231296,0.006176
+1361,584.892,1.70972,0.494496,0.00672,0.235136,0.004704,0.004224,0.006112,0.231456,0.006144
+1362,556.371,1.79736,0.507072,0.00624,0.24304,0.004768,0.005472,0.004768,0.236768,0.006016
+1363,447.357,2.23535,0.533344,0.00672,0.272704,0.005376,0.004832,0.005504,0.232064,0.006144
+1364,541.441,1.84692,0.499712,0.006208,0.2368,0.0048,0.0056,0.00464,0.23552,0.006144
+1365,621.077,1.61011,0.484288,0.006432,0.227776,0.00432,0.005696,0.004544,0.229376,0.006144
+1366,505.367,1.97876,0.489568,0.006624,0.231168,0.004768,0.005888,0.00544,0.229728,0.005952
+1367,358.324,2.79077,0.538432,0.00784,0.273888,0.004992,0.005312,0.004928,0.235296,0.006176
+1368,603.952,1.65576,0.49328,0.006144,0.229376,0.006144,0.005184,0.005056,0.23536,0.006016
+1369,567.864,1.76099,0.491552,0.006176,0.229376,0.005728,0.004512,0.005824,0.233792,0.006144
+1370,369.542,2.70605,0.500192,0.0064,0.244128,0.006144,0.004096,0.006144,0.227168,0.006112
+1371,583.143,1.71484,0.48416,0.006496,0.22992,0.004224,0.0056,0.004608,0.227232,0.00608
+1372,554.488,1.80347,0.489472,0.006144,0.23312,0.005568,0.004864,0.00544,0.228192,0.006144
+1373,527.02,1.89746,0.50176,0.006144,0.243712,0.004192,0.005696,0.005568,0.230304,0.006144
+1374,321.911,3.10645,0.502272,0.006432,0.243712,0.005568,0.004864,0.00544,0.230112,0.006144
+1375,491.245,2.03564,0.514016,0.006624,0.244896,0.005056,0.004096,0.006144,0.24112,0.00608
+1376,461.521,2.16675,0.495808,0.0064,0.236192,0.006112,0.005408,0.004832,0.230848,0.006016
+1377,464.504,2.15283,0.548064,0.0072,0.286784,0.004928,0.004192,0.006144,0.232736,0.00608
+1378,537.11,1.86182,0.497664,0.006144,0.239104,0.004608,0.005824,0.00544,0.230432,0.006112
+1379,570.315,1.75342,0.496128,0.006432,0.235488,0.004352,0.005472,0.004768,0.233472,0.006144
+1380,504.309,1.98291,0.503968,0.006304,0.24528,0.004576,0.005856,0.00544,0.230368,0.006144
+1381,505.305,1.979,0.493504,0.006144,0.236736,0.004928,0.004096,0.006144,0.229376,0.00608
+1382,496.605,2.01367,0.514048,0.006144,0.259328,0.004864,0.005536,0.004704,0.227328,0.006144
+1383,556.824,1.7959,0.489472,0.006144,0.231456,0.005184,0.004864,0.005824,0.229856,0.006144
+1384,511.68,1.95435,0.52224,0.006528,0.260768,0.00608,0.00528,0.00496,0.232448,0.006176
+1385,543.02,1.84155,0.495968,0.006304,0.24176,0.00416,0.005632,0.004608,0.227328,0.006176
+1386,599.356,1.66846,0.48784,0.00656,0.227328,0.005856,0.004384,0.005792,0.232896,0.005024
+1387,436.441,2.29126,0.497536,0.007808,0.235904,0.005248,0.004992,0.005536,0.232032,0.006016
+1388,519.007,1.92676,0.511424,0.0072,0.245728,0.00512,0.005312,0.004928,0.237088,0.006048
+1389,617.332,1.61987,0.489856,0.006528,0.226368,0.004928,0.004224,0.006144,0.23552,0.006144
+1390,298.325,3.35205,0.493632,0.006208,0.231424,0.006016,0.004224,0.005984,0.233632,0.006144
+1391,475.229,2.10425,0.512896,0.0064,0.252224,0.004416,0.005408,0.004832,0.233472,0.006144
+1392,581.24,1.72046,0.483328,0.006144,0.2264,0.005024,0.005344,0.004896,0.229376,0.006144
+1393,480.131,2.08276,0.500352,0.006624,0.239232,0.00464,0.005152,0.005088,0.233472,0.006144
+1394,418.557,2.38916,0.516192,0.006176,0.26496,0.00592,0.00432,0.006048,0.222304,0.006464
+1395,606.545,1.64868,0.472672,0.006144,0.226752,0.004672,0.00512,0.00512,0.218624,0.00624
+1396,560.175,1.78516,0.495616,0.006144,0.237568,0.005664,0.004576,0.005728,0.229792,0.006144
+1397,474.239,2.10864,0.505856,0.006144,0.255968,0.004128,0.005632,0.004608,0.223232,0.006144
+1398,412.363,2.42505,0.552288,0.007488,0.29152,0.005984,0.004256,0.00608,0.231008,0.005952
+1399,443.53,2.25464,0.526944,0.006464,0.266304,0.00432,0.005408,0.004832,0.233472,0.006144
+1400,479.513,2.08545,0.518144,0.007232,0.261088,0.005152,0.004672,0.00448,0.229376,0.006144
+1401,425.824,2.34839,0.575904,0.006432,0.321664,0.005504,0.004736,0.0056,0.225824,0.006144
+1402,530.983,1.8833,0.489504,0.006144,0.237568,0.005632,0.004608,0.005504,0.224896,0.005152
+1403,558.952,1.78906,0.506368,0.00656,0.233344,0.004448,0.005152,0.005088,0.24576,0.006016
+1404,455.263,2.19653,0.513344,0.006144,0.23552,0.006144,0.004096,0.006144,0.249312,0.005984
+1405,354.05,2.82446,0.523232,0.0064,0.257888,0.004928,0.00416,0.006144,0.237568,0.006144
+1406,481.373,2.07739,0.538624,0.006144,0.269984,0.005568,0.004832,0.005472,0.24048,0.006144
+1407,423.49,2.36133,0.507904,0.006144,0.24128,0.00448,0.005312,0.004928,0.239616,0.006144
+1408,516.845,1.93481,0.505344,0.006304,0.241344,0.005568,0.004864,0.005472,0.235744,0.006048
+1409,571.429,1.75,0.5016,0.0064,0.240128,0.004192,0.005728,0.004512,0.234656,0.005984
+1410,444.831,2.24805,0.527552,0.007392,0.25664,0.005536,0.004864,0.005472,0.241632,0.006016
+1411,456.888,2.18872,0.50528,0.006144,0.23952,0.004192,0.005632,0.004608,0.239136,0.006048
+1412,601.115,1.66357,0.48944,0.006144,0.231424,0.006144,0.004096,0.006144,0.229376,0.006112
+1413,555.917,1.79883,0.48128,0.00768,0.227328,0.00464,0.005184,0.005024,0.224448,0.006976
+1414,292.634,3.41724,0.509952,0.006144,0.24576,0.006144,0.00528,0.00496,0.23552,0.006144
+1415,586.315,1.70557,0.489536,0.00624,0.233472,0.005632,0.004576,0.00576,0.227712,0.006144
+1416,636.321,1.57153,0.483328,0.006144,0.22528,0.006048,0.004192,0.006144,0.229376,0.006144
+1417,479.12,2.08716,0.493568,0.0072,0.240608,0.004096,0.005824,0.006016,0.22368,0.006144
+1418,548.253,1.82397,0.49728,0.006368,0.239264,0.005568,0.004864,0.00544,0.229696,0.00608
+1419,616.589,1.62183,0.479872,0.006368,0.225632,0.004192,0.005696,0.00448,0.227328,0.006176
+1420,497.57,2.00977,0.489408,0.007616,0.231936,0.005536,0.004768,0.005568,0.227904,0.00608
+1421,528.243,1.89307,0.55712,0.006336,0.299008,0.004096,0.005824,0.00544,0.2304,0.006016
+1422,424.984,2.35303,0.532192,0.006144,0.272384,0.006144,0.004096,0.006144,0.231296,0.005984
+1423,555.54,1.80005,0.491904,0.006528,0.231424,0.006048,0.004192,0.006144,0.231424,0.006144
+1424,444.203,2.25122,0.522592,0.0064,0.254016,0.005568,0.004704,0.005952,0.239808,0.006144
+1425,569.601,1.75562,0.489472,0.00736,0.231584,0.004768,0.004096,0.006144,0.230496,0.005024
+1426,548.694,1.82251,0.493568,0.007488,0.228032,0.005952,0.004288,0.00608,0.235584,0.006144
+1427,559.028,1.78882,0.485024,0.006592,0.231008,0.00464,0.005184,0.005024,0.226496,0.00608
+1428,526.749,1.89844,0.499712,0.007264,0.236448,0.006144,0.004096,0.006144,0.233472,0.006144
+1429,452.247,2.21118,0.752512,0.006464,0.49824,0.005888,0.005568,0.004928,0.22528,0.006144
+1430,525.667,1.90234,0.5288,0.00688,0.270432,0.005856,0.004384,0.00592,0.229088,0.00624
+1431,478.225,2.09106,0.503072,0.022528,0.219136,0.00576,0.016768,0.006144,0.226496,0.00624
+1432,452.197,2.21143,0.548704,0.0064,0.274624,0.006144,0.005184,0.017344,0.232544,0.006464
+1433,604.665,1.65381,0.487424,0.006144,0.23264,0.004928,0.004096,0.006144,0.228416,0.005056
+1434,538.735,1.8562,0.480992,0.007552,0.227328,0.004736,0.006144,0.005536,0.223616,0.00608
+1435,394.871,2.53247,0.536192,0.006144,0.274432,0.005472,0.004768,0.016352,0.22304,0.005984
+1436,501.715,1.99316,0.49136,0.006144,0.23696,0.004704,0.005728,0.004512,0.227328,0.005984
+1437,424.456,2.35596,0.486528,0.007328,0.228192,0.00592,0.00432,0.006016,0.228768,0.005984
+1438,412.529,2.42407,0.498496,0.0064,0.24432,0.0056,0.00464,0.00592,0.225504,0.006112
+1439,621.925,1.60791,0.493568,0.006144,0.235136,0.00448,0.005536,0.004704,0.231424,0.006144
+1440,651.814,1.53418,0.48512,0.006304,0.22528,0.0056,0.00464,0.005664,0.231648,0.005984
+1441,482.052,2.07446,0.478368,0.007872,0.223552,0.00576,0.00448,0.005856,0.22352,0.007328
+1442,538.381,1.85742,0.550976,0.006432,0.287264,0.006016,0.004224,0.00608,0.23488,0.00608
+1443,674.461,1.48267,0.47888,0.0064,0.221184,0.005216,0.004896,0.00544,0.229728,0.006016
+1444,622.303,1.60693,0.475648,0.006432,0.225408,0.005536,0.0048,0.005568,0.22176,0.006144
+1445,157.121,6.3645,0.499936,0.006368,0.240864,0.004896,0.005824,0.01056,0.22528,0.006144
+1446,434.174,2.30322,0.494432,0.0064,0.236288,0.005984,0.004256,0.005984,0.22944,0.00608
+1447,390.877,2.55835,0.5096,0.006592,0.25104,0.004736,0.004448,0.006048,0.230688,0.006048
+1448,534.865,1.86963,0.485856,0.006432,0.226656,0.00496,0.00544,0.0048,0.231424,0.006144
+1449,529.952,1.88696,0.481152,0.0064,0.23392,0.004256,0.005536,0.004704,0.22032,0.006016
+1450,542.948,1.8418,0.493408,0.006624,0.23952,0.005536,0.004864,0.00544,0.225408,0.006016
+1451,490.833,2.03735,0.522528,0.0064,0.26496,0.005664,0.004576,0.00576,0.229056,0.006112
+1452,552.17,1.81104,0.493248,0.007328,0.238432,0.006144,0.004096,0.006144,0.225056,0.006048
+1453,543.236,1.84082,0.495616,0.007424,0.24432,0.004256,0.00576,0.00448,0.223232,0.006144
+1454,528.584,1.89185,0.524096,0.006144,0.271424,0.005056,0.005408,0.004832,0.22512,0.006112
+1455,451.052,2.21704,0.757376,0.006496,0.502848,0.005088,0.005984,0.005504,0.225408,0.006048
+1456,588.168,1.7002,0.499712,0.007808,0.24944,0.004896,0.005504,0.004736,0.221184,0.006144
+1457,508.693,1.96582,0.493888,0.00656,0.235072,0.004768,0.004096,0.006144,0.2312,0.006048
+1458,487.387,2.05176,0.49728,0.006144,0.2376,0.005952,0.004256,0.005824,0.23152,0.005984
+1459,597.52,1.67358,0.485376,0.006144,0.235552,0.005568,0.00464,0.005696,0.221632,0.006144
+1460,602.974,1.65845,0.491552,0.0072,0.232416,0.006144,0.005248,0.004992,0.229376,0.006176
+1461,485.653,2.05908,0.49824,0.006656,0.243776,0.005408,0.004832,0.005536,0.22592,0.006112
+1462,539.018,1.85522,0.49376,0.006336,0.239648,0.006112,0.004096,0.006144,0.22528,0.006144
+1463,599.268,1.6687,0.49328,0.007456,0.240352,0.005728,0.004512,0.005824,0.223296,0.006112
+1464,513.734,1.94653,0.49216,0.006464,0.23376,0.0056,0.00464,0.006144,0.229376,0.006176
+1465,532.017,1.87964,0.544192,0.0064,0.292032,0.005024,0.004128,0.006144,0.224352,0.006112
+1466,428.228,2.33521,0.546816,0.006144,0.288768,0.005856,0.004384,0.006144,0.229376,0.006144
+1467,513.734,1.94653,0.497472,0.006368,0.243712,0.005472,0.004768,0.005568,0.225312,0.006272
+1468,464.136,2.15454,0.53168,0.006144,0.277984,0.00464,0.005792,0.005472,0.224256,0.007392
+1469,515.155,1.94116,0.488128,0.006432,0.233888,0.005888,0.004352,0.006144,0.22528,0.006144
+1470,516.454,1.93628,0.48384,0.006624,0.237248,0.005536,0.004864,0.005472,0.218976,0.00512
+1471,500.061,1.99976,0.48976,0.0064,0.244384,0.005376,0.004864,0.006016,0.216608,0.006112
+1472,488.724,2.04614,0.504288,0.006368,0.244288,0.006112,0.004096,0.006144,0.231296,0.005984
+1473,384.024,2.604,0.512928,0.006592,0.258112,0.005664,0.004896,0.00544,0.22608,0.006144
+1474,540.94,1.84863,0.499488,0.006432,0.241632,0.006144,0.004096,0.006144,0.229056,0.005984
+1475,515.155,1.94116,0.497664,0.0072,0.244704,0.004096,0.005792,0.005568,0.22416,0.006144
+1476,418.13,2.3916,0.76288,0.007712,0.508384,0.00592,0.00432,0.006016,0.224576,0.005952
+1477,539.089,1.85498,0.491552,0.006144,0.237216,0.004448,0.005344,0.004896,0.227328,0.006176
+1478,502.515,1.98999,0.50384,0.006784,0.2472,0.004992,0.005408,0.004832,0.22864,0.005984
+1479,450.407,2.22021,0.50544,0.007296,0.248704,0.00592,0.00432,0.005984,0.227072,0.006144
+1480,587.746,1.70142,0.503808,0.006144,0.249856,0.005632,0.004608,0.005696,0.226752,0.00512
+1481,453.599,2.20459,0.55088,0.006272,0.294592,0.004448,0.005408,0.0048,0.22928,0.00608
+1482,479.064,2.0874,0.566432,0.00624,0.29456,0.005568,0.004832,0.005472,0.242528,0.007232
+1483,574.716,1.73999,0.49584,0.006368,0.23552,0.005984,0.004256,0.005824,0.231744,0.006144
+1484,594.83,1.68115,0.483328,0.006144,0.227328,0.005568,0.004672,0.005792,0.22768,0.006144
+1485,379.822,2.63281,0.519328,0.007232,0.265152,0.00416,0.005664,0.004512,0.226432,0.006176
+1486,593.022,1.68628,0.493504,0.006144,0.23872,0.004992,0.00544,0.0048,0.227008,0.0064
+1487,601.999,1.66113,0.495136,0.006304,0.22528,0.004096,0.005888,0.005472,0.24208,0.006016
+1488,524.792,1.90552,0.489472,0.007552,0.233184,0.005024,0.005408,0.004832,0.227328,0.006144
+1489,335.243,2.98291,0.548896,0.00752,0.291488,0.006144,0.005152,0.005088,0.227328,0.006176
+1490,447.944,2.23242,0.53248,0.00624,0.273344,0.005088,0.00528,0.00496,0.231424,0.006144
+1491,282.853,3.5354,0.526176,0.006144,0.27152,0.00496,0.004096,0.006144,0.227264,0.006048
+1492,298.978,3.34473,0.513312,0.006144,0.253216,0.004832,0.0056,0.00464,0.232832,0.006048
+1493,223.325,4.47778,0.50944,0.006432,0.249856,0.005152,0.004864,0.00544,0.231648,0.006048
+1494,448.042,2.23193,0.518752,0.006592,0.260256,0.005856,0.004384,0.005952,0.229568,0.006144
+1495,418.258,2.39087,0.51808,0.006368,0.259616,0.004672,0.005408,0.004832,0.231136,0.006048
+1496,277.921,3.59814,0.549472,0.006624,0.290528,0.004672,0.005728,0.004512,0.231424,0.005984
+1497,538.947,1.85547,0.489472,0.007232,0.232384,0.005728,0.004512,0.005824,0.227648,0.006144
+1498,442.763,2.25854,0.5072,0.006144,0.249888,0.006112,0.004096,0.006144,0.228768,0.006048
+1499,419.973,2.3811,0.601472,0.007328,0.34224,0.004736,0.006016,0.005472,0.229632,0.006048
+1500,585.31,1.7085,0.485632,0.006496,0.22944,0.00608,0.00416,0.006144,0.227328,0.005984
+1501,428.631,2.33301,0.493568,0.007264,0.237696,0.004896,0.004096,0.006176,0.227296,0.006144
+1502,443.915,2.25269,0.637152,0.006368,0.382976,0.005728,0.004512,0.006016,0.225408,0.006144
+1503,403.348,2.47925,0.49152,0.007456,0.230112,0.00528,0.004896,0.005472,0.23216,0.006144
+1504,435.606,2.29565,0.49328,0.0064,0.236864,0.005056,0.00528,0.00496,0.228736,0.005984
+1505,456.074,2.19263,0.555008,0.006144,0.301056,0.005472,0.004768,0.005568,0.225856,0.006144
+1506,575.523,1.73755,0.480928,0.006144,0.226816,0.004608,0.005792,0.004448,0.227136,0.005984
+1507,582.729,1.71606,0.489888,0.006688,0.233472,0.005248,0.004864,0.005472,0.227872,0.006272
+1508,348.833,2.8667,0.513376,0.006144,0.251904,0.005824,0.004416,0.005888,0.23312,0.00608
+1509,574.716,1.73999,0.4984,0.006432,0.238048,0.005344,0.004864,0.005472,0.231936,0.006304
+1510,576.171,1.7356,0.49216,0.006016,0.231488,0.0048,0.0056,0.00464,0.233472,0.006144
+1511,379.963,2.63184,0.501408,0.006144,0.245024,0.004832,0.004096,0.006144,0.229152,0.006016
+1512,517.237,1.93335,0.511616,0.006144,0.247808,0.006144,0.00512,0.00512,0.235136,0.006144
+1513,602.974,1.65845,0.485376,0.007232,0.228288,0.00576,0.00448,0.005824,0.227648,0.006144
+1514,545.188,1.83423,0.485888,0.006656,0.229376,0.006144,0.005184,0.005056,0.228448,0.005024
+1515,538.098,1.8584,0.494016,0.0064,0.237664,0.004384,0.005472,0.004768,0.229152,0.006176
+1516,548.62,1.82275,0.491232,0.006144,0.234912,0.004704,0.005696,0.004544,0.229248,0.005984
+1517,551.947,1.81177,0.487424,0.006144,0.235104,0.004512,0.00528,0.00496,0.225312,0.006112
+1518,595.089,1.68042,0.485376,0.007456,0.233472,0.004832,0.0056,0.00464,0.223232,0.006144
+1519,422.486,2.36694,0.48496,0.007264,0.233632,0.004864,0.004096,0.006144,0.22288,0.00608
+1520,552.99,1.80835,0.502624,0.007008,0.247808,0.00576,0.00448,0.00608,0.225344,0.006144
+1521,579.677,1.7251,0.48736,0.0064,0.227648,0.005824,0.004416,0.005888,0.231104,0.00608
+1522,414.03,2.41528,0.502848,0.0072,0.242656,0.006048,0.004192,0.006144,0.230656,0.005952
+1523,569.839,1.75488,0.508704,0.006496,0.255648,0.004896,0.004096,0.006144,0.22528,0.006144
+1524,543.38,1.84033,0.486592,0.007328,0.232288,0.005984,0.004256,0.006048,0.224608,0.00608
+1525,568.179,1.76001,0.489664,0.00688,0.235744,0.006144,0.005408,0.004832,0.223232,0.007424
+1526,474.678,2.10669,0.500224,0.006944,0.239744,0.00576,0.00448,0.005856,0.231392,0.006048
+1527,372.431,2.68506,0.507968,0.006368,0.246112,0.005824,0.004416,0.005888,0.233248,0.006112
+1528,438.45,2.28076,0.51808,0.006144,0.26192,0.005536,0.004864,0.005472,0.228096,0.006048
+1529,432.387,2.31274,0.489472,0.007328,0.234336,0.0056,0.00464,0.005696,0.225728,0.006144
+1530,573.348,1.74414,0.49152,0.006144,0.23264,0.004928,0.005472,0.004768,0.231424,0.006144
+1531,533.472,1.87451,0.505728,0.006368,0.238688,0.005088,0.004096,0.006144,0.239232,0.006112
+1532,365.29,2.73755,0.533984,0.007232,0.267232,0.006112,0.004096,0.006144,0.237152,0.006016
+1533,518.415,1.92896,0.536096,0.007328,0.267104,0.005344,0.004864,0.005472,0.239904,0.00608
+1534,459.347,2.177,0.512032,0.006176,0.253344,0.004704,0.005728,0.004512,0.231424,0.006144
+1535,416.514,2.40088,0.509952,0.007328,0.248672,0.00592,0.00432,0.006016,0.23104,0.006656
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..768f3e6
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,181.773,5.52763,3.54852,0.0263855,0.440994,0.00821406,0.00569294,0.0109301,0.0331871,0.0358805,2.95079,0.0364503
+max_1024,206.015,8.31689,5.55789,0.131072,2.50506,0.023616,0.018432,0.02704,0.0592,0.049504,3.14966,0.05376
+min_1024,120.237,4.854,3.4128,0.024576,0.37376,0.006592,0.004128,0.009888,0.031264,0.034592,2.85488,0.034848
+512,196.545,5.08789,3.47907,0.026112,0.38512,0.00816,0.004832,0.011488,0.032896,0.03552,2.9385,0.036448
+513,181.007,5.52466,3.48438,0.025312,0.384352,0.00832,0.00464,0.01168,0.032672,0.03552,2.94659,0.035296
+514,199.863,5.00342,3.50886,0.025248,0.415744,0.008192,0.005984,0.01152,0.033472,0.036448,2.93542,0.036832
+515,199.523,5.01196,3.4809,0.026304,0.37952,0.008192,0.005952,0.010432,0.032768,0.034816,2.94646,0.036448
+516,183.266,5.45654,3.48064,0.02672,0.39312,0.009568,0.004768,0.011488,0.0328,0.035616,2.93027,0.036288
+517,184.123,5.43115,3.48618,0.0256,0.38912,0.008192,0.005728,0.010656,0.03392,0.035616,2.94102,0.03632
+518,192.264,5.20117,3.4912,0.026656,0.404608,0.008096,0.005088,0.011264,0.033024,0.035552,2.93069,0.036224
+519,196.479,5.0896,3.47955,0.02608,0.3856,0.00816,0.00576,0.010656,0.032736,0.034816,2.93888,0.036864
+520,175.013,5.71387,3.55686,0.026624,0.439648,0.00816,0.0048,0.011456,0.032992,0.036576,2.96026,0.036352
+521,168.117,5.94824,3.56387,0.025984,0.445376,0.008192,0.005728,0.010656,0.032768,0.034848,2.96445,0.035872
+522,153.471,6.51587,3.73146,0.042496,0.626944,0.008128,0.016,0.010944,0.032768,0.035904,2.92256,0.035712
+523,185.398,5.3938,3.61267,0.026624,0.512,0.008192,0.00576,0.010624,0.032544,0.035072,2.9463,0.035552
+524,161.4,6.1958,3.58426,0.025472,0.454656,0.021728,0.005952,0.010688,0.033216,0.036096,2.9599,0.036544
+525,177.094,5.64673,3.5664,0.025376,0.477184,0.008192,0.005952,0.011488,0.033536,0.04528,2.9225,0.036896
+526,183.521,5.44897,3.49888,0.025472,0.4112,0.008128,0.004608,0.011616,0.033216,0.035072,2.9327,0.036864
+527,192.129,5.20483,3.49798,0.026432,0.424128,0.008192,0.00592,0.010464,0.032768,0.034816,2.91981,0.035456
+528,176.498,5.66577,3.51056,0.026496,0.412096,0.00816,0.005888,0.010496,0.033984,0.035648,2.94096,0.036832
+529,197.369,5.06665,3.50541,0.026624,0.41984,0.008192,0.00608,0.010304,0.033888,0.0352,2.92896,0.03632
+530,185.105,5.40234,3.54512,0.026624,0.43216,0.00816,0.006144,0.01024,0.0592,0.04288,2.92442,0.035296
+531,197.769,5.0564,3.49904,0.026624,0.399136,0.00816,0.005536,0.010752,0.032736,0.0352,2.94486,0.036032
+532,177.716,5.62695,3.50413,0.026624,0.405344,0.00816,0.005536,0.01072,0.032512,0.035392,2.94426,0.035584
+533,177.616,5.63013,3.57494,0.026528,0.464864,0.007456,0.00496,0.010304,0.034112,0.035072,2.94131,0.050336
+534,188.504,5.30493,3.48624,0.026208,0.389984,0.008096,0.005536,0.01104,0.0328,0.036576,2.93914,0.036864
+535,192.102,5.20557,3.52051,0.026624,0.396352,0.008128,0.00512,0.01024,0.033824,0.03536,2.95981,0.045056
+536,175.794,5.68848,3.61472,0.026656,0.501056,0.021152,0.006144,0.022528,0.039968,0.035808,2.9264,0.035008
+537,166.193,6.01709,3.47302,0.026304,0.391488,0.008192,0.005856,0.010528,0.032768,0.034816,2.92659,0.03648
+538,181.311,5.51538,3.56557,0.026624,0.45616,0.006688,0.006144,0.01024,0.032768,0.03632,2.9551,0.03552
+539,140.64,7.11035,3.61242,0.026624,0.514048,0.008192,0.006144,0.010272,0.032736,0.034944,2.94285,0.036608
+540,191,5.2356,3.47712,0.026624,0.402752,0.008128,0.004864,0.011488,0.032704,0.035712,2.91837,0.03648
+541,196.828,5.08057,3.47722,0.026016,0.395392,0.008192,0.004736,0.01152,0.033024,0.03536,2.92643,0.036544
+542,159.247,6.27954,3.54794,0.025376,0.45056,0.008192,0.005664,0.010688,0.0408,0.036352,2.93453,0.035776
+543,171.539,5.82959,3.49469,0.02544,0.406624,0.008128,0.004928,0.010304,0.032768,0.03584,2.93376,0.036896
+544,187.64,5.32935,3.52198,0.026656,0.444384,0.007904,0.005536,0.010688,0.033216,0.036032,2.92128,0.036288
+545,185.684,5.3855,3.4993,0.026624,0.405504,0.008192,0.00576,0.010624,0.032768,0.034816,2.93856,0.036448
+546,186.998,5.34766,3.49357,0.026624,0.397312,0.008192,0.005952,0.010432,0.0328,0.036544,2.93917,0.036544
+547,178.623,5.59839,3.77261,0.025984,0.63536,0.008128,0.014784,0.011584,0.049024,0.035616,2.95526,0.036864
+548,168.914,5.92017,3.51341,0.026336,0.421888,0.008128,0.005568,0.010688,0.033248,0.036128,2.9352,0.036224
+549,203.366,4.91724,3.49754,0.0264,0.411872,0.008192,0.005696,0.010688,0.032768,0.040416,2.92509,0.036416
+550,151.283,6.61011,3.6464,0.025568,0.548832,0.008192,0.006144,0.01024,0.032768,0.036864,2.94237,0.035424
+551,190.352,5.25342,3.51062,0.02656,0.428064,0.00816,0.004832,0.011424,0.03328,0.035168,2.92659,0.036544
+552,161.782,6.18115,3.53165,0.025504,0.432096,0.008192,0.006144,0.01024,0.0328,0.036736,2.94307,0.036864
+553,182.15,5.48999,3.47478,0.025952,0.391072,0.008128,0.004928,0.011296,0.03376,0.034816,2.92864,0.036192
+554,170.624,5.86084,3.50838,0.025952,0.421952,0.008128,0.005056,0.011264,0.03328,0.035456,2.93158,0.035712
+555,191.913,5.21069,3.51642,0.026624,0.40304,0.00816,0.004544,0.01168,0.032576,0.03472,2.95942,0.035648
+556,179.949,5.55713,3.50557,0.026656,0.399104,0.008256,0.005536,0.010816,0.032736,0.03632,2.94973,0.036416
+557,181.119,5.52124,3.52768,0.026624,0.443776,0.008448,0.005536,0.010816,0.033056,0.034944,2.92842,0.036064
+558,180.441,5.54199,3.58294,0.0256,0.507904,0.00816,0.005792,0.010624,0.032768,0.036768,2.91962,0.035712
+559,186.844,5.35205,3.61434,0.026272,0.539584,0.008192,0.005568,0.010784,0.0328,0.034848,2.9201,0.036192
+560,187.263,5.34009,3.54813,0.025568,0.454656,0.008192,0.005792,0.010624,0.032768,0.036064,2.93869,0.035776
+561,184.347,5.42456,3.5961,0.026624,0.50176,0.008192,0.005472,0.010784,0.0328,0.034912,2.93888,0.036672
+562,182.036,5.49341,3.50291,0.025504,0.4096,0.00816,0.006144,0.01024,0.032768,0.036608,2.93709,0.0368
+563,147.481,6.78052,3.56685,0.026592,0.46912,0.008192,0.005664,0.01072,0.032672,0.034912,2.94288,0.036096
+564,141.73,7.05566,3.69978,0.026624,0.620448,0.008128,0.005536,0.010688,0.03312,0.036032,2.92323,0.035968
+565,165.042,6.05908,3.53498,0.03648,0.430592,0.008192,0.006144,0.01024,0.0328,0.034784,2.94026,0.035488
+566,149.076,6.70801,3.75626,0.026016,0.656064,0.008224,0.01648,0.011296,0.031712,0.036288,2.93437,0.035808
+567,194.983,5.12866,3.59834,0.026624,0.458752,0.023616,0.005056,0.011616,0.032608,0.03552,2.96947,0.035072
+568,185.76,5.3833,3.53894,0.026624,0.444032,0.008128,0.004544,0.01168,0.033376,0.036768,2.93696,0.036832
+569,187.563,5.33154,3.53094,0.026272,0.424448,0.008192,0.006016,0.010368,0.032768,0.036544,2.94944,0.036896
+570,194.612,5.13843,3.50618,0.026624,0.4096,0.008192,0.005696,0.010688,0.032768,0.036544,2.94067,0.035392
+571,182.296,5.4856,3.50723,0.026624,0.41776,0.008128,0.005536,0.010688,0.032896,0.034944,2.93443,0.036224
+572,183.242,5.45728,3.53952,0.025568,0.439552,0.008064,0.005024,0.010208,0.034304,0.035328,2.94483,0.03664
+573,199.048,5.02393,3.52794,0.026176,0.411776,0.008224,0.005536,0.010848,0.03312,0.034848,2.96109,0.03632
+574,178.048,5.61646,3.57338,0.026592,0.46848,0.00816,0.004704,0.01152,0.032704,0.035616,2.94912,0.03648
+575,178.219,5.61108,3.51165,0.026656,0.419808,0.008192,0.005696,0.010688,0.03248,0.035104,2.93683,0.036192
+576,189.209,5.28516,3.58979,0.025184,0.46416,0.008128,0.004896,0.011328,0.03328,0.035424,2.9712,0.036192
+577,184.638,5.41602,3.49814,0.02624,0.405728,0.008128,0.005536,0.011264,0.032736,0.036064,2.93302,0.039424
+578,182.98,5.46509,3.52666,0.026208,0.41616,0.008192,0.006144,0.01024,0.032768,0.036224,2.95533,0.035392
+579,200.637,4.98413,3.50461,0.026112,0.404448,0.007968,0.005536,0.01072,0.032576,0.03536,2.94614,0.035744
+580,187.46,5.33447,3.51437,0.026624,0.435808,0.008128,0.004576,0.011648,0.032704,0.03552,2.92442,0.034944
+581,176.255,5.67358,3.53485,0.026176,0.428256,0.008224,0.005536,0.010784,0.033024,0.036192,2.94979,0.036864
+582,168.296,5.94189,3.57722,0.026656,0.44768,0.008128,0.0152,0.011936,0.032704,0.035392,2.96304,0.03648
+583,152.921,6.53931,3.54774,0.025472,0.403456,0.008192,0.005664,0.010688,0.032608,0.03504,2.98992,0.036704
+584,186.394,5.36499,3.51882,0.026112,0.416416,0.008192,0.005824,0.010592,0.03232,0.035264,2.94909,0.035008
+585,174.231,5.7395,3.5328,0.026624,0.406912,0.008096,0.004832,0.011456,0.03264,0.035776,2.97101,0.035456
+586,173.244,5.77222,3.52867,0.026304,0.418112,0.008192,0.00592,0.010464,0.032768,0.036864,2.95322,0.036832
+587,197.027,5.07544,3.49642,0.026208,0.390016,0.008192,0.005856,0.010528,0.032768,0.036,2.9511,0.035744
+588,192.599,5.19214,3.52464,0.026112,0.392928,0.008128,0.005024,0.011232,0.032864,0.035744,2.97738,0.035232
+589,174.751,5.72241,3.54717,0.026624,0.413696,0.008192,0.00592,0.010496,0.032736,0.034944,2.97907,0.035488
+590,170.078,5.87964,3.53283,0.0264,0.421312,0.008192,0.004928,0.01136,0.032768,0.035744,2.95526,0.036864
+591,184.913,5.40796,3.58678,0.025344,0.44224,0.00816,0.005536,0.010752,0.0328,0.035008,2.99008,0.036864
+592,153.339,6.52148,3.56838,0.0368,0.428864,0.008192,0.005568,0.010784,0.0328,0.036864,2.97283,0.03568
+593,172.871,5.78467,3.51242,0.026112,0.401184,0.008128,0.005024,0.011328,0.032832,0.0352,2.95702,0.035584
+594,165.776,6.03223,3.49594,0.026368,0.381184,0.008192,0.005792,0.010592,0.032768,0.036832,2.95837,0.03584
+595,183.982,5.4353,3.52038,0.025952,0.396192,0.008192,0.006112,0.010272,0.032768,0.034816,2.9696,0.03648
+596,179.586,5.56836,3.50803,0.026624,0.396928,0.008128,0.004544,0.01168,0.033248,0.034944,2.95526,0.036672
+597,185.549,5.3894,3.55123,0.02608,0.441024,0.008192,0.00576,0.010624,0.032768,0.034816,2.95526,0.036704
+598,176.987,5.65015,3.57843,0.025216,0.452608,0.008192,0.005728,0.010688,0.032608,0.036096,2.97053,0.036768
+599,192.427,5.19678,3.54448,0.026528,0.420992,0.007136,0.006144,0.01024,0.034144,0.03536,2.96768,0.036256
+600,187.589,5.33081,3.51642,0.026304,0.40304,0.008128,0.004928,0.011328,0.03168,0.036896,2.95728,0.036832
+601,177.755,5.62573,3.67891,0.026816,0.551296,0.008192,0.0056,0.01072,0.032128,0.035008,2.97405,0.035104
+602,191.985,5.20874,3.5729,0.026624,0.413696,0.008192,0.00592,0.010464,0.032768,0.036288,3.00294,0.036
+603,191.832,5.21289,3.65078,0.026176,0.51168,0.008192,0.004864,0.011392,0.03296,0.03536,2.9841,0.036064
+604,170.838,5.85352,3.70774,0.02544,0.56224,0.00816,0.016416,0.011104,0.032768,0.034912,2.98102,0.03568
+605,168.56,5.93262,3.70282,0.026624,0.550912,0.018144,0.005568,0.014624,0.03248,0.035616,2.98304,0.035808
+606,135.15,7.39917,3.6801,0.026624,0.528384,0.008192,0.006144,0.010272,0.032768,0.035968,2.99504,0.036704
+607,174.536,5.72949,3.60554,0.026656,0.436192,0.008192,0.006144,0.01024,0.032768,0.036224,3.01286,0.036256
+608,189.946,5.26465,3.60515,0.025312,0.462848,0.008192,0.005568,0.010816,0.034176,0.035456,2.98598,0.0368
+609,186.947,5.34912,3.5616,0.025792,0.399936,0.00816,0.005536,0.011232,0.0328,0.034848,3.00749,0.035808
+610,183.892,5.43799,3.58797,0.026624,0.413728,0.00816,0.006144,0.01024,0.0328,0.03664,3.0169,0.036736
+611,185.911,5.37891,3.55312,0.026624,0.400896,0.008128,0.004672,0.011488,0.033248,0.034976,2.99638,0.036704
+612,167.225,5.97998,3.72234,0.026624,0.557056,0.008192,0.006144,0.01024,0.032768,0.03648,3.0088,0.036032
+613,177.086,5.64697,3.66659,0.025536,0.509952,0.008192,0.016032,0.010592,0.032768,0.042784,2.98416,0.036576
+614,173.266,5.77148,3.61882,0.026368,0.448768,0.008192,0.005984,0.0104,0.032768,0.036032,3.01485,0.035456
+615,177.639,5.62939,3.57242,0.0264,0.4,0.008128,0.005504,0.01072,0.032992,0.035136,3.01667,0.036864
+616,156.587,6.38623,3.57171,0.026656,0.40752,0.008192,0.006144,0.01024,0.032768,0.036224,3.00813,0.03584
+617,174.953,5.71582,3.54963,0.025024,0.401408,0.008192,0.006144,0.010272,0.032736,0.035872,2.99478,0.0352
+618,190.158,5.25879,3.59347,0.026624,0.444416,0.008192,0.006144,0.01024,0.032768,0.036256,2.99267,0.03616
+619,191.635,5.21826,3.55043,0.026624,0.393216,0.008192,0.005888,0.010496,0.032768,0.035936,3.00099,0.03632
+620,192.156,5.2041,3.54291,0.026624,0.390624,0.00816,0.004672,0.011584,0.033056,0.035232,2.99622,0.036736
+621,195.7,5.10986,3.55325,0.026656,0.380512,0.008128,0.004544,0.011776,0.033184,0.034912,3.0167,0.036832
+622,184.355,5.42432,3.5881,0.026624,0.40544,0.008224,0.005536,0.01072,0.032288,0.035456,3.02694,0.036864
+623,192.735,5.18848,3.54822,0.026624,0.392256,0.008128,0.00512,0.01136,0.032704,0.0352,3.00074,0.036096
+624,192.337,5.19922,3.54758,0.026432,0.390048,0.008192,0.005952,0.010432,0.0328,0.036288,3.00086,0.036576
+625,185.005,5.40527,3.59104,0.02688,0.412288,0.008192,0.006048,0.010336,0.032768,0.034848,3.02282,0.036864
+626,179.76,5.56299,3.55738,0.02656,0.390304,0.008128,0.005088,0.01024,0.034112,0.03552,3.01203,0.035392
+627,194.714,5.13574,3.576,0.025792,0.412672,0.008192,0.006144,0.01024,0.032512,0.035008,3.00979,0.035648
+628,188.495,5.30518,3.57171,0.026304,0.393568,0.00816,0.005696,0.010688,0.032768,0.036416,3.02246,0.035648
+629,192.753,5.18799,3.60765,0.026464,0.415904,0.008192,0.00608,0.010304,0.032768,0.034848,3.03661,0.03648
+630,182.044,5.49316,3.56602,0.025344,0.386944,0.008192,0.005568,0.010688,0.032896,0.036416,3.0233,0.036672
+631,189.384,5.28027,3.60422,0.026656,0.41888,0.008128,0.005088,0.010272,0.032736,0.03584,3.03002,0.036608
+632,191.617,5.21875,3.58768,0.026624,0.402528,0.008128,0.005088,0.010272,0.032768,0.036352,3.02947,0.036448
+633,190.317,5.25439,3.61434,0.026016,0.397984,0.008096,0.005536,0.01072,0.03232,0.03552,3.06176,0.036384
+634,180.919,5.52734,3.57923,0.026624,0.386368,0.008128,0.004864,0.011424,0.033152,0.035328,3.03702,0.03632
+635,180.775,5.53174,3.64954,0.025888,0.43488,0.008192,0.005536,0.01072,0.032544,0.0352,3.05971,0.036864
+636,189.157,5.28662,3.65843,0.02528,0.454336,0.008256,0.005536,0.010688,0.032832,0.036288,3.04938,0.03584
+637,180.123,5.55176,3.61152,0.02544,0.41984,0.008192,0.006016,0.010368,0.032768,0.034848,3.0385,0.035552
+638,174.298,5.7373,3.64762,0.025568,0.434208,0.00816,0.006144,0.01024,0.032768,0.0368,3.05754,0.036192
+639,178.724,5.59521,3.64115,0.02608,0.413888,0.006848,0.006144,0.01024,0.032768,0.036128,3.07274,0.03632
+640,151.289,6.60986,3.76218,0.026048,0.530688,0.008096,0.005536,0.010688,0.033216,0.036,3.07504,0.036864
+641,179.037,5.58545,3.63754,0.025504,0.445984,0.008128,0.00464,0.011584,0.032544,0.035424,3.0375,0.036224
+642,148.632,6.72803,3.60186,0.026624,0.396864,0.00816,0.004576,0.011744,0.031264,0.036864,3.04947,0.036288
+643,192.517,5.19434,3.62192,0.026656,0.421856,0.008192,0.006144,0.010272,0.03376,0.03536,3.04307,0.036608
+644,179.037,5.58545,3.63245,0.026624,0.413696,0.008192,0.00592,0.010464,0.032768,0.036608,3.06202,0.03616
+645,183.892,5.43799,3.62291,0.026624,0.407552,0.008192,0.006144,0.01024,0.032768,0.03632,3.05821,0.036864
+646,175.118,5.71045,3.63949,0.025568,0.42704,0.008128,0.00512,0.01024,0.0344,0.035232,3.05747,0.036288
+647,186.861,5.35156,3.67168,0.026624,0.434176,0.008192,0.006112,0.010272,0.0328,0.03664,3.08038,0.03648
+648,185.423,5.39307,3.63094,0.026624,0.397088,0.008416,0.005824,0.01056,0.032768,0.036736,3.07622,0.036704
+649,169.508,5.89941,3.6824,0.026176,0.455456,0.008192,0.00592,0.010464,0.032768,0.034816,3.05971,0.048896
+650,191.724,5.21582,3.62778,0.025472,0.395264,0.008192,0.005536,0.01072,0.032768,0.035008,3.07808,0.036736
+651,180.25,5.54785,3.89818,0.025408,0.668704,0.008128,0.00512,0.010272,0.032736,0.034848,3.07738,0.035584
+652,181.689,5.50391,3.68384,0.026624,0.448512,0.008192,0.006048,0.010336,0.032768,0.034816,3.08019,0.036352
+653,194.418,5.14355,3.6393,0.026432,0.415936,0.008192,0.006144,0.01024,0.032768,0.035904,3.0681,0.035584
+654,183.578,5.44727,3.6905,0.03072,0.458752,0.008192,0.006144,0.01024,0.03424,0.035392,3.0711,0.035712
+655,160.275,6.23926,3.6633,0.02592,0.405568,0.008128,0.004832,0.011424,0.032832,0.034816,3.1033,0.03648
+656,166.059,6.02197,3.67862,0.024992,0.421888,0.008192,0.006144,0.01024,0.0328,0.03584,3.08733,0.0512
+657,191.671,5.21729,3.65126,0.026176,0.432128,0.00816,0.00496,0.01136,0.032992,0.03552,3.06355,0.036416
+658,176.689,5.65967,3.69517,0.025504,0.452608,0.00816,0.005536,0.010688,0.032544,0.035232,3.08838,0.036512
+659,165.175,6.0542,3.64272,0.025984,0.3976,0.008672,0.005536,0.01072,0.032256,0.035104,3.0903,0.036544
+660,144.134,6.93799,3.7144,0.026176,0.487936,0.008192,0.005696,0.014656,0.032896,0.036384,3.06608,0.036384
+661,188.738,5.29834,3.66531,0.026272,0.42992,0.008128,0.004672,0.011584,0.032576,0.035712,3.08013,0.03632
+662,157.188,6.36182,3.63894,0.025888,0.413824,0.00816,0.0048,0.011488,0.033152,0.035232,3.06995,0.036448
+663,179.649,5.56641,3.66982,0.025952,0.428544,0.008256,0.005568,0.010656,0.032608,0.035264,3.0863,0.036672
+664,176.066,5.67969,3.72464,0.026624,0.489472,0.008192,0.006144,0.01024,0.032768,0.036256,3.07862,0.03632
+665,171.783,5.82129,3.6807,0.026112,0.440512,0.008128,0.004896,0.011392,0.032736,0.035744,3.08589,0.035296
+666,177.132,5.64551,3.64134,0.026656,0.41776,0.008224,0.006112,0.01024,0.032768,0.036736,3.06765,0.0352
+667,169.228,5.90918,3.72189,0.025248,0.485408,0.008288,0.006016,0.01024,0.032768,0.03616,3.08237,0.035392
+668,172.944,5.78223,3.6784,0.02624,0.41632,0.008192,0.006144,0.01024,0.033824,0.035424,3.10669,0.035328
+669,178.288,5.60889,3.7335,0.026624,0.497664,0.008192,0.005888,0.010496,0.032768,0.035872,3.07914,0.036864
+670,170.724,5.85742,3.80109,0.02608,0.542816,0.008128,0.004608,0.011584,0.032864,0.035424,3.10272,0.036864
+671,181.432,5.51172,3.67408,0.026656,0.401216,0.008128,0.005568,0.01072,0.032928,0.035136,3.1169,0.036832
+672,187.787,5.3252,3.66147,0.02528,0.405472,0.008192,0.005664,0.010688,0.0328,0.036384,3.10106,0.035936
+673,158.098,6.3252,3.77654,0.026048,0.506432,0.008192,0.006144,0.01024,0.032768,0.03632,3.11507,0.035328
+674,169.93,5.88477,3.68374,0.026176,0.410464,0.008192,0.006144,0.01024,0.032896,0.036736,3.11651,0.036384
+675,187.907,5.32178,3.69459,0.026496,0.42816,0.008192,0.005824,0.01056,0.032704,0.03488,3.11226,0.03552
+676,182.028,5.49365,3.70477,0.026656,0.428,0.007648,0.00464,0.011648,0.03296,0.035264,3.12115,0.0368
+677,190.317,5.25439,3.68854,0.026336,0.41216,0.008192,0.005664,0.01072,0.03216,0.035424,3.12115,0.036736
+678,189.349,5.28125,3.66595,0.026624,0.413664,0.008064,0.005536,0.01072,0.032736,0.035136,3.09805,0.035424
+679,182.694,5.47363,3.77907,0.026592,0.52272,0.00816,0.005536,0.01072,0.032768,0.03504,3.1025,0.03504
+680,187.615,5.33008,3.72576,0.026208,0.465568,0.008128,0.005536,0.011104,0.032768,0.036192,3.10474,0.03552
+681,182.466,5.48047,3.65773,0.026624,0.403264,0.00816,0.005536,0.010656,0.03248,0.03552,3.09248,0.043008
+682,173.574,5.76123,3.6881,0.026656,0.41776,0.008192,0.005728,0.010656,0.032768,0.036768,3.11306,0.036512
+683,191.223,5.22949,3.69648,0.026176,0.415552,0.008832,0.005536,0.010752,0.0328,0.034976,3.12525,0.036608
+684,180.791,5.53125,3.66515,0.026208,0.403968,0.008192,0.005536,0.01088,0.032768,0.036832,3.1047,0.036064
+685,185.574,5.38867,3.68371,0.026016,0.414048,0.008128,0.005536,0.010784,0.032672,0.035136,3.11517,0.036224
+686,189.192,5.28564,3.66877,0.025376,0.407584,0.00816,0.005856,0.010528,0.0328,0.035968,3.10678,0.035712
+687,194.547,5.14014,3.67616,0.026656,0.413056,0.008128,0.004768,0.011488,0.032896,0.035168,3.10854,0.035456
+688,179.712,5.56445,3.72326,0.026624,0.451616,0.007136,0.006144,0.01024,0.034272,0.03536,3.11635,0.03552
+689,187.443,5.33496,3.68397,0.026368,0.389696,0.008192,0.006144,0.01024,0.0328,0.036544,3.13782,0.03616
+690,188.183,5.31396,3.69667,0.026624,0.42704,0.007136,0.006144,0.01024,0.034368,0.035296,3.11462,0.0352
+691,180.028,5.55469,3.67254,0.02608,0.38912,0.007136,0.006144,0.010368,0.03264,0.036128,3.12918,0.035744
+692,175.237,5.70654,3.65978,0.026624,0.404736,0.008096,0.00496,0.011296,0.033184,0.035424,3.10035,0.035104
+693,177.917,5.62061,3.67578,0.026368,0.416192,0.008192,0.005536,0.010688,0.032864,0.03488,3.10438,0.036672
+694,183.694,5.44385,3.72093,0.026688,0.456032,0.00816,0.0048,0.011456,0.032928,0.035488,3.10886,0.036512
+695,179.728,5.56396,3.67526,0.026656,0.399328,0.008192,0.00592,0.010464,0.0328,0.034848,3.1209,0.03616
+696,189,5.29102,3.6639,0.026496,0.411776,0.008192,0.005664,0.010656,0.032832,0.036192,3.0952,0.036896
+697,176.597,5.6626,3.67411,0.026624,0.4096,0.008192,0.005536,0.010656,0.03264,0.034848,3.10506,0.04096
+698,184.521,5.41943,3.67997,0.026752,0.409696,0.008192,0.005632,0.010464,0.032832,0.035072,3.11498,0.036352
+699,188.305,5.31055,3.69504,0.025408,0.408896,0.008128,0.004864,0.011392,0.0328,0.034944,3.13213,0.03648
+700,191.277,5.22803,3.68845,0.026624,0.415744,0.008192,0.006144,0.01024,0.0328,0.036256,3.11562,0.036832
+701,180.951,5.52637,3.70224,0.026176,0.407296,0.008128,0.00512,0.01024,0.033952,0.034944,3.14032,0.036064
+702,179.586,5.56836,3.66797,0.026624,0.403456,0.008192,0.005952,0.010432,0.032736,0.036032,3.10768,0.036864
+703,188.599,5.30225,3.72115,0.026528,0.417536,0.008128,0.005568,0.010688,0.032736,0.034592,3.14966,0.035712
+704,185.979,5.37695,3.68915,0.025248,0.407552,0.008192,0.005728,0.010656,0.032768,0.036352,3.1271,0.035552
+705,185.39,5.39404,3.71696,0.026432,0.432384,0.008256,0.005568,0.01072,0.032864,0.034816,3.12934,0.036576
+706,171.481,5.83154,3.67904,0.025408,0.39936,0.008192,0.005632,0.010688,0.032832,0.036064,3.12538,0.035488
+707,172.029,5.81299,3.91386,0.026144,0.614912,0.008128,0.004576,0.011712,0.032512,0.035392,3.14394,0.036544
+708,183.315,5.45508,3.69664,0.026656,0.428,0.008192,0.005696,0.010688,0.032768,0.036224,3.11155,0.036864
+709,182.142,5.49023,3.66182,0.026656,0.401376,0.00928,0.005056,0.010272,0.032736,0.03632,3.10477,0.03536
+710,166.139,6.01904,3.72944,0.025952,0.454432,0.008128,0.005088,0.010208,0.032768,0.0368,3.12058,0.035488
+711,176.157,5.67676,3.69526,0.026336,0.418048,0.008128,0.004864,0.011424,0.03264,0.035648,3.12259,0.035584
+712,163.057,6.13281,3.6823,0.026624,0.418976,0.008096,0.005056,0.011936,0.033056,0.034944,3.10838,0.035232
+713,184.09,5.43213,3.69459,0.026624,0.409376,0.00816,0.005536,0.010752,0.032768,0.035168,3.1304,0.035808
+714,188.27,5.31152,3.68032,0.02608,0.403648,0.008128,0.00496,0.011264,0.031744,0.036192,3.12182,0.03648
+715,191.152,5.23145,3.67651,0.026144,0.393696,0.00832,0.005536,0.010688,0.032672,0.035104,3.12899,0.03536
+716,184.538,5.41895,3.68643,0.026528,0.401536,0.00816,0.006144,0.01024,0.0328,0.03664,3.12954,0.034848
+717,183.628,5.4458,3.68528,0.025504,0.4048,0.008128,0.004864,0.011424,0.032864,0.034912,3.12592,0.036864
+718,182.352,5.48389,3.68419,0.025376,0.425952,0.008192,0.005792,0.010592,0.032768,0.036608,3.10256,0.036352
+719,190.885,5.23877,3.67437,0.026144,0.393952,0.008192,0.006144,0.010272,0.032736,0.034848,3.12522,0.036864
+720,190.211,5.25732,3.69302,0.026624,0.420608,0.008192,0.005856,0.010528,0.032768,0.036864,3.11501,0.036576
+721,171.381,5.83496,3.67776,0.026368,0.407712,0.00816,0.005536,0.010688,0.0328,0.035072,3.11501,0.036416
+722,180.25,5.54785,3.70083,0.02656,0.436288,0.008192,0.006112,0.010272,0.032768,0.036864,3.10851,0.035264
+723,186.351,5.36621,3.70637,0.026048,0.412224,0.008192,0.006144,0.01024,0.034848,0.034784,3.13706,0.036832
+724,181.047,5.52344,3.74906,0.026656,0.46688,0.008128,0.005568,0.010688,0.032608,0.035232,3.12726,0.036032
+725,185.423,5.39307,3.66659,0.025248,0.402816,0.006784,0.006144,0.01024,0.033888,0.035232,3.10938,0.036864
+726,172.667,5.7915,3.684,0.026496,0.403072,0.008128,0.004672,0.011552,0.032864,0.035456,3.12525,0.036512
+727,167.58,5.96729,3.76394,0.025216,0.514976,0.008128,0.005088,0.011296,0.032768,0.035424,3.0944,0.03664
+728,189.104,5.28809,3.65478,0.026624,0.4056,0.008096,0.006144,0.01024,0.034624,0.03504,3.09226,0.03616
+729,184.804,5.41113,3.64749,0.025376,0.39104,0.007872,0.005536,0.010752,0.032672,0.03488,3.1032,0.03616
+730,182.125,5.49072,3.66842,0.02544,0.40704,0.008128,0.004672,0.01168,0.032448,0.035744,3.10682,0.036448
+731,178.646,5.59766,3.65216,0.026176,0.392192,0.008192,0.005632,0.010752,0.032352,0.035232,3.10618,0.035456
+732,184.804,5.41113,3.67616,0.026624,0.413408,0.008128,0.005536,0.010784,0.033184,0.035904,3.10726,0.035328
+733,185.49,5.39111,3.68029,0.026336,0.403744,0.008192,0.0056,0.010784,0.032768,0.036512,3.12134,0.035008
+734,183.776,5.44141,3.66851,0.025152,0.39936,0.009536,0.0048,0.011424,0.031584,0.036864,3.11296,0.036832
+735,188.651,5.30078,3.66899,0.026752,0.405408,0.00816,0.005088,0.01024,0.032768,0.036864,3.10682,0.036896
+736,180.488,5.54053,3.7776,0.026656,0.515936,0.008128,0.0056,0.010688,0.032992,0.036192,3.1055,0.035904
+737,182.531,5.47852,3.69235,0.026624,0.421888,0.008192,0.005792,0.010592,0.032768,0.034816,3.11501,0.036672
+738,187.7,5.32764,3.66186,0.026432,0.403648,0.008192,0.006144,0.01024,0.032768,0.036896,3.10198,0.035552
+739,181.047,5.52344,3.67357,0.026144,0.42064,0.008192,0.006048,0.010336,0.032768,0.035904,3.09709,0.036448
+740,186.402,5.36475,3.6687,0.025312,0.405344,0.008128,0.005536,0.01072,0.03312,0.036768,3.10813,0.035648
+741,184.821,5.41064,3.74384,0.026272,0.493728,0.00816,0.0048,0.011552,0.032896,0.034944,3.09494,0.036544
+742,181.657,5.50488,3.70525,0.025024,0.433824,0.00816,0.005536,0.01072,0.032992,0.035072,3.11814,0.035776
+743,180.425,5.54248,3.6649,0.026656,0.39488,0.007968,0.004672,0.011584,0.033504,0.034784,3.11421,0.03664
+744,187.408,5.33594,3.66544,0.026368,0.391424,0.008192,0.005888,0.010496,0.032768,0.036256,3.11766,0.036384
+745,158.232,6.31982,3.70074,0.026112,0.4296,0.00816,0.00512,0.010272,0.032768,0.034784,3.11824,0.03568
+746,167.676,5.96387,3.66182,0.026624,0.403456,0.008192,0.006048,0.010336,0.032768,0.036608,3.10099,0.0368
+747,161.006,6.21094,3.84218,0.0256,0.583456,0.008192,0.005536,0.010688,0.032704,0.035232,3.10467,0.036096
+748,186.47,5.36279,3.66509,0.026048,0.424512,0.008192,0.006048,0.010336,0.032768,0.035904,3.08525,0.036032
+749,190.299,5.25488,3.65773,0.026624,0.39936,0.008192,0.005536,0.010752,0.03392,0.035456,3.10102,0.036864
+750,177.516,5.6333,3.68435,0.026656,0.436192,0.008192,0.006048,0.010336,0.032768,0.035936,3.09283,0.035392
+751,167.088,5.98486,3.67206,0.02608,0.426528,0.008192,0.0056,0.01072,0.032512,0.035136,3.09149,0.035808
+752,173.854,5.75195,3.65907,0.02624,0.40752,0.008128,0.004576,0.01168,0.03296,0.036416,3.09539,0.03616
+753,188.773,5.29736,3.68154,0.026528,0.460896,0.00816,0.005536,0.010656,0.03248,0.035456,3.06528,0.036544
+754,181.641,5.50537,3.65162,0.026624,0.405536,0.00816,0.005728,0.010688,0.032736,0.036864,3.09043,0.034848
+755,190.246,5.25635,3.63011,0.026304,0.393536,0.008192,0.005984,0.0104,0.032768,0.034816,3.08208,0.036032
+756,170.128,5.87793,3.65968,0.026624,0.406912,0.008192,0.004736,0.011456,0.0328,0.035616,3.09658,0.036768
+757,174.848,5.71924,3.71578,0.02528,0.458752,0.008192,0.006144,0.01024,0.0328,0.036704,3.10214,0.03552
+758,163.122,6.13037,3.67626,0.026464,0.448736,0.007552,0.004736,0.01152,0.031648,0.036704,3.0735,0.035392
+759,191.724,5.21582,3.63933,0.026624,0.408608,0.007136,0.005888,0.010496,0.032768,0.034816,3.07741,0.035584
+760,178.087,5.61523,3.64483,0.026432,0.413824,0.00816,0.005536,0.010656,0.033248,0.03632,3.07443,0.036224
+761,192.463,5.1958,3.64154,0.026368,0.411392,0.008192,0.0048,0.011456,0.033056,0.03536,3.07562,0.035296
+762,173.869,5.75146,3.72275,0.026656,0.495584,0.008192,0.0056,0.010656,0.032896,0.036128,3.07069,0.036352
+763,181.721,5.50293,3.6512,0.026048,0.400288,0.008192,0.005728,0.010656,0.032704,0.03488,3.09648,0.036224
+764,190.725,5.24316,3.64544,0.026496,0.405632,0.008192,0.005952,0.010432,0.034016,0.035552,3.08362,0.035552
+765,197.493,5.06348,3.61379,0.026624,0.378496,0.008128,0.004544,0.011808,0.03248,0.035488,3.07968,0.036544
+766,164.037,6.09619,3.6335,0.02528,0.389088,0.008192,0.006144,0.01024,0.03392,0.035744,3.08835,0.036544
+767,175.688,5.69189,3.67283,0.025376,0.415712,0.008192,0.005952,0.010432,0.032768,0.036192,3.1025,0.035712
+768,190.317,5.25439,3.61994,0.026528,0.40704,0.008096,0.0048,0.011456,0.033376,0.03504,3.0575,0.036096
+769,171.582,5.82812,3.61933,0.025568,0.383008,0.00816,0.006144,0.01024,0.034176,0.034912,3.08074,0.036384
+770,180.823,5.53027,3.61514,0.026368,0.395264,0.008192,0.004768,0.011584,0.033312,0.035104,3.06368,0.036864
+771,172.217,5.80664,3.62125,0.025536,0.387072,0.008192,0.005856,0.010528,0.032544,0.03504,3.07981,0.036672
+772,169.312,5.90625,3.64406,0.02528,0.427584,0.008224,0.004576,0.011808,0.033056,0.036,3.0607,0.036832
+773,171.381,5.83496,3.63152,0.026464,0.42784,0.008128,0.004928,0.011264,0.03296,0.03552,3.04928,0.035136
+774,146.968,6.8042,3.59555,0.025856,0.37376,0.00816,0.006144,0.01024,0.0328,0.036672,3.06602,0.035904
+775,186.47,5.36279,3.63958,0.025952,0.4024,0.00816,0.005856,0.01056,0.032736,0.035904,3.08115,0.036864
+776,188.773,5.29736,3.62096,0.026432,0.395872,0.008192,0.00608,0.010304,0.032928,0.036736,3.06787,0.036544
+777,175.013,5.71387,3.67258,0.025504,0.45056,0.008192,0.006144,0.01024,0.032768,0.036064,3.06659,0.036512
+778,179.413,5.57373,3.63942,0.02576,0.420352,0.008128,0.00464,0.011776,0.032768,0.03536,3.06518,0.035456
+779,187.666,5.32861,3.61882,0.026592,0.403488,0.008192,0.005792,0.010592,0.032768,0.034816,3.0608,0.035776
+780,171.927,5.81641,3.59043,0.025024,0.382976,0.008192,0.00592,0.010464,0.034176,0.036512,3.05046,0.036704
+781,177.87,5.62207,3.62179,0.026528,0.392192,0.00816,0.005696,0.010688,0.032768,0.034816,3.07405,0.036896
+782,165.843,6.02979,3.60237,0.026464,0.397472,0.00816,0.005568,0.010848,0.032768,0.036256,3.04803,0.0368
+783,141.848,7.0498,3.82125,0.0264,0.593568,0.01696,0.006144,0.01024,0.032768,0.036288,3.06234,0.036544
+784,168.117,5.94824,3.5897,0.025984,0.395712,0.008128,0.005536,0.010656,0.0328,0.035392,3.0392,0.036288
+785,163.932,6.1001,3.61408,0.026144,0.41008,0.008192,0.006144,0.01024,0.032768,0.036288,3.04797,0.036256
+786,147.998,6.75684,3.74579,0.048544,0.487648,0.00816,0.005568,0.010816,0.046496,0.03584,3.06714,0.035584
+787,190.034,5.26221,3.65693,0.026624,0.468992,0.008192,0.006048,0.010368,0.032768,0.034784,3.03267,0.03648
+788,193.811,5.15967,3.59424,0.026624,0.387072,0.008192,0.005696,0.010688,0.032768,0.03664,3.0497,0.036864
+789,194.086,5.15234,3.57171,0.024576,0.376416,0.008096,0.004608,0.01168,0.033024,0.035168,3.04288,0.035264
+790,169.564,5.89746,3.60416,0.025088,0.403008,0.008128,0.004608,0.01168,0.03312,0.036096,3.04624,0.036192
+791,198.008,5.05029,3.61712,0.024928,0.395264,0.008192,0.006112,0.010272,0.032768,0.036256,3.06752,0.035808
+792,191.08,5.2334,3.5999,0.026592,0.3912,0.008192,0.0056,0.01072,0.032832,0.036896,3.05149,0.036384
+793,179.933,5.55762,3.59834,0.026432,0.393408,0.008192,0.006144,0.01024,0.032768,0.036288,3.04928,0.035584
+794,192.499,5.19482,3.60038,0.026592,0.394752,0.008128,0.004704,0.01136,0.033696,0.03616,3.04813,0.036864
+795,187.1,5.34473,3.6784,0.026176,0.483584,0.00816,0.005536,0.010784,0.032736,0.035328,3.0408,0.035296
+796,185.692,5.38525,3.60304,0.025536,0.397312,0.008192,0.006144,0.01024,0.034816,0.036704,3.04758,0.036512
+797,182.499,5.47949,3.61478,0.026464,0.392576,0.008416,0.004704,0.011584,0.03264,0.035584,3.06592,0.036896
+798,182.19,5.48877,3.58538,0.026272,0.393408,0.008224,0.005536,0.010656,0.03312,0.036192,3.03555,0.036416
+799,171.237,5.83984,3.62496,0.026656,0.4176,0.008128,0.005568,0.010688,0.044704,0.035456,3.0393,0.036864
+800,187.306,5.33887,3.62672,0.026624,0.434176,0.00816,0.005536,0.010688,0.03296,0.03632,3.03568,0.036576
+801,167.416,5.97314,3.8769,0.026624,0.68128,0.008288,0.004704,0.011648,0.033408,0.036096,3.03795,0.036896
+802,179.57,5.56885,3.58134,0.02672,0.40528,0.007424,0.005088,0.01024,0.032896,0.036768,3.02077,0.03616
+803,189.788,5.26904,3.58794,0.026816,0.388352,0.00816,0.004896,0.011424,0.031712,0.035968,3.0441,0.036512
+804,164.829,6.06689,3.59834,0.02608,0.419712,0.008128,0.004832,0.011488,0.033312,0.035072,3.02451,0.0352
+805,167.979,5.95312,3.67302,0.025536,0.483328,0.008192,0.006144,0.01024,0.032768,0.036256,3.0337,0.036864
+806,185.558,5.38916,3.59014,0.026624,0.393216,0.008192,0.005792,0.010624,0.032768,0.036672,3.04125,0.035008
+807,186.165,5.37158,3.57786,0.026624,0.407552,0.008192,0.005888,0.010496,0.032768,0.034816,3.01466,0.036864
+808,179.507,5.5708,3.56966,0.026656,0.409568,0.008192,0.00576,0.010624,0.032768,0.03632,3.0041,0.03568
+809,181.77,5.50146,3.5615,0.026112,0.388768,0.008128,0.005024,0.01024,0.033984,0.035648,3.01843,0.035168
+810,177.948,5.61963,3.60589,0.026336,0.444352,0.008128,0.005536,0.010688,0.032704,0.035456,3.00646,0.036224
+811,188.08,5.31689,3.61901,0.026432,0.453024,0.008192,0.006048,0.010336,0.032768,0.034912,3.01046,0.036832
+812,181.464,5.51074,3.57174,0.0264,0.415968,0.008192,0.006144,0.01024,0.032768,0.036864,2.99994,0.035232
+813,168.699,5.92773,3.59066,0.02624,0.412544,0.008192,0.005536,0.010688,0.032928,0.034816,3.02429,0.035424
+814,176.111,5.67822,3.61117,0.02608,0.437216,0.008192,0.0056,0.01072,0.041024,0.036864,3.01046,0.035008
+815,148.116,6.75146,3.57507,0.026656,0.40752,0.008192,0.006144,0.01024,0.032768,0.036128,3.01098,0.036448
+816,171.812,5.82031,3.69446,0.026592,0.53296,0.008192,0.006112,0.010272,0.032768,0.036416,3.00486,0.036288
+817,178.288,5.60889,3.6639,0.026528,0.495712,0.008192,0.006112,0.023584,0.033824,0.034784,2.99827,0.036896
+818,184.322,5.42529,3.61267,0.026624,0.443936,0.008096,0.004672,0.011552,0.032832,0.035488,3.01398,0.035488
+819,185.038,5.4043,3.584,0.02656,0.41376,0.008192,0.005568,0.010688,0.032512,0.0352,3.01466,0.036864
+820,159.638,6.26416,3.62285,0.026208,0.438432,0.008128,0.005568,0.010688,0.0328,0.035232,3.01667,0.04912
+821,175.207,5.70752,3.57376,0.025952,0.410272,0.008192,0.00576,0.010656,0.032288,0.035264,3.00851,0.036864
+822,179.523,5.57031,3.59718,0.025472,0.434176,0.008192,0.006144,0.01024,0.032768,0.036896,3.00794,0.03536
+823,156.062,6.40771,3.64922,0.025376,0.48528,0.00816,0.005824,0.01056,0.032768,0.035872,3.00746,0.03792
+824,191.832,5.21289,3.57152,0.027232,0.405728,0.008192,0.00608,0.010304,0.032768,0.036032,3.00931,0.035872
+825,182.482,5.47998,3.56925,0.026656,0.408544,0.007168,0.006144,0.01024,0.034016,0.035168,3.00486,0.036448
+826,141.018,7.09131,3.60467,0.02624,0.437248,0.008192,0.0056,0.010752,0.0328,0.03664,3.01078,0.036416
+827,190.956,5.23682,3.5799,0.026624,0.423744,0.008128,0.005536,0.01072,0.033024,0.034944,3.00032,0.036864
+828,151.367,6.60645,3.60413,0.026016,0.464736,0.00816,0.004896,0.01136,0.031648,0.036864,2.98394,0.036512
+829,189.524,5.27637,3.60237,0.026624,0.440352,0.00816,0.00576,0.010624,0.032768,0.034816,3.00646,0.0368
+830,182.906,5.46729,3.5759,0.026304,0.424352,0.008192,0.005888,0.010496,0.032928,0.036704,2.99424,0.0368
+831,194.013,5.1543,3.54714,0.026368,0.395168,0.008128,0.005568,0.01072,0.03264,0.035456,2.99622,0.036864
+832,160.905,6.21484,3.55126,0.026624,0.408992,0.008192,0.004704,0.011552,0.032992,0.035328,2.98723,0.035648
+833,175.688,5.69189,3.56144,0.025248,0.40656,0.008128,0.004992,0.011296,0.033568,0.03504,3.00029,0.03632
+834,177.608,5.63037,3.58829,0.026272,0.438656,0.00816,0.005952,0.010432,0.032768,0.03648,2.99456,0.035008
+835,182.077,5.49219,3.56762,0.026624,0.425728,0.008192,0.005536,0.010752,0.03312,0.034816,2.98598,0.036864
+836,194.992,5.12842,3.54835,0.026272,0.407904,0.008192,0.006144,0.01024,0.034272,0.03536,2.98394,0.036032
+837,178.211,5.61133,3.64339,0.025536,0.50752,0.008192,0.005568,0.010656,0.03264,0.035424,2.98176,0.036096
+838,167.225,5.97998,3.5697,0.026304,0.442464,0.007904,0.004288,0.009888,0.03344,0.035968,2.97453,0.034912
+839,188.93,5.29297,3.56822,0.025376,0.435552,0.00816,0.0048,0.011392,0.033344,0.035136,2.97779,0.036672
+840,159.676,6.2627,3.58646,0.0256,0.441344,0.007136,0.00608,0.010304,0.032768,0.03664,2.99021,0.036384
+841,180.823,5.53027,3.59629,0.026624,0.458592,0.008128,0.005536,0.010752,0.033088,0.034848,2.98186,0.036864
+842,183.496,5.44971,3.52918,0.025056,0.38912,0.008192,0.005696,0.010688,0.032768,0.034816,2.98707,0.035776
+843,183.25,5.45703,3.52355,0.0256,0.389088,0.008192,0.005792,0.020832,0.0328,0.036224,2.96957,0.035456
+844,172.144,5.80908,3.55328,0.026336,0.430368,0.008192,0.006144,0.01024,0.034016,0.035616,2.96669,0.03568
+845,191.976,5.20898,3.58275,0.025344,0.456704,0.008192,0.006144,0.01024,0.032768,0.035872,2.9719,0.035584
+846,173.148,5.77539,3.54934,0.026624,0.423936,0.008192,0.005728,0.010688,0.032768,0.036768,2.96925,0.035392
+847,188.513,5.30469,3.58202,0.025952,0.442752,0.00816,0.005536,0.010688,0.032928,0.0352,2.98515,0.035648
+848,181.641,5.50537,3.52464,0.026624,0.39936,0.009248,0.005088,0.011264,0.032992,0.035616,2.96877,0.03568
+849,198.816,5.02979,3.52022,0.026464,0.392,0.00816,0.005792,0.010592,0.032768,0.034816,2.97347,0.03616
+850,183.809,5.44043,3.53206,0.026368,0.409952,0.008192,0.006144,0.01024,0.0328,0.036832,2.96541,0.036128
+851,187.89,5.32227,3.56966,0.026368,0.424192,0.008192,0.00592,0.010464,0.0328,0.036672,2.98819,0.036864
+852,171.137,5.84326,3.58262,0.026144,0.478112,0.008192,0.006144,0.01024,0.0328,0.03616,2.94915,0.03568
+853,164.037,6.09619,3.60454,0.025792,0.485184,0.008192,0.006144,0.01024,0.03392,0.035008,2.96387,0.036192
+854,176.218,5.6748,3.56762,0.026656,0.45008,0.008128,0.004608,0.011776,0.032736,0.03536,2.96278,0.035488
+855,175.779,5.68896,3.64442,0.0256,0.518112,0.008192,0.006144,0.01024,0.032768,0.03648,2.96998,0.036896
+856,184.338,5.4248,3.55696,0.026528,0.431936,0.00816,0.005536,0.010688,0.032832,0.035328,2.96957,0.036384
+857,188.374,5.30859,3.55942,0.026624,0.415008,0.008128,0.004896,0.011456,0.032864,0.035328,2.98826,0.036864
+858,143.558,6.96582,3.64749,0.026464,0.521888,0.008128,0.004704,0.011552,0.032768,0.03552,2.9712,0.035264
+859,165.388,6.04639,3.54512,0.026528,0.401472,0.008192,0.005536,0.01072,0.0328,0.036224,2.98675,0.036896
+860,182.239,5.4873,3.52218,0.026272,0.41472,0.00816,0.00592,0.010464,0.032768,0.036544,2.95126,0.036064
+861,188.201,5.31348,3.62659,0.026048,0.512704,0.008192,0.005536,0.010752,0.032864,0.036096,2.95808,0.03632
+862,180.951,5.52637,3.54621,0.02656,0.427712,0.00816,0.005568,0.010688,0.033088,0.035072,2.96333,0.036032
+863,194.252,5.14795,3.52653,0.02624,0.41056,0.008192,0.006144,0.01024,0.032768,0.036192,2.95962,0.036576
+864,168.089,5.94922,3.53379,0.025568,0.414976,0.00816,0.004928,0.011296,0.032928,0.035648,2.96342,0.036864
+865,167.8,5.95947,3.53958,0.025184,0.413696,0.008192,0.006144,0.01024,0.032768,0.036128,2.97174,0.035488
+866,166.789,5.99561,3.63149,0.02608,0.502688,0.008192,0.005536,0.022464,0.033184,0.036448,2.96131,0.035584
+867,187.615,5.33008,3.53859,0.026624,0.395264,0.008192,0.00576,0.010624,0.032608,0.034976,2.98787,0.036672
+868,153.685,6.50684,3.5287,0.026624,0.403456,0.008192,0.006144,0.01024,0.033856,0.035808,2.96893,0.035456
+869,194.862,5.13184,3.49802,0.026528,0.387328,0.008128,0.004768,0.01024,0.032832,0.036416,2.95555,0.036224
+870,166.193,6.01709,3.49104,0.024768,0.38912,0.008192,0.006144,0.010272,0.034112,0.035488,2.94678,0.03616
+871,187.494,5.3335,3.52931,0.027008,0.420384,0.008192,0.005792,0.010592,0.032768,0.034816,2.95299,0.036768
+872,192.246,5.20166,3.51027,0.026432,0.386816,0.008096,0.00464,0.011616,0.033184,0.035072,2.9688,0.035616
+873,188.565,5.30322,3.48982,0.026304,0.385344,0.008192,0.005824,0.01056,0.032768,0.036288,2.94765,0.036896
+874,182.077,5.49219,3.51261,0.026112,0.402176,0.008192,0.0056,0.01072,0.032832,0.036224,2.95386,0.036896
+875,180.919,5.52734,3.52349,0.025504,0.408768,0.008128,0.004992,0.011264,0.033312,0.035264,2.96086,0.035392
+876,189.7,5.27148,3.51402,0.026656,0.407296,0.00816,0.005536,0.011104,0.034048,0.035616,2.94909,0.036512
+877,183.119,5.46094,3.55923,0.026304,0.445152,0.00816,0.005856,0.010528,0.032576,0.035008,2.95907,0.036576
+878,190.105,5.26025,3.48166,0.026528,0.39344,0.008384,0.005536,0.01072,0.03296,0.036096,2.93149,0.036512
+879,179.382,5.57471,3.49075,0.025536,0.403456,0.008192,0.005472,0.010784,0.03248,0.035232,2.93382,0.035776
+880,179.775,5.5625,3.75926,0.026624,0.649248,0.00816,0.00592,0.010496,0.032736,0.036864,2.95312,0.036096
+881,189.122,5.2876,3.50416,0.026624,0.393248,0.00816,0.005856,0.01056,0.034208,0.035168,2.95344,0.036896
+882,177.562,5.63184,3.49392,0.02656,0.39312,0.008096,0.005568,0.010688,0.032704,0.035264,2.94643,0.035488
+883,163.278,6.12451,3.56765,0.026464,0.463744,0.008192,0.006144,0.01024,0.0328,0.036608,2.9473,0.03616
+884,190.707,5.24365,3.5081,0.026624,0.411648,0.008192,0.005664,0.01072,0.032768,0.036864,2.93891,0.036704
+885,161.082,6.20801,3.56352,0.026624,0.466592,0.007744,0.004896,0.01136,0.031648,0.036544,2.94291,0.0352
+886,174.893,5.71777,3.60637,0.02512,0.497664,0.008192,0.00576,0.022592,0.033088,0.036352,2.94138,0.036224
+887,191.994,5.2085,3.50333,0.026624,0.402592,0.008224,0.004928,0.011328,0.032768,0.035264,2.94499,0.036608
+888,188.895,5.29395,3.49798,0.026624,0.408896,0.008128,0.004864,0.011488,0.033376,0.035008,2.93437,0.035232
+889,167.718,5.9624,3.5496,0.02624,0.432224,0.008128,0.004832,0.011424,0.03168,0.036352,2.96182,0.036896
+890,171.109,5.84424,3.52467,0.02608,0.426272,0.008192,0.005568,0.010688,0.033152,0.036896,2.94266,0.035168
+891,180.967,5.52588,3.54307,0.0264,0.448736,0.00816,0.005536,0.010752,0.032768,0.034944,2.93888,0.036896
+892,190.07,5.26123,3.53658,0.026624,0.427872,0.008128,0.005536,0.010688,0.033152,0.036864,2.95117,0.036544
+893,186.08,5.37402,3.49264,0.025376,0.399328,0.00816,0.005536,0.010944,0.032736,0.034816,2.94003,0.035712
+894,193.372,5.17139,3.53872,0.02624,0.458208,0.008128,0.005088,0.010432,0.032576,0.036864,2.92454,0.03664
+895,188.808,5.29639,3.62906,0.02624,0.542624,0.008192,0.004576,0.01168,0.032384,0.035776,2.93216,0.035424
+896,191.671,5.21729,3.47667,0.026624,0.392992,0.008224,0.005536,0.01072,0.032576,0.035328,2.92867,0.036
+897,183.842,5.43945,3.5552,0.026592,0.463008,0.007904,0.00496,0.011456,0.033024,0.035392,2.9359,0.03696
+898,185.088,5.40283,3.5248,0.025824,0.426976,0.008192,0.005856,0.010528,0.032768,0.036224,2.94275,0.03568
+899,192.156,5.2041,3.52262,0.025408,0.412992,0.008128,0.004864,0.011488,0.032736,0.03552,2.95539,0.036096
+900,199.63,5.00928,3.45488,0.025408,0.384416,0.008128,0.004768,0.011456,0.033376,0.036416,2.91472,0.036192
+901,197.36,5.06689,3.4951,0.026336,0.405056,0.008128,0.005056,0.011296,0.033216,0.03536,2.93418,0.03648
+902,196.489,5.08936,3.48774,0.026656,0.403264,0.008096,0.005568,0.01072,0.033152,0.036448,2.92835,0.035488
+903,179.303,5.57715,3.61414,0.026624,0.509952,0.008192,0.006144,0.01024,0.032768,0.034816,2.94906,0.036352
+904,191.527,5.22119,3.52202,0.02624,0.42864,0.008192,0.006144,0.01024,0.034272,0.03536,2.93651,0.036416
+905,193.335,5.17236,3.48512,0.026624,0.393216,0.008192,0.005888,0.010496,0.032704,0.03488,2.93683,0.036288
+906,193.719,5.16211,3.47824,0.02528,0.402976,0.008672,0.0056,0.010784,0.032768,0.036096,2.92099,0.035072
+907,184.455,5.42139,3.61152,0.025536,0.528416,0.00816,0.005888,0.010528,0.032736,0.036,2.92746,0.0368
+908,195.55,5.11377,3.53632,0.026624,0.458752,0.008192,0.005856,0.010528,0.032768,0.036704,2.92042,0.03648
+909,195.775,5.10791,3.47546,0.026304,0.393536,0.008192,0.006144,0.01024,0.032768,0.036256,2.92515,0.036864
+910,195.457,5.11621,3.49357,0.026432,0.407744,0.008192,0.006144,0.01024,0.032768,0.036864,2.92864,0.036544
+911,182.531,5.47852,3.49408,0.026336,0.414112,0.008128,0.004736,0.011552,0.032768,0.03504,2.92506,0.036352
+912,187.58,5.33105,3.50195,0.0264,0.404736,0.007136,0.006144,0.010368,0.034688,0.036512,2.93923,0.036736
+913,195.737,5.10889,3.50979,0.026624,0.410624,0.008224,0.005088,0.0104,0.033824,0.035584,2.94304,0.036384
+914,197.264,5.06934,3.48573,0.026656,0.403424,0.008192,0.006144,0.01024,0.032864,0.036672,2.92634,0.0352
+915,183.135,5.46045,3.50624,0.025408,0.400576,0.008128,0.004992,0.011296,0.031712,0.036384,2.95136,0.036384
+916,190.123,5.25977,3.48784,0.02608,0.40816,0.008192,0.005792,0.010624,0.032736,0.036512,2.92285,0.036896
+917,198.777,5.03076,3.52234,0.026656,0.40544,0.00816,0.005536,0.010816,0.032864,0.034848,2.96138,0.03664
+918,196.093,5.09961,3.5001,0.026304,0.412,0.008192,0.00608,0.010304,0.0328,0.036864,2.93203,0.03552
+919,174.878,5.71826,3.53693,0.026656,0.442304,0.008192,0.005504,0.01072,0.032928,0.034848,2.93888,0.036896
+920,185.038,5.4043,3.5287,0.026528,0.441664,0.008128,0.00496,0.01168,0.033184,0.035008,2.93206,0.035488
+921,185.005,5.40527,3.6321,0.025568,0.548352,0.006656,0.006144,0.01024,0.032768,0.03632,2.92918,0.036864
+922,179.193,5.58057,3.54707,0.026624,0.432128,0.00816,0.005568,0.010816,0.032768,0.034848,2.94272,0.05344
+923,196.413,5.09131,3.48826,0.026208,0.403488,0.008128,0.00496,0.011296,0.031712,0.036736,2.93021,0.03552
+924,183.233,5.45752,3.61037,0.026368,0.526112,0.00816,0.00464,0.011616,0.0328,0.036608,2.92746,0.036608
+925,187.049,5.34619,3.51654,0.026624,0.408,0.008192,0.0056,0.010624,0.032928,0.034816,2.95322,0.036544
+926,197.474,5.06396,3.45712,0.026624,0.380928,0.008192,0.005856,0.010528,0.032768,0.036576,2.9207,0.034944
+927,181.996,5.49463,3.50685,0.025376,0.411648,0.008192,0.006144,0.01024,0.034016,0.0352,2.9393,0.036736
+928,178.693,5.59619,3.52576,0.026016,0.436832,0.008192,0.0056,0.01072,0.032832,0.036384,2.93322,0.035968
+929,177.963,5.61914,3.54374,0.025312,0.462848,0.00816,0.006144,0.010272,0.032768,0.0368,2.92458,0.036864
+930,167.745,5.96143,3.57894,0.03216,0.485984,0.008192,0.005952,0.010432,0.033952,0.03568,2.93056,0.036032
+931,181.899,5.49756,3.53894,0.026112,0.440032,0.00816,0.004928,0.011424,0.033024,0.035456,2.94467,0.035136
+932,185.726,5.38428,3.51555,0.026624,0.415744,0.008192,0.005536,0.010656,0.03296,0.036864,2.94298,0.036
+933,181.255,5.51709,3.57642,0.026272,0.459712,0.008192,0.005856,0.010528,0.032768,0.034816,2.96291,0.03536
+934,167.993,5.95264,3.72186,0.025248,0.615872,0.00816,0.014912,0.012064,0.032992,0.036352,2.94061,0.035648
+935,189.227,5.28467,3.50003,0.026656,0.409344,0.00816,0.005536,0.010784,0.032576,0.035424,2.93469,0.036864
+936,191.706,5.21631,3.49184,0.025536,0.404736,0.00816,0.004896,0.011488,0.032864,0.03552,2.93274,0.035904
+937,179.807,5.56152,3.51027,0.026496,0.40768,0.00816,0.005504,0.010816,0.032864,0.036576,2.94531,0.036864
+938,157.14,6.36377,3.71354,0.02512,0.601344,0.00816,0.004864,0.011392,0.047712,0.036288,2.9432,0.035456
+939,193.591,5.16553,3.54019,0.026144,0.419904,0.008128,0.004576,0.011744,0.032864,0.035264,2.96509,0.03648
+940,175.96,5.68311,3.49414,0.025984,0.405984,0.00816,0.005568,0.01056,0.032512,0.035712,2.93424,0.035424
+941,182.727,5.47266,3.65363,0.026016,0.557664,0.008192,0.018432,0.0104,0.033632,0.035808,2.92662,0.036864
+942,195.494,5.11523,3.50032,0.026336,0.39984,0.008128,0.005536,0.010688,0.032544,0.035392,2.94502,0.036832
+943,155.316,6.43848,3.51245,0.025888,0.4248,0.00816,0.005632,0.01072,0.0328,0.034816,2.93386,0.035776
+944,169.888,5.88623,3.63085,0.026624,0.497664,0.008192,0.016384,0.011424,0.033152,0.036864,2.96394,0.036608
+945,187.615,5.33008,3.55738,0.025824,0.465696,0.008192,0.006144,0.01024,0.034016,0.035616,2.93597,0.03568
+946,173.898,5.75049,3.66618,0.02592,0.55392,0.008192,0.016064,0.01056,0.034048,0.035584,2.94502,0.036864
+947,196.451,5.09033,3.50003,0.026624,0.407104,0.008128,0.004608,0.01168,0.03296,0.034944,2.93712,0.036864
+948,168.463,5.93604,3.51891,0.026016,0.414016,0.008128,0.004736,0.011552,0.03296,0.035392,2.95085,0.035264
+949,177.316,5.63965,3.64749,0.026624,0.544768,0.008192,0.005952,0.010432,0.040032,0.035392,2.94038,0.035712
+950,175.975,5.68262,3.61395,0.02608,0.500064,0.008064,0.005536,0.010752,0.033088,0.034912,2.95894,0.036512
+951,167.293,5.97754,3.4816,0.02656,0.387136,0.009216,0.00512,0.01024,0.034176,0.03472,2.93757,0.036864
+952,179.523,5.57031,3.50602,0.026592,0.421472,0.008128,0.004608,0.011712,0.033216,0.035072,2.92851,0.036704
+953,193.08,5.1792,3.5096,0.02624,0.420128,0.008128,0.005568,0.010688,0.033056,0.035904,2.93354,0.036352
+954,172.827,5.78613,3.53261,0.026432,0.42016,0.008192,0.005984,0.010432,0.033888,0.035712,2.95322,0.038592
+955,189.227,5.28467,3.56115,0.026624,0.462848,0.008192,0.006144,0.01024,0.032768,0.036064,2.94173,0.036544
+956,191.868,5.21191,3.4969,0.025536,0.415744,0.008192,0.005696,0.01072,0.032736,0.036544,2.92666,0.035072
+957,198.488,5.03809,3.47581,0.02624,0.395456,0.00816,0.00464,0.011712,0.033312,0.03488,2.92554,0.035872
+958,166.653,6.00049,3.53539,0.025088,0.427936,0.008288,0.005504,0.01072,0.032896,0.036256,2.95331,0.035392
+959,193.921,5.15674,3.51242,0.026208,0.408064,0.008192,0.006144,0.01024,0.032768,0.036864,2.94707,0.036864
+960,194.492,5.1416,3.49357,0.02624,0.407808,0.00816,0.005536,0.010688,0.03296,0.03648,2.92931,0.036384
+961,188.166,5.31445,3.52211,0.025152,0.415776,0.00816,0.005984,0.0104,0.033856,0.035488,2.95107,0.036224
+962,193.28,5.17383,3.49424,0.026304,0.405856,0.008096,0.005568,0.010816,0.033216,0.036768,2.93075,0.036864
+963,197.455,5.06445,3.50115,0.026368,0.400928,0.008192,0.004832,0.011456,0.033248,0.035168,2.94502,0.035936
+964,194.437,5.14307,3.50474,0.026368,0.418624,0.008192,0.006048,0.010336,0.032768,0.036416,2.93072,0.035264
+965,185.878,5.37988,3.52256,0.027744,0.400288,0.008192,0.005984,0.0104,0.033856,0.035072,2.96416,0.036864
+966,193.481,5.16846,3.48899,0.026656,0.39728,0.008192,0.006144,0.010272,0.033824,0.036832,2.93354,0.036256
+967,188.495,5.30518,3.49798,0.026016,0.410112,0.008288,0.004448,0.011744,0.032544,0.035584,2.93267,0.036576
+968,200.607,4.98486,3.46842,0.025664,0.385952,0.008128,0.005568,0.010688,0.032992,0.036448,2.92694,0.036032
+969,178.896,5.58984,3.48688,0.026592,0.380032,0.008128,0.005088,0.01024,0.034176,0.035456,2.95117,0.036
+970,165.911,6.02734,3.53894,0.026592,0.441504,0.00704,0.005952,0.010432,0.032768,0.036896,2.94208,0.03568
+971,179.492,5.57129,3.51446,0.026496,0.40192,0.008128,0.005536,0.010784,0.032704,0.035136,2.95728,0.03648
+972,193.903,5.15723,3.49216,0.026304,0.404032,0.008128,0.005568,0.010688,0.033024,0.036352,2.9312,0.036864
+973,186.572,5.35986,3.52579,0.026464,0.434336,0.008192,0.006016,0.0104,0.033888,0.035648,2.93437,0.03648
+974,185.239,5.39844,3.50413,0.026592,0.384416,0.008128,0.0048,0.012288,0.032768,0.03664,2.96355,0.034944
+975,195.289,5.12061,3.47149,0.025504,0.37808,0.008128,0.00496,0.01136,0.032768,0.03536,2.93875,0.036576
+976,187.597,5.33057,3.5369,0.026432,0.426176,0.008192,0.006144,0.01024,0.03472,0.036128,2.9535,0.03536
+977,193.774,5.16064,3.49811,0.025792,0.383712,0.008192,0.005536,0.01072,0.032928,0.035008,2.95936,0.036864
+978,193.811,5.15967,3.50595,0.026144,0.416224,0.008192,0.006144,0.01024,0.034048,0.036672,2.93165,0.03664
+979,185.945,5.37793,3.50029,0.026464,0.405664,0.008192,0.006144,0.01024,0.0328,0.034784,2.9408,0.0352
+980,191.402,5.22461,3.58586,0.026208,0.479648,0.008192,0.00608,0.010304,0.032768,0.036864,2.94912,0.036672
+981,194.381,5.14453,3.48752,0.02592,0.381696,0.008192,0.00608,0.010304,0.032768,0.036064,2.94992,0.036576
+982,193.08,5.1792,3.4873,0.025088,0.391008,0.00816,0.005536,0.010976,0.032864,0.036736,2.93888,0.038048
+983,198.661,5.03369,3.50525,0.026656,0.38704,0.008192,0.005728,0.010656,0.03248,0.035136,2.96298,0.036384
+984,186.844,5.35205,3.49594,0.025568,0.39936,0.008192,0.005856,0.010528,0.0328,0.036672,2.9408,0.03616
+985,188.478,5.30566,3.5311,0.026208,0.408288,0.008192,0.005952,0.010464,0.032736,0.034816,2.96877,0.03568
+986,190.867,5.23926,3.52666,0.026624,0.401408,0.008192,0.005792,0.010592,0.0328,0.036832,2.96883,0.035584
+987,197.97,5.05127,3.51203,0.025248,0.4096,0.008192,0.006144,0.01024,0.03392,0.035264,2.94723,0.036192
+988,188.617,5.30176,3.52874,0.026496,0.403584,0.008192,0.005984,0.0104,0.032768,0.03648,2.96915,0.03568
+989,197.36,5.06689,3.51542,0.026496,0.403168,0.008128,0.004576,0.011744,0.032384,0.035648,2.9569,0.036384
+990,192.3,5.2002,3.47741,0.02624,0.383712,0.008128,0.005536,0.010688,0.03312,0.0368,2.9369,0.036288
+991,192.88,5.18457,3.48982,0.02656,0.40352,0.008192,0.0056,0.010528,0.032512,0.03536,2.93066,0.036896
+992,187.271,5.33984,3.52874,0.026624,0.4096,0.008192,0.006144,0.01024,0.03392,0.035712,2.96298,0.035328
+993,188.86,5.29492,3.51878,0.025408,0.38912,0.008192,0.00608,0.010304,0.0328,0.034784,2.97574,0.036352
+994,183.677,5.44434,3.52461,0.026624,0.393216,0.008192,0.0056,0.010816,0.032736,0.036448,2.97411,0.036864
+995,196.639,5.08545,3.48982,0.026368,0.38704,0.008128,0.005568,0.01072,0.032832,0.035008,2.94858,0.035584
+996,193.995,5.15479,3.57578,0.0264,0.477472,0.008128,0.006144,0.01024,0.032768,0.036864,2.94093,0.036832
+997,191.134,5.23193,3.50003,0.026624,0.393216,0.009248,0.005088,0.01024,0.033792,0.035872,2.94909,0.036864
+998,189.227,5.28467,3.47622,0.025344,0.386464,0.008128,0.004768,0.011552,0.032832,0.035488,2.93622,0.035424
+999,194.215,5.14893,3.48246,0.025504,0.3984,0.00816,0.005024,0.01024,0.034048,0.03552,2.92976,0.035808
+1000,174.893,5.71777,3.5633,0.025184,0.473088,0.008352,0.005984,0.010336,0.03472,0.036704,2.9329,0.036032
+1001,197.989,5.05078,3.57203,0.024896,0.45056,0.00768,0.004608,0.011648,0.033248,0.034976,2.96755,0.036864
+1002,183.76,5.44189,3.50208,0.026592,0.390464,0.008736,0.005536,0.010688,0.03312,0.036128,2.95395,0.036864
+1003,187.289,5.33936,3.51264,0.026016,0.394176,0.00816,0.006144,0.01168,0.033184,0.036288,2.96013,0.036864
+1004,186.368,5.36572,3.51011,0.026624,0.393088,0.008128,0.005536,0.010688,0.033152,0.036832,2.95936,0.036704
+1005,196.225,5.09619,3.4816,0.026208,0.381344,0.008192,0.006144,0.01024,0.033856,0.035264,2.94349,0.036864
+1006,188.965,5.29199,3.50822,0.026656,0.405504,0.00816,0.005824,0.01056,0.034176,0.035456,2.94682,0.035072
+1007,205.313,4.87061,3.47574,0.026624,0.387424,0.008192,0.005856,0.010528,0.032768,0.034848,2.9327,0.0368
+1008,187.169,5.34277,3.56365,0.025952,0.477312,0.008128,0.004832,0.01152,0.033376,0.036448,2.92922,0.036864
+1009,183.513,5.44922,3.54048,0.026624,0.441984,0.008128,0.004544,0.011744,0.033344,0.036512,2.94125,0.036352
+1010,189,5.29102,3.52054,0.026624,0.417792,0.008192,0.006016,0.0104,0.032736,0.036384,2.9455,0.036896
+1011,192.337,5.19922,3.52211,0.026336,0.395552,0.008192,0.005728,0.010656,0.032512,0.035072,2.97165,0.036416
+1012,174.372,5.73486,3.49248,0.025312,0.39232,0.008288,0.004896,0.011424,0.032608,0.03584,2.93683,0.04496
+1013,195.737,5.10889,3.51235,0.026496,0.40768,0.008192,0.006144,0.01024,0.032768,0.036448,2.94749,0.036896
+1014,196.753,5.08252,3.49402,0.025984,0.408288,0.008192,0.006144,0.01024,0.034048,0.036768,2.92906,0.035296
+1015,183.562,5.44775,3.49603,0.024672,0.411104,0.008128,0.004704,0.011488,0.033024,0.03536,2.93069,0.036864
+1016,185.776,5.38281,3.4832,0.026656,0.38704,0.008192,0.006144,0.01024,0.032768,0.03664,2.9391,0.036416
+1017,189.122,5.2876,3.52442,0.026176,0.401952,0.008192,0.006144,0.010272,0.032768,0.036448,2.96589,0.036576
+1018,188.097,5.31641,3.51472,0.02624,0.396,0.008192,0.00608,0.010304,0.032768,0.036864,2.96141,0.036864
+1019,195.756,5.1084,3.48147,0.026624,0.390528,0.00816,0.004768,0.01152,0.032544,0.03552,2.93507,0.036736
+1020,185.574,5.38867,3.48835,0.026336,0.383584,0.00816,0.005536,0.010784,0.033088,0.036768,2.94867,0.035424
+1021,184.904,5.4082,3.50957,0.026592,0.419872,0.008192,0.005856,0.010528,0.032768,0.034816,2.93466,0.036288
+1022,195.831,5.10645,3.48803,0.026144,0.401888,0.008128,0.005536,0.01088,0.03296,0.036,2.93136,0.035136
+1023,185.827,5.38135,3.52429,0.02608,0.399904,0.008192,0.005696,0.01072,0.032736,0.034816,2.9696,0.036544
+1024,168.643,5.92969,3.51011,0.026272,0.418144,0.00816,0.004128,0.01008,0.03216,0.035584,2.93888,0.036704
+1025,184.338,5.4248,3.51434,0.026528,0.417344,0.008128,0.004704,0.011584,0.032544,0.035104,2.94157,0.036832
+1026,190.885,5.23877,3.54269,0.026432,0.423776,0.008128,0.005568,0.010688,0.033312,0.034816,2.96346,0.036512
+1027,196.772,5.08203,3.50829,0.026048,0.401056,0.008224,0.005056,0.010272,0.03456,0.035072,2.95274,0.035264
+1028,175.357,5.70264,3.48678,0.026624,0.395264,0.008192,0.006144,0.010304,0.033952,0.035616,2.93456,0.036128
+1029,174.016,5.74658,3.50755,0.026176,0.406016,0.008192,0.005696,0.010688,0.032768,0.034848,2.94688,0.036288
+1030,186.03,5.37549,3.50246,0.02544,0.41984,0.008192,0.006144,0.01024,0.034816,0.035904,2.9255,0.036384
+1031,171.87,5.81836,3.47094,0.025248,0.38256,0.008128,0.005568,0.010784,0.033184,0.036864,2.93222,0.036384
+1032,190.087,5.26074,3.51149,0.026624,0.406624,0.008128,0.005088,0.01024,0.032896,0.036544,2.94931,0.036032
+1033,183.348,5.4541,3.50634,0.026144,0.39616,0.008192,0.006144,0.01024,0.0328,0.03616,2.95389,0.036608
+1034,195.234,5.12207,3.46525,0.026272,0.380736,0.00816,0.004672,0.011552,0.033504,0.035008,2.92973,0.035616
+1035,200.078,4.99805,3.47754,0.026464,0.401568,0.008192,0.005536,0.010688,0.03248,0.035296,2.92042,0.036896
+1036,194.234,5.14844,3.48982,0.026624,0.39936,0.008192,0.006144,0.01024,0.032864,0.0368,2.93386,0.035744
+1037,175.207,5.70752,3.46915,0.02512,0.384096,0.008128,0.005088,0.010432,0.032576,0.036064,2.93149,0.03616
+1038,168.172,5.94629,3.62704,0.033824,0.508064,0.008128,0.004992,0.01024,0.032768,0.036864,2.95658,0.035584
+1039,175.598,5.69482,3.52051,0.026592,0.444128,0.008224,0.005536,0.010784,0.032896,0.03504,2.92048,0.036832
+1040,176.081,5.6792,3.59597,0.025216,0.513184,0.007008,0.006144,0.01024,0.0328,0.035936,2.92928,0.03616
+1041,187.959,5.32031,3.52902,0.02608,0.436928,0.008128,0.005568,0.010688,0.03312,0.036256,2.93542,0.036832
+1042,185.055,5.40381,3.50198,0.026208,0.432832,0.00816,0.006144,0.01024,0.032768,0.036864,2.91226,0.036512
+1043,164.208,6.08984,3.61037,0.026624,0.514048,0.008192,0.006144,0.01024,0.032768,0.036352,2.93939,0.036608
+1044,171.942,5.81592,3.54064,0.026624,0.458336,0.008128,0.004576,0.01168,0.033088,0.035104,2.92659,0.036512
+1045,177.055,5.64795,3.61034,0.026112,0.541312,0.008192,0.005696,0.010688,0.032768,0.036512,2.91261,0.036448
+1046,176.918,5.65234,3.65776,0.026624,0.562816,0.008256,0.005536,0.010848,0.032704,0.0352,2.94026,0.03552
+1047,190.76,5.24219,3.52854,0.02624,0.44896,0.008192,0.006144,0.01024,0.032768,0.035968,2.92339,0.03664
+1048,171.452,5.83252,3.54941,0.026016,0.473472,0.00816,0.004576,0.011616,0.03328,0.034976,2.92147,0.03584
+1049,159.204,6.28125,3.60202,0.026272,0.491136,0.00832,0.004704,0.01152,0.032672,0.035264,2.95568,0.036448
+1050,150.921,6.62598,3.60112,0.025184,0.523296,0.007104,0.00608,0.010304,0.032768,0.03648,2.92451,0.035392
+1051,156.479,6.39062,3.66141,0.026272,0.573824,0.00816,0.006144,0.01024,0.033856,0.035776,2.93069,0.036448
+1052,183.299,5.45557,3.57811,0.026176,0.471136,0.008096,0.004768,0.011488,0.03296,0.035424,2.95229,0.035776
+1053,165.937,6.02637,3.58989,0.026656,0.488832,0.008128,0.0048,0.01184,0.032928,0.035072,2.94502,0.036608
+1054,186.759,5.35449,3.53142,0.025248,0.460832,0.00816,0.006016,0.010368,0.032768,0.034816,2.91635,0.036864
+1055,180.839,5.52979,3.50765,0.026624,0.436224,0.008192,0.0056,0.010784,0.0328,0.035808,2.91478,0.036832
+1056,174.58,5.72803,3.52867,0.025216,0.447936,0.00816,0.004704,0.011648,0.033152,0.036352,2.92531,0.036192
+1057,176.902,5.65283,3.59443,0.026656,0.506272,0.008192,0.005536,0.01072,0.032896,0.035008,2.93254,0.036608
+1058,177.485,5.63428,3.62016,0.026624,0.570912,0.008128,0.00464,0.011584,0.033472,0.036288,2.89235,0.03616
+1059,186.131,5.37256,3.54906,0.026624,0.466944,0.008192,0.006144,0.01024,0.034048,0.0352,2.92493,0.036736
+1060,166.45,6.00781,3.59178,0.026656,0.519744,0.008128,0.004576,0.01168,0.033376,0.036864,2.9143,0.036448
+1061,183.43,5.45166,3.56858,0.025568,0.495392,0.00816,0.005536,0.01072,0.03312,0.034816,2.9184,0.036864
+1062,162.449,6.15576,3.54442,0.02624,0.485472,0.008128,0.004704,0.011552,0.032672,0.03568,2.90394,0.036032
+1063,177.454,5.63525,3.58413,0.026016,0.516832,0.008192,0.006144,0.010272,0.033792,0.03504,2.91242,0.035424
+1064,176.674,5.66016,3.54918,0.026336,0.467264,0.00816,0.005856,0.020768,0.034592,0.03504,2.91536,0.035808
+1065,180.568,5.53809,3.52416,0.026528,0.435712,0.008096,0.0048,0.011488,0.032864,0.0352,2.93306,0.036416
+1066,174.774,5.72168,3.54262,0.026848,0.46704,0.008352,0.005536,0.01072,0.03296,0.036288,2.91894,0.035936
+1067,182.661,5.47461,3.52067,0.026272,0.436928,0.00816,0.006144,0.01024,0.0328,0.036224,2.9272,0.036704
+1068,180.076,5.55322,3.53722,0.02624,0.466912,0.008128,0.004896,0.011328,0.03344,0.036128,2.9144,0.035744
+1069,180.871,5.52881,3.58614,0.02608,0.504032,0.008128,0.00496,0.011296,0.033184,0.035392,2.92602,0.037056
+1070,173.603,5.76025,3.59792,0.026112,0.514208,0.008224,0.004544,0.012128,0.032768,0.034976,2.92864,0.03632
+1071,175.643,5.69336,3.54304,0.02624,0.489376,0.008224,0.004544,0.011712,0.03248,0.03568,2.89914,0.035648
+1072,174.565,5.72852,3.54355,0.025184,0.468128,0.00816,0.004896,0.011392,0.033184,0.036352,2.92045,0.035808
+1073,163.67,6.10986,3.55984,0.026304,0.473728,0.008192,0.005632,0.010688,0.033952,0.035456,2.92998,0.035904
+1074,181.802,5.50049,3.5287,0.026624,0.454688,0.00816,0.006144,0.01024,0.032768,0.036864,2.91802,0.0352
+1075,183.25,5.45703,3.5697,0.026336,0.493536,0.008128,0.004704,0.011648,0.033312,0.036544,2.91882,0.036672
+1076,172.871,5.78467,3.50845,0.026368,0.442496,0.008128,0.005536,0.010752,0.033056,0.036672,2.91034,0.035104
+1077,192.337,5.19922,3.53654,0.02624,0.47552,0.008192,0.006144,0.01024,0.0328,0.036384,2.90451,0.036512
+1078,160.892,6.21533,3.55229,0.025632,0.485344,0.008192,0.006144,0.01024,0.0328,0.036768,2.91027,0.036896
+1079,192.807,5.18652,3.53712,0.02592,0.474016,0.008192,0.006144,0.01024,0.0328,0.036416,2.90653,0.036864
+1080,195.308,5.12012,3.48141,0.026048,0.404032,0.008192,0.005728,0.010656,0.032768,0.036896,2.92042,0.036672
+1081,181.223,5.51807,3.49802,0.026656,0.411616,0.009248,0.005088,0.01024,0.032768,0.035936,2.92957,0.036896
+1082,186.589,5.35938,3.50448,0.025632,0.435168,0.007168,0.006144,0.010272,0.034208,0.036448,2.91325,0.036192
+1083,171.927,5.81641,3.46506,0.026624,0.400864,0.008128,0.004704,0.011584,0.032928,0.035328,2.90819,0.036704
+1084,186.759,5.35449,3.55872,0.026624,0.448544,0.00816,0.006144,0.010272,0.034208,0.035392,2.95322,0.03616
+1085,193.08,5.1792,3.48656,0.025408,0.4096,0.008192,0.006112,0.010272,0.032768,0.036416,2.9209,0.036896
+1086,197.113,5.07324,3.46362,0.025024,0.40672,0.008128,0.004992,0.011328,0.03296,0.035584,2.90352,0.03536
+1087,177.101,5.64648,3.47344,0.02784,0.406336,0.008192,0.006144,0.01024,0.034048,0.035552,2.9097,0.035392
+1088,187.323,5.33838,3.54733,0.0264,0.494016,0.00816,0.006144,0.010272,0.032736,0.036864,2.89587,0.036864
+1089,200.725,4.98193,3.4863,0.025184,0.41696,0.00832,0.0048,0.01152,0.032736,0.035488,2.91443,0.036864
+1090,183.661,5.44482,3.48778,0.026016,0.43248,0.008192,0.005536,0.010784,0.033088,0.035936,2.89885,0.036896
+1091,201.793,4.95557,3.46397,0.025408,0.407264,0.007712,0.004864,0.01136,0.032704,0.035648,2.90218,0.036832
+1092,193.427,5.16992,3.48605,0.026592,0.42192,0.008128,0.005568,0.01072,0.03296,0.035168,2.90813,0.036864
+1093,177.101,5.64648,3.46931,0.026624,0.408896,0.00816,0.004832,0.011456,0.0336,0.036128,2.90394,0.03568
+1094,188.426,5.30713,3.43107,0.025248,0.38912,0.008192,0.005792,0.010592,0.032768,0.03632,2.88749,0.035552
+1095,199.164,5.021,3.47549,0.026624,0.409024,0.008128,0.004736,0.011776,0.032544,0.035552,2.91165,0.035456
+1096,181.063,5.52295,3.47504,0.026112,0.420512,0.008192,0.005952,0.010464,0.033952,0.035648,2.89792,0.036288
+1097,190.264,5.25586,3.51187,0.025888,0.455456,0.008288,0.005664,0.01072,0.032704,0.035904,2.90099,0.036256
+1098,192.735,5.18848,3.45843,0.026368,0.409856,0.00816,0.005536,0.010688,0.03296,0.036832,2.89165,0.036384
+1099,172.029,5.81299,3.60035,0.026432,0.549696,0.008192,0.006144,0.010272,0.032768,0.036064,2.89421,0.036576
+1100,180.187,5.5498,3.45642,0.026048,0.395936,0.00816,0.00576,0.010624,0.0328,0.036512,2.90438,0.036192
+1101,189.349,5.28125,3.51002,0.026176,0.455104,0.008192,0.006144,0.01024,0.032768,0.034816,2.89997,0.036608
+1102,175.297,5.70459,3.50694,0.025312,0.442368,0.008192,0.006112,0.010272,0.032864,0.036768,2.90816,0.036896
+1103,196.451,5.09033,3.47414,0.026368,0.402368,0.008192,0.005952,0.010432,0.032768,0.035872,2.9153,0.036896
+1104,194.695,5.13623,3.45738,0.025504,0.40752,0.008192,0.006112,0.010304,0.03376,0.035904,2.89376,0.03632
+1105,176.021,5.68115,3.54896,0.026624,0.493568,0.008192,0.006144,0.01024,0.032768,0.036128,2.89866,0.03664
+1106,196.394,5.0918,3.46726,0.026208,0.411904,0.008096,0.005536,0.01072,0.033152,0.036832,2.89946,0.03536
+1107,195.494,5.11523,3.47606,0.025216,0.391136,0.008192,0.006144,0.01024,0.034144,0.035488,2.92864,0.036864
+1108,157.538,6.34766,3.5511,0.026624,0.499712,0.008128,0.005568,0.010752,0.032832,0.036128,2.89462,0.036736
+1109,193.189,5.17627,3.45107,0.026304,0.392736,0.0072,0.00608,0.010368,0.033888,0.035424,2.90221,0.036864
+1110,185.155,5.40088,3.59645,0.026048,0.547552,0.00816,0.006144,0.011392,0.033664,0.036288,2.8919,0.035296
+1111,185.155,5.40088,3.4752,0.026432,0.426336,0.00816,0.005856,0.01056,0.032768,0.034784,2.89382,0.03648
+1112,192.953,5.18262,3.46682,0.026112,0.401472,0.008128,0.004672,0.011616,0.033312,0.035968,2.90918,0.036352
+1113,202.412,4.94043,3.46541,0.026656,0.40752,0.008192,0.005952,0.010432,0.032768,0.034848,2.90371,0.035328
+1114,182.971,5.46533,3.59475,0.025056,0.546816,0.008192,0.006016,0.010368,0.033888,0.03536,2.89347,0.035584
+1115,193.921,5.15674,3.45203,0.026624,0.398752,0.006752,0.006144,0.01024,0.032768,0.035936,2.89846,0.036352
+1116,195.196,5.12305,3.48218,0.02624,0.408512,0.00816,0.006144,0.011552,0.033088,0.035232,2.91635,0.036896
+1117,185.507,5.39062,3.62298,0.0264,0.53888,0.008192,0.016384,0.01024,0.048192,0.035776,2.90339,0.03552
+1118,189.367,5.28076,3.47011,0.025376,0.416992,0.00816,0.004928,0.011552,0.033056,0.035296,2.89789,0.036864
+1119,196.602,5.08643,3.42288,0.025248,0.388512,0.008288,0.004608,0.011776,0.032896,0.0352,2.8808,0.035552
+1120,176.902,5.65283,3.60912,0.029216,0.546624,0.00816,0.005536,0.021472,0.033984,0.035488,2.89178,0.036864
+1121,205.85,4.85791,3.43424,0.026048,0.390016,0.008224,0.006112,0.01024,0.032768,0.03616,2.88816,0.036512
+1122,162.385,6.1582,3.4696,0.025952,0.412672,0.008192,0.00608,0.010304,0.0344,0.035232,2.89997,0.0368
+1123,162.488,6.1543,3.53469,0.026624,0.49152,0.008192,0.006144,0.01024,0.034016,0.035616,2.88563,0.036704
+1124,195.103,5.12549,3.46438,0.026624,0.413696,0.00816,0.005536,0.010816,0.032832,0.036864,2.89382,0.036032
+1125,150.877,6.62793,3.47242,0.025568,0.411648,0.008192,0.005664,0.01072,0.032768,0.034944,2.90736,0.035552
+1126,180.456,5.5415,3.53757,0.025152,0.50176,0.00928,0.005056,0.01136,0.03328,0.035392,2.88093,0.03536
+1127,197.303,5.06836,3.46115,0.026624,0.39696,0.008128,0.004576,0.01168,0.032704,0.035424,2.90925,0.035808
+1128,172.871,5.78467,3.59968,0.026624,0.54272,0.008192,0.0056,0.010752,0.0328,0.036864,2.89997,0.03616
+1129,184.554,5.41846,3.56304,0.026528,0.51808,0.008192,0.004544,0.011744,0.032896,0.035232,2.88963,0.036192
+1130,186.283,5.36816,3.47344,0.026656,0.411424,0.00816,0.005504,0.010784,0.03312,0.036256,2.90573,0.035808
+1131,186.793,5.35352,3.45072,0.025408,0.403424,0.008128,0.005568,0.010752,0.032448,0.035296,2.8935,0.036192
+1132,169.621,5.89551,3.44077,0.025376,0.39936,0.008192,0.005664,0.010688,0.032992,0.036672,2.88563,0.036192
+1133,186.793,5.35352,3.4737,0.02592,0.421888,0.008128,0.00512,0.0104,0.033696,0.0352,2.89795,0.035392
+1134,187.032,5.34668,3.50848,0.026368,0.458848,0.006944,0.006144,0.01024,0.034528,0.036256,2.89267,0.03648
+1135,185.524,5.39014,3.47328,0.026624,0.418912,0.008128,0.005088,0.012064,0.032992,0.035936,2.8968,0.036736
+1136,197.817,5.05518,3.43818,0.026464,0.403776,0.00816,0.006144,0.01024,0.032896,0.036736,2.87747,0.036288
+1137,156.205,6.40186,3.47549,0.026624,0.41328,0.00832,0.005536,0.010784,0.03232,0.035616,2.90733,0.03568
+1138,167.402,5.97363,3.4999,0.026272,0.444768,0.008192,0.006048,0.010336,0.045056,0.046688,2.87581,0.036736
+1139,174.15,5.74219,3.49056,0.025344,0.417792,0.008192,0.006144,0.01024,0.034016,0.035264,2.91194,0.041632
+1140,173.456,5.76514,3.50682,0.035328,0.433664,0.008128,0.0048,0.011424,0.033024,0.035552,2.89696,0.047936
+1141,185.339,5.39551,3.46886,0.026624,0.425984,0.008192,0.005696,0.010688,0.032704,0.03488,2.88742,0.036672
+1142,187.907,5.32178,3.68054,0.028416,0.637472,0.00816,0.006144,0.01024,0.032768,0.036864,2.88496,0.03552
+1143,173.795,5.75391,3.63622,0.0256,0.577536,0.008192,0.00608,0.010304,0.032736,0.034848,2.90406,0.036864
+1144,171.309,5.8374,3.54976,0.026112,0.491968,0.00784,0.004992,0.011296,0.033024,0.035552,2.90352,0.035456
+1145,178.631,5.59814,3.48368,0.026144,0.430624,0.00816,0.006144,0.01024,0.034816,0.03664,2.89405,0.036864
+1146,182.613,5.47607,3.44269,0.026496,0.396544,0.008128,0.005056,0.010432,0.033632,0.035808,2.89078,0.035808
+1147,187.615,5.33008,3.46112,0.026624,0.407552,0.008192,0.005696,0.010688,0.032768,0.036864,2.89587,0.036864
+1148,157.551,6.34717,3.48374,0.025248,0.433984,0.008288,0.005568,0.010688,0.032896,0.036512,2.89418,0.036384
+1149,180.743,5.53271,3.55088,0.026624,0.493568,0.008192,0.006016,0.010368,0.032768,0.036192,2.90064,0.036512
+1150,183.348,5.4541,3.44474,0.026368,0.409888,0.00816,0.006144,0.01024,0.034016,0.035616,2.87872,0.035584
+1151,159.315,6.27686,3.51469,0.02608,0.467456,0.008192,0.005536,0.010656,0.032928,0.034848,2.89325,0.035744
+1152,198.296,5.04297,3.45507,0.025952,0.412416,0.008192,0.006144,0.01024,0.033888,0.035744,2.88682,0.03568
+1153,154.999,6.45166,3.44269,0.026624,0.396832,0.006624,0.006144,0.01024,0.032768,0.036256,2.89034,0.036864
+1154,180.441,5.54199,3.4217,0.026624,0.393216,0.008192,0.006144,0.011328,0.033408,0.035136,2.8713,0.036352
+1155,185.256,5.39795,3.5096,0.026048,0.430656,0.008192,0.005568,0.02096,0.032864,0.034816,2.9143,0.036192
+1156,190.405,5.25195,3.44474,0.025472,0.396512,0.008128,0.00496,0.01136,0.033152,0.03536,2.89376,0.036032
+1157,171.639,5.82617,3.4777,0.025568,0.43008,0.008192,0.006144,0.011584,0.032864,0.035456,2.89123,0.036576
+1158,191.259,5.22852,3.48787,0.026336,0.438336,0.00816,0.005536,0.01072,0.0328,0.036704,2.89382,0.035456
+1159,169.41,5.90283,3.59219,0.02592,0.5168,0.008192,0.016384,0.011488,0.033344,0.03504,2.90957,0.035456
+1160,160.829,6.21777,3.71574,0.026176,0.65552,0.008128,0.004928,0.011328,0.03328,0.035264,2.90579,0.035328
+1161,185.895,5.37939,3.49203,0.02624,0.446752,0.008128,0.004736,0.01152,0.032864,0.035488,2.88973,0.036576
+1162,176.111,5.67822,3.46726,0.026624,0.419584,0.007936,0.004608,0.01168,0.033152,0.036192,2.89062,0.036864
+1163,202.332,4.94238,3.44518,0.02608,0.383968,0.008192,0.006144,0.01024,0.032768,0.036192,2.8904,0.0512
+1164,164.313,6.08594,3.44627,0.026624,0.40144,0.00816,0.006048,0.010336,0.032768,0.03664,2.8879,0.036352
+1165,176.796,5.65625,3.56762,0.026592,0.513312,0.006912,0.006144,0.01024,0.0328,0.034816,2.90128,0.03552
+1166,188.235,5.3125,3.4503,0.026624,0.4096,0.00816,0.005536,0.010752,0.032896,0.03648,2.88397,0.036288
+1167,193.591,5.16553,3.4392,0.025184,0.39104,0.008128,0.005536,0.01104,0.032736,0.03488,2.89546,0.0352
+1168,199.261,5.01855,3.45168,0.025376,0.415264,0.008128,0.00464,0.011616,0.03344,0.036416,2.87994,0.036864
+1169,188.183,5.31396,3.45296,0.026496,0.409472,0.008096,0.005568,0.010688,0.033152,0.034912,2.88768,0.036896
+1170,179.162,5.58154,3.48909,0.026944,0.45056,0.008192,0.005664,0.01072,0.032768,0.036864,2.88118,0.036192
+1171,201.1,4.97266,3.43917,0.025248,0.39008,0.007136,0.006144,0.01024,0.033984,0.03568,2.89552,0.035136
+1172,202.452,4.93945,3.46422,0.026624,0.407232,0.008128,0.005536,0.01072,0.03328,0.03632,2.90022,0.03616
+1173,179.886,5.55908,3.47354,0.026272,0.416224,0.008192,0.005632,0.01072,0.0328,0.035968,2.90208,0.035648
+1174,194.843,5.13232,3.47101,0.026656,0.40912,0.008096,0.00464,0.01168,0.032832,0.03536,2.90611,0.036512
+1175,202.833,4.93018,3.42845,0.026176,0.387872,0.008192,0.005888,0.010496,0.032768,0.034816,2.88563,0.036608
+1176,176.142,5.67725,3.50682,0.025184,0.464896,0.008192,0.005536,0.010688,0.032928,0.036608,2.88589,0.036896
+1177,170.994,5.84814,3.45891,0.026656,0.419808,0.008192,0.006112,0.010304,0.033792,0.035168,2.88218,0.036704
+1178,192.989,5.18164,3.48144,0.026304,0.432736,0.008192,0.006144,0.01024,0.033984,0.03568,2.89174,0.036416
+1179,185.222,5.39893,3.44192,0.026112,0.391232,0.008128,0.004608,0.011712,0.03312,0.03504,2.89558,0.036384
+1180,196.018,5.10156,3.43818,0.026624,0.390784,0.008096,0.004576,0.011744,0.033312,0.036768,2.88982,0.036448
+1181,197.626,5.06006,3.44883,0.025408,0.403424,0.008128,0.005536,0.010784,0.032928,0.034848,2.89168,0.036096
+1182,177.117,5.646,3.50643,0.026336,0.47392,0.008192,0.005792,0.010624,0.032736,0.037984,2.87427,0.036576
+1183,186.199,5.37061,3.45174,0.02544,0.406624,0.00816,0.005056,0.011712,0.032576,0.035424,2.8913,0.035456
+1184,204.025,4.90137,3.43741,0.025472,0.382048,0.008096,0.005088,0.01024,0.032928,0.036608,2.88317,0.05376
+1185,169.607,5.896,3.46317,0.026656,0.411584,0.008128,0.005536,0.010656,0.032544,0.035168,2.89603,0.036864
+1186,177.731,5.62646,3.4505,0.025216,0.409504,0.008192,0.005504,0.01088,0.032896,0.036736,2.88554,0.036032
+1187,195.141,5.12451,3.43907,0.026496,0.389568,0.008352,0.0056,0.010688,0.03248,0.035232,2.89501,0.035648
+1188,183.07,5.4624,3.47357,0.02624,0.401984,0.008192,0.00512,0.02704,0.033376,0.0448,2.88998,0.036832
+1189,200.962,4.97607,3.43414,0.02592,0.396064,0.008192,0.006048,0.010336,0.032768,0.036384,2.88189,0.036544
+1190,173.545,5.76221,3.44835,0.026432,0.3992,0.008128,0.004512,0.01152,0.033184,0.0352,2.89379,0.036384
+1191,163.683,6.10938,3.76102,0.02544,0.697856,0.006656,0.017408,0.011264,0.0328,0.044704,2.88909,0.035808
+1192,180.695,5.53418,3.54192,0.025504,0.486496,0.008128,0.005056,0.010432,0.033632,0.035808,2.90144,0.035424
+1193,161.234,6.20215,3.44685,0.026208,0.395872,0.008192,0.006144,0.01024,0.03392,0.035712,2.89382,0.036736
+1194,178.413,5.60498,3.52486,0.024992,0.491328,0.008192,0.006144,0.01024,0.033888,0.035776,2.87741,0.036896
+1195,193.628,5.16455,3.49184,0.026304,0.442688,0.008192,0.005632,0.010464,0.033056,0.035872,2.89402,0.035616
+1196,170.525,5.86426,3.50822,0.026624,0.473088,0.008192,0.006144,0.01024,0.034176,0.035456,2.87862,0.03568
+1197,177.209,5.64307,3.58195,0.026016,0.512288,0.008128,0.005536,0.010688,0.033344,0.034784,2.9143,0.036864
+1198,183.628,5.4458,3.4848,0.026592,0.448544,0.008192,0.005888,0.010528,0.032736,0.036864,2.87949,0.035968
+1199,175.148,5.70947,3.46314,0.025632,0.419296,0.008192,0.005536,0.010848,0.033184,0.034816,2.88922,0.036416
+1200,185.726,5.38428,3.47955,0.026496,0.446592,0.008192,0.005728,0.010656,0.033856,0.035776,2.87677,0.035488
+1201,158.747,6.29932,3.5057,0.026464,0.451008,0.00816,0.005536,0.010784,0.03216,0.035392,2.89968,0.036512
+1202,120.237,8.31689,5.55789,0.026176,2.50506,0.008128,0.005536,0.010688,0.033088,0.03664,2.89632,0.036256
+1203,169.2,5.91016,3.52349,0.025536,0.47104,0.008192,0.005952,0.010432,0.032768,0.034848,2.89789,0.036832
+1204,176.233,5.67432,3.55293,0.02608,0.495456,0.008128,0.005088,0.010208,0.032864,0.036768,2.90202,0.03632
+1205,193.353,5.17188,3.49568,0.026624,0.4416,0.006912,0.006144,0.01024,0.032768,0.036,2.89878,0.036608
+1206,186.03,5.37549,3.48979,0.026624,0.45584,0.00816,0.004992,0.01136,0.032704,0.035808,2.87926,0.03504
+1207,186.691,5.35645,3.61629,0.026464,0.551072,0.008192,0.006144,0.01024,0.032768,0.036288,2.90864,0.03648
+1208,166.288,6.01367,3.49283,0.025536,0.44032,0.008192,0.006144,0.01024,0.032768,0.036864,2.89587,0.036896
+1209,183.102,5.46143,3.68086,0.026368,0.63776,0.00816,0.005536,0.010784,0.032896,0.036352,2.88717,0.03584
+1210,181.98,5.49512,3.47341,0.02576,0.44528,0.008192,0.005568,0.010816,0.032768,0.036288,2.87187,0.036864
+1211,198.469,5.03857,3.46989,0.025152,0.42128,0.008128,0.004768,0.011968,0.032928,0.034976,2.89382,0.036864
+1212,197.17,5.07178,3.44682,0.026432,0.403616,0.008096,0.005536,0.011008,0.032736,0.03616,2.888,0.035232
+1213,173.898,5.75049,3.46496,0.026144,0.417536,0.008128,0.004896,0.011424,0.031712,0.036608,2.8919,0.036608
+1214,194.473,5.14209,3.4361,0.026624,0.398656,0.00816,0.004832,0.011392,0.033184,0.035296,2.88154,0.036416
+1215,174.253,5.73877,3.4599,0.025376,0.401184,0.008096,0.005536,0.01088,0.033056,0.034816,2.90528,0.03568
+1216,189.174,5.28613,3.46192,0.025376,0.4096,0.008192,0.005824,0.010592,0.032704,0.036864,2.89738,0.035392
+1217,185.574,5.38867,3.45971,0.026112,0.416704,0.008192,0.0056,0.010688,0.032864,0.034816,2.88928,0.035456
+1218,182.158,5.48975,3.50042,0.026016,0.456768,0.00816,0.005056,0.01024,0.033824,0.035808,2.88966,0.03488
+1219,196.866,5.07959,3.43654,0.026656,0.398656,0.008128,0.004832,0.011424,0.032608,0.035616,2.88176,0.036864
+1220,196.037,5.10107,3.47734,0.026624,0.404672,0.008128,0.004992,0.01024,0.034624,0.035008,2.91635,0.036704
+1221,194.547,5.14014,3.44067,0.026464,0.395168,0.008128,0.005536,0.010752,0.033184,0.034816,2.88973,0.036896
+1222,189.524,5.27637,3.5639,0.026432,0.52048,0.008192,0.005536,0.010752,0.032448,0.03552,2.8889,0.035648
+1223,196.621,5.08594,3.42832,0.025344,0.388672,0.008192,0.005536,0.01072,0.032384,0.035552,2.88566,0.036256
+1224,174.209,5.74023,3.46451,0.026624,0.415424,0.00816,0.005536,0.010752,0.03264,0.035424,2.8937,0.036256
+1225,199.222,5.01953,3.45693,0.025216,0.40752,0.00816,0.005536,0.010656,0.033024,0.034816,2.89382,0.038176
+1226,193.958,5.15576,3.52448,0.026624,0.482912,0.00816,0.004544,0.011744,0.033152,0.034976,2.88563,0.036736
+1227,184.388,5.42334,3.44474,0.026624,0.405504,0.008192,0.006144,0.010272,0.033792,0.035392,2.88195,0.036864
+1228,194.381,5.14453,3.44438,0.026624,0.403456,0.008192,0.005728,0.010656,0.0328,0.036832,2.88358,0.036512
+1229,206.015,4.854,3.44301,0.026272,0.406176,0.008192,0.0056,0.010688,0.032224,0.035392,2.88275,0.035712
+1230,177.362,5.63818,3.5377,0.025568,0.505216,0.008096,0.004832,0.011456,0.033376,0.03504,2.87744,0.036672
+1231,184.488,5.42041,3.48358,0.026208,0.44528,0.008192,0.005984,0.0104,0.032768,0.035872,2.88253,0.036352
+1232,195.048,5.12695,3.44518,0.026112,0.407488,0.007168,0.006144,0.01024,0.03408,0.035328,2.88317,0.035456
+1233,188.895,5.29395,3.44678,0.026432,0.397504,0.008192,0.005632,0.010784,0.032736,0.036032,2.88442,0.045056
+1234,174.239,5.73926,3.45229,0.026464,0.413056,0.00816,0.004928,0.011296,0.033312,0.035264,2.88349,0.03632
+1235,198.162,5.04639,3.44957,0.025408,0.40528,0.00816,0.005536,0.01072,0.032992,0.034976,2.88973,0.036768
+1236,177.132,5.64551,3.52653,0.026048,0.46736,0.008192,0.004608,0.011904,0.032736,0.036416,2.90278,0.03648
+1237,201.357,4.96631,3.46643,0.026432,0.40912,0.00816,0.004832,0.01136,0.033056,0.035296,2.90128,0.036896
+1238,178.662,5.59717,3.48733,0.025984,0.44704,0.008128,0.005536,0.010944,0.03264,0.036192,2.88454,0.03632
+1239,179.633,5.56689,3.61379,0.026624,0.546816,0.008192,0.005856,0.010528,0.032768,0.034816,2.91181,0.036384
+1240,195.066,5.12646,3.46314,0.026656,0.41776,0.008192,0.006144,0.01024,0.0328,0.036864,2.88765,0.036832
+1241,193.866,5.1582,3.47344,0.02624,0.428416,0.008192,0.006144,0.01024,0.0344,0.035232,2.88768,0.036896
+1242,190.725,5.24316,3.48778,0.026496,0.442144,0.008096,0.004576,0.01168,0.03312,0.035072,2.88976,0.036832
+1243,181.802,5.50049,3.456,0.0256,0.411264,0.008096,0.004576,0.011712,0.03296,0.0352,2.89101,0.035584
+1244,184.838,5.41016,3.48365,0.0264,0.45488,0.008192,0.005568,0.010752,0.032704,0.034976,2.87485,0.035328
+1245,176.233,5.67432,3.6041,0.033408,0.54064,0.008192,0.006144,0.01024,0.033888,0.035328,2.90006,0.036192
+1246,195.159,5.12402,3.50618,0.026336,0.458752,0.007168,0.006144,0.01024,0.034176,0.03664,2.89059,0.036128
+1247,185.038,5.4043,3.4857,0.026624,0.430048,0.008192,0.005504,0.01072,0.03296,0.034816,2.90109,0.035744
+1248,188.808,5.29639,3.48851,0.0256,0.440288,0.008192,0.006144,0.011744,0.033312,0.036288,2.8903,0.03664
+1249,197.474,5.06396,3.49082,0.025376,0.441856,0.008128,0.004672,0.011552,0.033504,0.036832,2.8936,0.035296
+1250,188.843,5.29541,3.49939,0.026112,0.444992,0.00816,0.005696,0.010688,0.034016,0.035616,2.89773,0.036384
+1251,166.721,5.99805,3.49222,0.026048,0.424928,0.008192,0.005696,0.010688,0.0328,0.036352,2.91069,0.036832
+1252,192.572,5.19287,3.46842,0.026528,0.418976,0.008128,0.00512,0.0104,0.033728,0.035776,2.89379,0.035968
+1253,192.264,5.20117,3.48109,0.026624,0.436224,0.008192,0.005984,0.0104,0.032768,0.035904,2.88864,0.036352
+1254,187.289,5.33936,3.47136,0.026656,0.425952,0.008192,0.006144,0.01024,0.032768,0.03664,2.88896,0.035808
+1255,194.64,5.1377,3.46211,0.025568,0.403456,0.008192,0.006144,0.01024,0.032768,0.035872,2.90301,0.036864
+1256,173.002,5.78027,3.47174,0.02624,0.440512,0.008128,0.004736,0.012,0.033056,0.036192,2.8751,0.035776
+1257,156.599,6.38574,3.59661,0.0264,0.5472,0.008352,0.005568,0.010752,0.032832,0.034816,2.89488,0.035808
+1258,193.208,5.17578,3.45552,0.02512,0.423936,0.008192,0.00608,0.010304,0.032768,0.036864,2.87539,0.036864
+1259,193.884,5.15771,3.44346,0.026496,0.39424,0.008192,0.006144,0.01024,0.033824,0.035008,2.89258,0.036736
+1260,171.524,5.83008,3.51594,0.026656,0.458144,0.00816,0.004736,0.011552,0.032704,0.035616,2.90202,0.036352
+1261,181.85,5.49902,3.43702,0.025152,0.398304,0.00816,0.005056,0.01024,0.032768,0.034976,2.88694,0.035424
+1262,169.494,5.8999,3.54205,0.026656,0.470432,0.008128,0.004736,0.010272,0.034528,0.049504,2.90154,0.036256
+1263,188.183,5.31396,3.47622,0.025376,0.423776,0.008192,0.005856,0.010528,0.032768,0.035872,2.89888,0.034976
+1264,188.53,5.3042,3.47939,0.026624,0.425152,0.008128,0.004992,0.011264,0.033408,0.036416,2.8967,0.036704
+1265,198.027,5.0498,3.45091,0.026336,0.40096,0.00816,0.004864,0.011616,0.032736,0.035488,2.89494,0.035808
+1266,177.608,5.63037,3.49325,0.026336,0.457024,0.00816,0.005696,0.010688,0.032768,0.036224,2.8801,0.036256
+1267,194.307,5.14648,3.47539,0.026656,0.41568,0.008128,0.005568,0.010752,0.032928,0.034848,2.90403,0.0368
+1268,182.466,5.48047,3.43866,0.02624,0.392768,0.008352,0.004832,0.01152,0.033152,0.0352,2.89142,0.035168
+1269,178.211,5.61133,3.55738,0.026368,0.48768,0.008192,0.00608,0.011488,0.032928,0.035488,2.91229,0.036864
+1270,169.888,5.88623,3.44272,0.026016,0.391072,0.00816,0.004864,0.01136,0.032832,0.03568,2.89773,0.035008
+1271,182.824,5.46973,3.50867,0.02656,0.426912,0.008192,0.005536,0.01072,0.032896,0.034912,2.92656,0.036384
+1272,183.299,5.45557,3.49062,0.025376,0.44848,0.008224,0.0056,0.010752,0.0328,0.036064,2.88755,0.035776
+1273,196.357,5.09277,3.45776,0.025472,0.413664,0.008128,0.005536,0.010752,0.032928,0.034816,2.88973,0.036736
+1274,185.256,5.39795,3.48582,0.026048,0.429056,0.008192,0.005728,0.010656,0.032544,0.036256,2.9008,0.036544
+1275,172.115,5.81006,3.50976,0.026272,0.43616,0.008128,0.004672,0.012096,0.032576,0.0352,2.9184,0.036256
+1276,194.215,5.14893,3.49562,0.026336,0.445312,0.00816,0.006144,0.01024,0.03392,0.035712,2.8936,0.036192
+1277,189.999,5.26318,3.55254,0.026624,0.488512,0.007168,0.00608,0.010368,0.03264,0.034816,2.91021,0.036128
+1278,192.517,5.19434,3.50243,0.026144,0.448992,0.008128,0.005536,0.011296,0.032736,0.036448,2.89629,0.036864
+1279,183.776,5.44141,3.46931,0.026656,0.40752,0.008192,0.006144,0.01024,0.032768,0.034848,2.90755,0.035392
+1280,175.342,5.70312,3.51046,0.024768,0.458016,0.008192,0.004832,0.01152,0.032864,0.035488,2.89955,0.035232
+1281,193.116,5.17822,3.45946,0.026304,0.416448,0.008192,0.006112,0.010272,0.032768,0.035936,2.888,0.035424
+1282,197.455,5.06445,3.47734,0.026176,0.414528,0.008192,0.006144,0.01024,0.034272,0.03536,2.90557,0.036864
+1283,189.929,5.26514,3.4713,0.025952,0.426944,0.008192,0.006144,0.01024,0.032768,0.03664,2.8879,0.036512
+1284,179.57,5.56885,3.5448,0.025312,0.48944,0.008192,0.005536,0.010816,0.032832,0.036736,2.89974,0.036192
+1285,194.992,5.12842,3.49248,0.025216,0.449792,0.008768,0.005568,0.010848,0.032608,0.035136,2.8887,0.03584
+1286,178.615,5.59863,3.4673,0.026624,0.421888,0.008192,0.005568,0.010848,0.032736,0.036128,2.88979,0.03552
+1287,179.256,5.57861,3.53078,0.026624,0.464896,0.008192,0.005824,0.02032,0.045536,0.034816,2.88768,0.036896
+1288,183.71,5.44336,3.44682,0.026144,0.401856,0.008192,0.00464,0.011616,0.033024,0.036288,2.88867,0.036384
+1289,178.771,5.59375,3.47629,0.02544,0.417248,0.008128,0.004672,0.011616,0.033312,0.034944,2.90544,0.035488
+1290,197.283,5.06885,3.47882,0.02592,0.430784,0.008192,0.006144,0.01024,0.03392,0.035712,2.89178,0.036128
+1291,182.58,5.47705,3.51581,0.026624,0.473088,0.008192,0.00592,0.010464,0.032768,0.036384,2.88608,0.036288
+1292,190.441,5.25098,3.47139,0.026176,0.425952,0.00816,0.00464,0.011616,0.03136,0.036864,2.89088,0.035744
+1293,182.759,5.47168,3.60531,0.033504,0.540896,0.008192,0.006144,0.01024,0.033888,0.035648,2.90006,0.036736
+1294,190.76,5.24219,3.52662,0.026016,0.473344,0.00816,0.004672,0.011584,0.033056,0.035232,2.89792,0.03664
+1295,190.991,5.23584,3.5287,0.026464,0.471008,0.008192,0.005536,0.011072,0.032928,0.036128,2.90051,0.036864
+1296,188.322,5.31006,3.50579,0.026304,0.446336,0.006592,0.006144,0.010304,0.034752,0.036032,2.90285,0.03648
+1297,174.476,5.73145,3.49517,0.026656,0.435168,0.008192,0.00512,0.01024,0.033824,0.03584,2.90378,0.036352
+1298,179.586,5.56836,3.59037,0.026272,0.536864,0.008128,0.0048,0.011488,0.033056,0.036416,2.89683,0.036512
+1299,175.312,5.7041,3.56205,0.026176,0.500736,0.008192,0.00592,0.010464,0.034272,0.03536,2.90544,0.035488
+1300,192.554,5.19336,3.50346,0.026624,0.444384,0.008128,0.005536,0.010688,0.032768,0.036448,2.90234,0.036544
+1301,197.208,5.0708,3.47754,0.026656,0.411616,0.008192,0.00576,0.010624,0.032768,0.034816,2.91021,0.036896
+1302,180.775,5.53174,3.49392,0.026624,0.439488,0.008384,0.004736,0.011648,0.033408,0.03632,2.89798,0.035328
+1303,191.617,5.21875,3.48406,0.026336,0.426432,0.008192,0.005536,0.010688,0.032896,0.035104,2.90202,0.036864
+1304,190.158,5.25879,3.49786,0.026624,0.44032,0.008192,0.006144,0.01024,0.033984,0.035648,2.89997,0.036736
+1305,190.689,5.24414,3.50618,0.026496,0.423264,0.008128,0.00496,0.011808,0.042944,0.03488,2.90845,0.045248
+1306,168.227,5.94434,3.58358,0.026656,0.525824,0.008128,0.00464,0.011648,0.03312,0.035136,2.90198,0.036448
+1307,184.355,5.42432,3.55542,0.02688,0.485376,0.008192,0.00592,0.010464,0.0328,0.036832,2.91226,0.036704
+1308,181.867,5.49854,3.4943,0.026016,0.437248,0.008192,0.005792,0.010624,0.032736,0.036448,2.9023,0.034944
+1309,163.018,6.13428,3.54714,0.026624,0.483328,0.008192,0.006144,0.01024,0.0328,0.036064,2.90688,0.036864
+1310,195.029,5.12744,3.47187,0.025056,0.39728,0.008128,0.005536,0.010752,0.03296,0.036192,2.92048,0.035488
+1311,170.994,5.84814,3.46966,0.024928,0.4096,0.008192,0.005984,0.010432,0.03376,0.03584,2.90509,0.03584
+1312,179.272,5.57812,3.49606,0.025152,0.444192,0.008224,0.005536,0.010848,0.03296,0.035904,2.89683,0.036416
+1313,188.218,5.31299,3.47306,0.026656,0.407296,0.008384,0.005536,0.012064,0.032672,0.035776,2.90816,0.036512
+1314,181.641,5.50537,3.54918,0.026624,0.493568,0.008192,0.005664,0.010752,0.032768,0.036416,2.89946,0.035744
+1315,195.215,5.12256,3.47936,0.026336,0.406112,0.008128,0.005536,0.010816,0.032736,0.035072,2.9184,0.036224
+1316,164.538,6.07764,3.47702,0.0264,0.416,0.00816,0.006144,0.01024,0.032768,0.03632,2.90461,0.036384
+1317,182.857,5.46875,3.51136,0.026656,0.450528,0.008192,0.005984,0.0104,0.032768,0.034816,2.90525,0.036768
+1318,188.86,5.29492,3.49379,0.026656,0.427776,0.008096,0.005536,0.01072,0.033216,0.036672,2.90835,0.036768
+1319,182.19,5.48877,3.49046,0.025248,0.428032,0.008192,0.005984,0.010432,0.032736,0.03488,2.9081,0.036864
+1320,180.25,5.54785,3.50982,0.026624,0.436256,0.00816,0.006144,0.01024,0.032768,0.036864,2.91635,0.036416
+1321,178.958,5.58789,3.50003,0.027776,0.447168,0.00816,0.005536,0.010688,0.032416,0.035552,2.89706,0.03568
+1322,179.444,5.57275,3.65978,0.026624,0.57344,0.022528,0.006144,0.011264,0.03344,0.047264,2.90221,0.036864
+1323,174.328,5.73633,3.65066,0.028224,0.556928,0.008128,0.004736,0.019904,0.033248,0.041056,2.92173,0.036704
+1324,196.47,5.08984,3.4713,0.026624,0.416992,0.008128,0.00496,0.011264,0.033024,0.035584,2.89792,0.0368
+1325,202.052,4.94922,3.46266,0.026624,0.395264,0.008192,0.006144,0.01024,0.032768,0.036544,2.91053,0.036352
+1326,176.081,5.6792,3.54854,0.026624,0.485376,0.008192,0.00576,0.010624,0.032768,0.036704,2.90627,0.036224
+1327,178.242,5.61035,3.5136,0.026208,0.45248,0.008096,0.00496,0.011296,0.033184,0.035392,2.9056,0.036384
+1328,182.824,5.46973,3.47136,0.026656,0.399328,0.008192,0.006144,0.01024,0.0328,0.036864,2.91552,0.035616
+1329,185.962,5.37744,3.50774,0.026464,0.44672,0.00816,0.006144,0.01024,0.033824,0.035808,2.90406,0.03632
+1330,174.179,5.74121,3.4888,0.026464,0.417312,0.008192,0.004736,0.01152,0.033344,0.036352,2.91456,0.03632
+1331,178.382,5.60596,3.51437,0.026624,0.43168,0.008192,0.004544,0.011936,0.04336,0.036416,2.91046,0.041152
+1332,185.021,5.40479,3.52176,0.026624,0.46288,0.00816,0.005728,0.010688,0.032448,0.035104,2.90365,0.03648
+1333,199.922,5.00195,3.51571,0.026624,0.454176,0.008128,0.00464,0.011808,0.032992,0.035072,2.90611,0.03616
+1334,190.229,5.25684,3.50592,0.026208,0.430848,0.008128,0.005568,0.010816,0.032832,0.036384,2.91888,0.036256
+1335,176.918,5.65234,3.56656,0.0256,0.517248,0.00816,0.004992,0.01136,0.032736,0.035328,2.89427,0.036864
+1336,178.273,5.60938,3.55875,0.026624,0.50176,0.008192,0.005696,0.01072,0.032736,0.036032,2.90074,0.036256
+1337,175.568,5.6958,3.47984,0.026048,0.430912,0.008192,0.005632,0.010752,0.03264,0.034944,2.89498,0.035744
+1338,189.911,5.26562,3.48368,0.026624,0.41712,0.008224,0.004736,0.011552,0.032768,0.035488,2.91162,0.035552
+1339,201.913,4.95264,3.47779,0.025536,0.395136,0.008,0.005536,0.01072,0.03232,0.035712,2.92864,0.036192
+1340,199.707,5.00732,3.4263,0.026624,0.380416,0.00816,0.00464,0.011616,0.032992,0.035296,2.8897,0.036864
+1341,195.794,5.10742,3.47296,0.026336,0.399648,0.008192,0.006144,0.01024,0.0328,0.036,2.91718,0.036416
+1342,193.536,5.16699,3.47034,0.025568,0.403456,0.008192,0.005536,0.010752,0.032864,0.036864,2.91155,0.035552
+1343,159.241,6.27979,3.56762,0.026624,0.464896,0.008192,0.006144,0.010272,0.034112,0.03552,2.94499,0.036864
+1344,176.096,5.67871,3.49757,0.026624,0.444416,0.008192,0.005664,0.01072,0.032768,0.034944,2.89779,0.036448
+1345,192.862,5.18506,3.4712,0.026624,0.40304,0.00816,0.004704,0.011936,0.033152,0.036832,2.91021,0.036544
+1346,193.299,5.17334,3.51616,0.026624,0.439584,0.00816,0.004864,0.011456,0.0336,0.036352,2.91891,0.036608
+1347,200,5,3.48758,0.02544,0.40144,0.00816,0.005888,0.010496,0.032768,0.036544,2.93027,0.036576
+1348,185.928,5.37842,3.46118,0.026464,0.391392,0.008192,0.006144,0.01024,0.032768,0.036864,2.91395,0.035168
+1349,183.826,5.43994,3.61437,0.027008,0.544768,0.009312,0.017312,0.01024,0.032768,0.03648,2.89987,0.036608
+1350,190.778,5.2417,3.45856,0.025056,0.40256,0.008128,0.00496,0.011264,0.033312,0.035328,2.9015,0.036448
+1351,202.572,4.93652,3.46054,0.026272,0.39904,0.008128,0.004832,0.011456,0.031552,0.034816,2.90816,0.036288
+1352,162.282,6.16211,3.50618,0.026624,0.434016,0.008128,0.005568,0.010752,0.032704,0.0352,2.9177,0.035488
+1353,192.337,5.19922,3.46525,0.02624,0.41632,0.008192,0.006144,0.01024,0.032768,0.036,2.89264,0.036704
+1354,179.902,5.55859,3.44506,0.026016,0.380896,0.008128,0.005088,0.0104,0.03392,0.035552,2.90816,0.036896
+1355,200.274,4.99316,3.46819,0.025536,0.389088,0.008192,0.005664,0.010752,0.032736,0.036864,2.9225,0.036864
+1356,195.085,5.12598,3.47958,0.026656,0.421664,0.00784,0.00464,0.01168,0.032864,0.03536,2.9033,0.035584
+1357,186.182,5.37109,3.5343,0.026624,0.471072,0.00816,0.005984,0.0104,0.032544,0.035072,2.90813,0.03632
+1358,190.158,5.25879,3.4847,0.026048,0.424256,0.008128,0.005536,0.010816,0.03248,0.035488,2.90579,0.03616
+1359,196.357,5.09277,3.46403,0.025472,0.395232,0.008192,0.005952,0.010464,0.045024,0.036096,2.89254,0.045056
+1360,163.84,6.10352,3.47738,0.026624,0.429952,0.008128,0.005536,0.010784,0.032192,0.035648,2.89178,0.036736
+1361,174.209,5.74023,3.47347,0.026496,0.409344,0.008128,0.004864,0.01136,0.033216,0.034624,2.90883,0.036608
+1362,177.04,5.64844,3.45258,0.026624,0.39936,0.007936,0.005536,0.010816,0.032896,0.035008,2.89789,0.036512
+1363,189.7,5.27148,3.44765,0.025472,0.391136,0.008192,0.0056,0.01072,0.032832,0.034816,2.90336,0.03552
+1364,190.618,5.24609,3.47834,0.025408,0.4096,0.008192,0.0056,0.010752,0.0328,0.036864,2.9137,0.035424
+1365,196.357,5.09277,3.52461,0.026624,0.459936,0.008288,0.004864,0.011424,0.033312,0.035168,2.90813,0.036864
+1366,183.086,5.46191,3.57379,0.026368,0.515648,0.008096,0.004896,0.011648,0.032704,0.035552,2.90333,0.035552
+1367,197.227,5.07031,3.4545,0.025024,0.405504,0.008192,0.006144,0.01024,0.032768,0.034816,2.89536,0.036448
+1368,186.657,5.35742,3.46522,0.026624,0.405504,0.008192,0.005792,0.010592,0.032768,0.03664,2.90394,0.035168
+1369,187.032,5.34668,3.45907,0.026208,0.411296,0.00816,0.004896,0.011328,0.031776,0.036128,2.89242,0.036864
+1370,179.712,5.56445,3.49235,0.025088,0.417792,0.008192,0.006112,0.010272,0.0328,0.036608,2.91997,0.03552
+1371,175.553,5.69629,3.58093,0.026656,0.499712,0.00816,0.006144,0.020512,0.032736,0.034976,2.91597,0.036064
+1372,188.895,5.29395,3.4657,0.025216,0.408768,0.008192,0.004928,0.011392,0.03296,0.03552,2.90202,0.036704
+1373,190.689,5.24414,3.46778,0.026304,0.389952,0.008192,0.006144,0.01024,0.032768,0.036512,2.9208,0.036864
+1374,179.681,5.56543,3.44848,0.02672,0.387072,0.008192,0.006112,0.010272,0.034016,0.035616,2.9041,0.036384
+1375,162.154,6.16699,3.64765,0.026624,0.569376,0.00816,0.005984,0.0104,0.032768,0.035968,2.92256,0.035808
+1376,177.132,5.64551,3.59898,0.025312,0.537504,0.007136,0.006144,0.010368,0.03392,0.03664,2.90506,0.036896
+1377,160.2,6.24219,3.50086,0.02544,0.423904,0.008192,0.005664,0.010688,0.032224,0.03536,2.92253,0.036864
+1378,186.283,5.36816,3.49155,0.026272,0.412448,0.008192,0.005824,0.01056,0.032768,0.036768,2.92189,0.036832
+1379,191.94,5.20996,3.47517,0.026304,0.405824,0.008192,0.006112,0.010272,0.032768,0.036352,2.91277,0.036576
+1380,170.98,5.84863,3.4505,0.026624,0.395264,0.008192,0.00576,0.010624,0.0328,0.036832,2.89792,0.03648
+1381,177.5,5.63379,3.48979,0.026624,0.421888,0.008192,0.00592,0.010464,0.032768,0.034816,2.91405,0.035072
+1382,181.399,5.5127,3.5409,0.026688,0.485408,0.00816,0.00592,0.010464,0.032768,0.036832,2.89795,0.036704
+1383,180.983,5.52539,3.46694,0.026048,0.41632,0.008192,0.005664,0.01072,0.032352,0.035232,2.89587,0.036544
+1384,187.683,5.32812,3.4648,0.026336,0.410368,0.008128,0.005536,0.010976,0.032512,0.03504,2.89997,0.035936
+1385,174.09,5.74414,3.4943,0.026176,0.43648,0.008128,0.0048,0.011424,0.033152,0.035264,2.90314,0.035744
+1386,147.87,6.7627,4.25907,0.026624,1.20214,0.008096,0.005536,0.010976,0.032768,0.036864,2.89958,0.03648
+1387,177.716,5.62695,3.5664,0.02672,0.500192,0.00816,0.005472,0.010656,0.032864,0.035264,2.91133,0.035744
+1388,150.5,6.64453,3.62704,0.025312,0.544768,0.008192,0.006144,0.01024,0.032768,0.036832,2.91536,0.047424
+1389,195.085,5.12598,3.49216,0.02656,0.426368,0.008192,0.005696,0.01072,0.032768,0.034784,2.91021,0.036864
+1390,180.727,5.5332,3.48816,0.02608,0.3976,0.008128,0.0048,0.011456,0.033504,0.036032,2.93366,0.036896
+1391,195.42,5.11719,3.46285,0.02608,0.401952,0.008192,0.005824,0.010592,0.032768,0.036512,2.90438,0.036544
+1392,179.397,5.57422,3.49619,0.026432,0.442816,0.008192,0.00608,0.010336,0.032768,0.036832,2.89715,0.035584
+1393,186.759,5.35449,3.47514,0.026624,0.4216,0.00816,0.005536,0.010848,0.03216,0.035712,2.89795,0.036544
+1394,185.339,5.39551,3.48163,0.026112,0.42,0.008128,0.004544,0.011776,0.033312,0.036,2.9063,0.035456
+1395,194.529,5.14062,3.50435,0.026016,0.437056,0.008192,0.005952,0.010432,0.032768,0.034816,2.91226,0.036864
+1396,181.754,5.50195,3.50835,0.026048,0.447168,0.008192,0.006048,0.010336,0.0328,0.036288,2.90608,0.035392
+1397,191.868,5.21191,3.51411,0.025056,0.464896,0.008192,0.00608,0.010304,0.032768,0.034816,2.89571,0.036288
+1398,185.743,5.38379,3.52298,0.026688,0.459616,0.008096,0.005568,0.010816,0.032768,0.034976,2.9081,0.036352
+1399,200.824,4.97949,3.48515,0.026624,0.425504,0.008224,0.004544,0.011776,0.032992,0.035104,2.90387,0.036512
+1400,166.018,6.02344,3.59171,0.026272,0.539232,0.00816,0.006144,0.010272,0.032864,0.036736,2.89587,0.03616
+1401,184.704,5.41406,3.6985,0.026624,0.651296,0.00816,0.006144,0.01024,0.0328,0.03648,2.89008,0.036672
+1402,198.334,5.04199,3.46499,0.02624,0.407936,0.008192,0.0056,0.010784,0.032768,0.036864,2.89997,0.03664
+1403,182.955,5.46582,3.62701,0.026656,0.560736,0.008128,0.004544,0.011744,0.033024,0.035104,2.91021,0.036864
+1404,195.569,5.11328,3.48208,0.026528,0.422592,0.008192,0.005696,0.010688,0.032768,0.036448,2.90243,0.036736
+1405,188.756,5.29785,3.6288,0.025184,0.57136,0.00816,0.005536,0.010528,0.032992,0.034944,2.90352,0.036576
+1406,184.206,5.42871,3.5703,0.026432,0.512832,0.008192,0.005664,0.01072,0.03472,0.036096,2.90067,0.034976
+1407,193.939,5.15625,3.50595,0.026624,0.432096,0.008192,0.005568,0.010688,0.032896,0.03488,2.91837,0.03664
+1408,189.454,5.27832,3.4735,0.02512,0.40144,0.00816,0.00608,0.010304,0.032768,0.036672,2.91654,0.036416
+1409,164.63,6.07422,3.47789,0.026208,0.4104,0.008192,0.006144,0.01024,0.03392,0.035712,2.9103,0.036768
+1410,186.964,5.34863,3.50208,0.026112,0.44848,0.006688,0.006144,0.01024,0.033984,0.035648,2.8992,0.035584
+1411,194.973,5.12891,3.46112,0.026624,0.397312,0.008192,0.005632,0.01072,0.032512,0.036416,2.90685,0.036864
+1412,165.348,6.04785,3.46202,0.025472,0.413696,0.008128,0.005536,0.01072,0.032544,0.035232,2.89494,0.035744
+1413,197.607,5.06055,3.45651,0.026624,0.397344,0.00816,0.006144,0.01024,0.0328,0.036192,2.90266,0.036352
+1414,157.903,6.33301,3.49798,0.026624,0.433792,0.008128,0.004576,0.011712,0.03264,0.03552,2.90973,0.035264
+1415,189.876,5.2666,3.49594,0.026656,0.432032,0.008096,0.005568,0.01072,0.032768,0.035104,2.90813,0.036864
+1416,192.048,5.20703,3.47389,0.026624,0.428608,0.00816,0.005504,0.010752,0.03296,0.036064,2.88848,0.036736
+1417,194.013,5.1543,3.45818,0.026624,0.407104,0.008096,0.00464,0.011552,0.032608,0.035296,2.89574,0.036512
+1418,166.694,5.99902,3.52275,0.026176,0.465536,0.008192,0.005664,0.01072,0.0328,0.036192,2.90061,0.036864
+1419,166.911,5.99121,3.47459,0.026656,0.423264,0.008128,0.004832,0.011392,0.0328,0.034976,2.89626,0.036288
+1420,180.028,5.55469,3.52947,0.025344,0.456704,0.008192,0.006112,0.010272,0.033952,0.035712,2.91798,0.0352
+1421,183.414,5.45215,3.51437,0.026496,0.443872,0.008128,0.004832,0.011392,0.033056,0.03504,2.91469,0.036864
+1422,186.964,5.34863,3.48976,0.026848,0.438272,0.008192,0.005696,0.010688,0.032768,0.036864,2.89386,0.036576
+1423,177.5,5.63379,3.56874,0.026624,0.497504,0.008288,0.005568,0.010848,0.0328,0.034816,2.91594,0.036352
+1424,174.179,5.74121,3.46941,0.026624,0.411648,0.008192,0.006144,0.01024,0.033984,0.046976,2.89053,0.035072
+1425,192.373,5.19824,3.51037,0.024704,0.450144,0.008128,0.004544,0.012288,0.032672,0.036224,2.90483,0.036832
+1426,164.208,6.08984,3.49475,0.025472,0.444384,0.008192,0.00576,0.010624,0.032704,0.03488,2.89734,0.035392
+1427,197.798,5.05566,3.45091,0.025504,0.401184,0.008192,0.005824,0.01056,0.032768,0.034848,2.89578,0.036256
+1428,184.804,5.41113,3.46317,0.026656,0.403072,0.00816,0.005536,0.01072,0.03328,0.036128,2.90275,0.036864
+1429,194.788,5.13379,3.47418,0.025344,0.429056,0.007136,0.006144,0.01024,0.032768,0.036864,2.88973,0.036896
+1430,197.874,5.05371,3.46874,0.02608,0.412192,0.008192,0.006144,0.01024,0.033824,0.03584,2.89994,0.036288
+1431,187.89,5.32227,3.45114,0.02496,0.407424,0.008192,0.006144,0.01024,0.032768,0.034816,2.8913,0.035296
+1432,196.394,5.0918,3.47923,0.02624,0.412032,0.008192,0.006144,0.01024,0.032768,0.036288,2.91078,0.036544
+1433,191.473,5.22266,3.57053,0.025472,0.5032,0.008128,0.004768,0.01152,0.033248,0.035136,2.91222,0.036832
+1434,181.079,5.52246,3.55123,0.026336,0.506016,0.00816,0.005536,0.01072,0.033056,0.03648,2.88806,0.036864
+1435,193.098,5.17871,3.49811,0.026048,0.442144,0.008128,0.005088,0.0104,0.033728,0.035552,2.90016,0.036864
+1436,198.027,5.0498,3.45296,0.026368,0.403712,0.008192,0.00576,0.010624,0.032768,0.036512,2.89341,0.035616
+1437,176.005,5.68164,3.46726,0.026624,0.4096,0.008192,0.006144,0.010272,0.033792,0.035264,2.90051,0.036864
+1438,179.649,5.56641,3.61344,0.0256,0.548864,0.008064,0.005568,0.01072,0.0328,0.036224,2.90899,0.036608
+1439,190.796,5.24121,3.47136,0.026208,0.40352,0.008192,0.005536,0.010784,0.033184,0.034816,2.91226,0.036864
+1440,184.305,5.42578,3.48022,0.025312,0.440224,0.008128,0.005536,0.010688,0.032672,0.037088,2.88378,0.0368
+1441,170.952,5.84961,3.46074,0.025984,0.407968,0.00816,0.004704,0.011488,0.033152,0.035232,2.89792,0.036128
+1442,166.612,6.00195,3.4816,0.026368,0.423456,0.008128,0.004896,0.01136,0.033056,0.039392,2.89808,0.036864
+1443,175.222,5.70703,3.47792,0.02624,0.418464,0.00816,0.005536,0.010688,0.033088,0.034784,2.90518,0.035776
+1444,194.16,5.15039,3.44656,0.026624,0.393216,0.008192,0.006144,0.01024,0.033888,0.035744,2.89587,0.03664
+1445,195.048,5.12695,3.57786,0.131072,0.417792,0.008192,0.006048,0.010336,0.032768,0.034816,2.90102,0.035808
+1446,183.545,5.44824,3.46906,0.026624,0.411424,0.008128,0.005568,0.010784,0.033088,0.036768,2.90006,0.036608
+1447,173.589,5.76074,3.54768,0.026176,0.480032,0.008192,0.006112,0.010272,0.032768,0.034848,2.91338,0.035904
+1448,178.056,5.61621,3.5328,0.026624,0.4912,0.008192,0.005536,0.010816,0.033056,0.036128,2.8855,0.035744
+1449,175.282,5.70508,3.53146,0.02528,0.468992,0.008192,0.005632,0.010688,0.0328,0.03488,2.90819,0.0368
+1450,163.578,6.11328,3.47744,0.02624,0.442752,0.008192,0.005984,0.010432,0.033984,0.035648,2.87741,0.0368
+1451,175.704,5.69141,3.58778,0.026624,0.541888,0.008192,0.004928,0.011648,0.032704,0.035008,2.89024,0.036544
+1452,147.934,6.75977,3.5543,0.0256,0.481312,0.00816,0.006144,0.01024,0.034048,0.035456,2.90624,0.047104
+1453,168.81,5.92383,3.49587,0.027808,0.442784,0.00816,0.004608,0.01168,0.033152,0.035008,2.89587,0.0368
+1454,171.438,5.83301,3.54336,0.025344,0.479264,0.00816,0.006144,0.01024,0.0328,0.036832,2.90816,0.036416
+1455,176.948,5.65137,3.6144,0.026624,0.570368,0.007168,0.005856,0.010528,0.032768,0.034816,2.88973,0.036544
+1456,186.216,5.37012,3.50032,0.025984,0.446496,0.00816,0.005024,0.01024,0.03408,0.035648,2.89786,0.036832
+1457,185.306,5.39648,3.47677,0.0264,0.438496,0.008192,0.005728,0.010656,0.032768,0.034816,2.88358,0.036128
+1458,161.591,6.18848,3.50822,0.026016,0.4696,0.008192,0.0056,0.01072,0.032832,0.036672,2.88371,0.03488
+1459,162.876,6.13965,3.55606,0.025312,0.499712,0.008192,0.005536,0.010688,0.032704,0.03504,2.90202,0.036864
+1460,167.129,5.9834,3.63101,0.026624,0.579584,0.008192,0.005824,0.01056,0.032768,0.036448,2.89421,0.0368
+1461,169.312,5.90625,3.6168,0.026624,0.56528,0.00816,0.005824,0.01056,0.032768,0.034816,2.89754,0.035232
+1462,170.952,5.84961,3.51539,0.025632,0.46896,0.008192,0.006016,0.010368,0.032768,0.036384,2.89184,0.035232
+1463,179.902,5.55859,3.47126,0.025184,0.429792,0.008128,0.005536,0.011168,0.032768,0.036096,2.88602,0.036576
+1464,175.103,5.71094,3.51107,0.025376,0.458752,0.00816,0.005568,0.010688,0.032736,0.035008,2.89792,0.036864
+1465,154.893,6.45605,3.56762,0.026624,0.499712,0.008192,0.006144,0.01024,0.034016,0.035328,2.91053,0.036832
+1466,167.02,5.9873,3.5312,0.02608,0.490464,0.008192,0.005856,0.010528,0.032768,0.036864,2.88528,0.035168
+1467,172.014,5.81348,3.52867,0.0264,0.479456,0.008192,0.00592,0.010496,0.032736,0.034816,2.89382,0.036832
+1468,139.168,7.18555,3.6687,0.025312,0.628736,0.008192,0.005664,0.01072,0.03248,0.035104,2.88675,0.035744
+1469,183.021,5.46387,3.5337,0.025504,0.47664,0.00816,0.00464,0.011712,0.032928,0.0352,2.90326,0.035648
+1470,175.433,5.7002,3.50848,0.026848,0.448512,0.008192,0.006144,0.01024,0.032768,0.036384,2.90384,0.035552
+1471,162.669,6.14746,3.52256,0.026624,0.466944,0.008192,0.005952,0.010432,0.032768,0.036416,2.88813,0.047104
+1472,181.947,5.49609,3.488,0.025536,0.44016,0.00816,0.005536,0.010816,0.032832,0.036704,2.89117,0.037088
+1473,160.779,6.21973,3.53155,0.025376,0.49712,0.00816,0.004672,0.011584,0.03264,0.035392,2.87974,0.036864
+1474,180.536,5.53906,3.50582,0.026016,0.474784,0.008128,0.00512,0.011296,0.031712,0.036704,2.87555,0.036512
+1475,177.593,5.63086,3.48314,0.0264,0.436448,0.008192,0.006144,0.010272,0.032736,0.034816,2.89178,0.036352
+1476,177.809,5.62402,3.47344,0.026624,0.436,0.008128,0.005536,0.010656,0.032864,0.03536,2.88291,0.03536
+1477,191.94,5.20996,3.45546,0.0256,0.411488,0.008128,0.005568,0.01072,0.033056,0.034816,2.88973,0.036352
+1478,164.419,6.08203,3.45421,0.026336,0.41984,0.00816,0.00464,0.01616,0.032736,0.035072,2.87539,0.035872
+1479,171.899,5.81738,3.49389,0.026304,0.458848,0.008128,0.005536,0.010752,0.03232,0.035424,2.88077,0.035808
+1480,167.075,5.98535,3.59094,0.025376,0.53392,0.008128,0.004768,0.011968,0.033024,0.036064,2.90061,0.037088
+1481,172.42,5.7998,3.55898,0.026368,0.523936,0.008224,0.004896,0.01136,0.033184,0.035328,2.87942,0.036256
+1482,183.151,5.45996,3.51706,0.026368,0.47808,0.008192,0.005984,0.0104,0.032768,0.036864,2.88336,0.03504
+1483,178.211,5.61133,3.46195,0.025408,0.423168,0.008128,0.004928,0.01136,0.032704,0.035808,2.88358,0.036864
+1484,142.084,7.03809,3.46618,0.025408,0.43008,0.008192,0.006144,0.01024,0.0328,0.036832,2.88131,0.035168
+1485,158.44,6.31152,3.50547,0.026016,0.462624,0.007136,0.006144,0.01024,0.03424,0.035392,2.88726,0.036416
+1486,154.636,6.4668,3.52515,0.026496,0.499424,0.008128,0.005088,0.011392,0.031616,0.036864,2.8713,0.034848
+1487,183.941,5.43652,3.50243,0.026272,0.471712,0.008192,0.006048,0.010368,0.032736,0.034816,2.87683,0.035456
+1488,166.504,6.00586,3.6233,0.025408,0.589824,0.00816,0.006144,0.010272,0.033856,0.035744,2.87744,0.036448
+1489,159.775,6.25879,3.64534,0.026624,0.585728,0.008192,0.005984,0.0104,0.032768,0.036544,2.90234,0.036768
+1490,178.087,5.61523,3.4944,0.025504,0.432128,0.008192,0.006144,0.01024,0.032768,0.036896,2.90608,0.036448
+1491,169.48,5.90039,3.52672,0.025888,0.443136,0.008128,0.005536,0.010688,0.032768,0.035072,2.91635,0.049152
+1492,161.923,6.17578,3.52442,0.026624,0.48672,0.008256,0.004768,0.01152,0.032896,0.036544,2.88042,0.036672
+1493,163.761,6.10645,3.47062,0.02608,0.43488,0.008192,0.005568,0.010752,0.032416,0.035072,2.88141,0.036256
+1494,168.145,5.94727,3.57981,0.025984,0.5408,0.008096,0.004864,0.01024,0.0328,0.036512,2.8839,0.036608
+1495,195.42,5.11719,3.46144,0.026912,0.42736,0.008096,0.004864,0.01152,0.033504,0.03488,2.87741,0.036896
+1496,181.175,5.51953,3.45472,0.026624,0.423936,0.008192,0.006144,0.01024,0.0328,0.036832,2.87334,0.036608
+1497,157.466,6.35059,3.51386,0.026656,0.474368,0.008,0.005024,0.010272,0.034144,0.03536,2.88349,0.036544
+1498,185.172,5.40039,3.48998,0.025568,0.454336,0.008128,0.005536,0.010688,0.032832,0.035296,2.88134,0.036256
+1499,161.285,6.2002,3.50211,0.026656,0.4728,0.008224,0.005536,0.01072,0.03312,0.035936,2.87222,0.036896
+1500,173.09,5.77734,3.49594,0.02656,0.471104,0.008192,0.006112,0.010272,0.0328,0.0368,2.86832,0.035776
+1501,183.941,5.43652,3.50147,0.025856,0.450336,0.00832,0.005024,0.011264,0.032928,0.035648,2.89587,0.036224
+1502,177.685,5.62793,3.45699,0.026624,0.423936,0.008192,0.005824,0.01056,0.032768,0.036288,2.87597,0.036832
+1503,181.947,5.49609,3.47549,0.026624,0.44032,0.008192,0.005888,0.010496,0.032768,0.034816,2.88061,0.035776
+1504,173.53,5.7627,3.45174,0.025472,0.430048,0.008192,0.005984,0.0104,0.033824,0.03584,2.86621,0.035776
+1505,181.721,5.50293,3.53331,0.025056,0.505728,0.008224,0.005536,0.010656,0.033056,0.034816,2.87446,0.035776
+1506,178.211,5.61133,3.50189,0.026624,0.458752,0.008192,0.005856,0.010528,0.032768,0.036224,2.88627,0.036672
+1507,186.998,5.34766,3.47453,0.026656,0.436256,0.008128,0.006144,0.01024,0.032768,0.036032,2.88195,0.036352
+1508,175.764,5.68945,3.50019,0.025984,0.472064,0.00816,0.006048,0.010336,0.032768,0.036864,2.8713,0.036672
+1509,163.945,6.09961,3.48122,0.026176,0.434624,0.008192,0.00592,0.022752,0.03392,0.03552,2.87763,0.03648
+1510,156.983,6.37012,3.46938,0.025344,0.434176,0.008192,0.006144,0.01024,0.034208,0.035424,2.87946,0.036192
+1511,189,5.29102,3.47341,0.026336,0.442592,0.008128,0.005536,0.010784,0.032512,0.035264,2.87539,0.036864
+1512,176.765,5.65723,3.4857,0.026624,0.458208,0.008192,0.00464,0.011648,0.032736,0.03552,2.87293,0.0352
+1513,180.441,5.54199,3.47462,0.026656,0.442336,0.008192,0.006112,0.010272,0.032768,0.035936,2.87616,0.036192
+1514,190.796,5.24121,3.43683,0.026336,0.401696,0.008128,0.005504,0.01104,0.03296,0.03632,2.87798,0.036864
+1515,178.615,5.59863,3.46304,0.026272,0.422176,0.00816,0.005536,0.010784,0.033088,0.034912,2.8856,0.036512
+1516,193.098,5.17871,3.4673,0.026656,0.44016,0.008128,0.005536,0.01072,0.033088,0.036064,2.87136,0.035584
+1517,197.531,5.0625,3.4432,0.0264,0.40736,0.00816,0.005056,0.01152,0.033248,0.035104,2.88109,0.035264
+1518,194.197,5.14941,3.44621,0.026624,0.41984,0.008192,0.006144,0.011296,0.031712,0.036768,2.86934,0.036288
+1519,186.148,5.37207,3.42842,0.025152,0.407552,0.008192,0.00576,0.010624,0.032288,0.035328,2.86707,0.036448
+1520,198.874,5.02832,3.46784,0.026368,0.42272,0.00816,0.005536,0.01072,0.032832,0.03696,2.88902,0.03552
+1521,203.741,4.9082,3.4128,0.025376,0.388672,0.00816,0.004576,0.01216,0.032896,0.036192,2.86947,0.035296
+1522,191.259,5.22852,3.47341,0.02656,0.44848,0.008192,0.005536,0.01072,0.032992,0.036032,2.86957,0.035328
+1523,191.187,5.23047,3.4304,0.026656,0.401376,0.008192,0.006016,0.0104,0.032576,0.034976,2.87334,0.036864
+1524,184.305,5.42578,3.49859,0.025248,0.472224,0.008128,0.00496,0.011328,0.033696,0.034848,2.87251,0.035648
+1525,193.135,5.17773,3.43942,0.02544,0.410944,0.00816,0.004832,0.011424,0.033504,0.034944,2.87334,0.036832
+1526,195.906,5.10449,3.41622,0.026144,0.4,0.008192,0.006144,0.010336,0.034112,0.035456,2.86032,0.03552
+1527,164.129,6.09277,3.5384,0.026048,0.485728,0.008192,0.004704,0.011424,0.037216,0.045568,2.88336,0.03616
+1528,181.367,5.51367,3.73795,0.02608,0.688992,0.008192,0.005984,0.0104,0.042784,0.03504,2.88358,0.036896
+1529,195.756,5.1084,3.4487,0.025184,0.4256,0.00816,0.005536,0.011168,0.032864,0.035936,2.86755,0.036704
+1530,186.895,5.35059,3.43082,0.026144,0.419872,0.008192,0.00496,0.01136,0.031712,0.036832,2.85488,0.036864
+1531,178.584,5.59961,3.45354,0.025184,0.438272,0.008192,0.00592,0.010464,0.0328,0.034784,2.86109,0.036832
+1532,175.073,5.71191,3.47901,0.026592,0.45472,0.00816,0.00576,0.010624,0.032768,0.036704,2.86736,0.03632
+1533,174.061,5.74512,3.50416,0.02624,0.463232,0.008192,0.005952,0.010432,0.0328,0.046304,2.87546,0.035552
+1534,154.287,6.48145,3.44864,0.026048,0.411904,0.00816,0.004864,0.011392,0.032736,0.035744,2.88125,0.036544
+1535,186.047,5.375,3.42778,0.026144,0.399168,0.008256,0.004704,0.011584,0.033184,0.035136,2.87325,0.036352
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..028ab9e
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_300000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,138.78,7.22714,5.28784,0.0260779,0.441325,0.00717209,0.00540844,0.0108677,4.75991,0.0370824
+max_1024,155.741,9.83887,6.36358,0.048256,1.57491,0.024224,0.02048,0.026624,5.06861,0.063776
+min_1024,101.638,6.4209,5.09891,0.024576,0.374784,0.006144,0.004064,0.010208,4.62877,0.034912
+512,143.407,6.97314,5.35824,0.025248,0.397312,0.007392,0.004864,0.011424,4.87514,0.036864
+513,135.066,7.40381,5.35552,0.026656,0.434176,0.008128,0.005568,0.010752,4.8345,0.035744
+514,129.76,7.70654,5.52714,0.024576,0.599552,0.006688,0.016352,0.011616,4.8319,0.036448
+515,140.466,7.11914,5.30048,0.025504,0.403296,0.006304,0.006144,0.01024,4.8121,0.036896
+516,130.712,7.65039,5.51731,0.036864,0.555008,0.018432,0.005952,0.010464,4.85373,0.036864
+517,134.304,7.4458,5.39648,0.02592,0.484032,0.008192,0.005632,0.01072,4.82512,0.036864
+518,129.776,7.70557,5.57706,0.025024,0.65536,0.007456,0.004832,0.01024,4.83738,0.036768
+519,122.723,8.14844,5.41904,0.026496,0.47936,0.006144,0.006144,0.01024,4.85363,0.037024
+520,125.39,7.9751,5.3529,0.025856,0.419904,0.017088,0.005888,0.010496,4.83725,0.036416
+521,138.678,7.21094,5.33936,0.026016,0.410528,0.007392,0.004896,0.011392,4.84032,0.038816
+522,132.505,7.54688,5.32784,0.025568,0.425088,0.00704,0.004096,0.011648,4.81878,0.035616
+523,139.862,7.1499,5.33302,0.02656,0.40352,0.007616,0.004672,0.011616,4.84214,0.036896
+524,142.827,7.00146,5.39846,0.025216,0.514016,0.006176,0.00576,0.010624,4.80048,0.036192
+525,143.942,6.94727,5.28998,0.026624,0.401408,0.007936,0.005568,0.010944,4.79984,0.037664
+526,141.505,7.06689,5.27318,0.024832,0.388256,0.007008,0.004096,0.011616,4.80106,0.03632
+527,144.582,6.9165,5.28966,0.026368,0.393472,0.007968,0.0056,0.010752,4.80864,0.036864
+528,140.853,7.09961,5.28218,0.025248,0.399136,0.006336,0.005824,0.01056,4.79846,0.036608
+529,137.1,7.29395,5.28979,0.025888,0.416768,0.008032,0.005568,0.010752,4.7863,0.03648
+530,143.417,6.97266,5.29613,0.024608,0.38704,0.008096,0.004192,0.011456,4.82387,0.036864
+531,145.568,6.86963,5.28794,0.02624,0.378272,0.007072,0.005568,0.010784,4.82314,0.036864
+532,142.599,7.0127,5.2777,0.02576,0.387936,0.00768,0.004608,0.01024,4.80461,0.036864
+533,143.82,6.95312,5.2793,0.0264,0.39056,0.006976,0.005728,0.010656,4.80221,0.036768
+534,131.442,7.60791,5.34304,0.025408,0.389024,0.006208,0.005824,0.010592,4.87011,0.035872
+535,142.529,7.01611,5.28982,0.026208,0.414112,0.0064,0.006144,0.01024,4.78822,0.038496
+536,139.567,7.16504,5.31261,0.02592,0.443168,0.00768,0.004608,0.01024,4.78522,0.035776
+537,134.48,7.43604,5.35674,0.026272,0.495968,0.008064,0.005568,0.010784,4.772,0.03808
+538,140.544,7.11523,5.41286,0.025824,0.516608,0.006432,0.016128,0.010496,4.80154,0.03584
+539,134.932,7.41113,5.4327,0.026528,0.552448,0.006784,0.005888,0.010464,4.79232,0.038272
+540,140.149,7.13525,5.34938,0.0264,0.443616,0.006976,0.004288,0.011616,4.81962,0.036864
+541,129.293,7.73438,5.28397,0.026144,0.430144,0.006688,0.006144,0.01024,4.76758,0.037024
+542,129.883,7.69922,5.28794,0.026624,0.39936,0.00736,0.004864,0.010336,4.79178,0.047616
+543,131.442,7.60791,5.49872,0.02624,0.616608,0.018656,0.006144,0.01024,4.78403,0.0368
+544,143.077,6.98926,5.25357,0.025408,0.377824,0.007168,0.004096,0.011552,4.79075,0.036768
+545,146.757,6.81396,5.26131,0.026656,0.391136,0.007712,0.004576,0.012128,4.78224,0.036864
+546,143.608,6.96338,5.25171,0.025376,0.391328,0.0072,0.004864,0.010464,4.7759,0.036576
+547,141.368,7.07373,5.26061,0.026336,0.389408,0.007488,0.0048,0.011552,4.78282,0.038208
+548,148.46,6.73584,5.25315,0.026624,0.374784,0.008096,0.00544,0.01072,4.79181,0.03568
+549,135.342,7.38867,5.31373,0.0264,0.450816,0.007296,0.00496,0.011328,4.77597,0.03696
+550,139.367,7.17529,5.29203,0.026112,0.444736,0.006336,0.0056,0.010752,4.7616,0.036896
+551,137.977,7.24756,5.28262,0.025408,0.411136,0.006656,0.005952,0.010432,4.78541,0.037632
+552,141.74,7.05518,5.26291,0.026208,0.413184,0.007072,0.004096,0.011584,4.76435,0.036416
+553,143.699,6.95898,5.29818,0.02608,0.408064,0.006368,0.006144,0.01024,4.80445,0.036832
+554,136.261,7.33887,5.24906,0.026464,0.39136,0.007936,0.00432,0.011264,4.77082,0.036896
+555,143.659,6.96094,5.27155,0.025856,0.400128,0.007488,0.0048,0.01152,4.78451,0.037248
+556,145.517,6.87207,5.25533,0.026592,0.396608,0.00704,0.004096,0.011872,4.77226,0.036864
+557,144.817,6.90527,5.26275,0.02592,0.410336,0.007648,0.004608,0.011648,4.76544,0.037152
+558,142.947,6.99561,5.25312,0.025856,0.403552,0.006816,0.004096,0.011744,4.76525,0.035808
+559,143.891,6.94971,5.24701,0.026496,0.402656,0.007072,0.005664,0.01072,4.7575,0.036896
+560,138.669,7.21143,5.24685,0.02528,0.39728,0.007488,0.0048,0.01024,4.7655,0.036256
+561,140.592,7.11279,5.3441,0.025472,0.434176,0.007616,0.00464,0.01024,4.82509,0.036864
+562,145.786,6.85938,5.25312,0.024576,0.399104,0.0064,0.005536,0.01072,4.76992,0.036864
+563,130.963,7.63574,5.27533,0.026368,0.413952,0.007712,0.0056,0.010784,4.77232,0.038592
+564,137.496,7.27295,5.32045,0.025152,0.473056,0.007296,0.004896,0.010336,4.76346,0.036256
+565,141.144,7.08496,5.23798,0.026624,0.385024,0.007424,0.004864,0.01152,4.7657,0.036832
+566,148.255,6.74512,5.23789,0.026656,0.382944,0.007968,0.00432,0.011296,4.76819,0.036512
+567,141.29,7.07764,5.23053,0.028224,0.387392,0.006272,0.006144,0.01024,4.75341,0.038848
+568,138.998,7.19434,5.24496,0.02624,0.401536,0.0064,0.005568,0.010752,4.75757,0.036896
+569,137.533,7.271,5.28122,0.026464,0.423648,0.006592,0.00608,0.010336,4.76976,0.038336
+570,132.36,7.55518,5.30314,0.025408,0.434176,0.007968,0.00432,0.01136,4.78301,0.036896
+571,130.454,7.66553,5.39853,0.026624,0.516096,0.006176,0.006112,0.01024,4.79642,0.036864
+572,145.32,6.88135,5.26678,0.026464,0.411168,0.006784,0.005792,0.010592,4.76918,0.0368
+573,128.409,7.7876,5.37018,0.026208,0.50784,0.006912,0.006144,0.01024,4.77571,0.03712
+574,137.533,7.271,5.24835,0.025792,0.4016,0.006848,0.00528,0.010784,4.76179,0.036256
+575,121.883,8.20459,5.2472,0.0248,0.39872,0.006784,0.005888,0.010496,4.76365,0.036864
+576,139.7,7.1582,5.2695,0.026464,0.386592,0.006784,0.005152,0.010944,4.79805,0.03552
+577,120.449,8.30225,5.2593,0.026592,0.398464,0.007072,0.0056,0.010752,4.76883,0.041984
+578,141.027,7.09082,5.27405,0.025184,0.401408,0.007584,0.004704,0.01024,4.78822,0.036704
+579,131.984,7.57666,5.3719,0.0264,0.530656,0.008096,0.005568,0.010784,4.75357,0.036832
+580,138.735,7.20801,5.25382,0.02528,0.4096,0.007168,0.004864,0.010496,4.75955,0.036864
+581,141.29,7.07764,5.35072,0.025856,0.469888,0.007872,0.005568,0.010688,4.79277,0.03808
+582,124.506,8.03174,5.44659,0.029664,0.544288,0.006656,0.016352,0.01216,4.80064,0.036832
+583,139.168,7.18555,5.42304,0.025664,0.553952,0.007456,0.004864,0.011456,4.78227,0.037376
+584,143.468,6.97021,5.27494,0.026624,0.423776,0.006304,0.005632,0.010752,4.7657,0.03616
+585,140.293,7.12793,5.30931,0.025472,0.444416,0.007616,0.004672,0.011648,4.77862,0.036864
+586,128.659,7.77246,5.30816,0.026624,0.428032,0.007712,0.004576,0.01024,4.79437,0.036608
+587,120.89,8.27197,5.30051,0.024992,0.43312,0.007072,0.0056,0.01072,4.78166,0.037344
+588,135.827,7.3623,5.3104,0.025856,0.441056,0.006176,0.00576,0.010624,4.78413,0.0368
+589,145.486,6.87354,5.28342,0.026496,0.41792,0.007264,0.005024,0.011328,4.7769,0.038496
+590,143.367,6.9751,5.31869,0.026272,0.44272,0.008192,0.005216,0.01072,4.78867,0.036896
+591,139.814,7.15234,5.29098,0.025536,0.41984,0.007328,0.004992,0.011424,4.78483,0.037024
+592,146.015,6.84863,5.26739,0.02544,0.409504,0.00624,0.005664,0.010688,4.77315,0.036704
+593,142.628,7.01123,5.24403,0.026624,0.393216,0.0072,0.004928,0.010432,4.76362,0.038016
+594,138.238,7.23389,5.29168,0.026624,0.414752,0.007136,0.004096,0.011552,4.79101,0.036512
+595,146.443,6.82861,5.30179,0.026624,0.421664,0.006368,0.006144,0.01024,4.79392,0.036832
+596,145.952,6.85156,5.28874,0.025376,0.403456,0.007616,0.004672,0.01024,4.80189,0.035488
+597,140.553,7.11475,5.31395,0.026624,0.429248,0.006976,0.005728,0.010656,4.79773,0.036992
+598,144.408,6.9248,5.31866,0.026624,0.415744,0.00624,0.006048,0.01024,4.8169,0.036864
+599,142.4,7.02246,5.2839,0.026048,0.403744,0.006496,0.006144,0.01024,4.79546,0.035776
+600,140.998,7.09229,5.32787,0.025568,0.404992,0.006656,0.005312,0.010816,4.83763,0.036896
+601,143.689,6.95947,5.29795,0.024896,0.3952,0.006176,0.006144,0.01024,4.81866,0.03664
+602,139.064,7.19092,5.31008,0.026624,0.39936,0.007232,0.004896,0.0104,4.82509,0.03648
+603,140.044,7.14062,5.35603,0.0256,0.436224,0.008064,0.005568,0.01072,4.83312,0.036736
+604,142.39,7.02295,5.27718,0.02464,0.403456,0.008032,0.004256,0.011392,4.78902,0.036384
+605,139.348,7.17627,5.29485,0.025312,0.3952,0.00624,0.006112,0.01024,4.81488,0.036864
+606,144.439,6.92334,5.30022,0.026144,0.399808,0.006272,0.005696,0.010592,4.81587,0.03584
+607,139.159,7.18604,5.28998,0.026336,0.40352,0.006368,0.006144,0.01024,4.80173,0.035648
+608,144.154,6.93701,5.27933,0.02608,0.377568,0.006272,0.005696,0.01072,4.81642,0.036576
+609,142.124,7.03613,5.32118,0.02624,0.415872,0.00688,0.005792,0.010592,4.81811,0.037696
+610,140.312,7.12695,5.33094,0.025984,0.391808,0.007712,0.004576,0.01024,4.8551,0.03552
+611,143.83,6.95264,5.31866,0.026624,0.40656,0.007072,0.005568,0.010816,4.82515,0.036864
+612,139.102,7.18896,5.34211,0.025504,0.421888,0.007744,0.004544,0.01024,4.83661,0.035584
+613,137.857,7.25391,5.31754,0.025504,0.409536,0.006208,0.006144,0.01024,4.82304,0.036864
+614,142.787,7.00342,5.30781,0.026112,0.389472,0.006336,0.005632,0.01072,4.83328,0.036256
+615,141.897,7.04736,5.35306,0.026112,0.421408,0.007104,0.005568,0.010752,4.84544,0.036672
+616,140.505,7.11719,5.39814,0.026624,0.45664,0.006208,0.005728,0.010688,4.85578,0.03648
+617,139.121,7.18799,5.36781,0.026016,0.414304,0.007424,0.004864,0.011424,4.86624,0.037536
+618,141.29,7.07764,5.35062,0.026112,0.419872,0.006624,0.005312,0.010848,4.84579,0.036064
+619,140.034,7.14111,5.37421,0.026336,0.397088,0.006912,0.006144,0.010272,4.89059,0.036864
+620,132.36,7.55518,5.42621,0.025984,0.455296,0.007872,0.004416,0.01024,4.88611,0.036288
+621,131.569,7.60059,5.52371,0.026208,0.555776,0.007968,0.0056,0.010688,4.87965,0.037824
+622,141.71,7.05664,5.3991,0.025152,0.418848,0.007072,0.00416,0.012128,4.89622,0.03552
+623,140.322,7.12646,5.3903,0.024864,0.429856,0.006368,0.006144,0.01024,4.87581,0.037024
+624,133.455,7.49316,5.39072,0.02608,0.447392,0.007168,0.004896,0.010464,4.85786,0.036864
+625,133.551,7.48779,5.35718,0.026496,0.388608,0.006784,0.005888,0.010496,4.88211,0.0368
+626,133.542,7.48828,5.35322,0.026624,0.407168,0.006528,0.00544,0.01072,4.84976,0.046976
+627,132.728,7.53418,5.36934,0.02512,0.414592,0.007104,0.005696,0.010688,4.86813,0.038016
+628,137.903,7.25146,5.43744,0.02576,0.46576,0.007904,0.004384,0.0104,4.88637,0.036864
+629,139.272,7.18018,5.376,0.026624,0.396608,0.006848,0.005888,0.010496,4.89267,0.036864
+630,141.232,7.08057,5.38218,0.026624,0.421888,0.008032,0.004256,0.011392,4.87309,0.036896
+631,141.456,7.06934,5.40877,0.026624,0.398624,0.00688,0.00592,0.010464,4.92339,0.036864
+632,139.055,7.19141,5.38394,0.02624,0.409376,0.006752,0.005216,0.01072,4.88902,0.036608
+633,133.195,7.50781,5.47846,0.025504,0.474208,0.007072,0.005568,0.010816,4.91834,0.03696
+634,143.578,6.96484,5.38909,0.025472,0.39936,0.00736,0.004896,0.010272,4.90496,0.036768
+635,140.351,7.125,5.43142,0.026112,0.389728,0.007936,0.0056,0.01072,4.95443,0.036896
+636,137.523,7.27148,5.40262,0.026304,0.401728,0.007232,0.004864,0.010464,4.91674,0.035296
+637,137.192,7.28906,5.40314,0.026528,0.389664,0.006432,0.006144,0.010272,4.92723,0.036864
+638,131.022,7.63232,5.4056,0.025504,0.393216,0.008192,0.005184,0.010752,4.92701,0.035744
+639,135.477,7.38135,5.44467,0.026464,0.435872,0.006656,0.00608,0.010304,4.92134,0.037952
+640,127.292,7.85596,5.4231,0.024576,0.417056,0.00688,0.005152,0.01072,4.92301,0.035712
+641,138.126,7.23975,5.5337,0.026496,0.493088,0.006752,0.00592,0.010464,4.95402,0.03696
+642,129.473,7.72363,5.43968,0.025888,0.416672,0.007392,0.004896,0.01024,4.93776,0.036832
+643,129.982,7.69336,5.45802,0.02608,0.4072,0.007136,0.0056,0.010688,4.96445,0.036864
+644,141.018,7.09131,5.45168,0.026208,0.407968,0.008096,0.004192,0.011392,4.95706,0.036768
+645,141.125,7.08594,5.42909,0.026528,0.39264,0.006816,0.00608,0.010304,4.95002,0.036704
+646,133.143,7.51074,5.40499,0.025408,0.393216,0.006208,0.005792,0.010528,4.92749,0.036352
+647,136.352,7.33398,5.43958,0.026496,0.399488,0.007936,0.005568,0.01072,4.95242,0.03696
+648,139.624,7.16211,5.46394,0.026144,0.421504,0.00704,0.004096,0.01152,4.95693,0.036704
+649,136.479,7.32715,5.45411,0.024864,0.421888,0.007232,0.005056,0.010432,4.94778,0.036864
+650,141.907,7.04688,5.4231,0.024768,0.400672,0.006848,0.004096,0.011712,4.9383,0.036704
+651,138.248,7.2334,5.4551,0.026624,0.407552,0.007584,0.004736,0.011648,4.95882,0.038144
+652,130.396,7.66895,5.52227,0.025472,0.48128,0.007616,0.00464,0.011616,4.95478,0.036864
+653,138.838,7.20264,5.48685,0.026208,0.436032,0.007072,0.0056,0.010752,4.96445,0.036736
+654,134.852,7.41553,5.51946,0.026144,0.47152,0.006624,0.005216,0.010752,4.96243,0.036768
+655,132.248,7.56152,5.59686,0.02496,0.53008,0.006496,0.006144,0.01024,4.98218,0.036768
+656,137.829,7.25537,5.58346,0.02528,0.534496,0.008,0.004288,0.011328,4.96326,0.0368
+657,129.081,7.74707,5.6223,0.02512,0.546848,0.007936,0.005568,0.010784,4.98918,0.036864
+658,112.41,8.896,5.58285,0.026624,0.505856,0.007264,0.004864,0.0104,4.99098,0.036864
+659,132.317,7.55762,5.532,0.025472,0.483296,0.007648,0.00464,0.011712,4.96205,0.037184
+660,125.644,7.95898,5.64349,0.026624,0.555008,0.007904,0.004384,0.011904,5.00144,0.036224
+661,126.701,7.89258,5.61152,0.026624,0.552832,0.006272,0.006144,0.01024,4.9721,0.037312
+662,131.67,7.59473,5.60963,0.024736,0.526336,0.007648,0.00464,0.01024,4.99923,0.0368
+663,125.421,7.97314,5.63814,0.026656,0.542432,0.0064,0.006144,0.010272,5.00851,0.037728
+664,134.932,7.41113,5.54362,0.025216,0.46208,0.006912,0.004096,0.011744,4.99766,0.035904
+665,131.19,7.62256,5.52541,0.025248,0.449632,0.007072,0.005728,0.010688,4.9889,0.038144
+666,122.342,8.17383,5.56134,0.026592,0.499264,0.006624,0.005344,0.010752,4.97488,0.037888
+667,130.404,7.66846,5.58323,0.02496,0.483168,0.006304,0.006144,0.011296,5.01395,0.037408
+668,128.659,7.77246,5.59978,0.025568,0.52736,0.007072,0.00416,0.011456,4.98726,0.036896
+669,117.959,8.47754,5.52973,0.026016,0.453344,0.008064,0.005568,0.010752,4.98909,0.036896
+670,130.015,7.69141,5.58557,0.02528,0.501728,0.0072,0.004896,0.010464,5.00054,0.035456
+671,135.53,7.37842,5.57466,0.026624,0.464896,0.007328,0.00496,0.01168,5.02205,0.03712
+672,130.438,7.6665,5.66682,0.026624,0.57888,0.006848,0.004096,0.01152,5.00198,0.036864
+673,110.943,9.01367,5.61357,0.026464,0.516256,0.0072,0.00512,0.012,5.00886,0.037664
+674,131.543,7.60205,5.5337,0.026144,0.469472,0.008128,0.00416,0.011456,4.97747,0.036864
+675,128.425,7.78662,5.59104,0.025824,0.52304,0.007808,0.0056,0.01072,4.9809,0.037152
+676,137.385,7.27881,5.56032,0.026624,0.445984,0.006624,0.005376,0.010752,5.02813,0.036832
+677,131.451,7.60742,5.57658,0.025088,0.468736,0.0064,0.006144,0.01024,5.02282,0.037152
+678,131.476,7.60596,5.55827,0.026208,0.489248,0.006784,0.005184,0.010752,4.98323,0.036864
+679,132.806,7.52979,5.54189,0.025856,0.477952,0.007744,0.005568,0.01072,4.97718,0.036864
+680,135.253,7.39355,5.57875,0.026624,0.47216,0.007072,0.004096,0.01152,5.02042,0.036864
+681,127.729,7.8291,5.61766,0.026624,0.556416,0.006784,0.005952,0.010432,4.97459,0.036864
+682,135.827,7.3623,5.51117,0.026624,0.425984,0.007168,0.004896,0.010464,4.99917,0.036864
+683,123.574,8.09229,5.62099,0.0264,0.52976,0.007104,0.005568,0.010688,5.00499,0.03648
+684,132.129,7.56836,5.54746,0.025952,0.461472,0.007392,0.004864,0.010304,5.00096,0.036512
+685,139.272,7.18018,5.49338,0.02528,0.392352,0.007008,0.005696,0.01072,5.01485,0.037472
+686,140.264,7.12939,5.49683,0.026144,0.403936,0.007744,0.004544,0.01024,5.00736,0.036864
+687,137.302,7.2832,5.49683,0.025984,0.395904,0.007392,0.004896,0.01136,5.01443,0.036864
+688,138.913,7.19873,5.52349,0.026112,0.418304,0.007456,0.004832,0.01024,5.01965,0.036896
+689,139.036,7.19238,5.48864,0.025472,0.398944,0.006528,0.0056,0.010688,5.00493,0.03648
+690,138.932,7.19775,5.48387,0.026624,0.411648,0.007328,0.004864,0.010336,4.98678,0.036288
+691,141.222,7.08105,5.49482,0.026624,0.4096,0.00768,0.004608,0.011712,4.9977,0.036896
+692,140.226,7.13135,5.48627,0.025056,0.40096,0.006592,0.005344,0.01072,5.00106,0.036544
+693,134.648,7.42676,5.52493,0.026176,0.457152,0.007968,0.0056,0.010688,4.98032,0.037024
+694,139.386,7.17432,5.5297,0.025952,0.424672,0.007648,0.00464,0.01024,5.01965,0.036896
+695,139.795,7.15332,5.4743,0.02624,0.405888,0.007424,0.004864,0.01136,4.98269,0.03584
+696,136.197,7.34229,5.54598,0.026624,0.451744,0.007008,0.004096,0.011584,5.00928,0.035648
+697,132.044,7.57324,5.62778,0.025344,0.513408,0.006784,0.005984,0.0104,5.02784,0.038016
+698,137.968,7.24805,5.54042,0.026048,0.40432,0.006464,0.005664,0.010528,5.05168,0.035712
+699,130.363,7.6709,5.62998,0.026656,0.493536,0.007264,0.005056,0.011264,5.04915,0.037056
+700,126.827,7.88477,5.50784,0.025312,0.423936,0.00736,0.004864,0.010304,4.99917,0.036896
+701,130.181,7.68164,5.5216,0.02592,0.426528,0.006496,0.006144,0.010272,5.00938,0.036864
+702,133.891,7.46875,5.5065,0.026176,0.407488,0.006656,0.005408,0.010688,5.0137,0.036384
+703,137.477,7.27393,5.51622,0.025536,0.400832,0.00672,0.00592,0.010464,5.03094,0.035808
+704,136.807,7.30957,5.51734,0.025792,0.400128,0.00624,0.005696,0.010656,5.03312,0.035712
+705,136.025,7.35156,5.50179,0.02544,0.433344,0.006976,0.005728,0.010656,4.98278,0.036864
+706,140.572,7.11377,5.49878,0.024928,0.38912,0.007584,0.004704,0.01024,5.02579,0.036416
+707,136.27,7.33838,5.50506,0.025376,0.40752,0.006144,0.006048,0.010368,5.0128,0.0368
+708,133.533,7.48877,5.50093,0.026304,0.432448,0.007872,0.004416,0.0104,4.98262,0.036864
+709,140.015,7.14209,5.48717,0.025504,0.397312,0.007328,0.00496,0.011392,5.0039,0.036768
+710,133.629,7.4834,5.50326,0.026144,0.403488,0.00688,0.004096,0.011712,5.01424,0.036704
+711,127.737,7.82861,5.56589,0.026528,0.460896,0.007488,0.0048,0.011744,5.0161,0.038336
+712,130.896,7.63965,5.61971,0.026592,0.501024,0.006912,0.004096,0.011744,5.03248,0.036864
+713,127.055,7.87061,5.55008,0.026528,0.460896,0.006336,0.005952,0.010336,5.00317,0.036864
+714,122.312,8.17578,5.56502,0.025184,0.479264,0.007648,0.004608,0.010272,5.0023,0.035744
+715,137.027,7.29785,5.51526,0.026624,0.417504,0.006432,0.006144,0.01152,5.00976,0.03728
+716,135.173,7.39795,5.51507,0.02544,0.42592,0.007904,0.004384,0.0104,5.0047,0.03632
+717,136.953,7.30176,5.5207,0.026496,0.429312,0.00704,0.005696,0.010688,5.00486,0.036608
+718,135.423,7.38428,5.49446,0.026336,0.391456,0.006144,0.005824,0.01056,5.0176,0.036544
+719,136.461,7.32812,5.5463,0.024832,0.392608,0.006752,0.005888,0.010528,5.06861,0.037088
+720,129.53,7.72021,5.58832,0.0264,0.447936,0.006944,0.005312,0.010528,5.05488,0.03632
+721,138.556,7.21729,5.49318,0.025472,0.393184,0.007936,0.0056,0.010656,5.01373,0.036608
+722,138.885,7.2002,5.48349,0.025536,0.400672,0.00688,0.004096,0.011552,4.99955,0.0352
+723,135.504,7.37988,5.62506,0.0264,0.540928,0.008,0.0056,0.01072,4.9953,0.038112
+724,133.403,7.49609,5.61629,0.025216,0.50992,0.007776,0.004512,0.01136,5.02205,0.035456
+725,132.996,7.51904,5.57466,0.026624,0.494848,0.006912,0.005792,0.010624,4.99094,0.038912
+726,127.411,7.84863,5.53152,0.025088,0.45456,0.00624,0.005696,0.010688,4.99238,0.036864
+727,122.218,8.18213,5.51322,0.026528,0.444512,0.007456,0.004832,0.011392,4.98166,0.036832
+728,127.538,7.84082,5.51936,0.026624,0.44032,0.00768,0.004608,0.01024,4.99434,0.035552
+729,138.678,7.21094,5.50912,0.026624,0.425984,0.008032,0.005568,0.01072,4.99533,0.036864
+730,133.97,7.46436,5.47635,0.025696,0.411552,0.007136,0.004128,0.012192,4.97878,0.036864
+731,132.539,7.54492,5.49226,0.025024,0.4096,0.007808,0.0056,0.010784,4.99539,0.038048
+732,133.16,7.50977,5.48035,0.026464,0.41696,0.007136,0.00544,0.010688,4.9769,0.036768
+733,140.274,7.12891,5.48941,0.025312,0.407552,0.007296,0.004992,0.01136,4.9959,0.036992
+734,133.022,7.51758,5.57078,0.026144,0.479936,0.007264,0.004896,0.010368,5.00688,0.035296
+735,133.804,7.47363,5.57261,0.026432,0.48352,0.008032,0.005568,0.010752,5.00144,0.036864
+736,139.824,7.15186,5.52518,0.025792,0.438976,0.006432,0.005536,0.010752,5.00125,0.036448
+737,134.11,7.45654,5.50736,0.026176,0.422432,0.006304,0.005888,0.010496,4.99917,0.036896
+738,122.218,8.18213,5.50093,0.026048,0.420032,0.00656,0.005408,0.010784,4.99526,0.036832
+739,134.102,7.45703,5.48973,0.026624,0.407552,0.007424,0.004864,0.011424,4.99501,0.036832
+740,125.737,7.95312,5.52144,0.0264,0.45488,0.00752,0.004768,0.01024,4.98074,0.036896
+741,136.197,7.34229,5.49949,0.025184,0.41952,0.006464,0.006144,0.01024,4.99498,0.03696
+742,141.877,7.04834,5.47853,0.024832,0.431904,0.006368,0.005536,0.010752,4.9624,0.036736
+743,137.57,7.26904,5.4553,0.02608,0.408096,0.007872,0.005568,0.010688,4.95866,0.038336
+744,132.522,7.5459,5.45354,0.025184,0.390464,0.00688,0.004064,0.011712,4.97853,0.036704
+745,136.661,7.31738,5.50515,0.025856,0.4512,0.006368,0.006144,0.01024,4.96822,0.03712
+746,139.671,7.15967,5.4383,0.02544,0.397056,0.006368,0.0056,0.01072,4.95622,0.036896
+747,124.65,8.02246,5.6807,0.02624,0.57584,0.006464,0.006144,0.02064,5.0072,0.038176
+748,123.255,8.11328,5.48579,0.026016,0.42048,0.007456,0.004832,0.01024,4.98045,0.03632
+749,120.4,8.30566,5.44963,0.025952,0.400128,0.006272,0.006144,0.01024,4.964,0.036896
+750,126.521,7.90381,5.46061,0.0264,0.402272,0.007808,0.00448,0.01136,4.97142,0.036864
+751,136.634,7.31885,5.46611,0.026624,0.411648,0.007264,0.005024,0.010432,4.96816,0.03696
+752,142.005,7.04199,5.43789,0.025024,0.403456,0.007936,0.004352,0.010464,4.95094,0.035712
+753,130.838,7.64307,5.59542,0.025248,0.520064,0.007936,0.015936,0.010944,4.97843,0.036864
+754,138.36,7.22754,5.46608,0.025056,0.423392,0.006688,0.005312,0.010752,4.95853,0.036352
+755,136.424,7.33008,5.44768,0.025952,0.390944,0.00704,0.005632,0.010688,4.97056,0.036864
+756,139.576,7.16455,5.48045,0.024576,0.411648,0.008096,0.004192,0.011392,4.98477,0.035776
+757,132.694,7.53613,5.44966,0.025312,0.38912,0.0072,0.005088,0.010432,4.9744,0.038112
+758,135.003,7.40723,5.42566,0.025568,0.380576,0.006496,0.005664,0.01072,4.95987,0.036768
+759,129.424,7.72656,5.51229,0.026464,0.452064,0.006848,0.005824,0.010592,4.9736,0.036896
+760,140.159,7.13477,5.51146,0.024896,0.462816,0.007296,0.004896,0.010336,4.96573,0.035488
+761,130.172,7.68213,5.51699,0.026528,0.474496,0.00688,0.005792,0.010592,4.94387,0.048832
+762,119.661,8.35693,5.57229,0.025984,0.527136,0.008128,0.00416,0.011488,4.95875,0.03664
+763,138.895,7.19971,5.47923,0.025408,0.44848,0.007904,0.005568,0.011136,4.94358,0.037152
+764,134.418,7.43945,5.44768,0.026624,0.441952,0.00656,0.005472,0.01088,4.92064,0.035552
+765,130.997,7.63379,5.49117,0.0256,0.475136,0.007424,0.004864,0.01136,4.92979,0.036992
+766,132.018,7.57471,5.46851,0.024928,0.425984,0.007232,0.004256,0.01088,4.93174,0.063488
+767,135.217,7.39551,5.49683,0.026592,0.46496,0.007488,0.004768,0.011616,4.94454,0.036864
+768,136.243,7.33984,5.45382,0.026208,0.463264,0.008,0.004288,0.01168,4.90352,0.036864
+769,134.11,7.45654,5.52346,0.048256,0.506176,0.00672,0.005984,0.0104,4.90906,0.036864
+770,144.154,6.93701,5.4329,0.026624,0.423808,0.007392,0.005024,0.01024,4.92339,0.036416
+771,133.446,7.49365,5.44058,0.02656,0.426048,0.008064,0.005568,0.010752,4.92694,0.03664
+772,133.559,7.4873,5.45539,0.026624,0.458752,0.007616,0.004672,0.01024,4.9111,0.036384
+773,133.472,7.49219,5.47254,0.026528,0.474912,0.006752,0.005536,0.010688,4.91126,0.036864
+774,134.286,7.44678,5.45795,0.026368,0.448768,0.00768,0.004608,0.010272,4.92336,0.036896
+775,129.162,7.74219,5.49152,0.025408,0.474624,0.00768,0.005088,0.011296,4.93053,0.036896
+776,128.692,7.77051,5.41651,0.026304,0.433568,0.007072,0.004096,0.01152,4.89754,0.036416
+777,132.97,7.52051,5.44176,0.0248,0.448224,0.006432,0.006144,0.01024,4.90906,0.036864
+778,142.262,7.0293,5.3912,0.02544,0.38624,0.006976,0.004096,0.011616,4.91997,0.036864
+779,129.892,7.69873,5.38829,0.024576,0.397312,0.00768,0.004608,0.011712,4.90528,0.03712
+780,145.579,6.86914,5.36387,0.025536,0.39936,0.007968,0.00432,0.011264,4.87898,0.036448
+781,127.577,7.83838,5.39053,0.024768,0.409568,0.007328,0.004992,0.011296,4.8951,0.037472
+782,140.659,7.10938,5.40598,0.038816,0.421888,0.00624,0.005824,0.01056,4.88598,0.036672
+783,136.962,7.30127,5.39034,0.026624,0.413728,0.007808,0.005568,0.011008,4.88797,0.037632
+784,134.808,7.41797,5.40675,0.026336,0.43856,0.00768,0.004608,0.01024,4.88243,0.036896
+785,143.478,6.96973,5.39178,0.025952,0.416672,0.007552,0.004736,0.011552,4.88835,0.03696
+786,137.885,7.25244,5.3769,0.025568,0.41776,0.006176,0.005792,0.01056,4.87424,0.0368
+787,136.597,7.3208,5.44883,0.025664,0.459712,0.007648,0.00464,0.011712,4.90144,0.038016
+788,139.443,7.17139,5.42176,0.025344,0.437952,0.006464,0.005472,0.01072,4.89904,0.036768
+789,139.244,7.18164,5.49478,0.026304,0.503488,0.006816,0.005856,0.010496,4.90496,0.036864
+790,139.481,7.16943,5.41024,0.026528,0.423168,0.007008,0.004096,0.011584,4.90144,0.036416
+791,137.404,7.27783,5.36602,0.024832,0.403456,0.007328,0.00496,0.011392,4.87619,0.037856
+792,136.379,7.33252,5.49712,0.025088,0.527584,0.006752,0.005248,0.010752,4.88486,0.036832
+793,135.872,7.35986,5.34928,0.02608,0.395584,0.006368,0.006144,0.01024,4.86605,0.038816
+794,126.623,7.89746,5.42106,0.026656,0.460768,0.007232,0.004896,0.0104,4.87424,0.036864
+795,141.593,7.0625,5.34131,0.025888,0.389984,0.007712,0.004576,0.011712,4.86458,0.036864
+796,134.684,7.4248,5.35552,0.026112,0.41824,0.006208,0.005728,0.010688,4.85331,0.035232
+797,132.445,7.55029,5.33658,0.025824,0.406176,0.0064,0.006144,0.01024,4.84352,0.038272
+798,142.104,7.03711,5.34323,0.026464,0.415712,0.006336,0.0056,0.010656,4.8416,0.036864
+799,141.115,7.08643,5.38454,0.024928,0.439776,0.006688,0.005984,0.0104,4.85898,0.037792
+800,142.4,7.02246,5.36176,0.026336,0.420128,0.00752,0.004768,0.010272,4.85782,0.034912
+801,130.787,7.646,5.40877,0.026624,0.472352,0.00688,0.016384,0.011424,4.83821,0.036896
+802,142.509,7.01709,5.38058,0.025024,0.445856,0.006752,0.005184,0.010784,4.85126,0.035712
+803,131.51,7.604,5.35347,0.02624,0.4072,0.00688,0.00576,0.010656,4.86109,0.035648
+804,132.266,7.56055,5.3791,0.026336,0.432416,0.008,0.004288,0.018432,4.85283,0.0368
+805,141.339,7.0752,5.34982,0.025088,0.421824,0.007744,0.005568,0.01072,4.84186,0.037024
+806,123.993,8.06494,5.37264,0.025312,0.442368,0.007456,0.004832,0.010272,4.84682,0.035584
+807,140.005,7.14258,5.39443,0.026624,0.4416,0.006912,0.005824,0.01056,4.86605,0.036864
+808,137.894,7.25195,5.38374,0.026624,0.470336,0.006848,0.004096,0.011712,4.82752,0.036608
+809,129.563,7.71826,5.38781,0.036288,0.453216,0.007872,0.005568,0.01072,4.83571,0.038432
+810,122.804,8.14307,5.32474,0.02624,0.407104,0.006976,0.004096,0.011584,4.82784,0.040896
+811,131.959,7.57812,5.43974,0.026144,0.518592,0.006432,0.006144,0.01024,4.83533,0.036864
+812,145.527,6.87158,5.31258,0.026592,0.394528,0.006912,0.004096,0.011552,4.83318,0.035712
+813,135.566,7.37646,5.34061,0.026624,0.421632,0.0064,0.006144,0.01024,4.83264,0.036928
+814,137.311,7.28271,5.38368,0.024992,0.460736,0.00624,0.00576,0.010528,4.8289,0.046528
+815,142.997,6.99316,5.35171,0.02544,0.4192,0.006784,0.005952,0.010432,4.84557,0.038336
+816,141.995,7.04248,5.31661,0.026624,0.417024,0.006912,0.004096,0.01168,4.81341,0.036864
+817,131.603,7.59863,5.29878,0.025248,0.415712,0.007744,0.005568,0.010752,4.7969,0.036864
+818,138.547,7.21777,5.30566,0.026656,0.41152,0.00624,0.005696,0.01072,4.80813,0.036704
+819,134.436,7.43848,5.32278,0.026656,0.436192,0.00624,0.006048,0.010336,4.80006,0.037248
+820,146.317,6.83447,5.32278,0.026048,0.42864,0.0072,0.004896,0.010464,4.80867,0.036864
+821,144.878,6.90234,5.30115,0.025536,0.42368,0.006368,0.006144,0.010272,4.79229,0.036864
+822,145.135,6.89014,5.29171,0.024608,0.40752,0.008032,0.004256,0.011328,4.79942,0.036544
+823,143.297,6.97852,5.31251,0.026464,0.438432,0.00736,0.00496,0.011424,4.78701,0.036864
+824,143.82,6.95312,5.31098,0.025184,0.421856,0.007552,0.004736,0.011264,4.80352,0.036864
+825,141.446,7.06982,5.30022,0.026048,0.438848,0.007808,0.005568,0.01072,4.77437,0.036864
+826,145.682,6.86426,5.30858,0.024992,0.42384,0.00624,0.005696,0.010688,4.80051,0.036608
+827,137.496,7.27295,5.32688,0.02656,0.458688,0.006272,0.006144,0.010272,4.78189,0.037056
+828,141.809,7.05176,5.32867,0.025856,0.459584,0.008128,0.004096,0.012288,4.78211,0.036608
+829,137.792,7.25732,5.33562,0.025184,0.4792,0.006144,0.006144,0.010272,4.77181,0.036864
+830,141.897,7.04736,5.28794,0.026624,0.425024,0.007104,0.004128,0.011552,4.77664,0.036864
+831,130.946,7.63672,5.32864,0.026496,0.456832,0.008,0.0056,0.010688,4.78237,0.038656
+832,138.603,7.21484,5.32925,0.025984,0.432864,0.0064,0.005536,0.010816,4.81078,0.036864
+833,130.247,7.67773,5.30198,0.026144,0.419552,0.007072,0.0056,0.010784,4.78413,0.048704
+834,132.557,7.54395,5.30432,0.026656,0.433888,0.007616,0.004864,0.010304,4.78534,0.035648
+835,127.697,7.83105,5.33914,0.026336,0.497952,0.006144,0.006144,0.011264,4.75443,0.036864
+836,144.561,6.91748,5.25517,0.0264,0.405536,0.006336,0.005664,0.01072,4.76323,0.03728
+837,132.668,7.5376,5.28566,0.026432,0.426464,0.006528,0.006016,0.010368,4.77181,0.038048
+838,142.618,7.01172,5.27459,0.025536,0.421888,0.0072,0.004896,0.010432,4.76774,0.036896
+839,140.892,7.09766,5.2672,0.0264,0.421696,0.006592,0.006048,0.010304,4.75933,0.036832
+840,138.22,7.23486,5.25107,0.026304,0.405824,0.0072,0.004864,0.010464,4.7608,0.035616
+841,141.173,7.0835,5.29933,0.025888,0.445152,0.008064,0.005568,0.010784,4.7657,0.038176
+842,139.891,7.14844,5.29136,0.026176,0.434176,0.006592,0.005344,0.010688,4.77171,0.036672
+843,145.135,6.89014,5.25725,0.026144,0.419488,0.006976,0.004224,0.011488,4.75197,0.03696
+844,134.897,7.41309,5.34947,0.02576,0.488256,0.00624,0.005696,0.010688,4.77594,0.036896
+845,143.097,6.98828,5.25053,0.026656,0.404704,0.006912,0.00576,0.010624,4.7575,0.038368
+846,148.245,6.74561,5.25293,0.025248,0.409408,0.006336,0.005728,0.010688,4.75917,0.036352
+847,143.367,6.9751,5.25674,0.026624,0.427712,0.006464,0.006144,0.01024,4.74237,0.037184
+848,142.708,7.00732,5.30842,0.026624,0.4608,0.00784,0.004448,0.010336,4.7615,0.036864
+849,143.942,6.94727,5.25315,0.026624,0.410912,0.00688,0.005792,0.010592,4.74909,0.043264
+850,141.573,7.06348,5.2839,0.026176,0.44896,0.007968,0.00432,0.011328,4.74934,0.035808
+851,140.486,7.11816,5.23062,0.026624,0.399232,0.006272,0.005888,0.010496,4.74512,0.036992
+852,144.51,6.91992,5.26205,0.025312,0.414848,0.00704,0.005344,0.010752,4.76301,0.035744
+853,131.679,7.59424,5.3,0.026656,0.462816,0.007936,0.0056,0.010752,4.74858,0.037664
+854,138.829,7.20312,5.27482,0.026624,0.41936,0.006656,0.00528,0.01072,4.76976,0.036416
+855,137.265,7.28516,5.31046,0.026624,0.49152,0.007904,0.005568,0.010752,4.73104,0.037056
+856,136.479,7.32715,5.33421,0.034848,0.499008,0.006848,0.00512,0.010784,4.74099,0.036608
+857,144.459,6.92236,5.28339,0.02576,0.458656,0.007104,0.005568,0.010784,4.73712,0.0384
+858,143.921,6.94824,5.30838,0.02672,0.493536,0.006176,0.00576,0.010624,4.72883,0.036736
+859,131.459,7.60693,5.33094,0.0264,0.504032,0.00816,0.005568,0.01072,4.7392,0.036864
+860,141.476,7.06836,5.33872,0.026336,0.513568,0.006912,0.004096,0.011744,4.73914,0.036928
+861,141.681,7.05811,5.26669,0.026624,0.462016,0.006976,0.006048,0.010336,4.71654,0.038144
+862,139.69,7.15869,5.22845,0.026528,0.415744,0.007936,0.004352,0.01136,4.72566,0.036864
+863,140.892,7.09766,5.36576,0.026144,0.544928,0.006496,0.006112,0.01024,4.73478,0.037056
+864,138.378,7.22656,5.45933,0.024896,0.642464,0.00672,0.005248,0.010784,4.73261,0.036608
+865,124.779,8.01416,5.22262,0.025408,0.415744,0.007328,0.00496,0.011328,4.71955,0.038304
+866,130.073,7.68799,5.21981,0.025728,0.417792,0.00704,0.004096,0.011872,4.71693,0.036352
+867,141.29,7.07764,5.24294,0.026304,0.418528,0.007904,0.005568,0.010784,4.7353,0.03856
+868,141.554,7.06445,5.2129,0.0256,0.395296,0.008,0.004256,0.011296,4.73187,0.036576
+869,137.008,7.29883,5.25379,0.037536,0.40704,0.006656,0.006048,0.010368,4.74928,0.036864
+870,145.589,6.86865,5.21629,0.024736,0.405504,0.007168,0.004864,0.010496,4.72656,0.03696
+871,141.75,7.05469,5.23677,0.026624,0.425984,0.006144,0.006144,0.010336,4.72464,0.036896
+872,138.528,7.21875,5.2343,0.026624,0.415744,0.007328,0.004896,0.010304,4.73293,0.03648
+873,140.466,7.11914,5.23386,0.025728,0.416064,0.00672,0.00592,0.010464,4.73085,0.038112
+874,144.134,6.93799,5.21216,0.026528,0.405408,0.006336,0.005792,0.010592,4.72064,0.036864
+875,144.633,6.91406,5.19398,0.024832,0.395264,0.007936,0.005568,0.010752,4.71277,0.036864
+876,143.137,6.98633,5.21194,0.024928,0.389088,0.006208,0.00576,0.010592,4.73872,0.03664
+877,142.678,7.00879,5.24086,0.025984,0.438272,0.006784,0.006112,0.010304,4.71626,0.037152
+878,143.82,6.95312,5.20806,0.025792,0.396096,0.00624,0.005792,0.010496,4.72678,0.036864
+879,143.861,6.95117,5.21891,0.02544,0.39648,0.006592,0.005568,0.010784,4.73539,0.038656
+880,146.129,6.84326,5.21923,0.025536,0.403456,0.00736,0.004864,0.010304,4.73088,0.036832
+881,146.16,6.8418,5.19168,0.026464,0.40064,0.007072,0.005568,0.010816,4.70426,0.036864
+882,144.837,6.9043,5.20362,0.026048,0.390816,0.007072,0.004096,0.01168,4.72739,0.036512
+883,137.588,7.26807,5.22477,0.024896,0.41984,0.007552,0.004736,0.011648,4.71926,0.036832
+884,146.15,6.84229,5.21699,0.025312,0.412832,0.007008,0.004096,0.011648,4.71926,0.036832
+885,143.8,6.9541,5.27846,0.026912,0.483808,0.007328,0.00496,0.011328,4.7072,0.036928
+886,147.021,6.80176,5.20163,0.026624,0.401408,0.007328,0.004864,0.010336,4.7145,0.036576
+887,139.548,7.16602,5.20602,0.026528,0.421088,0.00704,0.0056,0.010688,4.69744,0.037632
+888,146.873,6.80859,5.19302,0.026656,0.421856,0.007872,0.004416,0.010272,4.68541,0.036544
+889,141.485,7.06787,5.20899,0.035744,0.421696,0.006336,0.006144,0.01024,4.69197,0.036864
+890,143.83,6.95264,5.18966,0.025632,0.405952,0.006688,0.00528,0.010752,4.69846,0.036896
+891,145.537,6.87109,5.20378,0.025216,0.417088,0.006816,0.006144,0.010272,4.70013,0.038112
+892,135.066,7.40381,5.19853,0.025504,0.4136,0.007232,0.004896,0.010464,4.70016,0.036672
+893,138.528,7.21875,5.19072,0.02624,0.385408,0.008064,0.00528,0.010752,4.70624,0.048736
+894,143.84,6.95215,5.20531,0.026368,0.424352,0.0072,0.004896,0.0104,4.6952,0.036896
+895,129.073,7.74756,5.3376,0.025088,0.536256,0.006464,0.016384,0.011936,4.7039,0.037568
+896,148.374,6.73975,5.19094,0.026112,0.397824,0.008064,0.004224,0.011424,4.7064,0.036896
+897,134.897,7.41309,5.21949,0.025728,0.43712,0.007744,0.005568,0.010752,4.69581,0.036768
+898,128.032,7.81055,5.28794,0.025984,0.461344,0.00624,0.005728,0.010656,4.74224,0.035744
+899,145.279,6.8833,5.23635,0.026624,0.423904,0.006176,0.006144,0.011264,4.72371,0.038528
+900,127.888,7.81934,5.31859,0.026624,0.521888,0.00768,0.004896,0.010304,4.7104,0.0368
+901,126.506,7.90479,5.28573,0.025344,0.509056,0.00704,0.005664,0.010752,4.68973,0.038144
+902,121.327,8.24219,5.22653,0.025376,0.422944,0.00704,0.004096,0.011648,4.71862,0.0368
+903,143.347,6.97607,5.15984,0.025504,0.397312,0.007936,0.005568,0.010688,4.67597,0.036864
+904,115.101,8.68799,6.36358,0.025056,1.57491,0.007616,0.004672,0.01024,4.70592,0.035168
+905,137.968,7.24805,5.2768,0.026496,0.468992,0.006304,0.006144,0.0104,4.72048,0.037984
+906,133.039,7.5166,5.20803,0.025408,0.431744,0.006432,0.005408,0.01072,4.69171,0.036608
+907,141.349,7.07471,5.22698,0.025024,0.434176,0.008096,0.00544,0.01072,4.70662,0.036896
+908,140.892,7.09766,5.22784,0.026624,0.432128,0.007296,0.004896,0.010336,4.71005,0.036512
+909,142.321,7.02637,5.21936,0.026624,0.438272,0.007904,0.0056,0.011104,4.69194,0.03792
+910,142.331,7.02588,5.22051,0.026528,0.415264,0.00672,0.00528,0.010784,4.72016,0.035776
+911,141.436,7.07031,5.32698,0.026656,0.5304,0.007616,0.004672,0.011648,4.71034,0.035648
+912,145.3,6.88232,5.2007,0.025312,0.43632,0.008,0.004288,0.011296,4.67862,0.036864
+913,140.389,7.12305,5.21798,0.025024,0.44976,0.006944,0.00576,0.010656,4.6817,0.038144
+914,144.991,6.89697,5.22381,0.026624,0.446848,0.008032,0.004256,0.01136,4.6903,0.036384
+915,146.098,6.84473,5.19434,0.02528,0.411552,0.007552,0.004736,0.011616,4.69661,0.036992
+916,140.495,7.11768,5.21011,0.026432,0.423872,0.0064,0.004096,0.01168,4.70077,0.036864
+917,140.534,7.11572,5.24496,0.0256,0.459968,0.007008,0.005664,0.010688,4.69811,0.03792
+918,145.176,6.88818,5.2273,0.025408,0.430016,0.006176,0.00576,0.010624,4.71245,0.036864
+919,137.708,7.26172,5.30022,0.0264,0.52864,0.007296,0.00496,0.011392,4.6847,0.036832
+920,145.465,6.87451,5.22566,0.02576,0.432992,0.007232,0.004864,0.010432,4.70762,0.036768
+921,143.639,6.96191,5.23674,0.026656,0.447552,0.007072,0.005792,0.010592,4.70221,0.036864
+922,142.193,7.03271,5.24205,0.026464,0.490688,0.007104,0.004128,0.011584,4.66557,0.036512
+923,145.713,6.86279,5.18813,0.02512,0.432128,0.007264,0.005024,0.011328,4.67043,0.036832
+924,147.021,6.80176,5.18851,0.0256,0.409632,0.00816,0.004096,0.011744,4.69251,0.036768
+925,146.171,6.84131,5.24314,0.024928,0.462304,0.006688,0.00592,0.010464,4.69526,0.037568
+926,142.589,7.01318,5.19939,0.024736,0.433856,0.006464,0.005568,0.010752,4.68144,0.036576
+927,141.495,7.06738,5.28826,0.024928,0.491104,0.00656,0.00608,0.010336,4.71242,0.036832
+928,133.125,7.51172,5.32272,0.025376,0.538624,0.007744,0.004544,0.010304,4.69952,0.036608
+929,140.312,7.12695,5.30602,0.026624,0.507936,0.007424,0.004832,0.011488,4.71046,0.037248
+930,142.38,7.02344,5.31104,0.025376,0.514048,0.007872,0.004416,0.0104,4.71229,0.03664
+931,138.117,7.24023,5.33386,0.025408,0.548864,0.008128,0.005376,0.01104,4.69811,0.036928
+932,141.417,7.07129,5.2487,0.02496,0.472864,0.006368,0.0056,0.010752,4.69174,0.036416
+933,130.579,7.6582,5.23402,0.026112,0.43264,0.007712,0.004576,0.011744,4.7144,0.036832
+934,119.941,8.3374,5.18758,0.02656,0.411296,0.006592,0.005344,0.01072,4.69171,0.03536
+935,129.743,7.70752,5.28374,0.026368,0.481536,0.00736,0.004928,0.011424,4.71334,0.038784
+936,144.827,6.90479,5.21043,0.02592,0.428192,0.007008,0.004096,0.012128,4.69626,0.036832
+937,135.854,7.36084,5.30515,0.02544,0.495584,0.007648,0.00464,0.011648,4.7231,0.037088
+938,143.417,6.97266,5.19578,0.026656,0.421056,0.006944,0.005216,0.010752,4.68966,0.035488
+939,143.097,6.98828,5.24314,0.0264,0.442528,0.006432,0.006144,0.01024,4.71421,0.037184
+940,145.362,6.87939,5.20397,0.02656,0.409664,0.007616,0.004672,0.01024,4.70998,0.035232
+941,147.529,6.77832,5.15747,0.025216,0.39936,0.007648,0.00464,0.011648,4.672,0.03696
+942,139.852,7.15039,5.23878,0.026624,0.452608,0.007776,0.004512,0.01024,4.70179,0.035232
+943,141.515,7.06641,5.18963,0.026624,0.413696,0.008032,0.005568,0.01072,4.68813,0.036864
+944,139.159,7.18604,5.20608,0.025088,0.415616,0.0072,0.004864,0.010464,4.7063,0.036544
+945,132.97,7.52051,5.39197,0.025728,0.557952,0.007168,0.00512,0.010336,4.74877,0.036896
+946,132.642,7.53906,5.2353,0.025184,0.454624,0.008,0.004288,0.011328,4.69498,0.036896
+947,135.36,7.3877,5.22854,0.026624,0.435648,0.00672,0.006112,0.010272,4.7057,0.037472
+948,140.303,7.12744,5.2577,0.026112,0.473408,0.006816,0.005184,0.010848,4.69846,0.036864
+949,139.272,7.18018,5.264,0.025568,0.462848,0.007392,0.004896,0.011456,4.71466,0.037184
+950,141.936,7.04541,5.23418,0.026016,0.471616,0.0064,0.005536,0.01072,4.67754,0.036352
+951,137.588,7.26807,5.20467,0.025248,0.423936,0.007968,0.005568,0.01072,4.69389,0.037344
+952,140.611,7.11182,5.33507,0.025184,0.546272,0.006688,0.005312,0.01072,4.70461,0.036288
+953,135.199,7.39648,5.31069,0.025376,0.48128,0.008064,0.005568,0.010784,4.74294,0.036672
+954,144.449,6.92285,5.21219,0.026528,0.427392,0.00688,0.005728,0.010656,4.69811,0.036896
+955,134.445,7.43799,5.31386,0.026432,0.512192,0.007392,0.004896,0.011552,4.71318,0.038208
+956,137.017,7.29834,5.25654,0.02576,0.445408,0.007424,0.004864,0.01024,4.7265,0.036352
+957,125.015,7.99902,5.24931,0.024864,0.494816,0.006944,0.005728,0.010656,4.66944,0.036864
+958,138.294,7.23096,5.27978,0.026528,0.49776,0.007872,0.004416,0.016384,4.68992,0.036896
+959,141.671,7.05859,5.23882,0.02592,0.442208,0.007008,0.005632,0.010656,4.7105,0.036896
+960,143.347,6.97607,5.21616,0.024864,0.42992,0.007264,0.004864,0.0104,4.70221,0.03664
+961,139.339,7.17676,5.2736,0.026624,0.45808,0.006816,0.005856,0.010528,4.72883,0.036864
+962,134.507,7.43457,5.22666,0.02624,0.440864,0.00624,0.00576,0.010528,4.70016,0.036864
+963,142.599,7.0127,5.22752,0.026464,0.435648,0.00688,0.005792,0.010592,4.70566,0.03648
+964,144.991,6.89697,5.24698,0.026432,0.450752,0.007264,0.004672,0.010592,4.7104,0.036864
+965,131.738,7.59082,5.25341,0.024928,0.456704,0.008064,0.0056,0.010816,4.70845,0.038848
+966,148.116,6.75146,5.20416,0.02512,0.39936,0.006176,0.005792,0.01056,4.72064,0.036512
+967,141.779,7.05322,5.28826,0.024928,0.464896,0.007744,0.005568,0.010816,4.73693,0.037376
+968,135.881,7.35938,5.24282,0.02544,0.425984,0.007488,0.0048,0.01024,4.73264,0.036224
+969,147.71,6.77002,5.17818,0.02544,0.39728,0.00736,0.004928,0.01168,4.69462,0.036864
+970,144.694,6.91113,5.22442,0.02656,0.424,0.007744,0.004544,0.01024,4.7145,0.036832
+971,136.053,7.3501,5.34989,0.02512,0.562688,0.006624,0.016384,0.011488,4.69072,0.036864
+972,145.63,6.8667,5.21197,0.026048,0.429056,0.007296,0.004896,0.010336,4.69802,0.03632
+973,141.818,7.05127,5.18029,0.025472,0.415392,0.006464,0.006144,0.01024,4.67968,0.036896
+974,146.894,6.80762,5.18765,0.025888,0.404384,0.00624,0.005728,0.010656,4.69811,0.03664
+975,136.524,7.32471,5.25821,0.025536,0.442368,0.007712,0.004576,0.011712,4.72941,0.036896
+976,139.367,7.17529,5.24701,0.026624,0.434176,0.006208,0.005696,0.010624,4.7279,0.035776
+977,146.958,6.80469,5.19549,0.026112,0.407872,0.006656,0.006048,0.010336,4.70125,0.037216
+978,142.678,7.00879,5.28506,0.026656,0.528352,0.006336,0.005696,0.010496,4.67136,0.03616
+979,138.061,7.24316,5.34394,0.026496,0.561824,0.00736,0.004928,0.01136,4.69613,0.03584
+980,140.843,7.1001,5.19734,0.025984,0.395904,0.008096,0.004192,0.01136,4.71542,0.036384
+981,119.794,8.34766,5.2207,0.026016,0.44064,0.006784,0.005888,0.010496,4.69402,0.036864
+982,139.786,7.15381,5.25725,0.026496,0.471168,0.007488,0.0048,0.01024,4.70134,0.035712
+983,136.415,7.33057,5.21664,0.02624,0.411968,0.006592,0.005664,0.010208,4.72061,0.03536
+984,102.92,9.71631,5.21219,0.026656,0.415136,0.00672,0.005248,0.01072,4.71082,0.036896
+985,142.559,7.01465,5.20605,0.026592,0.43184,0.006464,0.006144,0.01024,4.68787,0.036896
+986,147.753,6.76807,5.22445,0.025696,0.401312,0.006944,0.00432,0.011456,4.73786,0.036864
+987,140.457,7.11963,5.24554,0.025184,0.454656,0.007264,0.005024,0.011584,4.70611,0.035712
+988,135.935,7.35645,5.228,0.026144,0.440224,0.006752,0.005312,0.010752,4.70243,0.036384
+989,141.261,7.0791,5.23443,0.02608,0.44496,0.007744,0.005568,0.010688,4.70278,0.036608
+990,144.073,6.94092,5.2327,0.0264,0.396768,0.007008,0.004096,0.011552,4.75005,0.036832
+991,144.623,6.91455,5.20227,0.024928,0.407552,0.008032,0.005568,0.010848,4.70771,0.037632
+992,145.063,6.89355,5.20394,0.025824,0.414336,0.006304,0.005664,0.01072,4.70426,0.036832
+993,141.515,7.06641,5.19382,0.025216,0.400608,0.006944,0.005728,0.010656,4.7079,0.036768
+994,146.516,6.8252,5.1871,0.024704,0.40544,0.008064,0.004224,0.011392,4.69686,0.036416
+995,144.225,6.93359,5.18074,0.026304,0.397312,0.006464,0.006144,0.01024,4.69606,0.038208
+996,144.449,6.92285,5.22803,0.024896,0.421536,0.006432,0.006144,0.01024,4.72259,0.036192
+997,139.13,7.1875,5.25626,0.026592,0.454688,0.00752,0.0048,0.01152,4.71306,0.03808
+998,146.223,6.83887,5.18237,0.025504,0.407104,0.006592,0.005408,0.010752,4.69155,0.035456
+999,140.486,7.11816,5.23878,0.026624,0.444416,0.007744,0.005568,0.010752,4.7063,0.037376
+1000,145.579,6.86914,5.22112,0.025376,0.421536,0.006464,0.005728,0.010688,4.71594,0.035392
+1001,140.505,7.11719,5.22477,0.02592,0.417824,0.007104,0.0056,0.01072,4.72074,0.036864
+1002,126.984,7.875,5.21613,0.02544,0.405472,0.007744,0.004544,0.010272,4.72662,0.036032
+1003,128.417,7.78711,5.32266,0.026464,0.534176,0.006656,0.006112,0.010272,4.70179,0.037184
+1004,138.979,7.19531,5.26576,0.026368,0.483936,0.008032,0.004256,0.011456,4.69485,0.036864
+1005,145.022,6.89551,5.22899,0.02592,0.43312,0.007168,0.00512,0.010368,4.71136,0.035936
+1006,134.207,7.45117,5.34515,0.025792,0.53136,0.008032,0.004256,0.011424,4.72736,0.036928
+1007,141.476,7.06836,5.22035,0.026592,0.437952,0.006496,0.006048,0.010336,4.69606,0.036864
+1008,145.973,6.85059,5.33491,0.0264,0.522464,0.006176,0.020448,0.012192,4.7105,0.036736
+1009,124.772,8.01465,5.3105,0.026112,0.489984,0.007552,0.004736,0.011648,4.73357,0.036896
+1010,128.433,7.78613,5.26003,0.025344,0.411552,0.00624,0.005792,0.010624,4.75952,0.04096
+1011,133.16,7.50977,5.18378,0.024864,0.396736,0.00672,0.00592,0.010464,4.7015,0.037568
+1012,128.676,7.77148,5.22445,0.026368,0.447904,0.007008,0.004096,0.012224,4.69002,0.036832
+1013,142.38,7.02344,5.21978,0.025984,0.436096,0.006912,0.005728,0.010688,4.69603,0.038336
+1014,143.558,6.96582,5.18963,0.026464,0.407712,0.0072,0.004864,0.010464,4.69722,0.035712
+1015,138.942,7.19727,5.25482,0.0264,0.458976,0.007296,0.004992,0.011328,4.70829,0.037536
+1016,142.977,6.99414,5.2265,0.02576,0.420704,0.006144,0.005888,0.010496,4.72064,0.036864
+1017,132.146,7.56738,5.28314,0.026112,0.490016,0.007456,0.004832,0.011648,4.70653,0.036544
+1018,137.192,7.28906,5.34131,0.026176,0.512544,0.007424,0.004864,0.014336,4.73907,0.036896
+1019,136.206,7.3418,5.33296,0.026176,0.51248,0.007808,0.005568,0.010752,4.72858,0.0416
+1020,143.76,6.95605,5.24698,0.036896,0.444352,0.006176,0.00576,0.010624,4.7063,0.036864
+1021,142.718,7.00684,5.26131,0.026304,0.45424,0.00688,0.005888,0.010496,4.72064,0.036864
+1022,146.915,6.80664,5.20397,0.026176,0.418208,0.006176,0.005824,0.01056,4.7016,0.035424
+1023,145.973,6.85059,5.1953,0.0264,0.405728,0.0072,0.005088,0.01024,4.70221,0.038432
+1024,136.333,7.33496,5.5431,0.025856,0.7168,0.006912,0.004096,0.020512,4.73277,0.03616
+1025,136.935,7.30273,5.23571,0.0256,0.45184,0.006912,0.00576,0.010656,4.69933,0.035616
+1026,137.321,7.28223,5.2513,0.026112,0.441056,0.007392,0.004864,0.010272,4.72637,0.035232
+1027,134.595,7.42969,5.34323,0.026624,0.522016,0.006368,0.006144,0.01024,4.73498,0.036864
+1028,144.694,6.91113,5.25715,0.025376,0.4584,0.006592,0.005376,0.010752,4.7145,0.03616
+1029,139.605,7.16309,5.38806,0.02624,0.583904,0.006304,0.006144,0.01024,4.71658,0.038656
+1030,131.248,7.61914,5.34323,0.02656,0.529792,0.006848,0.004096,0.01168,4.72909,0.035168
+1031,137.45,7.27539,5.24794,0.025536,0.475136,0.007744,0.005568,0.010752,4.68634,0.036864
+1032,137.468,7.27441,5.26768,0.025984,0.460832,0.006976,0.004096,0.01168,4.72246,0.035648
+1033,121.37,8.23926,5.4895,0.02544,0.692224,0.024224,0.005632,0.010912,4.69421,0.036864
+1034,134.366,7.44238,5.22224,0.026624,0.425856,0.006272,0.005696,0.010688,4.7104,0.036704
+1035,130.679,7.65234,5.26125,0.026624,0.466304,0.006816,0.00592,0.010432,4.708,0.037152
+1036,132.642,7.53906,5.37754,0.026656,0.583648,0.007264,0.004864,0.0104,4.70835,0.036352
+1037,139.415,7.17285,5.28179,0.026368,0.493824,0.00768,0.004608,0.01168,4.70022,0.037408
+1038,139.529,7.16699,5.20765,0.026464,0.434336,0.007264,0.004896,0.010368,4.68787,0.036448
+1039,130.247,7.67773,5.27741,0.02592,0.47312,0.006816,0.005856,0.010528,4.7183,0.036864
+1040,137.118,7.29297,5.24755,0.025152,0.448096,0.00656,0.005376,0.01072,4.71478,0.036864
+1041,145.063,6.89355,5.21549,0.026112,0.424384,0.007392,0.00496,0.0104,4.70534,0.036896
+1042,142.025,7.04102,5.24515,0.025376,0.462752,0.007424,0.004864,0.010272,4.69712,0.037344
+1043,143.157,6.98535,5.22768,0.026656,0.462816,0.00752,0.004768,0.011584,4.67616,0.038176
+1044,101.921,9.81152,5.25526,0.026624,0.483328,0.00624,0.006048,0.01024,4.68595,0.036832
+1045,131.603,7.59863,5.27363,0.026176,0.47152,0.007712,0.004576,0.011776,4.71606,0.035808
+1046,135.307,7.39062,5.25728,0.0248,0.446528,0.008032,0.004192,0.011424,4.7256,0.036704
+1047,143.237,6.98145,5.25926,0.026528,0.49728,0.006624,0.006016,0.010368,4.67536,0.037088
+1048,143.257,6.98047,5.2224,0.026528,0.441728,0.00688,0.005248,0.011136,4.69523,0.035648
+1049,140.159,7.13477,5.25872,0.02624,0.4568,0.006432,0.006144,0.01024,4.71642,0.036448
+1050,145.022,6.89551,5.21434,0.02528,0.437312,0.007104,0.005184,0.010816,4.69222,0.036416
+1051,143.619,6.96289,5.22595,0.026624,0.446464,0.008,0.005568,0.010976,4.69158,0.036736
+1052,148.212,6.74707,5.18192,0.026176,0.390048,0.00624,0.005792,0.010496,4.7063,0.036864
+1053,144.144,6.9375,5.19357,0.026624,0.398432,0.007072,0.0056,0.010784,4.70774,0.037312
+1054,144.347,6.92773,5.20166,0.025984,0.422368,0.006304,0.005632,0.010752,4.69386,0.036768
+1055,141.593,7.0625,5.2047,0.025632,0.415328,0.006432,0.006144,0.01024,4.70426,0.036672
+1056,147.678,6.77148,5.16016,0.026624,0.3928,0.00656,0.00544,0.010752,4.68128,0.036704
+1057,139.757,7.15527,5.22467,0.025088,0.450592,0.007456,0.0048,0.011584,4.68762,0.037536
+1058,135.701,7.36914,5.20909,0.025504,0.417184,0.006848,0.004192,0.01168,4.70682,0.036864
+1059,137.95,7.24902,5.22944,0.025408,0.46,0.006944,0.00576,0.010624,4.68365,0.037056
+1060,140.892,7.09766,5.31251,0.026176,0.512448,0.016384,0.006144,0.01024,4.70426,0.036864
+1061,142.817,7.00195,5.1999,0.026592,0.415776,0.007232,0.005056,0.011328,4.69686,0.037056
+1062,142.005,7.04199,5.23149,0.025504,0.436096,0.00624,0.005664,0.01072,4.71043,0.036832
+1063,133.926,7.4668,5.28285,0.02608,0.47568,0.006208,0.00608,0.01024,4.72214,0.036416
+1064,142.46,7.01953,5.23485,0.026144,0.444608,0.006592,0.005376,0.010752,4.70566,0.035712
+1065,145.331,6.88086,5.2039,0.025248,0.429184,0.006816,0.00592,0.010496,4.68784,0.0384
+1066,133.979,7.46387,5.20387,0.024832,0.442272,0.00624,0.006144,0.01024,4.67754,0.036608
+1067,142.559,7.01465,5.22147,0.026624,0.435584,0.006784,0.005952,0.010432,4.6993,0.0368
+1068,139.396,7.17383,5.17382,0.025248,0.407456,0.007872,0.004416,0.011328,4.68067,0.036832
+1069,143.377,6.97461,5.17494,0.025216,0.41776,0.007648,0.004672,0.011648,4.67005,0.037952
+1070,143.057,6.99023,5.21011,0.02608,0.434144,0.00672,0.00528,0.010784,4.69024,0.036864
+1071,142.977,6.99414,5.18147,0.025984,0.424608,0.00624,0.006048,0.010272,4.67146,0.036864
+1072,132.454,7.5498,5.1999,0.026624,0.427424,0.006752,0.005824,0.01056,4.68582,0.036896
+1073,144.796,6.90625,5.18118,0.026528,0.402656,0.00704,0.0056,0.010784,4.69104,0.037536
+1074,147.785,6.7666,5.24336,0.025056,0.473088,0.00752,0.004768,0.01024,4.68698,0.035712
+1075,141.456,7.06934,5.18928,0.026016,0.42016,0.006432,0.006144,0.01024,4.68368,0.036608
+1076,149.119,6.70605,5.19782,0.026592,0.413728,0.007744,0.004544,0.01024,4.69811,0.036864
+1077,144.286,6.93066,5.21421,0.026144,0.440128,0.006816,0.005856,0.01056,4.68915,0.035552
+1078,144.981,6.89746,5.16096,0.026336,0.401408,0.006432,0.005568,0.010688,4.67482,0.035712
+1079,144.755,6.9082,5.19315,0.026016,0.414304,0.007968,0.0056,0.010752,4.69018,0.038336
+1080,144.674,6.91211,5.19171,0.026048,0.40928,0.00704,0.004096,0.011648,4.6967,0.036896
+1081,137.284,7.28418,5.23674,0.026208,0.45712,0.007712,0.00464,0.011712,4.69171,0.037632
+1082,143.498,6.96875,5.19168,0.026592,0.426048,0.007232,0.004864,0.0104,4.67968,0.036864
+1083,132.01,7.5752,5.28384,0.026464,0.50192,0.007936,0.0056,0.010816,4.69424,0.036864
+1084,140.236,7.13086,5.24928,0.026016,0.479296,0.006944,0.004096,0.01168,4.68589,0.03536
+1085,120.926,8.26953,5.24522,0.024864,0.466976,0.007712,0.005568,0.01072,4.69194,0.03744
+1086,134.26,7.44824,5.19206,0.02608,0.418624,0.006272,0.005664,0.010688,4.68896,0.035776
+1087,123.121,8.12207,5.21702,0.025344,0.43008,0.007392,0.004896,0.011392,4.70106,0.036864
+1088,143.739,6.95703,5.19619,0.026496,0.4224,0.007872,0.004416,0.011456,4.68666,0.036896
+1089,144.144,6.9375,5.19174,0.02608,0.412224,0.006176,0.006144,0.01024,4.69402,0.036864
+1090,137.265,7.28516,5.20448,0.025088,0.443392,0.007136,0.004128,0.011456,4.67642,0.036864
+1091,146.056,6.84668,5.20602,0.026624,0.43008,0.007744,0.005568,0.01072,4.68835,0.036928
+1092,130.23,7.67871,5.33094,0.026272,0.563712,0.007776,0.004352,0.011328,4.68189,0.035616
+1093,133.559,7.4873,5.30346,0.026432,0.51632,0.007552,0.004704,0.011712,4.69869,0.038048
+1094,142.797,7.00293,5.24083,0.026368,0.473344,0.007328,0.004896,0.010336,4.68166,0.036896
+1095,143.217,6.98242,5.23731,0.025632,0.450528,0.007456,0.004832,0.011456,4.70077,0.03664
+1096,143.76,6.95605,5.29078,0.025408,0.516064,0.007872,0.004416,0.010368,4.68979,0.036864
+1097,145.724,6.8623,5.18141,0.025216,0.419584,0.0064,0.006144,0.01024,4.67558,0.03824
+1098,147.381,6.78516,5.18112,0.026144,0.417312,0.007104,0.004096,0.011584,4.67834,0.036544
+1099,145.703,6.86328,5.1727,0.026176,0.403904,0.00736,0.004928,0.011392,4.6825,0.036448
+1100,143.077,6.98926,5.2175,0.026656,0.456704,0.007296,0.014592,0.01088,4.66483,0.036544
+1101,143.84,6.95215,5.16157,0.025184,0.40288,0.00672,0.00592,0.010464,4.67459,0.035808
+1102,146.286,6.83594,5.16301,0.026432,0.391168,0.006368,0.005664,0.010688,4.68717,0.03552
+1103,135.593,7.375,5.17533,0.024736,0.397312,0.007296,0.004992,0.01136,4.69238,0.037248
+1104,144.104,6.93945,5.20826,0.02624,0.44448,0.006752,0.005216,0.010688,4.67757,0.037312
+1105,136.388,7.33203,5.16381,0.025376,0.407552,0.00736,0.00496,0.011392,4.67155,0.035616
+1106,142.025,7.04102,5.23034,0.025952,0.44416,0.007072,0.015424,0.011168,4.68998,0.036576
+1107,144.531,6.91895,5.15862,0.026176,0.407712,0.006688,0.00608,0.010304,4.6633,0.038368
+1108,140.312,7.12695,5.22867,0.025472,0.460064,0.00688,0.004096,0.01168,4.68422,0.036256
+1109,144.674,6.91211,5.17318,0.026368,0.413952,0.00736,0.00496,0.01136,4.67149,0.037696
+1110,145.434,6.87598,5.15072,0.02608,0.403904,0.00624,0.005728,0.010656,4.66227,0.03584
+1111,139.377,7.1748,5.22211,0.026112,0.466816,0.006784,0.005856,0.01056,4.66941,0.036576
+1112,144.205,6.93457,5.13424,0.026272,0.38128,0.007968,0.00432,0.01024,4.66739,0.036768
+1113,144.51,6.91992,5.18093,0.026144,0.405984,0.007776,0.005568,0.01072,4.68634,0.0384
+1114,145.413,6.87695,5.16243,0.024864,0.388512,0.006752,0.005184,0.010688,4.69014,0.036288
+1115,127.936,7.81641,5.1593,0.02496,0.397312,0.008096,0.005568,0.01072,4.67578,0.036864
+1116,148.17,6.74902,5.16042,0.026304,0.385344,0.007584,0.004704,0.01024,4.6895,0.036736
+1117,113.778,8.78906,5.33309,0.02592,0.561504,0.006688,0.015872,0.01072,4.67542,0.03696
+1118,142.718,7.00684,5.24669,0.026176,0.455584,0.00768,0.004608,0.01024,4.70611,0.036288
+1119,137.302,7.2832,5.36784,0.026624,0.618336,0.006304,0.006144,0.01024,4.66326,0.036928
+1120,133.961,7.46484,5.22445,0.026624,0.44416,0.006432,0.005664,0.010688,4.69542,0.035456
+1121,112.503,8.88867,5.22931,0.025344,0.442016,0.006496,0.006144,0.01024,4.69805,0.041024
+1122,142.618,7.01172,5.19987,0.02656,0.435968,0.006464,0.00576,0.010624,4.67763,0.036864
+1123,137.118,7.29297,5.25091,0.026624,0.485312,0.006208,0.006144,0.01024,4.67923,0.037152
+1124,139.453,7.1709,5.20314,0.026464,0.413856,0.00624,0.005792,0.010496,4.7041,0.036192
+1125,142.837,7.00098,5.2255,0.026656,0.444384,0.007904,0.0056,0.010656,4.69238,0.03792
+1126,149.271,6.69922,5.18653,0.025536,0.434176,0.007296,0.004864,0.010368,4.66842,0.035872
+1127,141.3,7.07715,5.20598,0.024992,0.4464,0.006208,0.006144,0.01024,4.67354,0.038464
+1128,146.474,6.82715,5.18106,0.026592,0.434048,0.006304,0.005632,0.01072,4.66128,0.03648
+1129,139.948,7.14551,5.25722,0.026368,0.475104,0.006432,0.006144,0.01024,4.69606,0.036864
+1130,147.444,6.78223,5.19782,0.025952,0.430336,0.00656,0.005376,0.010752,4.68198,0.036864
+1131,141.008,7.0918,5.22662,0.026336,0.45088,0.007744,0.005568,0.010752,4.68838,0.03696
+1132,146.705,6.81641,5.20102,0.025632,0.432864,0.0064,0.005568,0.01072,4.68333,0.036512
+1133,142.937,6.99609,5.17987,0.025056,0.419328,0.006624,0.005728,0.010656,4.67558,0.036896
+1134,142.797,7.00293,5.19296,0.026272,0.423936,0.006496,0.00544,0.010784,4.68365,0.036384
+1135,145.434,6.87598,5.16845,0.025984,0.414528,0.007712,0.0056,0.01072,4.66586,0.038048
+1136,144.796,6.90625,5.16438,0.024576,0.403584,0.008,0.004288,0.01136,4.6761,0.03648
+1137,135.057,7.4043,5.2055,0.026624,0.436032,0.006336,0.006144,0.01136,4.68182,0.037184
+1138,143.057,6.99023,5.20358,0.025952,0.435168,0.007648,0.00464,0.01024,4.68339,0.036544
+1139,142.579,7.01367,5.3055,0.0256,0.538624,0.007744,0.004544,0.010272,4.6817,0.037024
+1140,141.809,7.05176,5.2224,0.02608,0.441952,0.007104,0.004096,0.012,4.69552,0.035648
+1141,148.298,6.74316,5.18419,0.02528,0.42352,0.00656,0.006144,0.010272,4.67546,0.03696
+1142,146.432,6.8291,5.19187,0.025856,0.434784,0.006496,0.005536,0.010752,4.67158,0.036864
+1143,142.738,7.00586,5.2224,0.026112,0.473536,0.006208,0.006144,0.01024,4.6633,0.036864
+1144,147.148,6.7959,5.18291,0.026048,0.410176,0.00752,0.004768,0.01024,4.68774,0.036416
+1145,146.098,6.84473,5.21014,0.025888,0.436768,0.006336,0.006144,0.01024,4.68736,0.037408
+1146,141.966,7.04395,5.18678,0.026624,0.423936,0.007424,0.004864,0.010272,4.67728,0.036384
+1147,145.786,6.85938,5.19222,0.025248,0.431808,0.006464,0.006144,0.01024,4.67504,0.03728
+1148,146.328,6.83398,5.14867,0.026208,0.391584,0.007456,0.004832,0.01024,4.67149,0.036864
+1149,139.548,7.16602,5.17738,0.026048,0.429632,0.007168,0.005568,0.01072,4.66118,0.037056
+1150,144.185,6.93555,5.20621,0.02656,0.424512,0.00736,0.004864,0.010304,4.69606,0.036544
+1151,144.674,6.91211,5.21242,0.024832,0.443456,0.007104,0.0056,0.010784,4.68378,0.036864
+1152,139.681,7.15918,5.29658,0.025024,0.534304,0.006368,0.005568,0.010752,4.67894,0.035616
+1153,144.96,6.89844,5.17939,0.026368,0.422176,0.007232,0.005024,0.011328,4.6704,0.036864
+1154,145.869,6.85547,5.19168,0.026624,0.43008,0.007776,0.004512,0.010272,4.67658,0.03584
+1155,141.066,7.08887,5.16282,0.026656,0.40496,0.006656,0.006016,0.0104,4.67101,0.03712
+1156,145.475,6.87402,5.18883,0.026624,0.42752,0.006656,0.005472,0.010848,4.67514,0.036576
+1157,140.544,7.11523,5.18515,0.02656,0.415808,0.007808,0.0056,0.010688,4.68141,0.03728
+1158,143.639,6.96191,5.18973,0.025536,0.427392,0.006752,0.005216,0.010752,4.67757,0.036512
+1159,149.097,6.70703,5.16096,0.025984,0.395616,0.006432,0.006144,0.01024,4.67936,0.037184
+1160,142.104,7.03711,5.21434,0.026336,0.434944,0.008064,0.004224,0.011424,4.69261,0.036736
+1161,141.907,7.04688,5.18912,0.026176,0.414144,0.00752,0.004768,0.011552,4.68794,0.037024
+1162,147.063,6.7998,5.19347,0.0248,0.423936,0.007968,0.00432,0.011456,4.68454,0.036448
+1163,138.21,7.23535,5.15686,0.0264,0.396576,0.007072,0.005568,0.010816,4.67357,0.036864
+1164,130.479,7.66406,5.20275,0.025376,0.454432,0.006368,0.005696,0.010688,4.6633,0.036896
+1165,143.458,6.9707,5.20349,0.026656,0.421856,0.007584,0.004704,0.011616,4.69264,0.038432
+1166,119.111,8.39551,5.20192,0.026624,0.411648,0.007296,0.004896,0.010336,4.70426,0.036864
+1167,154.38,6.47754,5.21494,0.025568,0.432128,0.007776,0.005568,0.01072,4.69642,0.036768
+1168,134.968,7.40918,5.26496,0.026624,0.485376,0.007232,0.004864,0.010464,4.69386,0.036544
+1169,146.432,6.8291,5.20938,0.026624,0.432128,0.007776,0.005568,0.010816,4.68954,0.036928
+1170,144.083,6.94043,5.29363,0.026624,0.512,0.007744,0.004544,0.011264,4.69485,0.036608
+1171,144.96,6.89844,5.21216,0.026496,0.454752,0.00752,0.0048,0.01152,4.66822,0.038848
+1172,132.368,7.55469,5.27974,0.026272,0.520544,0.007488,0.0048,0.011424,4.67235,0.036864
+1173,141.887,7.04785,5.2183,0.026624,0.452608,0.007936,0.0056,0.010752,4.67792,0.036864
+1174,136.062,7.34961,5.2208,0.025216,0.4456,0.006976,0.004096,0.01168,4.69053,0.036704
+1175,134.225,7.4502,5.21216,0.026592,0.436256,0.00768,0.004608,0.01184,4.68822,0.03696
+1176,132.3,7.55859,5.26573,0.025184,0.503808,0.00736,0.004864,0.010304,4.67747,0.036736
+1177,132.18,7.56543,5.23955,0.025344,0.479264,0.007744,0.0056,0.01072,4.67402,0.036864
+1178,134.436,7.43848,5.24288,0.0264,0.461024,0.007936,0.004352,0.011296,4.69501,0.036864
+1179,139.967,7.14453,5.19376,0.026624,0.417792,0.007872,0.0056,0.01072,4.68826,0.036896
+1180,142.282,7.02832,5.21952,0.02624,0.461216,0.008128,0.004128,0.011456,4.67174,0.036608
+1181,143.619,6.96289,5.23059,0.026176,0.444416,0.006592,0.006144,0.01024,4.70016,0.036864
+1182,122.312,8.17578,5.21706,0.025408,0.466336,0.006752,0.00576,0.010592,4.66534,0.036864
+1183,134.542,7.43262,5.28986,0.026624,0.536,0.00672,0.00592,0.010464,4.66691,0.037216
+1184,141.789,7.05273,5.31046,0.026592,0.527456,0.007104,0.014336,0.011712,4.6864,0.036864
+1185,114.452,8.7373,5.25366,0.026144,0.483584,0.006912,0.00576,0.010624,4.68378,0.036864
+1186,134.524,7.43359,5.39462,0.026624,0.616448,0.007264,0.004896,0.010368,4.69338,0.035648
+1187,138.772,7.20605,5.21251,0.024928,0.437504,0.006912,0.005824,0.01056,4.68992,0.036864
+1188,135.989,7.35352,5.25066,0.026432,0.483488,0.006496,0.00544,0.01072,4.68157,0.036512
+1189,135.217,7.39551,5.18374,0.02496,0.421056,0.006976,0.005664,0.01072,4.67763,0.036736
+1190,129.407,7.72754,5.17136,0.025152,0.41328,0.00656,0.005408,0.010752,4.67376,0.036448
+1191,140.332,7.12598,5.20186,0.026016,0.407488,0.007072,0.005568,0.010784,4.70771,0.037216
+1192,139.681,7.15918,5.22266,0.0248,0.454656,0.006208,0.005792,0.010528,4.68381,0.036864
+1193,143.217,6.98242,5.16506,0.02608,0.399904,0.007744,0.005568,0.010752,4.67814,0.036864
+1194,144.674,6.91211,5.18787,0.025376,0.41072,0.00688,0.004096,0.01168,4.69258,0.036544
+1195,140.37,7.12402,5.17037,0.026656,0.3968,0.006624,0.006144,0.01024,4.68582,0.03808
+1196,145.807,6.8584,5.20221,0.024992,0.419488,0.006496,0.005728,0.010656,4.69811,0.036736
+1197,138.397,7.22559,5.18637,0.025376,0.401408,0.007712,0.004576,0.011776,4.69853,0.036992
+1198,144.408,6.9248,5.1911,0.024992,0.40544,0.007808,0.00448,0.011456,4.70026,0.036672
+1199,133.385,7.49707,5.19478,0.025824,0.43264,0.006432,0.006144,0.01024,4.67558,0.03792
+1200,146.348,6.83301,5.22038,0.026624,0.423232,0.006848,0.005184,0.010752,4.71232,0.035424
+1201,143.598,6.96387,5.22349,0.026624,0.440128,0.006336,0.006144,0.010272,4.69603,0.037952
+1202,138.08,7.24219,5.21994,0.026432,0.431872,0.006592,0.005344,0.01072,4.70192,0.037056
+1203,145.848,6.85645,5.2001,0.026016,0.410432,0.007232,0.005056,0.011296,4.70314,0.036928
+1204,151.502,6.60059,5.21523,0.025376,0.429376,0.007072,0.004096,0.011616,4.70083,0.036864
+1205,141.163,7.08398,5.19018,0.025056,0.395296,0.00752,0.004736,0.011616,4.70906,0.036896
+1206,143.057,6.99023,5.22662,0.026592,0.434208,0.00752,0.004768,0.01024,4.70755,0.035744
+1207,141.417,7.07129,5.19264,0.025568,0.41776,0.00624,0.006048,0.010272,4.68906,0.037696
+1208,143.137,6.98633,5.18758,0.025952,0.408224,0.007296,0.004864,0.010368,4.69517,0.035712
+1209,141.927,7.0459,5.18323,0.02608,0.408448,0.007936,0.005568,0.010848,4.68605,0.038304
+1210,140.93,7.0957,5.24765,0.025248,0.444448,0.007968,0.004288,0.011328,4.71891,0.035456
+1211,137.063,7.2959,5.21763,0.026112,0.438784,0.007264,0.005024,0.011872,4.69034,0.03824
+1212,153.615,6.50977,5.16544,0.02496,0.395296,0.008064,0.00544,0.010688,4.68413,0.036864
+1213,117.27,8.52734,5.28294,0.026624,0.505856,0.007648,0.00464,0.011648,4.68851,0.038016
+1214,151.434,6.60352,5.23059,0.02624,0.458304,0.006976,0.004096,0.011648,4.68646,0.036864
+1215,133.229,7.50586,5.1864,0.02544,0.405504,0.007616,0.004672,0.011616,4.69456,0.036992
+1216,136.225,7.34082,5.25546,0.02496,0.497056,0.006752,0.005184,0.01088,4.67386,0.036768
+1217,144.633,6.91406,5.24304,0.026144,0.467584,0.007264,0.005024,0.011392,4.68838,0.037248
+1218,141.144,7.08496,5.2207,0.025344,0.440352,0.007488,0.004768,0.01024,4.6959,0.036608
+1219,142.579,7.01367,5.22877,0.026528,0.446784,0.008,0.005568,0.011008,4.69363,0.037248
+1220,142.499,7.01758,5.24083,0.025632,0.45712,0.00672,0.005312,0.01072,4.69846,0.036864
+1221,142.262,7.0293,5.2183,0.025824,0.41984,0.006976,0.005664,0.010688,4.71245,0.036864
+1222,148.686,6.72559,5.22221,0.026304,0.43248,0.007264,0.004864,0.010368,4.70426,0.036672
+1223,127.189,7.8623,5.29661,0.025536,0.517632,0.006656,0.006016,0.010368,4.69312,0.03728
+1224,141.71,7.05664,5.21936,0.026624,0.44176,0.006784,0.005152,0.01072,4.69158,0.036736
+1225,144.164,6.93652,5.21626,0.026624,0.437824,0.006592,0.006144,0.010272,4.69178,0.037024
+1226,140.737,7.10547,5.19581,0.025696,0.416704,0.007616,0.00464,0.01024,4.69405,0.036864
+1227,144.104,6.93945,5.216,0.025952,0.44528,0.007648,0.004608,0.01168,4.68403,0.0368
+1228,144.899,6.90137,5.31517,0.025184,0.554304,0.006816,0.005152,0.010688,4.67616,0.036864
+1229,141.144,7.08496,5.21629,0.026368,0.448768,0.007904,0.005568,0.010752,4.68003,0.036896
+1230,136.007,7.35254,5.21043,0.026208,0.416416,0.00624,0.005792,0.010592,4.70832,0.036864
+1231,140.717,7.10645,5.24448,0.026208,0.477504,0.006272,0.006144,0.01024,4.68125,0.036864
+1232,128.16,7.80273,5.22438,0.025248,0.448544,0.007296,0.004704,0.010496,4.69174,0.036352
+1233,139.738,7.15625,5.16506,0.026624,0.405504,0.008096,0.0056,0.010688,4.67104,0.037504
+1234,142.817,7.00195,5.22589,0.026624,0.429568,0.006656,0.005312,0.01072,4.71021,0.0368
+1235,142.124,7.03613,5.20192,0.026624,0.41984,0.007968,0.0056,0.010816,4.69395,0.03712
+1236,142.143,7.03516,5.19613,0.025152,0.429152,0.00704,0.004128,0.011584,4.68243,0.03664
+1237,145.269,6.88379,5.19827,0.026272,0.415936,0.00672,0.006016,0.010368,4.69606,0.036896
+1238,142.222,7.03125,5.20611,0.025024,0.42976,0.006464,0.005472,0.01072,4.69213,0.036544
+1239,144.246,6.93262,5.19888,0.026464,0.43152,0.006912,0.00576,0.010624,4.67971,0.037888
+1240,147.55,6.77734,5.23418,0.026336,0.422176,0.007584,0.004704,0.01024,4.72624,0.036896
+1241,124.529,8.03027,5.36986,0.026656,0.571296,0.00624,0.006112,0.01024,4.71245,0.036864
+1242,145.786,6.85938,5.22854,0.0264,0.444224,0.00656,0.005376,0.010784,4.69958,0.035616
+1243,140.293,7.12793,5.23645,0.026656,0.432096,0.007936,0.005568,0.01072,4.71638,0.037088
+1244,137.801,7.25684,5.28832,0.025536,0.507904,0.007904,0.004384,0.0104,4.6959,0.036288
+1245,143.558,6.96582,5.23043,0.026624,0.441888,0.006624,0.006016,0.010368,4.70016,0.038752
+1246,141.554,7.06445,5.21885,0.025152,0.43824,0.007488,0.0048,0.01024,4.69754,0.035392
+1247,138.061,7.24316,5.24989,0.025472,0.47312,0.006208,0.006144,0.01024,4.69158,0.03712
+1248,144.715,6.91016,5.22714,0.025216,0.442368,0.007904,0.004384,0.0104,4.70128,0.035584
+1249,138.21,7.23535,5.25056,0.026624,0.436128,0.00624,0.006144,0.01024,4.72787,0.037312
+1250,141.261,7.0791,5.24493,0.02608,0.459296,0.008032,0.004256,0.011392,4.69901,0.036864
+1251,144.715,6.91016,5.19568,0.026208,0.42176,0.006688,0.005984,0.0104,4.68698,0.037664
+1252,144.796,6.90625,5.18573,0.024768,0.413696,0.008,0.004288,0.01024,4.68906,0.03568
+1253,135.539,7.37793,5.21827,0.026208,0.434816,0.00736,0.004896,0.011392,4.69491,0.038688
+1254,144.572,6.91699,5.20726,0.026624,0.410688,0.007104,0.004096,0.011616,4.71075,0.036384
+1255,129.032,7.75,5.21469,0.02624,0.41456,0.008096,0.005568,0.010848,4.71251,0.036864
+1256,138.622,7.21387,5.31504,0.025568,0.52224,0.007328,0.004896,0.010304,4.70835,0.036352
+1257,143.679,6.95996,5.2215,0.026016,0.408064,0.00624,0.006144,0.01024,4.72678,0.038016
+1258,137.247,7.28613,5.20694,0.025504,0.417728,0.00624,0.005696,0.010656,4.70429,0.036832
+1259,139.814,7.15234,5.32464,0.026336,0.508192,0.007744,0.005568,0.010784,4.72845,0.037568
+1260,140.601,7.1123,5.30432,0.026528,0.501888,0.007232,0.004896,0.010368,4.71776,0.035648
+1261,142.46,7.01953,5.22557,0.025984,0.438944,0.008032,0.005568,0.01072,4.69965,0.036672
+1262,136.716,7.31445,5.27581,0.02592,0.468928,0.007072,0.005472,0.010688,4.72086,0.036864
+1263,141.868,7.04883,5.31088,0.024992,0.520192,0.007232,0.005056,0.010432,4.70518,0.037792
+1264,137.653,7.26465,5.39696,0.025184,0.62368,0.007104,0.004096,0.011488,4.68848,0.036928
+1265,128.08,7.80762,5.22854,0.026208,0.450976,0.007712,0.004576,0.011712,4.68976,0.0376
+1266,133.403,7.49609,5.22499,0.02512,0.415008,0.00688,0.004096,0.011744,4.72528,0.036864
+1267,133.664,7.48145,5.20992,0.025888,0.439232,0.007776,0.005568,0.010752,4.68221,0.038496
+1268,139.358,7.17578,5.2896,0.02592,0.512896,0.006208,0.00576,0.01056,4.69158,0.036672
+1269,140.679,7.1084,5.27974,0.026656,0.485344,0.007424,0.004864,0.011456,4.70646,0.037536
+1270,143.097,6.98828,5.20138,0.025696,0.402208,0.006272,0.005696,0.010688,4.71446,0.036352
+1271,138.566,7.2168,5.28794,0.026624,0.480736,0.006688,0.006048,0.010368,4.72058,0.036896
+1272,132.677,7.53711,5.30493,0.025184,0.515552,0.006688,0.005248,0.010752,4.70464,0.036864
+1273,134.719,7.42285,5.21216,0.026656,0.430048,0.00784,0.005568,0.01632,4.68886,0.036864
+1274,133.073,7.51465,5.31661,0.026528,0.515488,0.006848,0.004096,0.011808,4.71498,0.036864
+1275,145.372,6.87891,5.22154,0.026656,0.392512,0.006656,0.005568,0.01072,4.74269,0.036736
+1276,129.13,7.74414,5.21626,0.026624,0.396832,0.006624,0.005376,0.01072,4.73322,0.036864
+1277,146.663,6.81836,5.21952,0.026624,0.409024,0.00672,0.005856,0.010528,4.72384,0.036928
+1278,131.687,7.59375,5.22592,0.024576,0.43008,0.007648,0.00464,0.01024,4.70016,0.048576
+1279,144.002,6.94434,5.21846,0.025408,0.404832,0.006816,0.005856,0.010528,4.72835,0.036672
+1280,128.805,7.76367,5.2736,0.026304,0.473152,0.006496,0.005472,0.010784,4.68762,0.063776
+1281,135.128,7.40039,5.21427,0.02608,0.430816,0.007712,0.004576,0.011712,4.696,0.037376
+1282,120.598,8.29199,5.2201,0.026304,0.422336,0.007616,0.004672,0.01024,4.71245,0.03648
+1283,134.577,7.43066,5.22858,0.025984,0.426624,0.007488,0.0048,0.01152,4.71526,0.036896
+1284,141.515,7.06641,5.21981,0.024704,0.430176,0.007968,0.004224,0.011424,4.7049,0.036416
+1285,144.002,6.94434,5.20538,0.024832,0.405056,0.006592,0.006016,0.010368,4.7145,0.038016
+1286,138.998,7.19434,5.21626,0.026112,0.428384,0.006304,0.005632,0.010752,4.70333,0.035744
+1287,143.157,6.98535,5.20989,0.026624,0.421888,0.008064,0.005568,0.010752,4.69994,0.037056
+1288,145.973,6.85059,5.25213,0.025984,0.465568,0.007264,0.004896,0.010368,4.70122,0.036832
+1289,145.042,6.89453,5.2313,0.025344,0.454656,0.007712,0.005568,0.01072,4.68973,0.037568
+1290,148.127,6.75098,5.21216,0.026592,0.4136,0.006272,0.00576,0.010656,4.71357,0.035712
+1291,147.636,6.77344,5.19171,0.026336,0.40768,0.006304,0.006144,0.01024,4.69811,0.036896
+1292,140.775,7.10352,5.23958,0.025376,0.458272,0.006624,0.005344,0.010752,4.69638,0.036832
+1293,139.852,7.15039,5.21754,0.02624,0.401824,0.008032,0.0056,0.01072,4.72698,0.038144
+1294,142.479,7.01855,5.19376,0.026528,0.399232,0.006368,0.005632,0.01072,4.70982,0.035456
+1295,122.811,8.14258,5.32205,0.026592,0.512032,0.00752,0.015008,0.011968,4.71072,0.038208
+1296,145.517,6.87207,5.21011,0.026432,0.40496,0.00688,0.005408,0.01072,4.72,0.035712
+1297,118.027,8.47266,5.20275,0.025408,0.403136,0.006432,0.006144,0.01024,4.7145,0.036896
+1298,145.413,6.87695,5.22445,0.026528,0.437856,0.006656,0.00528,0.01072,4.70058,0.036832
+1299,128.514,7.78125,5.21126,0.02608,0.418208,0.006272,0.006144,0.010272,4.70627,0.038016
+1300,146.098,6.84473,5.23267,0.026624,0.441504,0.007008,0.004096,0.01168,4.7049,0.036864
+1301,140.101,7.1377,5.2856,0.026656,0.447808,0.006816,0.005728,0.010688,4.75043,0.037472
+1302,136.935,7.30273,5.2695,0.026624,0.460448,0.006496,0.00544,0.010752,4.72288,0.036864
+1303,145.994,6.84961,5.23878,0.026176,0.457152,0.0072,0.005088,0.011552,4.69424,0.037376
+1304,127.856,7.82129,5.37622,0.02512,0.546528,0.018176,0.004608,0.026624,4.71859,0.036576
+1305,128.305,7.79395,5.21498,0.025344,0.405504,0.008,0.0056,0.010752,4.72013,0.039648
+1306,132.66,7.53809,5.1703,0.026624,0.384032,0.007136,0.004096,0.011552,4.70048,0.036384
+1307,117.864,8.48438,5.22653,0.026176,0.403648,0.006688,0.00608,0.010304,4.73606,0.037568
+1308,143.057,6.99023,5.17558,0.02624,0.391584,0.0064,0.005568,0.010816,4.69811,0.036864
+1309,119.139,8.39355,5.26394,0.026176,0.461056,0.006912,0.005824,0.01056,4.70016,0.053248
+1310,142.997,6.99316,5.23261,0.026624,0.413696,0.00784,0.004448,0.010336,4.73283,0.036832
+1311,107.733,9.28223,5.24186,0.030592,0.422016,0.008,0.005568,0.010752,4.72707,0.037856
+1312,155.741,6.4209,5.19603,0.026048,0.402112,0.006272,0.00576,0.010624,4.70851,0.036704
+1313,134.471,7.43652,5.28605,0.024736,0.499712,0.007648,0.00464,0.01168,4.70032,0.037312
+1314,141.047,7.08984,5.24493,0.026464,0.444576,0.00736,0.004896,0.010272,4.7145,0.036864
+1315,116.642,8.57324,5.424,0.025472,0.597696,0.006464,0.006144,0.01024,4.74112,0.036864
+1316,141.986,7.04297,5.21891,0.025152,0.41776,0.007296,0.004864,0.0104,4.71808,0.03536
+1317,130.679,7.65234,5.22029,0.02496,0.417568,0.006368,0.006144,0.01024,4.71654,0.038464
+1318,142.045,7.04004,5.21971,0.02608,0.425952,0.007072,0.004128,0.011488,4.7071,0.037888
+1319,146.411,6.83008,5.19523,0.025984,0.413888,0.006592,0.006112,0.010272,4.6952,0.037184
+1320,142.499,7.01758,5.21552,0.026016,0.415872,0.006624,0.00544,0.010816,4.71437,0.036384
+1321,101.708,9.83203,5.22624,0.025312,0.445568,0.00704,0.005632,0.010688,4.69203,0.039968
+1322,149.097,6.70703,5.23462,0.025952,0.436352,0.006752,0.005216,0.010752,4.71235,0.037248
+1323,142.519,7.0166,5.20806,0.026624,0.406944,0.006752,0.006016,0.010368,4.71421,0.037152
+1324,144.755,6.9082,5.2081,0.026144,0.3968,0.007136,0.004096,0.011616,4.72541,0.036896
+1325,135.182,7.39746,5.3015,0.026592,0.48112,0.006336,0.016384,0.011552,4.71024,0.04928
+1326,131.114,7.62695,5.27418,0.025184,0.472128,0.007072,0.004096,0.011648,4.71856,0.035488
+1327,134.172,7.45312,5.22502,0.026592,0.436448,0.006528,0.006112,0.010272,4.70144,0.037632
+1328,138.923,7.19824,5.36202,0.025984,0.562144,0.007648,0.00464,0.01024,4.71552,0.03584
+1329,117.701,8.49609,5.22445,0.02592,0.428352,0.006528,0.006144,0.01024,4.7096,0.037664
+1330,143.137,6.98633,5.20531,0.025728,0.409696,0.006944,0.004096,0.011616,4.71056,0.036672
+1331,143.297,6.97852,5.19974,0.02624,0.40928,0.006848,0.005472,0.010688,4.70374,0.037472
+1332,144.796,6.90625,5.19533,0.0264,0.405152,0.00672,0.005248,0.010752,4.70429,0.036768
+1333,139.263,7.18066,5.23904,0.026112,0.428192,0.006752,0.00592,0.010464,4.72474,0.036864
+1334,146.958,6.80469,5.23469,0.026336,0.40784,0.007232,0.004896,0.0104,4.74112,0.036864
+1335,147,6.80273,5.21376,0.026528,0.41584,0.007232,0.005056,0.011392,4.71091,0.0368
+1336,141.613,7.06152,5.22106,0.02528,0.429824,0.0064,0.005504,0.010784,4.70806,0.0352
+1337,144.205,6.93457,5.21606,0.026592,0.423776,0.006336,0.006144,0.010272,4.70422,0.03872
+1338,130.796,7.64551,5.89008,0.026624,1.0912,0.006528,0.00544,0.010784,4.71261,0.036896
+1339,143.962,6.94629,5.21203,0.025472,0.413696,0.007712,0.004576,0.011808,4.71091,0.037856
+1340,142.202,7.03223,5.20259,0.025248,0.415008,0.00688,0.004096,0.011744,4.70275,0.036864
+1341,144.858,6.90332,5.18349,0.026112,0.403712,0.0064,0.006144,0.0104,4.69386,0.036864
+1342,141.927,7.0459,5.20208,0.025824,0.38384,0.006208,0.005792,0.010592,4.73293,0.036896
+1343,144.144,6.9375,5.18768,0.024736,0.3928,0.00656,0.005984,0.0104,4.70998,0.037216
+1344,147.211,6.79297,5.19782,0.025984,0.387712,0.00768,0.004608,0.01024,4.72474,0.036864
+1345,145.289,6.88281,5.18186,0.031488,0.388512,0.006752,0.006048,0.010336,4.70205,0.036672
+1346,146.6,6.82129,5.20064,0.025504,0.39936,0.008064,0.004224,0.011456,4.70918,0.042848
+1347,139.662,7.16016,5.21405,0.026624,0.423936,0.008096,0.004192,0.011392,4.70278,0.037024
+1348,145.372,6.87891,5.21843,0.025952,0.417664,0.007072,0.004096,0.01168,4.71622,0.035744
+1349,142.341,7.02539,5.20528,0.026624,0.402752,0.006848,0.00576,0.010624,4.71443,0.03824
+1350,149.01,6.71094,5.21078,0.025344,0.411648,0.00768,0.004608,0.01024,4.7145,0.036768
+1351,145.186,6.8877,5.18669,0.026624,0.407008,0.006688,0.006016,0.010368,4.69197,0.038016
+1352,142.539,7.01562,5.19795,0.025184,0.404544,0.007072,0.004128,0.011552,4.7089,0.036576
+1353,101.638,9.83887,5.19782,0.026656,0.414912,0.006944,0.005728,0.010656,4.69565,0.03728
+1354,136.624,7.31934,5.22656,0.026176,0.415456,0.006944,0.004096,0.011712,4.72538,0.0368
+1355,147.021,6.80176,5.30611,0.026304,0.501408,0.006816,0.00592,0.010464,4.71853,0.036672
+1356,144.002,6.94434,5.24694,0.026656,0.445728,0.006848,0.004096,0.01168,4.7151,0.036832
+1357,143.719,6.95801,5.19347,0.026112,0.413504,0.006848,0.0056,0.01072,4.69203,0.038656
+1358,144.796,6.90625,5.23117,0.025152,0.446048,0.00656,0.005952,0.010432,4.70134,0.03568
+1359,139.149,7.18652,5.32275,0.026304,0.536128,0.006912,0.00592,0.010464,4.70016,0.036864
+1360,135.128,7.40039,5.32746,0.025152,0.50176,0.007648,0.00464,0.01024,4.74234,0.03568
+1361,117.769,8.49121,5.34733,0.026304,0.527712,0.007104,0.005568,0.010624,4.73315,0.036864
+1362,120.983,8.26562,5.3216,0.025472,0.538592,0.006176,0.005824,0.010592,4.69808,0.036864
+1363,131.349,7.61328,5.34323,0.026112,0.51648,0.006272,0.006144,0.010272,4.74109,0.036864
+1364,144.002,6.94434,5.17875,0.024992,0.405024,0.006528,0.005536,0.01072,4.68938,0.036576
+1365,144.858,6.90332,5.19296,0.036864,0.382112,0.007008,0.005696,0.01072,4.71357,0.036992
+1366,136.297,7.33691,5.25722,0.026624,0.460256,0.006688,0.016352,0.010336,4.70147,0.035488
+1367,123.776,8.0791,5.34538,0.024672,0.550848,0.00624,0.006112,0.010304,4.71142,0.035776
+1368,141.027,7.09082,5.34227,0.034816,0.509984,0.007808,0.004448,0.01024,4.73878,0.036192
+1369,137.505,7.27246,5.25062,0.026624,0.44032,0.007424,0.004864,0.011456,4.72298,0.03696
+1370,130.629,7.65527,5.19325,0.025728,0.394208,0.007744,0.004512,0.010272,4.71414,0.03664
+1371,143.077,6.98926,5.2304,0.026624,0.436224,0.008096,0.005568,0.010752,4.7056,0.037536
+1372,146.684,6.81738,5.23443,0.025248,0.439904,0.006464,0.005696,0.010688,4.70998,0.036448
+1373,143.699,6.95898,5.24966,0.025216,0.42192,0.007776,0.0056,0.01072,4.74099,0.03744
+1374,141.241,7.08008,5.27734,0.025952,0.4776,0.0064,0.005696,0.010688,4.7145,0.036512
+1375,135.989,7.35352,5.21664,0.024992,0.440288,0.007584,0.004704,0.011648,4.68986,0.037568
+1376,139.206,7.18359,5.27728,0.025984,0.484992,0.007072,0.004192,0.011488,4.70688,0.036672
+1377,141.417,7.07129,5.24589,0.025504,0.458656,0.00624,0.006144,0.01024,4.70221,0.036896
+1378,145.434,6.87598,5.24256,0.026624,0.44,0.006464,0.005536,0.010784,4.71661,0.036544
+1379,139.055,7.19141,5.28186,0.025248,0.4608,0.007552,0.004736,0.011552,4.73366,0.038304
+1380,126.295,7.91797,5.30166,0.02592,0.494272,0.008032,0.004256,0.01136,4.72157,0.036256
+1381,130.214,7.67969,5.27974,0.02608,0.47696,0.006912,0.005664,0.010688,4.71658,0.036864
+1382,137.118,7.29297,5.21005,0.026144,0.408064,0.007328,0.004864,0.010304,4.71648,0.036864
+1383,137.857,7.25391,5.20957,0.026176,0.414592,0.007168,0.00512,0.010368,4.70938,0.036768
+1384,142.479,7.01855,5.24192,0.026592,0.44448,0.007648,0.004608,0.01024,4.71174,0.036608
+1385,142.064,7.03906,5.23062,0.0264,0.42656,0.007968,0.005568,0.010752,4.71674,0.03664
+1386,145.682,6.86426,5.22237,0.026304,0.422208,0.007584,0.004704,0.01024,4.7145,0.036832
+1387,144.47,6.92188,5.2265,0.026624,0.452608,0.007392,0.004896,0.011424,4.68669,0.036864
+1388,143.982,6.94531,5.25686,0.025824,0.446816,0.006784,0.00528,0.010752,4.72454,0.036864
+1389,144.266,6.93164,5.20621,0.026336,0.413632,0.006848,0.005824,0.01056,4.70598,0.037024
+1390,142.738,7.00586,5.26141,0.026656,0.456672,0.008192,0.004096,0.011648,4.71837,0.035776
+1391,139.929,7.14648,5.2097,0.026624,0.409184,0.006592,0.00608,0.010272,4.71421,0.036736
+1392,146.558,6.82324,5.22845,0.02544,0.411136,0.006656,0.005312,0.01072,4.73283,0.036352
+1393,141.261,7.0791,5.26186,0.025216,0.454592,0.007488,0.004768,0.011616,4.72128,0.036896
+1394,144.981,6.89746,5.18861,0.0256,0.405536,0.007424,0.004832,0.01024,4.69811,0.036864
+1395,134.454,7.4375,5.24707,0.025152,0.447904,0.00672,0.006144,0.010304,4.71376,0.037088
+1396,146.307,6.83496,5.23866,0.025984,0.423936,0.00688,0.004096,0.011712,4.72941,0.03664
+1397,143.117,6.9873,5.18758,0.026624,0.407552,0.008032,0.005568,0.010688,4.69226,0.036864
+1398,146.474,6.82715,5.23469,0.026592,0.449728,0.007008,0.004096,0.011424,4.69904,0.0368
+1399,144.449,6.92285,5.21226,0.025888,0.424768,0.006208,0.00608,0.010336,4.70211,0.036864
+1400,143.397,6.97363,5.22477,0.025088,0.424992,0.007136,0.004096,0.011488,4.7153,0.036672
+1401,142.479,7.01855,5.22854,0.02656,0.41376,0.007712,0.004576,0.011744,4.72733,0.036864
+1402,141.534,7.06543,5.2551,0.025504,0.437472,0.006944,0.004096,0.011584,4.7336,0.035904
+1403,141.789,7.05273,5.18915,0.025888,0.389728,0.0064,0.006144,0.01024,4.71395,0.0368
+1404,140.12,7.13672,5.18723,0.025344,0.399104,0.00624,0.005696,0.010688,4.70349,0.036672
+1405,135.36,7.3877,5.21216,0.026624,0.42704,0.007072,0.005568,0.010752,4.69779,0.037312
+1406,146.958,6.80469,5.21014,0.026336,0.41136,0.00672,0.00528,0.010752,4.7128,0.036896
+1407,148.363,6.74023,5.19187,0.024992,0.401408,0.008,0.005568,0.010784,4.70416,0.03696
+1408,145.641,6.86621,5.20013,0.026208,0.402144,0.00784,0.004448,0.010336,4.71235,0.0368
+1409,132.608,7.54102,5.22458,0.02496,0.427232,0.006944,0.005696,0.010688,4.71222,0.036832
+1410,143.017,6.99219,5.23766,0.025504,0.423392,0.006688,0.005568,0.010688,4.72224,0.043584
+1411,143.377,6.97461,5.22707,0.025184,0.434144,0.007424,0.004864,0.011456,4.70714,0.036864
+1412,146.768,6.81348,5.21194,0.026464,0.405088,0.006752,0.00576,0.010624,4.72061,0.03664
+1413,143.619,6.96289,5.21837,0.026048,0.424512,0.007584,0.004704,0.01168,4.70691,0.036928
+1414,143.417,6.97266,5.24083,0.026304,0.42352,0.00688,0.004128,0.011712,4.73142,0.036864
+1415,145.89,6.85449,5.20614,0.025888,0.41152,0.007104,0.005568,0.010752,4.70746,0.037856
+1416,145.517,6.87207,5.20947,0.026624,0.41296,0.00688,0.004096,0.011648,4.71104,0.036224
+1417,139.91,7.14746,5.27718,0.026336,0.4608,0.006432,0.006144,0.01024,4.73008,0.037152
+1418,126.937,7.87793,5.2689,0.026624,0.48128,0.007712,0.004576,0.01024,4.70179,0.036672
+1419,138.735,7.20801,5.23059,0.026656,0.442336,0.007264,0.005024,0.011264,4.70045,0.0376
+1420,140.544,7.11523,5.1993,0.026528,0.417888,0.007392,0.004896,0.01024,4.6959,0.036448
+1421,138.36,7.22754,5.24288,0.026624,0.46032,0.006624,0.006048,0.010336,4.69526,0.037664
+1422,133.49,7.49121,5.86534,0.02656,1.08685,0.006848,0.004096,0.01168,4.69254,0.036768
+1423,140.025,7.1416,5.22922,0.025248,0.44624,0.006368,0.006144,0.01024,4.69811,0.036864
+1424,146.244,6.83789,5.25328,0.025376,0.464896,0.00768,0.004608,0.01024,4.704,0.03648
+1425,140.005,7.14258,5.22413,0.026112,0.433088,0.007392,0.004864,0.011424,4.70307,0.038176
+1426,134.826,7.41699,5.25821,0.025536,0.462432,0.00656,0.005376,0.010848,4.71059,0.036864
+1427,139.055,7.19141,5.22701,0.025088,0.446464,0.007968,0.0056,0.010784,4.69414,0.03696
+1428,139.624,7.16211,5.32138,0.025248,0.507904,0.007936,0.004352,0.0104,4.72867,0.036864
+1429,127.888,7.81934,5.17024,0.026048,0.401984,0.008032,0.005568,0.01072,4.67942,0.038464
+1430,138.847,7.20215,5.16902,0.0264,0.385248,0.007392,0.004896,0.01024,4.69802,0.036832
+1431,139.967,7.14453,5.16714,0.0264,0.387296,0.007232,0.005056,0.01136,4.69277,0.037024
+1432,143.498,6.96875,5.1712,0.026368,0.393472,0.006208,0.00576,0.010592,4.69325,0.035552
+1433,142.064,7.03906,5.17757,0.024992,0.394048,0.007168,0.0056,0.010688,4.69206,0.043008
+1434,136.261,7.33887,5.17456,0.026432,0.3888,0.00672,0.00528,0.010688,4.69997,0.036672
+1435,141.613,7.06152,5.22352,0.026176,0.411264,0.006976,0.005664,0.010752,4.7247,0.037984
+1436,140.64,7.11035,5.17952,0.026496,0.401536,0.007168,0.004896,0.010496,4.69318,0.035744
+1437,142.579,7.01367,5.18963,0.026496,0.40768,0.007584,0.004704,0.011584,4.6943,0.03728
+1438,147,6.80273,5.17802,0.025568,0.405504,0.008032,0.004256,0.011392,4.68672,0.036544
+1439,144.246,6.93262,5.19014,0.025568,0.403456,0.007904,0.0056,0.010784,4.69974,0.037088
+1440,144.837,6.9043,5.20608,0.024672,0.417632,0.006272,0.005792,0.010592,4.70426,0.036864
+1441,139.891,7.14844,5.23056,0.024768,0.458176,0.00672,0.005952,0.010432,4.68765,0.036864
+1442,144.735,6.90918,5.18963,0.025792,0.404288,0.007616,0.004672,0.01024,4.70016,0.036864
+1443,144.449,6.92285,5.18992,0.026208,0.403712,0.006624,0.00608,0.010272,4.69997,0.037056
+1444,140.621,7.11133,5.21629,0.026624,0.43008,0.007648,0.00464,0.01024,4.70016,0.036896
+1445,141.946,7.04492,5.20602,0.026304,0.436544,0.007168,0.00512,0.010336,4.68368,0.036864
+1446,145.827,6.85742,5.19552,0.025056,0.419808,0.008032,0.004256,0.01136,4.69078,0.036224
+1447,143.177,6.98438,5.17984,0.024992,0.41936,0.006624,0.006016,0.010368,4.67558,0.036896
+1448,146.537,6.82422,5.18179,0.025952,0.41472,0.008,0.004288,0.01024,4.68282,0.035776
+1449,140.814,7.10156,5.18915,0.026624,0.41072,0.007072,0.0056,0.01072,4.69002,0.0384
+1450,135.378,7.38672,5.25107,0.026624,0.479232,0.008,0.004288,0.01136,4.68589,0.03568
+1451,144.225,6.93359,5.2023,0.025376,0.423552,0.006528,0.006112,0.010272,4.69328,0.037184
+1452,135.199,7.39648,5.19213,0.0264,0.428704,0.007552,0.004736,0.01024,4.67763,0.036864
+1453,137.579,7.26855,5.21574,0.026144,0.446944,0.007168,0.00512,0.010272,4.6817,0.0384
+1454,148.902,6.71582,5.16538,0.026464,0.398048,0.00736,0.004864,0.010304,4.68173,0.036608
+1455,145.145,6.88965,5.19514,0.026048,0.422464,0.007392,0.004896,0.011456,4.68621,0.036672
+1456,145.269,6.88379,5.2303,0.02608,0.463392,0.007904,0.004384,0.010368,4.6816,0.036576
+1457,148.212,6.74707,5.18147,0.026368,0.416,0.00752,0.004768,0.011488,4.67824,0.037088
+1458,146.453,6.82812,5.18394,0.025024,0.417824,0.007552,0.004704,0.01024,4.68173,0.036864
+1459,145.248,6.88477,5.17734,0.026496,0.411776,0.00768,0.00464,0.011712,4.67818,0.036864
+1460,130.032,7.69043,5.14717,0.025216,0.394944,0.006464,0.005504,0.01072,4.66662,0.037696
+1461,131.215,7.62109,5.19478,0.026624,0.440224,0.00624,0.006144,0.01024,4.66739,0.03792
+1462,132.78,7.53125,5.2113,0.026624,0.439616,0.006848,0.00592,0.010496,4.68518,0.036608
+1463,145.022,6.89551,5.19274,0.026624,0.414784,0.007072,0.005568,0.01072,4.69018,0.037792
+1464,145.724,6.8623,5.18144,0.026496,0.41936,0.006752,0.005184,0.01072,4.67718,0.035744
+1465,144.592,6.91602,5.18461,0.026624,0.415424,0.006464,0.006144,0.01024,4.6817,0.038016
+1466,146.558,6.82324,5.15891,0.02608,0.395808,0.006144,0.005792,0.010592,4.67763,0.036864
+1467,144.796,6.90625,5.22429,0.025728,0.464832,0.007072,0.005568,0.010784,4.67296,0.037344
+1468,134.613,7.42871,5.17971,0.026048,0.414592,0.006304,0.005728,0.010496,4.67968,0.036864
+1469,145.827,6.85742,5.17213,0.025504,0.405504,0.00768,0.004608,0.011712,4.67971,0.037408
+1470,147.55,6.77734,5.1783,0.025536,0.408768,0.006976,0.004096,0.011616,4.68445,0.036864
+1471,144.327,6.92871,5.18362,0.026304,0.42,0.006432,0.006144,0.01024,4.67706,0.03744
+1472,143.719,6.95801,5.19171,0.025824,0.4104,0.007936,0.004352,0.010464,4.69584,0.036896
+1473,144.47,6.92188,5.1671,0.026624,0.4096,0.008128,0.005568,0.010784,4.66954,0.036864
+1474,139.017,7.19336,5.26253,0.026656,0.48272,0.00672,0.02048,0.011456,4.67795,0.036544
+1475,130.048,7.68945,5.2367,0.025824,0.463648,0.006336,0.00608,0.016128,4.68109,0.0376
+1476,148.449,6.73633,5.1641,0.02624,0.40384,0.007808,0.00448,0.011808,4.67389,0.036032
+1477,124.242,8.04883,5.41491,0.026624,0.624544,0.00624,0.006144,0.01024,4.70016,0.04096
+1478,136.152,7.34473,5.23405,0.025824,0.447264,0.007968,0.00432,0.011328,4.7007,0.03664
+1479,119.85,8.34375,5.20534,0.026656,0.436,0.006336,0.006144,0.01024,4.68173,0.03824
+1480,143.217,6.98242,5.19245,0.025376,0.423584,0.006496,0.005472,0.01072,4.68397,0.036832
+1481,142.163,7.03418,5.14701,0.026048,0.391392,0.006848,0.005824,0.01056,4.66883,0.037504
+1482,141.476,7.06836,5.18352,0.025696,0.418368,0.006496,0.00544,0.010688,4.67994,0.036896
+1483,143.117,6.9873,5.17946,0.026016,0.404096,0.008192,0.005664,0.01072,4.68749,0.03728
+1484,145.166,6.88867,5.16771,0.025344,0.387008,0.006208,0.005728,0.010656,4.69533,0.03744
+1485,148.535,6.73242,5.14842,0.026624,0.382976,0.007776,0.005568,0.01072,4.6761,0.038656
+1486,145.31,6.88184,5.17661,0.026432,0.403392,0.0064,0.00576,0.010656,4.68707,0.036896
+1487,143.962,6.94629,5.13501,0.025472,0.39072,0.006592,0.00608,0.010304,4.65718,0.038656
+1488,147.063,6.7998,5.14448,0.026016,0.391264,0.006912,0.004096,0.011648,4.66803,0.036512
+1489,143.437,6.97168,5.15942,0.025088,0.403008,0.006592,0.006144,0.01024,4.67091,0.03744
+1490,133.944,7.46582,5.12925,0.025504,0.388928,0.006336,0.005472,0.010752,4.65654,0.035712
+1491,142.499,7.01758,5.12435,0.0248,0.38912,0.00784,0.0056,0.010784,4.64909,0.03712
+1492,136.461,7.32812,5.18717,0.025984,0.43232,0.006592,0.005664,0.010752,4.66941,0.036448
+1493,144.266,6.93164,5.13862,0.025472,0.37824,0.006752,0.005792,0.010592,4.67354,0.03824
+1494,149.511,6.68848,5.16355,0.026144,0.408,0.00672,0.00512,0.01072,4.66995,0.036896
+1495,146.14,6.84277,5.15072,0.026272,0.396928,0.00688,0.005792,0.010592,4.66675,0.037504
+1496,143.901,6.94922,5.17699,0.024608,0.402688,0.006912,0.004096,0.011712,4.69046,0.036512
+1497,139.719,7.15723,5.16512,0.025248,0.428064,0.007456,0.0048,0.011552,4.6497,0.038304
+1498,143.659,6.96094,5.17898,0.026528,0.43008,0.00784,0.004448,0.010304,4.66323,0.036544
+1499,144.796,6.90625,5.15072,0.025184,0.392576,0.006784,0.005856,0.010528,4.67149,0.038304
+1500,146.6,6.82129,5.1361,0.026656,0.395232,0.008032,0.004256,0.011488,4.65386,0.036576
+1501,142.222,7.03125,5.16301,0.0264,0.41392,0.007968,0.005568,0.010752,4.66154,0.036864
+1502,148.621,6.72852,5.16304,0.026624,0.411648,0.007168,0.004864,0.010496,4.66534,0.036896
+1503,148.127,6.75098,5.14038,0.025376,0.392448,0.00688,0.005792,0.010592,4.66125,0.038048
+1504,142.937,6.99609,5.1569,0.02592,0.40576,0.006624,0.005312,0.01072,4.66678,0.035776
+1505,130.98,7.63477,5.15408,0.024896,0.413376,0.006336,0.006144,0.01024,4.65469,0.0384
+1506,146.244,6.83789,5.15869,0.025184,0.403456,0.007392,0.004864,0.010272,4.67114,0.036384
+1507,135.11,7.40137,5.13565,0.026208,0.393568,0.006208,0.006144,0.01024,4.65517,0.038112
+1508,145.661,6.86523,5.15686,0.026624,0.425344,0.006656,0.004224,0.011424,4.64573,0.036864
+1509,145.289,6.88281,5.164,0.025568,0.425984,0.008192,0.005664,0.01072,4.65008,0.037792
+1510,148.32,6.74219,5.15357,0.025376,0.398368,0.007072,0.004128,0.01152,4.67021,0.036896
+1511,143.197,6.9834,5.11354,0.0264,0.385216,0.0072,0.00512,0.011264,4.64166,0.036672
+1512,142.124,7.03613,5.15318,0.02608,0.388,0.008032,0.004256,0.010528,4.67939,0.036896
+1513,140.601,7.1123,5.13901,0.025152,0.403424,0.00624,0.00608,0.010272,4.65078,0.037056
+1514,148.643,6.72754,5.14842,0.02624,0.40384,0.007936,0.004352,0.010368,4.65907,0.036608
+1515,148.989,6.71191,5.12515,0.025984,0.394976,0.00656,0.004608,0.011712,4.6431,0.038208
+1516,147.063,6.7998,5.14496,0.02496,0.39936,0.008032,0.004256,0.011328,4.66016,0.036864
+1517,148.363,6.74023,5.13194,0.026624,0.387072,0.0072,0.005088,0.0104,4.65859,0.03696
+1518,141.789,7.05273,5.16925,0.02672,0.421888,0.007296,0.004864,0.010368,4.66125,0.036864
+1519,143.739,6.95703,5.1553,0.026208,0.409664,0.006976,0.005536,0.010752,4.6591,0.037056
+1520,145.207,6.88672,5.11795,0.025984,0.395104,0.006944,0.004096,0.011808,4.63715,0.036864
+1521,133.734,7.47754,5.15235,0.025152,0.401408,0.007584,0.004672,0.011616,4.66397,0.037952
+1522,144.368,6.92676,5.13846,0.026368,0.39472,0.006944,0.004096,0.011616,4.65782,0.036896
+1523,143.578,6.96484,5.19754,0.026624,0.43008,0.00752,0.004768,0.011584,4.67974,0.037216
+1524,146.768,6.81348,5.15498,0.024768,0.40544,0.007456,0.004832,0.01024,4.66534,0.036896
+1525,147.402,6.78418,5.16301,0.026624,0.417792,0.007552,0.004736,0.011584,4.65786,0.036864
+1526,147.253,6.79102,5.12458,0.025216,0.391008,0.008032,0.004256,0.01136,4.64784,0.036864
+1527,147.977,6.75781,5.13702,0.025504,0.40752,0.007904,0.005568,0.010784,4.64109,0.038656
+1528,148.578,6.73047,5.09891,0.026016,0.383584,0.008032,0.004256,0.01136,4.62877,0.036896
+1529,137.56,7.26953,5.18272,0.026016,0.410048,0.006432,0.006144,0.01024,4.68586,0.037984
+1530,144.429,6.92383,5.12224,0.026016,0.400224,0.006176,0.00576,0.010592,4.63667,0.0368
+1531,147.232,6.79199,5.13347,0.026208,0.408,0.008032,0.0056,0.01072,4.63802,0.036896
+1532,146.16,6.8418,5.15142,0.025312,0.41776,0.00768,0.004608,0.01024,4.64912,0.036704
+1533,144.266,6.93164,5.14643,0.026592,0.421952,0.007744,0.005568,0.010752,4.6351,0.03872
+1534,143.82,6.95312,5.13472,0.02496,0.417792,0.007776,0.004512,0.010272,4.63382,0.035584
+1535,143.8,6.9541,5.11594,0.025696,0.392096,0.007872,0.005568,0.01072,4.63686,0.03712
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..b4b782f
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,553.472,1.8604,0.354858,0.00587609,0.255155,0.00501237,0.00494256,0.00536075,0.00595788,0.00613291,0.0609624,0.00545797
+max_1024,785.577,4.93042,0.684032,0.023104,0.57888,0.017792,0.015104,0.021792,0.01808,0.024544,0.08432,0.022528
+min_1024,202.822,1.27295,0.296576,0.004288,0.211136,0.004064,0.004096,0.004192,0.004448,0.0048,0.041088,0.004288
+512,650.314,1.53772,0.315392,0.006144,0.231424,0.005248,0.004864,0.004224,0.007328,0.006016,0.044,0.006144
+513,582.812,1.71582,0.33792,0.006144,0.255072,0.004896,0.004224,0.006144,0.005696,0.005888,0.043712,0.006144
+514,424.412,2.3562,0.550752,0.005376,0.441088,0.004256,0.005536,0.01904,0.006144,0.006144,0.046176,0.016992
+515,370.193,2.70129,0.355552,0.006144,0.27152,0.004928,0.004128,0.00592,0.00576,0.00592,0.045856,0.005376
+516,444.42,2.25012,0.442816,0.00576,0.334624,0.004128,0.005472,0.004768,0.006144,0.014336,0.045056,0.022528
+517,590.372,1.69385,0.311776,0.00576,0.227616,0.004672,0.005152,0.005088,0.005792,0.005856,0.047264,0.004576
+518,599.883,1.66699,0.305152,0.006144,0.224288,0.004928,0.004256,0.005856,0.00576,0.005984,0.043488,0.004448
+519,656.884,1.52234,0.307968,0.004896,0.2288,0.00464,0.005728,0.004512,0.006144,0.006144,0.04256,0.004544
+520,469.375,2.13049,0.3112,0.006144,0.229408,0.005152,0.004864,0.004288,0.006144,0.006144,0.043008,0.006048
+521,543.092,1.84131,0.30928,0.006144,0.228928,0.004544,0.005216,0.005024,0.005952,0.00576,0.041536,0.006176
+522,583.227,1.7146,0.309856,0.005728,0.227552,0.004704,0.004288,0.005792,0.005728,0.00592,0.044,0.006144
+523,473.855,2.11035,0.340672,0.0048,0.259456,0.004736,0.004096,0.006144,0.005792,0.005856,0.043648,0.006144
+524,391.98,2.55115,0.356384,0.006144,0.271744,0.004736,0.004096,0.006144,0.00576,0.005952,0.046656,0.005152
+525,620.371,1.61194,0.316256,0.004864,0.23456,0.005056,0.004096,0.00608,0.005728,0.005952,0.045568,0.004352
+526,628.173,1.59192,0.310656,0.006144,0.225088,0.004288,0.005472,0.004768,0.006144,0.006144,0.047104,0.005504
+527,616.45,1.62219,0.300992,0.006144,0.216416,0.004768,0.004096,0.006112,0.005856,0.005728,0.045792,0.00608
+528,510.628,1.95837,0.319424,0.005728,0.232384,0.004096,0.005824,0.004416,0.006144,0.006144,0.048672,0.006016
+529,578.735,1.72791,0.315392,0.006176,0.229344,0.005728,0.004512,0.005568,0.005728,0.005088,0.0488,0.004448
+530,714.398,1.39978,0.301472,0.005056,0.217088,0.005216,0.004864,0.004256,0.006144,0.006144,0.046944,0.00576
+531,509.294,1.9635,0.3024,0.006144,0.21904,0.004192,0.005632,0.004608,0.006144,0.006112,0.045088,0.00544
+532,331.499,3.0166,0.481344,0.00608,0.385088,0.00544,0.0048,0.005312,0.016608,0.006656,0.046816,0.004544
+533,673.629,1.4845,0.30272,0.00576,0.221376,0.004288,0.0056,0.00464,0.006176,0.006112,0.043008,0.00576
+534,686.212,1.45728,0.297088,0.004928,0.217024,0.00416,0.0056,0.00464,0.006144,0.005984,0.043168,0.00544
+535,483.161,2.0697,0.312864,0.005728,0.232288,0.004096,0.005696,0.004544,0.006144,0.006144,0.042912,0.005312
+536,565.668,1.76782,0.315456,0.004928,0.233376,0.005184,0.004864,0.004256,0.006144,0.006144,0.045056,0.005504
+537,698.738,1.43115,0.297728,0.004928,0.214976,0.005728,0.004512,0.006144,0.005728,0.00592,0.04528,0.004512
+538,588.844,1.69824,0.307296,0.006144,0.222784,0.004544,0.005792,0.004448,0.006144,0.006144,0.046784,0.004512
+539,551.279,1.81396,0.317664,0.006144,0.231456,0.005248,0.004864,0.004192,0.006144,0.006144,0.048928,0.004544
+540,400.959,2.49402,0.544768,0.006016,0.43024,0.005344,0.015104,0.005952,0.005696,0.020512,0.04976,0.006144
+541,598.437,1.67102,0.311648,0.004992,0.2264,0.004896,0.004224,0.005856,0.00576,0.005856,0.048064,0.0056
+542,632.831,1.5802,0.311104,0.006144,0.224544,0.004832,0.004096,0.00608,0.005792,0.00592,0.047744,0.005952
+543,599.576,1.66785,0.30992,0.004992,0.226624,0.0048,0.004096,0.00608,0.00576,0.005952,0.045696,0.00592
+544,497.238,2.01111,0.348736,0.00576,0.252864,0.005472,0.004768,0.005312,0.017216,0.005632,0.046784,0.004928
+545,640.35,1.56165,0.314016,0.004896,0.229216,0.004192,0.0056,0.00464,0.006144,0.006112,0.047136,0.00608
+546,588.379,1.69958,0.313024,0.006144,0.224512,0.004864,0.004096,0.006144,0.006048,0.005952,0.04944,0.005824
+547,537.004,1.86218,0.32112,0.00592,0.233536,0.004256,0.005504,0.004736,0.006144,0.006016,0.04928,0.005728
+548,417.129,2.39734,0.402176,0.005024,0.305152,0.014112,0.00432,0.006144,0.005792,0.005984,0.049664,0.005984
+549,616.032,1.62329,0.315328,0.004736,0.228704,0.004768,0.004096,0.006112,0.005792,0.005984,0.049696,0.00544
+550,569.324,1.75647,0.319488,0.006144,0.231424,0.00576,0.00448,0.0056,0.005696,0.005088,0.050528,0.004768
+551,549.614,1.81946,0.391584,0.005728,0.305984,0.004096,0.005824,0.004416,0.006144,0.006048,0.048416,0.004928
+552,541.656,1.84619,0.497568,0.005888,0.408896,0.005056,0.006112,0.005248,0.005088,0.00608,0.049152,0.006048
+553,443.122,2.25671,0.49776,0.006144,0.4096,0.005824,0.0056,0.00496,0.006144,0.006144,0.048832,0.004512
+554,544.066,1.83801,0.34384,0.005856,0.25856,0.005344,0.004864,0.005248,0.005024,0.006176,0.047072,0.005696
+555,641.152,1.55969,0.308672,0.00576,0.223936,0.00592,0.00432,0.005728,0.005728,0.004928,0.047008,0.005344
+556,572.227,1.74756,0.3072,0.005856,0.219424,0.005248,0.004864,0.004224,0.006144,0.006144,0.050208,0.005088
+557,548.657,1.82263,0.34816,0.006144,0.262144,0.005696,0.004544,0.005504,0.004736,0.006144,0.048736,0.004512
+558,663.32,1.50757,0.31552,0.00576,0.229024,0.004896,0.005312,0.004992,0.00592,0.005984,0.048704,0.004928
+559,571.11,1.75098,0.313408,0.004992,0.230656,0.004864,0.004096,0.006048,0.00576,0.006048,0.045568,0.005376
+560,690.143,1.44897,0.304192,0.006144,0.221184,0.00544,0.0048,0.00528,0.006336,0.006016,0.043616,0.005376
+561,751.974,1.32983,0.303072,0.006016,0.216576,0.004736,0.004128,0.006112,0.005856,0.006176,0.04736,0.006112
+562,598,1.67224,0.305376,0.004992,0.217088,0.005472,0.004768,0.005344,0.004896,0.006144,0.050656,0.006016
+563,511.52,1.95496,0.387296,0.005664,0.301152,0.00496,0.005696,0.004544,0.006144,0.006144,0.047104,0.005888
+564,545.37,1.83362,0.489632,0.0056,0.408416,0.0056,0.004704,0.005952,0.00592,0.005952,0.0416,0.005888
+565,476.861,2.09705,0.501696,0.005568,0.409952,0.004672,0.006144,0.005664,0.00592,0.0048,0.053216,0.00576
+566,431.044,2.31995,0.329312,0.007744,0.246208,0.004096,0.005888,0.004352,0.006144,0.006144,0.043008,0.005728
+567,573.79,1.7428,0.305792,0.005728,0.224256,0.005856,0.004384,0.005664,0.005728,0.004992,0.043008,0.006176
+568,597.564,1.67346,0.303136,0.006144,0.22256,0.004768,0.004096,0.006112,0.00576,0.005984,0.042752,0.00496
+569,598.218,1.67163,0.305152,0.00576,0.225536,0.004288,0.005504,0.004736,0.006144,0.006016,0.041088,0.00608
+570,619.339,1.61462,0.303136,0.006144,0.223232,0.005632,0.004608,0.00544,0.0048,0.006176,0.042432,0.004672
+571,525.904,1.90149,0.306528,0.006144,0.22528,0.004096,0.00576,0.00448,0.006144,0.006144,0.043008,0.005472
+572,606.276,1.64941,0.307808,0.00576,0.227904,0.004512,0.005248,0.004992,0.005952,0.00592,0.04288,0.00464
+573,631.709,1.58301,0.296576,0.006144,0.21504,0.00528,0.004864,0.005216,0.00512,0.006144,0.043008,0.00576
+574,562.908,1.77649,0.312192,0.005024,0.231424,0.005696,0.004544,0.005568,0.00576,0.00512,0.042944,0.006112
+575,342.346,2.92102,0.394816,0.006144,0.301024,0.005504,0.004768,0.005312,0.004928,0.006144,0.055136,0.005856
+576,581.199,1.72058,0.305632,0.00576,0.225696,0.004544,0.005216,0.005024,0.005952,0.005952,0.042592,0.004896
+577,591.096,1.69177,0.305696,0.006432,0.225312,0.00432,0.00544,0.0048,0.006112,0.00592,0.041216,0.006144
+578,600.454,1.66541,0.310784,0.005856,0.225568,0.00512,0.004864,0.004352,0.006144,0.006144,0.047104,0.005632
+579,593.107,1.68604,0.312,0.004992,0.22528,0.005728,0.004512,0.005568,0.005728,0.005088,0.049152,0.005952
+580,660.432,1.51416,0.311168,0.004896,0.224256,0.004896,0.00432,0.00608,0.005728,0.005984,0.049696,0.005312
+581,593.924,1.68372,0.302176,0.005984,0.213152,0.005696,0.004544,0.005568,0.005952,0.006112,0.04976,0.005408
+582,496.395,2.01453,0.333824,0.005888,0.244,0.005344,0.004864,0.005216,0.006336,0.005984,0.050048,0.006144
+583,424.148,2.35767,0.53456,0.005792,0.446112,0.004832,0.006144,0.00544,0.005888,0.005056,0.049152,0.006144
+584,698.202,1.43225,0.3048,0.005728,0.215744,0.005888,0.004352,0.005696,0.005728,0.00496,0.0512,0.005504
+585,588.421,1.69946,0.309248,0.006144,0.222912,0.004416,0.00544,0.0048,0.006112,0.005984,0.048576,0.004864
+586,613.817,1.62915,0.315456,0.005728,0.231584,0.004416,0.005728,0.004512,0.006144,0.006144,0.046336,0.004864
+587,737.487,1.35596,0.29696,0.005856,0.215328,0.005504,0.004736,0.005312,0.004928,0.006144,0.043168,0.005984
+588,648.101,1.54297,0.297536,0.004672,0.218752,0.00448,0.005312,0.004928,0.006016,0.005952,0.043008,0.004416
+589,657.2,1.52161,0.302016,0.005024,0.222816,0.004512,0.005248,0.004992,0.006144,0.005888,0.042848,0.004544
+590,618.965,1.6156,0.303104,0.006144,0.220736,0.004544,0.005216,0.005024,0.005952,0.00592,0.045024,0.004544
+591,506.304,1.9751,0.493536,0.006144,0.407552,0.006144,0.005696,0.004544,0.006144,0.006144,0.045056,0.006112
+592,461.651,2.16614,0.355328,0.00592,0.270304,0.004352,0.005472,0.004768,0.006144,0.00608,0.046912,0.005376
+593,544.066,1.83801,0.31632,0.005024,0.233472,0.00512,0.004864,0.004352,0.006144,0.006144,0.045056,0.006144
+594,531.706,1.88074,0.417024,0.006144,0.318656,0.004896,0.004128,0.005952,0.00576,0.014912,0.0512,0.005376
+595,573.348,1.74414,0.367744,0.006176,0.268288,0.00576,0.004448,0.005632,0.005696,0.016704,0.0496,0.00544
+596,576.78,1.73376,0.313632,0.005024,0.216768,0.004416,0.005344,0.004896,0.006144,0.005952,0.050528,0.01456
+597,515.123,1.94128,0.333184,0.020704,0.233536,0.005824,0.004352,0.00576,0.00592,0.006144,0.0456,0.005344
+598,541.298,1.84741,0.359552,0.006048,0.270432,0.005568,0.004672,0.005472,0.004768,0.006144,0.051136,0.005312
+599,516.617,1.93567,0.49904,0.006144,0.408896,0.0048,0.006144,0.005504,0.006656,0.005952,0.049504,0.00544
+600,493.375,2.02686,0.325568,0.006112,0.229664,0.00448,0.00528,0.00496,0.006048,0.00592,0.057056,0.006048
+601,518.776,1.92761,0.374784,0.00592,0.280256,0.00464,0.004288,0.005952,0.005824,0.005952,0.057024,0.004928
+602,575.807,1.73669,0.356352,0.006144,0.251904,0.00576,0.00448,0.014336,0.006144,0.006144,0.056896,0.004544
+603,624.438,1.60144,0.31808,0.004736,0.22496,0.004416,0.005376,0.004864,0.006112,0.00592,0.056576,0.00512
+604,603.329,1.65747,0.317568,0.0064,0.22736,0.005472,0.004768,0.005312,0.004928,0.006144,0.0512,0.005984
+605,589.183,1.69727,0.32768,0.005856,0.23968,0.00432,0.005696,0.004544,0.006144,0.006144,0.050464,0.004832
+606,527.699,1.89502,0.379616,0.006144,0.285408,0.004064,0.005888,0.004352,0.006144,0.006144,0.055296,0.006176
+607,675.74,1.47986,0.31488,0.006144,0.22528,0.005568,0.004672,0.005376,0.004864,0.006144,0.0512,0.005632
+608,730.45,1.36902,0.305504,0.004992,0.217088,0.005152,0.004864,0.00432,0.006144,0.006144,0.0512,0.0056
+609,521.684,1.91687,0.311296,0.004288,0.2248,0.004576,0.005184,0.005056,0.005856,0.006112,0.049504,0.00592
+610,500.305,1.99878,0.392864,0.006144,0.304768,0.00448,0.005312,0.004928,0.00608,0.005952,0.049408,0.005792
+611,413.884,2.41614,0.339968,0.005792,0.241472,0.00464,0.00512,0.00512,0.005856,0.016672,0.049152,0.006144
+612,570.394,1.75317,0.335872,0.00608,0.253408,0.004704,0.004096,0.006144,0.005792,0.005984,0.04352,0.006144
+613,537.603,1.86011,0.373568,0.004928,0.288576,0.004288,0.0056,0.00464,0.006144,0.006144,0.048288,0.00496
+614,632.294,1.58154,0.303808,0.00624,0.217056,0.004736,0.0056,0.00464,0.006144,0.006144,0.04864,0.004608
+615,551.204,1.81421,0.336192,0.005856,0.250272,0.004288,0.005472,0.004768,0.006144,0.006112,0.047136,0.006144
+616,583.808,1.71289,0.31744,0.00608,0.235584,0.004096,0.006144,0.005536,0.005792,0.005056,0.044384,0.004768
+617,593.451,1.68506,0.351424,0.006144,0.267424,0.004928,0.004128,0.00608,0.005728,0.005888,0.04576,0.005344
+618,585.854,1.70691,0.319488,0.006144,0.223232,0.005344,0.004864,0.005216,0.005056,0.006144,0.04864,0.014848
+619,626.827,1.59534,0.311296,0.006144,0.22528,0.005504,0.004736,0.005344,0.004896,0.006144,0.047104,0.006144
+620,397.844,2.51355,0.395264,0.006144,0.309248,0.005216,0.004896,0.004224,0.006144,0.006144,0.048672,0.004576
+621,417.917,2.39282,0.360448,0.00608,0.266304,0.004096,0.005824,0.004416,0.006144,0.006144,0.05648,0.00496
+622,519.665,1.92432,0.33264,0.00496,0.243712,0.005504,0.004736,0.005344,0.004896,0.006144,0.052448,0.004896
+623,578.695,1.72803,0.338016,0.00608,0.247872,0.004096,0.005728,0.004512,0.006144,0.006176,0.052896,0.004512
+624,439.886,2.27332,0.36544,0.004992,0.276512,0.004064,0.005856,0.004384,0.006144,0.006144,0.052736,0.004608
+625,471.808,2.11951,0.504064,0.005696,0.411808,0.00464,0.006144,0.005696,0.006176,0.005952,0.052992,0.00496
+626,596.432,1.67664,0.321056,0.00608,0.23088,0.004864,0.004096,0.006016,0.005792,0.005952,0.051872,0.005504
+627,348.403,2.87024,0.323584,0.006144,0.237472,0.005472,0.004864,0.005184,0.005056,0.006144,0.047104,0.006144
+628,521.219,1.91858,0.323584,0.006144,0.237568,0.005376,0.004832,0.005216,0.005056,0.006144,0.048736,0.004512
+629,595.479,1.67932,0.325248,0.005728,0.240032,0.004096,0.005792,0.004448,0.006144,0.006144,0.047104,0.00576
+630,468.409,2.13489,0.316736,0.006144,0.233472,0.005312,0.004864,0.005248,0.005056,0.006144,0.045056,0.00544
+631,516.129,1.9375,0.341792,0.005824,0.25632,0.005472,0.004768,0.005248,0.005088,0.00608,0.047072,0.00592
+632,554.826,1.80237,0.334144,0.005728,0.250144,0.004544,0.005408,0.004832,0.006112,0.005952,0.04656,0.004864
+633,460.742,2.17041,0.32128,0.006144,0.239616,0.005856,0.005472,0.005056,0.00592,0.005952,0.041376,0.005888
+634,393.979,2.53821,0.33856,0.005728,0.254976,0.005888,0.004352,0.00576,0.005792,0.005984,0.045536,0.004544
+635,560.367,1.78455,0.360128,0.004928,0.278336,0.00416,0.0056,0.00464,0.006144,0.005984,0.044992,0.005344
+636,503.287,1.98694,0.31744,0.006144,0.233504,0.00576,0.004448,0.005984,0.005728,0.005984,0.045152,0.004736
+637,399.065,2.50586,0.321536,0.005952,0.231616,0.005568,0.004672,0.005216,0.005024,0.006144,0.0512,0.006144
+638,575.443,1.73779,0.318816,0.006144,0.227328,0.005472,0.004768,0.005312,0.004928,0.007424,0.051968,0.005472
+639,619.949,1.61304,0.305792,0.00576,0.222208,0.004096,0.005824,0.004416,0.006144,0.006144,0.045056,0.006144
+640,577.186,1.73254,0.31056,0.00576,0.225856,0.004096,0.005664,0.004576,0.006144,0.006144,0.046944,0.005376
+641,621.406,1.60925,0.3072,0.006144,0.224288,0.004928,0.004256,0.005792,0.005952,0.00592,0.043776,0.006144
+642,577.267,1.7323,0.339136,0.006144,0.256,0.005472,0.004768,0.005312,0.004928,0.006144,0.045024,0.005344
+643,468.569,2.13416,0.35312,0.00496,0.269504,0.004928,0.004096,0.005952,0.005952,0.006464,0.046528,0.004736
+644,551.724,1.8125,0.301056,0.005856,0.217376,0.005376,0.004864,0.005248,0.004992,0.006144,0.046496,0.004704
+645,566.098,1.76648,0.350272,0.006144,0.266144,0.004192,0.00544,0.0048,0.006144,0.005952,0.046944,0.004512
+646,484.504,2.06396,0.499712,0.006144,0.410848,0.004896,0.006144,0.005376,0.005984,0.005024,0.049152,0.006144
+647,625.105,1.59973,0.311328,0.006144,0.224576,0.0048,0.005568,0.004672,0.006144,0.006048,0.0472,0.006176
+648,525.802,1.90186,0.310624,0.006144,0.223232,0.0056,0.00464,0.00544,0.0048,0.006176,0.04912,0.005472
+649,554,1.80505,0.378656,0.006144,0.290816,0.005568,0.004672,0.005376,0.004864,0.006144,0.049152,0.00592
+650,606.141,1.64978,0.315744,0.005984,0.227648,0.004288,0.005472,0.004768,0.006144,0.006144,0.050944,0.004352
+651,423.228,2.36279,0.306912,0.006176,0.21824,0.004928,0.004128,0.00592,0.00576,0.006304,0.0496,0.005856
+652,422.181,2.36865,0.380768,0.00576,0.289536,0.005792,0.004448,0.005664,0.005824,0.006016,0.052128,0.0056
+653,652.489,1.53259,0.30928,0.006144,0.21712,0.005728,0.004512,0.005536,0.00576,0.005248,0.054304,0.004928
+654,699.991,1.42859,0.311296,0.006144,0.21888,0.004352,0.005536,0.004704,0.006144,0.006144,0.053248,0.006144
+655,727.273,1.375,0.305504,0.00576,0.215776,0.004096,0.005856,0.004384,0.006144,0.006144,0.052416,0.004928
+656,490.157,2.04016,0.329728,0.006144,0.237568,0.004096,0.005728,0.004512,0.006144,0.006144,0.05488,0.004512
+657,598,1.67224,0.334432,0.006752,0.241664,0.005312,0.004832,0.004288,0.006048,0.006144,0.053248,0.006144
+658,652.385,1.53284,0.311264,0.005856,0.218816,0.004896,0.004288,0.00576,0.00576,0.006016,0.054112,0.00576
+659,612.578,1.63245,0.320896,0.005792,0.2288,0.004928,0.004224,0.005824,0.005664,0.004864,0.055296,0.005504
+660,407.542,2.45374,0.32768,0.006144,0.239584,0.004128,0.005664,0.004576,0.006144,0.006144,0.050208,0.005088
+661,591.566,1.69043,0.313504,0.00496,0.223232,0.004096,0.005824,0.004416,0.006144,0.006144,0.053248,0.00544
+662,583.684,1.71326,0.339296,0.006112,0.24784,0.005536,0.004736,0.005344,0.004864,0.006144,0.053248,0.005472
+663,622.492,1.60645,0.321952,0.01616,0.220032,0.004096,0.005824,0.00576,0.0048,0.006144,0.053248,0.005888
+664,635.384,1.57385,0.332032,0.004768,0.227328,0.005568,0.004672,0.020384,0.006208,0.005952,0.051424,0.005728
+665,566.96,1.76379,0.308832,0.005792,0.22144,0.004352,0.00544,0.0048,0.005984,0.005888,0.049568,0.005568
+666,601.336,1.66296,0.310912,0.006144,0.220576,0.004704,0.004096,0.00608,0.00576,0.005984,0.051808,0.00576
+667,645.192,1.54993,0.313632,0.004864,0.223232,0.006144,0.004096,0.006112,0.005952,0.006112,0.051456,0.005664
+668,616.914,1.62097,0.308992,0.006144,0.21824,0.004896,0.004192,0.00592,0.005792,0.005984,0.051936,0.005888
+669,375.143,2.66565,0.348512,0.005728,0.257824,0.004896,0.004288,0.005792,0.00576,0.005952,0.053248,0.005024
+670,584.183,1.71179,0.321056,0.00576,0.232128,0.005472,0.004768,0.005312,0.004928,0.006144,0.0512,0.005344
+671,608.211,1.64417,0.307456,0.005888,0.221216,0.004576,0.005184,0.005056,0.00592,0.005952,0.049056,0.004608
+672,519.138,1.92627,0.325728,0.00576,0.238048,0.00512,0.004864,0.004352,0.006144,0.006176,0.050816,0.004448
+673,592.764,1.68701,0.330112,0.005728,0.24592,0.004704,0.00512,0.00512,0.005792,0.006016,0.046848,0.004864
+674,701.971,1.42456,0.303456,0.004992,0.21504,0.005792,0.004448,0.005632,0.005696,0.00512,0.051136,0.0056
+675,617.798,1.61865,0.302688,0.005952,0.217216,0.00416,0.0056,0.00464,0.006144,0.006112,0.047136,0.005728
+676,596.997,1.67505,0.332416,0.00576,0.233472,0.004896,0.00432,0.005888,0.01664,0.00624,0.05024,0.00496
+677,599.619,1.66772,0.30736,0.004736,0.222304,0.004896,0.004224,0.00592,0.005728,0.00592,0.047968,0.005664
+678,394.719,2.53345,0.3072,0.005952,0.219328,0.004096,0.005728,0.004512,0.006144,0.006144,0.050432,0.004864
+679,584.725,1.71021,0.31648,0.006144,0.226432,0.004992,0.005792,0.005824,0.005856,0.006464,0.049632,0.005344
+680,560.558,1.78394,0.365344,0.004896,0.280576,0.00512,0.004896,0.00432,0.006144,0.006144,0.04896,0.004288
+681,583.393,1.71411,0.312704,0.00576,0.22496,0.004928,0.004224,0.005824,0.005984,0.005952,0.049728,0.005344
+682,607.535,1.646,0.327712,0.006144,0.239616,0.00544,0.0048,0.00528,0.00496,0.006176,0.050784,0.004512
+683,542.588,1.84302,0.330816,0.006144,0.241696,0.005632,0.004576,0.005472,0.005952,0.006016,0.04992,0.005408
+684,509.77,1.96167,0.418016,0.005728,0.321376,0.004896,0.004096,0.005984,0.00576,0.014496,0.050592,0.005088
+685,510.596,1.9585,0.5024,0.004736,0.414976,0.004864,0.006144,0.005408,0.005952,0.005024,0.049184,0.006112
+686,292.592,3.41772,0.49792,0.005728,0.408224,0.005952,0.0056,0.004832,0.006144,0.00608,0.049216,0.006144
+687,331.794,3.01392,0.3232,0.006144,0.236832,0.004832,0.004096,0.006112,0.00576,0.006016,0.047648,0.00576
+688,502.453,1.99023,0.346112,0.005856,0.258336,0.005408,0.004832,0.005216,0.005024,0.006144,0.049152,0.006144
+689,509.897,1.96118,0.340896,0.005088,0.255872,0.004224,0.005536,0.004704,0.006144,0.006048,0.0472,0.00608
+690,476.501,2.09863,0.340288,0.00576,0.25264,0.00576,0.00448,0.005568,0.005728,0.005088,0.049152,0.006112
+691,574.474,1.74072,0.325632,0.006144,0.239616,0.005824,0.004416,0.005632,0.005952,0.005984,0.047328,0.004736
+692,585.477,1.70801,0.312256,0.005056,0.227328,0.005792,0.004448,0.005632,0.005728,0.005088,0.048288,0.004896
+693,202.822,4.93042,0.354304,0.006144,0.2696,0.004832,0.004096,0.006144,0.005856,0.005984,0.047104,0.004544
+694,476.113,2.10034,0.32768,0.005984,0.241824,0.005504,0.004736,0.005312,0.004928,0.006144,0.047104,0.006144
+695,359.708,2.78003,0.342048,0.005952,0.258272,0.005376,0.004288,0.00464,0.006016,0.006016,0.046752,0.004736
+696,510.66,1.95825,0.370688,0.006176,0.286112,0.004672,0.004096,0.006144,0.005728,0.006048,0.04672,0.004992
+697,408.456,2.44824,0.369824,0.005792,0.27488,0.00592,0.00432,0.00576,0.00576,0.005888,0.055744,0.00576
+698,278.545,3.59009,0.397248,0.006144,0.308736,0.004608,0.005184,0.005056,0.006112,0.006048,0.04928,0.00608
+699,530.433,1.88525,0.333984,0.005824,0.248288,0.004096,0.005728,0.004512,0.006144,0.006144,0.04864,0.004608
+700,532.571,1.87769,0.323168,0.006144,0.235456,0.00416,0.0056,0.00464,0.006144,0.006144,0.049152,0.005728
+701,492.9,2.02881,0.434464,0.005792,0.32592,0.00464,0.005312,0.004928,0.016384,0.006144,0.059392,0.005952
+702,572.867,1.74561,0.31392,0.00608,0.225888,0.005216,0.004864,0.004256,0.006144,0.006144,0.05072,0.004608
+703,554.638,1.80298,0.314496,0.006144,0.227136,0.004288,0.005536,0.004704,0.006144,0.006144,0.049056,0.005344
+704,562.869,1.77661,0.345536,0.006144,0.256,0.005664,0.004576,0.005504,0.004832,0.006048,0.0512,0.005568
+705,567.785,1.76123,0.395264,0.005888,0.305408,0.005472,0.004768,0.005312,0.005952,0.006176,0.051328,0.00496
+706,389.947,2.56445,0.317824,0.00624,0.229664,0.006144,0.004128,0.00592,0.005984,0.006208,0.048576,0.00496
+707,540.583,1.84985,0.339968,0.006144,0.253952,0.005248,0.004864,0.004224,0.006144,0.006144,0.048512,0.004736
+708,512.513,1.95117,0.364032,0.00576,0.279136,0.005248,0.004864,0.004224,0.006144,0.006144,0.047104,0.005408
+709,489.601,2.04248,0.315584,0.005952,0.229888,0.004448,0.005344,0.004896,0.006112,0.00592,0.04736,0.005664
+710,574.716,1.73999,0.362656,0.00576,0.271232,0.005856,0.004352,0.005696,0.005792,0.005952,0.052192,0.005824
+711,588.844,1.69824,0.316352,0.005056,0.22688,0.004544,0.005216,0.005024,0.005856,0.005888,0.053344,0.004544
+712,402.555,2.48413,0.334272,0.00576,0.246752,0.005248,0.004832,0.004256,0.006144,0.006144,0.049152,0.005984
+713,607.355,1.64648,0.323584,0.006144,0.237568,0.004096,0.00576,0.00448,0.006144,0.006144,0.048544,0.004704
+714,658.945,1.51758,0.306144,0.005088,0.220256,0.004896,0.004224,0.005952,0.005984,0.005984,0.048768,0.004992
+715,500.917,1.99634,0.317024,0.005728,0.231136,0.004928,0.004192,0.006048,0.00576,0.00592,0.047808,0.005504
+716,457.551,2.18555,0.333184,0.006144,0.247136,0.004768,0.004128,0.006112,0.005728,0.00592,0.047744,0.005504
+717,543.308,1.84058,0.309248,0.006144,0.224576,0.0048,0.004096,0.00608,0.005728,0.005952,0.046976,0.004896
+718,530.914,1.88354,0.325632,0.006144,0.239648,0.0056,0.004608,0.005408,0.004832,0.006144,0.047104,0.006144
+719,516.65,1.93555,0.331328,0.00576,0.244608,0.005152,0.005088,0.005248,0.004992,0.006144,0.049024,0.005312
+720,535.915,1.86597,0.321248,0.006144,0.235136,0.00448,0.00528,0.00496,0.005952,0.005952,0.047488,0.005856
+721,443.29,2.25586,0.31776,0.00576,0.231328,0.004864,0.004128,0.005984,0.005728,0.005984,0.047936,0.006048
+722,459.915,2.17432,0.3816,0.005824,0.293856,0.005376,0.004864,0.005216,0.005024,0.006176,0.050272,0.004992
+723,571.349,1.75024,0.319296,0.006144,0.233472,0.00544,0.0048,0.005312,0.004928,0.006144,0.047104,0.005952
+724,545.261,1.83398,0.318496,0.006144,0.231328,0.004192,0.005344,0.004896,0.006112,0.006048,0.049056,0.005376
+725,552.841,1.80884,0.317824,0.005728,0.229696,0.004576,0.005728,0.004512,0.006144,0.006144,0.049152,0.006144
+726,402.2,2.48633,0.365952,0.006144,0.27392,0.004608,0.005152,0.005088,0.00592,0.005952,0.053664,0.005504
+727,464.979,2.15063,0.414752,0.017056,0.300576,0.004896,0.004128,0.005984,0.00576,0.016928,0.054496,0.004928
+728,581.653,1.71924,0.33024,0.00576,0.237856,0.004704,0.004096,0.006144,0.005728,0.006496,0.053312,0.006144
+729,332.981,3.00317,0.314272,0.00512,0.227328,0.005344,0.004864,0.005216,0.005056,0.006144,0.049152,0.006048
+730,523.718,1.90942,0.340032,0.00576,0.252352,0.004096,0.005792,0.004448,0.006144,0.006144,0.050976,0.00432
+731,504.869,1.98071,0.338016,0.005856,0.252192,0.00576,0.004512,0.005536,0.00576,0.005056,0.048832,0.004512
+732,508.063,1.96826,0.32032,0.004928,0.234784,0.004832,0.005536,0.004704,0.006144,0.006144,0.04832,0.004928
+733,518.875,1.92725,0.333824,0.006144,0.247808,0.004096,0.005888,0.004352,0.006144,0.006144,0.048736,0.004512
+734,557.279,1.79443,0.312128,0.00496,0.226432,0.004928,0.004128,0.00592,0.00576,0.005952,0.04944,0.004608
+735,509.77,1.96167,0.325632,0.006144,0.231456,0.005792,0.004416,0.005696,0.006592,0.006144,0.054848,0.004544
+736,369.475,2.70654,0.34016,0.005824,0.248288,0.005408,0.004832,0.005248,0.004992,0.006144,0.053248,0.006176
+737,443.626,2.25415,0.350208,0.006144,0.26,0.004192,0.00544,0.0048,0.006144,0.006016,0.052864,0.004608
+738,477.111,2.09595,0.331872,0.00592,0.23984,0.006016,0.005472,0.004896,0.00608,0.005984,0.053152,0.004512
+739,454.253,2.20142,0.327936,0.005792,0.236128,0.005472,0.004768,0.005504,0.005792,0.005088,0.054784,0.004608
+740,487.619,2.05078,0.352256,0.006144,0.241696,0.006112,0.005184,0.019392,0.006144,0.006144,0.056576,0.004864
+741,566.92,1.76392,0.399168,0.005792,0.303232,0.004896,0.004192,0.00592,0.00576,0.00592,0.058112,0.005344
+742,559.716,1.78662,0.333824,0.00608,0.237664,0.005184,0.004928,0.004192,0.006144,0.006144,0.057344,0.006144
+743,508.693,1.96582,0.372576,0.005792,0.273024,0.00448,0.0056,0.00464,0.006144,0.006144,0.061376,0.005376
+744,415.753,2.40527,0.332736,0.005024,0.23456,0.004928,0.004224,0.005824,0.005696,0.005984,0.061888,0.004608
+745,548.474,1.82324,0.334752,0.005024,0.23552,0.005664,0.004576,0.005504,0.004736,0.006144,0.062528,0.005056
+746,448.631,2.229,0.343712,0.006144,0.243424,0.004384,0.005408,0.004832,0.006144,0.006016,0.061568,0.005792
+747,519.467,1.92505,0.358272,0.005664,0.257888,0.00496,0.004096,0.005952,0.00592,0.006112,0.061888,0.005792
+748,625.63,1.59839,0.310816,0.00576,0.219712,0.004352,0.005408,0.004832,0.006144,0.006016,0.053248,0.005344
+749,508.883,1.96509,0.34896,0.00576,0.254976,0.005504,0.004736,0.005312,0.004928,0.006144,0.057088,0.004512
+750,481.429,2.07715,0.401376,0.00592,0.301504,0.004224,0.005536,0.004704,0.006144,0.00608,0.061504,0.00576
+751,497.329,2.01074,0.509984,0.006144,0.408736,0.00496,0.006144,0.00528,0.006016,0.005088,0.06144,0.006176
+752,336.814,2.96899,0.429312,0.008128,0.31664,0.004928,0.004128,0.00592,0.00576,0.014944,0.062848,0.006016
+753,463.506,2.15747,0.361024,0.005728,0.2624,0.004832,0.004096,0.006048,0.005984,0.0064,0.061056,0.00448
+754,645.649,1.54883,0.327008,0.00576,0.229408,0.004512,0.005248,0.004992,0.005984,0.005984,0.059712,0.005408
+755,637.808,1.56787,0.31952,0.00496,0.222912,0.004416,0.005344,0.004896,0.006048,0.00608,0.059488,0.005376
+756,616.96,1.62085,0.327904,0.00592,0.229888,0.004512,0.005248,0.004992,0.005952,0.006144,0.059584,0.005664
+757,654.104,1.52881,0.31488,0.005792,0.217696,0.005472,0.004736,0.005376,0.004864,0.006144,0.059392,0.005408
+758,680.625,1.46924,0.316736,0.00576,0.221056,0.004608,0.004096,0.006048,0.005792,0.005984,0.057952,0.00544
+759,689.446,1.45044,0.313568,0.004992,0.217088,0.005472,0.004768,0.005312,0.004928,0.006144,0.059392,0.005472
+760,715.959,1.39673,0.317408,0.006144,0.216256,0.004928,0.004096,0.005952,0.006336,0.005952,0.061632,0.006112
+761,541.369,1.84717,0.366592,0.006016,0.269696,0.004864,0.005152,0.005088,0.005888,0.005952,0.059392,0.004544
+762,597.956,1.67236,0.32512,0.006144,0.227328,0.005184,0.004864,0.004288,0.007296,0.004992,0.059392,0.005632
+763,738.284,1.35449,0.31568,0.00576,0.21776,0.004096,0.00576,0.00448,0.006144,0.006176,0.060704,0.0048
+764,778.115,1.28516,0.307072,0.00576,0.213824,0.005728,0.004512,0.0056,0.00576,0.005024,0.055296,0.005568
+765,703.297,1.42188,0.310464,0.00576,0.21504,0.004512,0.00528,0.00496,0.006016,0.005952,0.0576,0.005344
+766,628.51,1.59106,0.346112,0.007872,0.249152,0.004928,0.004288,0.005792,0.005728,0.005984,0.05776,0.004608
+767,680.399,1.46973,0.522464,0.005728,0.42784,0.0048,0.004224,0.00576,0.005504,0.00512,0.0584,0.005088
+768,591.309,1.69116,0.516096,0.004864,0.428032,0.00528,0.004544,0.004512,0.006048,0.005824,0.051616,0.005376
+769,595.262,1.67993,0.515648,0.005728,0.428256,0.004448,0.004096,0.005792,0.004448,0.006144,0.0512,0.005536
+770,427.112,2.34131,0.531488,0.006144,0.432128,0.006144,0.007328,0.006848,0.006304,0.006144,0.055136,0.005312
+771,613.449,1.63013,0.329728,0.005952,0.23968,0.00448,0.00528,0.00496,0.006016,0.005952,0.05152,0.005888
+772,724.187,1.38086,0.303104,0.006144,0.212832,0.004256,0.005504,0.004736,0.006144,0.006112,0.05248,0.004896
+773,731.951,1.36621,0.302848,0.005888,0.212704,0.0048,0.004096,0.006144,0.006144,0.006016,0.051328,0.005728
+774,680.964,1.46851,0.317952,0.00576,0.229504,0.004832,0.004096,0.006048,0.005824,0.006048,0.051328,0.004512
+775,729.605,1.37061,0.308832,0.006368,0.219136,0.005152,0.004864,0.00432,0.006144,0.006144,0.0512,0.005504
+776,766.037,1.30542,0.301632,0.004672,0.21408,0.004928,0.004224,0.005824,0.005824,0.006016,0.051328,0.004736
+777,749.771,1.33374,0.30448,0.007328,0.21312,0.004832,0.004096,0.00608,0.005792,0.006144,0.051616,0.005472
+778,727.531,1.37451,0.319488,0.006144,0.230656,0.004864,0.004096,0.006016,0.005792,0.005984,0.051072,0.004864
+779,648.512,1.54199,0.31744,0.006144,0.225024,0.004352,0.006048,0.004192,0.006144,0.006144,0.054656,0.004736
+780,616.032,1.62329,0.329184,0.006144,0.224992,0.004384,0.005376,0.004864,0.016192,0.006336,0.055296,0.0056
+781,441.427,2.26538,0.319456,0.008192,0.224576,0.0048,0.004096,0.006112,0.00576,0.005888,0.05392,0.006112
+782,603.863,1.65601,0.335424,0.005984,0.23888,0.004896,0.004192,0.005856,0.005792,0.005984,0.058144,0.005696
+783,672.026,1.48804,0.336416,0.005824,0.239744,0.004832,0.004096,0.006048,0.00576,0.006016,0.059072,0.005024
+784,666.45,1.50049,0.313632,0.004736,0.219136,0.004096,0.005536,0.004704,0.006144,0.00608,0.05744,0.00576
+785,729.605,1.37061,0.311296,0.006144,0.215072,0.0056,0.004608,0.005504,0.005792,0.005248,0.058272,0.005056
+786,718.596,1.3916,0.309216,0.005888,0.212448,0.004896,0.004096,0.005984,0.005728,0.005952,0.058112,0.006112
+787,704.749,1.41895,0.30656,0.005952,0.211136,0.005408,0.004832,0.005216,0.005024,0.006144,0.0568,0.006048
+788,628.221,1.5918,0.374784,0.006144,0.284032,0.004736,0.004096,0.006144,0.005792,0.00608,0.051616,0.006144
+789,593.795,1.68408,0.503776,0.00448,0.4096,0.005632,0.004608,0.006144,0.005984,0.005952,0.055648,0.005728
+790,597.52,1.67358,0.502784,0.005056,0.407552,0.006144,0.005984,0.004256,0.006144,0.006176,0.05696,0.004512
+791,512.064,1.95288,0.514368,0.006464,0.41472,0.00512,0.006144,0.005216,0.005024,0.006144,0.059392,0.006144
+792,652.437,1.53271,0.355488,0.006144,0.260064,0.004128,0.005728,0.004512,0.006144,0.006144,0.05728,0.005344
+793,602.619,1.65942,0.503904,0.005024,0.40912,0.004576,0.006144,0.0056,0.005984,0.005952,0.056064,0.00544
+794,609.342,1.64111,0.501184,0.005568,0.408448,0.005664,0.004576,0.006144,0.005984,0.006304,0.053184,0.005312
+795,623.44,1.604,0.497856,0.005632,0.40816,0.005568,0.004768,0.006016,0.006048,0.005952,0.051104,0.004608
+796,562.328,1.77832,0.506368,0.004704,0.411392,0.0056,0.004896,0.005824,0.00592,0.00592,0.056064,0.006048
+797,601.292,1.66309,0.505856,0.00576,0.409984,0.005696,0.005568,0.00512,0.005984,0.00592,0.057184,0.00464
+798,615.755,1.62402,0.503904,0.005632,0.408064,0.006016,0.0056,0.004768,0.006144,0.006144,0.056992,0.004544
+799,623.345,1.60425,0.504384,0.004704,0.408736,0.00496,0.006144,0.005184,0.005056,0.006144,0.057344,0.006112
+800,416.302,2.4021,0.500064,0.005728,0.408512,0.005632,0.004608,0.006144,0.006016,0.006272,0.0512,0.005952
+801,692.243,1.44458,0.305504,0.005856,0.217504,0.00432,0.00528,0.00496,0.006144,0.006144,0.05072,0.004576
+802,760.49,1.31494,0.303104,0.006144,0.215072,0.005152,0.004832,0.00432,0.006144,0.006176,0.050848,0.004416
+803,785.577,1.27295,0.303296,0.004992,0.214656,0.00448,0.005472,0.004768,0.006144,0.006016,0.051168,0.0056
+804,687.018,1.45557,0.303136,0.005504,0.213632,0.00512,0.004864,0.005376,0.00512,0.006144,0.052832,0.004544
+805,527.359,1.89624,0.503808,0.007328,0.410464,0.005792,0.0056,0.004992,0.006144,0.006016,0.052576,0.004896
+806,638.603,1.56592,0.313248,0.006144,0.223232,0.005632,0.004608,0.00544,0.0048,0.006144,0.0512,0.006048
+807,660.326,1.5144,0.309248,0.006144,0.220256,0.004896,0.004224,0.005856,0.005792,0.00592,0.051264,0.004896
+808,635.531,1.57349,0.33024,0.020992,0.226784,0.00464,0.00512,0.00512,0.005984,0.006016,0.050592,0.004992
+809,677.137,1.47681,0.30928,0.005984,0.225184,0.004352,0.005408,0.004832,0.006144,0.005952,0.046624,0.0048
+810,520.325,1.92188,0.304128,0.00512,0.21904,0.004192,0.0056,0.00464,0.006144,0.006144,0.047104,0.006144
+811,732.082,1.36597,0.3016,0.005728,0.216,0.005856,0.004384,0.005696,0.00576,0.005984,0.04624,0.005952
+812,781.232,1.28003,0.302592,0.006144,0.21504,0.005888,0.004352,0.005728,0.005728,0.005952,0.048128,0.005632
+813,714.585,1.39941,0.307232,0.005984,0.221952,0.004096,0.005728,0.004512,0.006144,0.006144,0.047104,0.005568
+814,573.669,1.74316,0.497664,0.006112,0.409344,0.005568,0.004992,0.005824,0.005984,0.006592,0.048256,0.004992
+815,598.655,1.67041,0.494912,0.006048,0.407648,0.005888,0.005568,0.004928,0.006144,0.00592,0.04736,0.005408
+816,594.657,1.68164,0.499296,0.006176,0.409568,0.006016,0.0056,0.004768,0.006144,0.006144,0.049152,0.005728
+817,590.202,1.69434,0.501312,0.006144,0.407552,0.006144,0.005728,0.004512,0.006176,0.006112,0.053248,0.005696
+818,556.295,1.79761,0.503264,0.006144,0.411104,0.00464,0.006144,0.005632,0.005952,0.005888,0.05216,0.0056
+819,596.215,1.67725,0.50016,0.005632,0.40848,0.006144,0.005632,0.004608,0.006144,0.006144,0.052864,0.004512
+820,533.125,1.87573,0.522176,0.023104,0.413216,0.004576,0.006144,0.005696,0.005952,0.00592,0.052064,0.005504
+821,571.668,1.74927,0.500128,0.005664,0.408128,0.0056,0.00496,0.006144,0.007168,0.00512,0.052352,0.004992
+822,571.03,1.75122,0.503616,0.006176,0.411616,0.005984,0.005568,0.004832,0.006144,0.006048,0.051296,0.005952
+823,593.193,1.68579,0.506112,0.005664,0.408416,0.0056,0.004704,0.006112,0.005984,0.005984,0.057696,0.005952
+824,605.112,1.65259,0.504864,0.006144,0.407552,0.00592,0.0056,0.004864,0.006144,0.006144,0.057216,0.00528
+825,579.841,1.72461,0.504288,0.004576,0.40944,0.0056,0.0048,0.006016,0.005984,0.005728,0.056,0.006144
+826,564.654,1.771,0.508224,0.006144,0.4112,0.004832,0.006144,0.005376,0.005952,0.005088,0.058368,0.00512
+827,586.819,1.7041,0.50592,0.004832,0.409056,0.00464,0.006144,0.005632,0.006368,0.006112,0.057664,0.005472
+828,603.062,1.6582,0.505856,0.006176,0.40752,0.006144,0.006048,0.005216,0.00512,0.006144,0.058944,0.004544
+829,414.869,2.4104,0.586816,0.006144,0.477184,0.006144,0.006144,0.005312,0.005984,0.005088,0.059168,0.015648
+830,620.042,1.61279,0.31952,0.00608,0.223296,0.005504,0.004736,0.005312,0.004928,0.006144,0.05888,0.00464
+831,681.417,1.46753,0.315328,0.006144,0.21712,0.00528,0.004864,0.005216,0.0064,0.00592,0.058304,0.00608
+832,551.798,1.81226,0.317824,0.005792,0.221664,0.004256,0.005504,0.004736,0.006144,0.006016,0.0592,0.004512
+833,536.055,1.86548,0.352256,0.005952,0.25568,0.004608,0.005184,0.005056,0.005952,0.005952,0.058816,0.005056
+834,596.042,1.67773,0.321856,0.005824,0.223904,0.005568,0.004672,0.005376,0.004832,0.006176,0.060512,0.004992
+835,482.052,2.07446,0.327776,0.00576,0.231584,0.00464,0.004096,0.006144,0.005824,0.006048,0.05776,0.00592
+836,631.709,1.58301,0.321536,0.006112,0.222912,0.004448,0.005344,0.004896,0.006048,0.005984,0.060992,0.0048
+837,419.672,2.38281,0.343776,0.005856,0.248096,0.0056,0.00464,0.00544,0.0048,0.006144,0.057344,0.005856
+838,429.44,2.32861,0.339776,0.006144,0.243712,0.005792,0.004448,0.005632,0.005728,0.005088,0.05728,0.005952
+839,503.751,1.98511,0.357376,0.006144,0.251136,0.015104,0.005984,0.004256,0.006144,0.006144,0.05712,0.005344
+840,500.061,1.99976,0.350528,0.00592,0.252416,0.005696,0.004544,0.005536,0.005952,0.006176,0.05936,0.004928
+841,500.183,1.99927,0.338528,0.005952,0.243584,0.004896,0.004256,0.005856,0.005792,0.00608,0.056992,0.00512
+842,609.705,1.64014,0.321536,0.006144,0.225312,0.004064,0.005856,0.004384,0.006144,0.006176,0.058592,0.004864
+843,659.9,1.51538,0.317056,0.006144,0.220352,0.004896,0.004128,0.005952,0.00592,0.005984,0.05792,0.00576
+844,583.06,1.71509,0.321664,0.005952,0.225344,0.004224,0.005536,0.004704,0.006176,0.006144,0.059072,0.004512
+845,424.94,2.35327,0.391168,0.006112,0.294976,0.0056,0.004608,0.005312,0.005984,0.006176,0.0576,0.0048
+846,543.597,1.8396,0.362592,0.004896,0.266272,0.005696,0.004512,0.005536,0.005792,0.005088,0.059168,0.005632
+847,614.923,1.62622,0.319168,0.00576,0.222048,0.005408,0.004832,0.005248,0.0064,0.005984,0.058112,0.005376
+848,515.155,1.94116,0.335872,0.005984,0.23968,0.004192,0.0056,0.00464,0.006144,0.006144,0.057376,0.006112
+849,530.914,1.88354,0.358528,0.00576,0.26192,0.004832,0.004096,0.00608,0.005728,0.005984,0.059072,0.005056
+850,651.918,1.53394,0.315328,0.006144,0.218944,0.004288,0.005504,0.004736,0.006144,0.006144,0.057344,0.00608
+851,571.349,1.75024,0.327904,0.004864,0.232832,0.004736,0.004096,0.006144,0.005856,0.0064,0.057376,0.0056
+852,619.761,1.61353,0.329824,0.006144,0.238656,0.004896,0.004256,0.005824,0.005824,0.005984,0.053696,0.004544
+853,564.732,1.77075,0.321536,0.006016,0.22928,0.00432,0.00608,0.005216,0.00512,0.006112,0.054752,0.00464
+854,425.603,2.34961,0.347008,0.004992,0.255712,0.004384,0.005408,0.004832,0.006144,0.006016,0.055008,0.004512
+855,522.983,1.91211,0.328992,0.006144,0.236672,0.004928,0.005472,0.004832,0.006144,0.00608,0.053312,0.005408
+856,592.593,1.6875,0.360576,0.004896,0.268288,0.005312,0.004864,0.005312,0.005056,0.00608,0.055296,0.005472
+857,531.948,1.87988,0.505888,0.006144,0.407552,0.006144,0.006112,0.005216,0.006208,0.004992,0.059008,0.004512
+858,696.243,1.43628,0.313856,0.005888,0.22176,0.004192,0.005568,0.004672,0.006144,0.006144,0.054976,0.004512
+859,695.889,1.43701,0.305984,0.006688,0.21328,0.004096,0.005792,0.004448,0.006144,0.006144,0.054848,0.004544
+860,514.121,1.94507,0.327648,0.005888,0.233728,0.004096,0.005696,0.004544,0.006144,0.006176,0.055264,0.006112
+861,619.48,1.61426,0.318144,0.004928,0.226816,0.00448,0.005312,0.004928,0.006144,0.006144,0.053248,0.006144
+862,712.348,1.40381,0.310944,0.006144,0.218336,0.004896,0.004096,0.005984,0.00576,0.005984,0.053952,0.005792
+863,353.652,2.82764,0.371488,0.00496,0.280224,0.004384,0.005376,0.004864,0.006144,0.006112,0.05328,0.006144
+864,336.261,2.97388,0.448576,0.006144,0.337568,0.004448,0.005344,0.004896,0.014336,0.007232,0.054208,0.0144
+865,557.582,1.79346,0.321632,0.005792,0.229824,0.005344,0.0048,0.005216,0.00512,0.006144,0.055008,0.004384
+866,263.442,3.7959,0.332192,0.004864,0.231424,0.005824,0.004416,0.005632,0.00576,0.005088,0.063392,0.005792
+867,490.598,2.03833,0.37856,0.005792,0.27888,0.005408,0.004832,0.005184,0.005056,0.006144,0.06144,0.005824
+868,525.33,1.90356,0.341376,0.005984,0.24592,0.005408,0.004832,0.005248,0.004992,0.006144,0.057344,0.005504
+869,352.253,2.83887,0.336608,0.004928,0.244736,0.00496,0.00416,0.005888,0.005568,0.004928,0.057088,0.004352
+870,610.523,1.63794,0.34832,0.005792,0.253792,0.004768,0.004096,0.006112,0.005984,0.006144,0.057024,0.004608
+871,636.519,1.57104,0.31744,0.00576,0.222144,0.004096,0.005728,0.005792,0.004864,0.006144,0.057344,0.005568
+872,484.504,2.06396,0.324224,0.00576,0.22624,0.00416,0.0056,0.00464,0.006144,0.006144,0.059392,0.006144
+873,539.444,1.85376,0.418016,0.005056,0.317152,0.004384,0.00528,0.00496,0.006176,0.006112,0.063424,0.005472
+874,517.237,1.93335,0.505856,0.006144,0.408928,0.004768,0.006144,0.005472,0.00592,0.004992,0.058944,0.004544
+875,470.48,2.12549,0.512416,0.005632,0.410208,0.0056,0.00496,0.005856,0.005984,0.00592,0.063648,0.004608
+876,500.917,1.99634,0.350848,0.004992,0.255168,0.004928,0.004096,0.006144,0.005888,0.005952,0.057792,0.005888
+877,410.174,2.43799,0.376768,0.005792,0.279456,0.005696,0.004544,0.006112,0.005728,0.005952,0.057984,0.005504
+878,633.076,1.57959,0.321344,0.005632,0.227584,0.004352,0.005408,0.004832,0.006144,0.005952,0.055488,0.005952
+879,524.725,1.90576,0.322368,0.004928,0.229248,0.005632,0.004608,0.005472,0.004768,0.006144,0.057024,0.004544
+880,589.437,1.69653,0.36816,0.006144,0.272384,0.004096,0.005856,0.004384,0.006144,0.006144,0.057344,0.005664
+881,565.746,1.76758,0.315776,0.005792,0.22544,0.004736,0.004096,0.006144,0.005952,0.005984,0.051552,0.00608
+882,645.955,1.5481,0.31872,0.006144,0.227328,0.005568,0.004672,0.00576,0.005792,0.005952,0.051968,0.005536
+883,442.715,2.25879,0.318336,0.00496,0.227328,0.005728,0.004512,0.005696,0.005728,0.006176,0.0536,0.004608
+884,450.011,2.22217,0.375584,0.005056,0.284704,0.005312,0.004864,0.005216,0.005056,0.006144,0.05328,0.005952
+885,548.327,1.82373,0.338112,0.005888,0.248064,0.00576,0.00448,0.005472,0.005824,0.005248,0.052832,0.004544
+886,604.665,1.65381,0.320064,0.005824,0.228224,0.00512,0.004896,0.00432,0.006144,0.006176,0.054432,0.004928
+887,498.115,2.00757,0.323456,0.006144,0.231424,0.005536,0.004704,0.005344,0.004896,0.006144,0.053248,0.006016
+888,482.109,2.07422,0.361408,0.005056,0.272384,0.004096,0.005888,0.004352,0.006144,0.006144,0.052512,0.004832
+889,628.993,1.58984,0.318912,0.005952,0.223424,0.005184,0.004896,0.004288,0.006112,0.006144,0.057344,0.005568
+890,588.76,1.69849,0.320736,0.005728,0.225376,0.004416,0.005344,0.004896,0.006176,0.006112,0.057344,0.005344
+891,548.327,1.82373,0.33776,0.006144,0.242944,0.004864,0.004096,0.006016,0.005696,0.00592,0.056096,0.005984
+892,541.369,1.84717,0.335904,0.006112,0.239808,0.004096,0.00576,0.00448,0.006144,0.006144,0.057344,0.006016
+893,638.404,1.56641,0.31808,0.00576,0.222208,0.005792,0.004448,0.005632,0.00592,0.006016,0.057632,0.004672
+894,523.317,1.91089,0.342016,0.006144,0.24576,0.00544,0.0048,0.00528,0.00496,0.006144,0.059104,0.004384
+895,578.94,1.72729,0.350624,0.00576,0.244512,0.005888,0.004352,0.005696,0.014784,0.007168,0.05744,0.005024
+896,401.766,2.48901,0.316608,0.005824,0.22112,0.004544,0.005216,0.005024,0.006144,0.006144,0.057216,0.005376
+897,617.425,1.61963,0.317184,0.006144,0.2232,0.004128,0.005632,0.004608,0.006144,0.006144,0.055296,0.005888
+898,579.513,1.72559,0.332096,0.004864,0.23552,0.004096,0.005824,0.004416,0.006144,0.006144,0.059392,0.005696
+899,568.81,1.75806,0.321632,0.005728,0.225824,0.005344,0.004864,0.005184,0.005056,0.006144,0.05888,0.004608
+900,586.399,1.70532,0.329728,0.006144,0.232672,0.004896,0.004096,0.006016,0.005856,0.006048,0.057856,0.006144
+901,642.006,1.55762,0.323232,0.006144,0.226624,0.0048,0.004096,0.00608,0.005728,0.00592,0.058048,0.005792
+902,584.892,1.70972,0.317568,0.00576,0.21936,0.004672,0.005248,0.004992,0.006144,0.007552,0.057984,0.005856
+903,515.155,1.94116,0.402592,0.005792,0.309696,0.005472,0.004832,0.005216,0.00512,0.006112,0.055008,0.005344
+904,647.999,1.54321,0.32,0.004928,0.222624,0.004672,0.004096,0.006144,0.006144,0.006144,0.059392,0.005856
+905,549.799,1.81885,0.348608,0.006112,0.249792,0.00464,0.005152,0.005088,0.005792,0.00592,0.059968,0.006144
+906,473.471,2.11206,0.352288,0.006144,0.249888,0.005632,0.004576,0.005504,0.005824,0.00512,0.064768,0.004832
+907,563.954,1.77319,0.339968,0.006144,0.233472,0.005472,0.004768,0.005344,0.004896,0.006144,0.06912,0.004608
+908,621.453,1.60913,0.323904,0.00576,0.217792,0.005632,0.004608,0.005472,0.004832,0.00608,0.069024,0.004704
+909,531.879,1.88013,0.329632,0.005984,0.224672,0.004864,0.004096,0.005984,0.005792,0.00592,0.066304,0.006016
+910,542.373,1.84375,0.346112,0.006048,0.241504,0.004352,0.00544,0.0048,0.006144,0.006144,0.066912,0.004768
+911,510.087,1.96045,0.383168,0.0064,0.276768,0.005696,0.004544,0.005728,0.005952,0.00624,0.066048,0.005792
+912,503.132,1.98755,0.31984,0.006304,0.221376,0.005728,0.004512,0.005568,0.005792,0.005088,0.060864,0.004608
+913,397.631,2.51489,0.385056,0.005952,0.286912,0.005184,0.004832,0.00432,0.006144,0.006144,0.059392,0.006176
+914,541.799,1.8457,0.336416,0.00592,0.23776,0.004672,0.00544,0.0048,0.006144,0.005888,0.06096,0.004832
+915,571.508,1.74976,0.327104,0.00576,0.227936,0.005504,0.004736,0.005312,0.004928,0.006144,0.061024,0.00576
+916,619.855,1.61328,0.327072,0.006112,0.22736,0.00576,0.00448,0.005632,0.005792,0.006176,0.060224,0.005536
+917,599.356,1.66846,0.325248,0.00576,0.227456,0.004768,0.004096,0.006112,0.00576,0.006048,0.059872,0.005376
+918,487.445,2.05151,0.374912,0.005792,0.276448,0.004736,0.004096,0.006144,0.005792,0.006048,0.05984,0.006016
+919,524.523,1.90649,0.327584,0.004704,0.229376,0.005824,0.004416,0.005664,0.005728,0.0064,0.06,0.005472
+920,612.715,1.63208,0.351296,0.006144,0.251936,0.005536,0.004672,0.00544,0.0048,0.006144,0.061312,0.005312
+921,370.847,2.69653,0.341568,0.006144,0.243712,0.004096,0.00576,0.004512,0.006112,0.006144,0.059392,0.005696
+922,560.789,1.7832,0.342016,0.006112,0.243104,0.004736,0.004128,0.006112,0.00576,0.005984,0.061344,0.004736
+923,657.675,1.52051,0.313536,0.005984,0.21936,0.004096,0.005824,0.004416,0.006144,0.006144,0.057056,0.004512
+924,576.901,1.7334,0.327328,0.006144,0.231424,0.00544,0.0048,0.00528,0.00496,0.006144,0.057344,0.005792
+925,557.734,1.79297,0.324128,0.00496,0.231456,0.005696,0.004512,0.005536,0.005728,0.006176,0.05424,0.005824
+926,583.725,1.71313,0.327872,0.006112,0.235552,0.005376,0.004864,0.005216,0.005024,0.006144,0.055072,0.004512
+927,551.724,1.8125,0.31632,0.005024,0.224384,0.004928,0.00416,0.00592,0.005664,0.006016,0.055264,0.00496
+928,584.809,1.70996,0.327616,0.004768,0.23344,0.004128,0.005664,0.004576,0.006144,0.006048,0.05744,0.005408
+929,568.021,1.7605,0.326592,0.005056,0.23072,0.0048,0.004096,0.006112,0.005856,0.006208,0.058688,0.005056
+930,432.341,2.31299,0.381024,0.00608,0.284832,0.004096,0.005888,0.004512,0.005984,0.006144,0.05888,0.004608
+931,588.083,1.70044,0.321536,0.006144,0.227264,0.00416,0.0056,0.00464,0.006144,0.006048,0.056608,0.004928
+932,614.83,1.62646,0.320416,0.005024,0.228608,0.004864,0.004096,0.006144,0.006144,0.005984,0.054688,0.004864
+933,528.789,1.89111,0.334432,0.005792,0.240448,0.004224,0.005536,0.004704,0.006144,0.006048,0.057056,0.00448
+934,448.091,2.23169,0.505664,0.0056,0.410208,0.005824,0.0056,0.00496,0.005952,0.006016,0.055616,0.005888
+935,592.678,1.68726,0.331072,0.006144,0.233472,0.005664,0.004576,0.005536,0.005728,0.00512,0.059392,0.00544
+936,531.534,1.88135,0.33648,0.00592,0.240256,0.005536,0.004704,0.005376,0.004896,0.006112,0.059168,0.004512
+937,495.284,2.01904,0.339968,0.005856,0.23776,0.004192,0.005568,0.004672,0.006144,0.00608,0.064864,0.004832
+938,458.73,2.17993,0.329408,0.006144,0.227328,0.004096,0.005824,0.004416,0.006144,0.006144,0.063488,0.005824
+939,581.984,1.71826,0.32928,0.006144,0.224864,0.004512,0.005248,0.004992,0.00592,0.005952,0.065952,0.005696
+940,496.485,2.01416,0.360736,0.005728,0.256704,0.005504,0.004736,0.005376,0.004864,0.006144,0.066656,0.005024
+941,491.481,2.03467,0.515872,0.006144,0.411648,0.006144,0.005568,0.004672,0.006144,0.005984,0.063648,0.00592
+942,578.204,1.72949,0.329888,0.006304,0.225184,0.004192,0.005568,0.004672,0.006176,0.006112,0.06688,0.0048
+943,493.851,2.0249,0.33792,0.006144,0.23344,0.004128,0.005664,0.004576,0.006144,0.006144,0.065536,0.006144
+944,557.81,1.79272,0.33824,0.005728,0.242368,0.004128,0.0056,0.00464,0.006144,0.006144,0.058368,0.00512
+945,589.522,1.69629,0.329728,0.006144,0.22912,0.004352,0.00544,0.0048,0.006144,0.005984,0.063168,0.004576
+946,485.136,2.06128,0.319488,0.006144,0.223232,0.005536,0.004704,0.005248,0.004992,0.006144,0.058944,0.004544
+947,517.629,1.93188,0.337408,0.006144,0.2376,0.005792,0.004416,0.005632,0.005792,0.00608,0.06032,0.005632
+948,568.415,1.75928,0.332032,0.005728,0.234112,0.005152,0.004864,0.00432,0.006144,0.006144,0.06096,0.004608
+949,576.739,1.73389,0.328,0.005696,0.228128,0.005376,0.004832,0.005216,0.006304,0.005984,0.06032,0.006144
+950,583.227,1.7146,0.329952,0.00576,0.231008,0.004896,0.00432,0.005728,0.00576,0.005984,0.06208,0.004416
+951,554.413,1.80371,0.334272,0.005792,0.233312,0.004896,0.004256,0.005664,0.00576,0.00496,0.065024,0.004608
+952,530.433,1.88525,0.34576,0.00576,0.246368,0.005696,0.004544,0.005536,0.00576,0.005088,0.06144,0.005568
+953,565.199,1.76929,0.33408,0.00576,0.230016,0.005696,0.004544,0.0056,0.005856,0.005952,0.065536,0.00512
+954,581.653,1.71924,0.3216,0.006144,0.224544,0.004832,0.004096,0.00608,0.00576,0.005824,0.059808,0.004512
+955,371.992,2.68823,0.374048,0.005984,0.27568,0.004928,0.004224,0.005824,0.005888,0.006048,0.060064,0.005408
+956,613.725,1.62939,0.335072,0.006144,0.231456,0.005184,0.004864,0.004256,0.006144,0.006144,0.065536,0.005344
+957,601.292,1.66309,0.325152,0.00608,0.221248,0.004096,0.005696,0.004544,0.006144,0.006144,0.065536,0.005664
+958,473.964,2.10986,0.36336,0.004992,0.2616,0.004608,0.005184,0.005056,0.00592,0.006208,0.063648,0.006144
+959,506.931,1.97266,0.339744,0.00576,0.23632,0.005184,0.004832,0.00432,0.006144,0.006144,0.065536,0.005504
+960,626.875,1.59521,0.321984,0.005792,0.221088,0.004832,0.004096,0.006144,0.005792,0.005952,0.063744,0.004544
+961,563.644,1.77417,0.333376,0.006144,0.233024,0.004544,0.005248,0.004992,0.005984,0.006016,0.061728,0.005696
+962,521.518,1.91748,0.35248,0.004928,0.251808,0.004096,0.00576,0.004512,0.006112,0.006144,0.063488,0.005632
+963,367.453,2.72144,0.333824,0.00608,0.22944,0.005792,0.004448,0.0056,0.006336,0.00592,0.065248,0.00496
+964,455.567,2.19507,0.346112,0.006016,0.243296,0.00464,0.005184,0.005056,0.006144,0.006112,0.064832,0.004832
+965,406.995,2.45703,0.36864,0.00608,0.266176,0.004224,0.005536,0.004704,0.006144,0.006016,0.063616,0.006144
+966,583.559,1.71362,0.338336,0.00576,0.234272,0.005792,0.004448,0.005664,0.004576,0.006144,0.066784,0.004896
+967,568.731,1.7583,0.332608,0.004928,0.22528,0.00544,0.0048,0.00528,0.00496,0.006144,0.07072,0.005056
+968,367.058,2.72437,0.348416,0.005792,0.238176,0.00544,0.0048,0.00528,0.00496,0.006144,0.072832,0.004992
+969,417.278,2.39648,0.401824,0.005728,0.2952,0.004768,0.005184,0.005056,0.005856,0.00592,0.068096,0.006016
+970,463.558,2.15723,0.420224,0.00576,0.314272,0.004096,0.005792,0.004448,0.006144,0.006176,0.067552,0.005984
+971,482.62,2.07202,0.386944,0.00576,0.280512,0.004544,0.005248,0.004992,0.005984,0.005984,0.067904,0.006016
+972,448.336,2.23047,0.379968,0.006144,0.2736,0.004928,0.004096,0.006144,0.005792,0.005984,0.067904,0.005376
+973,356.794,2.80273,0.51824,0.007296,0.412544,0.00576,0.0056,0.005024,0.006144,0.00608,0.06528,0.004512
+974,467.527,2.13892,0.376864,0.00496,0.271648,0.004832,0.004096,0.00608,0.005856,0.006016,0.067936,0.00544
+975,530.983,1.8833,0.334304,0.00576,0.22816,0.004128,0.005632,0.004608,0.006144,0.006144,0.068768,0.00496
+976,560.405,1.78442,0.33456,0.00592,0.227328,0.004896,0.004256,0.005824,0.005664,0.004896,0.070688,0.005088
+977,529.473,1.88867,0.340896,0.005024,0.234528,0.004896,0.004288,0.00608,0.005792,0.005952,0.06992,0.004416
+978,404.104,2.47461,0.370688,0.006144,0.259616,0.004576,0.005248,0.004992,0.005984,0.005952,0.072032,0.006144
+979,532.155,1.87915,0.37072,0.00576,0.260512,0.005888,0.004352,0.005696,0.00576,0.005952,0.072128,0.004672
+980,569.363,1.75635,0.34208,0.005728,0.236,0.004096,0.005792,0.004448,0.006144,0.006144,0.068864,0.004864
+981,402.951,2.48169,0.366592,0.006144,0.256,0.005504,0.004736,0.005344,0.00592,0.006208,0.071648,0.005088
+982,463.191,2.15894,0.36192,0.006432,0.25408,0.005664,0.004576,0.005472,0.005824,0.005088,0.069472,0.005312
+983,453.398,2.20557,0.417792,0.006112,0.298048,0.004896,0.004288,0.005792,0.005952,0.00608,0.066144,0.02048
+984,522.582,1.91357,0.349184,0.00512,0.243776,0.005888,0.004288,0.005888,0.00576,0.005952,0.066368,0.006144
+985,413.821,2.4165,0.459936,0.006144,0.3584,0.005536,0.004704,0.005376,0.00608,0.00608,0.06224,0.005376
+986,493.375,2.02686,0.413056,0.005984,0.313504,0.005376,0.004864,0.005376,0.004864,0.006144,0.06144,0.005504
+987,462.094,2.16406,0.321472,0.00576,0.221728,0.005728,0.004512,0.005504,0.004736,0.006144,0.06144,0.00592
+988,341.647,2.927,0.377536,0.0048,0.280064,0.004608,0.005152,0.005088,0.00592,0.006016,0.059744,0.006144
+989,554.563,1.80322,0.33088,0.006144,0.234816,0.0048,0.004096,0.006048,0.005696,0.005952,0.057952,0.005376
+990,611.07,1.63647,0.32368,0.005824,0.228736,0.004896,0.004256,0.005856,0.005696,0.005952,0.05792,0.004544
+991,504.123,1.98364,0.345856,0.005824,0.250176,0.0056,0.00464,0.005536,0.004832,0.006016,0.057344,0.005888
+992,528.857,1.89087,0.33792,0.006144,0.241664,0.004096,0.005856,0.004384,0.006144,0.006144,0.057344,0.006144
+993,621.831,1.60815,0.31824,0.0048,0.222656,0.004672,0.005152,0.00512,0.006112,0.005984,0.059232,0.004512
+994,442.619,2.25928,0.36128,0.004928,0.266208,0.004096,0.005696,0.004544,0.006144,0.006144,0.059008,0.004512
+995,553.888,1.80542,0.42384,0.006176,0.32736,0.004896,0.004128,0.00592,0.005888,0.005888,0.05808,0.005504
+996,461.105,2.1687,0.324928,0.006144,0.227328,0.005824,0.004416,0.005664,0.005952,0.006336,0.057824,0.00544
+997,533.125,1.87573,0.357856,0.006144,0.261792,0.004448,0.00528,0.00496,0.006144,0.006144,0.057344,0.0056
+998,571.349,1.75024,0.348192,0.005888,0.249472,0.004736,0.004096,0.006144,0.005792,0.006272,0.060864,0.004928
+999,585.561,1.70776,0.327712,0.005984,0.229472,0.00416,0.005632,0.004608,0.006144,0.006144,0.060608,0.00496
+1000,656.2,1.52393,0.320992,0.00576,0.221792,0.0056,0.004608,0.005472,0.004768,0.006144,0.06144,0.005408
+1001,644.938,1.55054,0.321696,0.005024,0.223232,0.005536,0.004704,0.005344,0.004896,0.006144,0.06144,0.005376
+1002,603.062,1.6582,0.321696,0.005728,0.219744,0.004064,0.005856,0.004384,0.006144,0.006144,0.064896,0.004736
+1003,606.096,1.6499,0.361312,0.007008,0.26624,0.005856,0.004384,0.005664,0.005728,0.004992,0.056832,0.004608
+1004,645.548,1.54907,0.31344,0.005728,0.219616,0.005728,0.004512,0.005568,0.005792,0.00608,0.055296,0.00512
+1005,551.798,1.81226,0.318304,0.00688,0.22448,0.004928,0.004288,0.005632,0.005728,0.006144,0.054176,0.006048
+1006,573.911,1.74243,0.323488,0.004864,0.231296,0.004224,0.005536,0.004704,0.006144,0.006144,0.0552,0.005376
+1007,574.958,1.73926,0.38032,0.005856,0.28448,0.004576,0.005184,0.005056,0.00592,0.005952,0.05776,0.005536
+1008,469.509,2.12988,0.504704,0.004864,0.4096,0.005728,0.005568,0.005088,0.00608,0.005952,0.057312,0.004512
+1009,631.806,1.58276,0.3192,0.006144,0.22048,0.0048,0.004096,0.00608,0.005728,0.00592,0.060096,0.005856
+1010,617.798,1.61865,0.31952,0.006144,0.219136,0.00576,0.00448,0.0056,0.00576,0.005024,0.06144,0.006176
+1011,613.909,1.62891,0.32016,0.00592,0.222048,0.005856,0.004384,0.005664,0.005792,0.006048,0.059904,0.004544
+1012,588.506,1.69922,0.323296,0.006144,0.222304,0.004928,0.004192,0.005888,0.00576,0.00592,0.062304,0.005856
+1013,622.776,1.60571,0.343552,0.00608,0.241728,0.005344,0.004832,0.005216,0.005088,0.006144,0.063488,0.005632
+1014,511.425,1.95532,0.325632,0.006144,0.222464,0.004864,0.004096,0.006016,0.005728,0.006272,0.065248,0.0048
+1015,541.727,1.84595,0.331776,0.006144,0.231296,0.004224,0.005536,0.004704,0.006144,0.006144,0.06272,0.004864
+1016,663.105,1.50806,0.315392,0.006016,0.218528,0.004832,0.004096,0.006048,0.00576,0.006624,0.058752,0.004736
+1017,647.999,1.54321,0.317664,0.004992,0.220224,0.004896,0.004224,0.005888,0.00576,0.006048,0.060128,0.005504
+1018,629.573,1.58838,0.315392,0.006144,0.218496,0.004736,0.004096,0.006144,0.00576,0.006048,0.058944,0.005024
+1019,603.418,1.65723,0.388192,0.006144,0.288768,0.005312,0.004832,0.005216,0.00512,0.006144,0.061344,0.005312
+1020,694.944,1.43896,0.319488,0.006144,0.220224,0.004896,0.004256,0.005856,0.00576,0.005984,0.060224,0.006144
+1021,707.427,1.41357,0.313344,0.006144,0.217088,0.005472,0.004768,0.005312,0.005088,0.006048,0.058368,0.005056
+1022,637.609,1.56836,0.322944,0.006144,0.224928,0.004448,0.00528,0.00496,0.00608,0.005952,0.059648,0.005504
+1023,599.093,1.66919,0.335872,0.006144,0.237568,0.004096,0.005664,0.004576,0.006144,0.006144,0.059424,0.006112
+1024,464.189,2.1543,0.365408,0.00496,0.26832,0.005344,0.004864,0.005216,0.005024,0.006144,0.060928,0.004608
+1025,645.649,1.54883,0.319264,0.00592,0.21984,0.005504,0.004736,0.005376,0.004864,0.006144,0.06144,0.00544
+1026,679.045,1.47266,0.321952,0.00592,0.219552,0.00432,0.00544,0.0048,0.006144,0.006016,0.064672,0.005088
+1027,591.309,1.69116,0.333824,0.006144,0.229376,0.005888,0.004384,0.005632,0.005728,0.004992,0.065568,0.006112
+1028,602.353,1.66016,0.32176,0.00576,0.223808,0.005536,0.004704,0.005376,0.005952,0.00624,0.05968,0.004704
+1029,642.208,1.55713,0.317952,0.005024,0.219136,0.005824,0.004416,0.005632,0.005792,0.00496,0.06144,0.005728
+1030,686.672,1.4563,0.320992,0.006144,0.218464,0.004768,0.004096,0.006144,0.005792,0.006016,0.063968,0.0056
+1031,564.498,1.77148,0.321792,0.00576,0.215872,0.005408,0.004832,0.005856,0.00576,0.005952,0.0664,0.005952
+1032,528.039,1.8938,0.357248,0.005024,0.253952,0.004096,0.005792,0.00576,0.004832,0.006144,0.065536,0.006112
+1033,354.111,2.82397,0.347104,0.005088,0.243712,0.005568,0.004672,0.005376,0.004864,0.006144,0.06672,0.00496
+1034,621.737,1.6084,0.32704,0.00576,0.221728,0.005664,0.004576,0.005504,0.005792,0.005088,0.067584,0.005344
+1035,650.779,1.53662,0.321888,0.005984,0.220096,0.005152,0.004864,0.00432,0.006144,0.006144,0.063488,0.005696
+1036,629.766,1.58789,0.341248,0.007936,0.235776,0.004096,0.005696,0.004544,0.006144,0.006144,0.06544,0.005472
+1037,614.83,1.62646,0.323712,0.006144,0.223264,0.00416,0.005632,0.004608,0.006144,0.00608,0.063008,0.004672
+1038,661.712,1.51123,0.31792,0.00576,0.215456,0.004544,0.005216,0.005024,0.005888,0.006368,0.06352,0.006144
+1039,566.137,1.76636,0.323584,0.00608,0.223168,0.004224,0.005536,0.004704,0.006144,0.006144,0.06144,0.006144
+1040,554.863,1.80225,0.325664,0.00576,0.225984,0.00512,0.004896,0.00432,0.006144,0.006144,0.06144,0.005856
+1041,678.933,1.4729,0.319648,0.004928,0.219136,0.005504,0.004736,0.005408,0.004832,0.006144,0.063488,0.005472
+1042,409.969,2.43921,0.32064,0.005888,0.217344,0.005856,0.004384,0.006144,0.006176,0.006112,0.063392,0.005344
+1043,511.425,1.95532,0.346112,0.005984,0.243328,0.00464,0.005152,0.005088,0.00592,0.00592,0.063936,0.006144
+1044,625.248,1.59937,0.3216,0.005792,0.218944,0.004704,0.005664,0.004576,0.006144,0.006144,0.064704,0.004928
+1045,705.842,1.41675,0.321536,0.005984,0.219104,0.004288,0.005472,0.004768,0.006144,0.005984,0.0648,0.004992
+1046,636.42,1.57129,0.333824,0.006144,0.229376,0.005408,0.004832,0.005248,0.004992,0.006144,0.065536,0.006144
+1047,599.883,1.66699,0.344192,0.00576,0.239392,0.00512,0.004096,0.006016,0.006016,0.006112,0.065824,0.005856
+1048,577.064,1.73291,0.328032,0.005728,0.228064,0.005312,0.004896,0.005216,0.006112,0.006176,0.061632,0.004896
+1049,648.82,1.54126,0.319424,0.006144,0.219136,0.005184,0.004832,0.00432,0.006144,0.006144,0.06144,0.00608
+1050,671.916,1.48828,0.326144,0.00576,0.22624,0.004096,0.00576,0.00448,0.006144,0.006144,0.06144,0.00608
+1051,417.618,2.39453,0.323584,0.006144,0.219136,0.004096,0.005792,0.005728,0.008,0.00688,0.063104,0.004704
+1052,635.531,1.57349,0.327264,0.006144,0.229376,0.005184,0.004864,0.004288,0.006144,0.006144,0.059392,0.005728
+1053,693.649,1.44165,0.315424,0.006176,0.221152,0.005344,0.004896,0.005344,0.004896,0.006144,0.056576,0.004896
+1054,642.51,1.5564,0.339968,0.006144,0.243136,0.004672,0.004192,0.006048,0.006016,0.005952,0.05888,0.004928
+1055,598.218,1.67163,0.336608,0.004832,0.239616,0.005792,0.004448,0.0056,0.00576,0.005024,0.059392,0.006144
+1056,584.725,1.71021,0.327168,0.006144,0.22736,0.005184,0.005024,0.005664,0.005824,0.005984,0.060352,0.005632
+1057,620.888,1.6106,0.318208,0.004928,0.2208,0.004384,0.005376,0.004864,0.00608,0.005952,0.060736,0.005088
+1058,621.737,1.6084,0.321536,0.006144,0.223232,0.005408,0.004832,0.00528,0.00496,0.006144,0.060928,0.004608
+1059,535.495,1.86743,0.329728,0.006144,0.227328,0.00512,0.004864,0.004352,0.006144,0.006144,0.064928,0.004704
+1060,448.238,2.23096,0.373568,0.004928,0.272384,0.004096,0.005696,0.004544,0.006144,0.006144,0.06496,0.004672
+1061,575.443,1.73779,0.362496,0.006144,0.259744,0.004448,0.005248,0.004992,0.006144,0.006112,0.06464,0.005024
+1062,622.02,1.60767,0.34416,0.005024,0.241696,0.005536,0.004672,0.00544,0.0048,0.006144,0.065504,0.005344
+1063,588.76,1.69849,0.327872,0.00576,0.225536,0.004416,0.005376,0.004864,0.006144,0.006144,0.064544,0.005088
+1064,517.629,1.93188,0.333248,0.007296,0.228224,0.005888,0.004352,0.005728,0.005824,0.005984,0.064384,0.005568
+1065,608.528,1.64331,0.331808,0.004928,0.22928,0.00576,0.004448,0.0056,0.005792,0.004992,0.065536,0.005472
+1066,650.262,1.53784,0.323584,0.006144,0.22528,0.004096,0.005728,0.004512,0.006144,0.006144,0.060896,0.00464
+1067,555.993,1.79858,0.335872,0.006144,0.239488,0.004224,0.005568,0.004672,0.006144,0.006144,0.0584,0.005088
+1068,478.561,2.0896,0.440032,0.006144,0.342048,0.004128,0.005632,0.004608,0.006144,0.006144,0.059392,0.005792
+1069,475.726,2.10205,0.32096,0.00592,0.221408,0.005664,0.004576,0.005536,0.005952,0.006112,0.060224,0.005568
+1070,567.234,1.76294,0.329728,0.006144,0.227328,0.005792,0.004448,0.005664,0.005792,0.005984,0.062464,0.006112
+1071,536.336,1.8645,0.348512,0.006016,0.24928,0.004928,0.004192,0.005856,0.00576,0.006112,0.061856,0.004512
+1072,564.654,1.771,0.3288,0.00592,0.227584,0.005344,0.004864,0.005248,0.004992,0.006144,0.06336,0.005344
+1073,610.523,1.63794,0.323616,0.006144,0.225152,0.004224,0.005568,0.004672,0.006144,0.006112,0.059424,0.006176
+1074,537.321,1.86108,0.326816,0.005888,0.227584,0.0056,0.00464,0.00544,0.0048,0.006176,0.061344,0.005344
+1075,426.311,2.3457,0.370688,0.006144,0.271456,0.004928,0.004192,0.005664,0.005792,0.005952,0.061504,0.005056
+1076,569.522,1.75586,0.325664,0.00576,0.227104,0.004736,0.004096,0.006112,0.005824,0.005952,0.060032,0.006048
+1077,495.584,2.01782,0.318016,0.004928,0.221152,0.005216,0.004832,0.004288,0.006144,0.006144,0.059392,0.00592
+1078,518.678,1.92798,0.345376,0.006144,0.24352,0.004288,0.005472,0.004768,0.006144,0.006048,0.063584,0.005408
+1079,504.744,1.9812,0.417568,0.00576,0.317024,0.004896,0.00432,0.00576,0.005856,0.005952,0.062304,0.005696
+1080,585.561,1.70776,0.331552,0.004832,0.232736,0.004832,0.004096,0.00608,0.005792,0.006016,0.06176,0.005408
+1081,674.461,1.48267,0.331776,0.006144,0.231328,0.005344,0.004864,0.004224,0.006144,0.006144,0.06272,0.004864
+1082,400.391,2.49756,0.360928,0.00576,0.258784,0.005088,0.004864,0.00576,0.00576,0.00512,0.06528,0.004512
+1083,534.447,1.87109,0.370944,0.00576,0.270944,0.004128,0.005664,0.004576,0.006144,0.006144,0.063072,0.004512
+1084,651.399,1.53516,0.327008,0.006016,0.225408,0.005856,0.004384,0.005728,0.00576,0.005952,0.062432,0.005472
+1085,570.792,1.75195,0.323584,0.006144,0.222784,0.004544,0.005216,0.005024,0.005952,0.005984,0.061792,0.006144
+1086,378.069,2.64502,0.371808,0.005952,0.270048,0.004576,0.005216,0.005024,0.006016,0.006016,0.063616,0.005344
+1087,543.308,1.84058,0.355104,0.004896,0.255904,0.004192,0.005568,0.004672,0.006144,0.006048,0.061536,0.006144
+1088,562.406,1.77808,0.35856,0.005792,0.258688,0.004384,0.005376,0.004864,0.006144,0.006144,0.06144,0.005728
+1089,529.541,1.88843,0.335872,0.006144,0.237568,0.005344,0.004832,0.005216,0.005088,0.006144,0.061184,0.004352
+1090,481.939,2.07495,0.405024,0.005888,0.308576,0.004928,0.004256,0.005824,0.005696,0.005984,0.058272,0.0056
+1091,562.097,1.77905,0.326176,0.006048,0.227616,0.00448,0.005536,0.004704,0.006144,0.006144,0.059392,0.006112
+1092,521.319,1.91821,0.32992,0.00576,0.234048,0.00576,0.00448,0.0056,0.005856,0.00624,0.057824,0.004352
+1093,518.678,1.92798,0.34544,0.006144,0.247808,0.005856,0.004384,0.005696,0.00576,0.004928,0.059392,0.005472
+1094,457.654,2.18506,0.323584,0.00608,0.227392,0.004096,0.005824,0.004416,0.006144,0.006176,0.057312,0.006144
+1095,567.156,1.76318,0.32768,0.006144,0.232544,0.004928,0.004192,0.005856,0.005728,0.005952,0.057824,0.004512
+1096,557.203,1.79468,0.347232,0.006144,0.25136,0.00464,0.005152,0.005088,0.005856,0.006016,0.057568,0.005408
+1097,598.48,1.6709,0.376992,0.00576,0.28112,0.0056,0.004672,0.005568,0.005728,0.005056,0.058784,0.004704
+1098,496.304,2.01489,0.505856,0.005984,0.40976,0.005632,0.004608,0.006144,0.005984,0.005984,0.057248,0.004512
+1099,594.571,1.68188,0.323296,0.006176,0.225248,0.00512,0.004864,0.004352,0.006144,0.006144,0.059392,0.005856
+1100,539.515,1.85352,0.357952,0.00576,0.258848,0.005824,0.004416,0.005664,0.00576,0.006016,0.060288,0.005376
+1101,479.681,2.08472,0.41184,0.00576,0.313888,0.00416,0.0056,0.00464,0.006144,0.006144,0.059392,0.006112
+1102,580.828,1.72168,0.356384,0.006144,0.25808,0.00544,0.004768,0.005312,0.006208,0.006112,0.059712,0.004608
+1103,560.098,1.7854,0.329728,0.006144,0.231264,0.004256,0.005504,0.004736,0.006144,0.005984,0.059552,0.006144
+1104,404.703,2.47095,0.366592,0.00608,0.267808,0.00464,0.00512,0.00512,0.005888,0.006016,0.060864,0.005056
+1105,634.645,1.57568,0.3224,0.00496,0.225088,0.004288,0.005568,0.004672,0.006144,0.006144,0.059392,0.006144
+1106,618.638,1.61646,0.32768,0.006144,0.226624,0.0048,0.004096,0.00608,0.005856,0.00624,0.062912,0.004928
+1107,628.703,1.59058,0.317504,0.006144,0.21712,0.005344,0.004864,0.005216,0.005024,0.006144,0.063136,0.004512
+1108,479.513,2.08545,0.369888,0.006144,0.269664,0.004768,0.004096,0.00592,0.005792,0.005984,0.062144,0.005376
+1109,609.615,1.64038,0.329312,0.00592,0.225504,0.005888,0.004352,0.005696,0.005984,0.00592,0.06432,0.005728
+1110,666.45,1.50049,0.320992,0.006144,0.21824,0.004896,0.004192,0.005888,0.00576,0.006112,0.06416,0.0056
+1111,494.626,2.02173,0.329728,0.006176,0.227296,0.004096,0.006144,0.005472,0.004768,0.006144,0.06512,0.004512
+1112,456.125,2.19238,0.337792,0.00608,0.235584,0.005472,0.004768,0.005344,0.004896,0.00624,0.063392,0.006016
+1113,670.925,1.49048,0.324224,0.004928,0.220992,0.005792,0.004448,0.005632,0.005728,0.005024,0.065536,0.006144
+1114,626.971,1.59497,0.321536,0.006144,0.223232,0.005888,0.004352,0.005728,0.00576,0.005984,0.058304,0.006144
+1115,573.75,1.74292,0.329728,0.005856,0.229216,0.004544,0.005216,0.005024,0.005952,0.005952,0.063456,0.004512
+1116,573.027,1.74512,0.339968,0.006144,0.237568,0.005792,0.004448,0.005664,0.005824,0.006112,0.062272,0.006144
+1117,461.313,2.16772,0.5088,0.006176,0.408224,0.0056,0.004832,0.006016,0.005984,0.005952,0.06112,0.004896
+1118,601.204,1.66333,0.335904,0.004928,0.241632,0.004096,0.005728,0.004512,0.006144,0.006144,0.057248,0.005472
+1119,634.449,1.57617,0.323584,0.006144,0.227328,0.0056,0.00464,0.005408,0.004832,0.006144,0.0584,0.005088
+1120,400.783,2.49512,0.339968,0.006144,0.24112,0.00464,0.004192,0.006048,0.005888,0.005984,0.061152,0.0048
+1121,587.661,1.70166,0.324544,0.005056,0.229408,0.005824,0.004384,0.005664,0.005728,0.004992,0.057344,0.006144
+1122,629.186,1.58936,0.317408,0.00576,0.221568,0.005856,0.004384,0.005696,0.005792,0.005952,0.056288,0.006112
+1123,495.524,2.01807,0.329728,0.005824,0.236992,0.004896,0.004192,0.00592,0.00576,0.006272,0.055008,0.004864
+1124,585.98,1.70654,0.328128,0.00576,0.235648,0.0048,0.004096,0.00608,0.005792,0.006016,0.05536,0.004576
+1125,667.645,1.4978,0.315808,0.004928,0.219136,0.005568,0.004672,0.00528,0.00496,0.006144,0.059392,0.005728
+1126,611.07,1.63647,0.317088,0.005824,0.219968,0.005824,0.004416,0.005856,0.005984,0.006304,0.057568,0.005344
+1127,485.136,2.06128,0.354144,0.005792,0.258784,0.004128,0.005856,0.004384,0.006144,0.006144,0.057344,0.005568
+1128,590.457,1.6936,0.323584,0.006144,0.2272,0.004224,0.005536,0.004704,0.006176,0.006112,0.057344,0.006144
+1129,502.269,1.99097,0.339232,0.006144,0.24496,0.004896,0.004096,0.005984,0.005952,0.006208,0.055584,0.005408
+1130,615.015,1.62598,0.319552,0.005728,0.225888,0.00432,0.005472,0.004768,0.006144,0.006144,0.055296,0.005792
+1131,581.984,1.71826,0.335904,0.007392,0.242272,0.004288,0.005792,0.004448,0.006144,0.006144,0.05488,0.004544
+1132,527.088,1.89722,0.352576,0.005792,0.25872,0.00544,0.0048,0.005472,0.004768,0.006144,0.055296,0.006144
+1133,602.53,1.65967,0.325408,0.006144,0.231424,0.005664,0.004576,0.005536,0.005728,0.00512,0.055296,0.00592
+1134,668.407,1.49609,0.311648,0.004736,0.219136,0.00544,0.0048,0.00528,0.00496,0.006144,0.055296,0.005856
+1135,486.519,2.05542,0.34704,0.005024,0.255392,0.004704,0.004096,0.006144,0.005984,0.005984,0.053632,0.00608
+1136,559.869,1.78613,0.323584,0.006144,0.231424,0.005824,0.004416,0.005664,0.00576,0.00496,0.054496,0.004896
+1137,690.725,1.44775,0.310912,0.00576,0.2176,0.00576,0.00448,0.005568,0.005792,0.005024,0.055296,0.005632
+1138,480.075,2.08301,0.344064,0.005984,0.251712,0.004448,0.005696,0.004544,0.006144,0.006144,0.054784,0.004608
+1139,402.753,2.48291,0.38752,0.005728,0.295776,0.004096,0.005824,0.004416,0.006144,0.006144,0.05456,0.004832
+1140,669.719,1.49316,0.325632,0.006144,0.227328,0.005216,0.004864,0.004256,0.006144,0.006144,0.060768,0.004768
+1141,609.796,1.63989,0.319488,0.005888,0.22144,0.005696,0.004544,0.005504,0.004736,0.006144,0.059392,0.006144
+1142,570.474,1.75293,0.324768,0.006144,0.22528,0.00528,0.004864,0.005216,0.00512,0.006144,0.061312,0.005408
+1143,593.795,1.68408,0.32768,0.005824,0.2256,0.005856,0.004384,0.005696,0.00576,0.00608,0.063744,0.004736
+1144,520.722,1.92041,0.335776,0.00576,0.233536,0.004448,0.005312,0.004928,0.006144,0.006048,0.063584,0.006016
+1145,627.259,1.59424,0.32848,0.004896,0.2288,0.004672,0.004096,0.006144,0.005856,0.00592,0.063456,0.00464
+1146,423.71,2.36011,0.321536,0.004768,0.220672,0.004608,0.005152,0.005088,0.005952,0.00608,0.063744,0.005472
+1147,344.028,2.90674,0.378944,0.00576,0.266144,0.004608,0.005248,0.004992,0.006016,0.005952,0.074048,0.006176
+1148,533.959,1.8728,0.37888,0.006144,0.268288,0.00528,0.004864,0.005248,0.014752,0.0064,0.063584,0.00432
+1149,533.125,1.87573,0.452608,0.005984,0.33808,0.004096,0.005728,0.0168,0.006144,0.006112,0.065088,0.004576
+1150,542.876,1.84204,0.359168,0.004864,0.256,0.005472,0.004768,0.005312,0.005952,0.00512,0.065536,0.006144
+1151,511.808,1.95386,0.515008,0.005056,0.411136,0.004608,0.006144,0.005632,0.005952,0.00592,0.064416,0.006144
+1152,646.057,1.54785,0.3216,0.005888,0.222592,0.004896,0.005504,0.004832,0.006144,0.00608,0.06112,0.004544
+1153,546.789,1.82886,0.344096,0.006176,0.24544,0.004832,0.004096,0.006048,0.005728,0.005984,0.060064,0.005728
+1154,416.556,2.40063,0.36688,0.00576,0.26816,0.004896,0.004096,0.005984,0.005824,0.00576,0.061376,0.005024
+1155,634.842,1.5752,0.320448,0.005056,0.226784,0.00464,0.00512,0.00512,0.005856,0.005952,0.057344,0.004576
+1156,601.38,1.66284,0.322144,0.005792,0.222144,0.005344,0.004864,0.005248,0.005024,0.006144,0.062816,0.004768
+1157,547.082,1.82788,0.364416,0.00576,0.264384,0.004416,0.00528,0.00496,0.00608,0.00608,0.061568,0.005888
+1158,582.729,1.71606,0.329728,0.006144,0.231008,0.004512,0.00528,0.00496,0.005984,0.005984,0.060896,0.00496
+1159,577.308,1.73218,0.321536,0.005792,0.225632,0.005824,0.004416,0.005664,0.00576,0.005024,0.05728,0.006144
+1160,628.028,1.59229,0.3264,0.004864,0.231456,0.005568,0.00464,0.00544,0.0048,0.006144,0.057344,0.006144
+1161,540.369,1.85059,0.33808,0.00576,0.23808,0.005312,0.00496,0.005312,0.004896,0.006176,0.062944,0.00464
+1162,506.68,1.97363,0.327648,0.005728,0.232192,0.005376,0.004864,0.005216,0.005024,0.006144,0.057344,0.00576
+1163,610.796,1.63721,0.323424,0.00496,0.225344,0.005856,0.00432,0.00608,0.005792,0.005984,0.059808,0.00528
+1164,622.492,1.60645,0.3192,0.006144,0.223264,0.005344,0.004864,0.005248,0.004992,0.006176,0.057312,0.005856
+1165,514.638,1.94312,0.335392,0.006144,0.234752,0.004864,0.004096,0.006016,0.00576,0.005984,0.062112,0.005664
+1166,463.506,2.15747,0.37536,0.00592,0.268288,0.004896,0.004096,0.00608,0.005792,0.006016,0.059936,0.014336
+1167,635.236,1.57422,0.3232,0.00608,0.225152,0.004288,0.0056,0.00464,0.006144,0.006144,0.059392,0.00576
+1168,547.082,1.82788,0.33152,0.006144,0.229184,0.004288,0.005472,0.004768,0.006144,0.006144,0.063488,0.005888
+1169,569.918,1.75464,0.339968,0.006144,0.2376,0.005664,0.004544,0.005504,0.00592,0.006592,0.061856,0.006144
+1170,631.125,1.58447,0.320224,0.004928,0.221024,0.00416,0.0056,0.00464,0.006144,0.006144,0.062752,0.004832
+1171,626.587,1.59595,0.327008,0.006144,0.22448,0.004896,0.004096,0.005984,0.00592,0.006112,0.063904,0.005472
+1172,665.475,1.50269,0.320032,0.00576,0.220064,0.00544,0.0048,0.005312,0.004928,0.006144,0.062976,0.004608
+1173,662.783,1.50879,0.327712,0.006112,0.226528,0.004928,0.004096,0.00592,0.005792,0.00592,0.06224,0.006176
+1174,578.695,1.72803,0.339712,0.005728,0.236064,0.005216,0.004864,0.005376,0.005024,0.006144,0.065536,0.00576
+1175,521.85,1.91626,0.32368,0.005984,0.221344,0.004096,0.005728,0.004512,0.006144,0.006144,0.065216,0.004512
+1176,622.492,1.60645,0.325664,0.005888,0.224864,0.004768,0.004096,0.006144,0.005728,0.00608,0.063392,0.004704
+1177,539.515,1.85352,0.350592,0.005792,0.248544,0.005856,0.004384,0.005632,0.005728,0.005024,0.064864,0.004768
+1178,526.14,1.90063,0.333824,0.005984,0.231584,0.004096,0.00576,0.00448,0.006144,0.006112,0.06512,0.004544
+1179,623.155,1.60474,0.326848,0.006144,0.222432,0.004864,0.004128,0.005952,0.00576,0.005952,0.066272,0.005344
+1180,650.572,1.53711,0.320544,0.00512,0.222784,0.004544,0.005216,0.005024,0.00592,0.005984,0.060832,0.00512
+1181,557.203,1.79468,0.327392,0.004896,0.227232,0.0056,0.004608,0.005504,0.006336,0.006112,0.06176,0.005344
+1182,513.476,1.94751,0.364576,0.006144,0.262144,0.005728,0.004512,0.005664,0.005792,0.00512,0.06496,0.004512
+1183,573.589,1.74341,0.33008,0.00576,0.225984,0.004352,0.00544,0.0048,0.00608,0.005952,0.065824,0.005888
+1184,451.201,2.21631,0.323584,0.006144,0.22048,0.0048,0.004096,0.006112,0.005952,0.006208,0.065184,0.004608
+1185,531.603,1.8811,0.364032,0.006144,0.257888,0.004256,0.005504,0.004736,0.006144,0.007264,0.066464,0.005632
+1186,461.729,2.16577,0.528576,0.005728,0.424704,0.005952,0.0056,0.004832,0.006144,0.006144,0.063488,0.005984
+1187,563.489,1.77466,0.331776,0.006144,0.228704,0.004768,0.005216,0.004992,0.005952,0.006176,0.06368,0.006144
+1188,564.732,1.77075,0.337344,0.006144,0.23264,0.004896,0.004128,0.005792,0.005984,0.006208,0.065984,0.005568
+1189,524.994,1.90479,0.401568,0.005056,0.296992,0.004064,0.005824,0.004416,0.006144,0.006144,0.066912,0.006016
+1190,608.618,1.64307,0.3272,0.006144,0.221184,0.005664,0.004576,0.005504,0.00576,0.00512,0.067584,0.005664
+1191,589.268,1.69702,0.347872,0.006048,0.245024,0.004928,0.004096,0.00608,0.005728,0.006144,0.063968,0.005856
+1192,397.169,2.51782,0.398048,0.004896,0.294848,0.005536,0.004704,0.005376,0.006048,0.006112,0.064384,0.006144
+1193,352.799,2.83447,0.406176,0.00512,0.26816,0.004224,0.005536,0.016224,0.004864,0.024544,0.071712,0.005792
+1194,446.966,2.2373,0.419872,0.00576,0.312896,0.004896,0.004128,0.005952,0.005792,0.005984,0.068288,0.006176
+1195,553.513,1.80664,0.338048,0.006144,0.231072,0.004448,0.005344,0.004896,0.006016,0.00592,0.069696,0.004512
+1196,522.449,1.91406,0.337216,0.006144,0.231424,0.005696,0.004544,0.005568,0.00576,0.005088,0.067584,0.005408
+1197,618.264,1.61743,0.329728,0.00576,0.22528,0.004576,0.005184,0.005056,0.00592,0.005952,0.065952,0.006048
+1198,589.862,1.69531,0.327456,0.00608,0.221248,0.00576,0.00448,0.005632,0.00576,0.006016,0.066592,0.005888
+1199,515.091,1.94141,0.360864,0.00576,0.256704,0.004192,0.005568,0.004672,0.006144,0.006048,0.067136,0.00464
+1200,458.525,2.18091,0.36864,0.006144,0.264,0.004288,0.005344,0.004896,0.006144,0.006144,0.066656,0.005024
+1201,544.971,1.83496,0.358432,0.006144,0.253376,0.004672,0.004192,0.006048,0.005824,0.005952,0.067296,0.004928
+1202,499.939,2.00024,0.36656,0.00592,0.262336,0.004288,0.005472,0.004768,0.006144,0.00608,0.0656,0.005952
+1203,461.469,2.16699,0.341952,0.006144,0.2376,0.005216,0.004864,0.005248,0.00512,0.006144,0.065536,0.00608
+1204,626.971,1.59497,0.333856,0.007616,0.227776,0.004224,0.005536,0.004704,0.006144,0.006144,0.065536,0.006176
+1205,668.407,1.49609,0.32368,0.005824,0.219552,0.005536,0.004704,0.005408,0.004832,0.006144,0.066624,0.005056
+1206,470.642,2.12476,0.363552,0.006144,0.258048,0.005408,0.004832,0.005472,0.006016,0.006048,0.06608,0.005504
+1207,555.54,1.80005,0.34016,0.004896,0.233504,0.005664,0.004544,0.005504,0.006144,0.006176,0.068192,0.005536
+1208,461.054,2.16895,0.333824,0.006144,0.222688,0.00464,0.00512,0.00512,0.005824,0.005952,0.072192,0.006144
+1209,463.401,2.15796,0.36864,0.006016,0.264224,0.004192,0.005536,0.004704,0.006144,0.006112,0.0672,0.004512
+1210,350.775,2.85083,0.378976,0.00576,0.274656,0.005472,0.004864,0.004256,0.006144,0.006144,0.066688,0.004992
+1211,667.318,1.49854,0.362496,0.006144,0.259776,0.004416,0.005344,0.004896,0.00608,0.00592,0.065344,0.004576
+1212,590.627,1.69312,0.352256,0.006144,0.247744,0.00416,0.005664,0.004576,0.006144,0.006144,0.067136,0.004544
+1213,530.158,1.88623,0.362528,0.006176,0.255936,0.004128,0.005632,0.00576,0.005216,0.006944,0.067616,0.00512
+1214,630.93,1.58496,0.33792,0.006144,0.221184,0.017792,0.004736,0.005792,0.00592,0.006144,0.06528,0.004928
+1215,629.573,1.58838,0.328352,0.004768,0.224512,0.004864,0.004096,0.006048,0.00592,0.006112,0.067328,0.004704
+1216,447.552,2.23438,0.328352,0.004864,0.2248,0.00448,0.005312,0.004928,0.006048,0.005952,0.067392,0.004576
+1217,504.869,1.98071,0.346112,0.006144,0.239584,0.004128,0.00576,0.00448,0.006144,0.006144,0.067584,0.006144
+1218,611.07,1.63647,0.333952,0.00576,0.22784,0.005216,0.004992,0.005472,0.005984,0.00624,0.067616,0.004832
+1219,668.953,1.49487,0.342432,0.005728,0.234304,0.004096,0.005696,0.004544,0.006144,0.006144,0.069632,0.006144
+1220,724.956,1.37939,0.323584,0.006144,0.219136,0.00544,0.0048,0.00528,0.00496,0.006144,0.066976,0.004704
+1221,502.392,1.99048,0.356352,0.006112,0.251584,0.004448,0.005312,0.004928,0.006112,0.006144,0.066656,0.005056
+1222,576.82,1.73364,0.334592,0.004896,0.23136,0.004128,0.005632,0.004608,0.006144,0.006144,0.0656,0.00608
+1223,704.991,1.41846,0.323584,0.006144,0.21824,0.004896,0.004192,0.005888,0.005792,0.005952,0.067776,0.004704
+1224,657.358,1.52124,0.32544,0.00592,0.21936,0.005184,0.004864,0.004288,0.006144,0.006144,0.067584,0.005952
+1225,452.497,2.20996,0.342144,0.006144,0.23552,0.005216,0.004864,0.004256,0.006144,0.006144,0.06928,0.004576
+1226,596.389,1.67676,0.328192,0.005824,0.226112,0.005344,0.004832,0.005216,0.005088,0.006144,0.063488,0.006144
+1227,638.603,1.56592,0.3296,0.006112,0.225312,0.005792,0.004448,0.005824,0.00592,0.005952,0.064224,0.006016
+1228,653.27,1.53076,0.32736,0.006048,0.225024,0.004448,0.005344,0.004896,0.006048,0.005984,0.063744,0.005824
+1229,614.83,1.62646,0.324256,0.004928,0.224608,0.004608,0.005152,0.005088,0.005984,0.005952,0.061792,0.006144
+1230,583.227,1.7146,0.339712,0.006144,0.24112,0.00464,0.005152,0.005088,0.005952,0.006016,0.059712,0.005888
+1231,602.974,1.65845,0.321408,0.005824,0.222176,0.005536,0.004704,0.005376,0.006016,0.004992,0.060736,0.006048
+1232,681.758,1.4668,0.323584,0.006112,0.219168,0.005728,0.004512,0.005568,0.00576,0.005088,0.066816,0.004832
+1233,663.75,1.50659,0.32,0.00576,0.219328,0.0048,0.004096,0.00608,0.005856,0.005984,0.063552,0.004544
+1234,570.712,1.7522,0.386944,0.00576,0.2848,0.0048,0.005536,0.004704,0.006144,0.006144,0.063488,0.005568
+1235,307.831,3.24854,0.354272,0.006016,0.255616,0.004896,0.004128,0.005952,0.00576,0.005952,0.06016,0.005792
+1236,548.4,1.82349,0.325632,0.006144,0.227008,0.004416,0.005344,0.004896,0.00608,0.006176,0.059424,0.006144
+1237,530.227,1.88599,0.359808,0.005792,0.261952,0.00464,0.00512,0.00512,0.005824,0.006048,0.059808,0.005504
+1238,416.302,2.4021,0.366592,0.005664,0.268768,0.005696,0.004544,0.00576,0.005568,0.006624,0.057824,0.006144
+1239,623.25,1.60449,0.319968,0.00576,0.22208,0.005728,0.00448,0.0056,0.005792,0.004992,0.06048,0.005056
+1240,431.294,2.3186,0.361056,0.005792,0.264352,0.0048,0.005216,0.005024,0.006144,0.006144,0.059072,0.004512
+1241,593.795,1.68408,0.329664,0.006208,0.2328,0.004768,0.004096,0.00592,0.00576,0.00592,0.058176,0.006016
+1242,468.007,2.13672,0.31744,0.005984,0.221056,0.004384,0.005408,0.004832,0.006144,0.005952,0.057536,0.006144
+1243,447.846,2.23291,0.34208,0.006144,0.234816,0.0048,0.004096,0.005984,0.00576,0.016032,0.059936,0.004512
+1244,564.343,1.77197,0.404544,0.006144,0.306528,0.004768,0.004096,0.006144,0.00592,0.005952,0.059616,0.005376
+1245,532.225,1.87891,0.518432,0.005664,0.42048,0.005984,0.0056,0.0048,0.006144,0.006144,0.059104,0.004512
+1246,556.976,1.79541,0.508096,0.004544,0.409216,0.0056,0.005024,0.005824,0.005984,0.006208,0.059808,0.005888
+1247,482.791,2.07129,0.505856,0.006016,0.40768,0.005728,0.0056,0.005056,0.006144,0.005888,0.0576,0.006144
+1248,563.256,1.77539,0.372512,0.007648,0.274048,0.004928,0.004192,0.006144,0.00576,0.006112,0.05776,0.00592
+1249,551.947,1.81177,0.50608,0.004864,0.408928,0.004768,0.006144,0.005504,0.006016,0.005984,0.058272,0.0056
+1250,312.911,3.1958,0.507872,0.005632,0.4096,0.00512,0.006048,0.005216,0.00512,0.006176,0.05936,0.0056
+1251,551.353,1.81372,0.376,0.006144,0.272416,0.005312,0.004864,0.005216,0.005056,0.006144,0.065504,0.005344
+1252,653.582,1.53003,0.318656,0.006144,0.221184,0.004096,0.00576,0.00448,0.006144,0.006144,0.05936,0.005344
+1253,686.097,1.45752,0.319904,0.007168,0.221184,0.005408,0.004832,0.00528,0.00496,0.006144,0.059392,0.005536
+1254,500.061,1.99976,0.376832,0.006144,0.264192,0.005888,0.004352,0.005696,0.016448,0.006016,0.061952,0.006144
+1255,568.494,1.75903,0.3624,0.006144,0.25952,0.004672,0.004096,0.006144,0.005984,0.005952,0.06384,0.006048
+1256,638.006,1.56738,0.325952,0.004416,0.219168,0.005696,0.004512,0.005568,0.00592,0.00608,0.068448,0.006144
+1257,665.151,1.50342,0.327904,0.005728,0.215424,0.004512,0.00528,0.00496,0.006016,0.005952,0.074048,0.005984
+1258,653.687,1.52979,0.328288,0.004832,0.218304,0.004896,0.004128,0.00592,0.005792,0.005984,0.072416,0.006016
+1259,281.725,3.54956,0.52288,0.007136,0.409344,0.004352,0.005408,0.004832,0.006144,0.006144,0.073728,0.005792
+1260,623.725,1.60327,0.328832,0.006144,0.218368,0.004864,0.004096,0.005984,0.005792,0.005984,0.072224,0.005376
+1261,681.304,1.46777,0.337216,0.006144,0.219136,0.005344,0.004864,0.005216,0.005088,0.006112,0.079872,0.00544
+1262,648.204,1.54272,0.374784,0.006144,0.256,0.004096,0.005696,0.004544,0.006144,0.006144,0.08096,0.005056
+1263,590.202,1.69434,0.528096,0.005824,0.407296,0.004768,0.006112,0.005632,0.00608,0.005952,0.08064,0.005792
+1264,601.292,1.66309,0.529536,0.00608,0.407616,0.005888,0.005568,0.004928,0.006144,0.006112,0.081856,0.005344
+1265,608.618,1.64307,0.522624,0.00576,0.409952,0.0056,0.005056,0.005728,0.00624,0.006144,0.0736,0.004544
+1266,548.547,1.823,0.546208,0.006144,0.432128,0.005632,0.004608,0.006144,0.006016,0.005984,0.074016,0.005536
+1267,675.685,1.47998,0.537248,0.004928,0.427872,0.005472,0.00464,0.004224,0.006144,0.006016,0.073088,0.004864
+1268,368.943,2.71045,0.559168,0.00576,0.428288,0.004448,0.005216,0.00496,0.016384,0.005792,0.082336,0.005984
+1269,492.722,2.02954,0.520736,0.00512,0.40912,0.0056,0.00512,0.00576,0.006208,0.006112,0.072032,0.005664
+1270,518.941,1.927,0.52224,0.004992,0.412736,0.005024,0.006144,0.005344,0.006016,0.00512,0.071552,0.005312
+1271,686.212,1.45728,0.335872,0.006048,0.219232,0.005184,0.004896,0.004256,0.006144,0.006144,0.079104,0.004864
+1272,644.735,1.55103,0.326656,0.006144,0.217088,0.00544,0.0048,0.005376,0.004864,0.006144,0.071424,0.005376
+1273,646.057,1.54785,0.323808,0.005824,0.217632,0.00576,0.00448,0.0056,0.00576,0.006112,0.067552,0.005088
+1274,587.072,1.70337,0.39936,0.01632,0.284736,0.005472,0.004768,0.005344,0.004896,0.007328,0.0656,0.004896
+1275,545.697,1.83252,0.522528,0.00576,0.407328,0.004992,0.00576,0.00448,0.006144,0.006144,0.075936,0.005984
+1276,448.877,2.22778,0.518912,0.005024,0.40864,0.005056,0.006144,0.005184,0.005088,0.006144,0.071648,0.005984
+1277,442.572,2.25952,0.363328,0.006048,0.25424,0.004736,0.004096,0.006144,0.005792,0.006048,0.071232,0.004992
+1278,595.176,1.68018,0.324,0.00576,0.219328,0.004704,0.004096,0.006144,0.005792,0.006016,0.066016,0.006144
+1279,679.158,1.47241,0.324384,0.004896,0.219136,0.005728,0.004512,0.0056,0.005792,0.006048,0.066528,0.006144
+1280,611.617,1.63501,0.331296,0.005792,0.21984,0.005344,0.004832,0.005184,0.00512,0.006176,0.073696,0.005312
+1281,500.428,1.99829,0.339104,0.006144,0.223232,0.004096,0.005792,0.004448,0.006144,0.006144,0.077728,0.005376
+1282,624.676,1.60083,0.32752,0.00576,0.218784,0.004896,0.004192,0.005888,0.005856,0.006048,0.070272,0.005824
+1283,652.333,1.53296,0.325824,0.005024,0.217088,0.005888,0.004352,0.005824,0.005792,0.006016,0.070432,0.005408
+1284,681.985,1.46631,0.323424,0.004864,0.217088,0.005792,0.004448,0.005632,0.005984,0.006272,0.068032,0.005312
+1285,437.7,2.28467,0.322336,0.004864,0.21712,0.005632,0.004576,0.005504,0.0048,0.00608,0.068864,0.004896
+1286,507.37,1.97095,0.339968,0.006144,0.234688,0.004928,0.004096,0.006016,0.00576,0.005952,0.067744,0.00464
+1287,665.692,1.5022,0.323744,0.005728,0.219712,0.00544,0.0048,0.00528,0.00496,0.006144,0.066784,0.004896
+1288,697.191,1.43433,0.318624,0.006144,0.214976,0.00416,0.0056,0.00464,0.006144,0.006144,0.065536,0.00528
+1289,654,1.52905,0.316768,0.005856,0.214784,0.004736,0.004096,0.006144,0.005824,0.00624,0.063712,0.005376
+1290,547.96,1.82495,0.515424,0.006144,0.411328,0.0056,0.00496,0.00592,0.005984,0.005952,0.064064,0.005472
+1291,670.267,1.49194,0.32,0.004608,0.217088,0.00544,0.0048,0.005312,0.005952,0.006176,0.06448,0.006144
+1292,658.415,1.5188,0.323104,0.005664,0.221664,0.004096,0.005792,0.004448,0.006144,0.006144,0.063488,0.005664
+1293,583.725,1.71313,0.321312,0.006656,0.21712,0.005408,0.0048,0.00528,0.00496,0.006144,0.065536,0.005408
+1294,588.675,1.69873,0.370688,0.006144,0.26832,0.004064,0.00576,0.00448,0.006144,0.006144,0.064768,0.004864
+1295,481.599,2.07642,0.552832,0.006464,0.4448,0.005792,0.004448,0.005536,0.008128,0.006816,0.065504,0.005344
+1296,544.681,1.83594,0.512,0.006144,0.407552,0.006144,0.005984,0.004256,0.006144,0.006144,0.065056,0.004576
+1297,455.719,2.19434,0.52032,0.006144,0.413696,0.006144,0.006016,0.004224,0.006144,0.006144,0.067264,0.004544
+1298,517.629,1.93188,0.514048,0.006144,0.4096,0.005792,0.005568,0.005024,0.006144,0.005984,0.06544,0.004352
+1299,651.607,1.53467,0.325632,0.006144,0.221184,0.005472,0.004768,0.005408,0.004832,0.006144,0.065536,0.006144
+1300,686.672,1.4563,0.320928,0.006112,0.213024,0.005696,0.004544,0.005504,0.006304,0.006272,0.067936,0.005536
+1301,532.571,1.87769,0.329728,0.006144,0.224672,0.004704,0.004096,0.006144,0.005792,0.005984,0.06784,0.004352
+1302,591.993,1.68921,0.32576,0.004768,0.221216,0.005152,0.004832,0.00432,0.006144,0.006144,0.067584,0.0056
+1303,351.256,2.84692,0.32288,0.006144,0.216416,0.004768,0.0056,0.00464,0.006144,0.006144,0.067584,0.00544
+1304,418.258,2.39087,0.353984,0.00576,0.248544,0.005696,0.004544,0.005536,0.004704,0.006144,0.067584,0.005472
+1305,578.531,1.72852,0.338464,0.005088,0.237568,0.005728,0.004512,0.005568,0.005728,0.005088,0.063488,0.005696
+1306,688.751,1.4519,0.319136,0.006144,0.217088,0.004096,0.00576,0.00448,0.006144,0.006144,0.063488,0.005792
+1307,589.183,1.69727,0.330784,0.006144,0.22528,0.005504,0.004736,0.005344,0.00592,0.006176,0.066272,0.005408
+1308,452.597,2.20947,0.327936,0.005056,0.22528,0.004096,0.005856,0.004384,0.006144,0.006144,0.063488,0.007488
+1309,561.634,1.78052,0.360448,0.006144,0.259072,0.004672,0.004544,0.005568,0.00576,0.005056,0.063488,0.006144
+1310,625.344,1.59912,0.32304,0.006144,0.220608,0.004672,0.00416,0.00608,0.00576,0.006112,0.063904,0.0056
+1311,390.058,2.56372,0.324736,0.005728,0.222848,0.004896,0.00416,0.00592,0.005824,0.005952,0.064064,0.005344
+1312,427.602,2.33862,0.366784,0.00576,0.262048,0.004736,0.004128,0.00592,0.00576,0.005984,0.067712,0.004736
+1313,614.461,1.62744,0.331296,0.006144,0.22528,0.004096,0.005696,0.004544,0.006144,0.006144,0.067584,0.005664
+1314,675.796,1.47974,0.330848,0.006144,0.224288,0.004896,0.004288,0.005824,0.00576,0.006304,0.068,0.005344
+1315,635.137,1.57446,0.321952,0.00576,0.21584,0.00576,0.00448,0.00576,0.005792,0.006048,0.067968,0.004544
+1316,455.263,2.19653,0.40544,0.005792,0.289152,0.004096,0.005984,0.00528,0.015264,0.006272,0.067552,0.006048
+1317,586.148,1.70605,0.33792,0.006048,0.233568,0.005184,0.004864,0.004288,0.006144,0.006144,0.065536,0.006144
+1318,661.178,1.51245,0.325472,0.004896,0.223232,0.005344,0.004832,0.005216,0.005088,0.006144,0.065344,0.005376
+1319,347.885,2.87451,0.327584,0.005984,0.222432,0.004896,0.004256,0.00608,0.005888,0.006464,0.065536,0.006048
+1320,409.969,2.43921,0.353472,0.005984,0.244,0.005184,0.004896,0.004256,0.006144,0.006144,0.071552,0.005312
+1321,613.725,1.62939,0.34064,0.004768,0.233472,0.005376,0.004864,0.005248,0.004992,0.006144,0.070912,0.004864
+1322,495.224,2.01929,0.335872,0.006144,0.229376,0.005632,0.00464,0.0056,0.005728,0.005024,0.069216,0.004512
+1323,468.382,2.13501,0.342368,0.004896,0.233344,0.005184,0.004864,0.004288,0.006144,0.006144,0.07168,0.005824
+1324,646.771,1.54614,0.333344,0.00576,0.220032,0.005792,0.004448,0.00592,0.00576,0.005984,0.074304,0.005344
+1325,600.322,1.66577,0.335232,0.005728,0.2232,0.004608,0.005152,0.005088,0.005984,0.005984,0.074048,0.00544
+1326,577.145,1.73267,0.35344,0.005792,0.239968,0.005888,0.004352,0.005696,0.005792,0.005984,0.074656,0.005312
+1327,432.432,2.3125,0.404384,0.005056,0.29232,0.004608,0.005184,0.005056,0.006144,0.006112,0.0752,0.004704
+1328,583.642,1.71338,0.345856,0.005792,0.22992,0.00416,0.005696,0.004544,0.006176,0.006176,0.077632,0.00576
+1329,481.882,2.0752,0.364576,0.00576,0.250272,0.005632,0.004608,0.005376,0.004864,0.006144,0.07696,0.00496
+1330,417.448,2.39551,0.354336,0.005952,0.241856,0.004096,0.00576,0.00448,0.006144,0.006176,0.074752,0.00512
+1331,598.044,1.67212,0.335872,0.006048,0.227424,0.005632,0.004608,0.005472,0.00592,0.006784,0.069088,0.004896
+1332,617.239,1.62012,0.344064,0.005888,0.235776,0.005696,0.004544,0.005536,0.00592,0.006624,0.067936,0.006144
+1333,467.1,2.14087,0.330688,0.005056,0.224736,0.00464,0.00512,0.00512,0.006048,0.006048,0.068896,0.005024
+1334,513.541,1.94727,0.41568,0.00576,0.308,0.005824,0.004416,0.00576,0.00576,0.005952,0.068544,0.005664
+1335,432.569,2.31177,0.345536,0.006176,0.233248,0.004288,0.005504,0.004736,0.006144,0.006144,0.073728,0.005568
+1336,510.914,1.95728,0.3328,0.005088,0.224416,0.00496,0.00416,0.00608,0.006016,0.006272,0.071072,0.004736
+1337,400.352,2.4978,0.423936,0.006144,0.305152,0.00528,0.004896,0.005216,0.017024,0.006176,0.069024,0.005024
+1338,635.433,1.57373,0.348768,0.005792,0.24224,0.00448,0.00528,0.00496,0.005984,0.005952,0.069248,0.004832
+1339,645.243,1.5498,0.33408,0.005024,0.227264,0.00416,0.005536,0.004704,0.006144,0.006112,0.069664,0.005472
+1340,572.227,1.74756,0.32976,0.006144,0.221184,0.005888,0.004352,0.005696,0.005792,0.006336,0.06928,0.005088
+1341,509.77,1.96167,0.424928,0.006048,0.313344,0.005568,0.004672,0.005376,0.00608,0.006144,0.072352,0.005344
+1342,606.276,1.64941,0.328416,0.005056,0.219136,0.005824,0.004448,0.00576,0.00576,0.00592,0.070592,0.00592
+1343,484.906,2.06226,0.344544,0.005728,0.235456,0.004896,0.004288,0.005856,0.006304,0.005984,0.06992,0.006112
+1344,511.68,1.95435,0.354304,0.006112,0.243744,0.00544,0.0048,0.005856,0.006016,0.005952,0.07024,0.006144
+1345,534.307,1.87158,0.3368,0.004992,0.231392,0.0056,0.00464,0.00608,0.005824,0.005952,0.067808,0.004512
+1346,541.226,1.84766,0.334176,0.00576,0.228064,0.005792,0.005504,0.005088,0.00608,0.00608,0.067136,0.004672
+1347,581.488,1.71973,0.338976,0.006144,0.232448,0.004896,0.00432,0.005664,0.00576,0.006112,0.068256,0.005376
+1348,560.712,1.78345,0.345888,0.005792,0.24256,0.005184,0.004864,0.005472,0.00496,0.006144,0.065536,0.005376
+1349,515.869,1.93848,0.428128,0.005792,0.321984,0.005568,0.004672,0.00528,0.00496,0.006144,0.0688,0.004928
+1350,563.179,1.77563,0.333824,0.005888,0.22752,0.00416,0.005696,0.004544,0.006144,0.006144,0.06912,0.004608
+1351,626.3,1.59668,0.331744,0.006048,0.224672,0.0048,0.005408,0.004832,0.006112,0.00608,0.067712,0.00608
+1352,547.374,1.8269,0.332256,0.005056,0.228992,0.004448,0.005312,0.004928,0.00608,0.00608,0.065664,0.005696
+1353,516.454,1.93628,0.344576,0.005728,0.242624,0.005312,0.004864,0.005248,0.00512,0.00608,0.064544,0.005056
+1354,592.164,1.68872,0.335488,0.006144,0.232608,0.004928,0.004128,0.00592,0.006176,0.006272,0.063552,0.00576
+1355,577.227,1.73242,0.327136,0.006016,0.223616,0.005216,0.004864,0.004256,0.006144,0.006144,0.065472,0.005408
+1356,421.443,2.3728,0.343712,0.005728,0.24,0.004224,0.005408,0.004832,0.006144,0.006144,0.065536,0.005696
+1357,597.694,1.6731,0.345504,0.006144,0.2408,0.004896,0.00416,0.00592,0.005952,0.006144,0.065952,0.005536
+1358,525.128,1.9043,0.356128,0.005952,0.249152,0.004896,0.004192,0.0056,0.005792,0.005088,0.069312,0.006144
+1359,529.609,1.88818,0.335936,0.005792,0.23184,0.005664,0.004576,0.005472,0.005824,0.005088,0.066688,0.004992
+1360,525.128,1.9043,0.334432,0.005792,0.230336,0.005344,0.004864,0.005216,0.005056,0.006144,0.067136,0.004544
+1361,503.999,1.98413,0.51568,0.005632,0.408544,0.006144,0.005664,0.004576,0.006144,0.006144,0.067456,0.005376
+1362,520.127,1.92261,0.34208,0.006144,0.237376,0.004288,0.005472,0.004768,0.006144,0.006144,0.067392,0.004352
+1363,503.503,1.98608,0.368,0.006208,0.259872,0.00432,0.005472,0.004768,0.006144,0.00608,0.069696,0.00544
+1364,539.942,1.85205,0.340224,0.004896,0.231424,0.00528,0.004864,0.004192,0.006144,0.006144,0.07168,0.0056
+1365,551.873,1.81201,0.345408,0.006144,0.239616,0.005152,0.004896,0.005408,0.005024,0.006144,0.067584,0.00544
+1366,444.3,2.25073,0.684032,0.00592,0.57888,0.004896,0.004224,0.005888,0.0064,0.006144,0.067136,0.004544
+1367,545.697,1.83252,0.389888,0.004768,0.286336,0.00448,0.005344,0.004896,0.006144,0.006144,0.067264,0.004512
+1368,545.261,1.83398,0.334208,0.006272,0.227616,0.00576,0.004448,0.005632,0.00592,0.005984,0.067936,0.00464
+1369,578.041,1.72998,0.341824,0.006144,0.23472,0.004896,0.004096,0.005984,0.00576,0.005984,0.068288,0.005952
+1370,502.022,1.99194,0.3432,0.006144,0.23552,0.004096,0.005728,0.004512,0.006144,0.006144,0.069536,0.005376
+1371,477.445,2.09448,0.360384,0.005952,0.252288,0.00448,0.005344,0.004896,0.006048,0.005888,0.069472,0.006016
+1372,603.596,1.65674,0.349632,0.005824,0.239968,0.004128,0.005632,0.004608,0.006144,0.006144,0.071456,0.005728
+1373,615.662,1.62427,0.334592,0.004896,0.226592,0.0048,0.004096,0.006144,0.00608,0.006016,0.071296,0.004672
+1374,342.475,2.91992,0.362976,0.00576,0.252768,0.005568,0.004672,0.005408,0.004832,0.006144,0.072992,0.004832
+1375,591.309,1.69116,0.347616,0.005824,0.238272,0.004192,0.006144,0.005344,0.005952,0.006208,0.070336,0.005344
+1376,557.582,1.79346,0.330784,0.006144,0.221216,0.006112,0.005152,0.005088,0.00592,0.006368,0.069472,0.005312
+1377,481.599,2.07642,0.356064,0.006048,0.243712,0.004192,0.005568,0.004672,0.006144,0.006112,0.07376,0.005856
+1378,523.116,1.91162,0.346112,0.006144,0.238784,0.004896,0.004128,0.005952,0.00576,0.005952,0.069728,0.004768
+1379,629.96,1.5874,0.338208,0.005728,0.22384,0.005696,0.004512,0.0056,0.005984,0.006112,0.076224,0.004512
+1380,556.371,1.79736,0.346208,0.00496,0.233184,0.004384,0.005376,0.004864,0.006112,0.005952,0.076,0.005376
+1381,434.082,2.30371,0.346464,0.005824,0.236192,0.005696,0.004544,0.005568,0.00576,0.005056,0.073216,0.004608
+1382,484.676,2.06323,0.365408,0.004928,0.2512,0.0048,0.005632,0.004608,0.006144,0.006144,0.07744,0.004512
+1383,561.48,1.78101,0.356352,0.006144,0.24576,0.005472,0.0048,0.005568,0.00576,0.005024,0.07168,0.006144
+1384,555.767,1.79932,0.340928,0.005024,0.232608,0.004928,0.004128,0.00592,0.005792,0.005984,0.071488,0.005056
+1385,556.976,1.79541,0.388512,0.005728,0.277024,0.00416,0.0056,0.00464,0.006144,0.006144,0.073728,0.005344
+1386,462.407,2.1626,0.530432,0.006144,0.413376,0.005632,0.00496,0.005792,0.005984,0.005888,0.078304,0.004352
+1387,602.53,1.65967,0.344064,0.005984,0.227456,0.004128,0.005632,0.004608,0.006144,0.006144,0.077824,0.006144
+1388,540.797,1.84912,0.34528,0.00576,0.231072,0.004864,0.004096,0.006016,0.00576,0.005952,0.076352,0.005408
+1389,479.681,2.08472,0.349824,0.006016,0.237696,0.005696,0.004544,0.005536,0.005824,0.005024,0.073728,0.00576
+1390,413.654,2.41748,0.346112,0.006144,0.231424,0.005504,0.004736,0.005376,0.004864,0.006144,0.07728,0.00464
+1391,551.427,1.81348,0.351648,0.00576,0.234144,0.005824,0.004416,0.005664,0.00592,0.006144,0.078208,0.005568
+1392,483.875,2.06665,0.360448,0.006144,0.245312,0.004544,0.005216,0.005024,0.005952,0.005952,0.077632,0.004672
+1393,451.002,2.21729,0.528384,0.006144,0.413696,0.006144,0.005664,0.004576,0.006144,0.006144,0.073728,0.006144
+1394,595.522,1.6792,0.337696,0.006144,0.224416,0.004928,0.004128,0.005952,0.00592,0.006112,0.074176,0.00592
+1395,484.218,2.06519,0.367712,0.005952,0.256192,0.004096,0.005824,0.004416,0.006176,0.006112,0.07344,0.005504
+1396,514.25,1.94458,0.342208,0.006144,0.23264,0.004928,0.005152,0.005088,0.005888,0.005952,0.071904,0.004512
+1397,567.313,1.7627,0.374784,0.005856,0.260256,0.004224,0.005536,0.004704,0.006144,0.006144,0.075776,0.006144
+1398,343.913,2.90771,0.412224,0.004928,0.29584,0.004896,0.004256,0.005856,0.00576,0.005984,0.078656,0.006048
+1399,534.796,1.86987,0.36864,0.006144,0.251136,0.004864,0.004096,0.006016,0.00576,0.005952,0.078656,0.006016
+1400,629.96,1.5874,0.335712,0.006144,0.223136,0.004192,0.005568,0.004672,0.006144,0.006144,0.073728,0.005984
+1401,547.301,1.82715,0.342368,0.00576,0.229312,0.004896,0.004096,0.005984,0.006304,0.006176,0.07472,0.00512
+1402,420.62,2.37744,0.357568,0.006144,0.249792,0.00416,0.005856,0.004384,0.006144,0.007232,0.068544,0.005312
+1403,628.125,1.59204,0.32976,0.006144,0.221184,0.005248,0.004896,0.005536,0.00592,0.006112,0.069664,0.005056
+1404,577.308,1.73218,0.356896,0.00576,0.2504,0.004384,0.005344,0.004896,0.006144,0.00608,0.069376,0.004512
+1405,609.433,1.64087,0.338432,0.004896,0.230464,0.004896,0.004128,0.005952,0.00576,0.005952,0.0704,0.005984
+1406,372.465,2.68481,0.33552,0.005824,0.229504,0.004288,0.005536,0.004704,0.006144,0.006048,0.06768,0.005792
+1407,578.368,1.729,0.340768,0.004768,0.233472,0.005696,0.004544,0.005504,0.004736,0.006272,0.071264,0.004512
+1408,589.862,1.69531,0.33744,0.006016,0.227456,0.00576,0.00448,0.006144,0.005856,0.006016,0.070048,0.005664
+1409,559.639,1.78687,0.33904,0.006144,0.22528,0.006048,0.004192,0.005856,0.00592,0.006144,0.073696,0.00576
+1410,468.864,2.13281,0.426688,0.004896,0.316864,0.004672,0.005408,0.004832,0.005952,0.005984,0.072064,0.006016
+1411,558.876,1.78931,0.364224,0.005824,0.25376,0.004608,0.005152,0.005088,0.00592,0.005952,0.072096,0.005824
+1412,617.425,1.61963,0.344064,0.006144,0.227328,0.00512,0.004864,0.004352,0.006144,0.006144,0.078944,0.005024
+1413,367.519,2.72095,0.366624,0.006144,0.25536,0.004736,0.004096,0.006144,0.005792,0.006016,0.07216,0.006176
+1414,418.044,2.39209,0.417792,0.005888,0.306624,0.004896,0.004128,0.005984,0.005824,0.005952,0.072352,0.006144
+1415,508.504,1.96655,0.358528,0.00576,0.251424,0.004928,0.005472,0.004928,0.006048,0.005952,0.06912,0.004896
+1416,383.305,2.60889,0.3704,0.005888,0.259616,0.004832,0.004096,0.006048,0.00624,0.006016,0.071808,0.005856
+1417,654.418,1.52808,0.339968,0.006144,0.230496,0.004896,0.004224,0.005824,0.005952,0.006208,0.071456,0.004768
+1418,662.033,1.5105,0.32864,0.005024,0.219136,0.005312,0.004864,0.005216,0.005088,0.007456,0.070368,0.006176
+1419,547.009,1.82812,0.331488,0.006144,0.221184,0.005568,0.004672,0.005376,0.004864,0.006176,0.071648,0.005856
+1420,528.312,1.89282,0.352352,0.00512,0.243616,0.004192,0.005568,0.004672,0.006144,0.006144,0.071584,0.005312
+1421,608.89,1.64233,0.3344,0.004928,0.22528,0.005216,0.004864,0.004256,0.006144,0.006144,0.07168,0.005888
+1422,457.551,2.18555,0.348192,0.005024,0.237568,0.005312,0.004896,0.005184,0.006144,0.006144,0.072128,0.005792
+1423,350.355,2.85425,0.372736,0.006144,0.260096,0.005568,0.004672,0.005568,0.005696,0.00512,0.073728,0.006144
+1424,553.963,1.80518,0.340192,0.006144,0.22704,0.004384,0.00544,0.0048,0.006144,0.00608,0.075648,0.004512
+1425,612.166,1.63354,0.33248,0.004928,0.220928,0.004192,0.0056,0.00464,0.006144,0.006144,0.075296,0.004608
+1426,552.468,1.81006,0.339232,0.006144,0.226624,0.0048,0.004096,0.006112,0.006048,0.006112,0.073888,0.005408
+1427,417.32,2.39624,0.391712,0.005728,0.279488,0.004096,0.005696,0.004544,0.006144,0.006144,0.074944,0.004928
+1428,608.076,1.64453,0.362496,0.00576,0.25024,0.005472,0.004768,0.005376,0.004864,0.006144,0.075328,0.004544
+1429,590.968,1.69214,0.335872,0.006016,0.22336,0.005696,0.004544,0.005408,0.004832,0.006144,0.07488,0.004992
+1430,413.278,2.41968,0.385056,0.006144,0.272384,0.005216,0.004864,0.004256,0.006144,0.006144,0.07536,0.004544
+1431,491.304,2.0354,0.42992,0.006144,0.315392,0.00544,0.0048,0.005248,0.004992,0.006144,0.075776,0.005984
+1432,553.364,1.80713,0.34608,0.004768,0.233504,0.005312,0.004864,0.005216,0.005056,0.006144,0.075776,0.00544
+1433,506.868,1.9729,0.339456,0.006144,0.22528,0.005856,0.004384,0.005632,0.005792,0.00496,0.075776,0.005632
+1434,469.456,2.13013,0.342016,0.00592,0.235744,0.004096,0.005696,0.004544,0.006144,0.006144,0.068928,0.0048
+1435,627.739,1.59302,0.331776,0.00592,0.225472,0.004128,0.006144,0.005376,0.004864,0.006144,0.068704,0.005024
+1436,635.729,1.573,0.34208,0.00576,0.231872,0.004096,0.005792,0.004448,0.006144,0.006144,0.07168,0.006144
+1437,563.489,1.77466,0.335168,0.00576,0.217664,0.006144,0.004096,0.006144,0.006144,0.006144,0.077632,0.00544
+1438,449.912,2.22266,0.361248,0.004896,0.247776,0.005152,0.004768,0.004416,0.006144,0.006144,0.075776,0.006176
+1439,617.425,1.61963,0.343456,0.006144,0.227328,0.005184,0.005056,0.005216,0.005024,0.006144,0.077824,0.005536
+1440,631.222,1.58423,0.333856,0.006144,0.227104,0.00432,0.00544,0.0048,0.006144,0.006144,0.067584,0.006176
+1441,502.145,1.99146,0.32912,0.006144,0.223008,0.00432,0.005472,0.004768,0.006144,0.005856,0.067872,0.005536
+1442,522.849,1.9126,0.434784,0.00592,0.32592,0.00464,0.00512,0.00512,0.005856,0.005984,0.07008,0.006144
+1443,594.398,1.68237,0.331776,0.005376,0.228096,0.005152,0.004896,0.004288,0.006144,0.006144,0.066752,0.004928
+1444,556.976,1.79541,0.335872,0.00592,0.231648,0.004096,0.005824,0.004416,0.006144,0.006144,0.066656,0.005024
+1445,504.247,1.98315,0.351136,0.005024,0.2456,0.004256,0.005504,0.004736,0.006144,0.006112,0.0688,0.00496
+1446,574.797,1.73975,0.330688,0.005056,0.22528,0.005344,0.004864,0.005216,0.005056,0.006144,0.068736,0.004992
+1447,576.495,1.73462,0.332064,0.004928,0.223232,0.00592,0.00432,0.005728,0.00576,0.00592,0.070656,0.0056
+1448,579.349,1.72607,0.336256,0.00576,0.229664,0.004576,0.005184,0.005056,0.00592,0.005952,0.068,0.006144
+1449,368.312,2.71509,0.335168,0.006144,0.223232,0.005792,0.00448,0.0056,0.00576,0.004992,0.073728,0.00544
+1450,594.054,1.68335,0.33792,0.005792,0.230816,0.004992,0.00416,0.006144,0.006144,0.006144,0.068704,0.005024
+1451,636.025,1.57227,0.32768,0.006144,0.223232,0.005472,0.004768,0.00528,0.00496,0.006144,0.0672,0.00448
+1452,621.925,1.60791,0.321088,0.005984,0.217248,0.005824,0.004416,0.005664,0.005792,0.006016,0.064448,0.005696
+1453,531.465,1.88159,0.3584,0.006144,0.253184,0.004864,0.004096,0.006016,0.005792,0.005984,0.067776,0.004544
+1454,556.976,1.79541,0.337056,0.006144,0.229376,0.004096,0.00576,0.00448,0.006144,0.006144,0.069568,0.005344
+1455,652.957,1.53149,0.33072,0.005088,0.221024,0.004256,0.005504,0.004736,0.006144,0.005984,0.07184,0.006144
+1456,565.199,1.76929,0.332032,0.004896,0.2272,0.004096,0.005664,0.004576,0.006144,0.006144,0.067584,0.005728
+1457,565.121,1.76953,0.352384,0.004928,0.24768,0.005856,0.004352,0.005728,0.00576,0.005952,0.066528,0.0056
+1458,458.063,2.18311,0.41984,0.006144,0.29616,0.004896,0.004096,0.021792,0.004832,0.006144,0.069632,0.006144
+1459,606.815,1.64795,0.328224,0.00576,0.223232,0.004896,0.004128,0.006048,0.00576,0.00592,0.067968,0.004512
+1460,578.449,1.72876,0.326784,0.006144,0.220672,0.004608,0.005152,0.005088,0.00576,0.005952,0.068096,0.005312
+1461,556.597,1.79663,0.398496,0.006144,0.290816,0.005728,0.004512,0.005536,0.005728,0.00512,0.069504,0.005408
+1462,474.349,2.10815,0.519744,0.005664,0.41056,0.00608,0.0056,0.004704,0.006144,0.006144,0.069472,0.005376
+1463,652.541,1.53247,0.327648,0.004928,0.224128,0.004896,0.00432,0.005888,0.005792,0.005952,0.066336,0.005408
+1464,563.954,1.77319,0.360032,0.006144,0.237568,0.00576,0.00448,0.005568,0.00576,0.006176,0.082784,0.005792
+1465,515.026,1.94165,0.418848,0.005984,0.307168,0.004288,0.005472,0.004768,0.006144,0.005952,0.07376,0.005312
+1466,659.794,1.51562,0.332736,0.005056,0.223232,0.004096,0.005632,0.004608,0.006144,0.006144,0.07296,0.004864
+1467,523.852,1.90894,0.327872,0.005856,0.217024,0.004448,0.00544,0.0048,0.006144,0.006112,0.073536,0.004512
+1468,553.364,1.80713,0.3584,0.005984,0.241824,0.005184,0.004864,0.004288,0.006144,0.006144,0.079328,0.00464
+1469,504.061,1.98389,0.421888,0.005888,0.303168,0.004288,0.00608,0.005376,0.005952,0.006336,0.079712,0.005088
+1470,649.231,1.54028,0.328864,0.006144,0.2168,0.004384,0.005376,0.004864,0.006144,0.006144,0.073696,0.005312
+1471,663.105,1.50806,0.344352,0.005888,0.215584,0.00512,0.004704,0.004512,0.006144,0.016384,0.079968,0.006048
+1472,498.115,2.00757,0.33808,0.00576,0.231008,0.004896,0.004256,0.005824,0.005984,0.006048,0.069504,0.0048
+1473,511.425,1.95532,0.383776,0.004896,0.270144,0.004288,0.005632,0.004608,0.006144,0.006144,0.075776,0.006144
+1474,603.774,1.65625,0.3584,0.006144,0.245152,0.004704,0.004096,0.006144,0.005824,0.005984,0.075904,0.004448
+1475,557.734,1.79297,0.362496,0.006144,0.24752,0.004384,0.005408,0.004832,0.006144,0.006144,0.075776,0.006144
+1476,361.965,2.7627,0.369632,0.005088,0.257024,0.004896,0.00432,0.005984,0.005792,0.005952,0.074432,0.006144
+1477,618.171,1.61768,0.333888,0.004992,0.220608,0.004672,0.005184,0.005056,0.005984,0.006144,0.075776,0.005472
+1478,578.123,1.72974,0.341216,0.006144,0.225312,0.005184,0.005024,0.00528,0.005984,0.006336,0.076416,0.005536
+1479,588.421,1.69946,0.35888,0.00576,0.237792,0.004736,0.004096,0.006144,0.005952,0.006144,0.08352,0.004736
+1480,575.281,1.73828,0.391232,0.0048,0.269856,0.004576,0.005248,0.004992,0.005984,0.005952,0.08432,0.005504
+1481,449.32,2.22559,0.52816,0.005568,0.41024,0.0056,0.004928,0.005856,0.005984,0.005952,0.078464,0.005568
+1482,639.8,1.56299,0.338208,0.005792,0.221824,0.005216,0.004864,0.004256,0.006144,0.006144,0.079424,0.004544
+1483,595.782,1.67847,0.357792,0.006144,0.237568,0.005856,0.004384,0.005696,0.00576,0.006176,0.080672,0.005536
+1484,488.2,2.04834,0.387072,0.006144,0.255776,0.00432,0.005504,0.004736,0.01808,0.006368,0.081216,0.004928
+1485,606.635,1.64844,0.338624,0.005952,0.22208,0.005632,0.004608,0.005472,0.004768,0.006144,0.077824,0.006144
+1486,721.127,1.38672,0.327296,0.006048,0.214976,0.004256,0.005504,0.004736,0.006144,0.006112,0.07376,0.00576
+1487,570.394,1.75317,0.329856,0.00576,0.219104,0.00464,0.005344,0.004896,0.006016,0.005952,0.073408,0.004736
+1488,546.716,1.8291,0.433088,0.005088,0.321504,0.0056,0.00464,0.005472,0.004768,0.006144,0.075104,0.004768
+1489,638.703,1.56567,0.332864,0.006144,0.218208,0.004896,0.004224,0.005696,0.005728,0.00496,0.077376,0.005632
+1490,598.83,1.66992,0.33824,0.005824,0.225056,0.004864,0.004192,0.005888,0.00576,0.006016,0.07584,0.0048
+1491,570.156,1.75391,0.337344,0.006176,0.2232,0.004096,0.005664,0.004576,0.006144,0.006144,0.075264,0.00608
+1492,574.555,1.74048,0.397312,0.006144,0.280576,0.005824,0.004416,0.006144,0.00576,0.006048,0.077888,0.004512
+1493,422.137,2.3689,0.528736,0.00592,0.410336,0.0056,0.004672,0.006112,0.005984,0.005952,0.078176,0.005984
+1494,596.476,1.67651,0.348992,0.00512,0.231424,0.004096,0.005792,0.004448,0.006144,0.006144,0.079872,0.005952
+1495,568.652,1.75854,0.34016,0.005728,0.225344,0.00464,0.005152,0.005088,0.006048,0.006048,0.077152,0.00496
+1496,529.131,1.88989,0.352224,0.006144,0.233312,0.004256,0.005536,0.004704,0.006144,0.006048,0.079968,0.006112
+1497,622.398,1.60669,0.33824,0.00576,0.219904,0.005248,0.004832,0.004256,0.007264,0.005024,0.079872,0.00608
+1498,622.587,1.6062,0.34048,0.0048,0.2272,0.004224,0.005568,0.004672,0.006144,0.006144,0.075584,0.006144
+1499,598.131,1.67188,0.337536,0.00576,0.223264,0.00464,0.005184,0.005056,0.005984,0.005952,0.076128,0.005568
+1500,497.45,2.01025,0.409728,0.00576,0.295296,0.004224,0.005568,0.004672,0.006144,0.006144,0.077152,0.004768
+1501,602.619,1.65942,0.33792,0.006144,0.223232,0.00528,0.004928,0.005216,0.005056,0.006144,0.07696,0.00496
+1502,453.147,2.20679,0.33792,0.006144,0.223232,0.005312,0.004864,0.005216,0.005088,0.006144,0.077312,0.004608
+1503,442.142,2.26172,0.344064,0.006048,0.229216,0.004352,0.005472,0.004768,0.006144,0.006144,0.075776,0.006144
+1504,581.405,1.71997,0.34816,0.006144,0.23552,0.005664,0.004576,0.005504,0.005952,0.00608,0.07392,0.0048
+1505,634.744,1.57544,0.340608,0.0048,0.231264,0.004192,0.005536,0.004704,0.006144,0.00608,0.072896,0.004992
+1506,643.216,1.55469,0.330624,0.004992,0.218656,0.004576,0.005792,0.004448,0.006144,0.006144,0.075328,0.004544
+1507,525.061,1.90454,0.358944,0.004928,0.245696,0.00544,0.0048,0.00528,0.00496,0.006144,0.075776,0.00592
+1508,535.355,1.86792,0.354304,0.006144,0.241408,0.004352,0.00544,0.0048,0.006144,0.006112,0.075136,0.004768
+1509,653.791,1.52954,0.331776,0.006144,0.216832,0.004352,0.00544,0.0048,0.006144,0.006144,0.075776,0.006144
+1510,622.587,1.6062,0.329728,0.005984,0.219008,0.004384,0.005344,0.004896,0.006144,0.006144,0.072896,0.004928
+1511,335.82,2.97778,0.481184,0.005952,0.355904,0.004736,0.004128,0.018208,0.006176,0.005952,0.07408,0.006048
+1512,679.383,1.47192,0.331936,0.006144,0.217088,0.004096,0.00576,0.00448,0.006144,0.006144,0.077568,0.004512
+1513,645.446,1.54932,0.332192,0.00576,0.21792,0.0056,0.004608,0.00544,0.0048,0.006144,0.075776,0.006144
+1514,606.096,1.6499,0.380704,0.004896,0.267936,0.004352,0.00544,0.0048,0.006144,0.006016,0.075808,0.005312
+1515,611.891,1.63428,0.34096,0.005024,0.227296,0.004096,0.005664,0.004576,0.006144,0.006144,0.077504,0.004512
+1516,485.308,2.06055,0.525088,0.004896,0.40944,0.005568,0.004832,0.005984,0.005952,0.005984,0.077312,0.00512
+1517,620.324,1.61206,0.331808,0.006112,0.21712,0.004096,0.005856,0.004384,0.006144,0.006144,0.077408,0.004544
+1518,574.474,1.74072,0.3584,0.006144,0.243008,0.0048,0.00512,0.00512,0.006016,0.005984,0.076064,0.006144
+1519,386.816,2.58521,0.413728,0.00512,0.299008,0.005568,0.004672,0.005376,0.004864,0.006144,0.0776,0.005376
+1520,480.864,2.07959,0.367424,0.005088,0.253952,0.005344,0.004864,0.005216,0.00512,0.007136,0.07472,0.005984
+1521,563.721,1.77393,0.354304,0.006144,0.239616,0.004096,0.00576,0.00448,0.006144,0.006144,0.077312,0.004608
+1522,479.008,2.08765,0.380032,0.006144,0.265248,0.004928,0.004256,0.005984,0.005984,0.006048,0.076032,0.005408
+1523,499.208,2.00317,0.528384,0.006144,0.411648,0.005664,0.004576,0.006144,0.00608,0.005952,0.076032,0.006144
+1524,608.528,1.64331,0.340928,0.005056,0.220544,0.004736,0.004096,0.006144,0.00576,0.006528,0.083136,0.004928
+1525,485.941,2.05786,0.356448,0.00576,0.235904,0.004192,0.005568,0.004672,0.006144,0.006048,0.082016,0.006144
+1526,556.597,1.79663,0.3504,0.005728,0.234272,0.004096,0.005824,0.004416,0.006144,0.006144,0.077824,0.005952
+1527,405.987,2.46313,0.334368,0.00576,0.220064,0.0056,0.00464,0.005408,0.00592,0.006112,0.076,0.004864
+1528,496.425,2.0144,0.366048,0.00576,0.245312,0.004896,0.004224,0.005856,0.005984,0.006112,0.0824,0.005504
+1529,522.449,1.91406,0.3728,0.005792,0.254176,0.004704,0.004192,0.006048,0.005984,0.006112,0.080064,0.005728
+1530,570.792,1.75195,0.350208,0.006144,0.231392,0.005504,0.004768,0.00528,0.00496,0.006144,0.08112,0.004896
+1531,564.421,1.77173,0.33968,0.006144,0.221216,0.005824,0.004384,0.005664,0.00576,0.00496,0.079872,0.005856
+1532,537.392,1.86084,0.342016,0.006144,0.221184,0.006144,0.006144,0.00576,0.005792,0.005984,0.079936,0.004928
+1533,536.126,1.86523,0.432384,0.00576,0.312992,0.004896,0.004288,0.005824,0.00576,0.005952,0.080768,0.006144
+1534,558.876,1.78931,0.350912,0.0048,0.23472,0.004896,0.004096,0.006144,0.006016,0.006208,0.079008,0.005024
+1535,443.626,2.25415,0.355072,0.004864,0.237568,0.005664,0.004576,0.005472,0.004768,0.006144,0.081536,0.00448
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..da17e40
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,352.134,2.87561,1.41372,1.40836,0.00536009
+max_1024,438.262,6.79346,1.43136,1.42563,0.016384
+min_1024,147.2,2.28174,1.40445,1.3993,0.004192
+512,371.149,2.69434,1.41722,1.41277,0.004448
+513,361.837,2.76367,1.41581,1.41088,0.004928
+514,345.246,2.89648,1.41722,1.41232,0.004896
+515,323.181,3.09424,1.41722,1.41181,0.005408
+516,348.359,2.87061,1.41766,1.41155,0.006112
+517,336.621,2.9707,1.41677,1.41107,0.005696
+518,374.406,2.6709,1.41715,1.41149,0.005664
+519,290.785,3.43896,1.41686,1.41139,0.005472
+520,349.786,2.85889,1.41722,1.41238,0.004832
+521,342.074,2.92334,1.41709,1.41107,0.006016
+522,332.711,3.00562,1.41722,1.4127,0.004512
+523,341.248,2.93042,1.41731,1.41187,0.00544
+524,348.685,2.86792,1.41754,1.41258,0.00496
+525,293.515,3.40698,1.41565,1.41126,0.004384
+526,147.2,6.79346,1.41786,1.41171,0.006144
+527,365.421,2.73657,1.41101,1.40598,0.005024
+528,297.415,3.3623,1.41718,1.41107,0.006112
+529,286.213,3.4939,1.41734,1.41142,0.00592
+530,324.025,3.08618,1.41722,1.41274,0.00448
+531,317.052,3.15405,1.41718,1.41107,0.006112
+532,319.925,3.12573,1.41683,1.41107,0.00576
+533,374.132,2.67285,1.41619,1.41168,0.004512
+534,327.811,3.05054,1.41712,1.41165,0.005472
+535,319.476,3.13013,1.42096,1.41517,0.005792
+536,334.75,2.9873,1.41616,1.41107,0.005088
+537,330.99,3.02124,1.41693,1.41123,0.005696
+538,368.213,2.71582,1.41741,1.41126,0.006144
+539,302.199,3.30908,1.41718,1.41187,0.005312
+540,352.678,2.83545,1.41597,1.41162,0.004352
+541,344.752,2.90063,1.41718,1.41114,0.006048
+542,380.457,2.62842,1.41587,1.41082,0.005056
+543,364.997,2.73975,1.41696,1.41107,0.005888
+544,313.078,3.19409,1.41728,1.41158,0.005696
+545,372.228,2.68652,1.41638,1.4111,0.00528
+546,325.028,3.07666,1.41786,1.41178,0.00608
+547,344.781,2.90039,1.41661,1.41107,0.005536
+548,353.164,2.83154,1.41837,1.41312,0.005248
+549,357.417,2.79785,1.41722,1.41251,0.004704
+550,361.965,2.7627,1.41674,1.4112,0.005536
+551,298.695,3.3479,1.4185,1.41312,0.005376
+552,333.605,2.99756,1.4177,1.412,0.005696
+553,320.852,3.1167,1.41696,1.4111,0.005856
+554,374.406,2.6709,1.41562,1.41075,0.004864
+555,352.283,2.83862,1.41622,1.41094,0.00528
+556,375.504,2.66309,1.41757,1.41142,0.006144
+557,355.186,2.81543,1.41584,1.40973,0.006112
+558,349.578,2.8606,1.41565,1.41098,0.004672
+559,370.31,2.70044,1.41722,1.41107,0.006144
+560,345.683,2.89282,1.41722,1.41254,0.004672
+561,349.906,2.85791,1.4159,1.40976,0.006144
+562,359.551,2.78125,1.41741,1.4121,0.005312
+563,262.733,3.80615,1.41654,1.41107,0.005472
+564,345.013,2.89844,1.41517,1.41075,0.004416
+565,323.564,3.09058,1.41696,1.41107,0.005888
+566,365.878,2.73315,1.41645,1.41107,0.005376
+567,314.835,3.17627,1.41722,1.4121,0.00512
+568,266.216,3.75635,1.41568,1.41069,0.004992
+569,352.769,2.83472,1.41642,1.41107,0.005344
+570,317.963,3.14502,1.41763,1.41187,0.00576
+571,349.071,2.86475,1.41642,1.41107,0.005344
+572,319.576,3.12915,1.41654,1.41107,0.005472
+573,307.093,3.25635,1.41568,1.41069,0.004992
+574,320.275,3.12231,1.41834,1.41312,0.005216
+575,363.862,2.74829,1.41712,1.41123,0.005888
+576,323.309,3.09302,1.41568,1.41149,0.004192
+577,339.326,2.94702,1.41562,1.41062,0.004992
+578,369.976,2.70288,1.41613,1.41181,0.00432
+579,308.039,3.24634,1.41603,1.40998,0.006048
+580,374.03,2.67358,1.41578,1.41123,0.004544
+581,378.873,2.6394,1.41766,1.41152,0.006144
+582,337.703,2.96118,1.41642,1.41107,0.005344
+583,276.253,3.61987,1.4161,1.41162,0.00448
+584,336.482,2.97192,1.4152,1.41043,0.004768
+585,336.399,2.97266,1.41558,1.4113,0.004288
+586,294.507,3.39551,1.41722,1.41107,0.006144
+587,363.895,2.74805,1.41658,1.41107,0.005504
+588,271.402,3.68457,1.41715,1.41171,0.00544
+589,383.377,2.6084,1.41648,1.41107,0.005408
+590,364.835,2.74097,1.41581,1.41142,0.004384
+591,382.411,2.61499,1.41712,1.41107,0.006048
+592,335.903,2.97705,1.41542,1.41085,0.004576
+593,352.011,2.84082,1.41722,1.41229,0.004928
+594,321.331,3.11206,1.41562,1.40954,0.00608
+595,382.875,2.61182,1.41526,1.40989,0.005376
+596,382.875,2.61182,1.4153,1.41046,0.004832
+597,354.847,2.81812,1.41574,1.4097,0.006048
+598,337.62,2.96191,1.41517,1.41078,0.004384
+599,378.418,2.64258,1.41555,1.40941,0.006144
+600,312.457,3.20044,1.41722,1.41222,0.004992
+601,320.601,3.11914,1.41578,1.40963,0.006144
+602,354.816,2.81836,1.41683,1.41107,0.00576
+603,304.038,3.28906,1.41555,1.41078,0.004768
+604,295.08,3.38892,1.41917,1.41312,0.006048
+605,345.858,2.89136,1.41587,1.41114,0.004736
+606,341.078,2.93188,1.41699,1.41107,0.00592
+607,311.246,3.21289,1.41626,1.41098,0.00528
+608,411.41,2.43066,1.41699,1.41107,0.00592
+609,255.521,3.91357,1.41597,1.41107,0.004896
+610,370.009,2.70264,1.41517,1.41062,0.004544
+611,317.963,3.14502,1.41658,1.41107,0.005504
+612,353.53,2.82861,1.41568,1.40992,0.00576
+613,334.832,2.98657,1.41638,1.41107,0.005312
+614,312.386,3.20117,1.41587,1.40973,0.006144
+615,250.934,3.98511,1.41661,1.41107,0.005536
+616,365.388,2.73682,1.41443,1.40912,0.005312
+617,399.415,2.50366,1.41606,1.4111,0.00496
+618,395.252,2.53003,1.41709,1.41107,0.006016
+619,353.866,2.82593,1.41517,1.41008,0.005088
+620,345.508,2.89429,1.41706,1.41126,0.005792
+621,275.213,3.63354,1.41517,1.41021,0.00496
+622,340.907,2.93335,1.41546,1.4104,0.005056
+623,295.143,3.38818,1.41539,1.41037,0.005024
+624,360.088,2.7771,1.41606,1.40998,0.00608
+625,302.757,3.30298,1.41683,1.41107,0.00576
+626,353.103,2.83203,1.41603,1.40989,0.006144
+627,315.077,3.17383,1.41722,1.41107,0.006144
+628,351.016,2.84888,1.41526,1.41027,0.004992
+629,381.023,2.62451,1.41536,1.40944,0.00592
+630,301.487,3.31689,1.41517,1.41078,0.004384
+631,366.401,2.72925,1.41408,1.40947,0.004608
+632,365.976,2.73242,1.41501,1.40954,0.005472
+633,358.543,2.78906,1.4168,1.41107,0.005728
+634,356.422,2.80566,1.41629,1.41101,0.00528
+635,297.783,3.35815,1.41568,1.40954,0.006144
+636,341.533,2.92798,1.41546,1.40944,0.006016
+637,328.6,3.04321,1.41677,1.41107,0.005696
+638,388.357,2.57495,1.41562,1.40954,0.00608
+639,389.91,2.5647,1.41507,1.40918,0.005888
+640,366.795,2.72632,1.41517,1.41008,0.005088
+641,346.649,2.88477,1.41517,1.41034,0.004832
+642,284.247,3.51807,1.41741,1.41155,0.005856
+643,352.526,2.83667,1.4153,1.40989,0.005408
+644,363.862,2.74829,1.41715,1.41219,0.00496
+645,330.856,3.02246,1.41517,1.40902,0.006144
+646,246.985,4.04883,1.41494,1.40909,0.005856
+647,366.992,2.72485,1.4151,1.40915,0.005952
+648,339.607,2.94458,1.41722,1.41213,0.005088
+649,360.817,2.77148,1.41363,1.40915,0.00448
+650,367.19,2.72339,1.41568,1.41082,0.004864
+651,266.736,3.74902,1.41619,1.41091,0.00528
+652,367.387,2.72192,1.41315,1.4088,0.004352
+653,357.573,2.79663,1.41514,1.40902,0.006112
+654,365.616,2.73511,1.41654,1.41107,0.005472
+655,316.44,3.16016,1.41517,1.40902,0.006144
+656,353.744,2.8269,1.41507,1.40902,0.006048
+657,260.692,3.83594,1.41347,1.40899,0.00448
+658,349.697,2.85962,1.41517,1.41027,0.004896
+659,385.687,2.59277,1.41459,1.40918,0.005408
+660,354.632,2.81982,1.41475,1.40928,0.005472
+661,362.382,2.75952,1.41517,1.41069,0.00448
+662,349.876,2.85815,1.41373,1.40787,0.005856
+663,307.739,3.24951,1.41517,1.40902,0.006144
+664,360.31,2.77539,1.41517,1.40902,0.006144
+665,357.667,2.7959,1.41517,1.41059,0.004576
+666,363.54,2.75073,1.41526,1.40922,0.006048
+667,236.353,4.23096,1.41462,1.40902,0.0056
+668,382.947,2.61133,1.41347,1.40909,0.004384
+669,358.481,2.78955,1.41926,1.41446,0.0048
+670,345.333,2.89575,1.41418,1.4089,0.00528
+671,339.269,2.94751,1.41462,1.40934,0.00528
+672,319.476,3.13013,1.42541,1.4193,0.006112
+673,371.284,2.69336,1.41389,1.40899,0.004896
+674,334.504,2.9895,1.41517,1.41021,0.00496
+675,334.504,2.9895,1.41494,1.40902,0.00592
+676,294.147,3.39966,1.43126,1.42541,0.005856
+677,271.168,3.68774,1.41485,1.40902,0.005824
+678,348.774,2.86719,1.41645,1.41107,0.005376
+679,324.282,3.08374,1.41517,1.40982,0.005344
+680,357.448,2.79761,1.41517,1.41021,0.00496
+681,357.292,2.79883,1.41542,1.41053,0.004896
+682,334.668,2.98804,1.41488,1.4096,0.00528
+683,272.34,3.67188,1.41517,1.41008,0.005088
+684,364.965,2.73999,1.41517,1.40982,0.005344
+685,344.028,2.90674,1.42486,1.41053,0.014336
+686,360.595,2.77319,1.41517,1.41053,0.00464
+687,310.845,3.21704,1.41654,1.41107,0.005472
+688,349.16,2.86401,1.41571,1.40986,0.005856
+689,323.718,3.08911,1.41555,1.40973,0.005824
+690,343.999,2.90698,1.41558,1.41002,0.005568
+691,354.663,2.81958,1.41472,1.40902,0.005696
+692,384.782,2.59888,1.4144,1.40902,0.005376
+693,263.646,3.79297,1.4152,1.41091,0.004288
+694,346.972,2.88208,1.41514,1.40986,0.00528
+695,352.921,2.8335,1.41517,1.40902,0.006144
+696,376.125,2.65869,1.41526,1.41091,0.004352
+697,366.729,2.72681,1.41402,1.40941,0.004608
+698,342.991,2.91553,1.41498,1.40925,0.005728
+699,373.825,2.67505,1.41539,1.40925,0.006144
+700,349.041,2.86499,1.41549,1.41117,0.00432
+701,378.034,2.64526,1.41619,1.41091,0.00528
+702,367.19,2.72339,1.41498,1.40944,0.005536
+703,363.346,2.7522,1.41517,1.41024,0.004928
+704,352.647,2.83569,1.41498,1.40925,0.005728
+705,376.159,2.65845,1.41376,1.40931,0.004448
+706,388.283,2.57544,1.41459,1.40902,0.005568
+707,367.948,2.71777,1.41344,1.40874,0.004704
+708,345.392,2.89526,1.41526,1.40992,0.005344
+709,376.956,2.65283,1.41517,1.41024,0.004928
+710,342.303,2.92139,1.41379,1.40918,0.004608
+711,347.915,2.87427,1.41517,1.4103,0.004864
+712,358.638,2.78833,1.41318,1.40707,0.006112
+713,389.91,2.5647,1.41376,1.40909,0.004672
+714,326.583,3.06201,1.41536,1.41072,0.00464
+715,302.243,3.30859,1.43136,1.42563,0.005728
+716,378.279,2.64355,1.41517,1.4105,0.004672
+717,356.422,2.80566,1.41517,1.41027,0.004896
+718,320.125,3.12378,1.41514,1.40902,0.006112
+719,386.306,2.58862,1.41498,1.40938,0.0056
+720,328.205,3.04688,1.41494,1.40902,0.00592
+721,317.692,3.14771,1.41517,1.4103,0.004864
+722,343.999,2.90698,1.41315,1.40765,0.005504
+723,365.616,2.73511,1.41338,1.40893,0.004448
+724,345.159,2.89722,1.4153,1.40947,0.005824
+725,370.545,2.69873,1.41424,1.40896,0.00528
+726,359.267,2.78345,1.41514,1.40902,0.006112
+727,351.618,2.84399,1.41386,1.40941,0.004448
+728,361.55,2.76587,1.41395,1.40781,0.006144
+729,353.195,2.8313,1.41539,1.41072,0.004672
+730,347.236,2.87988,1.41462,1.40902,0.0056
+731,347.797,2.87524,1.41539,1.40947,0.00592
+732,249.924,4.00122,1.41453,1.40902,0.005504
+733,368.114,2.71655,1.41312,1.40752,0.0056
+734,322.444,3.10132,1.41475,1.4089,0.005856
+735,353.134,2.83179,1.41325,1.40893,0.00432
+736,345.8,2.89185,1.41517,1.40902,0.006144
+737,250.382,3.9939,1.41517,1.41053,0.00464
+738,344.955,2.89893,1.41517,1.41059,0.004576
+739,342.704,2.91797,1.41373,1.40931,0.004416
+740,365.127,2.73877,1.41322,1.40886,0.004352
+741,285.157,3.50684,1.41517,1.41046,0.004704
+742,257.724,3.88013,1.4072,1.40282,0.004384
+743,345.043,2.89819,1.4145,1.40912,0.005376
+744,338.624,2.95312,1.4136,1.40746,0.006144
+745,382.875,2.61182,1.41446,1.40915,0.005312
+746,331.848,3.01343,1.41347,1.40867,0.0048
+747,240.192,4.16333,1.41517,1.41024,0.004928
+748,374.269,2.67188,1.41414,1.40947,0.004672
+749,304.807,3.28076,1.41494,1.40902,0.00592
+750,378.174,2.64429,1.41347,1.40858,0.004896
+751,389.095,2.57007,1.41334,1.40867,0.004672
+752,253.984,3.93726,1.42624,1.4201,0.006144
+753,380.882,2.62549,1.41312,1.40877,0.004352
+754,365.323,2.7373,1.41517,1.40902,0.006144
+755,312.529,3.19971,1.41322,1.40742,0.005792
+756,335.71,2.97876,1.41309,1.40784,0.005248
+757,298.738,3.34741,1.41504,1.40902,0.006016
+758,322.57,3.1001,1.41517,1.41018,0.004992
+759,370.645,2.698,1.41472,1.40944,0.00528
+760,301.398,3.31787,1.41395,1.40787,0.00608
+761,361.774,2.76416,1.41312,1.4087,0.004416
+762,352.891,2.83374,1.41411,1.40931,0.0048
+763,291.655,3.42871,1.4167,1.41085,0.005856
+764,406.47,2.46021,1.41517,1.41018,0.004992
+765,378.663,2.64087,1.41411,1.40934,0.004768
+766,305.763,3.27051,1.41514,1.40902,0.006112
+767,376.956,2.65283,1.41446,1.40915,0.005312
+768,311.839,3.20679,1.41402,1.40966,0.004352
+769,351.709,2.84326,1.41517,1.40902,0.006144
+770,304.196,3.28735,1.41398,1.40922,0.004768
+771,316.587,3.15869,1.41488,1.40941,0.005472
+772,375.401,2.66382,1.41373,1.40931,0.004416
+773,262.682,3.80688,1.4151,1.40902,0.00608
+774,372.974,2.68115,1.41376,1.40902,0.004736
+775,343.221,2.91357,1.41459,1.40902,0.005568
+776,381.343,2.62231,1.41517,1.40902,0.006144
+777,339.213,2.948,1.41379,1.40765,0.006144
+778,363.443,2.75146,1.41469,1.40941,0.00528
+779,344.52,2.90259,1.41514,1.4096,0.005536
+780,358.293,2.79102,1.41283,1.40752,0.005312
+781,338.961,2.9502,1.41462,1.40902,0.0056
+782,319.401,3.13086,1.41414,1.40912,0.005024
+783,370.947,2.6958,1.41421,1.4089,0.005312
+784,336.538,2.97144,1.41331,1.4089,0.004416
+785,339.241,2.94775,1.41341,1.40726,0.006144
+786,360.183,2.77637,1.41315,1.40787,0.00528
+787,345.829,2.8916,1.41517,1.41005,0.00512
+788,369.475,2.70654,1.41408,1.40794,0.006144
+789,306.174,3.26611,1.41466,1.40902,0.005632
+790,369.342,2.70752,1.41462,1.40925,0.005376
+791,349.488,2.86133,1.41517,1.41005,0.00512
+792,321.684,3.10864,1.41418,1.40893,0.005248
+793,338.428,2.95483,1.41446,1.40902,0.00544
+794,387.255,2.58228,1.4143,1.40902,0.00528
+795,342.819,2.91699,1.41392,1.40781,0.006112
+796,359.898,2.77856,1.4145,1.40902,0.005472
+797,353.988,2.82495,1.41421,1.40893,0.00528
+798,378.069,2.64502,1.41494,1.40902,0.00592
+799,364.997,2.73975,1.41363,1.40931,0.00432
+800,355.494,2.81299,1.41456,1.40902,0.005536
+801,352.223,2.83911,1.41414,1.40874,0.005408
+802,324.205,3.08447,1.41386,1.40784,0.006016
+803,364.64,2.74243,1.4144,1.40902,0.005376
+804,359.235,2.78369,1.41312,1.40848,0.00464
+805,369.909,2.70337,1.41424,1.40896,0.00528
+806,349.816,2.85864,1.41373,1.40758,0.006144
+807,309.693,3.229,1.41485,1.40902,0.005824
+808,383.269,2.60913,1.41421,1.4089,0.005312
+809,313.653,3.18823,1.41341,1.40797,0.00544
+810,397.246,2.51733,1.4145,1.40902,0.005472
+811,318.358,3.14111,1.41418,1.40886,0.005312
+812,343.365,2.91235,1.41302,1.40771,0.005312
+813,388.836,2.57178,1.41472,1.40902,0.005696
+814,303.43,3.29565,1.4144,1.40902,0.005376
+815,376.644,2.65503,1.41344,1.40899,0.004448
+816,368.18,2.71606,1.41312,1.40886,0.004256
+817,319.551,3.12939,1.41338,1.40906,0.00432
+818,324.796,3.07886,1.41357,1.40768,0.005888
+819,382.339,2.61548,1.41494,1.40902,0.00592
+820,398.095,2.51196,1.41318,1.40858,0.004608
+821,368.943,2.71045,1.41533,1.4105,0.004832
+822,367.486,2.72119,1.41325,1.40758,0.005664
+823,381.201,2.62329,1.41293,1.40758,0.005344
+824,336.096,2.97534,1.41347,1.40918,0.004288
+825,402.437,2.48486,1.41395,1.40781,0.006144
+826,357.823,2.79468,1.41267,1.40739,0.00528
+827,354.939,2.81738,1.41293,1.40765,0.00528
+828,337.175,2.96582,1.41491,1.4095,0.005408
+829,284.03,3.52075,1.41408,1.40899,0.005088
+830,362.863,2.75586,1.41373,1.40896,0.004768
+831,299.612,3.33765,1.41302,1.40701,0.006016
+832,362.51,2.75854,1.41261,1.40714,0.005472
+833,313.389,3.19092,1.41453,1.40893,0.0056
+834,322.165,3.104,1.41357,1.4087,0.004864
+835,301.642,3.31519,1.41421,1.40896,0.005248
+836,376.401,2.65674,1.41437,1.40902,0.005344
+837,304.558,3.28345,1.41434,1.40902,0.005312
+838,335.325,2.98218,1.41437,1.40902,0.005344
+839,356.981,2.80127,1.41347,1.40794,0.005536
+840,326.141,3.06616,1.41418,1.40893,0.005248
+841,382.768,2.61255,1.41286,1.40746,0.005408
+842,331.687,3.01489,1.41446,1.40902,0.00544
+843,372.567,2.68408,1.41312,1.40736,0.00576
+844,284.464,3.51538,1.41312,1.40813,0.004992
+845,324.282,3.08374,1.41478,1.40902,0.00576
+846,391.064,2.55713,1.41312,1.40854,0.004576
+847,357.417,2.79785,1.41328,1.40723,0.006048
+848,320.852,3.1167,1.41414,1.40886,0.00528
+849,308.039,3.24634,1.41363,1.40768,0.005952
+850,375.711,2.66162,1.41306,1.40698,0.00608
+851,398.405,2.51001,1.41325,1.40851,0.004736
+852,331.579,3.01587,1.41312,1.4087,0.004416
+853,387.036,2.58374,1.4135,1.40736,0.006144
+854,307.3,3.25415,1.42131,1.41626,0.005056
+855,345.45,2.89478,1.41312,1.4087,0.004416
+856,348.447,2.86987,1.41312,1.40845,0.004672
+857,360.088,2.7771,1.41424,1.40899,0.005248
+858,387.512,2.58057,1.41309,1.40781,0.00528
+859,396.132,2.52441,1.41312,1.40829,0.004832
+860,356.329,2.8064,1.41494,1.40902,0.00592
+861,398.676,2.5083,1.41312,1.40822,0.004896
+862,331.821,3.01367,1.41434,1.40902,0.005312
+863,407.603,2.45337,1.41171,1.40717,0.004544
+864,382.411,2.61499,1.41296,1.4073,0.005664
+865,354.816,2.81836,1.41382,1.40768,0.006144
+866,289.184,3.45801,1.41312,1.40848,0.00464
+867,290.064,3.44751,1.40445,1.3993,0.005152
+868,345.975,2.89038,1.41446,1.40902,0.00544
+869,356.391,2.80591,1.41312,1.40698,0.006144
+870,385.833,2.5918,1.41296,1.40749,0.005472
+871,345.742,2.89233,1.41264,1.40726,0.005376
+872,383.126,2.61011,1.41469,1.40902,0.005664
+873,386.67,2.58618,1.41312,1.40874,0.004384
+874,369.875,2.70361,1.41318,1.40752,0.005664
+875,374.748,2.66846,1.41389,1.40774,0.006144
+876,366.532,2.72827,1.41379,1.40778,0.006016
+877,282.21,3.54346,1.41405,1.40922,0.004832
+878,372.228,2.68652,1.41357,1.40794,0.005632
+879,360.373,2.7749,1.41427,1.40899,0.00528
+880,378.979,2.63867,1.41312,1.40813,0.004992
+881,375.918,2.66016,1.41312,1.4087,0.004416
+882,321.28,3.11255,1.41312,1.40864,0.00448
+883,386.306,2.58862,1.4137,1.408,0.005696
+884,343.942,2.90747,1.41517,1.40902,0.006144
+885,368.511,2.71362,1.41331,1.40717,0.006144
+886,329.897,3.03125,1.41312,1.40698,0.006144
+887,393.128,2.5437,1.4144,1.40902,0.005376
+888,312.29,3.20215,1.41411,1.40906,0.005056
+889,331.284,3.01855,1.41485,1.40902,0.005824
+890,382.446,2.61475,1.41354,1.4079,0.005632
+891,345.159,2.89722,1.41427,1.40899,0.00528
+892,382.339,2.61548,1.41318,1.40723,0.005952
+893,354.295,2.82251,1.41341,1.40838,0.005024
+894,346.063,2.88965,1.41322,1.40893,0.004288
+895,408.782,2.44629,1.41504,1.40902,0.006016
+896,369.708,2.70483,1.41312,1.40829,0.004832
+897,391.4,2.55493,1.41411,1.40797,0.006144
+898,367.816,2.71875,1.41283,1.40752,0.005312
+899,349.607,2.86035,1.41504,1.40957,0.005472
+900,351.437,2.84546,1.41344,1.40858,0.004864
+901,340.709,2.93506,1.41395,1.40883,0.00512
+902,376.678,2.65479,1.41312,1.4081,0.005024
+903,382.911,2.61157,1.41309,1.40768,0.005408
+904,305.923,3.2688,1.41494,1.40902,0.00592
+905,356.081,2.80835,1.41312,1.40813,0.004992
+906,344.462,2.90308,1.41302,1.40698,0.006048
+907,363.54,2.75073,1.41357,1.40784,0.005728
+908,380.74,2.62646,1.41434,1.40902,0.005312
+909,338.261,2.9563,1.41354,1.40768,0.005856
+910,374.577,2.66968,1.41629,1.41101,0.00528
+911,340.171,2.9397,1.41363,1.40874,0.004896
+912,390.095,2.56348,1.41347,1.4088,0.004672
+913,375.504,2.66309,1.41293,1.40698,0.005952
+914,332.576,3.00684,1.41421,1.40896,0.005248
+915,403.587,2.47778,1.4145,1.40902,0.005472
+916,354.111,2.82397,1.4135,1.40838,0.00512
+917,343.307,2.91284,1.41312,1.40835,0.004768
+918,404.184,2.47412,1.41405,1.4079,0.006144
+919,343.74,2.90918,1.41373,1.4088,0.004928
+920,403.746,2.47681,1.4145,1.40902,0.005472
+921,399.026,2.5061,1.41347,1.40752,0.005952
+922,326.245,3.06519,1.4136,1.40867,0.004928
+923,375.849,2.66064,1.41386,1.40771,0.006144
+924,360.056,2.77734,1.41334,1.40845,0.004896
+925,392.676,2.54663,1.4136,1.40765,0.005952
+926,344.549,2.90234,1.41443,1.40902,0.005408
+927,384.818,2.59863,1.41322,1.40877,0.004448
+928,245.77,4.06885,1.41459,1.40928,0.005312
+929,332.198,3.01025,1.41453,1.40902,0.005504
+930,366.434,2.729,1.41408,1.40899,0.005088
+931,351.89,2.8418,1.41517,1.41014,0.005024
+932,414.323,2.41357,1.41517,1.40902,0.006144
+933,345.683,2.89282,1.41418,1.4089,0.00528
+934,287.843,3.47412,1.41469,1.40902,0.005664
+935,380.634,2.6272,1.4137,1.40755,0.006144
+936,345.246,2.89648,1.41526,1.40928,0.005984
+937,387.402,2.5813,1.41482,1.40896,0.005856
+938,371.25,2.6936,1.41382,1.408,0.005824
+939,321.835,3.10718,1.41814,1.41322,0.004928
+940,368.876,2.71094,1.41363,1.40928,0.004352
+941,364.024,2.74707,1.41347,1.40733,0.006144
+942,358.543,2.78906,1.41312,1.40698,0.006144
+943,365.062,2.73926,1.41466,1.40909,0.005568
+944,377.686,2.64771,1.41501,1.40902,0.005984
+945,291.323,3.43262,1.41405,1.4079,0.006144
+946,320.375,3.12134,1.41485,1.40902,0.005824
+947,364.024,2.74707,1.41414,1.40944,0.004704
+948,371.014,2.69531,1.41331,1.40877,0.004544
+949,335.683,2.979,1.41414,1.40886,0.00528
+950,360.595,2.77319,1.41328,1.40854,0.004736
+951,341.932,2.92456,1.41312,1.4088,0.00432
+952,380.952,2.625,1.41478,1.40902,0.00576
+953,361.263,2.76807,1.41398,1.4079,0.00608
+954,362.446,2.75903,1.41322,1.40842,0.0048
+955,314.883,3.17578,1.41312,1.40877,0.004352
+956,297.848,3.35742,1.41389,1.40906,0.004832
+957,372.33,2.68579,1.41446,1.40902,0.00544
+958,301.798,3.31348,1.41386,1.4088,0.005056
+959,359.109,2.78467,1.41344,1.40883,0.004608
+960,350.415,2.85376,1.41312,1.4087,0.004416
+961,326.427,3.06348,1.41373,1.40867,0.005056
+962,314.303,3.18164,1.41418,1.4089,0.00528
+963,373.348,2.67847,1.41466,1.40902,0.005632
+964,358.858,2.78662,1.41312,1.40835,0.004768
+965,324.307,3.0835,1.41363,1.40851,0.00512
+966,352.314,2.83838,1.41354,1.40742,0.006112
+967,332.603,3.00659,1.41482,1.40902,0.005792
+968,319.351,3.13135,1.41306,1.40739,0.005664
+969,330.003,3.03027,1.41331,1.4088,0.004512
+970,331.714,3.01465,1.41434,1.40902,0.005312
+971,346.443,2.88647,1.4144,1.40902,0.005376
+972,312.552,3.19946,1.41322,1.40838,0.004832
+973,298.564,3.34937,1.41318,1.4089,0.004288
+974,328.337,3.04565,1.41462,1.40902,0.0056
+975,346.854,2.88306,1.41469,1.40902,0.005664
+976,327.47,3.05371,1.41498,1.40902,0.005952
+977,319.825,3.12671,1.41312,1.4088,0.00432
+978,292.613,3.41748,1.41443,1.40902,0.005408
+979,336.289,2.97363,1.41312,1.40877,0.004352
+980,333.062,3.00244,1.41312,1.40838,0.004736
+981,264.634,3.77881,1.41312,1.4088,0.00432
+982,299.065,3.34375,1.41482,1.40902,0.005792
+983,249.042,4.01538,1.41325,1.4071,0.006144
+984,306.22,3.26562,1.42131,1.41702,0.004288
+985,268.661,3.72217,1.42086,1.41517,0.005696
+986,304.739,3.28149,1.41456,1.40902,0.005536
+987,261.425,3.8252,1.41395,1.4079,0.006048
+988,367.75,2.71924,1.41421,1.4089,0.005312
+989,288.106,3.47095,1.41459,1.40902,0.005568
+990,245.844,4.06763,1.41386,1.40771,0.006144
+991,320.375,3.12134,1.41421,1.40893,0.00528
+992,340.369,2.93799,1.41501,1.40902,0.005984
+993,346.649,2.88477,1.41453,1.40867,0.005856
+994,352.951,2.83325,1.41312,1.40698,0.006144
+995,347.089,2.8811,1.41373,1.40883,0.004896
+996,356.888,2.802,1.41434,1.40902,0.005312
+997,302.154,3.30957,1.41293,1.40765,0.00528
+998,325.726,3.07007,1.4136,1.40746,0.006144
+999,342.132,2.92285,1.41344,1.40835,0.005088
+1000,310.656,3.21899,1.41334,1.40746,0.005888
+1001,343.711,2.90942,1.4137,1.40858,0.00512
+1002,294.359,3.39722,1.41312,1.40848,0.00464
+1003,355.648,2.81177,1.41322,1.40829,0.004928
+1004,305.991,3.26807,1.41482,1.40902,0.005792
+1005,366.926,2.72534,1.41286,1.40742,0.00544
+1006,352.921,2.8335,1.41376,1.40915,0.004608
+1007,340.312,2.93848,1.41312,1.40867,0.004448
+1008,375.987,2.65967,1.41437,1.40902,0.005344
+1009,340.907,2.93335,1.41318,1.40883,0.004352
+1010,354.847,2.81812,1.41312,1.40806,0.005056
+1011,320.225,3.1228,1.41517,1.40902,0.006144
+1012,306.335,3.2644,1.41315,1.40826,0.004896
+1013,325.933,3.06812,1.41312,1.40867,0.004448
+1014,337.842,2.95996,1.41322,1.40774,0.005472
+1015,372.635,2.68359,1.41347,1.40781,0.005664
+1016,341.647,2.927,1.41312,1.40698,0.006144
+1017,350.505,2.85303,1.41309,1.40778,0.005312
+1018,252.139,3.96606,1.41213,1.40688,0.005248
+1019,329.817,3.03198,1.41334,1.40755,0.005792
+1020,260.212,3.84302,1.41322,1.40874,0.00448
+1021,344.288,2.90454,1.41312,1.40845,0.004672
+1022,273.797,3.65234,1.41469,1.40902,0.005664
+1023,366.992,2.72485,1.4135,1.40784,0.005664
+1024,341.903,2.9248,1.41354,1.40886,0.004672
+1025,365.095,2.73901,1.41418,1.4089,0.00528
+1026,381.627,2.62036,1.41299,1.40723,0.00576
+1027,311.815,3.20703,1.41443,1.40902,0.005408
+1028,327.235,3.05591,1.41309,1.40698,0.006112
+1029,308.039,3.24634,1.41344,1.40749,0.005952
+1030,340.539,2.93652,1.41331,1.40851,0.0048
+1031,346.18,2.88867,1.41322,1.40758,0.005632
+1032,355.679,2.81152,1.4128,1.40698,0.005824
+1033,362.863,2.75586,1.41312,1.40874,0.004384
+1034,298.586,3.34912,1.41312,1.40854,0.004576
+1035,376.644,2.65503,1.41267,1.40742,0.005248
+1036,374.886,2.66748,1.41312,1.40698,0.006144
+1037,342.762,2.91748,1.4121,1.40768,0.004416
+1038,333.198,3.00122,1.41302,1.40717,0.005856
+1039,307.831,3.24854,1.41328,1.40736,0.00592
+1040,386.89,2.58472,1.41354,1.40925,0.004288
+1041,329.525,3.03467,1.4143,1.40902,0.00528
+1042,382.09,2.61719,1.41395,1.40909,0.004864
+1043,368.114,2.71655,1.41194,1.40771,0.004224
+1044,327.732,3.05127,1.4137,1.40886,0.004832
+1045,385.107,2.59668,1.41469,1.40902,0.005664
+1046,325.415,3.073,1.4144,1.40902,0.005376
+1047,401.097,2.49316,1.41318,1.4081,0.005088
+1048,382.518,2.61426,1.41357,1.40854,0.005024
+1049,339.326,2.94702,1.41386,1.40771,0.006144
+1050,393.354,2.54224,1.41395,1.40781,0.006144
+1051,330.269,3.02783,1.41331,1.40845,0.004864
+1052,385.615,2.59326,1.4152,1.4095,0.005696
+1053,404.383,2.4729,1.41344,1.4073,0.006144
+1054,357.292,2.79883,1.41414,1.4089,0.005248
+1055,335.628,2.97949,1.41331,1.40867,0.00464
+1056,324.23,3.08423,1.41501,1.40902,0.005984
+1057,397.516,2.51562,1.41312,1.40864,0.00448
+1058,388.283,2.57544,1.41475,1.4089,0.005856
+1059,385.578,2.59351,1.41501,1.40902,0.005984
+1060,411.493,2.43018,1.41312,1.40845,0.004672
+1061,305.057,3.27808,1.41453,1.40909,0.00544
+1062,388.431,2.57446,1.4151,1.40902,0.00608
+1063,410.874,2.43384,1.41421,1.40883,0.005376
+1064,349.101,2.8645,1.41408,1.40941,0.004672
+1065,391.138,2.55664,1.41322,1.40768,0.005536
+1066,391.25,2.55591,1.41459,1.40902,0.005568
+1067,346.355,2.88721,1.41517,1.41053,0.00464
+1068,395.062,2.53125,1.41312,1.40861,0.004512
+1069,322.825,3.09766,1.41392,1.40778,0.006144
+1070,403.07,2.48096,1.41312,1.4087,0.004416
+1071,379.505,2.63501,1.41354,1.40742,0.006112
+1072,332.522,3.00732,1.41472,1.40902,0.005696
+1073,383.449,2.60791,1.41379,1.40765,0.006144
+1074,316.196,3.1626,1.41312,1.40829,0.004832
+1075,402.595,2.48389,1.41341,1.40771,0.005696
+1076,413.779,2.41675,1.41354,1.40851,0.005024
+1077,345.363,2.89551,1.41296,1.40768,0.00528
+1078,349.816,2.85864,1.42512,1.4193,0.005824
+1079,331.07,3.02051,1.41312,1.4088,0.00432
+1080,384.926,2.5979,1.41302,1.40742,0.0056
+1081,391.55,2.55396,1.41312,1.4087,0.004416
+1082,375.47,2.66333,1.41312,1.40874,0.004384
+1083,378.034,2.64526,1.41312,1.40838,0.004736
+1084,309.951,3.22632,1.41312,1.4081,0.005024
+1085,379.154,2.63745,1.41312,1.40864,0.00448
+1086,375.883,2.6604,1.42394,1.40758,0.016352
+1087,343.855,2.9082,1.41312,1.40845,0.004672
+1088,393.052,2.54419,1.41331,1.40842,0.004896
+1089,263.256,3.79858,1.4144,1.40902,0.005376
+1090,383.988,2.60425,1.41443,1.40902,0.005408
+1091,392.412,2.54834,1.41312,1.4087,0.004416
+1092,367.19,2.72339,1.41312,1.40816,0.00496
+1093,409.764,2.44043,1.41334,1.40742,0.00592
+1094,307.577,3.25122,1.41453,1.40902,0.005504
+1095,369.809,2.7041,1.41312,1.40874,0.004384
+1096,391.887,2.55176,1.41322,1.40845,0.004768
+1097,372.533,2.68433,1.41315,1.40762,0.005536
+1098,392.074,2.55054,1.41306,1.408,0.005056
+1099,340.199,2.93945,1.41274,1.40698,0.00576
+1100,369.708,2.70483,1.4128,1.40698,0.005824
+1101,396.861,2.51978,1.41328,1.4072,0.00608
+1102,389.65,2.56641,1.41302,1.40762,0.005408
+1103,384.745,2.59912,1.41174,1.40742,0.00432
+1104,357.292,2.79883,1.41373,1.40794,0.005792
+1105,306.748,3.26001,1.41312,1.40813,0.004992
+1106,384.168,2.60303,1.41306,1.4072,0.005856
+1107,351.497,2.84497,1.41498,1.40902,0.005952
+1108,399.026,2.5061,1.41312,1.40842,0.004704
+1109,372.533,2.68433,1.41312,1.40698,0.006144
+1110,339.213,2.948,1.41325,1.40832,0.004928
+1111,343.855,2.9082,1.41325,1.40733,0.00592
+1112,356.453,2.80542,1.41315,1.40714,0.006016
+1113,394.415,2.5354,1.41312,1.4087,0.004416
+1114,367.651,2.71997,1.41363,1.40755,0.00608
+1115,398.211,2.51123,1.41254,1.40698,0.005568
+1116,390.132,2.56323,1.4137,1.40781,0.005888
+1117,319.376,3.1311,1.41418,1.4089,0.00528
+1118,359.267,2.78345,1.41424,1.40896,0.00528
+1119,342.418,2.92041,1.41309,1.40739,0.005696
+1120,352.011,2.84082,1.41309,1.40784,0.005248
+1121,397.902,2.51318,1.41414,1.40883,0.005312
+1122,255.409,3.91528,1.4143,1.40902,0.00528
+1123,353.317,2.83032,1.41366,1.40781,0.005856
+1124,286.454,3.49097,1.41395,1.40896,0.004992
+1125,356.174,2.80762,1.41443,1.40902,0.005408
+1126,360.373,2.7749,1.41312,1.40858,0.004544
+1127,282.873,3.53516,1.41312,1.4072,0.00592
+1128,352.465,2.83716,1.41344,1.40845,0.004992
+1129,381.485,2.62134,1.41315,1.4081,0.005056
+1130,386.306,2.58862,1.41325,1.40755,0.005696
+1131,316.196,3.1626,1.41312,1.40864,0.00448
+1132,396.055,2.5249,1.4121,1.40742,0.004672
+1133,340.284,2.93872,1.42467,1.40851,0.01616
+1134,323.003,3.09595,1.41312,1.40842,0.004704
+1135,386.051,2.59033,1.41286,1.40698,0.005888
+1136,339.326,2.94702,1.41312,1.40826,0.004864
+1137,387.732,2.5791,1.41315,1.40736,0.005792
+1138,218.885,4.5686,1.41312,1.40858,0.004544
+1139,395.711,2.5271,1.41331,1.40893,0.004384
+1140,346.854,2.88306,1.41315,1.40765,0.005504
+1141,385.143,2.59644,1.41283,1.40698,0.005856
+1142,404.623,2.47144,1.41203,1.40758,0.004448
+1143,239.448,4.17627,1.41843,1.41258,0.005856
+1144,382.553,2.61401,1.41331,1.40726,0.006048
+1145,311.981,3.20532,1.41312,1.40698,0.006144
+1146,369.542,2.70605,1.4121,1.40595,0.006144
+1147,355.988,2.80908,1.41312,1.40864,0.00448
+1148,280.145,3.56958,1.41322,1.40858,0.00464
+1149,370.981,2.69556,1.4129,1.40698,0.00592
+1150,376.194,2.6582,1.41149,1.40714,0.004352
+1151,398.909,2.50684,1.41312,1.40854,0.004576
+1152,374.201,2.67236,1.41315,1.40822,0.004928
+1153,377.164,2.65137,1.4127,1.40701,0.005696
+1154,288.532,3.46582,1.42336,1.4185,0.004864
+1155,327.995,3.04883,1.41107,1.40672,0.004352
+1156,394.909,2.53223,1.41206,1.40746,0.004608
+1157,335.188,2.9834,1.41312,1.40698,0.006144
+1158,345.829,2.8916,1.41283,1.40707,0.00576
+1159,312.243,3.20264,1.41296,1.40758,0.005376
+1160,378.838,2.63965,1.41261,1.4073,0.005312
+1161,389.428,2.56787,1.41232,1.40698,0.005344
+1162,341.447,2.92871,1.41312,1.40822,0.004896
+1163,402.2,2.48633,1.41232,1.40704,0.00528
+1164,378.279,2.64355,1.41318,1.40739,0.005792
+1165,313.533,3.18945,1.41312,1.40698,0.006144
+1166,379.329,2.63623,1.41322,1.40838,0.004832
+1167,320.15,3.12354,1.41302,1.40698,0.006048
+1168,404.743,2.4707,1.41344,1.4073,0.006144
+1169,330.536,3.02539,1.4127,1.40739,0.005312
+1170,290.126,3.44678,1.41325,1.4071,0.006144
+1171,384.89,2.59814,1.41274,1.40717,0.005568
+1172,365.127,2.73877,1.41354,1.40739,0.006144
+1173,376.748,2.6543,1.41286,1.40698,0.005888
+1174,381.52,2.62109,1.41344,1.40768,0.00576
+1175,376.678,2.65479,1.41174,1.4072,0.004544
+1176,286.514,3.49023,1.41283,1.40698,0.005856
+1177,386.197,2.58936,1.41245,1.40698,0.005472
+1178,391.887,2.55176,1.41344,1.4073,0.006144
+1179,352.921,2.8335,1.41261,1.40698,0.005632
+1180,378.628,2.64111,1.41299,1.40698,0.006016
+1181,406.188,2.46191,1.41248,1.40698,0.005504
+1182,288.898,3.46143,1.41312,1.40698,0.006144
+1183,404.503,2.47217,1.41312,1.40838,0.004736
+1184,336.953,2.96777,1.41296,1.40698,0.005984
+1185,392.412,2.54834,1.41107,1.40637,0.004704
+1186,400,2.5,1.41306,1.40698,0.00608
+1187,271.474,3.68359,1.41312,1.40806,0.005056
+1188,380.245,2.62988,1.412,1.40736,0.00464
+1189,331.66,3.01514,1.41238,1.40704,0.005344
+1190,358.983,2.78564,1.41312,1.40803,0.005088
+1191,365.062,2.73926,1.41242,1.40698,0.00544
+1192,378.908,2.63916,1.41315,1.40778,0.005376
+1193,345.654,2.89307,1.41312,1.40829,0.004832
+1194,337.675,2.96143,1.41261,1.40698,0.005632
+1195,386.561,2.58691,1.41184,1.40688,0.00496
+1196,360.12,2.77686,1.41197,1.40749,0.00448
+1197,371.284,2.69336,1.41242,1.40717,0.005248
+1198,411.08,2.43262,1.41165,1.40682,0.004832
+1199,335.243,2.98291,1.41312,1.40826,0.004864
+1200,390.095,2.56348,1.41142,1.40675,0.004672
+1201,401.018,2.49365,1.41107,1.40666,0.004416
+1202,386.197,2.58936,1.41152,1.40656,0.00496
+1203,374.543,2.66992,1.4129,1.40698,0.00592
+1204,366.303,2.72998,1.41203,1.40701,0.005024
+1205,388.836,2.57178,1.41312,1.40883,0.004288
+1206,415.922,2.4043,1.41142,1.40704,0.004384
+1207,342.59,2.91895,1.41107,1.40493,0.006144
+1208,402.912,2.48193,1.41312,1.40813,0.004992
+1209,390.616,2.56006,1.41312,1.40698,0.006144
+1210,390.095,2.56348,1.41312,1.40829,0.004832
+1211,420.016,2.38086,1.41261,1.40698,0.005632
+1212,412.487,2.42432,1.41283,1.40698,0.005856
+1213,416.599,2.40039,1.41197,1.40582,0.006144
+1214,413.153,2.42041,1.41117,1.40653,0.00464
+1215,219.131,4.56348,1.41312,1.40864,0.00448
+1216,327.68,3.05176,1.41312,1.40877,0.004352
+1217,338.456,2.95459,1.41142,1.40666,0.004768
+1218,371.89,2.68896,1.41325,1.40726,0.005984
+1219,411.741,2.42871,1.41283,1.40707,0.00576
+1220,330.589,3.0249,1.41312,1.40698,0.006144
+1221,407.481,2.4541,1.41258,1.40723,0.005344
+1222,393.015,2.54443,1.41254,1.40698,0.005568
+1223,396.285,2.52344,1.41149,1.40688,0.004608
+1224,404.423,2.47266,1.41309,1.40698,0.006112
+1225,354.019,2.82471,1.41309,1.40784,0.005248
+1226,290.909,3.4375,1.41312,1.40874,0.004384
+1227,387.365,2.58154,1.4137,1.40784,0.005856
+1228,388.467,2.57422,1.41235,1.40707,0.00528
+1229,389.206,2.56934,1.41312,1.40698,0.006144
+1230,322.165,3.104,1.41312,1.40698,0.006144
+1231,321.558,3.10986,1.41312,1.40698,0.006144
+1232,330.056,3.02979,1.41312,1.40845,0.004672
+1233,383.88,2.60498,1.4127,1.4073,0.005408
+1234,403.626,2.47754,1.41155,1.40653,0.005024
+1235,346.355,2.88721,1.41194,1.40736,0.004576
+1236,401.097,2.49316,1.41312,1.4081,0.005024
+1237,302.69,3.30371,1.41312,1.40832,0.0048
+1238,364.737,2.7417,1.42362,1.40723,0.016384
+1239,401.726,2.48926,1.4127,1.4072,0.005504
+1240,345.13,2.89746,1.41168,1.40698,0.004704
+1241,361.008,2.77002,1.41152,1.40704,0.00448
+1242,396.976,2.51904,1.41168,1.40659,0.005088
+1243,354.509,2.8208,1.41107,1.40595,0.00512
+1244,384.096,2.60352,1.41312,1.40698,0.006144
+1245,336.179,2.97461,1.41312,1.40819,0.004928
+1246,410.256,2.4375,1.41197,1.40707,0.004896
+1247,384.096,2.60352,1.41178,1.40698,0.0048
+1248,294.422,3.39648,1.4111,1.40662,0.00448
+1249,387.512,2.58057,1.41283,1.40714,0.005696
+1250,351.648,2.84375,1.41194,1.40582,0.006112
+1251,392.337,2.54883,1.41094,1.40566,0.00528
+1252,400.861,2.49463,1.41286,1.40698,0.005888
+1253,319.551,3.12939,1.41158,1.40688,0.004704
+1254,307.508,3.25195,1.41117,1.40682,0.004352
+1255,364.024,2.74707,1.41107,1.4065,0.004576
+1256,378.628,2.64111,1.41286,1.40698,0.005888
+1257,392.939,2.54492,1.41136,1.40634,0.005024
+1258,402.832,2.48242,1.41107,1.40646,0.004608
+1259,397.361,2.5166,1.41123,1.40666,0.004576
+1260,314.641,3.17822,1.41312,1.40813,0.004992
+1261,383.808,2.60547,1.41267,1.40698,0.005696
+1262,390.542,2.56055,1.41107,1.40672,0.004352
+1263,380.033,2.63135,1.41286,1.40698,0.005888
+1264,410.01,2.43896,1.41165,1.40707,0.004576
+1265,362.221,2.76074,1.41194,1.40691,0.005024
+1266,293.873,3.40283,1.41258,1.40698,0.0056
+1267,294.973,3.39014,1.41146,1.40678,0.004672
+1268,311.72,3.20801,1.41306,1.40698,0.00608
+1269,380.528,2.62793,1.41245,1.40698,0.005472
+1270,371.958,2.68848,1.41117,1.40675,0.004416
+1271,305.034,3.27832,1.41107,1.40672,0.004352
+1272,302.959,3.30078,1.41174,1.40669,0.005056
+1273,342.991,2.91553,1.41235,1.40698,0.005376
+1274,353.347,2.83008,1.41312,1.40816,0.00496
+1275,379.611,2.63428,1.41162,1.4073,0.00432
+1276,348.774,2.86719,1.41258,1.40717,0.005408
+1277,294.973,3.39014,1.41107,1.40493,0.006144
+1278,375.229,2.66504,1.41309,1.40698,0.006112
+1279,314.014,3.18457,1.41206,1.40592,0.006144
+1280,354.019,2.82471,1.41139,1.40704,0.004352
+1281,352.314,2.83838,1.41219,1.40698,0.005216
+1282,328.785,3.0415,1.41005,1.40566,0.004384
+1283,349.966,2.85742,1.41123,1.40656,0.004672
+1284,340.369,2.93799,1.41312,1.40838,0.004736
+1285,391.288,2.55566,1.41296,1.40698,0.005984
+1286,340.256,2.93896,1.4113,1.40515,0.006144
+1287,324.564,3.08105,1.41107,1.40666,0.004416
+1288,360.183,2.77637,1.41312,1.40698,0.006144
+1289,335.903,2.97705,1.41306,1.40698,0.00608
+1290,364.932,2.74023,1.4128,1.40749,0.005312
+1291,300.425,3.32861,1.41107,1.40627,0.0048
+1292,377.651,2.64795,1.4129,1.40698,0.00592
+1293,367.816,2.71875,1.41635,1.41107,0.00528
+1294,319.6,3.12891,1.41222,1.40698,0.005248
+1295,320.25,3.12256,1.41181,1.40669,0.00512
+1296,340.143,2.93994,1.41155,1.40694,0.004608
+1297,386.561,2.58691,1.41107,1.40675,0.00432
+1298,367.618,2.72021,1.41107,1.40602,0.005056
+1299,285.635,3.50098,1.41088,1.40499,0.005888
+1300,363.636,2.75,1.41312,1.40698,0.006144
+1301,338.01,2.9585,1.41309,1.40698,0.006112
+1302,387.585,2.58008,1.41184,1.4057,0.006144
+1303,300.867,3.32373,1.41133,1.40678,0.004544
+1304,336.842,2.96875,1.41149,1.40547,0.006016
+1305,354.387,2.82178,1.41174,1.4056,0.006144
+1306,384.962,2.59766,1.41158,1.40733,0.004256
+1307,364.089,2.74658,1.41168,1.40666,0.005024
+1308,363.572,2.75049,1.41107,1.40659,0.00448
+1309,420.275,2.37939,1.41261,1.40698,0.005632
+1310,406.914,2.45752,1.41059,1.40512,0.005472
+1311,341.504,2.92822,1.41107,1.40672,0.004352
+1312,421.573,2.37207,1.41229,1.40698,0.005312
+1313,357.417,2.79785,1.41107,1.40669,0.004384
+1314,406.349,2.46094,1.41187,1.40755,0.00432
+1315,438.262,2.28174,1.41104,1.40576,0.00528
+1316,351.89,2.8418,1.41683,1.41133,0.005504
+1317,384.529,2.60059,1.4121,1.40726,0.004832
+1318,429.62,2.32764,1.41254,1.4071,0.00544
+1319,356.794,2.80273,1.41146,1.40554,0.00592
+1320,427.557,2.33887,1.4127,1.40701,0.005696
+1321,415.5,2.40674,1.41312,1.40813,0.004992
+1322,373.927,2.67432,1.41494,1.40902,0.00592
+1323,374.543,2.66992,1.41178,1.40669,0.005088
+1324,339.241,2.94775,1.41155,1.40669,0.004864
+1325,403.945,2.47559,1.4119,1.40678,0.00512
+1326,431.976,2.31494,1.41245,1.40698,0.005472
+1327,384.745,2.59912,1.41107,1.40643,0.00464
+1328,416.429,2.40137,1.40982,1.40544,0.004384
+1329,367.025,2.72461,1.41107,1.40634,0.004736
+1330,399.532,2.50293,1.41254,1.40698,0.005568
+1331,415.669,2.40576,1.41146,1.40707,0.004384
+1332,410.668,2.43506,1.4113,1.40563,0.005664
+1333,406.349,2.46094,1.41206,1.40698,0.005088
+1334,407.887,2.45166,1.41152,1.40538,0.006144
+1335,291.199,3.43408,1.41107,1.4065,0.004576
+1336,403.467,2.47852,1.41152,1.4057,0.005824
+1337,421.399,2.37305,1.41264,1.40698,0.005664
+1338,392.262,2.54932,1.41114,1.40634,0.0048
+1339,367.618,2.72021,1.41114,1.40618,0.00496
+1340,361.454,2.7666,1.41312,1.40816,0.00496
+1341,295.271,3.38672,1.41126,1.40662,0.00464
+1342,353.286,2.83057,1.41187,1.40573,0.006144
+1343,392.563,2.54736,1.41229,1.40701,0.00528
+1344,426.489,2.34473,1.41245,1.40698,0.005472
+1345,326.635,3.06152,1.41107,1.40678,0.004288
+1346,402.042,2.4873,1.41251,1.40698,0.005536
+1347,368.213,2.71582,1.41206,1.40592,0.006144
+1348,327.209,3.05615,1.41107,1.40656,0.004512
+1349,420.88,2.37598,1.41178,1.40573,0.006048
+1350,405.946,2.46338,1.41114,1.40605,0.005088
+1351,381.378,2.62207,1.41107,1.40653,0.004544
+1352,422.094,2.36914,1.41312,1.40806,0.005056
+1353,315.319,3.17139,1.41274,1.40733,0.005408
+1354,365.388,2.73682,1.41299,1.40749,0.005504
+1355,395.825,2.52637,1.41139,1.40701,0.004384
+1356,338.01,2.9585,1.41312,1.40698,0.006144
+1357,377.512,2.64893,1.41286,1.40698,0.005888
+1358,261.191,3.82861,1.41309,1.40698,0.006112
+1359,332.414,3.0083,1.41309,1.40698,0.006112
+1360,313.918,3.18555,1.41312,1.40835,0.004768
+1361,363.572,2.75049,1.41312,1.40845,0.004672
+1362,330.056,3.02979,1.4295,1.4247,0.0048
+1363,342.819,2.91699,1.41197,1.40595,0.006016
+1364,401.726,2.48926,1.41149,1.40586,0.005632
+1365,362.928,2.75537,1.41216,1.40691,0.005248
+1366,415.416,2.40723,1.4119,1.40579,0.006112
+1367,427.647,2.33838,1.41107,1.40662,0.004448
+1368,370.545,2.69873,1.41136,1.40522,0.006144
+1369,374.474,2.67041,1.41174,1.40691,0.004832
+1370,388.91,2.57129,1.41133,1.4064,0.004928
+1371,373.178,2.67969,1.41197,1.40582,0.006144
+1372,397.13,2.51807,1.41133,1.40538,0.005952
+1373,335.738,2.97852,1.4128,1.40698,0.005824
+1374,347.944,2.87402,1.41139,1.40538,0.006016
+1375,348.181,2.87207,1.41107,1.40493,0.006144
+1376,366.894,2.72559,1.4129,1.40698,0.00592
+1377,381.094,2.62402,1.41107,1.40624,0.004832
+1378,329.578,3.03418,1.4129,1.40698,0.00592
+1379,373.314,2.67871,1.41222,1.40694,0.00528
+1380,303.183,3.29834,1.41107,1.40627,0.0048
+1381,362.35,2.75977,1.41139,1.40595,0.00544
+1382,371.351,2.69287,1.41117,1.40621,0.00496
+1383,377.164,2.65137,1.41107,1.4063,0.004768
+1384,401.805,2.48877,1.41123,1.40573,0.005504
+1385,361.263,2.76807,1.41107,1.40493,0.006144
+1386,308.48,3.2417,1.41274,1.40698,0.00576
+1387,372.77,2.68262,1.40989,1.4056,0.004288
+1388,337.008,2.96729,1.41139,1.40646,0.004928
+1389,359.361,2.78271,1.41142,1.40595,0.005472
+1390,283.892,3.52246,1.41245,1.40698,0.005472
+1391,308.155,3.24512,1.41261,1.40698,0.005632
+1392,354.141,2.82373,1.41117,1.40634,0.004832
+1393,361.582,2.76562,1.41155,1.40646,0.005088
+1394,386.853,2.58496,1.41114,1.40522,0.00592
+1395,370.478,2.69922,1.41107,1.40499,0.00608
+1396,397.053,2.51855,1.4112,1.40515,0.006048
+1397,362.67,2.75732,1.41219,1.40694,0.005248
+1398,359.109,2.78467,1.4127,1.40698,0.005728
+1399,377.581,2.64844,1.41107,1.40643,0.00464
+1400,340.765,2.93457,1.41162,1.40669,0.004928
+1401,375.573,2.6626,1.41107,1.40659,0.00448
+1402,389.132,2.56982,1.41107,1.40602,0.005056
+1403,363.121,2.75391,1.41264,1.40678,0.005856
+1404,373.723,2.67578,1.41312,1.40698,0.006144
+1405,333.768,2.99609,1.41187,1.40576,0.006112
+1406,395.978,2.52539,1.41136,1.40682,0.004544
+1407,376.817,2.65381,1.41171,1.4073,0.004416
+1408,312.815,3.19678,1.41229,1.40698,0.005312
+1409,381.023,2.62451,1.41312,1.40838,0.004736
+1410,312.1,3.2041,1.41149,1.40643,0.005056
+1411,387.072,2.5835,1.41107,1.40672,0.004352
+1412,394.377,2.53564,1.41107,1.4063,0.004768
+1413,362.735,2.75684,1.41171,1.40557,0.006144
+1414,354.019,2.82471,1.4112,1.40518,0.006016
+1415,316.44,3.16016,1.41181,1.40726,0.004544
+1416,366.237,2.73047,1.41107,1.40653,0.004544
+1417,349.786,2.85889,1.41178,1.40675,0.005024
+1418,367.354,2.72217,1.41123,1.40522,0.006016
+1419,323.539,3.09082,1.4112,1.40506,0.006144
+1420,314.062,3.18408,1.41312,1.40854,0.004576
+1421,383.305,2.60889,1.41139,1.40589,0.005504
+1422,291.033,3.43604,1.41309,1.40698,0.006112
+1423,375.642,2.66211,1.41107,1.40598,0.005088
+1424,366.894,2.72559,1.41283,1.40698,0.005856
+1425,288.207,3.46973,1.41216,1.40656,0.0056
+1426,377.164,2.65137,1.41136,1.40579,0.005568
+1427,346.004,2.89014,1.41158,1.40656,0.005024
+1428,384.457,2.60107,1.41226,1.40698,0.00528
+1429,359.424,2.78223,1.40938,1.40502,0.004352
+1430,338.512,2.9541,1.41091,1.40493,0.005984
+1431,365.845,2.7334,1.41107,1.4065,0.004576
+1432,356.546,2.80469,1.41107,1.40666,0.004416
+1433,386.197,2.58936,1.41155,1.40656,0.004992
+1434,357.168,2.7998,1.41184,1.40698,0.004864
+1435,370.612,2.69824,1.41206,1.4071,0.00496
+1436,378.838,2.63965,1.41142,1.40538,0.006048
+1437,327.366,3.05469,1.41133,1.40518,0.006144
+1438,381.307,2.62256,1.41117,1.40618,0.004992
+1439,374.954,2.66699,1.41149,1.40586,0.005632
+1440,337.119,2.96631,1.41245,1.40698,0.005472
+1441,340.765,2.93457,1.41264,1.40698,0.005664
+1442,362.67,2.75732,1.4129,1.40698,0.00592
+1443,384.096,2.60352,1.4119,1.40698,0.004928
+1444,388.984,2.5708,1.41181,1.4073,0.004512
+1445,382.589,2.61377,1.41107,1.40614,0.004928
+1446,382.232,2.61621,1.41168,1.40691,0.004768
+1447,299.503,3.33887,1.41139,1.40662,0.004768
+1448,388.91,2.57129,1.41296,1.40698,0.005984
+1449,355.432,2.81348,1.41203,1.40723,0.0048
+1450,381.662,2.62012,1.4127,1.40698,0.005728
+1451,382.589,2.61377,1.4113,1.40515,0.006144
+1452,311.199,3.21338,1.41178,1.40704,0.004736
+1453,369.475,2.70654,1.41117,1.40563,0.005536
+1454,336.731,2.96973,1.41133,1.40566,0.005664
+1455,361.199,2.76855,1.41104,1.40538,0.005664
+1456,380.033,2.63135,1.41261,1.40698,0.005632
+1457,343.913,2.90771,1.41238,1.40701,0.005376
+1458,342.704,2.91797,1.41277,1.40698,0.005792
+1459,377.581,2.64844,1.41216,1.40688,0.00528
+1460,382.589,2.61377,1.41002,1.4056,0.004416
+1461,402.674,2.4834,1.41117,1.40563,0.005536
+1462,352.921,2.8335,1.41184,1.40723,0.004608
+1463,425.868,2.34814,1.41107,1.40656,0.004512
+1464,270.649,3.69482,1.42355,1.40717,0.016384
+1465,379.822,2.63281,1.41165,1.40704,0.004608
+1466,384.384,2.60156,1.41162,1.4055,0.006112
+1467,314.159,3.18311,1.41312,1.40829,0.004832
+1468,388.91,2.57129,1.41117,1.40637,0.0048
+1469,370.076,2.70215,1.41251,1.40698,0.005536
+1470,341.675,2.92676,1.41149,1.40704,0.004448
+1471,394.453,2.53516,1.41229,1.40698,0.005312
+1472,340.539,2.93652,1.41312,1.4081,0.005024
+1473,345.013,2.89844,1.41312,1.40838,0.004736
+1474,344.955,2.89893,1.41472,1.40902,0.005696
+1475,359.551,2.78125,1.41213,1.40682,0.005312
+1476,364.932,2.74023,1.41238,1.40698,0.005408
+1477,363.378,2.75195,1.41238,1.40698,0.005408
+1478,354.632,2.81982,1.41107,1.40672,0.004352
+1479,356.298,2.80664,1.41213,1.40685,0.00528
+1480,294.042,3.40088,1.41107,1.40666,0.004416
+1481,371.89,2.68896,1.4113,1.4057,0.0056
+1482,375.504,2.66309,1.41146,1.40592,0.005536
+1483,397.361,2.5166,1.41107,1.40646,0.004608
+1484,371.351,2.69287,1.41155,1.40656,0.004992
+1485,360.5,2.77393,1.41107,1.40656,0.004512
+1486,323.385,3.09229,1.41072,1.40515,0.005568
+1487,344.433,2.90332,1.41146,1.40538,0.00608
+1488,363.701,2.74951,1.41312,1.40816,0.00496
+1489,294.676,3.39355,1.41171,1.40573,0.005984
+1490,386.342,2.58838,1.41178,1.40669,0.005088
+1491,270.363,3.69873,1.41178,1.40682,0.00496
+1492,315.028,3.17432,1.41104,1.40512,0.00592
+1493,355.864,2.81006,1.41149,1.4055,0.005984
+1494,336.621,2.9707,1.41085,1.40499,0.005856
+1495,378.768,2.64014,1.41114,1.40656,0.004576
+1496,275.751,3.62646,1.41238,1.40698,0.005408
+1497,355.926,2.80957,1.41107,1.40662,0.004448
+1498,297.631,3.35986,1.41219,1.40691,0.00528
+1499,371.958,2.68848,1.41117,1.4065,0.004672
+1500,379.329,2.63623,1.41114,1.40515,0.005984
+1501,376.401,2.65674,1.4121,1.40682,0.00528
+1502,340.426,2.9375,1.4113,1.40522,0.00608
+1503,326.115,3.06641,1.41107,1.40618,0.004896
+1504,349.966,2.85742,1.41069,1.40493,0.00576
+1505,348.655,2.86816,1.41338,1.40742,0.005952
+1506,367.486,2.72119,1.41248,1.40698,0.005504
+1507,286.474,3.49072,1.41312,1.40816,0.00496
+1508,397.438,2.51611,1.41098,1.40493,0.006048
+1509,414.743,2.41113,1.41107,1.40608,0.004992
+1510,388.984,2.5708,1.41107,1.40634,0.004736
+1511,404.024,2.4751,1.41107,1.40493,0.006144
+1512,415.669,2.40576,1.41107,1.40595,0.00512
+1513,299.547,3.33838,1.41114,1.40531,0.005824
+1514,388.099,2.57666,1.41107,1.40653,0.004544
+1515,364.672,2.74219,1.41126,1.40627,0.004992
+1516,366.5,2.72852,1.41114,1.40499,0.006144
+1517,385.542,2.59375,1.41229,1.40698,0.005312
+1518,333.931,2.99463,1.41107,1.40675,0.00432
+1519,300.602,3.32666,1.41078,1.40515,0.005632
+1520,361.901,2.76318,1.41206,1.40592,0.006144
+1521,364.283,2.74512,1.41142,1.40653,0.004896
+1522,392.789,2.5459,1.41216,1.40688,0.00528
+1523,368.611,2.71289,1.41107,1.40662,0.004448
+1524,356.67,2.80371,1.41267,1.40698,0.005696
+1525,386.051,2.59033,1.41261,1.40698,0.005632
+1526,372.296,2.68604,1.4111,1.40515,0.005952
+1527,394.149,2.53711,1.41274,1.40698,0.00576
+1528,331.177,3.01953,1.41174,1.40701,0.004736
+1529,391.737,2.55273,1.4119,1.40592,0.005984
+1530,359.677,2.78027,1.41306,1.40698,0.00608
+1531,387.146,2.58301,1.41107,1.4064,0.004672
+1532,401.254,2.49219,1.41171,1.40714,0.004576
+1533,374.269,2.67188,1.4112,1.40509,0.006112
+1534,362.992,2.75488,1.41107,1.40643,0.00464
+1535,397.284,2.51709,1.4121,1.40682,0.00528
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..5d9ac3e
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_5000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,561.263,1.81991,0.352334,0.00581009,0.241535,0.00521437,0.00489734,0.00530878,0.0842227,0.00534547
+max_1024,743.646,3.56738,0.750208,0.022528,0.628768,0.015584,0.01568,0.020512,0.131072,0.014752
+min_1024,280.318,1.34473,0.292864,0.004192,0.20672,0.004064,0.004064,0.00416,0.056064,0.004128
+512,592.421,1.68799,0.337664,0.006112,0.249056,0.004864,0.00416,0.005856,0.06176,0.005856
+513,404.903,2.46973,0.315392,0.006144,0.228832,0.00464,0.004096,0.006144,0.061152,0.004384
+514,558.876,1.78931,0.305536,0.0048,0.220192,0.004704,0.00448,0.005568,0.059968,0.005824
+515,614.784,1.62659,0.303104,0.006144,0.216448,0.004736,0.004096,0.006144,0.060896,0.00464
+516,550.982,1.81494,0.341952,0.006112,0.251936,0.006144,0.005472,0.004768,0.06144,0.00608
+517,381.894,2.61853,0.324192,0.004768,0.235296,0.00432,0.005408,0.004832,0.06352,0.006048
+518,617.844,1.61853,0.303008,0.004992,0.212992,0.006144,0.004096,0.005984,0.063488,0.005312
+519,647.589,1.54419,0.325632,0.006112,0.235584,0.0056,0.004608,0.005408,0.063584,0.004736
+520,500.55,1.9978,0.325632,0.005728,0.239296,0.004832,0.005568,0.004672,0.059424,0.006112
+521,441.047,2.26733,0.311296,0.005728,0.227008,0.004832,0.004096,0.006048,0.05744,0.006144
+522,609.524,1.64062,0.309568,0.00512,0.223008,0.005536,0.004928,0.005248,0.060288,0.00544
+523,557.696,1.79309,0.313248,0.005728,0.227936,0.004096,0.005408,0.004832,0.059392,0.005856
+524,482.99,2.07043,0.306752,0.005824,0.219712,0.006112,0.005152,0.005088,0.059392,0.005472
+525,554.45,1.80359,0.306912,0.005696,0.219456,0.004384,0.005312,0.004928,0.06144,0.005696
+526,564.343,1.77197,0.309344,0.005728,0.219136,0.00464,0.005856,0.004416,0.063456,0.006112
+527,554.075,1.80481,0.317536,0.005728,0.22784,0.00544,0.0048,0.005376,0.062208,0.006144
+528,362.51,2.75854,0.340064,0.006112,0.249632,0.004448,0.00528,0.00496,0.064544,0.005088
+529,620.747,1.61096,0.315392,0.006144,0.229376,0.004096,0.005632,0.004608,0.061088,0.004448
+530,610.887,1.63696,0.307168,0.005728,0.217792,0.006144,0.006144,0.005504,0.060032,0.005824
+531,499.482,2.00208,0.363232,0.004832,0.275808,0.004768,0.004096,0.006144,0.06288,0.004704
+532,598.131,1.67188,0.305088,0.005728,0.219264,0.0048,0.005568,0.004704,0.05936,0.005664
+533,615.107,1.62573,0.300416,0.006144,0.21504,0.005216,0.004832,0.004288,0.059392,0.005504
+534,641.303,1.55933,0.299104,0.005728,0.213504,0.006144,0.004096,0.006144,0.059136,0.004352
+535,509.263,1.96362,0.376864,0.006144,0.290528,0.004384,0.005344,0.004928,0.06112,0.004416
+536,526.444,1.89954,0.342496,0.004768,0.25504,0.005056,0.005344,0.004896,0.06144,0.005952
+537,575.685,1.73706,0.304384,0.006144,0.217024,0.00416,0.005536,0.004704,0.061152,0.005664
+538,610.114,1.63904,0.313344,0.005728,0.223008,0.004768,0.0056,0.00464,0.063488,0.006112
+539,455.719,2.19434,0.31248,0.006144,0.221184,0.005248,0.004832,0.004448,0.06528,0.005344
+540,631.709,1.58301,0.304576,0.005728,0.213408,0.005984,0.004256,0.006112,0.06352,0.005568
+541,647.948,1.54333,0.3048,0.005728,0.211616,0.005504,0.004736,0.005888,0.065792,0.005536
+542,655.832,1.52478,0.306656,0.005888,0.2112,0.006144,0.005216,0.005024,0.067584,0.0056
+543,516.552,1.93591,0.30544,0.005088,0.217088,0.00512,0.004832,0.004384,0.063488,0.00544
+544,620.512,1.61157,0.303104,0.006144,0.21424,0.004896,0.005504,0.004736,0.063168,0.004416
+545,675.963,1.47937,0.3032,0.005728,0.213504,0.005536,0.004704,0.00608,0.063104,0.004544
+546,534.761,1.87,0.331616,0.005728,0.240576,0.006048,0.004192,0.00592,0.063712,0.00544
+547,442.5,2.25989,0.321792,0.005728,0.233376,0.004864,0.004096,0.00608,0.06288,0.004768
+548,612.715,1.63208,0.300896,0.005728,0.211616,0.006144,0.004096,0.006048,0.061536,0.005728
+549,710.248,1.40796,0.296288,0.006144,0.210944,0.005632,0.004608,0.005664,0.057824,0.005472
+550,717.464,1.3938,0.292864,0.00576,0.20912,0.005536,0.004864,0.005376,0.056064,0.006144
+551,574.353,1.74109,0.324544,0.005056,0.24112,0.00464,0.005312,0.004928,0.058688,0.0048
+552,568.928,1.75769,0.32432,0.004832,0.237568,0.006144,0.005152,0.00512,0.0608,0.004704
+553,514.476,1.94373,0.29968,0.004768,0.214784,0.004352,0.005344,0.004896,0.061024,0.004512
+554,544.102,1.83789,0.302144,0.006144,0.21504,0.005312,0.004864,0.005376,0.060064,0.005344
+555,443.53,2.25464,0.305728,0.006336,0.219456,0.00416,0.0056,0.00464,0.06064,0.004896
+556,680.908,1.46863,0.301504,0.0048,0.214944,0.005536,0.0048,0.005344,0.060192,0.005888
+557,684.035,1.46191,0.29584,0.006048,0.209184,0.004672,0.004096,0.006112,0.06128,0.004448
+558,673.407,1.48499,0.297344,0.004832,0.210816,0.005696,0.004544,0.005824,0.059712,0.00592
+559,601.778,1.66174,0.318944,0.00576,0.234144,0.004096,0.005664,0.004576,0.059392,0.005312
+560,688.461,1.45251,0.29408,0.004256,0.210976,0.006112,0.004096,0.005952,0.057408,0.00528
+561,718.281,1.39221,0.292864,0.006144,0.208288,0.004704,0.004096,0.006112,0.058432,0.005088
+562,743.646,1.34473,0.29696,0.006144,0.210272,0.004768,0.0056,0.00464,0.06064,0.004896
+563,615.755,1.62402,0.3176,0.005696,0.230336,0.00576,0.00448,0.005664,0.059872,0.005792
+564,384.565,2.60034,0.31168,0.00576,0.228128,0.005536,0.004704,0.005376,0.056064,0.006112
+565,663.105,1.50806,0.310656,0.005696,0.226016,0.005248,0.004832,0.004256,0.058944,0.005664
+566,638.902,1.56519,0.30672,0.006144,0.220768,0.005536,0.004832,0.004384,0.059392,0.005664
+567,577.105,1.73279,0.314688,0.005856,0.229408,0.004352,0.005376,0.004864,0.059392,0.00544
+568,469.725,2.12891,0.301056,0.00592,0.217312,0.005856,0.004384,0.005728,0.05728,0.004576
+569,635.433,1.57373,0.296288,0.006176,0.212928,0.004128,0.005568,0.004672,0.057344,0.005472
+570,652.697,1.5321,0.297088,0.0048,0.212992,0.006144,0.004096,0.006144,0.057344,0.005568
+571,592.036,1.68909,0.311296,0.006144,0.227328,0.005408,0.004832,0.005248,0.05776,0.004576
+572,458.807,2.17957,0.335872,0.005856,0.253248,0.004896,0.004288,0.005792,0.057056,0.004736
+573,470.805,2.12402,0.303424,0.005952,0.21792,0.005344,0.004832,0.005344,0.058208,0.005824
+574,548.437,1.82336,0.341728,0.006144,0.255936,0.005536,0.004768,0.005344,0.058144,0.005856
+575,438.403,2.28101,0.370272,0.005728,0.279136,0.005536,0.004704,0.005344,0.064288,0.005536
+576,572.587,1.74646,0.319424,0.0048,0.229376,0.005984,0.004256,0.005728,0.063904,0.005376
+577,571.907,1.74854,0.3072,0.005792,0.217408,0.00416,0.005632,0.004576,0.064768,0.004864
+578,588.548,1.6991,0.31744,0.006144,0.226464,0.00496,0.00544,0.0048,0.065216,0.004416
+579,440.667,2.26929,0.317888,0.005728,0.225984,0.004256,0.005472,0.004768,0.06688,0.0048
+580,615.338,1.62512,0.303488,0.005728,0.211584,0.005984,0.004256,0.005728,0.06576,0.004448
+581,532.397,1.8783,0.33184,0.005728,0.241888,0.004352,0.005312,0.004928,0.064864,0.004768
+582,483.789,2.06702,0.36864,0.006144,0.27344,0.005088,0.00528,0.00496,0.067584,0.006144
+583,443.458,2.255,0.315456,0.005728,0.22368,0.004544,0.005184,0.005056,0.065536,0.005728
+584,621.831,1.60815,0.310592,0.00576,0.219552,0.006048,0.005216,0.00512,0.063488,0.005408
+585,571.389,1.75012,0.320032,0.004864,0.2328,0.004768,0.004096,0.006144,0.06144,0.00592
+586,450.828,2.21814,0.31744,0.006144,0.226752,0.004672,0.005664,0.004576,0.065344,0.004288
+587,611.252,1.63599,0.313184,0.006144,0.220224,0.004864,0.004288,0.005792,0.065888,0.005984
+588,588.125,1.70032,0.317632,0.00576,0.219136,0.004896,0.004224,0.005856,0.071968,0.005792
+589,503.906,1.9845,0.359904,0.00576,0.260896,0.005568,0.004672,0.005344,0.072192,0.005472
+590,357.339,2.79846,0.397728,0.00592,0.291456,0.006144,0.01568,0.0048,0.068928,0.0048
+591,615.2,1.62549,0.319264,0.006144,0.219136,0.005792,0.004448,0.005632,0.072192,0.00592
+592,489.25,2.04395,0.362464,0.004992,0.261664,0.004576,0.005728,0.004512,0.075072,0.00592
+593,441.284,2.26611,0.370784,0.004896,0.272416,0.005536,0.004672,0.005376,0.072448,0.00544
+594,578.776,1.72778,0.313344,0.006144,0.217088,0.006144,0.004128,0.006048,0.067648,0.006144
+595,599.444,1.66821,0.312704,0.006144,0.222592,0.004736,0.004096,0.006144,0.063488,0.005504
+596,532.744,1.87708,0.341248,0.005728,0.24832,0.006144,0.004096,0.006144,0.065536,0.00528
+597,419.758,2.38232,0.381408,0.005728,0.291712,0.005472,0.004768,0.005376,0.063808,0.004544
+598,576.901,1.7334,0.319168,0.004768,0.228608,0.004864,0.005536,0.004704,0.065376,0.005312
+599,533.333,1.875,0.316288,0.004992,0.223232,0.005664,0.004576,0.005504,0.067552,0.004768
+600,576.739,1.73389,0.316736,0.005984,0.222784,0.004704,0.005664,0.004576,0.067584,0.00544
+601,427.915,2.33691,0.315392,0.005824,0.223392,0.004256,0.005472,0.004768,0.065536,0.006144
+602,598.655,1.67041,0.311296,0.006144,0.218496,0.004736,0.005632,0.00464,0.065504,0.006144
+603,573.228,1.74451,0.31664,0.00576,0.222816,0.00496,0.005536,0.004704,0.06752,0.005344
+604,452.922,2.20789,0.315168,0.005792,0.221728,0.005504,0.004864,0.00432,0.067584,0.005376
+605,488.288,2.04797,0.339936,0.005696,0.246432,0.005344,0.004832,0.005216,0.066528,0.005888
+606,669.828,1.49292,0.309248,0.005952,0.214784,0.004544,0.005856,0.004416,0.068832,0.004864
+607,520.193,1.92236,0.336096,0.006144,0.241664,0.005792,0.004448,0.005984,0.067552,0.004512
+608,413.988,2.41553,0.32368,0.005728,0.228,0.005728,0.00448,0.005728,0.068,0.006016
+609,571.668,1.74927,0.31152,0.005728,0.21968,0.004192,0.005536,0.004704,0.066912,0.004768
+610,518.908,1.92712,0.319264,0.006144,0.22432,0.005056,0.005312,0.00496,0.067552,0.00592
+611,414.072,2.41504,0.333856,0.00608,0.2416,0.004224,0.005536,0.004704,0.066688,0.005024
+612,594.011,1.68347,0.302752,0.00608,0.211008,0.00608,0.00416,0.00592,0.063712,0.005792
+613,368.926,2.71057,0.375008,0.005728,0.28432,0.005024,0.00416,0.005984,0.063648,0.006144
+614,468.275,2.1355,0.32928,0.006144,0.23552,0.006144,0.005184,0.005056,0.065536,0.005696
+615,523.049,1.91187,0.309344,0.004896,0.216928,0.004256,0.005504,0.005952,0.066368,0.00544
+616,569.324,1.75647,0.319392,0.005984,0.22544,0.005952,0.004288,0.005792,0.065888,0.006048
+617,460.302,2.17249,0.325632,0.006144,0.232736,0.004832,0.004096,0.006048,0.06672,0.005056
+618,417.938,2.3927,0.325696,0.005824,0.231744,0.00608,0.00416,0.005824,0.067648,0.004416
+619,563.566,1.77441,0.316928,0.005792,0.221536,0.005792,0.004448,0.005664,0.068064,0.005632
+620,559.028,1.78882,0.31952,0.006144,0.229376,0.005184,0.004832,0.00432,0.063488,0.006176
+621,424.324,2.35669,0.366784,0.00592,0.280192,0.004864,0.004128,0.006144,0.060928,0.004608
+622,556.219,1.79785,0.311936,0.004736,0.224288,0.005088,0.00528,0.00496,0.062496,0.005088
+623,546.571,1.82959,0.314976,0.005984,0.22944,0.004192,0.005504,0.004736,0.059392,0.005728
+624,578.204,1.72949,0.32864,0.00512,0.233408,0.005728,0.004512,0.005504,0.069312,0.005056
+625,439.344,2.27612,0.320256,0.004864,0.227328,0.005248,0.004832,0.004416,0.068864,0.004704
+626,550.094,1.81787,0.31328,0.004864,0.219136,0.005536,0.004704,0.005824,0.067904,0.005312
+627,575.847,1.73657,0.305728,0.005728,0.21808,0.005248,0.004832,0.004416,0.06128,0.006144
+628,494.746,2.02124,0.351072,0.005056,0.258048,0.005792,0.004448,0.0056,0.06608,0.006048
+629,479.008,2.08765,0.348192,0.00512,0.256032,0.00544,0.004768,0.005408,0.065888,0.005536
+630,567.549,1.76196,0.320864,0.006112,0.225344,0.006112,0.004096,0.006144,0.067584,0.005472
+631,542.804,1.84229,0.34608,0.006144,0.2512,0.0048,0.004096,0.006144,0.067584,0.006112
+632,425.249,2.35156,0.322304,0.00624,0.225952,0.006144,0.004096,0.006144,0.068608,0.00512
+633,577.96,1.73022,0.317664,0.00512,0.229376,0.004096,0.005824,0.004416,0.063488,0.005344
+634,513.992,1.94556,0.326208,0.005728,0.237792,0.004864,0.004096,0.00592,0.063328,0.00448
+635,464.189,2.1543,0.340864,0.005088,0.24576,0.00512,0.004832,0.004416,0.0696,0.006048
+636,517.237,1.93335,0.501472,0.004768,0.408704,0.004992,0.005376,0.004896,0.067424,0.005312
+637,399.805,2.50122,0.372416,0.005824,0.2768,0.005696,0.004544,0.005568,0.06816,0.005824
+638,564.187,1.77246,0.330944,0.006144,0.23552,0.006144,0.005152,0.005088,0.067584,0.005312
+639,446.723,2.23853,0.325568,0.004864,0.237504,0.005792,0.004448,0.005728,0.061856,0.005376
+640,651.918,1.53394,0.30912,0.00576,0.217472,0.00592,0.00432,0.005696,0.063936,0.006016
+641,602.974,1.65845,0.31344,0.00576,0.21744,0.004544,0.005152,0.005088,0.069632,0.005824
+642,563.799,1.77368,0.307808,0.005728,0.218048,0.005536,0.004768,0.00528,0.062304,0.006144
+643,573.83,1.74268,0.322592,0.005728,0.229024,0.004864,0.005152,0.005088,0.067456,0.00528
+644,561.943,1.77954,0.313568,0.00576,0.221472,0.005536,0.004832,0.004288,0.06704,0.00464
+645,453.85,2.20337,0.306528,0.006144,0.212992,0.004096,0.00576,0.00448,0.067584,0.005472
+646,593.968,1.68359,0.371168,0.005728,0.277376,0.005632,0.004608,0.005472,0.067264,0.005088
+647,489.25,2.04395,0.32384,0.005056,0.230624,0.004864,0.004128,0.005824,0.067904,0.00544
+648,558.19,1.7915,0.33472,0.004992,0.241664,0.006144,0.004096,0.006112,0.066688,0.005024
+649,609.615,1.64038,0.31744,0.006144,0.223232,0.004096,0.005632,0.004608,0.067584,0.006144
+650,450.357,2.22046,0.333824,0.006144,0.233184,0.005536,0.0048,0.004288,0.075136,0.004736
+651,486.866,2.05396,0.32704,0.006144,0.223264,0.005408,0.0048,0.005376,0.076544,0.005504
+652,627.836,1.59277,0.321248,0.005984,0.221312,0.005536,0.004736,0.005472,0.072352,0.005856
+653,513.734,1.94653,0.362016,0.005888,0.263904,0.00464,0.004096,0.006144,0.07168,0.005664
+654,450.952,2.21753,0.364544,0.006144,0.264192,0.005536,0.004704,0.005536,0.073408,0.005024
+655,585.477,1.70801,0.319744,0.00592,0.219616,0.005856,0.004384,0.005696,0.073504,0.004768
+656,530.021,1.88672,0.347936,0.005728,0.250336,0.004608,0.005728,0.004512,0.07168,0.005344
+657,497.027,2.01196,0.387072,0.005952,0.288992,0.005696,0.004512,0.005536,0.072032,0.004352
+658,573.108,1.74487,0.314752,0.005952,0.221088,0.005568,0.004832,0.004416,0.067392,0.005504
+659,571.907,1.74854,0.342112,0.007264,0.244768,0.004064,0.005568,0.004672,0.071136,0.00464
+660,604.933,1.65308,0.327936,0.004832,0.231424,0.006144,0.005152,0.005088,0.069632,0.005664
+661,521.186,1.9187,0.378048,0.006144,0.280576,0.004096,0.00576,0.00448,0.07168,0.005312
+662,478.337,2.09058,0.329344,0.004768,0.23136,0.006144,0.00576,0.00448,0.07152,0.005312
+663,579.104,1.72681,0.321536,0.006144,0.224512,0.004864,0.004096,0.006112,0.07104,0.004768
+664,602.707,1.65918,0.327488,0.005728,0.230944,0.005056,0.005312,0.004928,0.069632,0.005888
+665,475.009,2.10522,0.3216,0.005728,0.225728,0.004096,0.005632,0.004608,0.071328,0.00448
+666,556.673,1.79639,0.313152,0.00576,0.215552,0.005952,0.004288,0.006016,0.06976,0.005824
+667,663.857,1.50635,0.3136,0.005728,0.215904,0.005888,0.004352,0.005696,0.07008,0.005952
+668,628.607,1.59082,0.317024,0.006144,0.219136,0.005312,0.004864,0.00528,0.07056,0.005728
+669,485.999,2.05762,0.323456,0.005696,0.22496,0.004864,0.004096,0.005952,0.071904,0.005984
+670,582.729,1.71606,0.323424,0.006144,0.225248,0.005536,0.004736,0.005472,0.070304,0.005984
+671,555.315,1.80078,0.313344,0.006144,0.22064,0.00464,0.004128,0.006112,0.066816,0.004864
+672,546.425,1.83008,0.322176,0.00512,0.227328,0.006016,0.004224,0.005824,0.067904,0.00576
+673,578.123,1.72974,0.35744,0.00576,0.264096,0.004576,0.005152,0.005088,0.067456,0.005312
+674,587.24,1.70288,0.311264,0.006144,0.21504,0.005664,0.004576,0.005664,0.068064,0.006112
+675,639.101,1.5647,0.312192,0.004992,0.219136,0.004096,0.005824,0.004416,0.069184,0.004544
+676,662.676,1.50903,0.304672,0.005952,0.21328,0.005536,0.0048,0.005248,0.064384,0.005472
+677,542.014,1.84497,0.315904,0.00576,0.224096,0.004128,0.006144,0.005216,0.065728,0.004832
+678,621.265,1.60962,0.309792,0.00576,0.218016,0.005728,0.004512,0.005536,0.065152,0.005088
+679,579.513,1.72559,0.316512,0.006144,0.2248,0.004576,0.005152,0.005088,0.06544,0.005312
+680,527.088,1.89722,0.316928,0.006144,0.22528,0.005792,0.004448,0.005696,0.063936,0.005632
+681,454.303,2.20117,0.310176,0.005024,0.219136,0.00576,0.00448,0.0056,0.065568,0.004608
+682,667.427,1.49829,0.305376,0.004832,0.215008,0.005536,0.004736,0.005312,0.06432,0.005632
+683,669.281,1.49414,0.311328,0.006144,0.218976,0.004256,0.005472,0.004768,0.067104,0.004608
+684,598.918,1.66968,0.314976,0.006144,0.22528,0.006144,0.004096,0.006144,0.06144,0.005728
+685,470.48,2.12549,0.313344,0.006144,0.222976,0.004352,0.005376,0.004864,0.0648,0.004832
+686,588.083,1.70044,0.312096,0.004832,0.222368,0.00496,0.005408,0.004832,0.06528,0.004416
+687,567.077,1.76343,0.316928,0.00576,0.225152,0.004864,0.004096,0.00608,0.065024,0.005952
+688,430.795,2.32129,0.354304,0.006144,0.264192,0.005568,0.004672,0.005408,0.063584,0.004736
+689,367.157,2.72363,0.33792,0.006144,0.247072,0.004832,0.00544,0.0048,0.06528,0.004352
+690,564.421,1.77173,0.327648,0.00496,0.237568,0.006144,0.004096,0.005984,0.063584,0.005312
+691,587.24,1.70288,0.313632,0.004736,0.223232,0.0056,0.00464,0.005536,0.064096,0.005792
+692,382.054,2.61743,0.340512,0.005056,0.251584,0.005568,0.004832,0.004416,0.063328,0.005728
+693,534.796,1.86987,0.308576,0.006144,0.220704,0.004576,0.005312,0.004928,0.06144,0.005472
+694,575.928,1.73633,0.332064,0.006048,0.24192,0.005568,0.004832,0.005184,0.062432,0.00608
+695,385.542,2.59375,0.325632,0.006144,0.23552,0.005856,0.004384,0.005472,0.0632,0.005056
+696,470.102,2.1272,0.33392,0.00624,0.241664,0.006144,0.004096,0.006112,0.064576,0.005088
+697,539.586,1.85327,0.314784,0.005696,0.223808,0.004384,0.005344,0.004896,0.06512,0.005536
+698,418.557,2.38916,0.34816,0.005728,0.256672,0.005984,0.004256,0.00576,0.063904,0.005856
+699,569.363,1.75635,0.313344,0.00592,0.224928,0.004672,0.004096,0.006144,0.063072,0.004512
+700,576.901,1.7334,0.309216,0.004992,0.220192,0.005088,0.00528,0.00496,0.063392,0.005312
+701,557.431,1.79395,0.339968,0.006144,0.249696,0.004256,0.00544,0.0048,0.063488,0.006144
+702,418.557,2.38916,0.342016,0.006144,0.249856,0.006144,0.005216,0.005024,0.064512,0.00512
+703,592.85,1.68677,0.305984,0.004928,0.2184,0.004832,0.004096,0.005984,0.063136,0.004608
+704,687.479,1.45459,0.301056,0.00608,0.211008,0.005824,0.004416,0.0056,0.06304,0.005088
+705,510.787,1.95776,0.312864,0.00608,0.222464,0.004864,0.00416,0.005984,0.063648,0.005664
+706,424.236,2.35718,0.325664,0.006144,0.23536,0.005536,0.004832,0.004224,0.064864,0.004704
+707,664.935,1.50391,0.301856,0.004896,0.212096,0.004864,0.004224,0.005792,0.065088,0.004896
+708,541.656,1.84619,0.306112,0.005056,0.21632,0.004896,0.005472,0.004736,0.065344,0.004288
+709,536.899,1.86255,0.356928,0.005824,0.264352,0.004832,0.004096,0.006016,0.065664,0.006144
+710,503.689,1.98535,0.501376,0.005664,0.409792,0.004864,0.005536,0.004704,0.065536,0.00528
+711,494.089,2.02393,0.315264,0.005728,0.224032,0.004096,0.005664,0.004608,0.065504,0.005632
+712,524.456,1.90674,0.314912,0.006144,0.223136,0.005536,0.0048,0.005408,0.064224,0.005664
+713,438.967,2.27808,0.30752,0.004992,0.21712,0.005792,0.004416,0.005632,0.064,0.005568
+714,631.514,1.5835,0.312192,0.004992,0.223232,0.00576,0.00448,0.005504,0.063648,0.004576
+715,529.747,1.8877,0.316192,0.004896,0.225056,0.00432,0.005408,0.004864,0.066944,0.004704
+716,552.245,1.81079,0.348704,0.004992,0.24576,0.005888,0.004352,0.006144,0.066816,0.014752
+717,352.283,2.83862,0.331296,0.005536,0.238592,0.005472,0.004768,0.00528,0.066336,0.005312
+718,447.21,2.23608,0.307008,0.006144,0.214112,0.005024,0.005344,0.004896,0.065536,0.005952
+719,539.942,1.85205,0.329728,0.005728,0.237024,0.004928,0.004256,0.005856,0.065824,0.006112
+720,412.238,2.42578,0.346912,0.004896,0.254048,0.006048,0.005184,0.005056,0.065536,0.006144
+721,626.683,1.5957,0.313024,0.004832,0.22112,0.005248,0.004832,0.004256,0.067424,0.005312
+722,608.076,1.64453,0.316288,0.004864,0.223232,0.006144,0.004096,0.006016,0.067488,0.004448
+723,423.973,2.35864,0.321248,0.006144,0.227328,0.005696,0.004544,0.005504,0.066176,0.005856
+724,574.232,1.74146,0.32128,0.005728,0.222112,0.00576,0.004448,0.0056,0.072,0.005632
+725,600.322,1.66577,0.315552,0.005728,0.2176,0.004416,0.00544,0.0048,0.071712,0.005856
+726,525.735,1.9021,0.349344,0.006112,0.249888,0.006144,0.004096,0.006144,0.071616,0.005344
+727,402.2,2.48633,0.335488,0.006144,0.236704,0.004896,0.00416,0.005856,0.071968,0.00576
+728,630.736,1.58545,0.311296,0.006176,0.21296,0.0056,0.00464,0.00544,0.071552,0.004928
+729,545.261,1.83398,0.323136,0.006368,0.223424,0.005376,0.004832,0.005216,0.07264,0.00528
+730,485.941,2.05786,0.362048,0.005952,0.266432,0.006144,0.004096,0.006144,0.067584,0.005696
+731,610.069,1.63916,0.305024,0.006144,0.210944,0.004096,0.005824,0.004416,0.067584,0.006016
+732,639.5,1.56372,0.311968,0.004768,0.214432,0.004704,0.005664,0.004576,0.07344,0.004384
+733,620.888,1.6106,0.308928,0.005728,0.215136,0.0048,0.004096,0.006112,0.067616,0.00544
+734,473.198,2.11328,0.334912,0.005984,0.239776,0.006144,0.004096,0.006048,0.067552,0.005312
+735,582.397,1.71704,0.317024,0.006144,0.221184,0.004096,0.005664,0.004576,0.069632,0.005728
+736,604.041,1.65552,0.309472,0.004768,0.212192,0.004896,0.005472,0.004768,0.07168,0.005696
+737,638.205,1.56689,0.305408,0.005728,0.20784,0.005632,0.004608,0.005536,0.07024,0.005824
+738,503.565,1.98584,0.3952,0.006144,0.29696,0.006144,0.004096,0.005984,0.069792,0.00608
+739,502.392,1.99048,0.321536,0.006144,0.222784,0.004544,0.005152,0.005088,0.072928,0.004896
+740,587.072,1.70337,0.311296,0.006144,0.212992,0.006112,0.004128,0.005984,0.071232,0.004704
+741,571.03,1.75122,0.331776,0.006144,0.227328,0.00528,0.004832,0.005952,0.077216,0.005024
+742,408.009,2.45093,0.33792,0.005888,0.235392,0.005536,0.004864,0.00432,0.077216,0.004704
+743,443.722,2.25366,0.340736,0.004864,0.237568,0.00544,0.0048,0.005376,0.07824,0.004448
+744,589.183,1.69727,0.33536,0.005952,0.231328,0.005568,0.0048,0.004256,0.077824,0.005632
+745,464.136,2.15454,0.382976,0.006144,0.276512,0.005152,0.004832,0.004416,0.080832,0.005088
+746,574.635,1.74023,0.32192,0.005856,0.218944,0.00496,0.005408,0.004832,0.075776,0.006144
+747,579.677,1.7251,0.334368,0.005824,0.226144,0.005376,0.004864,0.005632,0.081824,0.004704
+748,571.429,1.75,0.331712,0.005824,0.223648,0.006144,0.004096,0.006048,0.079968,0.005984
+749,478.896,2.08813,0.332128,0.00576,0.223488,0.004608,0.00512,0.00512,0.08192,0.006112
+750,590.798,1.69263,0.336256,0.005728,0.228128,0.0056,0.00464,0.005728,0.081472,0.00496
+751,532.848,1.87671,0.3664,0.006048,0.264288,0.004096,0.005824,0.005504,0.074688,0.005952
+752,518.153,1.92993,0.335872,0.006144,0.229216,0.005536,0.004832,0.005216,0.078784,0.006144
+753,446.285,2.24072,0.330144,0.005728,0.224064,0.005408,0.004832,0.005312,0.080224,0.004576
+754,580.828,1.72168,0.325536,0.00576,0.215712,0.005856,0.004384,0.00576,0.082304,0.00576
+755,621.642,1.60864,0.324544,0.005056,0.2184,0.004832,0.004096,0.006112,0.081632,0.004416
+756,576.171,1.7356,0.335872,0.006144,0.227328,0.00592,0.00432,0.00576,0.081536,0.004864
+757,460.173,2.1731,0.343616,0.00576,0.236,0.004256,0.0056,0.00464,0.08192,0.00544
+758,658.309,1.51904,0.321216,0.00592,0.213568,0.006144,0.004096,0.006144,0.079872,0.005472
+759,506.242,1.97534,0.355328,0.00512,0.243488,0.00432,0.005408,0.004832,0.087584,0.004576
+760,466.196,2.14502,0.4224,0.005728,0.312224,0.005664,0.004576,0.005952,0.083648,0.004608
+761,551.501,1.81323,0.322816,0.005792,0.219136,0.004448,0.005248,0.005024,0.077792,0.005376
+762,626.779,1.59546,0.321536,0.006144,0.220608,0.004672,0.005728,0.004512,0.07552,0.004352
+763,640.3,1.56177,0.316928,0.006016,0.217216,0.005664,0.004576,0.006144,0.07168,0.005632
+764,460.794,2.17017,0.334624,0.004896,0.234688,0.004928,0.005472,0.004768,0.075168,0.004704
+765,606.276,1.64941,0.312896,0.005792,0.213696,0.00576,0.00448,0.005664,0.07216,0.005344
+766,667.101,1.49902,0.313344,0.006144,0.210944,0.00592,0.00432,0.005728,0.075456,0.004832
+767,624.2,1.60205,0.352256,0.006144,0.251904,0.004096,0.00576,0.00448,0.073728,0.006144
+768,516.911,1.93457,0.374784,0.006144,0.272384,0.006144,0.004096,0.006144,0.075392,0.00448
+769,597.52,1.67358,0.319712,0.005696,0.220992,0.004864,0.004192,0.00592,0.073344,0.004704
+770,634.252,1.57666,0.317312,0.006144,0.21488,0.005536,0.004832,0.005216,0.074688,0.006016
+771,623.82,1.60303,0.329952,0.004896,0.23264,0.004672,0.004352,0.00592,0.071904,0.005568
+772,515.674,1.93921,0.321536,0.006144,0.219168,0.006112,0.005376,0.004864,0.074912,0.00496
+773,601.027,1.66382,0.309632,0.00576,0.211712,0.005728,0.004512,0.005632,0.071776,0.004512
+774,698.499,1.43164,0.3072,0.006144,0.21008,0.00496,0.005408,0.004832,0.069632,0.006144
+775,626.395,1.59644,0.32336,0.005952,0.217312,0.00512,0.004832,0.004416,0.079808,0.00592
+776,512,1.95312,0.471872,0.004928,0.366048,0.00464,0.005696,0.004544,0.079872,0.006144
+777,508.063,1.96826,0.512288,0.005504,0.40848,0.005728,0.004512,0.006176,0.075744,0.006144
+778,667.971,1.49707,0.3072,0.006144,0.212992,0.005664,0.004576,0.005536,0.067808,0.00448
+779,654.522,1.52783,0.309408,0.006144,0.21424,0.004864,0.004128,0.006144,0.06944,0.004448
+780,627.259,1.59424,0.316064,0.0048,0.222688,0.00464,0.005728,0.004512,0.067584,0.006112
+781,551.947,1.81177,0.307424,0.005728,0.213088,0.00464,0.004096,0.006144,0.068768,0.00496
+782,658.309,1.51904,0.309344,0.004192,0.208896,0.005984,0.004256,0.00576,0.075424,0.004832
+783,651.918,1.53394,0.307008,0.004736,0.210944,0.00576,0.00448,0.0056,0.070176,0.005312
+784,629.669,1.58813,0.325024,0.005728,0.225792,0.006144,0.005248,0.004992,0.07136,0.00576
+785,367.354,2.72217,0.37072,0.006144,0.26624,0.005152,0.004864,0.004416,0.078784,0.00512
+786,653.895,1.5293,0.320384,0.004992,0.222336,0.004992,0.005376,0.004864,0.07168,0.006144
+787,609.615,1.64038,0.31744,0.006144,0.214144,0.004896,0.004192,0.005856,0.07728,0.004928
+788,594.571,1.68188,0.334912,0.006144,0.229376,0.006144,0.004096,0.006144,0.077728,0.00528
+789,629.283,1.58911,0.313504,0.005984,0.21136,0.005792,0.004352,0.005728,0.075744,0.004544
+790,671.586,1.48901,0.315904,0.005728,0.21392,0.006112,0.004128,0.00608,0.07536,0.004576
+791,641.906,1.55786,0.31344,0.004928,0.212896,0.004192,0.005536,0.004704,0.075776,0.005408
+792,551.279,1.81396,0.327488,0.006144,0.22528,0.006144,0.004096,0.006144,0.073728,0.005952
+793,472.543,2.11621,0.317888,0.005728,0.217952,0.004096,0.005664,0.004576,0.07504,0.004832
+794,635.531,1.57349,0.320256,0.006528,0.217312,0.005536,0.004864,0.005248,0.075712,0.005056
+795,399.532,2.50293,0.370496,0.005824,0.266144,0.004512,0.005216,0.005024,0.077824,0.005952
+796,422.878,2.36475,0.34,0.006144,0.237568,0.006144,0.004096,0.005728,0.075712,0.004608
+797,593.193,1.68579,0.333824,0.005856,0.230912,0.004864,0.004128,0.005984,0.07712,0.00496
+798,634.056,1.57715,0.323584,0.00608,0.217152,0.006144,0.004096,0.00592,0.079648,0.004544
+799,589.183,1.69727,0.330784,0.006144,0.228864,0.004608,0.004096,0.006144,0.075584,0.005344
+800,472.161,2.11792,0.319776,0.005728,0.21728,0.004704,0.005696,0.004544,0.075776,0.006048
+801,630.154,1.58691,0.316192,0.004992,0.214464,0.004672,0.004096,0.006144,0.075776,0.006048
+802,651.192,1.53564,0.309184,0.006144,0.212992,0.006112,0.004128,0.006144,0.067584,0.00608
+803,430.388,2.32349,0.366432,0.006016,0.272512,0.004096,0.00576,0.00448,0.067584,0.005984
+804,317.79,3.14673,0.34816,0.006048,0.24928,0.004768,0.0056,0.00464,0.073056,0.004768
+805,535.075,1.8689,0.360448,0.005984,0.264352,0.005888,0.004352,0.00544,0.06832,0.006112
+806,483.076,2.07007,0.330272,0.00464,0.235264,0.005568,0.004928,0.005216,0.070048,0.004608
+807,458.987,2.17871,0.321536,0.006144,0.225312,0.00512,0.004864,0.004416,0.070688,0.004992
+808,617.425,1.61963,0.311296,0.006144,0.220384,0.004896,0.005472,0.004768,0.065344,0.004288
+809,493.494,2.02637,0.312,0.0048,0.221184,0.00528,0.004832,0.004224,0.066816,0.004864
+810,387.842,2.57837,0.354688,0.00576,0.262432,0.004576,0.005824,0.004416,0.065536,0.006144
+811,573.911,1.74243,0.34816,0.005984,0.257664,0.00464,0.004096,0.006144,0.064928,0.004704
+812,580.417,1.7229,0.34816,0.006144,0.253952,0.005664,0.004576,0.005536,0.0672,0.005088
+813,478.952,2.08789,0.3584,0.005728,0.2664,0.004352,0.005408,0.005952,0.066016,0.004544
+814,435.837,2.29443,0.312288,0.005088,0.22304,0.005536,0.004832,0.00416,0.06512,0.004512
+815,695.77,1.43726,0.308096,0.004992,0.21456,0.004576,0.00576,0.00448,0.06896,0.004768
+816,687.364,1.45483,0.3152,0.005728,0.218016,0.006144,0.005216,0.005024,0.069632,0.00544
+817,519.27,1.92578,0.35632,0.006144,0.259488,0.004736,0.004064,0.006144,0.069632,0.006112
+818,601.557,1.66235,0.311296,0.006144,0.217088,0.006144,0.004096,0.005952,0.06688,0.004992
+819,515.22,1.94092,0.337728,0.004896,0.249376,0.004576,0.00512,0.00512,0.063296,0.005344
+820,525.735,1.9021,0.312448,0.006144,0.221216,0.00608,0.004128,0.00592,0.063712,0.005248
+821,510.596,1.9585,0.325664,0.005696,0.233728,0.00432,0.005408,0.004864,0.066816,0.004832
+822,607.175,1.64697,0.31744,0.006144,0.219136,0.006144,0.00512,0.00512,0.070816,0.00496
+823,569.68,1.75537,0.343424,0.006144,0.24576,0.006048,0.004192,0.005888,0.069888,0.005504
+824,618.357,1.61719,0.3216,0.006144,0.224864,0.005568,0.004832,0.004352,0.071424,0.004416
+825,453.398,2.20557,0.339968,0.006144,0.242752,0.004864,0.004288,0.00576,0.071136,0.005024
+826,560.405,1.78442,0.324832,0.006144,0.222336,0.004992,0.005408,0.004832,0.075776,0.005344
+827,672.909,1.48608,0.313312,0.006144,0.219168,0.005824,0.004384,0.005664,0.066016,0.006112
+828,497.389,2.0105,0.335392,0.005696,0.240416,0.006048,0.004192,0.005792,0.067936,0.005312
+829,412.57,2.42383,0.335872,0.006144,0.243072,0.004736,0.004096,0.006112,0.065568,0.006144
+830,672.688,1.48657,0.311232,0.00496,0.217088,0.006112,0.004128,0.005888,0.067776,0.00528
+831,601.204,1.66333,0.31904,0.00576,0.222944,0.0048,0.005312,0.004928,0.069632,0.005664
+832,540.583,1.84985,0.338976,0.006144,0.243456,0.005536,0.004832,0.004416,0.06928,0.005312
+833,527.971,1.89404,0.321152,0.00608,0.227072,0.004416,0.005312,0.004928,0.067584,0.00576
+834,573.83,1.74268,0.330144,0.004832,0.23648,0.005056,0.005312,0.004928,0.067584,0.005952
+835,541.298,1.84741,0.326016,0.005696,0.228192,0.005376,0.004832,0.005312,0.071776,0.004832
+836,546.061,1.8313,0.32944,0.005728,0.235456,0.004864,0.005504,0.004736,0.067584,0.005568
+837,471.998,2.11865,0.332096,0.005792,0.235264,0.004864,0.004352,0.006144,0.069632,0.006048
+838,559.181,1.78833,0.3224,0.00512,0.22528,0.005568,0.004672,0.005408,0.070368,0.005984
+839,618.451,1.61694,0.329536,0.005888,0.233792,0.005824,0.004384,0.005664,0.068064,0.00592
+840,530.158,1.88623,0.348384,0.005728,0.244384,0.006112,0.004096,0.00592,0.077632,0.004512
+841,496.304,2.01489,0.515104,0.006144,0.4096,0.00592,0.005536,0.00496,0.077664,0.00528
+842,621.453,1.60913,0.319008,0.006144,0.217088,0.006144,0.004096,0.005984,0.073888,0.005664
+843,573.188,1.74463,0.328,0.005696,0.231712,0.004576,0.005664,0.004576,0.071296,0.00448
+844,340.992,2.93262,0.36992,0.006048,0.273792,0.004896,0.005472,0.004768,0.069632,0.005312
+845,547.228,1.82739,0.315808,0.005728,0.220128,0.005376,0.004864,0.006144,0.067584,0.005984
+846,554.863,1.80225,0.325568,0.006144,0.229376,0.006144,0.004096,0.006144,0.067616,0.006048
+847,486.057,2.05737,0.374528,0.006144,0.27648,0.005408,0.004832,0.005536,0.07024,0.005888
+848,588.506,1.69922,0.340064,0.005792,0.244384,0.006144,0.004096,0.006048,0.06768,0.00592
+849,630.542,1.58594,0.317408,0.006048,0.22128,0.005248,0.004832,0.004416,0.069472,0.006112
+850,597.694,1.6731,0.34096,0.005088,0.24576,0.006144,0.004096,0.006048,0.068992,0.004832
+851,514.314,1.94434,0.370688,0.006144,0.274432,0.005536,0.004704,0.005376,0.06976,0.004736
+852,523.317,1.91089,0.33792,0.006144,0.241632,0.004128,0.0056,0.00464,0.069632,0.006144
+853,575.362,1.73804,0.339968,0.006144,0.243712,0.005568,0.004672,0.005472,0.068256,0.006144
+854,606.186,1.64966,0.315392,0.006144,0.217088,0.005856,0.004384,0.005632,0.070144,0.006144
+855,547.96,1.82495,0.374784,0.007648,0.274976,0.004096,0.005824,0.004416,0.07168,0.006144
+856,553.065,1.80811,0.326496,0.00496,0.228832,0.00464,0.00576,0.00448,0.07168,0.006144
+857,642.913,1.55542,0.315872,0.004896,0.217088,0.0056,0.00464,0.00544,0.072384,0.005824
+858,631.611,1.58325,0.323584,0.006048,0.223008,0.005568,0.004832,0.004416,0.075168,0.004544
+859,504.061,1.98389,0.413696,0.005856,0.314944,0.004832,0.004096,0.006144,0.073088,0.004736
+860,519.27,1.92578,0.337184,0.006176,0.235072,0.005568,0.005088,0.005376,0.074496,0.005408
+861,587.577,1.7019,0.316032,0.004736,0.220352,0.004864,0.00416,0.00592,0.071488,0.004512
+862,560.942,1.78271,0.3256,0.005728,0.228192,0.006144,0.005376,0.004864,0.069632,0.005664
+863,436.534,2.29077,0.33888,0.00512,0.238848,0.004864,0.004096,0.005952,0.07392,0.00608
+864,638.802,1.56543,0.313344,0.006144,0.21616,0.005024,0.005344,0.004896,0.069664,0.006112
+865,644.126,1.55249,0.32944,0.006144,0.229152,0.00432,0.005408,0.004832,0.073728,0.005856
+866,537.533,1.86035,0.329728,0.00608,0.233536,0.005824,0.004416,0.00576,0.069504,0.004608
+867,470.588,2.125,0.317472,0.005728,0.221632,0.004096,0.005664,0.004576,0.070944,0.004832
+868,595.089,1.68042,0.319232,0.005728,0.217536,0.006144,0.004096,0.005984,0.073888,0.005856
+869,503.38,1.98657,0.362496,0.006144,0.262144,0.004096,0.005696,0.004544,0.073728,0.006144
+870,496.605,2.01367,0.342016,0.005856,0.239008,0.004992,0.005376,0.004864,0.075776,0.006144
+871,520.061,1.92285,0.512256,0.005632,0.408288,0.005728,0.005536,0.00512,0.076864,0.005088
+872,539.373,1.854,0.51824,0.005888,0.407712,0.005568,0.0048,0.005184,0.08432,0.004768
+873,599.707,1.66748,0.327264,0.00576,0.21568,0.004352,0.005376,0.004864,0.08592,0.005312
+874,493.851,2.0249,0.332128,0.00576,0.22128,0.004736,0.005472,0.004768,0.085632,0.00448
+875,601.204,1.66333,0.315584,0.00576,0.217664,0.004096,0.00576,0.00448,0.073248,0.004576
+876,702.573,1.42334,0.310816,0.006144,0.210944,0.00576,0.00448,0.005664,0.07216,0.005664
+877,656.2,1.52393,0.321024,0.005984,0.221376,0.005312,0.004832,0.005216,0.072672,0.005632
+878,498.843,2.00464,0.384768,0.005728,0.28528,0.006144,0.004096,0.00592,0.071904,0.005696
+879,662.247,1.51001,0.311616,0.005792,0.213056,0.004704,0.004096,0.006112,0.071712,0.006144
+880,652.229,1.5332,0.310944,0.006016,0.211072,0.006048,0.004192,0.005888,0.071936,0.005792
+881,589.522,1.69629,0.31488,0.005824,0.214848,0.004864,0.00432,0.005728,0.073984,0.005312
+882,577.308,1.73218,0.34784,0.004768,0.248896,0.005056,0.005344,0.004896,0.0736,0.00528
+883,506.993,1.97241,0.507904,0.006144,0.406912,0.004736,0.006144,0.00544,0.073632,0.004896
+884,590.457,1.6936,0.311296,0.00592,0.21088,0.005536,0.004832,0.004256,0.074944,0.004928
+885,634.547,1.57593,0.306112,0.005088,0.206816,0.00528,0.004832,0.005312,0.072736,0.006048
+886,617.425,1.61963,0.338304,0.00592,0.236448,0.006144,0.005184,0.005056,0.073728,0.005824
+887,512.256,1.95215,0.325088,0.00576,0.223616,0.00528,0.004864,0.00528,0.074688,0.0056
+888,542.517,1.84326,0.3192,0.00592,0.214784,0.004576,0.005792,0.004448,0.077856,0.005824
+889,629.669,1.58813,0.312704,0.006144,0.208896,0.004096,0.005696,0.004544,0.077824,0.005504
+890,518.415,1.92896,0.387808,0.00496,0.282624,0.006144,0.005152,0.005088,0.077824,0.006016
+891,601.38,1.66284,0.322592,0.00576,0.21712,0.004448,0.005248,0.004992,0.07968,0.005344
+892,647.794,1.5437,0.313344,0.00576,0.207232,0.005696,0.004544,0.005472,0.078496,0.006144
+893,676.131,1.479,0.320992,0.006144,0.214048,0.004864,0.00432,0.005728,0.080288,0.0056
+894,576.901,1.7334,0.352256,0.006144,0.243744,0.005792,0.004416,0.006144,0.081472,0.004544
+895,585.98,1.70654,0.333408,0.006144,0.22528,0.005248,0.004832,0.004448,0.081728,0.005728
+896,624.962,1.6001,0.315392,0.005792,0.212352,0.005088,0.00528,0.00496,0.077504,0.004416
+897,636.915,1.57007,0.315392,0.006144,0.21296,0.004128,0.0056,0.00464,0.077152,0.004768
+898,685.523,1.45874,0.319488,0.00608,0.21328,0.004608,0.00576,0.004512,0.07984,0.005408
+899,505.679,1.97754,0.333824,0.006144,0.227328,0.004096,0.00576,0.00448,0.081408,0.004608
+900,629.573,1.58838,0.325632,0.005824,0.217408,0.006144,0.005216,0.005024,0.081024,0.004992
+901,675.908,1.47949,0.31344,0.004256,0.21024,0.004736,0.004096,0.005856,0.079296,0.00496
+902,618.638,1.61646,0.324928,0.006144,0.217088,0.0056,0.00464,0.005376,0.08064,0.00544
+903,484.619,2.06348,0.32928,0.00608,0.222304,0.004896,0.004288,0.00576,0.080256,0.005696
+904,627.836,1.59277,0.325632,0.006144,0.21712,0.00608,0.004128,0.006144,0.080896,0.00512
+905,601.557,1.66235,0.319328,0.005888,0.213056,0.004288,0.005408,0.004832,0.079872,0.005984
+906,576.983,1.73315,0.325216,0.006144,0.218464,0.004768,0.0056,0.004672,0.07984,0.005728
+907,589.183,1.69727,0.331776,0.006144,0.221216,0.005184,0.004832,0.005344,0.084288,0.004768
+908,648.923,1.54102,0.323712,0.005728,0.215616,0.006112,0.004096,0.006144,0.081568,0.004448
+909,651.918,1.53394,0.316864,0.005856,0.212512,0.004896,0.004224,0.005824,0.078144,0.005408
+910,674.35,1.48291,0.315104,0.00576,0.212992,0.0048,0.005568,0.004672,0.075776,0.005536
+911,585.98,1.70654,0.33632,0.007776,0.231424,0.004864,0.004192,0.005856,0.077184,0.005024
+912,533.056,1.87598,0.513088,0.006144,0.408896,0.0048,0.0056,0.00592,0.076416,0.005312
+913,629.573,1.58838,0.326592,0.00512,0.220544,0.004672,0.004096,0.006144,0.081152,0.004864
+914,619.573,1.61401,0.3256,0.006144,0.21504,0.005536,0.004704,0.005312,0.082752,0.006112
+915,495.704,2.01733,0.356384,0.006144,0.253088,0.004864,0.004192,0.005856,0.077152,0.005088
+916,556.522,1.79688,0.509952,0.006144,0.407552,0.006048,0.004192,0.005824,0.075744,0.004448
+917,647.282,1.54492,0.313344,0.006144,0.212544,0.004544,0.005152,0.005088,0.075552,0.00432
+918,636.222,1.57178,0.318464,0.00512,0.21712,0.006112,0.004096,0.006144,0.074752,0.00512
+919,542.804,1.84229,0.3584,0.005696,0.258592,0.00528,0.004832,0.005472,0.07248,0.006048
+920,498.479,2.0061,0.512,0.006144,0.4096,0.006144,0.00416,0.00608,0.075168,0.004704
+921,415.542,2.40649,0.53888,0.006368,0.436288,0.005568,0.004864,0.005952,0.07392,0.00592
+922,436.302,2.29199,0.517248,0.006144,0.413696,0.005568,0.004672,0.005376,0.076448,0.005344
+923,356.794,2.80273,0.347648,0.00608,0.243136,0.004736,0.005504,0.004768,0.077792,0.005632
+924,538.168,1.85815,0.328288,0.005024,0.226304,0.00512,0.005248,0.004992,0.075776,0.005824
+925,463.086,2.15942,0.338208,0.00512,0.235552,0.00576,0.004448,0.006144,0.075776,0.005408
+926,421.009,2.37524,0.348192,0.006144,0.243712,0.006144,0.004096,0.005952,0.077472,0.004672
+927,614.093,1.62842,0.331776,0.006144,0.223232,0.005376,0.004864,0.005408,0.081728,0.005024
+928,523.785,1.90918,0.323392,0.004928,0.21504,0.005632,0.004608,0.00544,0.082464,0.00528
+929,455.922,2.19336,0.423552,0.00576,0.316384,0.005824,0.004416,0.005664,0.080128,0.005376
+930,535.845,1.86621,0.330656,0.005024,0.223136,0.005536,0.0048,0.005248,0.082368,0.004544
+931,573.027,1.74512,0.322112,0.005696,0.216,0.005376,0.004832,0.00528,0.08048,0.004448
+932,491.776,2.03345,0.370336,0.006144,0.26576,0.004576,0.005792,0.004448,0.077824,0.005792
+933,341.504,2.92822,0.376832,0.006016,0.270464,0.00528,0.004832,0.004224,0.081568,0.004448
+934,527.291,1.89648,0.339424,0.00576,0.22976,0.00608,0.00416,0.005952,0.082112,0.0056
+935,537.462,1.8606,0.361952,0.005856,0.255296,0.004864,0.00432,0.006144,0.079872,0.0056
+936,334.095,2.99316,0.335424,0.006144,0.22528,0.005952,0.004288,0.00576,0.082304,0.005696
+937,569.918,1.75464,0.335872,0.005952,0.22656,0.004864,0.004288,0.006112,0.083392,0.004704
+938,428.094,2.33594,0.323008,0.006048,0.214464,0.004768,0.005632,0.004608,0.08192,0.005568
+939,376.99,2.65259,0.347488,0.006144,0.237568,0.005312,0.004864,0.005248,0.08288,0.005472
+940,615.94,1.62354,0.325984,0.00592,0.215712,0.005536,0.004768,0.005312,0.082752,0.005984
+941,682.098,1.46606,0.33792,0.006144,0.223232,0.005856,0.004384,0.005664,0.087872,0.004768
+942,570.951,1.75146,0.34336,0.006144,0.226816,0.004608,0.00576,0.00448,0.090112,0.00544
+943,449.764,2.22339,0.364544,0.005888,0.246016,0.005632,0.004608,0.006144,0.09168,0.004576
+944,629.766,1.58789,0.332832,0.006144,0.223232,0.006144,0.004128,0.006048,0.081984,0.005152
+945,569.443,1.7561,0.34816,0.006144,0.237568,0.006144,0.004096,0.006144,0.08352,0.004544
+946,469.294,2.13086,0.335648,0.006112,0.22736,0.005856,0.004384,0.005696,0.08032,0.00592
+947,634.842,1.5752,0.313632,0.005728,0.207552,0.005152,0.004832,0.004416,0.081408,0.004544
+948,665.583,1.50244,0.316064,0.004768,0.21296,0.005536,0.004736,0.005312,0.078016,0.004736
+949,471.455,2.12109,0.320864,0.006144,0.21504,0.005216,0.0048,0.004416,0.079776,0.005472
+950,503.937,1.98438,0.324672,0.006144,0.22032,0.004992,0.005408,0.0048,0.077696,0.005312
+951,656.095,1.52417,0.319712,0.005728,0.21472,0.005056,0.004096,0.005952,0.078048,0.006112
+952,631.222,1.58423,0.31984,0.00496,0.214912,0.005536,0.004832,0.00576,0.078208,0.005632
+953,686.903,1.45581,0.331232,0.00576,0.225984,0.004256,0.005472,0.004768,0.079712,0.00528
+954,475.009,2.10522,0.33792,0.005696,0.229312,0.004608,0.005792,0.00592,0.0816,0.004992
+955,573.991,1.74219,0.32896,0.006144,0.218144,0.004896,0.004288,0.005824,0.084288,0.005376
+956,676.131,1.479,0.321248,0.004352,0.210944,0.006016,0.004224,0.005792,0.08432,0.0056
+957,632.978,1.57983,0.326592,0.005056,0.218752,0.00448,0.005248,0.004992,0.08352,0.004544
+958,548.914,1.82178,0.333824,0.006144,0.221184,0.006144,0.00416,0.006112,0.085504,0.004576
+959,517.172,1.93359,0.518112,0.006144,0.407552,0.005888,0.005536,0.004992,0.081888,0.006112
+960,602.176,1.66064,0.324768,0.006144,0.214752,0.005536,0.004864,0.004416,0.083744,0.005312
+961,511.616,1.95459,0.34384,0.006144,0.22528,0.004096,0.005632,0.004608,0.09216,0.00592
+962,558.342,1.79102,0.363136,0.005056,0.247392,0.004512,0.005856,0.004384,0.090112,0.005824
+963,647.077,1.54541,0.335168,0.006144,0.217056,0.004128,0.0056,0.00464,0.09216,0.00544
+964,595.349,1.67969,0.331776,0.006144,0.217088,0.005888,0.004352,0.00576,0.0864,0.006144
+965,663.212,1.50781,0.335936,0.005984,0.223616,0.004544,0.005184,0.005056,0.086016,0.005536
+966,575.443,1.73779,0.372736,0.007168,0.257024,0.006144,0.004096,0.006144,0.08608,0.00608
+967,581.984,1.71826,0.33248,0.006336,0.219648,0.005152,0.004832,0.004384,0.087712,0.004416
+968,625.821,1.5979,0.328064,0.005696,0.213632,0.005536,0.004832,0.005248,0.086976,0.006144
+969,616.867,1.62109,0.321056,0.006336,0.212704,0.004544,0.005248,0.004992,0.081888,0.005344
+970,598.743,1.67017,0.33792,0.006144,0.226688,0.004736,0.005664,0.004576,0.08512,0.004992
+971,440.193,2.27173,0.333504,0.005984,0.2208,0.004672,0.00528,0.004928,0.086016,0.005824
+972,667.101,1.49902,0.33536,0.006496,0.215104,0.005536,0.004704,0.005344,0.092864,0.005312
+973,579.186,1.72656,0.330016,0.005952,0.216704,0.00496,0.005408,0.004832,0.087776,0.004384
+974,505.18,1.97949,0.369344,0.0048,0.256032,0.006112,0.004096,0.006144,0.087168,0.004992
+975,606.366,1.64917,0.333824,0.005952,0.211136,0.005472,0.004768,0.005408,0.096064,0.005024
+976,676.801,1.47754,0.335264,0.00608,0.211008,0.005856,0.004384,0.005696,0.096704,0.005536
+977,600.586,1.66504,0.335872,0.00592,0.212352,0.004896,0.00416,0.00592,0.097632,0.004992
+978,488.55,2.04688,0.371712,0.00512,0.247808,0.005952,0.004288,0.005952,0.097472,0.00512
+979,500.305,1.99878,0.523232,0.005088,0.4096,0.005856,0.005536,0.004992,0.087776,0.004384
+980,586.819,1.7041,0.326912,0.00592,0.213216,0.005856,0.004384,0.005664,0.086496,0.005376
+981,711.853,1.40479,0.333952,0.00576,0.221472,0.00432,0.005472,0.004768,0.08752,0.00464
+982,554.188,1.80444,0.35696,0.004704,0.243712,0.006144,0.004096,0.006144,0.08608,0.00608
+983,552.022,1.81152,0.344416,0.007808,0.224096,0.005376,0.004832,0.005184,0.091072,0.006048
+984,611.435,1.6355,0.33104,0.006144,0.210944,0.006144,0.004096,0.006144,0.09216,0.005408
+985,641.002,1.56006,0.323584,0.006144,0.212992,0.004096,0.00576,0.00448,0.085024,0.005088
+986,558.038,1.79199,0.33792,0.006144,0.226624,0.0048,0.005568,0.004672,0.085056,0.005056
+987,494.387,2.02271,0.522336,0.005696,0.407744,0.005568,0.005056,0.005664,0.086496,0.006112
+988,581.075,1.72095,0.327264,0.005792,0.21728,0.00448,0.005248,0.004992,0.083968,0.005504
+989,601.204,1.66333,0.342784,0.004864,0.224544,0.004832,0.004096,0.00608,0.0936,0.004768
+990,583.393,1.71411,0.375936,0.006144,0.262176,0.006112,0.004096,0.006144,0.08592,0.005344
+991,607.986,1.64478,0.352992,0.004832,0.243104,0.004704,0.005376,0.004896,0.085376,0.004704
+992,575.766,1.73682,0.324192,0.005888,0.213408,0.004544,0.005824,0.004448,0.085312,0.004768
+993,622.587,1.6062,0.321536,0.006016,0.210464,0.004704,0.004096,0.00608,0.085536,0.00464
+994,543.236,1.84082,0.3736,0.00496,0.264192,0.006144,0.004096,0.006112,0.083264,0.004832
+995,546.061,1.8313,0.342368,0.005728,0.232064,0.005472,0.004768,0.00528,0.084608,0.004448
+996,660.432,1.51416,0.323584,0.005824,0.215008,0.005536,0.004832,0.00432,0.083488,0.004576
+997,627.451,1.59375,0.32816,0.005728,0.21184,0.005792,0.004416,0.005664,0.090048,0.004672
+998,530.639,1.88452,0.343648,0.006144,0.227328,0.005632,0.004608,0.005728,0.08848,0.005728
+999,526.005,1.90112,0.52432,0.00608,0.409504,0.005536,0.004896,0.005856,0.088032,0.004416
+1000,611.891,1.63428,0.331744,0.005056,0.21888,0.005536,0.004864,0.005728,0.086368,0.005312
+1001,627.547,1.59351,0.331776,0.006144,0.216864,0.00432,0.00544,0.0048,0.08928,0.004928
+1002,560.252,1.78491,0.34816,0.006144,0.22528,0.006144,0.004096,0.006048,0.095712,0.004736
+1003,542.445,1.84351,0.532384,0.006144,0.408928,0.004768,0.006144,0.005376,0.094976,0.006048
+1004,554.863,1.80225,0.34416,0.00576,0.222144,0.0056,0.00464,0.005408,0.094944,0.005664
+1005,667.753,1.49756,0.331776,0.006112,0.212032,0.004896,0.004288,0.005728,0.09392,0.0048
+1006,500,2,0.425824,0.005952,0.308192,0.006144,0.004096,0.006144,0.089984,0.005312
+1007,568.81,1.75806,0.332448,0.00576,0.217824,0.004288,0.00544,0.0048,0.089888,0.004448
+1008,622.871,1.60547,0.329728,0.006144,0.212416,0.004704,0.005664,0.004544,0.090112,0.006144
+1009,589.183,1.69727,0.331808,0.005728,0.213408,0.005504,0.004736,0.005408,0.092544,0.00448
+1010,577.389,1.73193,0.342208,0.005472,0.222048,0.006144,0.004096,0.006144,0.093312,0.004992
+1011,563.411,1.7749,0.327936,0.005088,0.210944,0.00528,0.004864,0.005248,0.091104,0.005408
+1012,666.992,1.49927,0.33216,0.004832,0.212992,0.005856,0.004384,0.005728,0.092576,0.005792
+1013,501.592,1.99365,0.34,0.007264,0.221472,0.004736,0.004096,0.00608,0.09168,0.004672
+1014,515.934,1.93823,0.425024,0.005728,0.30272,0.00496,0.005408,0.004864,0.096032,0.005312
+1015,588.168,1.7002,0.341952,0.006176,0.221664,0.004256,0.005472,0.004768,0.094208,0.005408
+1016,541.871,1.84546,0.338496,0.00576,0.218048,0.005568,0.004672,0.005472,0.094336,0.00464
+1017,622.776,1.60571,0.352448,0.004992,0.231456,0.004064,0.005792,0.004448,0.096256,0.00544
+1018,525.465,1.90308,0.391616,0.005728,0.2704,0.004864,0.004128,0.005984,0.095968,0.004544
+1019,593.881,1.68384,0.335872,0.006112,0.216896,0.00432,0.00528,0.00496,0.0936,0.004704
+1020,657.358,1.52124,0.327744,0.00496,0.210976,0.00512,0.004832,0.004352,0.09216,0.005344
+1021,689.098,1.45117,0.337984,0.004896,0.221184,0.005312,0.004832,0.005216,0.091136,0.005408
+1022,508.567,1.96631,0.37536,0.00576,0.25488,0.0056,0.00464,0.005472,0.093888,0.00512
+1023,505.18,1.97949,0.526336,0.006144,0.407008,0.00464,0.006144,0.005504,0.092384,0.004512
+1024,620.888,1.6106,0.325312,0.006016,0.21312,0.005568,0.004672,0.005376,0.084736,0.005824
+1025,588.252,1.69995,0.346912,0.004896,0.233216,0.004352,0.005344,0.004896,0.089536,0.004672
+1026,540.084,1.85156,0.388928,0.006144,0.26992,0.005536,0.004864,0.004416,0.092096,0.005952
+1027,614.277,1.62793,0.335392,0.006144,0.214528,0.004608,0.004096,0.006144,0.094208,0.005664
+1028,616.589,1.62183,0.34,0.005792,0.214656,0.004864,0.005504,0.004768,0.098272,0.006144
+1029,600.41,1.66553,0.333472,0.004768,0.216192,0.004864,0.00416,0.005888,0.092224,0.005376
+1030,539.302,1.85425,0.357056,0.004832,0.245728,0.006144,0.004096,0.006144,0.085152,0.00496
+1031,515.609,1.93945,0.526272,0.005568,0.40816,0.006144,0.0056,0.005952,0.0888,0.006048
+1032,612.44,1.63281,0.327776,0.005728,0.211456,0.006144,0.004096,0.006048,0.08928,0.005024
+1033,599.093,1.66919,0.329824,0.005728,0.21056,0.004896,0.004256,0.00736,0.090944,0.00608
+1034,497.087,2.01172,0.395296,0.006144,0.280416,0.005536,0.004832,0.005216,0.088512,0.00464
+1035,607.535,1.646,0.329728,0.006144,0.21504,0.005408,0.0048,0.005216,0.087008,0.006112
+1036,682.553,1.46509,0.327936,0.005664,0.207584,0.006048,0.005408,0.004928,0.093824,0.00448
+1037,640.701,1.56079,0.33024,0.004832,0.214176,0.004864,0.004096,0.006016,0.09024,0.006016
+1038,418.301,2.39062,0.458752,0.017952,0.330208,0.005728,0.004512,0.0056,0.0904,0.004352
+1039,442.715,2.25879,0.393312,0.005728,0.28256,0.004672,0.004096,0.006144,0.085344,0.004768
+1040,474.788,2.1062,0.461952,0.022528,0.314912,0.004576,0.005792,0.020512,0.088352,0.00528
+1041,498.297,2.00684,0.348256,0.006144,0.241696,0.004064,0.005824,0.005632,0.08048,0.004416
+1042,489.718,2.04199,0.514048,0.00608,0.407616,0.006048,0.004192,0.005824,0.079456,0.004832
+1043,616.403,1.62231,0.321568,0.00592,0.215264,0.004096,0.005664,0.004576,0.081632,0.004416
+1044,460.276,2.17261,0.326752,0.006144,0.216992,0.005568,0.006016,0.006336,0.080384,0.005312
+1045,450.456,2.21997,0.343616,0.006048,0.22736,0.00416,0.005568,0.004672,0.090112,0.005696
+1046,504.185,1.9834,0.34816,0.006144,0.234752,0.004864,0.005504,0.004736,0.087104,0.005056
+1047,548.327,1.82373,0.33952,0.006144,0.226368,0.004896,0.004256,0.005664,0.086496,0.005696
+1048,495.644,2.01758,0.351744,0.005728,0.239968,0.005536,0.0048,0.005248,0.084864,0.0056
+1049,377.999,2.64551,0.347872,0.006144,0.23344,0.004128,0.0056,0.00464,0.088064,0.005856
+1050,565.121,1.76953,0.338752,0.004928,0.216768,0.004416,0.005824,0.004416,0.096256,0.006144
+1051,626.395,1.59644,0.335872,0.006144,0.221152,0.004128,0.0056,0.005952,0.086752,0.006144
+1052,488.841,2.04565,0.348,0.005984,0.232896,0.004832,0.005568,0.004672,0.088064,0.005984
+1053,531.741,1.88062,0.33792,0.00592,0.216512,0.004864,0.004128,0.005984,0.095808,0.004704
+1054,582.48,1.7168,0.342144,0.005728,0.227872,0.005664,0.004576,0.005472,0.088256,0.004576
+1055,519.995,1.9231,0.377696,0.005056,0.263776,0.004512,0.005216,0.005024,0.088064,0.006048
+1056,473.143,2.11353,0.33792,0.006144,0.22272,0.004608,0.00576,0.00448,0.088128,0.00608
+1057,636.42,1.57129,0.321536,0.006144,0.2088,0.004192,0.005504,0.004768,0.08752,0.004608
+1058,657.042,1.52197,0.333728,0.005728,0.213888,0.00576,0.00448,0.005568,0.092736,0.005568
+1059,491.481,2.03467,0.33824,0.005024,0.219104,0.00576,0.00448,0.005568,0.092736,0.005568
+1060,537.956,1.85889,0.530176,0.005824,0.407872,0.005824,0.004416,0.005888,0.094464,0.005888
+1061,618.264,1.61743,0.346144,0.004864,0.231328,0.004192,0.005536,0.004704,0.090112,0.005408
+1062,462.25,2.16333,0.339968,0.006144,0.223232,0.004096,0.00576,0.00448,0.090112,0.006144
+1063,544.319,1.83716,0.37792,0.006144,0.26624,0.00416,0.0056,0.004576,0.08592,0.00528
+1064,610.796,1.63721,0.333856,0.008192,0.218464,0.004768,0.0056,0.00464,0.0872,0.004992
+1065,635.334,1.57397,0.333824,0.006144,0.219136,0.005824,0.004416,0.006016,0.086144,0.006144
+1066,691.075,1.44702,0.326176,0.005696,0.211968,0.006048,0.00416,0.005888,0.087776,0.00464
+1067,616.96,1.62085,0.33776,0.005728,0.230304,0.004128,0.0056,0.00464,0.081792,0.005568
+1068,538.806,1.85596,0.345056,0.005088,0.233472,0.005856,0.004384,0.005664,0.085504,0.005088
+1069,611.8,1.63452,0.3152,0.00576,0.209056,0.004512,0.005184,0.005056,0.079872,0.00576
+1070,650.882,1.53638,0.319808,0.005824,0.209888,0.006144,0.005248,0.005024,0.081888,0.005792
+1071,614.554,1.6272,0.323584,0.006144,0.218432,0.0048,0.004096,0.006048,0.079328,0.004736
+1072,435.282,2.29736,0.34784,0.0048,0.239616,0.00592,0.00432,0.00576,0.082048,0.005376
+1073,624.485,1.60132,0.323648,0.005728,0.21552,0.005824,0.004416,0.005728,0.081344,0.005088
+1074,587.746,1.70142,0.317824,0.005728,0.213536,0.005536,0.004832,0.004416,0.079264,0.004512
+1075,565.824,1.76733,0.33648,0.004704,0.232576,0.004896,0.004192,0.005856,0.078176,0.00608
+1076,539.089,1.85498,0.518144,0.006144,0.407552,0.005696,0.004544,0.005536,0.084128,0.004544
+1077,612.349,1.63306,0.31744,0.006144,0.212416,0.004672,0.00512,0.00512,0.079648,0.00432
+1078,718.975,1.39087,0.319584,0.005728,0.211456,0.005728,0.004512,0.005568,0.082208,0.004384
+1079,568.415,1.75928,0.337472,0.00576,0.230304,0.005568,0.004672,0.005408,0.080416,0.005344
+1080,432.707,2.31104,0.346112,0.006144,0.235552,0.006112,0.004096,0.006112,0.083104,0.004992
+1081,622.398,1.60669,0.323712,0.004992,0.212864,0.004224,0.005472,0.004768,0.08544,0.005952
+1082,658.309,1.51904,0.327744,0.004416,0.21504,0.0056,0.00464,0.005472,0.08672,0.005856
+1083,507.936,1.96875,0.363936,0.006144,0.249856,0.005504,0.004736,0.005344,0.086816,0.005536
+1084,614.83,1.62646,0.324736,0.006144,0.213024,0.00528,0.004832,0.005312,0.084864,0.00528
+1085,638.404,1.56641,0.356032,0.0056,0.240608,0.005888,0.004352,0.005792,0.088256,0.005536
+1086,642.006,1.55762,0.329984,0.005696,0.21536,0.004512,0.005856,0.004352,0.088064,0.006144
+1087,642.812,1.55566,0.344096,0.006144,0.231424,0.00576,0.00448,0.005568,0.085952,0.004768
+1088,549.356,1.82031,0.334272,0.00576,0.224064,0.006144,0.004096,0.005984,0.08384,0.004384
+1089,546.571,1.82959,0.371648,0.005056,0.258048,0.005312,0.004832,0.004192,0.088064,0.006144
+1090,643.216,1.55469,0.335776,0.005696,0.219488,0.004704,0.005696,0.004544,0.090112,0.005536
+1091,597.956,1.67236,0.346592,0.005696,0.232384,0.00576,0.00448,0.005824,0.086336,0.006112
+1092,513.283,1.94824,0.33792,0.006016,0.225408,0.005568,0.004672,0.005408,0.086208,0.00464
+1093,615.107,1.62573,0.325632,0.005728,0.211872,0.004192,0.005536,0.004704,0.088064,0.005536
+1094,626.395,1.59644,0.331776,0.005888,0.217344,0.006016,0.004224,0.005824,0.086336,0.006144
+1095,544.753,1.83569,0.352576,0.00576,0.235264,0.004896,0.004256,0.005952,0.090304,0.006144
+1096,611.8,1.63452,0.34512,0.00592,0.221408,0.006144,0.004096,0.006144,0.096096,0.005312
+1097,602.442,1.65991,0.323584,0.006144,0.212896,0.004192,0.005504,0.004736,0.085568,0.004544
+1098,521.451,1.91772,0.3224,0.005024,0.210944,0.00608,0.00416,0.005856,0.084256,0.00608
+1099,630.251,1.58667,0.334272,0.005728,0.223232,0.004896,0.00416,0.005824,0.085344,0.005088
+1100,515.35,1.94043,0.331776,0.006144,0.219136,0.006144,0.005152,0.00512,0.085664,0.004416
+1101,600.234,1.66602,0.329728,0.006144,0.215072,0.005248,0.004832,0.004416,0.087872,0.006144
+1102,690.376,1.44849,0.321856,0.005728,0.209664,0.00608,0.004128,0.005984,0.085696,0.004576
+1103,525.532,1.90283,0.333888,0.005824,0.22144,0.00432,0.005504,0.004736,0.086016,0.006048
+1104,541.441,1.84692,0.342176,0.005856,0.231872,0.005952,0.004288,0.00592,0.083584,0.004704
+1105,627.355,1.59399,0.319488,0.005856,0.209184,0.005376,0.004832,0.005248,0.084576,0.004416
+1106,635.334,1.57397,0.321952,0.005792,0.211712,0.006144,0.004096,0.006144,0.083008,0.005056
+1107,595.435,1.67944,0.332864,0.006144,0.219136,0.005696,0.004544,0.005696,0.086304,0.005344
+1108,386.743,2.58569,0.346912,0.004896,0.243712,0.005632,0.004608,0.005504,0.077824,0.004736
+1109,587.661,1.70166,0.321088,0.005728,0.213952,0.005184,0.0048,0.004352,0.081792,0.00528
+1110,524.322,1.90723,0.315392,0.006144,0.212576,0.005536,0.004832,0.004384,0.076992,0.004928
+1111,564.966,1.77002,0.358496,0.005728,0.251808,0.004896,0.004224,0.00576,0.080256,0.005824
+1112,532.917,1.87646,0.51808,0.00608,0.407552,0.006144,0.004096,0.006144,0.083008,0.005056
+1113,592.079,1.68896,0.315104,0.00592,0.20912,0.005632,0.004608,0.005536,0.078432,0.005856
+1114,715.583,1.39746,0.317728,0.005984,0.208832,0.004608,0.005792,0.00448,0.083136,0.004896
+1115,495.284,2.01904,0.356352,0.005792,0.250208,0.005792,0.004448,0.0056,0.079424,0.005088
+1116,429.801,2.32666,0.33024,0.006176,0.223648,0.0056,0.00464,0.005568,0.080192,0.004416
+1117,661.606,1.51147,0.317184,0.00608,0.213056,0.004096,0.005792,0.004448,0.077824,0.005888
+1118,617.146,1.62036,0.318656,0.005728,0.215616,0.0056,0.00464,0.005504,0.076256,0.005312
+1119,457.347,2.18652,0.325632,0.005856,0.22352,0.00512,0.004832,0.004384,0.077216,0.004704
+1120,633.369,1.57886,0.316864,0.006144,0.209984,0.005056,0.005344,0.004896,0.079872,0.005568
+1121,675.35,1.48071,0.320192,0.004768,0.216896,0.00432,0.005408,0.0048,0.079584,0.004416
+1122,572.707,1.74609,0.324256,0.005888,0.217984,0.005536,0.004736,0.005376,0.079968,0.004768
+1123,567.785,1.76123,0.36048,0.006176,0.248896,0.004864,0.004256,0.005792,0.085472,0.005024
+1124,471.944,2.1189,0.3768,0.00592,0.256224,0.004608,0.00576,0.01472,0.083968,0.0056
+1125,589.353,1.69678,0.323872,0.00576,0.215872,0.00544,0.0048,0.00528,0.080736,0.005984
+1126,586.988,1.70361,0.324576,0.006112,0.216064,0.004096,0.005792,0.004448,0.083392,0.004672
+1127,492.544,2.03027,0.335872,0.005824,0.223584,0.005152,0.004864,0.004288,0.087648,0.004512
+1128,574.635,1.74023,0.327168,0.006144,0.212736,0.005536,0.004864,0.005248,0.087008,0.005632
+1129,686.327,1.45703,0.323584,0.006144,0.210528,0.004512,0.005248,0.004992,0.087776,0.004384
+1130,565.98,1.76685,0.329472,0.005888,0.213248,0.005952,0.004288,0.00576,0.088448,0.005888
+1131,433.393,2.30737,0.329632,0.005728,0.221888,0.005248,0.004992,0.005152,0.080864,0.00576
+1132,664.827,1.50415,0.327264,0.005664,0.217568,0.005536,0.004704,0.005344,0.08272,0.005728
+1133,488.9,2.04541,0.376672,0.00608,0.260224,0.015584,0.004832,0.004352,0.079872,0.005728
+1134,494.328,2.02295,0.339328,0.005728,0.231552,0.004576,0.005824,0.004416,0.081888,0.005344
+1135,473.581,2.11157,0.329824,0.005728,0.2176,0.006112,0.004128,0.005888,0.08544,0.004928
+1136,697.191,1.43433,0.319488,0.006144,0.208544,0.005536,0.004832,0.004448,0.083936,0.006048
+1137,618.451,1.61694,0.31744,0.006144,0.210144,0.004864,0.004128,0.00592,0.081632,0.004608
+1138,527.359,1.89624,0.36864,0.006016,0.258176,0.005984,0.004256,0.005856,0.083808,0.004544
+1139,574.877,1.7395,0.536416,0.005888,0.428288,0.005536,0.004704,0.005344,0.080672,0.005984
+1140,590.627,1.69312,0.542944,0.004928,0.43008,0.004096,0.005504,0.004768,0.088032,0.005536
+1141,515.739,1.93896,0.54992,0.006144,0.427392,0.004704,0.004128,0.006144,0.096256,0.005152
+1142,441.189,2.2666,0.553568,0.005056,0.43008,0.005632,0.00576,0.006464,0.094784,0.005792
+1143,486.923,2.05371,0.523712,0.006144,0.408864,0.004832,0.006144,0.005344,0.086816,0.005568
+1144,595.609,1.67896,0.324352,0.004864,0.21248,0.004608,0.004096,0.006144,0.086016,0.006144
+1145,550.612,1.81616,0.344064,0.00592,0.221408,0.005792,0.004448,0.005632,0.09472,0.006144
+1146,541.298,1.84741,0.3664,0.006144,0.249888,0.006016,0.004192,0.005856,0.088352,0.005952
+1147,586.399,1.70532,0.333824,0.006144,0.21504,0.00592,0.00432,0.005664,0.092064,0.004672
+1148,732.606,1.36499,0.319488,0.005824,0.2072,0.006112,0.005248,0.004992,0.085184,0.004928
+1149,560.942,1.78271,0.335872,0.006144,0.218208,0.004864,0.004256,0.005728,0.092128,0.004544
+1150,427.691,2.33813,0.417504,0.004832,0.293952,0.005056,0.015648,0.004832,0.08784,0.005344
+1151,644.43,1.55176,0.339168,0.006144,0.219136,0.005408,0.004832,0.005216,0.093088,0.005344
+1152,646.669,1.54639,0.324352,0.004832,0.214656,0.005568,0.004832,0.005472,0.083936,0.005056
+1153,532.294,1.87866,0.335104,0.005728,0.223776,0.005216,0.004832,0.004416,0.085824,0.005312
+1154,583.725,1.71313,0.330048,0.00592,0.217632,0.006144,0.00512,0.00512,0.08544,0.004672
+1155,653.791,1.52954,0.325696,0.005824,0.21536,0.005632,0.004608,0.005984,0.08384,0.004448
+1156,621.359,1.60938,0.323712,0.005984,0.21424,0.005056,0.005344,0.004896,0.083744,0.004448
+1157,622.587,1.6062,0.321536,0.005984,0.212896,0.004352,0.005344,0.004896,0.082016,0.006048
+1158,519.401,1.92529,0.333824,0.00608,0.220512,0.004832,0.005536,0.004704,0.087616,0.004544
+1159,461.729,2.16577,0.39312,0.006144,0.27808,0.004544,0.005184,0.005056,0.088064,0.006048
+1160,503.503,1.98608,0.34384,0.006144,0.22736,0.005856,0.004352,0.005824,0.088384,0.00592
+1161,477.334,2.09497,0.374592,0.006016,0.260224,0.005536,0.004704,0.00544,0.08672,0.005952
+1162,529.678,1.88794,0.332,0.005696,0.21776,0.00608,0.00416,0.005984,0.086176,0.006144
+1163,607.805,1.64526,0.327648,0.00496,0.2104,0.00464,0.004096,0.006144,0.092128,0.00528
+1164,628.51,1.59106,0.333824,0.006144,0.212992,0.005984,0.004256,0.005792,0.094016,0.00464
+1165,397.554,2.51538,0.356032,0.005696,0.23408,0.005728,0.004512,0.005504,0.094848,0.005664
+1166,606.096,1.6499,0.327648,0.005056,0.210464,0.004576,0.005184,0.005056,0.092,0.005312
+1167,527.224,1.89673,0.387072,0.006144,0.266272,0.005568,0.00464,0.005344,0.094432,0.004672
+1168,439.91,2.27319,0.40304,0.006144,0.284192,0.004576,0.005792,0.004448,0.09216,0.005728
+1169,433.302,2.30786,0.34816,0.006144,0.231424,0.005888,0.004352,0.005664,0.090144,0.004544
+1170,664.719,1.50439,0.330528,0.004896,0.21504,0.005856,0.004384,0.005696,0.090048,0.004608
+1171,552.692,1.80933,0.333952,0.006144,0.21504,0.0056,0.00464,0.0056,0.092512,0.004416
+1172,477.167,2.0957,0.391168,0.006144,0.27216,0.005568,0.004832,0.005248,0.091072,0.006144
+1173,537.462,1.8606,0.52976,0.006144,0.4088,0.004896,0.006144,0.005184,0.09312,0.005472
+1174,563.877,1.77344,0.333824,0.006144,0.21504,0.006048,0.004192,0.005984,0.091744,0.004672
+1175,459.347,2.177,0.401344,0.004992,0.281728,0.004896,0.004192,0.005824,0.094048,0.005664
+1176,408.742,2.44653,0.331584,0.005792,0.217568,0.004576,0.005824,0.004416,0.088064,0.005344
+1177,666.558,1.50024,0.326976,0.00576,0.21344,0.004128,0.0056,0.00464,0.088064,0.005344
+1178,526.208,1.90039,0.320128,0.00576,0.20992,0.006144,0.004096,0.006112,0.083552,0.004544
+1179,587.577,1.7019,0.330912,0.006048,0.219136,0.004192,0.00608,0.005632,0.084544,0.00528
+1180,541.512,1.84668,0.5472,0.004736,0.43008,0.005344,0.00464,0.004352,0.09216,0.005888
+1181,524.792,1.90552,0.547008,0.005056,0.429184,0.004992,0.004096,0.005696,0.09264,0.005344
+1182,544.247,1.8374,0.546816,0.00608,0.430016,0.004224,0.00528,0.00496,0.091456,0.0048
+1183,347.207,2.88013,0.555008,0.006144,0.425984,0.00736,0.00704,0.008128,0.093696,0.006656
+1184,571.987,1.74829,0.337664,0.005728,0.2192,0.004448,0.005792,0.004448,0.09216,0.005888
+1185,616.403,1.62231,0.322016,0.005728,0.209376,0.004512,0.005216,0.005024,0.087872,0.004288
+1186,563.566,1.77441,0.37488,0.005792,0.2608,0.006016,0.004224,0.005888,0.086272,0.005888
+1187,465.507,2.14819,0.519776,0.006144,0.407552,0.005888,0.005536,0.00496,0.083968,0.005728
+1188,658.203,1.51929,0.324832,0.006144,0.214016,0.00512,0.00528,0.00496,0.084,0.005312
+1189,636.124,1.57202,0.323584,0.006144,0.210912,0.004128,0.00576,0.00448,0.087712,0.004448
+1190,461.938,2.16479,0.338112,0.00576,0.225728,0.005536,0.004736,0.005312,0.086592,0.004448
+1191,523.384,1.91064,0.572736,0.006144,0.456704,0.005728,0.004512,0.006144,0.088064,0.00544
+1192,523.785,1.90918,0.52432,0.005536,0.409344,0.004992,0.005408,0.004832,0.089632,0.004576
+1193,499.39,2.00244,0.352256,0.005984,0.231616,0.004064,0.005792,0.004448,0.095584,0.004768
+1194,619.855,1.61328,0.34352,0.006144,0.222304,0.005024,0.005344,0.004896,0.094208,0.0056
+1195,605.828,1.65063,0.335872,0.005728,0.215072,0.004736,0.004096,0.00608,0.094272,0.005888
+1196,623.535,1.60376,0.33648,0.0048,0.218144,0.004992,0.005376,0.004896,0.093632,0.00464
+1197,656.937,1.52222,0.331776,0.006144,0.210208,0.004832,0.004096,0.005952,0.094432,0.006112
+1198,501.101,1.99561,0.391616,0.005728,0.270912,0.005536,0.004864,0.004416,0.095104,0.005056
+1199,470.967,2.12329,0.337696,0.006144,0.217088,0.00576,0.00448,0.005568,0.092768,0.005888
+1200,598.83,1.66992,0.335872,0.006144,0.216704,0.005536,0.004832,0.004352,0.093728,0.004576
+1201,545.915,1.83179,0.348096,0.005728,0.227552,0.004768,0.004096,0.006048,0.094304,0.0056
+1202,469.94,2.12793,0.345536,0.006144,0.224736,0.00464,0.005728,0.004512,0.094208,0.005568
+1203,625.153,1.59961,0.325664,0.006144,0.210944,0.005824,0.004416,0.005632,0.087584,0.00512
+1204,529.952,1.88696,0.332,0.00576,0.21936,0.004512,0.00576,0.00448,0.087648,0.00448
+1205,503.256,1.98706,0.362496,0.006016,0.24384,0.006016,0.004224,0.005792,0.090464,0.006144
+1206,521.916,1.91602,0.5448,0.00576,0.428448,0.005184,0.004608,0.004576,0.092032,0.004192
+1207,342.79,2.91724,0.57344,0.006144,0.428032,0.004096,0.005664,0.004576,0.120704,0.004224
+1208,526.681,1.89868,0.356448,0.004832,0.235488,0.005536,0.004704,0.005408,0.094944,0.005536
+1209,509.136,1.96411,0.344064,0.006144,0.22096,0.00432,0.005408,0.004832,0.097856,0.004544
+1210,679.947,1.4707,0.337472,0.005312,0.215104,0.004864,0.005504,0.004736,0.096256,0.005696
+1211,633.565,1.57837,0.339072,0.005056,0.217088,0.00592,0.00432,0.005696,0.096576,0.004416
+1212,554.788,1.80249,0.350848,0.005888,0.2296,0.0048,0.005568,0.00464,0.095392,0.00496
+1213,479.12,2.08716,0.340192,0.005728,0.22176,0.00416,0.005536,0.004704,0.09392,0.004384
+1214,610.614,1.6377,0.331776,0.005952,0.215232,0.00592,0.005408,0.005088,0.089632,0.004544
+1215,639.301,1.56421,0.333696,0.005856,0.209408,0.004096,0.005664,0.004576,0.098144,0.005952
+1216,460.121,2.17334,0.350336,0.004896,0.227328,0.005664,0.004576,0.00544,0.09696,0.005472
+1217,568.258,1.75977,0.34032,0.005792,0.217216,0.004672,0.004096,0.006144,0.097728,0.004672
+1218,666.667,1.5,0.335008,0.00544,0.210848,0.004992,0.005376,0.004864,0.09824,0.005248
+1219,665.692,1.5022,0.339072,0.006144,0.21504,0.004096,0.005792,0.004448,0.098272,0.00528
+1220,521.12,1.91895,0.366592,0.006144,0.243744,0.006112,0.004096,0.006144,0.094208,0.006144
+1221,571.11,1.75098,0.550912,0.006144,0.428032,0.005856,0.004384,0.005504,0.095936,0.005056
+1222,631.028,1.58472,0.550656,0.00608,0.428096,0.004096,0.005408,0.004832,0.096256,0.005888
+1223,549.209,1.8208,0.551904,0.005088,0.428,0.004128,0.005408,0.004864,0.099872,0.004544
+1224,529.678,1.88794,0.559104,0.006144,0.429408,0.004768,0.006144,0.007904,0.098592,0.006144
+1225,507.874,1.96899,0.556288,0.00608,0.428096,0.005536,0.004704,0.005408,0.101088,0.005376
+1226,542.876,1.84204,0.557088,0.006144,0.43008,0.005152,0.00464,0.004576,0.101632,0.004864
+1227,580.417,1.7229,0.555488,0.005728,0.428928,0.005472,0.004768,0.005504,0.100512,0.004576
+1228,530.776,1.88403,0.55296,0.006144,0.429664,0.004512,0.004096,0.006144,0.096256,0.006144
+1229,483.133,2.06982,0.536096,0.005664,0.406496,0.006016,0.005536,0.005952,0.10112,0.005312
+1230,652.853,1.53174,0.337056,0.006144,0.212032,0.005056,0.005344,0.004896,0.098272,0.005312
+1231,579.022,1.72705,0.33856,0.004736,0.221056,0.004224,0.005728,0.004512,0.09392,0.004384
+1232,461.209,2.16821,0.346112,0.005728,0.221504,0.005536,0.0048,0.00528,0.098752,0.004512
+1233,565.199,1.76929,0.36864,0.005856,0.2472,0.004896,0.004192,0.00592,0.095968,0.004608
+1234,590.372,1.69385,0.340448,0.00576,0.217952,0.005696,0.004544,0.006112,0.095776,0.004608
+1235,574.635,1.74023,0.34176,0.00592,0.223136,0.004416,0.005312,0.004928,0.09216,0.005888
+1236,599.356,1.66846,0.345312,0.005792,0.220832,0.004992,0.005376,0.004864,0.098144,0.005312
+1237,658.309,1.51904,0.357888,0.005632,0.23808,0.005696,0.004544,0.005696,0.092608,0.005632
+1238,600.939,1.66406,0.332256,0.004832,0.21504,0.0056,0.00464,0.005408,0.090848,0.005888
+1239,616.682,1.62158,0.33792,0.008192,0.215072,0.005408,0.0048,0.005312,0.094528,0.004608
+1240,545.261,1.83398,0.385088,0.005184,0.269312,0.00576,0.00448,0.005536,0.088672,0.006144
+1241,572.707,1.74609,0.33488,0.005856,0.21504,0.004384,0.005344,0.004896,0.09408,0.00528
+1242,685.064,1.45972,0.329824,0.004704,0.212992,0.005696,0.004544,0.0056,0.090656,0.005632
+1243,596.389,1.67676,0.385312,0.0048,0.26208,0.00416,0.005568,0.004704,0.098272,0.005728
+1244,478.281,2.09082,0.354464,0.006144,0.229376,0.006144,0.004096,0.006144,0.098112,0.004448
+1245,693.532,1.44189,0.329728,0.006144,0.21024,0.0048,0.004096,0.00608,0.09376,0.004608
+1246,676.913,1.47729,0.32992,0.00576,0.20896,0.004992,0.005952,0.004416,0.094112,0.005728
+1247,663.75,1.50659,0.329728,0.006144,0.210944,0.005408,0.004832,0.005216,0.09104,0.006144
+1248,539.302,1.85425,0.366336,0.006144,0.241536,0.005568,0.0048,0.005248,0.097152,0.005888
+1249,523.651,1.90967,0.536224,0.005856,0.40784,0.006144,0.005568,0.004672,0.100352,0.005792
+1250,632.685,1.58057,0.3376,0.00608,0.211008,0.005856,0.004384,0.005696,0.098752,0.005824
+1251,407.806,2.45215,0.34816,0.006048,0.2224,0.004928,0.004192,0.00592,0.099872,0.0048
+1252,522.582,1.91357,0.346144,0.005728,0.221216,0.005536,0.004832,0.004416,0.099904,0.004512
+1253,622.02,1.60767,0.337696,0.006144,0.212864,0.004224,0.005472,0.004768,0.098304,0.00592
+1254,617.705,1.6189,0.350208,0.005248,0.217376,0.004704,0.004096,0.006112,0.107712,0.00496
+1255,620.7,1.61108,0.344064,0.006144,0.212896,0.004192,0.005568,0.004672,0.104448,0.006144
+1256,558.266,1.79126,0.412352,0.006848,0.27808,0.004544,0.005824,0.004416,0.106496,0.006144
+1257,567.706,1.76147,0.350624,0.005728,0.219776,0.00448,0.005216,0.005024,0.104448,0.005952
+1258,672.137,1.48779,0.344128,0.005696,0.210912,0.004768,0.0056,0.005952,0.105184,0.006016
+1259,649.128,1.54053,0.35968,0.005728,0.227808,0.005984,0.004256,0.005728,0.104864,0.005312
+1260,483.589,2.06787,0.434656,0.005984,0.301664,0.005568,0.004704,0.005696,0.10656,0.00448
+1261,664.827,1.50415,0.339936,0.005568,0.209568,0.005792,0.004448,0.005536,0.103008,0.006016
+1262,597.607,1.67334,0.347328,0.006144,0.21456,0.004576,0.005792,0.004448,0.10624,0.005568
+1263,646.261,1.54736,0.338112,0.005728,0.209504,0.005952,0.004288,0.005824,0.10192,0.004896
+1264,581.901,1.71851,0.385024,0.006144,0.251904,0.006144,0.004096,0.00608,0.104512,0.006144
+1265,504.869,1.98071,0.54272,0.00592,0.407776,0.006144,0.005792,0.004448,0.106496,0.006144
+1266,617.984,1.61816,0.344064,0.006144,0.212416,0.004672,0.005728,0.004512,0.104448,0.006144
+1267,615.847,1.62378,0.33792,0.005984,0.20848,0.004672,0.005216,0.005024,0.103872,0.004672
+1268,499.33,2.00269,0.411296,0.005728,0.277184,0.005568,0.004832,0.005216,0.107424,0.005344
+1269,539.444,1.85376,0.360512,0.00624,0.233856,0.004448,0.00528,0.00496,0.100352,0.005376
+1270,628.607,1.59082,0.335872,0.005792,0.211328,0.00576,0.004448,0.005568,0.09824,0.004736
+1271,655.36,1.52588,0.338656,0.00592,0.213952,0.005888,0.004352,0.005696,0.097952,0.004896
+1272,536.828,1.86279,0.398912,0.006112,0.273632,0.004928,0.00544,0.0048,0.098304,0.005696
+1273,542.588,1.84302,0.536224,0.006144,0.40896,0.004736,0.006144,0.005376,0.099104,0.00576
+1274,625.344,1.59912,0.338016,0.005728,0.214688,0.004864,0.004352,0.005696,0.096704,0.005984
+1275,526.749,1.89844,0.358336,0.006144,0.229376,0.00416,0.005632,0.004544,0.1024,0.00608
+1276,528.789,1.89111,0.380832,0.005984,0.256128,0.005536,0.004736,0.005376,0.097024,0.006048
+1277,440.62,2.26953,0.750208,0.004736,0.628768,0.00512,0.004832,0.00576,0.096032,0.00496
+1278,531.051,1.88306,0.36864,0.006144,0.243328,0.005536,0.004864,0.004416,0.09936,0.004992
+1279,537.956,1.85889,0.36336,0.00496,0.240832,0.004864,0.00416,0.005888,0.09776,0.004896
+1280,595.522,1.6792,0.343616,0.005728,0.219776,0.005792,0.004448,0.0056,0.0968,0.005472
+1281,604.397,1.65454,0.340224,0.005696,0.21712,0.004864,0.00416,0.005888,0.096512,0.005984
+1282,650.572,1.53711,0.338656,0.005088,0.220512,0.004704,0.005696,0.004544,0.09216,0.005952
+1283,695.18,1.43848,0.339392,0.00592,0.219744,0.005472,0.004768,0.005216,0.09296,0.005312
+1284,428.183,2.33545,0.343648,0.00576,0.219488,0.005536,0.004832,0.004256,0.098304,0.005472
+1285,594.657,1.68164,0.33456,0.004832,0.212416,0.004672,0.004128,0.00608,0.097568,0.004864
+1286,562.869,1.77661,0.385024,0.006144,0.257088,0.005056,0.005312,0.00496,0.10176,0.004704
+1287,466.196,2.14502,0.38912,0.006144,0.26352,0.004768,0.004096,0.006048,0.0984,0.006144
+1288,417.618,2.39453,0.352256,0.006144,0.226368,0.005056,0.005856,0.004384,0.099424,0.005024
+1289,690.609,1.448,0.332032,0.005088,0.208832,0.005504,0.004736,0.006144,0.096256,0.005472
+1290,579.186,1.72656,0.334176,0.005728,0.21504,0.004864,0.005536,0.004704,0.093472,0.004832
+1291,469.509,2.12988,0.39808,0.004864,0.274464,0.005376,0.004832,0.005216,0.098208,0.00512
+1292,595.955,1.67798,0.338784,0.00496,0.21504,0.006144,0.004096,0.006144,0.096256,0.006144
+1293,613.725,1.62939,0.33792,0.006144,0.212992,0.00528,0.004832,0.004416,0.099232,0.005024
+1294,476.445,2.09888,0.345984,0.006144,0.220416,0.004864,0.005504,0.004736,0.098304,0.006016
+1295,462.407,2.1626,0.36304,0.005728,0.238528,0.004096,0.005664,0.004576,0.099392,0.005056
+1296,518.415,1.92896,0.353536,0.005728,0.229216,0.004896,0.005472,0.004768,0.098144,0.005312
+1297,612.715,1.63208,0.3664,0.006016,0.241792,0.005696,0.004544,0.005504,0.096896,0.005952
+1298,580.252,1.72339,0.349376,0.006144,0.226784,0.004672,0.005696,0.0056,0.095168,0.005312
+1299,516.064,1.93774,0.345376,0.005856,0.221472,0.004096,0.005856,0.004416,0.098272,0.005408
+1300,612.074,1.63379,0.33616,0.005696,0.213728,0.004096,0.005632,0.00592,0.09632,0.004768
+1301,687.479,1.45459,0.342464,0.00576,0.211392,0.00448,0.005248,0.004992,0.104448,0.006144
+1302,527.971,1.89404,0.395264,0.005984,0.264352,0.005984,0.004256,0.005952,0.10416,0.004576
+1303,398.948,2.50659,0.365984,0.005728,0.231904,0.004192,0.005536,0.004704,0.108544,0.005376
+1304,662.783,1.50879,0.34208,0.006016,0.211136,0.006048,0.004192,0.005856,0.104352,0.00448
+1305,548.253,1.82397,0.346112,0.006144,0.214304,0.004832,0.004096,0.005984,0.104608,0.006144
+1306,458.371,2.18164,0.400192,0.004928,0.270336,0.00608,0.00416,0.005984,0.10368,0.005024
+1307,658.627,1.51831,0.345888,0.006144,0.212,0.004864,0.00432,0.005664,0.106976,0.00592
+1308,654.941,1.52686,0.344064,0.006176,0.210944,0.006112,0.004096,0.006144,0.105536,0.005056
+1309,585.645,1.70752,0.342944,0.005024,0.210976,0.005472,0.004736,0.005312,0.105312,0.006112
+1310,624.962,1.6001,0.392064,0.006112,0.260992,0.00608,0.00416,0.005984,0.103808,0.004928
+1311,579.759,1.72485,0.340064,0.006144,0.215136,0.005248,0.004832,0.004416,0.0992,0.005088
+1312,558.038,1.79199,0.359488,0.00592,0.231328,0.005536,0.004704,0.00544,0.10128,0.00528
+1313,645.039,1.55029,0.339968,0.00592,0.211168,0.005152,0.004832,0.004416,0.10352,0.00496
+1314,555.014,1.80176,0.388928,0.005728,0.259936,0.004928,0.005472,0.004768,0.1024,0.005696
+1315,566.999,1.76367,0.55952,0.00576,0.4288,0.004096,0.0056,0.00464,0.106496,0.004128
+1316,586.064,1.7063,0.555424,0.005792,0.428544,0.004352,0.004096,0.006048,0.10224,0.004352
+1317,579.924,1.72437,0.557696,0.00496,0.43008,0.004096,0.005536,0.004704,0.1024,0.00592
+1318,491.422,2.03491,0.559104,0.006144,0.43008,0.005504,0.004672,0.00416,0.1024,0.006144
+1319,510.151,1.96021,0.538784,0.005536,0.408192,0.005536,0.004832,0.005984,0.104128,0.004576
+1320,628.607,1.59082,0.341408,0.005728,0.21136,0.006144,0.004096,0.006144,0.1024,0.005536
+1321,522.449,1.91406,0.374784,0.006144,0.245344,0.004512,0.005216,0.005056,0.10352,0.004992
+1322,449.468,2.22485,0.339968,0.006144,0.217088,0.005696,0.004544,0.005504,0.096352,0.00464
+1323,638.902,1.56519,0.350208,0.006144,0.231424,0.004096,0.005792,0.004448,0.093568,0.004736
+1324,625.821,1.5979,0.327584,0.00576,0.21104,0.004704,0.005696,0.004544,0.090112,0.005728
+1325,620.7,1.61108,0.333856,0.006144,0.214208,0.004864,0.00416,0.005952,0.093664,0.004864
+1326,566.137,1.76636,0.380864,0.00592,0.262368,0.004096,0.005632,0.004608,0.09216,0.00608
+1327,591.48,1.69067,0.334208,0.005728,0.217312,0.004672,0.004096,0.006144,0.091904,0.004352
+1328,634.449,1.57617,0.328096,0.00576,0.207648,0.005696,0.004544,0.005472,0.094048,0.004928
+1329,645.751,1.54858,0.33536,0.006144,0.212992,0.006144,0.005312,0.004928,0.094208,0.005632
+1330,456.176,2.19214,0.390464,0.005728,0.269856,0.005024,0.005344,0.004928,0.094176,0.005408
+1331,603.151,1.65796,0.344896,0.00496,0.221184,0.004096,0.005728,0.004512,0.098304,0.006112
+1332,676.131,1.479,0.334944,0.006144,0.208928,0.006112,0.005248,0.004992,0.098208,0.005312
+1333,647.896,1.54346,0.348192,0.006176,0.229344,0.004096,0.005856,0.004384,0.09376,0.004576
+1334,508.189,1.96777,0.382848,0.005952,0.262432,0.006048,0.005248,0.004992,0.09216,0.006016
+1335,609.524,1.64062,0.327296,0.005728,0.208768,0.004864,0.00416,0.005888,0.092416,0.005472
+1336,649.026,1.54077,0.337024,0.006144,0.21248,0.004608,0.005728,0.005568,0.097184,0.005312
+1337,582.563,1.71655,0.342368,0.005696,0.217088,0.004864,0.004128,0.005888,0.099776,0.004928
+1338,600.939,1.66406,0.346176,0.006208,0.223232,0.006112,0.004128,0.005984,0.09616,0.004352
+1339,574.958,1.73926,0.36368,0.004384,0.241536,0.004096,0.00576,0.00448,0.09808,0.005344
+1340,519.533,1.9248,0.35248,0.006208,0.228512,0.004992,0.005376,0.004864,0.09808,0.004448
+1341,699.215,1.43018,0.338432,0.005088,0.214944,0.00512,0.004832,0.004384,0.098304,0.00576
+1342,544.971,1.83496,0.397664,0.005696,0.27728,0.006048,0.004192,0.005824,0.09248,0.006144
+1343,490.48,2.03882,0.535008,0.005664,0.408512,0.0056,0.00464,0.00608,0.099424,0.005088
+1344,657.569,1.52075,0.34,0.006144,0.212992,0.005728,0.004512,0.005568,0.09888,0.006176
+1345,614.646,1.62695,0.337536,0.005728,0.213248,0.004768,0.004096,0.006016,0.097696,0.005984
+1346,553.14,1.80786,0.35536,0.006144,0.227328,0.00592,0.00432,0.005696,0.100608,0.005344
+1347,561.404,1.78125,0.530176,0.00576,0.407936,0.006144,0.005728,0.004512,0.094208,0.005888
+1348,448.631,2.229,0.333824,0.006144,0.21216,0.004928,0.00544,0.0048,0.095712,0.00464
+1349,527.02,1.89746,0.35072,0.004768,0.230752,0.004768,0.004096,0.00608,0.094272,0.005984
+1350,583.227,1.7146,0.377792,0.005056,0.258048,0.005664,0.004576,0.005824,0.09392,0.004704
+1351,613.265,1.63062,0.33728,0.005792,0.21536,0.004128,0.00576,0.00448,0.096256,0.005504
+1352,637.51,1.5686,0.335008,0.00576,0.213376,0.005632,0.004608,0.005312,0.09504,0.00528
+1353,638.802,1.56543,0.336192,0.004864,0.215072,0.005632,0.004576,0.005472,0.09488,0.005696
+1354,555.767,1.79932,0.391232,0.006144,0.270336,0.005888,0.004352,0.005664,0.094432,0.004416
+1355,603.952,1.65576,0.339968,0.006144,0.21712,0.0056,0.004608,0.00544,0.096224,0.004832
+1356,714.834,1.39893,0.329728,0.006144,0.20864,0.005536,0.004832,0.004448,0.095328,0.0048
+1357,280.318,3.56738,0.387104,0.005728,0.26624,0.004864,0.004256,0.006144,0.094208,0.005664
+1358,452.147,2.21167,0.352896,0.004832,0.232448,0.005024,0.005344,0.004896,0.095424,0.004928
+1359,574.313,1.74121,0.335872,0.006144,0.217088,0.005376,0.00416,0.0048,0.094016,0.004288
+1360,611.708,1.63477,0.346112,0.006144,0.224832,0.004544,0.005824,0.004416,0.094208,0.006144
+1361,424.72,2.35449,0.397792,0.005728,0.273248,0.005792,0.004448,0.006016,0.097824,0.004736
+1362,629.863,1.58765,0.33792,0.006144,0.21504,0.005536,0.004704,0.005312,0.09504,0.006144
+1363,609.615,1.64038,0.335872,0.006144,0.21456,0.004576,0.005536,0.004704,0.09568,0.004672
+1364,586.735,1.70435,0.339968,0.006144,0.217024,0.005536,0.004768,0.00544,0.09648,0.004576
+1365,493.97,2.02441,0.350784,0.004832,0.23504,0.004576,0.00512,0.005152,0.09008,0.005984
+1366,627.451,1.59375,0.32992,0.005728,0.215648,0.005728,0.004512,0.005504,0.088288,0.004512
+1367,646.771,1.54614,0.333632,0.005984,0.2152,0.005184,0.004832,0.004416,0.092064,0.005952
+1368,695.298,1.43823,0.325632,0.006144,0.210272,0.004768,0.0056,0.00464,0.089408,0.0048
+1369,565.433,1.76855,0.388608,0.006144,0.272224,0.004256,0.005504,0.004736,0.090112,0.005632
+1370,518.022,1.93042,0.5256,0.0056,0.408096,0.00608,0.00416,0.005888,0.090368,0.005408
+1371,642.913,1.55542,0.323584,0.006144,0.208896,0.00576,0.00448,0.005568,0.086592,0.006144
+1372,646.873,1.5459,0.325632,0.005888,0.21328,0.005824,0.004384,0.005632,0.085696,0.004928
+1373,534.726,1.87012,0.407168,0.00576,0.289504,0.004096,0.005792,0.004448,0.09216,0.005408
+1374,525.532,1.90283,0.33696,0.00592,0.221408,0.005856,0.004384,0.005696,0.088416,0.00528
+1375,635.236,1.57422,0.327296,0.006144,0.208896,0.00544,0.0048,0.005216,0.09104,0.00576
+1376,652.853,1.53174,0.33216,0.004896,0.214048,0.005088,0.005312,0.004928,0.09216,0.005728
+1377,566.372,1.76562,0.34688,0.004864,0.230496,0.004864,0.004256,0.005792,0.092032,0.004576
+1378,544.174,1.83765,0.526688,0.005088,0.40912,0.004576,0.005632,0.00464,0.092128,0.005504
+1379,588.421,1.69946,0.527872,0.006144,0.408832,0.004864,0.006144,0.005312,0.090944,0.005632
+1380,583.06,1.71509,0.342016,0.00592,0.224992,0.004608,0.00576,0.00448,0.090208,0.006048
+1381,590.542,1.69336,0.382976,0.005952,0.26608,0.004448,0.005248,0.005024,0.09008,0.006144
+1382,545.043,1.83472,0.390976,0.004928,0.27168,0.0048,0.005568,0.004672,0.094048,0.00528
+1383,581.57,1.71948,0.336352,0.005696,0.21392,0.005472,0.004768,0.005376,0.09632,0.0048
+1384,553.214,1.80762,0.34368,0.006144,0.22272,0.00464,0.005408,0.0048,0.094208,0.00576
+1385,556.673,1.79639,0.395264,0.007424,0.27072,0.00448,0.005216,0.005024,0.097408,0.004992
+1386,571.349,1.75024,0.346016,0.006144,0.219136,0.006144,0.004096,0.006048,0.0984,0.006048
+1387,611.343,1.63574,0.341216,0.006048,0.212832,0.004352,0.005376,0.004864,0.1024,0.005344
+1388,674.572,1.48242,0.346528,0.005984,0.20672,0.004832,0.005536,0.004704,0.11264,0.006112
+1389,541.369,1.84717,0.4296,0.005728,0.29088,0.004736,0.005248,0.004992,0.11264,0.005376
+1390,601.292,1.66309,0.356352,0.005856,0.21504,0.004384,0.005216,0.005024,0.114688,0.006144
+1391,649.643,1.53931,0.34816,0.005472,0.211616,0.005536,0.004704,0.005312,0.11072,0.0048
+1392,562.947,1.77637,0.381696,0.00512,0.245696,0.00416,0.005536,0.004704,0.110592,0.005888
+1393,447.65,2.23389,0.371776,0.006048,0.232768,0.004896,0.005376,0.004864,0.112416,0.005408
+1394,510.278,1.95972,0.546432,0.004544,0.40912,0.004576,0.005824,0.004416,0.11264,0.005312
+1395,641.303,1.55933,0.346656,0.004992,0.210944,0.004096,0.005632,0.004608,0.110592,0.005792
+1396,520.987,1.91943,0.35824,0.005856,0.221472,0.006144,0.004096,0.006112,0.108576,0.005984
+1397,423.71,2.36011,0.35184,0.005856,0.221184,0.004384,0.005376,0.004864,0.104192,0.005984
+1398,658.733,1.51807,0.343808,0.007328,0.20976,0.00576,0.00448,0.005504,0.105088,0.005888
+1399,622.966,1.60522,0.34752,0.005728,0.211424,0.00576,0.00448,0.005568,0.10912,0.00544
+1400,538.593,1.85669,0.38576,0.0048,0.253952,0.006144,0.004096,0.00608,0.106208,0.00448
+1401,342.962,2.91577,0.37888,0.006144,0.247808,0.00512,0.004832,0.004384,0.10576,0.004832
+1402,539.089,1.85498,0.36608,0.005856,0.227648,0.005824,0.004384,0.005728,0.111008,0.005632
+1403,503.503,1.98608,0.409536,0.005952,0.272576,0.004096,0.005664,0.004576,0.110592,0.00608
+1404,387.989,2.57739,0.372736,0.006016,0.235648,0.005568,0.004672,0.005344,0.110528,0.00496
+1405,593.968,1.68359,0.354656,0.004928,0.216128,0.004992,0.00416,0.005984,0.1128,0.005664
+1406,445.944,2.24243,0.349696,0.006144,0.210944,0.006144,0.005216,0.005024,0.110592,0.005632
+1407,506.304,1.9751,0.360864,0.005696,0.23024,0.004096,0.005728,0.004512,0.106144,0.004448
+1408,452.697,2.20898,0.369568,0.005024,0.241664,0.0056,0.00464,0.005376,0.102656,0.004608
+1409,543.597,1.8396,0.348,0.005952,0.21872,0.004704,0.004096,0.00608,0.102464,0.005984
+1410,565.199,1.76929,0.359744,0.006144,0.23072,0.0048,0.005664,0.004576,0.1024,0.00544
+1411,509.77,1.96167,0.351488,0.006112,0.2224,0.004864,0.004192,0.00592,0.102624,0.005376
+1412,608.98,1.64209,0.339968,0.006144,0.216736,0.005536,0.004832,0.004416,0.097664,0.00464
+1413,651.814,1.53418,0.331776,0.006112,0.21024,0.004832,0.004096,0.006016,0.096192,0.004288
+1414,657.358,1.52124,0.352256,0.00608,0.227392,0.0056,0.00464,0.005984,0.096416,0.006144
+1415,462.459,2.16235,0.342432,0.004992,0.222912,0.004416,0.005312,0.00496,0.094176,0.005664
+1416,595.003,1.68066,0.336192,0.005728,0.215744,0.005536,0.004736,0.005376,0.092928,0.006144
+1417,602.796,1.65894,0.331776,0.006112,0.212256,0.004864,0.004096,0.006016,0.093536,0.004896
+1418,546.716,1.8291,0.366592,0.005792,0.250208,0.005696,0.004544,0.00592,0.089568,0.004864
+1419,463.506,2.15747,0.334272,0.004704,0.217088,0.00544,0.0048,0.005312,0.090944,0.005984
+1420,622.776,1.60571,0.328992,0.006144,0.208544,0.005536,0.004832,0.004416,0.094112,0.005408
+1421,536.828,1.86279,0.3296,0.00576,0.211616,0.005632,0.004576,0.005472,0.090784,0.00576
+1422,536.126,1.86523,0.38304,0.005728,0.26064,0.006144,0.005184,0.005056,0.094208,0.00608
+1423,606.186,1.64966,0.332832,0.006144,0.210624,0.004416,0.00528,0.00496,0.096096,0.005312
+1424,645.141,1.55005,0.34656,0.005728,0.229856,0.005536,0.004832,0.004352,0.091232,0.005024
+1425,561.789,1.78003,0.329952,0.005696,0.213504,0.004256,0.005472,0.004768,0.090112,0.006144
+1426,570.474,1.75293,0.345216,0.00768,0.216576,0.00512,0.00528,0.00496,0.10032,0.00528
+1427,510.532,1.95874,0.535968,0.006048,0.407648,0.006144,0.005792,0.004448,0.100352,0.005536
+1428,600.939,1.66406,0.338432,0.005728,0.213728,0.005536,0.004832,0.00528,0.097184,0.006144
+1429,637.51,1.5686,0.335648,0.006048,0.208384,0.004704,0.004096,0.006112,0.100384,0.00592
+1430,632.099,1.58203,0.394656,0.006144,0.268032,0.005536,0.004832,0.004416,0.10016,0.005536
+1431,492.071,2.03223,0.34672,0.004704,0.223232,0.005568,0.004672,0.005408,0.097024,0.006112
+1432,603.863,1.65601,0.350112,0.006016,0.224576,0.004928,0.005408,0.004864,0.098272,0.006048
+1433,482.507,2.07251,0.424704,0.004864,0.301056,0.005664,0.004576,0.005504,0.098592,0.004448
+1434,455.769,2.19409,0.4096,0.006144,0.290336,0.004576,0.005792,0.004448,0.093344,0.00496
+1435,599.532,1.66797,0.338336,0.005792,0.211712,0.005216,0.004832,0.0056,0.09904,0.006144
+1436,667.427,1.49829,0.336512,0.004736,0.212672,0.005536,0.004832,0.004288,0.099552,0.004896
+1437,644.735,1.55103,0.340736,0.004864,0.217088,0.005696,0.004544,0.005568,0.097952,0.005024
+1438,546.716,1.8291,0.392576,0.005984,0.271776,0.004864,0.005536,0.004704,0.094208,0.005504
+1439,632.099,1.58203,0.338048,0.005984,0.212992,0.004384,0.005344,0.004928,0.098272,0.006144
+1440,650.262,1.53784,0.332448,0.00576,0.211936,0.006144,0.004096,0.005952,0.094112,0.004448
+1441,484.906,2.06226,0.335488,0.006144,0.217088,0.005312,0.004864,0.00432,0.092,0.00576
+1442,556.144,1.7981,0.393632,0.00576,0.264544,0.004576,0.005792,0.004448,0.10368,0.004832
+1443,626.491,1.59619,0.346592,0.005824,0.213792,0.005728,0.004512,0.006144,0.105792,0.0048
+1444,606.905,1.64771,0.338112,0.005728,0.213632,0.006112,0.005792,0.004448,0.097856,0.004544
+1445,635.729,1.573,0.331008,0.00608,0.20896,0.005248,0.004832,0.004448,0.096064,0.005376
+1446,527.563,1.89551,0.397312,0.006144,0.27552,0.005056,0.005312,0.004928,0.095552,0.0048
+1447,588.421,1.69946,0.356352,0.005952,0.219328,0.004096,0.005632,0.004608,0.110592,0.006144
+1448,692.126,1.44482,0.343488,0.006144,0.208928,0.00592,0.004288,0.005728,0.106912,0.005568
+1449,632.782,1.58032,0.340512,0.005696,0.209888,0.004128,0.005856,0.004448,0.10544,0.005056
+1450,514.961,1.94189,0.352224,0.006144,0.218976,0.005536,0.004864,0.005952,0.10464,0.006112
+1451,503.009,1.98804,0.544192,0.006144,0.40896,0.004736,0.006144,0.005376,0.107264,0.005568
+1452,601.204,1.66333,0.347968,0.005952,0.214688,0.00464,0.005728,0.004512,0.106496,0.005952
+1453,615.57,1.62451,0.347456,0.008192,0.211168,0.005664,0.004576,0.005472,0.107072,0.005312
+1454,553.439,1.80688,0.398816,0.005728,0.26256,0.0056,0.00464,0.005344,0.109344,0.0056
+1455,601.734,1.66187,0.353504,0.005952,0.216832,0.004544,0.005184,0.005056,0.110592,0.005344
+1456,554.038,1.80493,0.35824,0.006144,0.212992,0.006144,0.004096,0.006144,0.116736,0.005984
+1457,609.796,1.63989,0.352192,0.006144,0.210944,0.005376,0.004832,0.00528,0.113536,0.00608
+1458,537.745,1.85962,0.369984,0.006144,0.229376,0.004096,0.005664,0.004576,0.114656,0.005472
+1459,500.917,1.99634,0.5592,0.007456,0.413888,0.004736,0.006144,0.005408,0.116512,0.005056
+1460,590.542,1.69336,0.34992,0.005856,0.21328,0.006144,0.004096,0.006048,0.10864,0.005856
+1461,546.279,1.83057,0.393984,0.004864,0.256032,0.005568,0.00464,0.005472,0.112992,0.004416
+1462,448.631,2.229,0.392384,0.006144,0.249856,0.005664,0.004576,0.00544,0.115392,0.005312
+1463,578.613,1.72827,0.342144,0.005696,0.21328,0.004416,0.005536,0.004704,0.1024,0.006112
+1464,633.271,1.5791,0.34816,0.006144,0.220768,0.005568,0.0048,0.004384,0.100352,0.006144
+1465,492.841,2.02905,0.364544,0.006144,0.23552,0.0056,0.00464,0.005408,0.10112,0.006112
+1466,512.513,1.95117,0.39328,0.00576,0.268032,0.0048,0.005568,0.004704,0.099808,0.004608
+1467,495.644,2.01758,0.361984,0.006176,0.231392,0.00528,0.004896,0.00528,0.103328,0.005632
+1468,565.98,1.76685,0.393248,0.005792,0.26224,0.005536,0.004832,0.004256,0.106048,0.004544
+1469,536.758,1.86304,0.360448,0.006144,0.231072,0.004448,0.00528,0.00496,0.103712,0.004832
+1470,499.634,2.00146,0.352256,0.005792,0.231296,0.004576,0.005824,0.004416,0.095552,0.0048
+1471,599.093,1.66919,0.356352,0.00608,0.225344,0.0056,0.00464,0.005472,0.104512,0.004704
+1472,561.557,1.78076,0.347744,0.006144,0.218944,0.004288,0.005408,0.004832,0.1024,0.005728
+1473,521.053,1.91919,0.391168,0.006144,0.26192,0.00432,0.005376,0.004864,0.10416,0.004384
+1474,551.501,1.81323,0.34816,0.006144,0.222784,0.004544,0.005856,0.004384,0.099712,0.004736
+1475,609.615,1.64038,0.335712,0.006048,0.21152,0.005888,0.004352,0.005728,0.096672,0.005504
+1476,625.153,1.59961,0.352864,0.005088,0.22736,0.006112,0.005472,0.004768,0.098304,0.00576
+1477,538.239,1.85791,0.407552,0.006144,0.284672,0.005152,0.00464,0.004544,0.096256,0.006144
+1478,577.064,1.73291,0.336032,0.004832,0.212992,0.006144,0.004096,0.00608,0.09632,0.005568
+1479,663.212,1.50781,0.329728,0.006144,0.208896,0.005472,0.004768,0.005376,0.093984,0.005088
+1480,632.88,1.58008,0.336736,0.00496,0.212896,0.005536,0.0048,0.005216,0.098752,0.004576
+1481,513.283,1.94824,0.405056,0.006144,0.280576,0.005376,0.004864,0.005216,0.097184,0.005696
+1482,654.836,1.5271,0.339968,0.006144,0.21504,0.00608,0.00416,0.005888,0.096512,0.006144
+1483,639.201,1.56445,0.337376,0.006048,0.212288,0.004864,0.004128,0.005984,0.098464,0.0056
+1484,548.107,1.82446,0.354496,0.005728,0.229984,0.005888,0.004352,0.005824,0.096576,0.006144
+1485,558.342,1.79102,0.363648,0.00576,0.233472,0.00448,0.005248,0.004992,0.104384,0.005312
+1486,510.087,1.96045,0.540896,0.004928,0.409088,0.004608,0.00576,0.00448,0.106496,0.005536
+1487,582.646,1.71631,0.338048,0.005728,0.2112,0.004384,0.005312,0.004928,0.102176,0.00432
+1488,726.499,1.37646,0.334432,0.005824,0.207296,0.004576,0.005792,0.004448,0.1016,0.004896
+1489,546.571,1.82959,0.365376,0.004928,0.23872,0.004864,0.004224,0.005856,0.102336,0.004448
+1490,472.488,2.11646,0.540704,0.006144,0.40864,0.005056,0.005312,0.004928,0.105536,0.005088
+1491,659.475,1.51636,0.34,0.005952,0.20912,0.004096,0.0056,0.00464,0.106144,0.004448
+1492,668.735,1.49536,0.345376,0.005728,0.211456,0.005824,0.004416,0.005632,0.107008,0.005312
+1493,427.87,2.33716,0.390336,0.006144,0.255424,0.004672,0.005184,0.005056,0.10832,0.005536
+1494,609.615,1.64038,0.348832,0.004832,0.21504,0.005792,0.004448,0.0056,0.10704,0.00608
+1495,646.567,1.54663,0.346112,0.0056,0.213536,0.00432,0.005632,0.004416,0.10816,0.004448
+1496,579.513,1.72559,0.34608,0.006112,0.215072,0.005984,0.004256,0.00576,0.102784,0.006112
+1497,606.007,1.65015,0.374784,0.00576,0.244128,0.00528,0.004928,0.005344,0.104992,0.004352
+1498,594.917,1.68091,0.34816,0.006144,0.217088,0.005952,0.004288,0.00576,0.102784,0.006144
+1499,606.725,1.64819,0.342016,0.005888,0.2112,0.00544,0.0048,0.005376,0.104704,0.004608
+1500,646.465,1.54688,0.350208,0.006144,0.208896,0.006144,0.005184,0.005056,0.113856,0.004928
+1501,603.507,1.65698,0.360608,0.005888,0.221504,0.004608,0.004192,0.006048,0.11264,0.005728
+1502,398.366,2.51025,0.366592,0.006144,0.228384,0.005088,0.00528,0.00496,0.111712,0.005024
+1503,640.701,1.56079,0.371584,0.005056,0.21632,0.004864,0.004096,0.006144,0.129024,0.00608
+1504,622.303,1.60693,0.360288,0.006144,0.212992,0.005216,0.004864,0.005312,0.119776,0.005984
+1505,549.356,1.82031,0.392768,0.006144,0.243712,0.005664,0.004576,0.0056,0.121376,0.005696
+1506,605.38,1.65186,0.354144,0.006144,0.210944,0.006144,0.004096,0.005952,0.11488,0.005984
+1507,622.398,1.60669,0.34816,0.006144,0.21504,0.005632,0.004608,0.005504,0.106432,0.0048
+1508,606.276,1.64941,0.356064,0.004832,0.216288,0.0048,0.005568,0.004672,0.114624,0.00528
+1509,557.582,1.79346,0.3768,0.006144,0.219168,0.005664,0.004544,0.005472,0.129696,0.006112
+1510,578.858,1.72754,0.373376,0.00496,0.216992,0.005536,0.004672,0.004224,0.131072,0.00592
+1511,570.235,1.75366,0.365536,0.005088,0.212992,0.005152,0.004832,0.004416,0.12816,0.004896
+1512,563.721,1.77393,0.393952,0.0064,0.240096,0.006144,0.00512,0.00512,0.124928,0.006144
+1513,405.625,2.46533,0.40352,0.005728,0.25584,0.004768,0.004096,0.006144,0.120832,0.006112
+1514,547.96,1.82495,0.378336,0.005728,0.232032,0.005632,0.004608,0.00544,0.119488,0.005408
+1515,620.794,1.61084,0.347008,0.004992,0.210208,0.004832,0.00544,0.0048,0.111936,0.0048
+1516,470.372,2.12598,0.357792,0.006144,0.220512,0.004768,0.005632,0.00464,0.11056,0.005536
+1517,384.782,2.59888,0.363424,0.005024,0.233472,0.004096,0.005632,0.004608,0.105856,0.004736
+1518,650.469,1.53735,0.354336,0.005728,0.220832,0.00496,0.00544,0.0048,0.106496,0.00608
+1519,495.584,2.01782,0.376928,0.00576,0.243584,0.004704,0.004096,0.006112,0.106528,0.006144
+1520,459.347,2.177,0.433888,0.006144,0.300352,0.0048,0.0056,0.004672,0.106464,0.005856
+1521,616.682,1.62158,0.335744,0.006048,0.21104,0.004096,0.00544,0.0048,0.098304,0.006016
+1522,658.945,1.51758,0.34032,0.005728,0.213216,0.0048,0.0056,0.00464,0.100352,0.005984
+1523,510.723,1.95801,0.346112,0.006144,0.221184,0.005664,0.004576,0.00528,0.098368,0.004896
+1524,472.925,2.1145,0.370016,0.005792,0.243552,0.0048,0.005568,0.004672,0.100352,0.00528
+1525,651.399,1.53516,0.354848,0.005888,0.22608,0.005472,0.004768,0.005248,0.10256,0.004832
+1526,571.748,1.74902,0.34336,0.006144,0.21504,0.005472,0.004768,0.005248,0.101248,0.00544
+1527,534.098,1.87231,0.34816,0.005888,0.217344,0.005696,0.004544,0.005536,0.103008,0.006144
+1528,478.169,2.09131,0.350752,0.005856,0.222112,0.005856,0.004384,0.005696,0.1008,0.006048
+1529,630.542,1.58594,0.335872,0.00592,0.211168,0.004096,0.005792,0.004448,0.09984,0.004608
+1530,605.738,1.65088,0.338304,0.005728,0.211808,0.006144,0.004096,0.005984,0.098464,0.00608
+1531,560.405,1.78442,0.360576,0.00576,0.234016,0.005728,0.004512,0.005504,0.098944,0.006112
+1532,457.551,2.18555,0.34208,0.00576,0.223776,0.004544,0.005824,0.004416,0.09216,0.0056
+1533,644.735,1.55103,0.326016,0.005728,0.211104,0.004736,0.004096,0.006112,0.089248,0.004992
+1534,690.143,1.44897,0.324768,0.005792,0.208448,0.004896,0.006048,0.005248,0.089024,0.005312
+1535,621.642,1.60864,0.350784,0.005728,0.231424,0.005056,0.004128,0.005856,0.092448,0.006144
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..d04a776
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,98.7896,10.1394,8.03323,0.0387713,0.61435,0.00803303,0.00585438,0.0165496,0.0508889,0.0540457,7.18587,0.0588711
+max_1024,106.767,12.752,9.05389,0.202112,1.3783,0.024352,0.022528,0.03392,0.067456,0.07168,7.49987,0.080768
+min_1024,78.4194,9.36621,7.88496,0.036736,0.546624,0.006112,0.004064,0.014944,0.049152,0.051872,7.07302,0.057312
+512,95.988,10.418,8.21834,0.039008,0.588128,0.00816,0.006144,0.01616,0.049376,0.05456,7.39811,0.058688
+513,96.4355,10.3696,8.31488,0.038912,0.673792,0.008192,0.006144,0.016288,0.050464,0.053344,7.40835,0.059392
+514,93.0994,10.7412,8.25344,0.038848,0.58992,0.00816,0.0056,0.016192,0.049888,0.053248,7.43363,0.057952
+515,99.8051,10.0195,8.23219,0.038912,0.572512,0.008288,0.004928,0.016384,0.050592,0.053632,7.42829,0.058656
+516,97.3477,10.2725,8.27552,0.037152,0.59152,0.007968,0.004704,0.016384,0.0512,0.053216,7.45472,0.058656
+517,99.22,10.0786,8.24944,0.038336,0.615424,0.008096,0.005568,0.016064,0.050176,0.054624,7.40211,0.05904
+518,94.9291,10.5342,8.29306,0.03776,0.6144,0.008128,0.005568,0.016192,0.049984,0.05328,7.44854,0.0592
+519,88.0141,11.3618,9.05389,0.038912,1.3783,0.008192,0.005888,0.016128,0.049696,0.0544,7.4433,0.059072
+520,98.3386,10.1689,8.30822,0.03856,0.6432,0.008288,0.0056,0.01616,0.050048,0.0544,7.43309,0.05888
+521,93.64,10.6792,8.25552,0.03824,0.594752,0.008128,0.0056,0.016128,0.050016,0.054912,7.42848,0.059264
+522,90.9172,10.999,8.23091,0.038784,0.573568,0.008192,0.006112,0.01616,0.049408,0.053248,7.4273,0.058144
+523,95.4289,10.479,8.33946,0.038912,0.671744,0.008192,0.005632,0.01632,0.04976,0.053216,7.43629,0.059392
+524,98.6893,10.1328,8.27056,0.037696,0.58576,0.008192,0.006048,0.016192,0.049408,0.053312,7.45466,0.059296
+525,92.107,10.8569,8.41187,0.038816,0.739744,0.00656,0.006048,0.016224,0.050784,0.05376,7.44157,0.058368
+526,96.2677,10.3877,8.26544,0.038912,0.591264,0.006912,0.005984,0.016384,0.049152,0.0544,7.44333,0.059104
+527,92.981,10.7549,8.29645,0.038656,0.62032,0.006624,0.006016,0.016128,0.050816,0.05376,7.44474,0.059392
+528,92.6278,10.7959,8.37757,0.038176,0.706784,0.00832,0.005568,0.015296,0.051168,0.053248,7.44003,0.058976
+529,92.8335,10.772,8.44125,0.038304,0.760096,0.00832,0.004576,0.016384,0.0512,0.054752,7.4487,0.058912
+530,94.2563,10.6094,8.31107,0.03888,0.61264,0.006144,0.006144,0.016384,0.049152,0.053344,7.47014,0.05824
+531,97.7239,10.2329,8.2769,0.037792,0.595968,0.008192,0.006144,0.016384,0.05072,0.053376,7.45024,0.05808
+532,97.7752,10.2275,8.33427,0.037856,0.628,0.006848,0.005792,0.016064,0.049824,0.053248,7.47837,0.058272
+533,89.5535,11.1665,8.37837,0.038912,0.684032,0.008192,0.00608,0.016128,0.049472,0.054464,7.44032,0.080768
+534,98.5089,10.1514,8.29645,0.038752,0.60128,0.008736,0.005568,0.01536,0.0512,0.054784,7.46301,0.05776
+535,95.5179,10.4692,8.3313,0.0384,0.616992,0.008192,0.005856,0.016192,0.050688,0.053536,7.4832,0.05824
+536,97.5703,10.249,8.27254,0.037536,0.584864,0.00672,0.005568,0.015264,0.050848,0.053568,7.46042,0.05776
+537,91.818,10.8911,8.49766,0.038432,0.766944,0.008224,0.006016,0.02672,0.0512,0.053248,7.48896,0.05792
+538,94.1782,10.6182,8.32198,0.037984,0.609536,0.008032,0.004832,0.016384,0.050784,0.05328,7.48352,0.057632
+539,97.9717,10.207,8.26352,0.038336,0.581792,0.008256,0.005568,0.015392,0.051072,0.053248,7.45062,0.059232
+540,99.3885,10.0615,8.27392,0.038912,0.579616,0.009216,0.005088,0.016384,0.050752,0.053696,7.46192,0.058336
+541,93.9363,10.6455,8.35635,0.038496,0.633632,0.008192,0.005568,0.016224,0.049984,0.054656,7.49018,0.059424
+542,91.4041,10.9404,8.2985,0.038752,0.57344,0.008352,0.005952,0.016192,0.05072,0.05376,7.49194,0.059392
+543,99.7419,10.0259,8.27402,0.038304,0.583616,0.00688,0.00576,0.016192,0.049728,0.054368,7.45974,0.059424
+544,95.7009,10.4492,8.29315,0.037696,0.601504,0.008256,0.004608,0.016384,0.0512,0.05328,7.46262,0.0576
+545,99.2392,10.0767,8.27923,0.038688,0.587744,0.0064,0.006144,0.01616,0.049376,0.055072,7.46099,0.058656
+546,92.5566,10.8042,8.27373,0.038912,0.576896,0.008256,0.004672,0.016384,0.051072,0.053376,7.46496,0.0592
+547,95.6652,10.4531,8.25571,0.038496,0.575712,0.007968,0.004768,0.016352,0.050912,0.053536,7.44963,0.058336
+548,102.569,9.74951,8.24861,0.038688,0.55472,0.008384,0.00464,0.016352,0.051008,0.053248,7.4631,0.058464
+549,92.1402,10.853,8.29718,0.039616,0.612416,0.007456,0.0048,0.016384,0.051072,0.053376,7.45408,0.057984
+550,97.8687,10.2178,8.32586,0.037632,0.609952,0.008032,0.004576,0.016384,0.0512,0.05328,7.4871,0.057696
+551,98.49,10.1533,8.30278,0.03872,0.604544,0.00816,0.006016,0.016064,0.049632,0.05328,7.46694,0.059424
+552,96.1954,10.3955,8.34998,0.037824,0.626688,0.007552,0.004736,0.023552,0.050176,0.05328,7.48707,0.059104
+553,96.663,10.3452,8.28826,0.038944,0.606016,0.006304,0.006144,0.016192,0.0504,0.05424,7.45062,0.059392
+554,96.8734,10.3228,8.31283,0.038496,0.583232,0.007008,0.005632,0.016096,0.049952,0.054944,7.49987,0.0576
+555,98.1642,10.187,8.30333,0.037632,0.61232,0.008192,0.005728,0.016224,0.049696,0.053312,7.46083,0.059392
+556,94.1349,10.623,8.33741,0.038912,0.623872,0.007968,0.005088,0.016384,0.050432,0.05312,7.48224,0.059392
+557,95.6027,10.46,8.3352,0.038528,0.639328,0.008224,0.005568,0.01616,0.049984,0.054272,7.4639,0.059232
+558,94.806,10.5479,8.38934,0.038656,0.682912,0.008192,0.005664,0.016096,0.049952,0.053248,7.47722,0.057408
+559,95.0304,10.5229,8.31488,0.038528,0.643264,0.008288,0.005568,0.016128,0.051104,0.054112,7.43974,0.058144
+560,97.9482,10.2095,8.31408,0.038752,0.58944,0.007968,0.004864,0.016384,0.05088,0.053568,7.49363,0.058592
+561,100.255,9.97461,8.34746,0.038752,0.6168,0.008192,0.005632,0.01616,0.049888,0.053376,7.49962,0.05904
+562,97.4357,10.2632,8.2993,0.037664,0.611744,0.008256,0.00464,0.016416,0.051168,0.053248,7.45882,0.057344
+563,99.7759,10.0225,8.2983,0.038912,0.608096,0.006304,0.006144,0.016288,0.050912,0.053312,7.45914,0.0592
+564,97.1399,10.2944,8.58982,0.038816,0.8672,0.00768,0.004608,0.016384,0.06144,0.055296,7.4793,0.059104
+565,93.1714,10.7329,8.38032,0.03888,0.700448,0.008,0.005568,0.016448,0.049888,0.055136,7.44666,0.059296
+566,100.842,9.9165,8.25958,0.03888,0.577568,0.008192,0.00592,0.016544,0.049344,0.054592,7.45085,0.057696
+567,96.7407,10.3369,8.36781,0.038624,0.6784,0.00816,0.005568,0.01616,0.049984,0.053248,7.45882,0.058848
+568,95.026,10.5234,8.32867,0.038784,0.641152,0.008192,0.006144,0.016288,0.050816,0.053696,7.45475,0.058848
+569,100.599,9.94043,8.22746,0.037888,0.560288,0.007008,0.005632,0.016256,0.049792,0.053248,7.43837,0.058976
+570,94.6833,10.5615,8.40938,0.038528,0.703008,0.01792,0.004736,0.0256,0.050176,0.053056,7.45901,0.057344
+571,98.9038,10.1108,8.2328,0.038912,0.565248,0.007872,0.005568,0.01664,0.049792,0.053248,7.43629,0.059232
+572,97.103,10.2983,8.24838,0.038752,0.555168,0.008224,0.00576,0.016064,0.049824,0.053248,7.46256,0.058784
+573,93.469,10.6987,8.23386,0.03776,0.562816,0.008064,0.004608,0.016416,0.050944,0.053472,7.44042,0.05936
+574,92.5482,10.8052,8.36358,0.037408,0.665152,0.00656,0.016384,0.016448,0.051168,0.054528,7.4575,0.058432
+575,97.1814,10.29,8.26371,0.038944,0.605472,0.006848,0.005792,0.016224,0.049664,0.054592,7.42675,0.059424
+576,94.7227,10.5571,8.34784,0.047168,0.696416,0.008192,0.006144,0.016032,0.049536,0.054656,7.41162,0.05808
+577,93.2987,10.7183,8.38826,0.03872,0.714816,0.007936,0.015968,0.01664,0.051264,0.05344,7.4304,0.059072
+578,98.9324,10.1079,8.21744,0.037728,0.560352,0.006912,0.005696,0.016064,0.04992,0.05456,7.42803,0.058176
+579,98.249,10.1782,8.40707,0.038464,0.766432,0.008192,0.006016,0.016096,0.05776,0.054752,7.39997,0.059392
+580,89.2375,11.2061,8.42522,0.038912,0.765792,0.008288,0.005568,0.016192,0.050016,0.05472,7.42659,0.059136
+581,95.567,10.4639,8.34342,0.038688,0.667296,0.008256,0.004608,0.016384,0.050752,0.053344,7.44483,0.059264
+582,97.2829,10.2793,8.42182,0.038496,0.756672,0.00928,0.005088,0.026592,0.0512,0.055008,7.42019,0.059296
+583,93.7815,10.6631,8.31738,0.03744,0.641024,0.008192,0.00592,0.01616,0.050912,0.053216,7.44525,0.059264
+584,90.264,11.0786,8.31494,0.038912,0.679584,0.008288,0.005568,0.0152,0.051168,0.053248,7.40531,0.057664
+585,89.6947,11.1489,8.37702,0.03776,0.71792,0.007072,0.005568,0.032352,0.051296,0.053696,7.41216,0.0592
+586,95.3978,10.4824,8.38029,0.038912,0.679008,0.0072,0.017344,0.03168,0.051104,0.053152,7.44262,0.059264
+587,93.4989,10.6953,8.24704,0.038912,0.593312,0.007968,0.004928,0.016384,0.050752,0.053696,7.42192,0.059168
+588,93.452,10.7007,8.23216,0.038688,0.597536,0.00832,0.004672,0.016384,0.050656,0.053696,7.40362,0.058592
+589,95.1231,10.5127,8.37171,0.03888,0.76432,0.006144,0.006144,0.016384,0.050848,0.0536,7.3769,0.058496
+590,95.2204,10.502,8.2288,0.038432,0.598368,0.006272,0.006144,0.016384,0.050528,0.053312,7.40109,0.058272
+591,100.718,9.92871,8.18163,0.038944,0.583168,0.008,0.004768,0.016384,0.050976,0.053472,7.36666,0.059264
+592,100.255,9.97461,8.25008,0.037824,0.610272,0.009216,0.00512,0.016384,0.050304,0.052096,7.40966,0.0592
+593,94.6746,10.5625,8.22707,0.038464,0.615136,0.007424,0.004864,0.016384,0.050752,0.053216,7.38147,0.05936
+594,101.301,9.87158,8.23434,0.038912,0.591616,0.008352,0.005568,0.01616,0.050048,0.054368,7.41059,0.05872
+595,99.432,10.0571,8.24118,0.038528,0.616448,0.00656,0.006048,0.016128,0.049536,0.054496,7.39533,0.058112
+596,101.091,9.89209,8.21862,0.038912,0.591872,0.008192,0.00576,0.016128,0.049792,0.055008,7.3936,0.05936
+597,94.4562,10.5869,8.30816,0.038656,0.71424,0.008096,0.00496,0.016384,0.05088,0.0536,7.36253,0.058816
+598,95.7815,10.4404,8.22067,0.038912,0.629888,0.008288,0.004896,0.016384,0.050592,0.053728,7.36016,0.057824
+599,96.0961,10.4062,8.20838,0.038912,0.616128,0.006464,0.006144,0.016096,0.050944,0.05376,7.36173,0.058208
+600,100.176,9.98242,8.24102,0.038208,0.622784,0.006656,0.006144,0.016096,0.05072,0.053152,7.388,0.059264
+601,95.7144,10.4478,8.18346,0.038432,0.600544,0.008192,0.006144,0.016256,0.050656,0.053216,7.35094,0.059072
+602,97.7752,10.2275,8.44394,0.037312,0.841696,0.008416,0.00592,0.016384,0.051136,0.053312,7.37075,0.059008
+603,99.1816,10.0825,8.17466,0.038656,0.604416,0.008224,0.006048,0.016224,0.049376,0.05504,7.33786,0.058816
+604,100.005,9.99951,8.15037,0.038752,0.600224,0.008128,0.005568,0.016192,0.049984,0.053248,7.31955,0.05872
+605,97.7379,10.2314,8.17392,0.038336,0.600384,0.008288,0.004608,0.016384,0.051008,0.05344,7.34208,0.059392
+606,100.318,9.96826,8.15642,0.038912,0.581632,0.006144,0.006144,0.016384,0.050688,0.053312,7.34451,0.058688
+607,91.7316,10.9014,8.18998,0.038688,0.622112,0.00688,0.005728,0.015968,0.050016,0.0544,7.33795,0.05824
+608,97.5563,10.2505,8.21846,0.038496,0.597728,0.008,0.004992,0.016384,0.050752,0.053696,7.38922,0.0592
+609,99.403,10.0601,8.13046,0.038944,0.588832,0.007232,0.006016,0.016352,0.050432,0.052,7.31136,0.059296
+610,96.1051,10.4053,8.18794,0.038912,0.629984,0.008288,0.0048,0.016384,0.050816,0.053568,7.32714,0.058048
+611,93.9967,10.6387,8.1328,0.03888,0.580992,0.008224,0.004736,0.016384,0.050688,0.05376,7.3209,0.05824
+612,99.6545,10.0347,8.13357,0.037824,0.587776,0.008192,0.005888,0.016096,0.049696,0.054688,7.31603,0.057376
+613,97.8126,10.2236,8.21901,0.037248,0.663264,0.008064,0.005568,0.01536,0.051168,0.053248,7.3257,0.059392
+614,85.0039,11.7642,8.31539,0.038496,0.77024,0.00688,0.00576,0.01616,0.04976,0.054592,7.31555,0.057952
+615,99.4464,10.0557,8.16947,0.038912,0.612352,0.008192,0.006112,0.016128,0.049472,0.055232,7.32534,0.057728
+616,93.1417,10.7363,8.2073,0.037824,0.635904,0.008288,0.005024,0.016384,0.051008,0.05344,7.34147,0.057952
+617,96.1638,10.3989,8.20019,0.038496,0.6536,0.007936,0.0056,0.01536,0.051104,0.059392,7.30931,0.059392
+618,94.9203,10.5352,8.16698,0.038912,0.628672,0.008256,0.005536,0.016192,0.051328,0.053632,7.3055,0.058944
+619,97.3245,10.2749,8.14877,0.038912,0.610432,0.008192,0.005728,0.016224,0.04992,0.053056,7.30707,0.059232
+620,94.001,10.6382,8.17558,0.038656,0.649472,0.008288,0.006048,0.016256,0.049312,0.054496,7.2937,0.05936
+621,97.0294,10.3062,8.10819,0.037376,0.591744,0.008416,0.00592,0.016384,0.050432,0.054016,7.28474,0.059168
+622,91.3389,10.9482,8.13808,0.038976,0.6144,0.008192,0.006144,0.016384,0.050656,0.053824,7.29085,0.058656
+623,97.6075,10.2451,8.12461,0.038432,0.633472,0.008224,0.006112,0.016352,0.050752,0.053728,7.25811,0.059424
+624,100.787,9.92188,8.15696,0.038944,0.62992,0.008288,0.004832,0.016416,0.050912,0.05344,7.29504,0.059168
+625,100.353,9.96484,8.12387,0.038752,0.59408,0.008192,0.005952,0.016128,0.0496,0.05456,7.29776,0.058848
+626,97.5656,10.2495,8.09578,0.038944,0.601312,0.007968,0.00512,0.016352,0.050464,0.05312,7.26454,0.057952
+627,101.011,9.8999,8.05418,0.038304,0.558848,0.007264,0.005952,0.016096,0.049696,0.05424,7.2649,0.05888
+628,100.505,9.94971,8.09795,0.03856,0.577984,0.008256,0.005568,0.016128,0.049984,0.05504,7.2887,0.057728
+629,100.624,9.93799,8.0959,0.038624,0.593856,0.007968,0.005024,0.016384,0.050464,0.053632,7.27075,0.0592
+630,101.997,9.8042,8.0855,0.0384,0.573376,0.008256,0.004608,0.016384,0.0512,0.053344,7.26826,0.07168
+631,100.108,9.98926,8.06736,0.038304,0.58432,0.008032,0.005568,0.015232,0.0512,0.053152,7.25357,0.057984
+632,100.427,9.95752,8.05923,0.038496,0.572064,0.008288,0.005792,0.016256,0.049632,0.05472,7.25469,0.059296
+633,97.7566,10.2295,8.06669,0.037472,0.579584,0.008192,0.006144,0.01616,0.049376,0.053248,7.25744,0.059072
+634,100.624,9.93799,8.10189,0.03888,0.585088,0.00816,0.004832,0.016352,0.051008,0.053312,7.28685,0.057408
+635,95.1982,10.5044,8.08147,0.038528,0.60256,0.008192,0.006016,0.016032,0.049632,0.054752,7.24794,0.057824
+636,102.369,9.76855,8.06726,0.038688,0.571136,0.008128,0.004832,0.016384,0.0512,0.053248,7.2657,0.057952
+637,96.4854,10.3643,8.13677,0.038688,0.663872,0.00672,0.005984,0.016384,0.0504,0.053536,7.24224,0.058944
+638,101.161,9.88525,8.04659,0.038624,0.565568,0.00816,0.006144,0.01616,0.050592,0.053184,7.24877,0.059392
+639,97.4496,10.2617,8.11418,0.038912,0.62464,0.008192,0.005696,0.015904,0.05008,0.05472,7.25664,0.059392
+640,97.5935,10.2466,8.17155,0.038528,0.676256,0.00816,0.006144,0.016384,0.050976,0.053472,7.26371,0.05792
+641,100.171,9.98291,8.04237,0.038912,0.579584,0.008192,0.00576,0.016128,0.050912,0.05408,7.22954,0.059264
+642,103.179,9.69189,8.03216,0.038592,0.569664,0.008192,0.005728,0.016096,0.049888,0.0544,7.23158,0.058016
+643,92.7662,10.7798,8.10189,0.03872,0.643296,0.008288,0.006016,0.016384,0.050656,0.053408,7.2272,0.05792
+644,95.5937,10.4609,8.06093,0.038912,0.582848,0.008384,0.004736,0.016384,0.0512,0.05328,7.24579,0.059392
+645,100.575,9.94287,8.03264,0.038368,0.568224,0.008192,0.006144,0.016384,0.050432,0.05408,7.23315,0.057664
+646,97.6214,10.2437,8.0488,0.038688,0.622944,0.008256,0.005568,0.015264,0.051008,0.05328,7.19478,0.059008
+647,99.6157,10.0386,8.08326,0.038912,0.640096,0.00816,0.005056,0.016384,0.051104,0.053344,7.21101,0.0592
+648,95.952,10.4219,8.04477,0.038272,0.574304,0.008192,0.005952,0.01616,0.049632,0.05488,7.23952,0.057856
+649,94.1263,10.624,8.06525,0.037568,0.613536,0.007264,0.005888,0.016384,0.050592,0.053856,7.22112,0.05904
+650,95.0083,10.5254,8.01178,0.038944,0.591488,0.006496,0.006016,0.016192,0.049472,0.05328,7.1905,0.059392
+651,97.6261,10.2432,8.0335,0.038912,0.591872,0.007904,0.0056,0.015168,0.0512,0.053248,7.21059,0.059008
+652,95.5536,10.4653,8.17027,0.03776,0.692128,0.00752,0.017056,0.032768,0.0512,0.054432,7.21981,0.0576
+653,99.2248,10.0781,8.06093,0.038912,0.592928,0.008384,0.004896,0.016384,0.0512,0.05328,7.2369,0.058048
+654,97.5006,10.2563,8.05222,0.038912,0.60928,0.008256,0.005088,0.016352,0.0512,0.05328,7.21098,0.05888
+655,98.2678,10.1763,8.15418,0.038912,0.692,0.006368,0.006144,0.028672,0.05072,0.053728,7.21878,0.058848
+656,99.8343,10.0166,8.20589,0.03808,0.723776,0.006144,0.006144,0.016384,0.067008,0.052864,7.23654,0.058944
+657,98.089,10.1948,8.03651,0.03872,0.605824,0.008032,0.004992,0.016384,0.050592,0.053856,7.1999,0.058208
+658,95.4334,10.4785,8.15178,0.038752,0.72176,0.006144,0.006144,0.016384,0.0504,0.053536,7.20093,0.057728
+659,97.2137,10.2866,8.03299,0.038752,0.604896,0.007968,0.005568,0.015328,0.051168,0.054528,7.19699,0.057792
+660,96.7544,10.3354,8.0408,0.038432,0.606944,0.008288,0.00576,0.01616,0.0512,0.053856,7.20214,0.058016
+661,97.4078,10.2661,8.14915,0.038624,0.721344,0.008224,0.016256,0.032864,0.051008,0.05344,7.168,0.059392
+662,102.894,9.71875,8.06803,0.037856,0.638336,0.008256,0.00464,0.016384,0.051136,0.053312,7.19997,0.058144
+663,101.056,9.89551,8.03472,0.038784,0.625056,0.007968,0.005568,0.015264,0.0512,0.055072,7.17642,0.059392
+664,102.827,9.7251,7.99382,0.038656,0.58032,0.008192,0.005952,0.01616,0.05088,0.053984,7.18202,0.057664
+665,97.8173,10.2231,8.01382,0.038176,0.59264,0.0072,0.005088,0.016352,0.0512,0.055328,7.18954,0.058304
+666,101.436,9.8584,8.06029,0.046496,0.597952,0.006816,0.005824,0.016096,0.04976,0.054784,7.22381,0.058752
+667,97.8921,10.2153,8.07939,0.038912,0.657408,0.008032,0.005568,0.015104,0.051168,0.053248,7.19158,0.058368
+668,102.456,9.76025,8.00566,0.03872,0.589152,0.008224,0.004928,0.016384,0.050816,0.05328,7.18605,0.058112
+669,102.461,9.75977,7.9913,0.038912,0.594976,0.008352,0.004928,0.016384,0.0512,0.053248,7.16397,0.059328
+670,103.065,9.70264,8.01792,0.038912,0.589824,0.008192,0.006144,0.016256,0.050784,0.053792,7.19603,0.057984
+671,96.8642,10.3237,7.98637,0.038912,0.585728,0.008192,0.006144,0.016288,0.049376,0.05504,7.16774,0.058944
+672,102.909,9.71729,8.00218,0.038528,0.577792,0.006912,0.005728,0.016768,0.050496,0.053536,7.19421,0.058208
+673,99.244,10.0762,8.04454,0.037376,0.642368,0.007968,0.00496,0.016416,0.05088,0.05472,7.17091,0.058944
+674,97.4542,10.2612,8.07734,0.038912,0.647168,0.008192,0.006144,0.016288,0.050368,0.054016,7.19683,0.059424
+675,103.044,9.70459,7.98093,0.038912,0.58704,0.008,0.005024,0.016384,0.050912,0.053408,7.16202,0.059232
+676,97.9389,10.2104,8.03651,0.03856,0.645472,0.007264,0.005056,0.016352,0.05104,0.05344,7.16182,0.057504
+677,100.186,9.98145,8.03059,0.038816,0.631072,0.006336,0.006144,0.016288,0.051232,0.053344,7.16797,0.059392
+678,99.0329,10.0977,7.98538,0.038688,0.5784,0.007616,0.004672,0.016416,0.051168,0.053408,7.17603,0.058976
+679,99.3162,10.0688,8.02816,0.038944,0.649184,0.007392,0.004896,0.016384,0.050624,0.053824,7.1487,0.058208
+680,99.7419,10.0259,7.9872,0.03824,0.592544,0.008192,0.00608,0.016384,0.050816,0.053696,7.16362,0.057632
+681,96.9881,10.3105,7.97904,0.038304,0.578176,0.00816,0.006144,0.01616,0.051008,0.053664,7.16941,0.058016
+682,101.061,9.89502,8.0033,0.038912,0.616448,0.007968,0.005568,0.016416,0.05136,0.053856,7.15366,0.059104
+683,91.2493,10.959,8.02816,0.038912,0.617664,0.0072,0.0152,0.016576,0.04992,0.053248,7.17117,0.058272
+684,103.049,9.7041,7.94435,0.0376,0.573088,0.008256,0.005568,0.015232,0.051168,0.054432,7.14019,0.058816
+685,96.5719,10.355,8.00029,0.037664,0.592928,0.007168,0.006112,0.01632,0.050496,0.054016,7.17619,0.059392
+686,103.743,9.63916,7.94419,0.038368,0.563552,0.008256,0.005536,0.016256,0.050016,0.054272,7.15021,0.057728
+687,102.374,9.76807,7.95034,0.0384,0.588288,0.008,0.005568,0.01632,0.051072,0.054048,7.12925,0.059392
+688,98.5326,10.1489,7.99498,0.038304,0.617248,0.008192,0.006144,0.016256,0.050464,0.053984,7.1456,0.058784
+689,98.8226,10.1191,7.95562,0.038656,0.57504,0.008,0.005024,0.016384,0.050624,0.055008,7.14762,0.059264
+690,104.272,9.59033,7.96163,0.038368,0.575648,0.008,0.004704,0.016352,0.0512,0.053248,7.15494,0.059168
+691,99.1096,10.0898,7.988,0.037696,0.61232,0.008192,0.006144,0.016224,0.050656,0.053696,7.14486,0.058208
+692,102.456,9.76025,7.92768,0.037632,0.571264,0.006144,0.016384,0.016384,0.0512,0.054816,7.11523,0.058624
+693,103.696,9.64355,7.9401,0.038912,0.567296,0.007936,0.0056,0.015136,0.051232,0.0544,7.14134,0.05824
+694,103.169,9.69287,7.94624,0.038336,0.571808,0.008256,0.005568,0.016192,0.050016,0.054432,7.14349,0.058144
+695,97.6075,10.2451,7.92995,0.03824,0.568064,0.008384,0.005952,0.016416,0.050464,0.053952,7.12909,0.059392
+696,103.912,9.62354,7.94157,0.038816,0.577216,0.008032,0.004672,0.016416,0.051168,0.054752,7.13168,0.058816
+697,103.299,9.68066,7.92006,0.037344,0.58368,0.009632,0.004736,0.016352,0.0512,0.054656,7.1031,0.05936
+698,98.694,10.1323,7.97286,0.038592,0.608448,0.007968,0.005568,0.01536,0.051072,0.05328,7.13318,0.059392
+699,102.007,9.80322,7.95686,0.037248,0.599488,0.007968,0.004896,0.016416,0.051072,0.053344,7.12822,0.058208
+700,99.35,10.0654,7.96534,0.037536,0.59136,0.008288,0.005568,0.015328,0.05104,0.054528,7.14419,0.057504
+701,99.2777,10.0728,8.00227,0.038656,0.621536,0.008192,0.005952,0.01616,0.0496,0.054304,7.1497,0.058176
+702,101.106,9.89062,7.92995,0.038848,0.572928,0.008128,0.004736,0.016384,0.0512,0.053408,7.12682,0.057504
+703,96.2859,10.3857,7.93862,0.038592,0.594208,0.007968,0.004928,0.016384,0.0512,0.05328,7.11267,0.059392
+704,100.584,9.94189,7.99542,0.038912,0.632192,0.007968,0.00496,0.016384,0.051072,0.053312,7.13306,0.057568
+705,99.5093,10.0493,7.95062,0.037888,0.581632,0.008192,0.005952,0.016096,0.051584,0.053344,7.13661,0.059328
+706,100.525,9.94775,7.99526,0.038528,0.636352,0.007232,0.016256,0.016384,0.051232,0.054592,7.11542,0.059264
+707,93.0402,10.748,7.96288,0.03776,0.621888,0.008224,0.004736,0.016384,0.0512,0.054496,7.10941,0.058784
+708,97.5145,10.2549,7.91142,0.038944,0.563168,0.008192,0.006144,0.016352,0.050624,0.053856,7.11632,0.057824
+709,100.407,9.95947,7.93837,0.037376,0.608128,0.008,0.00432,0.016384,0.051232,0.053216,7.10042,0.059296
+710,93.6742,10.6753,8.19405,0.055296,0.802048,0.008288,0.02096,0.016576,0.06048,0.053568,7.11744,0.059392
+711,104.703,9.55078,7.92166,0.038912,0.587808,0.00816,0.005824,0.016128,0.049728,0.054432,7.10237,0.058304
+712,96.4037,10.373,8.10102,0.038912,0.731168,0.009312,0.015232,0.016384,0.050912,0.053568,7.12701,0.058528
+713,78.4194,12.752,7.96835,0.038912,0.602112,0.008192,0.006048,0.01616,0.050656,0.054048,7.13325,0.058976
+714,101.251,9.87646,7.91555,0.038304,0.583872,0.008256,0.005568,0.015296,0.051232,0.053216,7.10042,0.059392
+715,101.426,9.85938,7.96381,0.038496,0.62288,0.008064,0.005536,0.015392,0.052288,0.053696,7.10896,0.058496
+716,101.835,9.81982,7.93251,0.037472,0.599808,0.008256,0.005568,0.015264,0.05104,0.053248,7.10438,0.057472
+717,99.9561,10.0044,7.92966,0.037696,0.569312,0.008192,0.005984,0.016064,0.05152,0.053408,7.12886,0.058624
+718,102.033,9.80078,7.97491,0.038912,0.628768,0.00816,0.006144,0.016384,0.050688,0.053472,7.11427,0.058112
+719,100.57,9.94336,7.98515,0.038912,0.626688,0.00784,0.005568,0.01536,0.051136,0.05472,7.12688,0.058048
+720,101.82,9.82129,7.96918,0.038336,0.58672,0.00928,0.005056,0.016384,0.050688,0.05376,7.15133,0.057632
+721,96.06,10.4102,7.93805,0.038944,0.583232,0.007936,0.004768,0.016384,0.050848,0.053632,7.1241,0.058208
+722,102.739,9.7334,7.9113,0.038496,0.555296,0.008416,0.0056,0.016288,0.049792,0.0544,7.12368,0.059328
+723,99.9317,10.0068,7.90646,0.038656,0.563456,0.008192,0.006048,0.016416,0.050592,0.053536,7.11062,0.058944
+724,103.759,9.6377,7.91872,0.03856,0.575424,0.008128,0.004576,0.016416,0.051168,0.05328,7.11258,0.058592
+725,99.5722,10.043,8.00541,0.03856,0.649568,0.008192,0.006112,0.016096,0.050528,0.053728,7.12346,0.059168
+726,98.4805,10.1543,7.9039,0.038656,0.555808,0.006272,0.006144,0.016384,0.0512,0.054688,7.1167,0.058048
+727,101.467,9.85547,7.92381,0.038144,0.591968,0.006912,0.005792,0.016128,0.050816,0.05392,7.10074,0.059392
+728,102.925,9.71582,7.95267,0.038592,0.578272,0.008192,0.005664,0.016128,0.051232,0.053952,7.14141,0.059232
+729,99.2344,10.0771,7.91142,0.038368,0.559488,0.007968,0.005568,0.015296,0.0512,0.0544,7.11974,0.059392
+730,103.039,9.70508,7.96211,0.038912,0.587776,0.009248,0.005088,0.024608,0.051232,0.053184,7.13318,0.05888
+731,104.044,9.61133,7.89504,0.038912,0.573248,0.008224,0.005568,0.015072,0.051232,0.054656,7.08874,0.059392
+732,104.213,9.5957,7.90118,0.038912,0.571168,0.006368,0.006144,0.016288,0.051232,0.05328,7.10013,0.057664
+733,102.155,9.78906,7.89098,0.038848,0.564704,0.008064,0.004832,0.016384,0.0512,0.05328,7.09424,0.059424
+734,96.6038,10.3516,7.90579,0.038432,0.568288,0.008192,0.006016,0.016,0.049664,0.054304,7.10755,0.057344
+735,104.661,9.55469,7.89062,0.03856,0.571776,0.006464,0.006112,0.016192,0.049376,0.053248,7.08982,0.059072
+736,104.277,9.58984,7.90669,0.03856,0.563584,0.00816,0.0056,0.016128,0.049984,0.054304,7.11165,0.05872
+737,101.85,9.81836,7.92042,0.037664,0.586848,0.008288,0.004928,0.016384,0.05056,0.053856,7.10384,0.058048
+738,99.4175,10.0586,7.97984,0.038784,0.641536,0.006592,0.006016,0.016256,0.049504,0.05488,7.10883,0.05744
+739,102.308,9.77441,7.92371,0.038912,0.58576,0.00816,0.006144,0.016192,0.050432,0.05392,7.10602,0.058176
+740,102.884,9.71973,7.91747,0.038432,0.575456,0.007968,0.004832,0.016384,0.050912,0.053568,7.11062,0.059296
+741,99.8343,10.0166,7.91965,0.038816,0.616352,0.00816,0.005568,0.016224,0.050112,0.053248,7.07302,0.058144
+742,96.5582,10.3564,7.97181,0.037856,0.626688,0.008064,0.005568,0.016384,0.049856,0.054336,7.11472,0.058336
+743,98.8226,10.1191,7.99043,0.038912,0.671744,0.008192,0.005824,0.01632,0.05072,0.05408,7.08573,0.058912
+744,97.8126,10.2236,7.9679,0.037856,0.643072,0.008192,0.006048,0.016256,0.050784,0.053888,7.09411,0.057696
+745,99.7565,10.0244,7.98317,0.038336,0.647392,0.007968,0.004736,0.016384,0.050816,0.053632,7.10451,0.059392
+746,103.633,9.64941,7.93584,0.037472,0.588928,0.008384,0.0048,0.016384,0.051072,0.053376,7.1168,0.058624
+747,102.104,9.79395,7.90186,0.038912,0.580448,0.007968,0.005568,0.0152,0.050976,0.05328,7.09034,0.059168
+748,100.461,9.9541,7.90922,0.038336,0.567904,0.006432,0.006144,0.016384,0.050688,0.05376,7.11069,0.05888
+749,102.554,9.75098,7.92502,0.038944,0.595936,0.008192,0.006144,0.016288,0.049248,0.055296,7.09549,0.059488
+750,101.376,9.86426,7.88496,0.037408,0.571328,0.007968,0.005568,0.0152,0.052352,0.053792,7.08208,0.059264
+751,100.609,9.93945,7.94173,0.03824,0.596928,0.008192,0.006144,0.01616,0.051104,0.053568,7.1127,0.058688
+752,102.718,9.73535,7.92371,0.038912,0.58368,0.007872,0.005568,0.016256,0.050112,0.053344,7.11066,0.057312
+753,98.4331,10.1592,7.92934,0.03856,0.604736,0.008224,0.006016,0.016512,0.051008,0.053408,7.092,0.05888
+754,104.256,9.5918,7.91619,0.037824,0.57056,0.0072,0.00592,0.016384,0.051168,0.05472,7.11331,0.059104
+755,101.628,9.83984,7.91325,0.03888,0.562656,0.008256,0.00464,0.016384,0.051168,0.053248,7.11885,0.059168
+756,103.886,9.62598,7.92608,0.037216,0.587104,0.006784,0.005856,0.016224,0.050848,0.053536,7.11018,0.058336
+757,97.561,10.25,7.93776,0.038912,0.579584,0.008192,0.005632,0.016192,0.049856,0.055072,7.12522,0.059104
+758,101.577,9.84473,7.90925,0.03856,0.57536,0.008288,0.004768,0.016384,0.0512,0.054496,7.10122,0.058976
+759,102.708,9.73633,7.93165,0.038528,0.595648,0.008,0.005024,0.016384,0.0512,0.053248,7.10454,0.059072
+760,102.39,9.7666,7.95683,0.037632,0.622304,0.008416,0.005568,0.016288,0.049856,0.054336,7.10342,0.059008
+761,99.2537,10.0752,7.91757,0.038912,0.562304,0.00816,0.005024,0.016384,0.050528,0.051872,7.12605,0.058336
+762,97.0432,10.3047,7.9623,0.038912,0.624288,0.006496,0.006144,0.01632,0.05056,0.053952,7.10656,0.059072
+763,97.8968,10.2148,7.96298,0.038336,0.625568,0.008192,0.006016,0.016192,0.050912,0.053376,7.10499,0.059392
+764,104.479,9.57129,7.92048,0.037696,0.557088,0.007424,0.004832,0.016384,0.0512,0.054432,7.132,0.059424
+765,100.57,9.94336,7.98864,0.038912,0.636832,0.008192,0.005568,0.01648,0.049728,0.054464,7.1191,0.05936
+766,103.215,9.68848,7.91286,0.038912,0.56448,0.008,0.005056,0.016384,0.050688,0.05376,7.1168,0.058784
+767,102.523,9.75391,7.93014,0.037824,0.569312,0.008192,0.006144,0.016352,0.050912,0.053568,7.12909,0.058752
+768,101.366,9.86523,7.92822,0.037696,0.566688,0.006752,0.005856,0.016032,0.049824,0.05488,7.13152,0.058976
+769,101.708,9.83203,7.91802,0.039008,0.567648,0.008192,0.006144,0.016288,0.050912,0.053312,7.11824,0.058272
+770,103.445,9.66699,7.92893,0.038688,0.5712,0.008224,0.005568,0.015296,0.051232,0.053216,7.12669,0.058816
+771,98.7273,10.1289,7.94701,0.0376,0.585088,0.008256,0.004704,0.016352,0.0512,0.054464,7.12992,0.059424
+772,97.0708,10.3018,7.98864,0.038912,0.58704,0.008928,0.007392,0.015232,0.050944,0.053408,7.168,0.058784
+773,100.029,9.99707,7.94298,0.037696,0.56528,0.00816,0.006016,0.015968,0.049728,0.054944,7.14579,0.059392
+774,101.527,9.84961,7.92378,0.037664,0.567104,0.008256,0.005568,0.01616,0.05008,0.054592,7.1257,0.058656
+775,99.3885,10.0615,7.92746,0.037248,0.559104,0.008192,0.005632,0.015968,0.05008,0.054592,7.13798,0.058656
+776,103.111,9.69824,7.98842,0.038784,0.598144,0.008192,0.0056,0.016064,0.050048,0.055264,7.15738,0.058944
+777,99.4561,10.0547,7.94672,0.03872,0.589952,0.008,0.004832,0.016384,0.0512,0.05328,7.12605,0.058304
+778,101.891,9.81445,7.94563,0.038144,0.56768,0.008256,0.00464,0.016384,0.0512,0.053248,7.14752,0.05856
+779,103.226,9.6875,7.95238,0.038816,0.562528,0.006912,0.005728,0.016224,0.050848,0.053568,7.1584,0.05936
+780,101.789,9.82422,7.93722,0.0384,0.566912,0.00704,0.005568,0.016064,0.05008,0.053248,7.14086,0.05904
+781,103.759,9.6377,7.91507,0.038912,0.55616,0.008256,0.004928,0.016384,0.050944,0.054848,7.1257,0.058944
+782,101.789,9.82422,7.96426,0.038112,0.557888,0.007744,0.005568,0.01536,0.0512,0.053248,7.17619,0.058944
+783,102.718,9.73535,7.94042,0.038624,0.574048,0.0072,0.005088,0.016384,0.050784,0.053632,7.13526,0.059392
+784,94.2216,10.6133,8.22682,0.039168,0.7888,0.008192,0.006048,0.030816,0.067456,0.054432,7.17309,0.058816
+785,100.186,9.98145,7.95539,0.037824,0.554528,0.008384,0.005568,0.016288,0.050112,0.054784,7.16851,0.059392
+786,103.288,9.68164,7.95859,0.03856,0.584128,0.009216,0.005088,0.016384,0.051136,0.053312,7.14278,0.057984
+787,101.006,9.90039,8.18176,0.038912,0.790528,0.008192,0.005856,0.01616,0.049664,0.055168,7.15789,0.059392
+788,101.356,9.86621,7.93514,0.03872,0.54704,0.00816,0.006112,0.01616,0.050688,0.054016,7.15571,0.058528
+789,99.7565,10.0244,7.96877,0.038944,0.609344,0.007232,0.005984,0.016384,0.05088,0.053568,7.12707,0.05936
+790,103.143,9.69531,7.91533,0.038304,0.56096,0.006944,0.005696,0.016288,0.04976,0.055136,7.12304,0.0592
+791,101.537,9.84863,7.96877,0.038944,0.569312,0.008224,0.006112,0.016384,0.05072,0.053728,7.16595,0.059392
+792,98.6703,10.1348,7.95437,0.038912,0.566656,0.006784,0.005824,0.01616,0.050912,0.053568,7.15622,0.059328
+793,100.402,9.95996,7.9688,0.038912,0.570816,0.008256,0.004608,0.016384,0.0512,0.054592,7.16035,0.06368
+794,102.104,9.79395,7.96851,0.038816,0.556832,0.008224,0.005568,0.0152,0.0512,0.05328,7.18029,0.059104
+795,95.1408,10.5107,8.01078,0.038944,0.607392,0.008128,0.005024,0.016384,0.05104,0.053248,7.17146,0.059168
+796,100.127,9.9873,7.95856,0.038912,0.55296,0.00816,0.004128,0.016448,0.051136,0.053248,7.17546,0.058112
+797,103.111,9.69824,7.93994,0.037664,0.557056,0.007776,0.00448,0.016384,0.051232,0.054336,7.15203,0.058976
+798,99.5141,10.0488,8.1576,0.055456,0.722496,0.008448,0.005568,0.029696,0.050976,0.053472,7.17318,0.058304
+799,101.477,9.85449,7.94432,0.038304,0.555776,0.00816,0.00576,0.01632,0.049632,0.054592,7.15638,0.059392
+800,103.174,9.69238,7.96243,0.038944,0.560768,0.006496,0.006144,0.016224,0.051008,0.053632,7.17002,0.0592
+801,98.9181,10.1094,7.98746,0.038336,0.578272,0.007968,0.0056,0.01536,0.05104,0.055232,7.17766,0.057984
+802,102.863,9.72168,7.936,0.038496,0.547264,0.00784,0.005568,0.015232,0.050944,0.053536,7.15725,0.059872
+803,96.4218,10.3711,8.06736,0.037632,0.681376,0.006752,0.005856,0.016064,0.04976,0.054752,7.15606,0.059104
+804,92.5943,10.7998,7.97299,0.038528,0.561792,0.00816,0.006144,0.016352,0.05072,0.053792,7.17821,0.059296
+805,91.4286,10.9375,7.99744,0.038496,0.626496,0.006752,0.005888,0.016192,0.051136,0.053792,7.1393,0.059392
+806,103.528,9.65918,7.9401,0.038688,0.553088,0.00624,0.006144,0.016384,0.051104,0.053344,7.15741,0.057696
+807,100.718,9.92871,7.96525,0.0376,0.567296,0.00816,0.006112,0.016096,0.050656,0.054112,7.16595,0.059264
+808,106.268,9.41016,7.93789,0.038944,0.568704,0.008384,0.005568,0.015328,0.0512,0.053248,7.13728,0.059232
+809,87.6337,11.4111,7.98413,0.037888,0.572416,0.007232,0.006048,0.016384,0.0504,0.053888,7.18045,0.059424
+810,102.492,9.75684,7.98675,0.038912,0.601344,0.006912,0.005728,0.016128,0.051072,0.054048,7.15366,0.058944
+811,100.372,9.96289,7.96294,0.037728,0.565248,0.008224,0.006112,0.016128,0.050688,0.05344,7.16611,0.059264
+812,93.6957,10.6729,8.0513,0.037472,0.622144,0.006592,0.006048,0.016192,0.05152,0.05472,7.19862,0.057984
+813,88.7887,11.2627,8.07658,0.038912,0.677088,0.006944,0.005632,0.01616,0.049888,0.054528,7.16832,0.059104
+814,93.6785,10.6748,8.05325,0.038496,0.646016,0.008192,0.005536,0.01616,0.049984,0.054624,7.17648,0.05776
+815,100.758,9.9248,7.94957,0.038912,0.55904,0.008224,0.0056,0.016,0.050016,0.053344,7.15907,0.05936
+816,91.9953,10.8701,8.17942,0.038848,0.739552,0.006144,0.006144,0.016384,0.051104,0.053344,7.20896,0.058944
+817,101.982,9.80566,7.9913,0.03888,0.573472,0.008192,0.006144,0.016384,0.05072,0.053728,7.18438,0.059392
+818,103.56,9.65625,7.97699,0.038912,0.564512,0.008416,0.004608,0.016416,0.051168,0.054304,7.17923,0.059424
+819,97.4867,10.2578,8.12646,0.0504,0.688736,0.018624,0.006144,0.026656,0.051104,0.061504,7.16522,0.05808
+820,102.729,9.73438,7.97494,0.0376,0.569344,0.008224,0.006112,0.016384,0.050784,0.053664,7.17414,0.058688
+821,98.1595,10.1875,7.96214,0.038528,0.560832,0.0072,0.006016,0.016384,0.051104,0.053344,7.17005,0.058688
+822,96.7498,10.3359,7.99904,0.038944,0.567264,0.008192,0.006144,0.016352,0.051168,0.053344,7.19843,0.0592
+823,99.7273,10.0273,8.00259,0.037888,0.587296,0.006624,0.006016,0.016032,0.049632,0.053344,7.18634,0.059424
+824,102.708,9.73633,7.93805,0.037984,0.561312,0.006912,0.005696,0.016128,0.049888,0.05328,7.14893,0.05792
+825,89.5418,11.168,7.94086,0.038656,0.579904,0.006848,0.005792,0.01616,0.051136,0.053888,7.12909,0.059392
+826,97.8219,10.2227,7.9665,0.04016,0.58192,0.008,0.0048,0.016384,0.0512,0.05328,7.15158,0.059168
+827,102.946,9.71387,7.96662,0.038656,0.591232,0.0072,0.005984,0.016384,0.050496,0.053696,7.14368,0.059296
+828,88.2454,11.332,7.98662,0.038912,0.607808,0.00832,0.0056,0.016256,0.050208,0.053184,7.14752,0.058816
+829,103.236,9.68652,7.98086,0.037664,0.591744,0.008,0.005568,0.015232,0.0512,0.054848,7.15747,0.059136
+830,98.9085,10.1104,7.95613,0.038912,0.548896,0.008192,0.005408,0.016128,0.050112,0.054272,7.17517,0.05904
+831,100.196,9.98047,7.95443,0.038816,0.565344,0.008192,0.005856,0.016224,0.051648,0.053248,7.15702,0.05808
+832,93.4307,10.7031,7.98685,0.038496,0.589472,0.008224,0.004832,0.016384,0.0512,0.053248,7.16595,0.05904
+833,101.769,9.82617,7.94835,0.038624,0.553312,0.008192,0.005664,0.016128,0.050944,0.053568,7.16253,0.059392
+834,101.316,9.87012,8.08141,0.038912,0.667648,0.007872,0.005568,0.015392,0.05104,0.054304,7.1824,0.058272
+835,95.5491,10.4658,7.9983,0.037696,0.618496,0.008192,0.005824,0.016224,0.050816,0.054112,7.14762,0.059328
+836,103.205,9.68945,7.96262,0.038592,0.554976,0.008,0.00464,0.016384,0.0512,0.053248,7.17773,0.057856
+837,98.6417,10.1377,7.96022,0.038912,0.567296,0.007808,0.005568,0.015328,0.052224,0.05392,7.15994,0.059232
+838,101.891,9.81445,7.93472,0.037632,0.55088,0.008,0.005568,0.016224,0.050112,0.053248,7.15571,0.057344
+839,96.6767,10.3438,7.92976,0.038368,0.549536,0.007776,0.005568,0.01536,0.051168,0.054976,7.14784,0.059168
+840,100.54,9.94629,7.99878,0.038656,0.616704,0.007712,0.004576,0.016384,0.0512,0.05488,7.14992,0.058752
+841,101.698,9.83301,7.92947,0.038912,0.570496,0.00704,0.0056,0.016288,0.051008,0.053568,7.12755,0.059008
+842,101.456,9.85645,7.93805,0.038464,0.55136,0.008192,0.005728,0.016224,0.051392,0.053664,7.15552,0.057504
+843,87.4541,11.4346,8.07645,0.038592,0.69584,0.008512,0.004608,0.016352,0.051232,0.053216,7.14896,0.059136
+844,100.57,9.94336,7.93555,0.038336,0.555616,0.008224,0.005888,0.016224,0.049536,0.054432,7.14838,0.058912
+845,103.226,9.6875,7.96656,0.038368,0.5744,0.007456,0.004832,0.016352,0.051232,0.053216,7.16186,0.058848
+846,93.0233,10.75,7.96672,0.038912,0.587776,0.008224,0.00576,0.01616,0.049728,0.053248,7.14867,0.05824
+847,99.3982,10.0605,8.01005,0.038848,0.577856,0.008192,0.005568,0.016224,0.056032,0.062624,7.18694,0.05776
+848,103.476,9.66406,7.95731,0.037664,0.565248,0.008064,0.005568,0.015232,0.051008,0.054432,7.16227,0.057824
+849,95.2824,10.4951,8.01542,0.038496,0.650016,0.008192,0.005632,0.018944,0.051008,0.05344,7.13075,0.058944
+850,101.446,9.85742,7.96131,0.03872,0.561088,0.007072,0.005568,0.016224,0.049952,0.054752,7.17002,0.05792
+851,105.851,9.44727,7.9503,0.0376,0.56448,0.008032,0.004992,0.016416,0.050944,0.053472,7.15523,0.059136
+852,101.587,9.84375,7.94627,0.037728,0.566752,0.008032,0.0048,0.016384,0.051168,0.053248,7.14957,0.058592
+853,102.247,9.78027,7.92208,0.038304,0.553056,0.007072,0.006144,0.016256,0.04928,0.055296,7.13888,0.057792
+854,102.873,9.7207,7.92986,0.038912,0.560864,0.006432,0.006144,0.01632,0.0512,0.053376,7.13885,0.05776
+855,102.966,9.71191,7.96214,0.038496,0.56992,0.007936,0.004576,0.016384,0.051168,0.05328,7.16128,0.059104
+856,104.277,9.58984,7.93248,0.037664,0.554976,0.008192,0.005568,0.016832,0.050368,0.054208,7.1465,0.058176
+857,94.1176,10.625,8.27606,0.038496,0.895136,0.018368,0.005568,0.019424,0.050464,0.053632,7.1367,0.058272
+858,101.618,9.84082,7.99082,0.038912,0.618496,0.008192,0.006144,0.016224,0.050752,0.05344,7.13974,0.058912
+859,102.946,9.71387,7.96115,0.03856,0.584576,0.008192,0.006144,0.016288,0.05104,0.053504,7.14342,0.059424
+860,101.911,9.8125,7.97779,0.037344,0.600096,0.008,0.004608,0.016416,0.051168,0.055296,7.14701,0.057856
+861,97.0248,10.3066,7.98118,0.038208,0.598848,0.008224,0.006112,0.031936,0.049984,0.054592,7.13507,0.058208
+862,105.231,9.50293,7.94614,0.038176,0.551648,0.008224,0.006112,0.016384,0.0512,0.053248,7.16186,0.059296
+863,99.2729,10.0732,7.95654,0.038944,0.548064,0.008384,0.004672,0.016416,0.051136,0.05328,7.17773,0.05792
+864,89.7773,11.1387,7.94419,0.038816,0.555104,0.00832,0.006016,0.016384,0.05056,0.053344,7.15795,0.057696
+865,98.1313,10.1904,8.01875,0.037696,0.603968,0.007968,0.005568,0.015328,0.051232,0.053216,7.17158,0.072192
+866,102.145,9.79004,7.99203,0.037632,0.589312,0.006624,0.006016,0.016128,0.049568,0.054592,7.17482,0.057344
+867,95.4334,10.4785,7.97456,0.037344,0.603424,0.007968,0.004896,0.016384,0.05104,0.05344,7.14042,0.059648
+868,92.2439,10.8408,7.92931,0.038912,0.568992,0.008224,0.005568,0.015232,0.0512,0.05328,7.12906,0.058848
+869,101.81,9.82227,7.94419,0.037344,0.567296,0.008192,0.0056,0.016128,0.049952,0.05488,7.14589,0.058912
+870,94.1176,10.625,8.04646,0.038624,0.653376,0.008224,0.005568,0.015392,0.051168,0.053248,7.16186,0.059008
+871,103.153,9.69434,7.98074,0.038816,0.60176,0.008256,0.005568,0.015488,0.051008,0.054784,7.14598,0.059072
+872,98.5563,10.1465,8.10742,0.049152,0.712736,0.00816,0.006144,0.01632,0.051104,0.053408,7.15162,0.058784
+873,100.907,9.91016,7.93389,0.038784,0.565312,0.00848,0.004672,0.016352,0.0512,0.05456,7.1353,0.059232
+874,92.7956,10.7764,8.12032,0.038912,0.743424,0.006144,0.006144,0.016384,0.051072,0.053408,7.14707,0.05776
+875,101.446,9.85742,7.98515,0.038752,0.610464,0.008192,0.006144,0.016128,0.049408,0.05472,7.14195,0.059392
+876,88.6657,11.2783,8.04038,0.037248,0.649216,0.008192,0.00608,0.016288,0.049376,0.05488,7.16016,0.058944
+877,102.124,9.79199,7.95472,0.038976,0.59184,0.008,0.005568,0.015328,0.051232,0.054496,7.12986,0.059424
+878,102.77,9.73047,7.9471,0.037728,0.595968,0.007488,0.0048,0.016384,0.05104,0.053408,7.1225,0.057792
+879,93.6186,10.6816,7.95101,0.038784,0.580128,0.008224,0.0056,0.01616,0.050144,0.05328,7.14083,0.057856
+880,101.477,9.85449,7.96077,0.0384,0.592544,0.00784,0.005568,0.015296,0.051168,0.054976,7.13661,0.058368
+881,101.196,9.88184,7.96531,0.038656,0.588672,0.008224,0.006112,0.016224,0.050464,0.053696,7.14515,0.058112
+882,98.1972,10.1836,8.05274,0.038784,0.661632,0.008096,0.005568,0.016192,0.050016,0.069536,7.1448,0.058112
+883,102.165,9.78809,7.90938,0.038912,0.55296,0.006144,0.006144,0.016384,0.051072,0.053408,7.12643,0.05792
+884,103.143,9.69531,7.94214,0.038912,0.556608,0.00816,0.004576,0.016416,0.051072,0.053344,7.15526,0.057792
+885,99.3403,10.0664,7.98451,0.038272,0.602944,0.008192,0.006144,0.016256,0.050656,0.053952,7.14915,0.058944
+886,98.471,10.1553,7.96576,0.038528,0.592288,0.007936,0.005536,0.01632,0.05008,0.053248,7.14339,0.058432
+887,91.7727,10.8965,8.14099,0.038304,0.772928,0.018272,0.005568,0.016096,0.050176,0.0544,7.12589,0.05936
+888,99.1768,10.083,8.0248,0.037728,0.658752,0.006848,0.005792,0.016192,0.051008,0.05392,7.1353,0.059264
+889,95.4512,10.4766,7.9807,0.038912,0.59184,0.008256,0.005632,0.016096,0.04992,0.054272,7.15677,0.059008
+890,102.012,9.80273,7.93494,0.037856,0.568448,0.00816,0.005024,0.016384,0.050816,0.053632,7.13696,0.057664
+891,98.2066,10.1826,7.95629,0.038272,0.579744,0.008032,0.004736,0.016384,0.0512,0.054432,7.13402,0.069472
+892,93.6528,10.6777,7.97936,0.037216,0.593728,0.007968,0.005568,0.015328,0.051008,0.05344,7.15734,0.05776
+893,101.82,9.82129,7.9577,0.038912,0.587776,0.008192,0.006048,0.016096,0.050752,0.05408,7.13696,0.05888
+894,101.066,9.89453,7.9401,0.038496,0.577952,0.006144,0.006144,0.016384,0.050208,0.052192,7.13475,0.057824
+895,103.539,9.6582,7.95926,0.037696,0.587328,0.007968,0.004768,0.016416,0.050944,0.053504,7.14134,0.059296
+896,102.134,9.79102,7.90506,0.037408,0.558976,0.006208,0.006144,0.016384,0.050464,0.057696,7.11309,0.058688
+897,99.7176,10.0283,8.00387,0.038272,0.621472,0.008,0.005568,0.015136,0.051168,0.053248,7.15162,0.059392
+898,103.091,9.7002,7.98029,0.037088,0.589792,0.008256,0.00608,0.016384,0.050656,0.053824,7.15955,0.058656
+899,101.557,9.84668,7.91027,0.03776,0.552224,0.008,0.005024,0.016384,0.0512,0.053248,7.12816,0.058272
+900,89.09,11.2246,7.95357,0.0384,0.562944,0.008224,0.004832,0.016384,0.0512,0.053248,7.15981,0.058528
+901,99.8343,10.0166,7.95395,0.038912,0.567296,0.008,0.005568,0.016128,0.050176,0.053248,7.15571,0.058912
+902,97.8126,10.2236,7.94624,0.038912,0.559104,0.008192,0.006144,0.016384,0.050752,0.053568,7.15574,0.05744
+903,96.051,10.4111,7.94483,0.037504,0.565152,0.008096,0.005568,0.01616,0.050144,0.054848,7.14938,0.057984
+904,104.203,9.59668,7.95718,0.037696,0.593568,0.00832,0.005568,0.016192,0.050016,0.052896,7.13514,0.057792
+905,101.326,9.86914,7.96298,0.038848,0.590432,0.008192,0.005664,0.016096,0.04992,0.053248,7.14112,0.059456
+906,103.382,9.67285,7.93984,0.0384,0.559616,0.007968,0.005568,0.016608,0.051104,0.053856,7.14758,0.059136
+907,98.1313,10.1904,8.19373,0.03856,0.807264,0.008192,0.005984,0.016128,0.050816,0.053472,7.15373,0.059584
+908,98.9276,10.1084,7.98438,0.038816,0.59712,0.0072,0.005984,0.016384,0.050368,0.05392,7.15587,0.05872
+909,102.023,9.80176,7.93805,0.038944,0.579232,0.008,0.004608,0.016384,0.05056,0.053472,7.12746,0.059392
+910,103.728,9.64062,7.9688,0.036736,0.58384,0.00816,0.00592,0.016032,0.050944,0.053632,7.15517,0.058368
+911,88.0103,11.3623,7.9672,0.038368,0.592896,0.007712,0.004576,0.016384,0.0512,0.05328,7.14448,0.058304
+912,97.4403,10.2627,8.02618,0.038912,0.670784,0.007104,0.004096,0.016384,0.050848,0.0536,7.12659,0.057856
+913,97.4681,10.2598,7.9217,0.0384,0.554624,0.007232,0.005952,0.016384,0.055296,0.054336,7.13005,0.059424
+914,102.977,9.71094,7.96096,0.037856,0.550944,0.00768,0.004608,0.016352,0.0512,0.054464,7.17907,0.058784
+915,100.609,9.93945,7.97754,0.03888,0.59968,0.008416,0.004864,0.016384,0.0512,0.053248,7.1455,0.05936
+916,95.7188,10.4473,7.91552,0.038944,0.563168,0.007904,0.005536,0.015232,0.051232,0.0544,7.11971,0.059392
+917,99.4851,10.0518,7.91965,0.037664,0.552992,0.008192,0.006112,0.016384,0.0512,0.053248,7.13469,0.059168
+918,98.6513,10.1367,7.98736,0.038912,0.587936,0.008192,0.004096,0.016384,0.050784,0.053664,7.168,0.059392
+919,101.196,9.88184,7.93613,0.038688,0.583968,0.008192,0.00576,0.01616,0.049792,0.054752,7.12122,0.0576
+920,101.982,9.80566,7.94186,0.038272,0.569344,0.008128,0.005056,0.016384,0.05104,0.053408,7.14128,0.058944
+921,88.658,11.2793,8.00154,0.038592,0.620352,0.00768,0.00512,0.016384,0.050816,0.053504,7.15098,0.058112
+922,98.1783,10.1855,8.01846,0.037408,0.616128,0.008224,0.005568,0.015264,0.051136,0.05328,7.17206,0.059392
+923,102.533,9.75293,7.96966,0.03792,0.601024,0.007072,0.005568,0.016,0.050112,0.053248,7.13933,0.059392
+924,97.5052,10.2559,8.07952,0.037728,0.704512,0.008192,0.006144,0.01632,0.050816,0.053504,7.14362,0.058688
+925,102.915,9.7168,8.06739,0.0384,0.683936,0.008288,0.017216,0.016384,0.06336,0.053376,7.12813,0.058304
+926,102.349,9.77051,7.97901,0.038912,0.595296,0.006816,0.005824,0.016256,0.049632,0.054368,7.15251,0.059392
+927,91.9705,10.873,7.98515,0.05264,0.575456,0.007968,0.00496,0.016384,0.0512,0.053248,7.1639,0.059392
+928,100.639,9.93652,7.93658,0.038656,0.551744,0.008032,0.005568,0.016096,0.050176,0.053248,7.1552,0.057856
+929,96.042,10.4121,7.9736,0.037696,0.595648,0.007968,0.005568,0.015392,0.051168,0.053248,7.14883,0.05808
+930,102.104,9.79395,7.95034,0.038912,0.577184,0.00816,0.005568,0.015328,0.051168,0.05488,7.1409,0.05824
+931,102.063,9.79785,7.98618,0.037888,0.605568,0.007968,0.00496,0.016384,0.050208,0.054016,7.15094,0.05824
+932,94.0571,10.6318,7.97325,0.037248,0.591872,0.008224,0.00576,0.016128,0.04976,0.054528,7.15165,0.05808
+933,96.5036,10.3623,7.99363,0.037248,0.608192,0.008192,0.006144,0.026624,0.0512,0.053248,7.14346,0.059328
+934,102.78,9.72949,7.96083,0.038592,0.558912,0.007232,0.005984,0.016384,0.050272,0.053952,7.17027,0.059232
+935,99.4658,10.0537,7.92576,0.038752,0.554944,0.006368,0.006144,0.016256,0.050368,0.053984,7.13955,0.059392
+936,92.6445,10.7939,8.02387,0.038624,0.631488,0.008224,0.005568,0.01616,0.050112,0.053248,7.16182,0.058624
+937,94.1523,10.6211,8.14694,0.038816,0.780416,0.008192,0.015872,0.016576,0.050624,0.053824,7.12326,0.05936
+938,92.5106,10.8096,7.95418,0.038624,0.575776,0.008224,0.006112,0.016352,0.05088,0.059776,7.1393,0.059136
+939,99.2729,10.0732,7.97674,0.038464,0.594368,0.008224,0.006048,0.016192,0.049408,0.054656,7.15024,0.059136
+940,92.0367,10.8652,7.96122,0.037504,0.585696,0.008192,0.005984,0.016288,0.050496,0.053824,7.14499,0.05824
+941,97.3384,10.2734,7.98902,0.03888,0.637216,0.008192,0.006144,0.016384,0.050816,0.053632,7.11872,0.05904
+942,102.76,9.73145,7.95296,0.037696,0.569344,0.008192,0.006112,0.016256,0.050688,0.053728,7.1519,0.05904
+943,98.2537,10.1777,7.94842,0.03808,0.575552,0.008352,0.0048,0.016384,0.05088,0.053568,7.1425,0.058304
+944,100.847,9.91602,7.93821,0.038272,0.559584,0.008352,0.005568,0.016192,0.050112,0.054912,7.14582,0.059392
+945,94.9467,10.5322,7.94038,0.038688,0.565376,0.007968,0.004704,0.016384,0.05088,0.053568,7.14506,0.05776
+946,89.028,11.2324,7.92246,0.037664,0.562464,0.008288,0.004736,0.016384,0.05088,0.0536,7.12906,0.059392
+947,106.767,9.36621,7.94755,0.038912,0.57504,0.007968,0.004768,0.016384,0.0512,0.054592,7.14,0.058688
+948,97.2922,10.2783,8.01578,0.038176,0.619264,0.008192,0.006144,0.016384,0.050848,0.05344,7.16531,0.058016
+949,102.012,9.80273,7.93306,0.038912,0.566624,0.006816,0.0056,0.016256,0.049824,0.053248,7.13693,0.058848
+950,97.5424,10.252,8.06886,0.038944,0.6632,0.008096,0.0168,0.016352,0.051232,0.053248,7.16186,0.059136
+951,100.402,9.95996,8.05603,0.055296,0.66096,0.006688,0.006144,0.016384,0.05072,0.053504,7.14762,0.05872
+952,98.9468,10.1064,8.05683,0.045056,0.653312,0.007808,0.005568,0.015296,0.051232,0.054304,7.16691,0.057344
+953,100.481,9.95215,7.93331,0.03824,0.563168,0.0072,0.006048,0.016384,0.050816,0.053632,7.13894,0.05888
+954,103.991,9.61621,7.94259,0.037568,0.56288,0.008256,0.0056,0.01616,0.050176,0.053216,7.1496,0.059136
+955,102.523,9.75391,7.92275,0.038144,0.555712,0.007968,0.005568,0.015232,0.051232,0.053216,7.13114,0.064544
+956,103.843,9.62988,7.94643,0.037408,0.562464,0.006848,0.005632,0.016224,0.049856,0.053216,7.15571,0.059072
+957,100.186,9.98145,7.93325,0.038912,0.554528,0.007968,0.0048,0.016384,0.050688,0.05376,7.14675,0.059456
+958,104.639,9.55664,7.97491,0.038912,0.586816,0.008256,0.004992,0.016384,0.0512,0.053248,7.15686,0.05824
+959,94.4301,10.5898,8.22515,0.037248,0.851232,0.008512,0.005568,0.015328,0.0512,0.053248,7.14467,0.058144
+960,103.07,9.70215,7.94214,0.038624,0.555296,0.008192,0.006112,0.016064,0.050656,0.05408,7.15373,0.059392
+961,98.8322,10.1182,7.97584,0.037824,0.596,0.007552,0.004704,0.01744,0.050144,0.054336,7.14848,0.05936
+962,101.921,9.81152,8.07526,0.038784,0.67392,0.008192,0.005632,0.02624,0.051136,0.053568,7.15984,0.057952
+963,101.911,9.8125,7.98509,0.038944,0.589792,0.008192,0.005824,0.01616,0.050752,0.052192,7.16378,0.059456
+964,102.688,9.73828,7.98522,0.038464,0.59648,0.007616,0.004672,0.016384,0.0512,0.053248,7.15776,0.059392
+965,101.156,9.88574,8.0039,0.038688,0.6088,0.008512,0.005824,0.016384,0.0512,0.053184,7.16349,0.057824
+966,93.3795,10.709,7.9495,0.038496,0.564768,0.007232,0.005952,0.016384,0.050976,0.05968,7.14746,0.05856
+967,103.843,9.62988,7.94624,0.038912,0.58368,0.008192,0.006144,0.016384,0.050848,0.0536,7.1303,0.058176
+968,94.3257,10.6016,8.03629,0.038368,0.641856,0.008192,0.016384,0.016384,0.051232,0.053216,7.15162,0.05904
+969,92.2772,10.8369,7.99389,0.037824,0.644608,0.006656,0.005984,0.01616,0.051296,0.053536,7.11885,0.058976
+970,101.266,9.875,8.0057,0.04864,0.600704,0.009408,0.004896,0.016384,0.050784,0.069856,7.14566,0.05936
+971,101.739,9.8291,7.93133,0.038912,0.57456,0.008224,0.004992,0.016384,0.05072,0.05376,7.12496,0.058816
+972,101.84,9.81934,8.12237,0.03872,0.72096,0.02432,0.005568,0.015296,0.058528,0.054016,7.14688,0.05808
+973,99.0616,10.0947,7.91194,0.038816,0.5536,0.008192,0.005728,0.01616,0.049792,0.053248,7.12704,0.05936
+974,102.946,9.71387,7.99754,0.038432,0.598592,0.008192,0.006144,0.016384,0.051104,0.053344,7.16787,0.057472
+975,100.02,9.99805,7.98506,0.03824,0.624544,0.007232,0.005984,0.016384,0.0512,0.053248,7.12909,0.059136
+976,105.502,9.47852,7.95302,0.037472,0.561152,0.007968,0.005536,0.016224,0.05008,0.053312,7.16186,0.059424
+977,100.758,9.9248,7.96826,0.038912,0.60416,0.008224,0.006112,0.016192,0.05104,0.0536,7.13069,0.059328
+978,103.717,9.6416,7.96211,0.03728,0.571392,0.007456,0.004832,0.016384,0.05056,0.053664,7.16205,0.058496
+979,102.946,9.71387,7.92611,0.03872,0.549408,0.008192,0.005824,0.016,0.051008,0.053632,7.14528,0.058048
+980,98.7083,10.1309,8.25555,0.038336,0.864832,0.008192,0.017696,0.016768,0.050592,0.053696,7.14797,0.057472
+981,103.518,9.66016,7.92093,0.038752,0.552672,0.006592,0.00608,0.016064,0.049536,0.054656,7.13792,0.058656
+982,102.615,9.74512,7.97645,0.038432,0.567264,0.008224,0.00464,0.016416,0.051168,0.053248,7.17824,0.058816
+983,100.245,9.97559,7.99744,0.03888,0.604192,0.008224,0.006112,0.016128,0.050752,0.053248,7.16051,0.059392
+984,101.396,9.8623,7.95856,0.038944,0.55456,0.007872,0.004864,0.016352,0.051136,0.053312,7.1721,0.059424
+985,104.714,9.5498,7.94,0.038912,0.554048,0.008128,0.00512,0.016384,0.05104,0.053408,7.15366,0.059296
+986,102.482,9.75781,7.9831,0.038144,0.59472,0.00816,0.006144,0.016224,0.049312,0.05488,7.15802,0.057504
+987,102.236,9.78125,7.99715,0.037536,0.613696,0.008064,0.004928,0.016384,0.05072,0.05344,7.15325,0.059136
+988,101.951,9.80859,7.99315,0.038912,0.613856,0.007968,0.004864,0.016384,0.05088,0.053568,7.14752,0.0592
+989,101.537,9.84863,7.92166,0.03872,0.561344,0.008192,0.00528,0.0152,0.051104,0.053344,7.12909,0.059392
+990,102.114,9.79297,7.94144,0.038496,0.559104,0.00656,0.005952,0.016192,0.050656,0.053728,7.15206,0.058688
+991,101.326,9.86914,7.93152,0.038784,0.55728,0.008192,0.005568,0.01616,0.049952,0.054368,7.1423,0.058912
+992,90.893,11.002,7.95443,0.038688,0.583936,0.00816,0.00608,0.016096,0.057696,0.053248,7.13114,0.059392
+993,100.728,9.92773,7.95946,0.037792,0.560608,0.008736,0.005696,0.01616,0.049824,0.054816,7.16643,0.059392
+994,101.688,9.83398,7.97331,0.037408,0.595872,0.008192,0.005792,0.016288,0.049632,0.054752,7.14755,0.057824
+995,100,10,7.97318,0.038688,0.578048,0.008192,0.006144,0.016096,0.04944,0.055264,7.16189,0.059424
+996,94.2302,10.6123,8.01037,0.038528,0.61952,0.008192,0.005824,0.016064,0.049792,0.054592,7.15971,0.058144
+997,104.639,9.55664,7.92586,0.038848,0.555168,0.00752,0.004768,0.016384,0.0512,0.05328,7.1393,0.059392
+998,102.298,9.77539,7.97626,0.038464,0.576,0.008224,0.005568,0.016288,0.049792,0.054944,7.16835,0.058624
+999,102.298,9.77539,8.07594,0.038688,0.666464,0.00752,0.004768,0.016384,0.051104,0.053344,7.17824,0.059424
+1000,100.264,9.97363,7.97392,0.038848,0.5592,0.00816,0.006112,0.016288,0.050656,0.0536,7.18266,0.0584
+1001,94.7008,10.5596,8.01997,0.038464,0.624608,0.008064,0.004704,0.016384,0.051136,0.053312,7.16397,0.059328
+1002,102.461,9.75977,7.97744,0.037472,0.584736,0.008544,0.004736,0.016384,0.0512,0.054496,7.16061,0.059264
+1003,100.205,9.97949,7.95853,0.038784,0.585856,0.007904,0.005568,0.015232,0.051168,0.053248,7.1425,0.058272
+1004,97.4774,10.2588,7.96355,0.037792,0.600032,0.008352,0.005984,0.016384,0.050592,0.053888,7.1311,0.059424
+1005,99.8245,10.0176,7.97693,0.038464,0.607712,0.008288,0.004992,0.016384,0.051168,0.053312,7.13725,0.05936
+1006,98.4331,10.1592,7.96266,0.038912,0.561088,0.008256,0.0056,0.01616,0.051072,0.053696,7.1695,0.058368
+1007,100.748,9.92578,7.95203,0.038944,0.576736,0.008352,0.004704,0.017728,0.051904,0.05328,7.14134,0.05904
+1008,103.528,9.65918,7.93158,0.037472,0.569344,0.008192,0.005664,0.016224,0.050816,0.05408,7.13133,0.058464
+1009,102.145,9.79004,7.95869,0.038272,0.56192,0.007968,0.0056,0.016288,0.050016,0.052992,7.16765,0.057984
+1010,95.7188,10.4473,8.35325,0.052896,0.94064,0.024192,0.005984,0.01616,0.059648,0.053984,7.14134,0.0584
+1011,97.8313,10.2217,7.94013,0.038816,0.560256,0.0072,0.00608,0.016256,0.050464,0.054048,7.14867,0.058336
+1012,99.5141,10.0488,8.12634,0.038912,0.743072,0.007776,0.004064,0.015136,0.049152,0.053248,7.15578,0.0592
+1013,99.2248,10.0781,8.09987,0.038112,0.69712,0.008192,0.015552,0.016608,0.067264,0.053856,7.14374,0.059424
+1014,104.065,9.60938,7.97571,0.037664,0.572416,0.007072,0.005568,0.016224,0.049984,0.054272,7.17312,0.059392
+1015,101.286,9.87305,7.94829,0.038912,0.561152,0.008192,0.005344,0.016192,0.050144,0.054432,7.15453,0.059392
+1016,104.714,9.5498,7.98368,0.037792,0.560832,0.006464,0.006144,0.01616,0.050464,0.053984,7.1928,0.05904
+1017,92.8461,10.7705,7.95773,0.03888,0.560512,0.006816,0.005856,0.01616,0.05088,0.053408,7.16458,0.06064
+1018,102.216,9.7832,7.96838,0.038912,0.569248,0.008064,0.005568,0.015136,0.051232,0.054432,7.16678,0.059008
+1019,98.8512,10.1162,7.97302,0.037024,0.581632,0.008192,0.00576,0.016192,0.050752,0.053344,7.16208,0.058048
+1020,102.925,9.71582,7.97491,0.038912,0.567328,0.00816,0.005632,0.016,0.050048,0.054752,7.17469,0.059392
+1021,90.4753,11.0527,7.97549,0.037728,0.584736,0.008288,0.004768,0.016384,0.051008,0.05344,7.15162,0.06752
+1022,97.9248,10.2119,7.98118,0.038336,0.597728,0.007072,0.005568,0.014944,0.0512,0.05328,7.15363,0.059424
+1023,101.186,9.88281,7.95466,0.037088,0.570976,0.008256,0.005568,0.015296,0.051168,0.054304,7.1537,0.058304
+1024,102.925,9.71582,7.94419,0.038304,0.555424,0.006336,0.006144,0.016384,0.050464,0.053376,7.15837,0.059392
+1025,97.9998,10.2041,7.98928,0.03888,0.564704,0.00672,0.00592,0.016384,0.049376,0.053248,7.18582,0.068224
+1026,88.681,11.2764,7.95149,0.038208,0.559872,0.009184,0.00512,0.016384,0.05072,0.053728,7.15981,0.058464
+1027,97.5238,10.2539,7.96877,0.038912,0.591872,0.00816,0.005568,0.016032,0.050144,0.054304,7.14554,0.05824
+1028,96.3402,10.3799,8.02019,0.038624,0.6456,0.007296,0.004992,0.016384,0.051232,0.054752,7.14317,0.058144
+1029,101.436,9.8584,7.93226,0.037504,0.55696,0.008192,0.006144,0.01616,0.050528,0.053728,7.14384,0.0592
+1030,104.245,9.59277,7.93226,0.038528,0.557632,0.008192,0.005856,0.016,0.050976,0.053824,7.14368,0.057568
+1031,100.412,9.95898,8.00339,0.037536,0.620416,0.00816,0.006144,0.01632,0.051008,0.053504,7.15133,0.058976
+1032,94.5173,10.5801,7.97901,0.038464,0.612608,0.008224,0.0056,0.016096,0.050144,0.053248,7.13526,0.05936
+1033,90.3078,11.0732,7.97338,0.037376,0.601856,0.007968,0.004576,0.016384,0.050848,0.05344,7.14154,0.059392
+1034,98.6417,10.1377,7.98141,0.038464,0.566208,0.008192,0.006144,0.016192,0.049344,0.054688,7.18294,0.059232
+1035,84.4536,11.8408,7.93853,0.038496,0.56128,0.006912,0.005728,0.016192,0.04976,0.05472,7.14605,0.059392
+1036,97.2829,10.2793,7.98282,0.037632,0.569312,0.008192,0.006048,0.016128,0.05088,0.05392,7.18234,0.058368
+1037,97.6633,10.2393,8.00131,0.038464,0.627392,0.008224,0.005664,0.016128,0.049856,0.054688,7.14198,0.058912
+1038,100.956,9.90527,7.96707,0.038304,0.596736,0.008352,0.005536,0.016352,0.049824,0.054848,7.13958,0.057536
+1039,102.369,9.76855,7.95222,0.03728,0.593888,0.008192,0.005824,0.016064,0.049792,0.054944,7.12682,0.059424
+1040,101.406,9.86133,7.93808,0.037664,0.5608,0.006464,0.006144,0.016224,0.049344,0.053216,7.14957,0.058656
+1041,102.124,9.79199,7.96646,0.038592,0.590144,0.008192,0.005984,0.016096,0.049664,0.055136,7.14467,0.057984
+1042,96.0781,10.4082,7.99334,0.038912,0.618528,0.00816,0.006144,0.016064,0.05072,0.054016,7.14333,0.057472
+1043,99.0137,10.0996,7.93805,0.038624,0.573728,0.008192,0.00592,0.016064,0.051008,0.053056,7.13206,0.059392
+1044,103.403,9.6709,7.9544,0.038944,0.573408,0.008192,0.005728,0.016128,0.049856,0.053216,7.15098,0.057952
+1045,99.7467,10.0254,8.29776,0.049184,0.919456,0.008,0.005568,0.017248,0.050848,0.0536,7.13507,0.058784
+1046,94.1696,10.6191,8.04419,0.037376,0.655392,0.006112,0.006112,0.016384,0.051232,0.05328,7.15978,0.058528
+1047,102.002,9.80371,7.97974,0.038688,0.596832,0.008032,0.005536,0.016352,0.050048,0.054528,7.15155,0.058176
+1048,102.564,9.75,7.96925,0.0376,0.571136,0.008256,0.005568,0.015136,0.063488,0.053216,7.15571,0.059136
+1049,99.0042,10.1006,7.99974,0.038912,0.634944,0.006496,0.006144,0.016192,0.050624,0.053216,7.13398,0.059232
+1050,101.729,9.83008,7.94624,0.038688,0.569568,0.008416,0.00592,0.016384,0.050656,0.053824,7.14339,0.059392
+1051,101.246,9.87695,7.97501,0.038912,0.591872,0.008192,0.005664,0.016128,0.049888,0.053248,7.15309,0.058016
+1052,99.4271,10.0576,8.04045,0.03792,0.621536,0.008224,0.00576,0.016032,0.049856,0.055328,7.1864,0.059392
+1053,96.8688,10.3232,8.06122,0.038592,0.655232,0.0072,0.00592,0.016384,0.05056,0.069472,7.15811,0.059744
+1054,101.376,9.86426,7.9401,0.038784,0.569472,0.008192,0.00608,0.016032,0.049568,0.055008,7.13757,0.059392
+1055,100.108,9.98926,7.97974,0.0376,0.6,0.008064,0.0056,0.015104,0.051168,0.053248,7.15066,0.058304
+1056,93.4818,10.6973,8.08618,0.038624,0.67472,0.008192,0.0056,0.016256,0.054944,0.054272,7.17414,0.059424
+1057,100.837,9.91699,7.9616,0.038464,0.579168,0.008192,0.00496,0.016384,0.050816,0.053664,7.15098,0.058976
+1058,98.2348,10.1797,8.03776,0.038592,0.672064,0.008256,0.005568,0.015168,0.0512,0.053248,7.13517,0.058496
+1059,98.9946,10.1016,8.13309,0.038432,0.73616,0.017728,0.0048,0.016384,0.051008,0.05344,7.15571,0.059424
+1060,100.304,9.96973,7.98346,0.037504,0.581632,0.008192,0.006144,0.016384,0.050656,0.053792,7.17005,0.059104
+1061,100,10,7.98278,0.038272,0.598624,0.006528,0.00608,0.016224,0.05088,0.0536,7.15366,0.058912
+1062,99.9902,10.001,8.15184,0.037664,0.713824,0.007232,0.005984,0.016384,0.06144,0.069632,7.18227,0.057408
+1063,101.316,9.87012,7.95075,0.0384,0.569984,0.008128,0.005568,0.015264,0.0512,0.054432,7.14838,0.059392
+1064,97.9811,10.2061,8.028,0.038752,0.63824,0.008256,0.004928,0.016384,0.050688,0.0536,7.15792,0.059232
+1065,100.274,9.97266,7.95939,0.037728,0.567296,0.008192,0.005984,0.016096,0.050816,0.05392,7.16109,0.058272
+1066,102.002,9.80371,7.95731,0.037696,0.573088,0.006496,0.006144,0.016256,0.04928,0.053248,7.15706,0.058048
+1067,96.5127,10.3613,7.97526,0.037632,0.600032,0.008192,0.005344,0.016288,0.050048,0.053248,7.14547,0.059008
+1068,102.698,9.7373,7.936,0.038912,0.559104,0.008192,0.005664,0.016064,0.049952,0.053248,7.14547,0.059392
+1069,100.235,9.97656,7.96038,0.038912,0.58368,0.00816,0.005568,0.016096,0.051232,0.053504,7.14403,0.0592
+1070,91.707,10.9043,8.07597,0.037568,0.677888,0.008192,0.005888,0.01664,0.049184,0.054912,7.16819,0.057504
+1071,99.8927,10.0107,7.96877,0.038912,0.571424,0.008192,0.006112,0.016384,0.050464,0.053984,7.1639,0.059392
+1072,102.267,9.77832,7.9553,0.037728,0.567296,0.007232,0.005056,0.016384,0.0512,0.053248,7.15878,0.058368
+1073,93.235,10.7256,8.24115,0.038784,0.854144,0.008192,0.006144,0.016256,0.04928,0.053248,7.15571,0.059392
+1074,100.01,9.99902,7.96672,0.038528,0.579968,0.008192,0.00608,0.016224,0.050944,0.053728,7.15536,0.057696
+1075,100.698,9.93066,7.95853,0.038624,0.586016,0.009216,0.004896,0.016096,0.049664,0.054912,7.1409,0.058208
+1076,98.4521,10.1572,8.20182,0.038656,0.809152,0.007968,0.0048,0.016384,0.051008,0.05344,7.16163,0.058784
+1077,97.8968,10.2148,7.96973,0.037824,0.56528,0.00816,0.005824,0.016064,0.049792,0.054912,7.15814,0.073728
+1078,104.864,9.53613,7.95114,0.037664,0.577536,0.008,0.0056,0.01616,0.050144,0.054752,7.14326,0.058016
+1079,99.196,10.0811,8.01411,0.038464,0.645312,0.008032,0.0048,0.016384,0.050624,0.05376,7.13734,0.059392
+1080,101.729,9.83008,7.97901,0.037472,0.595776,0.008224,0.005568,0.016128,0.050112,0.055136,7.15178,0.058816
+1081,101.577,9.84473,7.96266,0.038528,0.588192,0.008224,0.005632,0.016256,0.051008,0.053792,7.14301,0.058016
+1082,101.356,9.86621,8.12246,0.038336,0.721888,0.008192,0.016352,0.016416,0.050944,0.053504,7.15776,0.059072
+1083,100.51,9.94922,7.94704,0.037664,0.569344,0.007936,0.005568,0.0152,0.0512,0.05328,7.14746,0.059392
+1084,93.6271,10.6807,8.01424,0.037728,0.628192,0.008288,0.005568,0.01536,0.051232,0.053216,7.15571,0.058944
+1085,101.467,9.85547,7.96467,0.038912,0.5952,0.008032,0.005024,0.016384,0.0512,0.053248,7.1383,0.058368
+1086,103.195,9.69043,7.97424,0.03856,0.590272,0.007968,0.0056,0.015296,0.051232,0.054304,7.15242,0.058592
+1087,100.589,9.94141,7.94413,0.03856,0.565632,0.008192,0.005568,0.016128,0.049952,0.054432,7.14634,0.059328
+1088,91.888,10.8828,7.97395,0.038912,0.585728,0.008192,0.00576,0.01616,0.049792,0.053216,7.15731,0.05888
+1089,100.659,9.93457,7.97229,0.038944,0.593888,0.008192,0.005728,0.01616,0.051232,0.053856,7.14547,0.058816
+1090,100.897,9.91113,7.95878,0.038624,0.577216,0.007168,0.005984,0.016384,0.05072,0.053728,7.14954,0.059424
+1091,89.3777,11.1885,7.98902,0.038432,0.606688,0.007584,0.004704,0.016384,0.0512,0.053248,7.15162,0.059168
+1092,103.749,9.63867,7.9472,0.037824,0.573408,0.00816,0.005536,0.016224,0.051168,0.054112,7.14278,0.057984
+1093,99.3596,10.0645,7.97651,0.038912,0.589824,0.008192,0.006144,0.016384,0.051168,0.053312,7.15344,0.059136
+1094,99.8732,10.0127,7.97898,0.037536,0.602048,0.008192,0.005632,0.015968,0.05008,0.054944,7.1456,0.058976
+1095,84.4327,11.8438,8.05488,0.038336,0.678304,0.008064,0.005568,0.015328,0.051168,0.054496,7.14566,0.057952
+1096,103.896,9.625,8.02445,0.038464,0.638976,0.006976,0.005664,0.01616,0.049856,0.053248,7.15725,0.057856
+1097,90.6756,11.0283,8.02966,0.04,0.641888,0.008288,0.0056,0.016352,0.050752,0.064,7.14394,0.058848
+1098,102.298,9.77539,7.98106,0.038784,0.572704,0.007232,0.00592,0.016384,0.050528,0.05392,7.17776,0.057824
+1099,97.1537,10.293,8.16211,0.037728,0.763072,0.008224,0.017152,0.016384,0.0512,0.0544,7.15459,0.05936
+1100,94.3518,10.5986,7.9967,0.038944,0.614368,0.008192,0.005792,0.016096,0.049792,0.055072,7.14979,0.058656
+1101,97.7192,10.2334,8.0576,0.037664,0.667648,0.008224,0.0056,0.016128,0.04992,0.053248,7.15981,0.05936
+1102,102.646,9.74219,7.95514,0.037568,0.565248,0.008224,0.005856,0.016064,0.049728,0.05472,7.15968,0.058048
+1103,102.145,9.79004,7.9913,0.038368,0.596512,0.008096,0.005568,0.016128,0.05008,0.05328,7.16512,0.058144
+1104,102.084,9.7959,7.97082,0.038592,0.575264,0.008,0.004832,0.016384,0.0512,0.0544,7.16442,0.057728
+1105,102.063,9.79785,7.93686,0.03776,0.5688,0.008032,0.004768,0.016384,0.050784,0.053184,7.13776,0.059392
+1106,102.574,9.74902,7.96499,0.037824,0.576512,0.008544,0.004768,0.016416,0.051168,0.05328,7.15773,0.058752
+1107,100.659,9.93457,7.94627,0.038752,0.580896,0.0072,0.005984,0.016384,0.050528,0.053888,7.13325,0.059392
+1108,99.7565,10.0244,7.9401,0.038912,0.571392,0.008192,0.005664,0.016384,0.051072,0.053888,7.13622,0.058368
+1109,99.5141,10.0488,7.96262,0.03856,0.600416,0.007328,0.00496,0.016384,0.050592,0.053856,7.13248,0.058048
+1110,83.9895,11.9062,8.01792,0.038368,0.627232,0.008192,0.005952,0.016256,0.050976,0.053312,7.15824,0.059392
+1111,93.8158,10.6592,7.96058,0.038592,0.588096,0.008192,0.006144,0.01632,0.04928,0.054784,7.14102,0.058144
+1112,99.9219,10.0078,7.98925,0.038944,0.595424,0.008064,0.004736,0.016384,0.050944,0.053504,7.16288,0.058368
+1113,101.941,9.80957,7.9913,0.038944,0.608224,0.008192,0.00576,0.016224,0.049696,0.053248,7.15162,0.059392
+1114,103.039,9.70508,7.97363,0.03776,0.588864,0.008288,0.004832,0.016384,0.0512,0.053248,7.15472,0.058336
+1115,93.5929,10.6846,8.01194,0.038208,0.64128,0.006752,0.005888,0.01616,0.049632,0.053248,7.14138,0.059392
+1116,97.6261,10.2432,8.1024,0.038528,0.707488,0.008224,0.006112,0.016384,0.050496,0.053984,7.16182,0.05936
+1117,93.8158,10.6592,8.0313,0.03824,0.608544,0.007968,0.004736,0.016384,0.0512,0.054752,7.19027,0.0592
+1118,90.8526,11.0068,8.08832,0.037856,0.690176,0.018432,0.006144,0.016384,0.050944,0.053504,7.15571,0.059168
+1119,98.9946,10.1016,8.00768,0.038912,0.620544,0.009216,0.00512,0.016384,0.051168,0.05328,7.15366,0.059392
+1120,99.7662,10.0234,8.02643,0.038624,0.620608,0.008,0.004832,0.016416,0.050816,0.0536,7.17539,0.058144
+1121,97.394,10.2676,8.02714,0.038912,0.656448,0.008224,0.005024,0.016384,0.051072,0.053376,7.1392,0.058496
+1122,102.472,9.75879,7.96656,0.037664,0.566528,0.00688,0.005824,0.01616,0.049728,0.053216,7.15981,0.070752
+1123,94.9643,10.5303,8.00448,0.03776,0.613408,0.007136,0.0056,0.016448,0.049632,0.054528,7.16061,0.05936
+1124,96.2135,10.3936,8.01203,0.03856,0.595808,0.008096,0.004832,0.016384,0.05104,0.053408,7.18643,0.057472
+1125,97.6913,10.2363,7.98963,0.03872,0.592448,0.008224,0.005632,0.016096,0.04992,0.05504,7.16541,0.058144
+1126,102.791,9.72852,7.96765,0.03904,0.578336,0.008192,0.00592,0.016096,0.049664,0.054592,7.15846,0.057344
+1127,100.451,9.95508,8.02909,0.037824,0.657376,0.008192,0.006144,0.016384,0.050208,0.054016,7.14109,0.057856
+1128,103.917,9.62305,7.97072,0.038464,0.576416,0.008224,0.006048,0.016096,0.050688,0.053184,7.16275,0.058848
+1129,101.136,9.8877,8.03994,0.038496,0.65616,0.008192,0.006112,0.016384,0.05056,0.053696,7.15152,0.058816
+1130,103.257,9.68457,7.95658,0.038624,0.600352,0.008192,0.005856,0.016288,0.049536,0.055296,7.12458,0.057856
+1131,99.4175,10.0586,7.9673,0.037504,0.602016,0.008256,0.005568,0.016096,0.051104,0.05424,7.13318,0.059328
+1132,103.299,9.68066,7.98771,0.037376,0.579584,0.007648,0.00464,0.016416,0.051168,0.053248,7.17939,0.05824
+1133,103.049,9.7041,7.95187,0.038272,0.567936,0.008192,0.006144,0.01632,0.050656,0.053856,7.15158,0.058912
+1134,94.6308,10.5674,8.01834,0.043392,0.61152,0.008352,0.004768,0.016416,0.051168,0.053248,7.17149,0.057984
+1135,95.952,10.4219,7.97533,0.037792,0.58368,0.008192,0.006144,0.016384,0.050816,0.053664,7.15974,0.058912
+1136,101.972,9.80664,7.95037,0.038944,0.57136,0.007712,0.004576,0.016384,0.0512,0.053248,7.14883,0.058112
+1137,96.06,10.4102,7.94214,0.038784,0.567424,0.008192,0.005696,0.016032,0.049952,0.0544,7.14336,0.058304
+1138,105.296,9.49707,7.97229,0.03856,0.569376,0.006688,0.005952,0.016256,0.050688,0.053088,7.17309,0.058592
+1139,100.56,9.94434,7.94893,0.038976,0.56096,0.008256,0.0048,0.016384,0.05088,0.053568,7.15725,0.057856
+1140,101.216,9.87988,8.00941,0.038944,0.613632,0.007936,0.00512,0.016352,0.051136,0.053344,7.16387,0.059072
+1141,95.3889,10.4834,8.01946,0.038944,0.630752,0.008192,0.00608,0.016064,0.049536,0.054976,7.15603,0.05888
+1142,102.39,9.7666,7.99485,0.037216,0.5632,0.008192,0.006144,0.016384,0.050464,0.053952,7.2008,0.058496
+1143,99.2729,10.0732,7.96672,0.038912,0.587104,0.008288,0.004672,0.016384,0.05104,0.053408,7.14752,0.059392
+1144,103.822,9.63184,7.94282,0.037536,0.564992,0.007968,0.004576,0.016416,0.050944,0.053472,7.14752,0.059392
+1145,91.888,10.8828,7.94016,0.038912,0.568992,0.008352,0.0056,0.016224,0.05008,0.054688,7.13923,0.05808
+1146,103.247,9.68555,8.00598,0.037312,0.589376,0.007968,0.004736,0.016384,0.0512,0.05328,7.18624,0.059488
+1147,100.422,9.95801,7.98515,0.038912,0.601408,0.008256,0.004736,0.016384,0.051232,0.053216,7.15293,0.05808
+1148,101.056,9.89551,7.96042,0.038592,0.563616,0.007552,0.004736,0.016384,0.0512,0.053248,7.16595,0.059136
+1149,98.0749,10.1963,8.0121,0.038272,0.5984,0.00672,0.005888,0.016224,0.051488,0.053376,7.18234,0.059392
+1150,104.192,9.59766,7.95446,0.038912,0.5632,0.008224,0.005824,0.01632,0.049568,0.054912,7.15808,0.059424
+1151,101.336,9.86816,7.96589,0.038528,0.559136,0.006496,0.006144,0.016256,0.050784,0.053536,7.17638,0.058624
+1152,101.749,9.82812,8.10768,0.038464,0.70272,0.008032,0.005568,0.020832,0.049824,0.053216,7.17005,0.058976
+1153,101.487,9.85352,7.92576,0.038912,0.564416,0.008224,0.004896,0.016384,0.050752,0.053696,7.12909,0.059392
+1154,103.132,9.69629,7.95427,0.038432,0.56416,0.008224,0.005984,0.016096,0.049568,0.055168,7.15789,0.058752
+1155,97.2552,10.2822,7.9959,0.038784,0.59648,0.006592,0.006048,0.016,0.049664,0.054656,7.16861,0.059072
+1156,97.1814,10.29,7.94851,0.038368,0.563968,0.008192,0.005856,0.016416,0.051392,0.053312,7.15312,0.057888
+1157,96.6402,10.3477,7.95606,0.038656,0.580288,0.008352,0.005984,0.016384,0.051168,0.05328,7.14342,0.058528
+1158,102.76,9.73145,7.96877,0.038368,0.56784,0.008064,0.005568,0.016384,0.049856,0.054688,7.16864,0.05936
+1159,101.286,9.87305,7.98544,0.039008,0.572288,0.008416,0.00592,0.016384,0.0512,0.053248,7.17981,0.059168
+1160,98.3009,10.1729,7.9624,0.038752,0.56992,0.006368,0.006144,0.016192,0.05088,0.05376,7.16186,0.058528
+1161,100.649,9.93555,8.00211,0.038496,0.6256,0.008256,0.005408,0.016192,0.049888,0.053408,7.1455,0.05936
+1162,102.925,9.71582,7.99242,0.038912,0.571392,0.008192,0.005696,0.016256,0.04976,0.053248,7.18979,0.059168
+1163,98.985,10.1025,8.05821,0.03904,0.677888,0.008064,0.005536,0.0272,0.0504,0.05376,7.13738,0.058944
+1164,102.718,9.73535,7.96317,0.03792,0.579488,0.008256,0.005568,0.01664,0.050752,0.054016,7.15162,0.058912
+1165,103.413,9.66992,7.96038,0.038912,0.569344,0.008224,0.005664,0.016224,0.051616,0.05344,7.15776,0.0592
+1166,99.5528,10.0449,8.03907,0.037888,0.642464,0.008224,0.004672,0.01776,0.049824,0.053344,7.16589,0.059008
+1167,93.1163,10.7393,7.97709,0.038528,0.591488,0.008256,0.004928,0.016384,0.050816,0.053472,7.15552,0.057696
+1168,104.597,9.56055,7.9423,0.037408,0.573344,0.008128,0.005568,0.015104,0.051168,0.053248,7.13933,0.059008
+1169,102.688,9.73828,7.97229,0.038912,0.561152,0.008192,0.005824,0.016128,0.049984,0.054784,7.17814,0.059168
+1170,102.935,9.71484,7.97082,0.038944,0.583648,0.008224,0.006112,0.016384,0.051008,0.05344,7.1553,0.05776
+1171,96.1051,10.4053,7.9873,0.038336,0.573952,0.006464,0.006144,0.016256,0.050784,0.053824,7.1823,0.059232
+1172,103.049,9.7041,7.97414,0.038912,0.55248,0.008,0.004768,0.016384,0.050912,0.053536,7.19053,0.058624
+1173,98.1125,10.1924,7.97498,0.038944,0.58384,0.008224,0.00608,0.016384,0.050208,0.053888,7.15798,0.059424
+1174,100.708,9.92969,7.95034,0.036864,0.546624,0.006336,0.006144,0.016384,0.050944,0.053504,7.17568,0.057856
+1175,98.1783,10.1855,8.02618,0.038848,0.60928,0.008192,0.006144,0.016256,0.050528,0.053312,7.18464,0.058976
+1176,97.2367,10.2842,8.09408,0.037728,0.65456,0.007968,0.00512,0.016384,0.05088,0.053568,7.20896,0.058912
+1177,97.9904,10.2051,8.00819,0.037664,0.620544,0.008224,0.006112,0.016352,0.049184,0.055232,7.15504,0.05984
+1178,89.152,11.2168,7.98112,0.037696,0.58704,0.008256,0.004736,0.016384,0.050752,0.053504,7.1641,0.058656
+1179,94.4649,10.5859,8.0103,0.037792,0.618336,0.008288,0.005568,0.016512,0.050688,0.053792,7.16003,0.059296
+1180,98.9659,10.1045,8.03174,0.038336,0.635584,0.008256,0.0056,0.016,0.050176,0.053248,7.16598,0.05856
+1181,96.7498,10.3359,7.98202,0.037792,0.610304,0.008192,0.006144,0.016128,0.050528,0.053664,7.14086,0.0584
+1182,99.5044,10.0498,8.12528,0.037824,0.728224,0.017088,0.005568,0.0192,0.051168,0.065536,7.14269,0.057984
+1183,103.445,9.66699,7.95763,0.038912,0.559104,0.008192,0.006144,0.016032,0.057696,0.0632,7.14938,0.058976
+1184,104.192,9.59766,7.96794,0.038912,0.5632,0.00816,0.005536,0.016384,0.049792,0.054976,7.17222,0.058752
+1185,96.2859,10.3857,7.96358,0.037824,0.595968,0.0072,0.005088,0.016384,0.051232,0.053216,7.13728,0.059392
+1186,102.739,9.7334,7.97814,0.038912,0.581344,0.007968,0.004608,0.016384,0.051232,0.053216,7.16592,0.05856
+1187,100.738,9.92676,7.94586,0.038752,0.565472,0.008224,0.00608,0.016192,0.050432,0.054176,7.14758,0.058944
+1188,102.863,9.72168,8.06784,0.037632,0.70368,0.006976,0.005568,0.016128,0.050016,0.055232,7.13504,0.057568
+1189,100.748,9.92578,7.92787,0.038464,0.554976,0.007232,0.005984,0.016288,0.050336,0.05392,7.14112,0.059552
+1190,97.8874,10.2158,8.01178,0.038912,0.60784,0.008288,0.005568,0.01632,0.050144,0.054304,7.17101,0.059392
+1191,98.2443,10.1787,7.99338,0.038336,0.600064,0.006752,0.005856,0.01616,0.049664,0.054432,7.16416,0.057952
+1192,92.0284,10.8662,7.94624,0.038848,0.574816,0.008224,0.0048,0.016384,0.0512,0.053248,7.14077,0.057952
+1193,98.8226,10.1191,7.97101,0.038816,0.589824,0.008224,0.00496,0.016384,0.05072,0.053344,7.14957,0.059168
+1194,98.7083,10.1309,7.98333,0.038688,0.625088,0.008224,0.00592,0.016256,0.049472,0.05472,7.12691,0.058048
+1195,94.6658,10.5635,7.99747,0.038944,0.616288,0.006272,0.006144,0.016384,0.050336,0.053824,7.14986,0.059424
+1196,92.3521,10.8281,8.12762,0.038752,0.708768,0.007616,0.014912,0.016384,0.050688,0.064,7.16803,0.058464
+1197,99.3982,10.0605,8.08128,0.038624,0.690496,0.0072,0.005056,0.016384,0.050624,0.053568,7.16006,0.059264
+1198,86.5523,11.5537,8.16902,0.038944,0.742368,0.007232,0.015936,0.016384,0.06592,0.05344,7.16986,0.058944
+1199,101.106,9.89062,7.97741,0.038496,0.59888,0.008192,0.005888,0.016352,0.050912,0.05344,7.14698,0.058272
+1200,95.961,10.4209,8.10646,0.045568,0.70784,0.007968,0.005056,0.016384,0.05104,0.05328,7.16118,0.058144
+1201,100.225,9.97754,8.02314,0.038944,0.640736,0.008224,0.01456,0.016384,0.0512,0.053248,7.14134,0.058496
+1202,101.759,9.82715,7.98096,0.038912,0.571232,0.008352,0.005696,0.016288,0.049696,0.054656,7.17795,0.058176
+1203,97.2737,10.2803,7.97277,0.038368,0.60304,0.006144,0.006144,0.016384,0.050752,0.053696,7.13933,0.058912
+1204,98.0186,10.2021,7.96246,0.038272,0.57152,0.006688,0.005952,0.016256,0.0496,0.054592,7.16038,0.0592
+1205,98.3386,10.1689,7.97619,0.03856,0.59632,0.008192,0.006048,0.016192,0.049472,0.053344,7.14944,0.058624
+1206,96.7772,10.333,8.14874,0.038912,0.748832,0.00832,0.004704,0.019744,0.04992,0.054432,7.16474,0.059136
+1207,96.3493,10.3789,8.0241,0.038912,0.618496,0.007776,0.005568,0.015328,0.0512,0.054336,7.17306,0.059424
+1208,93.7214,10.6699,7.98106,0.038272,0.580224,0.007872,0.005568,0.015232,0.0512,0.054784,7.16979,0.058112
+1209,93.8416,10.6562,8.00976,0.038336,0.62864,0.006816,0.005888,0.016,0.049792,0.053344,7.15277,0.058176
+1210,91.2819,10.9551,7.99347,0.037792,0.589376,0.008064,0.004672,0.016448,0.051136,0.053248,7.17414,0.058592
+1211,101.286,9.87305,7.96733,0.038528,0.58672,0.008192,0.00592,0.016096,0.049664,0.054688,7.14813,0.059392
+1212,99.0233,10.0986,7.97491,0.038912,0.580832,0.0072,0.005888,0.016384,0.05056,0.053888,7.16368,0.057568
+1213,89.1365,11.2188,7.96685,0.038624,0.586144,0.008032,0.005568,0.015136,0.051168,0.0544,7.14842,0.05936
+1214,100.353,9.96484,7.95898,0.0384,0.580544,0.0072,0.005088,0.016384,0.050784,0.053696,7.14749,0.059392
+1215,101.759,9.82715,8.03808,0.038752,0.637088,0.008192,0.005856,0.016128,0.049696,0.054592,7.1687,0.059072
+1216,99.7953,10.0205,7.97622,0.038048,0.564192,0.008192,0.006144,0.016256,0.050528,0.053184,7.18118,0.058496
+1217,90.2282,11.083,8.01382,0.038912,0.636928,0.007264,0.005024,0.016384,0.050848,0.053632,7.14544,0.059392
+1218,97.0708,10.3018,8.01792,0.038944,0.626688,0.00816,0.005728,0.016544,0.049408,0.054944,7.15923,0.058272
+1219,98.8799,10.1133,7.96061,0.038304,0.583904,0.007968,0.004704,0.016384,0.05072,0.053728,7.1455,0.059392
+1220,95.8981,10.4277,7.99139,0.037472,0.5936,0.008224,0.005568,0.016224,0.050176,0.053248,7.16794,0.058944
+1221,100.986,9.90234,7.96566,0.037856,0.579744,0.008256,0.00592,0.016384,0.050688,0.05376,7.15366,0.059392
+1222,100.777,9.92285,7.9913,0.038912,0.577536,0.008192,0.006144,0.016256,0.050592,0.053984,7.1816,0.05808
+1223,99.0042,10.1006,8.23299,0.038336,0.821856,0.007744,0.016288,0.029216,0.051264,0.056288,7.15261,0.059392
+1224,100.392,9.96094,8.00576,0.038912,0.599296,0.008,0.005056,0.016384,0.050944,0.053504,7.17619,0.057472
+1225,101.477,9.85449,7.96838,0.038912,0.57696,0.00672,0.00592,0.016224,0.050944,0.053248,7.16045,0.059008
+1226,101.467,9.85547,7.95238,0.038944,0.560512,0.008224,0.004672,0.016384,0.0512,0.053376,7.1608,0.058272
+1227,100.917,9.90918,7.97491,0.038912,0.581664,0.009184,0.00512,0.016384,0.0512,0.053248,7.15981,0.059392
+1228,96.0961,10.4062,7.99773,0.037792,0.570848,0.007936,0.004896,0.016384,0.0512,0.053248,7.19667,0.058752
+1229,102.853,9.72266,7.95805,0.038944,0.565216,0.008,0.005568,0.015104,0.0512,0.053248,7.16186,0.058912
+1230,96.9055,10.3193,8.04608,0.038432,0.6192,0.00816,0.006144,0.016064,0.050592,0.054144,7.19462,0.05872
+1231,103.518,9.66016,7.97286,0.038912,0.57344,0.008192,0.00608,0.01632,0.04928,0.0544,7.1679,0.058336
+1232,100.619,9.93848,7.98486,0.038944,0.588992,0.006944,0.005696,0.016192,0.049792,0.053248,7.16595,0.059104
+1233,100.787,9.92188,7.96224,0.038656,0.58176,0.008064,0.005568,0.0152,0.051168,0.054464,7.14835,0.059008
+1234,99.3596,10.0645,8.01146,0.038912,0.608256,0.008128,0.005568,0.016224,0.05104,0.05408,7.17018,0.059072
+1235,97.3199,10.2754,7.96922,0.038368,0.574336,0.00624,0.006144,0.016352,0.050784,0.053696,7.164,0.059296
+1236,97.1168,10.2969,8.00598,0.037536,0.608256,0.008192,0.006144,0.016352,0.050528,0.053472,7.16643,0.059072
+1237,95.1938,10.5049,8.104,0.038944,0.687872,0.008,0.005568,0.01536,0.05088,0.053536,7.18554,0.058304
+1238,99.6885,10.0312,8.03126,0.038624,0.61264,0.008192,0.006144,0.016416,0.050784,0.053632,7.18643,0.0584
+1239,97.0708,10.3018,7.9969,0.038944,0.601312,0.0072,0.005888,0.016384,0.051168,0.053312,7.16387,0.058816
+1240,100.363,9.96387,8.16435,0.038912,0.7344,0.008256,0.004864,0.02224,0.065824,0.05456,7.17693,0.058368
+1241,99.2152,10.0791,7.97923,0.039136,0.588896,0.0072,0.006016,0.016384,0.050688,0.05376,7.15776,0.059392
+1242,100.55,9.94531,8.004,0.038528,0.598816,0.008096,0.005568,0.016224,0.050016,0.053216,7.1759,0.057632
+1243,101.226,9.87891,7.98723,0.038016,0.603008,0.008128,0.005536,0.016128,0.05008,0.05328,7.15363,0.059424
+1244,102.145,9.79004,7.95296,0.037568,0.556224,0.006848,0.005792,0.016288,0.0496,0.055072,7.16822,0.057344
+1245,98.9754,10.1035,7.96672,0.03872,0.579136,0.008,0.00496,0.016352,0.050528,0.053312,7.15632,0.059392
+1246,99.961,10.0039,7.97606,0.038912,0.56096,0.007968,0.005568,0.015328,0.0512,0.05328,7.18435,0.058496
+1247,103.32,9.67871,7.96224,0.038784,0.578912,0.008128,0.00496,0.016384,0.051008,0.05344,7.15158,0.05904
+1248,95.5491,10.4658,8.01891,0.037856,0.60832,0.00816,0.006112,0.016384,0.05024,0.053856,7.18029,0.057696
+1249,101.066,9.89453,7.97101,0.038592,0.567264,0.008256,0.004896,0.016384,0.0512,0.053248,7.1721,0.059072
+1250,104.182,9.59863,7.99446,0.038912,0.593568,0.007872,0.004768,0.016384,0.0512,0.053248,7.17005,0.058464
+1251,98.6988,10.1318,8.06682,0.038912,0.68608,0.008192,0.00576,0.016256,0.050784,0.054176,7.14752,0.059136
+1252,98.9468,10.1064,7.98509,0.038912,0.585728,0.008192,0.006144,0.01616,0.051072,0.0536,7.16595,0.059328
+1253,101.769,9.82617,7.97286,0.038336,0.571968,0.007616,0.004672,0.016384,0.0512,0.05328,7.17149,0.05792
+1254,98.3764,10.165,7.99936,0.037344,0.602016,0.008,0.005568,0.016224,0.050176,0.05456,7.16659,0.05888
+1255,96.9513,10.3145,7.9967,0.03872,0.592096,0.00784,0.005536,0.015296,0.050944,0.053504,7.17392,0.058848
+1256,104.129,9.60352,7.9688,0.040064,0.56976,0.007968,0.0048,0.016384,0.0512,0.05328,7.16736,0.057984
+1257,95.3445,10.4883,8.14899,0.038656,0.749824,0.008192,0.005984,0.018592,0.051232,0.054464,7.16416,0.057888
+1258,95.5135,10.4697,7.96989,0.03824,0.576192,0.007328,0.004928,0.016384,0.050688,0.053248,7.16442,0.058464
+1259,97.8687,10.2178,8.0119,0.03744,0.606208,0.00752,0.004768,0.03264,0.050592,0.053984,7.15981,0.058944
+1260,97.0432,10.3047,8.04259,0.03872,0.628672,0.008256,0.005568,0.016256,0.050048,0.053248,7.1841,0.057728
+1261,93.0824,10.7432,7.97094,0.038432,0.581984,0.00656,0.00608,0.016224,0.050752,0.053664,7.15802,0.059232
+1262,97.4403,10.2627,7.97254,0.038592,0.547072,0.006208,0.006144,0.016128,0.049408,0.07168,7.17824,0.059072
+1263,100.718,9.92871,8.0313,0.038912,0.644608,0.007968,0.004832,0.016384,0.050912,0.053536,7.1553,0.058848
+1264,91.4694,10.9326,8.20842,0.038752,0.798528,0.008032,0.004608,0.016384,0.0512,0.053248,7.17824,0.059424
+1265,96.6402,10.3477,8.03866,0.03824,0.643168,0.008256,0.004864,0.016384,0.051104,0.053344,7.16502,0.058272
+1266,99.1096,10.0898,8.11962,0.037152,0.722656,0.008256,0.005568,0.016224,0.04992,0.055136,7.16573,0.058976
+1267,100.827,9.91797,8.01373,0.03776,0.612128,0.008,0.005568,0.01536,0.0512,0.053216,7.17194,0.05856
+1268,102.206,9.78418,8.00358,0.038912,0.621568,0.007072,0.005568,0.0168,0.050912,0.053792,7.15062,0.058336
+1269,96.2496,10.3896,8.10586,0.038688,0.708672,0.007968,0.005568,0.015296,0.0512,0.053248,7.16595,0.059264
+1270,100.639,9.93652,8.00275,0.038912,0.606208,0.008192,0.005728,0.016256,0.049696,0.053312,7.16589,0.05856
+1271,94.4998,10.582,7.97082,0.038688,0.57328,0.008224,0.005568,0.015264,0.0512,0.054272,7.16595,0.058368
+1272,100.907,9.91016,8.03805,0.03808,0.65952,0.007232,0.006016,0.016384,0.050848,0.0536,7.14752,0.058848
+1273,100.857,9.91504,7.95414,0.03872,0.587712,0.008032,0.004832,0.016384,0.051136,0.053312,7.13501,0.059008
+1274,99.737,10.0264,8.0552,0.049408,0.639136,0.008192,0.006112,0.016256,0.05136,0.053248,7.17322,0.058272
+1275,102.196,9.78516,7.95661,0.038816,0.590048,0.008192,0.006144,0.016288,0.050272,0.05328,7.13418,0.059392
+1276,102.4,9.76562,8.00646,0.037696,0.597152,0.007232,0.00592,0.016384,0.050528,0.05392,7.17962,0.058016
+1277,101.507,9.85156,7.97114,0.038528,0.555776,0.007968,0.004576,0.016384,0.0512,0.054304,7.18333,0.059072
+1278,99.844,10.0156,7.97898,0.038208,0.573568,0.00672,0.00592,0.016288,0.049472,0.0544,7.17504,0.05936
+1279,93.9019,10.6494,7.95504,0.038592,0.560032,0.007296,0.004992,0.016384,0.0512,0.05328,7.16522,0.058048
+1280,102.873,9.7207,7.97946,0.038368,0.559904,0.008256,0.005568,0.01616,0.050112,0.053216,7.19024,0.057632
+1281,95.4423,10.4775,7.97978,0.037632,0.576704,0.008576,0.005568,0.01536,0.051104,0.05344,7.172,0.059392
+1282,102.185,9.78613,7.97181,0.037856,0.565216,0.008256,0.00608,0.016384,0.05088,0.053568,7.17414,0.059424
+1283,83.6533,11.9541,7.99539,0.038656,0.581568,0.006464,0.006144,0.016224,0.050496,0.053216,7.1847,0.05792
+1284,101.941,9.80957,7.97286,0.038912,0.576736,0.006944,0.006016,0.017952,0.050944,0.053504,7.16246,0.059392
+1285,102.801,9.72754,7.95443,0.038912,0.566624,0.008256,0.004704,0.026624,0.0512,0.05472,7.14515,0.05824
+1286,100.599,9.94043,7.96442,0.03792,0.565248,0.008256,0.005024,0.016384,0.050656,0.053536,7.15923,0.06816
+1287,101.517,9.85059,7.96883,0.038912,0.58368,0.008224,0.005696,0.016096,0.051328,0.053824,7.15306,0.058016
+1288,94.1609,10.6201,8.02787,0.038944,0.608064,0.007968,0.005568,0.015392,0.051104,0.055296,7.18643,0.059104
+1289,100.432,9.95703,8.00678,0.038624,0.598464,0.008192,0.005856,0.016192,0.049696,0.05504,7.17581,0.058912
+1290,103.101,9.69922,8.01635,0.038592,0.604224,0.008,0.005024,0.016384,0.050944,0.053504,7.18234,0.057344
+1291,98.2631,10.1768,8.02899,0.037696,0.630784,0.008224,0.006112,0.016384,0.050592,0.053856,7.16698,0.058368
+1292,102.472,9.75879,7.97082,0.038912,0.581408,0.007872,0.00464,0.016384,0.051232,0.053216,7.15958,0.057568
+1293,97.7752,10.2275,7.95434,0.03824,0.577824,0.008224,0.0048,0.016384,0.051072,0.053184,7.14557,0.05904
+1294,102.729,9.73438,7.97699,0.038336,0.561792,0.00816,0.005888,0.016288,0.05056,0.054048,7.18362,0.058304
+1295,104.49,9.57031,7.97443,0.0512,0.561152,0.008192,0.006144,0.016384,0.0512,0.053248,7.1679,0.059008
+1296,98.8512,10.1162,8.07469,0.038784,0.682112,0.008192,0.006144,0.01616,0.049472,0.054272,7.16074,0.058816
+1297,100.837,9.91699,7.9689,0.038432,0.560992,0.008256,0.004768,0.016384,0.0512,0.053248,7.17619,0.059424
+1298,102.935,9.71484,7.99299,0.038816,0.591328,0.008224,0.004704,0.016384,0.0512,0.05328,7.17002,0.05904
+1299,98.2348,10.1797,8.0129,0.038272,0.596064,0.008032,0.0048,0.016384,0.051008,0.05344,7.18442,0.06048
+1300,103.854,9.62891,7.95258,0.038336,0.56192,0.008192,0.0056,0.016128,0.049952,0.054688,7.15974,0.058016
+1301,98.9468,10.1064,7.97901,0.038912,0.581632,0.008192,0.006144,0.016384,0.0512,0.05328,7.16518,0.05808
+1302,102.461,9.75977,7.97738,0.03776,0.589824,0.008192,0.00576,0.01616,0.061184,0.053632,7.14595,0.058912
+1303,99.7759,10.0225,8.07638,0.038912,0.67136,0.006528,0.005952,0.016096,0.050848,0.05408,7.17376,0.058848
+1304,102.257,9.7793,7.99939,0.038944,0.585696,0.008192,0.005984,0.016416,0.050528,0.05408,7.18026,0.059296
+1305,99.7662,10.0234,7.96973,0.037824,0.577536,0.00816,0.0056,0.016096,0.051392,0.05392,7.15981,0.059392
+1306,103.549,9.65723,7.96467,0.038944,0.565216,0.008192,0.005696,0.016288,0.049728,0.053216,7.1697,0.057696
+1307,101.901,9.81348,7.94858,0.037504,0.577408,0.008096,0.005568,0.015168,0.051168,0.054592,7.14003,0.05904
+1308,86.6768,11.5371,7.96048,0.038464,0.575936,0.007712,0.004576,0.016416,0.051168,0.053248,7.15366,0.059296
+1309,99.244,10.0762,8.11402,0.037408,0.71056,0.00816,0.006048,0.015648,0.050016,0.054752,7.17261,0.058816
+1310,99.9902,10.001,7.98954,0.03824,0.568224,0.008256,0.005536,0.016256,0.049856,0.05456,7.19069,0.05792
+1311,101.446,9.85742,7.97286,0.038944,0.569312,0.008192,0.005696,0.016288,0.049696,0.055296,7.17005,0.059392
+1312,102.339,9.77148,7.97491,0.038592,0.581952,0.00736,0.004928,0.016384,0.050944,0.053312,7.16378,0.057664
+1313,101.446,9.85742,7.98128,0.038752,0.571712,0.006208,0.006144,0.016384,0.0512,0.053248,7.17926,0.058368
+1314,95.6562,10.4541,8.0896,0.038656,0.676096,0.008192,0.00592,0.016192,0.05088,0.053792,7.18205,0.057824
+1315,99.5238,10.0479,8.0423,0.0384,0.631296,0.024352,0.005568,0.016768,0.049568,0.053248,7.16358,0.05952
+1316,97.9811,10.2061,8.01578,0.038784,0.599904,0.007968,0.004608,0.016384,0.051168,0.053312,7.18435,0.059296
+1317,98.471,10.1553,8.04659,0.039072,0.656736,0.008032,0.004768,0.016384,0.0512,0.054368,7.15664,0.059392
+1318,95.4245,10.4795,8.12646,0.038912,0.731136,0.008192,0.00576,0.016288,0.050816,0.054112,7.16186,0.059392
+1319,85.1488,11.7441,8.12109,0.037728,0.724896,0.008192,0.006144,0.016384,0.050624,0.0536,7.16522,0.058304
+1320,94.1349,10.623,8.14262,0.03824,0.767776,0.007232,0.006048,0.016384,0.051136,0.053312,7.14342,0.059072
+1321,94.9027,10.5371,8.05114,0.037344,0.669312,0.008128,0.005536,0.01536,0.05104,0.053312,7.15171,0.059392
+1322,96.1954,10.3955,8.14538,0.038464,0.770976,0.008192,0.00608,0.01616,0.04944,0.054752,7.14368,0.057632
+1323,95.5759,10.4629,8.06544,0.037376,0.683744,0.006368,0.006144,0.016256,0.050912,0.053664,7.15162,0.05936
+1324,97.034,10.3057,8.08653,0.038464,0.692128,0.008256,0.004576,0.016416,0.051168,0.05328,7.16387,0.058368
+1325,94.3257,10.6016,8.0855,0.038336,0.6944,0.006592,0.006112,0.016096,0.050656,0.054112,7.15981,0.059392
+1326,95.6652,10.4531,8.08755,0.040416,0.692768,0.008192,0.0056,0.016128,0.049952,0.053248,7.1633,0.057952
+1327,96.042,10.4121,8.04666,0.038624,0.65728,0.0072,0.00592,0.016384,0.05088,0.053248,7.15798,0.059136
+1328,97.9248,10.2119,8.06995,0.037856,0.671648,0.008,0.005568,0.015168,0.05104,0.053408,7.168,0.059264
+1329,96.5491,10.3574,8.0081,0.037312,0.628704,0.008128,0.005568,0.01616,0.050048,0.053216,7.1496,0.05936
+1330,97.5517,10.251,8.0425,0.038624,0.657696,0.007744,0.004544,0.016384,0.0512,0.053248,7.15366,0.059392
+1331,96.2406,10.3906,8.05488,0.037408,0.667648,0.008224,0.006112,0.016288,0.050688,0.053696,7.15587,0.058944
+1332,97.1261,10.2959,8.07219,0.038912,0.679936,0.008192,0.00592,0.01616,0.050688,0.054112,7.1592,0.059072
+1333,98.367,10.166,8.04864,0.038944,0.657312,0.006208,0.006144,0.016384,0.050432,0.053664,7.16016,0.059392
+1334,98.7559,10.126,8.04253,0.037216,0.64496,0.008192,0.00576,0.01632,0.0496,0.0544,7.16685,0.059232
+1335,98.4142,10.1611,8.02413,0.038912,0.636928,0.008128,0.005568,0.016192,0.049984,0.053248,7.15712,0.058048
+1336,100.422,9.95801,7.9919,0.038624,0.56816,0.008192,0.005792,0.016192,0.050848,0.054144,7.19168,0.058272
+1337,101.266,9.875,7.98797,0.037792,0.57344,0.008192,0.005888,0.016192,0.049696,0.054592,7.18294,0.059232
+1338,103.008,9.70801,8.00954,0.03872,0.610496,0.007296,0.004992,0.016384,0.051136,0.053312,7.16906,0.058144
+1339,96.823,10.3281,8.07472,0.038912,0.671296,0.006592,0.006048,0.016128,0.050624,0.054048,7.17216,0.058912
+1340,102.615,9.74512,7.97491,0.038912,0.569344,0.008032,0.005568,0.01616,0.050112,0.054528,7.17459,0.057664
+1341,100.343,9.96582,8.06579,0.037632,0.648928,0.007456,0.00512,0.016384,0.050272,0.053664,7.18694,0.059392
+1342,103.372,9.67383,8.00682,0.03808,0.584512,0.008192,0.006112,0.016224,0.050688,0.053952,7.19053,0.058528
+1343,102.946,9.71387,7.96877,0.038944,0.585696,0.008192,0.005568,0.01616,0.049952,0.054528,7.15034,0.059392
+1344,98.4331,10.1592,8.05686,0.038912,0.64832,0.0072,0.005984,0.016384,0.050336,0.054144,7.17776,0.057824
+1345,98.3481,10.168,8.02163,0.038752,0.620736,0.008192,0.006112,0.016256,0.04928,0.054688,7.16806,0.059552
+1346,101.951,9.80859,7.99002,0.0376,0.589344,0.008192,0.004576,0.016384,0.0512,0.054752,7.16986,0.058112
+1347,97.394,10.2676,8.09696,0.038656,0.690304,0.008352,0.005696,0.016096,0.049888,0.053216,7.17542,0.059328
+1348,99.8635,10.0137,8.0849,0.038912,0.677152,0.00688,0.00576,0.016256,0.051232,0.05376,7.17616,0.058784
+1349,100.57,9.94336,8.0377,0.038912,0.652992,0.008224,0.005568,0.0152,0.0512,0.054464,7.15194,0.0592
+1350,99.8732,10.0127,8.0073,0.038624,0.619968,0.008352,0.004896,0.016384,0.051008,0.05344,7.15549,0.059136
+1351,97.6075,10.2451,7.9935,0.038912,0.624448,0.006336,0.006144,0.016288,0.05056,0.053984,7.13869,0.058144
+1352,101.911,9.8125,8.02224,0.03856,0.610272,0.007968,0.004928,0.03072,0.0512,0.05456,7.16582,0.058208
+1353,98.2348,10.1797,8.00803,0.038944,0.616864,0.0072,0.005088,0.016384,0.051104,0.053344,7.15981,0.059296
+1354,99.6206,10.0381,8.02022,0.038816,0.612704,0.008192,0.00576,0.016288,0.05072,0.053536,7.17664,0.057568
+1355,97.0616,10.3027,7.97494,0.038848,0.577248,0.008256,0.005056,0.016384,0.051072,0.053376,7.16595,0.058752
+1356,100.313,9.96875,8.08115,0.038944,0.657376,0.008096,0.0056,0.016224,0.054048,0.054752,7.18698,0.059136
+1357,100.797,9.9209,8.01594,0.038912,0.622016,0.008192,0.004672,0.016384,0.051232,0.054432,7.16064,0.059456
+1358,99.9512,10.0049,8.25539,0.038848,0.852032,0.008192,0.005664,0.016096,0.04992,0.055232,7.17011,0.059296
+1359,96.8871,10.3213,8.10765,0.038656,0.682624,0.008256,0.016576,0.032032,0.051264,0.05328,7.16589,0.059072
+1360,102.349,9.77051,7.9881,0.03776,0.57344,0.008416,0.00592,0.016384,0.050656,0.053792,7.18381,0.05792
+1361,99.8537,10.0146,7.99194,0.037536,0.583648,0.008192,0.005696,0.01632,0.049664,0.053248,7.168,0.069632
+1362,97.4774,10.2588,7.98902,0.038528,0.60032,0.007936,0.004768,0.016384,0.050784,0.053696,7.15773,0.05888
+1363,101.156,9.88574,7.93888,0.037696,0.57104,0.006496,0.006112,0.016096,0.050752,0.053728,7.13757,0.059392
+1364,103.518,9.66016,7.97555,0.037472,0.568736,0.008128,0.004768,0.016384,0.050944,0.053536,7.17734,0.05824
+1365,93.0486,10.7471,7.9729,0.038912,0.581632,0.008224,0.006112,0.016288,0.051136,0.053344,7.15782,0.059424
+1366,100.847,9.91602,8.02038,0.037248,0.6144,0.008224,0.006112,0.01632,0.050784,0.05376,7.17421,0.059328
+1367,101.236,9.87793,7.98109,0.038656,0.568768,0.008,0.00512,0.016384,0.051136,0.053312,7.18029,0.059424
+1368,100.698,9.93066,8.01712,0.038944,0.603808,0.008064,0.005568,0.015392,0.051168,0.053248,7.18234,0.058592
+1369,97.0248,10.3066,7.94624,0.038944,0.564768,0.006592,0.006016,0.016096,0.050912,0.053344,7.15018,0.059392
+1370,99.3114,10.0693,8.06176,0.037792,0.645152,0.00736,0.004928,0.016384,0.050592,0.0536,7.18669,0.059264
+1371,98.3197,10.1709,8.00973,0.038912,0.608256,0.008224,0.00608,0.01616,0.050816,0.053216,7.16979,0.058272
+1372,101.749,9.82812,7.96672,0.038368,0.559904,0.00816,0.005664,0.016,0.050016,0.053344,7.17574,0.05952
+1373,101.467,9.85547,7.93536,0.038912,0.560992,0.007968,0.005568,0.016352,0.050112,0.05328,7.14342,0.058752
+1374,98.3953,10.1631,8.24493,0.038912,0.863584,0.008,0.00496,0.016384,0.0512,0.054592,7.14822,0.059072
+1375,96.622,10.3496,7.99194,0.037824,0.593728,0.008288,0.005568,0.016128,0.05008,0.054912,7.16634,0.059072
+1376,102.503,9.75586,8.00006,0.037792,0.593888,0.008192,0.006144,0.016384,0.051008,0.05344,7.17418,0.05904
+1377,92.6865,10.7891,8.15994,0.0376,0.76736,0.008,0.004896,0.017568,0.064256,0.053376,7.14749,0.059392
+1378,99.2344,10.0771,7.9999,0.038432,0.57024,0.00816,0.005536,0.01616,0.051264,0.053792,7.19898,0.057344
+1379,101.046,9.89648,8.00362,0.03856,0.635232,0.007488,0.0048,0.016384,0.0512,0.054272,7.13626,0.059424
+1380,100.01,9.99902,8.02634,0.038656,0.61488,0.007648,0.00464,0.016416,0.051168,0.054464,7.18067,0.057792
+1381,100.245,9.97559,7.94704,0.037824,0.57552,0.00816,0.005888,0.016032,0.051264,0.053728,7.13942,0.0592
+1382,100.039,9.99609,7.98822,0.03792,0.572544,0.008032,0.00512,0.016384,0.0504,0.053952,7.18579,0.05808
+1383,100.738,9.92676,8.004,0.038528,0.610784,0.006464,0.006144,0.016,0.050752,0.05408,7.16186,0.059392
+1384,98.1783,10.1855,7.9777,0.0376,0.575488,0.008192,0.005728,0.016224,0.049728,0.053248,7.17382,0.057664
+1385,101.688,9.83398,7.928,0.038464,0.569632,0.006464,0.006144,0.016224,0.049312,0.054624,7.12771,0.059424
+1386,99.1384,10.0869,8.0808,0.038912,0.651296,0.009184,0.00512,0.016416,0.050688,0.053728,7.19667,0.058784
+1387,102.369,9.76855,7.97293,0.038848,0.576288,0.008192,0.006016,0.016384,0.050944,0.053216,7.16397,0.059072
+1388,100.01,9.99902,7.99434,0.037856,0.593056,0.007008,0.0056,0.016224,0.049888,0.054368,7.1727,0.057632
+1389,100.039,9.99609,8.03635,0.038912,0.613792,0.00816,0.004736,0.016384,0.0512,0.053248,7.19155,0.058368
+1390,102.811,9.72656,7.9593,0.037792,0.565248,0.008192,0.00576,0.016224,0.049696,0.055072,7.1632,0.058112
+1391,100.274,9.97266,7.95178,0.038592,0.573408,0.008032,0.004832,0.016384,0.0512,0.053248,7.1472,0.05888
+1392,92.4188,10.8203,7.98502,0.037632,0.574784,0.007968,0.005024,0.016416,0.050848,0.0536,7.18026,0.058496
+1393,89.2219,11.208,7.99002,0.037632,0.589824,0.008192,0.005632,0.016064,0.049984,0.0544,7.16995,0.058336
+1394,102.236,9.78125,8.0273,0.038368,0.602656,0.008192,0.005888,0.01616,0.051008,0.05376,7.19274,0.058528
+1395,98.0561,10.1982,8.00397,0.037888,0.62384,0.008416,0.004672,0.016384,0.051232,0.055008,7.14778,0.058752
+1396,101.638,9.83887,7.96829,0.03888,0.573504,0.008192,0.006112,0.016384,0.05056,0.053888,7.16186,0.058912
+1397,97.4496,10.2617,8.00906,0.0384,0.610944,0.008256,0.0056,0.016192,0.051008,0.053632,7.16618,0.058848
+1398,102.41,9.76465,8.01898,0.03888,0.608288,0.008192,0.006016,0.016448,0.050624,0.053888,7.17814,0.058496
+1399,96.5673,10.3555,8.04589,0.038912,0.653312,0.008192,0.006144,0.016352,0.050368,0.053888,7.14342,0.075296
+1400,97.1814,10.29,8.3848,0.03872,0.94416,0.007232,0.016288,0.03392,0.051296,0.054048,7.18029,0.058848
+1401,96.2768,10.3867,8.07907,0.038496,0.666496,0.00624,0.006144,0.016384,0.050912,0.053664,7.18195,0.058784
+1402,101.416,9.86035,7.99296,0.03824,0.577344,0.007072,0.005536,0.016288,0.051136,0.053664,7.1848,0.05888
+1403,97.6726,10.2383,8.00288,0.038656,0.62016,0.007968,0.00496,0.016384,0.050976,0.053472,7.15162,0.058688
+1404,101.076,9.89355,7.99763,0.037408,0.604,0.008,0.005568,0.015136,0.0512,0.05504,7.16326,0.058016
+1405,103.111,9.69824,7.95651,0.0384,0.563168,0.008256,0.004576,0.016384,0.0512,0.054976,7.16134,0.058208
+1406,98.899,10.1113,8.21866,0.038496,0.780224,0.022848,0.005568,0.016224,0.064416,0.054656,7.17843,0.057792
+1407,98.3009,10.1729,7.9729,0.038912,0.58368,0.007968,0.005568,0.015168,0.051168,0.054784,7.15635,0.059296
+1408,100.976,9.90332,8.02432,0.03712,0.634016,0.006976,0.00528,0.015264,0.051168,0.054944,7.16157,0.057984
+1409,103.091,9.7002,7.91821,0.037888,0.552928,0.008032,0.005536,0.01616,0.050144,0.054976,7.1335,0.05904
+1410,96.8322,10.3271,8.01558,0.03744,0.615456,0.00704,0.0056,0.016064,0.050112,0.053216,7.1721,0.05856
+1411,102.657,9.74121,7.9729,0.038912,0.571392,0.008192,0.006048,0.01616,0.050656,0.054112,7.168,0.059424
+1412,100.639,9.93652,7.97728,0.038208,0.599008,0.006144,0.006144,0.016384,0.0512,0.05328,7.14874,0.058176
+1413,90.8849,11.0029,8.18787,0.037632,0.785824,0.008224,0.0056,0.015328,0.06496,0.053568,7.15802,0.05872
+1414,97.1906,10.2891,8.05888,0.038592,0.649536,0.008192,0.006144,0.016192,0.050432,0.065632,7.16653,0.057632
+1415,97.2644,10.2812,7.97542,0.038464,0.582624,0.00752,0.004768,0.016384,0.051232,0.053216,7.16186,0.05936
+1416,98.6038,10.1416,8.06662,0.038944,0.675584,0.008096,0.0056,0.01536,0.051072,0.05472,7.1583,0.058944
+1417,92.1278,10.8545,8.11069,0.03744,0.705536,0.007232,0.00608,0.025824,0.049984,0.053216,7.16595,0.059424
+1418,86.6475,11.541,8.0937,0.038944,0.696288,0.008192,0.0056,0.01616,0.04992,0.054592,7.16605,0.057952
+1419,87.1267,11.4775,8.26906,0.038592,0.88096,0.008224,0.005568,0.016384,0.051072,0.053984,7.15558,0.058688
+1420,94.3692,10.5967,7.98954,0.038496,0.610976,0.008288,0.006048,0.016384,0.050848,0.053248,7.14685,0.0584
+1421,89.2919,11.1992,7.99133,0.038848,0.59808,0.008192,0.00592,0.016448,0.051168,0.054688,7.15856,0.059424
+1422,86.3625,11.5791,8.30298,0.037248,0.896128,0.0072,0.005984,0.018304,0.050912,0.053664,7.17568,0.057856
+1423,91.4367,10.9365,8.1569,0.038912,0.7736,0.006688,0.00592,0.016256,0.050784,0.053824,7.15181,0.059104
+1424,91.4449,10.9355,8.05085,0.037792,0.642496,0.00672,0.00592,0.016224,0.05088,0.053952,7.17824,0.058624
+1425,99.0233,10.0986,8.0399,0.038912,0.64432,0.008224,0.004896,0.016352,0.0512,0.054368,7.16278,0.058848
+1426,94.6483,10.5654,8.31226,0.038272,0.885056,0.00672,0.022528,0.016128,0.051072,0.0536,7.18013,0.058752
+1427,90.7801,11.0156,8.17005,0.038688,0.79088,0.008224,0.005568,0.017056,0.050624,0.054016,7.14682,0.058176
+1428,97.1537,10.293,8.05472,0.038912,0.631936,0.00832,0.004864,0.016384,0.05088,0.053568,7.19053,0.059328
+1429,87.5139,11.4268,8.29645,0.038912,0.901152,0.007328,0.004928,0.019616,0.050016,0.054784,7.16035,0.05936
+1430,92.2024,10.8457,8.08205,0.037504,0.681184,0.008,0.005088,0.016384,0.050592,0.053536,7.1705,0.059264
+1431,90.3476,11.0684,8.26176,0.038656,0.844704,0.008256,0.017728,0.016608,0.055712,0.054816,7.1664,0.05888
+1432,97.394,10.2676,8.0471,0.037376,0.658528,0.008128,0.005088,0.016384,0.050976,0.053472,7.15981,0.057344
+1433,91.9788,10.8721,8.20266,0.038656,0.783008,0.008192,0.005536,0.026784,0.049632,0.067584,7.16502,0.05824
+1434,90.6516,11.0312,8.24672,0.0384,0.828128,0.009312,0.005024,0.016384,0.051136,0.053312,7.18643,0.058592
+1435,91.347,10.9473,8.03654,0.038816,0.657152,0.008352,0.005568,0.015264,0.051232,0.053248,7.1487,0.058208
+1436,95.6205,10.458,8.06298,0.038912,0.662848,0.008032,0.00496,0.016384,0.0512,0.053248,7.16915,0.05824
+1437,94.9115,10.5361,8.07341,0.037888,0.706368,0.006336,0.006144,0.016256,0.050784,0.05376,7.13696,0.058912
+1438,94.1003,10.627,8.05325,0.038848,0.668192,0.008032,0.005568,0.015072,0.0512,0.05328,7.15523,0.057824
+1439,95.8801,10.4297,8.04963,0.03792,0.661472,0.008224,0.006112,0.01632,0.050976,0.053536,7.15571,0.05936
+1440,92.7116,10.7861,8.11219,0.038912,0.71424,0.00848,0.005568,0.015232,0.052704,0.053696,7.16595,0.057408
+1441,94.7709,10.5518,8.04454,0.038912,0.669696,0.008064,0.005568,0.016064,0.050176,0.054848,7.14317,0.058048
+1442,97.682,10.2373,8.0343,0.038944,0.626464,0.008192,0.005568,0.016192,0.051296,0.053888,7.17558,0.058176
+1443,92.1195,10.8555,8.17766,0.03872,0.804576,0.006624,0.006048,0.016224,0.051072,0.053568,7.14269,0.058144
+1444,94.9731,10.5293,8.05478,0.038304,0.671424,0.00832,0.004896,0.016416,0.051168,0.054624,7.15152,0.058112
+1445,101.236,9.87793,8.13277,0.202112,0.602912,0.008288,0.006048,0.016384,0.050336,0.054112,7.13424,0.058336
+1446,102.667,9.74023,7.98083,0.038912,0.597952,0.008128,0.005568,0.016224,0.050016,0.054368,7.15168,0.057984
+1447,98.9468,10.1064,7.97082,0.03888,0.572864,0.006752,0.005856,0.016192,0.050656,0.053792,7.16643,0.059392
+1448,102.78,9.72949,8.00557,0.038912,0.60416,0.007968,0.005568,0.016608,0.05104,0.053856,7.16928,0.058176
+1449,99.0233,10.0986,7.99478,0.03712,0.605504,0.008224,0.004768,0.016384,0.05104,0.05344,7.15971,0.058592
+1450,101.951,9.80859,7.99286,0.03856,0.57584,0.008192,0.005856,0.016192,0.05088,0.053856,7.18458,0.058912
+1451,101.88,9.81543,7.97402,0.038752,0.589344,0.006784,0.005824,0.016224,0.049664,0.054816,7.15389,0.05872
+1452,101.286,9.87305,8.00144,0.038912,0.622432,0.008032,0.005568,0.015264,0.051168,0.05456,7.14621,0.059296
+1453,97.2275,10.2852,8.0017,0.03744,0.607392,0.0072,0.00592,0.016384,0.05072,0.053728,7.1639,0.059008
+1454,102.226,9.78223,7.99334,0.038912,0.59296,0.0072,0.006048,0.016384,0.050848,0.053632,7.16797,0.059392
+1455,97.7659,10.2285,8.00656,0.038976,0.623456,0.008032,0.005568,0.016256,0.050016,0.0544,7.15046,0.059392
+1456,103.278,9.68262,7.99334,0.038656,0.583936,0.008352,0.005984,0.016384,0.050912,0.053536,7.17754,0.058048
+1457,100.797,9.9209,7.95146,0.038912,0.570784,0.007968,0.004928,0.016384,0.051072,0.053376,7.14752,0.060512
+1458,98.0561,10.1982,7.96374,0.038848,0.575488,0.008,0.005568,0.016576,0.049792,0.054784,7.15603,0.058656
+1459,102.636,9.74316,7.95917,0.03856,0.579616,0.00704,0.005568,0.016032,0.051456,0.053824,7.14765,0.059424
+1460,102.492,9.75684,8.01382,0.038912,0.585728,0.008288,0.006048,0.016384,0.05088,0.0536,7.19638,0.0576
+1461,101.166,9.88477,7.96534,0.037696,0.5768,0.00832,0.004704,0.016384,0.051104,0.053344,7.15776,0.059232
+1462,100.432,9.95703,8.16067,0.038944,0.765504,0.007968,0.004736,0.016384,0.0512,0.05328,7.16387,0.058784
+1463,98.3009,10.1729,8.01235,0.03872,0.598816,0.00816,0.005952,0.016032,0.050976,0.0536,7.18192,0.058176
+1464,96.9146,10.3184,8.12688,0.038464,0.711616,0.007968,0.016,0.016608,0.051072,0.065184,7.16202,0.057952
+1465,98.2348,10.1797,8.02122,0.038592,0.64544,0.007712,0.004576,0.016416,0.052544,0.05392,7.14323,0.058784
+1466,99.6885,10.0312,8.16742,0.038816,0.755808,0.008192,0.006048,0.01648,0.050752,0.053696,7.17984,0.057792
+1467,102.094,9.79492,7.98595,0.037856,0.618016,0.008,0.004768,0.016384,0.050816,0.053632,7.13728,0.0592
+1468,101.688,9.83398,7.96896,0.03856,0.575264,0.00672,0.00592,0.016192,0.051136,0.053344,7.164,0.057824
+1469,99.9317,10.0068,7.97901,0.038944,0.597984,0.008192,0.00608,0.016224,0.050656,0.05392,7.14762,0.059392
+1470,94.2389,10.6113,8.04864,0.038816,0.65696,0.007936,0.004896,0.016384,0.050912,0.053536,7.1609,0.058304
+1471,97.7472,10.2305,8.00403,0.038656,0.608672,0.00848,0.0056,0.016096,0.051328,0.05392,7.16189,0.059392
+1472,97.6913,10.2363,7.99325,0.038912,0.599872,0.007936,0.0056,0.01536,0.051168,0.053248,7.16291,0.05824
+1473,90.3715,11.0654,7.95638,0.038688,0.581056,0.008224,0.004864,0.016384,0.050752,0.053632,7.14349,0.059296
+1474,102.226,9.78223,7.99315,0.0376,0.583232,0.007968,0.0048,0.016352,0.050528,0.05392,7.18029,0.058464
+1475,101.016,9.89941,7.94589,0.038912,0.580832,0.008224,0.004864,0.016384,0.051008,0.05344,7.13318,0.05904
+1476,100.049,9.99512,8.01142,0.038496,0.621568,0.008192,0.006112,0.016384,0.050976,0.053472,7.15776,0.058464
+1477,101.982,9.80566,7.9488,0.038976,0.590272,0.00832,0.006016,0.016384,0.05072,0.05312,7.12669,0.058304
+1478,103.143,9.69531,7.96467,0.038272,0.57408,0.008192,0.005824,0.015968,0.05104,0.053536,7.15974,0.058016
+1479,97.4496,10.2617,7.94678,0.037664,0.585728,0.008192,0.006144,0.01616,0.0504,0.054016,7.12934,0.059136
+1480,99.5528,10.0449,7.96826,0.037344,0.565248,0.008288,0.006048,0.016384,0.050208,0.05424,7.1721,0.0584
+1481,101.286,9.87305,7.96189,0.038912,0.587648,0.008288,0.005536,0.016064,0.050144,0.053216,7.14342,0.058656
+1482,98.2348,10.1797,7.98678,0.038944,0.587744,0.008128,0.005568,0.016192,0.049984,0.054624,7.16662,0.058976
+1483,100.57,9.94336,7.97901,0.038752,0.587968,0.00816,0.006144,0.016192,0.050816,0.053824,7.15779,0.05936
+1484,103.654,9.64746,8.0159,0.03856,0.616832,0.008192,0.005984,0.01616,0.050592,0.05376,7.16643,0.059392
+1485,101.547,9.84766,7.99334,0.038432,0.606688,0.008192,0.005696,0.016064,0.04992,0.054752,7.15526,0.058336
+1486,103.928,9.62207,7.96262,0.038944,0.57472,0.008288,0.004736,0.016384,0.050976,0.053472,7.15776,0.057344
+1487,98.6227,10.1396,8.22067,0.045056,0.839168,0.00848,0.005568,0.015264,0.051072,0.055296,7.14138,0.059392
+1488,100.688,9.93164,8.00352,0.037472,0.616064,0.007968,0.005568,0.016736,0.049824,0.054272,7.15674,0.05888
+1489,99.2537,10.0752,7.98515,0.038912,0.581632,0.007776,0.005568,0.015328,0.0512,0.054432,7.17088,0.059424
+1490,99.64,10.0361,7.98646,0.038912,0.597472,0.006688,0.00592,0.016448,0.050368,0.054272,7.15773,0.058656
+1491,94.8236,10.5459,8.01677,0.03776,0.65536,0.008192,0.006144,0.016352,0.0504,0.053216,7.12995,0.059392
+1492,100.718,9.92871,7.9489,0.038592,0.56416,0.00816,0.005728,0.016064,0.049888,0.055072,7.15331,0.05792
+1493,99.9707,10.0029,8.00374,0.038592,0.623072,0.008192,0.006016,0.016192,0.050912,0.053856,7.14861,0.058304
+1494,100.491,9.95117,7.94912,0.037824,0.569312,0.008064,0.005568,0.015072,0.051232,0.053216,7.14957,0.059264
+1495,99.6982,10.0303,7.97715,0.03856,0.592864,0.008192,0.00592,0.016064,0.05136,0.053632,7.15158,0.058976
+1496,101.87,9.81641,7.95955,0.03792,0.591776,0.008032,0.005568,0.015168,0.051168,0.053248,7.13856,0.058112
+1497,98.1972,10.1836,8.01475,0.037792,0.62464,0.02048,0.006144,0.016256,0.05056,0.053632,7.14586,0.059392
+1498,94.8324,10.5449,7.99821,0.037856,0.59712,0.007008,0.006144,0.01616,0.050752,0.053024,7.17094,0.0592
+1499,102.063,9.79785,8.03773,0.038912,0.657408,0.008064,0.005568,0.016096,0.050144,0.054656,7.1481,0.058784
+1500,100.738,9.92676,8.12646,0.038432,0.737792,0.007392,0.004864,0.016384,0.050496,0.053696,7.15958,0.057824
+1501,98.0561,10.1982,8.0639,0.037792,0.698336,0.008224,0.005664,0.016576,0.050496,0.05328,7.13414,0.059392
+1502,98.5658,10.1455,8.03635,0.038912,0.66144,0.007936,0.0056,0.016224,0.050176,0.053312,7.14336,0.059392
+1503,97.4125,10.2656,8.03616,0.038464,0.660096,0.008192,0.006144,0.016192,0.050592,0.053888,7.14339,0.0592
+1504,86.8164,11.5186,8.05683,0.038464,0.679456,0.0072,0.006016,0.016384,0.050752,0.053696,7.1472,0.057664
+1505,102.873,9.7207,7.94422,0.038272,0.580224,0.006144,0.006144,0.016384,0.050496,0.053952,7.13318,0.059424
+1506,100.917,9.90918,8.02835,0.038592,0.655872,0.008192,0.00608,0.016,0.050784,0.053856,7.14064,0.058336
+1507,99.8635,10.0137,7.96544,0.037664,0.587744,0.008192,0.005824,0.016096,0.049792,0.05488,7.14586,0.059392
+1508,101.83,9.82031,7.99546,0.03856,0.598432,0.007936,0.005568,0.016384,0.049984,0.054944,7.16541,0.05824
+1509,102.77,9.73047,7.95853,0.038464,0.584128,0.008192,0.006016,0.016096,0.050752,0.054112,7.14278,0.057984
+1510,101.336,9.86816,7.97424,0.038112,0.582624,0.008224,0.006112,0.016096,0.049504,0.055168,7.15987,0.058528
+1511,100.669,9.93359,7.9913,0.038432,0.611072,0.008192,0.005952,0.016288,0.050656,0.05344,7.14816,0.059104
+1512,100.847,9.91602,7.98298,0.038336,0.600992,0.00944,0.004928,0.016352,0.050944,0.053536,7.14947,0.058976
+1513,101.326,9.86914,7.96826,0.038848,0.59328,0.006848,0.00576,0.01616,0.04976,0.0544,7.1441,0.059104
+1514,101.116,9.88965,8.03853,0.038368,0.623264,0.006144,0.006144,0.026624,0.051136,0.053344,7.17565,0.057856
+1515,102.492,9.75684,8.00272,0.038592,0.595872,0.00656,0.006144,0.016288,0.050784,0.05376,7.17555,0.059168
+1516,99.3307,10.0674,7.9849,0.038944,0.585728,0.00816,0.006112,0.016096,0.049504,0.067552,7.15366,0.059136
+1517,102.801,9.72754,7.99539,0.038912,0.583552,0.006272,0.006144,0.01632,0.051008,0.053504,7.18029,0.059392
+1518,96.2859,10.3857,8.06442,0.037984,0.660384,0.008224,0.006112,0.016384,0.0512,0.054528,7.17082,0.058784
+1519,102.328,9.77246,7.97466,0.038912,0.606016,0.008288,0.005568,0.016064,0.050112,0.059456,7.1311,0.059136
+1520,103.236,9.68652,7.9792,0.03808,0.579936,0.008288,0.004672,0.01744,0.050208,0.054432,7.16813,0.058016
+1521,100.166,9.9834,7.99968,0.038496,0.598624,0.008192,0.005952,0.016032,0.049696,0.054976,7.16832,0.059392
+1522,101.587,9.84375,7.97824,0.038528,0.580224,0.008192,0.006144,0.016128,0.05104,0.053696,7.16589,0.0584
+1523,91.0546,10.9824,7.96602,0.038272,0.6048,0.008384,0.005952,0.016384,0.0512,0.053248,7.12902,0.058752
+1524,102.935,9.71484,8.03574,0.038624,0.641312,0.008192,0.005536,0.016192,0.053728,0.053568,7.15978,0.058816
+1525,97.7939,10.2256,8.00973,0.038528,0.618272,0.006752,0.005888,0.016096,0.051008,0.053984,7.16096,0.05824
+1526,99.4175,10.0586,8.13859,0.038304,0.7248,0.008,0.005088,0.016384,0.05056,0.053888,7.18234,0.059232
+1527,93.833,10.6572,8.07805,0.0376,0.669696,0.00816,0.005568,0.022464,0.060064,0.053248,7.16346,0.057792
+1528,100.481,9.95215,7.97664,0.038912,0.581056,0.008448,0.005568,0.016288,0.050176,0.05488,7.16224,0.059072
+1529,92.3688,10.8262,8.64269,0.038432,1.27594,0.008,0.004864,0.016384,0.0512,0.053248,7.13667,0.057952
+1530,99.5141,10.0488,8.00768,0.038912,0.632032,0.020992,0.005984,0.016192,0.049792,0.054784,7.13062,0.058368
+1531,99.1096,10.0898,7.98115,0.03824,0.614432,0.006976,0.006144,0.016288,0.049408,0.054368,7.136,0.059296
+1532,101.698,9.83301,7.95238,0.038432,0.577248,0.006912,0.005696,0.016256,0.049728,0.05472,7.14566,0.057728
+1533,98.5184,10.1504,8.06256,0.038944,0.66352,0.008192,0.005952,0.016032,0.051072,0.053824,7.16592,0.059104
+1534,100.787,9.92188,7.99446,0.038848,0.612416,0.007808,0.005536,0.016416,0.050208,0.0552,7.14954,0.058496
+1535,99.4754,10.0527,7.92877,0.038752,0.57024,0.008192,0.005664,0.016064,0.049952,0.055072,7.12723,0.0576
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..0000905
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_500000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,61.3226,16.3354,14.0764,0.03863,0.61466,0.00727031,0.00551569,0.0165635,13.3346,0.0591973
+max_1024,65.2645,22.751,17.0749,0.054496,2.98144,0.0248,0.022368,0.044864,14.6011,0.076
+min_1024,43.9542,15.3223,13.6581,0.035552,0.542368,0.006144,0.004064,0.015008,12.9534,0.057344
+512,57.1301,17.5039,15.0693,0.038368,0.563872,0.007744,0.004544,0.016384,14.379,0.059392
+513,56.9965,17.5449,15.0712,0.038912,0.569344,0.006176,0.00608,0.016352,14.3746,0.059744
+514,55.5465,18.0029,15.1124,0.03872,0.583936,0.006272,0.005664,0.016256,14.4041,0.057504
+515,59.6563,16.7627,15.0958,0.038912,0.570752,0.006784,0.006016,0.016256,14.3977,0.059392
+516,56.769,17.6152,15.2361,0.038592,0.6736,0.006656,0.005376,0.01616,14.4366,0.059168
+517,54.5058,18.3467,15.3501,0.038304,0.783264,0.007904,0.016672,0.016384,14.428,0.059584
+518,54.2373,18.4375,15.4155,0.049248,0.816544,0.00704,0.004192,0.027776,14.4516,0.059136
+519,57.9349,17.2607,15.1062,0.038784,0.56928,0.00656,0.005984,0.016224,14.41,0.059424
+520,57.0664,17.5234,15.1326,0.038208,0.582592,0.007648,0.00464,0.016384,14.4236,0.059456
+521,58.9386,16.9668,15.1492,0.03776,0.595968,0.007648,0.00464,0.016384,14.4278,0.059072
+522,55.9563,17.8711,15.2142,0.038912,0.616448,0.007968,0.00432,0.016384,14.4712,0.05904
+523,57.3477,17.4375,15.2146,0.04016,0.598816,0.007616,0.004672,0.016416,14.4886,0.058336
+524,56.5621,17.6797,15.2556,0.038528,0.692608,0.007392,0.004896,0.016224,14.4365,0.059392
+525,58.9081,16.9756,15.1743,0.038656,0.619424,0.007712,0.004576,0.022528,14.423,0.058368
+526,57.1843,17.4873,15.145,0.038464,0.614848,0.007616,0.004672,0.016288,14.4029,0.06016
+527,57.4539,17.4053,15.231,0.038944,0.61232,0.00768,0.004608,0.016384,14.4916,0.059392
+528,58.6148,17.0605,15.1817,0.03728,0.587776,0.008128,0.00416,0.016384,14.4687,0.0592
+529,57.5475,17.377,15.3341,0.037632,0.698368,0.007456,0.016256,0.033216,14.4818,0.059392
+530,57.8924,17.2734,15.2769,0.037728,0.64512,0.007424,0.004864,0.0264,14.4974,0.057952
+531,58.5879,17.0684,15.2232,0.038688,0.583456,0.007072,0.0056,0.016,14.513,0.05936
+532,56.7125,17.6328,15.3085,0.038944,0.619968,0.006688,0.005344,0.016192,14.5623,0.059136
+533,57.2963,17.4531,15.2402,0.038944,0.597056,0.007072,0.0056,0.016512,14.5158,0.059232
+534,56.7722,17.6143,15.2336,0.037472,0.583328,0.006496,0.00544,0.016096,14.5266,0.05824
+535,57.1365,17.502,15.2966,0.038432,0.641568,0.007264,0.005024,0.016416,14.5285,0.059392
+536,56.481,17.7051,15.2715,0.038528,0.614976,0.007424,0.004864,0.016128,14.5299,0.059744
+537,58.7089,17.0332,15.2261,0.038496,0.58016,0.00736,0.004928,0.016384,14.5183,0.060448
+538,57.2099,17.4795,15.2855,0.038944,0.597984,0.007552,0.004736,0.016224,14.5594,0.060608
+539,58.2778,17.1592,15.2128,0.037152,0.575104,0.006464,0.006144,0.016384,14.5121,0.059392
+540,57.9612,17.2529,15.2637,0.038816,0.571488,0.007264,0.004864,0.016096,14.5658,0.059392
+541,57.2707,17.4609,15.3355,0.038656,0.636192,0.00704,0.0056,0.016096,14.5725,0.059392
+542,57.778,17.3076,15.2282,0.038464,0.570016,0.007872,0.004416,0.016384,14.5306,0.060448
+543,58.2348,17.1719,15.2849,0.037568,0.636128,0.006944,0.00576,0.01616,14.523,0.059392
+544,55.116,18.1436,15.4092,0.038912,0.68176,0.0064,0.005504,0.016128,14.6011,0.059392
+545,53.5817,18.6631,15.2596,0.038912,0.610208,0.007648,0.004768,0.016352,14.5235,0.05824
+546,57.5184,17.3857,15.2499,0.03856,0.57168,0.006688,0.005248,0.015232,14.5531,0.059392
+547,58.2149,17.1777,15.2516,0.038816,0.604384,0.006176,0.006112,0.016384,14.5217,0.058016
+548,56.2514,17.7773,15.3764,0.038944,0.687232,0.007008,0.004096,0.016416,14.563,0.059712
+549,57.0823,17.5186,15.2746,0.037472,0.610304,0.007744,0.0056,0.015328,14.5388,0.059424
+550,56.039,17.8447,15.2605,0.037792,0.600032,0.007584,0.004704,0.01632,14.5359,0.058208
+551,57.2035,17.4814,15.3518,0.038944,0.677856,0.00736,0.004928,0.016384,14.5469,0.059392
+552,56.0267,17.8486,15.3825,0.038912,0.657408,0.007968,0.00432,0.016384,14.5981,0.059392
+553,55.7673,17.9316,15.3099,0.03888,0.622656,0.007456,0.004832,0.016352,14.5612,0.05856
+554,57.8564,17.2842,15.2385,0.038848,0.562496,0.007136,0.004096,0.016384,14.5506,0.058976
+555,57.3895,17.4248,15.3116,0.037856,0.60208,0.007456,0.004832,0.016384,14.5835,0.059584
+556,56.1496,17.8096,15.2476,0.038304,0.56608,0.006208,0.005728,0.016128,14.5558,0.059424
+557,58.2182,17.1768,15.2666,0.037696,0.560608,0.006656,0.005984,0.01616,14.5801,0.059392
+558,56.273,17.7705,15.2678,0.038304,0.566976,0.007072,0.004096,0.016384,14.577,0.058016
+559,58.6887,17.0391,15.2474,0.038912,0.571392,0.007776,0.005568,0.01536,14.549,0.059392
+560,57.6869,17.335,15.2353,0.038304,0.561952,0.007648,0.00464,0.016416,14.5469,0.059392
+561,57.2195,17.4766,15.2149,0.038592,0.565024,0.007008,0.005696,0.016064,14.5231,0.059424
+562,56.0482,17.8418,15.2202,0.038656,0.599648,0.006816,0.00528,0.0152,14.4954,0.059232
+563,53.5901,18.6602,15.4297,0.038848,0.804224,0.006848,0.005792,0.016768,14.4978,0.059456
+564,55.4773,18.0254,15.3876,0.038912,0.745472,0.018432,0.005568,0.016128,14.5039,0.059232
+565,57.3541,17.4355,15.276,0.038944,0.595744,0.007616,0.004896,0.016352,14.5531,0.059392
+566,57.0728,17.5215,15.2268,0.038656,0.588032,0.007968,0.00432,0.016384,14.5121,0.05936
+567,57.876,17.2783,15.1388,0.038912,0.566656,0.006624,0.0056,0.016096,14.4455,0.059424
+568,49.9147,20.0342,15.3253,0.038656,0.646688,0.007008,0.004096,0.016384,14.5531,0.059392
+569,58.5645,17.0752,15.4231,0.042944,0.798784,0.007328,0.014336,0.024672,14.4759,0.059136
+570,58.4875,17.0977,15.2425,0.038272,0.588416,0.007232,0.004864,0.016192,14.528,0.059456
+571,56.5808,17.6738,15.3149,0.038912,0.688096,0.006176,0.006144,0.016384,14.4998,0.059392
+572,58.719,17.0303,15.2146,0.038688,0.600192,0.00624,0.005664,0.016192,14.4882,0.059424
+573,57.3573,17.4346,15.2906,0.037696,0.65728,0.006272,0.006144,0.016384,14.5073,0.05952
+574,58.0795,17.2178,15.2261,0.038944,0.568928,0.006528,0.005408,0.016416,14.5311,0.058784
+575,58.8235,17,15.25,0.039424,0.60624,0.007936,0.005568,0.016288,14.5151,0.059424
+576,57.5281,17.3828,15.274,0.038848,0.702528,0.008064,0.004224,0.016384,14.4445,0.059392
+577,55.5948,17.9873,15.3083,0.038432,0.68864,0.007936,0.005568,0.01616,14.4924,0.059072
+578,58.3609,17.1348,15.2131,0.037408,0.57952,0.006208,0.005728,0.016288,14.5085,0.059392
+579,58.3343,17.1426,15.2114,0.03776,0.622496,0.00624,0.006144,0.016384,14.463,0.059392
+580,58.4408,17.1113,15.1576,0.03728,0.564864,0.006432,0.005504,0.016224,14.4692,0.05808
+581,57.1237,17.5059,15.1516,0.037376,0.591008,0.007008,0.005632,0.016064,14.4362,0.058336
+582,57.8695,17.2803,15.1389,0.038656,0.575776,0.006464,0.00544,0.01616,14.4373,0.059136
+583,58.7392,17.0244,15.1549,0.038912,0.581536,0.00624,0.006144,0.016384,14.446,0.059712
+584,58.6887,17.0391,15.1502,0.038912,0.568672,0.006816,0.005184,0.015296,14.4548,0.060576
+585,57.9448,17.2578,15.1552,0.038688,0.62416,0.006848,0.005792,0.016192,14.4041,0.059424
+586,58.2513,17.167,15.119,0.037504,0.559104,0.007872,0.004416,0.016384,14.436,0.057696
+587,56.6403,17.6553,15.1738,0.038624,0.631776,0.007584,0.004704,0.016384,14.4159,0.05888
+588,58.6853,17.04,15.1492,0.038304,0.596544,0.006304,0.005696,0.016224,14.4282,0.057888
+589,58.7999,17.0068,15.1004,0.037472,0.588992,0.00688,0.00592,0.016256,14.3855,0.059392
+590,59.0236,16.9424,15.0911,0.038336,0.567872,0.007744,0.004544,0.016384,14.3972,0.059008
+591,58.0795,17.2178,15.1826,0.0376,0.640896,0.006272,0.006144,0.016384,14.4159,0.059456
+592,56.1527,17.8086,15.1544,0.038944,0.626656,0.007584,0.004704,0.016256,14.4015,0.058816
+593,57.4023,17.4209,15.1732,0.039072,0.622464,0.006752,0.005888,0.016096,14.4239,0.05904
+594,58.4408,17.1113,15.1717,0.038592,0.654752,0.007104,0.004096,0.016384,14.3913,0.059488
+595,58.2745,17.1602,15.1304,0.038592,0.59056,0.006432,0.006144,0.016192,14.4137,0.058752
+596,58.0104,17.2383,15.0856,0.038368,0.614976,0.006208,0.005792,0.016672,14.3442,0.059392
+597,58.2215,17.1758,15.026,0.0376,0.572576,0.006976,0.005792,0.016224,14.3283,0.058624
+598,56.2947,17.7637,15.0471,0.038944,0.569472,0.006432,0.005472,0.016224,14.3512,0.059424
+599,56.747,17.6221,15.017,0.038944,0.57744,0.006208,0.006144,0.016352,14.3128,0.059072
+600,50.7157,19.7178,15.0498,0.038528,0.594304,0.007232,0.004864,0.016256,14.3295,0.059104
+601,59.483,16.8115,15.047,0.037728,0.58896,0.007008,0.005664,0.016352,14.332,0.059328
+602,58.3742,17.1309,14.9729,0.0384,0.56688,0.007072,0.005216,0.015264,14.2807,0.059392
+603,59.0236,16.9424,15.0212,0.038912,0.60624,0.008032,0.0056,0.01616,14.2857,0.060512
+604,57.441,17.4092,14.9934,0.038272,0.56384,0.0072,0.004896,0.016192,14.3031,0.059904
+605,57.0188,17.5381,14.964,0.043264,0.577536,0.007456,0.004832,0.016384,14.2554,0.059136
+606,57.9743,17.249,15.0241,0.038912,0.67968,0.0064,0.005568,0.016032,14.2181,0.059424
+607,58.0367,17.2305,15.0854,0.038624,0.680224,0.007424,0.004896,0.016352,14.2782,0.059712
+608,58.8709,16.9863,14.9408,0.03776,0.5848,0.00688,0.005216,0.015264,14.2316,0.059328
+609,56.8194,17.5996,15.1026,0.038816,0.762624,0.00752,0.016224,0.016544,14.2015,0.059392
+610,57.3316,17.4424,14.9532,0.037696,0.611552,0.006912,0.004096,0.016416,14.2172,0.059392
+611,57.4926,17.3936,14.9797,0.037504,0.652704,0.006752,0.006144,0.016384,14.2008,0.059392
+612,57.1588,17.4951,15.0692,0.0384,0.67232,0.00784,0.004448,0.016384,14.2705,0.059392
+613,58.6786,17.042,15.0671,0.050496,0.721376,0.006368,0.006144,0.023872,14.1995,0.059392
+614,56.8352,17.5947,15.0323,0.038592,0.694592,0.007776,0.004512,0.016384,14.2111,0.059392
+615,57.6155,17.3564,15.1062,0.038816,0.735712,0.007904,0.01664,0.03216,14.2158,0.059168
+616,58.7965,17.0078,14.9365,0.037312,0.60528,0.007072,0.004096,0.016384,14.208,0.0584
+617,59.5868,16.7822,14.9398,0.038368,0.613216,0.006208,0.006144,0.016384,14.2004,0.059072
+618,59.521,16.8008,14.8915,0.037312,0.595968,0.006144,0.005824,0.016128,14.1718,0.058272
+619,59.7468,16.7373,14.8337,0.038432,0.570848,0.007136,0.0056,0.016288,14.1372,0.058208
+620,58.521,17.0879,14.8992,0.038432,0.594624,0.006176,0.00576,0.016384,14.1787,0.059136
+621,56.4529,17.7139,14.8664,0.038432,0.588256,0.007808,0.0056,0.015296,14.1532,0.057824
+622,60.0587,16.6504,14.8347,0.038944,0.579552,0.007168,0.004896,0.016096,14.1291,0.058912
+623,60.0551,16.6514,14.8771,0.038624,0.606912,0.00752,0.004768,0.016384,14.1435,0.059392
+624,58.5511,17.0791,14.9453,0.038688,0.65888,0.006976,0.004064,0.016416,14.1612,0.05904
+625,60.1221,16.6328,14.7886,0.038752,0.575648,0.007264,0.005024,0.016384,14.0874,0.058112
+626,58.8506,16.9922,14.899,0.038848,0.652864,0.00704,0.004096,0.016384,14.1189,0.060832
+627,57.6414,17.3486,14.8491,0.038816,0.616544,0.008,0.005568,0.016384,14.1045,0.059264
+628,58.9522,16.9629,14.8068,0.03888,0.605312,0.007072,0.00512,0.01536,14.0759,0.0592
+629,54.5348,18.3369,14.9972,0.038368,0.772128,0.006944,0.005664,0.016096,14.0989,0.059104
+630,57.7454,17.3174,14.7927,0.038912,0.60736,0.00704,0.004096,0.016416,14.0595,0.059392
+631,56.949,17.5596,14.8377,0.03856,0.668512,0.007904,0.0056,0.016352,14.0419,0.058848
+632,56.1127,17.8213,14.9585,0.038112,0.752608,0.007168,0.01504,0.016704,14.069,0.059872
+633,57.8041,17.2998,14.8614,0.037824,0.684064,0.007936,0.0056,0.016512,14.0499,0.059552
+634,58.4042,17.1221,14.8346,0.037824,0.688064,0.006208,0.005728,0.016192,14.0212,0.059392
+635,56.2823,17.7676,14.8679,0.038912,0.69632,0.007424,0.004864,0.016384,14.0452,0.058848
+636,57.3509,17.4365,14.8931,0.040032,0.717216,0.006688,0.005312,0.015168,14.0491,0.05952
+637,58.531,17.085,14.7449,0.038912,0.605184,0.00704,0.0056,0.016064,14.0129,0.059232
+638,57.6577,17.3438,14.742,0.037344,0.598048,0.007328,0.004864,0.016288,14.0198,0.058336
+639,60.2459,16.5986,14.7395,0.038912,0.616448,0.0072,0.005088,0.016384,13.996,0.059392
+640,56.1219,17.8184,14.7884,0.038624,0.687584,0.00704,0.00416,0.016384,13.9752,0.059392
+641,58.8066,17.0049,14.7641,0.038464,0.6432,0.006464,0.006144,0.016352,13.995,0.0584
+642,58.04,17.2295,14.7599,0.049152,0.62848,0.0064,0.005536,0.01632,13.9947,0.059392
+643,58.1884,17.1855,14.713,0.038208,0.625248,0.006432,0.006144,0.016192,13.9614,0.059392
+644,59.027,16.9414,14.7444,0.037696,0.610304,0.006144,0.005792,0.016096,14.009,0.059392
+645,56.5433,17.6855,14.6909,0.037504,0.621856,0.00688,0.005728,0.016096,13.9448,0.058112
+646,59.0304,16.9404,14.7025,0.038304,0.608864,0.007808,0.00448,0.016384,13.9667,0.06
+647,58.1488,17.1973,14.7407,0.038912,0.656608,0.006944,0.005792,0.016256,13.9569,0.059232
+648,58.1257,17.2041,14.8357,0.038272,0.774784,0.007648,0.00464,0.016256,13.9347,0.059392
+649,57.6706,17.3398,14.7092,0.037312,0.648352,0.007008,0.005696,0.016256,13.9352,0.059392
+650,52.0193,19.2236,17.0749,0.0376,2.98144,0.006592,0.005504,0.026976,13.9574,0.059392
+651,60.8582,16.4316,14.6007,0.037408,0.585728,0.007616,0.004672,0.016384,13.8895,0.059392
+652,60.9669,16.4023,14.6099,0.038624,0.596352,0.006176,0.00576,0.016064,13.8877,0.059168
+653,60.3276,16.5762,14.6989,0.037568,0.705856,0.006848,0.005824,0.016128,13.8676,0.059104
+654,60.4594,16.54,14.6211,0.038528,0.621472,0.007648,0.00464,0.016352,13.8732,0.059264
+655,60.2849,16.5879,14.5634,0.038112,0.586016,0.006688,0.005952,0.016064,13.851,0.059488
+656,60.6671,16.4834,14.541,0.038816,0.567136,0.00656,0.005312,0.016352,13.8472,0.059552
+657,59.7817,16.7275,14.5894,0.038912,0.59392,0.0072,0.005088,0.016384,13.8687,0.059168
+658,60.0199,16.6611,14.6591,0.038944,0.669504,0.006304,0.005632,0.016256,13.8627,0.059808
+659,59.6632,16.7607,14.6432,0.03888,0.641056,0.00768,0.004608,0.016384,13.8769,0.057728
+660,58.692,17.0381,14.5595,0.037664,0.622592,0.007776,0.004512,0.016384,13.8097,0.060896
+661,59.9742,16.6738,14.4947,0.037888,0.58096,0.006816,0.005824,0.016288,13.7886,0.058336
+662,60.7896,16.4502,14.5571,0.03808,0.623424,0.007456,0.004832,0.016192,13.8074,0.059648
+663,60.5308,16.5205,14.5385,0.038432,0.602912,0.006336,0.006144,0.016384,13.809,0.059296
+664,60.0023,16.666,14.5547,0.038912,0.599872,0.006336,0.005632,0.016224,13.8259,0.061824
+665,60.1645,16.6211,14.5119,0.038912,0.59344,0.006624,0.006144,0.016128,13.7915,0.0592
+666,58.7965,17.0078,14.504,0.038624,0.626624,0.006496,0.00544,0.016096,13.7523,0.058368
+667,60.7067,16.4727,14.5015,0.03872,0.601664,0.006784,0.005856,0.016128,13.7733,0.05904
+668,60.5272,16.5215,14.4668,0.038016,0.588704,0.007904,0.004352,0.016384,13.7523,0.059168
+669,59.4588,16.8184,14.4745,0.036864,0.586912,0.00656,0.005568,0.015392,13.7642,0.05904
+670,60.4558,16.541,14.4405,0.03872,0.571584,0.007424,0.004864,0.016224,13.7437,0.05792
+671,61.7463,16.1953,14.4088,0.038912,0.55696,0.00624,0.006144,0.016384,13.7254,0.058784
+672,60.9016,16.4199,14.4687,0.038912,0.65056,0.006848,0.00512,0.01536,13.6925,0.059456
+673,60.9415,16.4092,14.4307,0.037344,0.59568,0.006432,0.006144,0.016384,13.7093,0.059392
+674,59.1771,16.8984,14.6348,0.038272,0.817952,0.00752,0.015008,0.017504,13.6795,0.058976
+675,60.0059,16.665,14.4589,0.038688,0.5936,0.006688,0.00608,0.01648,13.738,0.059392
+676,55.9777,17.8643,14.4015,0.038848,0.5808,0.00704,0.004096,0.016384,13.6963,0.058048
+677,59.4692,16.8154,14.4684,0.038848,0.667712,0.007936,0.005568,0.0152,13.6737,0.059424
+678,58.6853,17.04,14.3913,0.038944,0.584704,0.007072,0.00416,0.016416,13.6799,0.060128
+679,60.6851,16.4785,14.3553,0.037824,0.564704,0.006688,0.006048,0.01616,13.6642,0.059648
+680,59.8131,16.7188,14.4283,0.038304,0.626656,0.006912,0.004096,0.016384,13.6765,0.059392
+681,58.331,17.1436,14.4117,0.038912,0.58896,0.007008,0.005664,0.016064,13.6958,0.059296
+682,61.3064,16.3115,14.3785,0.03824,0.558944,0.006976,0.004096,0.016384,13.6929,0.060896
+683,60.3276,16.5762,14.4323,0.038528,0.57792,0.00736,0.004928,0.016384,13.7291,0.058112
+684,60.0129,16.6631,14.3963,0.043936,0.634848,0.007712,0.004576,0.016384,13.6305,0.058336
+685,61.7091,16.2051,14.3688,0.038912,0.608256,0.007584,0.004704,0.016384,13.6335,0.059392
+686,60.5738,16.5088,14.3587,0.037568,0.61008,0.006176,0.005792,0.016128,13.6239,0.059008
+687,60.034,16.6572,14.3074,0.03776,0.561152,0.007712,0.004576,0.016384,13.6205,0.059328
+688,59.9532,16.6797,14.4816,0.038752,0.695232,0.007296,0.004896,0.016128,13.6605,0.058784
+689,60.9053,16.4189,14.3465,0.038304,0.565248,0.006976,0.005696,0.016096,13.6559,0.058208
+690,59.7991,16.7227,14.5555,0.038816,0.77664,0.021984,0.00464,0.016384,13.639,0.058016
+691,58.3509,17.1377,14.3914,0.03856,0.645536,0.007648,0.00464,0.044864,13.5908,0.059296
+692,61.255,16.3252,14.3576,0.038816,0.62272,0.008,0.004256,0.016384,13.6069,0.060544
+693,59.2181,16.8867,14.364,0.038912,0.647168,0.00624,0.006048,0.016384,13.5781,0.071072
+694,60.8184,16.4424,14.2717,0.038336,0.576064,0.007456,0.004832,0.016288,13.5681,0.060672
+695,60.3774,16.5625,14.2946,0.038336,0.565824,0.007584,0.004704,0.016384,13.6026,0.059136
+696,60.0375,16.6562,14.3255,0.038912,0.600064,0.007936,0.004352,0.016384,13.5983,0.059552
+697,61.3064,16.3115,14.2823,0.0384,0.572416,0.00736,0.004928,0.016384,13.5837,0.059104
+698,60.0833,16.6436,14.2723,0.038912,0.591904,0.007296,0.004896,0.016128,13.554,0.0592
+699,61.2294,16.332,14.3122,0.0376,0.612352,0.00768,0.004608,0.016384,13.5741,0.059392
+700,60.3276,16.5762,14.4335,0.0384,0.754176,0.007296,0.004864,0.016128,13.5532,0.059424
+701,55.4443,18.0361,14.2802,0.038912,0.612352,0.007424,0.004864,0.016384,13.5412,0.059136
+702,58.6248,17.0576,14.379,0.0512,0.702496,0.007712,0.004544,0.017952,13.5373,0.057792
+703,57.3605,17.4336,14.4174,0.038912,0.733184,0.007904,0.02064,0.016512,13.5414,0.058848
+704,58.4375,17.1123,14.3585,0.038592,0.702272,0.006656,0.005312,0.016288,13.53,0.059392
+705,57.8009,17.3008,14.3548,0.038368,0.714624,0.007104,0.005568,0.016128,13.5136,0.059392
+706,60.388,16.5596,14.2182,0.037856,0.561152,0.00752,0.004768,0.016224,13.5313,0.059392
+707,61.3762,16.293,14.2459,0.04448,0.608832,0.008,0.0056,0.016288,13.5033,0.059392
+708,61.2038,16.3389,14.2356,0.038592,0.628512,0.006688,0.005376,0.016128,13.482,0.058304
+709,60.0763,16.6455,14.2802,0.03856,0.643328,0.006592,0.017632,0.016512,13.497,0.060608
+710,55.2707,18.0928,14.2918,0.038912,0.6616,0.006944,0.004096,0.016384,13.5061,0.05776
+711,60.0868,16.6426,14.2773,0.037664,0.63056,0.006272,0.006144,0.016384,13.5209,0.05936
+712,59.1292,16.9121,14.2196,0.038528,0.618144,0.007136,0.004128,0.016384,13.4775,0.057728
+713,61.1453,16.3545,14.2276,0.038432,0.671648,0.00672,0.006016,0.016128,13.4304,0.05824
+714,61.9105,16.1523,14.2439,0.0384,0.59856,0.006176,0.005728,0.016128,13.5195,0.059392
+715,60.7643,16.457,14.1989,0.038688,0.583872,0.006592,0.00608,0.016096,13.4877,0.05984
+716,61.52,16.2549,14.2179,0.038912,0.596608,0.006208,0.005728,0.01632,13.4945,0.059552
+717,60.1574,16.623,14.2225,0.0384,0.655872,0.007488,0.0048,0.016384,13.4403,0.059296
+718,61.657,16.2188,14.2193,0.038816,0.637024,0.007488,0.0048,0.016224,13.4571,0.057824
+719,61.8358,16.1719,14.2085,0.036864,0.659456,0.007456,0.004832,0.017664,13.4234,0.058912
+720,56.0359,17.8457,14.3173,0.038464,0.730784,0.007008,0.004096,0.016384,13.4609,0.059648
+721,61.5681,16.2422,14.1414,0.038912,0.579584,0.007936,0.0056,0.016224,13.435,0.058208
+722,62.2909,16.0537,14.1414,0.038432,0.588224,0.006176,0.005824,0.016288,13.4271,0.059392
+723,61.7239,16.2012,14.1753,0.038912,0.618496,0.007296,0.004992,0.016384,13.4304,0.058848
+724,61.3983,16.2871,14.171,0.037824,0.583008,0.006816,0.005152,0.015488,13.4634,0.059392
+725,61.7537,16.1934,14.1496,0.038912,0.59392,0.007232,0.005056,0.016384,13.4298,0.058304
+726,60.9596,16.4043,14.194,0.038592,0.651168,0.006592,0.005344,0.015136,13.418,0.059232
+727,61.2623,16.3232,14.1704,0.038656,0.576032,0.00624,0.006048,0.016384,13.4688,0.05824
+728,61.6236,16.2275,14.2061,0.038912,0.630624,0.006304,0.005632,0.016256,13.4478,0.060544
+729,61.3798,16.292,14.1102,0.038944,0.615616,0.006944,0.005856,0.016096,13.3679,0.058912
+730,61.0541,16.3789,14.1267,0.038304,0.606528,0.006592,0.005376,0.015264,13.3951,0.05952
+731,62.185,16.0811,14.1627,0.0376,0.641024,0.007456,0.004832,0.016384,13.396,0.059392
+732,62.3023,16.0508,14.2043,0.038688,0.61632,0.006496,0.005472,0.016288,13.4602,0.060832
+733,61.4019,16.2861,14.1495,0.036896,0.581632,0.007648,0.00464,0.016416,13.4427,0.059584
+734,60.8799,16.4258,14.1444,0.037888,0.607328,0.007072,0.004096,0.016384,13.4124,0.059264
+735,61.9592,16.1396,14.0997,0.038528,0.573344,0.006752,0.006016,0.016224,13.3901,0.068768
+736,58.5109,17.0908,14.1257,0.037536,0.638976,0.007904,0.004384,0.016384,13.3611,0.059424
+737,61.5866,16.2373,14.0778,0.038912,0.587776,0.007616,0.004672,0.016384,13.3632,0.0592
+738,61.244,16.3281,14.2138,0.037888,0.648864,0.006528,0.005504,0.01616,13.4398,0.059008
+739,56.9458,17.5605,14.2939,0.037792,0.772096,0.0072,0.01632,0.016544,13.3845,0.059392
+740,58.6887,17.0391,14.1885,0.038912,0.69424,0.006176,0.016384,0.016384,13.3571,0.059392
+741,58.8303,16.998,14.3114,0.038944,0.798688,0.016384,0.006144,0.016256,13.3773,0.057696
+742,56.9427,17.5615,14.1388,0.038912,0.600064,0.007936,0.004352,0.016384,13.4121,0.059072
+743,60.8871,16.4238,14.1005,0.038816,0.596064,0.007552,0.004736,0.016384,13.3787,0.058208
+744,60.822,16.4414,14.1435,0.03888,0.588928,0.007072,0.004096,0.016384,13.43,0.058144
+745,61.6162,16.2295,14.1169,0.053952,0.598016,0.0072,0.005088,0.016384,13.3775,0.058688
+746,57.765,17.3115,14.1189,0.038944,0.570496,0.007008,0.00528,0.0152,13.4238,0.058144
+747,62.5993,15.9746,14.0702,0.037536,0.603488,0.006784,0.005888,0.016192,13.3411,0.059168
+748,60.898,16.4209,14.1128,0.038528,0.567392,0.006432,0.005696,0.016256,13.4211,0.057344
+749,61.594,16.2354,14.123,0.038688,0.622816,0.007168,0.00512,0.016416,13.3755,0.057344
+750,61.138,16.3564,14.1189,0.038944,0.583648,0.00624,0.00576,0.016256,13.4105,0.0576
+751,60.6384,16.4912,14.2081,0.038528,0.661888,0.007808,0.0056,0.01536,13.4203,0.058624
+752,62.2795,16.0566,14.1042,0.037312,0.587808,0.007904,0.004352,0.016384,13.3909,0.05952
+753,62.772,15.9307,14.091,0.036704,0.56,0.00624,0.006144,0.016096,13.4077,0.05808
+754,62.6721,15.9561,14.1025,0.038912,0.565248,0.007552,0.004736,0.01616,13.4124,0.057472
+755,62.7182,15.9443,14.0759,0.036864,0.595968,0.007808,0.005568,0.016416,13.3539,0.059392
+756,61.2074,16.3379,14.1431,0.038912,0.559104,0.007584,0.004704,0.016288,13.4575,0.058976
+757,61.8022,16.1807,14.0169,0.03856,0.558912,0.006912,0.005728,0.016192,13.3329,0.057696
+758,59.9813,16.6719,14.1718,0.0392,0.62416,0.006624,0.005632,0.016224,13.4212,0.058752
+759,61.8171,16.1768,14.1005,0.038912,0.579584,0.007424,0.004864,0.016384,13.3953,0.057984
+760,61.3725,16.2939,14.0979,0.038656,0.561248,0.006304,0.005728,0.016288,13.4108,0.058848
+761,59.6598,16.7617,14.1573,0.038624,0.65392,0.007744,0.0056,0.01536,13.3773,0.05872
+762,56.7565,17.6191,14.1112,0.038624,0.591776,0.007008,0.004096,0.016384,13.3954,0.057952
+763,62.6952,15.9502,14.1079,0.038912,0.581632,0.007744,0.0056,0.015328,13.4001,0.058592
+764,62.0757,16.1094,14.0974,0.038912,0.585024,0.006848,0.004096,0.016416,13.3869,0.059232
+765,62.8568,15.9092,14.114,0.038816,0.573504,0.006304,0.006144,0.01632,13.414,0.058912
+766,61.7947,16.1826,14.0411,0.038624,0.563488,0.006208,0.005792,0.016256,13.3513,0.059392
+767,61.4646,16.2695,14.1496,0.038368,0.641504,0.006208,0.022368,0.016544,13.3673,0.057344
+768,61.0214,16.3877,14.0641,0.038368,0.56144,0.006848,0.005152,0.015328,13.3794,0.057536
+769,61.1489,16.3535,14.1237,0.037856,0.583136,0.006688,0.00608,0.016128,13.4147,0.059072
+770,59.8585,16.7061,14.133,0.037472,0.57344,0.006176,0.00576,0.016032,13.4346,0.059488
+771,60.9923,16.3955,14.1005,0.03808,0.651936,0.006368,0.006144,0.016256,13.3224,0.059392
+772,62.6952,15.9502,14.1092,0.045344,0.592416,0.00736,0.004896,0.016128,13.384,0.059136
+773,62.1699,16.085,14.1297,0.037376,0.569152,0.006336,0.006144,0.016384,13.4362,0.05808
+774,62.3478,16.0391,14.0227,0.038848,0.558176,0.006944,0.004288,0.016384,13.3386,0.059392
+775,63.0115,15.8701,14.016,0.038336,0.567872,0.008064,0.0056,0.016064,13.3212,0.05888
+776,61.1307,16.3584,14.053,0.038912,0.56976,0.007328,0.004896,0.016096,13.3574,0.058624
+777,61.8806,16.1602,14.0393,0.036864,0.557056,0.007808,0.0056,0.015296,13.3583,0.0584
+778,59.1805,16.8975,14.2806,0.038944,0.739296,0.0072,0.004896,0.018656,13.4118,0.059776
+779,60.7391,16.4639,14.1618,0.038528,0.635936,0.00784,0.0056,0.015232,13.4,0.058656
+780,62.0418,16.1182,14.0534,0.038912,0.557056,0.007968,0.00432,0.016384,13.3693,0.059456
+781,61.2917,16.3154,14.0503,0.037888,0.578816,0.006912,0.00576,0.01616,13.3466,0.058144
+782,62.1736,16.084,14.0923,0.038432,0.559776,0.008192,0.004096,0.016416,13.4056,0.059712
+783,62.7451,15.9375,14.0258,0.038016,0.54976,0.007232,0.005056,0.016384,13.3499,0.059424
+784,62.2644,16.0605,14.1214,0.037504,0.566848,0.006592,0.005408,0.016256,13.4296,0.0592
+785,59.0202,16.9434,14.2828,0.038912,0.76592,0.006176,0.006144,0.026624,13.3809,0.058112
+786,61.3872,16.29,14.0841,0.037408,0.589792,0.007776,0.004512,0.016384,13.3693,0.058912
+787,56.5965,17.6689,14.1519,0.038592,0.569888,0.00624,0.006048,0.016288,13.457,0.057888
+788,61.9817,16.1338,14.0674,0.038624,0.566816,0.006912,0.004096,0.016384,13.3755,0.059104
+789,57.9153,17.2666,14.1335,0.03856,0.579488,0.006848,0.005792,0.015968,13.4275,0.059424
+790,60.7787,16.4531,14.0964,0.038848,0.571456,0.007616,0.004672,0.01632,13.3981,0.059392
+791,61.8358,16.1719,14.085,0.037792,0.558208,0.007008,0.005856,0.016128,13.4006,0.059392
+792,60.6923,16.4766,14.1343,0.038912,0.591456,0.00656,0.00544,0.016064,13.4172,0.05872
+793,61.2513,16.3262,14.1072,0.037408,0.595968,0.007392,0.004896,0.016384,13.3869,0.058176
+794,59.6945,16.752,14.3176,0.038912,0.773856,0.006432,0.005536,0.016064,13.4184,0.058336
+795,60.8654,16.4297,14.0483,0.036512,0.559456,0.007488,0.0048,0.017568,13.3634,0.059104
+796,55.6401,17.9727,14.1353,0.038464,0.572928,0.007072,0.004128,0.016384,13.4349,0.06144
+797,60.2247,16.6045,14.1279,0.039136,0.610528,0.006496,0.006144,0.016384,13.3898,0.059392
+798,62.2455,16.0654,14.0857,0.037248,0.542368,0.006656,0.00528,0.015168,13.4185,0.060448
+799,62.3668,16.0342,14.0904,0.036864,0.5632,0.007488,0.0048,0.016384,13.4037,0.057888
+800,59.2455,16.8789,14.1479,0.037664,0.601824,0.006368,0.005568,0.01632,13.4211,0.059072
+801,61.7947,16.1826,14.0616,0.03792,0.551168,0.00688,0.005824,0.016032,13.3856,0.058176
+802,62.1246,16.0967,14.1754,0.037984,0.605088,0.007296,0.014528,0.01664,13.435,0.058912
+803,61.0687,16.375,14.1399,0.038464,0.555616,0.006528,0.00576,0.016128,13.458,0.059328
+804,61.9555,16.1406,14.0653,0.038912,0.552352,0.006752,0.00528,0.015232,13.3869,0.059808
+805,61.413,16.2832,14.1147,0.03696,0.60128,0.00688,0.00576,0.016768,13.389,0.05808
+806,60.6707,16.4824,14.0664,0.0376,0.562304,0.00704,0.005184,0.015328,13.3796,0.05936
+807,62.2341,16.0684,14.089,0.037504,0.56912,0.006496,0.006112,0.016192,13.3957,0.057824
+808,62.0305,16.1211,14.0019,0.037664,0.554816,0.007872,0.004416,0.016384,13.3202,0.060576
+809,59.632,16.7695,14.1954,0.037568,0.706592,0.008128,0.0056,0.016096,13.3632,0.05824
+810,44.5275,22.458,14.0814,0.038656,0.600064,0.006656,0.00528,0.015168,13.3509,0.06464
+811,61.0105,16.3906,14.0986,0.038816,0.612448,0.00624,0.006048,0.016384,13.3605,0.058144
+812,62.3212,16.0459,14.1546,0.037792,0.597984,0.00768,0.004608,0.016384,13.4308,0.059328
+813,62.6568,15.96,14.0711,0.038848,0.593984,0.006208,0.00608,0.016384,13.3508,0.05872
+814,60.5022,16.5283,14.1353,0.038912,0.619776,0.006912,0.004096,0.016384,13.3909,0.058368
+815,63.4252,15.7666,14.0391,0.038912,0.562496,0.006848,0.00576,0.016128,13.3495,0.059424
+816,63.3428,15.7871,13.9917,0.038944,0.557024,0.00624,0.0056,0.01616,13.3085,0.059232
+817,61.7053,16.2061,14.1797,0.038528,0.669728,0.006496,0.005984,0.016256,13.3838,0.058944
+818,62.102,16.1025,14.0984,0.037824,0.565216,0.00816,0.004128,0.016384,13.4076,0.059136
+819,62.4124,16.0225,14.0923,0.037952,0.576448,0.007712,0.004576,0.016416,13.3913,0.057856
+820,62.7489,15.9365,14.093,0.038848,0.559904,0.007264,0.004864,0.016288,13.4065,0.059328
+821,60.6671,16.4834,14.0099,0.038432,0.580064,0.007232,0.005056,0.016384,13.3038,0.058912
+822,61.7202,16.2021,14.0982,0.038464,0.5872,0.007072,0.004192,0.016416,13.3853,0.05952
+823,61.7091,16.2051,14.0487,0.038368,0.587616,0.006848,0.005824,0.016128,13.3343,0.059616
+824,61.4056,16.2852,14.1599,0.0384,0.63744,0.007712,0.004576,0.016384,13.397,0.058368
+825,61.3431,16.3018,14.1059,0.038368,0.669888,0.006496,0.006144,0.016288,13.3096,0.059136
+826,60.9996,16.3936,14.0758,0.037472,0.5552,0.007616,0.004672,0.01632,13.3954,0.059168
+827,61.3762,16.293,14.0376,0.038528,0.560096,0.007744,0.005568,0.015392,13.3509,0.05936
+828,62.2303,16.0693,14.1353,0.038912,0.663424,0.006304,0.005632,0.016224,13.3452,0.059616
+829,60.4951,16.5303,14.1399,0.037312,0.643136,0.007296,0.004992,0.016384,13.3714,0.059392
+830,62.6223,15.9688,14.0321,0.038912,0.554528,0.006624,0.005312,0.015168,13.3528,0.05872
+831,61.7574,16.1924,14.1435,0.036864,0.620544,0.007424,0.004864,0.016384,13.398,0.059392
+832,55.7067,17.9512,14.2981,0.038944,0.759776,0.008192,0.005312,0.015168,13.4122,0.058528
+833,61.6979,16.208,14.0852,0.038688,0.55728,0.007424,0.004864,0.016384,13.4017,0.058848
+834,61.266,16.3223,14.0242,0.038944,0.542688,0.007904,0.004384,0.016384,13.3549,0.05904
+835,61.8022,16.1807,14.0284,0.038048,0.551072,0.006848,0.00592,0.016256,13.3511,0.059136
+836,61.8358,16.1719,14.1379,0.037632,0.63008,0.006816,0.004096,0.016384,13.3848,0.058048
+837,62.5076,15.998,14.0131,0.037504,0.57552,0.00784,0.0056,0.015296,13.3119,0.059424
+838,62.2001,16.0771,14.0431,0.038592,0.579904,0.00768,0.004608,0.016384,13.3366,0.059392
+839,62.1925,16.0791,13.9776,0.038912,0.561152,0.007968,0.0056,0.016288,13.2899,0.05776
+840,62.6108,15.9717,14.029,0.039008,0.553056,0.006176,0.005792,0.01632,13.349,0.059616
+841,61.6496,16.2207,14.024,0.038944,0.554976,0.00752,0.004768,0.016384,13.3427,0.05872
+842,62.3061,16.0498,14.0092,0.037792,0.5632,0.00784,0.004448,0.016384,13.3214,0.058176
+843,62.3858,16.0293,13.9981,0.038912,0.544672,0.00624,0.006144,0.016416,13.3275,0.05824
+844,62.2417,16.0664,14.08,0.038944,0.580864,0.00688,0.00512,0.01536,13.3734,0.059392
+845,59.6389,16.7676,14.0502,0.037792,0.607936,0.006464,0.005728,0.016128,13.318,0.058176
+846,63.1203,15.8428,14.0206,0.038304,0.551328,0.006336,0.005632,0.016224,13.3445,0.058272
+847,61.9855,16.1328,14.0801,0.038496,0.612896,0.007712,0.004576,0.016416,13.3406,0.059392
+848,60.0939,16.6406,13.9754,0.03856,0.60016,0.006496,0.00544,0.016288,13.2493,0.059104
+849,61.2587,16.3242,14.0146,0.036992,0.575488,0.006208,0.00608,0.016384,13.314,0.059392
+850,60.869,16.4287,14.1189,0.038944,0.656384,0.007072,0.00416,0.02016,13.3328,0.059392
+851,59.6111,16.7754,14.2555,0.038464,0.745504,0.00656,0.006112,0.019616,13.3805,0.05872
+852,55.3394,18.0703,14.0877,0.038848,0.673856,0.008032,0.004256,0.016384,13.287,0.05936
+853,62.7836,15.9277,13.953,0.038912,0.557056,0.007424,0.004864,0.016416,13.269,0.059392
+854,61.9855,16.1328,14.0595,0.038912,0.559104,0.007296,0.004896,0.01616,13.3738,0.05936
+855,62.7144,15.9453,14.035,0.039072,0.562144,0.007104,0.0056,0.016704,13.3446,0.059776
+856,63.3232,15.792,13.995,0.038944,0.554144,0.006976,0.004096,0.016384,13.316,0.058528
+857,62.2152,16.0732,13.9626,0.038912,0.571392,0.008096,0.004192,0.016448,13.2648,0.058752
+858,62.1133,16.0996,14.0356,0.037536,0.569376,0.007808,0.004448,0.016384,13.3407,0.059328
+859,62.023,16.123,13.9225,0.037408,0.555008,0.008064,0.0056,0.016096,13.2412,0.059136
+860,61.3247,16.3066,13.9582,0.038912,0.562208,0.007072,0.00416,0.016384,13.2702,0.059264
+861,62.2644,16.0605,13.9653,0.038112,0.578336,0.007296,0.004992,0.016384,13.2608,0.059424
+862,62.4428,16.0146,13.933,0.0384,0.547776,0.007296,0.004928,0.01616,13.2602,0.058272
+863,60.3276,16.5762,14.3591,0.037792,0.954368,0.00736,0.004928,0.018432,13.2768,0.059456
+864,59.4347,16.8252,14.2065,0.038688,0.768256,0.007648,0.004608,0.016384,13.3111,0.059872
+865,58.5745,17.0723,14.0556,0.038208,0.647968,0.007744,0.0056,0.015392,13.2823,0.058304
+866,57.8139,17.2969,14.0556,0.038624,0.6456,0.007744,0.004544,0.016384,13.2833,0.059392
+867,62.9689,15.8809,13.9367,0.037344,0.569376,0.007552,0.004704,0.016384,13.2422,0.059104
+868,61.9855,16.1328,13.9837,0.038912,0.57552,0.00816,0.004096,0.016448,13.2812,0.059392
+869,61.0214,16.3877,14.036,0.046816,0.574944,0.007008,0.005632,0.016192,13.3266,0.058816
+870,63.1826,15.8271,13.9306,0.038272,0.591968,0.006688,0.00528,0.015232,13.2137,0.059488
+871,63.0736,15.8545,14.0022,0.036864,0.598016,0.007456,0.004832,0.016416,13.2792,0.059392
+872,59.89,16.6973,14.0616,0.038368,0.63904,0.023136,0.004448,0.027648,13.27,0.058912
+873,62.4048,16.0244,13.9592,0.038944,0.591008,0.006976,0.005824,0.016096,13.2409,0.059424
+874,62.2947,16.0527,13.9408,0.038912,0.591456,0.00656,0.005408,0.016192,13.2239,0.058304
+875,59.2216,16.8857,14.0308,0.038944,0.681248,0.00688,0.00576,0.016288,13.2239,0.057856
+876,62.1095,16.1006,13.9776,0.038496,0.58816,0.006176,0.005728,0.016096,13.2469,0.076
+877,62.5382,15.9902,13.9452,0.035552,0.587264,0.006656,0.006016,0.016224,13.234,0.05952
+878,61.4351,16.2773,14.0136,0.044992,0.614464,0.007872,0.004416,0.016384,13.2669,0.058496
+879,62.8259,15.917,13.9445,0.038176,0.592032,0.00672,0.006016,0.016256,13.226,0.059232
+880,62.5649,15.9834,13.9333,0.037664,0.595616,0.006432,0.005536,0.016096,13.2139,0.058048
+881,61.9292,16.1475,13.9589,0.038688,0.602464,0.007904,0.0056,0.016224,13.2147,0.073408
+882,62.3098,16.0488,13.9029,0.038816,0.55488,0.006368,0.005568,0.01632,13.2205,0.060448
+883,62.7105,15.9463,13.931,0.03728,0.556416,0.006752,0.006016,0.016384,13.2486,0.059488
+884,62.4314,16.0176,13.9601,0.037824,0.56112,0.00768,0.004608,0.016384,13.2731,0.059392
+885,61.7872,16.1846,13.975,0.038912,0.601888,0.006368,0.006144,0.016384,13.2458,0.059552
+886,63.0969,15.8486,13.9791,0.038816,0.612448,0.007712,0.004576,0.016384,13.2398,0.059424
+887,61.9742,16.1357,13.8793,0.038848,0.562592,0.006816,0.005792,0.016096,13.1898,0.059424
+888,60.5165,16.5244,14.0008,0.037792,0.641024,0.007392,0.004864,0.016288,13.2343,0.059168
+889,63.9281,15.6426,13.8618,0.037472,0.550272,0.007136,0.005632,0.016128,13.1869,0.058304
+890,63.2255,15.8164,13.8641,0.038816,0.560672,0.00672,0.00528,0.015232,13.1787,0.05872
+891,63.4449,15.7617,13.902,0.039232,0.583648,0.00784,0.005568,0.015296,13.1827,0.06768
+892,61.0942,16.3682,13.9157,0.038912,0.58736,0.006592,0.005536,0.016256,13.2019,0.059168
+893,61.3578,16.2979,13.8854,0.038912,0.562272,0.00704,0.0056,0.016128,13.1961,0.059392
+894,59.625,16.7715,14.5814,0.03888,1.23856,0.017312,0.005344,0.023296,13.1986,0.059424
+895,56.6215,17.6611,14.0501,0.037728,0.703488,0.017216,0.005472,0.015232,13.2116,0.059392
+896,62.0493,16.1162,13.9013,0.038688,0.59184,0.0064,0.005568,0.016224,13.1836,0.058976
+897,62.2795,16.0566,13.8623,0.038528,0.567136,0.006688,0.005952,0.016128,13.1691,0.058816
+898,61.0687,16.375,13.9531,0.038464,0.612832,0.007392,0.004896,0.015904,13.2142,0.059392
+899,62.0005,16.1289,13.8741,0.037856,0.613984,0.00656,0.006144,0.016128,13.1341,0.059392
+900,62.9225,15.8926,13.8772,0.038208,0.567072,0.00704,0.004128,0.016384,13.185,0.059392
+901,43.9542,22.751,13.8752,0.0384,0.551424,0.007616,0.004672,0.016384,13.1984,0.058368
+902,62.185,16.0811,13.9332,0.037664,0.579424,0.00624,0.005792,0.016192,13.2285,0.059424
+903,58.1917,17.1846,13.9759,0.039136,0.64176,0.008128,0.0056,0.016512,13.2056,0.059104
+904,62.4847,16.0039,13.9484,0.038336,0.649056,0.00688,0.004096,0.016384,13.1747,0.05904
+905,60.3311,16.5752,13.8844,0.038912,0.56704,0.0064,0.005952,0.016128,13.1907,0.059296
+906,62.2152,16.0732,13.8724,0.038496,0.584128,0.007648,0.00464,0.016288,13.1626,0.058624
+907,62.9573,15.8838,13.9122,0.038112,0.594112,0.006912,0.00576,0.016288,13.1931,0.057952
+908,61.5866,16.2373,13.9231,0.037632,0.622336,0.0064,0.005536,0.016992,13.1748,0.059392
+909,62.965,15.8818,13.8451,0.037504,0.591872,0.007744,0.0056,0.015328,13.1277,0.05936
+910,62.102,16.1025,13.8419,0.038464,0.583936,0.006784,0.005184,0.015296,13.1331,0.059136
+911,60.8112,16.4443,13.8607,0.037536,0.556512,0.006688,0.005952,0.016192,13.1788,0.05904
+912,61.1672,16.3486,14.0287,0.037056,0.775904,0.00624,0.020416,0.016448,13.1133,0.059264
+913,54.9415,18.2012,13.9213,0.038176,0.663488,0.006944,0.005696,0.016096,13.1318,0.059104
+914,63.1631,15.832,13.8127,0.037888,0.563168,0.00736,0.004864,0.016224,13.1238,0.059392
+915,63.1358,15.8389,13.8888,0.03712,0.579584,0.0072,0.005088,0.016384,13.1842,0.0592
+916,61.5237,16.2539,13.8487,0.038912,0.559776,0.006336,0.0056,0.016128,13.1567,0.065216
+917,62.6683,15.957,13.9386,0.038912,0.606208,0.00624,0.006048,0.016384,13.2055,0.059328
+918,63.5039,15.7471,13.8545,0.038912,0.595968,0.007936,0.004352,0.016384,13.1316,0.05936
+919,62.3023,16.0508,13.8554,0.037504,0.559104,0.008,0.0056,0.016096,13.1697,0.059424
+920,59.7363,16.7402,13.8104,0.0376,0.56304,0.006304,0.005568,0.016256,13.1222,0.059392
+921,61.7202,16.2021,14.0456,0.03792,0.784352,0.007328,0.00496,0.016416,13.1359,0.058784
+922,62.325,16.0449,13.826,0.038944,0.577504,0.008032,0.004256,0.016384,13.1229,0.058048
+923,61.6051,16.2324,13.9272,0.045824,0.661536,0.008,0.0056,0.016192,13.1307,0.059424
+924,63.4291,15.7656,13.8629,0.038912,0.579584,0.007936,0.004352,0.016384,13.1564,0.059392
+925,61.5755,16.2402,13.8476,0.038432,0.563136,0.006688,0.006144,0.016192,13.1581,0.058944
+926,62.2947,16.0527,13.9679,0.038624,0.682496,0.006464,0.005536,0.020384,13.1545,0.059872
+927,61.3835,16.291,13.8014,0.038912,0.558976,0.006272,0.006144,0.016384,13.1154,0.059328
+928,62.5229,15.9941,13.8176,0.038272,0.555584,0.006432,0.005504,0.016352,13.1365,0.058944
+929,62.5917,15.9766,13.8804,0.038912,0.618496,0.007296,0.004992,0.016384,13.1339,0.06048
+930,61.8881,16.1582,13.8363,0.038848,0.573504,0.0072,0.004896,0.016224,13.1362,0.059424
+931,62.2947,16.0527,13.823,0.037888,0.556352,0.006848,0.005952,0.016128,13.1404,0.059392
+932,61.8059,16.1797,13.8854,0.038912,0.607552,0.006848,0.004096,0.016384,13.1523,0.059392
+933,62.8761,15.9043,13.804,0.038592,0.561984,0.0072,0.00512,0.016352,13.1154,0.059392
+934,62.8993,15.8984,13.8547,0.038912,0.577536,0.00784,0.004448,0.016384,13.1502,0.059392
+935,63.3977,15.7734,13.8891,0.038144,0.625408,0.007616,0.004672,0.016416,13.1379,0.058944
+936,61.0906,16.3691,13.857,0.049248,0.575296,0.0064,0.0056,0.016192,13.1448,0.059424
+937,62.6606,15.959,13.8442,0.038944,0.567168,0.00624,0.006144,0.016384,13.1502,0.059136
+938,61.5607,16.2441,13.8875,0.038912,0.573472,0.007968,0.004288,0.016384,13.1871,0.059392
+939,63.3977,15.7734,13.8281,0.0384,0.571904,0.007168,0.00512,0.016416,13.1297,0.059424
+940,62.699,15.9492,13.8734,0.038528,0.567904,0.00768,0.004608,0.016384,13.1788,0.05952
+941,63.5157,15.7441,13.8883,0.038688,0.60288,0.006336,0.006144,0.01616,13.1587,0.059392
+942,61.6051,16.2324,13.9027,0.037824,0.573312,0.006272,0.00576,0.016256,13.204,0.059232
+943,62.1586,16.0879,13.8798,0.037344,0.561024,0.006272,0.006144,0.016384,13.1952,0.057376
+944,61.3909,16.2891,13.8692,0.038944,0.583648,0.007552,0.004736,0.016384,13.1596,0.058336
+945,62.3326,16.043,13.8464,0.038016,0.562048,0.006272,0.006144,0.016384,13.1584,0.059168
+946,63.2958,15.7988,13.8141,0.037888,0.560704,0.006592,0.005312,0.016288,13.128,0.059296
+947,61.4277,16.2793,13.8521,0.03856,0.583072,0.007072,0.005568,0.016192,13.1425,0.059104
+948,63.9281,15.6426,13.8279,0.038752,0.559456,0.00672,0.00528,0.015232,13.1437,0.058752
+949,60.7283,16.4668,13.9061,0.049376,0.622592,0.006208,0.00608,0.016416,13.1461,0.059392
+950,62.8684,15.9062,13.8236,0.03824,0.555584,0.00656,0.005344,0.016352,13.1421,0.059424
+951,61.4572,16.2715,13.794,0.037632,0.568928,0.006528,0.006144,0.016192,13.1003,0.058368
+952,63.0309,15.8652,13.7894,0.03856,0.56944,0.006592,0.005376,0.016128,13.0939,0.05936
+953,62.9534,15.8848,13.8464,0.03776,0.606176,0.007328,0.00496,0.016384,13.1152,0.058592
+954,62.9999,15.873,13.8345,0.038592,0.585984,0.00688,0.004096,0.016416,13.1233,0.059264
+955,62.1736,16.084,13.8648,0.03728,0.628704,0.006176,0.006144,0.016384,13.1113,0.058816
+956,60.7139,16.4707,13.8617,0.037696,0.6832,0.006976,0.004096,0.016384,13.054,0.05936
+957,62.699,15.9492,13.8244,0.038784,0.56368,0.006336,0.006144,0.016256,13.134,0.059264
+958,61.4941,16.2617,14.0597,0.038624,0.7792,0.007616,0.004672,0.022624,13.1481,0.058912
+959,62.676,15.9551,13.8177,0.038912,0.561152,0.007616,0.004672,0.017408,13.1287,0.059264
+960,61.6273,16.2266,13.7948,0.038784,0.568896,0.00672,0.005216,0.015264,13.1008,0.059072
+961,62.9999,15.873,13.7875,0.038752,0.555232,0.0064,0.006144,0.016384,13.1052,0.059392
+962,55.7067,17.9512,13.8688,0.038944,0.617888,0.00672,0.005248,0.015232,13.1255,0.059264
+963,60.292,16.5859,13.8015,0.038912,0.57344,0.007392,0.004896,0.016384,13.1022,0.058304
+964,61.0105,16.3906,13.9225,0.038784,0.664864,0.00704,0.004192,0.016384,13.1331,0.058144
+965,64.3782,15.5332,13.8603,0.038912,0.589824,0.007296,0.004992,0.016384,13.1439,0.058944
+966,62.6606,15.959,13.8126,0.03776,0.577536,0.007328,0.004896,0.016288,13.1094,0.059392
+967,60.851,16.4336,14.0452,0.054496,0.803136,0.006624,0.005728,0.016384,13.1005,0.058304
+968,62.63,15.9668,13.9115,0.038496,0.650912,0.016768,0.00448,0.016384,13.1256,0.058816
+969,62.325,16.0449,13.8315,0.038816,0.601216,0.007104,0.0056,0.016384,13.1034,0.058976
+970,61.8358,16.1719,13.9349,0.038752,0.62528,0.007232,0.004896,0.016128,13.1834,0.0592
+971,62.3326,16.043,13.8267,0.037536,0.567104,0.006304,0.006144,0.016384,13.1338,0.059392
+972,61.978,16.1348,13.9039,0.038912,0.632832,0.006208,0.00608,0.016384,13.146,0.05744
+973,63.2333,15.8145,13.8487,0.038592,0.596288,0.006144,0.006144,0.016256,13.1273,0.057984
+974,63.5236,15.7422,13.8735,0.037248,0.56016,0.007072,0.004128,0.016384,13.1891,0.059424
+975,62.8993,15.8984,13.8056,0.038912,0.577568,0.007936,0.0056,0.015104,13.1022,0.058304
+976,63.3037,15.7969,13.8465,0.038496,0.565408,0.0064,0.005536,0.016128,13.1552,0.059392
+977,63.2255,15.8164,13.8262,0.037728,0.597728,0.006432,0.006144,0.016256,13.1012,0.060672
+978,61.7761,16.1875,13.8832,0.038944,0.624608,0.008032,0.004256,0.016384,13.1317,0.0592
+979,61.1051,16.3652,13.95,0.038656,0.630592,0.018368,0.006016,0.016128,13.1814,0.05888
+980,62.4543,16.0117,13.9072,0.038944,0.636896,0.007872,0.004416,0.016384,13.1441,0.058656
+981,63.437,15.7637,13.8947,0.038976,0.61824,0.006336,0.006144,0.016352,13.1495,0.059104
+982,63.3899,15.7754,13.8179,0.03872,0.615776,0.007008,0.004096,0.016384,13.0765,0.059392
+983,63.3977,15.7734,13.7694,0.03776,0.584992,0.00688,0.005824,0.016256,13.0583,0.059392
+984,62.584,15.9785,13.8252,0.037824,0.589408,0.00656,0.005344,0.016352,13.1115,0.058208
+985,63.9041,15.6484,13.8588,0.03888,0.57552,0.007744,0.005568,0.015392,13.1563,0.059392
+986,63.4763,15.7539,13.7841,0.038912,0.567136,0.006304,0.005632,0.015968,13.0912,0.058976
+987,62.3023,16.0508,13.8657,0.0376,0.63888,0.006208,0.006144,0.016384,13.1023,0.058144
+988,62.7528,15.9355,13.8602,0.039936,0.568256,0.006208,0.00576,0.01616,13.1645,0.059424
+989,64.016,15.6211,13.8158,0.036768,0.565888,0.007392,0.004896,0.016416,13.1256,0.058816
+990,62.363,16.0352,13.8259,0.038848,0.57056,0.006976,0.004096,0.016384,13.1295,0.05952
+991,62.9457,15.8867,13.8708,0.038816,0.604256,0.007424,0.004896,0.016352,13.14,0.059104
+992,63.4449,15.7617,13.8433,0.037728,0.585728,0.008064,0.004224,0.016384,13.1337,0.057504
+993,63.3899,15.7754,13.8547,0.038912,0.568864,0.006624,0.006144,0.016128,13.1587,0.059392
+994,61.8731,16.1621,13.8432,0.0376,0.591872,0.00736,0.004896,0.016224,13.1258,0.059392
+995,63.1397,15.8379,13.8261,0.036928,0.566592,0.006816,0.005856,0.01632,13.1342,0.059392
+996,62.6453,15.9629,13.8231,0.03856,0.569696,0.007584,0.004704,0.016384,13.1269,0.059296
+997,63.2567,15.8086,13.8527,0.038144,0.567168,0.00704,0.005632,0.016768,13.1606,0.057344
+998,61.8432,16.1699,13.8204,0.037344,0.570528,0.007008,0.00528,0.016256,13.1266,0.057344
+999,63.5236,15.7422,13.8056,0.038912,0.565248,0.007712,0.0056,0.015392,13.1144,0.058304
+1000,60.8871,16.4238,13.9707,0.038528,0.665952,0.006208,0.005696,0.016256,13.1774,0.060704
+1001,61.4867,16.2637,13.8258,0.038368,0.590432,0.006336,0.006144,0.01632,13.1093,0.058848
+1002,60.1433,16.627,13.9117,0.03888,0.674304,0.007392,0.014688,0.016672,13.1008,0.058976
+1003,62.8221,15.918,13.988,0.037664,0.718848,0.007584,0.014944,0.024256,13.1255,0.059232
+1004,62.1661,16.0859,13.9876,0.038752,0.706112,0.006752,0.005248,0.016544,13.155,0.059104
+1005,53.5733,18.666,13.945,0.045056,0.697568,0.006944,0.015776,0.016096,13.1054,0.05808
+1006,60.7787,16.4531,13.8296,0.038912,0.599584,0.006624,0.005376,0.015136,13.1051,0.05888
+1007,64.1283,15.5938,13.8147,0.039072,0.553728,0.0072,0.00512,0.016352,13.135,0.058272
+1008,63.8484,15.6621,13.8342,0.038912,0.564864,0.006528,0.00544,0.016352,13.1428,0.059392
+1009,63.4213,15.7676,13.7878,0.0368,0.563584,0.006528,0.00576,0.016064,13.0997,0.05936
+1010,62.8298,15.916,13.8788,0.038752,0.555264,0.007552,0.004736,0.016256,13.1969,0.059392
+1011,62.4695,16.0078,14.042,0.037824,0.770016,0.007744,0.0056,0.016352,13.1462,0.058272
+1012,62.7297,15.9414,13.9772,0.03888,0.677856,0.006208,0.005696,0.016448,13.1731,0.059008
+1013,63.0775,15.8535,13.878,0.037632,0.565248,0.007648,0.00464,0.020512,13.1829,0.059424
+1014,61.2294,16.332,13.8883,0.037696,0.577536,0.007232,0.004928,0.016128,13.1752,0.069632
+1015,60.4701,16.5371,13.826,0.038688,0.583776,0.00688,0.005696,0.016256,13.1159,0.058816
+1016,59.7015,16.75,13.8568,0.038944,0.558752,0.006464,0.0056,0.016064,13.1675,0.063488
+1017,62.0681,16.1113,13.835,0.037632,0.5872,0.00672,0.006112,0.016224,13.1217,0.059392
+1018,62.7451,15.9375,13.8839,0.038784,0.615072,0.007616,0.004672,0.016384,13.142,0.059392
+1019,62.2568,16.0625,13.8444,0.03888,0.56592,0.007328,0.00496,0.016384,13.1523,0.058624
+1020,61.2367,16.3301,13.8917,0.038848,0.602176,0.007872,0.004416,0.016416,13.1644,0.057568
+1021,62.9225,15.8926,13.8347,0.0384,0.572416,0.00752,0.004768,0.016384,13.1359,0.059296
+1022,62.6606,15.959,13.8332,0.037824,0.561088,0.006208,0.00576,0.016096,13.1468,0.059392
+1023,61.791,16.1836,13.818,0.038752,0.618784,0.007872,0.005568,0.015264,13.0724,0.05936
+1024,62.8915,15.9004,13.8687,0.037504,0.57312,0.006368,0.005536,0.016384,13.1712,0.058528
+1025,62.5687,15.9824,13.8876,0.037664,0.636576,0.006496,0.005664,0.016064,13.1264,0.05872
+1026,59.6042,16.7773,13.8842,0.037696,0.670976,0.00688,0.005152,0.015328,13.0888,0.05936
+1027,61.9105,16.1523,13.8112,0.038176,0.563584,0.006496,0.006144,0.016384,13.1211,0.059264
+1028,61.9705,16.1367,13.8738,0.037504,0.652416,0.007008,0.004096,0.016384,13.0983,0.05808
+1029,62.8915,15.9004,13.865,0.038912,0.6032,0.007104,0.005664,0.016096,13.1346,0.059392
+1030,61.5681,16.2422,13.865,0.038944,0.583648,0.007936,0.004352,0.016384,13.1543,0.059392
+1031,62.2568,16.0625,14.0288,0.038944,0.75776,0.02048,0.006112,0.016384,13.1297,0.059392
+1032,59.6806,16.7559,14.0336,0.039168,0.719296,0.007424,0.004864,0.016224,13.1872,0.059424
+1033,55.6703,17.9629,13.8117,0.038528,0.590208,0.008128,0.005568,0.016224,13.0937,0.059392
+1034,61.6867,16.2109,13.8035,0.038912,0.55696,0.00624,0.005728,0.016032,13.1203,0.059392
+1035,61.6496,16.2207,13.8885,0.0384,0.62416,0.007072,0.0056,0.016992,13.1374,0.058944
+1036,62.0456,16.1172,13.838,0.038336,0.571232,0.00688,0.004096,0.016384,13.142,0.059072
+1037,63.093,15.8496,13.804,0.037344,0.575264,0.006368,0.006144,0.016192,13.105,0.057696
+1038,62.799,15.9238,13.8703,0.038944,0.5872,0.006688,0.00528,0.015232,13.1584,0.058624
+1039,62.7682,15.9316,13.8698,0.03712,0.610528,0.006528,0.006144,0.016384,13.1338,0.059232
+1040,61.0032,16.3926,13.8508,0.036992,0.56512,0.006272,0.005664,0.016032,13.1613,0.059392
+1041,63.5236,15.7422,13.8121,0.037728,0.561152,0.007776,0.0056,0.015296,13.1251,0.059392
+1042,63.2802,15.8027,13.8246,0.03744,0.57344,0.008128,0.00416,0.016384,13.1256,0.059424
+1043,62.1661,16.0859,13.939,0.037856,0.694272,0.007808,0.0056,0.015296,13.1195,0.058752
+1044,58.9319,16.9688,13.8934,0.038912,0.646624,0.006688,0.005568,0.016352,13.1213,0.05792
+1045,56.9965,17.5449,13.8829,0.038464,0.682528,0.006304,0.006144,0.016384,13.0744,0.058688
+1046,63.4291,15.7656,13.8491,0.03856,0.587584,0.00704,0.004192,0.016384,13.1371,0.058272
+1047,63.1865,15.8262,13.7802,0.038176,0.566048,0.007456,0.004832,0.016384,13.0882,0.059136
+1048,62.7451,15.9375,13.9796,0.038144,0.673664,0.00704,0.004096,0.016384,13.1826,0.057728
+1049,63.2567,15.8086,13.8552,0.037376,0.584928,0.006944,0.005888,0.016128,13.1462,0.057792
+1050,62.1888,16.0801,13.9224,0.038432,0.635424,0.006208,0.00576,0.016288,13.1609,0.05936
+1051,63.5078,15.7461,13.8765,0.03856,0.6168,0.007712,0.004576,0.016416,13.1338,0.058688
+1052,61.8283,16.1738,13.7767,0.038784,0.559904,0.007488,0.0048,0.016256,13.0909,0.05856
+1053,61.3835,16.291,13.8819,0.03776,0.649216,0.00784,0.0056,0.015232,13.1072,0.05904
+1054,63.2645,15.8066,13.8886,0.038912,0.566336,0.007104,0.004096,0.016384,13.185,0.070784
+1055,61.8432,16.1699,13.9013,0.03824,0.578368,0.008064,0.005568,0.025312,13.187,0.058784
+1056,62.151,16.0898,13.8931,0.038624,0.593568,0.006784,0.00512,0.015392,13.1748,0.058816
+1057,64.1926,15.5781,13.8017,0.037056,0.569344,0.008,0.0056,0.015104,13.1072,0.059424
+1058,61.8507,16.168,13.8831,0.038432,0.639264,0.006784,0.005184,0.015296,13.1194,0.058752
+1059,62.8761,15.9043,13.8932,0.038688,0.631456,0.00624,0.006144,0.026624,13.1249,0.059136
+1060,62.3023,16.0508,13.82,0.038528,0.577504,0.00688,0.004096,0.016384,13.1174,0.059168
+1061,63.062,15.8574,13.8936,0.038432,0.62512,0.007488,0.0048,0.016416,13.1435,0.057888
+1062,63.6895,15.7012,13.7821,0.038912,0.573216,0.006368,0.005568,0.016096,13.0835,0.058432
+1063,63.093,15.8496,13.8507,0.038272,0.561792,0.00816,0.0056,0.016928,13.1622,0.057664
+1064,62.5917,15.9766,13.823,0.038912,0.561152,0.006176,0.005792,0.016128,13.1344,0.060416
+1065,62.6376,15.9648,13.8545,0.038912,0.597344,0.006816,0.005952,0.016128,13.1299,0.059392
+1066,61.472,16.2676,13.8527,0.038272,0.571392,0.006816,0.00512,0.01536,13.1579,0.057792
+1067,62.2795,16.0566,13.91,0.038336,0.668224,0.007776,0.005568,0.016512,13.1142,0.059328
+1068,59.5418,16.7949,14.0849,0.037664,0.802816,0.006144,0.005824,0.01856,13.1545,0.059392
+1069,58.1554,17.1953,13.7952,0.03856,0.557536,0.007808,0.005568,0.015296,13.1113,0.059168
+1070,61.7835,16.1855,13.9039,0.03856,0.631168,0.007936,0.00432,0.016384,13.1461,0.059392
+1071,61.6348,16.2246,13.8425,0.037696,0.611648,0.00672,0.0056,0.016096,13.106,0.058656
+1072,63.1164,15.8438,13.7995,0.038784,0.576384,0.007616,0.004672,0.016384,13.097,0.058656
+1073,63.4606,15.7578,13.7891,0.037696,0.557056,0.007264,0.005024,0.016384,13.1063,0.05936
+1074,61.0541,16.3789,13.8669,0.037696,0.599488,0.00672,0.005248,0.015232,13.142,0.060512
+1075,62.607,15.9727,13.8343,0.03792,0.5616,0.006688,0.006048,0.016096,13.1465,0.059424
+1076,64.2893,15.5547,13.8029,0.038912,0.560704,0.006592,0.00544,0.016096,13.1164,0.058752
+1077,62.6223,15.9688,13.9374,0.0376,0.663552,0.007968,0.005568,0.016256,13.147,0.059392
+1078,59.862,16.7051,13.8383,0.038912,0.626688,0.007808,0.00448,0.016384,13.0847,0.059392
+1079,53.1175,18.8262,13.9865,0.037536,0.69632,0.007648,0.00464,0.016384,13.1646,0.059328
+1080,57.2643,17.4629,13.8077,0.03776,0.568416,0.00704,0.004128,0.016384,13.1154,0.058624
+1081,64.6955,15.457,13.8711,0.038944,0.583648,0.007168,0.00512,0.016384,13.1604,0.059392
+1082,60.3702,16.5645,13.8957,0.038912,0.581632,0.00624,0.00576,0.016128,13.1891,0.057888
+1083,63.1008,15.8477,13.7644,0.037632,0.55424,0.00688,0.005824,0.016256,13.085,0.05856
+1084,63.2489,15.8105,13.845,0.037376,0.565248,0.007808,0.00448,0.016384,13.1564,0.057376
+1085,63.0309,15.8652,13.8868,0.038944,0.59088,0.007008,0.0056,0.01616,13.1695,0.058656
+1086,63.0154,15.8691,13.8343,0.038912,0.598016,0.008032,0.004256,0.016384,13.1108,0.057952
+1087,63.4685,15.7559,13.8052,0.038784,0.592,0.007808,0.005568,0.016352,13.0857,0.059008
+1088,62.2341,16.0684,13.8859,0.039072,0.640544,0.006944,0.005568,0.016064,13.1183,0.059392
+1089,61.222,16.334,13.8871,0.038592,0.64336,0.006368,0.006144,0.016384,13.1173,0.058912
+1090,62.8606,15.9082,13.8443,0.03856,0.608608,0.007232,0.004896,0.016128,13.1097,0.059168
+1091,62.5917,15.9766,13.8714,0.038592,0.629152,0.00672,0.00592,0.01616,13.1155,0.059296
+1092,61.3835,16.291,13.8773,0.038304,0.645792,0.007872,0.004384,0.016384,13.1063,0.058208
+1093,62.0681,16.1113,13.8853,0.039968,0.670688,0.007744,0.004544,0.016384,13.0868,0.059232
+1094,61.903,16.1543,13.8526,0.038912,0.62464,0.007488,0.0048,0.016288,13.1012,0.05936
+1095,61.5681,16.2422,13.8627,0.038816,0.64112,0.007552,0.004768,0.016352,13.0948,0.059264
+1096,61.7984,16.1816,13.9257,0.049152,0.62464,0.00736,0.004896,0.016032,13.1648,0.058816
+1097,61.5903,16.2363,13.9407,0.038784,0.694528,0.007392,0.004896,0.016384,13.1195,0.059264
+1098,55.4173,18.0449,13.8937,0.038912,0.669696,0.007904,0.004384,0.016384,13.097,0.059424
+1099,60.3062,16.582,13.8895,0.037824,0.669344,0.006368,0.006144,0.016384,13.0949,0.058528
+1100,63.642,15.7129,13.7911,0.037632,0.589632,0.006336,0.0056,0.016032,13.0767,0.059168
+1101,63.5946,15.7246,13.8123,0.037408,0.575488,0.006368,0.005952,0.016352,13.1113,0.059392
+1102,63.2958,15.7988,13.8199,0.038656,0.573696,0.00768,0.004608,0.016384,13.1213,0.057536
+1103,63.3037,15.7969,13.8398,0.036864,0.607232,0.00704,0.0056,0.01616,13.1074,0.059488
+1104,63.1242,15.8418,13.8329,0.038624,0.56624,0.007744,0.004544,0.016384,13.14,0.059392
+1105,63.8404,15.6641,13.7748,0.036832,0.562144,0.007328,0.004992,0.016352,13.0884,0.058816
+1106,63.0697,15.8555,13.8322,0.038944,0.626112,0.006688,0.005216,0.015264,13.0803,0.059648
+1107,63.1553,15.834,13.8282,0.038208,0.582432,0.007744,0.0056,0.015424,13.1194,0.059392
+1108,63.7133,15.6953,13.8243,0.038496,0.573632,0.006592,0.005408,0.01664,13.1256,0.05792
+1109,61.025,16.3867,13.8553,0.03776,0.632608,0.0064,0.006112,0.016096,13.0972,0.059104
+1110,64.04,15.6152,13.7707,0.03856,0.58336,0.006752,0.004192,0.016352,13.0621,0.059296
+1111,63.8484,15.6621,13.781,0.03808,0.57632,0.006272,0.006016,0.016384,13.0785,0.059392
+1112,62.6606,15.959,13.7458,0.038464,0.565664,0.006176,0.005728,0.016128,13.0546,0.058976
+1113,63.1164,15.8438,13.7914,0.038784,0.561216,0.006368,0.005792,0.016128,13.1051,0.05808
+1114,63.3115,15.7949,13.7756,0.038816,0.562016,0.008096,0.004192,0.016384,13.0879,0.058208
+1115,61.5533,16.2461,13.8138,0.03888,0.600096,0.007264,0.005024,0.016416,13.0867,0.059392
+1116,63.1553,15.834,13.8411,0.037568,0.601504,0.006752,0.005216,0.015296,13.1154,0.059392
+1117,62.4162,16.0215,13.996,0.048416,0.784896,0.006368,0.006144,0.016288,13.0745,0.05936
+1118,61.5755,16.2402,14.0943,0.038912,0.8784,0.006368,0.005696,0.01616,13.0894,0.059392
+1119,64.056,15.6113,13.7761,0.038912,0.570784,0.006752,0.006144,0.016384,13.0785,0.058624
+1120,62.2568,16.0625,13.8938,0.038496,0.623168,0.007968,0.00432,0.016384,13.1459,0.057568
+1121,59.5834,16.7832,13.9676,0.038496,0.701024,0.006208,0.006144,0.016384,13.14,0.059392
+1122,61.9855,16.1328,13.8469,0.03872,0.616704,0.006432,0.004096,0.01744,13.1041,0.059392
+1123,61.791,16.1836,13.9674,0.038464,0.668096,0.007776,0.005568,0.015328,13.1743,0.057792
+1124,61.5237,16.2539,13.8609,0.038912,0.655104,0.007424,0.004896,0.016352,13.0804,0.057792
+1125,63.3585,15.7832,13.7789,0.038912,0.566752,0.006688,0.005952,0.016064,13.0852,0.059392
+1126,62.7297,15.9414,13.8977,0.038912,0.630784,0.007616,0.004672,0.016384,13.14,0.059392
+1127,63.2411,15.8125,13.769,0.038656,0.565184,0.006784,0.005984,0.01616,13.0769,0.059392
+1128,63.7133,15.6953,13.7279,0.03824,0.559456,0.006592,0.005344,0.016256,13.0426,0.059392
+1129,62.0982,16.1035,13.753,0.037568,0.568736,0.006752,0.005984,0.016128,13.0599,0.05792
+1130,61.31,16.3105,13.7585,0.038912,0.602112,0.007584,0.004704,0.016288,13.0295,0.05936
+1131,62.3098,16.0488,13.8015,0.038656,0.598304,0.007904,0.004384,0.016384,13.0777,0.058208
+1132,62.607,15.9727,13.774,0.038912,0.567296,0.007456,0.004832,0.016256,13.0803,0.058976
+1133,59.7224,16.7441,13.8363,0.043008,0.646272,0.007072,0.005568,0.016352,13.0586,0.059392
+1134,62.9689,15.8809,13.7795,0.037792,0.587296,0.006592,0.005344,0.015136,13.0675,0.059808
+1135,64.1765,15.582,13.7828,0.038944,0.585344,0.007712,0.004928,0.016384,13.0702,0.059264
+1136,62.3706,16.0332,13.842,0.038944,0.621952,0.016992,0.005472,0.025248,13.0737,0.059712
+1137,59.273,16.8711,14.1066,0.038496,0.867968,0.006944,0.005696,0.027072,13.1024,0.058016
+1138,62.3934,16.0273,13.9593,0.047168,0.704512,0.007232,0.004864,0.016384,13.1197,0.059424
+1139,60.8437,16.4355,13.9014,0.038336,0.705472,0.007456,0.004832,0.016416,13.0696,0.059264
+1140,61.6273,16.2266,13.8096,0.0376,0.624736,0.006176,0.00576,0.016256,13.0597,0.059296
+1141,56.2637,17.7734,15.1348,0.038464,1.8601,0.006432,0.01776,0.016736,13.1362,0.059168
+1142,61.993,16.1309,13.7851,0.038912,0.610336,0.007968,0.004288,0.02256,13.0416,0.059424
+1143,63.8723,15.6562,13.8014,0.038912,0.589152,0.006848,0.005888,0.01648,13.0848,0.059328
+1144,62.722,15.9434,13.8179,0.03888,0.5856,0.006304,0.005632,0.016064,13.1058,0.059648
+1145,59.9391,16.6836,13.7767,0.03856,0.577408,0.006624,0.006048,0.016224,13.0726,0.0592
+1146,61.2953,16.3145,13.79,0.038688,0.609312,0.007936,0.00432,0.016384,13.054,0.059392
+1147,62.8298,15.916,13.7971,0.038208,0.573248,0.00704,0.0056,0.016256,13.0976,0.059104
+1148,60.7643,16.457,13.861,0.038176,0.668544,0.00768,0.004576,0.016384,13.0674,0.058272
+1149,63.3899,15.7754,13.7682,0.038656,0.567552,0.007488,0.0048,0.016384,13.0744,0.058912
+1150,62.3174,16.0469,13.8199,0.03856,0.555168,0.006432,0.005504,0.016128,13.1388,0.059328
+1151,62.8452,15.9121,13.7766,0.038784,0.57072,0.006944,0.005696,0.016096,13.0793,0.059072
+1152,62.8684,15.9062,13.7683,0.038944,0.560224,0.00704,0.004096,0.016384,13.0806,0.060992
+1153,63.7847,15.6777,13.753,0.037568,0.567168,0.00624,0.005856,0.016064,13.0619,0.058272
+1154,62.3402,16.041,13.8255,0.038528,0.598432,0.007936,0.00432,0.016384,13.1007,0.0592
+1155,62.363,16.0352,14.0144,0.037472,0.775584,0.022656,0.006048,0.021056,13.0929,0.05872
+1156,62.151,16.0898,13.9218,0.038464,0.735456,0.006496,0.00544,0.016224,13.0603,0.05936
+1157,61.5311,16.252,14.0083,0.038752,0.78416,0.006528,0.006112,0.031936,13.0814,0.059392
+1158,59.5557,16.791,13.8012,0.03824,0.590432,0.006272,0.005664,0.016224,13.0853,0.059008
+1159,63.8723,15.6562,13.778,0.038848,0.575552,0.008064,0.005568,0.016064,13.0748,0.059136
+1160,61.025,16.3867,13.8158,0.038496,0.612512,0.0064,0.005536,0.016192,13.0788,0.05792
+1161,61.978,16.1348,13.8275,0.038912,0.57344,0.007296,0.004992,0.016384,13.1271,0.059328
+1162,63.4291,15.7656,13.8097,0.038656,0.602368,0.007264,0.005024,0.016384,13.0821,0.057888
+1163,62.6147,15.9707,13.8059,0.040288,0.60512,0.008064,0.0056,0.016224,13.0712,0.059392
+1164,61.657,16.2188,13.8257,0.038624,0.594784,0.00752,0.004768,0.016224,13.1033,0.06048
+1165,63.7847,15.6777,13.781,0.036864,0.573216,0.006368,0.006144,0.016224,13.0838,0.058368
+1166,62.3023,16.0508,13.8711,0.038944,0.642272,0.006912,0.004096,0.016416,13.1031,0.05936
+1167,63.093,15.8496,13.719,0.038368,0.579232,0.00704,0.005696,0.016736,13.013,0.058944
+1168,62.2795,16.0566,13.8215,0.038592,0.610624,0.007296,0.004864,0.016128,13.0851,0.058944
+1169,61.5385,16.25,13.8404,0.038464,0.62304,0.0072,0.005088,0.016384,13.0908,0.059392
+1170,63.7609,15.6836,13.7339,0.038432,0.569824,0.007488,0.0048,0.016224,13.0378,0.05936
+1171,62.6376,15.9648,13.7646,0.038752,0.565216,0.006368,0.006112,0.016256,13.0736,0.058336
+1172,63.2099,15.8203,13.8281,0.038912,0.579072,0.006688,0.005312,0.016288,13.1235,0.058304
+1173,63.3428,15.7871,13.7935,0.038592,0.576384,0.00816,0.0056,0.016192,13.0789,0.069696
+1174,62.0982,16.1035,13.8547,0.038528,0.643456,0.007648,0.00464,0.016288,13.0848,0.05936
+1175,63.6895,15.7012,13.7789,0.038624,0.605824,0.006848,0.005824,0.016096,13.0476,0.05808
+1176,62.4847,16.0039,13.8743,0.038496,0.613888,0.007072,0.005504,0.01616,13.1326,0.060512
+1177,61.244,16.3281,13.885,0.03888,0.70784,0.006944,0.005728,0.024864,13.0418,0.058944
+1178,62.4162,16.0215,13.7909,0.038016,0.582592,0.008032,0.004256,0.016384,13.0826,0.05904
+1179,64.048,15.6133,13.7585,0.038912,0.565248,0.007936,0.005568,0.016224,13.0663,0.058304
+1180,62.1586,16.0879,13.8455,0.037856,0.649248,0.007264,0.004896,0.016224,13.0706,0.059392
+1181,60.8799,16.4258,13.8506,0.03856,0.668,0.007328,0.00496,0.016384,13.056,0.059392
+1182,60.9161,16.416,13.8858,0.038624,0.701056,0.007232,0.016384,0.016576,13.0478,0.058144
+1183,60.4558,16.541,13.7667,0.038912,0.618496,0.00624,0.006048,0.016384,13.0212,0.059392
+1184,62.3174,16.0469,13.83,0.038816,0.583328,0.006496,0.005504,0.016384,13.1201,0.059392
+1185,63.1242,15.8418,13.7912,0.038048,0.607072,0.00784,0.005568,0.015296,13.058,0.059392
+1186,61.0323,16.3848,13.9305,0.038912,0.759808,0.007232,0.004896,0.016128,13.0441,0.059424
+1187,62.8915,15.9004,13.8489,0.03888,0.616832,0.006144,0.006144,0.016384,13.1052,0.059392
+1188,63.335,15.7891,13.8176,0.038752,0.581216,0.006752,0.005184,0.015264,13.1092,0.061152
+1189,63.2645,15.8066,13.8045,0.036928,0.585664,0.007744,0.0056,0.015424,13.0942,0.058976
+1190,63.6183,15.7188,13.7972,0.038496,0.594336,0.007584,0.004704,0.01632,13.0764,0.059392
+1191,63.4921,15.75,13.7871,0.038912,0.5848,0.007072,0.0056,0.016096,13.0764,0.058208
+1192,63.3193,15.793,13.8036,0.038528,0.601952,0.006784,0.005312,0.01632,13.0765,0.05824
+1193,63.5078,15.7461,13.7835,0.037632,0.62256,0.007296,0.004992,0.016384,13.0355,0.059136
+1194,63.3899,15.7754,13.8017,0.037792,0.57264,0.006944,0.004096,0.016384,13.1045,0.059328
+1195,63.7371,15.6895,13.7587,0.038368,0.565952,0.006176,0.006048,0.016256,13.0662,0.059616
+1196,63.0231,15.8672,13.7851,0.03824,0.582304,0.007744,0.004544,0.016384,13.0765,0.059424
+1197,63.9041,15.6484,13.751,0.037632,0.58576,0.008032,0.0056,0.016128,13.0398,0.058112
+1198,61.288,16.3164,13.8387,0.038752,0.606848,0.00752,0.004736,0.016352,13.1052,0.059264
+1199,64.1283,15.5938,13.783,0.038624,0.577824,0.008096,0.005568,0.01616,13.0787,0.058112
+1200,62.2871,16.0547,13.8281,0.038944,0.608224,0.007424,0.004864,0.01616,13.0932,0.05936
+1201,63.3977,15.7734,13.7791,0.038304,0.592672,0.007456,0.004832,0.016384,13.0601,0.059392
+1202,62.676,15.9551,13.8138,0.038912,0.646816,0.006496,0.005408,0.016256,13.0404,0.059488
+1203,61.1416,16.3555,13.7913,0.038944,0.581632,0.00736,0.004928,0.016384,13.0826,0.059392
+1204,61.2807,16.3184,13.7892,0.038912,0.63488,0.007872,0.004416,0.016384,13.0273,0.05936
+1205,62.7836,15.9277,13.7864,0.038912,0.600064,0.007264,0.005024,0.016384,13.0601,0.058688
+1206,63.1475,15.8359,13.7276,0.038848,0.572768,0.00688,0.004096,0.017408,13.0202,0.067456
+1207,60.7571,16.459,13.7995,0.038944,0.626464,0.006336,0.006144,0.016384,13.0458,0.059424
+1208,63.3585,15.7832,13.7945,0.0384,0.579328,0.006912,0.004096,0.016384,13.0908,0.058592
+1209,63.642,15.7129,13.713,0.038912,0.585728,0.007296,0.004992,0.016384,13.0005,0.0592
+1210,63.4999,15.748,13.7629,0.038592,0.590112,0.006496,0.005664,0.016192,13.0477,0.058144
+1211,57.5475,17.377,13.8077,0.038208,0.623392,0.007456,0.004832,0.016384,13.058,0.059392
+1212,61.472,16.2676,13.7851,0.038816,0.60224,0.007744,0.004512,0.016384,13.0558,0.059584
+1213,60.642,16.4902,13.9138,0.038272,0.751648,0.00704,0.0056,0.016032,13.0345,0.060768
+1214,61.7537,16.1934,13.7717,0.037856,0.616416,0.006208,0.00576,0.016288,13.0298,0.059392
+1215,63.3428,15.7871,13.8218,0.038944,0.616416,0.007264,0.005024,0.016384,13.0785,0.0592
+1216,60.3062,16.582,13.939,0.038656,0.749824,0.006496,0.015488,0.033248,13.0359,0.059392
+1217,62.5764,15.9805,13.738,0.038912,0.559104,0.00784,0.0056,0.015456,13.0517,0.059424
+1218,63.7054,15.6973,13.7057,0.038464,0.55584,0.007264,0.004704,0.016096,13.0239,0.059392
+1219,61.076,16.373,13.7238,0.038944,0.585184,0.006656,0.006112,0.016,13.0131,0.057888
+1220,62.8144,15.9199,13.7068,0.038272,0.555936,0.006208,0.005536,0.01616,13.0257,0.05904
+1221,62.7374,15.9395,13.7667,0.038912,0.57088,0.006656,0.005984,0.016352,13.0703,0.057568
+1222,60.6348,16.4922,13.8422,0.038432,0.6488,0.00704,0.004096,0.016384,13.0683,0.0592
+1223,61.4351,16.2773,13.7293,0.038944,0.575456,0.00736,0.004928,0.016384,13.0273,0.058912
+1224,62.8993,15.8984,13.7278,0.038496,0.562912,0.006944,0.004096,0.016384,13.0411,0.05792
+1225,61.8507,16.168,13.8506,0.03728,0.679584,0.006528,0.006112,0.024544,13.0371,0.059456
+1226,58.5611,17.0762,13.7582,0.038912,0.567296,0.007712,0.004576,0.016384,13.0635,0.059808
+1227,64.048,15.6133,13.7482,0.038464,0.586176,0.007424,0.004864,0.016384,13.0373,0.057632
+1228,60.5917,16.5039,14.0688,0.038912,0.903104,0.006208,0.005728,0.018848,13.0371,0.05888
+1229,61.8358,16.1719,13.7864,0.040992,0.579136,0.00656,0.006112,0.016128,13.0783,0.059136
+1230,62.1888,16.0801,13.7278,0.038688,0.585952,0.00816,0.004128,0.016384,13.0166,0.057856
+1231,62.1812,16.082,13.7675,0.037728,0.63008,0.006848,0.005696,0.016224,13.0116,0.059392
+1232,62.7682,15.9316,13.7475,0.038912,0.595968,0.008192,0.004096,0.016384,13.0232,0.060736
+1233,63.5709,15.7305,13.7626,0.038176,0.575328,0.007136,0.005568,0.029184,13.0479,0.059296
+1234,63.3899,15.7754,13.7974,0.038912,0.608256,0.007968,0.00432,0.016384,13.0636,0.057952
+1235,63.8882,15.6523,13.7954,0.038304,0.591552,0.007072,0.0056,0.01632,13.0781,0.058368
+1236,63.7847,15.6777,13.7856,0.038816,0.626816,0.006688,0.005248,0.016288,13.0338,0.057984
+1237,63.4056,15.7715,13.7833,0.037472,0.631872,0.007104,0.0056,0.01616,13.0256,0.05952
+1238,62.4162,16.0215,13.7889,0.039072,0.64192,0.00704,0.004192,0.016384,13.021,0.059328
+1239,62.8298,15.916,13.738,0.038592,0.581952,0.00736,0.004928,0.0176,13.0282,0.05936
+1240,62.6147,15.9707,13.7564,0.039264,0.593536,0.006848,0.005088,0.015392,13.0372,0.059072
+1241,63.6104,15.7207,13.7339,0.038656,0.577824,0.007808,0.005568,0.016448,13.0293,0.058304
+1242,63.6895,15.7012,13.7421,0.038496,0.602016,0.006752,0.005184,0.016448,13.0139,0.059392
+1243,63.2333,15.8145,13.8208,0.038912,0.630752,0.00704,0.00592,0.016192,13.0626,0.059392
+1244,61.657,16.2188,13.8568,0.038528,0.665504,0.006624,0.005344,0.015168,13.066,0.059648
+1245,63.8802,15.6543,13.7968,0.038528,0.60192,0.006752,0.00592,0.016128,13.0683,0.059264
+1246,62.2492,16.0645,13.8361,0.038592,0.629056,0.006208,0.005792,0.016192,13.0807,0.05952
+1247,63.8006,15.6738,13.7503,0.038944,0.577504,0.007296,0.004992,0.016384,13.0458,0.059424
+1248,63.3977,15.7734,13.8284,0.051488,0.615872,0.00672,0.005312,0.015168,13.0745,0.05936
+1249,62.4695,16.0078,13.7634,0.037696,0.585728,0.00736,0.004928,0.016384,13.0533,0.057984
+1250,62.0907,16.1055,13.7557,0.038464,0.59024,0.006176,0.005824,0.016064,13.0401,0.058848
+1251,61.1708,16.3477,13.7134,0.038144,0.564992,0.007072,0.0056,0.016256,13.022,0.059392
+1252,61.8881,16.1582,13.7381,0.03888,0.572608,0.007008,0.004096,0.016384,13.0396,0.059456
+1253,63.8086,15.6719,13.695,0.038464,0.557504,0.007552,0.004736,0.016384,13.0121,0.05824
+1254,62.219,16.0723,13.779,0.038528,0.593984,0.006528,0.005504,0.016192,13.0589,0.059392
+1255,60.7139,16.4707,13.932,0.038912,0.690176,0.007552,0.016384,0.016608,13.1034,0.058912
+1256,61.3321,16.3047,13.8881,0.038944,0.655936,0.006208,0.005728,0.016256,13.1056,0.059392
+1257,62.5305,15.9922,13.7743,0.038784,0.600192,0.00768,0.004608,0.016384,13.0478,0.058816
+1258,62.3098,16.0488,13.8354,0.038944,0.636896,0.007264,0.004864,0.016416,13.0705,0.060544
+1259,62.4086,16.0234,13.8977,0.038944,0.73024,0.0248,0.005984,0.016416,13.022,0.059392
+1260,64.016,15.6211,13.6849,0.038624,0.573888,0.007584,0.004672,0.016256,12.9855,0.058368
+1261,61.9555,16.1406,13.7931,0.038432,0.60672,0.006624,0.006144,0.016192,13.0602,0.058752
+1262,61.9255,16.1484,13.7508,0.037536,0.598016,0.007904,0.004384,0.016448,13.0264,0.060096
+1263,63.0309,15.8652,13.7843,0.038848,0.589088,0.006944,0.005792,0.016096,13.0685,0.058976
+1264,63.6974,15.6992,13.7031,0.03776,0.57072,0.006816,0.00512,0.015392,13.0068,0.060448
+1265,64.2974,15.5527,13.7646,0.038048,0.59888,0.018432,0.006144,0.016096,13.0276,0.059424
+1266,63.2567,15.8086,13.751,0.037824,0.583456,0.007712,0.004576,0.016384,13.0416,0.059488
+1267,61.963,16.1387,13.7697,0.037824,0.625728,0.007072,0.0056,0.016608,13.0187,0.058112
+1268,60.1151,16.6348,13.781,0.038912,0.677152,0.00688,0.004096,0.017952,12.9778,0.058208
+1269,61.3468,16.3008,13.7298,0.038912,0.617952,0.006688,0.005952,0.016128,12.9864,0.057824
+1270,59.383,16.8398,13.9796,0.038944,0.813024,0.00736,0.004864,0.016288,13.0398,0.059392
+1271,62.008,16.127,13.8612,0.0384,0.682784,0.006176,0.006144,0.016384,13.0531,0.058176
+1272,60.207,16.6094,13.9508,0.038944,0.812768,0.007072,0.00416,0.016384,13.0122,0.059232
+1273,60.7787,16.4531,13.7933,0.0384,0.62896,0.006432,0.006144,0.016128,13.0378,0.059392
+1274,58.8573,16.9902,13.7632,0.037792,0.625824,0.007008,0.004096,0.016384,13.0126,0.05952
+1275,60.0868,16.6426,13.8556,0.037728,0.65328,0.007712,0.004576,0.016416,13.0782,0.0576
+1276,57.9055,17.2695,14.0016,0.038624,0.911584,0.007552,0.004832,0.01616,12.9637,0.059136
+1277,48.8037,20.4902,13.9715,0.038848,0.789888,0.00688,0.00576,0.016064,13.0567,0.057344
+1278,59.027,16.9414,13.8131,0.038464,0.612992,0.007808,0.00448,0.01632,13.0738,0.059168
+1279,59.3073,16.8613,13.9173,0.038944,0.778112,0.00624,0.006144,0.016384,13.0121,0.05936
+1280,60.3774,16.5625,13.7706,0.038912,0.62672,0.007936,0.00432,0.016384,13.017,0.059328
+1281,61.3762,16.293,13.8037,0.038624,0.62512,0.007456,0.004832,0.016384,13.0519,0.059392
+1282,59.6389,16.7676,13.8661,0.03888,0.690208,0.007968,0.00432,0.016384,13.049,0.059392
+1283,62.3706,16.0332,13.7422,0.038784,0.613152,0.007808,0.005568,0.016352,13.001,0.059552
+1284,61.4646,16.2695,13.7954,0.038912,0.618496,0.00752,0.004768,0.016384,13.0514,0.05792
+1285,60.7643,16.457,13.8264,0.037184,0.681984,0.008064,0.0056,0.015008,13.0191,0.059392
+1286,63.2177,15.8184,13.7523,0.03872,0.574752,0.007072,0.004096,0.016384,13.0519,0.059392
+1287,63.6262,15.7168,13.714,0.03872,0.579552,0.007008,0.005856,0.016192,13.0071,0.059648
+1288,61.0979,16.3672,13.8392,0.037728,0.649216,0.007392,0.004864,0.016416,13.0642,0.059392
+1289,63.0154,15.8691,13.7849,0.03856,0.580256,0.008032,0.0056,0.016224,13.0753,0.060896
+1290,63.984,15.6289,13.7482,0.038752,0.595744,0.006528,0.005408,0.016128,13.0276,0.05808
+1291,62.4086,16.0234,13.7622,0.038144,0.592288,0.00656,0.006144,0.016256,13.0431,0.059776
+1292,61.5533,16.2461,13.7993,0.038912,0.636032,0.00704,0.004096,0.016416,13.0372,0.059552
+1293,62.9302,15.8906,13.7351,0.038496,0.584096,0.007264,0.005056,0.016352,13.0247,0.059136
+1294,62.9689,15.8809,13.8258,0.038496,0.639392,0.008,0.004288,0.016384,13.0596,0.059616
+1295,64.3055,15.5508,13.7463,0.037856,0.62448,0.008192,0.005632,0.016128,12.9953,0.05872
+1296,63.0154,15.8691,13.7702,0.038912,0.585728,0.007392,0.004864,0.016128,13.0583,0.058816
+1297,62.7759,15.9297,13.7976,0.038944,0.617472,0.007136,0.005696,0.016128,13.0536,0.05856
+1298,62.0907,16.1055,13.8298,0.038432,0.635392,0.007296,0.004864,0.016352,13.0684,0.059008
+1299,62.2265,16.0703,13.8192,0.038528,0.645632,0.007328,0.00496,0.016384,13.0469,0.059424
+1300,61.076,16.373,13.7575,0.038496,0.594336,0.007808,0.00448,0.016384,13.0366,0.059456
+1301,64.3378,15.543,13.7854,0.037632,0.614336,0.006208,0.006144,0.016384,13.0456,0.059104
+1302,62.3402,16.041,13.8434,0.038848,0.65552,0.007008,0.004096,0.016384,13.0621,0.059392
+1303,63.1787,15.8281,13.771,0.038688,0.593728,0.006816,0.005856,0.016352,13.0502,0.059392
+1304,63.2411,15.8125,13.7339,0.038912,0.575488,0.006144,0.005792,0.016192,13.032,0.059392
+1305,63.4213,15.7676,13.7444,0.038208,0.592288,0.006688,0.005952,0.01616,13.0268,0.058336
+1306,62.2947,16.0527,13.744,0.03856,0.581856,0.006304,0.005664,0.016352,13.036,0.0592
+1307,64.3863,15.5312,13.7849,0.038656,0.571904,0.007392,0.004896,0.016384,13.0867,0.058976
+1308,63.3899,15.7754,13.764,0.038688,0.57472,0.007136,0.004096,0.016384,13.0621,0.060864
+1309,63.2958,15.7988,13.8124,0.037664,0.618304,0.006176,0.006112,0.016384,13.0683,0.059424
+1310,63.1943,15.8242,13.7367,0.038752,0.576224,0.006304,0.005632,0.016096,13.0343,0.059424
+1311,64.2812,15.5566,13.7087,0.038048,0.588672,0.006208,0.00608,0.016384,12.9944,0.058912
+1312,61.7463,16.1953,13.9806,0.037792,0.783584,0.006944,0.004096,0.017472,13.0713,0.059392
+1313,62.3023,16.0508,13.7769,0.038912,0.589344,0.006656,0.00608,0.016096,13.0604,0.059392
+1314,63.4685,15.7559,13.7741,0.03824,0.566048,0.007424,0.004864,0.01616,13.0808,0.060544
+1315,60.5201,16.5234,13.818,0.038112,0.6864,0.00672,0.006048,0.016128,13.0052,0.059392
+1316,61.5385,16.25,13.775,0.038912,0.622624,0.007584,0.004672,0.016384,13.0264,0.058464
+1317,63.4999,15.748,13.7442,0.038528,0.577376,0.006688,0.006048,0.01616,13.0401,0.059296
+1318,61.918,16.1504,13.822,0.038656,0.653568,0.00816,0.004128,0.016384,13.0417,0.059392
+1319,63.3742,15.7793,13.8056,0.038208,0.616992,0.006304,0.006144,0.016416,13.0633,0.05824
+1320,64.024,15.6191,13.7471,0.037792,0.585728,0.007968,0.00432,0.016384,13.0365,0.0584
+1321,62.4695,16.0078,13.7759,0.038912,0.609728,0.00672,0.00592,0.016256,13.0396,0.058784
+1322,63.3193,15.793,13.77,0.037024,0.614432,0.007872,0.004384,0.016416,13.0293,0.060544
+1323,63.6104,15.7207,13.7506,0.038592,0.619168,0.007392,0.015136,0.016384,12.9946,0.05936
+1324,63.8723,15.6562,13.7076,0.0376,0.602112,0.00624,0.005824,0.016224,12.9799,0.059744
+1325,64.0881,15.6035,13.7395,0.038912,0.57344,0.007712,0.004576,0.016416,13.0396,0.058816
+1326,62.038,16.1191,13.8297,0.038912,0.679936,0.007872,0.004416,0.016416,13.0232,0.058976
+1327,63.984,15.6289,13.778,0.038752,0.620128,0.006752,0.005952,0.016224,13.0314,0.05872
+1328,64.056,15.6113,13.7104,0.038912,0.581088,0.006688,0.00528,0.016352,13.0027,0.059392
+1329,64.056,15.6113,13.7032,0.038912,0.569344,0.008,0.0056,0.015168,13.0068,0.059424
+1330,62.8452,15.9121,13.7462,0.038816,0.608288,0.006432,0.005504,0.016192,13.0116,0.059424
+1331,62.9302,15.8906,13.6986,0.03856,0.573536,0.006912,0.00576,0.016256,12.9971,0.060448
+1332,63.6658,15.707,13.6872,0.038368,0.596544,0.00656,0.005376,0.016224,12.9648,0.059392
+1333,64.1765,15.582,13.7503,0.038752,0.587104,0.006976,0.005696,0.016096,13.0363,0.05936
+1334,61.8432,16.1699,13.8288,0.037536,0.60784,0.00656,0.005472,0.016192,13.0958,0.059392
+1335,63.8643,15.6582,13.7787,0.038656,0.618048,0.006848,0.005824,0.016096,13.0338,0.059424
+1336,63.4056,15.7715,13.7559,0.038304,0.599008,0.007904,0.004384,0.016384,13.0305,0.059424
+1337,63.8006,15.6738,13.7735,0.038752,0.586592,0.00624,0.006144,0.016416,13.0601,0.059296
+1338,63.976,15.6309,13.7117,0.037248,0.571424,0.00736,0.004864,0.016288,13.0152,0.059392
+1339,62.9611,15.8828,13.8097,0.0376,0.642944,0.006144,0.006144,0.016384,13.0414,0.059104
+1340,62.1586,16.0879,13.781,0.038912,0.640256,0.006912,0.005152,0.015328,13.015,0.059424
+1341,63.1164,15.8438,13.7377,0.038912,0.59344,0.006624,0.006016,0.016192,13.0174,0.059104
+1342,63.0464,15.8613,13.7718,0.037888,0.572736,0.006848,0.005184,0.015424,13.0755,0.058208
+1343,63.4842,15.752,13.7207,0.038432,0.578048,0.007328,0.004928,0.028384,13.0051,0.058464
+1344,63.5472,15.7363,13.7728,0.0384,0.617344,0.007264,0.004864,0.016224,13.0297,0.059008
+1345,60.2495,16.5977,13.7239,0.038784,0.60656,0.00768,0.004608,0.016384,12.9905,0.059392
+1346,62.2644,16.0605,13.8002,0.037632,0.620544,0.007264,0.004864,0.016192,13.0554,0.058304
+1347,63.2645,15.8066,13.7933,0.038944,0.638848,0.00624,0.006144,0.016384,13.0273,0.059392
+1348,57.3862,17.4258,13.7284,0.037472,0.58528,0.006592,0.005344,0.015136,13.0191,0.059392
+1349,64.0881,15.6035,13.7527,0.037664,0.568384,0.007136,0.005824,0.016256,13.0583,0.059072
+1350,62.3402,16.041,13.8623,0.038912,0.671776,0.00768,0.004576,0.016384,13.0642,0.058816
+1351,62.2265,16.0703,13.7472,0.038624,0.603648,0.006944,0.005696,0.016192,13.0171,0.059008
+1352,61.9705,16.1367,13.7519,0.038304,0.617056,0.00784,0.004448,0.016416,13.0086,0.059232
+1353,62.9302,15.8906,13.7298,0.038912,0.56512,0.007488,0.004928,0.016384,13.0376,0.059392
+1354,61.9555,16.1406,13.7127,0.03888,0.602144,0.00752,0.004768,0.016256,12.9836,0.059488
+1355,63.7371,15.6895,13.7448,0.037824,0.62464,0.007296,0.004992,0.016384,12.9946,0.059104
+1356,62.799,15.9238,13.7631,0.038816,0.64368,0.007296,0.004896,0.016128,12.9947,0.057568
+1357,63.1397,15.8379,13.8484,0.038752,0.66752,0.006432,0.006144,0.016096,13.054,0.059456
+1358,61.8656,16.1641,13.7503,0.038912,0.582688,0.00704,0.004192,0.016384,13.0417,0.059392
+1359,63.5788,15.7285,13.7747,0.03888,0.60048,0.00752,0.004768,0.016384,13.0474,0.059328
+1360,63.5551,15.7344,13.8342,0.038912,0.598016,0.00624,0.00576,0.016704,13.1107,0.05792
+1361,63.0154,15.8691,13.7864,0.03888,0.617984,0.006688,0.006144,0.01616,13.0414,0.059168
+1362,63.335,15.7891,13.783,0.038368,0.609824,0.007072,0.004192,0.016384,13.0478,0.059392
+1363,63.6816,15.7031,13.7577,0.038944,0.59184,0.007328,0.00496,0.016384,13.0388,0.05936
+1364,62.0982,16.1035,13.7933,0.038912,0.64224,0.006976,0.004096,0.016384,13.0253,0.059392
+1365,63.3663,15.7812,13.781,0.038336,0.627264,0.00752,0.004768,0.016384,13.0273,0.059392
+1366,63.642,15.7129,13.8195,0.038208,0.62288,0.006752,0.005344,0.016384,13.0709,0.05904
+1367,62.4314,16.0176,13.7548,0.037216,0.632832,0.00752,0.004768,0.016384,12.9966,0.059456
+1368,62.8993,15.8984,13.7722,0.038656,0.618752,0.007808,0.00448,0.016384,13.0271,0.05904
+1369,62.023,16.123,13.7866,0.038912,0.610304,0.007872,0.0056,0.0152,13.0496,0.059136
+1370,64.2812,15.5566,13.6952,0.037664,0.576512,0.007136,0.004096,0.016384,12.9941,0.059296
+1371,63.1787,15.8281,13.7485,0.037472,0.587776,0.007872,0.005568,0.015424,13.0353,0.059104
+1372,62.9844,15.877,13.7924,0.038912,0.608256,0.007488,0.0048,0.017824,13.056,0.059168
+1373,64.2087,15.5742,13.7222,0.038528,0.57808,0.006592,0.006144,0.016064,13.0174,0.059392
+1374,62.8606,15.9082,13.7298,0.038944,0.591712,0.006304,0.005696,0.016064,13.0117,0.059392
+1375,62.6223,15.9688,13.7421,0.038976,0.60416,0.006208,0.00608,0.018016,13.0113,0.057408
+1376,63.4291,15.7656,13.7667,0.038944,0.591456,0.006528,0.005344,0.016288,13.0487,0.059392
+1377,63.8484,15.6621,13.7997,0.037248,0.610176,0.006464,0.006144,0.016192,13.0644,0.059104
+1378,62.799,15.9238,13.8532,0.037984,0.694112,0.007392,0.004864,0.016096,13.0338,0.058944
+1379,63.1008,15.8477,13.7646,0.038944,0.620512,0.007616,0.004672,0.016384,13.0171,0.059392
+1380,63.4685,15.7559,13.7237,0.038624,0.579392,0.006624,0.005312,0.0152,13.0206,0.057952
+1381,59.2593,16.875,13.7159,0.038752,0.604224,0.00672,0.005824,0.016064,12.985,0.059392
+1382,62.4238,16.0195,13.7257,0.038944,0.585696,0.007904,0.004384,0.016384,13.013,0.059392
+1383,62.1359,16.0938,13.7196,0.038912,0.601664,0.006592,0.005952,0.01616,12.9909,0.059392
+1384,62.653,15.9609,13.7673,0.038688,0.600928,0.007712,0.004576,0.016384,13.0407,0.058336
+1385,63.5709,15.7305,13.779,0.038528,0.604224,0.006464,0.006144,0.01616,13.0499,0.057536
+1386,63.8643,15.6582,13.7216,0.038304,0.578144,0.007456,0.004832,0.01616,13.0173,0.059392
+1387,63.3193,15.793,13.8161,0.038528,0.656,0.007264,0.005024,0.016384,13.0348,0.058016
+1388,63.6578,15.709,13.7416,0.038272,0.602656,0.00624,0.005856,0.016288,13.0134,0.058944
+1389,62.7759,15.9297,13.7216,0.038912,0.579584,0.007712,0.004576,0.016416,13.015,0.05936
+1390,63.0853,15.8516,13.7479,0.038816,0.59472,0.008096,0.004192,0.016384,13.0267,0.059008
+1391,63.6499,15.7109,13.8448,0.0392,0.679232,0.006848,0.015584,0.016544,13.0291,0.058304
+1392,59.9181,16.6895,13.7761,0.038944,0.591424,0.006592,0.005344,0.016128,13.0587,0.05904
+1393,63.6895,15.7012,13.7783,0.038912,0.570976,0.00656,0.006112,0.01616,13.0808,0.058784
+1394,62.9302,15.8906,13.7341,0.0376,0.607808,0.006592,0.005376,0.016224,13.0016,0.058912
+1395,63.3585,15.7832,13.7567,0.037472,0.612256,0.007488,0.0048,0.016384,13.0191,0.059136
+1396,60.5845,16.5059,13.937,0.037184,0.776192,0.00768,0.004608,0.016384,13.0355,0.059392
+1397,64.1363,15.5918,13.8029,0.038112,0.57424,0.0072,0.005088,0.016384,13.0901,0.071808
+1398,63.288,15.8008,13.7519,0.038912,0.572512,0.007072,0.004096,0.016384,13.0534,0.05952
+1399,62.5305,15.9922,13.7517,0.038912,0.589824,0.006144,0.006048,0.01616,13.0358,0.058752
+1400,63.1164,15.8438,13.8342,0.038912,0.589824,0.007904,0.01456,0.016448,13.1072,0.059392
+1401,63.1242,15.8418,13.7334,0.038912,0.580704,0.00704,0.005568,0.016384,13.0259,0.058912
+1402,63.3663,15.7812,13.8682,0.038432,0.7152,0.006176,0.005824,0.01616,13.0258,0.060576
+1403,62.9999,15.873,13.7298,0.038816,0.577632,0.007904,0.0056,0.016192,13.0243,0.059392
+1404,63.4527,15.7598,13.7257,0.038368,0.577952,0.006272,0.005664,0.016192,13.0219,0.059392
+1405,62.0456,16.1172,13.7871,0.037632,0.63488,0.007456,0.004832,0.026624,13.0163,0.059392
+1406,62.4238,16.0195,13.8367,0.037664,0.64512,0.007232,0.004896,0.01616,13.0646,0.061056
+1407,64.7446,15.4453,13.7359,0.03888,0.593984,0.00816,0.005792,0.016064,13.0138,0.059264
+1408,63.4134,15.7695,13.7114,0.038912,0.579392,0.00736,0.004864,0.016192,13.0064,0.058208
+1409,62.4771,16.0059,13.7706,0.038464,0.596256,0.006304,0.006144,0.01632,13.0477,0.059424
+1410,62.0456,16.1172,13.7687,0.038624,0.612608,0.006176,0.00576,0.016192,13.03,0.059392
+1411,63.8404,15.6641,13.7923,0.038912,0.610272,0.006176,0.006144,0.016384,13.054,0.060448
+1412,63.1631,15.832,13.8218,0.038944,0.683744,0.006432,0.005472,0.016192,13.0118,0.0592
+1413,62.5687,15.9824,13.7524,0.038912,0.58288,0.006944,0.005824,0.01616,13.0422,0.059424
+1414,63.6974,15.6992,13.7099,0.038688,0.576128,0.006336,0.005696,0.016256,13.0085,0.058272
+1415,63.0076,15.8711,13.701,0.036768,0.582016,0.0064,0.006144,0.016224,12.9947,0.058752
+1416,62.3858,16.0293,13.7379,0.03856,0.591936,0.006688,0.005344,0.015168,13.0212,0.05904
+1417,63.2411,15.8125,13.7977,0.0392,0.645152,0.007264,0.005024,0.016352,13.0253,0.059392
+1418,61.791,16.1836,13.7892,0.038912,0.612128,0.006432,0.005792,0.016064,13.0505,0.05936
+1419,63.5788,15.7285,13.7692,0.037568,0.603776,0.006528,0.006112,0.016192,13.0398,0.059136
+1420,61.025,16.3867,13.764,0.038624,0.625312,0.006208,0.005792,0.016,13.0137,0.058432
+1421,62.8684,15.9062,13.7299,0.037696,0.574624,0.00704,0.005632,0.01616,13.0301,0.058624
+1422,63.642,15.7129,13.7607,0.038336,0.615136,0.007584,0.004704,0.01632,13.0209,0.057664
+1423,62.4086,16.0234,13.8138,0.038656,0.63104,0.006144,0.006048,0.016064,13.0576,0.058176
+1424,59.6042,16.7773,13.7954,0.038944,0.613888,0.006624,0.005216,0.015264,13.0573,0.05808
+1425,64.0881,15.6035,13.7014,0.038912,0.582624,0.007456,0.004832,0.016384,12.9918,0.059424
+1426,63.5236,15.7422,13.7692,0.03888,0.593472,0.007136,0.004096,0.016384,13.0512,0.058112
+1427,63.0309,15.8652,13.7157,0.038784,0.584096,0.008032,0.0056,0.016224,13.0036,0.059392
+1428,63.2099,15.8203,13.8301,0.038432,0.653472,0.006464,0.00544,0.016256,13.0507,0.059392
+1429,62.4086,16.0234,13.7078,0.0384,0.582592,0.006176,0.006144,0.016352,13.0002,0.057952
+1430,60.9306,16.4121,13.8675,0.03872,0.661696,0.00672,0.005888,0.016064,13.0791,0.059328
+1431,62.401,16.0254,13.7298,0.038944,0.595936,0.006176,0.006112,0.016384,13.0084,0.057824
+1432,62.4162,16.0215,13.769,0.038624,0.57136,0.006784,0.005152,0.01536,13.0724,0.059392
+1433,62.8684,15.9062,13.7912,0.038944,0.593184,0.00688,0.00576,0.016224,13.0722,0.058048
+1434,63.288,15.8008,13.7309,0.038912,0.581632,0.007264,0.004832,0.016128,13.0237,0.058432
+1435,62.5458,15.9883,13.829,0.038848,0.625504,0.00624,0.006144,0.016352,13.0776,0.058304
+1436,63.952,15.6367,13.7656,0.037856,0.600064,0.007584,0.004704,0.016288,13.0397,0.059392
+1437,63.2255,15.8164,13.7373,0.038624,0.58176,0.006304,0.006144,0.016384,13.0294,0.058688
+1438,63.8643,15.6582,13.7542,0.038528,0.627072,0.006144,0.005312,0.0152,13.0027,0.059264
+1439,64.2732,15.5586,13.6969,0.038496,0.567712,0.007424,0.004864,0.016384,13.0028,0.059296
+1440,62.2644,16.0605,13.7298,0.03888,0.598048,0.008064,0.004224,0.016384,13.0058,0.058368
+1441,62.0531,16.1152,13.886,0.038752,0.665312,0.017312,0.006144,0.016352,13.0827,0.059424
+1442,64.4512,15.5156,13.7112,0.038656,0.557472,0.006688,0.005344,0.015168,13.0293,0.058496
+1443,64.2328,15.5684,13.7518,0.037888,0.584704,0.007872,0.005568,0.016896,13.04,0.058912
+1444,61.2953,16.3145,13.7576,0.038304,0.59632,0.006496,0.005472,0.016256,13.036,0.058688
+1445,64.0641,15.6094,13.7171,0.038752,0.56336,0.007968,0.0056,0.016288,13.0261,0.058944
+1446,63.3977,15.7734,13.6944,0.038912,0.575488,0.008,0.004288,0.016384,12.9925,0.058848
+1447,62.0982,16.1035,13.7525,0.038208,0.592768,0.007904,0.005568,0.0152,13.0332,0.05968
+1448,63.1553,15.834,13.691,0.0376,0.570912,0.007712,0.004736,0.015968,12.9948,0.059232
+1449,63.6262,15.7168,13.6708,0.03888,0.54928,0.007456,0.004832,0.016384,12.9946,0.059392
+1450,65.0076,15.3828,13.7073,0.038368,0.576512,0.007424,0.004864,0.016256,13.0047,0.059136
+1451,61.1928,16.3418,13.7449,0.037696,0.575648,0.006144,0.006144,0.016384,13.0437,0.059168
+1452,63.6658,15.707,13.7711,0.037792,0.583584,0.007456,0.004832,0.016288,13.0617,0.059488
+1453,63.8006,15.6738,13.7631,0.037408,0.570752,0.006784,0.005856,0.016096,13.0668,0.059392
+1454,63.5157,15.7441,13.7298,0.038912,0.566976,0.006464,0.005632,0.016064,13.0362,0.05952
+1455,63.2802,15.8027,13.6828,0.0384,0.566912,0.007104,0.0056,0.016096,12.9892,0.059392
+1456,61.8208,16.1758,13.7399,0.038912,0.576768,0.006944,0.004064,0.016384,13.0376,0.059264
+1457,64.3297,15.5449,13.7593,0.037728,0.56496,0.006432,0.006144,0.016256,13.0684,0.059392
+1458,62.7682,15.9316,13.738,0.038944,0.591744,0.00624,0.005792,0.016032,13.0195,0.059744
+1459,62.2795,16.0566,13.7995,0.038912,0.600064,0.008096,0.0056,0.016128,13.0712,0.059424
+1460,64.2167,15.5723,13.7157,0.03776,0.577536,0.007936,0.004352,0.016384,13.0126,0.059168
+1461,61.5607,16.2441,13.7087,0.038944,0.5816,0.007392,0.004896,0.016384,13,0.059456
+1462,59.383,16.8398,13.7612,0.037632,0.595904,0.008064,0.004224,0.016384,13.0396,0.059392
+1463,63.2645,15.8066,13.7667,0.03904,0.572992,0.006464,0.006016,0.01616,13.0666,0.059424
+1464,62.008,16.127,13.7479,0.038912,0.557056,0.008032,0.004256,0.016384,13.0642,0.059072
+1465,62.6147,15.9707,13.7924,0.038176,0.613216,0.006208,0.006144,0.016384,13.0535,0.058784
+1466,65.2645,15.3223,13.6989,0.0384,0.553344,0.0064,0.00592,0.016064,13.0197,0.059136
+1467,63.8006,15.6738,13.7236,0.03888,0.568992,0.006528,0.006112,0.016416,13.0287,0.058048
+1468,62.5,16,13.7556,0.038944,0.569312,0.007264,0.004896,0.016256,13.0597,0.059232
+1469,64.4674,15.5117,13.7715,0.037376,0.55728,0.007872,0.005568,0.015232,13.0905,0.057728
+1470,64.04,15.6152,13.7524,0.044384,0.578208,0.00784,0.004448,0.016384,13.0417,0.059424
+1471,63.9201,15.6445,13.7076,0.037376,0.59008,0.00736,0.004864,0.016224,12.9927,0.058944
+1472,62.9457,15.8867,13.823,0.038432,0.586208,0.00784,0.004448,0.016384,13.1104,0.059264
+1473,64.3944,15.5293,13.7043,0.038944,0.554976,0.007936,0.0056,0.026688,13.0117,0.058464
+1474,63.8962,15.6504,13.7884,0.03792,0.594464,0.006592,0.005344,0.015264,13.0694,0.05936
+1475,63.984,15.6289,13.7527,0.037248,0.589312,0.006656,0.00608,0.016224,13.0389,0.058272
+1476,61.266,16.3223,13.7778,0.03776,0.576864,0.006784,0.005408,0.016416,13.0768,0.057696
+1477,64.2248,15.5703,13.7322,0.036736,0.594112,0.006464,0.006144,0.016224,13.0132,0.059392
+1478,63.1242,15.8418,13.8068,0.040448,0.599968,0.006752,0.00544,0.016256,13.079,0.058944
+1479,61.4056,16.2852,13.8595,0.0376,0.652992,0.006496,0.006112,0.016192,13.0804,0.059648
+1480,62.4314,16.0176,13.7421,0.038592,0.589728,0.00656,0.005408,0.016256,13.0261,0.059392
+1481,64.1202,15.5957,13.6888,0.038912,0.548192,0.006816,0.00592,0.016224,13.0134,0.05936
+1482,61.963,16.1387,13.7764,0.038752,0.684608,0.019744,0.004832,0.01616,12.9534,0.058976
+1483,62.4162,16.0215,13.74,0.038272,0.561024,0.006912,0.00576,0.016192,13.0525,0.059392
+1484,63.3507,15.7852,13.7554,0.037888,0.591808,0.006208,0.00576,0.016288,13.038,0.059424
+1485,62.2039,16.0762,13.7886,0.038944,0.569312,0.006272,0.006016,0.016384,13.0929,0.058784
+1486,62.6683,15.957,13.7749,0.038912,0.59968,0.006528,0.005472,0.016096,13.0499,0.058304
+1487,64.0641,15.6094,13.719,0.038656,0.553216,0.007456,0.004832,0.016384,13.0393,0.0592
+1488,63.2724,15.8047,13.7562,0.038464,0.6,0.00704,0.00416,0.016384,13.0294,0.060768
+1489,63.9361,15.6406,13.7375,0.03888,0.554016,0.00704,0.0056,0.016128,13.0569,0.058944
+1490,62.363,16.0352,13.7646,0.038528,0.58,0.007424,0.004832,0.01632,13.0581,0.059392
+1491,63.3663,15.7812,13.7658,0.038464,0.585536,0.006784,0.005856,0.016256,13.054,0.058912
+1492,62.3934,16.0273,13.9864,0.03744,0.78176,0.00672,0.016256,0.032896,13.0519,0.059392
+1493,62.3782,16.0312,13.7878,0.037568,0.669696,0.007936,0.005568,0.016288,12.9914,0.059392
+1494,55.5797,17.9922,13.8916,0.038208,0.714848,0.01888,0.005312,0.015328,13.0408,0.05824
+1495,56.1588,17.8066,13.7665,0.03856,0.600288,0.006272,0.006144,0.016384,13.0393,0.05952
+1496,62.2265,16.0703,13.7324,0.038528,0.566272,0.008,0.004256,0.016384,13.0396,0.059392
+1497,63.1553,15.834,13.7509,0.037824,0.628256,0.006528,0.006144,0.016192,12.9968,0.059168
+1498,59.6876,16.7539,13.6733,0.03792,0.57056,0.006944,0.004096,0.016416,12.9781,0.0592
+1499,64.9252,15.4023,13.6761,0.038048,0.576352,0.007296,0.004992,0.016384,12.9739,0.059168
+1500,61.288,16.3164,13.7586,0.037728,0.585728,0.007296,0.004992,0.016384,13.047,0.059456
+1501,63.6025,15.7227,13.7478,0.038912,0.609504,0.00656,0.005568,0.015424,13.0125,0.059328
+1502,62.584,15.9785,13.7482,0.038656,0.606432,0.006176,0.005728,0.016256,13.0167,0.058272
+1503,63.8563,15.6602,13.7576,0.038688,0.616384,0.006432,0.006144,0.016384,13.013,0.060576
+1504,64.5975,15.4805,13.6615,0.038912,0.560544,0.006752,0.005216,0.015264,12.9755,0.059328
+1505,64.1926,15.5781,13.7352,0.038912,0.599488,0.00672,0.00592,0.016128,13.0093,0.058688
+1506,63.7688,15.6816,13.7274,0.037056,0.57264,0.006944,0.004096,0.016384,13.0306,0.05968
+1507,64.1042,15.5996,13.7325,0.036896,0.590464,0.007968,0.0056,0.016288,13.0172,0.05808
+1508,63.5867,15.7266,13.7481,0.03776,0.552608,0.006496,0.005312,0.016416,13.0691,0.060416
+1509,62.0155,16.125,13.7177,0.038944,0.575808,0.006144,0.006144,0.016384,13.015,0.059264
+1510,62.1133,16.0996,13.7085,0.038912,0.550592,0.006464,0.005632,0.016192,13.0321,0.058592
+1511,63.8643,15.6582,13.8176,0.038912,0.661536,0.007648,0.004608,0.016448,13.0293,0.059136
+1512,61.266,16.3223,13.8588,0.044128,0.66432,0.006304,0.005632,0.016288,13.0626,0.059552
+1513,62.8761,15.9043,13.8014,0.038944,0.589792,0.0072,0.005088,0.016384,13.0847,0.05936
+1514,63.2724,15.8047,13.6581,0.038944,0.557024,0.00736,0.004864,0.016288,12.9742,0.059392
+1515,60.5272,16.5215,13.9177,0.038912,0.75776,0.008192,0.005632,0.016256,13.0313,0.059648
+1516,62.9457,15.8867,13.7159,0.037824,0.593888,0.007584,0.004704,0.016384,12.9966,0.05888
+1517,64.4755,15.5098,13.7001,0.03776,0.591968,0.007328,0.00496,0.016384,12.9823,0.05936
+1518,58.4275,17.1152,13.7564,0.037376,0.585728,0.007936,0.004352,0.016384,13.0458,0.058912
+1519,63.6737,15.7051,13.7134,0.038912,0.572768,0.006848,0.005792,0.016224,13.0135,0.059392
+1520,63.8723,15.6562,13.7489,0.038944,0.592544,0.007392,0.004864,0.016096,13.0297,0.059328
+1521,62.0757,16.1094,13.7339,0.038944,0.556128,0.00704,0.0056,0.016128,13.0507,0.059392
+1522,62.8298,15.916,13.6915,0.037504,0.559072,0.007616,0.004672,0.016384,13.0068,0.059392
+1523,64.4512,15.5156,13.7384,0.037216,0.557056,0.00784,0.004448,0.016416,13.056,0.059424
+1524,62.5382,15.9902,13.6909,0.038912,0.558944,0.006304,0.005632,0.016256,13.0068,0.058112
+1525,61.413,16.2832,13.7756,0.037152,0.612864,0.007584,0.004672,0.016416,13.0375,0.059456
+1526,62.4086,16.0234,13.7892,0.037568,0.589568,0.0064,0.0056,0.01616,13.0742,0.059744
+1527,63.745,15.6875,13.7708,0.037952,0.601056,0.007008,0.005696,0.016192,13.0444,0.058528
+1528,63.2489,15.8105,13.7056,0.038624,0.548832,0.00688,0.005664,0.016096,13.0312,0.058368
+1529,60.4272,16.5488,13.7216,0.038272,0.549504,0.007424,0.004864,0.016384,13.0469,0.058208
+1530,60.8437,16.4355,13.7214,0.038912,0.579584,0.007904,0.004384,0.016384,13.0148,0.059488
+1531,61.978,16.1348,13.7995,0.03696,0.630016,0.019136,0.005568,0.017024,13.0327,0.05808
+1532,63.1475,15.8359,13.7276,0.038912,0.576736,0.006944,0.004096,0.016384,13.0253,0.059232
+1533,60.5702,16.5098,13.7769,0.038688,0.615776,0.00704,0.0056,0.01632,13.034,0.059488
+1534,63.2567,15.8086,13.82,0.0512,0.649056,0.006304,0.0056,0.016928,13.0325,0.058432
+1535,62.0606,16.1133,13.7888,0.038048,0.645056,0.007072,0.005632,0.016736,13.0172,0.05904
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..385299c
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,460.752,2.20642,0.690551,0.00862938,0.246361,0.00500825,0.00488322,0.00634884,0.0101188,0.011265,0.390046,0.00789141
+max_1024,581.57,3.72314,0.893024,0.024576,0.42624,0.020896,0.015872,0.0184,0.022528,0.024576,0.434208,0.024576
+min_1024,268.59,1.71948,0.640928,0.006464,0.221184,0.004096,0.004064,0.005664,0.008896,0.010208,0.346368,0.00656
+512,395.405,2.52905,0.653312,0.008192,0.237152,0.004544,0.005344,0.00624,0.009984,0.011008,0.363808,0.00704
+513,502.577,1.98975,0.655008,0.008224,0.239232,0.00448,0.005312,0.006272,0.01008,0.011104,0.362432,0.007872
+514,519.369,1.92542,0.646912,0.008672,0.231424,0.005216,0.004864,0.00624,0.01008,0.010496,0.360416,0.009504
+515,476.168,2.1001,0.737312,0.008928,0.296768,0.004544,0.005344,0.006336,0.009856,0.011072,0.386752,0.007712
+516,505.617,1.97778,0.649856,0.00864,0.231616,0.00416,0.005664,0.006304,0.010112,0.010656,0.364544,0.00816
+517,415.247,2.4082,0.768,0.008192,0.357504,0.004992,0.004096,0.006144,0.01024,0.011584,0.357056,0.008192
+518,375.16,2.66553,0.807104,0.008448,0.384064,0.005056,0.004096,0.006144,0.011456,0.011072,0.36864,0.008128
+519,468.195,2.13586,0.666496,0.008512,0.236096,0.00416,0.005664,0.006272,0.010016,0.010752,0.376576,0.008448
+520,555.126,1.80139,0.651136,0.007712,0.233472,0.004768,0.004096,0.007392,0.010144,0.010912,0.364704,0.007936
+521,385.905,2.59131,0.695872,0.008256,0.286464,0.004288,0.005504,0.006272,0.009952,0.01104,0.356192,0.007904
+522,423.71,2.36011,0.673792,0.009408,0.252704,0.00416,0.005664,0.00624,0.01008,0.010752,0.366592,0.008192
+523,480.131,2.08276,0.67584,0.008192,0.241344,0.004416,0.005344,0.006272,0.010208,0.010944,0.380928,0.008192
+524,425.78,2.34863,0.686624,0.008352,0.258048,0.004864,0.004064,0.006144,0.011424,0.01104,0.374848,0.00784
+525,468.275,2.1355,0.670432,0.008608,0.239936,0.00544,0.0048,0.006144,0.01024,0.01136,0.375712,0.008192
+526,539.018,1.85522,0.668288,0.008608,0.231008,0.004736,0.004096,0.007232,0.009152,0.012064,0.3832,0.008192
+527,520.49,1.92126,0.670272,0.0088,0.24368,0.005792,0.004448,0.006176,0.010208,0.01168,0.372512,0.006976
+528,411.348,2.43103,0.661888,0.00832,0.238176,0.004192,0.0056,0.00624,0.009952,0.010816,0.370816,0.007776
+529,455.061,2.19751,0.694592,0.008512,0.263616,0.004672,0.00512,0.006304,0.010624,0.01072,0.376864,0.00816
+530,426.334,2.34558,0.645152,0.008192,0.233472,0.005856,0.004384,0.006144,0.01024,0.011424,0.358496,0.006944
+531,409.477,2.44214,0.660224,0.008608,0.233824,0.005728,0.004512,0.006144,0.01024,0.011328,0.372992,0.006848
+532,524.221,1.90759,0.652096,0.008864,0.228896,0.004672,0.005184,0.00656,0.009984,0.01104,0.36992,0.006976
+533,529.815,1.88745,0.669856,0.008352,0.228512,0.00496,0.005152,0.006272,0.01024,0.01104,0.370752,0.024576
+534,447.797,2.23315,0.669696,0.008192,0.239584,0.004128,0.005632,0.006304,0.010112,0.01072,0.376832,0.008192
+535,496.937,2.01233,0.646944,0.008736,0.237568,0.004288,0.005664,0.006304,0.009952,0.010656,0.355904,0.007872
+536,476.889,2.09692,0.653312,0.009536,0.238304,0.005152,0.004832,0.006304,0.01008,0.010496,0.360416,0.008192
+537,437.677,2.28479,0.712736,0.009376,0.291456,0.00432,0.0056,0.006304,0.010112,0.010752,0.367776,0.00704
+538,427.134,2.34119,0.661696,0.008384,0.239616,0.005632,0.004608,0.006144,0.01024,0.01024,0.36864,0.008192
+539,545.733,1.8324,0.653312,0.009664,0.232,0.005536,0.004704,0.006176,0.01024,0.011808,0.364992,0.008192
+540,509.833,1.96143,0.65536,0.008544,0.237568,0.005568,0.004672,0.006144,0.01024,0.010272,0.364512,0.00784
+541,465.085,2.15015,0.66208,0.008576,0.240928,0.004928,0.004192,0.006176,0.010208,0.011776,0.367136,0.00816
+542,493.911,2.02466,0.657376,0.009248,0.234048,0.004544,0.005216,0.00624,0.010112,0.011168,0.368672,0.008128
+543,471.726,2.11987,0.65104,0.00864,0.237568,0.006048,0.004192,0.006144,0.010272,0.012256,0.358016,0.007904
+544,427.691,2.33813,0.677888,0.008192,0.247552,0.004352,0.005408,0.006304,0.0104,0.010656,0.376832,0.008192
+545,366.894,2.72559,0.680224,0.008736,0.255872,0.004416,0.005408,0.006304,0.009984,0.011072,0.37056,0.007872
+546,508.599,1.96619,0.664096,0.008704,0.2616,0.00496,0.004192,0.006176,0.01024,0.011584,0.3488,0.00784
+547,441.617,2.2644,0.657184,0.00848,0.238944,0.004768,0.004096,0.007296,0.00928,0.011776,0.364608,0.007936
+548,530.227,1.88599,0.657184,0.008192,0.229376,0.005376,0.004832,0.006176,0.01024,0.01152,0.373504,0.007968
+549,549.098,1.82117,0.650944,0.008192,0.23552,0.005408,0.004832,0.006144,0.01024,0.01152,0.361216,0.007872
+550,510.564,1.95862,0.661056,0.008192,0.249216,0.004736,0.004096,0.007456,0.009024,0.012192,0.3584,0.007744
+551,479.401,2.08594,0.653376,0.008256,0.234496,0.004928,0.004288,0.006144,0.01024,0.011744,0.365088,0.008192
+552,479.12,2.08716,0.6472,0.008192,0.238944,0.004768,0.004096,0.007264,0.00912,0.012288,0.354304,0.008224
+553,500.305,1.99878,0.672192,0.009056,0.249952,0.005504,0.004736,0.006144,0.01024,0.010272,0.368448,0.00784
+554,408.864,2.4458,0.651264,0.009536,0.23952,0.004896,0.004096,0.006144,0.010272,0.011872,0.35776,0.007168
+555,529.199,1.88965,0.643648,0.008704,0.228768,0.005024,0.004064,0.007168,0.009216,0.012224,0.360512,0.007968
+556,498.054,2.00781,0.662048,0.008608,0.229376,0.005632,0.004608,0.006176,0.01024,0.0104,0.38,0.007008
+557,475.56,2.10278,0.718304,0.008608,0.307168,0.005344,0.004864,0.006176,0.010016,0.010464,0.357824,0.00784
+558,480.808,2.07983,0.668288,0.008896,0.255456,0.004896,0.004096,0.007776,0.010336,0.01056,0.35824,0.008032
+559,373.263,2.67908,0.694272,0.009952,0.262464,0.00512,0.004864,0.006272,0.010144,0.010432,0.376768,0.008256
+560,483.475,2.06836,0.753536,0.008192,0.331776,0.004256,0.005664,0.006368,0.010176,0.0104,0.36864,0.008064
+561,425.558,2.34985,0.657888,0.008608,0.231488,0.005664,0.004576,0.006144,0.010272,0.012096,0.370848,0.008192
+562,452.322,2.21082,0.681344,0.009408,0.264288,0.004832,0.004096,0.006144,0.01024,0.012192,0.361856,0.008288
+563,446.747,2.2384,0.675328,0.00848,0.241664,0.005408,0.004832,0.006144,0.01024,0.011328,0.379488,0.007744
+564,400.469,2.49707,0.662944,0.008192,0.241664,0.004256,0.005632,0.006272,0.009952,0.010784,0.368256,0.007936
+565,342.905,2.91626,0.65536,0.008192,0.24576,0.005376,0.004864,0.006144,0.01024,0.01152,0.355072,0.008192
+566,492.071,2.03223,0.66,0.00864,0.241376,0.00448,0.005312,0.006176,0.010048,0.011104,0.366016,0.006848
+567,501.346,1.99463,0.65248,0.009312,0.233792,0.004736,0.004064,0.007264,0.009152,0.012064,0.364288,0.007808
+568,531.465,1.88159,0.649728,0.008416,0.249696,0.004544,0.005216,0.00624,0.01008,0.010976,0.346368,0.008192
+569,470.453,2.12561,0.665792,0.008384,0.24736,0.005664,0.004864,0.006272,0.010144,0.010368,0.365888,0.006848
+570,435.467,2.29639,0.651872,0.008192,0.239456,0.004864,0.004096,0.006144,0.010272,0.011872,0.359904,0.007072
+571,487.445,2.05151,0.673952,0.008352,0.242752,0.004992,0.00416,0.006144,0.01024,0.011904,0.377216,0.008192
+572,446.601,2.23914,0.657792,0.008576,0.241216,0.004576,0.005248,0.006272,0.010432,0.010784,0.362496,0.008192
+573,415.711,2.40552,0.667648,0.008192,0.239616,0.005408,0.004832,0.006144,0.010176,0.010336,0.374752,0.008192
+574,518.547,1.92847,0.654304,0.008608,0.237152,0.005088,0.004096,0.006176,0.011488,0.011008,0.362496,0.008192
+575,488.666,2.04639,0.667648,0.009248,0.231936,0.004576,0.005344,0.006848,0.010304,0.011712,0.379488,0.008192
+576,392.563,2.54736,0.655584,0.008224,0.23552,0.004224,0.005568,0.006304,0.009888,0.011008,0.367808,0.00704
+577,517.368,1.93286,0.65536,0.009344,0.238272,0.004288,0.005504,0.00624,0.00992,0.011104,0.363648,0.00704
+578,513.541,1.94727,0.65536,0.008192,0.231424,0.005632,0.004608,0.006144,0.010272,0.011296,0.369632,0.00816
+579,473.91,2.11011,0.695744,0.009536,0.278944,0.004384,0.005504,0.006368,0.00992,0.011008,0.362368,0.007712
+580,466.887,2.14185,0.667648,0.008192,0.249312,0.00464,0.00512,0.006272,0.009088,0.012064,0.364768,0.008192
+581,522.316,1.91455,0.667872,0.008416,0.23552,0.006144,0.004096,0.006144,0.01024,0.011712,0.377408,0.008192
+582,500.061,1.99976,0.66144,0.008192,0.251904,0.005664,0.004576,0.006144,0.010272,0.01168,0.35488,0.008128
+583,395.024,2.53149,0.657376,0.01008,0.24112,0.0048,0.004096,0.0072,0.0104,0.011072,0.360448,0.00816
+584,470.75,2.12427,0.651136,0.009504,0.228032,0.00416,0.005472,0.006304,0.010048,0.010944,0.368608,0.008064
+585,541.727,1.84595,0.69008,0.009536,0.252384,0.00432,0.005472,0.006272,0.009984,0.01104,0.382976,0.008096
+586,398.715,2.50806,0.65536,0.008224,0.241632,0.005248,0.004864,0.006208,0.00992,0.010656,0.360416,0.008192
+587,466.196,2.14502,0.679936,0.008352,0.25168,0.00416,0.005632,0.006304,0.01024,0.010624,0.374752,0.008192
+588,489.191,2.04419,0.667648,0.00832,0.245632,0.004192,0.005632,0.006432,0.010208,0.010464,0.368576,0.008192
+589,376.125,2.65869,0.672256,0.008768,0.253984,0.005728,0.00448,0.006144,0.01024,0.011808,0.362976,0.008128
+590,438.967,2.27808,0.688224,0.0088,0.272096,0.004448,0.005344,0.006272,0.010368,0.010784,0.362304,0.007808
+591,453.8,2.20361,0.669696,0.008192,0.253952,0.004128,0.005664,0.006304,0.010464,0.011872,0.362016,0.007104
+592,364.607,2.74268,0.698528,0.008192,0.282624,0.004256,0.005568,0.006272,0.010208,0.010752,0.362464,0.008192
+593,433.485,2.30688,0.686496,0.008608,0.26464,0.005376,0.004864,0.006144,0.010144,0.010368,0.36848,0.007872
+594,526.343,1.8999,0.679232,0.009568,0.258688,0.004128,0.005664,0.00624,0.010208,0.010656,0.36624,0.00784
+595,369.109,2.70923,0.661504,0.008192,0.244896,0.004896,0.00416,0.006176,0.01024,0.011328,0.364448,0.007168
+596,526.478,1.89941,0.661536,0.00832,0.243584,0.005152,0.004864,0.006272,0.010112,0.010464,0.364544,0.008224
+597,487.968,2.04932,0.672512,0.008768,0.233888,0.006016,0.004224,0.006144,0.01024,0.01184,0.383424,0.007968
+598,394.036,2.53784,0.665152,0.008224,0.244128,0.005248,0.004832,0.006272,0.009952,0.010528,0.368192,0.007776
+599,488.142,2.04858,0.671712,0.008512,0.235104,0.004512,0.00528,0.006272,0.010048,0.010944,0.3832,0.00784
+600,459.141,2.17798,0.64256,0.008224,0.227648,0.005376,0.004832,0.006208,0.01024,0.011424,0.3608,0.007808
+601,436.069,2.29321,0.765248,0.009664,0.337792,0.004832,0.004064,0.00736,0.010112,0.011136,0.372448,0.00784
+602,438.497,2.28052,0.681888,0.008224,0.243712,0.005888,0.004352,0.006144,0.010272,0.011872,0.38336,0.008064
+603,522.582,1.91357,0.651328,0.007744,0.229888,0.005472,0.00464,0.006272,0.009984,0.010496,0.36864,0.008192
+604,513.283,1.94824,0.665472,0.008192,0.243712,0.005696,0.004544,0.006144,0.01024,0.011552,0.367328,0.008064
+605,371.418,2.69238,0.67584,0.008224,0.248928,0.004928,0.00416,0.006176,0.010208,0.011712,0.374432,0.007072
+606,515.285,1.94067,0.656352,0.008672,0.227872,0.005216,0.004864,0.00624,0.010144,0.010368,0.374784,0.008192
+607,509.96,1.96094,0.706304,0.009344,0.276448,0.004992,0.004128,0.006144,0.010272,0.011584,0.375456,0.007936
+608,367.058,2.72437,0.666432,0.008672,0.247712,0.004544,0.005312,0.006304,0.009984,0.011136,0.364576,0.008192
+609,503.194,1.9873,0.662016,0.0088,0.229376,0.006048,0.004192,0.006176,0.01024,0.011616,0.377472,0.008096
+610,527.156,1.89697,0.661568,0.008576,0.241536,0.004544,0.00528,0.00624,0.010048,0.011072,0.3664,0.007872
+611,374.954,2.66699,0.688064,0.009216,0.250912,0.005536,0.004672,0.006144,0.01024,0.01024,0.382976,0.008128
+612,501.899,1.99243,0.66816,0.008704,0.233472,0.005536,0.004704,0.006144,0.010272,0.01168,0.38064,0.007008
+613,506.116,1.97583,0.67072,0.008576,0.25376,0.004832,0.004096,0.0072,0.009184,0.012032,0.364,0.00704
+614,355.155,2.81567,0.669312,0.008192,0.237568,0.005376,0.004832,0.006176,0.009952,0.010528,0.378848,0.00784
+615,465.032,2.15039,0.679904,0.00944,0.253984,0.004864,0.004096,0.006144,0.010272,0.011904,0.37104,0.00816
+616,447.699,2.23364,0.709088,0.008672,0.278912,0.00432,0.005664,0.006272,0.009952,0.010656,0.376832,0.007808
+617,357.792,2.79492,0.673792,0.00944,0.252704,0.005312,0.004896,0.006176,0.01024,0.0104,0.367488,0.007136
+618,501.285,1.99487,0.682752,0.008896,0.251936,0.004128,0.005728,0.006368,0.010112,0.010592,0.37792,0.007072
+619,452.497,2.20996,0.724896,0.00768,0.289696,0.00512,0.004928,0.006272,0.010176,0.011488,0.381376,0.00816
+620,405.826,2.46411,0.678464,0.00832,0.258336,0.004256,0.005536,0.00624,0.009888,0.011104,0.366592,0.008192
+621,481.939,2.07495,0.682016,0.008192,0.265856,0.00448,0.005344,0.006304,0.00992,0.010976,0.36272,0.008224
+622,447.601,2.23413,0.716448,0.008192,0.28016,0.004544,0.005248,0.006304,0.008896,0.012128,0.383136,0.00784
+623,347.177,2.88037,0.681152,0.008192,0.249888,0.005376,0.004832,0.006144,0.010144,0.010368,0.378368,0.00784
+624,520.656,1.92065,0.655136,0.00864,0.233088,0.004832,0.004096,0.0072,0.010208,0.011264,0.367968,0.00784
+625,508.693,1.96582,0.68448,0.008608,0.245792,0.005504,0.004736,0.006144,0.01024,0.011552,0.383712,0.008192
+626,348.833,2.8667,0.67248,0.008,0.241664,0.005024,0.004096,0.006144,0.01024,0.011904,0.377216,0.008192
+627,468.811,2.13306,0.672512,0.008608,0.23488,0.004928,0.004256,0.006144,0.01024,0.01152,0.383744,0.008192
+628,440.335,2.271,0.723712,0.008672,0.29536,0.005216,0.004832,0.006272,0.009728,0.010816,0.374784,0.008032
+629,330.696,3.02393,0.692576,0.00864,0.258272,0.005152,0.004864,0.006272,0.010144,0.010432,0.380896,0.007904
+630,530.776,1.88403,0.64528,0.008608,0.233216,0.004864,0.004096,0.006144,0.01024,0.011584,0.358464,0.008064
+631,480.357,2.08179,0.690176,0.0096,0.25872,0.00576,0.004448,0.006144,0.01024,0.01136,0.376832,0.007072
+632,400.508,2.49683,0.68608,0.00928,0.238528,0.005344,0.004832,0.006208,0.010176,0.011552,0.391968,0.008192
+633,510.978,1.95703,0.65552,0.00768,0.229984,0.00416,0.00576,0.006272,0.00992,0.010816,0.372736,0.008192
+634,499.451,2.0022,0.669504,0.008192,0.239616,0.005888,0.004352,0.006144,0.01024,0.011744,0.374976,0.008352
+635,346.854,2.88306,0.6664,0.008544,0.24208,0.004128,0.005664,0.006272,0.01024,0.010592,0.371744,0.007136
+636,454.808,2.19873,0.7168,0.008192,0.282496,0.004256,0.005504,0.0184,0.010592,0.010592,0.368576,0.008192
+637,545.043,1.83472,0.645792,0.008864,0.227328,0.005344,0.004864,0.006176,0.01024,0.01168,0.364448,0.006848
+638,350.115,2.8562,0.69408,0.008192,0.243264,0.004576,0.005408,0.00624,0.010048,0.01104,0.380928,0.024384
+639,523.116,1.91162,0.65664,0.008192,0.233472,0.005696,0.004544,0.006144,0.01024,0.01136,0.369248,0.007744
+640,329.658,3.03345,0.649888,0.008224,0.227968,0.004096,0.005792,0.006336,0.009888,0.010784,0.368672,0.008128
+641,445.896,2.24268,0.6656,0.008192,0.241664,0.00528,0.004864,0.00624,0.010144,0.011936,0.369088,0.008192
+642,423.184,2.36304,0.651616,0.00848,0.232768,0.0048,0.004096,0.007168,0.010656,0.010848,0.365792,0.007008
+643,555.239,1.80103,0.640992,0.0088,0.227328,0.005184,0.004864,0.006272,0.010272,0.010272,0.36016,0.00784
+644,384.168,2.60303,0.647168,0.008192,0.2352,0.004416,0.005376,0.006272,0.009952,0.011136,0.35968,0.006944
+645,513.927,1.9458,0.657568,0.007872,0.22992,0.005792,0.004448,0.006176,0.01024,0.011392,0.3736,0.008128
+646,505.118,1.97974,0.661504,0.008192,0.232512,0.005024,0.004128,0.006144,0.010272,0.01168,0.37536,0.008192
+647,294.126,3.3999,0.729088,0.008192,0.29072,0.004192,0.005664,0.006496,0.016416,0.010336,0.37888,0.008192
+648,441.094,2.26709,0.669696,0.008352,0.251136,0.004704,0.004096,0.007264,0.00912,0.012096,0.364736,0.008192
+649,472.216,2.11768,0.684032,0.008192,0.266048,0.00432,0.005472,0.006304,0.010048,0.010912,0.365952,0.006784
+650,429.936,2.32593,0.653536,0.008544,0.235712,0.004256,0.005536,0.006272,0.009984,0.010944,0.36448,0.007808
+651,486.866,2.05396,0.669472,0.008192,0.24496,0.004896,0.004096,0.006176,0.01024,0.012032,0.370912,0.007968
+652,483.989,2.06616,0.673664,0.00864,0.23888,0.004896,0.004096,0.006144,0.01024,0.012288,0.38064,0.00784
+653,421.443,2.3728,0.666432,0.008768,0.24208,0.005632,0.004608,0.006144,0.01024,0.011456,0.369472,0.008032
+654,488.084,2.04883,0.663584,0.0088,0.240832,0.004928,0.004096,0.00736,0.009248,0.012064,0.368384,0.007872
+655,463.086,2.15942,0.669152,0.008576,0.23728,0.004416,0.005376,0.006304,0.010112,0.010944,0.378272,0.007872
+656,459.038,2.17847,0.664832,0.008384,0.241728,0.005248,0.004864,0.006272,0.010144,0.010368,0.36992,0.007904
+657,506.617,1.97388,0.68848,0.008512,0.26064,0.005184,0.004864,0.006272,0.010304,0.010272,0.374624,0.007808
+658,512.898,1.94971,0.65904,0.009568,0.232096,0.004416,0.005376,0.00688,0.01008,0.010624,0.37184,0.00816
+659,484.218,2.06519,0.677888,0.008192,0.241056,0.004704,0.005152,0.006272,0.009216,0.01216,0.384096,0.00704
+660,384.818,2.59863,0.679488,0.008192,0.241664,0.00576,0.00448,0.006144,0.010272,0.01152,0.383616,0.00784
+661,509.643,1.96216,0.674176,0.008352,0.254176,0.006016,0.004224,0.006176,0.010208,0.011872,0.366272,0.00688
+662,460.328,2.17236,0.670592,0.008608,0.241536,0.004736,0.004064,0.007232,0.009152,0.012,0.375072,0.008192
+663,419.071,2.38623,0.655392,0.008512,0.23792,0.00544,0.0048,0.006144,0.01024,0.01024,0.364224,0.007872
+664,528.175,1.89331,0.660864,0.008448,0.234528,0.004928,0.004256,0.007488,0.010176,0.011008,0.372096,0.007936
+665,495.404,2.01855,0.665984,0.008576,0.23744,0.004224,0.005568,0.006272,0.00992,0.010944,0.374848,0.008192
+666,385.687,2.59277,0.671872,0.00816,0.241824,0.005696,0.004544,0.006144,0.010272,0.011808,0.375232,0.008192
+667,527.02,1.89746,0.6576,0.008384,0.229408,0.005152,0.004864,0.006304,0.009984,0.010528,0.376032,0.006944
+668,505.492,1.97827,0.66496,0.008512,0.247808,0.005312,0.004864,0.006208,0.00992,0.010592,0.364,0.007744
+669,404.224,2.47388,0.661632,0.00832,0.24576,0.00528,0.004864,0.00624,0.010048,0.011552,0.361376,0.008192
+670,497.812,2.00879,0.653696,0.008544,0.230784,0.005056,0.004128,0.006144,0.01024,0.011712,0.369216,0.007872
+671,520.391,1.92163,0.647168,0.008192,0.230432,0.00496,0.004224,0.006144,0.010272,0.011488,0.364512,0.006944
+672,500.733,1.99707,0.660672,0.009216,0.242688,0.005344,0.004864,0.006176,0.01008,0.01152,0.362944,0.00784
+673,467.9,2.13721,0.655456,0.008864,0.231776,0.004224,0.005632,0.006272,0.010144,0.010592,0.37008,0.007872
+674,542.373,1.84375,0.659456,0.008192,0.2376,0.00512,0.004832,0.0064,0.01024,0.011456,0.367424,0.008192
+675,478.393,2.09033,0.678272,0.008576,0.261984,0.004288,0.005568,0.006304,0.009824,0.01104,0.363744,0.006944
+676,369.342,2.70752,0.659104,0.008192,0.2352,0.004416,0.005376,0.006304,0.010144,0.010944,0.370656,0.007872
+677,538.593,1.85669,0.649248,0.007872,0.231744,0.006144,0.004096,0.0072,0.009216,0.012,0.362752,0.008224
+678,515.804,1.93872,0.675584,0.008192,0.239616,0.006016,0.004224,0.006176,0.010208,0.011744,0.381472,0.007936
+679,452.447,2.21021,0.660928,0.008544,0.243104,0.004736,0.005888,0.006304,0.01008,0.010464,0.363968,0.00784
+680,556.446,1.79712,0.647232,0.008256,0.231424,0.004096,0.005824,0.00624,0.009856,0.01088,0.363648,0.007008
+681,492.012,2.03247,0.683072,0.008224,0.24576,0.00528,0.004864,0.00624,0.010208,0.010272,0.384384,0.00784
+682,440.667,2.26929,0.704512,0.009248,0.27952,0.00416,0.0056,0.006272,0.009856,0.010976,0.370688,0.008192
+683,428.228,2.33521,0.657408,0.008192,0.243264,0.004544,0.005312,0.006112,0.010208,0.011136,0.36048,0.00816
+684,504.993,1.98022,0.661504,0.0096,0.235648,0.004608,0.005152,0.006272,0.010496,0.01088,0.370656,0.008192
+685,504.682,1.98145,0.653504,0.008736,0.23872,0.00496,0.004128,0.006144,0.010272,0.011904,0.3608,0.00784
+686,424.5,2.35571,0.653056,0.008192,0.233472,0.00544,0.0048,0.006144,0.010016,0.010464,0.366592,0.007936
+687,501.101,1.99561,0.673344,0.0096,0.250496,0.00416,0.005632,0.006304,0.00992,0.01088,0.368608,0.007744
+688,492.604,2.03003,0.660928,0.008192,0.237568,0.005856,0.004384,0.006144,0.01024,0.0136,0.367072,0.007872
+689,328.442,3.04468,0.65296,0.00864,0.243776,0.005504,0.004736,0.006176,0.01008,0.010368,0.355904,0.007776
+690,496.244,2.01514,0.699936,0.008384,0.280352,0.00432,0.005696,0.006272,0.009856,0.010944,0.36624,0.007872
+691,480.469,2.0813,0.687904,0.008608,0.249664,0.00448,0.005312,0.00624,0.009184,0.012032,0.384512,0.007872
+692,397.824,2.51367,0.67584,0.00832,0.241984,0.004576,0.005184,0.00624,0.01024,0.011072,0.380384,0.00784
+693,488.258,2.0481,0.689408,0.008192,0.256032,0.005632,0.004576,0.006144,0.01024,0.011616,0.379136,0.00784
+694,479.962,2.0835,0.655232,0.008192,0.237248,0.004416,0.005408,0.006272,0.010048,0.01088,0.364704,0.008064
+695,410.791,2.43433,0.664768,0.009408,0.242176,0.004416,0.005376,0.006304,0.00992,0.01088,0.368544,0.007744
+696,535.425,1.86768,0.645376,0.008672,0.235296,0.00448,0.005632,0.006272,0.010016,0.010848,0.356288,0.007872
+697,439.061,2.27759,0.649152,0.008544,0.233792,0.00592,0.00432,0.006144,0.010272,0.01168,0.360608,0.007872
+698,466.355,2.14429,0.7064,0.009984,0.290496,0.004672,0.004096,0.007296,0.009088,0.012288,0.360448,0.008032
+699,483.475,2.06836,0.6624,0.008608,0.241792,0.004448,0.005344,0.006272,0.009984,0.011168,0.366592,0.008192
+700,486.519,2.05542,0.651264,0.008384,0.231232,0.005568,0.004672,0.006144,0.010144,0.01184,0.365088,0.008192
+701,538.31,1.85767,0.673792,0.008192,0.239616,0.006144,0.00512,0.006304,0.010144,0.010976,0.379104,0.008192
+702,412.945,2.42163,0.675104,0.008192,0.257504,0.0048,0.004096,0.007168,0.009216,0.012288,0.363904,0.007936
+703,535.285,1.86816,0.640928,0.008192,0.2288,0.004672,0.00512,0.00624,0.009248,0.011808,0.358752,0.008096
+704,401.097,2.49316,0.651072,0.009472,0.226048,0.005792,0.004448,0.006144,0.010272,0.01024,0.370656,0.008
+705,331.311,3.01831,0.694272,0.008192,0.275968,0.004608,0.005184,0.0064,0.010208,0.011008,0.364512,0.008192
+706,428.094,2.33594,0.660864,0.00944,0.230176,0.005984,0.00416,0.006112,0.009824,0.010784,0.37632,0.008064
+707,527.631,1.89526,0.660896,0.008288,0.241376,0.004288,0.005504,0.006304,0.009984,0.011008,0.366304,0.00784
+708,375.745,2.66138,0.661504,0.008192,0.242848,0.00496,0.005152,0.006304,0.009248,0.011776,0.366144,0.00688
+709,435.652,2.29541,0.665888,0.00848,0.241056,0.004704,0.004096,0.006144,0.010272,0.011712,0.371232,0.008192
+710,466.409,2.14404,0.678016,0.008768,0.260128,0.004352,0.005408,0.006304,0.009984,0.011072,0.36432,0.00768
+711,333.714,2.99658,0.778944,0.008864,0.355744,0.004704,0.004096,0.007328,0.01008,0.011104,0.3688,0.008224
+712,381.449,2.62158,0.702464,0.009344,0.277376,0.005536,0.004704,0.007232,0.01024,0.01088,0.36896,0.008192
+713,399.649,2.5022,0.681984,0.009408,0.260928,0.005824,0.004416,0.006176,0.01024,0.01136,0.36544,0.008192
+714,533.681,1.87378,0.65984,0.008576,0.233504,0.005312,0.004864,0.006176,0.010016,0.010464,0.373856,0.007072
+715,514.379,1.94409,0.671744,0.008192,0.237568,0.005344,0.004832,0.006208,0.010016,0.011872,0.3808,0.006912
+716,478.114,2.09155,0.680128,0.008256,0.253984,0.005536,0.004672,0.006144,0.01024,0.011456,0.372832,0.007008
+717,414.072,2.41504,0.65536,0.009344,0.242176,0.00448,0.005344,0.00624,0.00992,0.010944,0.35984,0.007072
+718,533.542,1.87427,0.648512,0.008192,0.232608,0.00496,0.004096,0.006176,0.010208,0.011872,0.36256,0.00784
+719,455.668,2.19458,0.725024,0.008192,0.298944,0.00416,0.005632,0.006272,0.010176,0.01072,0.373984,0.006944
+720,349.428,2.86182,0.67584,0.008192,0.255616,0.00448,0.005536,0.006272,0.010144,0.010816,0.366688,0.008096
+721,427.915,2.33691,0.686912,0.008416,0.266176,0.00464,0.005184,0.006336,0.00896,0.012288,0.367904,0.007008
+722,494.985,2.02026,0.688128,0.008576,0.268544,0.004416,0.005376,0.006144,0.008928,0.012096,0.366176,0.007872
+723,448.926,2.22754,0.65712,0.008192,0.237344,0.00432,0.005792,0.006304,0.010208,0.010464,0.366592,0.007904
+724,511.936,1.95337,0.643616,0.008128,0.23376,0.004416,0.005408,0.006304,0.010048,0.011008,0.356448,0.008096
+725,495.224,2.01929,0.6672,0.008192,0.241664,0.005504,0.004736,0.006144,0.01024,0.0104,0.372384,0.007936
+726,421.443,2.3728,0.655104,0.008192,0.239616,0.004192,0.005664,0.006304,0.010144,0.010592,0.362464,0.007936
+727,549.356,1.82031,0.651456,0.008384,0.237568,0.005408,0.004832,0.006144,0.010112,0.010368,0.361536,0.007104
+728,409.887,2.4397,0.650816,0.00832,0.235392,0.005568,0.004672,0.006144,0.010208,0.010304,0.362368,0.00784
+729,429.485,2.32837,0.66768,0.008224,0.24704,0.004864,0.004096,0.007168,0.009376,0.011904,0.366816,0.008192
+730,553.888,1.80542,0.64512,0.008224,0.227104,0.00448,0.005312,0.00624,0.010208,0.01104,0.364512,0.008
+731,541.441,1.84692,0.651264,0.008192,0.230432,0.005088,0.004096,0.006144,0.01024,0.011744,0.368256,0.007072
+732,497.812,2.00879,0.668192,0.008736,0.23696,0.004736,0.004064,0.007232,0.009184,0.012,0.377088,0.008192
+733,467.58,2.13867,0.655936,0.008768,0.232448,0.004928,0.004288,0.006176,0.01024,0.011808,0.369088,0.008192
+734,532.709,1.8772,0.667232,0.009504,0.230112,0.004192,0.005792,0.006272,0.010112,0.010528,0.382944,0.007776
+735,483.703,2.06738,0.66432,0.008928,0.22896,0.004512,0.006144,0.008096,0.010016,0.01056,0.380064,0.00704
+736,416.726,2.39966,0.673472,0.008608,0.239808,0.005888,0.004352,0.006176,0.010208,0.012288,0.378304,0.00784
+737,535.565,1.86719,0.66176,0.007968,0.231936,0.005248,0.004864,0.00624,0.010112,0.011712,0.375488,0.008192
+738,530.707,1.88428,0.656512,0.009952,0.229184,0.004576,0.005216,0.00624,0.009056,0.012224,0.372288,0.007776
+739,469.671,2.12915,0.716192,0.009728,0.295424,0.005504,0.004736,0.006176,0.010144,0.010336,0.366304,0.00784
+740,503.07,1.98779,0.648864,0.00864,0.230624,0.005024,0.004128,0.006144,0.01024,0.012256,0.364032,0.007776
+741,552.841,1.80884,0.647712,0.00864,0.233664,0.005728,0.004512,0.006144,0.010272,0.011488,0.359168,0.008096
+742,457.961,2.18359,0.656128,0.008992,0.232672,0.004896,0.004096,0.007232,0.009184,0.011904,0.368992,0.00816
+743,409.191,2.44385,0.669792,0.008288,0.239008,0.004704,0.004096,0.007264,0.00912,0.01216,0.37696,0.008192
+744,510.024,1.96069,0.661536,0.00864,0.236896,0.004864,0.004096,0.006144,0.01024,0.012192,0.370688,0.007776
+745,491.422,2.03491,0.648064,0.008576,0.22784,0.005856,0.004384,0.006176,0.01024,0.01152,0.365312,0.00816
+746,367.948,2.71777,0.683904,0.00832,0.246272,0.004288,0.006144,0.006144,0.010112,0.010368,0.38448,0.007776
+747,502.823,1.98877,0.661184,0.009248,0.232448,0.005536,0.004672,0.006144,0.010208,0.010272,0.374784,0.007872
+748,487.445,2.05151,0.66208,0.008576,0.233664,0.00592,0.00432,0.006144,0.01024,0.011904,0.37312,0.008192
+749,402.437,2.48486,0.65392,0.008544,0.231264,0.004544,0.005248,0.006272,0.010496,0.010752,0.368608,0.008192
+750,486.172,2.05688,0.661504,0.00944,0.232096,0.004224,0.005536,0.006304,0.009984,0.010944,0.375936,0.00704
+751,526.41,1.89966,0.662112,0.008576,0.236928,0.004928,0.004096,0.006176,0.01024,0.011808,0.371136,0.008224
+752,437.42,2.28613,0.684928,0.008768,0.251712,0.004608,0.005344,0.00624,0.010016,0.023328,0.36672,0.008192
+753,472.925,2.1145,0.718848,0.008544,0.295456,0.005472,0.004768,0.006144,0.01024,0.011264,0.369152,0.007808
+754,498.782,2.00488,0.654848,0.008192,0.231424,0.004224,0.005696,0.006272,0.010304,0.0104,0.370368,0.007968
+755,498.904,2.00439,0.666336,0.008736,0.241248,0.004704,0.005184,0.006304,0.010048,0.011136,0.370784,0.008192
+756,475.174,2.10449,0.659744,0.00848,0.233472,0.00576,0.00448,0.006176,0.010208,0.010432,0.372544,0.008192
+757,519.204,1.92603,0.673792,0.008192,0.229376,0.005568,0.004672,0.006144,0.01024,0.01152,0.389888,0.008192
+758,494.447,2.02246,0.668224,0.008736,0.235616,0.005248,0.004864,0.006304,0.009984,0.010464,0.37888,0.008128
+759,468.275,2.1355,0.685664,0.008576,0.260096,0.005376,0.004864,0.006144,0.010208,0.010272,0.37232,0.007808
+760,510.978,1.95703,0.659328,0.008224,0.23344,0.005696,0.004544,0.006144,0.01024,0.011936,0.37104,0.008064
+761,419.758,2.38232,0.680832,0.008768,0.249952,0.00432,0.005472,0.00624,0.010048,0.011008,0.376832,0.008192
+762,452.097,2.21191,0.682656,0.008576,0.246272,0.00576,0.00448,0.006144,0.010272,0.01136,0.381824,0.007968
+763,534.935,1.86938,0.667712,0.008256,0.234528,0.00496,0.004224,0.006144,0.01024,0.011776,0.379392,0.008192
+764,522.916,1.91235,0.661792,0.008512,0.230752,0.0048,0.004096,0.006144,0.01024,0.011936,0.377184,0.008128
+765,495.164,2.01953,0.662176,0.008832,0.235552,0.00544,0.004768,0.006176,0.010208,0.011552,0.371424,0.008224
+766,464.189,2.1543,0.65744,0.008224,0.234816,0.0048,0.004096,0.007232,0.010304,0.010944,0.368864,0.00816
+767,529.678,1.88794,0.657408,0.008192,0.228896,0.004608,0.00544,0.006336,0.010048,0.010944,0.374784,0.00816
+768,494.686,2.02148,0.690464,0.009248,0.26464,0.00464,0.005152,0.006272,0.009056,0.011936,0.372416,0.007104
+769,428.228,2.33521,0.679968,0.008192,0.24928,0.004672,0.004096,0.007328,0.009088,0.012,0.377088,0.008224
+770,514.508,1.9436,0.656384,0.008192,0.231168,0.004352,0.0056,0.006304,0.010208,0.010656,0.372032,0.007872
+771,581.57,1.71948,0.655392,0.008192,0.229376,0.005856,0.004384,0.006144,0.010272,0.011424,0.37152,0.008224
+772,534.796,1.86987,0.653312,0.008192,0.23344,0.00416,0.005632,0.0064,0.010048,0.010656,0.367616,0.007168
+773,491.658,2.03394,0.665856,0.008448,0.229376,0.005728,0.004512,0.006144,0.01024,0.011488,0.381728,0.008192
+774,577.797,1.73071,0.657408,0.0096,0.230016,0.005856,0.004384,0.007296,0.010112,0.010816,0.372224,0.007104
+775,399.454,2.50342,0.663296,0.008448,0.22736,0.00576,0.004448,0.006176,0.010208,0.011488,0.3816,0.007808
+776,459.244,2.17749,0.692032,0.00832,0.256,0.00576,0.00448,0.006144,0.010272,0.011392,0.381792,0.007872
+777,524.926,1.90503,0.663136,0.009728,0.231904,0.00416,0.005632,0.00624,0.010176,0.01072,0.3768,0.007776
+778,539.942,1.85205,0.660192,0.00864,0.227616,0.005248,0.00464,0.006272,0.010336,0.010368,0.37888,0.008192
+779,533.75,1.87354,0.66576,0.008256,0.233408,0.005184,0.004864,0.006272,0.009856,0.010688,0.380224,0.007008
+780,462.511,2.16211,0.657408,0.008192,0.233472,0.00608,0.00416,0.006144,0.010272,0.01136,0.369536,0.008192
+781,516.129,1.9375,0.667648,0.00944,0.225952,0.004224,0.0056,0.006304,0.01008,0.010784,0.387072,0.008192
+782,524.994,1.90479,0.665312,0.009696,0.228928,0.004992,0.004192,0.007552,0.01008,0.01104,0.380928,0.007904
+783,426.756,2.34326,0.690176,0.008192,0.262144,0.0056,0.00464,0.006144,0.01024,0.010304,0.37472,0.008192
+784,504.309,1.98291,0.66288,0.008384,0.23552,0.005152,0.004832,0.006336,0.009888,0.010656,0.374368,0.007744
+785,546.571,1.82959,0.66096,0.008416,0.229408,0.00512,0.004864,0.00624,0.009952,0.010656,0.3784,0.007904
+786,487.851,2.0498,0.67472,0.00864,0.254432,0.004256,0.005632,0.006272,0.009984,0.01072,0.366592,0.008192
+787,400.861,2.49463,0.66112,0.008192,0.23552,0.005888,0.004352,0.006144,0.011424,0.011104,0.370656,0.00784
+788,539.018,1.85522,0.653504,0.008192,0.226752,0.004672,0.00512,0.006304,0.009184,0.011968,0.374304,0.007008
+789,498.479,2.0061,0.669696,0.009248,0.234496,0.006112,0.005216,0.006272,0.008992,0.012288,0.37888,0.008192
+790,364.607,2.74268,0.734304,0.008192,0.28672,0.005152,0.004992,0.00624,0.009984,0.018688,0.386496,0.00784
+791,510.087,1.96045,0.65712,0.009408,0.22928,0.004928,0.004192,0.006144,0.01024,0.011904,0.37312,0.007904
+792,462.146,2.16382,0.708608,0.008192,0.273696,0.004832,0.015872,0.006656,0.01024,0.011456,0.370528,0.007136
+793,365.421,2.73657,0.67968,0.008224,0.256,0.005152,0.004864,0.006304,0.01008,0.010464,0.370688,0.007904
+794,499.939,2.00024,0.684032,0.008256,0.25968,0.004448,0.005536,0.00624,0.010048,0.010944,0.370688,0.008192
+795,486.692,2.05469,0.66608,0.008576,0.2328,0.004864,0.004096,0.0072,0.00928,0.012096,0.378976,0.008192
+796,353.836,2.82617,0.673248,0.008224,0.247424,0.00448,0.005312,0.006304,0.010016,0.011136,0.372512,0.00784
+797,534.935,1.86938,0.667232,0.00832,0.231328,0.00416,0.005632,0.006304,0.010304,0.010528,0.382816,0.00784
+798,520.921,1.91968,0.660576,0.00928,0.23168,0.0048,0.004096,0.0072,0.009184,0.011936,0.374592,0.007808
+799,479.625,2.08496,0.715872,0.009248,0.283616,0.005536,0.004704,0.006144,0.01024,0.011296,0.37728,0.007808
+800,515.934,1.93823,0.66128,0.008192,0.229408,0.005216,0.004832,0.006272,0.010048,0.010464,0.37888,0.007968
+801,529.199,1.88965,0.674336,0.00816,0.232032,0.00432,0.005632,0.006304,0.009984,0.010624,0.38912,0.00816
+802,489.601,2.04248,0.690176,0.008192,0.257088,0.005024,0.004128,0.006144,0.01024,0.012288,0.37888,0.008192
+803,452.497,2.20996,0.67584,0.009216,0.229664,0.004832,0.004096,0.006208,0.01024,0.012064,0.391328,0.008192
+804,500.061,1.99976,0.678176,0.008448,0.2448,0.00496,0.004192,0.006304,0.01008,0.01184,0.380384,0.007168
+805,458.422,2.1814,0.680256,0.008512,0.239168,0.004544,0.005312,0.006272,0.01008,0.011104,0.387072,0.008192
+806,418.9,2.38721,0.663552,0.008192,0.23552,0.005344,0.004832,0.006208,0.010144,0.010432,0.374688,0.008192
+807,529.062,1.89014,0.674944,0.008192,0.234496,0.00512,0.005472,0.006304,0.010112,0.01088,0.386528,0.00784
+808,471.346,2.12158,0.653312,0.008192,0.229376,0.005504,0.004736,0.006176,0.010208,0.011296,0.369632,0.008192
+809,450.11,2.22168,0.702464,0.008192,0.275872,0.004704,0.004096,0.007264,0.009152,0.011872,0.37312,0.008192
+810,466.568,2.14331,0.661504,0.008192,0.231424,0.006112,0.004128,0.006176,0.01024,0.011744,0.37536,0.008128
+811,424.412,2.3562,0.766176,0.008448,0.325312,0.004384,0.005792,0.00624,0.010112,0.010624,0.387072,0.008192
+812,423.447,2.36157,0.704704,0.008384,0.274432,0.005984,0.004256,0.006144,0.010272,0.011232,0.375808,0.008192
+813,438.873,2.27856,0.67728,0.008192,0.235488,0.00416,0.005664,0.006272,0.01024,0.010592,0.388864,0.007808
+814,521.584,1.91724,0.655008,0.008032,0.226976,0.004608,0.005152,0.006304,0.01008,0.011232,0.374784,0.00784
+815,504.434,1.98242,0.689632,0.009408,0.246592,0.005632,0.004608,0.006144,0.01024,0.011424,0.387712,0.007872
+816,434.082,2.30371,0.675744,0.008448,0.234144,0.004288,0.005632,0.006272,0.01024,0.011584,0.387328,0.007808
+817,500.672,1.99731,0.665408,0.008544,0.22736,0.005568,0.004672,0.006144,0.01024,0.011776,0.383264,0.00784
+818,406.067,2.46265,0.710912,0.008448,0.271712,0.004768,0.005184,0.00624,0.00912,0.012032,0.385216,0.008192
+819,383.09,2.61035,0.673216,0.008288,0.245792,0.005568,0.00464,0.006144,0.01024,0.01024,0.374496,0.007808
+820,471.075,2.1228,0.688928,0.00864,0.246112,0.00544,0.0048,0.006144,0.010208,0.010336,0.390144,0.007104
+821,485.653,2.05908,0.673792,0.008192,0.241088,0.004672,0.004096,0.006176,0.01024,0.012256,0.37888,0.008192
+822,390.579,2.5603,0.680832,0.008288,0.2424,0.00416,0.005632,0.006304,0.009888,0.010944,0.385024,0.008192
+823,522.716,1.91309,0.66624,0.007168,0.231136,0.004384,0.005408,0.006272,0.010016,0.01104,0.382912,0.007904
+824,495.284,2.01904,0.674976,0.00832,0.245728,0.004128,0.006144,0.006144,0.01024,0.011392,0.375008,0.007872
+825,301.044,3.32178,0.743872,0.008544,0.307232,0.00416,0.005792,0.006496,0.01024,0.01024,0.382976,0.008192
+826,467.633,2.13843,0.671744,0.009824,0.24208,0.00544,0.0048,0.006144,0.010208,0.010272,0.376128,0.006848
+827,406.955,2.45728,0.679936,0.009792,0.246208,0.005472,0.004768,0.006144,0.01024,0.01024,0.37888,0.008192
+828,362.831,2.7561,0.671744,0.009376,0.24048,0.00576,0.00448,0.006176,0.010368,0.012064,0.374848,0.008192
+829,462.355,2.16284,0.695008,0.008704,0.23984,0.005632,0.004608,0.006144,0.022528,0.011744,0.387616,0.008192
+830,331.902,3.01294,0.70912,0.008224,0.27456,0.004448,0.0056,0.006272,0.010048,0.010816,0.380928,0.008224
+831,441.855,2.26318,0.677632,0.008224,0.241376,0.004384,0.005472,0.006272,0.010144,0.01088,0.382976,0.007904
+832,475.892,2.10132,0.675712,0.008416,0.241408,0.004352,0.00544,0.006272,0.010112,0.010944,0.380256,0.008512
+833,433.073,2.30908,0.745472,0.00944,0.303904,0.005152,0.004832,0.006304,0.010048,0.010528,0.388224,0.00704
+834,422.486,2.36694,0.677344,0.008544,0.240672,0.005088,0.004064,0.006176,0.010208,0.011904,0.382848,0.00784
+835,384.312,2.60205,0.710048,0.008192,0.274272,0.004256,0.005536,0.006272,0.01008,0.01088,0.382688,0.007872
+836,369.875,2.70361,0.665376,0.008224,0.235296,0.004288,0.005696,0.006304,0.010048,0.01072,0.376832,0.007968
+837,461.729,2.16577,0.717216,0.008608,0.280608,0.00544,0.004768,0.006144,0.010112,0.0104,0.382944,0.008192
+838,469.779,2.12866,0.684032,0.008192,0.25808,0.00592,0.004288,0.006176,0.010208,0.011552,0.371424,0.008192
+839,397.554,2.51538,0.69392,0.00848,0.239712,0.004224,0.005568,0.006272,0.010176,0.010752,0.400928,0.007808
+840,506.179,1.97559,0.667648,0.00992,0.23584,0.0056,0.00464,0.006144,0.010144,0.010336,0.378016,0.007008
+841,516.52,1.93604,0.671392,0.00944,0.234112,0.004256,0.005568,0.006304,0.010112,0.010784,0.382976,0.00784
+842,494.089,2.02393,0.712736,0.009568,0.282752,0.00464,0.005248,0.006272,0.009088,0.01216,0.374784,0.008224
+843,544.608,1.83618,0.675968,0.008224,0.233984,0.004512,0.005312,0.006368,0.010048,0.01104,0.388544,0.007936
+844,457.961,2.18359,0.673824,0.008608,0.230784,0.004736,0.004096,0.006144,0.01024,0.01152,0.389856,0.00784
+845,513.863,1.94604,0.674112,0.00848,0.239488,0.004256,0.005632,0.006272,0.010112,0.010752,0.382016,0.007104
+846,456.481,2.19067,0.67024,0.00864,0.235616,0.006016,0.004224,0.006176,0.01024,0.011904,0.379232,0.008192
+847,513.669,1.94678,0.659168,0.008192,0.233472,0.005344,0.004864,0.006176,0.01024,0.01136,0.371616,0.007904
+848,538.098,1.8584,0.66896,0.009568,0.227232,0.004864,0.004096,0.006176,0.010208,0.011904,0.387168,0.007744
+849,399.065,2.50586,0.687616,0.008192,0.24576,0.005728,0.004512,0.006144,0.01024,0.01152,0.38736,0.00816
+850,479.289,2.08643,0.680512,0.008608,0.235648,0.00528,0.004832,0.006272,0.01024,0.010336,0.391072,0.008224
+851,361.614,2.76538,0.6656,0.008192,0.227328,0.005344,0.004864,0.006176,0.010048,0.01152,0.383936,0.008192
+852,418.985,2.38672,0.673824,0.008768,0.247296,0.005664,0.004896,0.00624,0.010144,0.010464,0.372512,0.00784
+853,509.136,1.96411,0.671744,0.008192,0.237568,0.004192,0.00544,0.006304,0.009888,0.01104,0.380928,0.008192
+854,524.657,1.90601,0.657376,0.008192,0.229216,0.004256,0.005536,0.006304,0.00992,0.011008,0.374784,0.00816
+855,431.113,2.31958,0.73504,0.008192,0.307168,0.004128,0.00576,0.006272,0.01008,0.010656,0.374784,0.008
+856,501.776,1.99292,0.673472,0.009568,0.236192,0.005856,0.004384,0.006144,0.01024,0.011712,0.381504,0.007872
+857,520.391,1.92163,0.69232,0.008192,0.258048,0.005216,0.004864,0.006272,0.01024,0.011296,0.381184,0.007008
+858,476.39,2.09912,0.681984,0.008192,0.253952,0.005472,0.004768,0.006144,0.01024,0.01136,0.374816,0.00704
+859,368.81,2.71143,0.67968,0.008416,0.24576,0.005408,0.004832,0.006144,0.01008,0.010432,0.380896,0.007712
+860,519.731,1.92407,0.67168,0.008192,0.23456,0.00496,0.004192,0.006144,0.01024,0.012256,0.383008,0.008128
+861,515.479,1.93994,0.707136,0.008608,0.264096,0.00432,0.005472,0.006304,0.010144,0.010848,0.390208,0.007136
+862,380.069,2.6311,0.67312,0.009536,0.238016,0.004384,0.005408,0.006272,0.01008,0.010976,0.380576,0.007872
+863,518.875,1.92725,0.66528,0.00848,0.233216,0.005664,0.004832,0.006144,0.01024,0.01152,0.377376,0.007808
+864,448.729,2.22852,0.700416,0.008192,0.268288,0.004192,0.005632,0.006272,0.009856,0.010912,0.37888,0.008192
+865,365.29,2.73755,0.718592,0.008768,0.284064,0.004736,0.004096,0.007296,0.010144,0.010816,0.380768,0.007904
+866,481.09,2.07861,0.675648,0.008576,0.242048,0.004128,0.005728,0.006304,0.010048,0.010688,0.380256,0.007872
+867,479.794,2.08423,0.692224,0.008192,0.2576,0.004544,0.005248,0.006304,0.010144,0.011072,0.382112,0.007008
+868,389.576,2.56689,0.690432,0.008448,0.248832,0.004928,0.004288,0.006176,0.01024,0.011616,0.387712,0.008192
+869,501.04,1.99585,0.6656,0.0096,0.231616,0.004544,0.005312,0.006304,0.010112,0.01104,0.37888,0.008192
+870,492.485,2.03052,0.673312,0.008192,0.245312,0.004544,0.005312,0.00624,0.008992,0.011904,0.374848,0.007968
+871,388.984,2.5708,0.679968,0.008416,0.24064,0.005024,0.004192,0.006176,0.010208,0.012,0.385312,0.008
+872,480.131,2.08276,0.69552,0.009504,0.26688,0.004224,0.005632,0.006272,0.009984,0.010848,0.374048,0.008128
+873,485.653,2.05908,0.677888,0.008192,0.233472,0.005824,0.004416,0.006144,0.01024,0.011424,0.389984,0.008192
+874,441.617,2.2644,0.73344,0.008704,0.288832,0.004096,0.005792,0.006272,0.010144,0.010592,0.391136,0.007872
+875,547.594,1.82617,0.671744,0.008192,0.23296,0.00464,0.00512,0.006304,0.010144,0.0112,0.386176,0.007008
+876,496.726,2.01318,0.675872,0.009376,0.238304,0.004224,0.005568,0.006272,0.010304,0.010624,0.38416,0.00704
+877,466.302,2.14453,0.682016,0.008544,0.24192,0.005568,0.004672,0.006176,0.010208,0.011424,0.3856,0.007904
+878,449.172,2.22632,0.66544,0.008384,0.231424,0.005216,0.004736,0.006272,0.010016,0.010624,0.380896,0.007872
+879,494.567,2.02197,0.676704,0.008544,0.240128,0.00416,0.005664,0.00656,0.01024,0.01024,0.384288,0.00688
+880,453.047,2.20728,0.675872,0.008192,0.251904,0.005824,0.004416,0.006144,0.010272,0.011744,0.369152,0.008224
+881,434.681,2.30054,0.688128,0.009408,0.246528,0.00416,0.005696,0.00624,0.010048,0.01072,0.387264,0.008064
+882,534.377,1.87134,0.669792,0.008288,0.234752,0.004864,0.004096,0.006208,0.010176,0.011872,0.381344,0.008192
+883,487.213,2.05249,0.675456,0.008192,0.2368,0.004864,0.004096,0.006144,0.010272,0.011904,0.385376,0.007808
+884,430.478,2.323,0.672608,0.008672,0.243104,0.004992,0.004192,0.006144,0.01024,0.01168,0.375392,0.008192
+885,498.357,2.00659,0.686624,0.008736,0.231424,0.005888,0.004352,0.006176,0.01024,0.011808,0.399808,0.008192
+886,503.999,1.98413,0.664992,0.009504,0.229824,0.004384,0.005376,0.006432,0.009824,0.011136,0.380672,0.00784
+887,453.248,2.2063,0.720352,0.009312,0.256512,0.020896,0.006112,0.006176,0.010144,0.024128,0.379328,0.007744
+888,346.063,2.88965,0.67584,0.008192,0.239264,0.005664,0.004864,0.006208,0.01008,0.0104,0.382976,0.008192
+889,509.389,1.96313,0.666272,0.00864,0.235744,0.00592,0.00432,0.006176,0.01024,0.01136,0.3768,0.007072
+890,507.245,1.97144,0.698368,0.008192,0.270272,0.004192,0.005632,0.006272,0.010176,0.010688,0.374752,0.008192
+891,473.088,2.11377,0.693248,0.008544,0.254176,0.004448,0.005472,0.006272,0.009984,0.011072,0.38624,0.00704
+892,498.904,2.00439,0.659456,0.008192,0.233248,0.00432,0.005472,0.006272,0.01008,0.01088,0.3728,0.008192
+893,502.453,1.99023,0.673824,0.008192,0.243712,0.00528,0.004864,0.00624,0.009888,0.010592,0.376832,0.008224
+894,364.121,2.74634,0.688704,0.008192,0.258016,0.004704,0.004096,0.007328,0.010304,0.01104,0.376832,0.008192
+895,482.848,2.07104,0.68624,0.00832,0.247808,0.004096,0.005824,0.00624,0.009952,0.010752,0.386208,0.00704
+896,439.108,2.27734,0.702464,0.008192,0.275776,0.0048,0.004096,0.007232,0.009184,0.011712,0.37328,0.008192
+897,350.715,2.85132,0.684064,0.008352,0.243008,0.0048,0.004096,0.006144,0.01024,0.011616,0.387744,0.008064
+898,507.936,1.96875,0.692224,0.008192,0.25328,0.004768,0.004096,0.0072,0.010208,0.011264,0.385024,0.008192
+899,522.716,1.91309,0.66272,0.008352,0.23344,0.00416,0.005632,0.006272,0.010176,0.010656,0.376256,0.007776
+900,397.053,2.51855,0.699136,0.008416,0.258464,0.00416,0.00576,0.006304,0.01024,0.010464,0.388288,0.00704
+901,505.305,1.979,0.679744,0.00864,0.237632,0.004224,0.005568,0.006336,0.01024,0.010656,0.38848,0.007968
+902,537.18,1.86157,0.660256,0.008672,0.233152,0.004704,0.004192,0.0072,0.010496,0.01088,0.374112,0.006848
+903,483.076,2.07007,0.713856,0.00832,0.272384,0.005888,0.004352,0.006176,0.010208,0.011424,0.387296,0.007808
+904,477.668,2.09351,0.679936,0.008384,0.244608,0.00496,0.004192,0.006144,0.01024,0.011936,0.38128,0.008192
+905,562.097,1.77905,0.670816,0.008384,0.231264,0.006048,0.00416,0.0072,0.009184,0.011808,0.384896,0.007872
+906,494.149,2.02368,0.696256,0.007552,0.252,0.004672,0.004096,0.007296,0.009088,0.011968,0.391488,0.008096
+907,350.985,2.84912,0.716544,0.008576,0.278624,0.004288,0.005632,0.006304,0.009952,0.010656,0.384736,0.007776
+908,449.172,2.22632,0.694112,0.008192,0.256032,0.005792,0.004416,0.006144,0.01024,0.011616,0.383648,0.008032
+909,467.58,2.13867,0.704672,0.009664,0.278976,0.004224,0.005632,0.006304,0.009952,0.01088,0.372032,0.007008
+910,372.465,2.68481,0.681984,0.009216,0.243904,0.004928,0.004096,0.007712,0.010048,0.010912,0.384128,0.00704
+911,466.196,2.14502,0.70656,0.008192,0.27408,0.00448,0.005824,0.00624,0.009984,0.01072,0.378848,0.008192
+912,394.757,2.5332,0.700416,0.008224,0.261056,0.005248,0.004832,0.006304,0.010176,0.010304,0.386432,0.00784
+913,411.452,2.43042,0.669696,0.008192,0.238656,0.004928,0.004224,0.006144,0.01024,0.011488,0.377632,0.008192
+914,456.379,2.19116,0.718304,0.008608,0.284672,0.004224,0.0056,0.006272,0.010048,0.01072,0.380416,0.007744
+915,364.024,2.74707,0.737248,0.008576,0.293024,0.005152,0.004864,0.006304,0.010304,0.010272,0.391072,0.00768
+916,383.234,2.60938,0.663936,0.0088,0.233792,0.00528,0.004864,0.006272,0.01024,0.01024,0.376704,0.007744
+917,465.56,2.14795,0.671776,0.009408,0.234304,0.004192,0.005664,0.006496,0.010048,0.010464,0.382976,0.008224
+918,495.164,2.01953,0.669632,0.008352,0.24176,0.005888,0.004256,0.006144,0.01024,0.011776,0.373248,0.007968
+919,342.848,2.91675,0.687168,0.008192,0.256,0.004256,0.005696,0.006304,0.01008,0.01056,0.37824,0.00784
+920,399.961,2.50024,0.685664,0.009536,0.246496,0.00576,0.004448,0.006144,0.01024,0.011392,0.382848,0.0088
+921,400.469,2.49707,0.749568,0.008192,0.324864,0.004864,0.004096,0.006144,0.011296,0.011104,0.370816,0.008192
+922,437,2.28833,0.686624,0.0088,0.251872,0.004128,0.005664,0.006112,0.010176,0.010816,0.380928,0.008128
+923,514.767,1.94263,0.671904,0.008448,0.237536,0.006048,0.004224,0.006112,0.01024,0.012032,0.379136,0.008128
+924,431.703,2.31641,0.698528,0.008576,0.264384,0.004256,0.005632,0.006304,0.009984,0.010784,0.380704,0.007904
+925,476.445,2.09888,0.679936,0.008192,0.239616,0.005536,0.004704,0.006144,0.010208,0.010272,0.388192,0.007072
+926,433.118,2.30884,0.663424,0.0088,0.233664,0.005888,0.004352,0.006144,0.01024,0.011808,0.37472,0.007808
+927,361.901,2.76318,0.690176,0.008224,0.245728,0.004128,0.005664,0.006272,0.010112,0.010688,0.391168,0.008192
+928,495.824,2.01685,0.677248,0.008192,0.239456,0.004256,0.0056,0.006272,0.00992,0.010976,0.384768,0.007808
+929,474.788,2.1062,0.67008,0.008512,0.23552,0.004256,0.005664,0.006272,0.010016,0.010688,0.382144,0.007008
+930,398.754,2.50781,0.698464,0.008288,0.251904,0.005856,0.004384,0.006144,0.01024,0.011648,0.391808,0.008192
+931,552.617,1.80957,0.68608,0.009472,0.242432,0.005504,0.004736,0.006144,0.01024,0.01024,0.38912,0.008192
+932,508.252,1.96753,0.65776,0.007616,0.230272,0.006016,0.004224,0.006144,0.01024,0.011872,0.373152,0.008224
+933,410.75,2.43457,0.698368,0.008192,0.251936,0.00528,0.004864,0.006208,0.01024,0.012,0.391456,0.008192
+934,397.593,2.51514,0.669152,0.008224,0.237568,0.004192,0.005632,0.006304,0.010048,0.010688,0.378464,0.008032
+935,555.39,1.80054,0.672704,0.008576,0.236096,0.005664,0.004576,0.006144,0.010272,0.012224,0.38096,0.008192
+936,471.944,2.1189,0.724352,0.009792,0.278976,0.005408,0.004832,0.006144,0.010176,0.010368,0.39024,0.008416
+937,385.107,2.59668,0.68016,0.008352,0.240864,0.004896,0.004096,0.006144,0.01024,0.011904,0.386656,0.007008
+938,549.504,1.81982,0.662176,0.0088,0.229408,0.005632,0.004608,0.006144,0.01024,0.010432,0.378688,0.008224
+939,535.425,1.86768,0.674304,0.008704,0.236672,0.004928,0.00416,0.006144,0.01024,0.011744,0.38352,0.008192
+940,396.208,2.52393,0.675552,0.008224,0.241632,0.005152,0.004864,0.006304,0.010016,0.010528,0.380864,0.007968
+941,496.064,2.01587,0.683328,0.008512,0.234848,0.004768,0.004096,0.007264,0.009248,0.012032,0.394656,0.007904
+942,508.063,1.96826,0.667552,0.008672,0.234912,0.004928,0.004256,0.006144,0.01024,0.011488,0.379072,0.00784
+943,362.928,2.75537,0.69808,0.00848,0.266432,0.005728,0.004512,0.006144,0.010272,0.011296,0.377408,0.007808
+944,483.532,2.06812,0.669888,0.008736,0.235648,0.005888,0.004288,0.006144,0.01024,0.011936,0.3792,0.007808
+945,489.308,2.0437,0.681472,0.009536,0.238016,0.004352,0.005408,0.006272,0.010112,0.010976,0.38896,0.00784
+946,431.294,2.3186,0.761888,0.008192,0.323584,0.005696,0.004544,0.006144,0.01024,0.010272,0.386208,0.007008
+947,466.834,2.14209,0.70704,0.0088,0.268384,0.005344,0.004896,0.006144,0.010112,0.011552,0.38384,0.007968
+948,509.579,1.9624,0.669696,0.00944,0.23424,0.005344,0.004832,0.00624,0.009984,0.010496,0.38224,0.00688
+949,489.542,2.04272,0.710464,0.008192,0.272096,0.004384,0.005376,0.006304,0.01024,0.01088,0.384992,0.008
+950,472.706,2.11548,0.684512,0.008576,0.249888,0.005504,0.004672,0.006208,0.010048,0.010432,0.382176,0.007008
+951,540.512,1.8501,0.67696,0.009312,0.2344,0.005696,0.004544,0.006144,0.010272,0.011264,0.387456,0.007872
+952,464.083,2.15479,0.673792,0.009472,0.242432,0.006144,0.005152,0.006848,0.010144,0.010624,0.374432,0.008544
+953,380.705,2.62671,0.679968,0.00928,0.244672,0.005408,0.004832,0.006144,0.01024,0.011712,0.379456,0.008224
+954,497.027,2.01196,0.713536,0.008544,0.276928,0.004224,0.00576,0.006272,0.010112,0.01056,0.384032,0.007104
+955,458.627,2.18042,0.686016,0.008608,0.244128,0.004192,0.0056,0.006272,0.009888,0.010944,0.388416,0.007968
+956,392.3,2.54907,0.699648,0.008224,0.251936,0.005344,0.004896,0.006144,0.01024,0.011392,0.3936,0.007872
+957,515.869,1.93848,0.671456,0.00832,0.233472,0.004192,0.005664,0.006272,0.009984,0.010752,0.385024,0.007776
+958,496.425,2.0144,0.67248,0.008768,0.231584,0.005984,0.004256,0.007232,0.010336,0.011136,0.384992,0.008192
+959,400.274,2.49829,0.702464,0.008352,0.253056,0.004832,0.004096,0.006144,0.01024,0.011616,0.397344,0.006784
+960,553.738,1.80591,0.6696,0.007776,0.227584,0.004256,0.005536,0.006336,0.01024,0.010656,0.38912,0.008096
+961,465.931,2.14624,0.702464,0.009792,0.257472,0.00496,0.004256,0.006176,0.010208,0.012128,0.38928,0.008192
+962,449.123,2.22656,0.7536,0.008224,0.3072,0.005344,0.004864,0.006176,0.01008,0.010432,0.393184,0.008096
+963,482.962,2.07056,0.67552,0.009728,0.231296,0.004736,0.004096,0.007232,0.009152,0.012224,0.389184,0.007872
+964,477.501,2.09424,0.67008,0.008576,0.239616,0.005248,0.004864,0.00624,0.010112,0.010432,0.3768,0.008192
+965,529.062,1.89014,0.690208,0.009056,0.237728,0.004256,0.005696,0.006304,0.009984,0.010624,0.398688,0.007872
+966,459.193,2.17773,0.67584,0.008192,0.233472,0.005728,0.004512,0.006144,0.01024,0.011584,0.388832,0.007136
+967,524.725,1.90576,0.671648,0.008512,0.232576,0.004928,0.00416,0.006144,0.01024,0.01152,0.385792,0.007776
+968,433.852,2.30493,0.667168,0.008192,0.231424,0.00528,0.004864,0.00624,0.009888,0.010592,0.382656,0.008032
+969,413.403,2.41895,0.681568,0.009568,0.23536,0.004928,0.005216,0.006272,0.008992,0.012288,0.39104,0.007904
+970,491.304,2.0354,0.673984,0.008416,0.23104,0.00448,0.005312,0.006304,0.010144,0.010976,0.389152,0.00816
+971,512.641,1.95068,0.667456,0.008448,0.227744,0.005696,0.004544,0.006144,0.01024,0.01152,0.385376,0.007744
+972,481.26,2.07788,0.719648,0.008992,0.284672,0.005152,0.004864,0.006272,0.010048,0.010528,0.382048,0.007072
+973,504.62,1.98169,0.67072,0.008608,0.231936,0.004192,0.0056,0.006272,0.010016,0.01088,0.385024,0.008192
+974,508.946,1.96484,0.6776,0.008608,0.229728,0.005632,0.004576,0.006144,0.010272,0.011616,0.393184,0.00784
+975,518.219,1.92969,0.692032,0.009344,0.236416,0.005568,0.004672,0.006176,0.01024,0.011488,0.400128,0.008
+976,424.104,2.35791,0.69632,0.008192,0.249376,0.004576,0.00528,0.00624,0.010176,0.011072,0.393216,0.008192
+977,515.609,1.93945,0.663712,0.008192,0.230688,0.004832,0.004096,0.006176,0.010208,0.01152,0.380992,0.007008
+978,538.31,1.85767,0.669696,0.008192,0.227072,0.004352,0.005984,0.006304,0.009984,0.010528,0.389088,0.008192
+979,412.197,2.42603,0.673088,0.00848,0.239616,0.004288,0.005632,0.006304,0.010176,0.010496,0.380288,0.007808
+980,520.656,1.92065,0.690272,0.00832,0.229408,0.005152,0.004864,0.006304,0.010048,0.010464,0.407552,0.00816
+981,580.252,1.72339,0.683072,0.008192,0.22528,0.005792,0.004448,0.006144,0.010272,0.011488,0.403616,0.00784
+982,506.68,1.97363,0.6984,0.008192,0.251904,0.004288,0.005664,0.006336,0.010176,0.010432,0.3944,0.007008
+983,383.269,2.60913,0.68608,0.00976,0.237888,0.005344,0.004864,0.006176,0.010144,0.010496,0.393248,0.00816
+984,558.19,1.7915,0.67584,0.008416,0.229376,0.005408,0.004832,0.006144,0.01024,0.011744,0.391712,0.007968
+985,510.341,1.95947,0.677888,0.008192,0.231392,0.004128,0.00576,0.006272,0.009984,0.010752,0.393216,0.008192
+986,397.94,2.51294,0.677376,0.008192,0.237184,0.00448,0.00528,0.00624,0.01008,0.011008,0.387136,0.007776
+987,520.788,1.92017,0.661568,0.007936,0.225184,0.004512,0.005312,0.006272,0.010176,0.010944,0.38304,0.008192
+988,533.82,1.87329,0.671552,0.008192,0.227328,0.005408,0.004832,0.006144,0.01024,0.011392,0.390016,0.008
+989,505.741,1.97729,0.714528,0.0088,0.261216,0.004992,0.004128,0.006176,0.01024,0.01184,0.399328,0.007808
+990,427.29,2.34033,0.68816,0.009504,0.230112,0.005856,0.004384,0.007328,0.010272,0.011072,0.401408,0.008224
+991,527.971,1.89404,0.693056,0.008576,0.237888,0.004256,0.005568,0.006304,0.010112,0.010784,0.401376,0.008192
+992,491.658,2.03394,0.717152,0.008256,0.264512,0.005792,0.004416,0.006144,0.01024,0.011392,0.398208,0.008192
+993,447.944,2.23242,0.67936,0.008288,0.23312,0.005664,0.004864,0.006208,0.01008,0.010432,0.3928,0.007904
+994,493.316,2.0271,0.677888,0.008224,0.234528,0.005024,0.004128,0.006144,0.01024,0.011936,0.389472,0.008192
+995,504.309,1.98291,0.675648,0.008288,0.238848,0.004864,0.004096,0.006144,0.01024,0.011712,0.38336,0.008096
+996,391.699,2.55298,0.695616,0.008192,0.242976,0.004832,0.004096,0.007232,0.009184,0.012032,0.399296,0.007776
+997,491.717,2.03369,0.690336,0.00864,0.234016,0.005504,0.004736,0.006144,0.01024,0.011296,0.401984,0.007776
+998,482.791,2.07129,0.698944,0.009024,0.24784,0.005184,0.004928,0.00624,0.010016,0.010464,0.397312,0.007936
+999,373.654,2.67627,0.71328,0.0088,0.266208,0.004288,0.0056,0.006304,0.009888,0.010976,0.393216,0.008
+1000,477.501,2.09424,0.676,0.008352,0.233472,0.004256,0.00544,0.006272,0.009984,0.010912,0.38912,0.008192
+1001,499.817,2.00073,0.665792,0.008384,0.230624,0.004896,0.004096,0.007168,0.009248,0.011968,0.382304,0.007104
+1002,382.768,2.61255,0.671712,0.00816,0.2376,0.005376,0.004832,0.006144,0.010048,0.010432,0.380928,0.008192
+1003,524.053,1.9082,0.681344,0.008192,0.241344,0.004416,0.005376,0.006368,0.0104,0.010624,0.386624,0.008
+1004,506.617,1.97388,0.68592,0.008672,0.228512,0.00496,0.004064,0.006144,0.01024,0.012032,0.403392,0.007904
+1005,394.187,2.53687,0.746976,0.008192,0.29696,0.004288,0.005664,0.006432,0.01024,0.010272,0.396992,0.007936
+1006,268.59,3.72314,0.719264,0.008192,0.257504,0.004992,0.00416,0.007584,0.010336,0.010752,0.407552,0.008192
+1007,440.857,2.26831,0.786528,0.008544,0.332416,0.005952,0.004288,0.006176,0.01024,0.011488,0.39952,0.007904
+1008,359.361,2.78271,0.716704,0.008224,0.276896,0.005696,0.004544,0.006144,0.01024,0.010304,0.386816,0.00784
+1009,434.635,2.30078,0.722976,0.008192,0.278528,0.005792,0.004448,0.006176,0.010208,0.01152,0.389888,0.008224
+1010,351.497,2.84497,0.700416,0.008192,0.258048,0.005856,0.004384,0.006176,0.01024,0.011872,0.388544,0.007104
+1011,360.881,2.771,0.698944,0.008576,0.234816,0.004896,0.004192,0.006176,0.010208,0.011552,0.410336,0.008192
+1012,469.94,2.12793,0.715328,0.00864,0.248064,0.005472,0.004768,0.006144,0.01024,0.011552,0.412416,0.008032
+1013,382.589,2.61377,0.700416,0.009472,0.258816,0.004192,0.005664,0.006272,0.009984,0.010752,0.387072,0.008192
+1014,503.132,1.98755,0.68032,0.008224,0.23776,0.004288,0.005472,0.006816,0.01008,0.0104,0.389152,0.008128
+1015,364.932,2.74023,0.7168,0.008192,0.263712,0.004576,0.005216,0.006304,0.010016,0.0112,0.400448,0.007136
+1016,335.161,2.98364,0.692672,0.00832,0.249344,0.00496,0.005376,0.006304,0.009952,0.011232,0.389088,0.008096
+1017,514.444,1.94385,0.68944,0.008192,0.232896,0.004384,0.00432,0.005664,0.010272,0.010784,0.405024,0.007904
+1018,476.058,2.10059,0.702464,0.008192,0.256,0.005632,0.004608,0.006144,0.01024,0.011936,0.39264,0.007072
+1019,334.067,2.99341,0.695616,0.008352,0.239616,0.005632,0.004608,0.006144,0.010272,0.01024,0.403008,0.007744
+1020,496.064,2.01587,0.684032,0.008192,0.229376,0.00544,0.0048,0.006144,0.010272,0.011488,0.401184,0.007136
+1021,501.776,1.99292,0.679712,0.009216,0.238304,0.004416,0.005344,0.006304,0.01008,0.011008,0.387072,0.007968
+1022,423.753,2.35986,0.684256,0.008416,0.235008,0.00464,0.005152,0.006272,0.009024,0.011968,0.395584,0.008192
+1023,529.404,1.88892,0.677952,0.008192,0.228608,0.004864,0.004096,0.006144,0.01024,0.012,0.396768,0.00704
+1024,498.236,2.00708,0.692096,0.008192,0.2416,0.00416,0.005664,0.006272,0.010592,0.010272,0.39728,0.008064
+1025,420.923,2.37573,0.697568,0.008672,0.244192,0.005952,0.004288,0.006144,0.010272,0.012192,0.398752,0.007104
+1026,525.6,1.90259,0.677728,0.009792,0.227552,0.00432,0.005472,0.006208,0.00992,0.010848,0.395584,0.008032
+1027,570.871,1.75171,0.682432,0.008192,0.225568,0.00528,0.004928,0.006272,0.010016,0.010528,0.403456,0.008192
+1028,436.907,2.28882,0.693056,0.008896,0.241792,0.005792,0.004448,0.006144,0.01024,0.011904,0.395648,0.008192
+1029,486.634,2.05493,0.686592,0.008544,0.232,0.004256,0.005696,0.00624,0.009984,0.01072,0.401344,0.007808
+1030,543.597,1.8396,0.67984,0.008192,0.225376,0.005408,0.004832,0.006144,0.01024,0.010336,0.401312,0.008
+1031,457.143,2.1875,0.672096,0.008544,0.225632,0.005312,0.004864,0.006208,0.01024,0.01024,0.393216,0.00784
+1032,411.617,2.42944,0.698176,0.008224,0.243872,0.004576,0.005184,0.006272,0.009088,0.011968,0.40112,0.007872
+1033,520.127,1.92261,0.689312,0.008192,0.22528,0.005632,0.004608,0.006144,0.01024,0.01024,0.411104,0.007872
+1034,511.552,1.95483,0.677888,0.009344,0.230272,0.005952,0.004288,0.006144,0.01024,0.01024,0.394848,0.00656
+1035,509.073,1.96436,0.70736,0.008992,0.251904,0.005664,0.004576,0.006144,0.01024,0.011648,0.4,0.008192
+1036,483.932,2.06641,0.679616,0.008704,0.229376,0.004192,0.005632,0.006304,0.01008,0.010656,0.3968,0.007872
+1037,485.021,2.06177,0.692224,0.008192,0.232512,0.005056,0.004096,0.007296,0.010304,0.011104,0.406656,0.007008
+1038,493.019,2.02832,0.684224,0.008608,0.237344,0.004352,0.00544,0.006272,0.010048,0.010976,0.393216,0.007968
+1039,412.695,2.4231,0.695424,0.008192,0.237568,0.004096,0.00576,0.006272,0.009984,0.010752,0.404992,0.007808
+1040,521.053,1.91919,0.67968,0.008416,0.232736,0.004864,0.004064,0.006208,0.010176,0.011936,0.393472,0.007808
+1041,481.26,2.07788,0.699872,0.009952,0.2392,0.0048,0.004096,0.007232,0.009344,0.012096,0.40544,0.007712
+1042,452.647,2.20923,0.698464,0.008288,0.237376,0.004288,0.0056,0.006336,0.01024,0.010592,0.407552,0.008192
+1043,509.199,1.96387,0.678368,0.008544,0.229888,0.0056,0.00464,0.006144,0.010272,0.011552,0.39392,0.007808
+1044,514.767,1.94263,0.681984,0.008192,0.229376,0.005152,0.004896,0.006272,0.01008,0.010464,0.39936,0.008192
+1045,450.903,2.21777,0.743424,0.009696,0.284864,0.004448,0.005344,0.006272,0.010144,0.011008,0.403456,0.008192
+1046,484.619,2.06348,0.703488,0.008864,0.247168,0.004992,0.005536,0.006272,0.01008,0.01088,0.402656,0.00704
+1047,480.019,2.08325,0.682848,0.008896,0.229568,0.005888,0.00432,0.006144,0.01024,0.011808,0.397792,0.008192
+1048,507.182,1.97168,0.694272,0.008448,0.237568,0.005568,0.004672,0.006144,0.010144,0.010368,0.403424,0.007936
+1049,424.456,2.35596,0.699744,0.008192,0.241632,0.004128,0.005632,0.006304,0.010144,0.010688,0.40528,0.007744
+1050,508.315,1.96729,0.700416,0.009504,0.248192,0.004448,0.00544,0.006272,0.01024,0.010848,0.39728,0.008192
+1051,503.194,1.9873,0.673952,0.008192,0.234496,0.004992,0.004224,0.006176,0.010208,0.011648,0.386912,0.007104
+1052,406.995,2.45703,0.688288,0.008064,0.235808,0.004192,0.005632,0.006272,0.009952,0.010816,0.399392,0.00816
+1053,514.444,1.94385,0.69888,0.008704,0.239616,0.005856,0.004384,0.006144,0.01024,0.011904,0.40384,0.008192
+1054,495.584,2.01782,0.682368,0.008608,0.233056,0.004736,0.005952,0.006272,0.010016,0.01056,0.394656,0.008512
+1055,403.07,2.48096,0.706016,0.009504,0.244256,0.004288,0.005792,0.006272,0.01024,0.010464,0.407456,0.007744
+1056,503.999,1.98413,0.675008,0.00832,0.228512,0.004832,0.004096,0.006144,0.0104,0.012128,0.392736,0.00784
+1057,522.849,1.9126,0.679808,0.008576,0.229408,0.004384,0.005568,0.006272,0.00992,0.01072,0.397152,0.007808
+1058,467.794,2.1377,0.739328,0.008192,0.284576,0.004192,0.0056,0.006272,0.009824,0.011072,0.401504,0.008096
+1059,483.304,2.06909,0.69488,0.008768,0.235488,0.00416,0.005632,0.006336,0.010208,0.01056,0.406656,0.007072
+1060,515.026,1.94165,0.694272,0.007552,0.251712,0.004928,0.004096,0.0072,0.010208,0.010848,0.39088,0.006848
+1061,489.776,2.04175,0.682528,0.00816,0.232,0.00416,0.005632,0.006304,0.010144,0.010624,0.397312,0.008192
+1062,408.782,2.44629,0.685152,0.008192,0.23552,0.006144,0.005344,0.006304,0.010016,0.011104,0.393216,0.009312
+1063,526.749,1.89844,0.68608,0.008192,0.227328,0.00528,0.004864,0.00624,0.009856,0.010624,0.406592,0.007104
+1064,533.82,1.87329,0.667648,0.008192,0.231104,0.004416,0.005344,0.006272,0.01024,0.010944,0.383968,0.007168
+1065,521.651,1.91699,0.695136,0.008608,0.241376,0.004928,0.004128,0.006144,0.01024,0.012032,0.399616,0.008064
+1066,487.097,2.05298,0.698144,0.008672,0.231456,0.005632,0.004576,0.006144,0.01024,0.011264,0.41232,0.00784
+1067,524.456,1.90674,0.678048,0.009568,0.230048,0.004288,0.005664,0.006336,0.009792,0.010784,0.394528,0.00704
+1068,488.783,2.0459,0.712704,0.009248,0.250176,0.004768,0.004096,0.0072,0.009216,0.012256,0.408608,0.007136
+1069,418.643,2.38867,0.681344,0.008192,0.235104,0.004544,0.00528,0.006304,0.01024,0.010912,0.392928,0.00784
+1070,458.166,2.18262,0.67584,0.008224,0.227296,0.005472,0.004768,0.006144,0.010208,0.010272,0.395264,0.008192
+1071,481.203,2.07812,0.696,0.00864,0.235616,0.004096,0.005856,0.006272,0.01008,0.010592,0.40704,0.007808
+1072,404.663,2.47119,0.703776,0.008192,0.23552,0.00576,0.00448,0.006144,0.01024,0.011936,0.413664,0.00784
+1073,491.894,2.03296,0.690176,0.009504,0.228064,0.005856,0.004384,0.006176,0.01024,0.011264,0.406496,0.008192
+1074,467.313,2.13989,0.684256,0.00864,0.225344,0.00528,0.004832,0.006272,0.009728,0.011808,0.404448,0.007904
+1075,353.439,2.82935,0.710656,0.008192,0.234944,0.004704,0.004064,0.007296,0.00912,0.012064,0.422112,0.00816
+1076,521.916,1.91602,0.676768,0.008832,0.231232,0.004576,0.005184,0.006304,0.010048,0.011136,0.391264,0.008192
+1077,524.59,1.90625,0.686112,0.008608,0.23152,0.004512,0.00528,0.006272,0.01008,0.010976,0.40112,0.007744
+1078,443.963,2.25244,0.701664,0.009664,0.234048,0.005184,0.004864,0.006304,0.010144,0.010368,0.413216,0.007872
+1079,537.886,1.85913,0.684032,0.008096,0.230592,0.004992,0.004128,0.006144,0.01024,0.01216,0.400896,0.006784
+1080,515.869,1.93848,0.692256,0.008192,0.228736,0.004736,0.004096,0.007424,0.010144,0.011104,0.4096,0.008224
+1081,521.252,1.91846,0.701824,0.008512,0.233184,0.004384,0.005408,0.00624,0.010304,0.010816,0.415072,0.007904
+1082,432.387,2.31274,0.680384,0.00864,0.235264,0.004352,0.00544,0.006272,0.010368,0.01072,0.391136,0.008192
+1083,461.625,2.16626,0.686816,0.008768,0.239712,0.0056,0.004608,0.006144,0.01024,0.010272,0.394464,0.007008
+1084,481.599,2.07642,0.694304,0.0096,0.236,0.004288,0.005408,0.006272,0.009984,0.011072,0.403456,0.008224
+1085,420.707,2.37695,0.689664,0.008192,0.23552,0.005344,0.004896,0.006144,0.01024,0.011776,0.39984,0.007712
+1086,468.65,2.13379,0.688672,0.00848,0.22736,0.005696,0.004512,0.006144,0.01024,0.01024,0.408992,0.007008
+1087,537.886,1.85913,0.699968,0.008192,0.223232,0.00416,0.005664,0.006272,0.022496,0.011616,0.410528,0.007808
+1088,429.215,2.32983,0.700608,0.008192,0.239616,0.005504,0.004736,0.006176,0.01024,0.011424,0.40768,0.00704
+1089,519.533,1.9248,0.684352,0.008512,0.233472,0.005504,0.00464,0.00624,0.009856,0.010624,0.397312,0.008192
+1090,459.347,2.177,0.687168,0.009408,0.2384,0.005248,0.004864,0.006272,0.010112,0.010432,0.394496,0.007936
+1091,438.028,2.28296,0.703008,0.008704,0.255456,0.004864,0.004096,0.006144,0.01024,0.011808,0.393696,0.008
+1092,436.348,2.29175,0.700416,0.009568,0.250528,0.00576,0.00448,0.006144,0.01024,0.011552,0.395104,0.00704
+1093,526.14,1.90063,0.685856,0.008672,0.230944,0.004704,0.004064,0.007296,0.010176,0.011072,0.401088,0.00784
+1094,481.939,2.07495,0.70656,0.00816,0.241696,0.00576,0.00448,0.006144,0.01024,0.01184,0.410048,0.008192
+1095,440.288,2.27124,0.688064,0.009408,0.234304,0.006144,0.004096,0.006144,0.01024,0.01152,0.39808,0.008128
+1096,524.389,1.90698,0.682752,0.00864,0.227456,0.00432,0.005472,0.00624,0.010016,0.01104,0.401376,0.008192
+1097,474.513,2.10742,0.716224,0.008544,0.264192,0.004224,0.006016,0.006144,0.01024,0.01024,0.398784,0.00784
+1098,395.978,2.52539,0.703424,0.008192,0.23648,0.005312,0.004864,0.006208,0.009952,0.010528,0.41376,0.008128
+1099,512.384,1.95166,0.698272,0.00816,0.227168,0.00432,0.005504,0.006272,0.010144,0.01088,0.41776,0.008064
+1100,507.182,1.97168,0.714496,0.008256,0.257152,0.004928,0.00416,0.006144,0.01024,0.011744,0.403968,0.007904
+1101,419.543,2.38354,0.70544,0.00848,0.242304,0.005216,0.004864,0.006272,0.009888,0.010624,0.4096,0.008192
+1102,531.741,1.88062,0.67856,0.008224,0.225856,0.004192,0.00576,0.00624,0.01024,0.010528,0.400416,0.007104
+1103,524.254,1.90747,0.700032,0.008192,0.234912,0.004704,0.005152,0.006304,0.010176,0.011136,0.411648,0.007808
+1104,320.576,3.11938,0.682016,0.008608,0.235808,0.005696,0.004544,0.006144,0.01024,0.01168,0.391488,0.007808
+1105,354.878,2.81787,0.782656,0.00848,0.29696,0.005472,0.004768,0.014336,0.011488,0.011008,0.42192,0.008224
+1106,425.337,2.35107,0.684032,0.008192,0.235424,0.004192,0.0056,0.006272,0.010464,0.010464,0.395232,0.008192
+1107,390.691,2.55957,0.695968,0.009312,0.238272,0.00432,0.005472,0.00624,0.009984,0.011072,0.403456,0.00784
+1108,554.863,1.80225,0.679936,0.008192,0.225312,0.005376,0.004864,0.006144,0.010208,0.010304,0.401376,0.00816
+1109,403.587,2.47778,0.671904,0.007584,0.226048,0.005472,0.004768,0.006144,0.010272,0.01024,0.394272,0.007104
+1110,374.509,2.67017,0.719712,0.008288,0.26064,0.00432,0.005632,0.006304,0.009984,0.010848,0.405504,0.008192
+1111,443.915,2.25269,0.694272,0.008192,0.253504,0.004544,0.005248,0.006272,0.008992,0.011904,0.387424,0.008192
+1112,467.207,2.14038,0.712352,0.008352,0.264192,0.005856,0.004384,0.007296,0.009184,0.012192,0.39312,0.007776
+1113,366.861,2.72583,0.722944,0.009344,0.267072,0.00416,0.005664,0.006464,0.00992,0.01072,0.402624,0.006976
+1114,521.053,1.91919,0.68688,0.008096,0.227552,0.004768,0.004096,0.007232,0.009184,0.011936,0.405664,0.008352
+1115,430.162,2.32471,0.677888,0.007712,0.228032,0.005952,0.004288,0.006144,0.010272,0.012,0.395456,0.008032
+1116,361.422,2.76685,0.714688,0.008256,0.259264,0.004928,0.004096,0.006144,0.01024,0.012,0.401696,0.008064
+1117,556.522,1.79688,0.682304,0.007008,0.231392,0.005216,0.004864,0.00624,0.01008,0.010464,0.399296,0.007744
+1118,448.434,2.22998,0.722464,0.009376,0.273248,0.004096,0.005856,0.006304,0.010368,0.01136,0.394016,0.00784
+1119,357.792,2.79492,0.753664,0.009504,0.289504,0.0056,0.00464,0.006144,0.01008,0.010432,0.409568,0.008192
+1120,465.349,2.14893,0.704032,0.008224,0.249888,0.005472,0.004736,0.006144,0.01024,0.011456,0.4,0.007872
+1121,421.529,2.37231,0.745472,0.008192,0.274432,0.00544,0.0048,0.006144,0.01024,0.011712,0.417408,0.007104
+1122,348.388,2.87036,0.722144,0.008416,0.24576,0.005216,0.004864,0.00624,0.009952,0.02288,0.410976,0.00784
+1123,485.136,2.06128,0.728224,0.0096,0.270976,0.005568,0.004672,0.006144,0.010272,0.01024,0.40288,0.007872
+1124,443.29,2.25586,0.708352,0.008512,0.25136,0.00464,0.005152,0.006304,0.010048,0.011232,0.403296,0.007808
+1125,404.264,2.47363,0.69152,0.009568,0.234144,0.005792,0.004448,0.006144,0.01024,0.011392,0.401984,0.007808
+1126,481.882,2.0752,0.693472,0.008192,0.232864,0.004704,0.00512,0.006336,0.010304,0.011008,0.407072,0.007872
+1127,444.686,2.24878,0.76512,0.009568,0.318112,0.005568,0.004672,0.006144,0.010048,0.010432,0.39248,0.008096
+1128,418.728,2.38818,0.689184,0.008192,0.239168,0.004544,0.005248,0.006272,0.00896,0.011744,0.397216,0.00784
+1129,485.193,2.06104,0.686112,0.008416,0.23344,0.00416,0.005632,0.006272,0.009984,0.010848,0.399328,0.008032
+1130,522.983,1.91211,0.691488,0.009952,0.241152,0.004928,0.004064,0.00768,0.01008,0.010944,0.394912,0.007776
+1131,316.465,3.15991,0.73232,0.009728,0.252416,0.004096,0.00576,0.006272,0.01008,0.010656,0.425568,0.007744
+1132,480.357,2.08179,0.676672,0.008576,0.235456,0.004512,0.005376,0.00624,0.010144,0.010976,0.388352,0.00704
+1133,456.582,2.19019,0.694336,0.008608,0.242816,0.005056,0.004096,0.006144,0.010272,0.01168,0.397888,0.007776
+1134,415.838,2.40479,0.695648,0.008192,0.238656,0.005056,0.004096,0.006144,0.01024,0.01168,0.403712,0.007872
+1135,527.767,1.89478,0.694176,0.009536,0.236128,0.005792,0.004448,0.007296,0.010176,0.0112,0.401408,0.008192
+1136,499.939,2.00024,0.710816,0.009568,0.245888,0.00464,0.00512,0.006336,0.009152,0.011968,0.411136,0.007008
+1137,396.861,2.51978,0.719008,0.00832,0.258048,0.00544,0.0048,0.006144,0.01024,0.01136,0.406432,0.008224
+1138,533.611,1.87402,0.711648,0.008608,0.240192,0.00592,0.00432,0.006144,0.01024,0.011456,0.416576,0.008192
+1139,489.191,2.04419,0.700416,0.008192,0.247808,0.005984,0.004256,0.006144,0.01024,0.011616,0.397984,0.008192
+1140,487.097,2.05298,0.719232,0.008576,0.269376,0.004992,0.00416,0.006176,0.010208,0.011936,0.395616,0.008192
+1141,496.304,2.01489,0.694272,0.0096,0.234112,0.004096,0.005792,0.006272,0.009888,0.010816,0.40656,0.007136
+1142,481.146,2.07837,0.718816,0.008224,0.241632,0.004288,0.005632,0.006464,0.010048,0.010432,0.423936,0.00816
+1143,478.449,2.09009,0.706848,0.008544,0.255296,0.00496,0.004064,0.006144,0.01024,0.012288,0.397312,0.008
+1144,423.009,2.36401,0.688128,0.008192,0.237152,0.004512,0.00528,0.006272,0.008928,0.012,0.398656,0.007136
+1145,501.162,1.99536,0.702016,0.008576,0.2376,0.005248,0.004864,0.00624,0.01024,0.01136,0.410048,0.00784
+1146,467.9,2.13721,0.69696,0.008864,0.243904,0.005568,0.00464,0.006144,0.01024,0.011456,0.398144,0.008
+1147,384.926,2.5979,0.707264,0.008576,0.241472,0.005632,0.004864,0.006304,0.009952,0.010624,0.411648,0.008192
+1148,494.03,2.02417,0.692064,0.009472,0.236288,0.004128,0.005696,0.00624,0.010144,0.010656,0.401408,0.008032
+1149,419.801,2.38208,0.700448,0.008192,0.24576,0.005184,0.004864,0.006272,0.00992,0.010624,0.401408,0.008224
+1150,380.775,2.62622,0.68832,0.008224,0.23936,0.004768,0.004096,0.006144,0.011264,0.011232,0.395296,0.007936
+1151,432.068,2.31445,0.698368,0.009472,0.244448,0.00416,0.005632,0.006272,0.010304,0.010528,0.39936,0.008192
+1152,426.223,2.34619,0.716928,0.00832,0.259296,0.004896,0.004096,0.007264,0.00912,0.012288,0.403456,0.008192
+1153,420.448,2.37842,0.68448,0.008608,0.23552,0.005184,0.004896,0.00624,0.010144,0.0104,0.395264,0.008224
+1154,526.546,1.89917,0.692064,0.008192,0.23552,0.00416,0.005664,0.00624,0.010208,0.010592,0.403456,0.008032
+1155,459.45,2.17651,0.716608,0.008192,0.255968,0.004128,0.005824,0.006304,0.009952,0.01072,0.40752,0.008
+1156,398.676,2.5083,0.684032,0.008192,0.237568,0.005632,0.004608,0.006144,0.010272,0.01024,0.393184,0.008192
+1157,434.82,2.2998,0.696448,0.00864,0.241376,0.005664,0.004864,0.006304,0.01008,0.0104,0.401248,0.007872
+1158,327.523,3.05322,0.738048,0.008608,0.267776,0.00496,0.005568,0.006304,0.010016,0.01088,0.415744,0.008192
+1159,366.959,2.7251,0.71504,0.008064,0.257696,0.004896,0.0056,0.006144,0.009856,0.011104,0.40352,0.00816
+1160,415.458,2.40698,0.718112,0.009312,0.269216,0.00528,0.004864,0.00624,0.01008,0.0104,0.394816,0.007904
+1161,472.161,2.11792,0.706432,0.008608,0.25584,0.004256,0.005536,0.00624,0.009952,0.011008,0.397088,0.007904
+1162,437.327,2.28662,0.69184,0.008576,0.235488,0.005216,0.004864,0.006304,0.010112,0.010432,0.402848,0.008
+1163,384.637,2.59985,0.708064,0.008192,0.237472,0.004192,0.005824,0.006304,0.010208,0.022304,0.405856,0.007712
+1164,451.4,2.21533,0.716288,0.008448,0.262144,0.005888,0.004352,0.006144,0.01024,0.011488,0.399712,0.007872
+1165,461.625,2.16626,0.682784,0.008736,0.233152,0.004672,0.00512,0.00624,0.00912,0.012096,0.395456,0.008192
+1166,481.599,2.07642,0.689248,0.008192,0.23552,0.005184,0.004864,0.006304,0.009888,0.010656,0.400768,0.007872
+1167,460.794,2.17017,0.704288,0.00848,0.249856,0.005376,0.004864,0.006144,0.010272,0.01024,0.401184,0.007872
+1168,431.794,2.31592,0.687872,0.008544,0.235552,0.00416,0.005632,0.006304,0.009888,0.01088,0.398976,0.007936
+1169,479.85,2.08398,0.695744,0.009376,0.232288,0.00592,0.00432,0.006144,0.01024,0.011744,0.407776,0.007936
+1170,466.94,2.1416,0.706112,0.009632,0.24432,0.00416,0.00576,0.006304,0.010016,0.010624,0.407456,0.00784
+1171,389.65,2.56641,0.711872,0.008192,0.260128,0.00544,0.004768,0.006144,0.01024,0.010272,0.398944,0.007744
+1172,509.77,1.96167,0.690176,0.008192,0.23552,0.005728,0.004512,0.006144,0.010272,0.01152,0.401216,0.007072
+1173,455.212,2.19678,0.711808,0.009248,0.237792,0.004896,0.004064,0.006176,0.01024,0.011744,0.419872,0.007776
+1174,413.821,2.4165,0.702464,0.018432,0.231424,0.005664,0.004576,0.006144,0.010272,0.011456,0.406304,0.008192
+1175,493.732,2.02539,0.692032,0.008192,0.23552,0.005664,0.004576,0.006144,0.01024,0.01024,0.403456,0.008
+1176,529.473,1.88867,0.685376,0.008192,0.231456,0.005376,0.004832,0.006144,0.010272,0.011584,0.399712,0.007808
+1177,377.581,2.64844,0.70112,0.008768,0.235872,0.005856,0.004384,0.006176,0.010208,0.011328,0.41056,0.007968
+1178,537.18,1.86157,0.689888,0.008192,0.239456,0.004256,0.005536,0.006304,0.010208,0.01072,0.397248,0.007968
+1179,476.889,2.09692,0.696,0.008352,0.23536,0.005536,0.004704,0.006144,0.010176,0.01152,0.40624,0.007968
+1180,493.137,2.02783,0.738688,0.009664,0.2832,0.004256,0.005664,0.006304,0.009952,0.010688,0.401088,0.007872
+1181,434.912,2.29932,0.711328,0.00864,0.247232,0.004928,0.004064,0.006144,0.01024,0.011968,0.40992,0.008192
+1182,486.288,2.0564,0.686464,0.008576,0.229376,0.005472,0.004768,0.006144,0.01024,0.01024,0.40464,0.007008
+1183,478.896,2.08813,0.729504,0.008608,0.249152,0.004832,0.004064,0.0072,0.009184,0.011968,0.426304,0.008192
+1184,376.09,2.65894,0.729088,0.008192,0.273952,0.004576,0.00528,0.013152,0.01024,0.01024,0.396352,0.007104
+1185,394.833,2.53271,0.708544,0.009696,0.241216,0.00496,0.004128,0.006144,0.01152,0.011008,0.411648,0.008224
+1186,491.599,2.03418,0.71568,0.008896,0.261888,0.004576,0.005216,0.006304,0.01008,0.011104,0.399424,0.008192
+1187,484.275,2.06494,0.687104,0.00944,0.239424,0.00496,0.004224,0.006176,0.011232,0.011264,0.392608,0.007776
+1188,528.107,1.89355,0.694272,0.008224,0.230976,0.005664,0.004864,0.006272,0.010016,0.010496,0.409568,0.008192
+1189,445.993,2.24219,0.7048,0.008448,0.245024,0.004864,0.00528,0.00656,0.009888,0.01104,0.40656,0.007136
+1190,395.749,2.52686,0.702848,0.008224,0.235584,0.004352,0.00544,0.006304,0.009952,0.011104,0.413664,0.008224
+1191,478.169,2.09131,0.684448,0.008608,0.226432,0.004992,0.004096,0.006144,0.01024,0.011904,0.40384,0.008192
+1192,433.898,2.30469,0.893024,0.008672,0.38912,0.017536,0.004992,0.006176,0.022272,0.010464,0.425984,0.007808
+1193,393.09,2.54395,0.711776,0.008192,0.239296,0.004416,0.005344,0.006304,0.010048,0.01104,0.419296,0.00784
+1194,471.563,2.12061,0.692704,0.008736,0.2272,0.004576,0.005216,0.006336,0.009088,0.012096,0.411328,0.008128
+1195,501.531,1.9939,0.681984,0.008192,0.229376,0.005984,0.004256,0.006144,0.01024,0.011872,0.398944,0.006976
+1196,417.065,2.39771,0.711328,0.008832,0.254176,0.005728,0.004512,0.006176,0.010208,0.011648,0.402048,0.008
+1197,492.841,2.02905,0.677888,0.008224,0.227296,0.005376,0.004832,0.006208,0.010144,0.011552,0.396064,0.008192
+1198,497.148,2.01147,0.692224,0.008192,0.223072,0.004256,0.005568,0.00672,0.01024,0.011456,0.415584,0.007136
+1199,307.739,3.24951,0.89088,0.008192,0.423968,0.00528,0.004864,0.006208,0.009984,0.010528,0.413664,0.008192
+1200,421.746,2.37109,0.724992,0.008192,0.267936,0.004448,0.005344,0.006272,0.010016,0.011072,0.40352,0.008192
+1201,484.562,2.06372,0.698368,0.00976,0.238048,0.006144,0.005152,0.006272,0.009088,0.01216,0.403552,0.008192
+1202,409.395,2.44263,0.686688,0.008192,0.235392,0.004832,0.004096,0.007168,0.009248,0.01216,0.397408,0.008192
+1203,508.63,1.96606,0.684576,0.008704,0.231488,0.005312,0.004864,0.006176,0.009824,0.010688,0.400384,0.007136
+1204,446.382,2.24023,0.689984,0.008192,0.231424,0.005216,0.004864,0.006304,0.009984,0.010688,0.405312,0.008
+1205,342.561,2.91919,0.70656,0.008192,0.247616,0.004288,0.005664,0.006304,0.010208,0.010624,0.405472,0.008192
+1206,460.328,2.17236,0.698368,0.009408,0.242496,0.005472,0.004768,0.006144,0.01024,0.011936,0.399744,0.00816
+1207,461.885,2.16504,0.710656,0.008192,0.243712,0.004256,0.005664,0.006272,0.010208,0.010464,0.413696,0.008192
+1208,380.74,2.62646,0.688672,0.008352,0.231808,0.005472,0.004768,0.006144,0.01024,0.01136,0.402336,0.008192
+1209,519.27,1.92578,0.688928,0.008768,0.2296,0.004096,0.005792,0.006272,0.009824,0.01088,0.406656,0.00704
+1210,481.033,2.07886,0.684864,0.006976,0.23552,0.00592,0.00432,0.006176,0.011424,0.011072,0.395264,0.008192
+1211,416.218,2.40259,0.676704,0.008544,0.229888,0.006144,0.004096,0.006144,0.01024,0.012,0.391456,0.008192
+1212,506.743,1.97339,0.72032,0.008192,0.251904,0.005632,0.004608,0.006144,0.01024,0.01168,0.414144,0.007776
+1213,480.188,2.08252,0.681984,0.008192,0.23456,0.00496,0.004192,0.006144,0.01024,0.011776,0.394912,0.007008
+1214,454.505,2.2002,0.720928,0.008224,0.263488,0.0048,0.004096,0.007264,0.00912,0.01216,0.403584,0.008192
+1215,507.119,1.97192,0.688224,0.008256,0.227328,0.005696,0.004544,0.006144,0.010272,0.011232,0.407744,0.007008
+1216,552.468,1.81006,0.686912,0.0088,0.227264,0.004384,0.005504,0.006304,0.010112,0.010848,0.406528,0.007168
+1217,462.825,2.16064,0.690816,0.008736,0.235616,0.005568,0.004672,0.006144,0.01024,0.011392,0.400256,0.008192
+1218,428.676,2.33276,0.681984,0.008192,0.233472,0.00528,0.004864,0.00624,0.010144,0.011488,0.3952,0.007104
+1219,499.025,2.00391,0.6784,0.008416,0.225088,0.004576,0.005248,0.006272,0.00896,0.012032,0.399616,0.008192
+1220,423.184,2.36304,0.720928,0.008192,0.26624,0.004224,0.005632,0.006336,0.010112,0.010592,0.402464,0.007136
+1221,431.113,2.31958,0.700416,0.008192,0.23664,0.00496,0.00416,0.006176,0.01024,0.011808,0.411488,0.006752
+1222,464.083,2.15479,0.68384,0.009472,0.22608,0.005376,0.004832,0.006144,0.01024,0.011584,0.402112,0.008
+1223,532.986,1.87622,0.6792,0.008192,0.221184,0.00576,0.00448,0.007264,0.00912,0.011968,0.403392,0.00784
+1224,472.761,2.11523,0.720288,0.008192,0.269696,0.004736,0.004096,0.007232,0.009184,0.01184,0.397408,0.007904
+1225,453.599,2.20459,0.6776,0.008576,0.228896,0.004576,0.005216,0.006304,0.010112,0.01104,0.395104,0.007776
+1226,577.145,1.73267,0.675232,0.008192,0.227616,0.005216,0.004896,0.006272,0.010144,0.010368,0.394656,0.007872
+1227,465.719,2.14722,0.747296,0.02032,0.284832,0.004192,0.006048,0.006144,0.010272,0.01024,0.39728,0.007968
+1228,388.836,2.57178,0.718656,0.008224,0.261664,0.004928,0.004288,0.006176,0.010208,0.01024,0.404832,0.008096
+1229,510.596,1.9585,0.688224,0.009344,0.226176,0.005472,0.004768,0.006144,0.01008,0.0104,0.408832,0.007008
+1230,505.055,1.97998,0.701728,0.009216,0.23248,0.005472,0.004736,0.006144,0.01024,0.011584,0.414048,0.007808
+1231,451.201,2.21631,0.683808,0.00944,0.232224,0.005536,0.004704,0.006176,0.01024,0.011936,0.395584,0.007968
+1232,485.884,2.05811,0.681984,0.008192,0.22528,0.005504,0.004736,0.006144,0.01024,0.011264,0.402432,0.008192
+1233,485.481,2.05981,0.681984,0.008224,0.22656,0.004832,0.004096,0.006144,0.010272,0.012,0.401664,0.008192
+1234,326.297,3.0647,0.722688,0.00928,0.250816,0.00576,0.00448,0.006144,0.01024,0.011488,0.416544,0.007936
+1235,475.339,2.10376,0.689984,0.009856,0.227712,0.004224,0.005664,0.00624,0.010304,0.010464,0.40752,0.008
+1236,444.203,2.25122,0.708384,0.009376,0.242528,0.006144,0.00528,0.006304,0.010144,0.01104,0.4096,0.007968
+1237,376.921,2.65308,0.70528,0.008672,0.241792,0.0056,0.00464,0.006144,0.01024,0.012288,0.408896,0.007008
+1238,518.612,1.92822,0.68624,0.008352,0.235488,0.005408,0.004832,0.006144,0.01024,0.01024,0.397312,0.008224
+1239,449.813,2.22314,0.724992,0.0096,0.235584,0.004672,0.00528,0.006336,0.008992,0.012128,0.434208,0.008192
+1240,370.88,2.69629,0.740768,0.008192,0.258048,0.005536,0.004704,0.006144,0.01024,0.010272,0.429856,0.007776
+1241,463.401,2.15796,0.697184,0.009024,0.241664,0.005632,0.004608,0.006144,0.01024,0.01024,0.401408,0.008224
+1242,482.109,2.07422,0.702016,0.010144,0.229472,0.005824,0.004416,0.006144,0.01024,0.011648,0.416224,0.007904
+1243,385.724,2.59253,0.688128,0.008192,0.238656,0.004992,0.00416,0.006176,0.01024,0.011584,0.395936,0.008192
+1244,455.516,2.19531,0.721696,0.008256,0.26048,0.00448,0.005344,0.006368,0.010112,0.010912,0.407552,0.008192
+1245,473.69,2.11108,0.730976,0.00944,0.269088,0.005472,0.004768,0.006144,0.01024,0.01216,0.405632,0.008032
+1246,354.816,2.81836,0.696832,0.008224,0.236,0.005376,0.004864,0.006144,0.01024,0.011296,0.406496,0.008192
+1247,475.45,2.10327,0.712256,0.009568,0.237792,0.004544,0.005248,0.006272,0.008992,0.012096,0.419904,0.00784
+1248,500.672,1.99731,0.698368,0.00944,0.24352,0.004928,0.004256,0.006144,0.01024,0.011648,0.4,0.008192
+1249,411.576,2.42969,0.686016,0.009376,0.239648,0.004928,0.004096,0.006144,0.01024,0.012096,0.39136,0.008128
+1250,488.783,2.0459,0.706592,0.008192,0.239616,0.004096,0.005728,0.00624,0.009856,0.010816,0.414848,0.0072
+1251,488.433,2.04736,0.712,0.009728,0.262656,0.004288,0.005632,0.006272,0.01008,0.010624,0.394784,0.007936
+1252,395.94,2.52563,0.695008,0.008224,0.238304,0.005792,0.004416,0.006176,0.01024,0.011904,0.402848,0.007104
+1253,522.849,1.9126,0.710656,0.008192,0.257344,0.0048,0.004096,0.007168,0.009216,0.012064,0.399584,0.008192
+1254,459.863,2.17456,0.70016,0.008224,0.239616,0.006112,0.005152,0.006336,0.010208,0.010912,0.405664,0.007936
+1255,496.184,2.01538,0.723104,0.008352,0.274208,0.00432,0.005472,0.00624,0.009952,0.011104,0.395264,0.008192
+1256,462.407,2.1626,0.692992,0.00864,0.2392,0.004864,0.004064,0.006176,0.011232,0.011264,0.40048,0.007072
+1257,475.615,2.10254,0.702432,0.008768,0.235552,0.004416,0.005376,0.006272,0.01008,0.01104,0.413152,0.007776
+1258,486.172,2.05688,0.700672,0.00848,0.24064,0.005088,0.004096,0.007232,0.010208,0.011232,0.405504,0.008192
+1259,411.493,2.43018,0.711872,0.008352,0.256,0.00576,0.00448,0.006176,0.010208,0.01024,0.402784,0.007872
+1260,499.147,2.00342,0.702464,0.00944,0.250432,0.00432,0.005504,0.006272,0.010208,0.010816,0.39728,0.008192
+1261,428.811,2.33203,0.733184,0.008192,0.27648,0.005728,0.004512,0.006144,0.01024,0.011424,0.402304,0.00816
+1262,422.225,2.36841,0.706592,0.008672,0.225632,0.00592,0.005472,0.006272,0.00896,0.024576,0.413184,0.007904
+1263,495.524,2.01807,0.69024,0.00848,0.234528,0.004992,0.004192,0.006144,0.010336,0.011968,0.401632,0.007968
+1264,503.194,1.9873,0.68848,0.00864,0.240128,0.005888,0.00432,0.006144,0.010272,0.01184,0.39344,0.007808
+1265,388.652,2.573,0.702464,0.009696,0.239168,0.005088,0.004096,0.00736,0.010208,0.011136,0.408608,0.007104
+1266,540.797,1.84912,0.693312,0.008224,0.23344,0.005696,0.004544,0.006144,0.01024,0.011296,0.405888,0.00784
+1267,463.401,2.15796,0.693056,0.008256,0.232032,0.004256,0.005568,0.006272,0.010048,0.010912,0.40752,0.008192
+1268,417.831,2.39331,0.705184,0.008736,0.260128,0.004224,0.005568,0.006304,0.01008,0.010816,0.391168,0.00816
+1269,496.605,2.01367,0.701664,0.008288,0.235552,0.005696,0.004512,0.006176,0.01024,0.012,0.411424,0.007776
+1270,469.509,2.12988,0.69408,0.008608,0.235616,0.004192,0.005664,0.006304,0.00992,0.010784,0.404864,0.008128
+1271,484.333,2.0647,0.704288,0.008192,0.247712,0.004192,0.0056,0.006336,0.009888,0.010976,0.403424,0.007968
+1272,414.575,2.41211,0.719008,0.00832,0.260512,0.004448,0.00544,0.006272,0.010656,0.0104,0.405152,0.007808
+1273,489.952,2.04102,0.68736,0.00992,0.233792,0.005152,0.004864,0.00624,0.01008,0.01056,0.399008,0.007744
+1274,485.308,2.06055,0.717632,0.008672,0.262656,0.005344,0.004864,0.006144,0.010208,0.010272,0.401408,0.008064
+1275,326.219,3.06543,0.739648,0.0088,0.276032,0.004736,0.005216,0.006432,0.010016,0.01104,0.409408,0.007968
+1276,483.875,2.06665,0.7048,0.008768,0.24496,0.004896,0.004096,0.006176,0.010208,0.012,0.405792,0.007904
+1277,406.753,2.4585,0.794752,0.009312,0.344992,0.005632,0.004608,0.006144,0.01024,0.01024,0.396576,0.007008
+1278,516.52,1.93604,0.691744,0.009856,0.241888,0.004256,0.005536,0.006272,0.010208,0.010752,0.394912,0.008064
+1279,482.734,2.07153,0.695648,0.008224,0.239264,0.004448,0.005344,0.006272,0.010144,0.01104,0.403008,0.007904
+1280,465.19,2.14966,0.704032,0.008192,0.251936,0.005664,0.004544,0.006144,0.01024,0.01136,0.397408,0.008544
+1281,385.107,2.59668,0.69168,0.008192,0.236864,0.0048,0.004096,0.006144,0.010272,0.012256,0.40128,0.007776
+1282,531.12,1.88281,0.681536,0.009248,0.230368,0.005312,0.004864,0.006208,0.01008,0.010432,0.397152,0.007872
+1283,455.415,2.1958,0.708032,0.009376,0.248672,0.00416,0.005632,0.006272,0.010176,0.010624,0.405184,0.007936
+1284,408.416,2.44849,0.702464,0.009344,0.24,0.004608,0.005248,0.006304,0.010208,0.010848,0.408864,0.00704
+1285,526.546,1.89917,0.704768,0.008512,0.23888,0.00496,0.004256,0.006144,0.01024,0.011552,0.412384,0.00784
+1286,443.626,2.25415,0.696288,0.008192,0.247808,0.005888,0.004352,0.006144,0.010272,0.01168,0.393792,0.00816
+1287,417.831,2.39331,0.704064,0.008768,0.260096,0.004096,0.005856,0.006432,0.01024,0.011488,0.389344,0.007744
+1288,493.553,2.02612,0.68608,0.008192,0.235424,0.004192,0.005632,0.006304,0.010176,0.010656,0.398432,0.007072
+1289,468.543,2.13428,0.74752,0.0096,0.297504,0.004192,0.005632,0.006272,0.01024,0.010624,0.395264,0.008192
+1290,374.817,2.66797,0.686048,0.008192,0.23568,0.004544,0.00528,0.006272,0.01008,0.010912,0.397248,0.00784
+1291,532.501,1.87793,0.67808,0.008288,0.232928,0.004672,0.005472,0.006272,0.010208,0.010848,0.392384,0.007008
+1292,473.636,2.11133,0.69632,0.008224,0.240864,0.004864,0.004096,0.006144,0.01024,0.011488,0.402208,0.008192
+1293,390.653,2.55981,0.690016,0.008192,0.237568,0.005888,0.004352,0.006144,0.01024,0.011488,0.398112,0.008032
+1294,531.051,1.88306,0.682176,0.008672,0.231584,0.005184,0.004864,0.006336,0.010176,0.011904,0.395168,0.008288
+1295,396.784,2.52026,0.700864,0.008576,0.235584,0.005472,0.004736,0.006144,0.010176,0.010304,0.411648,0.008224
+1296,381.591,2.62061,0.711296,0.008192,0.266784,0.004192,0.005632,0.006304,0.01008,0.010752,0.391168,0.008192
+1297,444.011,2.2522,0.70656,0.008224,0.261408,0.004832,0.004064,0.00624,0.010144,0.01168,0.391776,0.008192
+1298,487.097,2.05298,0.68608,0.009408,0.234304,0.005792,0.004448,0.006144,0.010272,0.011264,0.396256,0.008192
+1299,334.422,2.99023,0.68608,0.008192,0.24064,0.004992,0.004224,0.006144,0.01024,0.011488,0.391968,0.008192
+1300,511.361,1.95557,0.700416,0.008192,0.23936,0.004352,0.005792,0.006304,0.010048,0.010656,0.40752,0.008192
+1301,516.52,1.93604,0.689696,0.009504,0.23856,0.006016,0.004224,0.006144,0.01024,0.012032,0.395264,0.007712
+1302,410.174,2.43799,0.759808,0.008192,0.3072,0.005536,0.004704,0.006144,0.010272,0.012032,0.397568,0.00816
+1303,527.291,1.89648,0.70656,0.008192,0.237568,0.005184,0.004864,0.006304,0.009984,0.010528,0.415744,0.008192
+1304,487.445,2.05151,0.694496,0.008256,0.239072,0.0048,0.004096,0.007232,0.00928,0.012,0.401568,0.008192
+1305,386.342,2.58838,0.739488,0.008192,0.29072,0.004192,0.0056,0.006272,0.010048,0.010688,0.396736,0.00704
+1306,435.05,2.29858,0.712096,0.00928,0.252864,0.005856,0.004384,0.006144,0.01024,0.011456,0.403968,0.007904
+1307,477.779,2.09302,0.70608,0.008224,0.260096,0.004224,0.005632,0.006272,0.009984,0.010656,0.39312,0.007872
+1308,439.579,2.2749,0.691968,0.009472,0.241632,0.004896,0.005408,0.006272,0.010112,0.010976,0.3952,0.008
+1309,377.79,2.64697,0.69632,0.00944,0.235392,0.004928,0.005408,0.00624,0.010304,0.010848,0.405568,0.008192
+1310,481.033,2.07886,0.725952,0.008608,0.2496,0.004896,0.004128,0.007264,0.009248,0.012096,0.423008,0.007104
+1311,399.337,2.50415,0.761856,0.009248,0.297952,0.004096,0.005856,0.006304,0.009952,0.010688,0.409568,0.008192
+1312,528.926,1.89062,0.687968,0.008608,0.235552,0.005824,0.004384,0.006144,0.01024,0.010272,0.399072,0.007872
+1313,465.402,2.14868,0.690176,0.008192,0.236672,0.004896,0.004192,0.006144,0.01024,0.012192,0.399456,0.008192
+1314,495.824,2.01685,0.702016,0.009344,0.254304,0.00464,0.005152,0.006304,0.010528,0.010784,0.393088,0.007872
+1315,415.5,2.40674,0.697312,0.008608,0.239424,0.004864,0.005408,0.006304,0.009952,0.011104,0.403456,0.008192
+1316,516.454,1.93628,0.714976,0.008064,0.251552,0.0048,0.004096,0.007232,0.009152,0.011872,0.410016,0.008192
+1317,403.985,2.47534,0.727744,0.008736,0.260256,0.005888,0.004352,0.006176,0.010208,0.011488,0.412448,0.008192
+1318,351.739,2.84302,0.714976,0.008384,0.26624,0.005472,0.004768,0.006144,0.01024,0.011776,0.394912,0.00704
+1319,478.896,2.08813,0.702464,0.008256,0.245696,0.004096,0.005728,0.006304,0.010048,0.010688,0.403456,0.008192
+1320,487.271,2.05225,0.728704,0.008192,0.264192,0.005824,0.004416,0.006176,0.01024,0.011424,0.4104,0.00784
+1321,418.771,2.38794,0.694176,0.008736,0.238912,0.005024,0.004096,0.0072,0.009184,0.011584,0.401728,0.007712
+1322,501.961,1.99219,0.684256,0.008768,0.237696,0.00416,0.005664,0.006272,0.010208,0.010592,0.393024,0.007872
+1323,492.13,2.03198,0.69296,0.008704,0.23984,0.005408,0.004832,0.006144,0.01008,0.0104,0.39936,0.008192
+1324,408.09,2.45044,0.696352,0.008192,0.23936,0.004352,0.0056,0.006688,0.010176,0.01136,0.4024,0.008224
+1325,500.917,1.99634,0.71344,0.00896,0.25088,0.005024,0.004192,0.006144,0.01024,0.011584,0.408256,0.00816
+1326,449.468,2.22485,0.708608,0.008192,0.239616,0.005888,0.004352,0.006144,0.01024,0.011808,0.415296,0.007072
+1327,427.424,2.3396,0.69632,0.008192,0.247104,0.0048,0.005312,0.006272,0.010112,0.010912,0.395456,0.00816
+1328,497.45,2.01025,0.706368,0.0088,0.24576,0.005888,0.004352,0.006144,0.01024,0.011744,0.405632,0.007808
+1329,490.011,2.04077,0.69856,0.008576,0.238848,0.004864,0.004096,0.006144,0.011424,0.011104,0.405504,0.008
+1330,433.302,2.30786,0.82928,0.008224,0.376832,0.004192,0.005696,0.006304,0.01024,0.010464,0.399328,0.008
+1331,466.409,2.14404,0.706528,0.008256,0.257376,0.004704,0.005152,0.006272,0.009056,0.01216,0.395392,0.00816
+1332,515.026,1.94165,0.689696,0.008192,0.236704,0.004928,0.004128,0.006144,0.01024,0.011968,0.39952,0.007872
+1333,473.252,2.11304,0.712704,0.008192,0.257696,0.004448,0.005344,0.006272,0.009984,0.011168,0.401408,0.008192
+1334,412.986,2.42139,0.69776,0.008416,0.241376,0.004384,0.005472,0.006304,0.010048,0.010944,0.402976,0.00784
+1335,495.045,2.02002,0.691488,0.009504,0.233728,0.004576,0.005216,0.00624,0.010048,0.011264,0.403072,0.00784
+1336,506.617,1.97388,0.707776,0.00976,0.242144,0.005728,0.004512,0.006176,0.01024,0.012224,0.409184,0.007808
+1337,327.759,3.05103,0.690176,0.008192,0.239616,0.005536,0.004704,0.006144,0.01024,0.011808,0.395872,0.008064
+1338,521.12,1.91895,0.684256,0.008576,0.237536,0.004128,0.005664,0.006272,0.010208,0.010656,0.393184,0.008032
+1339,503.07,1.98779,0.69664,0.00848,0.23536,0.00464,0.005184,0.00624,0.010144,0.012352,0.406304,0.007936
+1340,392.902,2.54517,0.702048,0.009248,0.239712,0.004928,0.00416,0.006176,0.010208,0.012096,0.40768,0.00784
+1341,496.846,2.0127,0.689472,0.008448,0.2304,0.004928,0.004288,0.006176,0.010208,0.011712,0.405408,0.007904
+1342,514.767,1.94263,0.712608,0.00688,0.248832,0.005056,0.004128,0.006176,0.01024,0.011584,0.411744,0.007968
+1343,375.057,2.66626,0.70464,0.008192,0.246784,0.004928,0.004288,0.006144,0.010272,0.011648,0.405376,0.007008
+1344,466.249,2.14478,0.724896,0.00944,0.271136,0.004096,0.005856,0.006304,0.010144,0.010464,0.39936,0.008096
+1345,494.806,2.021,0.69952,0.009408,0.232256,0.005568,0.004672,0.006144,0.01008,0.0104,0.413216,0.007776
+1346,452.297,2.21094,0.818944,0.008192,0.35328,0.00512,0.004096,0.006144,0.010272,0.012096,0.411808,0.007936
+1347,509.643,1.96216,0.708,0.009536,0.236224,0.005664,0.004576,0.006144,0.010272,0.010272,0.41744,0.007872
+1348,479.569,2.08521,0.689984,0.008192,0.23552,0.005216,0.004832,0.006272,0.01008,0.010464,0.401408,0.008
+1349,471.618,2.12036,0.746496,0.007168,0.290816,0.00416,0.005632,0.006304,0.009952,0.01184,0.403456,0.007168
+1350,421.486,2.37256,0.868352,0.00928,0.42624,0.005824,0.00512,0.006176,0.011648,0.010848,0.385024,0.008192
+1351,476.113,2.10034,0.722656,0.008736,0.262144,0.005344,0.004832,0.00624,0.010208,0.01024,0.407072,0.00784
+1352,467.954,2.13696,0.746048,0.008704,0.282304,0.00448,0.005344,0.006432,0.010112,0.010912,0.409568,0.008192
+1353,408.253,2.44946,0.698368,0.009344,0.235776,0.004736,0.004096,0.007232,0.009184,0.011648,0.40816,0.008192
+1354,499.086,2.00366,0.692224,0.009376,0.236384,0.005728,0.004512,0.006144,0.01024,0.011744,0.399904,0.008192
+1355,477.056,2.09619,0.712704,0.00944,0.250272,0.004512,0.005248,0.006272,0.008928,0.012288,0.407552,0.008192
+1356,407.724,2.45264,0.688352,0.008352,0.234688,0.004928,0.00416,0.006144,0.01024,0.011872,0.399776,0.008192
+1357,493.197,2.02759,0.687328,0.009952,0.231712,0.004192,0.005632,0.006272,0.01024,0.01056,0.400928,0.00784
+1358,393.166,2.54346,0.710304,0.008192,0.249856,0.005984,0.004256,0.006144,0.01024,0.01184,0.405888,0.007904
+1359,433.073,2.30908,0.690176,0.008192,0.236992,0.004672,0.005152,0.006272,0.009088,0.012096,0.39952,0.008192
+1360,530.707,1.88428,0.688128,0.008192,0.233472,0.005504,0.004736,0.006144,0.01024,0.011936,0.399712,0.008192
+1361,489.659,2.04224,0.690176,0.008192,0.23344,0.004128,0.005632,0.00624,0.009984,0.010912,0.403456,0.008192
+1362,409.641,2.44116,0.69632,0.009504,0.243744,0.004832,0.004064,0.007168,0.009248,0.012032,0.397536,0.008192
+1363,535.075,1.8689,0.694272,0.008192,0.229216,0.004256,0.005536,0.006432,0.009888,0.010912,0.411648,0.008192
+1364,440.288,2.27124,0.693088,0.008192,0.23824,0.005152,0.004864,0.006304,0.010336,0.010208,0.402784,0.007008
+1365,448.189,2.2312,0.771296,0.00832,0.31248,0.004832,0.004096,0.007296,0.010176,0.011072,0.405216,0.007808
+1366,394.339,2.53589,0.697152,0.008576,0.249472,0.004928,0.004096,0.006144,0.01024,0.012192,0.393312,0.008192
+1367,504.309,1.98291,0.70112,0.00864,0.235776,0.004224,0.005664,0.006272,0.009952,0.010752,0.411648,0.008192
+1368,416.981,2.39819,0.74944,0.00848,0.294688,0.00432,0.005664,0.006272,0.010144,0.01072,0.401312,0.00784
+1369,471.944,2.1189,0.715264,0.008608,0.234816,0.004896,0.004064,0.006144,0.01024,0.011456,0.426816,0.008224
+1370,514.056,1.94531,0.712224,0.008192,0.238976,0.004736,0.004096,0.007232,0.009248,0.012096,0.419744,0.007904
+1371,472.543,2.11621,0.68576,0.008288,0.237472,0.005952,0.004288,0.006144,0.01024,0.012288,0.393248,0.00784
+1372,433.485,2.30688,0.705728,0.009248,0.248224,0.004672,0.004096,0.007424,0.010208,0.01104,0.403008,0.007808
+1373,500.672,1.99731,0.688256,0.00832,0.243712,0.005856,0.004384,0.006176,0.010208,0.011648,0.39088,0.007072
+1374,499.451,2.0022,0.7008,0.008672,0.239648,0.005472,0.004768,0.006144,0.010272,0.011488,0.406272,0.008064
+1375,410.421,2.43652,0.679648,0.009344,0.230272,0.005664,0.004576,0.006144,0.01024,0.011424,0.39408,0.007904
+1376,512.513,1.95117,0.683296,0.008192,0.22704,0.00544,0.004864,0.006272,0.010112,0.010496,0.403104,0.007776
+1377,511.361,1.95557,0.690176,0.009632,0.227936,0.005184,0.004832,0.006272,0.010176,0.0104,0.408992,0.006752
+1378,470.859,2.12378,0.709504,0.008608,0.243808,0.00448,0.005152,0.006272,0.009088,0.011936,0.411968,0.008192
+1379,537.886,1.85913,0.67808,0.00848,0.229344,0.005568,0.004672,0.006144,0.01024,0.010272,0.395232,0.008128
+1380,473.8,2.1106,0.69552,0.009344,0.246656,0.005504,0.004736,0.006144,0.01024,0.011648,0.393376,0.007872
+1381,482.62,2.07202,0.686528,0.00848,0.239424,0.00432,0.005472,0.006784,0.010048,0.010432,0.39456,0.007008
+1382,379.928,2.63208,0.702464,0.009536,0.240352,0.005792,0.004416,0.006144,0.01024,0.011648,0.406144,0.008192
+1383,476.058,2.10059,0.688128,0.008928,0.233696,0.005952,0.004288,0.006176,0.01024,0.010208,0.400768,0.007872
+1384,415.711,2.40552,0.73376,0.008672,0.254048,0.00592,0.004288,0.006144,0.010272,0.011648,0.42592,0.006848
+1385,435.791,2.29468,0.701888,0.008224,0.237568,0.004128,0.00544,0.006272,0.01008,0.010944,0.411456,0.007776
+1386,426.356,2.34546,0.680512,0.008768,0.233472,0.005408,0.004832,0.006144,0.010176,0.01152,0.393152,0.00704
+1387,519.533,1.9248,0.698464,0.008288,0.24576,0.005856,0.004384,0.006144,0.01024,0.012064,0.397536,0.008192
+1388,435.652,2.29541,0.701376,0.008704,0.256288,0.004256,0.005504,0.006368,0.010304,0.01168,0.39008,0.008192
+1389,484.848,2.0625,0.691744,0.008192,0.23296,0.004608,0.00528,0.006272,0.010144,0.011072,0.405312,0.007904
+1390,479.457,2.08569,0.700896,0.008672,0.238784,0.004928,0.004096,0.007328,0.009088,0.012256,0.407552,0.008192
+1391,394.605,2.53418,0.712096,0.008192,0.247168,0.004736,0.00512,0.006304,0.010112,0.0112,0.411456,0.007808
+1392,520.193,1.92236,0.691808,0.008224,0.237536,0.0056,0.00464,0.006176,0.01024,0.012096,0.39952,0.007776
+1393,424.984,2.35303,0.681632,0.009568,0.232096,0.004128,0.005696,0.006272,0.009952,0.010848,0.3952,0.007872
+1394,359.078,2.78491,0.731136,0.008192,0.27648,0.005984,0.004256,0.006176,0.01024,0.011456,0.40016,0.008192
+1395,433.715,2.30566,0.720096,0.00832,0.249824,0.005632,0.00464,0.006144,0.01024,0.01024,0.417216,0.00784
+1396,462.407,2.1626,0.722976,0.008224,0.249856,0.005216,0.004864,0.006304,0.010048,0.011648,0.418624,0.008192
+1397,400.508,2.49683,0.707168,0.008704,0.256096,0.005632,0.004576,0.006144,0.01024,0.01136,0.396192,0.008224
+1398,489.308,2.0437,0.688256,0.008576,0.233472,0.004224,0.005664,0.006272,0.010048,0.010656,0.401408,0.007936
+1399,502.577,1.98975,0.6976,0.008192,0.239552,0.005312,0.004864,0.006272,0.01024,0.011808,0.40352,0.00784
+1400,359.519,2.78149,0.704704,0.00928,0.243872,0.004896,0.004096,0.006144,0.01024,0.012064,0.407104,0.007008
+1401,480.582,2.08081,0.694272,0.008192,0.237568,0.00512,0.00512,0.006144,0.010272,0.011584,0.402112,0.00816
+1402,494.447,2.02246,0.690752,0.00864,0.246016,0.004416,0.005408,0.00624,0.010272,0.010816,0.391104,0.00784
+1403,346.854,2.88306,0.702592,0.00832,0.256,0.005696,0.004544,0.006176,0.01024,0.01024,0.394368,0.007008
+1404,486.808,2.0542,0.712992,0.008544,0.259424,0.004928,0.00416,0.006176,0.01024,0.012128,0.399488,0.007904
+1405,502.762,1.98901,0.684992,0.007104,0.237312,0.0064,0.00528,0.008128,0.010624,0.010784,0.392512,0.006848
+1406,340.85,2.93384,0.694912,0.008416,0.246112,0.005728,0.004512,0.006144,0.01024,0.012064,0.394688,0.007008
+1407,484.734,2.06299,0.69888,0.008608,0.235584,0.00416,0.005632,0.006272,0.01008,0.010784,0.409568,0.008192
+1408,433.898,2.30469,0.716992,0.008448,0.257408,0.004736,0.004096,0.007232,0.009184,0.012256,0.405504,0.008128
+1409,396.515,2.52197,0.713472,0.008704,0.24768,0.00448,0.005344,0.00624,0.008896,0.012192,0.411744,0.008192
+1410,490.715,2.03784,0.697696,0.0096,0.231456,0.004704,0.004096,0.007264,0.010176,0.011232,0.41136,0.007808
+1411,442.476,2.26001,0.692352,0.008192,0.24112,0.00464,0.005152,0.006272,0.009056,0.011968,0.398976,0.006976
+1412,387.182,2.58276,0.700096,0.00816,0.244032,0.005696,0.004544,0.006144,0.010272,0.01168,0.40176,0.007808
+1413,441.427,2.26538,0.735296,0.008576,0.268288,0.005824,0.004416,0.006144,0.010272,0.01136,0.412544,0.007872
+1414,505.242,1.97925,0.700384,0.008192,0.243712,0.005408,0.004832,0.006144,0.010272,0.011584,0.40208,0.00816
+1415,388.947,2.57104,0.709024,0.008832,0.247936,0.00432,0.005568,0.006272,0.00992,0.010944,0.40736,0.007872
+1416,485.999,2.05762,0.690176,0.008192,0.23728,0.004384,0.00544,0.006272,0.00992,0.010976,0.39952,0.008192
+1417,418.814,2.3877,0.685952,0.0096,0.232096,0.006112,0.004096,0.007296,0.010144,0.011232,0.397312,0.008064
+1418,384.42,2.60132,0.711328,0.008224,0.26688,0.005216,0.00464,0.006272,0.009952,0.010784,0.391168,0.008192
+1419,497.933,2.0083,0.692608,0.008576,0.239072,0.00464,0.00512,0.006496,0.009952,0.01104,0.400736,0.006976
+1420,472.161,2.11792,0.717184,0.009728,0.24256,0.005216,0.004896,0.006272,0.010112,0.010368,0.41984,0.008192
+1421,386.561,2.58691,0.715072,0.008448,0.254368,0.00576,0.004448,0.006144,0.01024,0.011424,0.406368,0.007872
+1422,497.631,2.00952,0.714944,0.009536,0.248032,0.004576,0.005248,0.006304,0.010208,0.011008,0.413024,0.007008
+1423,538.522,1.85693,0.683616,0.008544,0.228864,0.004608,0.004096,0.007168,0.009248,0.012256,0.400992,0.00784
+1424,415.5,2.40674,0.781056,0.008576,0.323808,0.004256,0.005792,0.006304,0.009952,0.01072,0.403456,0.008192
+1425,514.379,1.94409,0.694624,0.008544,0.239616,0.004096,0.005696,0.006272,0.010336,0.010464,0.401408,0.008192
+1426,518.941,1.927,0.688416,0.00832,0.228864,0.004768,0.004096,0.007296,0.009184,0.012064,0.405632,0.008192
+1427,496.244,2.01514,0.746048,0.008736,0.278784,0.006144,0.004096,0.00624,0.011264,0.011168,0.411648,0.007968
+1428,377.72,2.64746,0.708384,0.008192,0.256,0.005792,0.004448,0.006176,0.01024,0.011328,0.39824,0.007968
+1429,511.808,1.95386,0.684032,0.008192,0.231424,0.004256,0.005632,0.006272,0.01008,0.010624,0.39936,0.008192
+1430,451.4,2.21533,0.749216,0.008192,0.288768,0.006144,0.004096,0.0072,0.009344,0.012128,0.405376,0.007968
+1431,404.304,2.47339,0.703104,0.008576,0.238112,0.005472,0.004768,0.006144,0.01024,0.01136,0.410528,0.007904
+1432,533.889,1.87305,0.676608,0.006944,0.229344,0.005184,0.004864,0.006272,0.009952,0.010592,0.395264,0.008192
+1433,482.052,2.07446,0.692768,0.00864,0.239392,0.004416,0.005376,0.00624,0.010144,0.011008,0.39936,0.008192
+1434,355.556,2.8125,0.694272,0.008192,0.249408,0.004544,0.005248,0.006304,0.009056,0.01216,0.392256,0.007104
+1435,483.932,2.06641,0.685888,0.008672,0.23376,0.00528,0.004832,0.006208,0.01008,0.010464,0.398752,0.00784
+1436,471.509,2.12085,0.716864,0.00864,0.254208,0.005216,0.004864,0.006272,0.01008,0.010432,0.40864,0.008512
+1437,411.99,2.42725,0.721568,0.008448,0.235328,0.004672,0.00512,0.006272,0.00912,0.012096,0.433408,0.007104
+1438,487.039,2.05322,0.692992,0.00864,0.22928,0.00464,0.005152,0.006304,0.009088,0.012224,0.4096,0.008064
+1439,555.089,1.80151,0.702464,0.008256,0.239552,0.005408,0.004832,0.006144,0.010176,0.010336,0.409568,0.008192
+1440,449.221,2.22607,0.741184,0.008192,0.290304,0.004608,0.005184,0.006272,0.009024,0.012032,0.397408,0.00816
+1441,470.426,2.12573,0.702208,0.008192,0.23552,0.005728,0.004512,0.006176,0.01024,0.01024,0.413664,0.007936
+1442,508.757,1.96558,0.681984,0.008192,0.232608,0.004896,0.00416,0.006144,0.010272,0.012032,0.39552,0.00816
+1443,468.704,2.13354,0.692736,0.008608,0.23904,0.004768,0.004096,0.006144,0.01136,0.011168,0.400512,0.00704
+1444,443.77,2.25342,0.725024,0.008192,0.258048,0.005664,0.004576,0.006144,0.010272,0.011552,0.412352,0.008224
+1445,470.21,2.12671,0.729024,0.024576,0.256,0.00416,0.005632,0.006336,0.010208,0.010528,0.403456,0.008128
+1446,478.337,2.09058,0.7056,0.009312,0.248736,0.005248,0.004864,0.006272,0.009984,0.010528,0.402784,0.007872
+1447,332.576,3.00684,0.6928,0.008512,0.240992,0.00496,0.00416,0.006144,0.01024,0.012256,0.397344,0.008192
+1448,465.507,2.14819,0.719392,0.008608,0.261984,0.004512,0.00528,0.006304,0.008928,0.011872,0.40384,0.008064
+1449,479.625,2.08496,0.698368,0.009504,0.238304,0.005536,0.004704,0.006144,0.01024,0.010272,0.405472,0.008192
+1450,356.981,2.80127,0.730368,0.008192,0.266176,0.00416,0.005632,0.006304,0.010048,0.010784,0.411232,0.00784
+1451,477.723,2.09326,0.7232,0.008448,0.25168,0.005632,0.004832,0.006144,0.01024,0.010272,0.41776,0.008192
+1452,446.187,2.24121,0.705472,0.00864,0.254464,0.005856,0.004384,0.006144,0.01024,0.011712,0.396992,0.00704
+1453,486.461,2.05566,0.6848,0.008768,0.23344,0.004448,0.005376,0.006272,0.01008,0.011008,0.397312,0.008096
+1454,397.4,2.51636,0.69376,0.007648,0.2376,0.004704,0.005152,0.006272,0.009024,0.011744,0.403808,0.007808
+1455,464.083,2.15479,0.711328,0.00864,0.248032,0.005664,0.004576,0.006176,0.01024,0.011488,0.409408,0.007104
+1456,440.383,2.27075,0.693216,0.008768,0.245504,0.004768,0.004096,0.0072,0.009184,0.012288,0.394592,0.006816
+1457,506.743,1.97339,0.71488,0.009408,0.24864,0.004224,0.00576,0.006272,0.010272,0.010336,0.412928,0.00704
+1458,503.999,1.98413,0.712704,0.008192,0.251904,0.004096,0.005696,0.006336,0.010144,0.010624,0.407552,0.00816
+1459,398.25,2.51099,0.69184,0.009248,0.242656,0.005632,0.004608,0.006176,0.010208,0.01024,0.395264,0.007808
+1460,520.127,1.92261,0.698368,0.008192,0.233472,0.0056,0.00464,0.006144,0.01024,0.01024,0.412832,0.007008
+1461,514.508,1.9436,0.690176,0.009728,0.231936,0.005952,0.004288,0.006176,0.010208,0.01152,0.403264,0.007104
+1462,507.182,1.97168,0.745504,0.00976,0.295392,0.004224,0.005632,0.006304,0.009792,0.010912,0.395264,0.008224
+1463,446.479,2.23975,0.706784,0.008416,0.241664,0.005472,0.004768,0.006144,0.01024,0.011296,0.410336,0.008448
+1464,487.445,2.05151,0.686816,0.00816,0.232096,0.004352,0.005664,0.006304,0.010304,0.010496,0.401408,0.008032
+1465,472.761,2.11523,0.689472,0.009248,0.237728,0.004896,0.004128,0.006176,0.01024,0.011936,0.397184,0.007936
+1466,428.99,2.33105,0.693824,0.00864,0.241664,0.005312,0.004864,0.006208,0.009888,0.010624,0.398528,0.008096
+1467,507.056,1.97217,0.698656,0.00848,0.23248,0.00496,0.004224,0.006176,0.010208,0.011744,0.412192,0.008192
+1468,493.613,2.02588,0.682528,0.008672,0.235424,0.00448,0.005312,0.006272,0.010336,0.010848,0.393216,0.007968
+1469,362.189,2.76099,0.74096,0.008416,0.278528,0.004256,0.005696,0.006272,0.00992,0.01072,0.409312,0.00784
+1470,479.906,2.08374,0.692064,0.008192,0.238816,0.004896,0.0056,0.006304,0.010112,0.010784,0.399328,0.008032
+1471,496.545,2.01392,0.710656,0.008192,0.241088,0.004672,0.005216,0.006304,0.00896,0.012288,0.415744,0.008192
+1472,381.983,2.61792,0.69488,0.008192,0.246368,0.004096,0.005824,0.006304,0.010112,0.01056,0.396288,0.007136
+1473,483.019,2.07031,0.688128,0.008192,0.234528,0.005056,0.004128,0.006144,0.010272,0.011936,0.400928,0.006944
+1474,475.174,2.10449,0.6904,0.008384,0.243744,0.005248,0.00496,0.006144,0.01024,0.01152,0.393248,0.006912
+1475,408.782,2.44629,0.686848,0.008608,0.243296,0.004928,0.004096,0.006144,0.01024,0.011872,0.389536,0.008128
+1476,306.541,3.26221,0.701408,0.008608,0.232064,0.005568,0.00464,0.006144,0.01024,0.011264,0.41472,0.00816
+1477,461.002,2.16919,0.732576,0.00944,0.273056,0.004224,0.005568,0.006272,0.010144,0.010816,0.405344,0.007712
+1478,405.143,2.46826,0.704512,0.008192,0.241664,0.005376,0.004864,0.006144,0.01024,0.01024,0.4096,0.008192
+1479,466.621,2.14307,0.698912,0.008928,0.23712,0.00464,0.00512,0.006304,0.009248,0.012096,0.406944,0.008512
+1480,479.289,2.08643,0.709152,0.008672,0.240032,0.005824,0.004416,0.006144,0.01024,0.011488,0.414496,0.00784
+1481,409.764,2.44043,0.702304,0.00928,0.247904,0.00496,0.004096,0.006144,0.010272,0.011872,0.399744,0.008032
+1482,480.131,2.08276,0.683488,0.009632,0.229984,0.006144,0.004096,0.006144,0.01024,0.012,0.397376,0.007872
+1483,497.691,2.00928,0.710016,0.009536,0.252608,0.005696,0.004544,0.006176,0.010176,0.010304,0.403104,0.007872
+1484,374.92,2.66724,0.7024,0.008192,0.239072,0.00464,0.00528,0.006272,0.010304,0.011008,0.409504,0.008128
+1485,510.214,1.95996,0.676672,0.008768,0.227136,0.004544,0.005248,0.006272,0.009984,0.0112,0.395424,0.008096
+1486,475.064,2.10498,0.705888,0.009248,0.230368,0.005984,0.004256,0.006144,0.01024,0.01168,0.420064,0.007904
+1487,345.829,2.8916,0.769664,0.008352,0.310976,0.004416,0.00544,0.006272,0.010112,0.010944,0.40528,0.007872
+1488,418.044,2.39209,0.71216,0.008192,0.259616,0.004576,0.005248,0.006304,0.010048,0.011136,0.39872,0.00832
+1489,415.584,2.40625,0.714752,0.008192,0.253152,0.004896,0.004096,0.006144,0.011424,0.011008,0.40768,0.00816
+1490,341.504,2.92822,0.72912,0.008192,0.274016,0.004512,0.00528,0.00624,0.010048,0.0112,0.401408,0.008224
+1491,368.378,2.7146,0.71472,0.008544,0.270048,0.004352,0.005472,0.006272,0.009856,0.011168,0.39104,0.007968
+1492,367.717,2.71948,0.710368,0.00928,0.256896,0.00416,0.00576,0.006304,0.010016,0.01216,0.397888,0.007904
+1493,418.814,2.3877,0.699872,0.008352,0.242752,0.005056,0.004096,0.006144,0.01024,0.012064,0.403456,0.007712
+1494,392.939,2.54492,0.715808,0.008192,0.264192,0.005408,0.004832,0.006144,0.01024,0.011488,0.397408,0.007904
+1495,338.233,2.95654,0.772096,0.008576,0.285024,0.005568,0.004672,0.006144,0.01024,0.021696,0.422432,0.007744
+1496,360.627,2.77295,0.746496,0.009216,0.278528,0.005152,0.004864,0.006304,0.010048,0.010528,0.413568,0.008288
+1497,392.939,2.54492,0.718944,0.008288,0.260096,0.005792,0.004448,0.006144,0.01024,0.011264,0.405792,0.00688
+1498,273.833,3.65186,0.721088,0.009248,0.263136,0.004128,0.005792,0.006272,0.00992,0.010752,0.4048,0.00704
+1499,436.86,2.28906,0.727904,0.008672,0.276864,0.005568,0.004672,0.006144,0.01024,0.011776,0.396928,0.00704
+1500,384.673,2.59961,0.69824,0.008704,0.241664,0.005344,0.004864,0.006176,0.01008,0.01152,0.40208,0.007808
+1501,495.284,2.01904,0.704512,0.008192,0.243712,0.005696,0.004544,0.006144,0.01024,0.010368,0.407424,0.008192
+1502,483.932,2.06641,0.72528,0.00848,0.271648,0.004864,0.004064,0.007168,0.009344,0.011872,0.399648,0.008192
+1503,369.475,2.70654,0.70544,0.008512,0.249984,0.004672,0.00416,0.007232,0.00912,0.012,0.401664,0.008096
+1504,547.887,1.8252,0.67872,0.00864,0.2312,0.004704,0.005184,0.00624,0.009152,0.012064,0.393344,0.008192
+1505,424.632,2.35498,0.7168,0.009344,0.256896,0.0056,0.00464,0.006144,0.010272,0.011488,0.404224,0.008192
+1506,388.836,2.57178,0.692256,0.008192,0.237504,0.004896,0.005184,0.006304,0.01008,0.011168,0.401088,0.00784
+1507,515.869,1.93848,0.69072,0.006688,0.2312,0.00432,0.005536,0.006272,0.010432,0.011552,0.407712,0.007008
+1508,430.886,2.3208,0.710848,0.008352,0.258048,0.005344,0.004864,0.00608,0.010016,0.01056,0.400608,0.006976
+1509,397.13,2.51807,0.70224,0.008192,0.243712,0.004096,0.006144,0.006144,0.01024,0.011296,0.404448,0.007968
+1510,507.559,1.97021,0.684064,0.008416,0.22912,0.004352,0.00544,0.006272,0.009952,0.011104,0.401408,0.008
+1511,543.958,1.83838,0.684512,0.008608,0.229472,0.005856,0.004352,0.006144,0.01024,0.012,0.400704,0.007136
+1512,405.946,2.46338,0.690176,0.009248,0.240256,0.004448,0.005344,0.006336,0.010144,0.010944,0.395264,0.008192
+1513,504.309,1.98291,0.67824,0.00864,0.223776,0.005632,0.004608,0.006144,0.01024,0.011296,0.400192,0.007712
+1514,343.336,2.9126,0.69616,0.009312,0.227648,0.004704,0.004096,0.007296,0.009248,0.011808,0.414016,0.008032
+1515,466.727,2.14258,0.709888,0.009408,0.252672,0.00416,0.005664,0.006272,0.009952,0.01088,0.403072,0.007808
+1516,496.967,2.01221,0.690208,0.008224,0.230784,0.004736,0.004096,0.007264,0.009152,0.01184,0.40592,0.008192
+1517,549.504,1.81982,0.681984,0.009568,0.229824,0.00432,0.005504,0.00624,0.010272,0.010752,0.397312,0.008192
+1518,484.39,2.06445,0.733472,0.00848,0.270144,0.004288,0.005504,0.006272,0.00992,0.01104,0.410912,0.006912
+1519,494.208,2.02344,0.68896,0.008608,0.229792,0.004096,0.005728,0.00624,0.01008,0.01072,0.405504,0.008192
+1520,519.797,1.92383,0.682016,0.00928,0.232384,0.005632,0.004608,0.006144,0.01024,0.010272,0.395232,0.008224
+1521,472.979,2.11426,0.70448,0.008224,0.239616,0.004096,0.005696,0.006432,0.01024,0.0104,0.411648,0.008128
+1522,382.446,2.61475,0.71328,0.008384,0.243648,0.004576,0.005184,0.006272,0.010144,0.011104,0.415776,0.008192
+1523,515.999,1.93799,0.685952,0.00944,0.231488,0.004832,0.004096,0.006144,0.011488,0.01104,0.39936,0.008064
+1524,520.061,1.92285,0.687744,0.008448,0.226784,0.00464,0.005248,0.006272,0.009056,0.012128,0.407328,0.00784
+1525,422.268,2.36816,0.691872,0.008192,0.233536,0.005888,0.004288,0.006144,0.010272,0.01152,0.40416,0.007872
+1526,519.665,1.92432,0.690688,0.008704,0.227328,0.005952,0.004288,0.006176,0.010208,0.011904,0.409376,0.006752
+1527,510.978,1.95703,0.704352,0.008192,0.247584,0.005664,0.0048,0.006144,0.01024,0.011328,0.402368,0.008032
+1528,533.472,1.87451,0.694496,0.008288,0.234848,0.004768,0.004096,0.006144,0.010272,0.011776,0.407328,0.006976
+1529,377.651,2.64795,0.707072,0.008736,0.246016,0.005216,0.004864,0.00624,0.010208,0.010336,0.407424,0.008032
+1530,488.2,2.04834,0.691232,0.00944,0.23216,0.00416,0.00576,0.006272,0.01008,0.010656,0.404896,0.007808
+1531,508.189,1.96777,0.698368,0.008192,0.23552,0.004224,0.005664,0.00624,0.009856,0.01088,0.4096,0.008192
+1532,445.024,2.24707,0.692224,0.008192,0.23552,0.005824,0.004416,0.007328,0.010144,0.0112,0.401408,0.008192
+1533,506.805,1.97314,0.680256,0.006464,0.229376,0.005408,0.004832,0.006144,0.01024,0.01024,0.40048,0.007072
+1534,526.478,1.89941,0.687808,0.008416,0.225088,0.004288,0.005504,0.006304,0.010176,0.010816,0.409408,0.007808
+1535,401.018,2.49365,0.69744,0.009248,0.234368,0.005664,0.004672,0.006144,0.01024,0.011552,0.407808,0.007744
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
new file mode 100644
index 0000000..257a045
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Naive,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernUpdateVelocityBruteForce-802,kernUpdatePos-803
+avg_1024,18.4896,54.122,52.0424,52.0345,0.00796769
+max_1024,18.8152,113.988,52.0793,52.0711,0.026624
+min_1024,8.77283,53.1484,52.0049,51.9967,0.00672
+512,18.5051,54.0391,52.0207,52.013,0.007712
+513,18.6453,53.6328,52.029,52.0212,0.007808
+514,18.6521,53.6133,52.0514,52.0436,0.007776
+515,18.6725,53.5547,52.0446,52.0364,0.008192
+516,18.6964,53.4863,52.0269,52.0191,0.007776
+517,18.5118,54.0195,52.0556,52.0478,0.007808
+518,18.756,53.3164,52.0562,52.048,0.008192
+519,18.2395,54.8262,52.0284,52.0207,0.007776
+520,18.6324,53.6699,52.052,52.0438,0.008192
+521,18.6575,53.5977,52.0423,52.0341,0.008192
+522,18.5279,53.9727,52.0477,52.0398,0.00784
+523,18.577,53.8301,52.025,52.0171,0.00784
+524,18.5979,53.7695,52.0661,52.0581,0.008
+525,18.6732,53.5527,52.0581,52.051,0.007104
+526,18.4644,54.1582,52.0255,52.0173,0.008192
+527,18.6378,53.6543,52.0375,52.0231,0.0144
+528,18.5986,53.7676,52.0542,52.0473,0.00688
+529,18.5259,53.9785,52.054,52.0462,0.007776
+530,18.3565,54.4766,52.0458,52.0376,0.008192
+531,18.5776,53.8281,52.0647,52.0566,0.008064
+532,18.6013,53.7598,52.0496,52.0418,0.007808
+533,18.5595,53.8809,52.027,52.0193,0.007712
+534,18.6019,53.7578,52.04,52.0321,0.00784
+535,18.5386,53.9414,52.0524,52.0442,0.008192
+536,18.4272,54.2676,52.0691,52.0609,0.008192
+537,18.5205,53.9941,52.0681,52.0603,0.007808
+538,18.6304,53.6758,52.0634,52.0556,0.007808
+539,18.6033,53.7539,52.0427,52.0358,0.00688
+540,18.5232,53.9863,52.0417,52.0335,0.008192
+541,18.7107,53.4453,52.0392,52.0308,0.00848
+542,18.5972,53.7715,52.0393,52.0315,0.00784
+543,18.6487,53.623,52.0662,52.0583,0.007904
+544,18.5797,53.8223,52.0547,52.0468,0.007872
+545,18.6195,53.707,52.0652,52.057,0.008192
+546,18.6664,53.5723,52.0438,52.0356,0.008192
+547,8.77283,113.988,52.0606,52.0524,0.008192
+548,18.5662,53.8613,52.0397,52.0315,0.008192
+549,18.6406,53.6465,52.0458,52.0376,0.008192
+550,18.5025,54.0469,52.0493,52.0413,0.007968
+551,18.3921,54.3711,52.0363,52.0281,0.008192
+552,18.3743,54.4238,52.0433,52.0356,0.007776
+553,18.6739,53.5508,52.0445,52.0376,0.006944
+554,18.5925,53.7852,52.0212,52.0141,0.007136
+555,18.6834,53.5234,52.0247,52.0169,0.007776
+556,18.5972,53.7715,52.03,52.0218,0.008192
+557,18.053,55.3926,52.0334,52.0253,0.008032
+558,18.627,53.6855,52.0516,52.0436,0.007936
+559,18.546,53.9199,52.0309,52.0231,0.007776
+560,18.196,54.957,52.0376,52.0294,0.008192
+561,18.4918,54.0781,52.0531,52.0453,0.007776
+562,17.8304,56.084,52.046,52.0382,0.007744
+563,18.5266,53.9766,52.0255,52.0186,0.006912
+564,18.5716,53.8457,52.0378,52.0296,0.008192
+565,18.6087,53.7383,52.0587,52.0507,0.007936
+566,18.1999,54.9453,52.0315,52.0233,0.008192
+567,18.6074,53.7422,52.0328,52.025,0.007776
+568,18.3684,54.4414,52.052,52.044,0.008
+569,18.4744,54.1289,52.0595,52.0516,0.007808
+570,18.3941,54.3652,52.0379,52.0309,0.006912
+571,18.5797,53.8223,52.0504,52.0436,0.006816
+572,18.5326,53.959,52.0212,52.0131,0.008192
+573,18.0721,55.334,52.0336,52.0267,0.006944
+574,18.104,55.2363,52.0192,52.0122,0.007008
+575,18.6739,53.5508,52.04,52.033,0.00704
+576,18.4644,54.1582,52.0588,52.0507,0.008192
+577,18.4798,54.1133,52.0475,52.0397,0.007744
+578,18.5098,54.0254,52.0479,52.0397,0.008192
+579,18.583,53.8125,52.0583,52.0505,0.007872
+580,18.1863,54.9863,52.0184,52.0107,0.007776
+581,18.7059,53.459,52.0383,52.0302,0.008096
+582,18.6351,53.6621,52.0493,52.0409,0.008384
+583,18.5386,53.9414,52.0643,52.0561,0.008192
+584,18.5932,53.7832,52.0573,52.0495,0.00784
+585,18.0009,55.5527,52.026,52.0181,0.007904
+586,18.6562,53.6016,52.0438,52.0356,0.008192
+587,18.4951,54.0684,52.0678,52.0596,0.008224
+588,18.6637,53.5801,52.0478,52.0394,0.008448
+589,18.0568,55.3809,52.0356,52.0274,0.008192
+590,18.6168,53.7148,52.0538,52.046,0.007776
+591,17.9404,55.7402,52.0668,52.0402,0.026624
+592,18.5212,53.9922,52.0455,52.0376,0.007904
+593,17.9624,55.6719,52.0524,52.0441,0.008224
+594,18.6535,53.6094,52.0291,52.0212,0.007872
+595,18.2323,54.8477,52.029,52.0212,0.00784
+596,18.3908,54.375,52.0219,52.0137,0.008192
+597,18.5346,53.9531,52.0647,52.0569,0.00784
+598,18.6507,53.6172,52.028,52.0202,0.007744
+599,18.0829,55.3008,52.0561,52.0479,0.008192
+600,18.4332,54.25,52.0494,52.0416,0.007808
+601,18.6087,53.7383,52.062,52.0541,0.007872
+602,18.2349,54.8398,52.0397,52.0325,0.007136
+603,18.6168,53.7148,52.0602,52.0524,0.007744
+604,18.4451,54.2148,52.0335,52.0253,0.008192
+605,18.1432,55.1172,52.0668,52.0586,0.008192
+606,18.6047,53.75,52.0527,52.0442,0.008448
+607,18.5025,54.0469,52.0151,52.0069,0.008192
+608,18.3145,54.6016,52.0364,52.0282,0.008192
+609,18.4465,54.2109,52.0678,52.06,0.00784
+610,18.5105,54.0234,52.0488,52.0406,0.008192
+611,18.2753,54.7188,52.0309,52.0232,0.007744
+612,18.625,53.6914,52.0378,52.0296,0.008192
+613,18.3381,54.5312,52.0539,52.046,0.00784
+614,18.678,53.5391,52.0457,52.0379,0.007776
+615,18.648,53.625,52.0593,52.0517,0.007648
+616,18.1676,55.043,52.0484,52.0407,0.007776
+617,18.6277,53.6836,52.0689,52.0619,0.006944
+618,18.1547,55.082,52.0518,52.0438,0.008032
+619,18.6684,53.5664,52.0598,52.052,0.00784
+620,18.6128,53.7266,52.0479,52.0397,0.008192
+621,18.7107,53.4453,52.0356,52.0287,0.006912
+622,18.412,54.3125,52.029,52.0211,0.007872
+623,18.6752,53.5469,52.0604,52.0535,0.00688
+624,18.6711,53.5586,52.0707,52.0625,0.008192
+625,17.9259,55.7852,52.0323,52.0241,0.008192
+626,17.8734,55.9492,52.0561,52.0479,0.008192
+627,18.2962,54.6562,52.05,52.0418,0.008192
+628,18.2155,54.8984,52.0458,52.0376,0.008192
+629,18.6317,53.6719,52.051,52.0431,0.007904
+630,18.4505,54.1992,52.0292,52.0215,0.007744
+631,18.5266,53.9766,52.029,52.0212,0.007744
+632,18.1047,55.2344,52.0307,52.0229,0.007808
+633,18.5561,53.8906,52.0079,51.9997,0.008192
+634,18.4598,54.1719,52.0431,52.0353,0.007808
+635,18.6725,53.5547,52.0438,52.037,0.006816
+636,18.1638,55.0547,52.0523,52.0446,0.007744
+637,18.4093,54.3203,52.0356,52.0274,0.008192
+638,17.9674,55.6562,52.0634,52.0556,0.007776
+639,18.4931,54.0742,52.0602,52.052,0.008192
+640,18.6033,53.7539,52.0513,52.0436,0.007776
+641,18.4691,54.1445,52.0384,52.0305,0.007936
+642,18.6155,53.7188,52.052,52.0438,0.008192
+643,18.3789,54.4102,52.0334,52.0253,0.008032
+644,18.625,53.6914,52.0333,52.0253,0.007968
+645,18.6548,53.6055,52.0247,52.0169,0.007808
+646,18.6807,53.5312,52.0382,52.0313,0.00688
+647,18.3394,54.5273,52.0335,52.0253,0.008192
+648,18.4651,54.1562,52.052,52.0438,0.008192
+649,17.8771,55.9375,52.0468,52.0387,0.008192
+650,18.3053,54.6289,52.0497,52.042,0.007744
+651,18.5844,53.8086,52.0629,52.055,0.007872
+652,17.9712,55.6445,52.0497,52.0417,0.007936
+653,18.6984,53.4805,52.0483,52.0401,0.008192
+654,18.4252,54.2734,52.0603,52.0523,0.007968
+655,18.5992,53.7656,52.0426,52.0344,0.008192
+656,18.4998,54.0547,52.0333,52.0253,0.007936
+657,18.3224,54.5781,52.0253,52.0175,0.007744
+658,18.6698,53.5625,52.0622,52.054,0.008192
+659,18.6589,53.5938,52.0566,52.0497,0.006912
+660,18.404,54.3359,52.0498,52.042,0.00784
+661,18.6943,53.4922,52.0628,52.055,0.007744
+662,17.8062,56.1602,52.0519,52.0438,0.00816
+663,18.3578,54.4727,52.0397,52.0316,0.008032
+664,17.994,55.5742,52.0347,52.027,0.00768
+665,18.6426,53.6406,52.0278,52.0196,0.008192
+666,18.3855,54.3906,52.048,52.0409,0.007104
+667,18.5078,54.0312,52.0652,52.057,0.00816
+668,18.5319,53.9609,52.052,52.0452,0.006752
+669,18.0015,55.5508,52.0213,52.0132,0.008192
+670,18.6684,53.5664,52.0561,52.0479,0.008192
+671,18.2012,54.9414,52.0704,52.0622,0.008192
+672,18.3106,54.6133,52.0501,52.0419,0.008192
+673,18.3447,54.5117,52.0555,52.0476,0.00784
+674,18.3631,54.457,52.054,52.0458,0.008192
+675,18.6209,53.7031,52.0255,52.0185,0.006944
+676,18.6317,53.6719,52.0574,52.0495,0.007872
+677,18.6047,53.75,52.0364,52.0282,0.008192
+678,18.6019,53.7578,52.0582,52.05,0.008192
+679,18.6671,53.5703,52.0355,52.0274,0.008032
+680,18.6861,53.5156,52.0598,52.0519,0.00784
+681,18.6006,53.7617,52.0133,52.0064,0.006912
+682,18.6725,53.5547,52.0376,52.0308,0.006784
+683,18.5521,53.9023,52.0496,52.0417,0.00784
+684,18.6236,53.6953,52.0564,52.0494,0.007072
+685,18.4518,54.1953,52.0487,52.0405,0.008192
+686,18.4611,54.168,52.0357,52.0279,0.00784
+687,18.6671,53.5703,52.0519,52.0438,0.008032
+688,18.693,53.4961,52.0315,52.0233,0.008224
+689,18.6725,53.5547,52.034,52.0259,0.008192
+690,18.6848,53.5195,52.0391,52.0314,0.007776
+691,18.0549,55.3867,52.0548,52.0467,0.008096
+692,18.629,53.6797,52.0261,52.0179,0.00816
+693,18.0765,55.3203,52.0333,52.0253,0.007968
+694,18.575,53.8359,52.0274,52.0193,0.008096
+695,18.3421,54.5195,52.0581,52.0499,0.008224
+696,18.6467,53.6289,52.0572,52.0494,0.007808
+697,18.6752,53.5469,52.0567,52.0485,0.008192
+698,18.6331,53.668,52.0146,52.0068,0.007776
+699,18.7052,53.4609,52.0354,52.0276,0.007776
+700,18.5723,53.8438,52.0279,52.0209,0.00704
+701,18.6807,53.5312,52.0438,52.0356,0.008192
+702,18.2466,54.8047,52.0733,52.0651,0.008192
+703,18.4053,54.332,52.0514,52.0436,0.007872
+704,18.4904,54.082,52.0355,52.0276,0.007936
+705,18.4425,54.2227,52.0293,52.0212,0.008064
+706,18.7491,53.3359,52.0458,52.0377,0.008128
+707,18.7134,53.4375,52.0375,52.0295,0.008
+708,18.5588,53.8828,52.0353,52.0274,0.007904
+709,18.663,53.582,52.0258,52.0188,0.007008
+710,18.6589,53.5938,52.0508,52.0426,0.008192
+711,18.4798,54.1133,52.0658,52.058,0.007808
+712,18.2193,54.8867,52.0375,52.0295,0.008064
+713,18.6087,53.7383,52.0285,52.0206,0.007936
+714,18.6752,53.5469,52.0156,52.0072,0.008384
+715,18.7573,53.3125,52.0271,52.0193,0.00784
+716,18.5507,53.9062,52.0417,52.0335,0.008192
+717,18.6916,53.5,52.0558,52.048,0.007808
+718,18.6984,53.4805,52.0268,52.019,0.007808
+719,18.3526,54.4883,52.0301,52.0219,0.008192
+720,18.6141,53.7227,52.0269,52.0192,0.007744
+721,18.6426,53.6406,52.0409,52.033,0.007872
+722,18.6711,53.5586,52.0479,52.0397,0.008192
+723,18.5871,53.8008,52.0596,52.0518,0.007776
+724,18.4624,54.1641,52.0376,52.0294,0.008192
+725,18.2155,54.8984,52.0233,52.0164,0.006944
+726,18.6984,53.4805,52.0702,52.0622,0.008032
+727,18.7134,53.4375,52.0298,52.0226,0.007136
+728,18.2779,54.7109,52.0269,52.0192,0.007776
+729,18.2544,54.7812,52.048,52.0401,0.007968
+730,18.5803,53.8203,52.0499,52.0428,0.007072
+731,18.5413,53.9336,52.0417,52.0346,0.007136
+732,18.663,53.582,52.0342,52.0261,0.008032
+733,18.6984,53.4805,52.0475,52.0396,0.007872
+734,17.841,56.0508,52.009,52.002,0.006944
+735,18.7408,53.3594,52.0396,52.0315,0.00816
+736,18.3552,54.4805,52.0354,52.0276,0.007776
+737,18.6344,53.6641,52.0429,52.0351,0.007808
+738,18.404,54.3359,52.0479,52.0408,0.007136
+739,18.2103,54.9141,52.0415,52.0335,0.007968
+740,18.5078,54.0312,52.0483,52.0412,0.007072
+741,18.6114,53.7305,52.0602,52.052,0.008192
+742,18.3618,54.4609,52.0315,52.0233,0.008192
+743,18.6412,53.6445,52.0459,52.0389,0.006944
+744,18.6861,53.5156,52.0256,52.0174,0.008192
+745,18.5723,53.8438,52.0619,52.054,0.007872
+746,18.6019,53.7578,52.0332,52.0253,0.00784
+747,18.4531,54.1914,52.054,52.0458,0.008192
+748,18.5065,54.0352,52.0238,52.0156,0.008192
+749,18.1059,55.2305,52.043,52.0352,0.00784
+750,18.5817,53.8164,52.0505,52.0433,0.007168
+751,18.0091,55.5273,52.0695,52.0617,0.007808
+752,18.6128,53.7266,52.0417,52.0335,0.008192
+753,18.6889,53.5078,52.0277,52.0196,0.008192
+754,18.4505,54.1992,52.0412,52.0334,0.007808
+755,18.6182,53.7109,52.054,52.0458,0.008192
+756,18.7313,53.3867,52.0519,52.044,0.00784
+757,18.6957,53.4883,52.0433,52.0356,0.007776
+758,18.6412,53.6445,52.0415,52.0335,0.008
+759,18.6006,53.7617,52.0459,52.039,0.006912
+760,18.678,53.5391,52.0555,52.0476,0.007808
+761,18.6399,53.6484,52.0298,52.0216,0.008224
+762,18.5601,53.8789,52.0464,52.0386,0.00784
+763,18.6399,53.6484,52.0438,52.0356,0.008192
+764,18.4598,54.1719,52.0212,52.0143,0.006944
+765,18.5655,53.8633,52.0552,52.0474,0.007872
+766,18.6957,53.4883,52.0466,52.0384,0.008192
+767,18.6971,53.4844,52.0627,52.0549,0.00784
+768,18.3697,54.4375,52.011,52.0028,0.00816
+769,18.6453,53.6328,52.0753,52.0671,0.008192
+770,18.678,53.5391,52.0236,52.0166,0.00704
+771,18.5346,53.9531,52.0621,52.054,0.008096
+772,18.4239,54.2773,52.0509,52.0441,0.006816
+773,18.5279,53.9727,52.0589,52.0507,0.008192
+774,18.2766,54.7148,52.0363,52.0284,0.007872
+775,18.745,53.3477,52.0306,52.0227,0.007872
+776,18.6998,53.4766,52.0499,52.0428,0.007168
+777,18.6074,53.7422,52.0563,52.0482,0.008064
+778,18.4027,54.3398,52.0492,52.0414,0.00784
+779,18.4199,54.2891,52.0368,52.0291,0.007712
+780,18.1034,55.2383,52.0186,52.0108,0.007776
+781,18.4319,54.2539,52.0586,52.0501,0.008448
+782,18.4425,54.2227,52.0295,52.0217,0.00784
+783,18.5199,53.9961,52.0266,52.0188,0.00784
+784,18.3961,54.3594,52.0294,52.0223,0.007136
+785,18.5145,54.0117,52.0291,52.0212,0.007872
+786,18.3447,54.5117,52.033,52.0251,0.007872
+787,18.7203,53.418,52.0561,52.0479,0.008192
+788,17.8659,55.9727,52.0368,52.029,0.007776
+789,18.4838,54.1016,52.0602,52.0524,0.00784
+790,18.0816,55.3047,52.061,52.0528,0.008192
+791,18.5709,53.8477,52.028,52.0198,0.008192
+792,18.4226,54.2812,52.0417,52.0335,0.008192
+793,18.371,54.4336,52.057,52.0488,0.008192
+794,18.3014,54.6406,52.0384,52.0302,0.008192
+795,18.6971,53.4844,52.0575,52.0497,0.00784
+796,18.4678,54.1484,52.0438,52.0367,0.007104
+797,18.3197,54.5859,52.0417,52.0348,0.006944
+798,18.5696,53.8516,52.0225,52.0146,0.007872
+799,18.4571,54.1797,52.0453,52.0373,0.007936
+800,18.5588,53.8828,52.0575,52.0497,0.007744
+801,18.0983,55.2539,52.0704,52.0622,0.008192
+802,18.1896,54.9766,52.0212,52.0127,0.00848
+803,18.2805,54.7031,52.0458,52.0376,0.008192
+804,18.0383,55.4375,52.0233,52.0151,0.008192
+805,18.3447,54.5117,52.0288,52.021,0.007808
+806,18.046,55.4141,52.0443,52.0361,0.008192
+807,18.4544,54.1875,52.0325,52.0256,0.006912
+808,18.097,55.2578,52.0438,52.0356,0.008192
+809,18.4624,54.1641,52.0418,52.0346,0.007136
+810,18.1818,55,52.0295,52.0213,0.008192
+811,18.5239,53.9844,52.0473,52.0395,0.007776
+812,18.2362,54.8359,52.0543,52.0465,0.007808
+813,18.0523,55.3945,52.0337,52.0256,0.008064
+814,18.7766,53.2578,52.0255,52.0173,0.008192
+815,17.6649,56.6094,52.0479,52.0397,0.008192
+816,18.544,53.9258,52.0499,52.0417,0.008192
+817,18.3263,54.5664,52.0284,52.0206,0.00784
+818,18.6521,53.6133,52.0252,52.0174,0.007744
+819,17.7371,56.3789,52.0508,52.0323,0.018432
+820,18.6168,53.7148,52.0422,52.0352,0.007008
+821,18.5763,53.832,52.0222,52.014,0.008192
+822,18.5145,54.0117,52.0692,52.061,0.008192
+823,18.723,53.4102,52.0621,52.054,0.008064
+824,18.1329,55.1484,52.052,52.0439,0.008096
+825,18.4544,54.1875,52.0632,52.0561,0.007136
+826,18.5494,53.9102,52.0325,52.0247,0.00784
+827,18.4558,54.1836,52.0516,52.0438,0.007776
+828,18.3499,54.4961,52.0142,52.0065,0.007776
+829,18.6453,53.6328,52.0451,52.0373,0.007744
+830,18.5494,53.9102,52.0523,52.0454,0.00688
+831,17.6869,56.5391,52.0581,52.0499,0.008192
+832,18.6277,53.6836,52.0253,52.0175,0.007808
+833,18.3829,54.3984,52.037,52.0291,0.007872
+834,18.4332,54.25,52.0499,52.0417,0.008192
+835,18.4904,54.082,52.0602,52.052,0.008192
+836,18.5588,53.8828,52.054,52.0458,0.008192
+837,18.4571,54.1797,52.0531,52.0453,0.007776
+838,18.4173,54.2969,52.0602,52.052,0.008224
+839,18.2531,54.7852,52.0458,52.0389,0.006912
+840,18.3987,54.3516,52.026,52.0179,0.008128
+841,18.1857,54.9883,52.0294,52.0212,0.008192
+842,18.5911,53.7891,52.0415,52.0335,0.007936
+843,18.5534,53.8984,52.0514,52.0436,0.007744
+844,18.6087,53.7383,52.0427,52.0345,0.008224
+845,18.7354,53.375,52.0438,52.036,0.007808
+846,18.3119,54.6094,52.0458,52.0376,0.008192
+847,18.6725,53.5547,52.0349,52.0271,0.007872
+848,18.5992,53.7656,52.0331,52.0253,0.007808
+849,18.5534,53.8984,52.0316,52.0248,0.006816
+850,18.2479,54.8008,52.0216,52.0134,0.008192
+851,18.5601,53.8789,52.037,52.029,0.008032
+852,18.7025,53.4688,52.054,52.0458,0.008192
+853,18.678,53.5391,52.0624,52.0546,0.007808
+854,18.5898,53.793,52.0233,52.0151,0.008192
+855,18.6372,53.6562,52.0525,52.0446,0.007872
+856,18.6671,53.5703,52.0504,52.0425,0.007936
+857,18.7121,53.4414,52.0294,52.0212,0.008192
+858,18.3789,54.4102,52.0401,52.0319,0.008192
+859,18.6943,53.4922,52.0438,52.0369,0.006912
+860,18.6698,53.5625,52.0273,52.0195,0.00784
+861,18.625,53.6914,52.0281,52.0212,0.006944
+862,18.4958,54.0664,52.0602,52.052,0.008192
+863,18.3473,54.5039,52.0397,52.0319,0.00784
+864,18.5763,53.832,52.0387,52.0309,0.007776
+865,18.3394,54.5273,52.0335,52.0253,0.008128
+866,18.6277,53.6836,52.054,52.0462,0.007808
+867,18.5628,53.8711,52.0622,52.054,0.00816
+868,18.5199,53.9961,52.0668,52.0525,0.014336
+869,18.5548,53.8945,52.0459,52.0376,0.008224
+870,18.6236,53.6953,52.0418,52.034,0.007808
+871,18.5306,53.9648,52.0469,52.0392,0.007712
+872,18.5736,53.8398,52.054,52.0458,0.008192
+873,18.3829,54.3984,52.0433,52.0349,0.008448
+874,18.3908,54.375,52.0293,52.0216,0.007744
+875,18.4718,54.1367,52.0274,52.0192,0.008192
+876,18.4651,54.1562,52.0362,52.0293,0.006816
+877,18.5091,54.0273,52.0697,52.0614,0.008288
+878,18.4704,54.1406,52.0087,52.0008,0.007904
+879,18.3895,54.3789,52.0249,52.0169,0.008
+880,18.7217,53.4141,52.019,52.0112,0.007808
+881,18.3921,54.3711,52.0294,52.0225,0.006912
+882,18.4305,54.2578,52.0233,52.0162,0.007072
+883,18.6114,53.7305,52.0375,52.0291,0.008448
+884,18.5884,53.7969,52.0239,52.016,0.007904
+885,18.5172,54.0039,52.0361,52.0282,0.00784
+886,18.682,53.5273,52.0192,52.011,0.008224
+887,18.5763,53.832,52.0539,52.0458,0.008096
+888,18.5574,53.8867,52.0233,52.0164,0.006912
+889,18.6114,53.7305,52.0628,52.0547,0.008192
+890,18.5239,53.9844,52.0336,52.0258,0.007808
+891,18.3895,54.3789,52.0418,52.0336,0.008192
+892,18.4199,54.2891,52.0274,52.0192,0.008192
+893,18.2557,54.7773,52.0336,52.0255,0.008096
+894,18.5091,54.0273,52.0454,52.0376,0.00784
+895,18.2168,54.8945,52.0311,52.0233,0.007872
+896,18.5803,53.8203,52.0437,52.0356,0.00816
+897,18.4001,54.3477,52.0456,52.0379,0.007776
+898,18.6739,53.5508,52.052,52.0438,0.008192
+899,18.6616,53.5859,52.0271,52.0193,0.007808
+900,18.5574,53.8867,52.0456,52.0376,0.007968
+901,18.6889,53.5078,52.0537,52.0459,0.00784
+902,18.734,53.3789,52.0292,52.0213,0.00784
+903,18.6222,53.6992,52.0642,52.0563,0.007904
+904,18.1342,55.1445,52.0253,52.0172,0.008192
+905,18.5871,53.8008,52.0545,52.0466,0.007904
+906,18.5427,53.9297,52.0561,52.0479,0.008192
+907,18.7299,53.3906,52.04,52.0323,0.007776
+908,18.5682,53.8555,52.0412,52.0335,0.007744
+909,18.5011,54.0508,52.0229,52.0151,0.007872
+910,18.6739,53.5508,52.0193,52.0114,0.007872
+911,18.4518,54.1953,52.0234,52.0152,0.008192
+912,18.3486,54.5,52.0517,52.0438,0.007968
+913,18.7176,53.4258,52.0336,52.0254,0.008192
+914,18.2245,54.8711,52.0631,52.0549,0.008192
+915,18.5507,53.9062,52.0591,52.0509,0.008192
+916,18.6671,53.5703,52.0503,52.0423,0.008
+917,18.5938,53.7812,52.0304,52.0222,0.008192
+918,18.4998,54.0547,52.0609,52.0527,0.008192
+919,18.5252,53.9805,52.026,52.0179,0.008064
+920,18.2258,54.8672,52.0663,52.0581,0.008192
+921,18.6698,53.5625,52.0554,52.0476,0.007808
+922,18.4958,54.0664,52.0492,52.0414,0.007808
+923,18.6033,53.7539,52.0524,52.0442,0.008192
+924,18.4811,54.1094,52.0256,52.0185,0.00704
+925,18.3829,54.3984,52.0582,52.0513,0.00688
+926,18.7642,53.293,52.0501,52.042,0.008192
+927,18.648,53.625,52.0365,52.0283,0.008192
+928,18.6548,53.6055,52.0162,52.0085,0.007744
+929,18.7107,53.4453,52.0429,52.0352,0.007776
+930,18.6439,53.6367,52.0414,52.0335,0.007904
+931,18.6317,53.6719,52.052,52.0438,0.008192
+932,18.575,53.8359,52.0544,52.0465,0.00784
+933,18.4918,54.0781,52.0252,52.0172,0.008064
+934,18.5911,53.7891,52.0688,52.0606,0.008224
+935,18.6168,53.7148,52.0291,52.0212,0.007808
+936,18.7271,53.3984,52.0584,52.0503,0.008096
+937,18.1188,55.1914,52.0429,52.0351,0.007872
+938,18.5212,53.9922,52.0363,52.0281,0.008192
+939,18.3829,54.3984,52.0355,52.0277,0.007808
+940,18.3908,54.375,52.0292,52.0214,0.007744
+941,18.625,53.6914,52.0399,52.032,0.007872
+942,18.6209,53.7031,52.054,52.0458,0.008192
+943,18.6074,53.7422,52.0516,52.0438,0.00784
+944,18.663,53.582,52.0542,52.046,0.008192
+945,18.5574,53.8867,52.0356,52.0276,0.008096
+946,18.4478,54.207,52.0213,52.0135,0.007744
+947,18.6643,53.5781,52.0277,52.0195,0.008192
+948,18.6304,53.6758,52.0359,52.0277,0.008192
+949,18.4611,54.168,52.0323,52.0241,0.008192
+950,18.7367,53.3711,52.0253,52.0183,0.007008
+951,18.5709,53.8477,52.0569,52.05,0.006944
+952,18.6209,53.7031,52.052,52.0438,0.008192
+953,18.0791,55.3125,52.0529,52.0447,0.008192
+954,18.2349,54.8398,52.0587,52.0505,0.008192
+955,18.6006,53.7617,52.0489,52.0407,0.008192
+956,18.6372,53.6562,52.054,52.0458,0.008192
+957,18.6439,53.6367,52.0484,52.0404,0.008064
+958,18.4544,54.1875,52.0487,52.0407,0.008032
+959,18.6589,53.5938,52.0509,52.0427,0.008192
+960,18.6752,53.5469,52.0463,52.0384,0.007904
+961,18.6807,53.5312,52.0248,52.017,0.00784
+962,18.2674,54.7422,52.0376,52.0294,0.008192
+963,18.682,53.5273,52.0417,52.0335,0.008192
+964,18.6589,53.5938,52.0703,52.0622,0.008096
+965,18.0983,55.2539,52.0477,52.0397,0.008032
+966,18.4133,54.3086,52.0335,52.0264,0.007104
+967,18.5386,53.9414,52.0197,52.0115,0.008192
+968,18.6209,53.7031,52.0244,52.0166,0.007776
+969,18.5118,54.0195,52.0463,52.0381,0.008192
+970,18.6643,53.5781,52.0169,52.009,0.007936
+971,18.6671,53.5703,52.0397,52.0315,0.008192
+972,18.583,53.8125,52.0414,52.0335,0.007904
+973,18.046,55.4141,52.0356,52.0274,0.008192
+974,18.7601,53.3047,52.0643,52.0561,0.008192
+975,18.5065,54.0352,52.0585,52.0516,0.006912
+976,18.6426,53.6406,52.0438,52.0356,0.008192
+977,18.4878,54.0898,52.0182,52.01,0.008192
+978,18.5574,53.8867,52.054,52.0471,0.006912
+979,18.5413,53.9336,52.0342,52.026,0.008192
+980,18.3053,54.6289,52.0505,52.0423,0.008192
+981,18.6385,53.6523,52.0288,52.021,0.00784
+982,18.5965,53.7734,52.0396,52.0317,0.007872
+983,18.708,53.4531,52.0581,52.0499,0.008192
+984,18.7121,53.4414,52.0468,52.0397,0.00704
+985,18.3171,54.5938,52.0252,52.0173,0.00784
+986,18.7258,53.4023,52.0466,52.0384,0.008192
+987,18.625,53.6914,52.0643,52.0574,0.006816
+988,18.4146,54.3047,52.0451,52.0373,0.007776
+989,18.2103,54.9141,52.0451,52.0372,0.007872
+990,18.6195,53.707,52.0429,52.0352,0.007744
+991,18.5051,54.0391,52.0087,52.0008,0.007936
+992,18.5467,53.918,52.02,52.0131,0.006912
+993,18.7039,53.4648,52.0321,52.0239,0.008192
+994,18.4638,54.1602,52.0292,52.0212,0.007968
+995,18.6277,53.6836,52.052,52.0438,0.008192
+996,18.6467,53.6289,52.0212,52.0143,0.006944
+997,18.3263,54.5664,52.0479,52.0408,0.007072
+998,18.5979,53.7695,52.0479,52.0401,0.007808
+999,18.6807,53.5312,52.0538,52.0458,0.007936
+1000,18.6114,53.7305,52.029,52.0211,0.00784
+1001,18.7148,53.4336,52.0425,52.0343,0.008192
+1002,18.5333,53.957,52.0423,52.0343,0.008064
+1003,18.5091,54.0273,52.0673,52.0596,0.007712
+1004,18.3263,54.5664,52.0481,52.0399,0.008192
+1005,18.6047,53.75,52.0481,52.0403,0.00784
+1006,17.7482,56.3438,52.0499,52.0431,0.006848
+1007,18.7176,53.4258,52.0501,52.0432,0.006912
+1008,18.4106,54.3164,52.041,52.0333,0.007744
+1009,18.4944,54.0703,52.042,52.0341,0.007808
+1010,18.7066,53.457,52.0292,52.0212,0.007936
+1011,18.2427,54.8164,52.0499,52.0417,0.008192
+1012,18.2792,54.707,52.0507,52.0437,0.007008
+1013,18.3197,54.5859,52.0418,52.0349,0.006912
+1014,18.663,53.582,52.0395,52.0316,0.00784
+1015,18.0498,55.4023,52.063,52.0548,0.008224
+1016,18.3355,54.5391,52.0458,52.039,0.006784
+1017,18.7039,53.4648,52.054,52.0458,0.008192
+1018,17.8112,56.1445,52.0496,52.0417,0.007904
+1019,18.0561,55.3828,52.0478,52.0397,0.008096
+1020,18.6589,53.5938,52.0509,52.0427,0.008192
+1021,18.6766,53.543,52.0574,52.0497,0.007744
+1022,18.3776,54.4141,52.0509,52.0427,0.008192
+1023,18.5185,54,52.0249,52.0172,0.007744
+1024,18.6195,53.707,52.0703,52.0622,0.008128
+1025,18.5306,53.9648,52.0356,52.0286,0.006944
+1026,18.4385,54.2344,52.0502,52.0431,0.007104
+1027,18.6019,53.7578,52.0294,52.0212,0.008192
+1028,18.3882,54.3828,52.045,52.0373,0.00768
+1029,18.2466,54.8047,52.05,52.0431,0.006848
+1030,18.5723,53.8438,52.0248,52.0168,0.008
+1031,18.0689,55.3438,52.0386,52.0304,0.008192
+1032,18.4398,54.2305,52.0278,52.0196,0.008192
+1033,18.6575,53.5977,52.0479,52.0397,0.008192
+1034,18.1406,55.125,52.0581,52.0499,0.008192
+1035,18.5105,54.0234,52.0233,52.0151,0.008192
+1036,18.5817,53.8164,52.0592,52.0515,0.007776
+1037,18.6603,53.5898,52.0424,52.0355,0.00688
+1038,18.4611,54.168,52.0397,52.0328,0.006848
+1039,18.4971,54.0625,52.0557,52.0479,0.007744
+1040,18.579,53.8242,52.0561,52.0484,0.007776
+1041,17.784,56.2305,52.0511,52.0433,0.007744
+1042,18.5252,53.9805,52.0298,52.0219,0.007968
+1043,18.5413,53.9336,52.0228,52.015,0.007744
+1044,18.3684,54.4414,52.0444,52.0374,0.006944
+1045,18.0218,55.4883,52.0298,52.0216,0.008192
+1046,18.4771,54.1211,52.0278,52.021,0.006816
+1047,18.1599,55.0664,52.0547,52.0466,0.008096
+1048,18.187,54.9844,52.0413,52.0336,0.007712
+1049,18.5992,53.7656,52.0443,52.0361,0.008192
+1050,18.0511,55.3984,52.025,52.0173,0.007712
+1051,18.4798,54.1133,52.0545,52.0476,0.006912
+1052,18.4438,54.2188,52.0236,52.0156,0.007936
+1053,18.2661,54.7461,52.0499,52.0417,0.008192
+1054,18.5588,53.8828,52.0139,52.0057,0.008192
+1055,18.6033,53.7539,52.0438,52.0356,0.008192
+1056,18.4465,54.2109,52.0496,52.0418,0.007776
+1057,18.5252,53.9805,52.0467,52.0385,0.008192
+1058,18.5548,53.8945,52.0409,52.0332,0.007744
+1059,17.9801,55.6172,52.0557,52.0473,0.008448
+1060,18.6957,53.4883,52.0141,52.0063,0.007776
+1061,18.1329,55.1484,52.0622,52.054,0.008192
+1062,18.3816,54.4023,52.0337,52.026,0.00768
+1063,18.4053,54.332,52.0479,52.04,0.00784
+1064,18.3802,54.4062,52.0476,52.0397,0.007872
+1065,18.2596,54.7656,52.0315,52.0233,0.008192
+1066,18.3671,54.4453,52.0462,52.038,0.008192
+1067,18.8152,53.1484,52.0499,52.0417,0.008192
+1068,18.1329,55.1484,52.0567,52.0497,0.006976
+1069,18.2116,54.9102,52.0142,52.0065,0.007744
+1070,18.5333,53.957,52.0297,52.0215,0.008192
+1071,18.5306,53.9648,52.0564,52.0486,0.007744
+1072,18.575,53.8359,52.0454,52.037,0.008416
+1073,18.5871,53.8008,52.0253,52.0172,0.008192
+1074,18.6562,53.6016,52.0503,52.0311,0.0192
+1075,18.5038,54.043,52.0612,52.0535,0.007744
+1076,18.682,53.5273,52.0675,52.0597,0.007744
+1077,18.4385,54.2344,52.0537,52.0458,0.007872
+1078,18.6385,53.6523,52.0172,52.0101,0.00704
+1079,18.6074,53.7422,52.0397,52.0315,0.008192
+1080,18.5306,53.9648,52.0503,52.0421,0.008192
+1081,18.2453,54.8086,52.0511,52.0435,0.007648
+1082,18.6358,53.6602,52.0352,52.0274,0.007808
+1083,18.3158,54.5977,52.0336,52.0265,0.007104
+1084,18.6535,53.6094,52.0573,52.0497,0.007648
+1085,18.5655,53.8633,52.0359,52.0195,0.016384
+1086,18.2427,54.8164,52.0441,52.037,0.007104
+1087,18.5132,54.0156,52.0458,52.0376,0.008128
+1088,18.5038,54.043,52.054,52.0469,0.007104
+1089,18.4345,54.2461,52.0113,52.0044,0.006912
+1090,18.693,53.4961,52.0402,52.0324,0.00784
+1091,18.5453,53.9219,52.0274,52.0203,0.007072
+1092,18.0358,55.4453,52.0227,52.0148,0.00784
+1093,18.6304,53.6758,52.0487,52.0405,0.008192
+1094,18.4958,54.0664,52.0622,52.054,0.008192
+1095,18.2401,54.8242,52.0493,52.0414,0.007872
+1096,18.5615,53.875,52.0434,52.0355,0.00784
+1097,18.6331,53.668,52.0657,52.0579,0.007776
+1098,18.5844,53.8086,52.0233,52.0151,0.008192
+1099,18.5965,53.7734,52.0417,52.0335,0.008128
+1100,18.5763,53.832,52.0394,52.0315,0.007872
+1101,18.4544,54.1875,52.0256,52.0177,0.007936
+1102,18.3908,54.375,52.0569,52.0487,0.008192
+1103,18.4279,54.2656,52.025,52.0172,0.00784
+1104,18.2831,54.6953,52.0315,52.0233,0.008192
+1105,18.7107,53.4453,52.0695,52.0616,0.007872
+1106,18.4744,54.1289,52.0455,52.0375,0.007936
+1107,18.5333,53.957,52.049,52.0413,0.007744
+1108,18.606,53.7461,52.0593,52.0516,0.007776
+1109,18.0906,55.2773,52.0247,52.0169,0.007744
+1110,18.7176,53.4258,52.0316,52.0239,0.007712
+1111,18.7299,53.3906,52.0538,52.0458,0.007936
+1112,18.5642,53.8672,52.0585,52.0503,0.008192
+1113,18.5736,53.8398,52.0417,52.0335,0.008192
+1114,18.6385,53.6523,52.0364,52.0284,0.007936
+1115,18.3736,54.4258,52.0376,52.0307,0.006912
+1116,18.544,53.9258,52.0562,52.0492,0.006944
+1117,18.5091,54.0273,52.0474,52.0395,0.00784
+1118,18.2831,54.6953,52.0417,52.0335,0.008192
+1119,18.7313,53.3867,52.0338,52.0256,0.008192
+1120,18.4478,54.207,52.0489,52.0412,0.007744
+1121,18.5669,53.8594,52.0569,52.0499,0.006976
+1122,18.5776,53.8281,52.0387,52.0309,0.007808
+1123,18.7107,53.4453,52.0429,52.0352,0.007744
+1124,18.5884,53.7969,52.0528,52.0447,0.008064
+1125,18.6331,53.668,52.0458,52.038,0.007808
+1126,18.7381,53.3672,52.0582,52.0512,0.007072
+1127,18.5736,53.8398,52.0297,52.0215,0.008192
+1128,18.3381,54.5312,52.0316,52.0235,0.008096
+1129,18.6766,53.543,52.0374,52.0296,0.007808
+1130,18.4518,54.1953,52.0421,52.0339,0.008192
+1131,18.6087,53.7383,52.0438,52.0356,0.008192
+1132,18.4584,54.1758,52.05,52.0418,0.008192
+1133,18.544,53.9258,52.0745,52.0663,0.00816
+1134,18.6698,53.5625,52.0518,52.0439,0.007904
+1135,18.6331,53.668,52.0182,52.0111,0.007104
+1136,18.4491,54.2031,52.038,52.031,0.00704
+1137,18.5494,53.9102,52.0532,52.0454,0.007712
+1138,18.6589,53.5938,52.0239,52.0158,0.008096
+1139,18.2949,54.6602,52.0327,52.025,0.007744
+1140,18.6739,53.5508,52.0619,52.054,0.00784
+1141,18.6426,53.6406,52.0463,52.0381,0.008192
+1142,18.6793,53.5352,52.0444,52.0363,0.008192
+1143,18.5306,53.9648,52.0335,52.0266,0.006976
+1144,18.6277,53.6836,52.0564,52.0485,0.00784
+1145,18.6182,53.7109,52.0557,52.0479,0.007776
+1146,18.7039,53.4648,52.0376,52.0294,0.008192
+1147,18.6657,53.5742,52.0315,52.0233,0.008192
+1148,18.6317,53.6719,52.0172,52.009,0.008224
+1149,18.7367,53.3711,52.0272,52.0192,0.008032
+1150,18.6209,53.7031,52.0464,52.0395,0.006912
+1151,18.6671,53.5703,52.0361,52.0279,0.008192
+1152,18.6589,53.5938,52.0507,52.0438,0.006848
+1153,18.7189,53.4219,52.0465,52.0383,0.008192
+1154,18.6725,53.5547,52.0374,52.0294,0.007968
+1155,18.5669,53.8594,52.0557,52.0479,0.007776
+1156,18.7244,53.4062,52.0455,52.0376,0.00784
+1157,18.6766,53.543,52.0305,52.0227,0.007872
+1158,18.6671,53.5703,52.0254,52.0187,0.00672
+1159,18.3736,54.4258,52.0376,52.0294,0.008192
+1160,18.6657,53.5742,52.0613,52.0536,0.007712
+1161,18.3224,54.5781,52.0689,52.0619,0.00704
+1162,18.6616,53.5859,52.0682,52.0604,0.00784
+1163,18.2219,54.8789,52.0458,52.0381,0.007712
+1164,18.6711,53.5586,52.0742,52.0659,0.00832
+1165,18.6358,53.6602,52.0296,52.0214,0.008192
+1166,18.6047,53.75,52.023,52.0152,0.007808
+1167,18.6643,53.5781,52.0531,52.0453,0.007808
+1168,18.5105,54.0234,52.0396,52.0312,0.008448
+1169,18.5252,53.9805,52.0393,52.0314,0.007904
+1170,18.5158,54.0078,52.054,52.047,0.006976
+1171,18.693,53.4961,52.0335,52.0257,0.007872
+1172,18.606,53.7461,52.0585,52.0507,0.007808
+1173,18.6317,53.6719,52.0267,52.0189,0.007776
+1174,18.7203,53.418,52.0499,52.0428,0.007136
+1175,18.6101,53.7344,52.0513,52.0436,0.007744
+1176,18.6589,53.5938,52.047,52.0392,0.007808
+1177,18.5359,53.9492,52.0581,52.0501,0.008
+1178,18.583,53.8125,52.04,52.0329,0.007072
+1179,18.5628,53.8711,52.0288,52.021,0.00784
+1180,18.6698,53.5625,52.0175,52.0093,0.008192
+1181,18.6372,53.6562,52.0581,52.0511,0.007008
+1182,18.6834,53.5234,52.0621,52.054,0.008064
+1183,18.6548,53.6055,52.0379,52.0302,0.007712
+1184,18.1522,55.0898,52.0304,52.0234,0.006976
+1185,18.6684,53.5664,52.0246,52.0167,0.007904
+1186,18.4173,54.2969,52.0643,52.0574,0.006944
+1187,18.325,54.5703,52.0552,52.0474,0.007776
+1188,18.6603,53.5898,52.0254,52.0172,0.008224
+1189,18.4798,54.1133,52.0246,52.0168,0.00784
+1190,18.1909,54.9727,52.0233,52.0151,0.008192
+1191,18.7642,53.293,52.0197,52.0116,0.008192
+1192,18.6399,53.6484,52.0356,52.0274,0.008192
+1193,18.6141,53.7227,52.0622,52.0551,0.007072
+1194,18.6141,53.7227,52.0196,52.0118,0.007808
+1195,18.3158,54.5977,52.0488,52.0407,0.008128
+1196,18.3066,54.625,52.048,52.0402,0.007808
+1197,18.7271,53.3984,52.0521,52.0439,0.008192
+1198,18.5065,54.0352,52.052,52.0449,0.007072
+1199,18.7134,53.4375,52.0579,52.0499,0.007968
+1200,18.4731,54.1328,52.0173,52.0092,0.008128
+1201,18.5319,53.9609,52.0377,52.0306,0.007136
+1202,18.6155,53.7188,52.0512,52.0434,0.007744
+1203,18.6643,53.5781,52.0395,52.0317,0.007776
+1204,18.4678,54.1484,52.0248,52.0169,0.007904
+1205,18.2284,54.8594,52.0212,52.0131,0.008192
+1206,18.4491,54.2031,52.0371,52.0212,0.015872
+1207,18.3197,54.5859,52.0583,52.0504,0.007872
+1208,18.4811,54.1094,52.0488,52.0406,0.008192
+1209,18.6725,53.5547,52.027,52.0193,0.007744
+1210,18.6535,53.6094,52.0492,52.0414,0.00784
+1211,18.6725,53.5547,52.0598,52.052,0.00784
+1212,18.4864,54.0938,52.0288,52.021,0.007808
+1213,18.6671,53.5703,52.0376,52.0294,0.008192
+1214,18.4838,54.1016,52.0476,52.0397,0.007872
+1215,18.6263,53.6875,52.0248,52.017,0.007808
+1216,18.7299,53.3906,52.0212,52.0131,0.008192
+1217,18.3618,54.4609,52.0438,52.0356,0.008192
+1218,18.6263,53.6875,52.0212,52.0143,0.006976
+1219,18.6807,53.5312,52.067,52.0588,0.008192
+1220,18.4998,54.0547,52.0274,52.0192,0.008192
+1221,18.7436,53.3516,52.0436,52.0359,0.007744
+1222,18.6643,53.5781,52.0579,52.0499,0.007936
+1223,18.575,53.8359,52.0524,52.0442,0.008192
+1224,18.5884,53.7969,52.033,52.0251,0.007936
+1225,18.404,54.3359,52.0479,52.0407,0.007136
+1226,18.4944,54.0703,52.0288,52.0211,0.007744
+1227,18.6317,53.6719,52.0572,52.0495,0.007744
+1228,18.4944,54.0703,52.0668,52.0588,0.007904
+1229,18.3592,54.4688,52.0499,52.0417,0.008192
+1230,18.3802,54.4062,52.0628,52.0557,0.007136
+1231,18.6182,53.7109,52.0247,52.0168,0.007872
+1232,18.325,54.5703,52.0416,52.0335,0.008032
+1233,18.6671,53.5703,52.0415,52.0335,0.007936
+1234,18.5669,53.8594,52.0209,52.0131,0.007808
+1235,18.4332,54.25,52.0506,52.0428,0.00784
+1236,18.3014,54.6406,52.0545,52.0464,0.008128
+1237,18.6861,53.5156,52.052,52.0438,0.008192
+1238,18.2779,54.7109,52.073,52.065,0.007936
+1239,18.6943,53.4922,52.0346,52.0268,0.00784
+1240,18.6643,53.5781,52.009,52.0008,0.008192
+1241,18.325,54.5703,52.0492,52.0413,0.007808
+1242,18.3171,54.5938,52.0366,52.0289,0.007744
+1243,18.6128,53.7266,52.0289,52.0211,0.007808
+1244,18.1896,54.9766,52.0294,52.0212,0.008192
+1245,18.3329,54.5469,52.0242,52.016,0.008192
+1246,18.6589,53.5938,52.0172,52.0101,0.007072
+1247,18.4918,54.0781,52.0314,52.0233,0.008128
+1248,18.7189,53.4219,52.0522,52.0452,0.00704
+1249,18.4998,54.0547,52.0623,52.0554,0.006912
+1250,18.4624,54.1641,52.0499,52.0417,0.008192
+1251,18.678,53.5391,52.0315,52.0233,0.008192
+1252,18.5561,53.8906,52.0452,52.0373,0.007808
+1253,18.6047,53.75,52.0588,52.0517,0.007104
+1254,18.5588,53.8828,52.0335,52.0253,0.008192
+1255,18.7217,53.4141,52.0524,52.0446,0.007808
+1256,18.1689,55.0391,52.0467,52.0385,0.008192
+1257,18.5588,53.8828,52.0578,52.0499,0.007904
+1258,18.7491,53.3359,52.036,52.0278,0.008192
+1259,18.4491,54.2031,52.019,52.011,0.007968
+1260,18.4757,54.125,52.0272,52.0192,0.008032
+1261,18.6998,53.4766,52.0622,52.0551,0.007136
+1262,17.281,57.8672,52.0536,52.0458,0.007808
+1263,18.1896,54.9766,52.0641,52.056,0.008096
+1264,18.5346,53.9531,52.0463,52.038,0.008224
+1265,17.6844,56.5469,52.0479,52.0397,0.008192
+1266,18.5561,53.8906,52.0251,52.0172,0.007936
+1267,18.3961,54.3594,52.0467,52.0397,0.006944
+1268,18.6236,53.6953,52.0315,52.0243,0.0072
+1269,18.4891,54.0859,52.0479,52.0397,0.008192
+1270,17.9021,55.8594,52.0417,52.0348,0.006944
+1271,17.6309,56.7188,52.0274,52.0196,0.007872
+1272,18.5185,54,52.0328,52.025,0.007808
+1273,18.4731,54.1328,52.0453,52.0374,0.007872
+1274,18.5212,53.9922,52.0063,51.9986,0.007744
+1275,18.4838,54.1016,52.0634,52.0557,0.007744
+1276,18.4305,54.2578,52.058,52.0488,0.00928
+1277,18.6344,53.6641,52.0235,52.0164,0.007072
+1278,18.4624,54.1641,52.0246,52.0152,0.009408
+1279,18.4918,54.0781,52.0208,52.0129,0.007872
+1280,18.218,54.8906,52.0622,52.0552,0.00704
+1281,18.2206,54.8828,52.0438,52.0202,0.023648
+1282,18.6643,53.5781,52.0545,52.0476,0.00688
+1283,18.5965,53.7734,52.0319,52.024,0.007904
+1284,17.8996,55.8672,52.0369,52.0292,0.007712
+1285,18.6074,53.7422,52.0602,52.0533,0.00688
+1286,17.8298,56.0859,52.0374,52.0295,0.007904
+1287,18.6344,53.6641,52.0664,52.0595,0.00688
+1288,18.3644,54.4531,52.0362,52.0291,0.00704
+1289,18.1047,55.2344,52.0494,52.0417,0.007744
+1290,18.7491,53.3359,52.0294,52.0212,0.008192
+1291,18.5615,53.875,52.0779,52.0694,0.00848
+1292,18.5992,53.7656,52.0466,52.0396,0.006912
+1293,18.1663,55.0469,52.041,52.0332,0.00784
+1294,18.2155,54.8984,52.0198,52.0129,0.006944
+1295,18.6589,53.5938,52.0556,52.0478,0.007712
+1296,18.5266,53.9766,52.0294,52.0212,0.008192
+1297,18.5373,53.9453,52.0266,52.0188,0.007808
+1298,18.6019,53.7578,52.0436,52.0358,0.007776
+1299,18.5078,54.0312,52.0379,52.0297,0.008192
+1300,18.6074,53.7422,52.0493,52.0415,0.007808
+1301,18.4173,54.2969,52.0458,52.0376,0.008192
+1302,18.6861,53.5156,52.0626,52.0556,0.006944
+1303,18.5992,53.7656,52.0377,52.0298,0.007904
+1304,18.6535,53.6094,52.0253,52.0172,0.008192
+1305,18.5911,53.7891,52.0623,52.0546,0.007776
+1306,17.9876,55.5938,52.0625,52.0556,0.006944
+1307,18.6916,53.5,52.0585,52.0503,0.008192
+1308,18.7162,53.4297,52.0233,52.0151,0.008192
+1309,18.5132,54.0156,52.046,52.0376,0.008416
+1310,18.6616,53.5859,52.0677,52.06,0.007744
+1311,18.1663,55.0469,52.0397,52.0315,0.008192
+1312,18.6834,53.5234,52.056,52.0479,0.008096
+1313,18.6101,53.7344,52.0438,52.0356,0.008192
+1314,18.404,54.3359,52.0379,52.0309,0.007008
+1315,18.6209,53.7031,52.052,52.045,0.007008
+1316,18.6019,53.7578,52.0179,52.0099,0.007968
+1317,18.6317,53.6719,52.038,52.0299,0.008192
+1318,18.4544,54.1875,52.0253,52.0175,0.007808
+1319,18.6263,53.6875,52.0372,52.0294,0.007808
+1320,18.3302,54.5547,52.0274,52.0192,0.008192
+1321,18.4411,54.2266,52.0353,52.0276,0.007744
+1322,18.583,53.8125,52.0379,52.0297,0.00816
+1323,18.5051,54.0391,52.0793,52.0711,0.008128
+1324,18.5723,53.8438,52.0468,52.0386,0.008224
+1325,18.2077,54.9219,52.0479,52.0397,0.008192
+1326,18.5534,53.8984,52.0496,52.0417,0.00784
+1327,18.6047,53.75,52.0643,52.0573,0.006944
+1328,18.5561,53.8906,52.0611,52.0529,0.008192
+1329,18.6019,53.7578,52.0415,52.0335,0.008
+1330,18.5534,53.8984,52.0373,52.0294,0.007904
+1331,18.6101,53.7344,52.0308,52.023,0.00784
+1332,18.4199,54.2891,52.0049,51.9967,0.008192
+1333,18.5992,53.7656,52.0583,52.0505,0.007776
+1334,18.6101,53.7344,52.0233,52.0151,0.008192
+1335,18.6807,53.5312,52.0519,52.0438,0.008128
+1336,18.575,53.8359,52.0439,52.037,0.006912
+1337,18.6535,53.6094,52.0593,52.0516,0.007712
+1338,18.4465,54.2109,52.0458,52.0376,0.008192
+1339,18.4864,54.0938,52.0613,52.0544,0.006912
+1340,18.6344,53.6641,52.0312,52.0233,0.007904
+1341,18.7436,53.3516,52.0526,52.0444,0.008224
+1342,18.4332,54.25,52.0274,52.0192,0.008192
+1343,18.6643,53.5781,52.0315,52.0246,0.006912
+1344,18.583,53.8125,52.0382,52.03,0.008192
+1345,18.6399,53.6484,52.0284,52.0206,0.007776
+1346,18.5776,53.8281,52.0315,52.0233,0.008192
+1347,18.4571,54.1797,52.0441,52.0358,0.008224
+1348,18.6616,53.5859,52.0315,52.0245,0.007008
+1349,18.6453,53.6328,52.05,52.0431,0.006848
+1350,18.6671,53.5703,52.0521,52.0443,0.007808
+1351,18.3671,54.4453,52.0596,52.0518,0.007808
+1352,18.5292,53.9688,52.0526,52.0458,0.006816
+1353,18.6861,53.5156,52.0192,52.0123,0.006944
+1354,18.1767,55.0156,52.0561,52.0479,0.008192
+1355,18.5857,53.8047,52.0432,52.0354,0.007744
+1356,18.404,54.3359,52.0543,52.0473,0.007008
+1357,18.6861,53.5156,52.0245,52.0167,0.007776
+1358,18.6399,53.6484,52.0494,52.0415,0.007904
+1359,18.5346,53.9531,52.0397,52.0329,0.006816
+1360,18.6155,53.7188,52.0448,52.037,0.007776
+1361,18.629,53.6797,52.0254,52.0172,0.008192
+1362,18.5911,53.7891,52.0579,52.0501,0.007744
+1363,18.6019,53.7578,52.0479,52.0397,0.008192
+1364,18.7025,53.4688,52.0262,52.0181,0.008032
+1365,18.7134,53.4375,52.0233,52.0151,0.008192
+1366,18.6535,53.6094,52.0324,52.0243,0.008192
+1367,18.575,53.8359,52.043,52.0351,0.00784
+1368,18.7162,53.4297,52.0425,52.0343,0.008192
+1369,18.5239,53.9844,52.0476,52.0399,0.007744
+1370,18.548,53.9141,52.056,52.0479,0.008128
+1371,18.6616,53.5859,52.0356,52.0274,0.008192
+1372,18.6074,53.7422,52.047,52.0393,0.007744
+1373,18.6861,53.5156,52.0481,52.0403,0.007776
+1374,18.7217,53.4141,52.0396,52.0315,0.008128
+1375,18.6128,53.7266,52.0332,52.0254,0.007808
+1376,18.6074,53.7422,52.0423,52.0341,0.008192
+1377,18.54,53.9375,52.0237,52.0155,0.008192
+1378,18.7628,53.2969,52.0203,52.0124,0.00784
+1379,18.6861,53.5156,52.0575,52.0498,0.007744
+1380,18.4411,54.2266,52.0381,52.0301,0.008
+1381,18.4598,54.1719,52.0355,52.0276,0.007904
+1382,18.5561,53.8906,52.0397,52.0316,0.008128
+1383,18.3197,54.5859,52.0203,52.0125,0.007808
+1384,18.5669,53.8594,52.04,52.0318,0.008192
+1385,18.6182,53.7109,52.0581,52.0417,0.016384
+1386,18.5803,53.8203,52.0588,52.0519,0.006912
+1387,18.3014,54.6406,52.0417,52.0335,0.008192
+1388,18.5346,53.9531,52.0233,52.0164,0.006912
+1389,18.6616,53.5859,52.0397,52.0315,0.008192
+1390,18.6671,53.5703,52.0134,52.0057,0.007744
+1391,18.5938,53.7812,52.0439,52.0357,0.008192
+1392,18.7244,53.4062,52.0128,52.0049,0.007936
+1393,18.3513,54.4922,52.0501,52.0431,0.007008
+1394,18.648,53.625,52.0529,52.046,0.006976
+1395,18.6998,53.4766,52.0417,52.0346,0.007136
+1396,18.6616,53.5859,52.0616,52.0538,0.007808
+1397,18.7381,53.3672,52.0303,52.0234,0.006976
+1398,18.5992,53.7656,52.0501,52.0275,0.022656
+1399,18.4544,54.1875,52.0425,52.0354,0.007136
+1400,18.6861,53.5156,52.0663,52.0592,0.007104
+1401,18.6182,53.7109,52.0381,52.0301,0.008
+1402,18.678,53.5391,52.054,52.0458,0.008192
+1403,18.629,53.6797,52.05,52.0431,0.006912
+1404,18.5319,53.9609,52.0206,52.0128,0.007808
+1405,18.3618,54.4609,52.0669,52.0587,0.008192
+1406,18.6971,53.4844,52.0532,52.0462,0.006976
+1407,18.6725,53.5547,52.0465,52.038,0.008416
+1408,18.5857,53.8047,52.0219,52.0137,0.008192
+1409,18.6943,53.4922,52.0356,52.0274,0.00816
+1410,18.6209,53.7031,52.0417,52.0348,0.006976
+1411,18.6671,53.5703,52.0602,52.052,0.008192
+1412,18.7354,53.375,52.0069,51.9987,0.008192
+1413,18.6971,53.4844,52.0441,52.0359,0.008192
+1414,18.7107,53.4453,52.0255,52.0178,0.007744
+1415,18.6861,53.5156,52.0573,52.0495,0.007808
+1416,18.6562,53.6016,52.0439,52.0358,0.008096
+1417,18.4411,54.2266,52.0317,52.0246,0.007104
+1418,18.6507,53.6172,52.03,52.022,0.007904
+1419,18.5561,53.8906,52.0276,52.0206,0.00704
+1420,18.5992,53.7656,52.0703,52.0625,0.00784
+1421,18.4411,54.2266,52.0438,52.0356,0.008192
+1422,18.4465,54.2109,52.0212,52.0131,0.008192
+1423,18.6209,53.7031,52.0251,52.0172,0.007808
+1424,18.575,53.8359,52.052,52.0438,0.008192
+1425,18.3565,54.4766,52.0397,52.0315,0.008192
+1426,18.6671,53.5703,52.0278,52.0196,0.008192
+1427,18.6317,53.6719,52.025,52.0171,0.007872
+1428,18.325,54.5703,52.0377,52.0305,0.007136
+1429,18.5992,53.7656,52.0376,52.0192,0.018432
+1430,18.6807,53.5312,52.0399,52.0321,0.007776
+1431,18.6236,53.6953,52.0622,52.0552,0.007008
+1432,18.6916,53.5,52.0499,52.043,0.006944
+1433,18.3355,54.5391,52.0503,52.0422,0.00816
+1434,18.575,53.8359,52.0487,52.0416,0.00704
+1435,18.6507,53.6172,52.0525,52.0447,0.00784
+1436,18.7271,53.3984,52.0164,52.0086,0.007776
+1437,18.5884,53.7969,52.0462,52.038,0.008192
+1438,18.325,54.5703,52.0531,52.0453,0.00784
+1439,18.7849,53.2344,52.0304,52.0222,0.008192
+1440,18.5292,53.9688,52.0158,52.0077,0.008096
+1441,18.6589,53.5938,52.0335,52.0264,0.007136
+1442,18.7354,53.375,52.0247,52.0169,0.007776
+1443,18.6698,53.5625,52.0602,52.052,0.008192
+1444,17.9247,55.7891,52.0536,52.0458,0.007808
+1445,18.3829,54.3984,52.0479,52.0402,0.007744
+1446,18.6209,53.7031,52.0425,52.0345,0.007968
+1447,18.7244,53.4062,52.0293,52.0214,0.007904
+1448,18.257,54.7734,52.0622,52.054,0.008192
+1449,18.4358,54.2422,52.056,52.0479,0.008128
+1450,18.5615,53.875,52.0499,52.042,0.007904
+1451,18.5292,53.9688,52.0466,52.0384,0.008192
+1452,18.6725,53.5547,52.0499,52.0417,0.00816
+1453,18.3197,54.5859,52.0479,52.0401,0.007808
+1454,18.3276,54.5625,52.0313,52.0234,0.007904
+1455,18.6101,53.7344,52.0274,52.0192,0.008192
+1456,18.3776,54.4141,52.0384,52.0315,0.006912
+1457,18.3539,54.4844,52.0643,52.0458,0.018464
+1458,18.3224,54.5781,52.0587,52.0506,0.00816
+1459,18.6725,53.5547,52.0439,52.0357,0.008192
+1460,18.629,53.6797,52.0381,52.0302,0.007936
+1461,18.3302,54.5547,52.0453,52.0375,0.007808
+1462,18.3197,54.5859,52.06,52.052,0.008
+1463,18.6725,53.5547,52.0227,52.0149,0.007808
+1464,18.1098,55.2188,52.0335,52.0253,0.008192
+1465,18.7354,53.375,52.046,52.0378,0.008192
+1466,18.6562,53.6016,52.0473,52.0396,0.007744
+1467,18.6209,53.7031,52.0207,52.0129,0.007744
+1468,18.5561,53.8906,52.0422,52.0342,0.008032
+1469,18.575,53.8359,52.0438,52.0369,0.00688
+1470,18.5132,54.0156,52.0314,52.0234,0.008032
+1471,18.583,53.8125,52.0406,52.0324,0.008192
+1472,18.6047,53.75,52.054,52.0469,0.007136
+1473,18.5158,54.0078,52.0167,52.009,0.007744
+1474,18.5239,53.9844,52.0429,52.0352,0.007744
+1475,18.7931,53.2109,52.0369,52.0291,0.007744
+1476,18.0485,55.4062,52.0463,52.0384,0.00784
+1477,18.678,53.5391,52.0561,52.0479,0.008192
+1478,18.4465,54.2109,52.0247,52.0169,0.007808
+1479,18.4173,54.2969,52.026,52.018,0.008032
+1480,18.0256,55.4766,52.0294,52.0216,0.007808
+1481,18.708,53.4531,52.0356,52.0274,0.00816
+1482,18.4624,54.1641,52.0661,52.0581,0.008032
+1483,18.5588,53.8828,52.0479,52.0397,0.008192
+1484,18.6344,53.6641,52.0479,52.0397,0.008192
+1485,18.6507,53.6172,52.0445,52.0364,0.008192
+1486,18.5588,53.8828,52.0269,52.011,0.015936
+1487,17.8946,55.8828,52.0279,52.02,0.007904
+1488,18.4067,54.3281,52.0315,52.0233,0.008192
+1489,18.5105,54.0234,52.0188,52.0109,0.007808
+1490,18.0155,55.5078,52.0561,52.0479,0.008192
+1491,18.7107,53.4453,52.0489,52.0411,0.007872
+1492,18.0791,55.3125,52.0581,52.0499,0.008192
+1493,18.3329,54.5469,52.0434,52.0356,0.007776
+1494,18.4252,54.2734,52.0452,52.0373,0.00784
+1495,18.7107,53.4453,52.0334,52.0256,0.007808
+1496,18.1792,55.0078,52.0485,52.0406,0.007904
+1497,18.6616,53.5859,52.0234,52.0152,0.008192
+1498,18.2051,54.9297,52.046,52.039,0.006944
+1499,18.5025,54.0469,52.0689,52.061,0.007904
+1500,18.4067,54.3281,52.0329,52.0248,0.00816
+1501,18.6399,53.6484,52.0294,52.021,0.008416
+1502,17.8946,55.8828,52.0272,52.0192,0.008
+1503,18.6971,53.4844,52.0561,52.0479,0.008192
+1504,18.1483,55.1016,52.0252,52.0175,0.007744
+1505,18.2596,54.7656,52.0229,52.0151,0.007808
+1506,18.3882,54.3828,52.0398,52.0327,0.007104
+1507,18.6047,53.75,52.0399,52.0322,0.007744
+1508,18.1638,55.0547,52.0384,52.0302,0.008192
+1509,18.5992,53.7656,52.025,52.0172,0.00784
+1510,18.4678,54.1484,52.0285,52.0206,0.00784
+1511,18.583,53.8125,52.0517,52.0438,0.007904
+1512,18.2362,54.8359,52.0254,52.0184,0.006976
+1513,18.218,54.8906,52.0438,52.0368,0.006944
+1514,18.2962,54.6562,52.0661,52.0583,0.007872
+1515,18.629,53.6797,52.0582,52.0503,0.007872
+1516,18.2753,54.7188,52.0255,52.0177,0.007744
+1517,17.8596,55.9922,52.0372,52.0294,0.007776
+1518,18.3802,54.4062,52.0446,52.0364,0.008192
+1519,18.2674,54.7422,52.0458,52.0388,0.006976
+1520,18.5857,53.8047,52.0397,52.0315,0.008192
+1521,18.4944,54.0703,52.0359,52.0281,0.007776
+1522,18.4731,54.1328,52.0418,52.0348,0.006944
+1523,18.6616,53.5859,52.0484,52.0402,0.008192
+1524,18.4757,54.125,52.0516,52.0438,0.00784
+1525,18.6507,53.6172,52.0315,52.0233,0.008192
+1526,18.6453,53.6328,52.0183,52.0105,0.007744
+1527,18.6589,53.5938,52.05,52.0431,0.00688
+1528,18.1457,55.1094,52.0612,52.0534,0.007808
+1529,18.4146,54.3047,52.0161,52.0092,0.006848
+1530,18.3539,54.4844,52.0389,52.0311,0.007776
+1531,18.6916,53.5,52.0465,52.0383,0.008192
+1532,18.6317,53.6719,52.0376,52.0294,0.008192
+1533,18.548,53.9141,52.0251,52.0173,0.007776
+1534,18.4944,54.0703,52.0335,52.0265,0.007072
+1535,18.2414,54.8203,52.0253,52.0172,0.008192
diff --git a/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
new file mode 100644
index 0000000..ad071bf
--- /dev/null
+++ b/profile/Vis_1/BoidSizeCmp/CIS565Proj1,Boid_60000,BkSize_128,Vis_1,GCWidth_10,Nei_8,ShMem_0,Scattered,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-836,thrust::sort_by_key-840,kernResetIntBuffer-846,kernResetIntBuffer-847,kernIdentifyCellStartEnd-850,kernUpdateVelNeighborSearchScattered-857,kernUpdatePos-862
+avg_1024,412.541,2.49046,0.88236,0.00876003,0.250105,0.00500147,0.004953,0.00646041,0.599148,0.00793184
+max_1024,548.767,4.54565,1.24109,0.026048,0.578592,0.016064,0.022368,0.018976,0.688128,0.024192
+min_1024,219.99,1.82227,0.81104,0.006944,0.219328,0.004064,0.004096,0.00608,0.538656,0.006816
+512,411.658,2.4292,0.820448,0.008192,0.232832,0.004736,0.004096,0.007424,0.555328,0.00784
+513,429.801,2.32666,0.862304,0.008192,0.237568,0.005856,0.004416,0.006112,0.592928,0.007232
+514,460.276,2.17261,0.82944,0.008064,0.247936,0.00528,0.004896,0.00624,0.548832,0.008192
+515,390.281,2.56226,0.854016,0.009344,0.231392,0.004928,0.004192,0.00624,0.590816,0.007104
+516,451.947,2.21265,0.837632,0.008192,0.22512,0.004256,0.005568,0.0064,0.579904,0.008192
+517,518.744,1.92773,0.837472,0.008192,0.230624,0.004896,0.004096,0.00624,0.575392,0.008032
+518,399.22,2.50488,0.838752,0.008224,0.23552,0.005664,0.004576,0.006144,0.570816,0.007808
+519,455.617,2.19482,0.851968,0.008192,0.227328,0.00544,0.0048,0.006144,0.591872,0.008192
+520,430.207,2.32446,0.86736,0.01024,0.244896,0.00496,0.004096,0.006144,0.589248,0.007776
+521,390.467,2.56104,0.829216,0.008576,0.235328,0.004704,0.004096,0.007488,0.561152,0.007872
+522,454.656,2.19946,0.827392,0.008192,0.22736,0.005536,0.004672,0.006144,0.568416,0.007072
+523,484.734,2.06299,0.821408,0.008192,0.229696,0.00464,0.005184,0.006304,0.559616,0.007776
+524,384.709,2.59937,0.818432,0.00944,0.232224,0.005632,0.004608,0.006144,0.552512,0.007872
+525,430.252,2.32422,0.837184,0.01024,0.22656,0.004864,0.004096,0.007232,0.576096,0.008096
+526,374.646,2.66919,0.84992,0.008192,0.23072,0.0048,0.005664,0.006528,0.585824,0.008192
+527,371.183,2.69409,0.829856,0.008512,0.239616,0.00576,0.00448,0.006144,0.5584,0.006944
+528,431.703,2.31641,0.82288,0.009792,0.22896,0.00496,0.004096,0.0072,0.56,0.007872
+529,411.41,2.43066,0.821248,0.009664,0.238144,0.00528,0.004896,0.006208,0.549952,0.007104
+530,358.763,2.78735,0.84272,0.008768,0.235392,0.00464,0.005216,0.006592,0.57392,0.008192
+531,413.195,2.42017,0.827648,0.008448,0.235232,0.004384,0.00544,0.006304,0.559648,0.008192
+532,260.56,3.83789,0.8728,0.007872,0.29152,0.004384,0.00544,0.0064,0.549312,0.007872
+533,486.345,2.05615,0.821248,0.008192,0.233024,0.004544,0.005312,0.006464,0.55552,0.008192
+534,388.615,2.57324,0.9216,0.009568,0.31808,0.004128,0.005696,0.006432,0.570592,0.007104
+535,385.071,2.59692,0.835936,0.008544,0.227328,0.005728,0.004512,0.006144,0.575488,0.008192
+536,411.204,2.43188,0.82224,0.0088,0.242048,0.005568,0.004672,0.006144,0.546848,0.00816
+537,449.912,2.22266,0.827872,0.008672,0.256,0.00528,0.004896,0.006208,0.538656,0.00816
+538,473.198,2.11328,0.817152,0.008192,0.235328,0.004288,0.005728,0.00656,0.548864,0.008192
+539,374.989,2.66675,0.856352,0.008768,0.264224,0.005472,0.004768,0.006144,0.559104,0.007872
+540,441.379,2.26562,0.890688,0.011456,0.2896,0.005888,0.004352,0.006176,0.565216,0.008
+541,444.155,2.25146,0.83152,0.008192,0.229376,0.005888,0.004352,0.006144,0.570656,0.006912
+542,410.874,2.43384,0.872896,0.008608,0.255712,0.004416,0.005344,0.006304,0.58432,0.008192
+543,443.146,2.25659,0.872064,0.009696,0.262944,0.00576,0.004448,0.006144,0.5752,0.007872
+544,466.781,2.14233,0.833344,0.009632,0.227072,0.004928,0.004128,0.006304,0.57328,0.008
+545,520.193,1.92236,0.846976,0.008288,0.227328,0.005856,0.004384,0.006144,0.587072,0.007904
+546,401.451,2.49097,0.906784,0.008192,0.292384,0.004576,0.005248,0.006304,0.582144,0.007936
+547,372.431,2.68506,0.843776,0.00928,0.230336,0.005824,0.004416,0.006144,0.580736,0.00704
+548,447.552,2.23438,0.81104,0.008192,0.226624,0.0048,0.004096,0.006144,0.55296,0.008224
+549,419.371,2.38452,0.8496,0.008288,0.253728,0.005504,0.004896,0.006208,0.563136,0.00784
+550,423.097,2.36353,0.8704,0.008192,0.227328,0.005504,0.004736,0.006144,0.610304,0.008192
+551,375.332,2.66431,0.821344,0.008896,0.229344,0.004256,0.005568,0.006304,0.545344,0.021632
+552,371.553,2.69141,0.915168,0.009536,0.318144,0.00544,0.0048,0.006144,0.5632,0.007904
+553,379.049,2.63818,0.83968,0.00944,0.248512,0.004192,0.005664,0.006624,0.557056,0.008192
+554,447.162,2.23633,0.843616,0.008288,0.258048,0.005376,0.004864,0.006144,0.55296,0.007936
+555,339.776,2.94312,0.833376,0.008352,0.236832,0.004832,0.005376,0.006368,0.563744,0.007872
+556,464.821,2.15137,0.84368,0.00864,0.23584,0.00512,0.004864,0.006304,0.575168,0.007744
+557,396.976,2.51904,0.909312,0.008192,0.311296,0.005472,0.004768,0.006176,0.565216,0.008192
+558,319.65,3.12842,0.851968,0.00944,0.244224,0.004384,0.005472,0.006336,0.57392,0.008192
+559,403.746,2.47681,0.827968,0.008672,0.247904,0.004096,0.005792,0.0064,0.548,0.007104
+560,346.268,2.88794,0.926144,0.008544,0.317792,0.005216,0.005024,0.006176,0.575456,0.007936
+561,468.114,2.13623,0.8704,0.00944,0.234112,0.004256,0.005568,0.006336,0.602496,0.008192
+562,479.85,2.08398,0.849504,0.009536,0.22352,0.004512,0.005344,0.006304,0.59248,0.007808
+563,335.903,2.97705,0.821248,0.008192,0.243136,0.004672,0.005152,0.006432,0.545472,0.008192
+564,397.4,2.51636,0.847104,0.008224,0.249856,0.006144,0.004096,0.007296,0.563424,0.008064
+565,420.836,2.37622,0.88464,0.008672,0.250272,0.005216,0.0048,0.006272,0.601504,0.007904
+566,303.903,3.29053,0.868352,0.008448,0.260096,0.006144,0.005408,0.006656,0.5736,0.008
+567,387.109,2.58325,0.848096,0.008384,0.241664,0.004096,0.005824,0.006304,0.574752,0.007072
+568,413.362,2.41919,0.871008,0.008896,0.259488,0.004864,0.004096,0.007424,0.578304,0.007936
+569,313.846,3.18628,0.913408,0.009312,0.286976,0.004768,0.004224,0.007328,0.592608,0.008192
+570,375.711,2.66162,0.847456,0.009312,0.250784,0.005888,0.004352,0.007584,0.56128,0.008256
+571,319.376,3.1311,0.841728,0.008192,0.24928,0.004672,0.005184,0.006368,0.55984,0.008192
+572,391.662,2.55322,0.850304,0.008608,0.247488,0.004384,0.005664,0.006304,0.569664,0.008192
+573,376.782,2.65405,0.853792,0.008384,0.249824,0.004128,0.005792,0.006368,0.571456,0.00784
+574,279.724,3.57495,0.86016,0.008192,0.245792,0.005664,0.004544,0.006144,0.582656,0.007168
+575,393.695,2.54004,0.843872,0.00864,0.252,0.005216,0.004896,0.006272,0.558976,0.007872
+576,354.325,2.82227,0.833568,0.008192,0.253568,0.00448,0.005376,0.006432,0.547296,0.008224
+577,446.771,2.23828,0.847648,0.010208,0.246624,0.00544,0.004768,0.006176,0.566528,0.007904
+578,299.087,3.34351,0.88496,0.00816,0.290144,0.004928,0.004192,0.00624,0.563104,0.008192
+579,389.984,2.56421,0.872448,0.009344,0.249856,0.00496,0.004128,0.006144,0.589824,0.008192
+580,382.482,2.6145,0.840576,0.008832,0.245408,0.004704,0.004192,0.007616,0.562848,0.006976
+581,282.6,3.53857,0.884736,0.008224,0.285088,0.005536,0.004704,0.006144,0.567104,0.007936
+582,332.603,3.00659,0.927744,0.010112,0.269536,0.00496,0.0144,0.006208,0.614336,0.008192
+583,282.152,3.54419,0.851456,0.00832,0.253312,0.004608,0.005248,0.0064,0.56576,0.007808
+584,366.861,2.72583,0.872448,0.008192,0.2656,0.004736,0.004224,0.007296,0.574208,0.008192
+585,334.887,2.98608,1.01603,0.008448,0.412896,0.004864,0.004096,0.007328,0.571552,0.006848
+586,366.369,2.72949,0.845952,0.00832,0.24896,0.00496,0.004128,0.007168,0.56528,0.007136
+587,364.283,2.74512,0.893728,0.008992,0.2696,0.004832,0.0056,0.0064,0.590112,0.008192
+588,319.775,3.1272,0.884576,0.008192,0.25744,0.004704,0.00512,0.006368,0.59472,0.008032
+589,422.66,2.36597,0.8784,0.008864,0.268352,0.00416,0.005664,0.006464,0.577088,0.007808
+590,262.699,3.80664,0.896,0.008832,0.253824,0.00448,0.0056,0.00656,0.609728,0.006976
+591,378.348,2.64307,0.86016,0.009376,0.262272,0.004832,0.004096,0.007264,0.565184,0.007136
+592,364.413,2.74414,0.912384,0.008704,0.305632,0.004096,0.005792,0.006496,0.57344,0.008224
+593,351.558,2.84448,0.872448,0.008256,0.264128,0.00528,0.004864,0.00624,0.576704,0.006976
+594,394.111,2.53735,0.866848,0.008032,0.248096,0.004512,0.005536,0.006528,0.585952,0.008192
+595,297.135,3.36548,0.886784,0.009664,0.256576,0.004096,0.005856,0.006368,0.596032,0.008192
+596,326.609,3.06177,0.968896,0.008416,0.327648,0.005888,0.004352,0.006144,0.609408,0.00704
+597,307.046,3.25684,0.893568,0.008672,0.252064,0.005952,0.004288,0.006144,0.608256,0.008192
+598,404.304,2.47339,0.862208,0.009568,0.254272,0.005504,0.004896,0.006304,0.574624,0.00704
+599,398.948,2.50659,0.879776,0.008384,0.262112,0.005472,0.0048,0.006144,0.584992,0.007872
+600,302.266,3.30835,0.890048,0.008352,0.251872,0.004128,0.005728,0.006336,0.6056,0.008032
+601,323.667,3.0896,0.85824,0.009312,0.246688,0.005568,0.004672,0.006144,0.578848,0.007008
+602,320.601,3.11914,0.89568,0.008544,0.270688,0.00592,0.004352,0.007712,0.590272,0.008192
+603,402.595,2.48389,0.862208,0.009632,0.242304,0.005824,0.004384,0.006144,0.58576,0.00816
+604,356.981,2.80127,0.9464,0.008576,0.331872,0.005856,0.004384,0.007328,0.580448,0.007936
+605,368.71,2.71216,0.849984,0.008192,0.24576,0.005888,0.004352,0.006144,0.572704,0.006944
+606,333.877,2.99512,0.865376,0.008288,0.260096,0.005312,0.004896,0.006208,0.572512,0.008064
+607,296.168,3.37646,0.85984,0.009664,0.2648,0.005472,0.004736,0.006144,0.561152,0.007872
+608,371.385,2.69263,0.901504,0.009696,0.26512,0.004096,0.005888,0.006368,0.602144,0.008192
+609,300.403,3.32886,0.904992,0.00944,0.314112,0.004128,0.005696,0.006336,0.557312,0.007968
+610,398.289,2.51074,0.869344,0.008832,0.24976,0.004544,0.00528,0.006432,0.586304,0.008192
+611,371.89,2.68896,0.851104,0.009376,0.258912,0.004096,0.005792,0.006496,0.558624,0.007808
+612,260.229,3.84277,0.87616,0.008224,0.262112,0.004096,0.005792,0.0064,0.581664,0.007872
+613,375.263,2.66479,0.855968,0.008192,0.257792,0.004352,0.005472,0.006304,0.56576,0.008096
+614,293.725,3.40454,0.872672,0.008224,0.250656,0.005504,0.004736,0.006144,0.589536,0.007872
+615,436.023,2.29346,0.862368,0.008896,0.24592,0.005792,0.004448,0.006144,0.5832,0.007968
+616,307.139,3.25586,0.86224,0.008192,0.258048,0.005536,0.004704,0.006144,0.57264,0.006976
+617,227.669,4.39233,0.8728,0.008352,0.292864,0.004096,0.005856,0.006432,0.548224,0.006976
+618,315.417,3.17041,0.866304,0.008192,0.264224,0.005568,0.004672,0.006112,0.569184,0.008352
+619,347.295,2.87939,0.870752,0.008544,0.29072,0.004192,0.0056,0.006336,0.548352,0.007008
+620,264.788,3.77661,0.899072,0.008192,0.292384,0.004576,0.00528,0.0064,0.575264,0.006976
+621,363.249,2.75293,0.897152,0.008832,0.297088,0.0056,0.00464,0.006144,0.566816,0.008032
+622,293.599,3.40601,0.909312,0.008192,0.311296,0.005824,0.004416,0.006144,0.565248,0.008192
+623,369.542,2.70605,0.888832,0.00976,0.272576,0.004384,0.00544,0.006368,0.582112,0.008192
+624,344.955,2.89893,0.873568,0.008256,0.258016,0.005728,0.004512,0.006144,0.58304,0.007872
+625,307.577,3.25122,0.868384,0.00832,0.283552,0.00496,0.004224,0.006176,0.552928,0.008224
+626,324.384,3.08276,0.920192,0.00864,0.290784,0.00432,0.005504,0.006784,0.595968,0.008192
+627,233.191,4.28833,0.907904,0.008832,0.323456,0.004224,0.005824,0.006464,0.551968,0.007136
+628,332.468,3.00781,0.924096,0.008768,0.31696,0.004672,0.005632,0.006464,0.573632,0.007968
+629,285.118,3.50732,0.987488,0.008544,0.37888,0.006144,0.004096,0.01584,0.565792,0.008192
+630,328.864,3.04077,0.917504,0.008192,0.285952,0.004864,0.004096,0.0064,0.599808,0.008192
+631,272.939,3.66382,0.917696,0.008384,0.339968,0.005888,0.004352,0.006144,0.54592,0.00704
+632,328.495,3.04419,0.898752,0.008256,0.30304,0.005376,0.004864,0.006144,0.563168,0.007904
+633,281.628,3.55078,0.85808,0.009664,0.258624,0.005472,0.004768,0.006144,0.565248,0.00816
+634,347.148,2.88062,0.889472,0.008704,0.288928,0.00512,0.004896,0.006336,0.56848,0.007008
+635,275.065,3.6355,0.890816,0.008544,0.272384,0.005984,0.004256,0.006176,0.585568,0.007904
+636,325.312,3.07397,0.878976,0.008576,0.280448,0.004224,0.005632,0.00656,0.565344,0.008192
+637,275.472,3.63013,1.13402,0.008608,0.53248,0.006144,0.004096,0.007328,0.56736,0.008
+638,373.178,2.67969,0.862368,0.008352,0.260096,0.005664,0.004576,0.007456,0.568032,0.008192
+639,299.262,3.34155,0.9216,0.008192,0.311232,0.00416,0.005664,0.006368,0.577792,0.008192
+640,354.05,2.82446,0.874496,0.010432,0.272832,0.005472,0.004768,0.006144,0.566912,0.007936
+641,313.653,3.18823,0.906944,0.008288,0.290816,0.005312,0.004864,0.00624,0.583488,0.007936
+642,294.591,3.39453,0.864224,0.008224,0.27024,0.00416,0.005664,0.006272,0.561504,0.00816
+643,363.669,2.74976,0.86352,0.00976,0.254432,0.004096,0.005824,0.006368,0.575232,0.007808
+644,293.326,3.40918,0.915456,0.009664,0.301632,0.005504,0.004736,0.006144,0.579584,0.008192
+645,357.448,2.79761,0.894304,0.008192,0.305152,0.004096,0.005888,0.006336,0.556864,0.007776
+646,282.561,3.53906,0.997376,0.009216,0.381952,0.00528,0.019296,0.006144,0.568352,0.007136
+647,377.407,2.64966,0.875648,0.008192,0.26,0.004192,0.005632,0.006624,0.581664,0.009344
+648,310.915,3.21631,0.876192,0.008224,0.270368,0.0056,0.004608,0.007264,0.572288,0.00784
+649,339.185,2.94824,0.875712,0.0096,0.260736,0.004096,0.005888,0.006304,0.58128,0.007808
+650,344.115,2.90601,0.919392,0.008192,0.302336,0.004864,0.004096,0.007168,0.584704,0.008032
+651,298.564,3.34937,0.912256,0.008672,0.250048,0.00432,0.005504,0.006272,0.629248,0.008192
+652,366.107,2.73145,0.917504,0.00832,0.29888,0.004096,0.005856,0.006432,0.585728,0.008192
+653,306.243,3.26538,0.88048,0.00832,0.249856,0.004096,0.005824,0.006432,0.598048,0.007904
+654,349.428,2.86182,0.861632,0.008192,0.256,0.0056,0.00464,0.006144,0.573216,0.00784
+655,301.798,3.31348,0.851008,0.00928,0.261056,0.005536,0.004704,0.006144,0.556448,0.00784
+656,292.781,3.41553,0.88064,0.009408,0.265024,0.004096,0.005792,0.0064,0.581728,0.008192
+657,275.732,3.62671,0.903264,0.008288,0.300736,0.004416,0.005376,0.006304,0.571008,0.007136
+658,387.292,2.58203,0.855936,0.008192,0.255936,0.005248,0.004896,0.006304,0.567296,0.008064
+659,324.436,3.08228,0.90464,0.00864,0.276096,0.00448,0.005376,0.006496,0.59568,0.007872
+660,301.553,3.31616,0.864224,0.008192,0.25984,0.004352,0.005472,0.0064,0.571808,0.00816
+661,306.931,3.25806,0.8984,0.009376,0.297824,0.00576,0.00448,0.006144,0.559104,0.015712
+662,314.4,3.18066,0.858688,0.008608,0.263616,0.004832,0.004096,0.007232,0.562112,0.008192
+663,357.792,2.79492,0.839456,0.008256,0.253952,0.005952,0.004288,0.006144,0.55296,0.007904
+664,287.177,3.48218,0.85712,0.008192,0.249856,0.005216,0.004896,0.006272,0.574784,0.007904
+665,335.573,2.97998,0.909312,0.008192,0.310272,0.00496,0.004256,0.007264,0.566176,0.008192
+666,306.908,3.2583,0.916864,0.009376,0.306016,0.005376,0.004864,0.006144,0.577216,0.007872
+667,359.93,2.77832,0.88064,0.008192,0.282624,0.005504,0.004736,0.006144,0.565248,0.008192
+668,342.561,2.91919,0.897728,0.008704,0.301344,0.004128,0.005856,0.0064,0.563232,0.008064
+669,314.786,3.17676,0.880768,0.008416,0.286368,0.004448,0.005376,0.006336,0.561728,0.008096
+670,366.041,2.73193,0.886016,0.008192,0.290688,0.004224,0.005984,0.006304,0.562816,0.007808
+671,267.293,3.74121,0.89456,0.008544,0.294816,0.004192,0.006144,0.006144,0.566816,0.007904
+672,364.867,2.74072,0.901024,0.008192,0.29696,0.005536,0.004704,0.006144,0.571392,0.008096
+673,313.03,3.19458,0.86384,0.00848,0.260352,0.005664,0.004544,0.006144,0.570784,0.007872
+674,382.983,2.61108,0.851872,0.008192,0.256,0.00544,0.0048,0.006144,0.5632,0.008096
+675,319.451,3.13037,0.912896,0.008192,0.311296,0.004096,0.00592,0.006368,0.56912,0.007904
+676,404.463,2.47241,0.847872,0.009664,0.244288,0.005152,0.004864,0.006336,0.569376,0.008192
+677,277.45,3.60425,0.890368,0.008448,0.292896,0.005472,0.004736,0.007328,0.563584,0.007904
+678,356.298,2.80664,0.842048,0.008512,0.246976,0.004928,0.005184,0.006432,0.562848,0.007168
+679,352.072,2.84033,0.901056,0.009632,0.286848,0.004576,0.005248,0.006368,0.580256,0.008128
+680,308.387,3.24268,0.866304,0.009536,0.254304,0.004448,0.00528,0.006528,0.578016,0.008192
+681,365.29,2.73755,0.862208,0.008192,0.247808,0.005952,0.004288,0.006144,0.581632,0.008192
+682,304.128,3.28809,0.966656,0.008192,0.365856,0.004832,0.004096,0.007328,0.56816,0.008192
+683,331.526,3.01636,0.888288,0.00848,0.294656,0.004352,0.005472,0.006304,0.561184,0.00784
+684,349.757,2.85913,0.87872,0.00832,0.256032,0.005312,0.004896,0.006144,0.589824,0.008192
+685,310.045,3.22534,0.888832,0.008224,0.255968,0.005856,0.004384,0.007328,0.59888,0.008192
+686,337.092,2.96655,0.915584,0.00848,0.306592,0.004704,0.00512,0.006432,0.576224,0.008032
+687,257.983,3.87622,0.847552,0.008224,0.249824,0.005952,0.004288,0.006144,0.565248,0.007872
+688,340.595,2.93604,0.872992,0.008704,0.282816,0.004256,0.005568,0.006688,0.557024,0.007936
+689,324.899,3.07788,0.854016,0.008192,0.250976,0.004928,0.004192,0.006176,0.57136,0.008192
+690,372.702,2.68311,0.862592,0.008576,0.260096,0.005376,0.004864,0.006144,0.569344,0.008192
+691,324.667,3.08008,0.866816,0.00848,0.255808,0.004512,0.00544,0.0064,0.57904,0.007136
+692,338.512,2.9541,0.894752,0.009536,0.293216,0.005536,0.004896,0.006304,0.567296,0.007968
+693,288.207,3.46973,0.919296,0.008512,0.304928,0.004288,0.00576,0.00656,0.581376,0.007872
+694,337.731,2.96094,0.8576,0.009824,0.249856,0.004512,0.005344,0.006304,0.573888,0.007872
+695,331.418,3.01733,0.894976,0.009568,0.285344,0.00528,0.004864,0.006272,0.575488,0.00816
+696,325.985,3.06763,0.873888,0.009376,0.250048,0.004768,0.004096,0.007648,0.590112,0.00784
+697,345.537,2.89404,0.95664,0.008704,0.335968,0.00608,0.004128,0.006272,0.587648,0.00784
+698,264.89,3.77515,0.944224,0.00816,0.337952,0.0056,0.00464,0.006176,0.574752,0.006944
+699,326.011,3.06738,0.890912,0.008192,0.284672,0.005152,0.005088,0.006144,0.574688,0.006976
+700,317.889,3.14575,0.929216,0.008192,0.315392,0.005952,0.005376,0.006592,0.579776,0.007936
+701,323.59,3.09033,0.85472,0.008608,0.251904,0.004512,0.005312,0.006336,0.569984,0.008064
+702,305.923,3.2688,0.974912,0.008256,0.38912,0.004096,0.005792,0.006496,0.55296,0.008192
+703,349.16,2.86401,0.857216,0.009728,0.25856,0.005952,0.004288,0.006144,0.564448,0.008096
+704,301.931,3.31201,0.97936,0.008544,0.366304,0.004864,0.004096,0.0072,0.580576,0.007776
+705,320.852,3.1167,0.85616,0.00848,0.252992,0.00496,0.004192,0.006144,0.571392,0.008
+706,391.812,2.55225,0.86,0.0096,0.246176,0.0056,0.004864,0.006144,0.579584,0.008032
+707,219.99,4.54565,0.872448,0.009312,0.273312,0.005408,0.004832,0.006144,0.56512,0.00832
+708,334.668,2.98804,0.881056,0.008608,0.270336,0.005728,0.004512,0.006144,0.577536,0.008192
+709,345.421,2.89502,0.882688,0.009248,0.250368,0.004576,0.00528,0.006848,0.598176,0.008192
+710,357.168,2.7998,0.878592,0.0096,0.260544,0.004288,0.005568,0.006464,0.583744,0.008384
+711,292.342,3.42065,0.88384,0.008224,0.24368,0.005952,0.004288,0.00624,0.607904,0.007552
+712,330.056,3.02979,0.864576,0.008576,0.269504,0.004928,0.004096,0.006368,0.562976,0.008128
+713,294.549,3.39502,0.941376,0.008192,0.288768,0.004096,0.006016,0.006272,0.620064,0.007968
+714,263.51,3.79492,0.867776,0.008288,0.259136,0.00496,0.004192,0.00624,0.577152,0.007808
+715,296.232,3.37573,0.887424,0.0088,0.25552,0.004608,0.005216,0.006368,0.599872,0.00704
+716,323.794,3.08838,0.928064,0.008512,0.2888,0.00576,0.004448,0.006144,0.606208,0.008192
+717,323.488,3.09131,0.999424,0.008192,0.353824,0.004576,0.00528,0.006496,0.612864,0.008192
+718,396.592,2.52148,0.90112,0.008864,0.248032,0.00544,0.0048,0.006144,0.62,0.00784
+719,293.683,3.40503,0.8704,0.00928,0.260384,0.004768,0.00512,0.006496,0.57616,0.008192
+720,429.846,2.32642,0.86848,0.008672,0.246304,0.005664,0.004576,0.006144,0.589216,0.007904
+721,415.627,2.40601,0.88608,0.009536,0.25056,0.005216,0.004864,0.006336,0.601728,0.00784
+722,255.968,3.90674,0.868,0.008192,0.256,0.005888,0.004352,0.006144,0.579552,0.007872
+723,395.481,2.52856,0.90112,0.00944,0.277152,0.004224,0.0056,0.006336,0.5912,0.007168
+724,305.466,3.27368,0.87488,0.008576,0.240832,0.004928,0.004096,0.006368,0.601888,0.008192
+725,370.277,2.70068,0.925568,0.009504,0.286624,0.004928,0.004096,0.0072,0.605152,0.008064
+726,387.109,2.58325,0.863744,0.008384,0.244992,0.004672,0.005152,0.006432,0.586208,0.007904
+727,323.003,3.09595,0.918048,0.008736,0.29216,0.0048,0.004096,0.007456,0.592608,0.008192
+728,359.424,2.78223,0.878976,0.008576,0.253952,0.005888,0.004352,0.007328,0.590688,0.008192
+729,307.646,3.25049,0.90112,0.008192,0.292704,0.004256,0.006016,0.006272,0.576512,0.007168
+730,387.548,2.58032,0.867168,0.008608,0.268768,0.00528,0.004928,0.006144,0.566272,0.007168
+731,350.145,2.85596,0.866304,0.008192,0.265792,0.004544,0.00528,0.006336,0.567968,0.008192
+732,362.061,2.76196,0.877696,0.009568,0.264864,0.0056,0.00464,0.006144,0.57904,0.00784
+733,381.13,2.62378,0.907264,0.009408,0.297408,0.00448,0.005184,0.006688,0.576,0.008096
+734,294.952,3.39038,0.872704,0.008448,0.271712,0.004768,0.004096,0.007488,0.569056,0.007136
+735,396.63,2.52124,0.886784,0.009568,0.26896,0.005984,0.004256,0.006144,0.58368,0.008192
+736,310.233,3.22339,0.89488,0.00928,0.279488,0.005248,0.004896,0.00624,0.581632,0.008096
+737,436.395,2.2915,0.861984,0.008768,0.266304,0.005792,0.004448,0.006144,0.562528,0.008
+738,413.07,2.4209,0.843712,0.008192,0.23936,0.004352,0.005472,0.006368,0.57184,0.008128
+739,298.238,3.35303,0.872608,0.008608,0.280736,0.005696,0.004544,0.006144,0.558784,0.008096
+740,479.513,2.08545,0.851968,0.008256,0.242368,0.005824,0.004416,0.006144,0.57712,0.00784
+741,489.075,2.04468,0.83568,0.008832,0.22736,0.005312,0.004896,0.006176,0.5752,0.007904
+742,453.7,2.2041,0.874784,0.008384,0.236768,0.004928,0.00416,0.006272,0.60608,0.008192
+743,529.747,1.8877,0.838496,0.00848,0.223808,0.0056,0.00464,0.006144,0.581632,0.008192
+744,482.791,2.07129,0.835136,0.007808,0.231968,0.00448,0.005344,0.006304,0.571424,0.007808
+745,402.358,2.48535,0.835584,0.008192,0.241664,0.005632,0.004608,0.006144,0.5624,0.006944
+746,432.296,2.31323,0.870336,0.008192,0.249856,0.005632,0.004608,0.007232,0.586688,0.008128
+747,424.588,2.35522,0.87808,0.008192,0.26128,0.00496,0.004096,0.006176,0.585408,0.007968
+748,405.745,2.4646,0.840352,0.008608,0.25136,0.004864,0.004096,0.007296,0.55712,0.007008
+749,501.04,1.99585,0.826112,0.008608,0.22736,0.004416,0.005408,0.006368,0.56576,0.008192
+750,512,1.95312,0.836608,0.008192,0.232576,0.00496,0.004128,0.006304,0.572672,0.007776
+751,423.447,2.36157,0.84848,0.00832,0.233728,0.00432,0.005632,0.006496,0.581792,0.008192
+752,465.137,2.1499,0.815104,0.008192,0.231328,0.004192,0.005632,0.006656,0.552128,0.006976
+753,453.599,2.20459,0.843584,0.008192,0.233472,0.005952,0.004288,0.006144,0.577536,0.008
+754,397.747,2.51416,0.876576,0.009632,0.262752,0.005632,0.004608,0.006144,0.579584,0.008224
+755,457.603,2.1853,0.904704,0.008192,0.26368,0.004608,0.005216,0.006336,0.6088,0.007872
+756,441.474,2.26514,0.903008,0.008384,0.24704,0.004864,0.005632,0.006336,0.622912,0.00784
+757,416.938,2.39844,0.858112,0.008416,0.261312,0.004928,0.004096,0.0072,0.564192,0.007968
+758,488.724,2.04614,0.848224,0.008832,0.249376,0.004576,0.005312,0.006368,0.565856,0.007904
+759,447.895,2.23267,0.838912,0.008224,0.229152,0.004288,0.005632,0.006336,0.577376,0.007904
+760,410.915,2.43359,0.84992,0.009312,0.242592,0.005184,0.004896,0.006304,0.57344,0.008192
+761,491.658,2.03394,0.84816,0.00848,0.233472,0.005664,0.004576,0.006144,0.581664,0.00816
+762,508.757,1.96558,0.852064,0.009344,0.231328,0.00496,0.004224,0.006208,0.588992,0.007008
+763,461.677,2.16602,0.847488,0.008192,0.227328,0.004096,0.005888,0.006368,0.587712,0.007904
+764,433.027,2.30933,0.860896,0.008576,0.235872,0.005152,0.004896,0.006368,0.59184,0.008192
+765,461.417,2.16724,0.868608,0.00864,0.250176,0.005792,0.004448,0.006144,0.585472,0.007936
+766,378.979,2.63867,0.848448,0.008192,0.230336,0.005952,0.004288,0.007264,0.584576,0.00784
+767,428.586,2.33325,0.856032,0.00848,0.257056,0.00496,0.004224,0.006176,0.567264,0.007872
+768,478.952,2.08789,0.887744,0.00864,0.248256,0.005632,0.004608,0.006144,0.60752,0.006944
+769,473.745,2.11084,0.817152,0.008192,0.227328,0.00528,0.00496,0.006144,0.557056,0.008192
+770,430.388,2.32349,0.89296,0.008192,0.301056,0.005312,0.004928,0.006176,0.559072,0.008224
+771,448.68,2.22876,0.866336,0.010368,0.257824,0.00432,0.005504,0.006784,0.57344,0.008096
+772,490.304,2.03955,0.837024,0.008224,0.22528,0.00592,0.00432,0.006144,0.579392,0.007744
+773,357.76,2.79517,0.8592,0.009888,0.254144,0.004256,0.005632,0.006368,0.571008,0.007904
+774,432.159,2.31396,0.85312,0.008192,0.260096,0.005216,0.004896,0.006272,0.56064,0.007808
+775,400.587,2.49634,0.83488,0.008224,0.234848,0.004768,0.005312,0.006336,0.567488,0.007904
+776,429.08,2.33057,0.874496,0.008192,0.245792,0.005664,0.004544,0.006144,0.595968,0.008192
+777,500.795,1.99683,0.841952,0.008384,0.229376,0.00528,0.004896,0.006208,0.579584,0.008224
+778,502.762,1.98901,0.838496,0.008352,0.221888,0.005888,0.004352,0.006144,0.58368,0.008192
+779,391.101,2.55688,0.8704,0.00944,0.248384,0.00432,0.005504,0.006304,0.588256,0.008192
+780,397.169,2.51782,0.84656,0.008224,0.230112,0.005792,0.004448,0.006112,0.584832,0.00704
+781,486.23,2.05664,0.821472,0.008192,0.231424,0.004416,0.005408,0.006272,0.557664,0.008096
+782,470.48,2.12549,0.837632,0.008192,0.237568,0.005152,0.004864,0.006304,0.56736,0.008192
+783,484.848,2.0625,0.84,0.008512,0.227328,0.00544,0.004768,0.006176,0.579584,0.008192
+784,529.473,1.88867,0.83728,0.008544,0.223232,0.005312,0.004928,0.006144,0.581248,0.007872
+785,402.358,2.48535,0.847904,0.008768,0.245312,0.004928,0.004096,0.006176,0.570784,0.00784
+786,471.672,2.12012,0.845792,0.009536,0.233376,0.004832,0.005152,0.006304,0.578368,0.008224
+787,360.5,2.77393,0.838464,0.00864,0.231552,0.00432,0.005504,0.006368,0.575136,0.006944
+788,420.966,2.37549,0.85216,0.00864,0.233472,0.005248,0.004896,0.00624,0.585728,0.007936
+789,456.277,2.19165,0.845824,0.009376,0.232288,0.005824,0.005504,0.006336,0.578336,0.00816
+790,494.387,2.02271,0.845824,0.0096,0.232064,0.00528,0.004896,0.006208,0.58064,0.007136
+791,429.17,2.33008,0.841504,0.008192,0.229376,0.005248,0.004896,0.00624,0.579584,0.007968
+792,468.275,2.1355,0.848384,0.0088,0.231552,0.004096,0.005792,0.006368,0.583808,0.007968
+793,528.243,1.89307,0.834848,0.008192,0.224896,0.00448,0.005344,0.0064,0.577536,0.008
+794,312.815,3.19678,0.81472,0.008192,0.223232,0.005248,0.004864,0.006272,0.559072,0.00784
+795,467.74,2.13794,0.868352,0.009728,0.234016,0.005824,0.004384,0.006144,0.601184,0.007072
+796,515.026,1.94165,0.837632,0.008192,0.226944,0.00448,0.005376,0.006304,0.578144,0.008192
+797,399.026,2.5061,0.844352,0.008544,0.228736,0.004928,0.004128,0.006304,0.58352,0.008192
+798,472.815,2.11499,0.846016,0.008384,0.237248,0.004416,0.005408,0.006432,0.575936,0.008192
+799,510.341,1.95947,0.84976,0.009248,0.22816,0.004256,0.0056,0.006304,0.58816,0.008032
+800,484.39,2.06445,0.82096,0.008096,0.225376,0.005312,0.004928,0.006176,0.563168,0.007904
+801,367.124,2.72388,0.845824,0.009344,0.236032,0.00448,0.005472,0.0064,0.577056,0.00704
+802,504.993,1.98022,0.845568,0.008608,0.2336,0.005888,0.004352,0.006176,0.579072,0.007872
+803,436.581,2.29053,0.826208,0.008928,0.224704,0.0048,0.004096,0.007296,0.568192,0.008192
+804,441.427,2.26538,0.843776,0.008192,0.23552,0.004096,0.005856,0.006272,0.575648,0.008192
+805,524.994,1.90479,0.822528,0.009824,0.227744,0.005664,0.004576,0.006144,0.560736,0.00784
+806,531.189,1.88257,0.827104,0.008224,0.224768,0.004576,0.00528,0.006368,0.569984,0.007904
+807,436.72,2.28979,0.890976,0.0096,0.272704,0.004608,0.005248,0.006528,0.584192,0.008096
+808,398.599,2.50879,0.836288,0.0088,0.233568,0.004096,0.005856,0.0064,0.569376,0.008192
+809,488.841,2.04565,0.857952,0.009216,0.228352,0.004256,0.005728,0.0064,0.595968,0.008032
+810,357.324,2.79858,0.856608,0.00864,0.244192,0.005536,0.004704,0.006144,0.579584,0.007808
+811,505.991,1.97632,0.84176,0.008224,0.22736,0.005472,0.004736,0.006176,0.5816,0.008192
+812,527.699,1.89502,0.863296,0.008288,0.225184,0.005472,0.004768,0.006144,0.605568,0.007872
+813,392.337,2.54883,0.88816,0.009408,0.26912,0.005824,0.004416,0.006176,0.585408,0.007808
+814,510.341,1.95947,0.857568,0.00928,0.228288,0.00592,0.00432,0.006144,0.595776,0.00784
+815,407.806,2.45215,0.853536,0.008384,0.22528,0.00512,0.004896,0.006304,0.59568,0.007872
+816,399.961,2.50024,0.83984,0.008352,0.23952,0.004192,0.005632,0.006432,0.56752,0.008192
+817,513.219,1.94849,0.852224,0.008416,0.231264,0.004256,0.005568,0.006432,0.589312,0.006976
+818,532.017,1.87964,0.84624,0.008352,0.22576,0.004096,0.005856,0.006304,0.587904,0.007968
+819,373.689,2.67603,0.839648,0.00832,0.22784,0.005696,0.004544,0.006144,0.579232,0.007872
+820,516.454,1.93628,0.84528,0.008192,0.227328,0.005152,0.004928,0.006304,0.585568,0.007808
+821,543.308,1.84058,0.835776,0.007904,0.224768,0.004928,0.004224,0.006336,0.579392,0.008224
+822,301.553,3.31616,0.832992,0.009248,0.229952,0.005568,0.004896,0.006336,0.569152,0.00784
+823,512.833,1.94995,0.832288,0.008768,0.227552,0.005824,0.004416,0.006144,0.571392,0.008192
+824,539.373,1.854,0.841248,0.00832,0.223232,0.005728,0.004512,0.006144,0.585472,0.00784
+825,438.873,2.27856,0.825984,0.009184,0.22528,0.005792,0.004448,0.006144,0.567296,0.00784
+826,479.008,2.08765,0.833536,0.008192,0.231424,0.004096,0.005728,0.006368,0.569536,0.008192
+827,547.301,1.82715,0.854016,0.00928,0.22208,0.00416,0.005696,0.006336,0.598272,0.008192
+828,493.851,2.0249,0.86624,0.0088,0.229376,0.005408,0.004832,0.006144,0.603808,0.007872
+829,377.512,2.64893,0.892928,0.009888,0.264576,0.004096,0.005888,0.006368,0.59392,0.008192
+830,478.952,2.08789,0.84864,0.008352,0.238272,0.004096,0.005984,0.006272,0.577568,0.008096
+831,421.486,2.37256,0.858112,0.008192,0.231424,0.004096,0.005824,0.006368,0.594016,0.008192
+832,369.042,2.70972,0.884096,0.008224,0.258016,0.005472,0.004768,0.006144,0.593696,0.007776
+833,513.541,1.94727,0.828928,0.00848,0.227328,0.005216,0.004896,0.006272,0.56864,0.008096
+834,352.799,2.83447,0.84992,0.008384,0.236544,0.004928,0.005312,0.0064,0.58016,0.008192
+835,403.031,2.4812,0.862784,0.00864,0.239776,0.0056,0.004608,0.006144,0.589824,0.008192
+836,451.648,2.21411,0.905248,0.009312,0.277408,0.005568,0.004672,0.006144,0.595232,0.006912
+837,354.693,2.81934,0.854016,0.008384,0.229184,0.005504,0.004736,0.006144,0.591872,0.008192
+838,438.169,2.28223,0.866688,0.007168,0.243456,0.004352,0.005472,0.006368,0.591424,0.008448
+839,484.104,2.06567,0.859968,0.009664,0.229376,0.004672,0.005152,0.006272,0.596832,0.008
+840,302.422,3.30664,0.893664,0.008736,0.254016,0.005248,0.004896,0.006272,0.607552,0.006944
+841,482.052,2.07446,0.845632,0.008736,0.231136,0.004544,0.00592,0.00624,0.581248,0.007808
+842,408.334,2.44897,0.845888,0.008192,0.228512,0.00496,0.00512,0.0064,0.585728,0.006976
+843,386.306,2.58862,0.905376,0.008608,0.251744,0.00432,0.005504,0.006368,0.62096,0.007872
+844,503.441,1.98633,0.870656,0.008608,0.227744,0.005376,0.004864,0.006144,0.610112,0.007808
+845,548.767,1.82227,0.828768,0.008384,0.221184,0.00528,0.004896,0.006208,0.57344,0.009376
+846,384.348,2.60181,0.849952,0.009312,0.22624,0.00528,0.004896,0.006208,0.589824,0.008192
+847,514.832,1.94238,0.841728,0.00832,0.225152,0.005376,0.004864,0.006176,0.583648,0.008192
+848,503.813,1.98486,0.831296,0.007904,0.221312,0.004256,0.005408,0.006336,0.57808,0.008
+849,303.903,3.29053,0.8616,0.009472,0.246464,0.00416,0.005728,0.006432,0.581536,0.007808
+850,486.403,2.05591,0.841504,0.009792,0.231168,0.0048,0.004096,0.007456,0.576224,0.007968
+851,475.615,2.10254,0.870304,0.008192,0.226976,0.004448,0.005376,0.006304,0.610912,0.008096
+852,275.974,3.62354,0.89808,0.00832,0.26304,0.005664,0.004576,0.006176,0.60208,0.008224
+853,454.152,2.2019,0.84272,0.008896,0.229024,0.004576,0.005152,0.006432,0.581664,0.006976
+854,354.601,2.82007,0.863552,0.008192,0.228608,0.004864,0.004128,0.007328,0.602592,0.00784
+855,314.135,3.18335,0.927744,0.009568,0.293536,0.00592,0.00432,0.006144,0.600064,0.008192
+856,355.278,2.8147,0.911392,0.008448,0.284192,0.00432,0.005504,0.0064,0.594304,0.008224
+857,355.278,2.8147,0.864768,0.008576,0.253408,0.004768,0.005248,0.006368,0.579264,0.007136
+858,409.723,2.44067,0.901152,0.008224,0.264192,0.005696,0.004544,0.006144,0.60416,0.008192
+859,369.542,2.70605,0.881856,0.009536,0.2608,0.005824,0.004416,0.006144,0.587296,0.00784
+860,386.415,2.58789,0.919584,0.008448,0.290816,0.005344,0.004864,0.006176,0.595968,0.007968
+861,318.656,3.13818,0.913632,0.008416,0.282368,0.004352,0.005472,0.0064,0.598176,0.008448
+862,278.393,3.59204,0.903456,0.008352,0.288576,0.004832,0.004096,0.00736,0.5824,0.00784
+863,469.348,2.13062,0.864256,0.008192,0.243328,0.00448,0.005344,0.006592,0.588128,0.008192
+864,319.227,3.13257,0.880672,0.008224,0.237568,0.00544,0.0048,0.006176,0.610272,0.008192
+865,469.402,2.13037,0.865696,0.008352,0.235264,0.004352,0.005472,0.006336,0.598112,0.007808
+866,398.87,2.50708,0.873824,0.009568,0.233376,0.004864,0.004096,0.007264,0.606784,0.007872
+867,298.782,3.34692,0.949984,0.008416,0.296832,0.004224,0.0056,0.006368,0.620672,0.007872
+868,432.752,2.31079,0.892896,0.00944,0.266752,0.004384,0.005472,0.006336,0.592352,0.00816
+869,366.992,2.72485,0.8496,0.009568,0.232096,0.005632,0.004608,0.006176,0.583648,0.007872
+870,412.862,2.42212,0.91776,0.00864,0.2848,0.005856,0.004384,0.006144,0.600064,0.007872
+871,483.818,2.06689,0.85008,0.008384,0.229344,0.004096,0.005728,0.006368,0.587968,0.008192
+872,319.875,3.12622,0.85904,0.0088,0.233792,0.00592,0.00432,0.006144,0.591872,0.008192
+873,410.339,2.43701,0.882112,0.008256,0.260064,0.004128,0.005728,0.006432,0.589696,0.007808
+874,445.556,2.24438,0.899072,0.009632,0.233568,0.004608,0.005216,0.006304,0.631552,0.008192
+875,385.833,2.5918,0.886368,0.008608,0.253984,0.005312,0.004896,0.006176,0.599488,0.007904
+876,470.156,2.12695,0.871424,0.008608,0.238112,0.005952,0.004288,0.006144,0.601376,0.006944
+877,509.897,1.96118,0.839392,0.008192,0.233472,0.005856,0.004384,0.006144,0.57344,0.007904
+878,385.433,2.59448,0.857984,0.009344,0.225536,0.004736,0.004096,0.007328,0.59888,0.008064
+879,356.67,2.80371,0.932192,0.008576,0.293088,0.004128,0.005696,0.006368,0.606432,0.007904
+880,464.136,2.15454,0.8704,0.008192,0.237568,0.004096,0.005824,0.006464,0.600064,0.008192
+881,418.087,2.39185,0.846976,0.009312,0.2344,0.00512,0.004896,0.006304,0.579168,0.007776
+882,495.704,2.01733,0.861984,0.009856,0.225664,0.005344,0.004896,0.006144,0.602112,0.007968
+883,489.718,2.04199,0.852544,0.008704,0.227168,0.00432,0.005536,0.006336,0.592288,0.008192
+884,381.307,2.62256,0.907072,0.008192,0.270336,0.005664,0.004576,0.006144,0.60416,0.008
+885,383.772,2.60571,0.847424,0.009568,0.229984,0.00416,0.005632,0.006304,0.583968,0.007808
+886,423.141,2.36328,0.929536,0.026048,0.276384,0.004768,0.004096,0.007264,0.60304,0.007936
+887,347.325,2.87915,0.888704,0.008192,0.249216,0.004736,0.00416,0.008096,0.60624,0.008064
+888,477.556,2.09399,0.89104,0.008672,0.233472,0.00592,0.016608,0.006176,0.612288,0.007904
+889,457.705,2.18481,0.860704,0.007936,0.221984,0.005856,0.004384,0.00624,0.606112,0.008192
+890,421.746,2.37109,0.876608,0.00832,0.242624,0.00496,0.004224,0.007136,0.602368,0.006976
+891,493.019,2.02832,0.845824,0.008192,0.228704,0.004768,0.004096,0.0072,0.584704,0.00816
+892,385.542,2.59375,0.862208,0.008192,0.23072,0.0048,0.004128,0.007328,0.598848,0.008192
+893,410.174,2.43799,0.884736,0.00832,0.255136,0.004832,0.00544,0.006336,0.597664,0.007008
+894,503.565,1.98584,0.858144,0.009568,0.227424,0.004672,0.005184,0.006336,0.598048,0.006912
+895,497.631,2.00952,0.85376,0.008192,0.229408,0.005408,0.0048,0.006144,0.591872,0.007936
+896,418.9,2.38721,0.864416,0.00928,0.238528,0.005152,0.004992,0.00624,0.593184,0.00704
+897,482.223,2.07373,0.899744,0.00864,0.232896,0.004896,0.004096,0.007232,0.633792,0.008192
+898,458.987,2.17871,0.864288,0.008224,0.226624,0.004768,0.004096,0.007264,0.605088,0.008224
+899,361.486,2.76636,0.92784,0.008192,0.270336,0.005952,0.004288,0.006144,0.625952,0.006976
+900,490.421,2.03906,0.886432,0.00864,0.248,0.005632,0.004608,0.006176,0.605504,0.007872
+901,485.653,2.05908,0.864256,0.007744,0.224736,0.004928,0.004288,0.006112,0.608256,0.008192
+902,371.857,2.68921,0.886752,0.008192,0.242912,0.004896,0.004096,0.00736,0.611136,0.00816
+903,447.064,2.23682,0.919552,0.009408,0.274432,0.004928,0.004096,0.0072,0.611296,0.008192
+904,441.57,2.26465,0.874272,0.008768,0.254016,0.00512,0.004896,0.006304,0.58736,0.007808
+905,426.445,2.34497,0.862304,0.00816,0.229696,0.004544,0.005344,0.006336,0.600416,0.007808
+906,411.824,2.42822,0.946176,0.008192,0.3104,0.004928,0.00416,0.007168,0.603136,0.008192
+907,496.665,2.01343,0.872448,0.008288,0.22736,0.005888,0.00432,0.006144,0.612352,0.008096
+908,409.846,2.43994,0.89088,0.00928,0.229536,0.004896,0.004096,0.006144,0.628736,0.008192
+909,489.952,2.04102,0.892928,0.009408,0.232256,0.005568,0.004672,0.006176,0.626656,0.008192
+910,485.711,2.05884,0.874368,0.008192,0.231296,0.004224,0.005632,0.006272,0.610688,0.008064
+911,368.445,2.71411,0.894944,0.009664,0.22896,0.004928,0.004288,0.006144,0.6328,0.00816
+912,396.093,2.52466,0.865248,0.008544,0.232064,0.005888,0.004352,0.006144,0.600064,0.008192
+913,450.357,2.22046,0.88944,0.020384,0.25696,0.00592,0.00432,0.006144,0.587776,0.007936
+914,359.141,2.78442,0.867936,0.008576,0.23552,0.005408,0.004832,0.006144,0.599552,0.007904
+915,460.173,2.1731,0.88912,0.008576,0.243968,0.00528,0.004864,0.00624,0.612352,0.00784
+916,425.514,2.3501,0.866944,0.008576,0.23376,0.00544,0.004768,0.006144,0.600064,0.008192
+917,364.932,2.74023,0.911904,0.008736,0.260128,0.004096,0.00576,0.0064,0.618624,0.00816
+918,341.932,2.92456,0.909024,0.008256,0.268288,0.005248,0.004896,0.006272,0.608224,0.00784
+919,420.232,2.37964,0.92528,0.008192,0.280576,0.00592,0.00432,0.006144,0.612288,0.00784
+920,402.476,2.48462,0.892448,0.009408,0.244544,0.005248,0.004896,0.00624,0.61424,0.007872
+921,437.233,2.28711,0.960256,0.02048,0.284672,0.005536,0.004736,0.006112,0.630752,0.007968
+922,363.733,2.74927,0.890432,0.008576,0.239616,0.00592,0.00432,0.006176,0.617984,0.00784
+923,410.915,2.43359,0.897792,0.009024,0.268416,0.004096,0.005792,0.006304,0.59616,0.008
+924,475.836,2.10156,0.874496,0.008192,0.232544,0.004928,0.004192,0.007296,0.610176,0.007168
+925,306.679,3.26074,0.875136,0.00864,0.235712,0.005408,0.004832,0.006144,0.607264,0.007136
+926,428.407,2.33423,0.898944,0.009248,0.250848,0.005344,0.004896,0.006144,0.6144,0.008064
+927,331.553,3.01611,0.854016,0.008192,0.233472,0.005504,0.004736,0.006144,0.587776,0.008192
+928,399.181,2.50513,0.98304,0.008192,0.337664,0.004352,0.005472,0.006368,0.6128,0.008192
+929,469.563,2.12964,0.89312,0.008192,0.2352,0.004416,0.005408,0.006336,0.626208,0.00736
+930,466.302,2.14453,0.871104,0.008576,0.231712,0.00576,0.00448,0.006144,0.607328,0.007104
+931,382.732,2.61279,0.924704,0.008192,0.274432,0.004096,0.005792,0.006496,0.617888,0.007808
+932,474.568,2.10718,0.868352,0.008192,0.2376,0.0056,0.004608,0.006144,0.598016,0.008192
+933,376.229,2.65796,0.894976,0.008192,0.234912,0.004704,0.004096,0.007392,0.627488,0.008192
+934,383.019,2.61084,0.899072,0.008192,0.241664,0.005792,0.00448,0.006112,0.62464,0.008192
+935,471.13,2.12256,0.895936,0.00864,0.246176,0.004096,0.006144,0.006144,0.617792,0.006944
+936,453.85,2.20337,0.858176,0.0096,0.232064,0.005248,0.004864,0.006272,0.593152,0.006976
+937,384.348,2.60181,0.960768,0.008448,0.323552,0.004128,0.005696,0.006368,0.604384,0.008192
+938,482.507,2.07251,0.879168,0.008736,0.235072,0.004544,0.005312,0.006336,0.612,0.007168
+939,474.074,2.10938,0.882688,0.008192,0.23088,0.00464,0.005184,0.00704,0.61856,0.008192
+940,336.399,2.97266,0.933696,0.009504,0.309024,0.005056,0.004096,0.0072,0.590816,0.008
+941,412.529,2.42407,0.893568,0.008736,0.257216,0.005024,0.004096,0.007232,0.603072,0.008192
+942,352.86,2.83398,0.88784,0.00944,0.2568,0.0056,0.00464,0.006144,0.597408,0.007808
+943,446.479,2.23975,0.878592,0.008192,0.239616,0.005664,0.004576,0.006144,0.607232,0.007168
+944,469.886,2.12817,0.893568,0.00864,0.24928,0.004864,0.005472,0.006432,0.611712,0.007168
+945,338.764,2.9519,0.878752,0.00864,0.245984,0.004192,0.005632,0.006368,0.600096,0.00784
+946,327.366,3.05469,0.883328,0.008384,0.239648,0.004736,0.004192,0.007424,0.610976,0.007968
+947,297.415,3.3623,0.903168,0.008192,0.260096,0.005536,0.004704,0.007232,0.610464,0.006944
+948,425.117,2.35229,0.903872,0.008512,0.268896,0.004096,0.005728,0.006336,0.602304,0.008
+949,429.035,2.33081,0.894976,0.009728,0.256256,0.004352,0.005504,0.006336,0.604608,0.008192
+950,319.7,3.12793,0.905216,0.009408,0.272576,0.004736,0.004096,0.007328,0.600128,0.006944
+951,470.534,2.12524,0.868352,0.008192,0.231424,0.005568,0.004672,0.006144,0.60416,0.008192
+952,388.762,2.57227,0.907648,0.008576,0.275712,0.004864,0.004096,0.0072,0.599008,0.008192
+953,425.735,2.34888,0.955648,0.008192,0.3072,0.004096,0.005856,0.006432,0.616032,0.00784
+954,488.724,2.04614,0.86976,0.0096,0.234112,0.005696,0.004544,0.006144,0.601824,0.00784
+955,443.386,2.25537,0.869376,0.00864,0.227872,0.005664,0.004576,0.006144,0.609504,0.006976
+956,368.511,2.71362,0.909312,0.009568,0.245792,0.004736,0.005664,0.006368,0.630176,0.007008
+957,478.561,2.0896,0.886688,0.00864,0.251328,0.00496,0.00416,0.00624,0.60352,0.00784
+958,454.152,2.2019,0.874496,0.009376,0.236384,0.005632,0.004608,0.006144,0.605376,0.006976
+959,375.401,2.66382,0.889056,0.008864,0.247584,0.00432,0.005536,0.006304,0.608352,0.008096
+960,474.074,2.10938,0.866048,0.008416,0.231264,0.004256,0.0056,0.006368,0.602304,0.00784
+961,384.926,2.5979,0.898816,0.008416,0.268288,0.00544,0.0048,0.006144,0.597856,0.007872
+962,421.053,2.375,0.90112,0.008192,0.282624,0.005664,0.004576,0.00624,0.585632,0.008192
+963,521.651,1.91699,0.843264,0.008416,0.228384,0.00496,0.004224,0.006176,0.583232,0.007872
+964,343.567,2.91064,1.18406,0.008672,0.564672,0.004768,0.00416,0.0072,0.586112,0.00848
+965,423.447,2.36157,0.919776,0.0088,0.290336,0.004928,0.0056,0.006432,0.595872,0.007808
+966,522.183,1.91504,0.864416,0.008608,0.229536,0.005184,0.004896,0.006304,0.60192,0.007968
+967,449.271,2.22583,0.856032,0.008032,0.225952,0.005248,0.004896,0.00624,0.59792,0.007744
+968,403.467,2.47852,0.949056,0.008608,0.317824,0.005376,0.004864,0.006144,0.599296,0.006944
+969,493.375,2.02686,0.866304,0.008352,0.251136,0.004832,0.00416,0.007264,0.582496,0.008064
+970,440.146,2.27197,0.850656,0.00704,0.227168,0.004096,0.005888,0.0064,0.591872,0.008192
+971,386.634,2.58643,0.878592,0.008192,0.251936,0.005568,0.00464,0.006144,0.59392,0.008192
+972,501.899,1.99243,0.882048,0.008192,0.233472,0.005248,0.004896,0.00624,0.61552,0.00848
+973,508.189,1.96777,0.88464,0.007648,0.234208,0.005408,0.004832,0.006144,0.618496,0.007904
+974,428.317,2.33472,0.86672,0.008192,0.235936,0.005952,0.004288,0.006176,0.597984,0.008192
+975,505.367,1.97876,0.841216,0.008416,0.229376,0.005696,0.004544,0.006144,0.5792,0.00784
+976,501.961,1.99219,0.874208,0.008384,0.229472,0.005664,0.004576,0.006176,0.612064,0.007872
+977,420.059,2.38062,0.88256,0.008896,0.22736,0.005344,0.004864,0.006144,0.622112,0.00784
+978,446.577,2.23926,0.92592,0.008416,0.275552,0.004928,0.004192,0.0072,0.61744,0.008192
+979,452.547,2.20972,0.866784,0.008576,0.225792,0.00592,0.00432,0.006144,0.60816,0.007872
+980,430.297,2.32397,0.854016,0.009824,0.233888,0.005184,0.004896,0.006304,0.585728,0.008192
+981,468.65,2.13379,0.847872,0.009312,0.231872,0.004576,0.00528,0.006272,0.582368,0.008192
+982,465.296,2.14917,0.873984,0.008192,0.258048,0.005632,0.00464,0.007328,0.581696,0.008448
+983,385.869,2.59155,0.876064,0.008032,0.248224,0.006016,0.004224,0.006208,0.595552,0.007808
+984,495.464,2.01831,0.849216,0.008224,0.231424,0.005824,0.004416,0.006144,0.585408,0.007776
+985,462.72,2.16113,0.888608,0.008192,0.243616,0.004192,0.005632,0.00608,0.612832,0.008064
+986,381.485,2.62134,0.85888,0.008576,0.22896,0.004896,0.004096,0.007232,0.598112,0.007008
+987,493.435,2.02661,0.86432,0.008256,0.244992,0.004864,0.004224,0.0072,0.587808,0.006976
+988,518.481,1.92871,0.852384,0.008032,0.225856,0.005824,0.004416,0.006144,0.59392,0.008192
+989,484.275,2.06494,0.866912,0.008736,0.227328,0.00416,0.005696,0.0064,0.6064,0.008192
+990,438.638,2.27979,0.917696,0.008352,0.277856,0.0048,0.004096,0.007328,0.607072,0.008192
+991,453.8,2.20361,0.909536,0.008416,0.25808,0.005824,0.004384,0.006176,0.618464,0.008192
+992,432.844,2.3103,0.934496,0.008608,0.284928,0.004096,0.005856,0.006336,0.616544,0.008128
+993,482.564,2.07227,0.915328,0.008608,0.27056,0.005728,0.004512,0.006112,0.611904,0.007904
+994,532.294,1.87866,0.880256,0.008192,0.226784,0.00464,0.005216,0.006368,0.621248,0.007808
+995,468.328,2.13525,0.903168,0.0096,0.25664,0.0056,0.004672,0.006112,0.613632,0.006912
+996,454.303,2.20117,0.852192,0.008352,0.228896,0.004736,0.004096,0.007296,0.59072,0.008096
+997,519.007,1.92676,0.866752,0.008672,0.223232,0.005824,0.004384,0.006144,0.610304,0.008192
+998,523.986,1.90845,0.874112,0.008192,0.225312,0.005344,0.004864,0.014336,0.608064,0.008
+999,443.29,2.25586,0.865088,0.006944,0.223232,0.005184,0.004864,0.006336,0.611584,0.006944
+1000,449.715,2.22363,0.858144,0.008192,0.238912,0.0048,0.005632,0.006368,0.586016,0.008224
+1001,524.657,1.90601,0.86432,0.00928,0.224192,0.005312,0.004928,0.006144,0.607488,0.006976
+1002,516.911,1.93457,0.885344,0.008256,0.223616,0.004544,0.00528,0.006304,0.62944,0.007904
+1003,448.091,2.23169,0.89472,0.009888,0.231776,0.005504,0.004736,0.006144,0.628736,0.007936
+1004,519.863,1.92358,0.857536,0.008544,0.226784,0.004704,0.004096,0.00752,0.597888,0.008
+1005,519.995,1.9231,0.848192,0.008864,0.226848,0.004736,0.005152,0.006368,0.587936,0.008288
+1006,415.669,2.40576,0.866016,0.008512,0.22656,0.004864,0.004096,0.007584,0.606528,0.007872
+1007,303.632,3.29346,0.893568,0.008608,0.250336,0.005728,0.004512,0.006144,0.610304,0.007936
+1008,421.703,2.37134,0.896608,0.008608,0.256064,0.00576,0.00448,0.006176,0.607648,0.007872
+1009,361.422,2.76685,0.91888,0.009504,0.272128,0.005088,0.005408,0.006656,0.612288,0.007808
+1010,429.936,2.32593,0.882176,0.009632,0.239808,0.004512,0.005344,0.006528,0.60848,0.007872
+1011,440.288,2.27124,0.895712,0.008608,0.25632,0.005216,0.004896,0.006272,0.606208,0.008192
+1012,425.382,2.35083,0.933312,0.009376,0.303264,0.0048,0.004096,0.007232,0.596704,0.00784
+1013,429.801,2.32666,0.876544,0.009568,0.229216,0.004928,0.004096,0.0072,0.613344,0.008192
+1014,436.627,2.29028,0.879904,0.0096,0.227232,0.004832,0.004128,0.0072,0.619008,0.007904
+1015,428.676,2.33276,0.897888,0.008736,0.267936,0.004768,0.004096,0.007328,0.598144,0.00688
+1016,431.794,2.31592,0.869312,0.008672,0.250368,0.005856,0.004352,0.006144,0.585728,0.008192
+1017,435.05,2.29858,0.841728,0.00832,0.229152,0.004192,0.005632,0.006336,0.579904,0.008192
+1018,405.023,2.46899,0.945856,0.008192,0.329536,0.004288,0.0056,0.006688,0.58368,0.007872
+1019,450.555,2.21948,0.881152,0.008704,0.24784,0.005248,0.004864,0.006272,0.600064,0.00816
+1020,349.279,2.86304,0.855648,0.009248,0.23168,0.004832,0.004096,0.007392,0.590592,0.007808
+1021,395.1,2.53101,0.89088,0.009632,0.276992,0.004192,0.005632,0.006368,0.580992,0.007072
+1022,386.015,2.59058,0.89888,0.008448,0.278048,0.004576,0.005248,0.006368,0.588448,0.007744
+1023,344.839,2.8999,0.917408,0.008224,0.266208,0.005568,0.004672,0.007296,0.617344,0.008096
+1024,447.259,2.23584,0.87168,0.009472,0.254752,0.005504,0.004736,0.0072,0.580576,0.00944
+1025,415.458,2.40698,0.862336,0.008512,0.234816,0.0048,0.00416,0.0072,0.594848,0.008
+1026,301.798,3.31348,0.881088,0.00864,0.274432,0.005536,0.004704,0.006144,0.573472,0.00816
+1027,417.235,2.39673,0.89088,0.009504,0.262912,0.005696,0.004512,0.006144,0.594976,0.007136
+1028,346.355,2.88721,0.886176,0.00944,0.24656,0.005184,0.004896,0.006304,0.606016,0.007776
+1029,372.397,2.6853,0.921504,0.008512,0.280576,0.005632,0.004608,0.006144,0.608256,0.007776
+1030,461.365,2.16748,0.87088,0.008608,0.232512,0.004928,0.004288,0.006144,0.606208,0.008192
+1031,345.625,2.89331,0.879904,0.008192,0.25968,0.004512,0.005344,0.0064,0.588,0.007776
+1032,395.443,2.52881,0.866752,0.018304,0.238176,0.005408,0.0048,0.006144,0.585728,0.008192
+1033,356.701,2.80347,0.894976,0.009216,0.259072,0.005504,0.004736,0.006176,0.60208,0.008192
+1034,291.592,3.42944,0.91328,0.008192,0.299008,0.005152,0.004896,0.006336,0.581632,0.008064
+1035,456.888,2.18872,0.880672,0.008512,0.257344,0.004768,0.00544,0.006304,0.590368,0.007936
+1036,353.073,2.83228,0.87104,0.008608,0.245152,0.004928,0.00416,0.00624,0.593792,0.00816
+1037,407.724,2.45264,0.85952,0.008192,0.247808,0.005696,0.004544,0.006144,0.579136,0.008
+1038,381.165,2.62354,0.86432,0.008192,0.23936,0.00496,0.004096,0.007168,0.592672,0.007872
+1039,367.486,2.72119,0.859712,0.00832,0.237472,0.005856,0.004352,0.007328,0.588352,0.008032
+1040,438.967,2.27808,0.854016,0.008192,0.242912,0.004896,0.004096,0.007392,0.578336,0.008192
+1041,421.79,2.37085,0.872128,0.008224,0.242784,0.00496,0.004128,0.006176,0.597984,0.007872
+1042,410.01,2.43896,0.94384,0.008448,0.3024,0.0048,0.004096,0.007296,0.608704,0.008096
+1043,426.533,2.34448,0.868352,0.009632,0.242304,0.005248,0.004736,0.006368,0.591872,0.008192
+1044,289.266,3.45703,0.872,0.009504,0.246176,0.004416,0.005408,0.00688,0.59184,0.007776
+1045,415.669,2.40576,0.884256,0.008192,0.258048,0.00544,0.004832,0.006112,0.593664,0.007968
+1046,423.009,2.36401,0.892992,0.008256,0.258048,0.00528,0.004896,0.006208,0.602112,0.008192
+1047,367.75,2.71924,0.866304,0.009696,0.24368,0.004672,0.005152,0.006336,0.588576,0.008192
+1048,453.549,2.20483,0.864576,0.008672,0.229184,0.004448,0.005408,0.006336,0.602656,0.007872
+1049,427.023,2.3418,0.865568,0.008192,0.231008,0.004512,0.005312,0.006304,0.602208,0.008032
+1050,374.68,2.66895,0.888896,0.008704,0.273952,0.004608,0.005216,0.006464,0.582144,0.007808
+1051,480.921,2.07935,0.86208,0.008192,0.227328,0.005952,0.004288,0.006144,0.602112,0.008064
+1052,410.298,2.43726,0.86432,0.008256,0.235552,0.005376,0.004832,0.006144,0.595968,0.008192
+1053,385.288,2.59546,0.898592,0.00848,0.265408,0.004928,0.004096,0.016384,0.591392,0.007904
+1054,479.513,2.08545,0.865408,0.008192,0.229376,0.005664,0.004608,0.006112,0.603648,0.007808
+1055,398.289,2.51074,0.884736,0.008192,0.23696,0.004704,0.004096,0.007232,0.616608,0.006944
+1056,357.667,2.7959,0.957952,0.009344,0.302976,0.004928,0.004288,0.006144,0.621792,0.00848
+1057,448.14,2.23145,0.94208,0.009344,0.274944,0.004512,0.005344,0.006336,0.633408,0.008192
+1058,312.148,3.20361,0.860736,0.00864,0.23552,0.0056,0.00464,0.006144,0.593248,0.006944
+1059,453.499,2.20508,0.888768,0.008192,0.232896,0.004672,0.005152,0.006368,0.62336,0.008128
+1060,461.781,2.16553,0.847872,0.009408,0.22768,0.004576,0.005248,0.006336,0.587488,0.007136
+1061,338.289,2.95605,0.907008,0.008192,0.260128,0.00576,0.004448,0.006144,0.6144,0.007936
+1062,446.333,2.24048,0.864864,0.0088,0.230656,0.004864,0.005216,0.006432,0.600704,0.008192
+1063,449.912,2.22266,0.92208,0.008672,0.272096,0.004384,0.00544,0.006432,0.616864,0.008192
+1064,348.804,2.86694,0.892256,0.008192,0.245216,0.00464,0.005312,0.006368,0.614656,0.007872
+1065,457.347,2.18652,0.90112,0.009344,0.254848,0.004128,0.00576,0.006304,0.612544,0.008192
+1066,399.649,2.5022,0.862112,0.009568,0.236192,0.0056,0.00464,0.006144,0.591872,0.008096
+1067,411.741,2.42871,0.966336,0.008192,0.335488,0.00448,0.005344,0.006464,0.598496,0.007872
+1068,501.961,1.99219,0.863616,0.00944,0.231648,0.004672,0.004096,0.0072,0.598752,0.007808
+1069,417.661,2.39429,0.893312,0.008576,0.22528,0.005248,0.004896,0.00624,0.63488,0.008192
+1070,429.71,2.32715,0.9088,0.0096,0.293504,0.004096,0.005856,0.006336,0.581536,0.007872
+1071,509.579,1.9624,0.861088,0.008864,0.231296,0.00448,0.005344,0.006304,0.596608,0.008192
+1072,535.285,1.86816,0.85408,0.008544,0.225376,0.005504,0.004736,0.006144,0.595904,0.007872
+1073,371.25,2.6936,0.876352,0.008192,0.256064,0.005696,0.004544,0.006144,0.587776,0.007936
+1074,499.939,2.00024,0.866624,0.00848,0.229376,0.005472,0.004768,0.006144,0.60416,0.008224
+1075,541.298,1.84741,0.847872,0.008192,0.222624,0.004704,0.005184,0.00624,0.592736,0.008192
+1076,341.021,2.93237,0.87248,0.008192,0.244832,0.00496,0.00416,0.006272,0.597088,0.006976
+1077,481.486,2.0769,0.861408,0.009216,0.236192,0.004448,0.006016,0.006272,0.591424,0.00784
+1078,534.726,1.87012,0.84288,0.008192,0.22656,0.004864,0.004096,0.007264,0.584128,0.007776
+1079,378.733,2.64038,0.861696,0.00928,0.232384,0.005696,0.004544,0.006144,0.595776,0.007872
+1080,506.931,1.97266,0.865696,0.008192,0.227328,0.005344,0.004896,0.006144,0.605952,0.00784
+1081,532.155,1.87915,0.858624,0.008704,0.221184,0.005696,0.004544,0.006144,0.60416,0.008192
+1082,421.053,2.375,0.86048,0.007968,0.231968,0.005568,0.004672,0.006144,0.597312,0.006848
+1083,389.835,2.56519,0.864256,0.009312,0.236448,0.00544,0.0048,0.006144,0.59392,0.008192
+1084,485.884,2.05811,0.865632,0.008256,0.232704,0.004864,0.004096,0.007232,0.6008,0.00768
+1085,370.143,2.70166,0.869984,0.009312,0.235552,0.00496,0.00416,0.006272,0.601728,0.008
+1086,440.383,2.27075,0.899904,0.00864,0.265984,0.004736,0.00512,0.0064,0.600832,0.008192
+1087,499.086,2.00366,0.857856,0.007968,0.223584,0.004288,0.005536,0.006368,0.602272,0.00784
+1088,424.5,2.35571,0.845408,0.008192,0.229376,0.005568,0.004672,0.006144,0.583616,0.00784
+1089,443.915,2.25269,0.886976,0.008384,0.26624,0.004096,0.005888,0.006336,0.58784,0.008192
+1090,407.198,2.45581,0.851488,0.010048,0.225472,0.005856,0.004384,0.006144,0.591776,0.007808
+1091,411.162,2.43213,0.865056,0.008608,0.23184,0.00592,0.00432,0.006112,0.600064,0.008192
+1092,462.72,2.16113,0.877216,0.008512,0.238048,0.004128,0.005824,0.006304,0.606336,0.008064
+1093,515.479,1.93994,0.8504,0.00864,0.223264,0.005696,0.004544,0.006144,0.594976,0.007136
+1094,470.696,2.12451,0.855936,0.008192,0.229376,0.004096,0.005792,0.006368,0.594048,0.008064
+1095,464.294,2.15381,0.872448,0.009696,0.251872,0.004672,0.00512,0.006368,0.586528,0.008192
+1096,526.681,1.89868,0.849632,0.00832,0.226624,0.0048,0.004128,0.007232,0.59072,0.007808
+1097,392.864,2.54541,0.84688,0.008192,0.227328,0.005472,0.004768,0.006144,0.58704,0.007936
+1098,395.864,2.52612,0.90064,0.009248,0.277472,0.005376,0.004864,0.006144,0.589664,0.007872
+1099,505.055,1.97998,0.879392,0.00864,0.231776,0.005952,0.004288,0.006208,0.614336,0.008192
+1100,456.786,2.18921,0.856064,0.008192,0.231424,0.005504,0.004736,0.006144,0.591872,0.008192
+1101,412.903,2.42188,0.876416,0.009984,0.23984,0.004128,0.005696,0.006336,0.602368,0.008064
+1102,509.579,1.9624,0.85328,0.00928,0.230336,0.004096,0.00576,0.0064,0.589632,0.007776
+1103,465.455,2.14844,0.848448,0.00864,0.228928,0.004672,0.005152,0.006624,0.58624,0.008192
+1104,339.804,2.94287,0.867712,0.008192,0.239456,0.004256,0.005568,0.006432,0.595808,0.008
+1105,472.434,2.1167,0.879776,0.008192,0.24576,0.00576,0.00448,0.006144,0.601568,0.007872
+1106,411.948,2.42749,0.868384,0.008192,0.238656,0.004928,0.004224,0.006208,0.599232,0.006944
+1107,401.766,2.48901,0.885728,0.008544,0.248448,0.005696,0.004544,0.006144,0.60416,0.008192
+1108,511.425,1.95532,0.857312,0.009408,0.23152,0.004832,0.004096,0.007584,0.592,0.007872
+1109,475.505,2.10303,0.897024,0.010112,0.253216,0.004928,0.004128,0.006176,0.610272,0.008192
+1110,409.641,2.44116,0.8824,0.008384,0.245696,0.00416,0.005664,0.006432,0.604224,0.00784
+1111,414.449,2.41284,0.856448,0.008768,0.228768,0.00496,0.004096,0.007232,0.594784,0.00784
+1112,365.714,2.73438,0.929728,0.008608,0.27648,0.005728,0.004512,0.006144,0.62048,0.007776
+1113,400.744,2.49536,0.900416,0.009312,0.250784,0.006048,0.004192,0.006208,0.616064,0.007808
+1114,507.622,1.96997,0.8704,0.00928,0.228288,0.005728,0.004512,0.006144,0.609504,0.006944
+1115,423.184,2.36304,0.878592,0.008192,0.231264,0.004256,0.005568,0.006336,0.614784,0.008192
+1116,418.643,2.38867,0.909376,0.008256,0.24096,0.0048,0.004128,0.007168,0.635872,0.008192
+1117,516.65,1.93555,0.85984,0.008448,0.229376,0.00528,0.004896,0.006208,0.597792,0.00784
+1118,386.963,2.58423,0.925824,0.010528,0.264576,0.004256,0.005792,0.0064,0.6264,0.007872
+1119,370.746,2.69727,0.893568,0.008672,0.25408,0.005248,0.004864,0.006272,0.607328,0.007104
+1120,493.375,2.02686,0.878592,0.008192,0.229376,0.005952,0.004288,0.006144,0.616448,0.008192
+1121,447.015,2.23706,0.874944,0.008288,0.229344,0.00464,0.005184,0.006368,0.613088,0.008032
+1122,401.372,2.49146,0.865024,0.008768,0.233728,0.00592,0.00432,0.006144,0.598016,0.008128
+1123,511.744,1.9541,0.875008,0.008576,0.227616,0.005184,0.004864,0.006304,0.614432,0.008032
+1124,397.13,2.51807,0.864864,0.008096,0.228032,0.00576,0.00448,0.006144,0.60416,0.008192
+1125,340.171,2.9397,0.918208,0.008608,0.268576,0.005184,0.0048,0.006272,0.616576,0.008192
+1126,473.69,2.11108,0.88384,0.009344,0.240512,0.005696,0.004576,0.006112,0.609824,0.007776
+1127,333.116,3.00195,0.859264,0.008288,0.234848,0.004768,0.004096,0.007328,0.591872,0.008064
+1128,430.976,2.32031,0.86832,0.008192,0.247328,0.004736,0.005376,0.006336,0.588352,0.008
+1129,473.198,2.11328,0.87648,0.008576,0.2352,0.004416,0.00608,0.006208,0.608224,0.007776
+1130,301.842,3.31299,0.866272,0.009312,0.234336,0.00416,0.005696,0.0064,0.598208,0.00816
+1131,407.806,2.45215,0.893632,0.008704,0.262016,0.004416,0.00544,0.006336,0.598528,0.008192
+1132,403.666,2.47729,0.8944,0.00848,0.253984,0.0056,0.00464,0.006176,0.607744,0.007776
+1133,368.147,2.71631,0.899552,0.008672,0.247584,0.00432,0.005312,0.006336,0.619136,0.008192
+1134,470.318,2.12622,0.878016,0.008192,0.22848,0.00496,0.004128,0.006304,0.618176,0.007776
+1135,427.29,2.34033,0.8968,0.008192,0.237568,0.004096,0.005728,0.006304,0.626944,0.007968
+1136,372.702,2.68311,0.925888,0.008192,0.271968,0.004512,0.005344,0.006336,0.622592,0.006944
+1137,432.707,2.31104,0.889088,0.008512,0.242304,0.005632,0.004608,0.006144,0.614112,0.007776
+1138,431.931,2.31519,0.911904,0.008704,0.229376,0.004096,0.005888,0.006368,0.649248,0.008224
+1139,383.019,2.61084,0.989184,0.008192,0.308704,0.00464,0.005184,0.006432,0.64784,0.008192
+1140,451.648,2.21411,0.894848,0.008672,0.243712,0.00528,0.004896,0.006208,0.618208,0.007872
+1141,414.953,2.40991,0.887104,0.008704,0.231648,0.00416,0.005696,0.0064,0.622688,0.007808
+1142,412.903,2.42188,0.9216,0.009344,0.24256,0.005632,0.004608,0.006144,0.64512,0.008192
+1143,406.067,2.46265,0.907776,0.008704,0.243552,0.004256,0.005888,0.0064,0.630784,0.008192
+1144,364.186,2.74585,0.988896,0.008192,0.294912,0.005824,0.004416,0.006144,0.661504,0.007904
+1145,451.599,2.21436,0.896416,0.008256,0.237248,0.004416,0.005408,0.006304,0.626944,0.00784
+1146,486.923,2.05371,0.917792,0.008736,0.2312,0.00432,0.005504,0.006336,0.65376,0.007936
+1147,385.833,2.5918,0.944288,0.008704,0.253952,0.005248,0.004864,0.006272,0.657344,0.007904
+1148,488.9,2.04541,0.900544,0.008224,0.22928,0.004192,0.005632,0.006656,0.638752,0.007808
+1149,528.789,1.89111,0.871008,0.008544,0.222528,0.004992,0.00416,0.007616,0.614976,0.008192
+1150,346.385,2.88696,0.901472,0.008352,0.219328,0.005792,0.004448,0.006144,0.649216,0.008192
+1151,427.557,2.33887,0.907744,0.008704,0.24768,0.00432,0.005728,0.006368,0.62688,0.008064
+1152,459.502,2.17627,0.897024,0.0096,0.23616,0.005696,0.004544,0.007168,0.625664,0.008192
+1153,350.685,2.85156,0.946176,0.008192,0.239616,0.005312,0.004864,0.006208,0.674912,0.007072
+1154,426.134,2.34668,0.967616,0.008544,0.240256,0.00528,0.004928,0.006144,0.688128,0.014336
+1155,473.252,2.11304,0.887136,0.008544,0.229408,0.005664,0.004544,0.006144,0.62464,0.008192
+1156,330.429,3.02637,0.910912,0.008192,0.241408,0.004352,0.005504,0.0064,0.637184,0.007872
+1157,437.981,2.2832,0.899072,0.0096,0.235264,0.00496,0.004128,0.006272,0.630656,0.008192
+1158,445.072,2.24683,0.882688,0.008192,0.231424,0.005312,0.004896,0.006176,0.618496,0.008192
+1159,364.607,2.74268,0.886784,0.008704,0.257472,0.004704,0.005184,0.0064,0.596512,0.007808
+1160,465.19,2.14966,0.878592,0.00944,0.230176,0.005728,0.004512,0.006144,0.615648,0.006944
+1161,474.623,2.10693,0.884736,0.00944,0.233856,0.004512,0.005312,0.006304,0.618208,0.007104
+1162,378.279,2.64355,0.908704,0.008192,0.241376,0.004384,0.005472,0.006432,0.63504,0.007808
+1163,413.57,2.41797,0.902976,0.008672,0.251296,0.00496,0.004128,0.006144,0.619968,0.007808
+1164,481.09,2.07861,0.912096,0.008704,0.231872,0.005952,0.004288,0.006176,0.647136,0.007968
+1165,462.877,2.1604,0.893056,0.008512,0.231616,0.005472,0.004736,0.006144,0.628736,0.00784
+1166,453.448,2.20532,0.899008,0.008256,0.245568,0.004288,0.005536,0.0064,0.620896,0.008064
+1167,482.962,2.07056,0.882496,0.00944,0.22608,0.0056,0.00464,0.007296,0.62144,0.008
+1168,392.864,2.54541,0.894976,0.009632,0.245696,0.004768,0.00416,0.007392,0.615136,0.008192
+1169,441.142,2.26685,0.884768,0.008192,0.233504,0.00592,0.004288,0.006144,0.61968,0.00704
+1170,347.944,2.87402,0.968736,0.009248,0.293856,0.004096,0.006016,0.006272,0.641024,0.008224
+1171,367.124,2.72388,0.883264,0.00864,0.245152,0.00496,0.004128,0.007232,0.60512,0.008032
+1172,406.107,2.4624,0.897536,0.0088,0.241312,0.004544,0.00512,0.017408,0.612352,0.008
+1173,390.616,2.56006,0.912192,0.008672,0.233984,0.004064,0.00592,0.006368,0.64512,0.008064
+1174,415.584,2.40625,0.908352,0.008192,0.229376,0.006144,0.005248,0.006368,0.645184,0.00784
+1175,414.449,2.41284,0.960288,0.008768,0.244736,0.00496,0.004256,0.006144,0.683584,0.00784
+1176,364.802,2.74121,0.926624,0.00864,0.264672,0.005408,0.004864,0.006112,0.628736,0.008192
+1177,504.061,1.98389,0.8744,0.00864,0.22672,0.004928,0.004096,0.007328,0.614848,0.00784
+1178,495.404,2.01855,0.875616,0.008192,0.228512,0.00496,0.004096,0.0072,0.614816,0.00784
+1179,397.747,2.51416,0.871712,0.008224,0.24368,0.005664,0.004576,0.006144,0.595616,0.007808
+1180,484.791,2.06274,0.8704,0.00944,0.225856,0.00432,0.005504,0.0064,0.611872,0.007008
+1181,462.459,2.16235,0.915328,0.008256,0.25872,0.004192,0.005696,0.006304,0.62432,0.00784
+1182,428.631,2.33301,0.862208,0.009792,0.229696,0.004224,0.006048,0.00624,0.598016,0.008192
+1183,410.339,2.43701,0.917536,0.008192,0.249856,0.005728,0.004512,0.006144,0.63488,0.008224
+1184,436.674,2.29004,0.859296,0.0096,0.231168,0.004928,0.00416,0.0072,0.594496,0.007744
+1185,379.224,2.63696,0.886784,0.008192,0.230912,0.004608,0.005472,0.006368,0.62304,0.008192
+1186,472.107,2.11816,0.8808,0.008224,0.231168,0.004384,0.005472,0.006304,0.618272,0.006976
+1187,446.869,2.23779,0.878592,0.008192,0.229056,0.004416,0.005408,0.006336,0.616992,0.008192
+1188,361.486,2.76636,0.883008,0.008512,0.227392,0.005888,0.004288,0.006144,0.622592,0.008192
+1189,453.75,2.20386,0.905216,0.008192,0.22928,0.004192,0.005696,0.0064,0.643264,0.008192
+1190,377.407,2.64966,0.932352,0.00864,0.254336,0.005696,0.004576,0.006112,0.64512,0.007872
+1191,377.93,2.646,0.890656,0.008192,0.24576,0.004096,0.005792,0.00624,0.612608,0.007968
+1192,480.638,2.08057,0.866304,0.008224,0.23344,0.004096,0.005888,0.0064,0.600064,0.008192
+1193,442.285,2.26099,0.883072,0.008576,0.23264,0.004928,0.004128,0.006304,0.618304,0.008192
+1194,398.637,2.50854,0.954336,0.008608,0.270624,0.005184,0.004896,0.006208,0.650944,0.007872
+1195,491.658,2.03394,0.879712,0.008192,0.231328,0.004192,0.005664,0.006144,0.616352,0.00784
+1196,367.816,2.71875,0.911968,0.008672,0.231968,0.00544,0.0048,0.006144,0.647136,0.007808
+1197,329.578,3.03418,0.93024,0.008448,0.282208,0.004672,0.005184,0.006368,0.616544,0.006816
+1198,467.794,2.1377,0.883072,0.00864,0.241856,0.004288,0.005536,0.006368,0.608512,0.007872
+1199,393.96,2.53833,0.876544,0.00928,0.236512,0.004064,0.005888,0.006304,0.606304,0.008192
+1200,413.946,2.41577,0.942528,0.00864,0.304256,0.00496,0.004128,0.006304,0.606048,0.008192
+1201,498.479,2.0061,0.882272,0.008288,0.231424,0.005824,0.004448,0.006112,0.618304,0.007872
+1202,405.866,2.46387,0.903232,0.009696,0.22992,0.00592,0.00432,0.006144,0.640288,0.006944
+1203,346.737,2.88403,0.949792,0.008224,0.288736,0.005408,0.004832,0.006144,0.628448,0.008
+1204,426.889,2.34253,0.915104,0.009472,0.240384,0.005536,0.004704,0.006144,0.641024,0.00784
+1205,318.284,3.14185,0.917856,0.008544,0.2696,0.004832,0.004096,0.007648,0.614944,0.008192
+1206,396.132,2.52441,0.92368,0.008192,0.25312,0.004928,0.00528,0.0064,0.638592,0.007168
+1207,404.943,2.46948,0.88272,0.008192,0.23728,0.004384,0.005472,0.0064,0.614048,0.006944
+1208,295.42,3.38501,0.906592,0.0096,0.254592,0.004096,0.005888,0.0064,0.61824,0.007776
+1209,455.415,2.1958,0.90384,0.008672,0.237984,0.004128,0.005728,0.006368,0.633024,0.007936
+1210,405.826,2.46411,0.898336,0.009696,0.231424,0.00464,0.005184,0.006368,0.63312,0.007904
+1211,422.268,2.36816,0.874528,0.01024,0.235328,0.004288,0.005536,0.006304,0.604608,0.008224
+1212,474.129,2.10913,0.872448,0.008192,0.241696,0.00512,0.004864,0.006304,0.59808,0.008192
+1213,412.197,2.42603,0.854016,0.008192,0.22528,0.005504,0.004736,0.006144,0.595968,0.008192
+1214,423.403,2.36182,0.872224,0.008224,0.239616,0.0056,0.004608,0.006176,0.600032,0.007968
+1215,447.308,2.2356,0.893056,0.00864,0.274624,0.00592,0.00432,0.006144,0.5856,0.007808
+1216,350.445,2.85352,0.873632,0.009664,0.231232,0.004864,0.005216,0.0064,0.608384,0.007872
+1217,432.981,2.30957,0.882688,0.008192,0.245408,0.004448,0.005376,0.006752,0.60432,0.008192
+1218,486.172,2.05688,0.868352,0.00976,0.231904,0.005152,0.004896,0.006304,0.6032,0.007136
+1219,355.679,2.81152,0.870592,0.008352,0.255328,0.004768,0.004192,0.007168,0.58256,0.008224
+1220,449.32,2.22559,0.89088,0.009312,0.242176,0.004512,0.005312,0.006368,0.615008,0.008192
+1221,357.043,2.80078,0.872192,0.008672,0.237088,0.004576,0.00528,0.006336,0.602336,0.007904
+1222,367.354,2.72217,0.88992,0.009344,0.244544,0.00416,0.005664,0.006368,0.612064,0.007776
+1223,454.455,2.20044,0.867008,0.00864,0.235584,0.004288,0.00576,0.006304,0.598272,0.00816
+1224,447.308,2.2356,0.884736,0.009504,0.238336,0.005248,0.004896,0.006208,0.613408,0.007136
+1225,432.981,2.30957,0.866368,0.008224,0.237056,0.004608,0.005216,0.006528,0.59792,0.006816
+1226,454.808,2.19873,0.88704,0.008448,0.243712,0.00592,0.004352,0.006176,0.61024,0.008192
+1227,479.232,2.08667,0.844224,0.008608,0.231008,0.004544,0.00528,0.006368,0.580224,0.008192
+1228,360.849,2.77124,0.878624,0.009728,0.250272,0.004192,0.005632,0.006368,0.59552,0.006912
+1229,446.479,2.23975,0.872448,0.0096,0.232064,0.0056,0.00464,0.006144,0.606208,0.008192
+1230,458.319,2.18188,0.864256,0.008192,0.239328,0.004384,0.00544,0.006368,0.592352,0.008192
+1231,362.992,2.75488,0.872448,0.009568,0.247776,0.0048,0.004128,0.007232,0.590752,0.008192
+1232,439.108,2.27734,0.868704,0.008832,0.23344,0.005696,0.004544,0.006208,0.602048,0.007936
+1233,451.3,2.21582,0.856096,0.0096,0.22592,0.005728,0.004544,0.006112,0.597216,0.006976
+1234,380.422,2.62866,0.911232,0.008576,0.278528,0.005408,0.004832,0.006144,0.599904,0.00784
+1235,449.566,2.22437,0.876416,0.008672,0.24192,0.005344,0.004896,0.006144,0.6016,0.00784
+1236,479.85,2.08398,0.845824,0.009504,0.227328,0.004832,0.004096,0.007328,0.584544,0.008192
+1237,419.328,2.38477,0.91504,0.008288,0.288064,0.0048,0.004096,0.007296,0.594656,0.00784
+1238,470.859,2.12378,0.884416,0.008224,0.23552,0.005408,0.0048,0.006144,0.616448,0.007872
+1239,460.328,2.17236,0.858112,0.008192,0.233504,0.00576,0.00448,0.006112,0.592992,0.007072
+1240,378.034,2.64526,0.876544,0.008192,0.243232,0.004576,0.005248,0.006432,0.600672,0.008192
+1241,377.686,2.64771,0.860192,0.009664,0.234048,0.005568,0.004672,0.006144,0.591872,0.008224
+1242,458.73,2.17993,0.866848,0.008736,0.240864,0.004896,0.004096,0.007168,0.592896,0.008192
+1243,425.47,2.35034,0.920832,0.009728,0.297504,0.005632,0.004576,0.006144,0.589408,0.00784
+1244,471.184,2.12231,0.865888,0.008192,0.238624,0.00496,0.004224,0.00624,0.595744,0.007904
+1245,448.975,2.22729,0.865664,0.008192,0.231424,0.005472,0.004768,0.006144,0.601792,0.007872
+1246,435.004,2.29883,0.874976,0.008608,0.237632,0.00528,0.004896,0.006208,0.60416,0.008192
+1247,439.155,2.2771,0.866336,0.008608,0.2456,0.0048,0.004096,0.007296,0.588128,0.007808
+1248,429.08,2.33057,0.8792,0.008832,0.232928,0.00464,0.005184,0.006336,0.61312,0.00816
+1249,458.576,2.18066,0.886528,0.008704,0.262144,0.00592,0.00432,0.006144,0.591488,0.007808
+1250,452.797,2.2085,0.860768,0.008576,0.233696,0.004128,0.005824,0.006368,0.593984,0.008192
+1251,498.418,2.00635,0.871936,0.008256,0.23072,0.0048,0.00416,0.007232,0.608288,0.00848
+1252,396.362,2.52295,0.870176,0.008416,0.24112,0.00464,0.005312,0.006368,0.596544,0.007776
+1253,465.666,2.14746,0.860704,0.008608,0.231424,0.004096,0.005888,0.006336,0.596032,0.00832
+1254,493.494,2.02637,0.859584,0.008192,0.231456,0.005504,0.004704,0.006144,0.595744,0.00784
+1255,348.863,2.86646,0.878592,0.008192,0.23552,0.005184,0.004896,0.006304,0.611488,0.007008
+1256,484.734,2.06299,0.8624,0.008192,0.230656,0.004864,0.0056,0.0064,0.599616,0.007072
+1257,509.706,1.96191,0.88848,0.008416,0.230624,0.004896,0.004096,0.007168,0.625408,0.007872
+1258,404.344,2.47314,0.872896,0.008352,0.232832,0.00496,0.00416,0.00624,0.60816,0.008192
+1259,459.863,2.17456,0.901312,0.00864,0.232928,0.00496,0.005536,0.006304,0.635008,0.007936
+1260,499.573,2.00171,0.879392,0.008864,0.2296,0.00592,0.005504,0.006272,0.615104,0.008128
+1261,360.373,2.7749,0.905056,0.008192,0.226592,0.004832,0.00512,0.0064,0.645888,0.008032
+1262,442.619,2.25928,0.899072,0.008224,0.26416,0.005312,0.004864,0.006208,0.603136,0.007168
+1263,487.503,2.05127,0.850112,0.008672,0.231456,0.00416,0.005664,0.006368,0.585952,0.00784
+1264,377.72,2.64746,0.86352,0.008192,0.232896,0.004672,0.005184,0.006368,0.598432,0.007776
+1265,461.469,2.16699,0.892288,0.008192,0.233472,0.005376,0.004864,0.006144,0.626464,0.007776
+1266,484.619,2.06348,0.876448,0.008608,0.232736,0.004832,0.004096,0.00736,0.611008,0.007808
+1267,380.21,2.63013,0.894464,0.008224,0.237088,0.004544,0.00544,0.006368,0.624352,0.008448
+1268,373.723,2.67578,0.872448,0.009696,0.238112,0.00576,0.00448,0.006144,0.600064,0.008192
+1269,448.778,2.22827,0.90288,0.008256,0.24544,0.004352,0.005536,0.0064,0.624416,0.00848
+1270,386.197,2.58936,0.877376,0.008576,0.248256,0.005696,0.004544,0.006144,0.595968,0.008192
+1271,433.302,2.30786,0.901216,0.0088,0.235488,0.00432,0.005504,0.00624,0.63296,0.007904
+1272,456.735,2.18945,0.905376,0.008384,0.235488,0.005472,0.004768,0.006144,0.636928,0.008192
+1273,382.018,2.61768,0.904352,0.008288,0.258976,0.00496,0.004256,0.006144,0.613824,0.007904
+1274,448.975,2.22729,0.911488,0.00832,0.249856,0.005184,0.004896,0.006304,0.628736,0.008192
+1275,414.323,2.41357,0.891456,0.008832,0.231744,0.005728,0.004512,0.006144,0.626688,0.007808
+1276,421.226,2.37402,0.946592,0.008608,0.298144,0.00496,0.004096,0.0072,0.615264,0.00832
+1277,428.049,2.33618,0.90112,0.009632,0.248,0.004512,0.005312,0.006336,0.619136,0.008192
+1278,462.355,2.16284,0.914656,0.009504,0.236192,0.00416,0.005888,0.006336,0.644704,0.007872
+1279,426.533,2.34448,0.923424,0.009472,0.23968,0.0048,0.004096,0.007296,0.6496,0.00848
+1280,436.581,2.29053,0.891136,0.008608,0.239904,0.00416,0.005792,0.006336,0.618432,0.007904
+1281,409.354,2.44287,0.96272,0.008384,0.245728,0.004096,0.005856,0.006272,0.684192,0.008192
+1282,383.054,2.6106,0.993312,0.009472,0.3264,0.005952,0.004288,0.006176,0.63408,0.006944
+1283,475.671,2.10229,0.902272,0.009216,0.2304,0.005504,0.004736,0.006144,0.638496,0.007776
+1284,458.319,2.18188,0.903168,0.008192,0.229088,0.004384,0.005472,0.006368,0.641472,0.008192
+1285,442.715,2.25879,0.899744,0.008608,0.262304,0.004192,0.005632,0.006368,0.604448,0.008192
+1286,431.521,2.31738,0.911616,0.008448,0.239456,0.004256,0.0056,0.006336,0.639328,0.008192
+1287,436.674,2.29004,0.896672,0.008416,0.235552,0.005728,0.005504,0.006432,0.627232,0.007808
+1288,315.247,3.17212,0.891808,0.008576,0.235808,0.004352,0.005504,0.006336,0.62304,0.008192
+1289,386.743,2.58569,0.906816,0.0096,0.250496,0.004096,0.005824,0.0064,0.622464,0.007936
+1290,362.831,2.7561,0.916864,0.009376,0.263008,0.00576,0.00448,0.006208,0.62016,0.007872
+1291,466.302,2.14453,0.88624,0.009504,0.23216,0.016064,0.004416,0.007232,0.609056,0.007808
+1292,483.589,2.06787,0.868352,0.009536,0.229312,0.004864,0.004096,0.007296,0.605056,0.008192
+1293,381.307,2.62256,0.859232,0.009664,0.23936,0.004928,0.005536,0.006336,0.5856,0.007808
+1294,470.264,2.12646,0.893504,0.008576,0.234016,0.005664,0.004576,0.006144,0.626656,0.007872
+1295,350.445,2.85352,0.89712,0.008256,0.253728,0.00432,0.005536,0.006432,0.610624,0.008224
+1296,347.59,2.87695,0.922272,0.008544,0.26576,0.004896,0.004192,0.007168,0.624768,0.006944
+1297,479.457,2.08569,0.883488,0.008608,0.237952,0.00576,0.00448,0.006144,0.612352,0.008192
+1298,425.912,2.3479,0.875712,0.008192,0.23456,0.004928,0.004224,0.0072,0.6088,0.007808
+1299,390.952,2.55786,0.888704,0.008736,0.239552,0.00416,0.005664,0.006304,0.616384,0.007904
+1300,469.133,2.13159,0.895552,0.008768,0.237056,0.004608,0.005216,0.006304,0.625408,0.008192
+1301,381.947,2.61816,0.8704,0.008192,0.233472,0.004096,0.005792,0.006336,0.60544,0.007072
+1302,406.43,2.46045,0.958464,0.009312,0.27648,0.004928,0.004192,0.00624,0.64912,0.008192
+1303,443.098,2.25684,0.950368,0.008288,0.26624,0.005216,0.004864,0.006304,0.651264,0.008192
+1304,469.026,2.13208,0.900896,0.008416,0.23296,0.004384,0.005472,0.006656,0.63504,0.007968
+1305,438.826,2.27881,0.931552,0.008192,0.280576,0.005952,0.00432,0.006176,0.618432,0.007904
+1306,461.938,2.16479,0.912352,0.008832,0.24368,0.00448,0.005376,0.006304,0.635488,0.008192
+1307,457.807,2.18433,0.905216,0.008288,0.24336,0.004352,0.005472,0.006304,0.629248,0.008192
+1308,409.109,2.44434,1.00762,0.008192,0.36864,0.00512,0.005024,0.00624,0.607264,0.007136
+1309,480.977,2.0791,0.891808,0.008704,0.237984,0.005824,0.004416,0.006144,0.620544,0.008192
+1310,451.052,2.21704,0.897024,0.008192,0.24688,0.004928,0.004192,0.006176,0.618464,0.008192
+1311,403.626,2.47754,0.968672,0.01072,0.278656,0.005824,0.005536,0.006336,0.65376,0.00784
+1312,508.82,1.96533,0.892224,0.008544,0.225248,0.005824,0.004416,0.006176,0.634176,0.00784
+1313,472.434,2.1167,0.866304,0.009472,0.228,0.004192,0.005664,0.006368,0.605472,0.007136
+1314,438.356,2.28125,0.894976,0.009472,0.232192,0.005344,0.004896,0.006144,0.629856,0.007072
+1315,425.603,2.34961,0.940896,0.008576,0.240096,0.00512,0.004864,0.006336,0.667712,0.008192
+1316,462.094,2.16406,0.905216,0.008192,0.23504,0.004576,0.005248,0.006368,0.6376,0.008192
+1317,396.285,2.52344,0.872448,0.009408,0.2384,0.005376,0.004864,0.006144,0.600064,0.008192
+1318,468.757,2.1333,0.87728,0.008544,0.229728,0.005216,0.004864,0.006304,0.6144,0.008224
+1319,454.707,2.19922,0.868128,0.008224,0.23104,0.004896,0.004096,0.007232,0.60464,0.008
+1320,397.747,2.51416,0.885216,0.008608,0.230464,0.004928,0.004192,0.006144,0.623904,0.006976
+1321,468.328,2.13525,0.911072,0.009312,0.236224,0.00432,0.0056,0.006368,0.641344,0.007904
+1322,451.898,2.21289,0.914592,0.00832,0.249376,0.004576,0.005312,0.006304,0.632832,0.007872
+1323,386.707,2.58594,0.900256,0.009536,0.23808,0.004288,0.005568,0.0064,0.628576,0.007808
+1324,479.738,2.08447,0.936096,0.009376,0.23024,0.005344,0.004896,0.006144,0.67312,0.006976
+1325,469.833,2.12842,0.947712,0.008192,0.259904,0.004288,0.005536,0.006336,0.65568,0.007776
+1326,339.691,2.94385,0.909312,0.009408,0.234336,0.00592,0.004288,0.006144,0.641024,0.008192
+1327,479.738,2.08447,0.8872,0.008608,0.228832,0.00464,0.00576,0.0064,0.624768,0.008192
+1328,457.858,2.18408,0.903744,0.008544,0.224704,0.004864,0.004096,0.0072,0.647392,0.006944
+1329,426.223,2.34619,0.916864,0.008288,0.241664,0.0056,0.00464,0.006144,0.642688,0.00784
+1330,484.275,2.06494,0.93712,0.009472,0.227264,0.004928,0.004096,0.007456,0.676128,0.007776
+1331,467.9,2.13721,0.93184,0.008,0.243584,0.004416,0.0056,0.006464,0.655584,0.008192
+1332,376.886,2.65332,0.919264,0.008192,0.251584,0.004416,0.0056,0.006688,0.63488,0.007904
+1333,462.72,2.16113,0.864256,0.008192,0.22912,0.004352,0.005504,0.006464,0.60352,0.007104
+1334,481.429,2.07715,0.899072,0.0096,0.24016,0.004192,0.005696,0.006464,0.624768,0.008192
+1335,299.985,3.3335,0.913024,0.009248,0.23856,0.005952,0.004288,0.006144,0.64096,0.007872
+1336,454.505,2.2002,0.891104,0.008576,0.233472,0.004096,0.005664,0.006272,0.624992,0.008032
+1337,442.142,2.26172,0.910688,0.009408,0.233888,0.004512,0.005344,0.006368,0.643328,0.00784
+1338,426.4,2.34521,0.897632,0.008768,0.247616,0.00432,0.005536,0.006656,0.616544,0.008192
+1339,456.939,2.18848,0.871488,0.009504,0.23216,0.00544,0.0048,0.006144,0.605664,0.007776
+1340,440.052,2.27246,0.888672,0.00864,0.257152,0.004736,0.004416,0.006144,0.599712,0.007872
+1341,310.209,3.22363,0.939392,0.008192,0.29696,0.005632,0.004608,0.006144,0.609952,0.007904
+1342,424.368,2.35645,0.934432,0.008608,0.260576,0.004192,0.005792,0.006304,0.641088,0.007872
+1343,462.616,2.16162,0.876608,0.008224,0.2312,0.00432,0.005536,0.006336,0.613984,0.007008
+1344,412.903,2.42188,0.87952,0.008896,0.252096,0.005824,0.004416,0.006144,0.59392,0.008224
+1345,375.711,2.66162,0.921216,0.009248,0.273088,0.004384,0.00544,0.0064,0.598464,0.024192
+1346,463.453,2.15771,0.888832,0.008192,0.249856,0.00576,0.004512,0.006112,0.606208,0.008192
+1347,405.464,2.46631,0.9728,0.009472,0.312,0.00416,0.022368,0.006304,0.610304,0.008192
+1348,393.77,2.53955,0.896768,0.008448,0.233472,0.005568,0.004672,0.006144,0.63056,0.007904
+1349,342.475,2.91992,0.912416,0.009248,0.232416,0.005344,0.004896,0.006144,0.646528,0.00784
+1350,475.726,2.10205,0.866656,0.008544,0.23504,0.004576,0.005408,0.006304,0.599712,0.007072
+1351,419.758,2.38232,0.901216,0.008288,0.243552,0.004256,0.005536,0.006336,0.625056,0.008192
+1352,366.762,2.72656,0.873888,0.008288,0.23536,0.004256,0.0056,0.006368,0.606208,0.007808
+1353,478.84,2.08838,0.863648,0.009792,0.233024,0.00496,0.004128,0.006272,0.597664,0.007808
+1354,353.591,2.82812,0.898464,0.00944,0.240256,0.004288,0.005696,0.0064,0.624576,0.007808
+1355,379.259,2.63672,0.935936,0.009728,0.258592,0.005824,0.004384,0.006144,0.644288,0.006976
+1356,461.157,2.16846,0.90896,0.009408,0.244544,0.005664,0.004576,0.006176,0.630752,0.00784
+1357,431.249,2.31885,0.890304,0.009248,0.232064,0.004448,0.005408,0.006304,0.624992,0.00784
+1358,389.872,2.56494,0.940448,0.008544,0.272288,0.004256,0.0056,0.006496,0.635072,0.008192
+1359,481.769,2.07568,0.86432,0.00864,0.225216,0.004224,0.00544,0.006432,0.606496,0.007872
+1360,378.418,2.64258,0.913664,0.008448,0.272416,0.005792,0.004416,0.006144,0.60944,0.007008
+1361,338.568,2.95361,0.892928,0.009376,0.27328,0.00544,0.004768,0.006144,0.58576,0.00816
+1362,456.226,2.19189,0.896736,0.008576,0.229152,0.004288,0.005568,0.0064,0.635104,0.007648
+1363,395.825,2.52637,0.895136,0.008928,0.235168,0.004672,0.004256,0.0072,0.627072,0.00784
+1364,448.434,2.22998,0.914752,0.008192,0.2512,0.0048,0.004096,0.00736,0.631264,0.00784
+1365,475.615,2.10254,0.887296,0.008704,0.23872,0.004928,0.00416,0.006272,0.61632,0.008192
+1366,403.308,2.47949,0.891328,0.00864,0.232928,0.004704,0.00512,0.006368,0.62544,0.008128
+1367,376.332,2.65723,0.888928,0.008288,0.239616,0.004096,0.005504,0.0064,0.616832,0.008192
+1368,458.884,2.1792,0.919136,0.009664,0.233472,0.004672,0.00576,0.006368,0.651328,0.007872
+1369,323.692,3.08936,0.923232,0.008288,0.270144,0.004288,0.005536,0.006304,0.620832,0.00784
+1370,460.018,2.17383,0.923744,0.0096,0.254624,0.005824,0.004384,0.006144,0.636224,0.006944
+1371,493.732,2.02539,0.897472,0.008896,0.223328,0.005568,0.004672,0.006144,0.641024,0.00784
+1372,354.019,2.82471,0.896576,0.008384,0.251712,0.005504,0.004736,0.006144,0.612288,0.007808
+1373,457.245,2.18701,0.90112,0.008608,0.229376,0.005696,0.004544,0.006176,0.63824,0.00848
+1374,474.404,2.10791,0.895808,0.008704,0.247776,0.004544,0.00528,0.006432,0.614976,0.008096
+1375,276.533,3.61621,0.91168,0.008512,0.260096,0.004096,0.005888,0.006336,0.61856,0.008192
+1376,400.156,2.49902,0.919584,0.008224,0.26736,0.00496,0.004128,0.006144,0.62176,0.007008
+1377,397.516,2.51562,0.933248,0.008192,0.277568,0.004928,0.004224,0.006176,0.624416,0.007744
+1378,382.518,2.61426,0.950784,0.008608,0.299104,0.00512,0.004864,0.006336,0.61856,0.008192
+1379,458.781,2.17969,0.907264,0.009504,0.234208,0.005216,0.004896,0.006272,0.638976,0.008192
+1380,350.745,2.85107,0.91136,0.008192,0.245696,0.00416,0.005696,0.006368,0.633056,0.008192
+1381,362.928,2.75537,0.915456,0.009408,0.242496,0.00592,0.00432,0.006144,0.638976,0.008192
+1382,437.794,2.28418,0.904576,0.008192,0.24368,0.004128,0.005696,0.006336,0.628608,0.007936
+1383,341.39,2.9292,0.888576,0.009696,0.246304,0.005216,0.004896,0.006272,0.608256,0.007936
+1384,435.93,2.29395,0.936064,0.008224,0.24176,0.004736,0.004096,0.007488,0.661952,0.007808
+1385,420.275,2.37939,0.915456,0.009504,0.232192,0.005376,0.004832,0.006208,0.650304,0.00704
+1386,408.619,2.44727,0.933888,0.009472,0.299584,0.004288,0.005888,0.0064,0.601216,0.00704
+1387,432.25,2.31348,0.888352,0.009344,0.237728,0.004832,0.004128,0.007264,0.61712,0.007936
+1388,379.119,2.6377,0.936544,0.00864,0.27984,0.00496,0.004096,0.007328,0.6248,0.00688
+1389,355.679,2.81152,0.984608,0.008544,0.346144,0.005632,0.004608,0.006144,0.60544,0.008096
+1390,439.957,2.27295,0.903136,0.008576,0.250272,0.005728,0.004512,0.006176,0.62,0.007872
+1391,402.437,2.48486,0.866304,0.008192,0.241376,0.004384,0.00544,0.006528,0.592192,0.008192
+1392,513.927,1.9458,0.860256,0.008192,0.228672,0.0048,0.005664,0.006336,0.599584,0.007008
+1393,482.677,2.07178,0.898976,0.008192,0.226304,0.00496,0.004288,0.007648,0.639488,0.008096
+1394,313.006,3.19482,0.876224,0.008192,0.241664,0.005312,0.004896,0.006176,0.602112,0.007872
+1395,480.3,2.08203,0.8784,0.008352,0.253664,0.004224,0.005664,0.006368,0.59216,0.007968
+1396,492.426,2.03076,0.899168,0.009408,0.237632,0.004864,0.005472,0.006304,0.62848,0.007008
+1397,393.015,2.54443,0.892928,0.009408,0.246592,0.005824,0.004416,0.006176,0.61232,0.008192
+1398,508.063,1.96826,0.886944,0.008192,0.224512,0.004864,0.004096,0.0072,0.631072,0.007008
+1399,487.619,2.05078,0.87872,0.009152,0.23056,0.00496,0.004096,0.0072,0.61488,0.007872
+1400,447.162,2.23633,0.90064,0.008192,0.22736,0.005408,0.0048,0.006144,0.640992,0.007744
+1401,417.959,2.39258,0.872256,0.008608,0.23104,0.004448,0.005376,0.006304,0.60864,0.00784
+1402,475.064,2.10498,0.880192,0.008192,0.232864,0.004704,0.005152,0.006368,0.61504,0.007872
+1403,487.271,2.05225,0.884736,0.009312,0.226048,0.005504,0.004896,0.006176,0.62464,0.00816
+1404,463.558,2.15723,0.903168,0.009536,0.268064,0.004992,0.004128,0.006304,0.603104,0.00704
+1405,477.167,2.0957,0.874304,0.009728,0.229888,0.00592,0.00432,0.006144,0.610304,0.008
+1406,517.433,1.93262,0.84992,0.008192,0.225312,0.005536,0.004672,0.006144,0.591872,0.008192
+1407,400.861,2.49463,0.88576,0.009376,0.236384,0.005728,0.004512,0.006144,0.615808,0.007808
+1408,427.023,2.3418,0.86464,0.008576,0.229376,0.005824,0.004416,0.006144,0.602112,0.008192
+1409,495.644,2.01758,0.860032,0.009024,0.231456,0.005952,0.004256,0.00624,0.59504,0.008064
+1410,419.414,2.38428,0.854752,0.008672,0.234816,0.00496,0.004192,0.006304,0.587616,0.008192
+1411,459.193,2.17773,0.868192,0.00928,0.231872,0.004608,0.005216,0.006368,0.602816,0.008032
+1412,516.52,1.93604,0.844,0.008416,0.225152,0.004224,0.0056,0.006656,0.586848,0.007104
+1413,425.426,2.35059,0.867296,0.008704,0.226816,0.004928,0.004256,0.006176,0.608224,0.008192
+1414,335.573,2.97998,0.853664,0.008448,0.233472,0.005376,0.004864,0.006144,0.58752,0.00784
+1415,476.501,2.09863,0.853056,0.008288,0.231328,0.004096,0.005792,0.0064,0.589216,0.007936
+1416,414.911,2.41016,0.84992,0.009632,0.232032,0.005696,0.004544,0.006144,0.584768,0.007104
+1417,471.998,2.11865,0.884768,0.008192,0.233504,0.005184,0.004864,0.006304,0.61984,0.00688
+1418,516.65,1.93555,0.862208,0.009408,0.226144,0.005664,0.004544,0.006144,0.6032,0.007104
+1419,430.886,2.3208,0.870272,0.012128,0.227488,0.005568,0.004672,0.006144,0.606208,0.008064
+1420,457.245,2.18701,0.868736,0.008576,0.233248,0.00432,0.005536,0.006336,0.603712,0.007008
+1421,420.88,2.37598,0.844224,0.008576,0.228512,0.004928,0.004192,0.00624,0.5848,0.006976
+1422,410.01,2.43896,0.864256,0.009536,0.236256,0.005888,0.00432,0.006144,0.59392,0.008192
+1423,467.153,2.14062,0.855808,0.00832,0.233344,0.005696,0.004544,0.006144,0.589824,0.007936
+1424,505.804,1.97705,0.85744,0.008192,0.229376,0.005824,0.004448,0.006112,0.595616,0.007872
+1425,419.672,2.38281,0.859584,0.009472,0.225216,0.004928,0.004096,0.007232,0.600608,0.008032
+1426,443.963,2.25244,0.868352,0.008288,0.244704,0.004928,0.004224,0.007232,0.592032,0.006944
+1427,497.087,2.01172,0.866304,0.008192,0.233472,0.005312,0.004896,0.006176,0.600064,0.008192
+1428,298.368,3.35156,0.868448,0.008288,0.227328,0.005568,0.004672,0.006176,0.608224,0.008192
+1429,360.563,2.77344,0.894592,0.011712,0.264416,0.004448,0.005664,0.006304,0.59424,0.007808
+1430,424.104,2.35791,0.860512,0.008384,0.228832,0.004416,0.004256,0.006464,0.600224,0.007936
+1431,400.391,2.49756,0.86272,0.008672,0.234688,0.004928,0.004096,0.0072,0.596064,0.007072
+1432,411.99,2.42725,0.884384,0.008448,0.258048,0.004096,0.00576,0.006432,0.593856,0.007744
+1433,474.404,2.10791,0.848032,0.008352,0.230912,0.004608,0.005248,0.006432,0.585376,0.007104
+1434,346.59,2.88525,0.930272,0.025312,0.265568,0.004768,0.004192,0.007232,0.614528,0.008672
+1435,485.308,2.06055,0.842816,0.008192,0.228576,0.004896,0.004096,0.007328,0.581952,0.007776
+1436,518.481,1.92871,0.84992,0.008192,0.224576,0.0048,0.00416,0.006272,0.593728,0.008192
+1437,465.666,2.14746,0.878912,0.008448,0.256064,0.005536,0.004704,0.006144,0.589824,0.008192
+1438,506.805,1.97314,0.841728,0.008384,0.227328,0.00592,0.00432,0.006144,0.581632,0.008
+1439,525.937,1.90137,0.851968,0.009408,0.226112,0.004096,0.005728,0.0064,0.592032,0.008192
+1440,409.846,2.43994,0.88064,0.008192,0.226688,0.004736,0.00512,0.006368,0.622432,0.007104
+1441,407.887,2.45166,0.843776,0.009856,0.22976,0.004096,0.00576,0.006336,0.579776,0.008192
+1442,469.833,2.12842,0.880416,0.009344,0.244128,0.004576,0.00528,0.006368,0.602752,0.007968
+1443,400.704,2.49561,0.864256,0.009312,0.2344,0.005792,0.004448,0.006144,0.595968,0.008192
+1444,480.075,2.08301,0.8704,0.008512,0.233088,0.00448,0.006016,0.006272,0.60416,0.007872
+1445,521.385,1.91797,0.85504,0.009408,0.222016,0.00576,0.00448,0.006144,0.59936,0.007872
+1446,444.348,2.25049,0.836896,0.007872,0.223648,0.005184,0.004896,0.006304,0.581152,0.00784
+1447,412.903,2.42188,0.856832,0.008544,0.239104,0.004928,0.004192,0.006272,0.5856,0.008192
+1448,335.133,2.98389,0.865568,0.008192,0.23552,0.005536,0.004704,0.006176,0.597632,0.007808
+1449,359.614,2.78076,0.860256,0.009408,0.23168,0.004672,0.005152,0.006656,0.5944,0.008288
+1450,461.781,2.16553,0.86016,0.008192,0.234752,0.004864,0.005824,0.006464,0.591872,0.008192
+1451,449.221,2.22607,0.886784,0.008192,0.242784,0.004928,0.004192,0.00624,0.612256,0.008192
+1452,340.426,2.9375,0.906432,0.009216,0.23856,0.004128,0.005696,0.006368,0.634496,0.007968
+1453,418.728,2.38818,0.862912,0.008736,0.244992,0.004992,0.004128,0.006336,0.585728,0.008
+1454,346.414,2.88672,0.861952,0.008192,0.23552,0.004096,0.005856,0.006336,0.594016,0.007936
+1455,432.707,2.31104,0.913056,0.008352,0.276448,0.005696,0.004544,0.006144,0.603936,0.007936
+1456,426.578,2.34424,0.870688,0.00848,0.233472,0.005312,0.004864,0.00624,0.604128,0.008192
+1457,429.891,2.32617,0.853504,0.0096,0.23616,0.005152,0.004896,0.006336,0.583456,0.007904
+1458,458.268,2.18213,0.878944,0.008736,0.237952,0.004128,0.005696,0.006432,0.608192,0.007808
+1459,410.421,2.43652,0.874432,0.008224,0.23472,0.004864,0.004096,0.007328,0.607072,0.008128
+1460,454.001,2.20264,0.86016,0.008192,0.230656,0.004864,0.004096,0.007168,0.596992,0.008192
+1461,434.912,2.29932,0.878688,0.008288,0.233504,0.005184,0.004896,0.006272,0.61344,0.007104
+1462,466.727,2.14258,0.882688,0.00944,0.232224,0.00544,0.0048,0.006144,0.616448,0.008192
+1463,508.441,1.9668,0.867424,0.008224,0.225248,0.005184,0.004864,0.006336,0.609792,0.007776
+1464,469.509,2.12988,0.90336,0.008416,0.263648,0.004608,0.005216,0.006368,0.608,0.007104
+1465,502.207,1.99121,0.86016,0.008192,0.2264,0.00496,0.00416,0.007168,0.602208,0.007072
+1466,534.029,1.87256,0.863712,0.008192,0.223232,0.005856,0.004384,0.006144,0.608096,0.007808
+1467,406.511,2.45996,0.85632,0.007072,0.22528,0.005696,0.004544,0.006144,0.599776,0.007808
+1468,417.448,2.39551,0.867712,0.008448,0.231424,0.005504,0.004736,0.006144,0.603616,0.00784
+1469,379.4,2.63574,0.954592,0.008416,0.328864,0.004928,0.004128,0.006304,0.59376,0.008192
+1470,331.284,3.01855,0.9368,0.008896,0.301216,0.005376,0.004864,0.006144,0.602112,0.008192
+1471,381.307,2.62256,0.87696,0.008672,0.230816,0.004704,0.005312,0.006432,0.612896,0.008128
+1472,354.08,2.82422,0.864512,0.008448,0.227328,0.005312,0.004864,0.006208,0.60416,0.008192
+1473,445.896,2.24268,0.85296,0.008736,0.22896,0.004928,0.004128,0.006304,0.591712,0.008192
+1474,464.189,2.1543,0.85168,0.00944,0.229184,0.00496,0.004224,0.006176,0.589792,0.007904
+1475,304.717,3.28174,0.923648,0.008192,0.29696,0.005504,0.004736,0.006144,0.59392,0.008192
+1476,420.361,2.37891,0.902688,0.009344,0.271232,0.005344,0.004896,0.006144,0.59792,0.007808
+1477,427.736,2.33789,0.874688,0.008576,0.235328,0.004288,0.005568,0.006304,0.606624,0.008
+1478,358.983,2.78564,0.891264,0.008576,0.249856,0.005568,0.004672,0.006144,0.608256,0.008192
+1479,465.455,2.14844,0.890688,0.00944,0.244192,0.004416,0.00544,0.006304,0.612896,0.008
+1480,384.024,2.604,0.914496,0.009632,0.235904,0.00432,0.005504,0.006336,0.644896,0.007904
+1481,324.513,3.08154,1.24109,0.01024,0.578592,0.005088,0.004096,0.007264,0.627616,0.008192
+1482,485.308,2.06055,0.887264,0.008608,0.2352,0.00448,0.005376,0.006496,0.62,0.007104
+1483,356.484,2.80518,0.876544,0.00832,0.229376,0.004096,0.005792,0.006272,0.614624,0.008064
+1484,459.09,2.17822,0.868992,0.00816,0.236096,0.004544,0.00528,0.006304,0.600768,0.00784
+1485,486.808,2.0542,0.874496,0.0096,0.229824,0.004288,0.005792,0.006368,0.610432,0.008192
+1486,345.246,2.89648,0.86336,0.00832,0.228512,0.00496,0.004096,0.006336,0.603296,0.00784
+1487,456.735,2.18945,0.868608,0.008448,0.23728,0.004384,0.00544,0.006336,0.599744,0.006976
+1488,443.963,2.25244,0.875904,0.008192,0.233408,0.00416,0.005664,0.006368,0.61024,0.007872
+1489,364.348,2.74463,0.862208,0.009472,0.236288,0.004096,0.005888,0.006368,0.591904,0.008192
+1490,477.056,2.09619,0.910944,0.009248,0.22832,0.005856,0.004384,0.006144,0.649184,0.007808
+1491,508.315,1.96729,0.851968,0.008192,0.227296,0.004128,0.005696,0.006336,0.592128,0.008192
+1492,369.209,2.7085,0.8584,0.00848,0.23248,0.004992,0.004192,0.006208,0.593856,0.008192
+1493,487.387,2.05176,0.86016,0.009568,0.235744,0.004544,0.00528,0.006272,0.59056,0.008192
+1494,444.252,2.25098,0.92176,0.008352,0.276064,0.004512,0.005312,0.006304,0.614144,0.007072
+1495,368.147,2.71631,0.876544,0.008192,0.23552,0.005984,0.004256,0.006176,0.608224,0.008192
+1496,499.634,2.00146,0.897056,0.00928,0.228288,0.005792,0.004448,0.006144,0.63488,0.008224
+1497,492.308,2.03125,0.87296,0.008224,0.227776,0.005952,0.004288,0.006144,0.612352,0.008224
+1498,332.252,3.00977,0.878336,0.007776,0.242208,0.004352,0.005408,0.006368,0.604416,0.007808
+1499,425.868,2.34814,0.90112,0.008192,0.23888,0.004832,0.004096,0.0072,0.629728,0.008192
+1500,314.835,3.17627,0.870464,0.008192,0.22528,0.00576,0.00448,0.006176,0.613632,0.006944
+1501,357.604,2.79639,0.898688,0.0088,0.251872,0.004128,0.005728,0.006368,0.613984,0.007808
+1502,472.543,2.11621,0.864256,0.008352,0.229248,0.00576,0.00448,0.006112,0.603424,0.00688
+1503,403.785,2.47656,0.854592,0.008768,0.22528,0.005824,0.004416,0.006144,0.595968,0.008192
+1504,293.662,3.40527,0.966912,0.008704,0.30896,0.004384,0.005216,0.006336,0.625376,0.007936
+1505,396.899,2.51953,0.895328,0.00848,0.237728,0.00544,0.0048,0.006144,0.62464,0.008096
+1506,286.795,3.48682,0.912416,0.008192,0.26144,0.0048,0.004096,0.007328,0.618752,0.007808
+1507,455.82,2.19385,0.899968,0.008704,0.246112,0.0056,0.004672,0.006112,0.621824,0.006944
+1508,323.283,3.09326,0.884128,0.009536,0.229888,0.004288,0.005536,0.006272,0.6208,0.007808
+1509,470.48,2.12549,0.861088,0.00848,0.227808,0.004256,0.0056,0.0064,0.600352,0.008192
+1510,404.344,2.47314,0.925696,0.009376,0.260832,0.004224,0.0056,0.018976,0.618496,0.008192
+1511,357.604,2.79639,0.89552,0.008608,0.24384,0.00512,0.004896,0.006336,0.618528,0.008192
+1512,330.376,3.02686,0.885696,0.00864,0.233792,0.004288,0.005568,0.006432,0.610592,0.016384
+1513,372.702,2.68311,0.884736,0.008192,0.243328,0.00448,0.005568,0.006368,0.608608,0.008192
+1514,445.993,2.24219,0.869088,0.008352,0.235744,0.004448,0.005376,0.006528,0.600448,0.008192
+1515,491.953,2.03271,0.855744,0.008192,0.227328,0.005216,0.004896,0.006272,0.595936,0.007904
+1516,476.834,2.09717,0.876096,0.008192,0.230912,0.004608,0.005248,0.006304,0.613056,0.007776
+1517,448.828,2.22803,0.943648,0.01024,0.264192,0.005216,0.004896,0.006272,0.644832,0.008
+1518,480.638,2.08057,0.895744,0.00864,0.237952,0.00416,0.005664,0.006272,0.624992,0.008064
+1519,406.188,2.46191,0.872544,0.008288,0.229184,0.004288,0.005568,0.0064,0.611712,0.007104
+1520,464.189,2.1543,0.88592,0.008192,0.234944,0.004672,0.005152,0.006336,0.618784,0.00784
+1521,493.019,2.02832,0.879424,0.008608,0.235424,0.00464,0.005184,0.006336,0.611072,0.00816
+1522,503.565,1.98584,0.886816,0.008224,0.231168,0.00432,0.005504,0.006368,0.623008,0.008224
+1523,412.155,2.42627,0.870176,0.008672,0.239616,0.004096,0.005888,0.006304,0.597792,0.007808
+1524,485.653,2.05908,0.899392,0.008672,0.227424,0.004256,0.005568,0.006272,0.639424,0.007776
+1525,515.609,1.93945,0.878688,0.007936,0.225632,0.00592,0.00432,0.006176,0.620512,0.008192
+1526,276.085,3.62207,0.87936,0.008224,0.231776,0.00448,0.005376,0.006336,0.614976,0.008192
+1527,457.143,2.1875,0.899232,0.008576,0.258112,0.00528,0.004896,0.006208,0.608256,0.007904
+1528,465.666,2.14746,0.881568,0.00864,0.231904,0.005888,0.004352,0.006144,0.616448,0.008192
+1529,423.141,2.36328,0.887232,0.008576,0.24384,0.004096,0.005792,0.006336,0.610464,0.008128
+1530,425.957,2.34766,0.864512,0.008448,0.227328,0.005952,0.004288,0.006176,0.604128,0.008192
+1531,478.393,2.09033,0.8784,0.008288,0.229376,0.005184,0.004896,0.006272,0.61648,0.007904
+1532,382.161,2.6167,0.895488,0.008704,0.241184,0.004576,0.005248,0.0064,0.621184,0.008192
+1533,440.904,2.26807,0.936256,0.00848,0.257248,0.004896,0.005568,0.006368,0.645472,0.008224
+1534,449.517,2.22461,0.8912,0.008512,0.241312,0.004448,0.005376,0.0064,0.61696,0.008192
+1535,399.454,2.50342,0.886016,0.008192,0.243488,0.00432,0.005504,0.006304,0.610304,0.007904
diff --git a/profile/Vis_1/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv b/profile/Vis_1/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
new file mode 100644
index 0000000..b2817ce
--- /dev/null
+++ b/profile/Vis_1/CIS565Proj1,Boid_1000000,BkSize_128,Vis_1,GCWidth_5,Nei_27,ShMem_0,Coherent,USort,ConstBoids.csv
@@ -0,0 +1,1028 @@
+,fps,duration,cudaTotal,kernComputeIndices-905,thrust::sort_by_key-909,kernResetIntBuffer-915,kernResetIntBuffer-916,kernIdentifyCellStartEnd-919,kernReshuffle-925,kernReshuffle-926,kernUpdateVelNeighborSearchCoherent-929,kernUpdatePos-934
+avg_1024,84.4237,12.2503,9.23137,0.0700764,0.932612,0.00845431,0.00580909,0.0296822,0.0983383,0.107791,7.85541,0.12319
+max_1024,101.206,109.598,17.8348,0.24544,3.20515,0.059616,0.022528,0.057088,0.144128,0.93616,16.5129,1.01376
+min_1024,9.12428,9.88086,8.2624,0.065536,0.76304,0.00624,0.00448,0.028544,0.096256,0.096512,7.05738,0.111328
+512,83.7868,11.9351,9.6192,0.065536,0.829408,0.008224,0.00576,0.029056,0.098112,0.09952,8.36643,0.117152
+513,84.3388,11.8569,9.59405,0.06944,0.827264,0.00832,0.0056,0.029408,0.097568,0.098368,8.34218,0.115904
+514,86.5779,11.5503,9.5232,0.069024,0.779936,0.008352,0.004896,0.029856,0.09712,0.098304,8.32102,0.114688
+515,81.2505,12.3076,9.20378,0.07168,0.763104,0.008032,0.005056,0.029792,0.097184,0.098464,8.01766,0.1128
+516,77.2451,12.9458,10.1449,0.069344,1.40112,0.007872,0.005568,0.029248,0.098304,0.098176,8.31872,0.116576
+517,89.3855,11.1875,9.23856,0.069632,0.816128,0.007168,0.00592,0.028896,0.096256,0.098304,8.00154,0.11472
+518,92.4021,10.8223,8.73597,0.069472,0.845984,0.008288,0.006048,0.028672,0.098304,0.098304,7.46678,0.114112
+519,87.1267,11.4775,9.42694,0.068736,0.801696,0.00816,0.00576,0.029056,0.09824,0.098368,8.20019,0.116736
+520,79.8627,12.5215,9.55555,0.069216,0.797088,0.008192,0.005984,0.028832,0.098304,0.098304,8.33696,0.112672
+521,92.4355,10.8184,8.7743,0.085696,0.873408,0.00816,0.005632,0.028832,0.09664,0.098304,7.46496,0.112672
+522,89.3543,11.1914,9.1095,0.069632,0.858112,0.008192,0.006144,0.028672,0.099648,0.098368,7.824,0.116736
+523,89.6202,11.1582,8.68317,0.069024,0.799616,0.008448,0.005888,0.028672,0.098304,0.098208,7.45891,0.116096
+524,91.818,10.8911,8.26944,0.071648,0.772128,0.008192,0.005984,0.028832,0.098304,0.099968,7.06723,0.117152
+525,84.4606,11.8398,8.7416,0.069472,0.838528,0.008096,0.005632,0.029184,0.104032,0.104608,7.46736,0.114688
+526,89.8049,11.1353,9.14445,0.069856,0.767968,0.008416,0.005568,0.029088,0.09792,0.098528,7.9527,0.1144
+527,88.681,11.2764,8.69216,0.069376,0.794656,0.008576,0.0056,0.02912,0.098688,0.100352,7.46906,0.116736
+528,80.144,12.4775,9.1743,0.068864,0.792832,0.00832,0.004704,0.030336,0.098208,0.096704,7.96022,0.114112
+529,87.4466,11.4355,8.68275,0.069056,0.79728,0.008224,0.006112,0.028672,0.097984,0.09792,7.46266,0.114848
+530,87.1712,11.4717,9.1689,0.07168,1.2463,0.008352,0.004864,0.030048,0.098912,0.110656,7.48282,0.115264
+531,84.1828,11.8789,9.57235,0.06928,0.808448,0.007008,0.00608,0.028736,0.097952,0.097728,8.34166,0.115456
+532,89.6045,11.1602,9.22013,0.069568,0.866368,0.008256,0.00608,0.028672,0.098304,0.098336,7.92982,0.11472
+533,86.4208,11.5713,8.30259,0.069664,0.784352,0.008192,0.00592,0.028896,0.098304,0.098112,7.07194,0.137216
+534,88.6273,11.2832,8.67008,0.06848,0.856064,0.008192,0.005536,0.028928,0.098432,0.098528,7.39123,0.114688
+535,86.9639,11.499,9.27306,0.069664,0.886176,0.008352,0.005824,0.029216,0.096448,0.098304,7.96646,0.112608
+536,90.9373,10.9966,8.51984,0.06864,1.01779,0.008224,0.005792,0.029024,0.099456,0.100832,7.0736,0.11648
+537,79.463,12.5845,8.3497,0.069632,0.84992,0.008192,0.005984,0.028832,0.097696,0.09696,7.07888,0.1136
+538,46.5423,21.4858,8.58704,0.06928,1.06576,0.008192,0.005568,0.035264,0.097856,0.10912,7.08144,0.11456
+539,84.3736,11.8521,8.79411,0.068768,0.873312,0.008192,0.005856,0.028992,0.097696,0.096832,7.50176,0.112704
+540,83.0562,12.04,9.66246,0.072832,0.903872,0.00832,0.015648,0.029504,0.098112,0.098112,8.32314,0.112928
+541,80.2036,12.4683,10.1355,0.075776,1.76038,0.00832,0.004864,0.03248,0.098592,0.100352,7.9401,0.114624
+542,90.5073,11.0488,8.78157,0.068992,0.948864,0.007424,0.00496,0.02992,0.09696,0.114688,7.39549,0.114272
+543,81.9856,12.1973,9.66989,0.071392,0.912864,0.02336,0.00576,0.029024,0.097504,0.098176,8.31789,0.11392
+544,81.9528,12.2021,9.19709,0.069728,0.806912,0.008192,0.005952,0.028864,0.098304,0.098304,7.96611,0.11472
+545,86.8201,11.5181,8.75408,0.069632,0.866592,0.008096,0.004832,0.030336,0.096736,0.099296,7.46301,0.115552
+546,75.7845,13.1953,9.57437,0.069632,0.821248,0.008192,0.005856,0.02896,0.098304,0.098304,8.33043,0.11344
+547,92.107,10.8569,8.73434,0.071712,0.81504,0.008256,0.005728,0.029056,0.097472,0.097088,7.49568,0.114304
+548,91.1925,10.9658,8.80515,0.076576,1.30182,0.00848,0.0056,0.03168,0.098304,0.098304,7.0697,0.114688
+549,89.2803,11.2007,8.71014,0.069632,0.821248,0.008192,0.006144,0.028672,0.09792,0.0984,7.46525,0.114688
+550,88.5507,11.293,8.43968,0.071808,0.939488,0.00832,0.0056,0.029024,0.09776,0.097376,7.07542,0.11488
+551,91.1478,10.9712,8.43366,0.069632,0.915488,0.008224,0.00608,0.028672,0.09792,0.104864,7.08349,0.119296
+552,89.8955,11.124,8.6952,0.069696,0.815296,0.00816,0.006048,0.028768,0.097728,0.098016,7.45763,0.113856
+553,87.3161,11.4526,9.06845,0.070656,1.57187,0.00816,0.005952,0.028864,0.098336,0.099744,7.06822,0.11664
+554,93.4221,10.7041,8.3023,0.069632,0.794752,0.008192,0.005952,0.028864,0.098208,0.098112,7.0839,0.114688
+555,89.534,11.1689,8.73267,0.070912,0.832256,0.008192,0.00608,0.028736,0.098112,0.098496,7.47475,0.115136
+556,84.5059,11.8335,9.34509,0.069632,0.948224,0.008192,0.005888,0.028928,0.101856,0.106048,7.96074,0.115584
+557,80.6935,12.3926,8.38717,0.068192,0.886784,0.008192,0.006144,0.028672,0.098272,0.098336,7.07789,0.114688
+558,25.118,39.812,8.71629,0.070912,0.83584,0.006688,0.006112,0.028768,0.098208,0.098336,7.44806,0.12336
+559,86.3479,11.5811,8.68077,0.071872,0.79872,0.007296,0.004992,0.029856,0.09712,0.098304,7.45635,0.116256
+560,29.5071,33.8901,9.23725,0.068384,0.85808,0.007648,0.004672,0.030112,0.096832,0.098304,7.95446,0.118752
+561,71.1581,14.0532,9.71584,0.070432,1.81862,0.00832,0.006016,0.028672,0.097952,0.100704,7.47101,0.114112
+562,63.1125,15.8447,10.888,0.068544,0.978944,0.008192,0.005952,0.032224,0.10112,0.105888,9.47162,0.115552
+563,75.4578,13.2524,10.0884,0.06704,0.864224,0.008032,0.004832,0.029952,0.09824,0.09824,8.80493,0.11296
+564,89.0628,11.228,8.96758,0.069696,0.79488,0.008224,0.006112,0.028672,0.098304,0.098336,7.46077,0.402592
+565,94.1133,10.6255,8.35818,0.069536,0.862912,0.008224,0.005792,0.028992,0.096256,0.098304,7.07379,0.114368
+566,81.7924,12.2261,9.90349,0.069632,1.17133,0.008064,0.005632,0.0288,0.098464,0.098528,8.30694,0.116096
+567,75.7901,13.1943,10.4899,0.069632,0.831488,0.008352,0.005984,0.028864,0.0992,0.097216,9.23386,0.115264
+568,90.6275,11.0342,8.65466,0.069248,0.778368,0.008032,0.005632,0.029056,0.0968,0.098304,7.45472,0.114496
+569,85.4508,11.7026,8.73523,0.070144,0.84176,0.00816,0.006144,0.028672,0.098304,0.098304,7.4711,0.11264
+570,81.9921,12.1963,10.2622,0.069184,1.00397,0.008192,0.006144,0.032672,0.104704,0.105888,8.81504,0.116384
+571,85.2303,11.7329,8.71155,0.06896,0.830112,0.008192,0.005728,0.029088,0.097344,0.09872,7.45936,0.114048
+572,86.6512,11.5405,8.66502,0.071584,0.794272,0.008448,0.005568,0.02896,0.096736,0.098336,7.44842,0.112704
+573,89.0512,11.2295,8.9537,0.068384,1.07066,0.010688,0.005792,0.032384,0.097088,0.099264,7.4552,0.11424
+574,88.3368,11.3203,9.216,0.069152,0.833408,0.006784,0.006112,0.028672,0.098016,0.098496,7.96262,0.112736
+575,84.6001,11.8203,9.56774,0.06944,0.80272,0.007552,0.005056,0.029728,0.098464,0.098848,8.34304,0.112896
+576,82.451,12.1284,9.77306,0.068896,0.997216,0.008128,0.01712,0.028896,0.099392,0.098496,8.34022,0.114688
+577,81.9528,12.2021,9.91219,0.069568,1.08768,0.024576,0.005824,0.04128,0.098304,0.109632,8.3609,0.114432
+578,88.4436,11.3066,9.2551,0.068384,0.808,0.007264,0.005984,0.028768,0.09824,0.098272,8.02611,0.11408
+579,82.4842,12.1235,9.61699,0.070016,0.83968,0.008192,0.005664,0.029152,0.098304,0.098304,8.35379,0.113888
+580,73.6638,13.5752,10.3592,0.069248,0.83984,0.00832,0.016832,0.030144,0.09888,0.356352,8.82486,0.114752
+581,87.72,11.3999,9.23238,0.0696,0.857376,0.006912,0.014336,0.030176,0.096832,0.327168,7.39142,0.43856
+582,82.7675,12.082,9.55562,0.067776,0.800736,0.008192,0.006048,0.028768,0.098304,0.098304,8.33331,0.114176
+583,54.0683,18.4951,9.30614,0.0728,0.906144,0.00816,0.005568,0.02928,0.098304,0.09936,7.97299,0.113536
+584,75.0816,13.3188,10.6395,0.069664,0.98112,0.007488,0.004992,0.03232,0.104864,0.1024,9.22134,0.115264
+585,76.4978,13.0723,10.836,0.069472,0.83936,0.008064,0.004704,0.029888,0.097088,0.098336,9.57584,0.113216
+586,88.0595,11.356,9.56781,0.069632,0.80016,0.008096,0.0048,0.030272,0.096832,0.098208,8.34557,0.11424
+587,85.8772,11.6445,8.7471,0.071648,0.874688,0.008192,0.006176,0.02864,0.101728,0.09808,7.44499,0.11296
+588,87.4578,11.4341,9.19427,0.068384,0.83328,0.008416,0.0056,0.029024,0.098432,0.0984,7.93805,0.114688
+589,83.1979,12.0195,8.81293,0.069216,0.928544,0.008192,0.00608,0.028736,0.098304,0.098016,7.46301,0.112832
+590,86.9972,11.4946,9.20986,0.0736,0.819328,0.009504,0.004864,0.029664,0.09728,0.09824,7.96451,0.112864
+591,80.9166,12.3584,9.62512,0.073728,0.868352,0.008192,0.006144,0.032544,0.097536,0.09856,8.3255,0.11456
+592,85.8628,11.6465,9.17101,0.069536,0.770112,0.008064,0.005568,0.028928,0.0968,0.108544,7.95853,0.124928
+593,87.6337,11.4111,8.84531,0.071104,0.9488,0.008192,0.006112,0.028704,0.098208,0.0984,7.47245,0.113344
+594,91.0789,10.9795,9.13923,0.06864,1.62813,0.008224,0.00608,0.028704,0.099648,0.109248,7.07379,0.116768
+595,87.7915,11.3906,8.7511,0.068384,0.853632,0.008416,0.005568,0.029056,0.096608,0.098304,7.46496,0.126176
+596,83.8863,11.9209,8.37226,0.069664,0.857088,0.007296,0.006016,0.028672,0.098368,0.099744,7.09174,0.113664
+597,95.8263,10.4355,8.37395,0.06944,0.874688,0.008192,0.006112,0.028704,0.097472,0.09824,7.07645,0.114656
+598,88.2454,11.332,8.6999,0.069632,0.819232,0.00816,0.006144,0.028672,0.098016,0.09824,7.45712,0.114688
+599,90.3875,11.0635,8.30918,0.071776,0.80864,0.008128,0.004864,0.029888,0.098176,0.098528,7.07376,0.115424
+600,96.5947,10.3525,8.30538,0.068288,0.815072,0.008064,0.0056,0.02928,0.098176,0.098528,7.06909,0.11328
+601,92.2523,10.8398,8.7631,0.069376,0.875904,0.008352,0.004896,0.029952,0.099072,0.098304,7.46291,0.114336
+602,89.1831,11.2129,9.14022,0.069088,0.796224,0.007296,0.005984,0.028672,0.098304,0.098144,7.92176,0.114752
+603,96.8596,10.3242,8.3497,0.069664,0.835552,0.008192,0.006144,0.028768,0.097984,0.097536,7.09117,0.114688
+604,91.0465,10.9834,8.79085,0.068416,0.9216,0.008192,0.005632,0.02912,0.098048,0.098464,7.44669,0.114688
+605,87.7764,11.3926,9.15914,0.069088,0.807232,0.006848,0.006144,0.028672,0.098304,0.098304,7.9319,0.11264
+606,95.4334,10.4785,8.29411,0.068096,0.806912,0.008256,0.00608,0.028672,0.098304,0.099584,7.06022,0.117984
+607,92.4355,10.8184,8.72115,0.068352,0.847872,0.008064,0.0056,0.029344,0.098144,0.098144,7.45248,0.113152
+608,90.8285,11.0098,8.30592,0.07088,0.807936,0.008192,0.005984,0.028832,0.098304,0.099392,7.07174,0.114656
+609,94.2563,10.6094,8.30054,0.069248,0.811136,0.00832,0.005568,0.029152,0.09648,0.098304,7.06771,0.114624
+610,87.469,11.4326,8.6943,0.070176,0.813056,0.008192,0.005952,0.028864,0.09776,0.09808,7.45958,0.11264
+611,89.5888,11.1621,9.09302,0.067616,0.86016,0.008096,0.005632,0.029088,0.098208,0.098592,7.81072,0.114912
+612,94.7359,10.5557,8.30259,0.069184,0.799168,0.008192,0.006144,0.028672,0.098304,0.098336,7.0799,0.114688
+613,90.4274,11.0586,8.70195,0.069024,0.811168,0.00832,0.0056,0.029312,0.097824,0.098208,7.46576,0.116736
+614,89.2375,11.2061,9.15622,0.069536,0.79472,0.008224,0.006048,0.028736,0.09792,0.098304,7.93971,0.113024
+615,97.8219,10.2227,8.27478,0.06992,0.781984,0.00832,0.004896,0.03008,0.096896,0.099712,7.06624,0.116736
+616,93.0655,10.7451,8.67373,0.068032,0.792608,0.00816,0.006048,0.028768,0.098304,0.098304,7.46006,0.11344
+617,92.1775,10.8486,8.3088,0.070176,0.802688,0.008288,0.005664,0.029088,0.09744,0.097216,7.08403,0.114208
+618,96.2587,10.3887,8.344,0.068032,0.828576,0.008096,0.005056,0.030112,0.096864,0.098304,7.08349,0.125472
+619,92.9726,10.7559,8.76544,0.069568,0.869984,0.008096,0.004672,0.030688,0.096288,0.098304,7.47478,0.113056
+620,90.022,11.1084,9.14272,0.067968,0.7864,0.007712,0.004672,0.02992,0.10464,0.10496,7.92291,0.113536
+621,89.6594,11.1533,8.76589,0.069248,0.891712,0.008224,0.00576,0.029024,0.096352,0.098208,7.45475,0.112608
+622,85.755,11.6611,9.46637,0.068096,1.57808,0.007296,0.00592,0.030016,0.099008,0.100352,7.46451,0.113088
+623,89.3465,11.1924,9.14899,0.06832,0.77824,0.008192,0.006144,0.028672,0.097792,0.098144,7.94896,0.114528
+624,98.3009,10.1729,8.2664,0.070336,0.775584,0.008352,0.004832,0.029888,0.097056,0.098304,7.0671,0.114944
+625,90.9656,10.9932,8.92314,0.069632,1.01171,0.008128,0.0056,0.02928,0.104352,0.102336,7.47741,0.114688
+626,89.3465,11.1924,9.15014,0.069632,0.781792,0.008128,0.004736,0.029984,0.096992,0.098272,7.94746,0.113152
+627,97.9529,10.209,8.30717,0.072608,0.811008,0.007616,0.004704,0.029888,0.09808,0.09856,7.07002,0.114688
+628,91.6331,10.9131,8.73904,0.06928,0.862976,0.008224,0.005824,0.02896,0.098304,0.098304,7.45267,0.114496
+629,90.0774,11.1016,8.74019,0.09936,1.20624,0.008352,0.00496,0.029888,0.09888,0.098592,7.07773,0.116192
+630,97.1998,10.2881,8.27392,0.069632,0.780288,0.008192,0.005984,0.028832,0.097568,0.098144,7.0719,0.113376
+631,90.7882,11.0146,8.65658,0.069632,0.786432,0.007936,0.005632,0.029312,0.098464,0.09984,7.44496,0.114368
+632,85.7406,11.6631,9.50483,0.067648,0.794624,0.008192,0.005824,0.02896,0.098304,0.098336,8.29008,0.112864
+633,88.033,11.3594,9.15958,0.069952,0.782464,0.008352,0.005632,0.029088,0.096704,0.098272,7.95648,0.11264
+634,88.1467,11.3447,8.77283,0.06896,0.883488,0.009312,0.005024,0.028672,0.099808,0.100384,7.46333,0.113856
+635,88.3368,11.3203,9.17299,0.069632,0.798112,0.008064,0.004832,0.030048,0.096928,0.098336,7.94211,0.124928
+636,97.1445,10.2939,8.2793,0.069664,0.78624,0.008352,0.00592,0.028896,0.098112,0.098528,7.06912,0.114464
+637,91.1519,10.9707,8.64294,0.069664,0.821632,0.00816,0.006144,0.028672,0.097888,0.104864,7.39229,0.113632
+638,88.0254,11.3604,9.16026,0.069664,0.80688,0.008192,0.005888,0.02896,0.098272,0.098304,7.92986,0.11424
+639,97.5796,10.248,8.29686,0.075744,0.801184,0.00784,0.0056,0.028928,0.096896,0.1,7.06595,0.11472
+640,91.087,10.9785,8.81654,0.06896,0.909248,0.019168,0.006144,0.028672,0.098304,0.098304,7.47315,0.114592
+641,88.7502,11.2676,8.45584,0.069504,0.942208,0.008352,0.005984,0.046528,0.098816,0.0984,7.07107,0.114976
+642,86.1445,11.6084,9.02666,0.069632,0.835584,0.00832,0.006016,0.028672,0.098304,0.098304,7.45882,0.423008
+643,88.3444,11.3193,8.79043,0.069632,0.90272,0.00832,0.004864,0.029792,0.096736,0.097824,7.46586,0.114688
+644,88.9198,11.2461,8.99955,0.068224,1.50528,0.008064,0.0056,0.031424,0.098272,0.100352,7.0656,0.116736
+645,95.1584,10.5088,8.3232,0.069024,0.824,0.008256,0.00608,0.028704,0.098272,0.098336,7.07696,0.113568
+646,90.9656,10.9932,8.7856,0.069728,0.904416,0.006944,0.006144,0.028672,0.099328,0.099296,7.45475,0.11632
+647,86.4938,11.5615,9.26986,0.069824,0.88512,0.00784,0.005632,0.029152,0.09776,0.097216,7.96259,0.11472
+648,91.8056,10.8926,8.39475,0.069632,0.899072,0.008192,0.006144,0.028672,0.098336,0.09952,7.0705,0.114688
+649,86.7723,11.5244,8.83555,0.070304,0.935168,0.006944,0.006112,0.028672,0.098304,0.098304,7.4752,0.116544
+650,87.7689,11.3936,9.2321,0.069408,0.879008,0.008352,0.0056,0.029088,0.097952,0.098016,7.93075,0.11392
+651,93.9967,10.6387,8.35789,0.069632,0.864064,0.008096,0.005568,0.029216,0.097856,0.098368,7.0704,0.114688
+652,83.5509,11.9688,9.6345,0.069856,1.06522,0.008288,0.0056,0.032608,0.10464,0.105088,8.12566,0.117536
+653,86.3552,11.5801,9.20493,0.069088,0.833248,0.00832,0.0048,0.029856,0.09712,0.097824,7.95082,0.113856
+654,87.8442,11.3838,8.43555,0.069888,0.940032,0.008224,0.005824,0.02896,0.099904,0.1,7.06829,0.114432
+655,86.9861,11.4961,8.80144,0.0696,0.9272,0.007872,0.004992,0.02976,0.097216,0.09824,7.45277,0.113792
+656,84.3423,11.8564,9.22995,0.069152,0.879296,0.008224,0.00592,0.028864,0.097536,0.098368,7.92851,0.11408
+657,92.2772,10.8369,8.38102,0.069472,0.885536,0.008192,0.006112,0.028672,0.098304,0.098304,7.0697,0.116736
+658,89.2842,11.2002,8.71027,0.069088,0.903712,0.00736,0.006208,0.028544,0.097248,0.098304,7.38675,0.113056
+659,82.4344,12.1309,9.28509,0.069632,0.91136,0.008224,0.006112,0.028672,0.097824,0.097888,7.95242,0.11296
+660,85.7909,11.6562,8.84227,0.069632,0.954176,0.008384,0.0056,0.028992,0.098528,0.099712,7.46154,0.115712
+661,82.7007,12.0918,9.67066,0.069632,0.925696,0.008192,0.005856,0.02896,0.097632,0.096928,8.32416,0.1136
+662,85.8844,11.6436,9.18416,0.068512,0.825312,0.008416,0.00592,0.028672,0.098304,0.098336,7.93744,0.113248
+663,88.3139,11.3232,8.81254,0.07168,0.909344,0.00816,0.00576,0.029056,0.098304,0.098304,7.47894,0.112992
+664,85.6545,11.6748,9.2615,0.068032,0.904352,0.00832,0.004864,0.030336,0.097728,0.098304,7.93488,0.114688
+665,97.9248,10.2119,8.26435,0.068256,0.777728,0.008384,0.005664,0.029024,0.098272,0.098208,7.0641,0.11472
+666,93.0994,10.7412,8.72557,0.069664,0.843424,0.008256,0.0056,0.02912,0.097856,0.09872,7.45728,0.115648
+667,89.8167,11.1338,9.14781,0.069632,0.794624,0.008192,0.0056,0.029184,0.096288,0.098304,7.9319,0.11408
+668,96.8138,10.3291,8.28502,0.06848,0.79664,0.008192,0.0056,0.02912,0.0984,0.10208,7.0608,0.115712
+669,92.6948,10.7881,8.69011,0.069312,0.80768,0.008192,0.00592,0.028896,0.097888,0.098208,7.46099,0.113024
+670,91.5185,10.9268,8.29043,0.070688,0.799744,0.008192,0.006112,0.028704,0.10032,0.099424,7.06426,0.112992
+671,97.1076,10.2979,8.29706,0.068192,0.795808,0.008416,0.004736,0.030048,0.096928,0.098304,7.08163,0.112992
+672,83.9482,11.9121,9.75261,0.069632,0.99936,0.008064,0.0056,0.029408,0.099392,0.098592,8.32976,0.1128
+673,90.8043,11.0127,8.78602,0.069568,1.02822,0.012288,0.005696,0.032256,0.097216,0.345504,7.08054,0.11472
+674,96.0781,10.4082,8.41162,0.069088,0.9224,0.008224,0.0056,0.029376,0.097632,0.098336,7.06794,0.113024
+675,89.1287,11.2197,8.74586,0.069536,0.834528,0.008192,0.005792,0.029024,0.098304,0.1,7.48374,0.116736
+676,90.2123,11.085,9.12822,0.069184,0.782656,0.008064,0.0056,0.029056,0.0968,0.098336,7.92573,0.1128
+677,96.2949,10.3848,8.27203,0.069504,0.780576,0.007776,0.0056,0.029184,0.098208,0.09872,7.06749,0.114976
+678,86.765,11.5254,9.0624,0.069632,0.851392,0.008064,0.01504,0.030752,0.097632,0.098432,7.46733,0.424128
+679,98.4805,10.1543,8.28995,0.069952,0.790624,0.008224,0.006016,0.028768,0.098208,0.0984,7.07536,0.1144
+680,96.7224,10.3389,8.32243,0.069472,0.800768,0.008064,0.0056,0.029184,0.09808,0.104992,7.09222,0.114048
+681,91.16,10.9697,8.72448,0.069472,0.854176,0.008192,0.00576,0.029056,0.097344,0.097248,7.45059,0.11264
+682,88.1239,11.3477,9.29338,0.069568,0.917952,0.008192,0.005728,0.029088,0.097856,0.098304,7.95078,0.115904
+683,94.4998,10.582,8.33536,0.069248,0.840064,0.008,0.005568,0.02944,0.09744,0.09712,7.07498,0.113504
+684,87.305,11.4541,8.78173,0.069056,0.907488,0.008064,0.004672,0.030304,0.098656,0.100224,7.44662,0.11664
+685,87.7539,11.3955,9.2279,0.06928,0.858496,0.00816,0.0056,0.029216,0.09744,0.09712,7.94829,0.114304
+686,90.0299,11.1074,8.448,0.069024,0.942624,0.00784,0.005568,0.035808,0.098048,0.097792,7.07818,0.11312
+687,85.5973,11.6826,8.84736,0.073728,0.945408,0.017312,0.005984,0.029856,0.09712,0.09984,7.46138,0.116736
+688,88.6503,11.2803,9.15059,0.067712,0.792128,0.006592,0.006144,0.028672,0.098304,0.098304,7.93981,0.112928
+689,94.1609,10.6201,8.38013,0.076096,0.876544,0.00816,0.005568,0.02928,0.098048,0.09856,7.07363,0.11424
+690,89.09,11.2246,8.81386,0.069536,0.921696,0.008192,0.005888,0.028928,0.097664,0.105088,7.46291,0.113952
+691,89.5105,11.1719,9.21395,0.069632,0.821248,0.008224,0.006112,0.028672,0.09792,0.09824,7.97126,0.11264
+692,84.9793,11.7676,9.22662,0.06592,0.81616,0.008352,0.004928,0.038336,0.09888,0.098304,7.98035,0.115392
+693,88.566,11.291,8.72128,0.069632,0.8856,0.008096,0.0056,0.039584,0.098272,0.097792,7.40403,0.112672
+694,88.7579,11.2666,9.18323,0.069664,0.821216,0.008192,0.005792,0.029024,0.097856,0.098112,7.94045,0.112928
+695,94.1782,10.6182,8.37475,0.069632,0.880448,0.008064,0.004896,0.029792,0.097216,0.098304,7.07171,0.114688
+696,90.2919,11.0752,8.77363,0.069472,0.897184,0.008192,0.005824,0.028992,0.098464,0.099232,7.45363,0.11264
+697,89.5261,11.1699,9.00106,0.112576,1.45421,0.008192,0.006144,0.028672,0.098304,0.098304,7.07789,0.116768
+698,96.2587,10.3887,8.276,0.067456,0.790688,0.008192,0.005728,0.029088,0.0976,0.098144,7.06544,0.113664
+699,87.7088,11.4014,8.71613,0.069696,0.835424,0.008064,0.004928,0.029952,0.097184,0.0992,7.45773,0.113952
+700,87.6412,11.4102,9.2249,0.068288,0.869728,0.008096,0.004864,0.029728,0.097248,0.106176,7.92611,0.114656
+701,90.7962,11.0137,8.83066,0.069632,0.927744,0.008128,0.0056,0.02928,0.097888,0.097952,7.48022,0.114208
+702,80.7062,12.3906,8.77818,0.072064,0.901248,0.008352,0.005568,0.029344,0.098528,0.100224,7.4487,0.114144
+703,85.1276,11.7471,9.26061,0.069216,0.87696,0.008192,0.006144,0.038944,0.104384,0.097952,7.94378,0.11504
+704,96.304,10.3838,8.2665,0.068352,0.774112,0.008032,0.0056,0.02912,0.0976,0.097248,7.07174,0.114688
+705,88.3825,11.3145,8.75075,0.06912,0.875136,0.009216,0.00512,0.029728,0.097248,0.099936,7.45002,0.115232
+706,87.2232,11.4648,9.21366,0.06944,0.821376,0.008256,0.005664,0.029152,0.098304,0.09824,7.95859,0.12464
+707,95.469,10.4746,8.4119,0.070176,0.91264,0.007296,0.005984,0.029824,0.097152,0.098336,7.07693,0.113568
+708,86.2461,11.5947,8.89523,0.068352,0.969792,0.025376,0.005568,0.057088,0.10544,0.098336,7.45046,0.114816
+709,84.3354,11.8574,9.22614,0.069664,0.838816,0.008032,0.005088,0.028736,0.097984,0.097984,7.96659,0.113248
+710,95.2824,10.4951,8.32733,0.069536,0.8256,0.008192,0.006144,0.028672,0.100256,0.100448,7.07277,0.115712
+711,87.6938,11.4033,8.71405,0.072416,0.826528,0.007008,0.006048,0.028768,0.097408,0.098176,7.46365,0.114048
+712,90.5794,11.04,8.89603,0.071072,1.00118,0.00704,0.006048,0.045152,0.098304,0.107744,7.44528,0.114208
+713,89.7065,11.1475,8.9273,0.068736,1.04726,0.059616,0.006144,0.032192,0.096832,0.435328,7.06627,0.114912
+714,89.6123,11.1592,8.76413,0.069344,0.87552,0.008192,0.005728,0.029088,0.098304,0.098304,7.46672,0.112928
+715,88.2835,11.3271,8.3023,0.069696,0.7968,0.008064,0.0048,0.030048,0.10304,0.097888,7.07795,0.114016
+716,90.8768,11.0039,8.60368,0.069088,1.09827,0.009344,0.005024,0.029856,0.097088,0.098336,7.0712,0.125472
+717,91.9871,10.8711,8.77526,0.07168,0.878592,0.008192,0.006144,0.028704,0.102368,0.098336,7.4681,0.113152
+718,87.7313,11.3984,9.33501,0.0696,0.936192,0.024352,0.0056,0.037504,0.101696,0.098944,7.94598,0.115136
+719,93.7729,10.6641,8.35379,0.069632,0.862208,0.009344,0.004992,0.03072,0.098016,0.098272,7.06592,0.114688
+720,90.4674,11.0537,8.74813,0.069632,0.858112,0.008192,0.005792,0.029024,0.098304,0.114688,7.44861,0.115776
+721,88.4436,11.3066,9.1849,0.069664,0.80688,0.008192,0.006144,0.028672,0.098304,0.098176,7.95456,0.114304
+722,91.087,10.9785,8.76749,0.069632,0.89088,0.008288,0.006048,0.028672,0.098304,0.098304,7.45389,0.113472
+723,82.9284,12.0586,9.72435,0.069216,0.9552,0.008192,0.006144,0.028672,0.097472,0.09824,8.3465,0.11472
+724,89.6045,11.1602,9.18205,0.068448,0.81056,0.008352,0.005568,0.029472,0.099808,0.098912,7.94829,0.11264
+725,97.08,10.3008,8.3583,0.070016,0.836704,0.008352,0.004864,0.030176,0.098336,0.098816,7.09632,0.11472
+726,94.0917,10.6279,8.2903,0.069664,0.802784,0.008032,0.005472,0.02912,0.09664,0.09952,7.06573,0.113344
+727,90.022,11.1084,9.2352,0.07056,0.864256,0.008192,0.006144,0.028672,0.099552,0.098464,7.94483,0.114528
+728,96.4218,10.3711,8.31699,0.06896,0.82096,0.008192,0.005056,0.030048,0.098144,0.097088,7.07341,0.115136
+729,87.1712,11.4717,8.64502,0.069056,0.780416,0.007008,0.005312,0.028608,0.098336,0.09712,7.44653,0.11264
+730,88.7348,11.2695,8.97648,0.069632,1.48054,0.00832,0.005568,0.031392,0.1,0.09824,7.06723,0.115552
+731,97.7192,10.2334,8.27718,0.069664,0.7864,0.008192,0.005632,0.029024,0.096416,0.098336,7.06966,0.113856
+732,82.534,12.1162,9.53952,0.06816,0.800672,0.007488,0.004896,0.029856,0.09904,0.098464,8.3169,0.114048
+733,88.4895,11.3008,9.13766,0.069248,0.79888,0.00672,0.006144,0.03008,0.10304,0.098304,7.90938,0.115872
+734,96.4763,10.3652,8.28259,0.068288,0.79664,0.008288,0.006048,0.030112,0.096864,0.098336,7.06352,0.114496
+735,90.1805,11.0889,8.7969,0.074592,0.902112,0.00832,0.004928,0.029856,0.097088,0.099712,7.46563,0.114656
+736,89.7222,11.1455,9.14403,0.069408,0.78416,0.008064,0.004704,0.030176,0.097856,0.097216,7.93805,0.1144
+737,91.0141,10.9873,8.29021,0.069344,0.78304,0.008192,0.005856,0.0344,0.099008,0.098304,7.07718,0.11488
+738,88.033,11.3594,9.08301,0.067712,0.89088,0.008192,0.005728,0.028992,0.097376,0.09728,7.46906,0.417792
+739,88.352,11.3184,8.31968,0.069984,0.819392,0.008064,0.005568,0.029152,0.098304,0.098272,7.07216,0.118784
+740,90.8365,11.0088,8.36906,0.06848,0.861312,0.01728,0.005984,0.030112,0.09824,0.100928,7.06995,0.116768
+741,89.0977,11.2236,8.74522,0.068288,0.868224,0.009536,0.004768,0.03008,0.09824,0.098336,7.45501,0.112736
+742,89.3621,11.1904,8.40509,0.07168,0.89888,0.008128,0.0056,0.035104,0.096864,0.098304,7.07584,0.114688
+743,93.235,10.7256,8.31757,0.068608,0.82112,0.00832,0.005664,0.029088,0.098432,0.106048,7.06589,0.1144
+744,84.4884,11.8359,8.93542,0.079872,1.03014,0.007616,0.004672,0.045056,0.099424,0.097184,7.45798,0.113472
+745,84.3632,11.8535,9.08506,0.084096,1.5401,0.008192,0.005888,0.045312,0.098304,0.099616,7.08682,0.116736
+746,95.0524,10.5205,8.3225,0.069376,0.817248,0.00752,0.004928,0.028832,0.098144,0.105664,7.07613,0.114656
+747,88.9661,11.2402,8.78794,0.069632,0.886784,0.007616,0.004704,0.030144,0.0968,0.098304,7.4793,0.114656
+748,88.1391,11.3457,9.3471,0.08192,0.978944,0.008192,0.00592,0.028896,0.097824,0.098464,7.93206,0.11488
+749,96.2044,10.3945,8.29875,0.068064,0.804832,0.009568,0.004768,0.030016,0.096864,0.098144,7.072,0.114496
+750,85.9926,11.6289,8.94787,0.069088,1.01475,0.00816,0.006144,0.028672,0.099744,0.098944,7.50384,0.118528
+751,78.4674,12.7441,10.4758,0.06848,0.872352,0.008288,0.005696,0.02912,0.096256,0.098304,9.18118,0.116096
+752,96.4491,10.3682,8.30547,0.068448,0.810304,0.008416,0.005568,0.02912,0.096832,0.098336,7.07376,0.114688
+753,89.5418,11.168,8.84202,0.068384,0.943808,0.016704,0.006176,0.030144,0.098848,0.100352,7.46253,0.115072
+754,86.3771,11.5771,9.17427,0.069664,0.79664,0.008192,0.005888,0.028928,0.098272,0.098336,7.94208,0.126272
+755,90.8526,11.0068,8.37149,0.069632,0.88192,0.006944,0.006112,0.028672,0.098016,0.097952,7.06829,0.113952
+756,89.3465,11.1924,8.83098,0.069632,0.943776,0.008032,0.004672,0.030464,0.098048,0.098464,7.44886,0.129024
+757,85.1559,11.7432,9.4279,0.068544,1.05472,0.008192,0.005888,0.028928,0.09776,0.096832,7.95357,0.113472
+758,93.4904,10.6963,8.32557,0.0696,0.83008,0.007488,0.004864,0.029888,0.098816,0.098656,7.07171,0.114464
+759,91.888,10.8828,8.67552,0.06832,0.84928,0.00672,0.006144,0.028672,0.098304,0.098304,7.40691,0.112864
+760,90.0141,11.1094,9.21069,0.070304,0.848064,0.008192,0.00592,0.028864,0.098112,0.097824,7.94,0.113408
+761,94.3953,10.5938,8.32714,0.069632,0.832896,0.008096,0.004832,0.030112,0.096864,0.098368,7.07085,0.115488
+762,93.0486,10.7471,8.71974,0.069632,0.84992,0.008192,0.006144,0.028672,0.098336,0.098272,7.44653,0.114048
+763,89.9429,11.1182,8.97222,0.069088,1.46918,0.008192,0.006016,0.032768,0.098464,0.099936,7.07139,0.117184
+764,97.2922,10.2783,8.31488,0.069408,0.819424,0.00816,0.0056,0.029152,0.096352,0.098176,7.07392,0.114688
+765,91.2656,10.957,8.7409,0.069664,0.85808,0.008224,0.006112,0.028704,0.098304,0.099552,7.45568,0.116576
+766,87.3795,11.4443,9.16685,0.069664,0.798688,0.008192,0.006112,0.028704,0.098144,0.098208,7.9465,0.11264
+767,95.2292,10.501,8.28598,0.069824,0.786272,0.008096,0.005568,0.029184,0.096544,0.098144,7.07805,0.114304
+768,91.9705,10.873,8.73453,0.067584,0.835584,0.008192,0.006176,0.02864,0.106304,0.10464,7.46403,0.113376
+769,88.3749,11.3154,9.21645,0.069504,0.82752,0.00832,0.005568,0.029152,0.097888,0.098272,7.96736,0.112864
+770,94.2302,10.6123,8.33498,0.069152,0.827456,0.006688,0.006144,0.028672,0.098368,0.100224,7.08205,0.116224
+771,90.9656,10.9932,8.73878,0.068864,0.85648,0.006656,0.006144,0.028672,0.098112,0.098496,7.46192,0.11344
+772,86.4208,11.5713,8.33946,0.072864,0.842112,0.008128,0.00464,0.030336,0.09872,0.098272,7.0697,0.114688
+773,93.8416,10.6562,8.46662,0.069376,0.946912,0.019712,0.004896,0.030016,0.10032,0.105152,7.07523,0.115008
+774,91.2087,10.9639,8.69786,0.069632,0.833536,0.009568,0.004768,0.029792,0.09824,0.097248,7.4415,0.113568
+775,86.0866,11.6162,9.28563,0.06928,0.935456,0.006976,0.006144,0.028672,0.09808,0.098176,7.92771,0.115136
+776,96.9513,10.3145,8.27187,0.069632,0.783648,0.008096,0.004928,0.029856,0.09712,0.09824,7.06566,0.114688
+777,88.086,11.3525,8.71603,0.069664,0.81712,0.008192,0.005728,0.029088,0.09984,0.100544,7.47104,0.114816
+778,89.6516,11.1543,9.19581,0.067936,0.825248,0.008192,0.006144,0.028672,0.098304,0.098432,7.94992,0.11296
+779,95.997,10.417,8.288,0.070976,0.793152,0.008032,0.005664,0.029184,0.096704,0.098368,7.07165,0.114272
+780,91.9871,10.8711,8.81232,0.067744,0.904928,0.007552,0.005024,0.028672,0.098304,0.10624,7.47955,0.114304
+781,86.4427,11.5684,9.54982,0.07088,0.797024,0.006624,0.006112,0.028672,0.098336,0.098176,8.32944,0.11456
+782,89.6045,11.1602,9.05619,0.06928,1.56067,0.00752,0.005024,0.028672,0.100064,0.098592,7.0711,0.115264
+783,90.6435,11.0322,8.82688,0.069632,0.940032,0.007776,0.0056,0.028896,0.096992,0.098304,7.46496,0.114688
+784,91.6495,10.9111,8.30621,0.070688,0.81376,0.00816,0.005568,0.029056,0.0968,0.098432,7.06954,0.114208
+785,92.5692,10.8027,8.4136,0.06976,0.911648,0.008224,0.006048,0.028736,0.097856,0.098784,7.07376,0.118784
+786,90.0061,11.1104,8.73754,0.068352,0.854016,0.008192,0.005792,0.028832,0.09824,0.096512,7.46483,0.112768
+787,92.0615,10.8623,8.79818,0.069632,1.03014,0.024576,0.006144,0.032192,0.096832,0.33792,7.08323,0.117504
+788,95.6473,10.4551,8.31283,0.069632,0.819168,0.008224,0.00592,0.028896,0.098208,0.097952,7.07014,0.114688
+789,90.9737,10.9922,8.7167,0.069248,0.826176,0.00816,0.006144,0.02992,0.098304,0.098912,7.46317,0.116672
+790,85.0852,11.7529,9.17501,0.069312,0.825568,0.007488,0.00512,0.028672,0.098304,0.098304,7.92781,0.114432
+791,90.4514,11.0557,8.71834,0.069664,0.8376,0.008224,0.006048,0.028736,0.096256,0.098304,7.46086,0.11264
+792,84.4188,11.8457,9.70211,0.069664,0.923936,0.008352,0.005632,0.037664,0.099392,0.097344,8.34474,0.115392
+793,88.1391,11.3457,9.17773,0.068512,0.812384,0.008704,0.005728,0.029024,0.097536,0.098304,7.94474,0.1128
+794,97.654,10.2402,8.29357,0.069632,0.796576,0.008064,0.005568,0.02944,0.099456,0.100768,7.06816,0.115904
+795,89.2764,11.2012,8.75725,0.069664,0.95104,0.009472,0.004864,0.02992,0.097056,0.098304,7.38304,0.113888
+796,87.1638,11.4727,9.18278,0.069408,0.82704,0.008,0.00512,0.028832,0.098112,0.098336,7.93395,0.113984
+797,89.6123,11.1592,8.33629,0.074656,0.833088,0.008064,0.004672,0.030112,0.096896,0.099328,7.07478,0.114688
+798,93.269,10.7217,8.71594,0.069664,0.836928,0.008352,0.005632,0.02912,0.096864,0.098272,7.45782,0.11328
+799,91.4286,10.9375,8.34333,0.069632,0.822272,0.007168,0.005952,0.028896,0.098272,0.099776,7.09485,0.116512
+800,96.304,10.3838,8.29238,0.068928,0.80352,0.008416,0.00592,0.028768,0.09824,0.098272,7.0656,0.11472
+801,84.7893,11.7939,9.56813,0.069184,0.837184,0.007296,0.00592,0.029856,0.098304,0.099168,8.3081,0.11312
+802,88.9738,11.2393,9.07661,0.069344,0.858848,0.008384,0.005952,0.02864,0.09936,0.097248,7.79398,0.114848
+803,93.7557,10.666,8.32106,0.06944,0.82144,0.008224,0.005696,0.029088,0.097568,0.098112,7.07677,0.11472
+804,58.0861,17.2158,8.73267,0.069536,0.860384,0.007616,0.004672,0.030368,0.098656,0.09984,7.44499,0.116608
+805,96.069,10.4092,8.6977,0.071776,0.814368,0.007104,0.006048,0.028864,0.098112,0.098304,7.46045,0.112672
+806,90.0774,11.1016,9.04102,0.069952,1.54256,0.00752,0.005056,0.029856,0.099168,0.098304,7.07357,0.11504
+807,83.313,12.0029,8.29219,0.069152,0.80272,0.008416,0.005632,0.028992,0.0968,0.09792,7.06803,0.114528
+808,85.312,11.7217,8.7783,0.068544,0.870336,0.008032,0.0056,0.029312,0.0984,0.099552,7.48528,0.113248
+809,84.8806,11.7812,9.0112,0.069632,1.5112,0.008288,0.005568,0.02928,0.098208,0.09856,7.07578,0.114688
+810,90.0061,11.1104,8.74762,0.068288,0.83344,0.023552,0.00512,0.029696,0.0984,0.097312,7.46685,0.12496
+811,90.5554,11.043,8.80778,0.069408,0.917728,0.008192,0.005728,0.029088,0.097408,0.0984,7.46781,0.114016
+812,88.3292,11.3213,9.30154,0.06896,0.928416,0.008192,0.006016,0.0288,0.098304,0.098208,7.94634,0.118304
+813,97.3662,10.2705,8.31693,0.069152,0.82,0.009472,0.004896,0.02992,0.098432,0.098304,7.07238,0.114368
+814,90.9414,10.9961,8.79971,0.087648,0.90176,0.008192,0.005984,0.028832,0.098304,0.099456,7.4536,0.115936
+815,89.7144,11.1465,9.16688,0.069568,0.8072,0.008288,0.005728,0.029088,0.097344,0.097216,7.93936,0.113088
+816,97.1353,10.2949,8.30934,0.068576,0.813056,0.008192,0.005632,0.029184,0.098304,0.100256,7.07171,0.114432
+817,89.152,11.2168,8.75315,0.067744,0.851328,0.008256,0.0056,0.02912,0.0968,0.098272,7.47053,0.125504
+818,95.961,10.4209,8.3353,0.0712,0.849376,0.008384,0.004928,0.029728,0.097248,0.098144,7.06269,0.1136
+819,93.5673,10.6875,8.37427,0.069184,0.886912,0.00848,0.0056,0.029248,0.098016,0.098528,7.06358,0.11472
+820,93.2011,10.7295,8.73402,0.071264,0.850112,0.008192,0.005568,0.029152,0.09776,0.09712,7.46086,0.113984
+821,83.9757,11.9082,9.66246,0.06912,0.899584,0.008192,0.006144,0.028672,0.098304,0.098304,8.33914,0.115008
+822,88.1315,11.3467,9.18733,0.069184,0.8216,0.00752,0.004864,0.029856,0.09856,0.097952,7.94515,0.11264
+823,90.2123,11.085,8.76528,0.069344,0.880832,0.008032,0.004608,0.030464,0.097728,0.098848,7.46128,0.114144
+824,9.12428,109.598,8.69786,0.07184,1.19363,0.007648,0.004864,0.03008,0.098912,0.100352,7.07514,0.115392
+825,87.9196,11.374,8.34749,0.069632,0.83968,0.018432,0.006144,0.028672,0.098208,0.097536,7.07466,0.114528
+826,90.3397,11.0693,8.7633,0.081888,0.87456,0.009184,0.00512,0.029728,0.097248,0.098304,7.45424,0.113024
+827,87.5363,11.4238,9.23376,0.068992,0.856992,0.008128,0.00576,0.029056,0.098304,0.098304,7.95238,0.11584
+828,96.5855,10.3535,8.26381,0.069152,0.77216,0.00672,0.006112,0.028672,0.098304,0.098336,7.06966,0.114688
+829,88.3596,11.3174,8.75312,0.06944,0.858432,0.008192,0.006112,0.028704,0.099456,0.09904,7.46717,0.116576
+830,87.9952,11.3643,9.21962,0.069632,0.83968,0.008192,0.005856,0.02896,0.09792,0.097824,7.95859,0.11296
+831,92.1112,10.8564,8.74557,0.06976,0.849888,0.018336,0.006688,0.028736,0.097472,0.098368,7.4633,0.113024
+832,84.4954,11.835,9.23974,0.068608,0.862144,0.008096,0.0056,0.029024,0.09856,0.098176,7.95469,0.114848
+833,91.7809,10.8955,8.39517,0.070016,0.909312,0.008096,0.005632,0.029216,0.09632,0.098304,7.06509,0.113184
+834,91.5512,10.9229,8.68762,0.069632,0.80896,0.008224,0.006112,0.028672,0.098304,0.100096,7.45088,0.116736
+835,87.7088,11.4014,9.21261,0.06944,0.828192,0.008256,0.005792,0.029024,0.096256,0.09936,7.96157,0.11472
+836,93.9536,10.6436,8.66816,0.068608,0.79232,0.008096,0.0056,0.029472,0.097824,0.09888,7.45453,0.112832
+837,82.8077,12.0762,9.61104,0.06912,0.859936,0.00832,0.004896,0.030176,0.097984,0.098624,8.32566,0.11632
+838,89.8876,11.125,9.16256,0.06928,0.788832,0.00928,0.005056,0.029792,0.097184,0.099552,7.95014,0.11344
+839,97.9623,10.208,8.27722,0.069792,0.774176,0.008192,0.005696,0.029088,0.098304,0.098336,7.07581,0.117824
+840,91.8221,10.8906,8.69661,0.068512,0.820512,0.006816,0.006144,0.028672,0.098048,0.09856,7.45651,0.112832
+841,86.4062,11.5732,8.34467,0.07168,0.852,0.008192,0.006112,0.028672,0.098208,0.0984,7.06752,0.113888
+842,96.4491,10.3682,8.43981,0.069632,0.952064,0.008288,0.005632,0.029248,0.0984,0.098336,7.06352,0.114688
+843,92.6278,10.7959,8.69098,0.069632,0.816928,0.008224,0.0056,0.02912,0.09808,0.098336,7.4511,0.113952
+844,92.762,10.7803,8.52582,0.075808,1.02192,0.011712,0.004704,0.032736,0.09824,0.098368,7.0656,0.116736
+845,96.8688,10.3232,8.29606,0.069408,0.806688,0.008352,0.005632,0.028992,0.097824,0.097216,7.06765,0.114304
+846,84.5024,11.834,9.6312,0.067008,0.86896,0.009312,0.004992,0.028768,0.099232,0.098496,8.33818,0.116256
+847,88.0784,11.3535,9.24262,0.069312,0.872032,0.006912,0.006048,0.028736,0.098304,0.098304,7.94989,0.113088
+848,97.1629,10.292,8.38646,0.069632,0.894976,0.008128,0.0056,0.029216,0.098272,0.09792,7.06816,0.11456
+849,92.6026,10.7988,8.74752,0.069504,0.85488,0.008192,0.006144,0.028704,0.101856,0.10496,7.45891,0.114368
+850,87.5513,11.4219,9.1689,0.069632,0.804032,0.008352,0.004768,0.029984,0.098272,0.097216,7.94384,0.1128
+851,94.0485,10.6328,8.3,0.069632,0.802816,0.008224,0.006112,0.028672,0.098336,0.099584,7.07043,0.116192
+852,91.1194,10.9746,8.7912,0.069216,0.907808,0.007872,0.0056,0.02912,0.096704,0.098272,7.46291,0.113696
+853,90.2203,11.084,8.32019,0.070752,0.817984,0.008096,0.0056,0.029312,0.099552,0.09872,7.07568,0.114496
+854,95.0613,10.5195,8.29853,0.067648,0.800704,0.008192,0.006144,0.028672,0.098112,0.098496,7.07782,0.112736
+855,93.1332,10.7373,8.67738,0.069664,0.803904,0.008352,0.004864,0.030016,0.097088,0.099904,7.45094,0.11264
+856,88.7502,11.2676,9.15366,0.067808,0.780064,0.008192,0.006144,0.028672,0.098272,0.09776,7.95254,0.114208
+857,95.943,10.4229,8.28355,0.069216,0.782048,0.00832,0.004672,0.030048,0.09696,0.098304,7.07994,0.114048
+858,92.4605,10.8154,8.75728,0.06768,0.8744,0.008064,0.005568,0.029184,0.097952,0.09696,7.46285,0.114624
+859,88.9893,11.2373,9.15843,0.067712,0.789824,0.006848,0.006144,0.028672,0.097472,0.09712,7.95155,0.113088
+860,95.4512,10.4766,8.28045,0.069888,0.788608,0.007744,0.004768,0.02992,0.097024,0.100352,7.06547,0.116672
+861,84.5582,11.8262,8.75626,0.069312,0.876864,0.008288,0.006048,0.028672,0.09824,0.098144,7.45699,0.113696
+862,95.8622,10.4316,8.33949,0.073568,0.84336,0.008064,0.004832,0.029888,0.097056,0.098304,7.0697,0.11472
+863,94.526,10.5791,8.2624,0.068352,0.76304,0.008032,0.00512,0.02976,0.097216,0.098304,7.07581,0.116768
+864,90.5794,11.04,8.79398,0.06976,0.913216,0.008352,0.0056,0.029216,0.097408,0.098624,7.45856,0.113248
+865,83.5032,11.9756,9.69728,0.069088,0.956416,0.008096,0.004768,0.029888,0.097056,0.098304,8.31693,0.116736
+866,90.1805,11.0889,9.18845,0.069632,0.801792,0.019136,0.005568,0.029184,0.096672,0.098272,7.95427,0.11392
+867,90.5073,11.0488,8.66918,0.071424,0.780192,0.008352,0.0056,0.029248,0.097536,0.098624,7.46557,0.11264
+868,87.7764,11.3926,9.26144,0.073824,0.864544,0.008192,0.006144,0.028672,0.105504,0.104928,7.95494,0.114688
+869,87.1045,11.4805,8.27802,0.069632,0.78432,0.008096,0.0056,0.029088,0.097568,0.097312,7.07171,0.114688
+870,74.5703,13.4102,9.25507,0.06896,1.76592,0.00816,0.0056,0.031552,0.098304,0.098304,7.06326,0.115008
+871,84.266,11.8672,9.32214,0.065568,0.823264,0.007968,0.0056,0.029152,0.097984,0.09856,8.07744,0.116608
+872,89.0977,11.2236,8.48918,0.067808,0.96256,0.007712,0.005664,0.029248,0.09664,0.098304,7.10246,0.118784
+873,93.6443,10.6787,8.39328,0.06816,0.90032,0.00832,0.004768,0.030016,0.096896,0.097568,7.07379,0.11344
+874,80.4842,12.4248,9.83859,0.075808,0.937952,0.008224,0.005792,0.028992,0.098304,0.098304,8.47056,0.114656
+875,76.6926,13.0391,9.95107,0.069632,1.04515,0.009216,0.00512,0.032192,0.096928,0.09824,8.47776,0.116832
+876,91.0303,10.9854,8.38672,0.06896,0.889632,0.008192,0.006144,0.028672,0.098304,0.098336,7.07555,0.112928
+877,89.9034,11.123,8.72246,0.069632,0.831488,0.008192,0.005824,0.028992,0.098336,0.100128,7.4672,0.112672
+878,87.4466,11.4355,8.97638,0.068768,1.05331,0.007488,0.017312,0.03008,0.10304,0.106496,7.4768,0.113088
+879,85.071,11.7549,8.44285,0.068576,0.946144,0.008192,0.005792,0.028992,0.097664,0.098272,7.07587,0.113344
+880,93.286,10.7197,8.37446,0.06928,0.853568,0.008576,0.005568,0.02928,0.098688,0.100096,7.08838,0.121024
+881,51.0367,19.5938,15.8047,0.065568,2.59507,0.00864,0.006016,0.030624,0.10672,0.874496,12.0012,0.116384
+882,83.8176,11.9307,8.91158,0.06832,1.01546,0.008448,0.0056,0.028928,0.098208,0.098304,7.47363,0.114688
+883,89.6908,11.1494,8.35584,0.070752,0.865184,0.008096,0.005632,0.029056,0.09648,0.098272,7.06768,0.114688
+884,80.1754,12.4727,8.96234,0.069216,1.06154,0.008192,0.0056,0.029216,0.098304,0.098304,7.4784,0.113568
+885,78.6422,12.7158,9.1361,0.07088,1.61027,0.008224,0.0056,0.031488,0.098304,0.099808,7.09686,0.114656
+886,94.9379,10.5332,8.34518,0.06928,0.854208,0.008064,0.0056,0.029376,0.097984,0.098016,7.06835,0.114304
+887,49.8807,20.0479,17.2888,0.066944,2.30701,0.008224,0.006112,0.031904,0.098208,0.93616,13.7182,0.116
+888,80.5475,12.415,9.57661,0.06896,1.06768,0.008192,0.006048,0.028768,0.098304,0.098304,8.08515,0.1152
+889,85.7478,11.6621,8.36141,0.069632,0.856064,0.008192,0.006048,0.0288,0.098272,0.098304,7.0697,0.1264
+890,81.8153,12.2227,8.95818,0.069536,1.07286,0.008352,0.0056,0.028992,0.098176,0.10048,7.46138,0.1128
+891,78.4073,12.7539,9.39626,0.069952,1.89066,0.008192,0.005792,0.029024,0.09776,0.097952,7.08285,0.11408
+892,89.9113,11.1221,8.4513,0.071712,0.9536,0.008224,0.0048,0.029856,0.09712,0.098304,7.07306,0.114624
+893,82.6873,12.0938,8.85389,0.069792,0.974848,0.007584,0.004928,0.02992,0.097056,0.097952,7.45917,0.11264
+894,93.0233,10.75,8.3929,0.070016,0.894944,0.008192,0.005568,0.029152,0.098336,0.098368,7.07379,0.114528
+895,86.2171,11.5986,8.37437,0.069376,0.874848,0.008192,0.00608,0.028736,0.097696,0.098208,7.07654,0.114688
+896,64.2651,15.5605,8.84822,0.068448,1.03219,0.008416,0.00592,0.028672,0.098304,0.099936,7.39331,0.113024
+897,81.7108,12.2383,8.45488,0.06832,0.948224,0.008192,0.005856,0.02896,0.104544,0.101664,7.07443,0.114688
+898,47.7478,20.9434,16.9349,0.069472,0.984544,0.00688,0.006144,0.028672,0.098304,0.098304,15.5232,0.119392
+899,82.4742,12.125,8.63866,0.06912,1.12502,0.009824,0.0056,0.029312,0.096704,0.108416,7.07994,0.11472
+900,81.4508,12.2773,8.49306,0.069632,0.99664,0.008576,0.0056,0.028896,0.096928,0.0984,7.0737,0.114688
+901,89.8009,11.1357,8.87194,0.070912,0.969472,0.009536,0.004832,0.029888,0.097056,0.098336,7.47661,0.115296
+902,84.0584,11.8965,8.85558,0.069408,0.973024,0.009216,0.005152,0.029856,0.098208,0.097184,7.4599,0.113632
+903,84.6841,11.8086,8.40522,0.069536,0.91168,0.008192,0.00576,0.029056,0.097888,0.0984,7.07206,0.11264
+904,84.093,11.8916,8.41741,0.069632,0.910688,0.008288,0.004672,0.030528,0.098496,0.100384,7.07901,0.115712
+905,49.9707,20.0117,17.0394,0.069376,0.983808,0.008032,0.005632,0.02944,0.104256,0.479392,15.2406,0.118848
+906,80.5221,12.4189,8.62246,0.069472,1.1143,0.006592,0.007744,0.02912,0.097888,0.098016,7.0745,0.124832
+907,85.241,11.7314,8.69274,0.068608,1.20627,0.007808,0.0056,0.029312,0.096544,0.098304,7.06755,0.112736
+908,78.0666,12.8096,9.11974,0.069632,1.20218,0.008224,0.006112,0.028672,0.10016,0.098496,7.49274,0.113536
+909,82.1303,12.1758,8.51117,0.069632,1.00826,0.008192,0.006016,0.0288,0.098304,0.09936,7.07683,0.115776
+910,85.3689,11.7139,8.72518,0.068416,0.92272,0.007072,0.005952,0.028864,0.098304,0.098048,7.38042,0.115392
+911,74.8866,13.3535,8.5545,0.069632,1.036,0.00848,0.006144,0.028672,0.097792,0.098592,7.0945,0.114688
+912,85.2126,11.7354,8.39885,0.069344,0.905376,0.008256,0.0056,0.029088,0.098144,0.098016,7.07142,0.1136
+913,51.3103,19.4893,16.6749,0.06976,0.846528,0.008192,0.005664,0.029152,0.09728,0.098912,15.4055,0.113984
+914,77.3297,12.9316,8.97018,0.075584,1.06826,0.007168,0.006112,0.028736,0.09824,0.09936,7.47005,0.116672
+915,78.162,12.7939,9.48768,0.069312,0.98864,0.007008,0.006048,0.028768,0.096448,0.099424,8.07757,0.114464
+916,84.3354,11.8574,8.49971,0.068096,1.00742,0.008384,0.00608,0.028736,0.098304,0.098304,7.0697,0.114688
+917,75.6949,13.2109,9.00573,0.069664,1.10477,0.008032,0.0056,0.029088,0.096576,0.09984,7.4791,0.113056
+918,86.9196,11.5049,8.47613,0.069728,0.960448,0.008384,0.005632,0.02944,0.098304,0.098336,7.09174,0.114112
+919,85.5401,11.6904,8.48922,0.069696,0.995712,0.008192,0.005984,0.028832,0.098304,0.098304,7.06931,0.11488
+920,75.2112,13.2959,8.85946,0.069088,0.971392,0.007456,0.00512,0.028704,0.098304,0.098272,7.46806,0.113056
+921,79.055,12.6494,8.54026,0.069632,1.04448,0.008192,0.005696,0.028992,0.096416,0.099712,7.07389,0.113248
+922,86.545,11.5547,8.42643,0.0704,0.929984,0.007488,0.0048,0.029984,0.098176,0.098336,7.07258,0.114688
+923,54.6104,18.3115,11.3389,0.075232,1.05526,0.008192,0.005952,0.028864,0.096256,0.100192,9.85434,0.114624
+924,80.7507,12.3838,8.4352,0.067808,0.945696,0.008256,0.005664,0.029152,0.098688,0.098336,7.0656,0.116
+925,80.7762,12.3799,8.41213,0.069888,0.90992,0.008192,0.006016,0.0288,0.098304,0.098144,7.07968,0.113184
+926,79.3184,12.6074,9.0432,0.070944,1.15283,0.007264,0.005952,0.028672,0.098304,0.098304,7.46666,0.114272
+927,87.6862,11.4043,8.448,0.069152,0.94256,0.008192,0.005632,0.02912,0.097792,0.098272,7.0823,0.114976
+928,82.3482,12.1436,8.70672,0.070304,0.827744,0.008128,0.006144,0.028672,0.098304,0.098304,7.45472,0.1144
+929,70.0986,14.2656,8.98928,0.068192,1.07075,0.006496,0.006144,0.028704,0.098272,0.098016,7.49984,0.112864
+930,52.333,19.1084,15.5645,0.069376,1.08822,0.009504,0.004832,0.029728,0.09728,0.098272,14.0534,0.113952
+931,77.564,12.8926,9.55011,0.070432,1.03398,0.008352,0.006016,0.028864,0.098304,0.099712,8.09034,0.114112
+932,77.6817,12.873,8.9641,0.069664,1.0689,0.008224,0.005568,0.029344,0.100064,0.098688,7.47094,0.112704
+933,88.1239,11.3477,8.5599,0.068928,1.07165,0.007488,0.00496,0.029984,0.096992,0.098368,7.06534,0.116192
+934,90.4194,11.0596,8.35046,0.068352,0.847872,0.00816,0.006144,0.028704,0.097792,0.098144,7.08189,0.113408
+935,77.9063,12.8359,8.71997,0.069216,0.829824,0.007488,0.004864,0.02992,0.097024,0.09936,7.46749,0.114784
+936,85.1064,11.75,8.48154,0.069344,0.992256,0.009312,0.005056,0.029664,0.097312,0.098272,7.0656,0.11472
+937,54.1627,18.4629,15.7204,0.06896,0.790816,0.008224,0.0056,0.029248,0.096608,0.098304,14.5076,0.115136
+938,89.0435,11.2305,8.85747,0.07008,0.968704,0.008096,0.0056,0.029216,0.097888,0.098304,7.46506,0.114528
+939,86.7356,11.5293,9.32659,0.069632,0.827392,0.007616,0.004704,0.029984,0.096992,0.10032,8.07526,0.114688
+940,92.6529,10.793,8.39885,0.06944,0.907456,0.008192,0.006144,0.028704,0.098272,0.09952,7.06752,0.1136
+941,84.9581,11.7705,8.7817,0.068192,0.892864,0.008256,0.005696,0.029056,0.09808,0.098592,7.46496,0.116
+942,96.54,10.3584,8.31002,0.069184,0.813504,0.009312,0.005024,0.02976,0.097216,0.098304,7.07357,0.114144
+943,92.9979,10.7529,8.30077,0.069184,0.803488,0.008192,0.00592,0.028896,0.098336,0.100096,7.07197,0.114688
+944,85.9637,11.6328,8.83514,0.067712,0.952256,0.007872,0.005696,0.02944,0.098304,0.098336,7.46083,0.114688
+945,54.3294,18.4062,16.2413,0.068384,0.806304,0.008352,0.0056,0.029248,0.096672,0.099424,15.0124,0.114976
+946,94.7096,10.5586,8.36694,0.068448,0.88064,0.007744,0.005632,0.029184,0.098752,0.099424,7.06038,0.116736
+947,89.4011,11.1855,8.76342,0.069248,0.863776,0.00736,0.005792,0.028672,0.098304,0.098336,7.47926,0.112672
+948,78.8299,12.6855,9.50886,0.070688,0.99632,0.008192,0.005984,0.028832,0.098304,0.098304,8.08925,0.112992
+949,94.5347,10.5781,8.32826,0.069632,0.826688,0.008096,0.004896,0.029888,0.09712,0.098368,7.07779,0.115776
+950,89.1986,11.2109,8.80989,0.069632,0.923648,0.009248,0.005088,0.029824,0.097184,0.100192,7.46099,0.11408
+951,94.7622,10.5527,8.3713,0.069664,0.87856,0.008192,0.006144,0.028736,0.09824,0.09792,7.06803,0.115808
+952,85.0498,11.7578,8.66509,0.069632,1.14282,0.020128,0.00608,0.029056,0.118304,0.098784,7.06557,0.11472
+953,81.2827,12.3027,8.50739,0.069184,1.00992,0.008288,0.0056,0.029184,0.0976,0.097088,7.07584,0.114688
+954,58.5277,17.0859,14.425,0.06848,0.8824,0.00848,0.00608,0.028736,0.098304,0.099776,13.0873,0.145408
+955,91.8303,10.8896,8.44198,0.071648,0.891392,0.00752,0.005088,0.02976,0.097216,0.099488,7.12566,0.114208
+956,82.0842,12.1826,8.77782,0.07008,0.901216,0.008128,0.0056,0.029056,0.098176,0.098624,7.45373,0.113216
+957,84.6911,11.8076,9.44336,0.069664,0.954272,0.00816,0.0056,0.029344,0.096256,0.1,8.06538,0.114688
+958,93.7643,10.665,8.35792,0.069632,0.851968,0.008192,0.006144,0.028672,0.098304,0.098304,7.08198,0.11472
+959,89.7852,11.1377,8.90301,0.069984,1.01174,0.00816,0.005888,0.02896,0.098272,0.098304,7.46906,0.11264
+960,94.0571,10.6318,8.34765,0.0696,0.835808,0.008192,0.006144,0.029856,0.09712,0.101472,7.08262,0.116832
+961,91.6823,10.9072,8.34688,0.071232,0.852384,0.008064,0.005568,0.028992,0.096672,0.09824,7.07181,0.11392
+962,87.3199,11.4521,8.7911,0.069472,0.899232,0.008128,0.0056,0.029184,0.09824,0.098464,7.4681,0.114688
+963,82.2424,12.1592,8.52291,0.069728,1.01776,0.008192,0.006144,0.028672,0.098304,0.098304,7.06944,0.126368
+964,74.8046,13.3682,10.5144,0.070816,0.852864,0.00816,0.006016,0.0288,0.097792,0.09872,8.42058,0.930688
+965,66.9587,14.9346,9.7792,0.069472,0.895008,0.008064,0.0056,0.029504,0.097664,0.09824,8.46096,0.114688
+966,88.4512,11.3057,8.33309,0.068224,0.841472,0.008064,0.0056,0.029344,0.097952,0.098464,7.07002,0.113952
+967,86.9418,11.502,8.41117,0.069856,0.905504,0.008192,0.005952,0.028832,0.098368,0.10032,7.07789,0.116256
+968,91.8715,10.8848,8.67306,0.069344,0.796864,0.008032,0.0056,0.029152,0.096608,0.098304,7.45472,0.114432
+969,88.8966,11.249,8.33808,0.069856,0.84224,0.007488,0.005088,0.029728,0.09712,0.097984,7.07424,0.114336
+970,92.8882,10.7656,8.35997,0.0688,0.846656,0.008192,0.006144,0.028672,0.098304,0.098304,7.08813,0.116768
+971,87.6712,11.4062,8.77235,0.068288,0.875584,0.008288,0.00496,0.029696,0.09728,0.098304,7.47677,0.113184
+972,93.354,10.7119,8.33155,0.068896,0.831648,0.008128,0.005024,0.029856,0.0984,0.100512,7.07235,0.116736
+973,80.4273,12.4336,8.8577,0.068256,0.954016,0.00832,0.005792,0.029152,0.098016,0.0968,7.48298,0.114368
+974,31.5815,31.6641,15.7307,0.069632,0.837056,0.008352,0.0056,0.02928,0.09824,0.098656,14.4712,0.11264
+975,81.1089,12.3291,8.4521,0.071552,0.950432,0.00816,0.00592,0.028896,0.098304,0.099488,7.07226,0.117088
+976,80.8081,12.375,8.98253,0.06912,1.09747,0.007296,0.006016,0.030432,0.098464,0.099936,7.45933,0.114464
+977,86.7797,11.5234,8.3984,0.069216,0.895392,0.007936,0.0056,0.029088,0.096704,0.09824,7.08198,0.11424
+978,93.7729,10.6641,8.32768,0.069568,0.837376,0.008384,0.004736,0.030144,0.098624,0.09856,7.06355,0.116736
+979,87.0156,11.4922,8.36202,0.069664,0.870016,0.008128,0.005568,0.029088,0.096832,0.099808,7.06819,0.11472
+980,83.7833,11.9355,8.41875,0.069568,0.917312,0.008128,0.0056,0.029376,0.097792,0.096864,7.07994,0.114176
+981,89.0745,11.2266,8.82077,0.069632,0.93136,0.008096,0.004672,0.03008,0.098624,0.100672,7.46291,0.11472
+982,54.7447,18.2666,10.6783,0.071328,1.78202,0.008096,0.0056,0.031456,0.097952,0.09808,8.45827,0.125472
+983,86.8606,11.5127,8.38835,0.069376,0.89728,0.00832,0.006016,0.028736,0.097856,0.098112,7.06413,0.118528
+984,95.4512,10.4766,8.29392,0.069632,0.79872,0.008288,0.006048,0.028704,0.098272,0.098336,7.0712,0.11472
+985,88.3825,11.3145,8.70195,0.069632,0.813088,0.00816,0.006144,0.028672,0.098048,0.09856,7.46506,0.114592
+986,85.5258,11.6924,9.30634,0.069824,1.81584,0.008224,0.004832,0.029888,0.09712,0.098272,7.06966,0.112672
+987,92.0201,10.8672,8.44224,0.069408,0.942752,0.008192,0.006144,0.029856,0.10112,0.09824,7.0719,0.114624
+988,90.3158,11.0723,8.74365,0.06976,0.853984,0.006784,0.006144,0.028672,0.098304,0.098304,7.46851,0.113184
+989,85.4615,11.7012,8.47744,0.06944,0.97584,0.008192,0.006144,0.030048,0.098848,0.10048,7.07174,0.116704
+990,96.6494,10.3467,8.29437,0.068544,0.79808,0.008032,0.004864,0.029728,0.09728,0.098304,7.07568,0.113856
+991,58.2017,17.1816,9.82931,0.067744,2.32528,0.011488,0.004896,0.034784,0.098368,0.098304,7.07386,0.114592
+992,83.8794,11.9219,8.4208,0.069824,0.933984,0.008192,0.00608,0.028736,0.098304,0.098304,7.06269,0.114688
+993,92.2606,10.8389,8.48202,0.069632,0.993312,0.00816,0.006144,0.028704,0.098272,0.098304,7.0656,0.113888
+994,88.8349,11.2568,8.82669,0.069088,0.952576,0.008352,0.005568,0.0288,0.098368,0.09872,7.44998,0.115232
+995,88.8426,11.2559,9.16986,0.068608,0.796672,0.00752,0.004768,0.029792,0.097216,0.097888,7.95443,0.11296
+996,96.1773,10.3975,8.33603,0.068224,0.847328,0.00848,0.0056,0.02928,0.098496,0.100352,7.06291,0.11536
+997,84.6981,11.8066,8.74541,0.069472,0.937856,0.008064,0.00496,0.030016,0.097024,0.09824,7.38099,0.118784
+998,90.1805,11.0889,8.42717,0.069376,0.933696,0.008352,0.004672,0.03024,0.098464,0.097952,7.07018,0.11424
+999,69.7453,14.3379,8.59136,0.070976,1.09574,0.008192,0.004736,0.029952,0.096864,0.098464,7.07174,0.114688
+1000,93.0571,10.7461,8.34051,0.06864,0.845792,0.008192,0.005888,0.028928,0.098304,0.098208,7.07184,0.11472
+1001,59.3623,16.8457,10.4432,0.069216,1.60032,0.012288,0.022528,0.055296,0.106304,0.434336,8.02998,0.112896
+1002,94.8939,10.5381,8.47059,0.068768,0.984,0.00816,0.005984,0.028832,0.098304,0.098304,7.06323,0.115008
+1003,79.9126,12.5137,9.88742,0.06896,1.0017,0.008032,0.004864,0.029856,0.09712,0.105632,8.45706,0.114208
+1004,73.1481,13.6709,8.44598,0.069024,0.954976,0.008192,0.006144,0.02992,0.09856,0.098816,7.06694,0.113408
+1005,91.9788,10.8721,8.48435,0.071104,0.993856,0.008192,0.006144,0.028672,0.098304,0.099712,7.06419,0.114176
+1006,83.4352,11.9854,8.78387,0.069472,0.903328,0.008192,0.006048,0.028832,0.099648,0.098144,7.45552,0.114688
+1007,92.2273,10.8428,8.29648,0.069184,0.802976,0.008032,0.005632,0.029024,0.096896,0.098272,7.07178,0.114688
+1008,86.3479,11.5811,8.43776,0.070784,0.936832,0.008192,0.005824,0.028992,0.098304,0.098304,7.07584,0.114688
+1009,52.3839,19.0898,16.6871,0.069248,0.809344,0.008192,0.005792,0.029024,0.096384,0.098176,15.4577,0.113248
+1010,91.9045,10.8809,8.33379,0.068032,0.847872,0.008192,0.006144,0.028672,0.098304,0.098208,7.0648,0.113568
+1011,90.0774,11.1016,8.32163,0.069792,0.823744,0.00816,0.005792,0.0288,0.09856,0.099424,7.07267,0.114688
+1012,80.5475,12.415,8.83226,0.069632,0.93184,0.009248,0.005088,0.030176,0.104256,0.102944,7.46515,0.11392
+1013,89.1831,11.2129,8.42883,0.069568,0.92352,0.00736,0.005088,0.028704,0.098304,0.098336,7.08358,0.114368
+1014,89.6594,11.1533,8.35968,0.069632,0.863776,0.006624,0.006144,0.028704,0.099968,0.098656,7.0697,0.11648
+1015,89.2919,11.1992,8.74643,0.069664,0.870368,0.007616,0.004672,0.03008,0.096928,0.098272,7.45472,0.114112
+1016,89.7144,11.1465,8.4216,0.069664,0.941312,0.006976,0.006112,0.028672,0.098336,0.098272,7.0593,0.11296
+1017,52.2422,19.1416,16.2285,0.06928,0.874848,0.008192,0.006144,0.028672,0.09824,0.09824,14.9296,0.115264
+1018,70.0123,14.2832,10.6743,0.069408,0.962368,0.00656,0.006144,0.031968,0.097056,0.099552,9.288,0.113216
+1019,96.6859,10.3428,8.28646,0.069856,0.792992,0.008192,0.005632,0.029184,0.097504,0.098272,7.07053,0.114304
+1020,90.9252,10.998,8.57018,0.069056,1.08163,0.006592,0.006112,0.028672,0.098304,0.098336,7.06762,0.113856
+1021,88.7195,11.2715,8.82074,0.06928,0.926048,0.009344,0.004992,0.030304,0.104256,0.102272,7.46096,0.11328
+1022,91.1843,10.9668,8.60378,0.068288,1.11936,0.008416,0.004768,0.030016,0.09696,0.098464,7.0633,0.114208
+1023,94.6658,10.5635,8.37814,0.072736,0.87344,0.008192,0.005664,0.029152,0.098304,0.098304,7.07789,0.114464
+1024,88.0557,11.3564,8.72045,0.06768,0.83744,0.008064,0.005536,0.028992,0.098368,0.098784,7.46211,0.113472
+1025,84.5722,11.8242,8.46122,0.070176,0.954784,0.00816,0.006112,0.028704,0.097888,0.097888,7.08403,0.113472
+1026,53.375,18.7354,15.9692,0.068608,0.880416,0.008032,0.0056,0.02928,0.09792,0.098368,14.6661,0.11488
+1027,88.8657,11.2529,8.82227,0.069632,0.935936,0.008192,0.005632,0.029088,0.097696,0.098112,7.46515,0.112832
+1028,86.0794,11.6172,8.52352,0.072864,1.02707,0.008416,0.00592,0.028672,0.098368,0.09824,7.0697,0.114272
+1029,88.2378,11.333,8.43776,0.069376,0.94,0.007616,0.00496,0.029888,0.097088,0.098304,7.07504,0.115488
+1030,90.6917,11.0264,8.76736,0.068192,0.896832,0.008192,0.005632,0.029152,0.09648,0.099424,7.4495,0.113952
+1031,85.4188,11.707,9.02806,0.06944,1.53568,0.008512,0.004736,0.032448,0.098464,0.0984,7.06746,0.112928
+1032,72.2297,13.8447,8.4865,0.069632,0.992928,0.008192,0.005568,0.029472,0.098432,0.100352,7.06563,0.116288
+1033,31.3812,31.8662,8.8887,0.069888,1.01123,0.008384,0.0056,0.02928,0.098176,0.098592,7.45286,0.114688
+1034,85.0922,11.752,8.44595,0.069664,0.950112,0.007488,0.004928,0.029728,0.09728,0.098272,7.07546,0.113024
+1035,85.433,11.7051,8.37632,0.070848,0.869184,0.008192,0.006144,0.029792,0.098528,0.100576,7.07632,0.116736
+1036,47.6456,20.9883,17.8348,0.066368,3.20515,0.008192,0.006144,0.031936,0.099136,0.789568,13.5134,0.114912
+1037,83.5782,11.9648,8.41418,0.068576,0.923648,0.008224,0.005728,0.029056,0.097344,0.098272,7.06835,0.114976
+1038,83.3944,11.9912,8.54557,0.068992,1.0551,0.008096,0.004512,0.03008,0.098208,0.098464,7.06797,0.114144
+1039,85.8988,11.6416,8.91904,0.071488,1.03213,0.008416,0.005632,0.029152,0.09632,0.098304,7.46294,0.114656
+1040,84.0723,11.8945,8.32102,0.069312,0.83184,0.007968,0.005696,0.029312,0.09808,0.097888,7.06608,0.114848
+1041,93.9708,10.6416,8.39251,0.069632,0.905216,0.008192,0.005856,0.02896,0.096288,0.098336,7.06554,0.114496
+1042,82.1303,12.1758,8.55027,0.071392,1.06682,0.008448,0.0056,0.02912,0.09824,0.097984,7.05952,0.113152
+1043,89.8876,11.125,8.38042,0.069632,0.883936,0.008672,0.0056,0.029376,0.097984,0.09792,7.07261,0.114688
+1044,47.9266,20.8652,17.2864,0.069312,0.835008,0.008096,0.005088,0.028672,0.098336,0.098304,16.017,0.126592
+1045,87.3124,11.4531,8.43155,0.070016,0.944384,0.008064,0.0056,0.029216,0.096736,0.098208,7.0656,0.113728
+1046,86.6842,11.5361,8.4649,0.069472,0.970944,0.00688,0.006144,0.028672,0.099712,0.098944,7.06758,0.116544
+1047,85.2126,11.7354,8.84195,0.069408,0.946784,0.008096,0.005632,0.02912,0.096768,0.098304,7.47315,0.114688
+1048,83.4624,11.9814,8.57245,0.069408,1.08512,0.00688,0.005952,0.028672,0.098304,0.098112,7.0655,0.114496
+1049,94.3257,10.6016,8.3263,0.070656,0.829856,0.008352,0.004544,0.028704,0.099968,0.098656,7.07075,0.114816
+1050,77.5112,12.9014,8.78797,0.069632,0.983072,0.00816,0.006016,0.0288,0.097536,0.09824,7.38365,0.112864
+1051,97.3847,10.2686,8.3329,0.070688,0.838272,0.006496,0.006144,0.029696,0.09728,0.098304,7.07174,0.114272
+1052,55.0035,18.1807,10.6602,0.069664,1.41936,0.041216,0.018432,0.032192,0.098272,0.43616,8.4295,0.115424
+1053,91.0222,10.9863,8.41213,0.074144,0.889408,0.009376,0.00496,0.029792,0.097152,0.097984,7.09466,0.114656
+1054,88.5737,11.29,8.7081,0.070112,0.828736,0.008096,0.004928,0.029824,0.098176,0.098624,7.45539,0.114208
+1055,57.6901,17.334,9.09722,0.070816,1.13136,0.01024,0.006144,0.032,0.144128,0.099616,7.48822,0.114688
+1056,83.3333,12,8.54019,0.086016,1.03565,0.008064,0.004896,0.02864,0.098304,0.098336,7.06557,0.11472
+1057,89.6123,11.1592,8.70557,0.069952,0.811008,0.008192,0.006016,0.0288,0.098336,0.099488,7.4673,0.11648
+1058,92.4188,10.8203,8.32058,0.069664,0.819168,0.008352,0.005984,0.028672,0.098048,0.098368,7.07808,0.11424
+1059,87.1193,11.4785,8.86173,0.071328,0.985216,0.008064,0.005568,0.029184,0.096704,0.099296,7.4537,0.112672
+1060,55.3155,18.0781,15.8638,0.069312,0.798816,0.008064,0.005568,0.02944,0.098176,0.09824,14.6426,0.113632
+1061,92.7788,10.7783,8.32323,0.069376,0.827808,0.008224,0.006112,0.028672,0.098304,0.09808,7.06592,0.120736
+1062,91.087,10.9785,8.7433,0.069024,0.862592,0.006624,0.006112,0.028672,0.09968,0.098976,7.45581,0.115808
+1063,82.3482,12.1436,9.3303,0.069312,0.824,0.008192,0.006048,0.028768,0.097824,0.096736,8.08518,0.11424
+1064,93.6357,10.6797,8.41133,0.067872,0.920576,0.008384,0.004928,0.029856,0.097152,0.098304,7.06918,0.115072
+1065,89.6437,11.1553,8.84912,0.0736,0.956544,0.008096,0.0056,0.029312,0.098048,0.099648,7.46387,0.1144
+1066,94.6046,10.5703,8.31888,0.067744,0.831488,0.008192,0.006144,0.028672,0.098336,0.097824,7.06605,0.114432
+1067,92.3604,10.8271,8.34717,0.069312,0.849632,0.008352,0.0048,0.030016,0.098976,0.098336,7.07126,0.11648
+1068,81.5092,12.2686,8.86179,0.069056,0.942784,0.007776,0.005568,0.02928,0.097984,0.104608,7.49184,0.112896
+1069,53.7166,18.6162,16.3543,0.069664,0.808928,0.008192,0.005664,0.029152,0.096384,0.098176,15.1245,0.113696
+1070,94.8499,10.543,8.32749,0.069952,0.80064,0.024192,0.00464,0.030464,0.098528,0.100352,7.08198,0.116736
+1071,89.1675,11.2148,8.70678,0.06832,0.793952,0.008352,0.004608,0.03008,0.096896,0.098304,7.46643,0.13984
+1072,87.6412,11.4102,8.41318,0.071712,0.91952,0.008192,0.006144,0.029696,0.098624,0.098528,7.06608,0.114688
+1073,88.2682,11.3291,8.49978,0.069696,1.00403,0.008224,0.006112,0.029792,0.097184,0.099776,7.07018,0.114784
+1074,80.2256,12.4648,8.91885,0.069504,1.00886,0.00736,0.005888,0.040128,0.097056,0.09952,7.46378,0.126752
+1075,91.7727,10.8965,8.35174,0.069664,0.840672,0.007328,0.005984,0.029792,0.097184,0.10976,7.07808,0.11328
+1076,94.5696,10.5742,8.31734,0.068384,0.830528,0.007296,0.005952,0.030208,0.102912,0.098304,7.05862,0.115136
+1077,77.8175,12.8506,8.55274,0.069376,1.06176,0.008192,0.006144,0.028672,0.097952,0.09824,7.06806,0.114336
+1078,51.793,19.3076,16.7415,0.070528,0.817216,0.008192,0.006144,0.028672,0.098304,0.097952,15.5017,0.1128
+1079,89.5418,11.168,8.6671,0.069664,1.15638,0.006848,0.016384,0.03072,0.098304,0.098432,7.0736,0.116768
+1080,87.965,11.3682,8.76678,0.069664,0.876064,0.008096,0.004672,0.030048,0.098176,0.098496,7.46758,0.113984
+1081,84.1344,11.8857,8.59344,0.071552,1.0999,0.008192,0.006144,0.028672,0.097792,0.09808,7.07018,0.112928
+1082,81.6913,12.2412,8.66794,0.070432,1.1735,0.01792,0.005664,0.02912,0.098848,0.098336,7.05738,0.116736
+1083,79.1712,12.6309,8.91325,0.069408,1.00989,0.008352,0.0056,0.029376,0.09744,0.0992,7.4793,0.114688
+1084,92.8967,10.7646,8.36198,0.06928,0.882112,0.008352,0.004896,0.02992,0.09856,0.09696,7.05894,0.11296
+1085,91.3715,10.9443,8.45168,0.0696,0.964672,0.00816,0.006144,0.028672,0.099584,0.099072,7.05946,0.11632
+1086,87.6337,11.4111,8.7735,0.06928,0.880544,0.006592,0.006144,0.0288,0.098208,0.098304,7.46083,0.1248
+1087,53.3862,18.7314,15.87,0.069664,1.67872,0.008352,0.005664,0.031648,0.098304,0.857696,13.0063,0.1136
+1088,90.9252,10.998,8.46442,0.069696,0.9728,0.008192,0.005632,0.029184,0.098304,0.099744,7.06416,0.116704
+1089,83.9207,11.916,8.5247,0.068512,1.01718,0.006816,0.006144,0.030208,0.096768,0.098304,7.08717,0.1136
+1090,86.545,11.5547,8.41091,0.07536,0.905024,0.00816,0.005024,0.030016,0.098144,0.0984,7.07651,0.114272
+1091,88.681,11.2764,8.73062,0.069632,0.841728,0.009216,0.00512,0.028672,0.098016,0.098592,7.46496,0.114688
+1092,91.7727,10.8965,8.38426,0.067712,0.893984,0.007264,0.006016,0.02976,0.097216,0.098304,7.0697,0.114304
+1093,85.0357,11.7598,8.82259,0.069632,0.927808,0.009408,0.004864,0.030016,0.099008,0.100352,7.46602,0.115488
+1094,91.6249,10.9141,8.42547,0.069472,0.929024,0.008128,0.005088,0.02976,0.097248,0.106464,7.06672,0.113568
+1095,49.5117,20.1973,16.7581,0.069696,0.83072,0.008352,0.004704,0.029856,0.097056,0.098336,15.5054,0.113984
+1096,76.7559,13.0283,9.57098,0.071616,0.825728,0.00832,0.0056,0.02944,0.097568,0.097056,8.32102,0.114624
+1097,90.6355,11.0332,8.42454,0.069664,0.917472,0.008224,0.006016,0.028768,0.09952,0.098336,7.07869,0.117856
+1098,83.0764,12.0371,9.54675,0.069504,0.809088,0.008224,0.00608,0.028704,0.098336,0.09824,8.31446,0.114112
+1099,84.9793,11.7676,8.74762,0.068544,0.864256,0.008352,0.005984,0.028704,0.098144,0.098464,7.46218,0.112992
+1100,91.9375,10.877,9.16384,0.069632,1.28589,0.009728,0.004864,0.0328,0.099744,0.09888,7.44858,0.113728
+1101,81.3861,12.2871,8.50947,0.069632,1.02198,0.008192,0.006144,0.028672,0.097568,0.098688,7.0639,0.114688
+1102,83.7971,11.9336,8.68464,0.069056,0.811584,0.008192,0.005536,0.02928,0.097984,0.098624,7.45011,0.114272
+1103,90.7882,11.0146,8.28858,0.069952,0.782336,0.008224,0.006048,0.028736,0.098304,0.09984,7.07962,0.11552
+1104,90.1091,11.0977,8.76592,0.068576,0.868352,0.008192,0.005856,0.02896,0.097952,0.098656,7.4752,0.114176
+1105,72.8722,13.7227,10.6258,0.068384,0.79872,0.008192,0.005728,0.029088,0.098016,0.09856,9.40755,0.111584
+1106,65.7169,15.2168,9.56826,0.071488,1.02806,0.008416,0.0056,0.031264,0.10448,0.10032,8.10512,0.113504
+1107,91.6003,10.917,8.27958,0.069664,0.774112,0.008192,0.006144,0.028672,0.098048,0.098464,7.08208,0.114208
+1108,71.1803,14.0488,9.99014,0.070848,1.22144,0.008192,0.006112,0.030048,0.098592,0.09872,8.34282,0.113376
+1109,77.7289,12.8652,9.01389,0.070272,1.13459,0.008192,0.006144,0.02992,0.097088,0.098304,7.45654,0.112832
+1110,93.4989,10.6953,8.88947,0.071648,0.99888,0.00672,0.006144,0.028672,0.100192,0.098464,7.46214,0.116608
+1111,96.3765,10.376,8.33104,0.069664,0.8376,0.008192,0.006144,0.028672,0.098304,0.09776,7.07024,0.114464
+1112,81.2054,12.3145,8.41728,0.070976,0.924352,0.008224,0.006112,0.028672,0.09808,0.098208,7.06797,0.114688
+1113,92.0201,10.8672,8.69789,0.069056,0.8168,0.00832,0.00496,0.02864,0.098304,0.098304,7.45882,0.114688
+1114,56.6591,17.6494,15.2535,0.067584,3.07562,0.006624,0.006144,0.032256,0.09808,0.098304,11.7553,0.113632
+1115,86.1083,11.6133,8.5392,0.069248,1.03667,0.008192,0.005984,0.028832,0.099456,0.099232,7.07597,0.115616
+1116,78.842,12.6836,8.8145,0.069376,0.94912,0.008224,0.00608,0.028736,0.098272,0.098336,7.44253,0.113824
+1117,81.6261,12.251,9.348,0.06848,0.845504,0.008416,0.0056,0.029024,0.096544,0.098304,8.08326,0.112864
+1118,89.8482,11.1299,8.56883,0.071392,1.05091,0.008192,0.00576,0.045248,0.098496,0.1024,7.07174,0.114688
+1119,85.064,11.7559,8.91907,0.075776,1.03632,0.00816,0.005824,0.028992,0.099424,0.09904,7.45027,0.115264
+1120,89.6202,11.1582,8.50493,0.069632,1.01722,0.006784,0.006144,0.02992,0.097056,0.098336,7.06557,0.114272
+1121,86.036,11.623,8.88115,0.070976,1.00365,0.00672,0.006176,0.02864,0.097536,0.09872,7.45507,0.113664
+1122,62.907,15.8965,13.3856,0.069088,0.90784,0.00928,0.005024,0.028704,0.098304,0.099488,11.2218,0.946016
+1123,75.0733,13.3203,8.35859,0.072384,0.829408,0.008192,0.005728,0.029088,0.096256,0.098304,7.10598,0.113248
+1124,76.2529,13.1143,8.84346,0.068192,0.974752,0.008256,0.005696,0.02912,0.098336,0.099968,7.44419,0.114944
+1125,48.0526,20.8105,8.73622,0.07168,1.23402,0.008192,0.005024,0.03008,0.098656,0.098624,7.07376,0.116192
+1126,94.6221,10.5684,8.74342,0.069536,0.846368,0.008032,0.005568,0.029344,0.0984,0.098304,7.47475,0.11312
+1127,91.543,10.9238,8.33693,0.069632,0.843776,0.008192,0.00576,0.029056,0.097792,0.098272,7.07024,0.114208
+1128,89.8246,11.1328,8.76134,0.069632,0.888384,0.008096,0.00464,0.030176,0.0968,0.10016,7.44672,0.116736
+1129,93.337,10.7139,8.46208,0.069504,0.9624,0.008192,0.005568,0.028992,0.096896,0.098304,7.07907,0.113152
+1130,55.4713,18.0273,14.7661,0.070816,0.876864,0.008448,0.005632,0.029248,0.098528,0.098464,13.4624,0.115712
+1131,92.4855,10.8125,8.43162,0.07168,0.907168,0.007328,0.005056,0.03072,0.111968,0.098976,7.07789,0.120832
+1132,87.6938,11.4033,8.86576,0.070112,0.986592,0.008064,0.004768,0.029856,0.09824,0.098272,7.45683,0.113024
+1133,85.071,11.7549,9.45939,0.075648,0.943776,0.008192,0.00576,0.029024,0.098336,0.098528,8.08371,0.116416
+1134,56.9047,17.5732,8.81386,0.069152,0.93232,0.008192,0.006144,0.03072,0.100352,0.098336,7.45469,0.113952
+1135,81.2505,12.3076,8.48182,0.073248,0.97328,0.008192,0.005824,0.028992,0.098304,0.098016,7.08202,0.113952
+1136,86.6475,11.541,8.73472,0.066944,0.872448,0.006816,0.006112,0.028672,0.098336,0.098272,7.44042,0.116704
+1137,89.3543,11.1914,8.32762,0.06848,0.815104,0.008256,0.00608,0.028672,0.09824,0.0976,7.08998,0.1152
+1138,85.6689,11.6729,8.792,0.069696,0.917408,0.008064,0.0056,0.029184,0.097888,0.098496,7.45126,0.1144
+1139,72.9137,13.7148,10.5677,0.075776,0.811008,0.008224,0.00576,0.029024,0.097792,0.098848,9.32992,0.111328
+1140,73.5579,13.5947,8.43722,0.070688,0.913792,0.006752,0.006144,0.028672,0.097984,0.098624,7.09965,0.114912
+1141,86.5011,11.5605,9.28246,0.069664,0.989632,0.008256,0.0056,0.0296,0.098304,0.098304,7.45427,0.528832
+1142,96.2587,10.3887,8.29674,0.06912,0.803616,0.008,0.005632,0.029152,0.097696,0.0984,7.07043,0.114688
+1143,92.6361,10.7949,8.3479,0.068896,0.85424,0.008448,0.005696,0.029344,0.098592,0.098304,7.06765,0.116736
+1144,77.0562,12.9775,8.74854,0.069536,0.87664,0.008096,0.005568,0.029344,0.097952,0.098336,7.44826,0.114816
+1145,82.1566,12.1719,8.7799,0.068768,0.899552,0.008128,0.004704,0.029856,0.097088,0.09936,7.45885,0.1136
+1146,89.0203,11.2334,8.69264,0.068544,0.821216,0.008192,0.00608,0.028736,0.098304,0.101984,7.44285,0.116736
+1147,86.4281,11.5703,8.27885,0.068416,0.794496,0.008096,0.005568,0.029088,0.09776,0.09728,7.06541,0.112736
+1148,87.7689,11.3936,8.94621,0.069152,1.05504,0.00832,0.005888,0.02896,0.097952,0.09872,7.4695,0.112672
+1149,88.7271,11.2705,8.32291,0.069632,0.8264,0.008416,0.004864,0.030112,0.098912,0.100352,7.06765,0.116576
+1150,50.7257,19.7139,16.3726,0.06848,0.876576,0.008192,0.006112,0.028672,0.09808,0.09856,15.0732,0.114688
+1151,76.7846,13.0234,8.38659,0.069664,0.892064,0.008096,0.005024,0.029824,0.097152,0.099328,7.07078,0.114656
+1152,87.5139,11.4268,8.81261,0.069152,0.93856,0.00816,0.005664,0.029088,0.098112,0.098432,7.45075,0.114688
+1153,91.5021,10.9287,8.42973,0.069792,0.92368,0.008192,0.006112,0.029696,0.097376,0.099616,7.07853,0.116736
+1154,94.8412,10.5439,8.27299,0.06944,0.786624,0.008192,0.006144,0.028672,0.098304,0.098208,7.06333,0.11408
+1155,81.3667,12.29,8.84122,0.0712,0.948704,0.008192,0.00576,0.029056,0.098208,0.098432,7.46902,0.11264
+1156,88.4742,11.3027,8.3231,0.069408,0.837472,0.008256,0.005568,0.029248,0.098496,0.098464,7.06147,0.11472
+1157,46.7794,21.377,17.7695,0.068608,0.8704,0.008192,0.00608,0.028736,0.09792,0.098112,16.4783,0.113088
+1158,87.6787,11.4053,8.40691,0.068768,0.92048,0.008192,0.006144,0.028672,0.098304,0.098176,7.06368,0.114496
+1159,81.5481,12.2627,9.0153,0.071104,1.14131,0.008192,0.006112,0.028704,0.097728,0.098304,7.4505,0.113344
+1160,83.2723,12.0088,9.40934,0.069824,0.888736,0.008768,0.0056,0.02928,0.098368,0.101728,8.09232,0.11472
+1161,92.9388,10.7598,8.27411,0.069088,0.793312,0.008192,0.0056,0.029216,0.096256,0.098336,7.05942,0.114688
+1162,94.4824,10.584,8.30832,0.071648,0.810784,0.008384,0.005632,0.029056,0.096544,0.09824,7.07341,0.114624
+1163,88.6427,11.2812,8.80026,0.068512,0.910976,0.008032,0.00464,0.029888,0.097088,0.10448,7.46288,0.11376
+1164,82.0053,12.1943,8.78182,0.06944,0.911552,0.00816,0.0056,0.02896,0.097952,0.098496,7.44698,0.114688
+1165,90.2362,11.082,8.41693,0.070016,0.923648,0.007808,0.0056,0.02896,0.09872,0.098208,7.068,0.115968
+1166,87.4317,11.4375,8.78077,0.068576,0.899072,0.008192,0.005984,0.028832,0.09808,0.102624,7.45674,0.112672
+1167,59.1668,16.9014,10.9658,0.068416,2.74019,0.011904,0.0056,0.033344,0.098656,0.356352,7.53837,0.11296
+1168,82.5008,12.1211,9.07853,0.06896,1.19258,0.008224,0.005696,0.02912,0.097888,0.09872,7.4624,0.114944
+1169,88.4971,11.2998,8.39459,0.07168,0.89472,0.008448,0.005536,0.02912,0.097536,0.097216,7.06538,0.12496
+1170,87.3348,11.4502,8.61587,0.069632,1.12026,0.008224,0.005696,0.029024,0.098176,0.098368,7.07187,0.114624
+1171,87.8518,11.3828,8.79002,0.069632,0.913408,0.008224,0.005856,0.028928,0.097728,0.098016,7.45466,0.113568
+1172,87.4392,11.4365,8.35747,0.069504,0.86848,0.008,0.0056,0.028928,0.09824,0.098592,7.06547,0.114656
+1173,85.1772,11.7402,8.97536,0.07024,1.08176,0.008192,0.00592,0.028896,0.097888,0.09872,7.4711,0.11264
+1174,55.8921,17.8916,16.246,0.06944,0.823488,0.008192,0.005792,0.029024,0.098272,0.098336,14.9967,0.116832
+1175,78.9758,12.6621,9.84435,0.069632,0.943872,0.00832,0.0056,0.029088,0.096608,0.09824,8.46758,0.125408
+1176,83.4828,11.9785,8.29238,0.069632,0.79168,0.00848,0.004704,0.030016,0.09696,0.098304,7.07789,0.11472
+1177,79.055,12.6494,9.63654,0.068384,0.888768,0.007648,0.00464,0.030016,0.098144,0.099136,8.32512,0.114688
+1178,88.2987,11.3252,8.88355,0.068928,0.987904,0.008224,0.007168,0.030848,0.105088,0.09856,7.46291,0.11392
+1179,93.6871,10.6738,8.42243,0.0696,0.91888,0.008832,0.005568,0.029216,0.09776,0.098944,7.07994,0.113696
+1180,90.9737,10.9922,8.74086,0.075744,0.839712,0.008192,0.006016,0.029824,0.098784,0.10064,7.46726,0.114688
+1181,85.1984,11.7373,8.3704,0.067776,0.872448,0.008192,0.016384,0.030464,0.097568,0.098528,7.06637,0.112672
+1182,89.4167,11.1836,8.71014,0.069632,0.826624,0.00832,0.004736,0.029952,0.097184,0.09968,7.46096,0.113056
+1183,53.1561,18.8125,15.9519,0.069504,1.21664,0.008192,0.005984,0.0328,0.098272,0.845056,13.562,0.113504
+1184,75.9644,13.1641,9.69728,0.069632,0.835584,0.007872,0.005632,0.029056,0.09808,0.098176,8.43856,0.114688
+1185,80.9998,12.3457,9.67475,0.06928,0.917472,0.008032,0.004672,0.03008,0.096864,0.098304,8.33734,0.112704
+1186,84.2937,11.8633,8.3591,0.07072,0.872928,0.006656,0.006112,0.029728,0.097248,0.098304,7.06355,0.113856
+1187,87.484,11.4307,8.89411,0.075776,1.00736,0.007488,0.005056,0.030208,0.097792,0.098368,7.45571,0.116352
+1188,89.6987,11.1484,8.30874,0.06912,0.820768,0.007136,0.005952,0.028864,0.098272,0.098304,7.06688,0.11344
+1189,87.2975,11.4551,8.83498,0.07104,0.955008,0.008224,0.006112,0.029696,0.097312,0.098304,7.45622,0.113056
+1190,90.6034,11.0371,8.35619,0.067936,0.867552,0.008512,0.004608,0.030592,0.098144,0.09856,7.0656,0.114688
+1191,49.8297,20.0684,17.0798,0.069536,2.97203,0.00752,0.0048,0.032768,0.097632,0.098272,13.6834,0.113824
+1192,89.3075,11.1973,8.34851,0.068416,0.864096,0.008032,0.005664,0.029056,0.098048,0.098624,7.06326,0.113312
+1193,81.1475,12.3232,8.30054,0.069632,0.80272,0.008288,0.005696,0.02912,0.096256,0.099392,7.07424,0.1152
+1194,91.6577,10.9102,8.33328,0.069632,0.84912,0.008064,0.005024,0.028672,0.098336,0.099392,7.06038,0.114656
+1195,101.206,9.88086,8.29206,0.069696,0.798016,0.008352,0.004608,0.030176,0.098272,0.098528,7.07002,0.1144
+1196,89.6987,11.1484,8.29005,0.0688,0.785408,0.00816,0.005792,0.029024,0.098304,0.098336,7.07171,0.124512
+1197,93.8761,10.6523,8.31286,0.071264,0.819296,0.00752,0.005088,0.028704,0.098272,0.098304,7.07142,0.112992
+1198,98.8894,10.1123,8.4065,0.069472,0.913568,0.008192,0.005792,0.029056,0.098272,0.098304,7.06947,0.114368
+1199,85.4972,11.6963,8.39725,0.068032,0.905216,0.008096,0.005632,0.029152,0.09648,0.09824,7.07181,0.114592
+1200,57.0951,17.5146,14.8162,0.068576,0.786432,0.008192,0.006144,0.028672,0.099616,0.101088,13.6028,0.114688
+1201,71.3241,14.0205,9.70752,0.069664,0.823296,0.008192,0.005824,0.02896,0.09776,0.098528,8.46269,0.112608
+1202,83.5237,11.9727,9.69606,0.068416,0.811008,0.008192,0.005632,0.029056,0.097472,0.098624,8.46442,0.113248
+1203,89.0125,11.2344,8.27776,0.069632,0.78992,0.0088,0.0056,0.029152,0.097536,0.09712,7.06557,0.114432
+1204,91.2656,10.957,8.36979,0.069216,0.872992,0.008192,0.006144,0.028672,0.098464,0.099296,7.07219,0.114624
+1205,79.5834,12.5654,8.72448,0.069312,0.851776,0.006656,0.006176,0.02864,0.0976,0.098368,7.45232,0.113632
+1206,92.8714,10.7676,8.32733,0.067776,0.838848,0.008384,0.004704,0.029888,0.09712,0.098304,7.06934,0.11296
+1207,88.2454,11.332,8.7215,0.069344,0.850208,0.008192,0.005632,0.029184,0.097632,0.098016,7.44858,0.11472
+1208,87.9725,11.3672,8.40704,0.069152,0.905696,0.008192,0.005824,0.028992,0.09808,0.098464,7.07795,0.114688
+1209,90.1091,11.0977,8.69571,0.069632,0.81616,0.008352,0.004928,0.029952,0.098464,0.098912,7.45472,0.114592
+1210,57.6674,17.3408,10.8922,0.068512,2.3857,0.00752,0.004992,0.0328,0.100096,0.100096,8.07955,0.112928
+1211,75.2886,13.2822,10.2584,0.071456,1.51574,0.008192,0.00592,0.028896,0.097504,0.098432,8.31965,0.11264
+1212,92.8293,10.7725,8.34646,0.068416,0.847872,0.00832,0.006016,0.029728,0.099104,0.098496,7.07299,0.11552
+1213,84.5233,11.8311,9.58669,0.069376,0.841792,0.00752,0.00496,0.029696,0.096672,0.09824,8.32374,0.114688
+1214,85.8628,11.6465,8.31133,0.069408,0.819936,0.00928,0.005056,0.028672,0.098336,0.098272,7.0697,0.112672
+1215,78.5156,12.7363,8.85555,0.071392,0.960096,0.008256,0.004768,0.03008,0.09888,0.099584,7.46762,0.11488
+1216,90.6034,11.0371,8.32774,0.06816,0.839168,0.008384,0.0056,0.029184,0.098464,0.097792,7.06531,0.11568
+1217,92.3354,10.8301,8.38867,0.069504,0.880448,0.008352,0.0056,0.02928,0.096416,0.098304,7.0872,0.113568
+1218,84.384,11.8506,8.47219,0.070944,0.981504,0.008416,0.00592,0.028896,0.097856,0.098176,7.06618,0.114304
+1219,54.2459,18.4346,15.4114,0.069024,0.826176,0.008384,0.00592,0.028672,0.098304,0.09936,14.1608,0.114752
+1220,73.0489,13.6895,10.2178,0.071072,0.93008,0.006816,0.006144,0.028672,0.098304,0.098304,8.86563,0.1128
+1221,89.8798,11.126,8.58691,0.071008,1.07997,0.008192,0.005888,0.028928,0.098112,0.098528,7.08195,0.114336
+1222,78.8056,12.6895,8.93523,0.069536,1.05267,0.00624,0.006144,0.029888,0.099168,0.100064,7.45702,0.114496
+1223,95.7725,10.4414,8.2903,0.069504,0.783968,0.00832,0.005632,0.029504,0.10448,0.098144,7.07606,0.114688
+1224,93.1248,10.7383,8.37136,0.069376,0.882688,0.00832,0.0056,0.029024,0.097792,0.09712,7.06749,0.113952
+1225,90.1012,11.0986,8.72355,0.069056,0.823872,0.008192,0.005952,0.028896,0.09808,0.098496,7.47648,0.114528
+1226,87.7013,11.4023,8.3104,0.068224,0.82064,0.006592,0.006144,0.028672,0.098304,0.098336,7.06918,0.114304
+1227,48.7248,20.5234,15.8206,0.069216,0.846592,0.008256,0.00576,0.029024,0.098336,0.099872,14.174,0.489504
+1228,81.7434,12.2334,9.76416,0.069632,0.837632,0.008288,0.006048,0.028864,0.09936,0.099104,8.50077,0.114464
+1229,78.7511,12.6982,8.84147,0.069344,0.956448,0.008128,0.005696,0.055328,0.096928,0.110048,7.42691,0.11264
+1230,83.9964,11.9053,8.34816,0.071232,0.857024,0.008192,0.006112,0.029856,0.097184,0.098272,7.06544,0.114848
+1231,83.9138,11.917,8.7511,0.071584,0.858208,0.008224,0.006144,0.02864,0.098304,0.098336,7.46902,0.11264
+1232,85.3903,11.7109,8.41072,0.069664,0.91264,0.00688,0.006144,0.028672,0.098304,0.100352,7.07152,0.116544
+1233,84.7682,11.7969,8.7208,0.069568,0.815168,0.007296,0.00592,0.028672,0.098304,0.098336,7.47283,0.124704
+1234,86.5889,11.5488,8.35379,0.069632,0.87392,0.006752,0.006112,0.028672,0.098304,0.098336,7.0591,0.11296
+1235,56.7344,17.626,14.8069,0.069632,0.821248,0.008192,0.005952,0.028864,0.09808,0.098528,13.5617,0.114752
+1236,91.543,10.9238,8.32307,0.071616,0.783872,0.00672,0.017632,0.029152,0.098528,0.098432,7.10362,0.113504
+1237,78.0964,12.8047,10.1291,0.070784,1.23514,0.00832,0.004704,0.03024,0.096704,0.098304,8.47216,0.112736
+1238,82.4344,12.1309,8.40294,0.07072,0.903872,0.008032,0.0056,0.029184,0.098752,0.098336,7.07171,0.116736
+1239,70.6304,14.1582,10.7745,0.070816,1.13872,0.008096,0.005024,0.032224,0.0968,0.100064,9.20973,0.113056
+1240,100.098,9.99023,8.39037,0.068096,0.868352,0.007776,0.014752,0.032768,0.104448,0.101792,7.07645,0.115936
+1241,78.8967,12.6748,8.82074,0.069632,0.947456,0.008352,0.004704,0.029984,0.09696,0.097824,7.45318,0.11264
+1242,89.534,11.1689,8.30259,0.069664,0.814688,0.008608,0.005632,0.029152,0.098336,0.10016,7.05962,0.116736
+1243,89.0357,11.2314,8.85094,0.069632,0.933888,0.009248,0.005088,0.028672,0.098304,0.098304,7.48339,0.124416
+1244,50.1715,19.9316,16.27,0.07024,0.802272,0.008448,0.0056,0.02928,0.098528,0.098304,15.0445,0.1128
+1245,75.3828,13.2656,9.88061,0.069728,0.99728,0.008192,0.006144,0.028672,0.098016,0.098144,8.46074,0.113696
+1246,89.0125,11.2344,8.53386,0.069216,1.04128,0.008192,0.006112,0.028704,0.099616,0.098912,7.0657,0.116128
+1247,83.0225,12.0449,9.73571,0.069408,0.911584,0.008192,0.016128,0.028928,0.09808,0.112864,8.37632,0.114208
+1248,88.8503,11.2549,8.35994,0.069632,0.8704,0.008224,0.005856,0.028928,0.098304,0.098336,7.06557,0.114688
+1249,79.6701,12.5518,8.81126,0.069472,0.915872,0.008064,0.004736,0.030336,0.098688,0.098304,7.46918,0.116608
+1250,99.4561,10.0547,8.30198,0.069088,0.817504,0.00656,0.006144,0.028704,0.098272,0.098304,7.0615,0.115904
+1251,84.6071,11.8193,8.88563,0.069632,1.00678,0.008064,0.005056,0.028672,0.098304,0.098304,7.45677,0.114048
+1252,54.6483,18.2988,15.8655,0.069664,0.800736,0.007872,0.0056,0.029472,0.098368,0.102048,14.6365,0.115296
+1253,93.2095,10.7285,8.44186,0.069248,0.878688,0.00848,0.005632,0.029184,0.097344,0.140224,7.08979,0.123264
+1254,83.0764,12.0371,9.70342,0.069664,0.80688,0.008192,0.005952,0.028864,0.098336,0.098304,8.47386,0.113376
+1255,91.3878,10.9424,8.36973,0.069696,0.866304,0.008224,0.006016,0.0288,0.099296,0.100768,7.07366,0.11696
+1256,84.8174,11.79,9.62762,0.069248,0.868736,0.008192,0.005792,0.028992,0.098336,0.098304,8.32432,0.125696
+1257,85.3191,11.7207,9.1344,0.069952,1.25453,0.008384,0.004832,0.029856,0.098144,0.097248,7.45882,0.11264
+1258,95.8353,10.4346,8.2936,0.075776,0.800768,0.008192,0.00608,0.028736,0.098304,0.098304,7.0615,0.115936
+1259,93.9277,10.6465,8.27187,0.06912,0.774656,0.008192,0.005888,0.028928,0.103936,0.098816,7.06768,0.114656
+1260,84.3493,11.8555,8.82378,0.068576,0.927328,0.00848,0.005792,0.029152,0.098304,0.100352,7.47107,0.11472
+1261,53.8607,18.5664,16.3262,0.069408,0.826016,0.008192,0.005888,0.028928,0.096256,0.098304,15.0765,0.116704
+1262,88.2074,11.3369,8.36579,0.069504,0.84496,0.00832,0.00496,0.028672,0.098336,0.118752,7.07789,0.1144
+1263,81.2763,12.3037,9.81891,0.06848,0.950176,0.009376,0.00496,0.030304,0.09872,0.100256,8.44346,0.113184
+1264,91.2331,10.9609,8.31664,0.069216,0.813056,0.008352,0.0056,0.02912,0.098016,0.097952,7.07277,0.12256
+1265,84.944,11.7725,9.57715,0.06832,0.81712,0.008192,0.006016,0.0288,0.097792,0.098016,8.33984,0.113056
+1266,86.1735,11.6045,9.04813,0.069024,1.17011,0.008224,0.00608,0.028672,0.100352,0.100352,7.45062,0.114688
+1267,86.3843,11.5762,8.32912,0.079872,0.825056,0.008352,0.0056,0.028992,0.097728,0.097184,7.07174,0.114592
+1268,87.6412,11.4102,8.66986,0.068352,0.780288,0.008224,0.006016,0.028768,0.098304,0.099552,7.4671,0.113248
+1269,88.3215,11.3223,8.38518,0.078048,0.867936,0.017216,0.006016,0.028832,0.097984,0.098624,7.0752,0.115328
+1270,49.3637,20.2578,15.8573,0.068192,0.821248,0.007904,0.0056,0.029248,0.097888,0.098336,14.6111,0.117824
+1271,74.2459,13.4688,9.79712,0.069632,0.931808,0.008032,0.005632,0.029024,0.096608,0.098304,8.44179,0.116288
+1272,88.2606,11.3301,8.42752,0.069152,0.934048,0.008512,0.006144,0.028672,0.098304,0.09808,7.07158,0.113024
+1273,83.1169,12.0312,9.60934,0.06912,0.855808,0.00832,0.004864,0.030016,0.09904,0.10032,8.32922,0.11264
+1274,97.7659,10.2285,8.3752,0.069568,0.848864,0.009216,0.00512,0.030656,0.104512,0.1024,7.08986,0.115008
+1275,79.0978,12.6426,8.79834,0.069664,0.918368,0.008256,0.006048,0.028672,0.097408,0.097152,7.45882,0.113952
+1276,97.2829,10.2793,8.28666,0.069632,0.792256,0.008064,0.004992,0.029792,0.098784,0.098752,7.06765,0.116736
+1277,90.3158,11.0723,8.7272,0.068256,0.83968,0.008128,0.005568,0.02912,0.096448,0.098336,7.46902,0.11264
+1278,90.7801,11.0156,8.30864,0.068384,0.817152,0.007936,0.0056,0.029024,0.0968,0.09824,7.07155,0.113952
+1279,49.9805,20.0078,16.3452,0.069216,0.786176,0.008608,0.0056,0.029472,0.104416,0.09792,15.128,0.115776
+1280,81.763,12.2305,8.82694,0.069184,0.935744,0.008384,0.004768,0.03056,0.104608,0.100352,7.46013,0.113216
+1281,90.9252,10.998,8.39987,0.06864,0.900192,0.00832,0.004864,0.029856,0.09712,0.098304,7.07984,0.112736
+1282,83.0091,12.0469,9.54368,0.068864,0.811776,0.00816,0.005568,0.02928,0.098304,0.100224,8.3088,0.112704
+1283,91.087,10.9785,8.62986,0.068192,0.814848,0.007488,0.005056,0.030176,0.0968,0.098304,7.39533,0.113664
+1284,77.5758,12.8906,9.60982,0.070336,0.853952,0.008192,0.006112,0.028704,0.098272,0.098272,8.33136,0.114624
+1285,89.8719,11.127,8.45936,0.069728,0.964576,0.008224,0.006112,0.028704,0.098304,0.09936,7.06973,0.114624
+1286,88.4589,11.3047,8.69674,0.068384,0.83488,0.008352,0.00464,0.030176,0.097952,0.097152,7.44141,0.113792
+1287,93.7729,10.6641,8.31622,0.069504,0.82752,0.008224,0.006112,0.028672,0.097312,0.097248,7.06726,0.114368
+1288,82.3548,12.1426,8.93187,0.069824,1.03459,0.008064,0.0056,0.029152,0.09824,0.098592,7.47517,0.11264
+1289,53.4726,18.7012,16.3239,0.069152,0.793056,0.008096,0.0056,0.029056,0.096512,0.098304,15.1101,0.11408
+1290,82.4079,12.1348,9.79968,0.0696,0.884352,0.008192,0.005792,0.029056,0.098016,0.09872,8.4913,0.114656
+1291,89.935,11.1191,8.40909,0.071712,0.888288,0.008352,0.0056,0.029152,0.0968,0.099392,7.09456,0.115232
+1292,80.4652,12.4277,9.47811,0.069312,0.852288,0.008192,0.006112,0.028704,0.098304,0.098336,8.19811,0.118752
+1293,72.7583,13.7441,9.75222,0.069632,0.995136,0.007488,0.005024,0.029792,0.097152,0.098336,8.33523,0.114432
+1294,90.2203,11.084,8.90067,0.068992,1.02893,0.008192,0.006144,0.028672,0.097728,0.09888,7.44992,0.113216
+1295,94.7797,10.5508,8.31539,0.069888,0.822784,0.008128,0.004928,0.030016,0.0984,0.098848,7.06566,0.116736
+1296,87.7464,11.3965,8.46038,0.069664,0.967872,0.008064,0.005024,0.029792,0.097248,0.099296,7.07002,0.113408
+1297,82.5141,12.1191,8.91085,0.069664,1.02602,0.009312,0.005024,0.029984,0.09696,0.098144,7.4631,0.11264
+1298,52.7129,18.9707,16.001,0.069664,0.903136,0.008192,0.006144,0.028672,0.099552,0.100736,14.6702,0.114688
+1299,88.0936,11.3516,8.34048,0.068608,0.845216,0.008352,0.0056,0.029088,0.096832,0.098304,7.07552,0.11296
+1300,88.3825,11.3145,8.46707,0.070112,0.968704,0.008192,0.006144,0.029696,0.097312,0.09936,7.07437,0.113184
+1301,80.402,12.4375,9.76547,0.068192,1.03024,0.008192,0.00608,0.02864,0.09936,0.099264,8.31226,0.113248
+1302,86.036,11.623,8.29933,0.068416,0.798656,0.00752,0.004832,0.03072,0.097792,0.098016,7.06752,0.125856
+1303,85.3903,11.7109,8.72006,0.069728,0.833824,0.008192,0.006016,0.0288,0.097856,0.09824,7.46486,0.112544
+1304,88.0633,11.3555,8.31862,0.069632,0.818464,0.008352,0.004672,0.030368,0.098656,0.100352,7.07174,0.116384
+1305,88.9816,11.2383,8.92109,0.069632,1.03574,0.008224,0.004608,0.030592,0.104576,0.098304,7.45677,0.11264
+1306,52.8216,18.9316,16.3431,0.069536,0.799616,0.008224,0.005792,0.02896,0.097952,0.09808,15.1224,0.11248
+1307,83.3605,11.9961,9.78227,0.069632,0.900096,0.008192,0.00544,0.029152,0.098496,0.098336,8.45942,0.113504
+1308,82.5274,12.1172,8.26998,0.068864,0.770976,0.009376,0.00496,0.029824,0.097152,0.114592,7.0608,0.11344
+1309,74.7336,13.3809,9.33478,0.069632,0.949376,0.008288,0.004896,0.032192,0.100672,0.098176,7.95686,0.114688
+1310,84.8947,11.7793,8.32557,0.068256,0.831104,0.00832,0.005568,0.028992,0.098464,0.098528,7.07184,0.114496
+1311,89.9982,11.1113,8.8225,0.071008,0.922368,0.00752,0.005024,0.029792,0.097216,0.098272,7.47725,0.114048
+1312,85.9782,11.6309,8.32672,0.069184,0.812896,0.008384,0.004512,0.029888,0.104928,0.1048,7.07702,0.115104
+1313,85.0216,11.7617,8.79619,0.06912,0.91952,0.00832,0.004704,0.030176,0.096768,0.098304,7.45587,0.113408
+1314,56.6184,17.6621,15.3518,0.069632,0.792288,0.008032,0.0056,0.029152,0.098816,0.100352,13.7462,0.50176
+1315,74.0312,13.5078,9.7792,0.06944,0.837344,0.008352,0.005664,0.029408,0.097696,0.138976,8.47766,0.114656
+1316,91.1194,10.9746,8.2999,0.08176,0.776352,0.008192,0.00592,0.028896,0.108,0.098752,7.07779,0.11424
+1317,76.6811,13.041,9.97606,0.06992,1.21782,0.00832,0.004672,0.030048,0.096928,0.098432,8.33728,0.11264
+1318,89.8876,11.125,8.40291,0.070752,0.891808,0.008352,0.005984,0.028704,0.099616,0.10048,7.08045,0.116768
+1319,83.5646,11.9668,8.84,0.069856,1.03075,0.007584,0.004704,0.030144,0.096864,0.098272,7.3889,0.112928
+1320,100.669,9.93359,8.31693,0.069632,0.83152,0.00816,0.005856,0.028864,0.097824,0.098848,7.06154,0.114688
+1321,80.8719,12.3652,8.71514,0.06848,0.82944,0.008192,0.005696,0.02896,0.09808,0.098688,7.46246,0.115136
+1322,90.0933,11.0996,8.41366,0.068256,0.91952,0.008192,0.005792,0.029024,0.098304,0.098304,7.07174,0.114528
+1323,51.6598,19.3574,17.7244,0.070624,0.787904,0.008384,0.00448,0.02992,0.097056,0.098304,16.5129,0.114816
+1324,83.5918,11.9629,8.39568,0.068512,0.905184,0.008256,0.005664,0.02912,0.098336,0.10032,7.06534,0.114944
+1325,85.7621,11.6602,8.29664,0.068832,0.7936,0.00816,0.005952,0.028864,0.098208,0.0984,7.07584,0.118784
+1326,83.7833,11.9355,9.54778,0.0696,0.798784,0.008128,0.005568,0.028928,0.097696,0.098592,8.32685,0.113632
+1327,92.7872,10.7773,8.47056,0.069632,0.97184,0.007136,0.006144,0.028672,0.098304,0.100128,7.0737,0.115008
+1328,91.6085,10.916,8.69786,0.069504,0.812832,0.007872,0.004768,0.029984,0.09808,0.097216,7.45408,0.12352
+1329,86.868,11.5117,8.31046,0.069664,0.816192,0.008352,0.004864,0.028672,0.098304,0.098304,7.07174,0.114368
+1330,97.6726,10.2383,8.67741,0.07344,0.78288,0.008192,0.005728,0.029088,0.098304,0.098304,7.46701,0.114464
+1331,52.898,18.9043,15.7041,0.069632,2.81299,0.007104,0.006016,0.032416,0.10288,0.799776,11.7599,0.113312
+1332,76.9,13.0039,9.85898,0.069632,0.96224,0.007488,0.00512,0.029792,0.098496,0.098752,8.47286,0.114592
+1333,87.6412,11.4102,8.5369,0.068576,1.02403,0.00816,0.006144,0.038912,0.100352,0.10016,7.07398,0.116576
+1334,84.1275,11.8867,9.52797,0.068256,0.796512,0.007488,0.00496,0.029888,0.097088,0.098304,8.31184,0.113632
+1335,83.5373,11.9707,8.26371,0.06896,0.770752,0.008192,0.006112,0.028704,0.098272,0.09808,7.06995,0.114688
+1336,85.5043,11.6953,9.71325,0.069632,0.929792,0.008192,0.005888,0.028928,0.098304,0.101856,8.35638,0.114272
+1337,85.064,11.7559,8.5888,0.069376,1.08589,0.008448,0.0056,0.031168,0.098464,0.100352,7.07379,0.115712
+1338,79.4661,12.584,8.83318,0.069568,1.00154,0.008192,0.005952,0.039104,0.098144,0.098208,7.39968,0.1128
+1339,91.3633,10.9453,8.69075,0.070848,0.810944,0.00704,0.006112,0.028704,0.0976,0.099008,7.45677,0.113728
+1340,85.5615,11.6875,8.48736,0.069344,0.991936,0.008192,0.00576,0.029056,0.099968,0.098688,7.06896,0.115456
+1341,96.4763,10.3652,8.2903,0.069568,0.802656,0.008448,0.005856,0.028928,0.097568,0.098112,7.06576,0.113408
+1342,50.1077,19.957,10.3352,0.069664,1.844,0.00752,0.004928,0.032768,0.098304,0.099904,8.05933,0.118784
+1343,95.0789,10.5176,8.72803,0.069632,0.831264,0.00832,0.0056,0.029056,0.096512,0.098464,7.47421,0.114976
+1344,89.683,11.1504,8.30576,0.071456,0.809184,0.008192,0.006144,0.028672,0.098272,0.098368,7.07171,0.11376
+1345,75.5497,13.2363,9.66659,0.06992,0.909312,0.009248,0.005088,0.030144,0.098464,0.100288,8.33082,0.113312
+1346,90.1091,11.0977,8.38198,0.069856,0.864256,0.008224,0.005952,0.028832,0.099872,0.09888,7.08803,0.11808
+1347,89.6202,11.1582,8.77248,0.068512,0.896992,0.008352,0.005984,0.028672,0.098304,0.09808,7.45472,0.112864
+1348,85.6044,11.6816,8.73277,0.070432,0.85312,0.008288,0.005024,0.0288,0.099264,0.098496,7.45549,0.113856
+1349,86.2824,11.5898,8.91856,0.06912,1.03722,0.008192,0.005728,0.029088,0.098304,0.098304,7.45674,0.115872
+1350,54.3409,18.4023,16.298,0.069632,0.821248,0.008096,0.0056,0.029152,0.097856,0.098912,15.024,0.14352
+1351,77.318,12.9336,9.91027,0.069632,0.990464,0.008416,0.004672,0.03008,0.096864,0.098304,8.49898,0.112864
+1352,89.059,11.2285,8.32522,0.069664,0.833504,0.008192,0.006144,0.028672,0.099712,0.098688,7.06499,0.115648
+1353,51.6546,19.3594,8.9135,0.068352,1.00259,0.00832,0.017056,0.029984,0.09712,0.106176,7.4704,0.113504
+1354,87.3273,11.4512,8.32515,0.068224,0.841728,0.008192,0.00576,0.029056,0.097696,0.098272,7.06182,0.1144
+1355,84.0584,11.8965,8.67328,0.071488,0.800992,0.00816,0.006144,0.02992,0.097056,0.098304,7.44787,0.113344
+1356,94.5696,10.5742,8.48477,0.068128,0.988864,0.008352,0.005824,0.029088,0.098016,0.098208,7.07338,0.114912
+1357,91.5266,10.9258,8.78387,0.069632,0.9008,0.008224,0.0056,0.029248,0.097792,0.098112,7.46166,0.1128
+1358,60.1221,16.6328,10.3035,0.070976,1.60742,0.0088,0.0056,0.031616,0.097984,0.355904,8.01165,0.113568
+1359,94.6396,10.5664,8.3368,0.071168,0.840192,0.007904,0.00576,0.029024,0.096576,0.098336,7.07338,0.114464
+1360,86.6328,11.543,8.66918,0.069632,0.796704,0.008384,0.00592,0.028704,0.099712,0.100544,7.4449,0.114688
+1361,93.0233,10.75,8.47885,0.07136,0.956832,0.00832,0.021888,0.040896,0.096832,0.098304,7.0712,0.113216
+1362,84.7261,11.8027,8.3415,0.069664,0.84944,0.008384,0.005856,0.029216,0.098336,0.100352,7.06346,0.1168
+1363,85.6617,11.6738,8.66285,0.069376,0.779584,0.008352,0.004896,0.029856,0.097152,0.099872,7.44912,0.12464
+1364,93.7214,10.6699,8.33741,0.069632,0.83504,0.006688,0.006144,0.028832,0.098144,0.098304,7.08131,0.113312
+1365,86.5011,11.5605,8.77158,0.069632,0.867872,0.006624,0.006144,0.028672,0.098304,0.098304,7.4793,0.116736
+1366,89.6516,11.1543,8.33741,0.069088,0.837952,0.007488,0.005024,0.028864,0.098112,0.098304,7.07789,0.114688
+1367,52.8762,18.9121,16.7506,0.069632,0.823072,0.006368,0.006144,0.028864,0.098112,0.099936,15.5058,0.11264
+1368,90.1885,11.0879,8.34928,0.069152,0.837952,0.008352,0.0056,0.03584,0.098336,0.098272,7.07994,0.11584
+1369,80.0125,12.498,9.75312,0.069568,0.877184,0.009248,0.005056,0.032288,0.096736,0.098304,8.45162,0.11312
+1370,85.4615,11.7012,8.4456,0.071456,0.95664,0.008192,0.006144,0.028672,0.098304,0.098336,7.06454,0.113312
+1371,81.9725,12.1992,8.91853,0.07088,1.02275,0.008192,0.005824,0.028992,0.098304,0.100384,7.46867,0.114528
+1372,93.67,10.6758,8.41744,0.069152,0.903808,0.008064,0.0056,0.029248,0.09792,0.098208,7.07642,0.129024
+1373,87.4317,11.4375,8.75514,0.070784,0.865152,0.008,0.005568,0.029184,0.097632,0.098528,7.46675,0.113536
+1374,85.1347,11.7461,8.44627,0.069952,0.948128,0.008128,0.005536,0.02912,0.097664,0.098816,7.07424,0.114688
+1375,75.3163,13.2773,8.81696,0.069504,0.926528,0.008192,0.005728,0.029088,0.09744,0.098944,7.46851,0.113024
+1376,49.2924,20.2871,15.9458,0.067488,2.95286,0.008096,0.00464,0.032768,0.098304,0.808672,11.8474,0.125568
+1377,88.1239,11.3477,8.36608,0.06944,0.8624,0.00928,0.005056,0.029888,0.097088,0.098336,7.08122,0.113376
+1378,78.0131,12.8184,10.424,0.067264,0.8192,0.008064,0.005568,0.029344,0.098656,0.099872,9.18307,0.112992
+1379,92.8882,10.7656,8.41114,0.075776,0.906976,0.008192,0.005568,0.02912,0.097888,0.099136,7.0736,0.11488
+1380,85.6904,11.6699,8.76771,0.068192,0.89088,0.008032,0.0056,0.028992,0.097824,0.098176,7.45571,0.114304
+1381,93.074,10.7441,8.33018,0.068608,0.839392,0.008384,0.005568,0.029184,0.098432,0.100096,7.06576,0.114752
+1382,85.5472,11.6895,8.68224,0.068384,0.800736,0.008032,0.005632,0.029376,0.09824,0.098144,7.45082,0.12288
+1383,90.1885,11.0879,8.47462,0.083072,0.967104,0.008096,0.004672,0.030208,0.0968,0.099424,7.07232,0.112928
+1384,62.7913,15.9258,12.4266,0.069632,0.8224,0.008352,0.004832,0.030048,0.098656,0.108864,10.4897,0.794112
+1385,82.674,12.0957,8.37222,0.069632,0.851328,0.008352,0.004576,0.029984,0.097024,0.098272,7.09949,0.113568
+1386,80.7062,12.3906,9.93802,0.069216,1.02598,0.008032,0.004736,0.030176,0.098848,0.100352,8.48688,0.113792
+1387,87.5214,11.4258,8.32883,0.069632,0.80896,0.008224,0.006112,0.028672,0.117984,0.098944,7.0751,0.1152
+1388,72.9241,13.7129,9.64608,0.06896,0.866976,0.008192,0.006144,0.028672,0.098304,0.098016,8.35818,0.11264
+1389,85.8916,11.6426,8.3128,0.069472,0.807776,0.017696,0.004832,0.02976,0.097216,0.098304,7.07379,0.113952
+1390,88.3368,11.3203,8.93357,0.069568,1.04806,0.008416,0.004672,0.030528,0.098464,0.100352,7.46038,0.11312
+1391,88.566,11.291,8.30733,0.068288,0.808992,0.00816,0.006112,0.028704,0.097696,0.098048,7.07773,0.1136
+1392,84.3632,11.8535,8.84048,0.068768,0.954432,0.008064,0.005024,0.029728,0.098304,0.098464,7.46493,0.112768
+1393,85.6187,11.6797,8.38464,0.069664,0.88448,0.00832,0.0056,0.029216,0.09952,0.099136,7.07389,0.114816
+1394,59.4174,16.8301,10.1683,0.071136,1.6815,0.008128,0.00464,0.032736,0.098336,0.098272,8.06029,0.11328
+1395,92.5692,10.8027,8.33366,0.069984,0.837632,0.008192,0.005728,0.028992,0.09776,0.098144,7.07379,0.11344
+1396,89.9034,11.123,8.74778,0.06848,0.851776,0.008032,0.005632,0.029568,0.098272,0.098304,7.47315,0.11456
+1397,87.6112,11.4141,8.33174,0.071488,0.828064,0.00816,0.006016,0.0288,0.097728,0.098464,7.0783,0.11472
+1398,88.033,11.3594,8.58189,0.06992,1.08182,0.008224,0.005664,0.029152,0.098176,0.101856,7.07238,0.114688
+1399,80.4273,12.4336,8.91101,0.068576,1.00147,0.008256,0.00608,0.028704,0.098272,0.098304,7.48749,0.113856
+1400,81.4508,12.2773,8.38486,0.067936,0.890816,0.008288,0.005568,0.029216,0.098016,0.098048,7.07354,0.11344
+1401,87.7614,11.3945,8.93536,0.070176,1.01146,0.008352,0.005568,0.029088,0.09648,0.099488,7.50064,0.114112
+1402,81.3861,12.2871,9.83334,0.06848,0.816224,0.008096,0.00512,0.030016,0.101056,0.098176,7.85027,0.855904
+1403,61.4572,16.2715,9.88141,0.069472,1.00163,0.008224,0.005856,0.035072,0.0984,0.100224,8.4481,0.114432
+1404,86.1373,11.6094,8.82893,0.075808,0.925504,0.008352,0.0056,0.029216,0.098304,0.098304,7.47315,0.114688
+1405,82.3681,12.1406,8.42547,0.06928,0.921952,0.008192,0.006144,0.028672,0.098112,0.097792,7.08064,0.114688
+1406,92.9895,10.7539,8.36198,0.071488,0.858176,0.007488,0.004928,0.029888,0.097088,0.098304,7.07994,0.114688
+1407,90.7801,11.0156,8.70995,0.06912,0.82176,0.009312,0.005024,0.029984,0.096992,0.098336,7.46288,0.116544
+1408,94.0658,10.6309,8.43926,0.068928,0.942784,0.008192,0.005792,0.029024,0.098304,0.098304,7.07347,0.114464
+1409,86.2534,11.5938,8.73898,0.068416,0.837632,0.008192,0.006144,0.028672,0.099712,0.098592,7.47542,0.116192
+1410,91.1519,10.9707,8.39232,0.069632,0.899072,0.008192,0.005792,0.029024,0.098144,0.098464,7.0697,0.114304
+1411,50.5929,19.7656,16.7567,0.069664,0.843744,0.008448,0.005888,0.028768,0.098208,0.098304,15.4911,0.11264
+1412,81.3215,12.2969,9.82243,0.069664,0.939872,0.008192,0.005824,0.029152,0.098464,0.116576,8.44186,0.112832
+1413,89.4167,11.1836,8.36403,0.06912,0.858624,0.008096,0.005664,0.028992,0.097888,0.098528,7.08243,0.114688
+1414,81.6717,12.2441,9.6,0.069632,0.823296,0.008256,0.00608,0.028704,0.098304,0.098304,8.35376,0.113664
+1415,84.8525,11.7852,8.3553,0.06992,0.839296,0.008352,0.005728,0.029216,0.096352,0.099936,7.09264,0.113856
+1416,88.0936,11.3516,9.04563,0.069632,1.1223,0.008192,0.016384,0.0304,0.099744,0.11152,7.47094,0.116512
+1417,86.4719,11.5645,8.29062,0.068608,0.785664,0.00816,0.004896,0.029792,0.09712,0.100416,7.08163,0.114336
+1418,84.8806,11.7812,8.87046,0.073856,0.982976,0.008064,0.005824,0.029152,0.096768,0.098304,7.46246,0.113056
+1419,55.6401,17.9727,14.8846,0.075424,0.799232,0.008224,0.005984,0.0288,0.097728,0.098432,13.6562,0.114624
+1420,88.7195,11.2715,8.54854,0.077568,1.01674,0.00816,0.005888,0.028928,0.097632,0.098272,7.10112,0.11424
+1421,75.9757,13.1621,10.0209,0.071744,1.27386,0.008096,0.0056,0.029216,0.098016,0.10416,8.31725,0.112992
+1422,75.4495,13.2539,8.31488,0.069632,0.814368,0.008352,0.004704,0.029888,0.098784,0.10048,7.07194,0.116736
+1423,66.7797,14.9746,9.56624,0.069632,0.825344,0.008192,0.006048,0.028768,0.098112,0.098496,8.316,0.115648
+1424,92.3688,10.8262,8.89501,0.069408,1.00634,0.008192,0.00576,0.029056,0.098304,0.098464,7.46646,0.113024
+1425,93.2775,10.7207,8.43366,0.069664,0.915424,0.008192,0.005952,0.028864,0.105536,0.105344,7.07987,0.114816
+1426,90.4434,11.0566,8.78797,0.069632,0.892672,0.008448,0.0056,0.02912,0.097824,0.098016,7.47197,0.114688
+1427,92.519,10.8086,8.49104,0.075776,0.985088,0.007584,0.004704,0.029888,0.098112,0.098464,7.0767,0.11472
+1428,57.0728,17.5215,15.2925,0.068928,0.795456,0.008064,0.0056,0.029152,0.098048,0.098272,14.0744,0.114656
+1429,67.698,14.7715,10.7875,0.07008,0.898368,0.008096,0.00512,0.02864,0.099776,0.09888,9.46586,0.11264
+1430,90.6516,11.0312,8.77261,0.068576,0.903136,0.008224,0.005824,0.028992,0.0984,0.100256,7.44442,0.114784
+1431,78.7813,12.6934,8.96819,0.073728,1.06659,0.008352,0.005568,0.029088,0.096704,0.114464,7.46022,0.113472
+1432,84.8103,11.791,8.31885,0.069408,0.821728,0.008192,0.006144,0.028672,0.098016,0.0984,7.07398,0.114304
+1433,88.7348,11.2695,8.89558,0.083072,0.991968,0.00832,0.005568,0.033376,0.098112,0.098112,7.4633,0.11376
+1434,94.8148,10.5469,8.2768,0.068448,0.78816,0.007552,0.005024,0.02976,0.097216,0.098304,7.06733,0.115008
+1435,86.8827,11.5098,8.79088,0.068576,0.89232,0.008256,0.005888,0.029152,0.096416,0.098336,7.47926,0.112672
+1436,92.0698,10.8613,8.37078,0.06832,0.877824,0.008608,0.005664,0.029408,0.09984,0.100448,7.06394,0.116736
+1437,51.7119,19.3379,16.7315,0.069632,0.796672,0.008192,0.005856,0.02896,0.097728,0.09888,15.5116,0.114016
+1438,94.7446,10.5547,8.36061,0.068288,0.864224,0.007904,0.0056,0.029504,0.10176,0.098528,7.07011,0.114688
+1439,82.5407,12.1152,8.74736,0.068256,0.853888,0.00832,0.005664,0.029152,0.097792,0.096896,7.4727,0.114688
+1440,89.09,11.2246,8.36371,0.071008,0.866976,0.007584,0.004704,0.02992,0.098464,0.09856,7.07213,0.114368
+1441,84.2105,11.875,9.59901,0.069632,0.827392,0.008224,0.005792,0.028992,0.097664,0.098016,8.35005,0.113248
+1442,85.7334,11.6641,8.36608,0.071872,0.858816,0.008192,0.005792,0.029024,0.098304,0.100352,7.07792,0.115808
+1443,82.2094,12.1641,8.85424,0.069504,1.03715,0.008224,0.006112,0.028672,0.097984,0.098368,7.39498,0.113248
+1444,88.2759,11.3281,8.42486,0.069632,0.918944,0.006752,0.006144,0.028672,0.098304,0.098304,7.08406,0.114048
+1445,90.6034,11.0371,8.88218,0.24544,0.804832,0.008544,0.00576,0.029024,0.098336,0.101952,7.47325,0.11504
+1446,89.0125,11.2344,8.3927,0.069216,0.895392,0.008064,0.005568,0.029056,0.097728,0.097152,7.07584,0.114688
+1447,93.4477,10.7012,8.34512,0.069664,0.856032,0.008384,0.005952,0.02976,0.097216,0.098304,7.0656,0.114208
+1448,52.8598,18.918,10.6598,0.069632,1.76704,0.008416,0.005632,0.028928,0.096672,0.100032,8.4688,0.114688
+1449,84.6421,11.8145,8.30998,0.069632,0.813088,0.00816,0.005824,0.028992,0.098208,0.0984,7.07325,0.114432
+1450,90.0774,11.1016,8.48691,0.07136,0.995648,0.008192,0.006112,0.028704,0.098112,0.098464,7.06717,0.113152
+1451,89.8561,11.1289,8.7511,0.069568,0.849312,0.006816,0.01824,0.028864,0.098304,0.098304,7.46701,0.114688
+1452,84.169,11.8809,8.44538,0.069312,0.923968,0.008192,0.006016,0.0288,0.097664,0.096896,7.08608,0.128448
+1453,88.8272,11.2578,8.69152,0.070688,0.799712,0.009376,0.00496,0.029728,0.098432,0.10064,7.46144,0.116544
+1454,88.4283,11.3086,8.30256,0.069632,0.80944,0.008192,0.006144,0.028672,0.097888,0.098368,7.07005,0.114176
+1455,89.4948,11.1738,8.77181,0.069856,0.88608,0.008352,0.00464,0.030112,0.096864,0.098336,7.4641,0.113472
+1456,50.6931,19.7266,16.4115,0.068448,0.859424,0.008352,0.00464,0.030176,0.096928,0.099392,15.127,0.117056
+1457,70.291,14.2266,10.8984,0.068736,1.13424,0.008416,0.005568,0.031296,0.10432,0.106624,9.32458,0.114656
+1458,81.3861,12.2871,9.08083,0.069216,1.18006,0.008192,0.00592,0.028896,0.09824,0.098272,7.47734,0.114688
+1459,87.6262,11.4121,8.33939,0.0704,0.833536,0.009312,0.005024,0.029792,0.097184,0.098304,7.08198,0.113856
+1460,86.3989,11.5742,8.89242,0.071136,1.01453,0.008032,0.00608,0.028672,0.098304,0.0984,7.45264,0.114624
+1461,87.2975,11.4551,8.31402,0.069024,0.819808,0.009344,0.004992,0.030368,0.097824,0.09888,7.06915,0.114624
+1462,85.676,11.6719,8.95606,0.06816,1.06032,0.008576,0.005856,0.02896,0.098048,0.09856,7.47437,0.113216
+1463,59.4381,16.8242,13.3098,0.069632,0.8376,0.008064,0.005568,0.029088,0.098624,0.099616,11.2545,0.907072
+1464,79.6515,12.5547,9.74438,0.07168,0.825344,0.008192,0.005632,0.02912,0.09792,0.09872,8.49322,0.11456
+1465,92.2523,10.8398,8.35379,0.069632,0.845824,0.008192,0.005792,0.029024,0.0976,0.098176,7.08643,0.11312
+1466,75.6613,13.2168,10.4106,0.066176,0.825024,0.007776,0.004832,0.030048,0.098592,0.0984,9.16656,0.113216
+1467,85.0357,11.7598,8.42138,0.069632,0.933408,0.008384,0.0056,0.029248,0.09776,0.097056,7.06486,0.115424
+1468,85.834,11.6504,8.84464,0.069344,0.954336,0.008064,0.0056,0.029504,0.0976,0.098944,7.46723,0.114016
+1469,92.3021,10.834,8.43747,0.069664,0.935872,0.008128,0.0056,0.029024,0.097856,0.096992,7.07994,0.1144
+1470,82.674,12.0957,8.72301,0.06944,0.841536,0.007136,0.006112,0.028672,0.098304,0.098336,7.46035,0.11312
+1471,88.4283,11.3086,8.43277,0.069664,0.937984,0.00816,0.006144,0.028672,0.098208,0.097792,7.07216,0.113984
+1472,55.628,17.9766,15.6344,0.069632,0.867584,0.008064,0.004992,0.029728,0.099296,0.098336,14.0779,0.37888
+1473,91.4612,10.9336,8.35552,0.069632,0.853696,0.00832,0.0056,0.028864,0.096832,0.106464,7.07174,0.114368
+1474,78.1799,12.791,9.65958,0.06896,0.808896,0.008032,0.004992,0.029792,0.097184,0.098336,8.42954,0.113856
+1475,89.3543,11.1914,8.46352,0.069664,0.964576,0.008224,0.006112,0.028672,0.098304,0.098336,7.07571,0.11392
+1476,81.4897,12.2715,8.70138,0.069632,0.799744,0.007264,0.006048,0.03008,0.10496,0.102528,7.46291,0.118208
+1477,89.7773,11.1387,8.35206,0.068512,0.856032,0.008192,0.006112,0.028704,0.097632,0.098368,7.0744,0.114112
+1478,84.4884,11.8359,8.80624,0.069696,0.917792,0.008192,0.006144,0.028672,0.098336,0.099616,7.46362,0.114176
+1479,77.564,12.8926,8.96512,0.075776,1.03946,0.008416,0.0048,0.029856,0.097152,0.099744,7.49421,0.115712
+1480,83.252,12.0117,8.63312,0.068416,1.14429,0.006656,0.006144,0.028672,0.098304,0.098304,7.06765,0.114688
+1481,60.9161,16.416,12.7328,0.06912,0.940896,0.008,0.005568,0.029184,0.096544,0.098272,10.6741,0.81104
+1482,81.2312,12.3105,8.37658,0.07808,0.868352,0.008192,0.005952,0.028864,0.098176,0.098464,7.07533,0.115168
+1483,76.0208,13.1543,9.76077,0.069632,0.903136,0.008224,0.005664,0.02912,0.097504,0.097248,8.43696,0.11328
+1484,85.5758,11.6855,8.4145,0.0688,0.918336,0.008224,0.005728,0.029056,0.098304,0.09808,7.07395,0.114016
+1485,78.7935,12.6914,8.39072,0.070784,0.89568,0.008064,0.0056,0.029216,0.09664,0.099392,7.07187,0.113472
+1486,94.014,10.6367,8.76954,0.06912,0.881408,0.007488,0.004832,0.030208,0.098432,0.09872,7.46432,0.115008
+1487,91.4776,10.9316,8.29958,0.07072,0.803808,0.00816,0.006144,0.028672,0.098176,0.097696,7.07203,0.114176
+1488,93.2095,10.7285,8.30467,0.071136,0.81504,0.008448,0.0056,0.029408,0.0976,0.098912,7.06586,0.112672
+1489,85.4615,11.7012,8.83715,0.068832,0.956704,0.008224,0.004608,0.030688,0.098336,0.098304,7.45677,0.114688
+1490,51.9322,19.2559,16.4999,0.069408,0.833792,0.008224,0.005632,0.029152,0.098048,0.09792,15.2436,0.114144
+1491,81.2956,12.3008,9.91133,0.069632,1.02605,0.009344,0.004992,0.030112,0.096896,0.099392,8.46099,0.11392
+1492,86.2824,11.5898,8.34909,0.075136,0.85056,0.008192,0.006144,0.028704,0.098272,0.098304,7.06765,0.116128
+1493,50.6229,19.7539,10.1184,0.069664,0.95024,0.008192,0.0056,0.029024,0.098272,0.098336,8.7431,0.115968
+1494,93.945,10.6445,8.35962,0.069312,0.861504,0.0072,0.005888,0.028896,0.098336,0.098272,7.07565,0.11456
+1495,91.2819,10.9551,8.75514,0.070784,0.870752,0.008416,0.005568,0.029088,0.09856,0.098528,7.45798,0.115456
+1496,94.6221,10.5684,8.28858,0.069312,0.79728,0.008128,0.0056,0.029088,0.096576,0.098176,7.07114,0.11328
+1497,90.2521,11.0801,8.72163,0.069632,0.837472,0.008,0.0056,0.0296,0.099456,0.100736,7.45645,0.114688
+1498,60.7211,16.4688,9.89453,0.069632,1.56531,0.009312,0.005024,0.032608,0.097632,0.098432,7.90394,0.11264
+1499,84.2521,11.8691,9.75466,0.069632,0.86368,0.00832,0.0056,0.029152,0.098816,0.09936,8.46538,0.11472
+1500,90.9575,10.9941,8.33414,0.068416,0.834944,0.008032,0.004896,0.029792,0.097216,0.10032,7.07155,0.118976
+1501,77.7171,12.8672,9.64454,0.069472,0.892992,0.008352,0.005568,0.029248,0.096832,0.098176,8.32922,0.114688
+1502,52.1014,19.1934,9.62448,0.070528,0.873696,0.008064,0.005056,0.028672,0.098432,0.099264,8.32525,0.11552
+1503,96.695,10.3418,8.74768,0.06832,0.85392,0.00832,0.006016,0.028896,0.09776,0.098208,7.47152,0.11472
+1504,90.6355,11.0332,8.40013,0.069696,0.896832,0.00816,0.005728,0.029024,0.098048,0.098336,7.08038,0.11392
+1505,89.8246,11.1328,8.79344,0.070912,0.893152,0.008512,0.0056,0.029248,0.098496,0.100288,7.47258,0.114656
+1506,85.5186,11.6934,8.52371,0.069632,1.00701,0.01888,0.005888,0.029088,0.104448,0.100352,7.07379,0.114624
+1507,57.2259,17.4746,15.358,0.07008,0.82736,0.008224,0.005728,0.029088,0.09728,0.09728,14.1066,0.11632
+1508,88.033,11.3594,8.35149,0.071136,0.852512,0.009344,0.004992,0.02976,0.098496,0.098528,7.07024,0.11648
+1509,94.6046,10.5703,8.28518,0.069472,0.786176,0.008064,0.004672,0.03008,0.096864,0.098112,7.07773,0.114016
+1510,79.8503,12.5234,9.87539,0.069632,1.00342,0.00816,0.005632,0.029312,0.099392,0.100704,8.44566,0.113472
+1511,84.951,11.7715,8.69536,0.069664,0.80688,0.007936,0.005568,0.02912,0.096672,0.098272,7.46624,0.115008
+1512,85.9205,11.6387,8.67302,0.06976,0.794048,0.00672,0.006144,0.028672,0.098336,0.099584,7.45546,0.114304
+1513,88.3978,11.3125,8.83475,0.069632,0.948224,0.008192,0.006144,0.029696,0.09728,0.100032,7.46128,0.114272
+1514,87.9272,11.373,8.3415,0.069632,0.841152,0.008224,0.004672,0.030176,0.09792,0.098464,7.06429,0.126976
+1515,87.0304,11.4902,8.77158,0.069408,0.882912,0.00784,0.005568,0.0296,0.09728,0.098528,7.46781,0.11264
+1516,57.84,17.2891,14.1373,0.068864,0.801088,0.008064,0.004672,0.03008,0.107136,0.099936,12.0037,1.01376
+1517,78.988,12.6602,10.0256,0.069472,1.14358,0.008192,0.005824,0.028992,0.09792,0.09856,8.4584,0.114656
+1518,81.412,12.2832,9.56957,0.07136,0.817472,0.008128,0.0056,0.029152,0.097856,0.096832,8.32925,0.11392
+1519,86.5303,11.5566,8.5033,0.069632,0.98304,0.008224,0.005728,0.029088,0.098272,0.099488,7.09475,0.115072
+1520,80.5918,12.4082,9.50518,0.068384,1.61792,0.008192,0.005696,0.02912,0.098336,0.09968,7.46355,0.114304
+1521,90.5554,11.043,8.35008,0.069184,0.864448,0.008448,0.005696,0.029152,0.096608,0.098272,7.06499,0.11328
+1522,89.1831,11.2129,8.71834,0.069632,0.831488,0.008416,0.00592,0.02976,0.098688,0.09856,7.46323,0.11264
+1523,89.2764,11.2012,8.35731,0.071552,0.823424,0.007584,0.004704,0.030048,0.098816,0.104608,7.10205,0.114528
+1524,89.4167,11.1836,8.90675,0.0696,1.00688,0.008096,0.00496,0.045056,0.09952,0.098112,7.46186,0.112672
+1525,53.2114,18.793,15.7983,0.069792,1.45187,0.00784,0.005632,0.031584,0.098272,0.831488,13.1851,0.116736
+1526,81.6066,12.2539,9.16918,0.069248,1.27395,0.006912,0.006144,0.028672,0.104608,0.099968,7.46518,0.114496
+1527,76.8769,13.0078,9.67885,0.07168,0.91312,0.008288,0.0056,0.029312,0.098272,0.098432,8.33946,0.114688
+1528,84.7963,11.793,8.40368,0.0696,0.903072,0.008096,0.005056,0.028672,0.098304,0.098016,7.08006,0.1128
+1529,85.7478,11.6621,8.81882,0.068512,0.927136,0.008032,0.004832,0.030208,0.098368,0.098784,7.46698,0.115968
+1530,91.543,10.9238,8.29104,0.068416,0.792576,0.009312,0.005024,0.029856,0.098304,0.09712,7.07587,0.11456
+1531,83.3469,11.998,8.83037,0.069632,0.945984,0.008384,0.005984,0.028832,0.098304,0.098304,7.46086,0.11408
+1532,89.2608,11.2031,8.46848,0.0696,0.968736,0.008192,0.006048,0.0288,0.099712,0.098784,7.07139,0.117216
+1533,52.1385,19.1797,16.8467,0.06928,0.879264,0.008192,0.005632,0.029088,0.09792,0.098144,15.5429,0.116224
+1534,69.1892,14.4531,8.43523,0.069632,0.927328,0.008384,0.0056,0.029152,0.097824,0.09888,7.08218,0.116256
+1535,74.0312,13.5078,9.03578,0.069152,1.1455,0.008448,0.016384,0.030144,0.096832,0.104448,7.45213,0.112736
diff --git a/profile/summary.xlsx b/profile/summary.xlsx
new file mode 100644
index 0000000..d101cf4
Binary files /dev/null and b/profile/summary.xlsx differ
diff --git a/src/kernel.cu b/src/kernel.cu
index 74dffcb..fd46c99 100644
--- a/src/kernel.cu
+++ b/src/kernel.cu
@@ -37,7 +37,19 @@ void checkCUDAError(const char *msg, int line = -1) {
*****************/
/*! Block size used for CUDA kernel launch. */
-#define blockSize 128
+#define blockSize PFM_ANA_blockSize
+//#define blockSize 32 //16 //32 //64 //1024 //512 //256 //128
+
+/* Start my own definition */
+// Clamp simply on each component.
+#define clampFunc(dst, min, max) dst = glm::length(dst) <= max ? dst : glm::normalize(dst) * max;
+//#define clampFunc(dst, min, max) dst = glm::clamp(dst, min, max)
+
+#define blockSizePerDim blockSize // 8
+
+__constant__ int dev_gridCellCountPtr[1];
+
+/* End my own definition */
// LOOK-1.2 Parameters for the boids algorithm.
// These worked well in our reference implementation.
@@ -72,6 +84,8 @@ glm::vec3 *dev_vel2;
// LOOK-2.1 - these are NOT allocated for you. You'll have to set up the thrust
// pointers on your own too.
+glm::vec3* dev_pos_reshuffle;
+glm::vec3* dev_vel_reshuffle;
// For efficient sorting and the uniform grid. These should always be parallel.
int *dev_particleArrayIndices; // What index in dev_pos and dev_velX represents this particle?
@@ -83,7 +97,7 @@ thrust::device_ptr dev_thrust_particleGridIndices;
int *dev_gridCellStartIndices; // What part of dev_particleArrayIndices belongs
int *dev_gridCellEndIndices; // to this cell?
-// TODO-2.3 - consider what additional buffers you might need to reshuffle
+// DONE-2.3 - consider what additional buffers you might need to reshuffle
// the position and velocity data to be coherent within cells.
// LOOK-2.1 - Grid parameters based on simulation parameters.
@@ -157,7 +171,15 @@ void Boids::initSimulation(int N) {
checkCUDAErrorWithLine("kernGenerateRandomPosArray failed!");
// LOOK-2.1 computing grid params
+#if !GRID_LOOPING_OPTIMIZATION
+#if !USE_HALF_SIZE_OF_CELL
gridCellWidth = 2.0f * std::max(std::max(rule1Distance, rule2Distance), rule3Distance);
+#else // USE_HALF_SIZE_OF_CELL
+ gridCellWidth = std::max(std::max(rule1Distance, rule2Distance), rule3Distance);
+#endif // USE_HALF_SIZE_OF_CELL
+#else //GRID_LOOPING_OPTIMIZATION
+ gridCellWidth = GRID_LOOPING_WIDTH;//std::min(std::min(rule1Distance, rule2Distance), rule3Distance); // Not appropriate?
+#endif // GRID_LOOPING_OPTIMIZATION
int halfSideCount = (int)(scene_scale / gridCellWidth) + 1;
gridSideCount = 2 * halfSideCount;
@@ -168,8 +190,49 @@ void Boids::initSimulation(int N) {
gridMinimum.y -= halfGridWidth;
gridMinimum.z -= halfGridWidth;
- // TODO-2.1 TODO-2.3 - Allocate additional buffers here.
+ // DONE-2.1 DONE-2.3 - Allocate additional buffers here.
+
+ // Start implementation 2.1
+ cudaMalloc((void**)&dev_particleArrayIndices, N * sizeof(int)); // boid index -> sorted pos + vel index
+ cudaMalloc((void**)&dev_particleGridIndices, N * sizeof(int)); // boid index -> grid cell index
+ cudaMalloc((void**)&dev_gridCellStartIndices, gridCellCount * sizeof(int)); // grid cell index -> start boid index
+ cudaMalloc((void**)&dev_gridCellEndIndices, gridCellCount * sizeof(int)); // grid cell index -> end boid index
+
+ dev_thrust_particleArrayIndices = thrust::device_ptr(dev_particleArrayIndices);
+ dev_thrust_particleGridIndices = thrust::device_ptr(dev_particleGridIndices);
+ // End implementation 2.1
+
+ // Start implementation 2.3
+ cudaMalloc((void**)&dev_pos_reshuffle, N * sizeof(glm::vec3));
+ cudaMalloc((void**)&dev_vel_reshuffle, N * sizeof(glm::vec3));
+ // End implementation 2.3
+
+ cudaMemcpyToSymbol(dev_gridCellCountPtr, &gridCellCount, sizeof(int));
+
cudaDeviceSynchronize();
+
+#if ENABLE_PROFILE_LOG
+ float idxDiff = std::max(std::max(rule1Distance, rule2Distance), rule3Distance) * gridInverseCellWidth;
+ int sideSearchSize = static_cast(1.25 + idxDiff) - static_cast(1.25 - idxDiff) + 1;
+
+ utilityCore::ProfileLog::get().addKwArg("Boid", numObjects);
+ utilityCore::ProfileLog::get().addKwArg("BkSize", blockSize);
+ utilityCore::ProfileLog::get().addKwArg("Vis", PFM_ANA_VISUALIZE);
+ utilityCore::ProfileLog::get().addKwArg("GCWidth", gridCellWidth);
+ utilityCore::ProfileLog::get().addKwArg("Nei", sideSearchSize * sideSearchSize * sideSearchSize);
+ utilityCore::ProfileLog::get().addKwArg("ShMem", USE_SHARED_MEMORY);
+
+ utilityCore::ProfileLog::get().addArg((PFM_ANA_UNIFORM_GRID > 0 ? (PFM_ANA_COHERENT_GRID > 0 ? "Coherent" : "Scattered") : "Naive"));
+ utilityCore::ProfileLog::get().addArg((USE_STABLE_SORT > 0 ? "SSort" : "USort"));
+ utilityCore::ProfileLog::get().addArg((IDENTIFY_START_END_BY_BINARY_SEARCH > 0 ? "BinSearchGridCell" : "ConstBoids"));
+
+ //float startTime = 1500.f;
+ int startFrame = 512;
+ int accFrameCount = 1024;
+ int frameInterval = 1;
+
+ utilityCore::ProfileLog::get().initProfile(std::string("../profile/") + (PFM_ANA_VISUALIZE > 0 ? "Vis_1/" : "Vis_0/") + "CIS565Proj1", "end", startFrame, accFrameCount, frameInterval, std::ios_base::out);
+#endif ENABLE_PROFILE_LOG
}
@@ -233,11 +296,63 @@ __device__ glm::vec3 computeVelocityChange(int N, int iSelf, const glm::vec3 *po
// Rule 1: boids fly towards their local perceived center of mass, which excludes themselves
// Rule 2: boids try to stay a distance d away from each other
// Rule 3: boids try to match the speed of surrounding boids
- return glm::vec3(0.0f, 0.0f, 0.0f);
+
+ // return glm::vec3(0.0f, 0.0f, 0.0f);
+
+ // Start implementation
+ glm::vec3 dVel(0.f, 0.f, 0.f);
+
+ glm::vec3 perceivedCenter(0.f, 0.f, 0.f);
+ glm::vec3 collisionP(0.f, 0.f, 0.f);
+ glm::vec3 perceivedVel(0.f, 0.f, 0.f);
+
+ int rule1Neighbor = 0, rule3Neighbor = 0;
+
+ for (int i = 0; i < N; ++i) {
+ glm::vec3 diff = pos[i] - pos[iSelf];
+ float distance = glm::length(diff);
+ if (i != iSelf) {
+ // Rule 1: boids fly towards their local perceived center of mass, which excludes themselves
+ if (distance < rule1Distance) {
+ perceivedCenter += pos[i];
+ ++rule1Neighbor;
+ }
+
+ // Rule 2: boids try to stay a distance d away from each other
+ if (distance < rule2Distance) {
+ collisionP -= diff;
+ }
+
+ // Rule 3: boids try to match the speed of surrounding boids
+ if (distance < rule3Distance) {
+ perceivedVel += vel[i];
+ ++rule3Neighbor;
+ }
+ }
+ }
+
+ if (rule1Neighbor > 0) {
+ perceivedCenter /= rule1Neighbor;
+ dVel += (perceivedCenter - pos[iSelf]) * rule1Scale;
+ }
+
+ dVel += collisionP * rule2Scale;
+
+ if (rule3Neighbor > 0) {
+ perceivedVel /= rule3Neighbor;
+#if !USE_RULE3_FROM_CONARD_PARKER
+ dVel += perceivedVel * rule3Scale; // From instruction
+#else // USE_RULE3_FROM_CONARD_PARKER
+ dVel += (perceivedVel - vel[iSelf]) * rule3Scale; // From Conard Parker's, maybe it runs much better than the instructions' now?
+#endif // USE_RULE3_FROM_CONARD_PARKER
+ }
+ // End implementation
+
+ return dVel;
}
/**
-* TODO-1.2 implement basic flocking
+* DONE-1.2 implement basic flocking
* For each of the `N` bodies, update its position based on its current velocity.
*/
__global__ void kernUpdateVelocityBruteForce(int N, glm::vec3 *pos,
@@ -245,6 +360,23 @@ __global__ void kernUpdateVelocityBruteForce(int N, glm::vec3 *pos,
// Compute a new velocity based on pos and vel1
// Clamp the speed
// Record the new velocity into vel2. Question: why NOT vel1?
+
+ // Answer: Because the new velocity is related to the velocities of the other boids. If you change vel1, it may change the result of the new velocity.
+
+ // Start implementation
+ int index = threadIdx.x + (blockIdx.x * blockDim.x);
+ if (index >= N) {
+ return;
+ }
+
+ // Compute a new velocity based on pos and vel1
+ glm::vec3 dVel = computeVelocityChange(N, index, pos, vel1);
+ vel2[index] = vel1[index] + dVel;
+
+ // Clamp the speed
+ clampFunc(vel2[index], -maxSpeed, maxSpeed);
+
+ // End implementation
}
/**
@@ -285,10 +417,27 @@ __device__ int gridIndex3Dto1D(int x, int y, int z, int gridResolution) {
__global__ void kernComputeIndices(int N, int gridResolution,
glm::vec3 gridMin, float inverseCellWidth,
glm::vec3 *pos, int *indices, int *gridIndices) {
- // TODO-2.1
+ // DONE-2.1
// - Label each boid with the index of its grid cell.
// - Set up a parallel array of integer indices as pointers to the actual
// boid data in pos and vel1/vel2
+
+ // Start implementation
+ int index = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (index >= N) {
+ return;
+ }
+
+ // Init sorted boid index
+ indices[index] = index;
+
+ glm::vec3 posLocal = pos[index] - gridMin;
+ glm::vec3 idxLocal = posLocal * inverseCellWidth;
+ int x = idxLocal.x, y = idxLocal.y, z = idxLocal.z;
+ int indexCell = gridIndex3Dto1D(x, y, z, gridResolution);
+
+ gridIndices[index] = indexCell;
+ // End implementation
}
// LOOK-2.1 Consider how this could be useful for indicating that a cell
@@ -300,12 +449,82 @@ __global__ void kernResetIntBuffer(int N, int *intBuffer, int value) {
}
}
-__global__ void kernIdentifyCellStartEnd(int N, int *particleGridIndices,
- int *gridCellStartIndices, int *gridCellEndIndices) {
- // TODO-2.1
+__global__ void kernIdentifyCellStartEnd(int N, int* particleGridIndices,
+ int* gridCellStartIndices, int* gridCellEndIndices) {
+ // DONE-2.1
// Identify the start point of each cell in the gridIndices array.
// This is basically a parallel unrolling of a loop that goes
// "this index doesn't match the one before it, must be a new cell!"
+
+ // Start implementation
+
+#if !IDENTIFY_START_END_BY_BINARY_SEARCH
+ int index = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (index >= N) {
+ return;
+ }
+
+ int prevIdx = imax(0, index - 1);
+ int nextIdx = imin(N - 1, index + 1);
+
+ int indexCell = particleGridIndices[index];
+ int prevIndexCell = particleGridIndices[prevIdx];
+ int nextIndexCell = particleGridIndices[nextIdx];
+
+ if (index == 0 || indexCell != prevIndexCell) {
+ gridCellStartIndices[indexCell] = index;
+ }
+ if (index == N - 1 || indexCell != nextIndexCell) {
+ gridCellEndIndices[indexCell] = index + 1;
+ }
+
+ //if (indexCell >= dev_gridCellCountPtr[0]) {
+ // return;
+ //}
+ //for (int i = 0; i < N; ++i) {
+ // if (particleGridIndices[i] == indexCell && gridCellStartIndices[indexCell] == -1) {
+ // gridCellStartIndices[indexCell] = i;
+ // }
+ // if (particleGridIndices[i] > indexCell && gridCellStartIndices[indexCell] != -1) {
+ // gridCellEndIndices[indexCell] = i;
+ // break;
+ // }
+ //}
+#else // IDENTIFY_START_END_BY_BINARY_SEARCH
+ int indexCell = (blockIdx.x * blockDim.x) + threadIdx.x;
+ // Can we use CPU global variable in CUDA device scpoe? No?
+ //if (indexCell >= gridCellCount) {
+ // return;
+ //}
+ if (indexCell >= dev_gridCellCountPtr[0]) {
+ return;
+ }
+
+ int initLeft = 0, initRight = N - 1;
+ while (initLeft < initRight) {
+ int mid = initLeft + ((initRight - initLeft) >> 1);
+ int midCell = particleGridIndices[mid];
+ if (midCell < indexCell) {
+ initLeft = mid + 1;
+ }
+ else {
+ initRight = mid;
+ }
+ }
+ if (particleGridIndices[initLeft] != indexCell) {
+ return;
+ }
+ while (initLeft >= 0 && particleGridIndices[initLeft] == indexCell) {
+ --initLeft;
+ }
+ gridCellStartIndices[indexCell] = initLeft + 1;
+ while (initRight < N && particleGridIndices[initRight] == indexCell) {
+ ++initRight;
+ }
+ gridCellEndIndices[indexCell] = initRight;
+#endif // IDENTIFY_START_END_BY_BINARY_SEARCH
+
+ // End implementation
}
__global__ void kernUpdateVelNeighborSearchScattered(
@@ -314,7 +533,7 @@ __global__ void kernUpdateVelNeighborSearchScattered(
int *gridCellStartIndices, int *gridCellEndIndices,
int *particleArrayIndices,
glm::vec3 *pos, glm::vec3 *vel1, glm::vec3 *vel2) {
- // TODO-2.1 - Update a boid's velocity using the uniform grid to reduce
+ // DONE-2.1 - Update a boid's velocity using the uniform grid to reduce
// the number of boids that need to be checked.
// - Identify the grid cell that this particle is in
// - Identify which cells may contain neighbors. This isn't always 8.
@@ -322,6 +541,121 @@ __global__ void kernUpdateVelNeighborSearchScattered(
// - Access each boid in the cell and compute velocity change from
// the boids rules, if this boid is within the neighborhood distance.
// - Clamp the speed change before putting the new speed in vel2
+
+ // Start implementation
+ int index = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (index >= N) {
+ return;
+ }
+ int boidIndex = particleArrayIndices[index];
+ glm::vec3 posOfIndex = pos[boidIndex];
+
+ // 2.1.1 Identify the cell
+ glm::vec3 posLocal = posOfIndex - gridMin;
+ glm::vec3 idxLocal = posLocal * inverseCellWidth;
+ //int x = idxLocal.x, y = idxLocal.y, z = idxLocal.z;
+ //int indexCell = gridIndex3Dto1D(x, y, z, gridResolution);
+
+ // 2.1.2 Identify which cells may contain neighbors.
+#if !GRID_LOOPING_OPTIMIZATION
+#if !USE_HALF_SIZE_OF_CELL
+ int minX = idxLocal.x - 0.5f, minY = idxLocal.y - 0.5f, minZ = idxLocal.z - 0.5f;
+ int maxX = idxLocal.x + 0.5f, maxY = idxLocal.y + 0.5f, maxZ = idxLocal.z + 0.5f;
+#else // USE_HALF_SIZE_OF_CELL
+ int minX = idxLocal.x - 1, minY = idxLocal.y - 1, minZ = idxLocal.z - 1;
+ int maxX = idxLocal.x + 1, maxY = idxLocal.y + 1, maxZ = idxLocal.z + 1;
+#endif // USE_HALF_SIZE_OF_CELL
+#else // GRID_LOOPING_OPTIMIZATION
+ float searchRadius = imax(rule1Distance, imax(rule2Distance, rule3Distance));
+ float searchDiffIdx = searchRadius * inverseCellWidth;
+ int minX = idxLocal.x - searchDiffIdx, minY = idxLocal.y - searchDiffIdx, minZ = idxLocal.z - searchDiffIdx;
+ int maxX = idxLocal.x + searchDiffIdx, maxY = idxLocal.y + searchDiffIdx, maxZ = idxLocal.z + searchDiffIdx;
+#endif // GRID_LOOPING_OPTIMIZATION
+
+ minX = imax(minX, 0);
+ maxX = imin(maxX, gridResolution - 1);
+ minY = imax(minY, 0);
+ maxY = imin(maxY, gridResolution - 1);
+ minZ = imax(minZ, 0);
+ maxZ = imin(maxZ, gridResolution - 1);
+
+ // 2.1.3 For each cell, ...
+ glm::vec3 dVel(0.f, 0.f, 0.f);
+
+ glm::vec3 perceivedCenter(0.f, 0.f, 0.f);
+ glm::vec3 collisionP(0.f, 0.f, 0.f);
+ glm::vec3 perceivedVel(0.f, 0.f, 0.f);
+
+ int rule1Neighbor = 0, rule3Neighbor = 0;
+
+#if !FOR_LOOP_XYZ
+ for (int z1 = minZ; z1 <= maxZ; ++z1) {
+ for (int y1 = minY; y1 <= maxY; ++y1) {
+ for (int x1 = minX; x1 <= maxX; ++x1) {
+#else // FOR_LOOP_XYZ
+ for (int x1 = minX; x1 <= maxX; ++x1) {
+ for (int y1 = minY; y1 <= maxY; ++y1) {
+ for (int z1 = minZ; z1 <= maxZ; ++z1) {
+#endif // FOR_LOOP_XYZ
+ int indexC1 = gridIndex3Dto1D(x1, y1, z1, gridResolution);
+ int startIndex = gridCellStartIndices[indexC1];
+ int endIndex = gridCellEndIndices[indexC1];
+ if (startIndex == -1) {
+ continue;
+ }
+
+ // 2.1.4 Acces each boid in the cell and compute velocity change
+ for (int i = startIndex; i < endIndex; ++i) {
+ int bi1 = particleArrayIndices[i];
+
+ glm::vec3 diff = pos[bi1] - posOfIndex;
+ float distance = glm::length(diff);
+ if (bi1 != boidIndex) {
+ // Rule 1: boids fly towards their local perceived center of mass, which excludes themselves
+ if (distance < rule1Distance) {
+ perceivedCenter += pos[bi1];
+ ++rule1Neighbor;
+ }
+
+ // Rule 2: boids try to stay a distance d away from each other
+ if (distance < rule2Distance) {
+ collisionP -= diff;
+ }
+
+ // Rule 3: boids try to match the speed of surrounding boids
+ if (distance < rule3Distance) {
+ perceivedVel += vel1[bi1];
+ ++rule3Neighbor;
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+ if (rule1Neighbor > 0) {
+ perceivedCenter /= rule1Neighbor;
+ dVel += (perceivedCenter - posOfIndex) * rule1Scale;
+ }
+
+ dVel += collisionP * rule2Scale;
+
+ if (rule3Neighbor > 0) {
+ perceivedVel /= rule3Neighbor;
+#if !USE_RULE3_FROM_CONARD_PARKER
+ dVel += perceivedVel * rule3Scale; // From instruction
+#else // USE_RULE3_FROM_CONARD_PARKER
+ dVel += (perceivedVel - vel1[boidIndex]) * rule3Scale; // From Conard Parker's, maybe it runs much better than the instructions' now?
+#endif // USE_RULE3_FROM_CONARD_PARKER
+ }
+
+ vel2[boidIndex] = vel1[boidIndex] + dVel;
+
+ // 2.1.5 Clamp the speed
+ clampFunc(vel2[boidIndex], -maxSpeed, maxSpeed);
+
+ // End implemetation
}
__global__ void kernUpdateVelNeighborSearchCoherent(
@@ -329,7 +663,7 @@ __global__ void kernUpdateVelNeighborSearchCoherent(
float inverseCellWidth, float cellWidth,
int *gridCellStartIndices, int *gridCellEndIndices,
glm::vec3 *pos, glm::vec3 *vel1, glm::vec3 *vel2) {
- // TODO-2.3 - This should be very similar to kernUpdateVelNeighborSearchScattered,
+ // DONE-2.3 - This should be very similar to kernUpdateVelNeighborSearchScattered,
// except with one less level of indirection.
// This should expect gridCellStartIndices and gridCellEndIndices to refer
// directly to pos and vel1.
@@ -341,18 +675,142 @@ __global__ void kernUpdateVelNeighborSearchCoherent(
// - Access each boid in the cell and compute velocity change from
// the boids rules, if this boid is within the neighborhood distance.
// - Clamp the speed change before putting the new speed in vel2
+
+ // Start implementation
+ int index = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (index >= N) {
+ return;
+ }
+ glm::vec3 posOfIndex = pos[index];
+ // 2.3.1 Identify the cell
+ glm::vec3 posLocal = posOfIndex - gridMin;
+ glm::vec3 idxLocal = posLocal * inverseCellWidth;
+ //int x = idxLocal.x, y = idxLocal.y, z = idxLocal.z;
+ //int indexCell = gridIndex3Dto1D(x, y, z, gridResolution);
+
+ // 2.3.2 Identify which cells may contain neighbors.
+#if !GRID_LOOPING_OPTIMIZATION
+#if !USE_HALF_SIZE_OF_CELL
+ int minX = idxLocal.x - 0.5f, minY = idxLocal.y - 0.5f, minZ = idxLocal.z - 0.5f;
+ int maxX = idxLocal.x + 0.5f, maxY = idxLocal.y + 0.5f, maxZ = idxLocal.z + 0.5f;
+#else // USE_HALF_SIZE_OF_CELL
+ int minX = idxLocal.x - 1, minY = idxLocal.y - 1, minZ = idxLocal.z - 1;
+ int maxX = idxLocal.x + 1, maxY = idxLocal.y + 1, maxZ = idxLocal.z + 1;
+#endif // USE_HALF_SIZE_OF_CELL
+#else // GRID_LOOPING_OPTIMIZATION
+ float searchRadius = imax(rule1Distance, imax(rule2Distance, rule3Distance));
+ float searchDiffIdx = searchRadius * inverseCellWidth;
+ int minX = idxLocal.x - searchDiffIdx, minY = idxLocal.y - searchDiffIdx, minZ = idxLocal.z - searchDiffIdx;
+ int maxX = idxLocal.x + searchDiffIdx, maxY = idxLocal.y + searchDiffIdx, maxZ = idxLocal.z + searchDiffIdx;
+#endif // GRID_LOOPING_OPTIMIZATION
+
+ minX = imax(minX, 0);
+ maxX = imin(maxX, gridResolution - 1);
+ minY = imax(minY, 0);
+ maxY = imin(maxY, gridResolution - 1);
+ minZ = imax(minZ, 0);
+ maxZ = imin(maxZ, gridResolution - 1);
+
+ // 2.3.3 For each cell, ...
+ // Pay attention to the access order of cells for memory benefits
+ glm::vec3 dVel(0.f, 0.f, 0.f);
+
+ glm::vec3 perceivedCenter(0.f, 0.f, 0.f);
+ glm::vec3 collisionP(0.f, 0.f, 0.f);
+ glm::vec3 perceivedVel(0.f, 0.f, 0.f);
+
+ int rule1Neighbor = 0, rule3Neighbor = 0;
+
+#if !FOR_LOOP_XYZ
+ for (int z1 = minZ; z1 <= maxZ; ++z1) {
+ for (int y1 = minY; y1 <= maxY; ++y1) {
+ for (int x1 = minX; x1 <= maxX; ++x1) {
+#else // FOR_LOOP_XYZ
+ for (int x1 = minX; x1 <= maxX; ++x1) {
+ for (int y1 = minY; y1 <= maxY; ++y1) {
+ for (int z1 = minZ; z1 <= maxZ; ++z1) {
+#endif // FOR_LOOP_XYZ
+ int indexC1 = gridIndex3Dto1D(x1, y1, z1, gridResolution);
+ int startIndex = gridCellStartIndices[indexC1];
+ int endIndex = gridCellEndIndices[indexC1];
+ if (startIndex == -1) {
+ continue;
+ }
+
+ // 2.3.4 Acces each boid in the cell and compute velocity change
+ for (int i = startIndex; i < endIndex; ++i) {
+ glm::vec3 diff = pos[i] - posOfIndex;
+ float distance = glm::length(diff);
+ if (i != index) {
+ // Rule 1: boids fly towards their local perceived center of mass, which excludes themselves
+ if (distance < rule1Distance) {
+ perceivedCenter += pos[i];
+ ++rule1Neighbor;
+ }
+
+ // Rule 2: boids try to stay a distance d away from each other
+ if (distance < rule2Distance) {
+ collisionP -= diff;
+ }
+
+ // Rule 3: boids try to match the speed of surrounding boids
+ if (distance < rule3Distance) {
+ perceivedVel += vel1[i];
+ ++rule3Neighbor;
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+ if (rule1Neighbor > 0) {
+ perceivedCenter /= rule1Neighbor;
+ dVel += (perceivedCenter - posOfIndex) * rule1Scale;
+ }
+
+ dVel += collisionP * rule2Scale;
+
+ if (rule3Neighbor > 0) {
+ perceivedVel /= rule3Neighbor;
+#if !USE_RULE3_FROM_CONARD_PARKER
+ dVel += perceivedVel * rule3Scale; // From instruction
+#else // USE_RULE3_FROM_CONARD_PARKER
+ dVel += (perceivedVel - vel1[index]) * rule3Scale; // From Conard Parker's, maybe it runs much better than the instructions' now?
+#endif // USE_RULE3_FROM_CONARD_PARKER
+ }
+
+ vel2[index] = vel1[index] + dVel;
+
+ // 2.3.5 Clamp the speed
+ clampFunc(vel2[index], -maxSpeed, maxSpeed);
+
+ // End implemetation
}
/**
* Step the entire N-body simulation by `dt` seconds.
*/
void Boids::stepSimulationNaive(float dt) {
- // TODO-1.2 - use the kernels you wrote to step the simulation forward in time.
- // TODO-1.2 ping-pong the velocity buffers
+ // DONE-1.2 - use the kernels you wrote to step the simulation forward in time.
+ // DONE-1.2 ping-pong the velocity buffers
+
+ // Start implementation
+ // 1.2.1
+ dim3 fullBlocksPerGrid((numObjects + blockSize - 1) / blockSize);
+ callCUDA_Profile(kernUpdateVelocityBruteForce)<<>>(numObjects, dev_pos, dev_vel1, dev_vel2);
+ callCUDA_Profile(kernUpdatePos)<<>>(numObjects, dt, dev_pos, dev_vel2);
+
+ // 1.2.2
+ glm::vec3* tmp = dev_vel1; dev_vel1 = dev_vel2; dev_vel2 = tmp;//callCUDA_Profile(cudaMemcpy)(dev_vel1, dev_vel2, numObjects * sizeof(glm::vec3), cudaMemcpyDeviceToDevice);
+ callCUDA_ProfileEnd();
+
+ // End implementation
}
void Boids::stepSimulationScatteredGrid(float dt) {
- // TODO-2.1
+ // DONE-2.1
// Uniform Grid Neighbor search using Thrust sort.
// In Parallel:
// - label each particle with its array index as well as its grid index.
@@ -364,10 +822,65 @@ void Boids::stepSimulationScatteredGrid(float dt) {
// - Perform velocity updates using neighbor search
// - Update positions
// - Ping-pong buffers as needed
+
+ // Start implementation
+ dim3 fullBlocksPerGridForBoid((numObjects + blockSize - 1) / blockSize);
+
+ dim3 fullBlocksPerGridForCell((gridCellCount + blockSize - 1) / blockSize);
+
+ //int fullBlocksPerDimForCell = (gridSideCount + blockSizePerDim - 1) / blockSizePerDim;
+ //dim3 threadsPerBlock3DForCell(blockSizePerDim, blockSizePerDim, blockSizePerDim);
+ //dim3 fullBlocksPerGrid3DForCell(fullBlocksPerDimForCell, fullBlocksPerDimForCell, fullBlocksPerDimForCell);
+
+ // 2.1.1 Label each particle
+ callCUDA_Profile(kernComputeIndices)<<>>(numObjects, gridSideCount, gridMinimum, gridInverseCellWidth, dev_pos, dev_particleArrayIndices, dev_particleGridIndices);
+
+ // 2.1.2 Key sort (Key = boid index)
+#if !USE_STABLE_SORT
+ callCUDA_Profile(thrust::sort_by_key)(dev_thrust_particleGridIndices, dev_thrust_particleGridIndices + numObjects, dev_thrust_particleArrayIndices); // Unstable sort
+#else // USE_STABLE_SORT
+ callCUDA_Profile(thrust::stable_sort_by_key)(dev_thrust_particleGridIndices, dev_thrust_particleGridIndices + numObjects, dev_thrust_particleArrayIndices); // Stable sort, for comparison
+#endif // USE_STABLE_SORT
+
+ // 2.1.3 Find start and end
+ callCUDA_Profile(kernResetIntBuffer)<<>>(gridCellCount, dev_gridCellStartIndices, -1);
+ callCUDA_Profile(kernResetIntBuffer)<<>>(gridCellCount, dev_gridCellEndIndices, gridCellCount);
+
+#if !IDENTIFY_START_END_BY_BINARY_SEARCH
+ callCUDA_Profile(kernIdentifyCellStartEnd)<<>>(numObjects, dev_particleGridIndices, dev_gridCellStartIndices, dev_gridCellEndIndices);
+#else // IDENTIFY_START_END_BY_BINARY_SEARCH
+ callCUDA_Profile(kernIdentifyCellStartEnd)<<>>(numObjects, dev_particleGridIndices, dev_gridCellStartIndices, dev_gridCellEndIndices);
+#endif // IDENTIFY_START_END_BY_BINARY_SEARCH
+
+
+ // 2.1.4 Update velocity using neighbor search
+ callCUDA_Profile(kernUpdateVelNeighborSearchScattered)<<>>(
+ numObjects, gridSideCount, gridMinimum, gridInverseCellWidth, gridCellWidth,
+ dev_gridCellStartIndices, dev_gridCellEndIndices, dev_particleArrayIndices, dev_pos, dev_vel1, dev_vel2);
+
+ // 2.1.5 Update positions
+ callCUDA_Profile(kernUpdatePos)<<>>(numObjects, dt, dev_pos, dev_vel2);
+
+ // 2.1.6 Ping-pong buffers
+ glm::vec3* tmp = dev_vel1; dev_vel1 = dev_vel2; dev_vel2 = tmp;//callCUDA_Profile(cudaMemcpy)(dev_vel1, dev_vel2, numObjects * sizeof(glm::vec3), cudaMemcpyDeviceToDevice);
+ callCUDA_ProfileEnd();
+ // End implementation
+}
+
+/**
+* Reshuffle `src` to `dst`, using `key`.
+*/
+__global__ void kernReshuffle(int N, glm::vec3* dst, const glm::vec3* src, const int* key) {
+ int index = (blockIdx.x * blockDim.x) + threadIdx.x;
+ if (index >= N) {
+ return;
+ }
+ int dstIdx = key[index];
+ dst[index] = src[dstIdx];
}
void Boids::stepSimulationCoherentGrid(float dt) {
- // TODO-2.3 - start by copying Boids::stepSimulationNaiveGrid
+ // DONE-2.3 - start by copying Boids::stepSimulationNaiveGrid
// Uniform Grid Neighbor search using Thrust sort on cell-coherent data.
// In Parallel:
// - Label each particle with its array index as well as its grid index.
@@ -382,6 +895,49 @@ void Boids::stepSimulationCoherentGrid(float dt) {
// - Perform velocity updates using neighbor search
// - Update positions
// - Ping-pong buffers as needed. THIS MAY BE DIFFERENT FROM BEFORE.
+
+ // Start implementation
+ dim3 fullBlocksPerGridForBoid((numObjects + blockSize - 1) / blockSize);
+
+ dim3 fullBlocksPerGridForCell((gridCellCount + blockSize - 1) / blockSize);
+
+ // 2.3.1 Label each particle
+ callCUDA_Profile(kernComputeIndices)<<>>(numObjects, gridSideCount, gridMinimum, gridInverseCellWidth, dev_pos, dev_particleArrayIndices, dev_particleGridIndices);
+
+ // 2.3.2 Key sort (Key = boid index)
+#if !USE_STABLE_SORT
+ callCUDA_Profile(thrust::sort_by_key)(dev_thrust_particleGridIndices, dev_thrust_particleGridIndices + numObjects, dev_thrust_particleArrayIndices); // Unstable sort
+#else // USE_STABLE_SORT
+ callCUDA_Profile(thrust::stable_sort_by_key)(dev_thrust_particleGridIndices, dev_thrust_particleGridIndices + numObjects, dev_thrust_particleArrayIndices); // Stable sort, for comparison
+#endif // USE_STABLE_SORT
+
+ // 2.3.3 Find start and end
+ callCUDA_Profile(kernResetIntBuffer)<<>>(gridCellCount, dev_gridCellStartIndices, -1);
+ callCUDA_Profile(kernResetIntBuffer)<<>>(gridCellCount, dev_gridCellEndIndices, gridCellCount);
+
+#if !IDENTIFY_START_END_BY_BINARY_SEARCH
+ callCUDA_Profile(kernIdentifyCellStartEnd)<<>>(numObjects, dev_particleGridIndices, dev_gridCellStartIndices, dev_gridCellEndIndices);
+#else // IDENTIFY_START_END_BY_BINARY_SEARCH
+ callCUDA_Profile(kernIdentifyCellStartEnd)<<>>(numObjects, dev_particleGridIndices, dev_gridCellStartIndices, dev_gridCellEndIndices);
+#endif // IDENTIFY_START_END_BY_BINARY_SEARCH
+
+ // 2.3.4 Reshuffle pos+vel
+ callCUDA_Profile(kernReshuffle)<<>>(numObjects, dev_pos_reshuffle, dev_pos, dev_particleArrayIndices);
+ callCUDA_Profile(kernReshuffle)<<>>(numObjects, dev_vel_reshuffle, dev_vel1, dev_particleArrayIndices);
+
+ // 2.3.5 Update velocity using neighbor search (vel2 is reshuffled)
+ callCUDA_Profile(kernUpdateVelNeighborSearchCoherent)<<>>(
+ numObjects, gridSideCount, gridMinimum, gridInverseCellWidth, gridCellWidth,
+ dev_gridCellStartIndices, dev_gridCellEndIndices, dev_pos_reshuffle, dev_vel_reshuffle, dev_vel2);
+
+ // 2.3.6 Update positions
+ callCUDA_Profile(kernUpdatePos)<<>>(numObjects, dt, dev_pos_reshuffle, dev_vel2);
+
+ // 2.3.7 Ping-pong buffers
+ glm::vec3* tmp = dev_vel1; dev_vel1 = dev_vel2; dev_vel2 = tmp;//callCUDA_Profile(cudaMemcpy)(dev_vel1, dev_vel2, numObjects * sizeof(glm::vec3), cudaMemcpyDeviceToDevice);
+ tmp = dev_pos; dev_pos = dev_pos_reshuffle; dev_pos_reshuffle = tmp;//callCUDA_Profile(cudaMemcpy)(dev_pos, dev_pos_reshuffle, numObjects * sizeof(glm::vec3), cudaMemcpyDeviceToDevice);
+ callCUDA_ProfileEnd();
+ // End implementation
}
void Boids::endSimulation() {
@@ -389,12 +945,33 @@ void Boids::endSimulation() {
cudaFree(dev_vel2);
cudaFree(dev_pos);
- // TODO-2.1 TODO-2.3 - Free any additional buffers here.
+ // DONE-2.1 DONE-2.3 - Free any additional buffers here.
+
+ // Start implementation 2.3
+ cudaFree(dev_pos_reshuffle);
+ cudaFree(dev_vel_reshuffle);
+ // End implementation 2.3
+
+ // Start implementation 2.1
+ cudaFree(dev_gridCellEndIndices);
+ cudaFree(dev_gridCellStartIndices);
+ cudaFree(dev_particleGridIndices);
+ cudaFree(dev_particleArrayIndices);
+ // End implementation 2.1
}
void Boids::unitTest() {
// LOOK-1.2 Feel free to write additional tests here.
+ int blockForBoid = (numObjects + blockSize - 1) / blockSize;
+ int blockForCell = (gridCellCount + blockSizePerDim - 1) / blockSizePerDim;
+
+ std::cout << "numObjects = " << numObjects;
+ std::cout << "\ngridSize: " << gridSideCount << "^3 = " << gridCellCount;
+ std::cout << "\nblockForBoid = " << blockForBoid << ", totalThreadForBoid = " << blockForBoid * blockSize;
+ std::cout << "\nblockForCell = " << blockForCell << ", totalThreadForCell = " << blockForCell * blockSizePerDim;
+ std::cout << std::endl;
+
// test unstable sort
int *dev_intKeys;
int *dev_intValues;
diff --git a/src/kernel.h b/src/kernel.h
index 3d3da72..5e5e7a6 100644
--- a/src/kernel.h
+++ b/src/kernel.h
@@ -9,6 +9,46 @@
#include
#include
+/********************************************
+ * Start Performance Analysis Configuration *
+ ********************************************/
+
+#define PFM_ANA_VISUALIZE 1
+#define PFM_ANA_UNIFORM_GRID 1
+#define PFM_ANA_COHERENT_GRID 1
+
+#define PFM_ANA_NUM_OBJECTS 5000
+//1000000 //500000 //300000 //150000
+//100000 //60000 //20000 //5000 //1000
+
+#define PFM_ANA_blockSize 128 //32 //64 //1024 //512 //256 //128
+
+// If true, use rule3 from Conard Parker's note, otherwise follow the instruction.
+#define USE_RULE3_FROM_CONARD_PARKER 0
+
+// If true, use stable sort, otherwise unstable sort.
+#define USE_STABLE_SORT 0 //1
+
+// If true, use half cell width and check 27 cells, otherwise check 8 cells.
+#define USE_HALF_SIZE_OF_CELL 1 //1
+
+// If true, for loop x->y->z, otherwise z->y->x.
+#define FOR_LOOP_XYZ 0 //1
+
+// If true, identify start and end by binary search (parallel by grid cells), otherwise in constant time (parallel by boids).
+#define IDENTIFY_START_END_BY_BINARY_SEARCH 0 //0
+
+// If true, use shared memory optimization
+#define USE_SHARED_MEMORY 0
+
+// If true, adjust the search area by cell width.
+#define GRID_LOOPING_OPTIMIZATION 1
+#define GRID_LOOPING_WIDTH 5.0f //5.0f //4.0f //3.0f //2.5f //6.0f //8.0f //10.0f
+
+/******************************************
+ * End Performance Analysis Configuration *
+ ******************************************/
+
namespace Boids {
void initSimulation(int N);
void stepSimulationNaive(float dt);
diff --git a/src/main.cpp b/src/main.cpp
index b82c8c6..029a1df 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -13,12 +13,19 @@
// ================
// LOOK-2.1 LOOK-2.3 - toggles for UNIFORM_GRID and COHERENT_GRID
-#define VISUALIZE 1
-#define UNIFORM_GRID 0
-#define COHERENT_GRID 0
+//#define VISUALIZE 0
+//#define UNIFORM_GRID 1
+//#define COHERENT_GRID 1
+
+#define VISUALIZE PFM_ANA_VISUALIZE
+#define UNIFORM_GRID PFM_ANA_UNIFORM_GRID
+#define COHERENT_GRID PFM_ANA_COHERENT_GRID
// LOOK-1.2 - change this to adjust particle count in the simulation
-const int N_FOR_VIS = 5000;
+const int N_FOR_VIS = PFM_ANA_NUM_OBJECTS;
+//const int N_FOR_VIS = 100000;
+////500000; //300000; //150000;
+////100000; //60000; //20000; //5000;
const float DT = 0.2f;
/**
@@ -231,6 +238,9 @@ void initShaders(GLuint * program) {
timebase = time;
frame = 0;
}
+#if ENABLE_PROFILE_LOG
+ utilityCore::ProfileLog::get().step(fps, time * 1000.);
+#endif ENABLE_PROFILE_LOG
runCUDA();
diff --git a/src/utilityCore.cpp b/src/utilityCore.cpp
index 70f4eea..a769b7d 100644
--- a/src/utilityCore.cpp
+++ b/src/utilityCore.cpp
@@ -160,3 +160,248 @@ void utilityCore::printVec4(const glm::vec4 &m) {
void utilityCore::printVec3(const glm::vec3 &m) {
std::cout << m[0] << " " << m[1] << " " << m[2] << std::endl;
}
+
+#if ENABLE_PROFILE_LOG
+
+void utilityCore::ProfileLog::cacheInStep(float avgFPS, float timeElapsed) {
+ //m_frameRates.push_back(avgFPS);
+ m_frameRates.push_back(1000.f / timeElapsed);
+ m_frameDurations.push_back(timeElapsed);
+ for (size_t i = 0; i < m_cudaEvents.size(); ++i) {
+ cudaEventSynchronize(m_cudaEvents[i]);
+ }
+ m_eventDurations.emplace_back();
+ std::unordered_map& eventDurationMap = m_eventDurations.back();
+ eventDurationMap.reserve(m_cudaEvents.size() - 1);
+ for (size_t i = 0; i + 1 < m_cudaEvents.size(); ++i) {
+ eventDurationMap[i] = 0.f;
+ cudaEventElapsedTime(&eventDurationMap[i], m_cudaEvents[i], m_cudaEvents[i + 1]);
+ }
+}
+
+utilityCore::ProfileLog& utilityCore::ProfileLog::get() {
+ static ProfileLog profileLog;
+ return profileLog;
+}
+
+bool utilityCore::ProfileLog::isRecordingEvent() const {
+ return m_recording;
+}
+
+bool utilityCore::ProfileLog::isProfiling() const {
+ return m_profiling;
+}
+
+const std::string& utilityCore::ProfileLog::getEndEventName() const {
+ return m_endEventName;
+}
+
+void utilityCore::ProfileLog::clearArgs() {
+ m_args.empty();
+ m_kwargs.empty();
+}
+
+void utilityCore::ProfileLog::addArg(const std::string& arg) {
+ m_args.push_back(arg);
+}
+
+void utilityCore::ProfileLog::addKwArg(const std::string& key, int value) {
+ if (m_kwargs.find(key) == m_kwargs.end()) {
+ m_kwargs_keys.push_back(key);
+ }
+ m_kwargs[key] = value;
+}
+
+void utilityCore::ProfileLog::initProfile(const std::string& prefix, const std::string& endEventName, int startFrame, int frameCount, int frameInterval, std::ios_base::openmode mode) {
+ m_mode = mode;
+ m_endEventName = endEventName;
+ m_startFrame = startFrame;
+ m_endFrame = startFrame + frameCount * frameInterval;
+
+ //m_startTime = startTime;
+ m_frameInterval = frameInterval;
+
+ //m_dataSizeToCount = (m_endFrame - m_startFrame) / m_frameInterval;
+ m_dataSizeToCount = frameCount;
+
+ m_frameRates.reserve(m_dataSizeToCount);
+ m_frameDurations.reserve(m_dataSizeToCount);
+ m_eventDurations.reserve(m_dataSizeToCount);
+
+ m_filePath = prefix;
+ //for (const std::pair& kw : m_kwargs) {
+ // m_filePath.append("," + kw.first + "_" + std::to_string(kw.second));
+ for(const std::string& arg : m_kwargs_keys) {
+ m_filePath.append("," + arg + "_" + std::to_string(m_kwargs[arg]));
+ }
+ for (const std::string& arg : m_args) {
+ m_filePath.append("," + arg);
+ }
+ m_filePath.append(".csv");
+ m_recording = true;
+}
+
+size_t utilityCore::ProfileLog::registerEvent(const std::string& eventName) {
+ auto it = m_cudaEventIndices.find(eventName);
+ if (it != m_cudaEventIndices.end()) {
+ return it->second;
+ }
+ size_t result = m_cudaEvents.size();
+ m_cudaEventNames.push_back(eventName);
+ m_cudaEventIndices[eventName] = result;
+ m_cudaEvents.emplace_back();
+ cudaEvent_t& newEvent = m_cudaEvents.back();
+ cudaEventCreate(&newEvent);
+ return result;
+}
+
+void utilityCore::ProfileLog::recordEvent(const std::string& eventName) {
+ size_t index = registerEvent(eventName);
+ if (!m_recording) {
+ return;
+ }
+ cudaEvent_t& event = m_cudaEvents[index];
+ cudaEventRecord(event);
+}
+
+void utilityCore::ProfileLog::step(float avgFPS, float timeStamp){
+ float timeElapsed = timeStamp - m_timeStamp;
+ m_timeStamp = timeStamp;
+ m_profiling = false;
+
+ if (m_frameCount >= m_startFrame && m_frameCount < m_endFrame) {
+ //if(timeStamp >= m_startTime) {
+ // if (m_startFrame == -1) {
+ // m_startFrame = m_frameCount;
+ // m_endFrame = m_frameCount + m_dataSizeToCount * m_frameInterval;
+ // }
+ // if (m_frameCount < m_endFrame) {
+ if (m_frameInterval <= 1 || (m_frameCount - m_startFrame) % m_frameInterval == 0) {
+ cacheInStep(avgFPS, timeElapsed);
+ }
+ m_profiling = true;
+ // }
+ }
+
+ if(!m_profiling) {
+ if (m_recording && m_frameCount >= m_endFrame) {
+ writeToFile(m_mode);
+ unregisterEvents();
+ }
+ }
+ ++m_frameCount;
+}
+void utilityCore::ProfileLog::writeToFile(std::ios_base::openmode mode) {
+ if (m_eventDurations.size() == 0) {
+ return;
+ }
+
+ m_fout.open(m_filePath, mode);
+ m_fout << ",fps,duration";
+ m_fout << ",cudaTotal";
+ for (size_t i = 0; i + 1 < m_cudaEventNames.size(); ++i) {
+ const std::string& header = m_cudaEventNames[i];
+ m_fout << ',' << header;
+ }
+ m_fout << std::endl;
+ int frameCount = m_startFrame;
+
+ double avgFPS = 0., avgDuration = 0., avgTotal = 0.;
+ double maxFPS = 0., maxDuration = 0., maxTotal = 0.;
+ double minFPS = std::numeric_limits::max(), minDuration = std::numeric_limits::max(), minTotal = std::numeric_limits::max();
+
+ std::unordered_map avgEventDurations;
+ std::unordered_map maxEventDurations;
+ std::unordered_map minEventDurations;
+
+ for (std::pair& eventPair : m_eventDurations[0]) {
+ avgEventDurations[eventPair.first] = 0.;
+ maxEventDurations[eventPair.first] = 0.;
+ minEventDurations[eventPair.first] = std::numeric_limits::max();
+ }
+ double invCount = 1. / m_eventDurations.size();
+
+ std::stringstream ss;
+
+ for (size_t i = 0; i < m_frameRates.size(); ++i) {
+ double cudaTotalDuration = 0.;
+
+ avgFPS += m_frameRates[i] * invCount;
+ avgDuration += m_frameDurations[i] * invCount;
+
+ maxFPS = std::max(maxFPS, m_frameRates[i]);
+ minFPS = std::min(minFPS, m_frameRates[i]);
+
+ maxDuration = std::max(maxDuration, m_frameDurations[i]);
+ minDuration = std::min(minDuration, m_frameDurations[i]);
+
+ //m_fout << frameCount << ',' << m_frameRates[i] << ',' << m_frameDurations[i];
+
+ std::unordered_map& eventDurationMap = m_eventDurations[i];
+ for (std::pair& eventPair : eventDurationMap) {
+ avgEventDurations[eventPair.first] += eventPair.second * invCount;
+ maxEventDurations[eventPair.first] = std::max(maxEventDurations[eventPair.first], eventPair.second);
+ minEventDurations[eventPair.first] = std::min(minEventDurations[eventPair.first], eventPair.second);
+ cudaTotalDuration += eventPair.second;
+ //m_fout << ',' << eventPair.second;
+ }
+ avgTotal += cudaTotalDuration * invCount;
+ maxTotal = std::max(maxTotal, static_cast(cudaTotalDuration));
+ minTotal = std::min(minTotal, static_cast(cudaTotalDuration));
+ //m_fout << ',' << cudaTotalDuration << std::endl;
+ }
+ m_fout << "avg_" << m_frameRates.size() << ',' << avgFPS << ',' << avgDuration;
+ m_fout << ',' << avgTotal;
+ for (std::pair& eventPair : avgEventDurations) {
+ m_fout << ',' << eventPair.second;
+ }
+ m_fout << std::endl;
+
+ m_fout << "max_" << m_frameRates.size() << ',' << maxFPS << ',' << maxDuration;
+ m_fout << ',' << maxTotal;
+ for (std::pair& eventPair : maxEventDurations) {
+ m_fout << ',' << eventPair.second;
+ }
+ m_fout << std::endl;
+
+ m_fout << "min_" << m_frameRates.size() << ',' << minFPS << ',' << minDuration;
+ m_fout << ',' << minTotal;
+ for (std::pair& eventPair : minEventDurations) {
+ m_fout << ',' << eventPair.second;
+ }
+ m_fout << std::endl;
+
+ for (size_t i = 0; i < m_frameRates.size(); ++i) {
+ double cudaTotalDuration = 0.;
+
+ m_fout << frameCount << ',' << m_frameRates[i] << ',' << m_frameDurations[i];
+
+ std::unordered_map& eventDurationMap = m_eventDurations[i];
+ for (std::pair& eventPair : eventDurationMap) {
+ avgEventDurations[eventPair.first] += eventPair.second * invCount;
+ cudaTotalDuration += eventPair.second;
+ //m_fout << ',' << eventPair.second;
+ }
+ m_fout << ',' << cudaTotalDuration;
+ for (std::pair& eventPair : eventDurationMap) {
+ m_fout << ',' << eventPair.second;
+ }
+ m_fout << std::endl;
+ frameCount += m_frameInterval;
+ }
+
+ m_fout.close();
+
+ std::cout << "Write profile at " << m_filePath << std::endl;
+}
+
+void utilityCore::ProfileLog::unregisterEvents() {
+ m_recording = false;
+ m_cudaEventIndices.empty();
+ m_cudaEventNames.empty();
+ for (size_t i = 0; i < m_cudaEvents.size(); ++i) {
+ cudaEventDestroy(m_cudaEvents[i]);
+ }
+ m_cudaEvents.empty();
+}
+#endif // ENABLE_PROFILE_LOG
diff --git a/src/utilityCore.hpp b/src/utilityCore.hpp
index bf7c05f..503e9a5 100644
--- a/src/utilityCore.hpp
+++ b/src/utilityCore.hpp
@@ -46,3 +46,87 @@ extern void printMat4(const glm::mat4 &);
extern void printVec4(const glm::vec4 &);
extern void printVec3(const glm::vec3 &);
}
+
+
+/*********************
+* Start Profile Log *
+*********************/
+
+#define ENABLE_PROFILE_LOG 0//0
+
+#if ENABLE_PROFILE_LOG
+#include
+#include
+namespace utilityCore {
+class ProfileLog {
+private:
+ std::ofstream m_fout;
+ std::string m_filePath;
+ std::string m_endEventName;
+
+ bool m_recording = false;
+ bool m_profiling = false;
+
+ std::vector m_args;
+ std::vector m_kwargs_keys;
+ std::unordered_map m_kwargs;
+
+ std::ios_base::openmode m_mode = std::ios_base::out;
+ float m_timeStamp = 0.f;
+ int m_frameCount = 0, m_dataSizeToCount = 2048;
+ int m_startFrame = -1, m_endFrame = -1;
+ float m_startTime = 2000.f;
+ int m_frameInterval = 1;
+
+ std::vector m_frameRates;
+ std::vector m_frameDurations;
+ std::vector> m_eventDurations;
+
+ std::unordered_map m_cudaEventIndices;
+ std::vector m_cudaEventNames;
+ std::vector m_cudaEvents;
+
+private:
+ void cacheInStep(float avgFPS, float timeElapsed);
+
+public:
+ static ProfileLog& get();
+ bool isRecordingEvent() const;
+ bool isProfiling() const;
+ const std::string& getEndEventName() const;
+
+ void clearArgs();
+ void addArg(const std::string& arg);
+ void addKwArg(const std::string& key, int value);
+
+ void initProfile(const std::string& prefix, const std::string& endEventName = "end", int startFrame = 256, int frameCount = 2048, int frameInterval = 1, std::ios_base::openmode mode = std::ios_base::out);
+ size_t registerEvent(const std::string& eventName);
+ void recordEvent(const std::string& eventName);
+
+ // Call before runCUDA, timeStamp in ms
+ void step(float avgFPS, float timeStamp);
+
+ void writeToFile(std::ios_base::openmode mode = std::ios_base::out);
+ void unregisterEvents();
+};
+}
+
+#define callCUDA_Profile(funcName) \
+ utilityCore::ProfileLog::get().recordEvent(#funcName "-" + std::to_string(__LINE__)); \
+ funcName
+
+#define callCUDA_ProfileWithAlias(alias, funcName) \
+ utilityCore::ProfileLog::get().recordEvent(#alias); \
+ funcName
+
+#define callCUDA_ProfileEnd() utilityCore::ProfileLog::get().recordEvent(utilityCore::ProfileLog::get().getEndEventName())
+
+#else // ENABLE_PROFILE_LOG
+#define callCUDA_Profile(funcName) funcName
+#define callCUDA_ProfileWithAlias(alias, funcName) funcName
+#define callCUDA_ProfileEnd()
+#endif // ENABLE_PROFILE_LOG
+
+/*******************
+* End Profile Log *
+*******************/